diff --git a/.github/assets.config.yaml b/.github/assets.config.yaml index d5bd6110a768f..90f9c02b0ac60 100644 --- a/.github/assets.config.yaml +++ b/.github/assets.config.yaml @@ -41,8 +41,12 @@ validators_settings: - ".golangci.yml" - "Makefile" - "bin" + - "CLAUDE.md" + - "knowledge" skip_files: - "node_modules" + skip_dirs: + - ".git" chain_folder: allowed_files: diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0fe61bb2356aa..e113aa8ee457b 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,12 +5,25 @@ version: 2 updates: - - package-ecosystem: "github-actions" + # Go module dependencies + - package-ecosystem: "gomod" directory: "/" schedule: interval: "weekly" + day: "wednesday" + open-pull-requests-limit: 3 + labels: + - "dependencies" + groups: + go-dependencies: + patterns: + - "*" - - package-ecosystem: "gomod" + # GitHub Actions + - package-ecosystem: "github-actions" directory: "/" schedule: - interval: "weekly" + interval: "monthly" + open-pull-requests-limit: 3 + labels: + - "github-actions" diff --git a/.github/workflows/fix-dryrun.yml b/.github/workflows/fix-dryrun.yml deleted file mode 100644 index a42ef0fbfb59a..0000000000000 --- a/.github/workflows/fix-dryrun.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Fix (Dry run) -on: - pull_request: - branches: [ master ] - -jobs: - fix-dryrun: - runs-on: ubuntu-latest - steps: - - name: Set up Go - uses: actions/setup-go@v4 - with: - go-version: 1.18 - - - name: Check out code - uses: actions/checkout@v3 - - - name: Run fix - run: make fix - - - name: Show fix result (diff) - run: | - git config core.ignorecase false - git status - git diff diff --git a/.github/workflows/fix.yml b/.github/workflows/fix.yml deleted file mode 100644 index 8dec678a52ed3..0000000000000 --- a/.github/workflows/fix.yml +++ /dev/null @@ -1,46 +0,0 @@ -name: Fix All - -on: - push: - branches: - - '*' - workflow_dispatch: - -jobs: - fix-all: - runs-on: ubuntu-latest - - if: github.repository_owner == 'trustwallet' && github.event.repository.fork == false - - steps: - - name: Checkout (trustwallet repo, secret token) - uses: actions/checkout@v3 - with: - # Use trust-ci fine-grained PAT to checkout and later commit the code - # Do not use for forked repos - token: ${{ secrets.CI_GITHUB_TOKEN }} - ref: ${{ github.ref }} - - - name: Set up Go - uses: actions/setup-go@v4 - with: - go-version: 1.18 - - - name: Run fix - run: make fix - - - name: Show fix result (diff) - run: | - git status - git diff - - - name: Run check - run: make check - - - name: Commit changes - if: success() - uses: stefanzweifel/git-auto-commit-action@v4.16.0 - with: - commit_user_name: trust-ci - commit_user_email: "117647528+trust-ci@users.noreply.github.com" - commit_message: Auto fix all (sanity and consistency) diff --git a/.github/workflows/periodic-update.yml b/.github/workflows/periodic-update.yml deleted file mode 100644 index 5265f72555a32..0000000000000 --- a/.github/workflows/periodic-update.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: Periodic External Update -on: - schedule: - # Run twice per day (at 1:00UTC/6pmPST, 13:00UTC/6amPST) - - cron: '0 1,13 * * *' - workflow_dispatch: -jobs: - periodic-auto-update: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - token: ${{ secrets.CI_GITHUB_TOKEN }} - ref: ${{ github.head_ref }} - - - name: Set up Go - uses: actions/setup-go@v4 - with: - go-version: 1.18 - id: go - - - name: Run update auto - run: make update-auto - - - name: Show update result (diff) - if: success() - run: | - git status - git diff - - - name: Run check - run: make check - - - name: Commit changes - if: success() - uses: stefanzweifel/git-auto-commit-action@v4.16.0 - with: - commit_message: External Updates - commit_user_name: trust-ci - commit_user_email: "117647528+trust-ci@users.noreply.github.com" diff --git a/.github/workflows/upload-s3.yml b/.github/workflows/upload-s3.yml index b12301e96aed9..c6808ec5863da 100644 --- a/.github/workflows/upload-s3.yml +++ b/.github/workflows/upload-s3.yml @@ -5,6 +5,11 @@ on: - master workflow_dispatch: + inputs: + use-size-only: + description: 'Include --size-only flag in aws s3 sync command' + required: false + default: 'true' permissions: id-token: write @@ -28,7 +33,12 @@ jobs: - name: Sync to S3 if: github.repository_owner == 'trustwallet' shell: bash - run: aws s3 sync . s3://$AWS_S3_BUCKET --follow-symlinks --delete --exclude '*' --include 'dapps/*' --include 'blockchains/*' --size-only + run: | + SYNC_OPTIONS="--follow-symlinks --delete --exclude '*' --include 'dapps/*' --include 'blockchains/*'" + if [ "${{ github.event.inputs.use-size-only }}" == "true" ]; then + SYNC_OPTIONS="$SYNC_OPTIONS --size-only" + fi + eval "aws s3 sync . s3://$AWS_S3_BUCKET $SYNC_OPTIONS" env: AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }} @@ -49,4 +59,3 @@ jobs: env: PATHS: ${{ steps.filter.outputs.paths }} DISTRIBUTION: ${{ secrets.AWS_DISTRIBUTION }} - diff --git a/.gitignore b/.gitignore index 9573723cfbdc3..4a6383916f09d 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,6 @@ .env .env.test bin/ +index.scip +index.scip.json +knowledge/.relations.json diff --git a/.golangci.yml b/.golangci.yml index 6633927eb2295..e8bdcae7d09e1 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -192,7 +192,6 @@ linters: - deadcode - depguard - dogsled - - dupl - errcheck - exportloopref - exhaustive diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000000000..e081775bfae60 --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,61 @@ +# assets + +## What this repo is + +- **Domain**: Crypto token asset registry — logos, metadata (`info.json`), and trading-pair tokenlists for ~188 blockchains maintained by the Trust Wallet community. +- **Route here**: Token logo additions/updates, `info.json` validation, blockchain tokenlist (`tokenlist.json`, `tokenlist-extended.json`) maintenance, asset validation tooling (Go CLI), DApp metadata. +- **Do not route here**: Wallet logic, key management, transaction signing, mobile/extension app code, backend API services. +- **Consumers**: Trust Wallet mobile app (CDN token logos/metadata), external wallet projects, `assets-management` web app (via the Assets Manager API). +- **Ships**: Compiled Go binary (`bin/assets`) with subcommands `check` / `fix` / `update-auto` / `add-token` / `add-tokenlist`. Also ships the asset file tree itself (consumed via GitHub raw URLs and CDN). +- **Agent map**: To add a token — use `make add-token`; to validate — `make check`; to auto-fix — `make fix`; to update trading pairs — `make update-auto`. See [guides/add-token.md](knowledge/guides/add-token.md). +- Stack: Go + +## Knowledge Map + +For the structured knowledge base, see [knowledge/constitution.md](knowledge/constitution.md). + +- [ci](knowledge/ci/index.md) — CI/CD pipelines, deployment automation, and release processes +- [code-conventions](knowledge/code-conventions/index.md) — Code conventions, style rules, and decision records +- [patterns](knowledge/patterns/index.md) — Coding patterns, recipes, and proven approaches +- [specs](knowledge/specs/index.md) — Feature specifications and requirements + +- [architecture](knowledge/architecture/index.md) — Architecture +- [features](knowledge/features/index.md) — Features +- [guides](knowledge/guides/index.md) — Guides +- [libs](knowledge/libs/index.md) — Libs +- [tests](knowledge/tests/index.md) — Tests + +## Learnings + +This repo may keep a living archive of incident-derived rules in ~~[`learnings/`](learnings/)~~ — each file a postmortem of a real bug or a non-obvious pattern that bit once and would bite again: root cause, the rule that prevents recurrence, and tags for matching. The folder is **optional and may be absent** — create it the first time you have a learning worth saving. + +**Before** investigating any bug, regression, or "weird behavior", *if a `learnings/` directory exists*: + +1. Search the frontmatter directly — it's the source of truth and always present: + - `grep -ril "" learnings/` — matches the frontmatter `tags:`/`summary:` + body. + - `ls learnings/ | grep -i ""` — matches the slug-style filename. + - Skim each match's `summary:` line to decide whether to read the full body. +2. For a topic-organized ToC (grouped by surface + a tag index), open `learnings/index.md`. It is a **generated** artifact that garden **always regenerates** from frontmatter — never hand-edit it (any edit is discarded next run). Depending on the repo it's either gitignored (a derived artifact) or committed; either way it can be stale if a learning file changed without a regen, so prefer reading the learning files' frontmatter over trusting it blindly. +3. Found a match? **Read it before forming a hypothesis** — a 30-second read can turn a 2-hour investigation into a 5-minute fix. +4. Every file has frontmatter (`title`, `date`, `area`, `files`, `symptom`, `tags`, `summary`; `pr` when tied to a specific PR). `area` drives the index's surface grouping; `tags` drive its tag index. + +**After** any fix, feature, or non-trivial change — if you learned something not already obvious from the code: + +1. Add a new file `learnings/.md` with the frontmatter above, then a body covering: the symptom, the root cause (the actual mechanism, not just "the bug"), why prior fixes weren't enough if applicable, the rule going forward, and any regression guards. Create the `learnings/` folder if it doesn't exist yet. +2. If the learning extends an existing entry, edit that file instead of creating a duplicate. +3. Make the new file's `area`, `tags`, and `summary` accurate — those drive both `grep` and the generated index (`area` → its surface grouping, `tags` → its tag index, `summary` → its hook). **Never hand-edit `learnings/index.md`** — it's generated and always regenerated; edit the learning file's frontmatter instead. +4. Commit the learning **in the same PR as the fix** — never as a follow-up. + +The bar: would a future agent save time by reading this before touching the same surface? If yes, write it; if it would just say "read the diff," skip it. Don't ask which learnings to capture — commit every candidate that clears the bar. + +## Repository Knowledge Scope + +This repo's `knowledge/` covers: **ci, code-conventions, patterns, specs** + +Topics NOT documented locally: architecture, build, conventions, core-libs, decisions, design, features, git-conventions, guides, observability, product, quality, security, tests, workflows, brand, business, legal, hr, prompts, api, libs, components, references + +## Constraints + +- [TODO: Add project-specific constraints] + + diff --git a/blockchains/acala/info/info.json b/blockchains/acala/info/info.json new file mode 100644 index 0000000000000..93b8a1e8eeaa3 --- /dev/null +++ b/blockchains/acala/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "Acala", + "website": "https://acala.network", + "description": "Acala provides backend infrastructure for traditional finance that is trusted by institutions like Coinbase, Figment, and Current.com.", + "explorer": "https://acala.subscan.io", + "symbol": "ACA", + "type": "coin", + "decimals": 12, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/AcalaNetwork/Acala" + }, + { + "name": "x", + "url": "https://x.com/AcalaNetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/acala/info/logo.png b/blockchains/acala/info/logo.png new file mode 100644 index 0000000000000..7b31d8445c133 Binary files /dev/null and b/blockchains/acala/info/logo.png differ diff --git a/blockchains/acala/info/square_logo.png b/blockchains/acala/info/square_logo.png new file mode 100644 index 0000000000000..e78d8f86246b7 Binary files /dev/null and b/blockchains/acala/info/square_logo.png differ diff --git a/blockchains/acalaevm/assets/0x07DF96D1341A7d16Ba1AD431E2c847d978BC2bCe/info.json b/blockchains/acalaevm/assets/0x07DF96D1341A7d16Ba1AD431E2c847d978BC2bCe/info.json new file mode 100644 index 0000000000000..92e3febba90a5 --- /dev/null +++ b/blockchains/acalaevm/assets/0x07DF96D1341A7d16Ba1AD431E2c847d978BC2bCe/info.json @@ -0,0 +1,36 @@ +{ + "name": "USD Coin", + "website": "https://centre.io/usdc", + "description": "USDC is a fully collateralized US dollar stablecoin, an Ethereum powered coin and is the brainchild of CENTRE, an open source project bootstrapped by contributions from Circle and Coinbase.", + "explorer": "https://blockscout.acala.network/token/0x07DF96D1341A7d16Ba1AD431E2c847d978BC2bCe", + "type": "ACALAEVM", + "symbol": "USDC", + "decimals": 6, + "status": "active", + "id": "0x07DF96D1341A7d16Ba1AD431E2c847d978BC2bCe", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/acalaevm/assets/0x07DF96D1341A7d16Ba1AD431E2c847d978BC2bCe/logo.png b/blockchains/acalaevm/assets/0x07DF96D1341A7d16Ba1AD431E2c847d978BC2bCe/logo.png new file mode 100644 index 0000000000000..793e015fc9308 Binary files /dev/null and b/blockchains/acalaevm/assets/0x07DF96D1341A7d16Ba1AD431E2c847d978BC2bCe/logo.png differ diff --git a/blockchains/acalaevm/assets/0x54A37A01cD75B616D63E0ab665bFfdb0143c52AE/info.json b/blockchains/acalaevm/assets/0x54A37A01cD75B616D63E0ab665bFfdb0143c52AE/info.json new file mode 100644 index 0000000000000..05fa4551645cb --- /dev/null +++ b/blockchains/acalaevm/assets/0x54A37A01cD75B616D63E0ab665bFfdb0143c52AE/info.json @@ -0,0 +1,42 @@ +{ + "name": "Dai Stablecoin", + "website": "http://makerdao.com", + "description": "Dai is a stable cryptocurrency supported by Maker (MKR). To ensure price stability, Dai minimizes the price volatility against the US dollar, through an incentive structure for its participants.", + "explorer": "https://blockscout.acala.network/token/0x54A37A01cD75B616D63E0ab665bFfdb0143c52AE", + "research": "https://research.binance.com/en/projects/dai", + "type": "ACALAEVM", + "symbol": "DAI", + "decimals": 18, + "status": "active", + "id": "0x54A37A01cD75B616D63E0ab665bFfdb0143c52AE", + "tags": [ + "defi", + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/MakerDAO" + }, + { + "name": "reddit", + "url": "https://reddit.com/MakerDAO/" + }, + { + "name": "blog", + "url": "https://blog.makerdao.com/" + }, + { + "name": "whitepaper", + "url": "https://makerdao.com/whitepaper/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/multi-collateral-dai/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/acalaevm/assets/0x54A37A01cD75B616D63E0ab665bFfdb0143c52AE/logo.png b/blockchains/acalaevm/assets/0x54A37A01cD75B616D63E0ab665bFfdb0143c52AE/logo.png new file mode 100644 index 0000000000000..b24cc9643d919 Binary files /dev/null and b/blockchains/acalaevm/assets/0x54A37A01cD75B616D63E0ab665bFfdb0143c52AE/logo.png differ diff --git a/blockchains/acalaevm/info/info.json b/blockchains/acalaevm/info/info.json new file mode 100644 index 0000000000000..986200f12b28d --- /dev/null +++ b/blockchains/acalaevm/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "Acala EVM", + "website": "https://acala.network", + "description": "Acala provides backend infrastructure for traditional finance that is trusted by institutions like Coinbase, Figment, and Current.com.", + "explorer": "https://blockscout.acala.network", + "symbol": "ACA", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/AcalaNetwork/Acala" + }, + { + "name": "x", + "url": "https://x.com/AcalaNetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/acalaevm/info/logo.png b/blockchains/acalaevm/info/logo.png new file mode 100644 index 0000000000000..7b31d8445c133 Binary files /dev/null and b/blockchains/acalaevm/info/logo.png differ diff --git a/blockchains/acalaevm/info/square_logo.png b/blockchains/acalaevm/info/square_logo.png new file mode 100644 index 0000000000000..e78d8f86246b7 Binary files /dev/null and b/blockchains/acalaevm/info/square_logo.png differ diff --git a/blockchains/aeternity/info/info.json b/blockchains/aeternity/info/info.json index 08414cebb77b2..1c9c24f74ca4f 100644 --- a/blockchains/aeternity/info/info.json +++ b/blockchains/aeternity/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/aeternity" }, { - "name": "twitter", - "url": "https://twitter.com/aeternity" + "name": "x", + "url": "https://x.com/aeternity" }, { "name": "reddit", diff --git a/blockchains/aeternity/info/square_logo.png b/blockchains/aeternity/info/square_logo.png new file mode 100644 index 0000000000000..0d21d7eb1acc2 Binary files /dev/null and b/blockchains/aeternity/info/square_logo.png differ diff --git a/blockchains/agoric/info/info.json b/blockchains/agoric/info/info.json index d393a167f5410..784715096cb50 100644 --- a/blockchains/agoric/info/info.json +++ b/blockchains/agoric/info/info.json @@ -8,14 +8,17 @@ "type": "coin", "decimals": 6, "status": "active", + "tags": [ + "staking-native" + ], "links": [ { "name": "github", "url": "https://github.com/Agoric" }, { - "name": "twitter", - "url": "https://twitter.com/agoric" + "name": "x", + "url": "https://x.com/agoric" }, { "name": "whitepaper", diff --git a/blockchains/agoric/info/square_logo.png b/blockchains/agoric/info/square_logo.png new file mode 100644 index 0000000000000..4a02d3550e270 Binary files /dev/null and b/blockchains/agoric/info/square_logo.png differ diff --git a/blockchains/agoric/validators/assets/agoricvaloper1ahd5z754dkgqxuc5fcwd2s5tatmpurhsdeqes2/logo.png b/blockchains/agoric/validators/assets/agoricvaloper1ahd5z754dkgqxuc5fcwd2s5tatmpurhsdeqes2/logo.png new file mode 100644 index 0000000000000..36544b6fa2621 Binary files /dev/null and b/blockchains/agoric/validators/assets/agoricvaloper1ahd5z754dkgqxuc5fcwd2s5tatmpurhsdeqes2/logo.png differ diff --git a/blockchains/agoric/validators/assets/agoricvaloper1df98lt4ph685ujr69jy5w8xvrtszad7te7pna9/logo.png b/blockchains/agoric/validators/assets/agoricvaloper1df98lt4ph685ujr69jy5w8xvrtszad7te7pna9/logo.png new file mode 100644 index 0000000000000..c2cb86a42efe3 Binary files /dev/null and b/blockchains/agoric/validators/assets/agoricvaloper1df98lt4ph685ujr69jy5w8xvrtszad7te7pna9/logo.png differ diff --git a/blockchains/agoric/validators/assets/agoricvaloper1jjx0vc6dxe44mxzyq2la22j86avdmj0qpkum7f/logo.png b/blockchains/agoric/validators/assets/agoricvaloper1jjx0vc6dxe44mxzyq2la22j86avdmj0qpkum7f/logo.png new file mode 100644 index 0000000000000..ab2b2edab45eb Binary files /dev/null and b/blockchains/agoric/validators/assets/agoricvaloper1jjx0vc6dxe44mxzyq2la22j86avdmj0qpkum7f/logo.png differ diff --git a/blockchains/agoric/validators/assets/agoricvaloper1mxhgvj2c93xahahx9d9fc7rwwtufqza5cn6uhn/logo.png b/blockchains/agoric/validators/assets/agoricvaloper1mxhgvj2c93xahahx9d9fc7rwwtufqza5cn6uhn/logo.png new file mode 100644 index 0000000000000..0f6305d87f6e5 Binary files /dev/null and b/blockchains/agoric/validators/assets/agoricvaloper1mxhgvj2c93xahahx9d9fc7rwwtufqza5cn6uhn/logo.png differ diff --git a/blockchains/agoric/validators/assets/agoricvaloper1n3mhyp9fvcmuu8l0q8qvjy07x0rql8q4acufxj/logo.png b/blockchains/agoric/validators/assets/agoricvaloper1n3mhyp9fvcmuu8l0q8qvjy07x0rql8q4acufxj/logo.png new file mode 100644 index 0000000000000..036eb403bfbe3 Binary files /dev/null and b/blockchains/agoric/validators/assets/agoricvaloper1n3mhyp9fvcmuu8l0q8qvjy07x0rql8q4acufxj/logo.png differ diff --git a/blockchains/agoric/validators/assets/agoricvaloper1nkrt7kjln9rsypg3m4k23q703nww9lj9msvqp5/logo.png b/blockchains/agoric/validators/assets/agoricvaloper1nkrt7kjln9rsypg3m4k23q703nww9lj9msvqp5/logo.png new file mode 100644 index 0000000000000..eaf66cb5cbb1f Binary files /dev/null and b/blockchains/agoric/validators/assets/agoricvaloper1nkrt7kjln9rsypg3m4k23q703nww9lj9msvqp5/logo.png differ diff --git a/blockchains/agoric/validators/assets/agoricvaloper1tfmed8ueaxrmdsvkecrae6renyxjct8xwdkes5/logo.png b/blockchains/agoric/validators/assets/agoricvaloper1tfmed8ueaxrmdsvkecrae6renyxjct8xwdkes5/logo.png new file mode 100644 index 0000000000000..e117817071239 Binary files /dev/null and b/blockchains/agoric/validators/assets/agoricvaloper1tfmed8ueaxrmdsvkecrae6renyxjct8xwdkes5/logo.png differ diff --git a/blockchains/agoric/validators/list.json b/blockchains/agoric/validators/list.json new file mode 100644 index 0000000000000..e5a5190bb4bef --- /dev/null +++ b/blockchains/agoric/validators/list.json @@ -0,0 +1,44 @@ +[ + { + "id": "agoricvaloper1ahd5z754dkgqxuc5fcwd2s5tatmpurhsdeqes2", + "name": "0xFury", + "description": "0xFury - Enterprise-grade blockchain infrastructure solutions.", + "website": "https://0xfury.com/" + }, + { + "id": "agoricvaloper1n3mhyp9fvcmuu8l0q8qvjy07x0rql8q4acufxj", + "name": "0base.vc", + "description": "0base.vc is a validator who doesn't trust any blockchain; we validate it ourselves.", + "website": "https://0base.vc/" + }, + { + "id": "agoricvaloper1jjx0vc6dxe44mxzyq2la22j86avdmj0qpkum7f", + "name": "Agaram.ai", + "description": "Securing Agoric. 100% Slash protected", + "website": "https://agaram.ai/" + }, + { + "id": "agoricvaloper1df98lt4ph685ujr69jy5w8xvrtszad7te7pna9", + "name": "AutoStake 🛡️ Slash Protected", + "description": "BareMetal - Decentralised - Reliable infrastructure run by the industry leader - AutoStake - Connect with us at: https://linktr.ee/autostake", + "website": "https://autostake.com" + }, + { + "id": "agoricvaloper1nkrt7kjln9rsypg3m4k23q703nww9lj9msvqp5", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com/" + }, + { + "id": "agoricvaloper1tfmed8ueaxrmdsvkecrae6renyxjct8xwdkes5", + "name": "w3coins", + "description": "w3coins is a Professional Validator and web3 Venture Capital. Stake Your Cryptocurrency with us to Maximize Your Earnings.", + "website": "https://www.w3coins.io" + }, + { + "id": "agoricvaloper1mxhgvj2c93xahahx9d9fc7rwwtufqza5cn6uhn", + "name": "Stakely.io", + "description": "🔥 Professional validator highly experienced in PoS 🔥 Slashing protection & Eligible for airdrops | Learn with our staking guides, video tutorials and FAQs | Part of the commission of our nodes will go to our Multicoin Faucet funds and other tools 🌱 Carbon Neutral 🌱", + "website": "https://stakely.io" + } +] diff --git a/blockchains/aion/info/info.json b/blockchains/aion/info/info.json index 502d89ed50397..d07bf6874b73c 100644 --- a/blockchains/aion/info/info.json +++ b/blockchains/aion/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/aionnetwork" }, { - "name": "twitter", - "url": "https://twitter.com/Aion_OAN" + "name": "x", + "url": "https://x.com/Aion_OAN" }, { "name": "reddit", diff --git a/blockchains/aion/info/square_logo.png b/blockchains/aion/info/square_logo.png new file mode 100644 index 0000000000000..a1235b9056867 Binary files /dev/null and b/blockchains/aion/info/square_logo.png differ diff --git a/blockchains/akash/info/info.json b/blockchains/akash/info/info.json index bad45258dd426..993c834985996 100644 --- a/blockchains/akash/info/info.json +++ b/blockchains/akash/info/info.json @@ -11,6 +11,9 @@ "denom": "uakt", "lcd_url": "https://akash-api.polkachu.com/", "hrp": "akash", + "tags": [ + "staking-native" + ], "links": [ { "name": "github", @@ -21,8 +24,8 @@ "url": "https://docs.akash.network/" }, { - "name": "twitter", - "url": "https://twitter.com/akashnet_" + "name": "x", + "url": "https://x.com/akashnet_" } ] } \ No newline at end of file diff --git a/blockchains/akash/info/square_logo.png b/blockchains/akash/info/square_logo.png new file mode 100644 index 0000000000000..e00728b4a6673 Binary files /dev/null and b/blockchains/akash/info/square_logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper105nkdqgkj3hpgqss0elcec2t72ujg09w5mzhm8/logo.png b/blockchains/akash/validators/assets/akashvaloper105nkdqgkj3hpgqss0elcec2t72ujg09w5mzhm8/logo.png new file mode 100644 index 0000000000000..d0388df6a68a4 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper105nkdqgkj3hpgqss0elcec2t72ujg09w5mzhm8/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper12fnzqmnja37mf2y9m6r3dleq5n3jkz7pfkpzmy/logo.png b/blockchains/akash/validators/assets/akashvaloper12fnzqmnja37mf2y9m6r3dleq5n3jkz7pfkpzmy/logo.png new file mode 100644 index 0000000000000..eaf66cb5cbb1f Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper12fnzqmnja37mf2y9m6r3dleq5n3jkz7pfkpzmy/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57ztqs903/logo.png b/blockchains/akash/validators/assets/akashvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57ztqs903/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57ztqs903/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper14jz04wwvwkpjzezq8zvrl5yv4qq3p5lqct7plh/logo.png b/blockchains/akash/validators/assets/akashvaloper14jz04wwvwkpjzezq8zvrl5yv4qq3p5lqct7plh/logo.png new file mode 100644 index 0000000000000..e117817071239 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper14jz04wwvwkpjzezq8zvrl5yv4qq3p5lqct7plh/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper14kn0kk33szpwus9nh8n87fjel8djx0y0uzn073/logo.png b/blockchains/akash/validators/assets/akashvaloper14kn0kk33szpwus9nh8n87fjel8djx0y0uzn073/logo.png new file mode 100644 index 0000000000000..8a7efc94d8c28 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper14kn0kk33szpwus9nh8n87fjel8djx0y0uzn073/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper14mdu3xwpdr4qkayuv0aut5j6l9lgegc4hnvm9e/logo.png b/blockchains/akash/validators/assets/akashvaloper14mdu3xwpdr4qkayuv0aut5j6l9lgegc4hnvm9e/logo.png new file mode 100644 index 0000000000000..bed0251921f16 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper14mdu3xwpdr4qkayuv0aut5j6l9lgegc4hnvm9e/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98aup3je/logo.png b/blockchains/akash/validators/assets/akashvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98aup3je/logo.png new file mode 100644 index 0000000000000..9dff7bbedfbee Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98aup3je/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper18xmxazt7zjhhvzv7u49fs8hjy4w7l4dyvvxpuf/logo.png b/blockchains/akash/validators/assets/akashvaloper18xmxazt7zjhhvzv7u49fs8hjy4w7l4dyvvxpuf/logo.png new file mode 100644 index 0000000000000..c53de0659fd41 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper18xmxazt7zjhhvzv7u49fs8hjy4w7l4dyvvxpuf/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper1c07ughj0a396vdg7t9edy2wyrzr90p02yhl7p8/logo.png b/blockchains/akash/validators/assets/akashvaloper1c07ughj0a396vdg7t9edy2wyrzr90p02yhl7p8/logo.png new file mode 100644 index 0000000000000..1020527149890 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper1c07ughj0a396vdg7t9edy2wyrzr90p02yhl7p8/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper1dgxdep80th2qm8xxk8h3j3g93npsd3a8jg60gz/logo.png b/blockchains/akash/validators/assets/akashvaloper1dgxdep80th2qm8xxk8h3j3g93npsd3a8jg60gz/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper1dgxdep80th2qm8xxk8h3j3g93npsd3a8jg60gz/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper1lxh0u07haj646pt9e0l2l4qc3d8htfx5kk698d/logo.png b/blockchains/akash/validators/assets/akashvaloper1lxh0u07haj646pt9e0l2l4qc3d8htfx5kk698d/logo.png new file mode 100644 index 0000000000000..f9f1f5be4354b Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper1lxh0u07haj646pt9e0l2l4qc3d8htfx5kk698d/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper1qvsus5qg8yhre7k2c78xkkw4nvqqgev7zw5wzs/logo.png b/blockchains/akash/validators/assets/akashvaloper1qvsus5qg8yhre7k2c78xkkw4nvqqgev7zw5wzs/logo.png new file mode 100644 index 0000000000000..48eaf9adeb96e Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper1qvsus5qg8yhre7k2c78xkkw4nvqqgev7zw5wzs/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper1strxz39h5fapp7zvn5mvf8xm0ea9aajqjstv6g/logo.png b/blockchains/akash/validators/assets/akashvaloper1strxz39h5fapp7zvn5mvf8xm0ea9aajqjstv6g/logo.png new file mode 100644 index 0000000000000..c2cb86a42efe3 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper1strxz39h5fapp7zvn5mvf8xm0ea9aajqjstv6g/logo.png differ diff --git a/blockchains/akash/validators/list.json b/blockchains/akash/validators/list.json new file mode 100644 index 0000000000000..ea99248c2bd30 --- /dev/null +++ b/blockchains/akash/validators/list.json @@ -0,0 +1,80 @@ +[ + { + "id": "akashvaloper1dgxdep80th2qm8xxk8h3j3g93npsd3a8jg60gz", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "akashvaloper105nkdqgkj3hpgqss0elcec2t72ujg09w5mzhm8", + "name": "NodesByGirls", + "description": "We are a professional team with many years of experience in the crypto industry. Stake with us to get the best APR!", + "website": "https://nodesbygirls.com/" + }, + { + "id": "akashvaloper1c07ughj0a396vdg7t9edy2wyrzr90p02yhl7p8", + "name": "Allnodes", + "description": "Reliable non-custodial Validator run by the industry leader - Allnodes. Monitor your rewards through the Allnodes portfolio page.", + "website": "https://www.allnodes.com/akt/staking" + }, + { + "id": "akashvaloper1qvsus5qg8yhre7k2c78xkkw4nvqqgev7zw5wzs", + "name": "kava_labs", + "description": "Kava is a decentralized blockchain that combines the speed and interoperability of Cosmos with the developer power of Ethereum.", + "website": "https://www.kava.io" + }, + { + "id": "akashvaloper14kn0kk33szpwus9nh8n87fjel8djx0y0uzn073", + "name": "Forbole", + "description": "Forbole is a renown validator in blockchain ecosystems such as Cosmos, Solana and Polkadot. We are an early investor and recognized contributor in Akash. We will continuous our effort to build Akash ecosystem with stakers like you.", + "website": "https://www.forbole.com" + }, + { + "id": "akashvaloper1strxz39h5fapp7zvn5mvf8xm0ea9aajqjstv6g", + "name": "AutoStake 🛡️ Slash Protected", + "description": "BareMetal - Decentralised - Reliable infrastructure run by the industry leader - AutoStake - Connect with us at: https://linktr.ee/autostake", + "website": "https://autostake.com" + }, + { + "id": "akashvaloper1lxh0u07haj646pt9e0l2l4qc3d8htfx5kk698d", + "name": "Chandra Station", + "description": "100% Uptime|100% Transparency|100% Slashing Protection", + "website": "https://www.chandrastation.com" + }, + { + "id": "akashvaloper12fnzqmnja37mf2y9m6r3dleq5n3jkz7pfkpzmy", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com/" + }, + { + "id": "akashvaloper14jz04wwvwkpjzezq8zvrl5yv4qq3p5lqct7plh", + "name": "w3coins", + "description": "w3coins is a Professional Validator and web3 Venture Capital. Stake Your Cryptocurrency with us to Maximize Your Earnings.", + "website": "https://www.w3coins.io" + }, + { + "id": "akashvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57ztqs903", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + }, + { + "id": "akashvaloper14mdu3xwpdr4qkayuv0aut5j6l9lgegc4hnvm9e", + "name": "Meria", + "description": "Meria is an institutional-grade staking service provider running blockchain infrastructure on more than +35 networks.", + "website": "https://stake.meria.com/" + }, + { + "id": "akashvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98aup3je", + "name": "Kahuna", + "description": "Kahuna is a tech-focused investment firm dedicated to Blockchain Infrastructure, DeFi, and Gaming startups. Follow us on https://x.com/kahunahq", + "website": "https://www.kahuna.network/" + }, + { + "id": "akashvaloper18xmxazt7zjhhvzv7u49fs8hjy4w7l4dyvvxpuf", + "name": "Coinage x DAIC", + "description": "The official validator node from Coinage (Coinage.Media) and DAIC (https://daic.capital/telegram)", + "website": "https://daic.capital/" + } +] diff --git a/blockchains/algorand/assets/137594422/info.json b/blockchains/algorand/assets/137594422/info.json index 4055f4bb07fc4..d5233d61082f2 100644 --- a/blockchains/algorand/assets/137594422/info.json +++ b/blockchains/algorand/assets/137594422/info.json @@ -5,7 +5,7 @@ "explorer": "https://algoexplorer.io/asset/137594422", "id": "137594422", "symbol": "HDL", - "type": "ALGORAND", + "type": "ASA", "decimals": 6, "status": "active", "links": [ @@ -14,8 +14,8 @@ "url": "https://github.com/headline-design" }, { - "name": "twitter", - "url": "https://twitter.com/headline_crypto" + "name": "x", + "url": "https://x.com/headline_crypto" }, { "name": "reddit", @@ -29,4 +29,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/algorand/assets/312769/info.json b/blockchains/algorand/assets/312769/info.json new file mode 100644 index 0000000000000..a45a0c68e70ae --- /dev/null +++ b/blockchains/algorand/assets/312769/info.json @@ -0,0 +1,24 @@ +{ + "name": "Tether USD", + "website": "https://tether.to", + "description": "Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.", + "explorer": "https://algoexplorer.io/asset/312769", + "type": "ASA", + "symbol": "USDT", + "decimals": 6, + "status": "active", + "id": "312769", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tether/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tether/" + } + ] +} diff --git a/blockchains/algorand/assets/312769/logo.png b/blockchains/algorand/assets/312769/logo.png new file mode 100644 index 0000000000000..b873452b2a329 Binary files /dev/null and b/blockchains/algorand/assets/312769/logo.png differ diff --git a/blockchains/algorand/assets/31566704/info.json b/blockchains/algorand/assets/31566704/info.json new file mode 100644 index 0000000000000..32b61c590ec16 --- /dev/null +++ b/blockchains/algorand/assets/31566704/info.json @@ -0,0 +1,37 @@ +{ + "name": "USDC", + "website": "https://www.centre.io", + "description": "USDC provides a fully collateralized US dollar stablecoin, and is based on the open source asset-backed stablecoin framework developed by Centre.", + "explorer": "https://algoexplorer.io/asset/31566704", + "research": "https://research.binance.com/en/projects/usd-coin", + "type": "ASA", + "symbol": "USDC", + "decimals": 6, + "status": "active", + "id": "31566704", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + } + ] +} diff --git a/blockchains/algorand/assets/31566704/logo.png b/blockchains/algorand/assets/31566704/logo.png new file mode 100644 index 0000000000000..b74fafb2d2b4f Binary files /dev/null and b/blockchains/algorand/assets/31566704/logo.png differ diff --git a/blockchains/algorand/info/info.json b/blockchains/algorand/info/info.json index b1d614799b67e..d8833315af0e4 100644 --- a/blockchains/algorand/info/info.json +++ b/blockchains/algorand/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/algorand" }, { - "name": "twitter", - "url": "https://twitter.com/AlgoFoundation" + "name": "x", + "url": "https://x.com/AlgoFoundation" }, { "name": "reddit", @@ -26,4 +26,4 @@ "url": "https://www.algorand.com/resources/white-papers/" } ] -} +} \ No newline at end of file diff --git a/blockchains/algorand/info/square_logo.png b/blockchains/algorand/info/square_logo.png new file mode 100644 index 0000000000000..72be45777ed12 Binary files /dev/null and b/blockchains/algorand/info/square_logo.png differ diff --git a/blockchains/aptos/assets/0x05fabd1b12e39967a3c24e91b7b8f67719a6dacee74f3c8b9fb7d93e855437d2/info.json b/blockchains/aptos/assets/0x05fabd1b12e39967a3c24e91b7b8f67719a6dacee74f3c8b9fb7d93e855437d2/info.json new file mode 100644 index 0000000000000..e26734ab3c72b --- /dev/null +++ b/blockchains/aptos/assets/0x05fabd1b12e39967a3c24e91b7b8f67719a6dacee74f3c8b9fb7d93e855437d2/info.json @@ -0,0 +1,20 @@ +{ + "name": "World Liberty Financial USD", + "type": "APTOS", + "symbol": "USD1", + "decimals": 6, + "description": "A stablecoin by World Liberty Financial, redeemable 1:1 for the U.S. dollar and backed by U.S. treasuries, dollar deposits, and other cash equivalents.", + "website": "https://www.worldlibertyfinancial.com/", + "explorer": "https://explorer.aptoslabs.com/fungible_asset/0x05fabd1b12e39967a3c24e91b7b8f67719a6dacee74f3c8b9fb7d93e855437d2?network=mainnet", + "status": "active", + "id": "0x05fabd1b12e39967a3c24e91b7b8f67719a6dacee74f3c8b9fb7d93e855437d2", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd1/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/aptos/assets/0x05fabd1b12e39967a3c24e91b7b8f67719a6dacee74f3c8b9fb7d93e855437d2/logo.png b/blockchains/aptos/assets/0x05fabd1b12e39967a3c24e91b7b8f67719a6dacee74f3c8b9fb7d93e855437d2/logo.png new file mode 100644 index 0000000000000..444ccb6501eeb Binary files /dev/null and b/blockchains/aptos/assets/0x05fabd1b12e39967a3c24e91b7b8f67719a6dacee74f3c8b9fb7d93e855437d2/logo.png differ diff --git a/blockchains/aptos/assets/0x159df6b7689437016108a019fd5bef736bac692b6d4a1f10c941f6fbb9a74ca6::oft::CakeOFT/info.json b/blockchains/aptos/assets/0x159df6b7689437016108a019fd5bef736bac692b6d4a1f10c941f6fbb9a74ca6::oft::CakeOFT/info.json index f5d56c9c886fb..4561912575da1 100644 --- a/blockchains/aptos/assets/0x159df6b7689437016108a019fd5bef736bac692b6d4a1f10c941f6fbb9a74ca6::oft::CakeOFT/info.json +++ b/blockchains/aptos/assets/0x159df6b7689437016108a019fd5bef736bac692b6d4a1f10c941f6fbb9a74ca6::oft::CakeOFT/info.json @@ -1,5 +1,5 @@ { - "name": "PancakeSwap Token", + "name": "PancakeSwap", "symbol": "CAKE", "decimals": 8, "website": "https://pancakeswap.finance", @@ -15,8 +15,8 @@ "url": "https://github.com/pancakeswap" }, { - "name": "twitter", - "url": "https://twitter.com/pancakeswap" + "name": "x", + "url": "https://x.com/pancakeswap" }, { "name": "blog", @@ -31,4 +31,4 @@ "url": "https://coingecko.com/coins/pancakeswap-token/" } ] -} +} \ No newline at end of file diff --git a/blockchains/aptos/assets/0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b/info.json b/blockchains/aptos/assets/0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b/info.json new file mode 100644 index 0000000000000..de82e4d7b44f8 --- /dev/null +++ b/blockchains/aptos/assets/0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b/info.json @@ -0,0 +1,28 @@ +{ + "name": "Tether USD", + "website": "https://tether.to", + "description": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar.", + "explorer": "https://explorer.aptoslabs.com/fungible_asset/0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b?network=mainnet", + "symbol": "USDT", + "type": "APTOSFA", + "decimals": 6, + "status": "active", + "id": "0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/tether.to/" + }, + { + "name": "x", + "url": "https://x.com/Tether_to/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tether/" + } + ] +} diff --git a/blockchains/aptos/assets/0xacd014e8bdf395fa8497b6d585b164547a9d45269377bdf67c96c541b7fec9ed::coin::T/logo.png b/blockchains/aptos/assets/0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b/logo.png similarity index 100% rename from blockchains/aptos/assets/0xacd014e8bdf395fa8497b6d585b164547a9d45269377bdf67c96c541b7fec9ed::coin::T/logo.png rename to blockchains/aptos/assets/0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b/logo.png diff --git a/blockchains/aptos/assets/0xa2eda21a58856fda86451436513b867c97eecb4ba099da5775520e0f7492e852::coin::T/info.json b/blockchains/aptos/assets/0xa2eda21a58856fda86451436513b867c97eecb4ba099da5775520e0f7492e852::coin::T/info.json index 1bc9774dcc857..146d5b88f08f3 100644 --- a/blockchains/aptos/assets/0xa2eda21a58856fda86451436513b867c97eecb4ba099da5775520e0f7492e852::coin::T/info.json +++ b/blockchains/aptos/assets/0xa2eda21a58856fda86451436513b867c97eecb4ba099da5775520e0f7492e852::coin::T/info.json @@ -2,7 +2,7 @@ "name": "Tether USD (Wormhole)", "symbol": "USDT", "decimals": 6, - "status": "active", + "status": "abandoned", "id": "0xa2eda21a58856fda86451436513b867c97eecb4ba099da5775520e0f7492e852::coin::T", "tags": [ "stablecoin" diff --git a/blockchains/aptos/assets/0xa2eda21a58856fda86451436513b867c97eecb4ba099da5775520e0f7492e852::coin::T/logo.png b/blockchains/aptos/assets/0xa2eda21a58856fda86451436513b867c97eecb4ba099da5775520e0f7492e852::coin::T/logo.png deleted file mode 100644 index 41943ac56e6ce..0000000000000 Binary files a/blockchains/aptos/assets/0xa2eda21a58856fda86451436513b867c97eecb4ba099da5775520e0f7492e852::coin::T/logo.png and /dev/null differ diff --git a/blockchains/aptos/assets/0xacd014e8bdf395fa8497b6d585b164547a9d45269377bdf67c96c541b7fec9ed::coin::T/info.json b/blockchains/aptos/assets/0xacd014e8bdf395fa8497b6d585b164547a9d45269377bdf67c96c541b7fec9ed::coin::T/info.json index 7b3b13b6cc535..bbeec2e907957 100644 --- a/blockchains/aptos/assets/0xacd014e8bdf395fa8497b6d585b164547a9d45269377bdf67c96c541b7fec9ed::coin::T/info.json +++ b/blockchains/aptos/assets/0xacd014e8bdf395fa8497b6d585b164547a9d45269377bdf67c96c541b7fec9ed::coin::T/info.json @@ -1,10 +1,11 @@ - { - "name": "Tether USD", - "symbol": "USDTbs", - "decimals": 8, - "status": "active", - "id": "0xacd014e8bdf395fa8497b6d585b164547a9d45269377bdf67c96c541b7fec9ed::coin::T", - "tags": [ - "stablecoin" - ] - } \ No newline at end of file +{ + "name": "Tether USD", + "symbol": "USDTbs", + "type": "APTOS", + "decimals": 8, + "status": "abandoned", + "id": "0xacd014e8bdf395fa8497b6d585b164547a9d45269377bdf67c96c541b7fec9ed::coin::T", + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/aptos/assets/0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b/info.json b/blockchains/aptos/assets/0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b/info.json new file mode 100644 index 0000000000000..36db13a746093 --- /dev/null +++ b/blockchains/aptos/assets/0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b/info.json @@ -0,0 +1,24 @@ +{ + "name": "USDC", + "website": "https://circle.com/usdc", + "description": "USDC is a stablecoin that is pegged to the U.S. dollar on a 1:1 basis", + "explorer": "0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b", + "symbol": "USDC", + "type": "APTOSFA", + "decimals": 6, + "status": "active", + "id": "0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/circle" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + } + ] +} diff --git a/blockchains/aptos/assets/0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b/logo.png b/blockchains/aptos/assets/0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b/logo.png new file mode 100644 index 0000000000000..2e9267c103dc2 Binary files /dev/null and b/blockchains/aptos/assets/0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b/logo.png differ diff --git a/blockchains/aptos/assets/0xd11107bdf0d6d7040c6c0bfbdecb6545191fdf13e8d8d259952f53e1713f61b5:staked_coin:StakedAptos/info.json b/blockchains/aptos/assets/0xd11107bdf0d6d7040c6c0bfbdecb6545191fdf13e8d8d259952f53e1713f61b5::staked_coin::StakedAptos/info.json similarity index 100% rename from blockchains/aptos/assets/0xd11107bdf0d6d7040c6c0bfbdecb6545191fdf13e8d8d259952f53e1713f61b5:staked_coin:StakedAptos/info.json rename to blockchains/aptos/assets/0xd11107bdf0d6d7040c6c0bfbdecb6545191fdf13e8d8d259952f53e1713f61b5::staked_coin::StakedAptos/info.json diff --git a/blockchains/aptos/assets/0xd11107bdf0d6d7040c6c0bfbdecb6545191fdf13e8d8d259952f53e1713f61b5:staked_coin:StakedAptos/logo.png b/blockchains/aptos/assets/0xd11107bdf0d6d7040c6c0bfbdecb6545191fdf13e8d8d259952f53e1713f61b5::staked_coin::StakedAptos/logo.png similarity index 100% rename from blockchains/aptos/assets/0xd11107bdf0d6d7040c6c0bfbdecb6545191fdf13e8d8d259952f53e1713f61b5:staked_coin:StakedAptos/logo.png rename to blockchains/aptos/assets/0xd11107bdf0d6d7040c6c0bfbdecb6545191fdf13e8d8d259952f53e1713f61b5::staked_coin::StakedAptos/logo.png diff --git a/blockchains/aptos/assets/0xe4ccb6d39136469f376242c31b34d10515c8eaaa38092f804db8e08a8f53c5b2::assets_v1::EchoCoin002/info.json b/blockchains/aptos/assets/0xe4ccb6d39136469f376242c31b34d10515c8eaaa38092f804db8e08a8f53c5b2::assets_v1::EchoCoin002/info.json new file mode 100644 index 0000000000000..86e50ed57e50c --- /dev/null +++ b/blockchains/aptos/assets/0xe4ccb6d39136469f376242c31b34d10515c8eaaa38092f804db8e08a8f53c5b2::assets_v1::EchoCoin002/info.json @@ -0,0 +1,28 @@ +{ + "name": "GUI INU", + "symbol": "GUI", + "decimals": 6, + "website": "https://www.guiinu.com", + "type": "APTOS", + "explorer": "https://aptoscan.com/coin/0xe4ccb6d39136469f376242c31b34d10515c8eaaa38092f804db8e08a8f53c5b2::assets_v1::EchoCoin002", + "status": "active", + "description": "Gui Inu is an unofficial official community token on Aptos, aimed at incentivizing and rewarding Inventive developments through community grants, fostering a culture of fun vibes, high engagement and camaraderie. A drive to integrate seamlessly across the Aptos ecosystem , supporting the growth of diverse use cases and ensuring continual revitalization within the ecosystem.", + "id": "0xe4ccb6d39136469f376242c31b34d10515c8eaaa38092f804db8e08a8f53c5b2::assets_v1::EchoCoin002", + "tags": [ + "memes" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/guiinuonaptos" + }, + { + "name": "telegram", + "url": "https://t.me/redactedaptos" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gui-inu" + } + ] +} \ No newline at end of file diff --git a/blockchains/aptos/assets/0xe4ccb6d39136469f376242c31b34d10515c8eaaa38092f804db8e08a8f53c5b2::assets_v1::EchoCoin002/logo.png b/blockchains/aptos/assets/0xe4ccb6d39136469f376242c31b34d10515c8eaaa38092f804db8e08a8f53c5b2::assets_v1::EchoCoin002/logo.png new file mode 100644 index 0000000000000..d5454d31a9b38 Binary files /dev/null and b/blockchains/aptos/assets/0xe4ccb6d39136469f376242c31b34d10515c8eaaa38092f804db8e08a8f53c5b2::assets_v1::EchoCoin002/logo.png differ diff --git a/blockchains/aptos/info/info.json b/blockchains/aptos/info/info.json index 736b4a3ffc976..071b4a18535f7 100644 --- a/blockchains/aptos/info/info.json +++ b/blockchains/aptos/info/info.json @@ -8,12 +8,13 @@ "decimals": 8, "status": "active", "tags": [ - "defi" + "defi", + "dapp" ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/aptoslabs" + "name": "x", + "url": "https://x.com/aptoslabs" }, { "name": "github", diff --git a/blockchains/aptos/info/square_logo.png b/blockchains/aptos/info/square_logo.png new file mode 100644 index 0000000000000..13074da3c82f3 Binary files /dev/null and b/blockchains/aptos/info/square_logo.png differ diff --git a/blockchains/arbitrum/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/info.json b/blockchains/arbitrum/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/info.json new file mode 100644 index 0000000000000..d1448f7947356 --- /dev/null +++ b/blockchains/arbitrum/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/info.json @@ -0,0 +1,14 @@ +{ + "name": "AUSD", + "type": "ARBITRUM", + "symbol": "AUSD", + "decimals": 6, + "website": "https://www.agora.finance/", + "description": "AUSD is a safe, secure asset that enables billions of dollars of transfers and is used globally.", + "explorer": "https://arbiscan.io/token/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a", + "status": "active", + "id": "0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a", + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/logo.png b/blockchains/arbitrum/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/logo.png new file mode 100644 index 0000000000000..b41ffbfbb87a1 Binary files /dev/null and b/blockchains/arbitrum/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/logo.png differ diff --git a/blockchains/arbitrum/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json b/blockchains/arbitrum/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json new file mode 100644 index 0000000000000..649ff08341564 --- /dev/null +++ b/blockchains/arbitrum/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json @@ -0,0 +1,37 @@ +{ + "name": "USDA", + "website": "https://www.angle.money/", + "description": "USDA is an over-collateralized and decentralized USD stablecoin by the Angle Protocol.", + "explorer": "https://arbiscan.io/token/0x0000206329b97DB379d5E1Bf586BbDB969C63274", + "type": "ARBITRUM", + "symbol": "USDA", + "decimals": 18, + "status": "active", + "tags": [ + "defi", + "stablecoin" + ], + "id": "0x0000206329b97DB379d5E1Bf586BbDB969C63274", + "links": [ + { + "name": "github", + "url": "https://github.com/AngleProtocol" + }, + { + "name": "x", + "url": "https://x.com/AngleProtocol" + }, + { + "name": "docs", + "url": "https://docs.angle.money" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/angle-usd" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZheVAnFt6h" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/logo.png b/blockchains/arbitrum/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/logo.png new file mode 100644 index 0000000000000..759db2e96cc84 Binary files /dev/null and b/blockchains/arbitrum/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/logo.png differ diff --git a/blockchains/arbitrum/assets/0x000F1720A263f96532D1ac2bb9CDC12b72C6f386/info.json b/blockchains/arbitrum/assets/0x000F1720A263f96532D1ac2bb9CDC12b72C6f386/info.json new file mode 100644 index 0000000000000..18d4268627d55 --- /dev/null +++ b/blockchains/arbitrum/assets/0x000F1720A263f96532D1ac2bb9CDC12b72C6f386/info.json @@ -0,0 +1,21 @@ +{ + "name": "Fluidity", + "symbol": "FLY", + "type": "ARBITRUM", + "decimals": 18, + "description": "Fluidity Money (FLY) powers Fluidity Money tokens (Fluid Assets) including fUSDC. Fluid Assets are a 1-to-1 wrapped asset that expose holders to randomly paid rewards when they use their cryptocurrencies.", + "website": "https://www.fluidity.money", + "explorer": "https://arbiscan.io/token/0x000F1720A263f96532D1ac2bb9CDC12b72C6f386", + "status": "active", + "id": "0x000F1720A263f96532D1ac2bb9CDC12b72C6f386", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fluidity-money/" + }, + { + "name": "x", + "url": "https://x.com/fluiditylabs" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x000F1720A263f96532D1ac2bb9CDC12b72C6f386/logo.png b/blockchains/arbitrum/assets/0x000F1720A263f96532D1ac2bb9CDC12b72C6f386/logo.png new file mode 100644 index 0000000000000..bd3cb31745e2e Binary files /dev/null and b/blockchains/arbitrum/assets/0x000F1720A263f96532D1ac2bb9CDC12b72C6f386/logo.png differ diff --git a/blockchains/arbitrum/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/info.json b/blockchains/arbitrum/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/info.json new file mode 100644 index 0000000000000..bee433aa47fd4 --- /dev/null +++ b/blockchains/arbitrum/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/info.json @@ -0,0 +1,37 @@ +{ + "name": "Staked USDA", + "website": "https://www.angle.money/", + "description": "stUSD is a USD savings solution built on top of USDA by the Angle Protocol", + "explorer": "https://arbiscan.io/token/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776", + "type": "ARBITRUM", + "symbol": "stUSD", + "decimals": 18, + "status": "active", + "tags": [ + "defi", + "stablecoin" + ], + "id": "0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776", + "links": [ + { + "name": "github", + "url": "https://github.com/AngleProtocol" + }, + { + "name": "x", + "url": "https://x.com/AngleProtocol" + }, + { + "name": "docs", + "url": "https://docs.angle.money" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/angle-staked-agusd" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZheVAnFt6h" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/logo.png b/blockchains/arbitrum/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/logo.png new file mode 100644 index 0000000000000..a0fd0bd217403 Binary files /dev/null and b/blockchains/arbitrum/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/logo.png differ diff --git a/blockchains/arbitrum/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/info.json b/blockchains/arbitrum/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/info.json new file mode 100644 index 0000000000000..e210e88c1ee8d --- /dev/null +++ b/blockchains/arbitrum/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/info.json @@ -0,0 +1,37 @@ +{ + "name": "Staked EURA", + "website": "https://www.angle.money/", + "description": "stEUR is a Euro savings solution built on top of EURA by the Angle Protocol.", + "explorer": "https://arbiscan.io/token/0x004626A008B1aCdC4c74ab51644093b155e59A23", + "type": "ARBITRUM", + "symbol": "stEUR", + "decimals": 18, + "status": "active", + "tags": [ + "defi", + "stablecoin" + ], + "id": "0x004626A008B1aCdC4c74ab51644093b155e59A23", + "links": [ + { + "name": "github", + "url": "https://github.com/AngleProtocol" + }, + { + "name": "x", + "url": "https://x.com/AngleProtocol" + }, + { + "name": "docs", + "url": "https://docs.angle.money" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/staked-ageur" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZheVAnFt6h" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/logo.png b/blockchains/arbitrum/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/logo.png new file mode 100644 index 0000000000000..dbf1b94234fc1 Binary files /dev/null and b/blockchains/arbitrum/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/logo.png differ diff --git a/blockchains/arbitrum/assets/0x010700AB046Dd8e92b0e3587842080Df36364ed3/info.json b/blockchains/arbitrum/assets/0x010700AB046Dd8e92b0e3587842080Df36364ed3/info.json new file mode 100644 index 0000000000000..05110b521e3c7 --- /dev/null +++ b/blockchains/arbitrum/assets/0x010700AB046Dd8e92b0e3587842080Df36364ed3/info.json @@ -0,0 +1,45 @@ +{ + "name": "Kinto", + "type": "ARBITRUM", + "symbol": "K", + "decimals": 18, + "website": "https://kinto.xyz", + "description": "Kinto is a modular exchange and Ethereum Layer 2 (L2) designed for sybil resistance, KYC-native compliance, and smart contract wallets by default. It offers the performance and user experience of centralized exchanges (CEXs) while remaining fully non-custodial.", + "explorer": "https://arbiscan.io/token/0x010700AB046Dd8e92b0e3587842080Df36364ed3", + "status": "active", + "id": "0x010700AB046Dd8e92b0e3587842080Df36364ed3", + "links": [ + { + "name": "github", + "url": "https://github.com/KintoXYZ/" + }, + { + "name": "x", + "url": "https://x.com/KintoXYZ" + }, + { + "name": "whitepaper", + "url": "https://docs.kinto.xyz/kinto-the-modular-exchange/general/litepaper" + }, + { + "name": "blog", + "url": "https://medium.com/mamori-finance/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/kinto" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kinto/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kinto" + } + ], + "tags": [ + "defi" + ] +} + diff --git a/blockchains/arbitrum/assets/0x010700AB046Dd8e92b0e3587842080Df36364ed3/logo.png b/blockchains/arbitrum/assets/0x010700AB046Dd8e92b0e3587842080Df36364ed3/logo.png new file mode 100644 index 0000000000000..c58ac57e79bed Binary files /dev/null and b/blockchains/arbitrum/assets/0x010700AB046Dd8e92b0e3587842080Df36364ed3/logo.png differ diff --git a/blockchains/arbitrum/assets/0x02C1b10e5329c4502469396B2ce9f200E60b4a77/info.json b/blockchains/arbitrum/assets/0x02C1b10e5329c4502469396B2ce9f200E60b4a77/info.json new file mode 100644 index 0000000000000..e5c1afe965125 --- /dev/null +++ b/blockchains/arbitrum/assets/0x02C1b10e5329c4502469396B2ce9f200E60b4a77/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Medtronic Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0x02C1b10e5329c4502469396B2ce9f200E60b4a77", + "type": "ARBITRUM", + "symbol": "WMDTX", + "decimals": 18, + "status": "active", + "id": "0x02C1b10e5329c4502469396B2ce9f200E60b4a77", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-medtronic-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x02C1b10e5329c4502469396B2ce9f200E60b4a77/logo.png b/blockchains/arbitrum/assets/0x02C1b10e5329c4502469396B2ce9f200E60b4a77/logo.png new file mode 100644 index 0000000000000..e8b8336689169 Binary files /dev/null and b/blockchains/arbitrum/assets/0x02C1b10e5329c4502469396B2ce9f200E60b4a77/logo.png differ diff --git a/blockchains/arbitrum/assets/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9/info.json b/blockchains/arbitrum/assets/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9/info.json new file mode 100644 index 0000000000000..d78198f476e7a --- /dev/null +++ b/blockchains/arbitrum/assets/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9/info.json @@ -0,0 +1,24 @@ +{ + "name": "Philip Morris tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Phillip Morris xStock (PMx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. PMx tracks the price of Philip Morris International Inc. (the underlying). PMx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Philip Morris International Inc., whilst maintaining the benefits of blockchain technology. Phillip Morris is an American multinational tobacco company, with products sold in over 180 countries.", + "explorer": "https://arbiscan.io/token/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9", + "type": "ARBITRUM", + "symbol": "PMX", + "decimals": 18, + "status": "active", + "id": "0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/philip-morris-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9/logo.png b/blockchains/arbitrum/assets/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9/logo.png new file mode 100644 index 0000000000000..af7129b1cec83 Binary files /dev/null and b/blockchains/arbitrum/assets/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9/logo.png differ diff --git a/blockchains/arbitrum/assets/0x02f92800F57BCD74066F5709F1Daa1A4302Df875/info.json b/blockchains/arbitrum/assets/0x02f92800F57BCD74066F5709F1Daa1A4302Df875/info.json new file mode 100644 index 0000000000000..e748bb03ec447 --- /dev/null +++ b/blockchains/arbitrum/assets/0x02f92800F57BCD74066F5709F1Daa1A4302Df875/info.json @@ -0,0 +1,17 @@ +{ + "name": "Peapods", + "website": "https://peapods.finance/", + "description": "Peapods finance offers farming volatility through the first fully decentralized on-chain yield-bearing index funds, or pods.", + "explorer": "https://arbiscan.io/token/0x02f92800F57BCD74066F5709F1Daa1A4302Df875", + "type": "ARBITRUM", + "symbol": "PEAS", + "decimals": 18, + "status": "active", + "id": "0x02f92800F57BCD74066F5709F1Daa1A4302Df875", + "links": [ + { + "name": "x", + "url": "https://x.com/PeapodsFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x02f92800F57BCD74066F5709F1Daa1A4302Df875/logo.png b/blockchains/arbitrum/assets/0x02f92800F57BCD74066F5709F1Daa1A4302Df875/logo.png new file mode 100644 index 0000000000000..156b8acc1b617 Binary files /dev/null and b/blockchains/arbitrum/assets/0x02f92800F57BCD74066F5709F1Daa1A4302Df875/logo.png differ diff --git a/blockchains/arbitrum/assets/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB/info.json b/blockchains/arbitrum/assets/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB/info.json new file mode 100644 index 0000000000000..aa3929b53f359 --- /dev/null +++ b/blockchains/arbitrum/assets/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB/info.json @@ -0,0 +1,24 @@ +{ + "name": "Accenture tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Accenture xStock (ACNx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. ACNx tracks the price of Accenture plc Class A (the underlying). ACNx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Accenture plc Class A, whilst maintaining the benefits of blockchain technology. Accenture is a global professional services company that helps businesses, governments, and other organizations build their digital core, optimize their operations, and accelerate revenue growth.", + "explorer": "https://arbiscan.io/token/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB", + "type": "ARBITRUM", + "symbol": "ACNX", + "decimals": 18, + "status": "active", + "id": "0x03183Ce31b1656B72A55fa6056e287f50C35BbEB", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/accenture-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB/logo.png b/blockchains/arbitrum/assets/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB/logo.png new file mode 100644 index 0000000000000..70683dfdde705 Binary files /dev/null and b/blockchains/arbitrum/assets/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB/logo.png differ diff --git a/blockchains/arbitrum/assets/0x040d1EdC9569d4Bab2D15287Dc5A4F10F56a56B8/info.json b/blockchains/arbitrum/assets/0x040d1EdC9569d4Bab2D15287Dc5A4F10F56a56B8/info.json index 229912464ca23..34929aaf12cc4 100644 --- a/blockchains/arbitrum/assets/0x040d1EdC9569d4Bab2D15287Dc5A4F10F56a56B8/info.json +++ b/blockchains/arbitrum/assets/0x040d1EdC9569d4Bab2D15287Dc5A4F10F56a56B8/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/balancer-labs" }, { - "name": "twitter", - "url": "https://twitter.com/BalancerLabs" + "name": "x", + "url": "https://x.com/BalancerLabs" }, { "name": "coinmarketcap", diff --git a/blockchains/arbitrum/assets/0x053C784cD87B74f42e0c089f98643E79c1A3ff16/info.json b/blockchains/arbitrum/assets/0x053C784cD87B74f42e0c089f98643E79c1A3ff16/info.json new file mode 100644 index 0000000000000..614f0f191696d --- /dev/null +++ b/blockchains/arbitrum/assets/0x053C784cD87B74f42e0c089f98643E79c1A3ff16/info.json @@ -0,0 +1,24 @@ +{ + "name": "Cisco tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Cisco xStock (CSCOx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. CSCOx tracks the price of Cisco Systems, Inc. (the underlying). CSCOx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Cisco Systems, Inc., whilst maintaining the benefits of blockchain technology. Cisco is a leading global technology company that focuses on networking, security, collaboration, and cloud solutions.", + "explorer": "https://arbiscan.io/token/0x053C784cD87B74f42e0c089f98643E79c1A3ff16", + "type": "ARBITRUM", + "symbol": "CSCOX", + "decimals": 18, + "status": "active", + "id": "0x053C784cD87B74f42e0c089f98643E79c1A3ff16", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cisco-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x053C784cD87B74f42e0c089f98643E79c1A3ff16/logo.png b/blockchains/arbitrum/assets/0x053C784cD87B74f42e0c089f98643E79c1A3ff16/logo.png new file mode 100644 index 0000000000000..861002db70a6d Binary files /dev/null and b/blockchains/arbitrum/assets/0x053C784cD87B74f42e0c089f98643E79c1A3ff16/logo.png differ diff --git a/blockchains/arbitrum/assets/0x0588e851ec0418d660BeE81230d6c678dAF21d46/info.json b/blockchains/arbitrum/assets/0x0588e851ec0418d660BeE81230d6c678dAF21d46/info.json new file mode 100644 index 0000000000000..dd8809ae8db4c --- /dev/null +++ b/blockchains/arbitrum/assets/0x0588e851ec0418d660BeE81230d6c678dAF21d46/info.json @@ -0,0 +1,24 @@ +{ + "name": "Medtronic tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Medtronic xStock (MDTx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. MDTx tracks the price of Medtronic plc (the underlying). MDTx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Medtronic plc, whilst maintaining the benefits of blockchain technology. Medtronic plc is a global healthcare technology company that develops, manufactures, and sells device-based medical therapies and services.", + "explorer": "https://arbiscan.io/token/0x0588e851ec0418d660BeE81230d6c678dAF21d46", + "type": "ARBITRUM", + "symbol": "MDTX", + "decimals": 18, + "status": "active", + "id": "0x0588e851ec0418d660BeE81230d6c678dAF21d46", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/medtronic-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x0588e851ec0418d660BeE81230d6c678dAF21d46/logo.png b/blockchains/arbitrum/assets/0x0588e851ec0418d660BeE81230d6c678dAF21d46/logo.png new file mode 100644 index 0000000000000..1759e67f775b0 Binary files /dev/null and b/blockchains/arbitrum/assets/0x0588e851ec0418d660BeE81230d6c678dAF21d46/logo.png differ diff --git a/blockchains/arbitrum/assets/0x064F8B858C2A603e1b106a2039f5446D32dc81c1/info.json b/blockchains/arbitrum/assets/0x064F8B858C2A603e1b106a2039f5446D32dc81c1/info.json new file mode 100644 index 0000000000000..bdf8851251890 --- /dev/null +++ b/blockchains/arbitrum/assets/0x064F8B858C2A603e1b106a2039f5446D32dc81c1/info.json @@ -0,0 +1,21 @@ +{ + "name": "Autonolas", + "type": "ARBIRTUM", + "symbol": "OLAS", + "decimals": 18, + "website": "https://olas.network/", + "description": "A unified network of off-chain services – like automation, oracles, and co-owned AI. Autonolas offers a composable stack for building these services, and a protocol for incentivizing their creation. Autonolas enables operating these services in a co-owned and decentralized way.", + "explorer": "https://arbiscan.io/token/0x064f8b858c2a603e1b106a2039f5446d32dc81c1", + "status": "active", + "id": "0x064F8B858C2A603e1b106a2039f5446D32dc81c1", + "links": [ + { + "name": "x", + "url": "https://x.com/autonolas" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/autonolas/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x064F8B858C2A603e1b106a2039f5446D32dc81c1/logo.png b/blockchains/arbitrum/assets/0x064F8B858C2A603e1b106a2039f5446D32dc81c1/logo.png new file mode 100644 index 0000000000000..72db0bd92246c Binary files /dev/null and b/blockchains/arbitrum/assets/0x064F8B858C2A603e1b106a2039f5446D32dc81c1/logo.png differ diff --git a/blockchains/arbitrum/assets/0x080F6AEd32Fc474DD5717105Dba5ea57268F46eb/info.json b/blockchains/arbitrum/assets/0x080F6AEd32Fc474DD5717105Dba5ea57268F46eb/info.json index 49280da9e8c3e..dfa07a209a358 100644 --- a/blockchains/arbitrum/assets/0x080F6AEd32Fc474DD5717105Dba5ea57268F46eb/info.json +++ b/blockchains/arbitrum/assets/0x080F6AEd32Fc474DD5717105Dba5ea57268F46eb/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/synapseprotocol" + "name": "x", + "url": "https://x.com/synapseprotocol" }, { "name": "telegram", diff --git a/blockchains/arbitrum/assets/0x088cd8f5eF3652623c22D48b1605DCfE860Cd704/info.json b/blockchains/arbitrum/assets/0x088cd8f5eF3652623c22D48b1605DCfE860Cd704/info.json new file mode 100644 index 0000000000000..41b159d558ff9 --- /dev/null +++ b/blockchains/arbitrum/assets/0x088cd8f5eF3652623c22D48b1605DCfE860Cd704/info.json @@ -0,0 +1,21 @@ +{ + "name": "VelaToken", + "type": "ARBITRUM", + "symbol": "VELA", + "decimals": 18, + "website": "https://vela.exchange/", + "description": "Trade crypto and forex assets with up to 100x leverage on the world’s most advanced decentralized trading platform.", + "explorer": "https://arbiscan.io/token/0x088cd8f5ef3652623c22d48b1605dcfe860cd704", + "status": "active", + "id": "0x088cd8f5eF3652623c22D48b1605DCfE860Cd704", + "links": [ + { + "name": "x", + "url": "https://x.com/vela_exchange" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vela-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x088cd8f5eF3652623c22D48b1605DCfE860Cd704/logo.png b/blockchains/arbitrum/assets/0x088cd8f5eF3652623c22D48b1605DCfE860Cd704/logo.png new file mode 100644 index 0000000000000..824f91c2a2adb Binary files /dev/null and b/blockchains/arbitrum/assets/0x088cd8f5eF3652623c22D48b1605DCfE860Cd704/logo.png differ diff --git a/blockchains/arbitrum/assets/0x09E18590E8f76b6Cf471b3cd75fE1A1a9D2B2c2b/info.json b/blockchains/arbitrum/assets/0x09E18590E8f76b6Cf471b3cd75fE1A1a9D2B2c2b/info.json new file mode 100644 index 0000000000000..9148fb3ecfc74 --- /dev/null +++ b/blockchains/arbitrum/assets/0x09E18590E8f76b6Cf471b3cd75fE1A1a9D2B2c2b/info.json @@ -0,0 +1,32 @@ +{ + "name": "AIDOGE", + "website": "https://arbdoge.ai/", + "description": "ArbDogeAI is created by AI. 100% of the tokens belong to the community. Never consider AIDOGE as a MEME.", + "explorer": "https://arbiscan.io/token/0x09e18590e8f76b6cf471b3cd75fe1a1a9d2b2c2b", + "type": "ARBITRUM", + "symbol": "AIDOGE", + "decimals": 6, + "status": "active", + "id": "0x09E18590E8f76b6Cf471b3cd75fE1A1a9D2B2c2b", + "tags": [ + "memes" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/arbdogeai" + }, + { + "name": "medium", + "url": "https://medium.com/@ArbDogeAI" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/arbdoge-ai/" + }, + { + "name": "whitepaper", + "url": "https://docs.arbdoge.ai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x09E18590E8f76b6Cf471b3cd75fE1A1a9D2B2c2b/logo.png b/blockchains/arbitrum/assets/0x09E18590E8f76b6Cf471b3cd75fE1A1a9D2B2c2b/logo.png new file mode 100644 index 0000000000000..ef4c4544cecf3 Binary files /dev/null and b/blockchains/arbitrum/assets/0x09E18590E8f76b6Cf471b3cd75fE1A1a9D2B2c2b/logo.png differ diff --git a/blockchains/arbitrum/assets/0x0afC19943fA98E9E9E90Fc4ab4d4D3c13E162232/info.json b/blockchains/arbitrum/assets/0x0afC19943fA98E9E9E90Fc4ab4d4D3c13E162232/info.json new file mode 100644 index 0000000000000..e18ca2798e1ca --- /dev/null +++ b/blockchains/arbitrum/assets/0x0afC19943fA98E9E9E90Fc4ab4d4D3c13E162232/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Procter & Gamble Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0x0afC19943fA98E9E9E90Fc4ab4d4D3c13E162232", + "type": "ARBITRUM", + "symbol": "WPGX", + "decimals": 18, + "status": "active", + "id": "0x0afC19943fA98E9E9E90Fc4ab4d4D3c13E162232", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-procter-gamble-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x0afC19943fA98E9E9E90Fc4ab4d4D3c13E162232/logo.png b/blockchains/arbitrum/assets/0x0afC19943fA98E9E9E90Fc4ab4d4D3c13E162232/logo.png new file mode 100644 index 0000000000000..e2179b001d506 Binary files /dev/null and b/blockchains/arbitrum/assets/0x0afC19943fA98E9E9E90Fc4ab4d4D3c13E162232/logo.png differ diff --git a/blockchains/arbitrum/assets/0x0c5fa0E07949F941A6c2C29a008252db1527d6EE/info.json b/blockchains/arbitrum/assets/0x0c5fa0E07949F941A6c2C29a008252db1527d6EE/info.json new file mode 100644 index 0000000000000..caddd92268927 --- /dev/null +++ b/blockchains/arbitrum/assets/0x0c5fa0E07949F941A6c2C29a008252db1527d6EE/info.json @@ -0,0 +1,21 @@ +{ + "name": "Opulous", + "type": "ARBITRUM", + "symbol": "OPUL", + "website": "https://opulous.org/", + "decimals": 18, + "description": "Opulous Token believe in a future where musicians keep control of the music they create and forge even deeper connections with their fans.", + "explorer": "https://arbiscan.io/token/0x0c5fa0E07949F941A6c2C29a008252db1527d6EE", + "status": "active", + "id": "0x0c5fa0E07949F941A6c2C29a008252db1527d6EE", + "links": [ + { + "name": "telegram", + "url": "https://t.me/opulousapp" + }, + { + "name": "x", + "url": "https://x.com/opulousapp" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x0c5fa0E07949F941A6c2C29a008252db1527d6EE/logo.png b/blockchains/arbitrum/assets/0x0c5fa0E07949F941A6c2C29a008252db1527d6EE/logo.png new file mode 100644 index 0000000000000..afa7fedd2bd39 Binary files /dev/null and b/blockchains/arbitrum/assets/0x0c5fa0E07949F941A6c2C29a008252db1527d6EE/logo.png differ diff --git a/blockchains/arbitrum/assets/0x0c880f6761F1af8d9Aa9C466984b80DAb9a8c9e8/info.json b/blockchains/arbitrum/assets/0x0c880f6761F1af8d9Aa9C466984b80DAb9a8c9e8/info.json new file mode 100644 index 0000000000000..f9566ddea5fb6 --- /dev/null +++ b/blockchains/arbitrum/assets/0x0c880f6761F1af8d9Aa9C466984b80DAb9a8c9e8/info.json @@ -0,0 +1,33 @@ +{ + "name": "Pendle", + "website": "https://www.pendle.finance/", + "description": "Pendle is a protocol for people to trade and hedge yield. Users can tokenize yield and trade them on Pendle's AMM", + "explorer": "https://arbiscan.io/token/0x0c880f6761f1af8d9aa9c466984b80dab9a8c9e8", + "type": "ARBITRUM", + "symbol": "PENDLE", + "decimals": 18, + "status": "active", + "id": "0x0c880f6761F1af8d9Aa9C466984b80DAb9a8c9e8", + "links": [ + { + "name": "github", + "url": "https://github.com/pendle-finance" + }, + { + "name": "x", + "url": "https://x.com/pendle_fi" + }, + { + "name": "docs", + "url": "https://docs.pendle.finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pendle" + }, + { + "name": "discord", + "url": "https://discord.com/invite/9x9VUngNZD" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x0c880f6761F1af8d9Aa9C466984b80DAb9a8c9e8/logo.png b/blockchains/arbitrum/assets/0x0c880f6761F1af8d9Aa9C466984b80DAb9a8c9e8/logo.png new file mode 100644 index 0000000000000..f938a10800ec7 Binary files /dev/null and b/blockchains/arbitrum/assets/0x0c880f6761F1af8d9Aa9C466984b80DAb9a8c9e8/logo.png differ diff --git a/blockchains/arbitrum/assets/0x0d6fce45796D5c00689c0916b976645a0FF1F0cE/info.json b/blockchains/arbitrum/assets/0x0d6fce45796D5c00689c0916b976645a0FF1F0cE/info.json new file mode 100644 index 0000000000000..e1da61ea1cda9 --- /dev/null +++ b/blockchains/arbitrum/assets/0x0d6fce45796D5c00689c0916b976645a0FF1F0cE/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Marvell Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0x0d6fce45796D5c00689c0916b976645a0FF1F0cE", + "type": "ARBITRUM", + "symbol": "WMRVLX", + "decimals": 18, + "status": "active", + "id": "0x0d6fce45796D5c00689c0916b976645a0FF1F0cE", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-marvell-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x0d6fce45796D5c00689c0916b976645a0FF1F0cE/logo.png b/blockchains/arbitrum/assets/0x0d6fce45796D5c00689c0916b976645a0FF1F0cE/logo.png new file mode 100644 index 0000000000000..c089d4f90a1f4 Binary files /dev/null and b/blockchains/arbitrum/assets/0x0d6fce45796D5c00689c0916b976645a0FF1F0cE/logo.png differ diff --git a/blockchains/arbitrum/assets/0x10393c20975cF177a3513071bC110f7962CD67da/info.json b/blockchains/arbitrum/assets/0x10393c20975cF177a3513071bC110f7962CD67da/info.json new file mode 100644 index 0000000000000..5c52dc1bf67a5 --- /dev/null +++ b/blockchains/arbitrum/assets/0x10393c20975cF177a3513071bC110f7962CD67da/info.json @@ -0,0 +1,25 @@ +{ + "name": "Jones DAO", + "website": "https://jonesdao.io/", + "description": "Jones DAO is a yield generation, asset management, and options liquidity protocol, with vaults that enable 1-click access to institutional-grade options strategies while unlocking liquidity and capital efficiency for DeFi options.", + "explorer": "https://arbiscan.io/token/0x10393c20975cf177a3513071bc110f7962cd67da", + "type": "ARBITRUM", + "symbol": "JONES", + "decimals": 18, + "status": "active", + "id": "0x10393c20975cF177a3513071bC110f7962CD67da", + "links": [ + { + "name": "github", + "url": "https://github.com/Jones-DAO" + }, + { + "name": "x", + "url": "https://x.com/DAOJonesOptions" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jones-dao/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x10393c20975cF177a3513071bC110f7962CD67da/logo.png b/blockchains/arbitrum/assets/0x10393c20975cF177a3513071bC110f7962CD67da/logo.png new file mode 100644 index 0000000000000..075eb49f97c80 Binary files /dev/null and b/blockchains/arbitrum/assets/0x10393c20975cF177a3513071bC110f7962CD67da/logo.png differ diff --git a/blockchains/arbitrum/assets/0x11cDb42B0EB46D95f990BeDD4695A6e3fA034978/info.json b/blockchains/arbitrum/assets/0x11cDb42B0EB46D95f990BeDD4695A6e3fA034978/info.json new file mode 100644 index 0000000000000..09d1011e29895 --- /dev/null +++ b/blockchains/arbitrum/assets/0x11cDb42B0EB46D95f990BeDD4695A6e3fA034978/info.json @@ -0,0 +1,34 @@ +{ + "name": "Curve DAO Token", + "website": "https://curve.finance", + "description": "CRV is a governance token on the Curve platform with time-weighted voting and value accrual mechanisms.", + "explorer": "https://arbiscan.io/token/0x11cDb42B0EB46D95f990BeDD4695A6e3fA034978", + "research": "https://research.binance.com/en/projects/curve", + "type": "ARBITRUM", + "symbol": "CRV", + "decimals": 18, + "status": "active", + "id": "0x11cDb42B0EB46D95f990BeDD4695A6e3fA034978", + "tags": [ + "defi", + "governance" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/curvefi/curve-contract" + }, + { + "name": "x", + "url": "https://x.com/CurveFinance" + }, + { + "name": "telegram", + "url": "https://t.me/curvefi" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/curve-dao-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x1E4F97b9f9F913c46F1632781732927B9019C68b/logo.png b/blockchains/arbitrum/assets/0x11cDb42B0EB46D95f990BeDD4695A6e3fA034978/logo.png similarity index 100% rename from blockchains/fantom/assets/0x1E4F97b9f9F913c46F1632781732927B9019C68b/logo.png rename to blockchains/arbitrum/assets/0x11cDb42B0EB46D95f990BeDD4695A6e3fA034978/logo.png diff --git a/blockchains/arbitrum/assets/0x12992613fDd35aBe95DEc5a4964331b1ee23B50d/info.json b/blockchains/arbitrum/assets/0x12992613fDd35aBe95DEc5a4964331b1ee23B50d/info.json new file mode 100644 index 0000000000000..e9e1093e645d8 --- /dev/null +++ b/blockchains/arbitrum/assets/0x12992613fDd35aBe95DEc5a4964331b1ee23B50d/info.json @@ -0,0 +1,24 @@ +{ + "name": "Berkshire Hathaway tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Berkshire Hathaway tokenized stock (xStock) (BRK.BX) is a cryptocurrency and operates on the Solana platform. Berkshire Hathaway tokenized stock (xStock) has a current supply of 1,400. The last known price of Berkshire Hathaway tokenized stock (xStock) is 498.90939725 USD and is down -0.01 over the last 24 hours. It is currently trading on 1 active market(s) with $3,195.32 traded over the last 24 hours. More information can be found at https://xstocks.fi.", + "explorer": "https://arbiscan.io/token/0x12992613fDd35aBe95DEc5a4964331b1ee23B50d", + "type": "ARBITRUM", + "symbol": "BRK.BX", + "decimals": 18, + "status": "active", + "id": "0x12992613fDd35aBe95DEc5a4964331b1ee23B50d", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/berkshire-hathaway-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x12992613fDd35aBe95DEc5a4964331b1ee23B50d/logo.png b/blockchains/arbitrum/assets/0x12992613fDd35aBe95DEc5a4964331b1ee23B50d/logo.png new file mode 100644 index 0000000000000..1add0de469f53 Binary files /dev/null and b/blockchains/arbitrum/assets/0x12992613fDd35aBe95DEc5a4964331b1ee23B50d/logo.png differ diff --git a/blockchains/arbitrum/assets/0x13A7DeDb7169a17bE92B0E3C7C2315B46f4772B3/info.json b/blockchains/arbitrum/assets/0x13A7DeDb7169a17bE92B0E3C7C2315B46f4772B3/info.json new file mode 100644 index 0000000000000..4d8d623bb6907 --- /dev/null +++ b/blockchains/arbitrum/assets/0x13A7DeDb7169a17bE92B0E3C7C2315B46f4772B3/info.json @@ -0,0 +1,21 @@ +{ + "name": "Boop", + "type": "ARBITRUM", + "symbol": "Boop", + "decimals": 18, + "website": "https://boopthecoin.com/", + "description": "$BOOP is a coin for the people, forever. Fueled by pure dog joy, let the power of $BOOP show you the way.", + "explorer": "https://arbiscan.io/token/0x13A7DeDb7169a17bE92B0E3C7C2315B46f4772B3", + "status": "active", + "id": "0x13A7DeDb7169a17bE92B0E3C7C2315B46f4772B3", + "links": [ + { + "name": "x", + "url": "https://x.com/boopthecoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/boop-the-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x13A7DeDb7169a17bE92B0E3C7C2315B46f4772B3/logo.png b/blockchains/arbitrum/assets/0x13A7DeDb7169a17bE92B0E3C7C2315B46f4772B3/logo.png new file mode 100644 index 0000000000000..40889bdf40d91 Binary files /dev/null and b/blockchains/arbitrum/assets/0x13A7DeDb7169a17bE92B0E3C7C2315B46f4772B3/logo.png differ diff --git a/blockchains/arbitrum/assets/0x13Ad51ed4F1B7e9Dc168d8a00cB3f4dDD85EfA60/info.json b/blockchains/arbitrum/assets/0x13Ad51ed4F1B7e9Dc168d8a00cB3f4dDD85EfA60/info.json new file mode 100644 index 0000000000000..451804ed82eeb --- /dev/null +++ b/blockchains/arbitrum/assets/0x13Ad51ed4F1B7e9Dc168d8a00cB3f4dDD85EfA60/info.json @@ -0,0 +1,29 @@ +{ + "name": "Lido DAO", + "type": "ARBITRUM", + "symbol": "LDO", + "decimals": 18, + "website": "https://stake.lido.fi/", + "description": "Lido is a liquid staking solution for Ethereum. Lido lets users stake their ETH - with no minimum deposits or maintaining of infrastructure - whilst participating in on-chain activities, e.g. lending, to compound returns. LDO is an ERC20 token granting governance rights in the Lido DAO.", + "explorer": "https://arbiscan.io/token/0x13Ad51ed4F1B7e9Dc168d8a00cB3f4dDD85EfA60", + "status": "active", + "id": "0x13Ad51ed4F1B7e9Dc168d8a00cB3f4dDD85EfA60", + "links": [ + { + "name": "x", + "url": "https://x.com/lidofinance" + }, + { + "name": "telegram", + "url": "https://t.me/lidofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lido-dao/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/lido-dao/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x13Ad51ed4F1B7e9Dc168d8a00cB3f4dDD85EfA60/logo.png b/blockchains/arbitrum/assets/0x13Ad51ed4F1B7e9Dc168d8a00cB3f4dDD85EfA60/logo.png new file mode 100644 index 0000000000000..2b7f52ad89270 Binary files /dev/null and b/blockchains/arbitrum/assets/0x13Ad51ed4F1B7e9Dc168d8a00cB3f4dDD85EfA60/logo.png differ diff --git a/blockchains/arbitrum/assets/0x15059c599C16Fd8f70B633Ade165502D6402CD49/info.json b/blockchains/arbitrum/assets/0x15059c599C16Fd8f70B633Ade165502D6402CD49/info.json new file mode 100644 index 0000000000000..857d59c3c6003 --- /dev/null +++ b/blockchains/arbitrum/assets/0x15059c599C16Fd8f70B633Ade165502D6402CD49/info.json @@ -0,0 +1,24 @@ +{ + "name": "Linde tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Linde xStock (LINx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. LINx tracks the price of Linde plc (the underlying). LINx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Linde plc, whilst maintaining the benefits of blockchain technology. Key Benefits Linde is a global leader in industrial gases and engineering, offering a wide range of solutions, technologies, and services to various industries.", + "explorer": "https://arbiscan.io/token/0x15059c599C16Fd8f70B633Ade165502D6402CD49", + "type": "ARBITRUM", + "symbol": "LINX", + "decimals": 18, + "status": "active", + "id": "0x15059c599C16Fd8f70B633Ade165502D6402CD49", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/linde-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x15059c599C16Fd8f70B633Ade165502D6402CD49/logo.png b/blockchains/arbitrum/assets/0x15059c599C16Fd8f70B633Ade165502D6402CD49/logo.png new file mode 100644 index 0000000000000..e9f3bc929d831 Binary files /dev/null and b/blockchains/arbitrum/assets/0x15059c599C16Fd8f70B633Ade165502D6402CD49/logo.png differ diff --git a/blockchains/arbitrum/assets/0x1630F08370917E79df0B7572395a5e907508bBBc/info.json b/blockchains/arbitrum/assets/0x1630F08370917E79df0B7572395a5e907508bBBc/info.json new file mode 100644 index 0000000000000..99e1bb6d1cd13 --- /dev/null +++ b/blockchains/arbitrum/assets/0x1630F08370917E79df0B7572395a5e907508bBBc/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Alphabet Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0x1630F08370917E79df0B7572395a5e907508bBBc", + "type": "ARBITRUM", + "symbol": "WGOOGLX", + "decimals": 18, + "status": "active", + "id": "0x1630F08370917E79df0B7572395a5e907508bBBc", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-alphabet-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x1630F08370917E79df0B7572395a5e907508bBBc/logo.png b/blockchains/arbitrum/assets/0x1630F08370917E79df0B7572395a5e907508bBBc/logo.png new file mode 100644 index 0000000000000..bf2de83415ea2 Binary files /dev/null and b/blockchains/arbitrum/assets/0x1630F08370917E79df0B7572395a5e907508bBBc/logo.png differ diff --git a/blockchains/arbitrum/assets/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048/info.json b/blockchains/arbitrum/assets/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048/info.json new file mode 100644 index 0000000000000..864b3434389dd --- /dev/null +++ b/blockchains/arbitrum/assets/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048/info.json @@ -0,0 +1,24 @@ +{ + "name": "UnitedHealth tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "UnitedHealth tokenized stock (xStock) (UNHX) is a cryptocurrency and operates on the Solana platform. UnitedHealth tokenized stock (xStock) has a current supply of 2,000 with 1,000 in circulation. The last known price of UnitedHealth tokenized stock (xStock) is 349.28004226 USD and is down -1.37 over the last 24 hours. It is currently trading on 3 active market(s) with $570,164.67 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/unitedhealth-xstock.", + "explorer": "https://arbiscan.io/token/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048", + "type": "ARBITRUM", + "symbol": "UNHX", + "decimals": 18, + "status": "active", + "id": "0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/unitedhealth-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048/logo.png b/blockchains/arbitrum/assets/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048/logo.png new file mode 100644 index 0000000000000..9051b3f336f0d Binary files /dev/null and b/blockchains/arbitrum/assets/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048/logo.png differ diff --git a/blockchains/arbitrum/assets/0x16E443AEbc83E2089AA90431A1C0d311854EEC69/info.json b/blockchains/arbitrum/assets/0x16E443AEbc83E2089AA90431A1C0d311854EEC69/info.json new file mode 100644 index 0000000000000..ca687f82293f2 --- /dev/null +++ b/blockchains/arbitrum/assets/0x16E443AEbc83E2089AA90431A1C0d311854EEC69/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Novo Nordisk Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0x16E443AEbc83E2089AA90431A1C0d311854EEC69", + "type": "ARBITRUM", + "symbol": "WNVOX", + "decimals": 18, + "status": "active", + "id": "0x16E443AEbc83E2089AA90431A1C0d311854EEC69", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-novo-nordisk-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x16E443AEbc83E2089AA90431A1C0d311854EEC69/logo.png b/blockchains/arbitrum/assets/0x16E443AEbc83E2089AA90431A1C0d311854EEC69/logo.png new file mode 100644 index 0000000000000..27057e35a9fa3 Binary files /dev/null and b/blockchains/arbitrum/assets/0x16E443AEbc83E2089AA90431A1C0d311854EEC69/logo.png differ diff --git a/blockchains/arbitrum/assets/0x1717D8Be2Bcb27f4E8f36c817088Fa6a2c0b3B30/info.json b/blockchains/arbitrum/assets/0x1717D8Be2Bcb27f4E8f36c817088Fa6a2c0b3B30/info.json new file mode 100644 index 0000000000000..344b803a989b3 --- /dev/null +++ b/blockchains/arbitrum/assets/0x1717D8Be2Bcb27f4E8f36c817088Fa6a2c0b3B30/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped McDonald's Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0x1717D8Be2Bcb27f4E8f36c817088Fa6a2c0b3B30", + "type": "ARBITRUM", + "symbol": "WMCDX", + "decimals": 18, + "status": "active", + "id": "0x1717D8Be2Bcb27f4E8f36c817088Fa6a2c0b3B30", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-mcdonald-s-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x1717D8Be2Bcb27f4E8f36c817088Fa6a2c0b3B30/logo.png b/blockchains/arbitrum/assets/0x1717D8Be2Bcb27f4E8f36c817088Fa6a2c0b3B30/logo.png new file mode 100644 index 0000000000000..d432b14f9d1d1 Binary files /dev/null and b/blockchains/arbitrum/assets/0x1717D8Be2Bcb27f4E8f36c817088Fa6a2c0b3B30/logo.png differ diff --git a/blockchains/arbitrum/assets/0x17D8186Ed8F68059124190D147174D0f6697dc40/info.json b/blockchains/arbitrum/assets/0x17D8186Ed8F68059124190D147174D0f6697dc40/info.json new file mode 100644 index 0000000000000..0a487ec5790ab --- /dev/null +++ b/blockchains/arbitrum/assets/0x17D8186Ed8F68059124190D147174D0f6697dc40/info.json @@ -0,0 +1,24 @@ +{ + "name": "Merck tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Merck xStock (MRKx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. MRKx tracks the price of Merck & Co., Inc. (the underlying). MRKx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Merck & Co., Inc., whilst maintaining the benefits of blockchain technology. Merck, is a global biopharmaceutical company focused on developing and delivering innovative health solutions.", + "explorer": "https://arbiscan.io/token/0x17D8186Ed8F68059124190D147174D0f6697dc40", + "type": "ARBITRUM", + "symbol": "MRKX", + "decimals": 18, + "status": "active", + "id": "0x17D8186Ed8F68059124190D147174D0f6697dc40", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/merck-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x17D8186Ed8F68059124190D147174D0f6697dc40/logo.png b/blockchains/arbitrum/assets/0x17D8186Ed8F68059124190D147174D0f6697dc40/logo.png new file mode 100644 index 0000000000000..8522e440e6053 Binary files /dev/null and b/blockchains/arbitrum/assets/0x17D8186Ed8F68059124190D147174D0f6697dc40/logo.png differ diff --git a/blockchains/arbitrum/assets/0x17FC002b466eEc40DaE837Fc4bE5c67993ddBd6F/info.json b/blockchains/arbitrum/assets/0x17FC002b466eEc40DaE837Fc4bE5c67993ddBd6F/info.json new file mode 100644 index 0000000000000..89d11c2965f0d --- /dev/null +++ b/blockchains/arbitrum/assets/0x17FC002b466eEc40DaE837Fc4bE5c67993ddBd6F/info.json @@ -0,0 +1,33 @@ +{ + "name": "Frax", + "website": "https://frax.finance/", + "description": "Frax is a new paradigm in stablecoin design, bringing together a two-token seigniorage share system, swap-based monetary policy, fully on-chain oracles, and decentralized governance alongside its fractional-algorithmic stablecoin design.", + "explorer": "https://arbiscan.io/token/0x17FC002b466eEc40DaE837Fc4bE5c67993ddBd6F", + "type": "ARBITRUM", + "symbol": "FRAX", + "decimals": 18, + "status": "active", + "id": "0x17FC002b466eEc40DaE837Fc4bE5c67993ddBd6F", + "tags": [ + "defi", + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/FraxFinance" + }, + { + "name": "x", + "url": "https://x.com/Frax Finance" + }, + { + "name": "telegram", + "url": "https://t.me/fraxfinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Xwe8kAwZ4a" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x17FC002b466eEc40DaE837Fc4bE5c67993ddBd6F/logo.png b/blockchains/arbitrum/assets/0x17FC002b466eEc40DaE837Fc4bE5c67993ddBd6F/logo.png new file mode 100644 index 0000000000000..762d2dd36f501 Binary files /dev/null and b/blockchains/arbitrum/assets/0x17FC002b466eEc40DaE837Fc4bE5c67993ddBd6F/logo.png differ diff --git a/blockchains/arbitrum/assets/0x18c11FD286C5EC11c3b683Caa813B77f5163A122/info.json b/blockchains/arbitrum/assets/0x18c11FD286C5EC11c3b683Caa813B77f5163A122/info.json index 3ec56594c2b03..4316bab247e7f 100644 --- a/blockchains/arbitrum/assets/0x18c11FD286C5EC11c3b683Caa813B77f5163A122/info.json +++ b/blockchains/arbitrum/assets/0x18c11FD286C5EC11c3b683Caa813B77f5163A122/info.json @@ -42,11 +42,11 @@ "url": "https://medium.com/gains-network" }, { - "name": "twitter", - "url": "https://twitter.com/GainsNetwork_io" + "name": "x", + "url": "https://x.com/GainsNetwork_io" } ], "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4/info.json b/blockchains/arbitrum/assets/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4/info.json new file mode 100644 index 0000000000000..7d59aa01908af --- /dev/null +++ b/blockchains/arbitrum/assets/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4/info.json @@ -0,0 +1,24 @@ +{ + "name": "Eli Lilly tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Eli Lilly xStock (LLYx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. LLYx tracks the price of Eli Lilly and Company (the underlying). LLYx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Eli Lilly and Company, whilst maintaining the benefits of blockchain technology. Eli Lilly and Company is a global pharmaceutical company based in Indianapolis, Indiana, that discovers, develops, manufactures, and markets human healthcare products.", + "explorer": "https://arbiscan.io/token/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4", + "type": "ARBITRUM", + "symbol": "LLYX", + "decimals": 18, + "status": "active", + "id": "0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/eli-lilly-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4/logo.png b/blockchains/arbitrum/assets/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4/logo.png new file mode 100644 index 0000000000000..59de8858e0884 Binary files /dev/null and b/blockchains/arbitrum/assets/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4/logo.png differ diff --git a/blockchains/arbitrum/assets/0x1A6B3A62391ECcaaa992ade44cd4AFe6bEC8CfF1/info.json b/blockchains/arbitrum/assets/0x1A6B3A62391ECcaaa992ade44cd4AFe6bEC8CfF1/info.json new file mode 100644 index 0000000000000..adb7c049490a5 --- /dev/null +++ b/blockchains/arbitrum/assets/0x1A6B3A62391ECcaaa992ade44cd4AFe6bEC8CfF1/info.json @@ -0,0 +1,14 @@ +{ + "name": "FAKE UXLINK", + "symbol": "FAKE UXLINK", + "type": "ARBITRUM", + "decimals": 18, + "description": "UXLINK is a web3 social platform and infrastructure for users and developers to discover, distribute, and trade crypto assets in a unique social and group-based manner.", + "website": "https://www.uxlink.io/", + "explorer": "https://arbiscan.io/token/0x1A6B3A62391ECcaaa992ade44cd4AFe6bEC8CfF1", + "status": "spam", + "id": "0x1A6B3A62391ECcaaa992ade44cd4AFe6bEC8CfF1", + "links": [ + + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x1A6B3A62391ECcaaa992ade44cd4AFe6bEC8CfF1/logo.png b/blockchains/arbitrum/assets/0x1A6B3A62391ECcaaa992ade44cd4AFe6bEC8CfF1/logo.png new file mode 100644 index 0000000000000..8c6b118c32427 Binary files /dev/null and b/blockchains/arbitrum/assets/0x1A6B3A62391ECcaaa992ade44cd4AFe6bEC8CfF1/logo.png differ diff --git a/blockchains/arbitrum/assets/0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3/info.json b/blockchains/arbitrum/assets/0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3/info.json new file mode 100644 index 0000000000000..f570b1cddc861 --- /dev/null +++ b/blockchains/arbitrum/assets/0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3/info.json @@ -0,0 +1,15 @@ +{ + "name": "Strategy PP Variable xStock", + "type": "ARBITRUM", + "symbol": "STRCx", + "decimals": 18, + "description": "Strategy PP Variable xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://arbiscan.io/token/0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3", + "status": "active", + "id": "0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3/logo.png b/blockchains/arbitrum/assets/0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3/logo.png new file mode 100644 index 0000000000000..1407faeca0e8c Binary files /dev/null and b/blockchains/arbitrum/assets/0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3/logo.png differ diff --git a/blockchains/arbitrum/assets/0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e/info.json b/blockchains/arbitrum/assets/0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e/info.json new file mode 100644 index 0000000000000..bf8c78db3db14 --- /dev/null +++ b/blockchains/arbitrum/assets/0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e/info.json @@ -0,0 +1,24 @@ +{ + "name": "Pfizer tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Pfizer xStock (PFEx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. PFEx tracks the price of Pfizer Inc. (the underlying). PFEx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Pfizer Inc., whilst maintaining the benefits of blockchain technology. Pfizer Inc. is a global biopharmaceutical company focused on discovering, developing, and delivering innovative medicines and vaccines to improve health and well-being.", + "explorer": "https://arbiscan.io/token/0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e", + "type": "ARBITRUM", + "symbol": "PFEX", + "decimals": 18, + "status": "active", + "id": "0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pfizer-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e/logo.png b/blockchains/arbitrum/assets/0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e/logo.png new file mode 100644 index 0000000000000..c35598c6466ac Binary files /dev/null and b/blockchains/arbitrum/assets/0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e/logo.png differ diff --git a/blockchains/arbitrum/assets/0x1C43D05be7E5b54D506e3DdB6f0305e8A66CD04e/info.json b/blockchains/arbitrum/assets/0x1C43D05be7E5b54D506e3DdB6f0305e8A66CD04e/info.json new file mode 100644 index 0000000000000..e714759ff6f34 --- /dev/null +++ b/blockchains/arbitrum/assets/0x1C43D05be7E5b54D506e3DdB6f0305e8A66CD04e/info.json @@ -0,0 +1,21 @@ +{ + "name": "ZTX", + "website": "https://ztx.io/", + "description": "ZTX is a virtual world empowering creators and communities.", + "explorer": "https://arbiscan.io/token/0x1C43D05be7E5b54D506e3DdB6f0305e8A66CD04e", + "type": "ARBITRUM", + "symbol": "ZTX", + "decimals": 18, + "status": "active", + "id": "0x1C43D05be7E5b54D506e3DdB6f0305e8A66CD04e", + "links": [ + { + "name": "x", + "url": "https://x.com/ZTXofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ztx/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x1C43D05be7E5b54D506e3DdB6f0305e8A66CD04e/logo.png b/blockchains/arbitrum/assets/0x1C43D05be7E5b54D506e3DdB6f0305e8A66CD04e/logo.png new file mode 100644 index 0000000000000..a1e0daff789b3 Binary files /dev/null and b/blockchains/arbitrum/assets/0x1C43D05be7E5b54D506e3DdB6f0305e8A66CD04e/logo.png differ diff --git a/blockchains/arbitrum/assets/0x1CD9a56c8C2eA913c70319A44Da75e99255aa46f/info.json b/blockchains/arbitrum/assets/0x1CD9a56c8C2eA913c70319A44Da75e99255aa46f/info.json new file mode 100644 index 0000000000000..df087cc21b1fa --- /dev/null +++ b/blockchains/arbitrum/assets/0x1CD9a56c8C2eA913c70319A44Da75e99255aa46f/info.json @@ -0,0 +1,17 @@ +{ + "name": "Orbiter", + "type": "ARBITRUM", + "symbol": "OBT", + "decimals": 18, + "description": "Orbiter Finance is a ZK-tech-based interoperability blockchain infrastructure that enhances blockchain interactions’ security, seamless interoperability, and reduces liquidity fragmentation through innovative solutions like a universal cross-chain protocol and Omni Account Abstraction, aiming to redefine the Web3 experience in the multichain era.", + "website": "https://www.orbiter.finance/en", + "explorer": "https://arbiscan.io/token/0x1cd9a56c8c2ea913c70319a44da75e99255aa46f", + "id": "0x1CD9a56c8C2eA913c70319A44Da75e99255aa46f", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Orbiter_Finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x1CD9a56c8C2eA913c70319A44Da75e99255aa46f/logo.png b/blockchains/arbitrum/assets/0x1CD9a56c8C2eA913c70319A44Da75e99255aa46f/logo.png new file mode 100644 index 0000000000000..7cb78c521430c Binary files /dev/null and b/blockchains/arbitrum/assets/0x1CD9a56c8C2eA913c70319A44Da75e99255aa46f/logo.png differ diff --git a/blockchains/arbitrum/assets/0x1F2b426417663Ac76eB92149a037753a45969F31/info.json b/blockchains/arbitrum/assets/0x1F2b426417663Ac76eB92149a037753a45969F31/info.json new file mode 100644 index 0000000000000..3025abf91f3a2 --- /dev/null +++ b/blockchains/arbitrum/assets/0x1F2b426417663Ac76eB92149a037753a45969F31/info.json @@ -0,0 +1,21 @@ +{ + "name": "Real World Assetss", + "type": "ARBITRUM", + "symbol": "RWAS", + "decimals": 18, + "website": "https://www.rwa-finance.com/#/", + "description": "RWA Finance is an extraordinary platform that is changing the field of issuing and trading Real World Assets (RWA).", + "explorer": "https://arbiscan.io/token/0x1F2b426417663Ac76eB92149a037753a45969F31", + "status": "active", + "id": "0x1F2b426417663Ac76eB92149a037753a45969F31", + "links": [ + { + "name": "x", + "url": "https://x.com/RWA_Finance_" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rwa-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x1F2b426417663Ac76eB92149a037753a45969F31/logo.png b/blockchains/arbitrum/assets/0x1F2b426417663Ac76eB92149a037753a45969F31/logo.png new file mode 100644 index 0000000000000..169fc4bb72ec0 Binary files /dev/null and b/blockchains/arbitrum/assets/0x1F2b426417663Ac76eB92149a037753a45969F31/logo.png differ diff --git a/blockchains/arbitrum/assets/0x1bD013bD089C2B6b2D30a0e0B545810a5844E761/info.json b/blockchains/arbitrum/assets/0x1bD013bD089C2B6b2D30a0e0B545810a5844E761/info.json new file mode 100644 index 0000000000000..ce822e52b4e13 --- /dev/null +++ b/blockchains/arbitrum/assets/0x1bD013bD089C2B6b2D30a0e0B545810a5844E761/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT OtterHome", + "type": "ARBITRUM", + "symbol": "HONEYPOT HOME", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://arbiscan.io/token/0x1bd013bd089c2b6b2d30a0e0b545810a5844e761", + "explorer": "https://arbiscan.io/token/0x1bd013bd089c2b6b2d30a0e0b545810a5844e761", + "status": "spam", + "id": "0x1bD013bD089C2B6b2D30a0e0B545810a5844E761" +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x20547341E58fB558637FA15379C92e11F7b7F710/info.json b/blockchains/arbitrum/assets/0x20547341E58fB558637FA15379C92e11F7b7F710/info.json new file mode 100644 index 0000000000000..d5d61a9cf1b26 --- /dev/null +++ b/blockchains/arbitrum/assets/0x20547341E58fB558637FA15379C92e11F7b7F710/info.json @@ -0,0 +1,21 @@ +{ + "name": "Mozaic", + "symbol": "MOZ", + "type": "ARBITRUM", + "decimals": 18, + "description": "Automatic, omnichain yield farming. Mozaic provides AI-optimized yield and liquidity strategies, powered by LayerZero. Farm automatically on every blockchain: Deposit and withdraw on any chain, in any coin or LP token", + "website": "https://mozaic.finance/", + "explorer": "https://arbiscan.io/token/0x20547341e58fb558637fa15379c92e11f7b7f710", + "status": "active", + "id": "0x20547341E58fB558637FA15379C92e11F7b7F710", + "links": [ + { + "name": "x", + "url": "https://x.com/Mozaic_Fi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mozaic/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x20547341E58fB558637FA15379C92e11F7b7F710/logo.png b/blockchains/arbitrum/assets/0x20547341E58fB558637FA15379C92e11F7b7F710/logo.png new file mode 100644 index 0000000000000..e1836e9fb952c Binary files /dev/null and b/blockchains/arbitrum/assets/0x20547341E58fB558637FA15379C92e11F7b7F710/logo.png differ diff --git a/blockchains/arbitrum/assets/0x214151022C2a5E380aB80CdaC31f23Ae554a7345/info.json b/blockchains/arbitrum/assets/0x214151022C2a5E380aB80CdaC31f23Ae554a7345/info.json new file mode 100644 index 0000000000000..7a9b110ce3ff4 --- /dev/null +++ b/blockchains/arbitrum/assets/0x214151022C2a5E380aB80CdaC31f23Ae554a7345/info.json @@ -0,0 +1,24 @@ +{ + "name": "CrowdStrike tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "CrowdStrike xStock (CRWDx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. CRWDx tracks the price of CrowdStrike Holdings, Inc. (the underlying). CRWDx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of CrowdStrike Holdings, Inc., whilst maintaining the benefits of blockchain technology. CrowdStrike is a cybersecurity company specializing in cloud-delivered security solutions, particularly for endpoint and cloud workload protection.", + "explorer": "https://arbiscan.io/token/0x214151022C2a5E380aB80CdaC31f23Ae554a7345", + "type": "ARBITRUM", + "symbol": "CRWDX", + "decimals": 18, + "status": "active", + "id": "0x214151022C2a5E380aB80CdaC31f23Ae554a7345", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crowdstrike-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x214151022C2a5E380aB80CdaC31f23Ae554a7345/logo.png b/blockchains/arbitrum/assets/0x214151022C2a5E380aB80CdaC31f23Ae554a7345/logo.png new file mode 100644 index 0000000000000..72cd9e09a3d7d Binary files /dev/null and b/blockchains/arbitrum/assets/0x214151022C2a5E380aB80CdaC31f23Ae554a7345/logo.png differ diff --git a/blockchains/arbitrum/assets/0x22E1991e5f82736A2a990322a46aac0e95826c5B/info.json b/blockchains/arbitrum/assets/0x22E1991e5f82736A2a990322a46aac0e95826c5B/info.json new file mode 100644 index 0000000000000..367a8d48910da --- /dev/null +++ b/blockchains/arbitrum/assets/0x22E1991e5f82736A2a990322a46aac0e95826c5B/info.json @@ -0,0 +1,15 @@ +{ + "name": "Bit Digital xStock", + "type": "ARBITRUM", + "symbol": "BTBTx", + "decimals": 18, + "description": "Bit Digital xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://arbiscan.io/token/0x22E1991e5f82736A2a990322a46aac0e95826c5B", + "status": "active", + "id": "0x22E1991e5f82736A2a990322a46aac0e95826c5B", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x22E1991e5f82736A2a990322a46aac0e95826c5B/logo.png b/blockchains/arbitrum/assets/0x22E1991e5f82736A2a990322a46aac0e95826c5B/logo.png new file mode 100644 index 0000000000000..30817f4fdb226 Binary files /dev/null and b/blockchains/arbitrum/assets/0x22E1991e5f82736A2a990322a46aac0e95826c5B/logo.png differ diff --git a/blockchains/arbitrum/assets/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293/info.json b/blockchains/arbitrum/assets/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293/info.json new file mode 100644 index 0000000000000..56eed68ab76ba --- /dev/null +++ b/blockchains/arbitrum/assets/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293/info.json @@ -0,0 +1,24 @@ +{ + "name": "Visa tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Visa xStock (Vx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. Vx tracks the price of Visa Inc. Class A (the underlying). Vx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Visa Inc. Class A, whilst maintaining the benefits of blockchain technology. Visa Inc. is a global digital payments technology company that facilitates transactions between consumers, merchants, and financial institutions in over 200 countries.", + "explorer": "https://arbiscan.io/token/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293", + "type": "ARBITRUM", + "symbol": "VX", + "decimals": 18, + "status": "active", + "id": "0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/visa-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293/logo.png b/blockchains/arbitrum/assets/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293/logo.png new file mode 100644 index 0000000000000..11bbde8933e10 Binary files /dev/null and b/blockchains/arbitrum/assets/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293/logo.png differ diff --git a/blockchains/arbitrum/assets/0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9/info.json b/blockchains/arbitrum/assets/0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9/info.json new file mode 100644 index 0000000000000..28cc61902a846 --- /dev/null +++ b/blockchains/arbitrum/assets/0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9/info.json @@ -0,0 +1,24 @@ +{ + "name": "Gold tokenized ETF (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Gold tokenized ETF (xStock) (GLDX) is a cryptocurrency and operates on the Solana platform. Gold tokenized ETF (xStock) has a current supply of 2,799.99923929 with 1,000 in circulation. The last known price of Gold tokenized ETF (xStock) is 340.04452058 USD and is up 1.44 over the last 24 hours. It is currently trading on 10 active market(s) with $2,423,806.34 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/gold-xstock.", + "explorer": "https://arbiscan.io/token/0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9", + "type": "ARBITRUM", + "symbol": "GLDX", + "decimals": 18, + "status": "active", + "id": "0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gold-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9/logo.png b/blockchains/arbitrum/assets/0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9/logo.png new file mode 100644 index 0000000000000..85a92734296a2 Binary files /dev/null and b/blockchains/arbitrum/assets/0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9/logo.png differ diff --git a/blockchains/arbitrum/assets/0x23A941036Ae778Ac51Ab04CEa08Ed6e2FE103614/info.json b/blockchains/arbitrum/assets/0x23A941036Ae778Ac51Ab04CEa08Ed6e2FE103614/info.json index 009224dd617d1..f566295b7023d 100644 --- a/blockchains/arbitrum/assets/0x23A941036Ae778Ac51Ab04CEa08Ed6e2FE103614/info.json +++ b/blockchains/arbitrum/assets/0x23A941036Ae778Ac51Ab04CEa08Ed6e2FE103614/info.json @@ -18,8 +18,8 @@ "url": "https://github.com/graphprotocol/graph-node" }, { - "name": "twitter", - "url": "https://twitter.com/graphprotocol" + "name": "x", + "url": "https://x.com/graphprotocol" }, { "name": "reddit", diff --git a/blockchains/arbitrum/assets/0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f/info.json b/blockchains/arbitrum/assets/0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f/info.json index 46cb3c86dc2ea..e8e09bc3b0f08 100644 --- a/blockchains/arbitrum/assets/0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f/info.json +++ b/blockchains/arbitrum/assets/0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f/info.json @@ -10,8 +10,8 @@ "id": "0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f", "links": [ { - "name": "twitter", - "url": "https://twitter.com/axelarcore" + "name": "x", + "url": "https://x.com/axelarcore" }, { "name": "github", @@ -65,4 +65,4 @@ "tags": [ "wrapped" ] -} +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x266E5923F6118F8b340cA5a23AE7f71897361476/info.json b/blockchains/arbitrum/assets/0x266E5923F6118F8b340cA5a23AE7f71897361476/info.json new file mode 100644 index 0000000000000..c32b15320c73f --- /dev/null +++ b/blockchains/arbitrum/assets/0x266E5923F6118F8b340cA5a23AE7f71897361476/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped MicroStrategy Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0x266E5923F6118F8b340cA5a23AE7f71897361476", + "type": "ARBITRUM", + "symbol": "WMSTRX", + "decimals": 18, + "status": "active", + "id": "0x266E5923F6118F8b340cA5a23AE7f71897361476", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-microstrategy-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x266E5923F6118F8b340cA5a23AE7f71897361476/logo.png b/blockchains/arbitrum/assets/0x266E5923F6118F8b340cA5a23AE7f71897361476/logo.png new file mode 100644 index 0000000000000..02774d0ba8c28 Binary files /dev/null and b/blockchains/arbitrum/assets/0x266E5923F6118F8b340cA5a23AE7f71897361476/logo.png differ diff --git a/blockchains/arbitrum/assets/0x26B95c59BE6464f8fd7da08e84eB8475B9B7592C/info.json b/blockchains/arbitrum/assets/0x26B95c59BE6464f8fd7da08e84eB8475B9B7592C/info.json new file mode 100644 index 0000000000000..dbc647a2e4dd1 --- /dev/null +++ b/blockchains/arbitrum/assets/0x26B95c59BE6464f8fd7da08e84eB8475B9B7592C/info.json @@ -0,0 +1,28 @@ +{ + "name": "Deep Blue USD", + "type": "ARBITRUM", + "symbol": "DBUSD", + "decimals": 6, + "website": "https://www.deepblue.to/", + "description": "DBUSD is a USD fiat fully backed 1:1 stablecoin created and issued by Deep Blue with a focus on store of value, remittance, money transfers and trading settlement.", + "explorer": "https://arbiscan.io/token/0x26B95c59BE6464f8fd7da08e84eB8475B9B7592C", + "status": "active", + "id": "0x26B95c59BE6464f8fd7da08e84eB8475B9B7592C", + "links": [ + { + "name": "x", + "url": "https://x.com/DeepBlue_to" + }, + { + "name": "whitepaper", + "url": "https://deepblue.to/" + }, + { + "name": "telegram", + "url": "https://t.me/deepblueto" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x26B95c59BE6464f8fd7da08e84eB8475B9B7592C/logo.png b/blockchains/arbitrum/assets/0x26B95c59BE6464f8fd7da08e84eB8475B9B7592C/logo.png new file mode 100644 index 0000000000000..89ea00eb5b95e Binary files /dev/null and b/blockchains/arbitrum/assets/0x26B95c59BE6464f8fd7da08e84eB8475B9B7592C/logo.png differ diff --git a/blockchains/arbitrum/assets/0x2f2a2543B76A4166549F7aaB2e75Bef0aefC5B0f/info.json b/blockchains/arbitrum/assets/0x2f2a2543B76A4166549F7aaB2e75Bef0aefC5B0f/info.json new file mode 100644 index 0000000000000..5bf8f09c217f8 --- /dev/null +++ b/blockchains/arbitrum/assets/0x2f2a2543B76A4166549F7aaB2e75Bef0aefC5B0f/info.json @@ -0,0 +1,28 @@ +{ + "name": "Wrapped BTC", + "type": "ARBITRUM", + "symbol": "WBTC", + "decimals": 8, + "website": "https://wbtc.network/", + "description": "Wrapped Bitcoin (WBTC) is the first ERC20 token backed 1:1 with Bitcoin.", + "explorer": "https://arbiscan.io/token/0x2f2a2543b76a4166549f7aab2e75bef0aefc5b0f", + "status": "active", + "id": "0x2f2a2543B76A4166549F7aaB2e75Bef0aefC5B0f", + "links": [ + { + "name": "whitepaper", + "url": "https://wbtc.network/assets/wrapped-tokens-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-bitcoin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wrapped-bitcoin/" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x2f2a2543B76A4166549F7aaB2e75Bef0aefC5B0f/logo.png b/blockchains/arbitrum/assets/0x2f2a2543B76A4166549F7aaB2e75Bef0aefC5B0f/logo.png new file mode 100644 index 0000000000000..702d64a2e040a Binary files /dev/null and b/blockchains/arbitrum/assets/0x2f2a2543B76A4166549F7aaB2e75Bef0aefC5B0f/logo.png differ diff --git a/blockchains/arbitrum/assets/0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763/info.json b/blockchains/arbitrum/assets/0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763/info.json new file mode 100644 index 0000000000000..59f9ef8e78c6f --- /dev/null +++ b/blockchains/arbitrum/assets/0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763/info.json @@ -0,0 +1,24 @@ +{ + "name": "Amber tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Amber tokenized stock (xStock) (AMBRX) is a cryptocurrency and operates on the Solana platform. Amber tokenized stock (xStock) has a current supply of 135,999.99999997. The last known price of Amber tokenized stock (xStock) is 4.19760101 USD and is up 0.88 over the last 24 hours. It is currently trading on 1 active market(s) with $0.00 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/amber-xstock.", + "explorer": "https://arbiscan.io/token/0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763", + "type": "ARBITRUM", + "symbol": "AMBRX", + "decimals": 18, + "status": "active", + "id": "0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/amber-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763/logo.png b/blockchains/arbitrum/assets/0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763/logo.png new file mode 100644 index 0000000000000..e555fa9be0612 Binary files /dev/null and b/blockchains/arbitrum/assets/0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763/logo.png differ diff --git a/blockchains/arbitrum/assets/0x3082CC23568eA640225c2467653dB90e9250AaA0/info.json b/blockchains/arbitrum/assets/0x3082CC23568eA640225c2467653dB90e9250AaA0/info.json index 5ea87a083fc1f..0b7d47c32c32e 100644 --- a/blockchains/arbitrum/assets/0x3082CC23568eA640225c2467653dB90e9250AaA0/info.json +++ b/blockchains/arbitrum/assets/0x3082CC23568eA640225c2467653dB90e9250AaA0/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/radiant-capital" }, { - "name": "twitter", - "url": "https://twitter.com/RDNTCapital" + "name": "x", + "url": "https://x.com/RDNTCapital" }, { "name": "discord", diff --git a/blockchains/arbitrum/assets/0x31094eD0F645Dbd5eFb6acA5B9A05E8EE0EFB386/info.json b/blockchains/arbitrum/assets/0x31094eD0F645Dbd5eFb6acA5B9A05E8EE0EFB386/info.json new file mode 100644 index 0000000000000..424499cbc25d9 --- /dev/null +++ b/blockchains/arbitrum/assets/0x31094eD0F645Dbd5eFb6acA5B9A05E8EE0EFB386/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE EuroUnion", + "type": "ARBITRUM", + "symbol": "FAKE EURC", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://arbiscan.io/token/0x31094eD0F645Dbd5eFb6acA5B9A05E8EE0EFB386", + "explorer": "https://arbiscan.io/token/0x31094eD0F645Dbd5eFb6acA5B9A05E8EE0EFB386", + "status": "spam", + "id": "0x31094eD0F645Dbd5eFb6acA5B9A05E8EE0EFB386" +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x314938c596F5ce31C3f75307d2979338C346D7F2/info.json b/blockchains/arbitrum/assets/0x314938c596F5ce31C3f75307d2979338C346D7F2/info.json new file mode 100644 index 0000000000000..84493019d39a7 --- /dev/null +++ b/blockchains/arbitrum/assets/0x314938c596F5ce31C3f75307d2979338C346D7F2/info.json @@ -0,0 +1,24 @@ +{ + "name": "Bank of America tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Bank of America xStock (BACx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. BACx tracks the price of Bank of America Corporation (the underlying). BACx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Bank of America Corporation, whilst maintaining the benefits of blockchain technology. Bank of America is a leading global financial institution that offers a wide range of banking, investing, asset management, and financial risk management products and services.", + "explorer": "https://arbiscan.io/token/0x314938c596F5ce31C3f75307d2979338C346D7F2", + "type": "ARBITRUM", + "symbol": "BACX", + "decimals": 18, + "status": "active", + "id": "0x314938c596F5ce31C3f75307d2979338C346D7F2", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bank-of-america-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x314938c596F5ce31C3f75307d2979338C346D7F2/logo.png b/blockchains/arbitrum/assets/0x314938c596F5ce31C3f75307d2979338C346D7F2/logo.png new file mode 100644 index 0000000000000..c358f4e973a1a Binary files /dev/null and b/blockchains/arbitrum/assets/0x314938c596F5ce31C3f75307d2979338C346D7F2/logo.png differ diff --git a/blockchains/arbitrum/assets/0x316fFEa434348c2cB72024e62Ae845770315351E/info.json b/blockchains/arbitrum/assets/0x316fFEa434348c2cB72024e62Ae845770315351E/info.json new file mode 100644 index 0000000000000..ff34eabb0df66 --- /dev/null +++ b/blockchains/arbitrum/assets/0x316fFEa434348c2cB72024e62Ae845770315351E/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Linde Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0x316fFEa434348c2cB72024e62Ae845770315351E", + "type": "ARBITRUM", + "symbol": "WLINX", + "decimals": 18, + "status": "active", + "id": "0x316fFEa434348c2cB72024e62Ae845770315351E", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-linde-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x316fFEa434348c2cB72024e62Ae845770315351E/logo.png b/blockchains/arbitrum/assets/0x316fFEa434348c2cB72024e62Ae845770315351E/logo.png new file mode 100644 index 0000000000000..3e359ad5b05b9 Binary files /dev/null and b/blockchains/arbitrum/assets/0x316fFEa434348c2cB72024e62Ae845770315351E/logo.png differ diff --git a/blockchains/arbitrum/assets/0x319f865b287fCC10b30d8cE6144e8b6D1b476999/info.json b/blockchains/arbitrum/assets/0x319f865b287fCC10b30d8cE6144e8b6D1b476999/info.json index a23b425d513d8..0cfd5db75d793 100644 --- a/blockchains/arbitrum/assets/0x319f865b287fCC10b30d8cE6144e8b6D1b476999/info.json +++ b/blockchains/arbitrum/assets/0x319f865b287fCC10b30d8cE6144e8b6D1b476999/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/cartesiproject" }, { - "name": "twitter", - "url": "https://twitter.com/cartesiproject" + "name": "x", + "url": "https://x.com/cartesiproject" } ] } \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x3522513E5F146a2006e2901b05f16B2821485E19/info.json b/blockchains/arbitrum/assets/0x3522513E5F146a2006e2901b05f16B2821485E19/info.json new file mode 100644 index 0000000000000..affff6a8898c3 --- /dev/null +++ b/blockchains/arbitrum/assets/0x3522513E5F146a2006e2901b05f16B2821485E19/info.json @@ -0,0 +1,15 @@ +{ + "name": "AMD xStock", + "type": "ARBITRUM", + "symbol": "AMDx", + "decimals": 18, + "description": "AMD xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://arbiscan.io/token/0x3522513E5F146a2006e2901b05f16B2821485E19", + "status": "active", + "id": "0x3522513E5F146a2006e2901b05f16B2821485E19", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x3522513E5F146a2006e2901b05f16B2821485E19/logo.png b/blockchains/arbitrum/assets/0x3522513E5F146a2006e2901b05f16B2821485E19/logo.png new file mode 100644 index 0000000000000..4e802b8335682 Binary files /dev/null and b/blockchains/arbitrum/assets/0x3522513E5F146a2006e2901b05f16B2821485E19/logo.png differ diff --git a/blockchains/arbitrum/assets/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081/info.json b/blockchains/arbitrum/assets/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081/info.json new file mode 100644 index 0000000000000..0f5f75999105d --- /dev/null +++ b/blockchains/arbitrum/assets/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081/info.json @@ -0,0 +1,24 @@ +{ + "name": "Amazon tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Amazon tokenized stock (xStock) (AMZNX) is a cryptocurrency and operates on the Solana platform. Amazon tokenized stock (xStock) has a current supply of 9,999.36105472 with 5,447.71612052 in circulation. The last known price of Amazon tokenized stock (xStock) is 232.88934286 USD and is up 0.69 over the last 24 hours. It is currently trading on 28 active market(s) with $3,262,241.23 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/amazon-xstock.", + "explorer": "https://arbiscan.io/token/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081", + "type": "ARBITRUM", + "symbol": "AMZNX", + "decimals": 18, + "status": "active", + "id": "0x3557Ba345B01EFa20A1bdDC61F573BFD87195081", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/amazon-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081/logo.png b/blockchains/arbitrum/assets/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081/logo.png new file mode 100644 index 0000000000000..1b179f11932f3 Binary files /dev/null and b/blockchains/arbitrum/assets/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081/logo.png differ diff --git a/blockchains/arbitrum/assets/0x35e050d3C0eC2d29D269a8EcEa763a183bDF9A9D/info.json b/blockchains/arbitrum/assets/0x35e050d3C0eC2d29D269a8EcEa763a183bDF9A9D/info.json new file mode 100644 index 0000000000000..cd5425b7a2094 --- /dev/null +++ b/blockchains/arbitrum/assets/0x35e050d3C0eC2d29D269a8EcEa763a183bDF9A9D/info.json @@ -0,0 +1,29 @@ +{ + "name": "Ondo U.S. Dollar Yield", + "type": "ARBITRUM", + "symbol": "USDY", + "decimals": 18, + "description": "Ondo US Dollar Yield (USDY) is a decentralized lending protocol designed to honor transfer restrictions from permissioned tokens, thereby expanding the universe of assets it can support. This unique approach allows it to cater to a broader range of financial instruments, making it a versatile player in the blockchain ecosystem.", + "website": "https://ondo.finance/", + "explorer": "https://arbiscan.io/token/0x35e050d3C0eC2d29D269a8EcEa763a183bDF9A9D", + "id": "0x35e050d3C0eC2d29D269a8EcEa763a183bDF9A9D", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ondo-us-dollar-yield/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ondo-us-dollar-yield" + } + ], + "tags": [ + "stablecoin" + ] +} + \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x35e050d3C0eC2d29D269a8EcEa763a183bDF9A9D/logo.png b/blockchains/arbitrum/assets/0x35e050d3C0eC2d29D269a8EcEa763a183bDF9A9D/logo.png new file mode 100644 index 0000000000000..18f94a8ea8225 Binary files /dev/null and b/blockchains/arbitrum/assets/0x35e050d3C0eC2d29D269a8EcEa763a183bDF9A9D/logo.png differ diff --git a/blockchains/arbitrum/assets/0x3644971A7E971f60e707F7E8716cCaC5a0461290/info.json b/blockchains/arbitrum/assets/0x3644971A7E971f60e707F7E8716cCaC5a0461290/info.json new file mode 100644 index 0000000000000..29d993f6ea5b3 --- /dev/null +++ b/blockchains/arbitrum/assets/0x3644971A7E971f60e707F7E8716cCaC5a0461290/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Eli Lilly Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0x3644971A7E971f60e707F7E8716cCaC5a0461290", + "type": "ARBITRUM", + "symbol": "WLLYX", + "decimals": 18, + "status": "active", + "id": "0x3644971A7E971f60e707F7E8716cCaC5a0461290", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-eli-lilly-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x3644971A7E971f60e707F7E8716cCaC5a0461290/logo.png b/blockchains/arbitrum/assets/0x3644971A7E971f60e707F7E8716cCaC5a0461290/logo.png new file mode 100644 index 0000000000000..76a44d3633b40 Binary files /dev/null and b/blockchains/arbitrum/assets/0x3644971A7E971f60e707F7E8716cCaC5a0461290/logo.png differ diff --git a/blockchains/arbitrum/assets/0x364f210f430eC2448Fc68A49203040F6124096F0/info.json b/blockchains/arbitrum/assets/0x364f210f430eC2448Fc68A49203040F6124096F0/info.json new file mode 100644 index 0000000000000..bc0508efd73a2 --- /dev/null +++ b/blockchains/arbitrum/assets/0x364f210f430eC2448Fc68A49203040F6124096F0/info.json @@ -0,0 +1,24 @@ +{ + "name": "Coinbase tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Coinbase tokenized stock (xStock) (COINX) is a cryptocurrency and operates on the Solana platform. Coinbase tokenized stock (xStock) has a current supply of 11,999.99916158 with 6,000 in circulation. The last known price of Coinbase tokenized stock (xStock) is 327.47561557 USD and is up 1.69 over the last 24 hours. It is currently trading on 28 active market(s) with $5,223,607.28 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/coinbase-xstock.", + "explorer": "https://arbiscan.io/token/0x364f210f430eC2448Fc68A49203040F6124096F0", + "type": "ARBITRUM", + "symbol": "COINX", + "decimals": 18, + "status": "active", + "id": "0x364f210f430eC2448Fc68A49203040F6124096F0", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coinbase-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x364f210f430eC2448Fc68A49203040F6124096F0/logo.png b/blockchains/arbitrum/assets/0x364f210f430eC2448Fc68A49203040F6124096F0/logo.png new file mode 100644 index 0000000000000..00db496af4511 Binary files /dev/null and b/blockchains/arbitrum/assets/0x364f210f430eC2448Fc68A49203040F6124096F0/logo.png differ diff --git a/blockchains/arbitrum/assets/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e/info.json b/blockchains/arbitrum/assets/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e/info.json new file mode 100644 index 0000000000000..49cc57f34bcfa --- /dev/null +++ b/blockchains/arbitrum/assets/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e/info.json @@ -0,0 +1,24 @@ +{ + "name": "PepsiCo tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Pepsico xStock (PEPx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. PEPx tracks the price of PepsiCo, Inc. (the underlying). PEPx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of PepsiCo, Inc., whilst maintaining the benefits of blockchain technology. PepsiCo is a multinational food and beverage corporation. PepsiCo offers a diverse portfolio of over 500 brands, including popular items like Pepsi, Lay's, Doritos, Gatorade, and Quaker Oats.", + "explorer": "https://arbiscan.io/token/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e", + "type": "ARBITRUM", + "symbol": "PEPX", + "decimals": 18, + "status": "active", + "id": "0x36c424a6EC0e264b1616102Ad63eD2aD7857413e", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pepsico-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e/logo.png b/blockchains/arbitrum/assets/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e/logo.png new file mode 100644 index 0000000000000..c3916659a191e Binary files /dev/null and b/blockchains/arbitrum/assets/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e/logo.png differ diff --git a/blockchains/arbitrum/assets/0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07/info.json b/blockchains/arbitrum/assets/0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07/info.json index f39634b4bf18f..58ddf2ae0a62c 100644 --- a/blockchains/arbitrum/assets/0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07/info.json +++ b/blockchains/arbitrum/assets/0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07/info.json @@ -10,8 +10,8 @@ "id": "0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07", "links": [ { - "name": "twitter", - "url": "https://twitter.com/traderjoe_xyz" + "name": "x", + "url": "https://x.com/traderjoe_xyz" }, { "name": "telegram", diff --git a/blockchains/arbitrum/assets/0x37a645648dF29205C6261289983FB04ECD70b4B3/info.json b/blockchains/arbitrum/assets/0x37a645648dF29205C6261289983FB04ECD70b4B3/info.json new file mode 100644 index 0000000000000..d8a01568e3633 --- /dev/null +++ b/blockchains/arbitrum/assets/0x37a645648dF29205C6261289983FB04ECD70b4B3/info.json @@ -0,0 +1,24 @@ +{ + "name": "Animecoin", + "type": "ARBITRUM", + "symbol": "ANIME", + "decimals": 18, + "website": "https://www.anime.xyz/", + "description": "Backed by Azuki, the premier Web3 anime brand, ANIME empowers one billion global fans to shape and own the future of anime culture. Anime fans are among the most passionate and creative communities in the world. Yet, they have long been passive consumers. Animecoin transforms the anime ecosystem into a community-owned creative economy.", + "explorer": "https://arbiscan.io/token/0x37a645648dF29205C6261289983FB04ECD70b4B3", + "status": "active", + "id": "0x37a645648dF29205C6261289983FB04ECD70b4B3", + "links": [ + { + "name": "x", + "url": "https://x.com/animecoin" + }, + { + "name": "whitepaper", + "url": "https://www.anime.xyz/blueprint" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x37a645648dF29205C6261289983FB04ECD70b4B3/logo.png b/blockchains/arbitrum/assets/0x37a645648dF29205C6261289983FB04ECD70b4B3/logo.png new file mode 100644 index 0000000000000..a1311b72a45a2 Binary files /dev/null and b/blockchains/arbitrum/assets/0x37a645648dF29205C6261289983FB04ECD70b4B3/logo.png differ diff --git a/blockchains/arbitrum/assets/0x38BAC69cbBd28156796e4163B2B6dcb81E336565/info.json b/blockchains/arbitrum/assets/0x38BAC69cbBd28156796e4163B2B6dcb81E336565/info.json new file mode 100644 index 0000000000000..e605192d6859f --- /dev/null +++ b/blockchains/arbitrum/assets/0x38BAC69cbBd28156796e4163B2B6dcb81E336565/info.json @@ -0,0 +1,24 @@ +{ + "name": "Broadcom tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Broadcom xStock (AVGOx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. AVGOx tracks the price of Broadcom Inc. (the underlying). AVGOx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Broadcom Inc., whilst maintaining the benefits of blockchain technology. Key Benefits Broadcom Inc. is a global technology company that designs, develops, and supplies semiconductors and infrastructure software solutions, operating through two segments: Semiconductor Solutions and Infrastructure Software.", + "explorer": "https://arbiscan.io/token/0x38BAC69cbBd28156796e4163B2B6dcb81E336565", + "type": "ARBITRUM", + "symbol": "AVGOX", + "decimals": 18, + "status": "active", + "id": "0x38BAC69cbBd28156796e4163B2B6dcb81E336565", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/broadcom-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x38BAC69cbBd28156796e4163B2B6dcb81E336565/logo.png b/blockchains/arbitrum/assets/0x38BAC69cbBd28156796e4163B2B6dcb81E336565/logo.png new file mode 100644 index 0000000000000..e437be046bd77 Binary files /dev/null and b/blockchains/arbitrum/assets/0x38BAC69cbBd28156796e4163B2B6dcb81E336565/logo.png differ diff --git a/blockchains/arbitrum/assets/0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6/info.json b/blockchains/arbitrum/assets/0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6/info.json new file mode 100644 index 0000000000000..f06a0aff6981d --- /dev/null +++ b/blockchains/arbitrum/assets/0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6/info.json @@ -0,0 +1,15 @@ +{ + "name": "Strategy PP Fixed xStock", + "type": "ARBITRUM", + "symbol": "STRKx", + "decimals": 18, + "description": "Strategy PP Fixed xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://arbiscan.io/token/0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6", + "status": "active", + "id": "0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6/logo.png b/blockchains/arbitrum/assets/0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6/logo.png new file mode 100644 index 0000000000000..1407faeca0e8c Binary files /dev/null and b/blockchains/arbitrum/assets/0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6/logo.png differ diff --git a/blockchains/arbitrum/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json b/blockchains/arbitrum/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json new file mode 100644 index 0000000000000..d35392cf01cba --- /dev/null +++ b/blockchains/arbitrum/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json @@ -0,0 +1,33 @@ +{ + "name": "Nya", + "type": "ARBITRUM", + "symbol": "NYA", + "decimals": 18, + "website": "https://www.nya.vip", + "description": "Explore the cultural phenomenon of Nya - the playful cat sound that's become a symbol of joy and connection. Discover how this simple word unites fans worldwide.", + "explorer": "https://arbiscan.io/token/0x38F9bf9dCe51833Ec7f03C9dC218197999999999", + "status": "active", + "id": "0x38F9bf9dCe51833Ec7f03C9dC218197999999999", + "links": [ + { + "name": "x", + "url": "https://x.com/NyaOnEarth" + }, + { + "name": "telegram", + "url": "https://t.me/NyaOnEarth" + }, + { + "name": "discord", + "url": "https://discord.com/invite/3V8gZFP5kb" + }, + { + "name": "docs", + "url": "https://wiki.nya.vip" + } + ], + "tags": [ + "memes", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png b/blockchains/arbitrum/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png new file mode 100644 index 0000000000000..c34f31c6b2335 Binary files /dev/null and b/blockchains/arbitrum/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png differ diff --git a/blockchains/arbitrum/assets/0x3B475F6f2f41853706afc9Fa6a6b8C5dF1a2724c/info.json b/blockchains/arbitrum/assets/0x3B475F6f2f41853706afc9Fa6a6b8C5dF1a2724c/info.json new file mode 100644 index 0000000000000..2ba7c00db0ec8 --- /dev/null +++ b/blockchains/arbitrum/assets/0x3B475F6f2f41853706afc9Fa6a6b8C5dF1a2724c/info.json @@ -0,0 +1,25 @@ +{ + "name": "Zyber", + "type": "ARBITRUM", + "symbol": "ZYB", + "decimals": 18, + "website": "https://zyberswap.io/", + "description": "Community-driven and governed DEX on Arbitrum with lots of utility on its native token ZYBER.", + "explorer": "https://arbiscan.io/token/0x3B475F6f2f41853706afc9Fa6a6b8C5dF1a2724c", + "status": "active", + "id": "0x3B475F6f2f41853706afc9Fa6a6b8C5dF1a2724c", + "links": [ + { + "name": "x", + "url": "https://x.com/zyberswap" + }, + { + "name": "telegram", + "url": "https://t.me/zyberswapofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zyberswap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x3B475F6f2f41853706afc9Fa6a6b8C5dF1a2724c/logo.png b/blockchains/arbitrum/assets/0x3B475F6f2f41853706afc9Fa6a6b8C5dF1a2724c/logo.png new file mode 100644 index 0000000000000..88e9ab8f8d309 Binary files /dev/null and b/blockchains/arbitrum/assets/0x3B475F6f2f41853706afc9Fa6a6b8C5dF1a2724c/logo.png differ diff --git a/blockchains/arbitrum/assets/0x3BD2dFd03BC7c3011ed7fb8c4d0949B382726cee/info.json b/blockchains/arbitrum/assets/0x3BD2dFd03BC7c3011ed7fb8c4d0949B382726cee/info.json new file mode 100644 index 0000000000000..2627cdabfd9f3 --- /dev/null +++ b/blockchains/arbitrum/assets/0x3BD2dFd03BC7c3011ed7fb8c4d0949B382726cee/info.json @@ -0,0 +1,11 @@ +{ + "name": "ROOBEE", + "website": "https://roobee.io/", + "description": "Roobee is a blockchain-based investment platform for non-professional and private investors. Roobee allows you to build an investment portfolio consisting of various assets, from cryptocurrencies to stocks and ETFs. The payment can be made in any convenient way, without limitations, and without high entry thresholds.", + "explorer": "https://arbiscan.io/token/0x3BD2dFd03BC7c3011ed7fb8c4d0949B382726cee", + "type": "ARBITRUM", + "symbol": "ROOBEE", + "decimals": 18, + "status": "active", + "id": "0x3BD2dFd03BC7c3011ed7fb8c4d0949B382726cee" +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x3BD2dFd03BC7c3011ed7fb8c4d0949B382726cee/logo.png b/blockchains/arbitrum/assets/0x3BD2dFd03BC7c3011ed7fb8c4d0949B382726cee/logo.png new file mode 100644 index 0000000000000..44c060c10723e Binary files /dev/null and b/blockchains/arbitrum/assets/0x3BD2dFd03BC7c3011ed7fb8c4d0949B382726cee/logo.png differ diff --git a/blockchains/arbitrum/assets/0x3E6648C5a70A150A88bCE65F4aD4d506Fe15d2AF/info.json b/blockchains/arbitrum/assets/0x3E6648C5a70A150A88bCE65F4aD4d506Fe15d2AF/info.json new file mode 100644 index 0000000000000..f21ce021ba0a0 --- /dev/null +++ b/blockchains/arbitrum/assets/0x3E6648C5a70A150A88bCE65F4aD4d506Fe15d2AF/info.json @@ -0,0 +1,28 @@ +{ + "name": "Spell Token", + "website": "https://abracadabra.money/", + "description": "Abracadabra.money is a lending platform that allows users to borrow funds using Interest Bearing Tokens as collateral.", + "explorer": "https://arbiscan.io/token/0x3e6648c5a70a150a88bce65f4ad4d506fe15d2af", + "type": "ARBITRUM", + "symbol": "SPELL", + "decimals": 18, + "status": "active", + "id": "0x3E6648C5a70A150A88bCE65F4aD4d506Fe15d2AF", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/MIM_Spell" + }, + { + "name": "medium", + "url": "https://abracadabramoney.medium.com/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/spell-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x3E6648C5a70A150A88bCE65F4aD4d506Fe15d2AF/logo.png b/blockchains/arbitrum/assets/0x3E6648C5a70A150A88bCE65F4aD4d506Fe15d2AF/logo.png new file mode 100644 index 0000000000000..fc7438b7de4b2 Binary files /dev/null and b/blockchains/arbitrum/assets/0x3E6648C5a70A150A88bCE65F4aD4d506Fe15d2AF/logo.png differ diff --git a/blockchains/arbitrum/assets/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149/info.json b/blockchains/arbitrum/assets/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149/info.json new file mode 100644 index 0000000000000..ce4f5b533c12e --- /dev/null +++ b/blockchains/arbitrum/assets/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149/info.json @@ -0,0 +1,24 @@ +{ + "name": "Goldman Sachs tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Goldman Sachs xStock (GSx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. GSx tracks the price of The Goldman Sachs Group, Inc. (the underlying). GSx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of The Goldman Sachs Group, Inc., whilst maintaining the benefits of blockchain technology. Goldman Sachs is a leading global investment bank and wealth management firm.", + "explorer": "https://arbiscan.io/token/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149", + "type": "ARBITRUM", + "symbol": "GSX", + "decimals": 18, + "status": "active", + "id": "0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/goldman-sachs-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149/logo.png b/blockchains/arbitrum/assets/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149/logo.png new file mode 100644 index 0000000000000..80b9ebb613a34 Binary files /dev/null and b/blockchains/arbitrum/assets/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149/logo.png differ diff --git a/blockchains/arbitrum/assets/0x3F56e0c36d275367b8C502090EDF38289b3dEa0d/info.json b/blockchains/arbitrum/assets/0x3F56e0c36d275367b8C502090EDF38289b3dEa0d/info.json new file mode 100644 index 0000000000000..bab913ad2182f --- /dev/null +++ b/blockchains/arbitrum/assets/0x3F56e0c36d275367b8C502090EDF38289b3dEa0d/info.json @@ -0,0 +1,21 @@ +{ + "name": "Mai Stablecoin", + "website": "https://www.mai.finance/", + "description": "miMatic is an algorithmic stablecoin that is collateralized with Matic tokens", + "explorer": "https://arbiscan.io/token/0x3F56e0c36d275367b8C502090EDF38289b3dEa0d", + "type": "ARBITRUM", + "symbol": "MAI", + "decimals": 18, + "status": "active", + "id": "0x3F56e0c36d275367b8C502090EDF38289b3dEa0d", + "links": [ + { + "name": "x", + "url": "https://x.com/0xLaoZi" + }, + { + "name": "telegram", + "url": "https://t.me/QiDaoProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x3F56e0c36d275367b8C502090EDF38289b3dEa0d/logo.png b/blockchains/arbitrum/assets/0x3F56e0c36d275367b8C502090EDF38289b3dEa0d/logo.png new file mode 100644 index 0000000000000..52dc3ec3f6f15 Binary files /dev/null and b/blockchains/arbitrum/assets/0x3F56e0c36d275367b8C502090EDF38289b3dEa0d/logo.png differ diff --git a/blockchains/arbitrum/assets/0x3a98E79cDc7D8B2716A8696E25af028E429f11dA/info.json b/blockchains/arbitrum/assets/0x3a98E79cDc7D8B2716A8696E25af028E429f11dA/info.json new file mode 100644 index 0000000000000..c98d1e8b09c23 --- /dev/null +++ b/blockchains/arbitrum/assets/0x3a98E79cDc7D8B2716A8696E25af028E429f11dA/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Coinbase Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0x3a98E79cDc7D8B2716A8696E25af028E429f11dA", + "type": "ARBITRUM", + "symbol": "WCOINX", + "decimals": 18, + "status": "active", + "id": "0x3a98E79cDc7D8B2716A8696E25af028E429f11dA", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-coinbase-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x3a98E79cDc7D8B2716A8696E25af028E429f11dA/logo.png b/blockchains/arbitrum/assets/0x3a98E79cDc7D8B2716A8696E25af028E429f11dA/logo.png new file mode 100644 index 0000000000000..dc44bccede7b2 Binary files /dev/null and b/blockchains/arbitrum/assets/0x3a98E79cDc7D8B2716A8696E25af028E429f11dA/logo.png differ diff --git a/blockchains/arbitrum/assets/0x3d9907F9a368ad0a51Be60f7Da3b97cf940982D8/info.json b/blockchains/arbitrum/assets/0x3d9907F9a368ad0a51Be60f7Da3b97cf940982D8/info.json new file mode 100644 index 0000000000000..4bded06b674db --- /dev/null +++ b/blockchains/arbitrum/assets/0x3d9907F9a368ad0a51Be60f7Da3b97cf940982D8/info.json @@ -0,0 +1,25 @@ +{ + "name": "Camelot", + "type": "ARBITRUM", + "symbol": "GRAIL", + "decimals": 18, + "website": "https://camelot.exchange/", + "description": "Camelot is an ecosystem-focused and community-driven DEX built on Arbitrum.", + "explorer": "https://arbiscan.io/token/0x3d9907f9a368ad0a51be60f7da3b97cf940982d8", + "status": "active", + "id": "0x3d9907F9a368ad0a51Be60f7Da3b97cf940982D8", + "links": [ + { + "name": "x", + "url": "https://x.com/camelotdex" + }, + { + "name": "telegram", + "url": "https://t.me/camelotdex" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/camelot-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x3d9907F9a368ad0a51Be60f7Da3b97cf940982D8/logo.png b/blockchains/arbitrum/assets/0x3d9907F9a368ad0a51Be60f7Da3b97cf940982D8/logo.png new file mode 100644 index 0000000000000..fff441f8ed026 Binary files /dev/null and b/blockchains/arbitrum/assets/0x3d9907F9a368ad0a51Be60f7Da3b97cf940982D8/logo.png differ diff --git a/blockchains/arbitrum/assets/0x4186BFC76E2E237523CBC30FD220FE055156b41F/info.json b/blockchains/arbitrum/assets/0x4186BFC76E2E237523CBC30FD220FE055156b41F/info.json new file mode 100644 index 0000000000000..cf8a857c3cfaa --- /dev/null +++ b/blockchains/arbitrum/assets/0x4186BFC76E2E237523CBC30FD220FE055156b41F/info.json @@ -0,0 +1,17 @@ +{ + "name": "KelpDao Restaked ETH", + "website": "https://kelpdao.xyz/restake/", + "description": "rsETH is a Liquid Restaked Token (LRT) issued by Kelp DAO designed to offer liquidity to illiquid assets deposited into restaking platforms, such as EigenLayer. It aims to address the risks and challenges posed by the current offering of restaking", + "explorer": "https://arbiscan.io/token/0x4186bfc76e2e237523cbc30fd220fe055156b41f", + "type": "ARBITRUM", + "symbol": "rsETH", + "decimals": 18, + "status": "active", + "id": "0x4186BFC76E2E237523CBC30FD220FE055156b41F", + "links": [ + { + "name": "x", + "url": "https://x.com/KelpDAO" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x4186BFC76E2E237523CBC30FD220FE055156b41F/logo.png b/blockchains/arbitrum/assets/0x4186BFC76E2E237523CBC30FD220FE055156b41F/logo.png new file mode 100644 index 0000000000000..0ae989c4e374c Binary files /dev/null and b/blockchains/arbitrum/assets/0x4186BFC76E2E237523CBC30FD220FE055156b41F/logo.png differ diff --git a/blockchains/arbitrum/assets/0x431402e8b9dE9aa016C743880e04E517074D8cEC/info.json b/blockchains/arbitrum/assets/0x431402e8b9dE9aa016C743880e04E517074D8cEC/info.json new file mode 100644 index 0000000000000..a4b25c29f7946 --- /dev/null +++ b/blockchains/arbitrum/assets/0x431402e8b9dE9aa016C743880e04E517074D8cEC/info.json @@ -0,0 +1,17 @@ +{ + "name": "Hegic", + "website": "https://hegic.co/", + "description": "Hegic is an on-chain, non-custodial peer-to-pool options trading protocol built on Ethereum. Currently Hegic supports options trading in for Bitcoin (wBTC) and Ether (ETH).", + "explorer": "https://arbiscan.io/token/0x431402e8b9dE9aa016C743880e04E517074D8cEC", + "type": "ARBITRUM", + "symbol": "HEGIC", + "decimals": 18, + "status": "active", + "id": "0x431402e8b9dE9aa016C743880e04E517074D8cEC", + "links": [ + { + "name": "github", + "url": "https://github.com/hegic" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x431402e8b9dE9aa016C743880e04E517074D8cEC/logo.png b/blockchains/arbitrum/assets/0x431402e8b9dE9aa016C743880e04E517074D8cEC/logo.png new file mode 100644 index 0000000000000..44c118daf7b4e Binary files /dev/null and b/blockchains/arbitrum/assets/0x431402e8b9dE9aa016C743880e04E517074D8cEC/logo.png differ diff --git a/blockchains/arbitrum/assets/0x43680aBF18cf54898Be84C6eF78237CFBD441883/info.json b/blockchains/arbitrum/assets/0x43680aBF18cf54898Be84C6eF78237CFBD441883/info.json new file mode 100644 index 0000000000000..be447684b4f84 --- /dev/null +++ b/blockchains/arbitrum/assets/0x43680aBF18cf54898Be84C6eF78237CFBD441883/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Tesla Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0x43680aBF18cf54898Be84C6eF78237CFBD441883", + "type": "ARBITRUM", + "symbol": "WTSLAX", + "decimals": 18, + "status": "active", + "id": "0x43680aBF18cf54898Be84C6eF78237CFBD441883", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-tesla-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x43680aBF18cf54898Be84C6eF78237CFBD441883/logo.png b/blockchains/arbitrum/assets/0x43680aBF18cf54898Be84C6eF78237CFBD441883/logo.png new file mode 100644 index 0000000000000..803702a55c05c Binary files /dev/null and b/blockchains/arbitrum/assets/0x43680aBF18cf54898Be84C6eF78237CFBD441883/logo.png differ diff --git a/blockchains/arbitrum/assets/0x4425742F1EC8D98779690b5A3A6276Db85Ddc01A/info.json b/blockchains/arbitrum/assets/0x4425742F1EC8D98779690b5A3A6276Db85Ddc01A/info.json new file mode 100644 index 0000000000000..8a93796840584 --- /dev/null +++ b/blockchains/arbitrum/assets/0x4425742F1EC8D98779690b5A3A6276Db85Ddc01A/info.json @@ -0,0 +1,25 @@ +{ + "name": "The Doge NFT", + "type": "ARBITRUM", + "symbol": "DOG", + "decimals": 18, + "website": "https://doge.pleasr.org/", + "description": "The most iconic meme in internet history, the original Doge, fractionalized and available for anyone to own. Fractionalizing this NFT means that now anyone can own a piece of one of the most recognized and loved images of our generation.", + "explorer": "https://arbiscan.io/token/0x4425742F1EC8D98779690b5A3A6276Db85Ddc01A", + "status": "active", + "id": "0x4425742F1EC8D98779690b5A3A6276Db85Ddc01A", + "links": [ + { + "name": "x", + "url": "https://x.com/ownthedoge" + }, + { + "name": "telegram", + "url": "https://t.me/ownthedoge" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/the-doge-nft/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x4425742F1EC8D98779690b5A3A6276Db85Ddc01A/logo.png b/blockchains/arbitrum/assets/0x4425742F1EC8D98779690b5A3A6276Db85Ddc01A/logo.png new file mode 100644 index 0000000000000..5563308384283 Binary files /dev/null and b/blockchains/arbitrum/assets/0x4425742F1EC8D98779690b5A3A6276Db85Ddc01A/logo.png differ diff --git a/blockchains/arbitrum/assets/0x448bC811F60eac772775dD53421380E8D4DC4338/info.json b/blockchains/arbitrum/assets/0x448bC811F60eac772775dD53421380E8D4DC4338/info.json new file mode 100644 index 0000000000000..9d5c9070ef839 --- /dev/null +++ b/blockchains/arbitrum/assets/0x448bC811F60eac772775dD53421380E8D4DC4338/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Exxon Mobil Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0x448bC811F60eac772775dD53421380E8D4DC4338", + "type": "ARBITRUM", + "symbol": "WXOMX", + "decimals": 18, + "status": "active", + "id": "0x448bC811F60eac772775dD53421380E8D4DC4338", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-exxon-mobil-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x448bC811F60eac772775dD53421380E8D4DC4338/logo.png b/blockchains/arbitrum/assets/0x448bC811F60eac772775dD53421380E8D4DC4338/logo.png new file mode 100644 index 0000000000000..637fe091d728d Binary files /dev/null and b/blockchains/arbitrum/assets/0x448bC811F60eac772775dD53421380E8D4DC4338/logo.png differ diff --git a/blockchains/arbitrum/assets/0x4728E48c2C201E32fe210AaB68A71E419FEAc74a/info.json b/blockchains/arbitrum/assets/0x4728E48c2C201E32fe210AaB68A71E419FEAc74a/info.json new file mode 100644 index 0000000000000..26caea7d4bc8c --- /dev/null +++ b/blockchains/arbitrum/assets/0x4728E48c2C201E32fe210AaB68A71E419FEAc74a/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Merck Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0x4728E48c2C201E32fe210AaB68A71E419FEAc74a", + "type": "ARBITRUM", + "symbol": "WMRKX", + "decimals": 18, + "status": "active", + "id": "0x4728E48c2C201E32fe210AaB68A71E419FEAc74a", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-merck-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x4728E48c2C201E32fe210AaB68A71E419FEAc74a/logo.png b/blockchains/arbitrum/assets/0x4728E48c2C201E32fe210AaB68A71E419FEAc74a/logo.png new file mode 100644 index 0000000000000..ad320471212fe Binary files /dev/null and b/blockchains/arbitrum/assets/0x4728E48c2C201E32fe210AaB68A71E419FEAc74a/logo.png differ diff --git a/blockchains/arbitrum/assets/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2/info.json b/blockchains/arbitrum/assets/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2/info.json new file mode 100644 index 0000000000000..4e6233e8e3b05 --- /dev/null +++ b/blockchains/arbitrum/assets/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2/info.json @@ -0,0 +1,24 @@ +{ + "name": "Salesforce tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Salesforce xStock (CRMx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. CRMx tracks the price of Salesforce, Inc. (the underlying). CRMx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Salesforce, Inc., whilst maintaining the benefits of blockchain technology. Key Benefits Salesforce is a technology company that pioneered cloud-based customer relationship management (CRM) and now offers a broad suite of AI-powered platforms for various business functions, including sales, service, marketing, and commerce.", + "explorer": "https://arbiscan.io/token/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2", + "type": "ARBITRUM", + "symbol": "CRMX", + "decimals": 18, + "status": "active", + "id": "0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/salesforce-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2/logo.png b/blockchains/arbitrum/assets/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2/logo.png new file mode 100644 index 0000000000000..058611507c29f Binary files /dev/null and b/blockchains/arbitrum/assets/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2/logo.png differ diff --git a/blockchains/arbitrum/assets/0x4Cb9a7AE498CEDcBb5EAe9f25736aE7d428C9D66/info.json b/blockchains/arbitrum/assets/0x4Cb9a7AE498CEDcBb5EAe9f25736aE7d428C9D66/info.json new file mode 100644 index 0000000000000..871418465214c --- /dev/null +++ b/blockchains/arbitrum/assets/0x4Cb9a7AE498CEDcBb5EAe9f25736aE7d428C9D66/info.json @@ -0,0 +1,21 @@ +{ + "name": "Xai", + "type": "ARBITRUM", + "symbol": "XAI", + "decimals": 18, + "website": "https://xai.games/", + "description": "The Xai token has a dual role on the Xai blockchain. It serves as the gas token for transactions and rewards validator nodes. Moreover, it is the main currency in the gaming ecosystem, accepted for game purchases and in-game items.", + "explorer": "https://arbiscan.io/token/0x4Cb9a7AE498CEDcBb5EAe9f25736aE7d428C9D66", + "status": "active", + "id": "0x4Cb9a7AE498CEDcBb5EAe9f25736aE7d428C9D66", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/xai-games/" + }, + { + "name": "x", + "url": "https://x.com/xai_games" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x4Cb9a7AE498CEDcBb5EAe9f25736aE7d428C9D66/logo.png b/blockchains/arbitrum/assets/0x4Cb9a7AE498CEDcBb5EAe9f25736aE7d428C9D66/logo.png new file mode 100644 index 0000000000000..bd835bcb7d4c0 Binary files /dev/null and b/blockchains/arbitrum/assets/0x4Cb9a7AE498CEDcBb5EAe9f25736aE7d428C9D66/logo.png differ diff --git a/blockchains/arbitrum/assets/0x4E41a262cAA93C6575d336E0a4eb79f3c67caa06/info.json b/blockchains/arbitrum/assets/0x4E41a262cAA93C6575d336E0a4eb79f3c67caa06/info.json new file mode 100644 index 0000000000000..4cd3f9d57ffc2 --- /dev/null +++ b/blockchains/arbitrum/assets/0x4E41a262cAA93C6575d336E0a4eb79f3c67caa06/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Meta Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0x4E41a262cAA93C6575d336E0a4eb79f3c67caa06", + "type": "ARBITRUM", + "symbol": "WMETAX", + "decimals": 18, + "status": "active", + "id": "0x4E41a262cAA93C6575d336E0a4eb79f3c67caa06", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-meta-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x4E41a262cAA93C6575d336E0a4eb79f3c67caa06/logo.png b/blockchains/arbitrum/assets/0x4E41a262cAA93C6575d336E0a4eb79f3c67caa06/logo.png new file mode 100644 index 0000000000000..d060b97916246 Binary files /dev/null and b/blockchains/arbitrum/assets/0x4E41a262cAA93C6575d336E0a4eb79f3c67caa06/logo.png differ diff --git a/blockchains/arbitrum/assets/0x4E6894c3481B3A45393ce8ac9552945Ad50A3758/info.json b/blockchains/arbitrum/assets/0x4E6894c3481B3A45393ce8ac9552945Ad50A3758/info.json new file mode 100644 index 0000000000000..b751ec011492a --- /dev/null +++ b/blockchains/arbitrum/assets/0x4E6894c3481B3A45393ce8ac9552945Ad50A3758/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Pfizer Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0x4E6894c3481B3A45393ce8ac9552945Ad50A3758", + "type": "ARBITRUM", + "symbol": "WPFEX", + "decimals": 18, + "status": "active", + "id": "0x4E6894c3481B3A45393ce8ac9552945Ad50A3758", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-pfizer-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x4E6894c3481B3A45393ce8ac9552945Ad50A3758/logo.png b/blockchains/arbitrum/assets/0x4E6894c3481B3A45393ce8ac9552945Ad50A3758/logo.png new file mode 100644 index 0000000000000..fc5f5be1f126f Binary files /dev/null and b/blockchains/arbitrum/assets/0x4E6894c3481B3A45393ce8ac9552945Ad50A3758/logo.png differ diff --git a/blockchains/arbitrum/assets/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b/info.json b/blockchains/arbitrum/assets/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b/info.json new file mode 100644 index 0000000000000..cb88e740458bd --- /dev/null +++ b/blockchains/arbitrum/assets/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b/info.json @@ -0,0 +1,24 @@ +{ + "name": "TBLL tokenized ETF (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b", + "type": "ARBITRUM", + "symbol": "TBLLX", + "decimals": 18, + "status": "active", + "id": "0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tbll-tokenized-etf-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b/logo.png b/blockchains/arbitrum/assets/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b/logo.png new file mode 100644 index 0000000000000..a937d8586cfac Binary files /dev/null and b/blockchains/arbitrum/assets/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b/logo.png differ diff --git a/blockchains/arbitrum/assets/0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42/info.json b/blockchains/arbitrum/assets/0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42/info.json new file mode 100644 index 0000000000000..615fc082c28e7 --- /dev/null +++ b/blockchains/arbitrum/assets/0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42/info.json @@ -0,0 +1,25 @@ +{ + "name": "MUX Protocol", + "website": "https://mux.network", + "description": "MUX Protocol is the first decentralized perpetual aggregator; it offers deep aggregated liquidity, optimized trading cost, up to 100x leverage, diverse market options and unique aggregator features like smart position routing, aggregated position, leverage boosting and liquidation price optimization.", + "explorer": "https://arbiscan.io/token/0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42", + "type": "ARBITRUM", + "symbol": "MCB", + "decimals": 18, + "status": "active", + "id": "0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42", + "links": [ + { + "name": "x", + "url": "https://x.com/muxprotocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mcdex/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mux-protocol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42/logo.png b/blockchains/arbitrum/assets/0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42/logo.png new file mode 100644 index 0000000000000..ee172cac16fc5 Binary files /dev/null and b/blockchains/arbitrum/assets/0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42/logo.png differ diff --git a/blockchains/arbitrum/assets/0x50E401255275dc405A99d3281f396cCa681eEa9d/info.json b/blockchains/arbitrum/assets/0x50E401255275dc405A99d3281f396cCa681eEa9d/info.json index 778922482e0b0..028eec7fdd45f 100644 --- a/blockchains/arbitrum/assets/0x50E401255275dc405A99d3281f396cCa681eEa9d/info.json +++ b/blockchains/arbitrum/assets/0x50E401255275dc405A99d3281f396cCa681eEa9d/info.json @@ -10,8 +10,8 @@ "id": "0x50E401255275dc405A99d3281f396cCa681eEa9d", "links": [ { - "name": "twitter", - "url": "https://twitter.com/KortanaLegacy" + "name": "x", + "url": "https://x.com/KortanaLegacy" }, { "name": "telegram", @@ -25,4 +25,4 @@ "tags": [ "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1/info.json b/blockchains/arbitrum/assets/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1/info.json new file mode 100644 index 0000000000000..9edde87ac89b8 --- /dev/null +++ b/blockchains/arbitrum/assets/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1/info.json @@ -0,0 +1,24 @@ +{ + "name": "AppLovin tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "AppLovin xStock (APPx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. APPx tracks the price of AppLovin Corporation (the underlying). APPx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of AppLovin Corporation, whilst maintaining the benefits of blockchain technology. AppLovin is a global mobile technology company that provides businesses with solutions to connect with their target audience, market, monetize, and grow their apps and content.", + "explorer": "https://arbiscan.io/token/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1", + "type": "ARBITRUM", + "symbol": "APPX", + "decimals": 18, + "status": "active", + "id": "0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/applovin-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1/logo.png b/blockchains/arbitrum/assets/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1/logo.png new file mode 100644 index 0000000000000..29c2803eba26a Binary files /dev/null and b/blockchains/arbitrum/assets/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1/logo.png differ diff --git a/blockchains/arbitrum/assets/0x51C601dC278EB2CFea8e52c4caA35B3d6a9A2c26/info.json b/blockchains/arbitrum/assets/0x51C601dC278EB2CFea8e52c4caA35B3d6a9A2c26/info.json new file mode 100644 index 0000000000000..65b599afa4eb1 --- /dev/null +++ b/blockchains/arbitrum/assets/0x51C601dC278EB2CFea8e52c4caA35B3d6a9A2c26/info.json @@ -0,0 +1,21 @@ +{ + "name": "Chainge", + "website": "https://chainge.finance/", + "description": "Chainge Finance is a next generation DeFi app that stands as the most liquid web3 trading venue on the market.", + "explorer": "https://arbiscan.io/token/0x51C601dC278EB2CFea8e52c4caA35B3d6a9A2c26", + "type": "ARBITRUM", + "symbol": "XCHNG", + "decimals": 18, + "status": "active", + "id": "0x51C601dC278EB2CFea8e52c4caA35B3d6a9A2c26", + "links": [ + { + "name": "x", + "url": "https://x.com/FinanceChainge" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chainge/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x51C601dC278EB2CFea8e52c4caA35B3d6a9A2c26/logo.png b/blockchains/arbitrum/assets/0x51C601dC278EB2CFea8e52c4caA35B3d6a9A2c26/logo.png new file mode 100644 index 0000000000000..43ad8fabeb2be Binary files /dev/null and b/blockchains/arbitrum/assets/0x51C601dC278EB2CFea8e52c4caA35B3d6a9A2c26/logo.png differ diff --git a/blockchains/arbitrum/assets/0x521860bB5dF5468358875266B89BFE90d990C6e7/info.json b/blockchains/arbitrum/assets/0x521860bB5dF5468358875266B89BFE90d990C6e7/info.json new file mode 100644 index 0000000000000..801479189b7ef --- /dev/null +++ b/blockchains/arbitrum/assets/0x521860bB5dF5468358875266B89BFE90d990C6e7/info.json @@ -0,0 +1,24 @@ +{ + "name": "DFDV tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "DFDV tokenized stock (xStock) (DFDVx) is a cryptocurrency launched in 2025and operates on the Solana platform. DFDV tokenized stock (xStock) has a current supply of 89,998.8299641. The last known price of DFDV tokenized stock (xStock) is 17.41975634 USD and is up 0.35 over the last 24 hours. It is currently trading on 13 active market(s) with $2,140,595.18 traded over the last 24 hours. More information can be found at https://defidevcorp.com/.", + "explorer": "https://arbiscan.io/token/0x521860bB5dF5468358875266B89BFE90d990C6e7", + "type": "ARBITRUM", + "symbol": "DFDVx", + "decimals": 18, + "status": "active", + "id": "0x521860bB5dF5468358875266B89BFE90d990C6e7", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dfdv-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x521860bB5dF5468358875266B89BFE90d990C6e7/logo.png b/blockchains/arbitrum/assets/0x521860bB5dF5468358875266B89BFE90d990C6e7/logo.png new file mode 100644 index 0000000000000..cf1609ac71978 Binary files /dev/null and b/blockchains/arbitrum/assets/0x521860bB5dF5468358875266B89BFE90d990C6e7/logo.png differ diff --git a/blockchains/arbitrum/assets/0x539bdE0d7Dbd336b79148AA742883198BBF60342/info.json b/blockchains/arbitrum/assets/0x539bdE0d7Dbd336b79148AA742883198BBF60342/info.json new file mode 100644 index 0000000000000..e3ef9809ee9df --- /dev/null +++ b/blockchains/arbitrum/assets/0x539bdE0d7Dbd336b79148AA742883198BBF60342/info.json @@ -0,0 +1,29 @@ +{ + "name": "MAGIC", + "symbol": "MAGIC", + "type": "ARBITRUM", + "decimals": 18, + "description": "MAGIC is the utility token that connects gaming communities in the Treasure Metaverse: a decentralized NFT ecosystem which sits on Arbitrum, one of Ethereum’s Layer 2 scaling solutions.", + "website": "https://treasure.lol/", + "explorer": "https://arbiscan.io/token/0x539bdE0d7Dbd336b79148AA742883198BBF60342", + "status": "active", + "id": "0x539bdE0d7Dbd336b79148AA742883198BBF60342", + "links": [ + { + "name": "x", + "url": "https://x.com/Treasure_NFT" + }, + { + "name": "medium", + "url": "https://medium.com/@TreasureNFT" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/magic-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/magic/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x539bdE0d7Dbd336b79148AA742883198BBF60342/logo.png b/blockchains/arbitrum/assets/0x539bdE0d7Dbd336b79148AA742883198BBF60342/logo.png new file mode 100644 index 0000000000000..16844a459a5aa Binary files /dev/null and b/blockchains/arbitrum/assets/0x539bdE0d7Dbd336b79148AA742883198BBF60342/logo.png differ diff --git a/blockchains/arbitrum/assets/0x548308E91ec9F285C7bFf05295baDBD56a6e4971/info.json b/blockchains/arbitrum/assets/0x548308E91ec9F285C7bFf05295baDBD56a6e4971/info.json new file mode 100644 index 0000000000000..d972559b9422e --- /dev/null +++ b/blockchains/arbitrum/assets/0x548308E91ec9F285C7bFf05295baDBD56a6e4971/info.json @@ -0,0 +1,24 @@ +{ + "name": "Oracle tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Oracle xStock (ORCLx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. ORCLx tracks the price of Oracle Corporation (the underlying). ORCLx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Oracle Corporation, whilst maintaining the benefits of blockchain technology. Oracle Corporation is a large, publicly-held multinational company headquartered in Austin, Texas, offering enterprise applications and cloud infrastructure.", + "explorer": "https://arbiscan.io/token/0x548308E91ec9F285C7bFf05295baDBD56a6e4971", + "type": "ARBITRUM", + "symbol": "ORCLX", + "decimals": 18, + "status": "active", + "id": "0x548308E91ec9F285C7bFf05295baDBD56a6e4971", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/oracle-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x548308E91ec9F285C7bFf05295baDBD56a6e4971/logo.png b/blockchains/arbitrum/assets/0x548308E91ec9F285C7bFf05295baDBD56a6e4971/logo.png new file mode 100644 index 0000000000000..8179bd1129e15 Binary files /dev/null and b/blockchains/arbitrum/assets/0x548308E91ec9F285C7bFf05295baDBD56a6e4971/logo.png differ diff --git a/blockchains/arbitrum/assets/0x54f34Ceb15313Caaee838F77c1c3C2Fe2E94526A/info.json b/blockchains/arbitrum/assets/0x54f34Ceb15313Caaee838F77c1c3C2Fe2E94526A/info.json new file mode 100644 index 0000000000000..feff37a796dad --- /dev/null +++ b/blockchains/arbitrum/assets/0x54f34Ceb15313Caaee838F77c1c3C2Fe2E94526A/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Oracle Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0x54f34Ceb15313Caaee838F77c1c3C2Fe2E94526A", + "type": "ARBITRUM", + "symbol": "WORCLX", + "decimals": 18, + "status": "active", + "id": "0x54f34Ceb15313Caaee838F77c1c3C2Fe2E94526A", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-oracle-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x54f34Ceb15313Caaee838F77c1c3C2Fe2E94526A/logo.png b/blockchains/arbitrum/assets/0x54f34Ceb15313Caaee838F77c1c3C2Fe2E94526A/logo.png new file mode 100644 index 0000000000000..d70496600af39 Binary files /dev/null and b/blockchains/arbitrum/assets/0x54f34Ceb15313Caaee838F77c1c3C2Fe2E94526A/logo.png differ diff --git a/blockchains/arbitrum/assets/0x5575552988A3A80504bBaeB1311674fCFd40aD4B/info.json b/blockchains/arbitrum/assets/0x5575552988A3A80504bBaeB1311674fCFd40aD4B/info.json new file mode 100644 index 0000000000000..3c407b079efa4 --- /dev/null +++ b/blockchains/arbitrum/assets/0x5575552988A3A80504bBaeB1311674fCFd40aD4B/info.json @@ -0,0 +1,21 @@ +{ + "name": "Sperax", + "symbol": "SPA", + "type": "ARBITRUM", + "decimals": 18, + "description": "A project that aims to provide decentralized financial services for all with its original BDLS consensus protocol and a dual stablecoin system.", + "website": "https://sperax.io/", + "explorer": "https://arbiscan.io/token/0x5575552988A3A80504bBaeB1311674fCFd40aD4B", + "status": "active", + "id": "0x5575552988A3A80504bBaeB1311674fCFd40aD4B", + "links": [ + { + "name": "x", + "url": "https://x.com/SperaxUSD" + }, + { + "name": "telegram", + "url": "https://t.me/SperaxUSD" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x5575552988A3A80504bBaeB1311674fCFd40aD4B/logo.png b/blockchains/arbitrum/assets/0x5575552988A3A80504bBaeB1311674fCFd40aD4B/logo.png new file mode 100644 index 0000000000000..b24148bca7d06 Binary files /dev/null and b/blockchains/arbitrum/assets/0x5575552988A3A80504bBaeB1311674fCFd40aD4B/logo.png differ diff --git a/blockchains/arbitrum/assets/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60/info.json b/blockchains/arbitrum/assets/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60/info.json new file mode 100644 index 0000000000000..56ad63735a5e2 --- /dev/null +++ b/blockchains/arbitrum/assets/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60/info.json @@ -0,0 +1,25 @@ +{ + "name": "SeedifyFund", + "type": "ARBITRUM", + "symbol": "SFUND", + "decimals": 18, + "website": "https://seedify.fund", + "description": "A Blockchain Innovation Ecosystem, with a Seed Stage Fund, Decentralized Incubator, and Launchpad", + "explorer": "https://arbiscan.io/token/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60", + "status": "active", + "id": "0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60", + "links": [ + { + "name": "x", + "url": "https://x.com/seedifyfund" + }, + { + "name": "telegram", + "url": "https://t.me/seedifyfundofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/seedify-fund/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60/logo.png b/blockchains/arbitrum/assets/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60/logo.png new file mode 100644 index 0000000000000..149d2563079dd Binary files /dev/null and b/blockchains/arbitrum/assets/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60/logo.png differ diff --git a/blockchains/arbitrum/assets/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35/info.json b/blockchains/arbitrum/assets/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35/info.json new file mode 100644 index 0000000000000..4291b29b2a307 --- /dev/null +++ b/blockchains/arbitrum/assets/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35/info.json @@ -0,0 +1,24 @@ +{ + "name": "Microsoft tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Microsoft xStock (MSFTx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. MSFTx tracks the price of Microsoft Corporation (the underlying). MSFTx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Microsoft Corporation, whilst maintaining the benefits of blockchain technology. Key Benefits Microsoft is the world's largest vendor of computer software and a leading provider of cloud computing services, video games, computer and gaming hardware, search, and other online services.", + "explorer": "https://arbiscan.io/token/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35", + "type": "ARBITRUM", + "symbol": "MSFTX", + "decimals": 18, + "status": "active", + "id": "0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/microsoft-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35/logo.png b/blockchains/arbitrum/assets/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35/logo.png new file mode 100644 index 0000000000000..409e4ececae65 Binary files /dev/null and b/blockchains/arbitrum/assets/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35/logo.png differ diff --git a/blockchains/arbitrum/assets/0x56C0739989C54227F816559b4a7926096697B554/info.json b/blockchains/arbitrum/assets/0x56C0739989C54227F816559b4a7926096697B554/info.json new file mode 100644 index 0000000000000..9a34819c63e8c --- /dev/null +++ b/blockchains/arbitrum/assets/0x56C0739989C54227F816559b4a7926096697B554/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tethor USD", + "type": "ARBITRUM", + "symbol": "FAKE USDT.a", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://etherscan.io/token/0xf56bd63ac2d14c397a754e0bdfce020baa44f214", + "explorer": "https://etherscan.io/token/0xf56bd63ac2d14c397a754e0bdfce020baa44f214", + "status": "spam", + "id": "0x56C0739989C54227F816559b4a7926096697B554" +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x580E933D90091b9cE380740E3a4A39c67eB85B4c/info.json b/blockchains/arbitrum/assets/0x580E933D90091b9cE380740E3a4A39c67eB85B4c/info.json new file mode 100644 index 0000000000000..64c06ffd1631b --- /dev/null +++ b/blockchains/arbitrum/assets/0x580E933D90091b9cE380740E3a4A39c67eB85B4c/info.json @@ -0,0 +1,25 @@ +{ + "name": "GameSwift", + "type": "ARBITRUM", + "symbol": "GSWIFT", + "decimals": 18, + "website": "https://gswift.community/", + "description": "GSWIFT is an omnitoken that can seamlessly be transferred between blockchains. Experience the true power of move $GSWIFT across multiple blockchains. With its game-changing range of utilities, $GSWIFT is setting new standards for Web3 gaming tokens.", + "explorer": "https://arbiscan.io/token/0x580e933d90091b9ce380740e3a4a39c67eb85b4c", + "status": "active", + "id": "0x580E933D90091b9cE380740E3a4A39c67eB85B4c", + "links": [ + { + "name": "x", + "url": "https://x.com/GameSwift_io" + }, + { + "name": "github", + "url": "https://github.com/gswiftcommunity" + }, + { + "name": "telegram", + "url": "https://t.me/gameswift_io" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x580E933D90091b9cE380740E3a4A39c67eB85B4c/logo.png b/blockchains/arbitrum/assets/0x580E933D90091b9cE380740E3a4A39c67eB85B4c/logo.png new file mode 100644 index 0000000000000..be5c8241d63d9 Binary files /dev/null and b/blockchains/arbitrum/assets/0x580E933D90091b9cE380740E3a4A39c67eB85B4c/logo.png differ diff --git a/blockchains/arbitrum/assets/0x589d35656641d6aB57A545F08cf473eCD9B6D5F7/info.json b/blockchains/arbitrum/assets/0x589d35656641d6aB57A545F08cf473eCD9B6D5F7/info.json new file mode 100644 index 0000000000000..03e9cb9a8890d --- /dev/null +++ b/blockchains/arbitrum/assets/0x589d35656641d6aB57A545F08cf473eCD9B6D5F7/info.json @@ -0,0 +1,37 @@ +{ + "name": "GYEN", + "website": "https://stablecoin.z.com/gyen/", + "description": "GYEN anchors its value to the price of the Japanese Yen. Redeemable and pegged 1-to-1 with fiat currency to virtually eliminate volatility, while still benefiting from the advantages of cryptocurrency, such as high-speed transaction and low costs, especially for cross-border payments", + "explorer": "https://arbiscan.io/token/0x589d35656641d6aB57A545F08cf473eCD9B6D5F7", + "type": "ARBITRUM", + "symbol": "GYEN", + "decimals": 6, + "status": "active", + "id": "0x589d35656641d6aB57A545F08cf473eCD9B6D5F7", + "links": [ + { + "name": "github", + "url": "https://github.com/trust-zcom/" + }, + { + "name": "x", + "url": "https://x.com/GMOTrust" + }, + { + "name": "medium", + "url": "https://gmotrust.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gyen/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/gyen" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCO7CNhdHYiJoBICgbo-yyiw/featured" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x589d35656641d6aB57A545F08cf473eCD9B6D5F7/logo.png b/blockchains/arbitrum/assets/0x589d35656641d6aB57A545F08cf473eCD9B6D5F7/logo.png new file mode 100644 index 0000000000000..b2b272f0bfb11 Binary files /dev/null and b/blockchains/arbitrum/assets/0x589d35656641d6aB57A545F08cf473eCD9B6D5F7/logo.png differ diff --git a/blockchains/arbitrum/assets/0x5AA7649fdbDa47De64A07aC81D64B682AF9C0724/info.json b/blockchains/arbitrum/assets/0x5AA7649fdbDa47De64A07aC81D64B682AF9C0724/info.json new file mode 100644 index 0000000000000..8dc2329b0fb74 --- /dev/null +++ b/blockchains/arbitrum/assets/0x5AA7649fdbDa47De64A07aC81D64B682AF9C0724/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Apple Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0x5AA7649fdbDa47De64A07aC81D64B682AF9C0724", + "type": "ARBITRUM", + "symbol": "WAAPLX", + "decimals": 18, + "status": "active", + "id": "0x5AA7649fdbDa47De64A07aC81D64B682AF9C0724", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-apple-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x5AA7649fdbDa47De64A07aC81D64B682AF9C0724/logo.png b/blockchains/arbitrum/assets/0x5AA7649fdbDa47De64A07aC81D64B682AF9C0724/logo.png new file mode 100644 index 0000000000000..98eba57ccd079 Binary files /dev/null and b/blockchains/arbitrum/assets/0x5AA7649fdbDa47De64A07aC81D64B682AF9C0724/logo.png differ diff --git a/blockchains/arbitrum/assets/0x5CC079963Fb70C0f987F65F539E3B61a6EBdf6Db/info.json b/blockchains/arbitrum/assets/0x5CC079963Fb70C0f987F65F539E3B61a6EBdf6Db/info.json new file mode 100644 index 0000000000000..36d211fbaae05 --- /dev/null +++ b/blockchains/arbitrum/assets/0x5CC079963Fb70C0f987F65F539E3B61a6EBdf6Db/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped AbbVie Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0x5CC079963Fb70C0f987F65F539E3B61a6EBdf6Db", + "type": "ARBITRUM", + "symbol": "WABBVX", + "decimals": 18, + "status": "active", + "id": "0x5CC079963Fb70C0f987F65F539E3B61a6EBdf6Db", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-abbvie-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x5CC079963Fb70C0f987F65F539E3B61a6EBdf6Db/logo.png b/blockchains/arbitrum/assets/0x5CC079963Fb70C0f987F65F539E3B61a6EBdf6Db/logo.png new file mode 100644 index 0000000000000..fdfa736946c32 Binary files /dev/null and b/blockchains/arbitrum/assets/0x5CC079963Fb70C0f987F65F539E3B61a6EBdf6Db/logo.png differ diff --git a/blockchains/arbitrum/assets/0x5D642505FE1a28897eb3BaBA665F454755D8daA2/info.json b/blockchains/arbitrum/assets/0x5D642505FE1a28897eb3BaBA665F454755D8daA2/info.json new file mode 100644 index 0000000000000..f66540d1343be --- /dev/null +++ b/blockchains/arbitrum/assets/0x5D642505FE1a28897eb3BaBA665F454755D8daA2/info.json @@ -0,0 +1,24 @@ +{ + "name": "AstraZeneca tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "AstraZeneca xStock (AZNx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. AZNx tracks the price of AstraZeneca PLC (the underlying). AZNx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of AstraZeneca PLC, whilst maintaining the benefits of blockchain technology. AstraZeneca is a British-Swedish biopharmaceutical company that focuses on research, development, and commercialization of prescription medicines.", + "explorer": "https://arbiscan.io/token/0x5D642505FE1a28897eb3BaBA665F454755D8daA2", + "type": "ARBITRUM", + "symbol": "AZNX", + "decimals": 18, + "status": "active", + "id": "0x5D642505FE1a28897eb3BaBA665F454755D8daA2", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/astrazeneca-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x5D642505FE1a28897eb3BaBA665F454755D8daA2/logo.png b/blockchains/arbitrum/assets/0x5D642505FE1a28897eb3BaBA665F454755D8daA2/logo.png new file mode 100644 index 0000000000000..d59462126c663 Binary files /dev/null and b/blockchains/arbitrum/assets/0x5D642505FE1a28897eb3BaBA665F454755D8daA2/logo.png differ diff --git a/blockchains/arbitrum/assets/0x5b32624f352d2FC6cC70889967A143ba1814f82b/info.json b/blockchains/arbitrum/assets/0x5b32624f352d2FC6cC70889967A143ba1814f82b/info.json new file mode 100644 index 0000000000000..76686149ff9a0 --- /dev/null +++ b/blockchains/arbitrum/assets/0x5b32624f352d2FC6cC70889967A143ba1814f82b/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Mastercard Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0x5b32624f352d2FC6cC70889967A143ba1814f82b", + "type": "ARBITRUM", + "symbol": "WMAX", + "decimals": 18, + "status": "active", + "id": "0x5b32624f352d2FC6cC70889967A143ba1814f82b", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-mastercard-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x5b32624f352d2FC6cC70889967A143ba1814f82b/logo.png b/blockchains/arbitrum/assets/0x5b32624f352d2FC6cC70889967A143ba1814f82b/logo.png new file mode 100644 index 0000000000000..63a3758af557e Binary files /dev/null and b/blockchains/arbitrum/assets/0x5b32624f352d2FC6cC70889967A143ba1814f82b/logo.png differ diff --git a/blockchains/arbitrum/assets/0x61A1ff55C5216b636a294A07D77C6F4Df10d3B56/info.json b/blockchains/arbitrum/assets/0x61A1ff55C5216b636a294A07D77C6F4Df10d3B56/info.json new file mode 100644 index 0000000000000..3e0acaea7e990 --- /dev/null +++ b/blockchains/arbitrum/assets/0x61A1ff55C5216b636a294A07D77C6F4Df10d3B56/info.json @@ -0,0 +1,21 @@ +{ + "name": "ApeX", + "type": "ARBITRUM", + "symbol": "APEX", + "decimals": 18, + "website": "https://apex.exchange/", + "description": "ApeX is a decentralized, non-custodial, permissionless, censorship-resistant perpetual derivative protocol that enables the introduction of perpetual swap markets for any token pairs.", + "explorer": "https://arbiscan.io/token/0x61a1ff55c5216b636a294a07d77c6f4df10d3b56", + "status": "active", + "id": "0x61A1ff55C5216b636a294A07D77C6F4Df10d3B56", + "links": [ + { + "name": "x", + "url": "https://x.com/OfficialApeXdex" + }, + { + "name": "telegram", + "url": "https://t.me/ApeXdex" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x61A1ff55C5216b636a294A07D77C6F4Df10d3B56/logo.png b/blockchains/arbitrum/assets/0x61A1ff55C5216b636a294A07D77C6F4Df10d3B56/logo.png new file mode 100644 index 0000000000000..188c34df3b190 Binary files /dev/null and b/blockchains/arbitrum/assets/0x61A1ff55C5216b636a294A07D77C6F4Df10d3B56/logo.png differ diff --git a/blockchains/arbitrum/assets/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B/info.json b/blockchains/arbitrum/assets/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B/info.json new file mode 100644 index 0000000000000..edfa179525667 --- /dev/null +++ b/blockchains/arbitrum/assets/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B/info.json @@ -0,0 +1,24 @@ +{ + "name": "Honeywell tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Honeywell xStock (HONx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. HONx tracks the price of Honeywell International Inc. (the underlying). HONx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Honeywell International Inc., whilst maintaining the benefits of blockchain technology. Honeywell International Inc. is an American technology and manufacturing company that operates in four core areas: Aerospace, Building Automation, Industrial Automation, and Energy and Sustainability Solutions.", + "explorer": "https://arbiscan.io/token/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B", + "type": "ARBITRUM", + "symbol": "HONX", + "decimals": 18, + "status": "active", + "id": "0x62a48560861B0b451654bFffdb5be6E47aa8ff1B", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/honeywell-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B/logo.png b/blockchains/arbitrum/assets/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B/logo.png new file mode 100644 index 0000000000000..2757f36e52107 Binary files /dev/null and b/blockchains/arbitrum/assets/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B/logo.png differ diff --git a/blockchains/arbitrum/assets/0x63Ad27614231767C8C489745B9145272De50D09b/info.json b/blockchains/arbitrum/assets/0x63Ad27614231767C8C489745B9145272De50D09b/info.json new file mode 100644 index 0000000000000..97885f90ddb28 --- /dev/null +++ b/blockchains/arbitrum/assets/0x63Ad27614231767C8C489745B9145272De50D09b/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Microsoft Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0x63Ad27614231767C8C489745B9145272De50D09b", + "type": "ARBITRUM", + "symbol": "WMSFTX", + "decimals": 18, + "status": "active", + "id": "0x63Ad27614231767C8C489745B9145272De50D09b", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-microsoft-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x63Ad27614231767C8C489745B9145272De50D09b/logo.png b/blockchains/arbitrum/assets/0x63Ad27614231767C8C489745B9145272De50D09b/logo.png new file mode 100644 index 0000000000000..a9a0af06aef55 Binary files /dev/null and b/blockchains/arbitrum/assets/0x63Ad27614231767C8C489745B9145272De50D09b/logo.png differ diff --git a/blockchains/arbitrum/assets/0x6491c05A82219b8D1479057361ff1654749b876b/info.json b/blockchains/arbitrum/assets/0x6491c05A82219b8D1479057361ff1654749b876b/info.json new file mode 100644 index 0000000000000..66d4c7c95867b --- /dev/null +++ b/blockchains/arbitrum/assets/0x6491c05A82219b8D1479057361ff1654749b876b/info.json @@ -0,0 +1,17 @@ +{ + "name": "USDS", + "symbol": "USDS", + "website": "https://sky.money/", + "description": "Cryptocurrency, also referred to as “crypto,” is a type of digital currency that uses cryptography to help improve the security and overall user control of associated transactions", + "explorer": "https://arbiscan.io/token/0x6491c05A82219b8D1479057361ff1654749b876b", + "decimals": 18, + "status": "active", + "id": "0x6491c05A82219b8D1479057361ff1654749b876b", + "type": "ARBITRUM", + "links": [ + { + "name": "twitter", + "url": "https://x.com/SkyEcosystem" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x6491c05A82219b8D1479057361ff1654749b876b/logo.png b/blockchains/arbitrum/assets/0x6491c05A82219b8D1479057361ff1654749b876b/logo.png new file mode 100644 index 0000000000000..e3647bea821d7 Binary files /dev/null and b/blockchains/arbitrum/assets/0x6491c05A82219b8D1479057361ff1654749b876b/logo.png differ diff --git a/blockchains/arbitrum/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json b/blockchains/arbitrum/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json new file mode 100644 index 0000000000000..96a41da6cc11e --- /dev/null +++ b/blockchains/arbitrum/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json @@ -0,0 +1,21 @@ +{ + "name": "LayerZero", + "website": "https://layerzero.network/", + "description": "LayerZero is a technology that enables applications to move data across blockchains, uniquely supporting censorship-resistant messages and permissionless development through immutable smart contracts", + "explorer": "https://arbiscan.io/token/0x6985884c4392d348587b19cb9eaaf157f13271cd", + "type": "ARBITRUM", + "symbol": "ZRO", + "decimals": 18, + "status": "active", + "id": "0x6985884C4392D348587B19cb9eAAf157F13271cd", + "links": [ + { + "name": "x", + "url": "https://x.com/LayerZero_Labs" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/VcqxYkStIDsyN2Rh" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png b/blockchains/arbitrum/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png new file mode 100644 index 0000000000000..203a846cfdf6b Binary files /dev/null and b/blockchains/arbitrum/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png differ diff --git a/blockchains/arbitrum/assets/0x69Eb4FA4a2fbd498C257C57Ea8b7655a2559A581/info.json b/blockchains/arbitrum/assets/0x69Eb4FA4a2fbd498C257C57Ea8b7655a2559A581/info.json new file mode 100644 index 0000000000000..24bfcd5bd26b2 --- /dev/null +++ b/blockchains/arbitrum/assets/0x69Eb4FA4a2fbd498C257C57Ea8b7655a2559A581/info.json @@ -0,0 +1,29 @@ +{ + "name": "DODO", + "website": "https://dodoex.io/", + "description": "DODO is a liquidity protocol powered by the Proactive Market Maker (PMM) algorithm and built for capital efficiency.", + "explorer": "https://arbiscan.io/token/0x69Eb4FA4a2fbd498C257C57Ea8b7655a2559A581", + "type": "ARBITRUM", + "symbol": "DODO", + "decimals": 18, + "status": "active", + "id": "0x69Eb4FA4a2fbd498C257C57Ea8b7655a2559A581", + "links": [ + { + "name": "github", + "url": "https://github.com/DODOEX/" + }, + { + "name": "x", + "url": "https://x.com/DODO" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/DodoEx/" + }, + { + "name": "medium", + "url": "https://medium.com/dodoex" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x69Eb4FA4a2fbd498C257C57Ea8b7655a2559A581/logo.png b/blockchains/arbitrum/assets/0x69Eb4FA4a2fbd498C257C57Ea8b7655a2559A581/logo.png new file mode 100644 index 0000000000000..3e5c749672d58 Binary files /dev/null and b/blockchains/arbitrum/assets/0x69Eb4FA4a2fbd498C257C57Ea8b7655a2559A581/logo.png differ diff --git a/blockchains/arbitrum/assets/0x6A2a68Ca7FC793D8CEa36326a6Ec1eF7AC3D9742/info.json b/blockchains/arbitrum/assets/0x6A2a68Ca7FC793D8CEa36326a6Ec1eF7AC3D9742/info.json new file mode 100644 index 0000000000000..51dc645bd4fa7 --- /dev/null +++ b/blockchains/arbitrum/assets/0x6A2a68Ca7FC793D8CEa36326a6Ec1eF7AC3D9742/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Intel Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0x6A2a68Ca7FC793D8CEa36326a6Ec1eF7AC3D9742", + "type": "ARBITRUM", + "symbol": "WINTCX", + "decimals": 18, + "status": "active", + "id": "0x6A2a68Ca7FC793D8CEa36326a6Ec1eF7AC3D9742", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-intel-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x6A2a68Ca7FC793D8CEa36326a6Ec1eF7AC3D9742/logo.png b/blockchains/arbitrum/assets/0x6A2a68Ca7FC793D8CEa36326a6Ec1eF7AC3D9742/logo.png new file mode 100644 index 0000000000000..67c369c226a25 Binary files /dev/null and b/blockchains/arbitrum/assets/0x6A2a68Ca7FC793D8CEa36326a6Ec1eF7AC3D9742/logo.png differ diff --git a/blockchains/arbitrum/assets/0x6C2C06790b3E3E3c38e12Ee22F8183b37a13EE55/info.json b/blockchains/arbitrum/assets/0x6C2C06790b3E3E3c38e12Ee22F8183b37a13EE55/info.json index b4522687dc38d..91af1fc3648ea 100644 --- a/blockchains/arbitrum/assets/0x6C2C06790b3E3E3c38e12Ee22F8183b37a13EE55/info.json +++ b/blockchains/arbitrum/assets/0x6C2C06790b3E3E3c38e12Ee22F8183b37a13EE55/info.json @@ -10,8 +10,8 @@ "id": "0x6C2C06790b3E3E3c38e12Ee22F8183b37a13EE55", "links": [ { - "name": "twitter", - "url": "https://twitter.com/dopex_io" + "name": "x", + "url": "https://x.com/dopex_io" }, { "name": "github", diff --git a/blockchains/arbitrum/assets/0x6a668332825450ACD2e449372057d31b3de16a1E/info.json b/blockchains/arbitrum/assets/0x6a668332825450ACD2e449372057d31b3de16a1E/info.json new file mode 100644 index 0000000000000..38f01a51935b7 --- /dev/null +++ b/blockchains/arbitrum/assets/0x6a668332825450ACD2e449372057d31b3de16a1E/info.json @@ -0,0 +1,15 @@ +{ + "name": "Core MSCI Emerging Markets xStock", + "type": "ARBITRUM", + "symbol": "IEMGx", + "decimals": 18, + "description": "Core MSCI Emerging Markets xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://arbiscan.io/token/0x6a668332825450ACD2e449372057d31b3de16a1E", + "status": "active", + "id": "0x6a668332825450ACD2e449372057d31b3de16a1E", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x6a668332825450ACD2e449372057d31b3de16a1E/logo.png b/blockchains/arbitrum/assets/0x6a668332825450ACD2e449372057d31b3de16a1E/logo.png new file mode 100644 index 0000000000000..857fe69020c3c Binary files /dev/null and b/blockchains/arbitrum/assets/0x6a668332825450ACD2e449372057d31b3de16a1E/logo.png differ diff --git a/blockchains/arbitrum/assets/0x6a9896837021EA3eD83F623F655C119c54abE02c/info.json b/blockchains/arbitrum/assets/0x6a9896837021EA3eD83F623F655C119c54abE02c/info.json new file mode 100644 index 0000000000000..bc54ccd1d0577 --- /dev/null +++ b/blockchains/arbitrum/assets/0x6a9896837021EA3eD83F623F655C119c54abE02c/info.json @@ -0,0 +1,21 @@ +{ + "name": "ChainBounty", + "symbol": "BOUNTY", + "type": "ARBITRUM", + "decimals": 18, + "description": "ChainBounty is a Web3 platform where cybercrime victims post bounties to crowdsource investigations.It uses 'Bounty' tokens for transactions, incentivizing private investigators to resolve cases. This decentralized approach offers a faster, transparent solution for online crimes", + "website": "https://chainbounty.io", + "explorer": "https://arbiscan.io/token/0x6a9896837021EA3eD83F623F655C119c54abE02c", + "status": "active", + "id": "0x6a9896837021EA3eD83F623F655C119c54abE02c", + "links": [ + { + "name": "x", + "url": "https://x.com/ChainBountyX?ref_src=twsrc%5Etfw%7Ctwcamp%5Eembeddedtimeline%7Ctwterm%5Escreen-name%3AChainBountyX%7Ctwcon%5Es2" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sentinel-protocol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x6a9896837021EA3eD83F623F655C119c54abE02c/logo.png b/blockchains/arbitrum/assets/0x6a9896837021EA3eD83F623F655C119c54abE02c/logo.png new file mode 100644 index 0000000000000..ffecf41492916 Binary files /dev/null and b/blockchains/arbitrum/assets/0x6a9896837021EA3eD83F623F655C119c54abE02c/logo.png differ diff --git a/blockchains/arbitrum/assets/0x6c7AD1886a6Da37766fED060d5F08fF43285DcdD/info.json b/blockchains/arbitrum/assets/0x6c7AD1886a6Da37766fED060d5F08fF43285DcdD/info.json new file mode 100644 index 0000000000000..0badea6d2c31b --- /dev/null +++ b/blockchains/arbitrum/assets/0x6c7AD1886a6Da37766fED060d5F08fF43285DcdD/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Danaher Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0x6c7AD1886a6Da37766fED060d5F08fF43285DcdD", + "type": "ARBITRUM", + "symbol": "WDHRX", + "decimals": 18, + "status": "active", + "id": "0x6c7AD1886a6Da37766fED060d5F08fF43285DcdD", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-danaher-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x6c7AD1886a6Da37766fED060d5F08fF43285DcdD/logo.png b/blockchains/arbitrum/assets/0x6c7AD1886a6Da37766fED060d5F08fF43285DcdD/logo.png new file mode 100644 index 0000000000000..585138b8354c5 Binary files /dev/null and b/blockchains/arbitrum/assets/0x6c7AD1886a6Da37766fED060d5F08fF43285DcdD/logo.png differ diff --git a/blockchains/arbitrum/assets/0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2/info.json b/blockchains/arbitrum/assets/0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2/info.json new file mode 100644 index 0000000000000..b5d1b7207d436 --- /dev/null +++ b/blockchains/arbitrum/assets/0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2/info.json @@ -0,0 +1,24 @@ +{ + "name": "Palantir tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Oracle xStock (ORCLx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. ORCLx tracks the price of Oracle Corporation (the underlying). ORCLx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Oracle Corporation, whilst maintaining the benefits of blockchain technology. Oracle Corporation is a large, publicly-held multinational company headquartered in Austin, Texas, offering enterprise applications and cloud infrastructure.", + "explorer": "https://arbiscan.io/token/0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2", + "type": "ARBITRUM", + "symbol": "PLTRX", + "decimals": 18, + "status": "active", + "id": "0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/palantir-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2/logo.png b/blockchains/arbitrum/assets/0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2/logo.png new file mode 100644 index 0000000000000..da0a1030f73b4 Binary files /dev/null and b/blockchains/arbitrum/assets/0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2/logo.png differ diff --git a/blockchains/arbitrum/assets/0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C/info.json b/blockchains/arbitrum/assets/0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C/info.json new file mode 100644 index 0000000000000..5e2655834321b --- /dev/null +++ b/blockchains/arbitrum/assets/0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C/info.json @@ -0,0 +1,15 @@ +{ + "name": "Vanguard Total World xStock", + "type": "ARBITRUM", + "symbol": "VTx", + "decimals": 18, + "description": "Vanguard Total World xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://arbiscan.io/token/0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C", + "status": "active", + "id": "0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C/logo.png b/blockchains/arbitrum/assets/0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C/logo.png new file mode 100644 index 0000000000000..5968d83be9311 Binary files /dev/null and b/blockchains/arbitrum/assets/0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C/logo.png differ diff --git a/blockchains/arbitrum/assets/0x6dAF586B7370B14163171544fca24AbcC0862ac5/info.json b/blockchains/arbitrum/assets/0x6dAF586B7370B14163171544fca24AbcC0862ac5/info.json new file mode 100644 index 0000000000000..5a170dabd27ad --- /dev/null +++ b/blockchains/arbitrum/assets/0x6dAF586B7370B14163171544fca24AbcC0862ac5/info.json @@ -0,0 +1,21 @@ +{ + "name": "BPET", + "website": "https://www.xpet.tech/", + "description": "Raising your virtual pet on x, hunting chest and farming $BPET token.", + "explorer": "https://arbiscan.io/token/0x6dAF586B7370B14163171544fca24AbcC0862ac5", + "type": "ARBITRUM", + "symbol": "BPET", + "decimals": 18, + "status": "active", + "id": "0x6dAF586B7370B14163171544fca24AbcC0862ac5", + "links": [ + { + "name": "x", + "url": "https://x.com/xpet_tech" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bpet/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x6dAF586B7370B14163171544fca24AbcC0862ac5/logo.png b/blockchains/arbitrum/assets/0x6dAF586B7370B14163171544fca24AbcC0862ac5/logo.png new file mode 100644 index 0000000000000..7bf6c55ace64c Binary files /dev/null and b/blockchains/arbitrum/assets/0x6dAF586B7370B14163171544fca24AbcC0862ac5/logo.png differ diff --git a/blockchains/arbitrum/assets/0x6eEd78e2780d82BE4E37d9937C27Bcf32C8DA072/info.json b/blockchains/arbitrum/assets/0x6eEd78e2780d82BE4E37d9937C27Bcf32C8DA072/info.json new file mode 100644 index 0000000000000..905c215246df5 --- /dev/null +++ b/blockchains/arbitrum/assets/0x6eEd78e2780d82BE4E37d9937C27Bcf32C8DA072/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Goldman Sachs Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0x6eEd78e2780d82BE4E37d9937C27Bcf32C8DA072", + "type": "ARBITRUM", + "symbol": "WGSX", + "decimals": 18, + "status": "active", + "id": "0x6eEd78e2780d82BE4E37d9937C27Bcf32C8DA072", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-goldman-sachs-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x6eEd78e2780d82BE4E37d9937C27Bcf32C8DA072/logo.png b/blockchains/arbitrum/assets/0x6eEd78e2780d82BE4E37d9937C27Bcf32C8DA072/logo.png new file mode 100644 index 0000000000000..45d47b8b5f1ef Binary files /dev/null and b/blockchains/arbitrum/assets/0x6eEd78e2780d82BE4E37d9937C27Bcf32C8DA072/logo.png differ diff --git a/blockchains/arbitrum/assets/0x6fD58f5a2F3468e35fEb098b5F59F04157002407/info.json b/blockchains/arbitrum/assets/0x6fD58f5a2F3468e35fEb098b5F59F04157002407/info.json new file mode 100644 index 0000000000000..3e090c5dc4d25 --- /dev/null +++ b/blockchains/arbitrum/assets/0x6fD58f5a2F3468e35fEb098b5F59F04157002407/info.json @@ -0,0 +1,21 @@ +{ + "name": "poor guy", + "website": "https://www.pogai.org/", + "description": "A meme token.", + "explorer": "https://arbiscan.io/token/0x6fd58f5a2f3468e35feb098b5f59f04157002407", + "type": "ARBITRUM", + "symbol": "pogai", + "decimals": 18, + "status": "active", + "id": "0x6fD58f5a2F3468e35fEb098b5F59F04157002407", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pogai/" + }, + { + "name": "x", + "url": "https://x.com/_pogai_" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x6fD58f5a2F3468e35fEb098b5F59F04157002407/logo.png b/blockchains/arbitrum/assets/0x6fD58f5a2F3468e35fEb098b5F59F04157002407/logo.png new file mode 100644 index 0000000000000..64519f76c3cde Binary files /dev/null and b/blockchains/arbitrum/assets/0x6fD58f5a2F3468e35fEb098b5F59F04157002407/logo.png differ diff --git a/blockchains/arbitrum/assets/0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9/info.json b/blockchains/arbitrum/assets/0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9/info.json new file mode 100644 index 0000000000000..7afbaa1934091 --- /dev/null +++ b/blockchains/arbitrum/assets/0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9/info.json @@ -0,0 +1,24 @@ +{ + "name": "Home Depot tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Home Depot xStock (HDx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. HDx tracks the price of The Home Depot, Inc. (the underlying). HDx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of The Home Depot, Inc., whilst maintaining the benefits of blockchain technology. The Home Depot is a publicly traded home improvement retailer that operates over 2,300 stores across the United States, Canada, and Mexico.", + "explorer": "https://arbiscan.io/token/0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9", + "type": "ARBITRUM", + "symbol": "HDX", + "decimals": 18, + "status": "active", + "id": "0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/home-depot-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9/logo.png b/blockchains/arbitrum/assets/0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9/logo.png new file mode 100644 index 0000000000000..a49ae723a2836 Binary files /dev/null and b/blockchains/arbitrum/assets/0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9/logo.png differ diff --git a/blockchains/arbitrum/assets/0x7AEfc9965699fBea943e03264d96e50CD4A97b21/info.json b/blockchains/arbitrum/assets/0x7AEfc9965699fBea943e03264d96e50CD4A97b21/info.json new file mode 100644 index 0000000000000..18ac5c9933453 --- /dev/null +++ b/blockchains/arbitrum/assets/0x7AEfc9965699fBea943e03264d96e50CD4A97b21/info.json @@ -0,0 +1,24 @@ +{ + "name": "Walmart tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Walmart xStock (WMTx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. WMTx tracks the price of Walmart Inc. (the underlying). WMTx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Walmart Inc., whilst maintaining the benefits of blockchain technology. Walmart Inc. is a multinational retail corporation operating a global network of discount department stores, supercenters, and online platforms.", + "explorer": "https://arbiscan.io/token/0x7AEfc9965699fBea943e03264d96e50CD4A97b21", + "type": "ARBITRUM", + "symbol": "WMTX", + "decimals": 18, + "status": "active", + "id": "0x7AEfc9965699fBea943e03264d96e50CD4A97b21", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/walmart-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x7AEfc9965699fBea943e03264d96e50CD4A97b21/logo.png b/blockchains/arbitrum/assets/0x7AEfc9965699fBea943e03264d96e50CD4A97b21/logo.png new file mode 100644 index 0000000000000..ef21853af9684 Binary files /dev/null and b/blockchains/arbitrum/assets/0x7AEfc9965699fBea943e03264d96e50CD4A97b21/logo.png differ diff --git a/blockchains/arbitrum/assets/0x7Be5Dd337CC6cE3e474F64E2A92A566445290864/info.json b/blockchains/arbitrum/assets/0x7Be5Dd337CC6cE3e474F64E2A92A566445290864/info.json new file mode 100644 index 0000000000000..e16783785764f --- /dev/null +++ b/blockchains/arbitrum/assets/0x7Be5Dd337CC6cE3e474F64E2A92A566445290864/info.json @@ -0,0 +1,52 @@ +{ + "name": "Openleverage Token V2", + "website": "https://openleverage.finance/", + "description": "OpenLeverage is a permissionless money market protocol enabling decentralized lending, borrowing, and margin trading across a diverse range of cryptocurrency pairs, fostering an accessible and efficient DeFi ecosystem.", + "explorer": "https://arbiscan.io/token/0x7Be5Dd337CC6cE3e474F64E2A92A566445290864", + "type": "ARBITRUM", + "symbol": "OLE", + "decimals": 18, + "status": "active", + "id": "0x7Be5Dd337CC6cE3e474F64E2A92A566445290864", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/OpenLeverage" + }, + { + "name": "discord", + "url": "https://discord.com/invite/openleverage" + }, + { + "name": "medium", + "url": "https://openleverage.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/openleverage/" + }, + { + "name": "docs", + "url": "https://docs.openleverage.finance/main/" + }, + { + "name": "telegram", + "url": "https://t.me/openleverageofficial" + }, + { + "name": "github", + "url": "https://github.com/OpenLeverageDev/openleverage-contracts" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/openleverage" + }, + { + "name": "youtube", + "url": "https://youtube.com/@openleverageprotocol9047" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x7Be5Dd337CC6cE3e474F64E2A92A566445290864/logo.png b/blockchains/arbitrum/assets/0x7Be5Dd337CC6cE3e474F64E2A92A566445290864/logo.png new file mode 100644 index 0000000000000..c43b83973316f Binary files /dev/null and b/blockchains/arbitrum/assets/0x7Be5Dd337CC6cE3e474F64E2A92A566445290864/logo.png differ diff --git a/blockchains/arbitrum/assets/0x7C2e00e6b0d519a8C492d20c2524342A4398FF34/info.json b/blockchains/arbitrum/assets/0x7C2e00e6b0d519a8C492d20c2524342A4398FF34/info.json new file mode 100644 index 0000000000000..9e0bf66e86f29 --- /dev/null +++ b/blockchains/arbitrum/assets/0x7C2e00e6b0d519a8C492d20c2524342A4398FF34/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Philip Morris Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0x7C2e00e6b0d519a8C492d20c2524342A4398FF34", + "type": "ARBITRUM", + "symbol": "WPMX", + "decimals": 18, + "status": "active", + "id": "0x7C2e00e6b0d519a8C492d20c2524342A4398FF34", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-philip-morris-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x7C2e00e6b0d519a8C492d20c2524342A4398FF34/logo.png b/blockchains/arbitrum/assets/0x7C2e00e6b0d519a8C492d20c2524342A4398FF34/logo.png new file mode 100644 index 0000000000000..8b13cfa72ae85 Binary files /dev/null and b/blockchains/arbitrum/assets/0x7C2e00e6b0d519a8C492d20c2524342A4398FF34/logo.png differ diff --git a/blockchains/arbitrum/assets/0x7F850b0aB1988Dd17B69aC564c1E2857949e4dEe/info.json b/blockchains/arbitrum/assets/0x7F850b0aB1988Dd17B69aC564c1E2857949e4dEe/info.json new file mode 100644 index 0000000000000..7ee7fafa7d308 --- /dev/null +++ b/blockchains/arbitrum/assets/0x7F850b0aB1988Dd17B69aC564c1E2857949e4dEe/info.json @@ -0,0 +1,17 @@ +{ + "name": "Lift Dollar", + "type": "ARBITRUM", + "symbol": "USDL", + "decimals": 18, + "website": "https://liftdollar.com/", + "description": "Lift Dollar (USDL) is a US dollar-backed stablecoin that distributes yield from its cash and cash equivalent reserves to eligible wallets holding it every day.", + "explorer": "https://arbiscan.io/token/0x7f850b0ab1988dd17b69ac564c1e2857949e4dee", + "status": "active", + "id": "0x7F850b0aB1988Dd17B69aC564c1E2857949e4dEe", + "links": [ + { + "name": "x", + "url": "https://x.com/LiftDollar_USDL" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x7F850b0aB1988Dd17B69aC564c1E2857949e4dEe/logo.png b/blockchains/arbitrum/assets/0x7F850b0aB1988Dd17B69aC564c1E2857949e4dEe/logo.png new file mode 100644 index 0000000000000..d56fc9d8aa9e2 Binary files /dev/null and b/blockchains/arbitrum/assets/0x7F850b0aB1988Dd17B69aC564c1E2857949e4dEe/logo.png differ diff --git a/blockchains/arbitrum/assets/0x7F88888b7A81546a036554Aa67a289Ea428b20d4/info.json b/blockchains/arbitrum/assets/0x7F88888b7A81546a036554Aa67a289Ea428b20d4/info.json new file mode 100644 index 0000000000000..0f02086135e5f --- /dev/null +++ b/blockchains/arbitrum/assets/0x7F88888b7A81546a036554Aa67a289Ea428b20d4/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Chevron Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0x7F88888b7A81546a036554Aa67a289Ea428b20d4", + "type": "ARBITRUM", + "symbol": "WCVXX", + "decimals": 18, + "status": "active", + "id": "0x7F88888b7A81546a036554Aa67a289Ea428b20d4", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-chevron-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x7F88888b7A81546a036554Aa67a289Ea428b20d4/logo.png b/blockchains/arbitrum/assets/0x7F88888b7A81546a036554Aa67a289Ea428b20d4/logo.png new file mode 100644 index 0000000000000..8a2f11bb46849 Binary files /dev/null and b/blockchains/arbitrum/assets/0x7F88888b7A81546a036554Aa67a289Ea428b20d4/logo.png differ diff --git a/blockchains/arbitrum/assets/0x80A77a372c1e12AcCdA84299492f404902E2DA67/info.json b/blockchains/arbitrum/assets/0x80A77a372c1e12AcCdA84299492f404902E2DA67/info.json new file mode 100644 index 0000000000000..bad4339cff1a7 --- /dev/null +++ b/blockchains/arbitrum/assets/0x80A77a372c1e12AcCdA84299492f404902E2DA67/info.json @@ -0,0 +1,24 @@ +{ + "name": "McDonald's tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "McDonald's tokenized stock (xStock) (MCDX) is a cryptocurrency and operates on the Solana platform. McDonald's tokenized stock (xStock) has a current supply of 5,499.97979496 with 2,463.12389797 in circulation. The last known price of McDonald's tokenized stock (xStock) is 302.84776149 USD and is down -0.87 over the last 24 hours. It is currently trading on 17 active market(s) with $4,567,912.24 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/mcdonalds-xstock.", + "explorer": "https://arbiscan.io/token/0x80A77a372c1e12AcCdA84299492f404902E2DA67", + "type": "ARBITRUM", + "symbol": "MCDX", + "decimals": 18, + "status": "active", + "id": "0x80A77a372c1e12AcCdA84299492f404902E2DA67", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mcdonald-s-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x80A77a372c1e12AcCdA84299492f404902E2DA67/logo.png b/blockchains/arbitrum/assets/0x80A77a372c1e12AcCdA84299492f404902E2DA67/logo.png new file mode 100644 index 0000000000000..a3cdfb7fa9fe0 Binary files /dev/null and b/blockchains/arbitrum/assets/0x80A77a372c1e12AcCdA84299492f404902E2DA67/logo.png differ diff --git a/blockchains/arbitrum/assets/0x82248D53De2B7608cAF53978A8E8C238DC42403a/info.json b/blockchains/arbitrum/assets/0x82248D53De2B7608cAF53978A8E8C238DC42403a/info.json new file mode 100644 index 0000000000000..87c3358c367be --- /dev/null +++ b/blockchains/arbitrum/assets/0x82248D53De2B7608cAF53978A8E8C238DC42403a/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT Gold USD", + "type": "ARBITRUM", + "symbol": "HONEYPOT USDG", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://arbiscan.io/token/0x82248D53De2B7608cAF53978A8E8C238DC42403a", + "explorer": "https://arbiscan.io/token/0x82248D53De2B7608cAF53978A8E8C238DC42403a", + "status": "spam", + "id": "0x82248D53De2B7608cAF53978A8E8C238DC42403a" +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x82e3A8F066a6989666b031d916c43672085b1582/info.json b/blockchains/arbitrum/assets/0x82e3A8F066a6989666b031d916c43672085b1582/info.json index 793182f27e0d4..01b7d7e8a2261 100644 --- a/blockchains/arbitrum/assets/0x82e3A8F066a6989666b031d916c43672085b1582/info.json +++ b/blockchains/arbitrum/assets/0x82e3A8F066a6989666b031d916c43672085b1582/info.json @@ -1,5 +1,5 @@ { - "name": "yearn.finance", + "name": "Yearn", "website": "https://yearn.finance/", "description": "YFI is the governance token for Yearn.Finance, a site that performs a variety of functions for DeFi users, moving their assets in and out of different liquidity pools in order to find the best yields.", "explorer": "https://arbiscan.io/token/0x82e3A8F066a6989666b031d916c43672085b1582", @@ -19,8 +19,8 @@ "url": "https://github.com/iearn-finance" }, { - "name": "twitter", - "url": "https://twitter.com/iearnfinance" + "name": "x", + "url": "https://x.com/iearnfinance" }, { "name": "blog", diff --git a/blockchains/arbitrum/assets/0x847503FbF003cE8B005546Aa3c03B80b7C2F9771/info.json b/blockchains/arbitrum/assets/0x847503FbF003cE8B005546Aa3c03B80b7C2F9771/info.json new file mode 100644 index 0000000000000..1480d8e704950 --- /dev/null +++ b/blockchains/arbitrum/assets/0x847503FbF003cE8B005546Aa3c03B80b7C2F9771/info.json @@ -0,0 +1,25 @@ +{ + "name": "Byte", + "type": "ARBITRUM", + "symbol": "BYTE", + "decimals": 9, + "website": "https://www.bytedog.ai/", + "description": "Byte ($BYTE) is a novel ERC meme token that creatively intertwines the worlds of cryptocurrency and popular culture. Inspired by Elon Musk's announcement of naming his dog 'Byte' in reference to his Grok AI project.", + "explorer": "https://arbiscan.io/token/0x580e933d90091b9ce380740e3a4a39c67eb85b4c", + "status": "active", + "id": "0x847503FbF003cE8B005546Aa3c03B80b7C2F9771", + "links": [ + { + "name": "x", + "url": "https://x.com/Byte_Erc20" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/byte/" + }, + { + "name": "telegram", + "url": "https://t.me/Byte_ERC20" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x847503FbF003cE8B005546Aa3c03B80b7C2F9771/logo.png b/blockchains/arbitrum/assets/0x847503FbF003cE8B005546Aa3c03B80b7C2F9771/logo.png new file mode 100644 index 0000000000000..637961cf78376 Binary files /dev/null and b/blockchains/arbitrum/assets/0x847503FbF003cE8B005546Aa3c03B80b7C2F9771/logo.png differ diff --git a/blockchains/arbitrum/assets/0x84F5c2cFba754E76DD5aE4fB369CfC920425E12b/info.json b/blockchains/arbitrum/assets/0x84F5c2cFba754E76DD5aE4fB369CfC920425E12b/info.json new file mode 100644 index 0000000000000..601042fd43cc1 --- /dev/null +++ b/blockchains/arbitrum/assets/0x84F5c2cFba754E76DD5aE4fB369CfC920425E12b/info.json @@ -0,0 +1,21 @@ +{ + "name": "Cryptex", + "symbol": "CTX", + "type": "ARBITRUM", + "decimals": 18, + "description": "CTX is a governance token that powers and secures the Cryptex.Finance TCAP protocol.", + "website": "https://cryptex.finance/", + "explorer": "https://arbiscan.io/token/0x84f5c2cfba754e76dd5ae4fb369cfc920425e12b", + "status": "active", + "id": "0x84F5c2cFba754E76DD5aE4fB369CfC920425E12b", + "links": [ + { + "name": "x", + "url": "https://x.com/cryptexfinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cryptex-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x84F5c2cFba754E76DD5aE4fB369CfC920425E12b/logo.png b/blockchains/arbitrum/assets/0x84F5c2cFba754E76DD5aE4fB369CfC920425E12b/logo.png new file mode 100644 index 0000000000000..5cd9068d0044d Binary files /dev/null and b/blockchains/arbitrum/assets/0x84F5c2cFba754E76DD5aE4fB369CfC920425E12b/logo.png differ diff --git a/blockchains/arbitrum/assets/0x87AAfFdF26c6885f6010219208D5B161ec7609c0/info.json b/blockchains/arbitrum/assets/0x87AAfFdF26c6885f6010219208D5B161ec7609c0/info.json new file mode 100644 index 0000000000000..d50cd4e1db94e --- /dev/null +++ b/blockchains/arbitrum/assets/0x87AAfFdF26c6885f6010219208D5B161ec7609c0/info.json @@ -0,0 +1,25 @@ +{ + "name": "Equation", + "website": "https://equation.org/", + "description": "Equation is a decentralized perpetual protocol built on Arbitrum.", + "explorer": "https://arbiscan.io/token/0x87AAfFdF26c6885f6010219208D5B161ec7609c0", + "type": "ARBITRUM", + "symbol": "EQU", + "decimals": 18, + "status": "active", + "id": "0x87AAfFdF26c6885f6010219208D5B161ec7609c0", + "links": [ + { + "name": "github", + "url": "https://github.com/EquationDAO" + }, + { + "name": "x", + "url": "https://x.com/EquationDAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/equation/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x87AAfFdF26c6885f6010219208D5B161ec7609c0/logo.png b/blockchains/arbitrum/assets/0x87AAfFdF26c6885f6010219208D5B161ec7609c0/logo.png new file mode 100644 index 0000000000000..64a8d40c3c810 Binary files /dev/null and b/blockchains/arbitrum/assets/0x87AAfFdF26c6885f6010219208D5B161ec7609c0/logo.png differ diff --git a/blockchains/arbitrum/assets/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e/info.json b/blockchains/arbitrum/assets/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e/info.json new file mode 100644 index 0000000000000..81d0867451eff --- /dev/null +++ b/blockchains/arbitrum/assets/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e/info.json @@ -0,0 +1,24 @@ +{ + "name": "Abbott tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Abbott xStock (ABTx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. ABTx tracks the price of Abbott Laboratories (the underlying). ABTx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Abbott Laboratories, whilst maintaining the benefits of blockchain technology. Key Benefits Abbott is a global healthcare company focused on developing and delivering life-changing technologies in areas like diagnostics, medical devices, nutritional products, and branded generic pharmaceuticals.", + "explorer": "https://arbiscan.io/token/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e", + "type": "ARBITRUM", + "symbol": "ABTX", + "decimals": 18, + "status": "active", + "id": "0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abbott-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e/logo.png b/blockchains/arbitrum/assets/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e/logo.png new file mode 100644 index 0000000000000..c82cd60e9df36 Binary files /dev/null and b/blockchains/arbitrum/assets/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e/logo.png differ diff --git a/blockchains/arbitrum/assets/0x89EA0284308dEEF33a22abd7ea33888b4349108C/info.json b/blockchains/arbitrum/assets/0x89EA0284308dEEF33a22abd7ea33888b4349108C/info.json new file mode 100644 index 0000000000000..d0692655d4e3e --- /dev/null +++ b/blockchains/arbitrum/assets/0x89EA0284308dEEF33a22abd7ea33888b4349108C/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Thermo Fisher Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0x89EA0284308dEEF33a22abd7ea33888b4349108C", + "type": "ARBITRUM", + "symbol": "WTMOX", + "decimals": 18, + "status": "active", + "id": "0x89EA0284308dEEF33a22abd7ea33888b4349108C", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-thermo-fisher-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x89EA0284308dEEF33a22abd7ea33888b4349108C/logo.png b/blockchains/arbitrum/assets/0x89EA0284308dEEF33a22abd7ea33888b4349108C/logo.png new file mode 100644 index 0000000000000..5028dbfcc40c7 Binary files /dev/null and b/blockchains/arbitrum/assets/0x89EA0284308dEEF33a22abd7ea33888b4349108C/logo.png differ diff --git a/blockchains/arbitrum/assets/0x8B0E6f19Ee57089F7649A455D89D7bC6314D04e8/info.json b/blockchains/arbitrum/assets/0x8B0E6f19Ee57089F7649A455D89D7bC6314D04e8/info.json new file mode 100644 index 0000000000000..730fcd473fb0d --- /dev/null +++ b/blockchains/arbitrum/assets/0x8B0E6f19Ee57089F7649A455D89D7bC6314D04e8/info.json @@ -0,0 +1,21 @@ +{ + "name": "DMT", + "type": "ARBITRUM", + "symbol": "DMT", + "decimals": 18, + "website": "https://sankodreammachine.net/", + "description": "Arbitrum L3 Appchain Staking Powered Gaming Console Play To Win Play To Burn 1,000,000 Tokens Hard Cap ©. Sanko Dream Machine, Only Powered By $DMT.", + "explorer": "https://arbiscan.io/token/0x8B0E6f19Ee57089F7649A455D89D7bC6314D04e8", + "status": "active", + "id": "0x8B0E6f19Ee57089F7649A455D89D7bC6314D04e8", + "links": [ + { + "name": "x", + "url": "https://x.com/SankoGameCorp" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sanko-game-corp/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x8B0E6f19Ee57089F7649A455D89D7bC6314D04e8/logo.png b/blockchains/arbitrum/assets/0x8B0E6f19Ee57089F7649A455D89D7bC6314D04e8/logo.png new file mode 100644 index 0000000000000..d9bf1609daad7 Binary files /dev/null and b/blockchains/arbitrum/assets/0x8B0E6f19Ee57089F7649A455D89D7bC6314D04e8/logo.png differ diff --git a/blockchains/arbitrum/assets/0x8DEb752aAA807E0258afd5cCFFe2b5A804026f28/info.json b/blockchains/arbitrum/assets/0x8DEb752aAA807E0258afd5cCFFe2b5A804026f28/info.json new file mode 100644 index 0000000000000..4602397a28b42 --- /dev/null +++ b/blockchains/arbitrum/assets/0x8DEb752aAA807E0258afd5cCFFe2b5A804026f28/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Broadcom Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0x8DEb752aAA807E0258afd5cCFFe2b5A804026f28", + "type": "ARBITRUM", + "symbol": "WAVGOX", + "decimals": 18, + "status": "active", + "id": "0x8DEb752aAA807E0258afd5cCFFe2b5A804026f28", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-broadcom-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x8DEb752aAA807E0258afd5cCFFe2b5A804026f28/logo.png b/blockchains/arbitrum/assets/0x8DEb752aAA807E0258afd5cCFFe2b5A804026f28/logo.png new file mode 100644 index 0000000000000..a2c0d1850e207 Binary files /dev/null and b/blockchains/arbitrum/assets/0x8DEb752aAA807E0258afd5cCFFe2b5A804026f28/logo.png differ diff --git a/blockchains/arbitrum/assets/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0/info.json b/blockchains/arbitrum/assets/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0/info.json new file mode 100644 index 0000000000000..6393f708c4e82 --- /dev/null +++ b/blockchains/arbitrum/assets/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0/info.json @@ -0,0 +1,24 @@ +{ + "name": "Tesla tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Tesla tokenized stock (xStock) (TSLAX) is a cryptocurrency and operates on the Solana platform. Tesla tokenized stock (xStock) has a current supply of 50,998.28909342 with 10,999.28657402 in circulation. The last known price of Tesla tokenized stock (xStock) is 417.05893204 USD and is down -0.76 over the last 24 hours. It is currently trading on 44 active market(s) with $21,478,606.39 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/tesla-xstock.", + "explorer": "https://arbiscan.io/token/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0", + "type": "ARBITRUM", + "symbol": "TSLAX", + "decimals": 18, + "status": "active", + "id": "0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tesla-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0/logo.png b/blockchains/arbitrum/assets/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0/logo.png new file mode 100644 index 0000000000000..639735518a8c4 Binary files /dev/null and b/blockchains/arbitrum/assets/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0/logo.png differ diff --git a/blockchains/arbitrum/assets/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48/info.json b/blockchains/arbitrum/assets/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48/info.json new file mode 100644 index 0000000000000..92ec96639420e --- /dev/null +++ b/blockchains/arbitrum/assets/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48/info.json @@ -0,0 +1,24 @@ +{ + "name": "SP500 tokenized ETF (xStock)", + "website": "https://assets.backed.fi/products", + "description": "SP500 tokenized ETF (xStock) (SPYX) is a cryptocurrency and operates on the Solana platform. SP500 tokenized ETF (xStock) has a current supply of 15,999.19889527. The last known price of SP500 tokenized ETF (xStock) is 662.57535897 USD and is up 0.48 over the last 24 hours. It is currently trading on 29 active market(s) with $2,070,018.72 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/sp500-xstock.", + "explorer": "https://arbiscan.io/token/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48", + "type": "ARBITRUM", + "symbol": "SPYX", + "decimals": 18, + "status": "active", + "id": "0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sp500-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48/logo.png b/blockchains/arbitrum/assets/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48/logo.png new file mode 100644 index 0000000000000..c4ee269a58492 Binary files /dev/null and b/blockchains/arbitrum/assets/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48/logo.png differ diff --git a/blockchains/arbitrum/assets/0x912CE59144191C1204E64559FE8253a0e49E6548/info.json b/blockchains/arbitrum/assets/0x912CE59144191C1204E64559FE8253a0e49E6548/info.json index 617b4b409e3b3..0da942ad4ab7b 100644 --- a/blockchains/arbitrum/assets/0x912CE59144191C1204E64559FE8253a0e49E6548/info.json +++ b/blockchains/arbitrum/assets/0x912CE59144191C1204E64559FE8253a0e49E6548/info.json @@ -10,8 +10,8 @@ "id": "0x912CE59144191C1204E64559FE8253a0e49E6548", "links": [ { - "name": "twitter", - "url": "https://twitter.com/arbitrum" + "name": "x", + "url": "https://x.com/arbitrum" }, { "name": "whitepaper", diff --git a/blockchains/arbitrum/assets/0x93E62845C1DD5822EbC807ab71A5Fb750DecD15A/info.json b/blockchains/arbitrum/assets/0x93E62845C1DD5822EbC807ab71A5Fb750DecD15A/info.json new file mode 100644 index 0000000000000..7331e411cc3f2 --- /dev/null +++ b/blockchains/arbitrum/assets/0x93E62845C1DD5822EbC807ab71A5Fb750DecD15A/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped NVIDIA Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0x93E62845C1DD5822EbC807ab71A5Fb750DecD15A", + "type": "ARBITRUM", + "symbol": "WNVDAX", + "decimals": 18, + "status": "active", + "id": "0x93E62845C1DD5822EbC807ab71A5Fb750DecD15A", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-nvidia-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x93E62845C1DD5822EbC807ab71A5Fb750DecD15A/logo.png b/blockchains/arbitrum/assets/0x93E62845C1DD5822EbC807ab71A5Fb750DecD15A/logo.png new file mode 100644 index 0000000000000..83524596989e9 Binary files /dev/null and b/blockchains/arbitrum/assets/0x93E62845C1DD5822EbC807ab71A5Fb750DecD15A/logo.png differ diff --git a/blockchains/arbitrum/assets/0x949C1A8f5142BB61895771928f4A94069059d0fF/info.json b/blockchains/arbitrum/assets/0x949C1A8f5142BB61895771928f4A94069059d0fF/info.json new file mode 100644 index 0000000000000..e8ab19af89a3d --- /dev/null +++ b/blockchains/arbitrum/assets/0x949C1A8f5142BB61895771928f4A94069059d0fF/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether USD (Bridge TC10)", + "type": "ARBITRUM", + "symbol": "FAKE USDT.C", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://arbiscan.io/token/0x949C1A8f5142BB61895771928f4A94069059d0fF", + "explorer": "https://arbiscan.io/token/0x949C1A8f5142BB61895771928f4A94069059d0fF", + "status": "spam", + "id": "0x949C1A8f5142BB61895771928f4A94069059d0fF" +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x95146881b86B3ee99e63705eC87AfE29Fcc044D9/info.json b/blockchains/arbitrum/assets/0x95146881b86B3ee99e63705eC87AfE29Fcc044D9/info.json new file mode 100644 index 0000000000000..a3a12d748313d --- /dev/null +++ b/blockchains/arbitrum/assets/0x95146881b86B3ee99e63705eC87AfE29Fcc044D9/info.json @@ -0,0 +1,21 @@ +{ + "name": "Vertex", + "website": "https://vertexprotocol.com/", + "description": "Vertex is a cross-margined decentralized exchange (DEX) protocol offering spot, perpetuals, and an integrated money market bundled into one vertically integrated application on Arbitrum.", + "explorer": "https://arbiscan.io/token/0x95146881b86B3ee99e63705eC87AfE29Fcc044D9", + "type": "ARBITRUM", + "symbol": "VRTX", + "decimals": 18, + "status": "active", + "id": "0x95146881b86B3ee99e63705eC87AfE29Fcc044D9", + "links": [ + { + "name": "x", + "url": "https://x.com/vertex_protocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vertex-protocol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x95146881b86B3ee99e63705eC87AfE29Fcc044D9/logo.png b/blockchains/arbitrum/assets/0x95146881b86B3ee99e63705eC87AfE29Fcc044D9/logo.png new file mode 100644 index 0000000000000..a404e19bda6d7 Binary files /dev/null and b/blockchains/arbitrum/assets/0x95146881b86B3ee99e63705eC87AfE29Fcc044D9/logo.png differ diff --git a/blockchains/arbitrum/assets/0x953707d7A1cB30cc5C636bDA8EaeBe410341eB14/info.json b/blockchains/arbitrum/assets/0x953707d7A1cB30cc5C636bDA8EaeBe410341eB14/info.json new file mode 100644 index 0000000000000..d3455e6bfcc8f --- /dev/null +++ b/blockchains/arbitrum/assets/0x953707d7A1cB30cc5C636bDA8EaeBe410341eB14/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Robinhood Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0x953707d7A1cB30cc5C636bDA8EaeBe410341eB14", + "type": "ARBITRUM", + "symbol": "WHOODX", + "decimals": 18, + "status": "active", + "id": "0x953707d7A1cB30cc5C636bDA8EaeBe410341eB14", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-robinhood-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x953707d7A1cB30cc5C636bDA8EaeBe410341eB14/logo.png b/blockchains/arbitrum/assets/0x953707d7A1cB30cc5C636bDA8EaeBe410341eB14/logo.png new file mode 100644 index 0000000000000..0234117326a73 Binary files /dev/null and b/blockchains/arbitrum/assets/0x953707d7A1cB30cc5C636bDA8EaeBe410341eB14/logo.png differ diff --git a/blockchains/arbitrum/assets/0x9623063377AD1B27544C965cCd7342f7EA7e88C7/info.json b/blockchains/arbitrum/assets/0x9623063377AD1B27544C965cCd7342f7EA7e88C7/info.json index 6c664bdddb9a0..9ee92ce36467c 100644 --- a/blockchains/arbitrum/assets/0x9623063377AD1B27544C965cCd7342f7EA7e88C7/info.json +++ b/blockchains/arbitrum/assets/0x9623063377AD1B27544C965cCd7342f7EA7e88C7/info.json @@ -18,8 +18,8 @@ "url": "https://github.com/graphprotocol/graph-node" }, { - "name": "twitter", - "url": "https://twitter.com/graphprotocol" + "name": "x", + "url": "https://x.com/graphprotocol" }, { "name": "reddit", diff --git a/blockchains/arbitrum/assets/0x965d00aA7ABC62CA10132e641D08593435aC811d/info.json b/blockchains/arbitrum/assets/0x965d00aA7ABC62CA10132e641D08593435aC811d/info.json new file mode 100644 index 0000000000000..4c57d62ce6164 --- /dev/null +++ b/blockchains/arbitrum/assets/0x965d00aA7ABC62CA10132e641D08593435aC811d/info.json @@ -0,0 +1,21 @@ +{ + "name": "KAP Games", + "type": "ARBITRUM", + "symbol": "KAP", + "decimals": 18, + "website": "https://about.kap.gg/", + "description": "KAP Games is a web3 gaming distributor, publisher & studio, specializing in browser and mobile-native experiences. Utilizing emerging technologies to unlock the next generation of gaming, KAP curates a web3 ecosystem where diverse games, innovative projects, and vibrant communities collide.", + "explorer": "https://arbiscan.io/token/0x965d00aA7ABC62CA10132e641D08593435aC811d", + "status": "active", + "id": "0x965d00aA7ABC62CA10132e641D08593435aC811d", + "links": [ + { + "name": "x", + "url": "https://x.com/KAPGamesGG" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kap-games/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x965d00aA7ABC62CA10132e641D08593435aC811d/logo.png b/blockchains/arbitrum/assets/0x965d00aA7ABC62CA10132e641D08593435aC811d/logo.png new file mode 100644 index 0000000000000..1aee547488af7 Binary files /dev/null and b/blockchains/arbitrum/assets/0x965d00aA7ABC62CA10132e641D08593435aC811d/logo.png differ diff --git a/blockchains/arbitrum/assets/0x96702be57Cd9777f835117a809C7124fe4ec989A/info.json b/blockchains/arbitrum/assets/0x96702be57Cd9777f835117a809C7124fe4ec989A/info.json new file mode 100644 index 0000000000000..ad4a75bb70817 --- /dev/null +++ b/blockchains/arbitrum/assets/0x96702be57Cd9777f835117a809C7124fe4ec989A/info.json @@ -0,0 +1,24 @@ +{ + "name": "Meta tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Meta tokenized stock (xStock) (METAX) is a cryptocurrency and operates on the Solana platform. Meta tokenized stock (xStock) has a current supply of 1,000. The last known price of Meta tokenized stock (xStock) is 769.51285738 USD and is up 1.36 over the last 24 hours. It is currently trading on 26 active market(s) with $3,617,932.72 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/meta-xstock.", + "explorer": "https://arbiscan.io/token/0x96702be57Cd9777f835117a809C7124fe4ec989A", + "type": "ARBITRUM", + "symbol": "METAX", + "decimals": 18, + "status": "active", + "id": "0x96702be57Cd9777f835117a809C7124fe4ec989A", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/meta-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x96702be57Cd9777f835117a809C7124fe4ec989A/logo.png b/blockchains/arbitrum/assets/0x96702be57Cd9777f835117a809C7124fe4ec989A/logo.png new file mode 100644 index 0000000000000..bce8b3c7c676d Binary files /dev/null and b/blockchains/arbitrum/assets/0x96702be57Cd9777f835117a809C7124fe4ec989A/logo.png differ diff --git a/blockchains/arbitrum/assets/0x982239D38Af50B0168dA33346d85Fb12929c4c07/info.json b/blockchains/arbitrum/assets/0x982239D38Af50B0168dA33346d85Fb12929c4c07/info.json new file mode 100644 index 0000000000000..8b9e90e3ae2af --- /dev/null +++ b/blockchains/arbitrum/assets/0x982239D38Af50B0168dA33346d85Fb12929c4c07/info.json @@ -0,0 +1,21 @@ +{ + "name": "Arbitrove Governance Token", + "type": "ARBITRUM", + "symbol": "TROVE", + "decimals": 18, + "website": "https://nitrocartel.finance/arbitrove", + "description": "Nitro Cartel will aggressively strive to solve the problem by mobilizing crypto’s citizens into the collective cartelization of financial and human capital.", + "explorer": "https://arbiscan.io/token/0x982239d38af50b0168da33346d85fb12929c4c07", + "status": "active", + "id": "0x982239D38Af50B0168dA33346d85Fb12929c4c07", + "links": [ + { + "name": "x", + "url": "https://x.com/nitrocartel" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nitro-cartel/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x982239D38Af50B0168dA33346d85Fb12929c4c07/logo.png b/blockchains/arbitrum/assets/0x982239D38Af50B0168dA33346d85Fb12929c4c07/logo.png new file mode 100644 index 0000000000000..59df7489445dd Binary files /dev/null and b/blockchains/arbitrum/assets/0x982239D38Af50B0168dA33346d85Fb12929c4c07/logo.png differ diff --git a/blockchains/arbitrum/assets/0x99C409E5f62E4bd2AC142f17caFb6810B8F0BAAE/info.json b/blockchains/arbitrum/assets/0x99C409E5f62E4bd2AC142f17caFb6810B8F0BAAE/info.json new file mode 100644 index 0000000000000..3f9a0192259e9 --- /dev/null +++ b/blockchains/arbitrum/assets/0x99C409E5f62E4bd2AC142f17caFb6810B8F0BAAE/info.json @@ -0,0 +1,32 @@ +{ + "name": "beefy.finance", + "symbol": "BIFI", + "type": "ARBITRUM", + "decimals": 18, + "description": "The MultiChain Yield Optimizer", + "website": "https://beefy.finance/", + "explorer": "https://arbiscan.io/token/0x99c409e5f62e4bd2ac142f17cafb6810b8f0baae", + "status": "active", + "id": "0x99C409E5f62E4bd2AC142f17caFb6810B8F0BAAE", + "links": [ + { + "name": "x", + "url": "https://x.com/beefyfinance" + }, + { + "name": "telegram", + "url": "https://t.me/beefyfinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/beefy-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/beefy-finance/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCa3F508B8e4Dd382eE878A314789373D80A5190A/logo.png b/blockchains/arbitrum/assets/0x99C409E5f62E4bd2AC142f17caFb6810B8F0BAAE/logo.png similarity index 100% rename from blockchains/smartchain/assets/0xCa3F508B8e4Dd382eE878A314789373D80A5190A/logo.png rename to blockchains/arbitrum/assets/0x99C409E5f62E4bd2AC142f17caFb6810B8F0BAAE/logo.png diff --git a/blockchains/arbitrum/assets/0x9E758B8a98a42d612b3D38B66a22074DC03D7370/info.json b/blockchains/arbitrum/assets/0x9E758B8a98a42d612b3D38B66a22074DC03D7370/info.json new file mode 100644 index 0000000000000..79a6187b33e4d --- /dev/null +++ b/blockchains/arbitrum/assets/0x9E758B8a98a42d612b3D38B66a22074DC03D7370/info.json @@ -0,0 +1,32 @@ +{ + "name": "Symbiosis", + "type": "ARBITRUM", + "symbol": "SIS", + "decimals": 18, + "website": "https://symbiosis.finance", + "description": "Symbiosis aggregates decentralized exchange liquidity across any EVM and non-EVM networks. Swap any token and transfer liquidity. Yes, any.", + "explorer": "https://arbiscan.io/token/0x9e758b8a98a42d612b3d38b66a22074dc03d7370", + "status": "active", + "id": "0x9E758B8a98a42d612b3D38B66a22074DC03D7370", + "links": [ + { + "name": "x", + "url": "https://x.com/symbiosis_fi" + }, + { + "name": "github", + "url": "https://github.com/symbiosis-finance" + }, + { + "name": "telegram", + "url": "https://t.me/symbiosis_finance" + }, + { + "name": "medium", + "url": "https://medium.com/symbiosis-fi" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x9E758B8a98a42d612b3D38B66a22074DC03D7370/logo.png b/blockchains/arbitrum/assets/0x9E758B8a98a42d612b3D38B66a22074DC03D7370/logo.png new file mode 100644 index 0000000000000..26f3dbd585377 Binary files /dev/null and b/blockchains/arbitrum/assets/0x9E758B8a98a42d612b3D38B66a22074DC03D7370/logo.png differ diff --git a/blockchains/arbitrum/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json b/blockchains/arbitrum/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json index bc6ffe16cfbbd..d7d2d0f09a348 100644 --- a/blockchains/arbitrum/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json +++ b/blockchains/arbitrum/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json @@ -10,8 +10,8 @@ "id": "0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/multichainorg" + "name": "x", + "url": "https://x.com/multichainorg" }, { "name": "github", diff --git a/blockchains/arbitrum/assets/0x9a2486fbe7bC17C9100be65c31aBE7c9Bf84C23c/info.json b/blockchains/arbitrum/assets/0x9a2486fbe7bC17C9100be65c31aBE7c9Bf84C23c/info.json new file mode 100644 index 0000000000000..8896473578222 --- /dev/null +++ b/blockchains/arbitrum/assets/0x9a2486fbe7bC17C9100be65c31aBE7c9Bf84C23c/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Coca-Cola Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0x9a2486fbe7bC17C9100be65c31aBE7c9Bf84C23c", + "type": "ARBITRUM", + "symbol": "WKOX", + "decimals": 18, + "status": "active", + "id": "0x9a2486fbe7bC17C9100be65c31aBE7c9Bf84C23c", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-coca-cola-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x9a2486fbe7bC17C9100be65c31aBE7c9Bf84C23c/logo.png b/blockchains/arbitrum/assets/0x9a2486fbe7bC17C9100be65c31aBE7c9Bf84C23c/logo.png new file mode 100644 index 0000000000000..98e91130cf7c1 Binary files /dev/null and b/blockchains/arbitrum/assets/0x9a2486fbe7bC17C9100be65c31aBE7c9Bf84C23c/logo.png differ diff --git a/blockchains/arbitrum/assets/0x9b3fa2A7C3EB36d048A5d38d81E7fAFC6bc47B25/info.json b/blockchains/arbitrum/assets/0x9b3fa2A7C3EB36d048A5d38d81E7fAFC6bc47B25/info.json new file mode 100644 index 0000000000000..fbaa4ae98f246 --- /dev/null +++ b/blockchains/arbitrum/assets/0x9b3fa2A7C3EB36d048A5d38d81E7fAFC6bc47B25/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aluna Token", + "website": "https://aluna.social", + "description": "Aluna Social - Multi-exchange Social Trading Terminal for Crypto Traders and Investors", + "explorer": "https://arbiscan.io/token/0x9b3fa2a7c3eb36d048a5d38d81e7fafc6bc47b25", + "type": "ARBITRUM", + "symbol": "ALN", + "decimals": 18, + "status": "active", + "id": "0x9b3fa2A7C3EB36d048A5d38d81E7fAFC6bc47B25" +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x9b3fa2A7C3EB36d048A5d38d81E7fAFC6bc47B25/logo.png b/blockchains/arbitrum/assets/0x9b3fa2A7C3EB36d048A5d38d81E7fAFC6bc47B25/logo.png new file mode 100644 index 0000000000000..d1cb853185d32 Binary files /dev/null and b/blockchains/arbitrum/assets/0x9b3fa2A7C3EB36d048A5d38d81E7fAFC6bc47B25/logo.png differ diff --git a/blockchains/arbitrum/assets/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a/info.json b/blockchains/arbitrum/assets/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a/info.json new file mode 100644 index 0000000000000..65918cb4cfe64 --- /dev/null +++ b/blockchains/arbitrum/assets/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a/info.json @@ -0,0 +1,24 @@ +{ + "name": "Apple tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Apple tokenized stock (xStock) (AAPLX) is a cryptocurrency and operates on the Arbitrum platform. Apple tokenized stock (xStock) has a current supply of 18,998.50133677 with 8,999.30716257 in circulation. The last known price of Apple tokenized stock (xStock) is 236.69155907 USD and is down -0.06 over the last 24 hours. It is currently trading on 39 active market(s) with $6,049,996.18 traded over the last 24 hours. More information can be found at https://xstocks.fi/.", + "explorer": "https://arbiscan.io/token/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a", + "type": "ARBITRUM", + "symbol": "AAPLX", + "decimals": 18, + "status": "active", + "id": "0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/apple-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a/logo.png b/blockchains/arbitrum/assets/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a/logo.png new file mode 100644 index 0000000000000..2af9425e91160 Binary files /dev/null and b/blockchains/arbitrum/assets/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a/logo.png differ diff --git a/blockchains/arbitrum/assets/0x9f6AbbF0Ba6B5bfa27f4deb6597CC6Ec20573FDA/info.json b/blockchains/arbitrum/assets/0x9f6AbbF0Ba6B5bfa27f4deb6597CC6Ec20573FDA/info.json new file mode 100644 index 0000000000000..d0122f7c381f6 --- /dev/null +++ b/blockchains/arbitrum/assets/0x9f6AbbF0Ba6B5bfa27f4deb6597CC6Ec20573FDA/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ferrum Network", + "website": "https://ferrum.network", + "description": "Ferrum Network aims to empower individuals with decentralized financial technology.", + "explorer": "https://arbiscan.io/token/0x9f6AbbF0Ba6B5bfa27f4deb6597CC6Ec20573FDA", + "type": "ARBITRUM", + "symbol": "FRM", + "decimals": 18, + "status": "active", + "id": "0x9f6AbbF0Ba6B5bfa27f4deb6597CC6Ec20573FDA" +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x9f6AbbF0Ba6B5bfa27f4deb6597CC6Ec20573FDA/logo.png b/blockchains/arbitrum/assets/0x9f6AbbF0Ba6B5bfa27f4deb6597CC6Ec20573FDA/logo.png new file mode 100644 index 0000000000000..2053bae10dfff Binary files /dev/null and b/blockchains/arbitrum/assets/0x9f6AbbF0Ba6B5bfa27f4deb6597CC6Ec20573FDA/logo.png differ diff --git a/blockchains/arbitrum/assets/0xA00A5538708b5aca7045F2ca15104707965bac94/info.json b/blockchains/arbitrum/assets/0xA00A5538708b5aca7045F2ca15104707965bac94/info.json new file mode 100644 index 0000000000000..aab11f70a5d2b --- /dev/null +++ b/blockchains/arbitrum/assets/0xA00A5538708b5aca7045F2ca15104707965bac94/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped PepsiCo Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0xA00A5538708b5aca7045F2ca15104707965bac94", + "type": "ARBITRUM", + "symbol": "WPEPX", + "decimals": 18, + "status": "active", + "id": "0xA00A5538708b5aca7045F2ca15104707965bac94", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-pepsico-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xA00A5538708b5aca7045F2ca15104707965bac94/logo.png b/blockchains/arbitrum/assets/0xA00A5538708b5aca7045F2ca15104707965bac94/logo.png new file mode 100644 index 0000000000000..c0f15c64001c0 Binary files /dev/null and b/blockchains/arbitrum/assets/0xA00A5538708b5aca7045F2ca15104707965bac94/logo.png differ diff --git a/blockchains/arbitrum/assets/0xA0412CE46fE877b7f174B82aCD95E70063BbaF2a/info.json b/blockchains/arbitrum/assets/0xA0412CE46fE877b7f174B82aCD95E70063BbaF2a/info.json new file mode 100644 index 0000000000000..44b35b1c6c7e5 --- /dev/null +++ b/blockchains/arbitrum/assets/0xA0412CE46fE877b7f174B82aCD95E70063BbaF2a/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped UnitedHealth Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0xA0412CE46fE877b7f174B82aCD95E70063BbaF2a", + "type": "ARBITRUM", + "symbol": "WUNHX", + "decimals": 18, + "status": "active", + "id": "0xA0412CE46fE877b7f174B82aCD95E70063BbaF2a", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-unitedhealth-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xA0412CE46fE877b7f174B82aCD95E70063BbaF2a/logo.png b/blockchains/arbitrum/assets/0xA0412CE46fE877b7f174B82aCD95E70063BbaF2a/logo.png new file mode 100644 index 0000000000000..80132f1299bc5 Binary files /dev/null and b/blockchains/arbitrum/assets/0xA0412CE46fE877b7f174B82aCD95E70063BbaF2a/logo.png differ diff --git a/blockchains/arbitrum/assets/0xA2b1335256cd663Da89F650180508dd1f0DC3BAa/info.json b/blockchains/arbitrum/assets/0xA2b1335256cd663Da89F650180508dd1f0DC3BAa/info.json new file mode 100644 index 0000000000000..8eaa1284860ee --- /dev/null +++ b/blockchains/arbitrum/assets/0xA2b1335256cd663Da89F650180508dd1f0DC3BAa/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Bank of America Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0xA2b1335256cd663Da89F650180508dd1f0DC3BAa", + "type": "ARBITRUM", + "symbol": "WBACX", + "decimals": 18, + "status": "active", + "id": "0xA2b1335256cd663Da89F650180508dd1f0DC3BAa", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-bank-of-america-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xA2b1335256cd663Da89F650180508dd1f0DC3BAa/logo.png b/blockchains/arbitrum/assets/0xA2b1335256cd663Da89F650180508dd1f0DC3BAa/logo.png new file mode 100644 index 0000000000000..ac7024ca1013a Binary files /dev/null and b/blockchains/arbitrum/assets/0xA2b1335256cd663Da89F650180508dd1f0DC3BAa/logo.png differ diff --git a/blockchains/arbitrum/assets/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961/info.json b/blockchains/arbitrum/assets/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961/info.json new file mode 100644 index 0000000000000..b7c266dc85873 --- /dev/null +++ b/blockchains/arbitrum/assets/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961/info.json @@ -0,0 +1,24 @@ +{ + "name": "Netflix tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Netflix xStock (NFLXx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. NFLXx tracks the price of Netflix, Inc. (the underlying). NFLXx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Netflix, Inc., whilst maintaining the benefits of blockchain technology. Key Benefits Netflix is a media company that provides entertainment services, including streaming movies, TV shows, and games, through a subscription-based model. It also produces its own original content and licenses content from other companies.", + "explorer": "https://arbiscan.io/token/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961", + "type": "ARBITRUM", + "symbol": "NFLXX", + "decimals": 18, + "status": "active", + "id": "0xA6a65AC27E76cD53cB790473E4345c46e5eBf961", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/netflix-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961/logo.png b/blockchains/arbitrum/assets/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961/logo.png new file mode 100644 index 0000000000000..7cb316a4557bb Binary files /dev/null and b/blockchains/arbitrum/assets/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961/logo.png differ diff --git a/blockchains/arbitrum/assets/0xAA28cB97D7f7E172f54deE950743886D2d65447d/info.json b/blockchains/arbitrum/assets/0xAA28cB97D7f7E172f54deE950743886D2d65447d/info.json new file mode 100644 index 0000000000000..93ccb63176c80 --- /dev/null +++ b/blockchains/arbitrum/assets/0xAA28cB97D7f7E172f54deE950743886D2d65447d/info.json @@ -0,0 +1,15 @@ +{ + "name": "S&P Small Cap xStock", + "type": "ARBITRUM", + "symbol": "IJRx", + "decimals": 18, + "description": "S&P Small Cap xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://arbiscan.io/token/0xAA28cB97D7f7E172f54deE950743886D2d65447d", + "status": "active", + "id": "0xAA28cB97D7f7E172f54deE950743886D2d65447d", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xAA28cB97D7f7E172f54deE950743886D2d65447d/logo.png b/blockchains/arbitrum/assets/0xAA28cB97D7f7E172f54deE950743886D2d65447d/logo.png new file mode 100644 index 0000000000000..d5c48229001bc Binary files /dev/null and b/blockchains/arbitrum/assets/0xAA28cB97D7f7E172f54deE950743886D2d65447d/logo.png differ diff --git a/blockchains/arbitrum/assets/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E/info.json b/blockchains/arbitrum/assets/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E/info.json new file mode 100644 index 0000000000000..2c884021ceafd --- /dev/null +++ b/blockchains/arbitrum/assets/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E/info.json @@ -0,0 +1,24 @@ +{ + "name": "MicroStrategy tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "MicroStrategy tokenized stock (xStock) (MSTRX) is a cryptocurrency and operates on the Solana platform. MicroStrategy tokenized stock (xStock) has a current supply of 19,499.52630505. The last known price of MicroStrategy tokenized stock (xStock) is 329.14757255 USD and is down -0.35 over the last 24 hours. It is currently trading on 28 active market(s) with $3,268,417.42 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/microstrategy-xstock.", + "explorer": "https://arbiscan.io/token/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E", + "type": "ARBITRUM", + "symbol": "MSTRX", + "decimals": 18, + "status": "active", + "id": "0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/microstrategy-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E/logo.png b/blockchains/arbitrum/assets/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E/logo.png new file mode 100644 index 0000000000000..b6fb457e98469 Binary files /dev/null and b/blockchains/arbitrum/assets/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E/logo.png differ diff --git a/blockchains/arbitrum/assets/0xAF072F109A2C173D822a4fe9af311A1B18F83d19/info.json b/blockchains/arbitrum/assets/0xAF072F109A2C173D822a4fe9af311A1B18F83d19/info.json new file mode 100644 index 0000000000000..301b393f5cf0a --- /dev/null +++ b/blockchains/arbitrum/assets/0xAF072F109A2C173D822a4fe9af311A1B18F83d19/info.json @@ -0,0 +1,24 @@ +{ + "name": "Thermo Fisher tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Thermo Fisher xStock (TMOx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. TMOx tracks the price of Thermo Fisher Scientific Inc. (the underlying). TMOx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Thermo Fisher Scientific Inc., whilst maintaining the benefits of blockchain technology. Thermo Fisher is a global leader in serving science, with a mission to enable customers to make the world healthier, cleaner, and safer.", + "explorer": "https://arbiscan.io/token/0xAF072F109A2C173D822a4fe9af311A1B18F83d19", + "type": "ARBITRUM", + "symbol": "TMOX", + "decimals": 18, + "status": "active", + "id": "0xAF072F109A2C173D822a4fe9af311A1B18F83d19", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/thermo-fisher-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xAF072F109A2C173D822a4fe9af311A1B18F83d19/logo.png b/blockchains/arbitrum/assets/0xAF072F109A2C173D822a4fe9af311A1B18F83d19/logo.png new file mode 100644 index 0000000000000..472c951a6b913 Binary files /dev/null and b/blockchains/arbitrum/assets/0xAF072F109A2C173D822a4fe9af311A1B18F83d19/logo.png differ diff --git a/blockchains/arbitrum/assets/0xAeAC3b55c3522157ecdA7EC8fcB86C832fAA28aF/info.json b/blockchains/arbitrum/assets/0xAeAC3b55c3522157ecdA7EC8fcB86C832fAA28aF/info.json new file mode 100644 index 0000000000000..c8e9a8570b241 --- /dev/null +++ b/blockchains/arbitrum/assets/0xAeAC3b55c3522157ecdA7EC8fcB86C832fAA28aF/info.json @@ -0,0 +1,21 @@ +{ + "name": "XYRO", + "symbol": "XYRO", + "type": "ARBITRUM", + "decimals": 18, + "description": "XYRO is an AI-powered gamified trading platform that leverages gamification and social features to redefine crypto, making it accessible and engaging.", + "website": "https://xyro.io/", + "explorer": "https://arbiscan.io/token/0xAeAC3b55c3522157ecdA7EC8fcB86C832fAA28aF", + "status": "active", + "id": "0xAeAC3b55c3522157ecdA7EC8fcB86C832fAA28aF", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/xyro/" + }, + { + "name": "x", + "url": "https://x.com/xyro_io" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xAeAC3b55c3522157ecdA7EC8fcB86C832fAA28aF/logo.png b/blockchains/arbitrum/assets/0xAeAC3b55c3522157ecdA7EC8fcB86C832fAA28aF/logo.png new file mode 100644 index 0000000000000..fdfd0ac0d5599 Binary files /dev/null and b/blockchains/arbitrum/assets/0xAeAC3b55c3522157ecdA7EC8fcB86C832fAA28aF/logo.png differ diff --git a/blockchains/arbitrum/assets/0xB299751B088336E165dA313c33e3195B8c6663A6/info.json b/blockchains/arbitrum/assets/0xB299751B088336E165dA313c33e3195B8c6663A6/info.json new file mode 100644 index 0000000000000..63c7d5292da1e --- /dev/null +++ b/blockchains/arbitrum/assets/0xB299751B088336E165dA313c33e3195B8c6663A6/info.json @@ -0,0 +1,21 @@ +{ + "name": "StarHeroes", + "type": "ARBITRUM", + "symbol": "STAR", + "decimals": 18, + "website": "https://starheroes.io/", + "description": "StarHeroes: pioneering multiplayer space shooter esports game by GameSwift's STAR studio. Early Access debuts Q2 2024 with 400k pre-registrations. Get ready for the first Decentralized Esports Tournament, featuring a $1.6m prize pool.", + "explorer": "https://arbiscan.io/token/0xb299751b088336e165da313c33e3195b8c6663a6", + "status": "active", + "id": "0xB299751B088336E165dA313c33e3195B8c6663A6", + "links": [ + { + "name": "x", + "url": "https://x.com/starheroes_game" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/starheroes/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xB299751B088336E165dA313c33e3195B8c6663A6/logo.png b/blockchains/arbitrum/assets/0xB299751B088336E165dA313c33e3195B8c6663A6/logo.png new file mode 100644 index 0000000000000..9de4e29258993 Binary files /dev/null and b/blockchains/arbitrum/assets/0xB299751B088336E165dA313c33e3195B8c6663A6/logo.png differ diff --git a/blockchains/arbitrum/assets/0xB908FEAeab7E671dB697d77c3acFD8859E92a4e2/info.json b/blockchains/arbitrum/assets/0xB908FEAeab7E671dB697d77c3acFD8859E92a4e2/info.json new file mode 100644 index 0000000000000..6b6f2efaaf9d8 --- /dev/null +++ b/blockchains/arbitrum/assets/0xB908FEAeab7E671dB697d77c3acFD8859E92a4e2/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped AstraZeneca Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0xB908FEAeab7E671dB697d77c3acFD8859E92a4e2", + "type": "ARBITRUM", + "symbol": "WAZNX", + "decimals": 18, + "status": "active", + "id": "0xB908FEAeab7E671dB697d77c3acFD8859E92a4e2", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-astrazeneca-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xB908FEAeab7E671dB697d77c3acFD8859E92a4e2/logo.png b/blockchains/arbitrum/assets/0xB908FEAeab7E671dB697d77c3acFD8859E92a4e2/logo.png new file mode 100644 index 0000000000000..588520531cd53 Binary files /dev/null and b/blockchains/arbitrum/assets/0xB908FEAeab7E671dB697d77c3acFD8859E92a4e2/logo.png differ diff --git a/blockchains/arbitrum/assets/0xB9AF4762c039D63e30039F1712dfaB77026408c7/info.json b/blockchains/arbitrum/assets/0xB9AF4762c039D63e30039F1712dfaB77026408c7/info.json new file mode 100644 index 0000000000000..2a06a3390aac6 --- /dev/null +++ b/blockchains/arbitrum/assets/0xB9AF4762c039D63e30039F1712dfaB77026408c7/info.json @@ -0,0 +1,25 @@ +{ + "name": "BullBear AI", + "type": "ARBITRUM", + "symbol": "AIBB", + "decimals": 18, + "website": "https://bull-bear.ai/", + "description": "BullBear AI is developed using AI to predict the BULL and BEAR markets through User Behaviors and Price Action, generating profit for users.", + "explorer": "https://arbiscan.io/token/0xb9af4762c039d63e30039f1712dfab77026408c7", + "status": "active", + "id": "0xB9AF4762c039D63e30039F1712dfaB77026408c7", + "links": [ + { + "name": "x", + "url": "https://x.com/bullbear_ai" + }, + { + "name": "telegram", + "url": "https://t.me/ai_bullbear" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bullbear-ai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xB9AF4762c039D63e30039F1712dfaB77026408c7/logo.png b/blockchains/arbitrum/assets/0xB9AF4762c039D63e30039F1712dfaB77026408c7/logo.png new file mode 100644 index 0000000000000..1711648e0142f Binary files /dev/null and b/blockchains/arbitrum/assets/0xB9AF4762c039D63e30039F1712dfaB77026408c7/logo.png differ diff --git a/blockchains/arbitrum/assets/0xBC7170a1280Be28513B4e940C681537EB25e39f4/info.json b/blockchains/arbitrum/assets/0xBC7170a1280Be28513B4e940C681537EB25e39f4/info.json new file mode 100644 index 0000000000000..98604f3b5d38c --- /dev/null +++ b/blockchains/arbitrum/assets/0xBC7170a1280Be28513B4e940C681537EB25e39f4/info.json @@ -0,0 +1,24 @@ +{ + "name": "Comcast tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Comcast xStock (CMCSAx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. CMCSAx tracks the price of International Comcast Corporation Class A (the underlying). CMCSAx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Comcast Corporation Class A, whilst maintaining the benefits of blockchain technology. Comcast Corporation is a global media and tech company that provides connectivity, content, and entertainment to millions of customers worldwide.", + "explorer": "https://arbiscan.io/token/0xBC7170a1280Be28513B4e940C681537EB25e39f4", + "type": "ARBITRUM", + "symbol": "CMCSAX", + "decimals": 18, + "status": "active", + "id": "0xBC7170a1280Be28513B4e940C681537EB25e39f4", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/comcast-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xBC7170a1280Be28513B4e940C681537EB25e39f4/logo.png b/blockchains/arbitrum/assets/0xBC7170a1280Be28513B4e940C681537EB25e39f4/logo.png new file mode 100644 index 0000000000000..a3d18c9ae4e61 Binary files /dev/null and b/blockchains/arbitrum/assets/0xBC7170a1280Be28513B4e940C681537EB25e39f4/logo.png differ diff --git a/blockchains/arbitrum/assets/0xBd1B73b2E89967e83507B500D798998200A53380/info.json b/blockchains/arbitrum/assets/0xBd1B73b2E89967e83507B500D798998200A53380/info.json new file mode 100644 index 0000000000000..91d4f3c49453f --- /dev/null +++ b/blockchains/arbitrum/assets/0xBd1B73b2E89967e83507B500D798998200A53380/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Honeywell Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0xBd1B73b2E89967e83507B500D798998200A53380", + "type": "ARBITRUM", + "symbol": "WHONX", + "decimals": 18, + "status": "active", + "id": "0xBd1B73b2E89967e83507B500D798998200A53380", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-honeywell-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xBd1B73b2E89967e83507B500D798998200A53380/logo.png b/blockchains/arbitrum/assets/0xBd1B73b2E89967e83507B500D798998200A53380/logo.png new file mode 100644 index 0000000000000..9179fb7a06767 Binary files /dev/null and b/blockchains/arbitrum/assets/0xBd1B73b2E89967e83507B500D798998200A53380/logo.png differ diff --git a/blockchains/arbitrum/assets/0xBfa641051Ba0a0Ad1b0AcF549a89536A0D76472E/info.json b/blockchains/arbitrum/assets/0xBfa641051Ba0a0Ad1b0AcF549a89536A0D76472E/info.json index c5e9ba018f223..17db43012fe79 100644 --- a/blockchains/arbitrum/assets/0xBfa641051Ba0a0Ad1b0AcF549a89536A0D76472E/info.json +++ b/blockchains/arbitrum/assets/0xBfa641051Ba0a0Ad1b0AcF549a89536A0D76472E/info.json @@ -14,8 +14,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/$BADGER" + "name": "x", + "url": "https://x.com/$BADGER" }, { "name": "discord", diff --git a/blockchains/arbitrum/assets/0xC641E2eBF6E076e2AE53477C2E725b3c67C0fd94/info.json b/blockchains/arbitrum/assets/0xC641E2eBF6E076e2AE53477C2E725b3c67C0fd94/info.json new file mode 100644 index 0000000000000..1489342a520c8 --- /dev/null +++ b/blockchains/arbitrum/assets/0xC641E2eBF6E076e2AE53477C2E725b3c67C0fd94/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Home Depot Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0xC641E2eBF6E076e2AE53477C2E725b3c67C0fd94", + "type": "ARBITRUM", + "symbol": "WHDX", + "decimals": 18, + "status": "active", + "id": "0xC641E2eBF6E076e2AE53477C2E725b3c67C0fd94", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-home-depot-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xC641E2eBF6E076e2AE53477C2E725b3c67C0fd94/logo.png b/blockchains/arbitrum/assets/0xC641E2eBF6E076e2AE53477C2E725b3c67C0fd94/logo.png new file mode 100644 index 0000000000000..effb7c650cb8d Binary files /dev/null and b/blockchains/arbitrum/assets/0xC641E2eBF6E076e2AE53477C2E725b3c67C0fd94/logo.png differ diff --git a/blockchains/arbitrum/assets/0xC8CeED65E236F7d6fB378b8715f9e6912e486A54/info.json b/blockchains/arbitrum/assets/0xC8CeED65E236F7d6fB378b8715f9e6912e486A54/info.json new file mode 100644 index 0000000000000..7e965679bf81a --- /dev/null +++ b/blockchains/arbitrum/assets/0xC8CeED65E236F7d6fB378b8715f9e6912e486A54/info.json @@ -0,0 +1,17 @@ +{ + "name": "WrappedXFI", + "type": "ARBITRUM", + "symbol": "WXFI", + "decimals": 18, + "website": "https://crossfi.org", + "description": "The CrossFi App is a groundbreaking innovation in digital banking, revolutionizing the way traditional finance integrates with the cryptocurrency world.", + "explorer": "https://arbiscan.io/token/0xc8ceed65e236f7d6fb378b8715f9e6912e486a54", + "status": "active", + "id": "0xC8CeED65E236F7d6fB378b8715f9e6912e486A54", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crossfinance/" + } + ] +} diff --git a/blockchains/arbitrum/assets/0xC8CeED65E236F7d6fB378b8715f9e6912e486A54/logo.png b/blockchains/arbitrum/assets/0xC8CeED65E236F7d6fB378b8715f9e6912e486A54/logo.png new file mode 100644 index 0000000000000..f1805f8273c16 Binary files /dev/null and b/blockchains/arbitrum/assets/0xC8CeED65E236F7d6fB378b8715f9e6912e486A54/logo.png differ diff --git a/blockchains/arbitrum/assets/0xC9C4fd7579133701FA2769b6955e7E56bb386DB1/info.json b/blockchains/arbitrum/assets/0xC9C4fd7579133701FA2769b6955e7E56bb386DB1/info.json new file mode 100644 index 0000000000000..425f6e676b794 --- /dev/null +++ b/blockchains/arbitrum/assets/0xC9C4fd7579133701FA2769b6955e7E56bb386DB1/info.json @@ -0,0 +1,48 @@ +{ + "name": "Bridge Token", + "website": "https://bridge.link", + "description": "Bridge Oracle System is a technology through which external data can be injected.", + "explorer": "https://arbiscan.io/token/0xc9c4fd7579133701fa2769b6955e7e56bb386db1", + "type": "ARBITRUM", + "symbol": "BRG", + "decimals": 18, + "status": "active", + "id": "0xC9C4fd7579133701FA2769b6955e7E56bb386DB1", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/bridge_oracle" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bridge-oracle/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/brg" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/bridge-oracle/" + }, + { + "name": "telegram", + "url": "https://t.me/Bridge_Oracle" + }, + { + "name": "github", + "url": "https://github.com/BridgeOracle" + }, + { + "name": "whitepaper", + "url": "https://bridge.link/BRG-Whitepaper.pdf" + }, + { + "name": "medium", + "url": "https://medium.com/@bridge_oracle" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xC9C4fd7579133701FA2769b6955e7E56bb386DB1/logo.png b/blockchains/arbitrum/assets/0xC9C4fd7579133701FA2769b6955e7E56bb386DB1/logo.png new file mode 100644 index 0000000000000..10a80b0186488 Binary files /dev/null and b/blockchains/arbitrum/assets/0xC9C4fd7579133701FA2769b6955e7E56bb386DB1/logo.png differ diff --git a/blockchains/arbitrum/assets/0xC9CBf102c73fb77Ec14f8B4C8bd88e050a6b2646/info.json b/blockchains/arbitrum/assets/0xC9CBf102c73fb77Ec14f8B4C8bd88e050a6b2646/info.json new file mode 100644 index 0000000000000..abc497ecdae61 --- /dev/null +++ b/blockchains/arbitrum/assets/0xC9CBf102c73fb77Ec14f8B4C8bd88e050a6b2646/info.json @@ -0,0 +1,33 @@ +{ + "name": "Alpha Finance Lab", + "website": "https://alphafinance.io", + "description": "Alpha Finance Lab is an ecosystem of cross-chain DeFi products that will interoperate to bring optimal alpha returns to users. Alpha products focus on capturing unaddressed demand in DeFi in an innovative and user friendly way.", + "explorer": "https://arbiscan.io/token/0xC9CBf102c73fb77Ec14f8B4C8bd88e050a6b2646", + "data_source": "crowd", + "type": "ARBITRUM", + "symbol": "ALPHA", + "decimals": 18, + "status": "active", + "id": "0xC9CBf102c73fb77Ec14f8B4C8bd88e050a6b2646", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/AlphaFinanceLab" + }, + { + "name": "x", + "url": "https://x.com/alphafinancelab" + }, + { + "name": "telegram", + "url": "https://t.me/AlphaFinanceLab" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Z2vuKDT" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xC9CBf102c73fb77Ec14f8B4C8bd88e050a6b2646/logo.png b/blockchains/arbitrum/assets/0xC9CBf102c73fb77Ec14f8B4C8bd88e050a6b2646/logo.png new file mode 100644 index 0000000000000..c6fa133d0e3f0 Binary files /dev/null and b/blockchains/arbitrum/assets/0xC9CBf102c73fb77Ec14f8B4C8bd88e050a6b2646/logo.png differ diff --git a/blockchains/arbitrum/assets/0xCFa485bc42c2492917351F89F5cf5c7b2C5a66aa/info.json b/blockchains/arbitrum/assets/0xCFa485bc42c2492917351F89F5cf5c7b2C5a66aa/info.json new file mode 100644 index 0000000000000..6aec47e29cd86 --- /dev/null +++ b/blockchains/arbitrum/assets/0xCFa485bc42c2492917351F89F5cf5c7b2C5a66aa/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Cisco Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0xCFa485bc42c2492917351F89F5cf5c7b2C5a66aa", + "type": "ARBITRUM", + "symbol": "WCSCOX", + "decimals": 18, + "status": "active", + "id": "0xCFa485bc42c2492917351F89F5cf5c7b2C5a66aa", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-cisco-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xCFa485bc42c2492917351F89F5cf5c7b2C5a66aa/logo.png b/blockchains/arbitrum/assets/0xCFa485bc42c2492917351F89F5cf5c7b2C5a66aa/logo.png new file mode 100644 index 0000000000000..56ac027a2281d Binary files /dev/null and b/blockchains/arbitrum/assets/0xCFa485bc42c2492917351F89F5cf5c7b2C5a66aa/logo.png differ diff --git a/blockchains/arbitrum/assets/0xD4d026322C88C2d49942A75DfF920FCfbC5614C1/info.json b/blockchains/arbitrum/assets/0xD4d026322C88C2d49942A75DfF920FCfbC5614C1/info.json new file mode 100644 index 0000000000000..c60bc2398a27e --- /dev/null +++ b/blockchains/arbitrum/assets/0xD4d026322C88C2d49942A75DfF920FCfbC5614C1/info.json @@ -0,0 +1,52 @@ +{ + "name": "Openleverage Token (Old)", + "website": "https://openleverage.finance/", + "description": "OpenLeverage is a permissionless money market protocol enabling decentralized lending, borrowing, and margin trading across a diverse range of cryptocurrency pairs, fostering an accessible and efficient DeFi ecosystem.", + "explorer": "https://arbiscan.io/token/0xD4d026322C88C2d49942A75DfF920FCfbC5614C1", + "type": "ARBITRUM", + "symbol": "Old OLE", + "decimals": 18, + "status": "active", + "id": "0xD4d026322C88C2d49942A75DfF920FCfbC5614C1", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/OpenLeverage" + }, + { + "name": "discord", + "url": "https://discord.com/invite/openleverage" + }, + { + "name": "medium", + "url": "https://openleverage.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/openleverage/" + }, + { + "name": "docs", + "url": "https://docs.openleverage.finance/main/" + }, + { + "name": "telegram", + "url": "https://t.me/openleverageofficial" + }, + { + "name": "github", + "url": "https://github.com/OpenLeverageDev/openleverage-contracts" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/openleverage" + }, + { + "name": "youtube", + "url": "https://youtube.com/@openleverageprotocol9047" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xD4d026322C88C2d49942A75DfF920FCfbC5614C1/logo.png b/blockchains/arbitrum/assets/0xD4d026322C88C2d49942A75DfF920FCfbC5614C1/logo.png new file mode 100644 index 0000000000000..c43b83973316f Binary files /dev/null and b/blockchains/arbitrum/assets/0xD4d026322C88C2d49942A75DfF920FCfbC5614C1/logo.png differ diff --git a/blockchains/arbitrum/assets/0xD71a6aDBc40c2674591CDB11B8C7ae03A880b06E/info.json b/blockchains/arbitrum/assets/0xD71a6aDBc40c2674591CDB11B8C7ae03A880b06E/info.json new file mode 100644 index 0000000000000..f67d5459154de --- /dev/null +++ b/blockchains/arbitrum/assets/0xD71a6aDBc40c2674591CDB11B8C7ae03A880b06E/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped CrowdStrike Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0xD71a6aDBc40c2674591CDB11B8C7ae03A880b06E", + "type": "ARBITRUM", + "symbol": "WCRWDX", + "decimals": 18, + "status": "active", + "id": "0xD71a6aDBc40c2674591CDB11B8C7ae03A880b06E", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-crowdstrike-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xD71a6aDBc40c2674591CDB11B8C7ae03A880b06E/logo.png b/blockchains/arbitrum/assets/0xD71a6aDBc40c2674591CDB11B8C7ae03A880b06E/logo.png new file mode 100644 index 0000000000000..c82223c5e2791 Binary files /dev/null and b/blockchains/arbitrum/assets/0xD71a6aDBc40c2674591CDB11B8C7ae03A880b06E/logo.png differ diff --git a/blockchains/arbitrum/assets/0xD812B37181Ae89801e4BB3F49E4C1FAF11fC0b57/info.json b/blockchains/arbitrum/assets/0xD812B37181Ae89801e4BB3F49E4C1FAF11fC0b57/info.json new file mode 100644 index 0000000000000..6b05d7a720f47 --- /dev/null +++ b/blockchains/arbitrum/assets/0xD812B37181Ae89801e4BB3F49E4C1FAF11fC0b57/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Abbott tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0xD812B37181Ae89801e4BB3F49E4C1FAF11fC0b57", + "type": "ARBITRUM", + "symbol": "WABTX", + "decimals": 18, + "status": "active", + "id": "0xD812B37181Ae89801e4BB3F49E4C1FAF11fC0b57", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-abbott-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xD812B37181Ae89801e4BB3F49E4C1FAF11fC0b57/logo.png b/blockchains/arbitrum/assets/0xD812B37181Ae89801e4BB3F49E4C1FAF11fC0b57/logo.png new file mode 100644 index 0000000000000..5c46ccf366ed2 Binary files /dev/null and b/blockchains/arbitrum/assets/0xD812B37181Ae89801e4BB3F49E4C1FAF11fC0b57/logo.png differ diff --git a/blockchains/arbitrum/assets/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A/info.json b/blockchains/arbitrum/assets/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A/info.json new file mode 100644 index 0000000000000..8eeece2f6cd08 --- /dev/null +++ b/blockchains/arbitrum/assets/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A/info.json @@ -0,0 +1,24 @@ +{ + "name": "JPMorgan Chase tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "JPMorgan Chase xStock (JPMx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. JPMx tracks the price of JPMorgan Chase & Co. (the underlying). JPMx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of JPMorgan Chase & Co., whilst maintaining the benefits of blockchain technology. JPMorgan Chase & Co. is a multinational financial services firm headquartered in New York City. It's a leading provider of financial services to individuals, businesses, and institutions worldwide.", + "explorer": "https://arbiscan.io/token/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A", + "type": "ARBITRUM", + "symbol": "JPMX", + "decimals": 18, + "status": "active", + "id": "0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jpmorgan-chase-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A/logo.png b/blockchains/arbitrum/assets/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A/logo.png new file mode 100644 index 0000000000000..df73bbccf4085 Binary files /dev/null and b/blockchains/arbitrum/assets/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A/logo.png differ diff --git a/blockchains/arbitrum/assets/0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1/info.json b/blockchains/arbitrum/assets/0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1/info.json index de1b520724936..e65f5e09fcaa1 100644 --- a/blockchains/arbitrum/assets/0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1/info.json +++ b/blockchains/arbitrum/assets/0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1/info.json @@ -18,8 +18,8 @@ "url": "https://coingecko.com/coins/dai/" }, { - "name": "twitter", - "url": "https://twitter.com/MakerDAO" + "name": "x", + "url": "https://x.com/MakerDAO" }, { "name": "whitepaper", @@ -30,4 +30,4 @@ "stablecoin", "defi" ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7/info.json b/blockchains/arbitrum/assets/0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7/info.json new file mode 100644 index 0000000000000..2bfe8825e76ea --- /dev/null +++ b/blockchains/arbitrum/assets/0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7/info.json @@ -0,0 +1,21 @@ +{ + "name": "WorldMobileToken", + "symbol": "WMTX", + "type": "ARBITRUM", + "decimals": 6, + "description": "World Mobile Token (WMTX) is the utility token that powers the World Mobile network, a decentralized mobile network at the forefront of the DePIN space. World Mobile aims to connect the world by leveraging blockchain technology and a sharing economy.", + "website": "https://worldmobiletoken.com/", + "explorer": "https://arbiscan.io/token/0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7", + "status": "active", + "id": "0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/world-mobile-token/" + }, + { + "name": "x", + "url": "https://x.com/wmtoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7/logo.png b/blockchains/arbitrum/assets/0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7/logo.png new file mode 100644 index 0000000000000..78a6538f0d2ab Binary files /dev/null and b/blockchains/arbitrum/assets/0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7/logo.png differ diff --git a/blockchains/arbitrum/assets/0xDFB8BE6F8c87f74295A87de951974362CedCFA30/info.json b/blockchains/arbitrum/assets/0xDFB8BE6F8c87f74295A87de951974362CedCFA30/info.json new file mode 100644 index 0000000000000..abb00d81e5c40 --- /dev/null +++ b/blockchains/arbitrum/assets/0xDFB8BE6F8c87f74295A87de951974362CedCFA30/info.json @@ -0,0 +1,21 @@ +{ + "name": "EdgeMatrix Computing network", + "type": "ARBITRUM", + "symbol": "EMC", + "decimals": 18, + "website": "https://edgematrix.pro/", + "description": "EMC (EdgeMatrix Computing) is a decentralized computing network in the AI era.", + "explorer": "https://arbiscan.io/token/0xdfb8be6f8c87f74295a87de951974362cedcfa30", + "status": "active", + "id": "0xDFB8BE6F8c87f74295A87de951974362CedCFA30", + "links": [ + { + "name": "x", + "url": "https://x.com/EMCprotocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/edge-matrix-computing/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xDFB8BE6F8c87f74295A87de951974362CedCFA30/logo.png b/blockchains/arbitrum/assets/0xDFB8BE6F8c87f74295A87de951974362CedCFA30/logo.png new file mode 100644 index 0000000000000..7c9c654401048 Binary files /dev/null and b/blockchains/arbitrum/assets/0xDFB8BE6F8c87f74295A87de951974362CedCFA30/logo.png differ diff --git a/blockchains/arbitrum/assets/0xDb40357fBC1eb1038C5dF94c1cD7B7Fd3F434480/info.json b/blockchains/arbitrum/assets/0xDb40357fBC1eb1038C5dF94c1cD7B7Fd3F434480/info.json new file mode 100644 index 0000000000000..9c4423b8f2745 --- /dev/null +++ b/blockchains/arbitrum/assets/0xDb40357fBC1eb1038C5dF94c1cD7B7Fd3F434480/info.json @@ -0,0 +1,21 @@ +{ + "name": "SpunkySDX", + "website": "https://spunkysdx.io/", + "description": "SpunkySDX is a contemporary cryptocurrency project anchored on blockchain technology and Artificial Intelligence to provide a secure, transparent, and efficient commercial ecosystem.", + "explorer": "https://arbiscan.io/token/0xdb40357fbc1eb1038c5df94c1cd7b7fd3f434480", + "type": "ARBITRUM", + "symbol": "SSDX", + "decimals": 18, + "status": "active", + "id": "0xDb40357fBC1eb1038C5dF94c1cD7B7Fd3F434480", + "links": [ + { + "name": "x", + "url": "https://x.com/spunkysdx" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spunkysdx/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xDb40357fBC1eb1038C5dF94c1cD7B7Fd3F434480/logo.png b/blockchains/arbitrum/assets/0xDb40357fBC1eb1038C5dF94c1cD7B7Fd3F434480/logo.png new file mode 100644 index 0000000000000..2980721092dc8 Binary files /dev/null and b/blockchains/arbitrum/assets/0xDb40357fBC1eb1038C5dF94c1cD7B7Fd3F434480/logo.png differ diff --git a/blockchains/arbitrum/assets/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015/info.json b/blockchains/arbitrum/assets/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015/info.json new file mode 100644 index 0000000000000..c8d9e5c40d582 --- /dev/null +++ b/blockchains/arbitrum/assets/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015/info.json @@ -0,0 +1,24 @@ +{ + "name": "Robinhood tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Robinhood tokenized stock (xStock) (HOODX) is a cryptocurrency and operates on the Solana platform. Robinhood tokenized stock (xStock) has a current supply of 30,999.85114263. The last known price of Robinhood tokenized stock (xStock) is 115.00870956 USD and is down -0.48 over the last 24 hours. It is currently trading on 28 active market(s) with $10,711,891.70 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/robinhood-xstock.", + "explorer": "https://arbiscan.io/token/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015", + "type": "ARBITRUM", + "symbol": "HOODX", + "decimals": 18, + "status": "active", + "id": "0xE1385FDd5ffB10081Cd52C56584F25EFa9084015", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/robinhood-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015/logo.png b/blockchains/arbitrum/assets/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015/logo.png new file mode 100644 index 0000000000000..41bfda5c82784 Binary files /dev/null and b/blockchains/arbitrum/assets/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015/logo.png differ diff --git a/blockchains/arbitrum/assets/0xE16e2548A576ad448FB014bBE85284D7f3542dF5/info.json b/blockchains/arbitrum/assets/0xE16e2548A576ad448FB014bBE85284D7f3542dF5/info.json new file mode 100644 index 0000000000000..b9a648c3197d2 --- /dev/null +++ b/blockchains/arbitrum/assets/0xE16e2548A576ad448FB014bBE85284D7f3542dF5/info.json @@ -0,0 +1,21 @@ +{ + "name": "Lumoz", + "website": "https://lumoz.org/", + "description": "Lumoz is a globally distributed modular computing protocol, offering a powerful, secure, and flexible computing platform for users worldwide.", + "explorer": "https://arbiscan.io/token/0xE16e2548A576ad448FB014bBE85284D7f3542dF5", + "type": "ARBITRUM", + "symbol": "MOZ", + "decimals": 18, + "status": "active", + "id": "0xE16e2548A576ad448FB014bBE85284D7f3542dF5", + "links": [ + { + "name": "x", + "url": "https://x.com/LumozOrg" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lumoz/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xE16e2548A576ad448FB014bBE85284D7f3542dF5/logo.png b/blockchains/arbitrum/assets/0xE16e2548A576ad448FB014bBE85284D7f3542dF5/logo.png new file mode 100644 index 0000000000000..09deda210d213 Binary files /dev/null and b/blockchains/arbitrum/assets/0xE16e2548A576ad448FB014bBE85284D7f3542dF5/logo.png differ diff --git a/blockchains/arbitrum/assets/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d/info.json b/blockchains/arbitrum/assets/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d/info.json new file mode 100644 index 0000000000000..139d281d70900 --- /dev/null +++ b/blockchains/arbitrum/assets/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d/info.json @@ -0,0 +1,24 @@ +{ + "name": "Gamestop tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Gamestop tokenized stock (xStock) (GMEX) is a cryptocurrency and operates on the Solana platform. Gamestop tokenized stock (xStock) has a current supply of 23,600 with 6,000 in circulation. The last known price of Gamestop tokenized stock (xStock) is 27.48685055 USD and is up 0.00 over the last 24 hours. More information can be found at https://assets.backed.fi/products/gamestop-xstock.", + "explorer": "https://arbiscan.io/token/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d", + "type": "ARBITRUM", + "symbol": "GMEX", + "decimals": 18, + "status": "active", + "id": "0xE5f6d3b2405ABdfE6F660e63202B25D23763160d", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gamestop-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d/logo.png b/blockchains/arbitrum/assets/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d/logo.png new file mode 100644 index 0000000000000..a0ca86f1f3793 Binary files /dev/null and b/blockchains/arbitrum/assets/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d/logo.png differ diff --git a/blockchains/arbitrum/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json b/blockchains/arbitrum/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json index 9b9b1ec7302ad..b72370fe56986 100644 --- a/blockchains/arbitrum/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json +++ b/blockchains/arbitrum/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json @@ -10,8 +10,8 @@ "id": "0xEB466342C4d449BC9f53A865D5Cb90586f405215", "links": [ { - "name": "twitter", - "url": "https://twitter.com/axelarcore" + "name": "x", + "url": "https://x.com/axelarcore" }, { "name": "github", @@ -63,7 +63,6 @@ } ], "tags": [ - "stablecoin", "wrapped" ] } diff --git a/blockchains/arbitrum/assets/0xEEdb0273c5Af792745180e9fF568cD01550fFA13/info.json b/blockchains/arbitrum/assets/0xEEdb0273c5Af792745180e9fF568cD01550fFA13/info.json new file mode 100644 index 0000000000000..ddbc1e59f29a8 --- /dev/null +++ b/blockchains/arbitrum/assets/0xEEdb0273c5Af792745180e9fF568cD01550fFA13/info.json @@ -0,0 +1,24 @@ +{ + "name": "Exxon Mobil tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Exxon Mobil xStock (XOMx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. XOMx tracks the price of Exxon Mobil Corporation (the underlying). XOMx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Exxon Mobil Corporation, whilst maintaining the benefits of blockchain technology. ExxonMobil is a multinational oil and gas corporation that operates in over 100 countries.", + "explorer": "https://arbiscan.io/token/0xEEdb0273c5Af792745180e9fF568cD01550fFA13", + "type": "ARBITRUM", + "symbol": "XOMX", + "decimals": 18, + "status": "active", + "id": "0xEEdb0273c5Af792745180e9fF568cD01550fFA13", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/exxon-mobil-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xEEdb0273c5Af792745180e9fF568cD01550fFA13/logo.png b/blockchains/arbitrum/assets/0xEEdb0273c5Af792745180e9fF568cD01550fFA13/logo.png new file mode 100644 index 0000000000000..7051dcb4d3e90 Binary files /dev/null and b/blockchains/arbitrum/assets/0xEEdb0273c5Af792745180e9fF568cD01550fFA13/logo.png differ diff --git a/blockchains/arbitrum/assets/0xEe9801669C6138E84bD50dEB500827b776777d28/info.json b/blockchains/arbitrum/assets/0xEe9801669C6138E84bD50dEB500827b776777d28/info.json new file mode 100644 index 0000000000000..1967f91919d1f --- /dev/null +++ b/blockchains/arbitrum/assets/0xEe9801669C6138E84bD50dEB500827b776777d28/info.json @@ -0,0 +1,11 @@ +{ + "name": "O3 Swap", + "type": "ARBITRUM", + "symbol": "O3", + "decimals": 18, + "website": "https://o3swap.com", + "description": "O3 Swap Token (O3) is a governance token issued by O3 Swap. It is an important mediator to promote the development of the O3 Swap network. All participants and developers are encouraged to participate in the maintenance of the overall ecological network by staking, voting, etc. we are committed to providing a one-stop aggregation & exchange platform for users and offering developers access to an open, distributed, friendly, and secure trading environment.", + "explorer": "https://arbiscan.io/token/0xee9801669c6138e84bd50deb500827b776777d28", + "status": "active", + "id": "0xEe9801669C6138E84bD50dEB500827b776777d28" +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xEe9801669C6138E84bD50dEB500827b776777d28/logo.png b/blockchains/arbitrum/assets/0xEe9801669C6138E84bD50dEB500827b776777d28/logo.png new file mode 100644 index 0000000000000..8327b516fef6e Binary files /dev/null and b/blockchains/arbitrum/assets/0xEe9801669C6138E84bD50dEB500827b776777d28/logo.png differ diff --git a/blockchains/arbitrum/assets/0xEf04804E1e474D3F9B73184D7ef5D786F3Fce930/info.json b/blockchains/arbitrum/assets/0xEf04804E1e474D3F9B73184D7ef5D786F3Fce930/info.json new file mode 100644 index 0000000000000..0baaa246d489f --- /dev/null +++ b/blockchains/arbitrum/assets/0xEf04804E1e474D3F9B73184D7ef5D786F3Fce930/info.json @@ -0,0 +1,25 @@ +{ + "name": "Wall Street Games", + "website": "https://wsg.gg", + "description": "Wall Street Games is a next generation hybrid blockchain-based online gaming platform, where players battle each other in fun & addicting simple games for rewards in cryptocurrencies!", + "explorer": "https://arbiscan.io/token/0xEf04804E1e474D3F9B73184D7ef5D786F3Fce930", + "type": "ARBITRUM", + "symbol": "WSG", + "decimals": 18, + "status": "active", + "id": "0xEf04804E1e474D3F9B73184D7ef5D786F3Fce930", + "links": [ + { + "name": "x", + "url": "https://x.com/WSGToken" + }, + { + "name": "telegram", + "url": "https://t.me/wallstreetgamesarb" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wall-street-games-new/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xEf04804E1e474D3F9B73184D7ef5D786F3Fce930/logo.png b/blockchains/arbitrum/assets/0xEf04804E1e474D3F9B73184D7ef5D786F3Fce930/logo.png new file mode 100644 index 0000000000000..b343e016ab2c4 Binary files /dev/null and b/blockchains/arbitrum/assets/0xEf04804E1e474D3F9B73184D7ef5D786F3Fce930/logo.png differ diff --git a/blockchains/arbitrum/assets/0xF18e4466F26B4cA55bbAb890b314a54976E45B17/info.json b/blockchains/arbitrum/assets/0xF18e4466F26B4cA55bbAb890b314a54976E45B17/info.json new file mode 100644 index 0000000000000..67df9c22d7e7a --- /dev/null +++ b/blockchains/arbitrum/assets/0xF18e4466F26B4cA55bbAb890b314a54976E45B17/info.json @@ -0,0 +1,26 @@ +{ + "name": "Game7", + "type": "ARBITRUM", + "symbol": "G7", + "decimals": 18, + "description": "Game7 is a permissionless, modular Web3 gaming ecosystem designed to solve the most critical challenges for players and developers: infrastructure, distribution, and sustained player engagement.", + "website": "https://game7.io/", + "explorer": "https://arbiscan.io/token/0xf18e4466f26b4ca55bbab890b314a54976e45b17", + "id": "0xF18e4466F26B4cA55bbAb890b314a54976E45B17", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/G7_DAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/game7/" + } + + ], + "tags": [ + "gamefi" + ] +} + \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xF18e4466F26B4cA55bbAb890b314a54976E45B17/logo.png b/blockchains/arbitrum/assets/0xF18e4466F26B4cA55bbAb890b314a54976E45B17/logo.png new file mode 100644 index 0000000000000..312a0fd5a0af1 Binary files /dev/null and b/blockchains/arbitrum/assets/0xF18e4466F26B4cA55bbAb890b314a54976E45B17/logo.png differ diff --git a/blockchains/arbitrum/assets/0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1/info.json b/blockchains/arbitrum/assets/0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1/info.json new file mode 100644 index 0000000000000..ee62d97f1417f --- /dev/null +++ b/blockchains/arbitrum/assets/0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1/info.json @@ -0,0 +1,15 @@ +{ + "name": "Schwab International Equity xStock", + "type": "ARBITRUM", + "symbol": "SCHFx", + "decimals": 18, + "description": "Schwab International Equity xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://arbiscan.io/token/0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1", + "status": "active", + "id": "0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1/logo.png b/blockchains/arbitrum/assets/0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1/logo.png new file mode 100644 index 0000000000000..d55ca6edb40ba Binary files /dev/null and b/blockchains/arbitrum/assets/0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1/logo.png differ diff --git a/blockchains/arbitrum/assets/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e/info.json b/blockchains/arbitrum/assets/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e/info.json new file mode 100644 index 0000000000000..a1e8a4d1ccffe --- /dev/null +++ b/blockchains/arbitrum/assets/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e/info.json @@ -0,0 +1,24 @@ +{ + "name": "Novo Nordisk tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Novo Nordisk xStock (NVOx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. NVOx tracks the price of Novo Nordisk A/S, (the underlying). NVOx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Novo Nordisk A/S, whilst maintaining the benefits of blockchain technology. Novo Nordisk is a leading global healthcare company, founded in 1923 and headquartered in Denmark.", + "explorer": "https://arbiscan.io/token/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e", + "type": "ARBITRUM", + "symbol": "NVOX", + "decimals": 18, + "status": "active", + "id": "0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/novo-nordisk-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e/logo.png b/blockchains/arbitrum/assets/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e/logo.png new file mode 100644 index 0000000000000..c866fd6193ce8 Binary files /dev/null and b/blockchains/arbitrum/assets/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e/logo.png differ diff --git a/blockchains/arbitrum/assets/0xFA5Ed56A203466CbBC2430a43c66b9D8723528E7/info.json b/blockchains/arbitrum/assets/0xFA5Ed56A203466CbBC2430a43c66b9D8723528E7/info.json new file mode 100644 index 0000000000000..031d34a44121b --- /dev/null +++ b/blockchains/arbitrum/assets/0xFA5Ed56A203466CbBC2430a43c66b9D8723528E7/info.json @@ -0,0 +1,37 @@ +{ + "name": "EURA", + "website": "https://www.angle.money/", + "description": "EURA is an over-collateralized and decentralized Euro stablecoin by the Angle Protocol.", + "explorer": "https://arbiscan.io/token/0xFA5Ed56A203466CbBC2430a43c66b9D8723528E7", + "type": "ARBITRUM", + "symbol": "EURA", + "decimals": 18, + "status": "active", + "tags": [ + "defi", + "stablecoin" + ], + "id": "0xFA5Ed56A203466CbBC2430a43c66b9D8723528E7", + "links": [ + { + "name": "github", + "url": "https://github.com/AngleProtocol" + }, + { + "name": "x", + "url": "https://x.com/AngleProtocol" + }, + { + "name": "docs", + "url": "https://docs.angle.money" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ageur" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZheVAnFt6h" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xFA5Ed56A203466CbBC2430a43c66b9D8723528E7/logo.png b/blockchains/arbitrum/assets/0xFA5Ed56A203466CbBC2430a43c66b9D8723528E7/logo.png new file mode 100644 index 0000000000000..b80f4f7f9341b Binary files /dev/null and b/blockchains/arbitrum/assets/0xFA5Ed56A203466CbBC2430a43c66b9D8723528E7/logo.png differ diff --git a/blockchains/arbitrum/assets/0xFEa7a6a0B346362BF88A9e4A88416B77a57D6c2A/info.json b/blockchains/arbitrum/assets/0xFEa7a6a0B346362BF88A9e4A88416B77a57D6c2A/info.json new file mode 100644 index 0000000000000..db86413ab3d9e --- /dev/null +++ b/blockchains/arbitrum/assets/0xFEa7a6a0B346362BF88A9e4A88416B77a57D6c2A/info.json @@ -0,0 +1,25 @@ +{ + "name": "Magic Internet Money", + "website": "https://abracadabra.money/", + "description": "MIM is a stablecoin backed by interest bearing collateral", + "explorer": "https://arbiscan.io/token/0xfea7a6a0b346362bf88a9e4a88416b77a57d6c2a", + "type": "ARBITRUM", + "symbol": "MIM", + "decimals": 18, + "status": "active", + "id": "0xFEa7a6a0B346362BF88A9e4A88416B77a57D6c2A", + "links": [ + { + "name": "github", + "url": "https://github.com/Abracadabra-money/magic-internet-money" + }, + { + "name": "x", + "url": "https://x.com/MIM_Spell" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/magic-internet-money/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xFEa7a6a0B346362BF88A9e4A88416B77a57D6c2A/logo.png b/blockchains/arbitrum/assets/0xFEa7a6a0B346362BF88A9e4A88416B77a57D6c2A/logo.png new file mode 100644 index 0000000000000..4101813265fa1 Binary files /dev/null and b/blockchains/arbitrum/assets/0xFEa7a6a0B346362BF88A9e4A88416B77a57D6c2A/logo.png differ diff --git a/blockchains/arbitrum/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/info.json b/blockchains/arbitrum/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/info.json new file mode 100644 index 0000000000000..d63d8233d86cd --- /dev/null +++ b/blockchains/arbitrum/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/info.json @@ -0,0 +1,28 @@ +{ + "name": "Folks Finance", + "type": "ARBITRUM", + "symbol": "FOLKS", + "decimals": 6, + "website": "https://folks.finance", + "description": "Folks Finance is a crosschain decentralized finance (DeFi) protocol that enables users to supply, borrow, and manage digital assets across multiple blockchains from a single platform.", + "explorer": "https://arbiscan.io/token/0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b", + "status": "active", + "id": "0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B", + "links": [ + { + "name": "x", + "url": "https://x.com/FolksFinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/folks-finance/" + }, + { + "name": "whitepaper", + "url": "https://docs.xapp.folks.finance/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/logo.png b/blockchains/arbitrum/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/logo.png new file mode 100644 index 0000000000000..ea3dae362320d Binary files /dev/null and b/blockchains/arbitrum/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/logo.png differ diff --git a/blockchains/arbitrum/assets/0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8/info.json b/blockchains/arbitrum/assets/0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8/info.json index b505b8991e2ec..85bab77a5aa34 100644 --- a/blockchains/arbitrum/assets/0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8/info.json +++ b/blockchains/arbitrum/assets/0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8/info.json @@ -1,7 +1,7 @@ { - "name": "USD Coin (Arb1)", + "name": "Bridged USDC", "type": "ARBITRUM", - "symbol": "USDC", + "symbol": "USDC.e", "decimals": 6, "website": "https://www.centre.io/usdc", "description": "USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.", @@ -21,8 +21,5 @@ "name": "blog", "url": "https://centre.io/blog" } - ], - "tags": [ - "stablecoin" ] -} \ No newline at end of file +} diff --git a/blockchains/arbitrum/assets/0xFa7F8980b0f1E64A2062791cc3b0871572f1F7f0/info.json b/blockchains/arbitrum/assets/0xFa7F8980b0f1E64A2062791cc3b0871572f1F7f0/info.json new file mode 100644 index 0000000000000..b35074cd9c129 --- /dev/null +++ b/blockchains/arbitrum/assets/0xFa7F8980b0f1E64A2062791cc3b0871572f1F7f0/info.json @@ -0,0 +1,38 @@ +{ + "name": "Uniswap", + "website": "https://uniswap.org", + "description": "UNI is the Uniswap protocol token. Uniswap is a decentralized protocol for automated liquidity provision on Ethereum.", + "explorer": "https://arbiscan.io/token/0xFa7F8980b0f1E64A2062791cc3b0871572f1F7f0", + "research": "https://research.binance.com/en/projects/uniswap", + "type": "ARBITRUM", + "symbol": "UNI", + "decimals": 18, + "status": "active", + "id": "0xFa7F8980b0f1E64A2062791cc3b0871572f1F7f0", + "tags": [ + "defi", + "governance" + ], + "links": [ + { + "name": "discord", + "url": "https://discord.com/invite/XErMcTq" + }, + { + "name": "x", + "url": "https://x.com/UniswapProtocol" + }, + { + "name": "blog", + "url": "https://uniswap.org/blog/uni/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/uniswap/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/uniswap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xFa7F8980b0f1E64A2062791cc3b0871572f1F7f0/logo.png b/blockchains/arbitrum/assets/0xFa7F8980b0f1E64A2062791cc3b0871572f1F7f0/logo.png new file mode 100644 index 0000000000000..893ef55cb23c0 Binary files /dev/null and b/blockchains/arbitrum/assets/0xFa7F8980b0f1E64A2062791cc3b0871572f1F7f0/logo.png differ diff --git a/blockchains/arbitrum/assets/0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9/info.json b/blockchains/arbitrum/assets/0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9/info.json index db05c432d7ba4..b5010b676ed88 100644 --- a/blockchains/arbitrum/assets/0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9/info.json +++ b/blockchains/arbitrum/assets/0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9/info.json @@ -18,8 +18,8 @@ "url": "https://coingecko.com/coins/tether/" }, { - "name": "twitter", - "url": "https://twitter.com/Tether_to" + "name": "x", + "url": "https://x.com/Tether_to" }, { "name": "whitepaper", @@ -29,4 +29,4 @@ "tags": [ "stablecoin" ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xa0b862F60edEf4452F25B4160F177db44DeB6Cf1/info.json b/blockchains/arbitrum/assets/0xa0b862F60edEf4452F25B4160F177db44DeB6Cf1/info.json index 7fa09f2897802..cc698a9d4738a 100644 --- a/blockchains/arbitrum/assets/0xa0b862F60edEf4452F25B4160F177db44DeB6Cf1/info.json +++ b/blockchains/arbitrum/assets/0xa0b862F60edEf4452F25B4160F177db44DeB6Cf1/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/gnosis" }, { - "name": "twitter", - "url": "https://twitter.com/gnosisPM" + "name": "x", + "url": "https://x.com/gnosisPM" }, { "name": "reddit", diff --git a/blockchains/arbitrum/assets/0xa150245f155778e749185C9446e9e59E406674eF/info.json b/blockchains/arbitrum/assets/0xa150245f155778e749185C9446e9e59E406674eF/info.json new file mode 100644 index 0000000000000..a243931932f2c --- /dev/null +++ b/blockchains/arbitrum/assets/0xa150245f155778e749185C9446e9e59E406674eF/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Berkshire Hathaway Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0xa150245f155778e749185C9446e9e59E406674eF", + "type": "ARBITRUM", + "symbol": "WBRK.BX", + "decimals": 18, + "status": "active", + "id": "0xa150245f155778e749185C9446e9e59E406674eF", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-berkshire-hathaway-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xa150245f155778e749185C9446e9e59E406674eF/logo.png b/blockchains/arbitrum/assets/0xa150245f155778e749185C9446e9e59E406674eF/logo.png new file mode 100644 index 0000000000000..b7ed07687dc7d Binary files /dev/null and b/blockchains/arbitrum/assets/0xa150245f155778e749185C9446e9e59E406674eF/logo.png differ diff --git a/blockchains/arbitrum/assets/0xa24D9c43D64c76aCD962003647FD43a85eb44Db8/info.json b/blockchains/arbitrum/assets/0xa24D9c43D64c76aCD962003647FD43a85eb44Db8/info.json new file mode 100644 index 0000000000000..e73c4fc4b2397 --- /dev/null +++ b/blockchains/arbitrum/assets/0xa24D9c43D64c76aCD962003647FD43a85eb44Db8/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Walmart Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0xa24D9c43D64c76aCD962003647FD43a85eb44Db8", + "type": "ARBITRUM", + "symbol": "WWMTX", + "decimals": 18, + "status": "active", + "id": "0xa24D9c43D64c76aCD962003647FD43a85eb44Db8", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-walmart-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xa24D9c43D64c76aCD962003647FD43a85eb44Db8/logo.png b/blockchains/arbitrum/assets/0xa24D9c43D64c76aCD962003647FD43a85eb44Db8/logo.png new file mode 100644 index 0000000000000..57731b24051f0 Binary files /dev/null and b/blockchains/arbitrum/assets/0xa24D9c43D64c76aCD962003647FD43a85eb44Db8/logo.png differ diff --git a/blockchains/arbitrum/assets/0xa3B6Fe1a923585bb828fCFAa460B78EeFD5aE2EC/info.json b/blockchains/arbitrum/assets/0xa3B6Fe1a923585bb828fCFAa460B78EeFD5aE2EC/info.json new file mode 100644 index 0000000000000..937b47af9a52f --- /dev/null +++ b/blockchains/arbitrum/assets/0xa3B6Fe1a923585bb828fCFAa460B78EeFD5aE2EC/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Palantir Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0xa3B6Fe1a923585bb828fCFAa460B78EeFD5aE2EC", + "type": "ARBITRUM", + "symbol": "WPLTRX", + "decimals": 18, + "status": "active", + "id": "0xa3B6Fe1a923585bb828fCFAa460B78EeFD5aE2EC", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-palantir-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xa3B6Fe1a923585bb828fCFAa460B78EeFD5aE2EC/logo.png b/blockchains/arbitrum/assets/0xa3B6Fe1a923585bb828fCFAa460B78EeFD5aE2EC/logo.png new file mode 100644 index 0000000000000..c18ee4360aef8 Binary files /dev/null and b/blockchains/arbitrum/assets/0xa3B6Fe1a923585bb828fCFAa460B78EeFD5aE2EC/logo.png differ diff --git a/blockchains/arbitrum/assets/0xa4f63404b58C3efD9Db6D53352BD386fFa174e5A/info.json b/blockchains/arbitrum/assets/0xa4f63404b58C3efD9Db6D53352BD386fFa174e5A/info.json new file mode 100644 index 0000000000000..2055eae2b8ebb --- /dev/null +++ b/blockchains/arbitrum/assets/0xa4f63404b58C3efD9Db6D53352BD386fFa174e5A/info.json @@ -0,0 +1,21 @@ +{ + "name": "Miracleplay", + "type": "ARBITRUM", + "symbol": "MPT", + "decimals": 18, + "website": "https://miracleplay.gg/", + "description": "Miracleplay is a revolutionary platform offering profitable tournament gaming, committed to creating a democratic, transparent, and secure environment for players.", + "explorer": "https://arbiscan.io/token/0xa4f63404b58C3efD9Db6D53352BD386fFa174e5A", + "status": "active", + "id": "0xa4f63404b58C3efD9Db6D53352BD386fFa174e5A", + "links": [ + { + "name": "x", + "url": "https://x.com/miracleplaygg" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/miracle-play/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xa4f63404b58C3efD9Db6D53352BD386fFa174e5A/logo.png b/blockchains/arbitrum/assets/0xa4f63404b58C3efD9Db6D53352BD386fFa174e5A/logo.png new file mode 100644 index 0000000000000..94b0d0601e0b9 Binary files /dev/null and b/blockchains/arbitrum/assets/0xa4f63404b58C3efD9Db6D53352BD386fFa174e5A/logo.png differ diff --git a/blockchains/arbitrum/assets/0xa753A7395cAe905Cd615Da0B82A53E0560f250af/info.json b/blockchains/arbitrum/assets/0xa753A7395cAe905Cd615Da0B82A53E0560f250af/info.json new file mode 100644 index 0000000000000..6bf46e582b238 --- /dev/null +++ b/blockchains/arbitrum/assets/0xa753A7395cAe905Cd615Da0B82A53E0560f250af/info.json @@ -0,0 +1,24 @@ +{ + "name": "Nasdaq tokenized ETF (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Nasdaq tokenized ETF (xStock) (QQQX) is a cryptocurrency and operates on the Solana platform. Nasdaq tokenized ETF (xStock) has a current supply of 5,999.92232021. The last known price of Nasdaq tokenized ETF (xStock) is 593.40939583 USD and is up 0.98 over the last 24 hours. It is currently trading on 15 active market(s) with $930,481.21 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/nasdaq-xstock.", + "explorer": "https://arbiscan.io/token/0xa753A7395cAe905Cd615Da0B82A53E0560f250af", + "type": "ARBITRUM", + "symbol": "QQQX", + "decimals": 18, + "status": "active", + "id": "0xa753A7395cAe905Cd615Da0B82A53E0560f250af", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nasdaq-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xa753A7395cAe905Cd615Da0B82A53E0560f250af/logo.png b/blockchains/arbitrum/assets/0xa753A7395cAe905Cd615Da0B82A53E0560f250af/logo.png new file mode 100644 index 0000000000000..7151d49b76d09 Binary files /dev/null and b/blockchains/arbitrum/assets/0xa753A7395cAe905Cd615Da0B82A53E0560f250af/logo.png differ diff --git a/blockchains/arbitrum/assets/0xa78d8321B20c4Ef90eCd72f2588AA985A4BDb684/info.json b/blockchains/arbitrum/assets/0xa78d8321B20c4Ef90eCd72f2588AA985A4BDb684/info.json new file mode 100644 index 0000000000000..ceec2a78cc767 --- /dev/null +++ b/blockchains/arbitrum/assets/0xa78d8321B20c4Ef90eCd72f2588AA985A4BDb684/info.json @@ -0,0 +1,17 @@ +{ + "name": "Autonomi", + "type": "ARBITRUM", + "symbol": "ANT", + "decimals": 18, + "website": "https://autonomi.com/", + "description": "ANT is the utility token of Autonomi, a decentralized network running on everyday devices. Self-encryption, quantum-safe security, and lifetime storage by pooling spare device capacity. It enables secure data storage, communication, and services without middlemen, ensuring privacy and accessibility.", + "explorer": "https://arbiscan.io/token/0xa78d8321b20c4ef90ecd72f2588aa985a4bdb684", + "status": "active", + "id": "0xa78d8321B20c4Ef90eCd72f2588AA985A4BDb684", + "links": [ + { + "name": "x", + "url": "https://x.com/WithAutonomi" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xa78d8321B20c4Ef90eCd72f2588AA985A4BDb684/logo.png b/blockchains/arbitrum/assets/0xa78d8321B20c4Ef90eCd72f2588AA985A4BDb684/logo.png new file mode 100644 index 0000000000000..39f842c87a4f7 Binary files /dev/null and b/blockchains/arbitrum/assets/0xa78d8321B20c4Ef90eCd72f2588AA985A4BDb684/logo.png differ diff --git a/blockchains/arbitrum/assets/0xa8F31436FFE4E71f51B2D65b7D5a5c457AE2000f/info.json b/blockchains/arbitrum/assets/0xa8F31436FFE4E71f51B2D65b7D5a5c457AE2000f/info.json new file mode 100644 index 0000000000000..f1bc3576d7518 --- /dev/null +++ b/blockchains/arbitrum/assets/0xa8F31436FFE4E71f51B2D65b7D5a5c457AE2000f/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped International Business Machines Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0xa8F31436FFE4E71f51B2D65b7D5a5c457AE2000f", + "type": "ARBITRUM", + "symbol": "WIBMX", + "decimals": 18, + "status": "active", + "id": "0xa8F31436FFE4E71f51B2D65b7D5a5c457AE2000f", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-international-business-machines-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xa8F31436FFE4E71f51B2D65b7D5a5c457AE2000f/logo.png b/blockchains/arbitrum/assets/0xa8F31436FFE4E71f51B2D65b7D5a5c457AE2000f/logo.png new file mode 100644 index 0000000000000..4b74437e22abe Binary files /dev/null and b/blockchains/arbitrum/assets/0xa8F31436FFE4E71f51B2D65b7D5a5c457AE2000f/logo.png differ diff --git a/blockchains/arbitrum/assets/0xa90424D5D3E770e8644103AB503ed775dD1318FD/info.json b/blockchains/arbitrum/assets/0xa90424D5D3E770e8644103AB503ed775dD1318FD/info.json new file mode 100644 index 0000000000000..ec839d586cc4b --- /dev/null +++ b/blockchains/arbitrum/assets/0xa90424D5D3E770e8644103AB503ed775dD1318FD/info.json @@ -0,0 +1,24 @@ +{ + "name": "Procter & Gamble tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Procter & Gamble xStock (PGx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. PGx tracks the price of The Procter & Gamble Company (the underlying). PGx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of The Procter & Gamble Company, whilst maintaining the benefits of blockchain technology. Procter & Gamble is a global consumer goods company, founded over 180 years ago. It's known for its vast portfolio of trusted brands and its commitment to innovation and ethical business practices.", + "explorer": "https://arbiscan.io/token/0xa90424D5D3E770e8644103AB503ed775dD1318FD", + "type": "ARBITRUM", + "symbol": "PGX", + "decimals": 18, + "status": "active", + "id": "0xa90424D5D3E770e8644103AB503ed775dD1318FD", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/procter-gamble-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xa90424D5D3E770e8644103AB503ed775dD1318FD/logo.png b/blockchains/arbitrum/assets/0xa90424D5D3E770e8644103AB503ed775dD1318FD/logo.png new file mode 100644 index 0000000000000..e79aa1665329d Binary files /dev/null and b/blockchains/arbitrum/assets/0xa90424D5D3E770e8644103AB503ed775dD1318FD/logo.png differ diff --git a/blockchains/arbitrum/assets/0xaB635f839f81A12dC8Db8Ab31006af14E26292fE/info.json b/blockchains/arbitrum/assets/0xaB635f839f81A12dC8Db8Ab31006af14E26292fE/info.json new file mode 100644 index 0000000000000..ada58a22d89e0 --- /dev/null +++ b/blockchains/arbitrum/assets/0xaB635f839f81A12dC8Db8Ab31006af14E26292fE/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped JPMorgan Chase Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0xaB635f839f81A12dC8Db8Ab31006af14E26292fE", + "type": "ARBITRUM", + "symbol": "WJPMX", + "decimals": 18, + "status": "active", + "id": "0xaB635f839f81A12dC8Db8Ab31006af14E26292fE", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-jpmorgan-chase-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xaB635f839f81A12dC8Db8Ab31006af14E26292fE/logo.png b/blockchains/arbitrum/assets/0xaB635f839f81A12dC8Db8Ab31006af14E26292fE/logo.png new file mode 100644 index 0000000000000..85d32ed822d6e Binary files /dev/null and b/blockchains/arbitrum/assets/0xaB635f839f81A12dC8Db8Ab31006af14E26292fE/logo.png differ diff --git a/blockchains/arbitrum/assets/0xaDDfd192daA492b772EA5c180e79570dEC92fF5c/info.json b/blockchains/arbitrum/assets/0xaDDfd192daA492b772EA5c180e79570dEC92fF5c/info.json new file mode 100644 index 0000000000000..3e06821c538bf --- /dev/null +++ b/blockchains/arbitrum/assets/0xaDDfd192daA492b772EA5c180e79570dEC92fF5c/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE EuropaCoin", + "type": "ARBITRUM", + "symbol": "FAKE EURC", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://arbiscan.io/token/0xaDDfd192daA492b772EA5c180e79570dEC92fF5c", + "explorer": "https://arbiscan.io/token/0xaDDfd192daA492b772EA5c180e79570dEC92fF5c", + "status": "spam", + "id": "0xaDDfd192daA492b772EA5c180e79570dEC92fF5c" +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xaDDfd192daA492b772EA5c180e79570dEC92fF5c/logo.png b/blockchains/arbitrum/assets/0xaDDfd192daA492b772EA5c180e79570dEC92fF5c/logo.png new file mode 100644 index 0000000000000..3cf3b0c4dfe30 Binary files /dev/null and b/blockchains/arbitrum/assets/0xaDDfd192daA492b772EA5c180e79570dEC92fF5c/logo.png differ diff --git a/blockchains/arbitrum/assets/0xaa54e84A3e6e5A80288d2C2f8e36eA5cA3A3Ca30/info.json b/blockchains/arbitrum/assets/0xaa54e84A3e6e5A80288d2C2f8e36eA5cA3A3Ca30/info.json index b992070907bb5..f99ffdddebd29 100644 --- a/blockchains/arbitrum/assets/0xaa54e84A3e6e5A80288d2C2f8e36eA5cA3A3Ca30/info.json +++ b/blockchains/arbitrum/assets/0xaa54e84A3e6e5A80288d2C2f8e36eA5cA3A3Ca30/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/SharbiPortal" }, { - "name": "twitter", - "url": "https://twitter.com/SharbiToken" + "name": "x", + "url": "https://x.com/SharbiToken" } ], "tags": [ diff --git a/blockchains/arbitrum/assets/0xabD587f2607542723b17f14d00d99b987C29b074/info.json b/blockchains/arbitrum/assets/0xabD587f2607542723b17f14d00d99b987C29b074/info.json new file mode 100644 index 0000000000000..d6d8b8e415dd2 --- /dev/null +++ b/blockchains/arbitrum/assets/0xabD587f2607542723b17f14d00d99b987C29b074/info.json @@ -0,0 +1,24 @@ +{ + "name": "SmarDex Token", + "type": "ARBITRUM", + "symbol": "SDEX", + "decimals": 18, + "description": "SmarDex introduces USDN, a synthetic dollar that is set to replace traditional, centralized synthetic dollars like Ethena, which are becoming obsolete. USDN operates as a fully decentralized, on-chain solution designed to provide stability and reliability in the fast-paced crypto environment.", + "website": "https://smardex.io/", + "explorer": "https://arbiscan.io/token/0xabd587f2607542723b17f14d00d99b987c29b074", + "id": "0xabD587f2607542723b17f14d00d99b987C29b074", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/SmarDex" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/smardex/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xabD587f2607542723b17f14d00d99b987C29b074/logo.png b/blockchains/arbitrum/assets/0xabD587f2607542723b17f14d00d99b987C29b074/logo.png new file mode 100644 index 0000000000000..d193ae876d17c Binary files /dev/null and b/blockchains/arbitrum/assets/0xabD587f2607542723b17f14d00d99b987C29b074/logo.png differ diff --git a/blockchains/arbitrum/assets/0xac85d37acbadCa37545E21ab0fB991bcE8c1187C/info.json b/blockchains/arbitrum/assets/0xac85d37acbadCa37545E21ab0fB991bcE8c1187C/info.json new file mode 100644 index 0000000000000..9205125c9f4a2 --- /dev/null +++ b/blockchains/arbitrum/assets/0xac85d37acbadCa37545E21ab0fB991bcE8c1187C/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Amazon Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0xac85d37acbadCa37545E21ab0fB991bcE8c1187C", + "type": "ARBITRUM", + "symbol": "WAMZNX", + "decimals": 18, + "status": "active", + "id": "0xac85d37acbadCa37545E21ab0fB991bcE8c1187C", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-amazon-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xac85d37acbadCa37545E21ab0fB991bcE8c1187C/logo.png b/blockchains/arbitrum/assets/0xac85d37acbadCa37545E21ab0fB991bcE8c1187C/logo.png new file mode 100644 index 0000000000000..019ab57f00d8b Binary files /dev/null and b/blockchains/arbitrum/assets/0xac85d37acbadCa37545E21ab0fB991bcE8c1187C/logo.png differ diff --git a/blockchains/arbitrum/assets/0xad5cdc3340904285B8159089974A99a1A09EB4C0/info.json b/blockchains/arbitrum/assets/0xad5cdc3340904285B8159089974A99a1A09EB4C0/info.json new file mode 100644 index 0000000000000..af59c7daef145 --- /dev/null +++ b/blockchains/arbitrum/assets/0xad5cdc3340904285B8159089974A99a1A09EB4C0/info.json @@ -0,0 +1,24 @@ +{ + "name": "Chevron tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Chevron xStock (CVXx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. CVXx tracks the price of Chevron Corporation (the underlying). CVXx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Chevron Corporation, whilst maintaining the benefits of blockchain technology. Key Benefits Chevron Corporation is a major American multinational energy corporation, a leading global oil and gas company known for its vertically integrated operations, spanning exploration, production, refining, marketing, and transportation.", + "explorer": "https://arbiscan.io/token/0xad5cdc3340904285B8159089974A99a1A09EB4C0", + "type": "ARBITRUM", + "symbol": "CVXX", + "decimals": 18, + "status": "active", + "id": "0xad5cdc3340904285B8159089974A99a1A09EB4C0", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chevron-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xad5cdc3340904285B8159089974A99a1A09EB4C0/logo.png b/blockchains/arbitrum/assets/0xad5cdc3340904285B8159089974A99a1A09EB4C0/logo.png new file mode 100644 index 0000000000000..6d22d110bd6b6 Binary files /dev/null and b/blockchains/arbitrum/assets/0xad5cdc3340904285B8159089974A99a1A09EB4C0/logo.png differ diff --git a/blockchains/arbitrum/assets/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED/info.json b/blockchains/arbitrum/assets/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED/info.json new file mode 100644 index 0000000000000..247bc6d3fc63e --- /dev/null +++ b/blockchains/arbitrum/assets/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED/info.json @@ -0,0 +1,15 @@ +{ + "name": "Bitmine xStock", + "type": "ARBITRUM", + "symbol": "BMNRx", + "decimals": 18, + "description": "Bitmine xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://arbiscan.io/token/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED", + "status": "active", + "id": "0xaeB681B69E5094E04d11BCeF51A71358A374C3ED", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED/logo.png b/blockchains/arbitrum/assets/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED/logo.png new file mode 100644 index 0000000000000..fb7784c71a3a4 Binary files /dev/null and b/blockchains/arbitrum/assets/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED/logo.png differ diff --git a/blockchains/arbitrum/assets/0xaf88d065e77c8cC2239327C5EDb3A432268e5831/info.json b/blockchains/arbitrum/assets/0xaf88d065e77c8cC2239327C5EDb3A432268e5831/info.json new file mode 100644 index 0000000000000..dbb86373acbcd --- /dev/null +++ b/blockchains/arbitrum/assets/0xaf88d065e77c8cC2239327C5EDb3A432268e5831/info.json @@ -0,0 +1,28 @@ +{ + "name": "USDC", + "type": "ARBITRUM", + "symbol": "USDC", + "decimals": 6, + "website": "https://www.centre.io/usdc", + "description": "USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.", + "explorer": "https://arbiscan.io/token/0xaf88d065e77c8cc2239327c5edb3a432268e5831", + "status": "active", + "id": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/usd-coin/" + }, + { + "name": "blog", + "url": "https://centre.io/blog" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xaf88d065e77c8cC2239327C5EDb3A432268e5831/logo.png b/blockchains/arbitrum/assets/0xaf88d065e77c8cC2239327C5EDb3A432268e5831/logo.png new file mode 100644 index 0000000000000..a135c887a8614 Binary files /dev/null and b/blockchains/arbitrum/assets/0xaf88d065e77c8cC2239327C5EDb3A432268e5831/logo.png differ diff --git a/blockchains/arbitrum/assets/0xb2f6ED0ED3eEb22bEF7A648794FFC19b8aF3761C/info.json b/blockchains/arbitrum/assets/0xb2f6ED0ED3eEb22bEF7A648794FFC19b8aF3761C/info.json new file mode 100644 index 0000000000000..6fb2eeec962c0 --- /dev/null +++ b/blockchains/arbitrum/assets/0xb2f6ED0ED3eEb22bEF7A648794FFC19b8aF3761C/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Gamestop Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0xb2f6ED0ED3eEb22bEF7A648794FFC19b8aF3761C", + "type": "ARBITRUM", + "symbol": "WGMEX", + "decimals": 18, + "status": "active", + "id": "0xb2f6ED0ED3eEb22bEF7A648794FFC19b8aF3761C", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-gamestop-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xb2f6ED0ED3eEb22bEF7A648794FFC19b8aF3761C/logo.png b/blockchains/arbitrum/assets/0xb2f6ED0ED3eEb22bEF7A648794FFC19b8aF3761C/logo.png new file mode 100644 index 0000000000000..7e70f35703866 Binary files /dev/null and b/blockchains/arbitrum/assets/0xb2f6ED0ED3eEb22bEF7A648794FFC19b8aF3761C/logo.png differ diff --git a/blockchains/arbitrum/assets/0xb365Cd2588065F522D379AD19e903304f6B622C6/info.json b/blockchains/arbitrum/assets/0xb365Cd2588065F522D379AD19e903304f6B622C6/info.json new file mode 100644 index 0000000000000..6b760c1cf2ee8 --- /dev/null +++ b/blockchains/arbitrum/assets/0xb365Cd2588065F522D379AD19e903304f6B622C6/info.json @@ -0,0 +1,24 @@ +{ + "name": "Mastercard tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Mastercard xStock (MAx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. MAx tracks the price of Mastercard Inc. (the underlying). MAx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Mastercard Inc., whilst maintaining the benefits of blockchain technology. Mastercard Inc. is a global payments and technology company that facilitates electronic payments by connecting consumers, financial institutions, merchants, governments, and businesses worldwide.", + "explorer": "https://arbiscan.io/token/0xb365Cd2588065F522D379AD19e903304f6B622C6", + "type": "ARBITRUM", + "symbol": "MAX", + "decimals": 18, + "status": "active", + "id": "0xb365Cd2588065F522D379AD19e903304f6B622C6", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mastercard-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xb365Cd2588065F522D379AD19e903304f6B622C6/logo.png b/blockchains/arbitrum/assets/0xb365Cd2588065F522D379AD19e903304f6B622C6/logo.png new file mode 100644 index 0000000000000..85dccc98f3df9 Binary files /dev/null and b/blockchains/arbitrum/assets/0xb365Cd2588065F522D379AD19e903304f6B622C6/logo.png differ diff --git a/blockchains/arbitrum/assets/0xb9600c807f069D27f92a2a65b48F12Eeef7e2007/info.json b/blockchains/arbitrum/assets/0xb9600c807f069D27f92a2a65b48F12Eeef7e2007/info.json new file mode 100644 index 0000000000000..2b5c079865336 --- /dev/null +++ b/blockchains/arbitrum/assets/0xb9600c807f069D27f92a2a65b48F12Eeef7e2007/info.json @@ -0,0 +1,48 @@ +{ + "name": "Altranium", + "type": "ARBITRUM", + "symbol": "ALTR", + "decimals": 18, + "website": "https://altranium.com/", + "description": "Altranium coin comes fully equipped with the cogitating & imperative ecosystem with the emerging and integrated technologies which can build DeFi, SocialFi, GameFi and metaverses. ALTR hones the ability to process tokens deploying full decentralize systems such as DeFi on Ethereum, by using the native Blockchain to create the interactive visual experiences, enhancing the experience further with VR (Virtual Reality) Media Codec within Metaverse(s) as well as CRE (Corporate Real Estate)", + "explorer": "https://arbiscan.io/token/0xb9600c807f069d27f92a2a65b48f12eeef7e2007", + "status": "active", + "id": "0xb9600c807f069D27f92a2a65b48F12Eeef7e2007", + "links": [ + { + "name": "x", + "url": "https://x.com/altranium" + }, + { + "name": "github", + "url": "https://github.com/ALTRANIUM" + }, + { + "name": "telegram", + "url": "https://t.me/altranium" + }, + { + "name": "medium", + "url": "https://medium.com/@altranium_" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/altranium/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/altranium" + }, + { + "name": "discord", + "url": "https://discord.com/invite/altranium" + }, + { + "name": "reddit", + "url": "https://reddit.com/Altraniyumm/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xb9600c807f069D27f92a2a65b48F12Eeef7e2007/logo.png b/blockchains/arbitrum/assets/0xb9600c807f069D27f92a2a65b48F12Eeef7e2007/logo.png new file mode 100644 index 0000000000000..c04093e34c5e6 Binary files /dev/null and b/blockchains/arbitrum/assets/0xb9600c807f069D27f92a2a65b48F12Eeef7e2007/logo.png differ diff --git a/blockchains/arbitrum/assets/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777/info.json b/blockchains/arbitrum/assets/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777/info.json new file mode 100644 index 0000000000000..8a1a644a09a5d --- /dev/null +++ b/blockchains/arbitrum/assets/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777/info.json @@ -0,0 +1,24 @@ +{ + "name": "Vanguard tokenized ETF (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Vanguard xStock (VTIx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. VTIx tracks the price of Vanguard Total Stock Market Index Fund ETF (the underlying). VTIx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the ETF price of Vanguard Total Stock Market Index Fund ETF, whilst maintaining the benefits of blockchain technology. Vanguard Total Stock Market Index Fund ETF (VTI) is an exchange-traded fund that seeks to track the performance of the CRSP U.S. Total Market Index, covering nearly all publicly traded U.S. companies.", + "explorer": "https://arbiscan.io/token/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777", + "type": "ARBITRUM", + "symbol": "VTIX", + "decimals": 18, + "status": "active", + "id": "0xbD730E618bcD88C82dDeE52e10275CF2f88A4777", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vanguard-tokenized-etf-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777/logo.png b/blockchains/arbitrum/assets/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777/logo.png new file mode 100644 index 0000000000000..ec248062ccc2c Binary files /dev/null and b/blockchains/arbitrum/assets/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777/logo.png differ diff --git a/blockchains/arbitrum/assets/0xbEe6b69345F376598Fe16AbD5592c6F844825E66/info.json b/blockchains/arbitrum/assets/0xbEe6b69345F376598Fe16AbD5592c6F844825E66/info.json new file mode 100644 index 0000000000000..c3a4e4956813b --- /dev/null +++ b/blockchains/arbitrum/assets/0xbEe6b69345F376598Fe16AbD5592c6F844825E66/info.json @@ -0,0 +1,24 @@ +{ + "name": "OPEN tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0xbEe6b69345F376598Fe16AbD5592c6F844825E66", + "type": "ARBITRUM", + "symbol": "OPENX", + "decimals": 18, + "status": "active", + "id": "0xbEe6b69345F376598Fe16AbD5592c6F844825E66", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/open-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xbEe6b69345F376598Fe16AbD5592c6F844825E66/logo.png b/blockchains/arbitrum/assets/0xbEe6b69345F376598Fe16AbD5592c6F844825E66/logo.png new file mode 100644 index 0000000000000..ce91cfbfef91d Binary files /dev/null and b/blockchains/arbitrum/assets/0xbEe6b69345F376598Fe16AbD5592c6F844825E66/logo.png differ diff --git a/blockchains/arbitrum/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/info.json b/blockchains/arbitrum/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/info.json new file mode 100644 index 0000000000000..013af0dfa186c --- /dev/null +++ b/blockchains/arbitrum/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/info.json @@ -0,0 +1,17 @@ +{ + "name": "OX", + "type": "ARBITRUM", + "symbol": "OX", + "decimals": 18, + "website": "https://ox.fun/", + "description": "OX.FUN is a derivatives exchange that allows users to trade perps with their OX tokens.", + "explorer": "https://arbiscan.io/token/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea", + "status": "active", + "id": "0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea", + "links": [ + { + "name": "x", + "url": "https://x.com/OXFUNHQ" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/logo.png b/blockchains/arbitrum/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/logo.png new file mode 100644 index 0000000000000..d66f3d33ef432 Binary files /dev/null and b/blockchains/arbitrum/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/logo.png differ diff --git a/blockchains/arbitrum/assets/0xba5DdD1f9d7F570dc94a51479a000E3BCE967196/info.json b/blockchains/arbitrum/assets/0xba5DdD1f9d7F570dc94a51479a000E3BCE967196/info.json new file mode 100644 index 0000000000000..2d467bdf38227 --- /dev/null +++ b/blockchains/arbitrum/assets/0xba5DdD1f9d7F570dc94a51479a000E3BCE967196/info.json @@ -0,0 +1,50 @@ +{ + "name": "Aave", + "website": "https://aave.com", + "description": "Aave is a decentralized finance protocol that allows people to lend and borrow crypto.", + "explorer": "https://arbiscan.io/token/0xba5DdD1f9d7F570dc94a51479a000E3BCE967196", + "research": "https://research.binance.com/en/projects/aave-protocol", + "type": "ARBITRUM", + "symbol": "AAVE", + "decimals": 18, + "status": "active", + "id": "0xba5DdD1f9d7F570dc94a51479a000E3BCE967196", + "tags": [ + "defi", + "governance" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/aave/aave-protocol" + }, + { + "name": "x", + "url": "https://x.com/aave" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Aave_Official" + }, + { + "name": "blog", + "url": "https://medium.com/aave" + }, + { + "name": "facebook", + "url": "https://facebook.com/AaveCom" + }, + { + "name": "whitepaper", + "url": "https://github.com/aave/aave-protocol/blob/master/docs/Aave_Protocol_Whitepaper_v1_0.pdf/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/aave/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/aave/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xba5DdD1f9d7F570dc94a51479a000E3BCE967196/logo.png b/blockchains/arbitrum/assets/0xba5DdD1f9d7F570dc94a51479a000E3BCE967196/logo.png new file mode 100644 index 0000000000000..d53b11427e965 Binary files /dev/null and b/blockchains/arbitrum/assets/0xba5DdD1f9d7F570dc94a51479a000E3BCE967196/logo.png differ diff --git a/blockchains/arbitrum/assets/0xc08Cd26474722cE93F4D0c34D16201461c10AA8C/info.json b/blockchains/arbitrum/assets/0xc08Cd26474722cE93F4D0c34D16201461c10AA8C/info.json new file mode 100644 index 0000000000000..b336b4425712c --- /dev/null +++ b/blockchains/arbitrum/assets/0xc08Cd26474722cE93F4D0c34D16201461c10AA8C/info.json @@ -0,0 +1,21 @@ +{ + "name": "CARV", + "type": "BASE", + "symbol": "CARV", + "decimals": 18, + "website": "https://carv.io/", + "description": "The CARV Protocol is a modular data layer that facilitates data exchange and value distribution across gaming, AI and ∞. It encompasses end-to-end data flow processes, including data verification, identity authentication, storage, processing, model training, and value distribution.", + "explorer": "https://arbiscan.io/token/0xc08cd26474722ce93f4d0c34d16201461c10aa8c", + "status": "active", + "id": "0xc08Cd26474722cE93F4D0c34D16201461c10AA8C", + "links": [ + { + "name": "x", + "url": "https://x.com/carv_official" + }, + { + "name": "telegram", + "url": "https://t.me/carv_official_global" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xc08Cd26474722cE93F4D0c34D16201461c10AA8C/logo.png b/blockchains/arbitrum/assets/0xc08Cd26474722cE93F4D0c34D16201461c10AA8C/logo.png new file mode 100644 index 0000000000000..3700a2b1073eb Binary files /dev/null and b/blockchains/arbitrum/assets/0xc08Cd26474722cE93F4D0c34D16201461c10AA8C/logo.png differ diff --git a/blockchains/arbitrum/assets/0xc262Bea18cb810Cc7715EE48fe3cbD3D79B4aFe1/info.json b/blockchains/arbitrum/assets/0xc262Bea18cb810Cc7715EE48fe3cbD3D79B4aFe1/info.json new file mode 100644 index 0000000000000..e996efc623dde --- /dev/null +++ b/blockchains/arbitrum/assets/0xc262Bea18cb810Cc7715EE48fe3cbD3D79B4aFe1/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Accenture Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0xc262Bea18cb810Cc7715EE48fe3cbD3D79B4aFe1", + "type": "ARBITRUM", + "symbol": "WACNX", + "decimals": 18, + "status": "active", + "id": "0xc262Bea18cb810Cc7715EE48fe3cbD3D79B4aFe1", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-accenture-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xc262Bea18cb810Cc7715EE48fe3cbD3D79B4aFe1/logo.png b/blockchains/arbitrum/assets/0xc262Bea18cb810Cc7715EE48fe3cbD3D79B4aFe1/logo.png new file mode 100644 index 0000000000000..c7ff3dea9ddad Binary files /dev/null and b/blockchains/arbitrum/assets/0xc262Bea18cb810Cc7715EE48fe3cbD3D79B4aFe1/logo.png differ diff --git a/blockchains/arbitrum/assets/0xc6B6B8D50A6673C04C495e30B411da5A7adF39f5/info.json b/blockchains/arbitrum/assets/0xc6B6B8D50A6673C04C495e30B411da5A7adF39f5/info.json new file mode 100644 index 0000000000000..e8e995b7ede1d --- /dev/null +++ b/blockchains/arbitrum/assets/0xc6B6B8D50A6673C04C495e30B411da5A7adF39f5/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Salesforce Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0xc6B6B8D50A6673C04C495e30B411da5A7adF39f5", + "type": "ARBITRUM", + "symbol": "WCRMX", + "decimals": 18, + "status": "active", + "id": "0xc6B6B8D50A6673C04C495e30B411da5A7adF39f5", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-salesforce-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xc6B6B8D50A6673C04C495e30B411da5A7adF39f5/logo.png b/blockchains/arbitrum/assets/0xc6B6B8D50A6673C04C495e30B411da5A7adF39f5/logo.png new file mode 100644 index 0000000000000..f976982e9fc9b Binary files /dev/null and b/blockchains/arbitrum/assets/0xc6B6B8D50A6673C04C495e30B411da5A7adF39f5/logo.png differ diff --git a/blockchains/arbitrum/assets/0xc845b2894dBddd03858fd2D643B4eF725fE0849d/info.json b/blockchains/arbitrum/assets/0xc845b2894dBddd03858fd2D643B4eF725fE0849d/info.json new file mode 100644 index 0000000000000..65bff6635095c --- /dev/null +++ b/blockchains/arbitrum/assets/0xc845b2894dBddd03858fd2D643B4eF725fE0849d/info.json @@ -0,0 +1,24 @@ +{ + "name": "NVIDIA tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "NVIDIA tokenized stock (xStock) (NVDAX) is a cryptocurrency and operates on the Solana platform. NVIDIA tokenized stock (xStock) has a current supply of 48,653.72471846 with 7,655.63423039 in circulation. The last known price of NVIDIA tokenized stock (xStock) is 177.44432253 USD and is up 1.21 over the last 24 hours. It is currently trading on 44 active market(s) with $7,676,418.12 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/nvidia-xstock.", + "explorer": "https://arbiscan.io/token/0xc845b2894dBddd03858fd2D643B4eF725fE0849d", + "type": "ARBITRUM", + "symbol": "NVDAX", + "decimals": 18, + "status": "active", + "id": "0xc845b2894dBddd03858fd2D643B4eF725fE0849d", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nvidia-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xc845b2894dBddd03858fd2D643B4eF725fE0849d/logo.png b/blockchains/arbitrum/assets/0xc845b2894dBddd03858fd2D643B4eF725fE0849d/logo.png new file mode 100644 index 0000000000000..b79453063db00 Binary files /dev/null and b/blockchains/arbitrum/assets/0xc845b2894dBddd03858fd2D643B4eF725fE0849d/logo.png differ diff --git a/blockchains/arbitrum/assets/0xc87B37a581ec3257B734886d9d3a581F5A9d056c/info.json b/blockchains/arbitrum/assets/0xc87B37a581ec3257B734886d9d3a581F5A9d056c/info.json new file mode 100644 index 0000000000000..2f98d356e645b --- /dev/null +++ b/blockchains/arbitrum/assets/0xc87B37a581ec3257B734886d9d3a581F5A9d056c/info.json @@ -0,0 +1,21 @@ +{ + "name": "Aethir", + "type": "ARBITRUM", + "symbol": "ATH", + "website": "https://www.aethir.com/", + "explorer": "https://arbiscan.io/token/0xc87b37a581ec3257b734886d9d3a581f5a9d056c", + "decimals": 18, + "description": "Aethir builds distributed GPU-based compute infrastructure for dynamic, enterprise use cases. It aims to make it easier for GPU infrastructure providers to scale, and simpler for buyers to access GPU worldwide.", + "status": "active", + "id": "0xc87B37a581ec3257B734886d9d3a581F5A9d056c", + "links": [ + { + "name": "telegram", + "url": "https://t.me/aethir_cloud" + }, + { + "name": "x", + "url": "https://x.com/AethirCloud" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xc87B37a581ec3257B734886d9d3a581F5A9d056c/logo.png b/blockchains/arbitrum/assets/0xc87B37a581ec3257B734886d9d3a581F5A9d056c/logo.png new file mode 100644 index 0000000000000..e5efd01ed606f Binary files /dev/null and b/blockchains/arbitrum/assets/0xc87B37a581ec3257B734886d9d3a581F5A9d056c/logo.png differ diff --git a/blockchains/arbitrum/assets/0xcAFcD85D8ca7Ad1e1C6F82F651fA15E33AEfD07b/info.json b/blockchains/arbitrum/assets/0xcAFcD85D8ca7Ad1e1C6F82F651fA15E33AEfD07b/info.json new file mode 100644 index 0000000000000..18ac5c591da52 --- /dev/null +++ b/blockchains/arbitrum/assets/0xcAFcD85D8ca7Ad1e1C6F82F651fA15E33AEfD07b/info.json @@ -0,0 +1,36 @@ +{ + "name": "WOO", + "type": "ARBITRUM", + "symbol": "WOO", + "decimals": 18, + "website": "https://woo.network", + "description": "Wootrade aims to provide deep liquidity and superior order execution at the lowest cost for traders, exchanges, institutions, and DeFi platforms. Its flagship, WOO X, is a professional trading platform featuring customizable modules, and zero-fees with deep liquidity across spot and margin. Wootrade was founded by Kronos Research, a quantitative trading firm generating $10-15B in daily volume, with the goal of democratizing access to deep liquidity and yield strategies through various products.", + "explorer": "https://arbiscan.io/token/0xcafcd85d8ca7ad1e1c6f82f651fa15e33aefd07b", + "status": "active", + "id": "0xcAFcD85D8ca7Ad1e1C6F82F651fA15E33AEfD07b", + "tags": [ + "defi" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/wootrade" + }, + { + "name": "blog", + "url": "https://medium.com/@wootrade" + }, + { + "name": "facebook", + "url": "https://facebook.com/Wootrade" + }, + { + "name": "whitepaper", + "url": "https://woo.network/Litepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wootrade-network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xcAFcD85D8ca7Ad1e1C6F82F651fA15E33AEfD07b/logo.png b/blockchains/arbitrum/assets/0xcAFcD85D8ca7Ad1e1C6F82F651fA15E33AEfD07b/logo.png new file mode 100644 index 0000000000000..5cd7c39954306 Binary files /dev/null and b/blockchains/arbitrum/assets/0xcAFcD85D8ca7Ad1e1C6F82F651fA15E33AEfD07b/logo.png differ diff --git a/blockchains/arbitrum/assets/0xcCcDb2D826aB0893C7A3497048DE848E5E778767/info.json b/blockchains/arbitrum/assets/0xcCcDb2D826aB0893C7A3497048DE848E5E778767/info.json new file mode 100644 index 0000000000000..c6b565b5f36da --- /dev/null +++ b/blockchains/arbitrum/assets/0xcCcDb2D826aB0893C7A3497048DE848E5E778767/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDC.a", + "type": "ARBITRUM", + "symbol": "FAKE USD.a", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://arbiscan.io/token/0xcCcDb2D826aB0893C7A3497048DE848E5E778767", + "explorer": "https://arbiscan.io/token/0xcCcDb2D826aB0893C7A3497048DE848E5E778767", + "status": "spam", + "id": "0xcCcDb2D826aB0893C7A3497048DE848E5E778767" +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xcb8b5CD20BdCaea9a010aC1F8d835824F5C87A04/info.json b/blockchains/arbitrum/assets/0xcb8b5CD20BdCaea9a010aC1F8d835824F5C87A04/info.json new file mode 100644 index 0000000000000..9313fca83671d --- /dev/null +++ b/blockchains/arbitrum/assets/0xcb8b5CD20BdCaea9a010aC1F8d835824F5C87A04/info.json @@ -0,0 +1,56 @@ +{ + "name": "CoW Protocol", + "type": "ARBITRUM", + "symbol": "COW", + "decimals": 18, + "website": "https://cow.fi", + "description": "COW token allows its holders the right to govern and curate the infrastructure of the CoW Protocol ecosystem through the CowDAO. Additionally, COW token holders receive fee discounts when trading on CowSwap & some other perks.", + "explorer": "https://arbiscan.io/token/0xcb8b5CD20BdCaea9a010aC1F8d835824F5C87A04", + "status": "active", + "id": "0xcb8b5CD20BdCaea9a010aC1F8d835824F5C87A04", + "links": [ + { + "name": "x", + "url": "https://x.com/CoWSwap" + }, + { + "name": "github", + "url": "https://github.com/cowprotocol" + }, + { + "name": "source_code", + "url": "https://github.com/cowprotocol/token" + }, + { + "name": "blog", + "url": "https://blog.cow.fi" + }, + { + "name": "docs", + "url": "https://docs.cow.fi" + }, + { + "name": "discord", + "url": "https://discord.com/invite/cowprotocol" + }, + { + "name": "forum", + "url": "https://forum.cow.fi" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cow-protocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cow-protocol" + }, + { + "name": "youtube", + "url": "https://youtube.com/@CoWSwap" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xcb8b5CD20BdCaea9a010aC1F8d835824F5C87A04/logo.png b/blockchains/arbitrum/assets/0xcb8b5CD20BdCaea9a010aC1F8d835824F5C87A04/logo.png new file mode 100644 index 0000000000000..8df3f5b49a612 Binary files /dev/null and b/blockchains/arbitrum/assets/0xcb8b5CD20BdCaea9a010aC1F8d835824F5C87A04/logo.png differ diff --git a/blockchains/arbitrum/assets/0xcdB53A7cBa9Ec6d55dfE8f58bd6772826722D7BD/info.json b/blockchains/arbitrum/assets/0xcdB53A7cBa9Ec6d55dfE8f58bd6772826722D7BD/info.json new file mode 100644 index 0000000000000..2e1d078bbb9c9 --- /dev/null +++ b/blockchains/arbitrum/assets/0xcdB53A7cBa9Ec6d55dfE8f58bd6772826722D7BD/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Johnson & Johnson Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0xcdB53A7cBa9Ec6d55dfE8f58bd6772826722D7BD", + "type": "ARBITRUM", + "symbol": "WJNJX", + "decimals": 18, + "status": "active", + "id": "0xcdB53A7cBa9Ec6d55dfE8f58bd6772826722D7BD", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-johnson-johnson-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xcdB53A7cBa9Ec6d55dfE8f58bd6772826722D7BD/logo.png b/blockchains/arbitrum/assets/0xcdB53A7cBa9Ec6d55dfE8f58bd6772826722D7BD/logo.png new file mode 100644 index 0000000000000..073859127cdaf Binary files /dev/null and b/blockchains/arbitrum/assets/0xcdB53A7cBa9Ec6d55dfE8f58bd6772826722D7BD/logo.png differ diff --git a/blockchains/arbitrum/assets/0xce4DB2ce8cCa463f8Aa1e2174C244Ba4a8d672cB/info.json b/blockchains/arbitrum/assets/0xce4DB2ce8cCa463f8Aa1e2174C244Ba4a8d672cB/info.json new file mode 100644 index 0000000000000..147c080dd02e3 --- /dev/null +++ b/blockchains/arbitrum/assets/0xce4DB2ce8cCa463f8Aa1e2174C244Ba4a8d672cB/info.json @@ -0,0 +1,28 @@ +{ + "name": "Everipedia IQ", + "type": "ARBITRUM", + "symbol": "IQ", + "decimals": 18, + "website": "https://iq.wiki/", + "description": "Everipedia IQ’s mission is to bring the world’s knowledge on-chain.", + "explorer": "https://arbiscan.io/token/0xce4DB2ce8cCa463f8Aa1e2174C244Ba4a8d672cB", + "status": "active", + "id": "0xce4DB2ce8cCa463f8Aa1e2174C244Ba4a8d672cB", + "links": [ + { + "name": "x", + "url": "https://x.com/Everipedia" + }, + { + "name": "github", + "url": "https://github.com/EveripediaNetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/everipedia/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xce4DB2ce8cCa463f8Aa1e2174C244Ba4a8d672cB/logo.png b/blockchains/arbitrum/assets/0xce4DB2ce8cCa463f8Aa1e2174C244Ba4a8d672cB/logo.png new file mode 100644 index 0000000000000..dceff00bfbb03 Binary files /dev/null and b/blockchains/arbitrum/assets/0xce4DB2ce8cCa463f8Aa1e2174C244Ba4a8d672cB/logo.png differ diff --git a/blockchains/arbitrum/assets/0xd17E483364D849e3B3A52464bb2CA56626EDfc31/info.json b/blockchains/arbitrum/assets/0xd17E483364D849e3B3A52464bb2CA56626EDfc31/info.json new file mode 100644 index 0000000000000..1ccaca0ba690a --- /dev/null +++ b/blockchains/arbitrum/assets/0xd17E483364D849e3B3A52464bb2CA56626EDfc31/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped AppLovin Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0xd17E483364D849e3B3A52464bb2CA56626EDfc31", + "type": "ARBITRUM", + "symbol": "WAPPX", + "decimals": 18, + "status": "active", + "id": "0xd17E483364D849e3B3A52464bb2CA56626EDfc31", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-applovin-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xd17E483364D849e3B3A52464bb2CA56626EDfc31/logo.png b/blockchains/arbitrum/assets/0xd17E483364D849e3B3A52464bb2CA56626EDfc31/logo.png new file mode 100644 index 0000000000000..29c0b21de7b39 Binary files /dev/null and b/blockchains/arbitrum/assets/0xd17E483364D849e3B3A52464bb2CA56626EDfc31/logo.png differ diff --git a/blockchains/arbitrum/assets/0xd1A01e3F9c7565e88b1CF2413ba0a0E671e57b33/info.json b/blockchains/arbitrum/assets/0xd1A01e3F9c7565e88b1CF2413ba0a0E671e57b33/info.json new file mode 100644 index 0000000000000..9bbaf58884d4a --- /dev/null +++ b/blockchains/arbitrum/assets/0xd1A01e3F9c7565e88b1CF2413ba0a0E671e57b33/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Comcast Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0xd1A01e3F9c7565e88b1CF2413ba0a0E671e57b33", + "type": "ARBITRUM", + "symbol": "WCMCSAX", + "decimals": 18, + "status": "active", + "id": "0xd1A01e3F9c7565e88b1CF2413ba0a0E671e57b33", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-comcast-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xd1A01e3F9c7565e88b1CF2413ba0a0E671e57b33/logo.png b/blockchains/arbitrum/assets/0xd1A01e3F9c7565e88b1CF2413ba0a0E671e57b33/logo.png new file mode 100644 index 0000000000000..77ea66f7bb46b Binary files /dev/null and b/blockchains/arbitrum/assets/0xd1A01e3F9c7565e88b1CF2413ba0a0E671e57b33/logo.png differ diff --git a/blockchains/arbitrum/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json b/blockchains/arbitrum/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json index aa48af4b0db5a..673b364358c58 100644 --- a/blockchains/arbitrum/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json +++ b/blockchains/arbitrum/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json @@ -10,8 +10,8 @@ "id": "0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189", "links": [ { - "name": "twitter", - "url": "https://twitter.com/OkcashCrypto" + "name": "x", + "url": "https://x.com/OkcashCrypto" }, { "name": "github", @@ -33,4 +33,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xd4d42F0b6DEF4CE0383636770eF773390d85c61A/info.json b/blockchains/arbitrum/assets/0xd4d42F0b6DEF4CE0383636770eF773390d85c61A/info.json new file mode 100644 index 0000000000000..13e407276492e --- /dev/null +++ b/blockchains/arbitrum/assets/0xd4d42F0b6DEF4CE0383636770eF773390d85c61A/info.json @@ -0,0 +1,30 @@ +{ + "name": "SushiSwap", + "website": "https://sushiswap.fi", + "description": "SushiSwap claims to be an evolution of #Uniswap with $SUSHI tokenomics.", + "explorer": "https://arbiscan.io/token/0xd4d42f0b6def4ce0383636770ef773390d85c61a", + "type": "ARBITRUM", + "symbol": "SUSHI", + "decimals": 18, + "status": "active", + "id": "0xd4d42F0b6DEF4CE0383636770eF773390d85c61A", + "tags": [ + "defi", + "governance", + "nft" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/sushiswap" + }, + { + "name": "x", + "url": "https://x.com/sushiswap" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sushi/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xd4d42F0b6DEF4CE0383636770eF773390d85c61A/logo.png b/blockchains/arbitrum/assets/0xd4d42F0b6DEF4CE0383636770eF773390d85c61A/logo.png new file mode 100644 index 0000000000000..37523b87fe8a7 Binary files /dev/null and b/blockchains/arbitrum/assets/0xd4d42F0b6DEF4CE0383636770eF773390d85c61A/logo.png differ diff --git a/blockchains/arbitrum/assets/0xd58D345Fd9c82262E087d2D0607624B410D88242/info.json b/blockchains/arbitrum/assets/0xd58D345Fd9c82262E087d2D0607624B410D88242/info.json new file mode 100644 index 0000000000000..a52057c4d6a62 --- /dev/null +++ b/blockchains/arbitrum/assets/0xd58D345Fd9c82262E087d2D0607624B410D88242/info.json @@ -0,0 +1,29 @@ +{ + "name": "Tellor", + "website": "https://tellor.io", + "description": "Tellor (a decentralized oracle) aims to address the Oracle problem on Ethereum.", + "explorer": "https://arbiscan.io/token/0xd58D345Fd9c82262E087d2D0607624B410D88242", + "type": "ARBITRUM", + "symbol": "TRB", + "decimals": 18, + "status": "active", + "id": "0xd58D345Fd9c82262E087d2D0607624B410D88242", + "links": [ + { + "name": "x", + "url": "https://x.com/WeAreTellor" + }, + { + "name": "telegram", + "url": "https://t.me/tellor" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tellor/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tellor/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xd58D345Fd9c82262E087d2D0607624B410D88242/logo.png b/blockchains/arbitrum/assets/0xd58D345Fd9c82262E087d2D0607624B410D88242/logo.png new file mode 100644 index 0000000000000..f1295da4329a3 Binary files /dev/null and b/blockchains/arbitrum/assets/0xd58D345Fd9c82262E087d2D0607624B410D88242/logo.png differ diff --git a/blockchains/arbitrum/assets/0xd9913208647671Fe0F48F7F260076B2C6F310Aac/info.json b/blockchains/arbitrum/assets/0xd9913208647671Fe0F48F7F260076B2C6F310Aac/info.json new file mode 100644 index 0000000000000..cb92feb73ce55 --- /dev/null +++ b/blockchains/arbitrum/assets/0xd9913208647671Fe0F48F7F260076B2C6F310Aac/info.json @@ -0,0 +1,24 @@ +{ + "name": "International Business Machines tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "International Business Machines xStock (IBMx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. IBMx tracks the price of International Business Machines Corporation (the underlying). IBMx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of International Business Machines Corporation, whilst maintaining the benefits of blockchain technology. International Business Machines Corporation is an American multinational technology corporation headquartered in Armonk, New York.", + "explorer": "https://arbiscan.io/token/0xd9913208647671Fe0F48F7F260076B2C6F310Aac", + "type": "ARBITRUM", + "symbol": "IBMX", + "decimals": 18, + "status": "active", + "id": "0xd9913208647671Fe0F48F7F260076B2C6F310Aac", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/international-business-machines-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xd9913208647671Fe0F48F7F260076B2C6F310Aac/logo.png b/blockchains/arbitrum/assets/0xd9913208647671Fe0F48F7F260076B2C6F310Aac/logo.png new file mode 100644 index 0000000000000..c4974d79ee7a7 Binary files /dev/null and b/blockchains/arbitrum/assets/0xd9913208647671Fe0F48F7F260076B2C6F310Aac/logo.png differ diff --git a/blockchains/arbitrum/assets/0xdA0a57B710768ae17941a9Fa33f8B720c8bD9ddD/info.json b/blockchains/arbitrum/assets/0xdA0a57B710768ae17941a9Fa33f8B720c8bD9ddD/info.json new file mode 100644 index 0000000000000..ae08aebc66946 --- /dev/null +++ b/blockchains/arbitrum/assets/0xdA0a57B710768ae17941a9Fa33f8B720c8bD9ddD/info.json @@ -0,0 +1,29 @@ +{ + "name": "Marlin POND", + "website": "https://www.marlin.pro/", + "description": "Marlin is an open protocol that provides a high-performance programmable network infrastructure for Web 3.0", + "explorer": "https://arbiscan.io/token/0xda0a57b710768ae17941a9fa33f8b720c8bd9ddd", + "type": "ARBITRUM", + "symbol": "POND", + "decimals": 18, + "status": "active", + "id": "0xdA0a57B710768ae17941a9Fa33f8B720c8bD9ddD", + "links": [ + { + "name": "x", + "url": "https://x.com/marlinprotocol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/marlin/" + }, + { + "name": "telegram", + "url": "https://t.me/marlinprotocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/marlin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xdA0a57B710768ae17941a9Fa33f8B720c8bD9ddD/logo.png b/blockchains/arbitrum/assets/0xdA0a57B710768ae17941a9Fa33f8B720c8bD9ddD/logo.png new file mode 100644 index 0000000000000..5bf18545dfb5a Binary files /dev/null and b/blockchains/arbitrum/assets/0xdA0a57B710768ae17941a9Fa33f8B720c8bD9ddD/logo.png differ diff --git a/blockchains/arbitrum/assets/0xdA661fa59320B808c5a6d23579fCfEdf1FD3cf36/info.json b/blockchains/arbitrum/assets/0xdA661fa59320B808c5a6d23579fCfEdf1FD3cf36/info.json new file mode 100644 index 0000000000000..095807f075046 --- /dev/null +++ b/blockchains/arbitrum/assets/0xdA661fa59320B808c5a6d23579fCfEdf1FD3cf36/info.json @@ -0,0 +1,28 @@ +{ + "name": "MOBOX", + "website": "https://mobox.io", + "description": "An Optimized Yield-Farming platform combining the best of DeFi and Gaming NFTs. Creating a truly Free To Play Play To Earn Ecosystem on the Binance Smart Chain", + "explorer": "https://arbiscan.io/token/0xdA661fa59320B808c5a6d23579fCfEdf1FD3cf36", + "type": "ARBITRUM", + "symbol": "MBOX", + "decimals": 18, + "status": "active", + "id": "0xdA661fa59320B808c5a6d23579fCfEdf1FD3cf36", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/MOBOX_Official" + }, + { + "name": "telegram", + "url": "https://t.me/mobox_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mobox/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xdA661fa59320B808c5a6d23579fCfEdf1FD3cf36/logo.png b/blockchains/arbitrum/assets/0xdA661fa59320B808c5a6d23579fCfEdf1FD3cf36/logo.png new file mode 100644 index 0000000000000..be41fceadd36f Binary files /dev/null and b/blockchains/arbitrum/assets/0xdA661fa59320B808c5a6d23579fCfEdf1FD3cf36/logo.png differ diff --git a/blockchains/arbitrum/assets/0xdCC1a2699441079dA889B1F49e12B69cC791129b/info.json b/blockchains/arbitrum/assets/0xdCC1a2699441079dA889B1F49e12B69cC791129b/info.json new file mode 100644 index 0000000000000..b5cdfcc6483b5 --- /dev/null +++ b/blockchains/arbitrum/assets/0xdCC1a2699441079dA889B1F49e12B69cC791129b/info.json @@ -0,0 +1,24 @@ +{ + "name": "Coca-Cola tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Coca-Cola xStock (KOx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. KOx tracks the price of The Coca-Cola Company (the underlying). KOx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of The Coca-Cola Company, whilst maintaining the benefits of blockchain technology. The Coca-Cola Company is a multinational corporation that primarily manufactures, sells, and markets non-alcoholic beverages.", + "explorer": "https://arbiscan.io/token/0xdCC1a2699441079dA889B1F49e12B69cC791129b", + "type": "ARBITRUM", + "symbol": "KOX", + "decimals": 18, + "status": "active", + "id": "0xdCC1a2699441079dA889B1F49e12B69cC791129b", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coca-cola-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xdCC1a2699441079dA889B1F49e12B69cC791129b/logo.png b/blockchains/arbitrum/assets/0xdCC1a2699441079dA889B1F49e12B69cC791129b/logo.png new file mode 100644 index 0000000000000..448e726662b94 Binary files /dev/null and b/blockchains/arbitrum/assets/0xdCC1a2699441079dA889B1F49e12B69cC791129b/logo.png differ diff --git a/blockchains/arbitrum/assets/0xdDb46999F8891663a8F2828d25298f70416d7610/info.json b/blockchains/arbitrum/assets/0xdDb46999F8891663a8F2828d25298f70416d7610/info.json new file mode 100644 index 0000000000000..107cdbc1837ad --- /dev/null +++ b/blockchains/arbitrum/assets/0xdDb46999F8891663a8F2828d25298f70416d7610/info.json @@ -0,0 +1,17 @@ +{ + "name": "Savings USDS", + "symbol": "sUSDS", + "website": "https://sky.money/", + "description": "Cryptocurrency, also referred to as “crypto,” is a type of digital currency that uses cryptography to help improve the security and overall user control of associated transactions", + "explorer": "https://arbiscan.io/token/0xdDb46999F8891663a8F2828d25298f70416d7610", + "decimals": 18, + "status": "active", + "id": "0xdDb46999F8891663a8F2828d25298f70416d7610", + "type": "ARBITRUM", + "links": [ + { + "name": "twitter", + "url": "https://x.com/SkyEcosystem" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xdDb46999F8891663a8F2828d25298f70416d7610/logo.png b/blockchains/arbitrum/assets/0xdDb46999F8891663a8F2828d25298f70416d7610/logo.png new file mode 100644 index 0000000000000..c5abdfcda59eb Binary files /dev/null and b/blockchains/arbitrum/assets/0xdDb46999F8891663a8F2828d25298f70416d7610/logo.png differ diff --git a/blockchains/arbitrum/assets/0xdadfb355c6110eda0908740d52c834d6C2BCDDc7/info.json b/blockchains/arbitrum/assets/0xdadfb355c6110eda0908740d52c834d6C2BCDDc7/info.json new file mode 100644 index 0000000000000..7e95a4365bfa2 --- /dev/null +++ b/blockchains/arbitrum/assets/0xdadfb355c6110eda0908740d52c834d6C2BCDDc7/info.json @@ -0,0 +1,15 @@ +{ + "name": "Russell 2000 xStock", + "type": "ARBITRUM", + "symbol": "IWMx", + "decimals": 18, + "description": "Russell 2000 xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://arbiscan.io/token/0xdadfb355c6110eda0908740d52c834d6C2BCDDc7", + "status": "active", + "id": "0xdadfb355c6110eda0908740d52c834d6C2BCDDc7", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xdadfb355c6110eda0908740d52c834d6C2BCDDc7/logo.png b/blockchains/arbitrum/assets/0xdadfb355c6110eda0908740d52c834d6C2BCDDc7/logo.png new file mode 100644 index 0000000000000..857fe69020c3c Binary files /dev/null and b/blockchains/arbitrum/assets/0xdadfb355c6110eda0908740d52c834d6C2BCDDc7/logo.png differ diff --git a/blockchains/arbitrum/assets/0xdb0482cfaD4789798623E64b15eebA01b16e917C/info.json b/blockchains/arbitrum/assets/0xdb0482cfaD4789798623E64b15eebA01b16e917C/info.json new file mode 100644 index 0000000000000..8327c4b74c2d1 --- /dev/null +++ b/blockchains/arbitrum/assets/0xdb0482cfaD4789798623E64b15eebA01b16e917C/info.json @@ -0,0 +1,24 @@ +{ + "name": "Johnson & Johnson tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Johnson & Johnson xStock (JNJx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. JNJx tracks the price of Johnson & Johnson (the underlying). JNJx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Johnson & Johnson, whilst maintaining the benefits of blockchain technology. Johnson & Johnson (J&J) is a global healthcare company focused on research, development, manufacturing, and sale of pharmaceuticals, medical devices, and consumer products.", + "explorer": "https://arbiscan.io/token/0xdb0482cfaD4789798623E64b15eebA01b16e917C", + "type": "ARBITRUM", + "symbol": "JNJX", + "decimals": 18, + "status": "active", + "id": "0xdb0482cfaD4789798623E64b15eebA01b16e917C", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/johnson-johnson-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xdb0482cfaD4789798623E64b15eebA01b16e917C/logo.png b/blockchains/arbitrum/assets/0xdb0482cfaD4789798623E64b15eebA01b16e917C/logo.png new file mode 100644 index 0000000000000..179b22a7c4aaf Binary files /dev/null and b/blockchains/arbitrum/assets/0xdb0482cfaD4789798623E64b15eebA01b16e917C/logo.png differ diff --git a/blockchains/arbitrum/assets/0xdbA228936F4079DaF9Aa906fd48a87f2300405F4/info.json b/blockchains/arbitrum/assets/0xdbA228936F4079DaF9Aa906fd48a87f2300405F4/info.json new file mode 100644 index 0000000000000..f04e74f4c77e5 --- /dev/null +++ b/blockchains/arbitrum/assets/0xdbA228936F4079DaF9Aa906fd48a87f2300405F4/info.json @@ -0,0 +1,24 @@ +{ + "name": "Danaher tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Danaher xStock (DHRx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. DHRx tracks the price of Danaher Corporation (the underlying). DHRx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Danaher Corporation, whilst maintaining the benefits of blockchain technology. Danaher Corporation is a global science and technology innovator operating in biotechnology, life sciences, and diagnostics. It focuses on accelerating the power of science and technology to improve human health.", + "explorer": "https://arbiscan.io/token/0xdbA228936F4079DaF9Aa906fd48a87f2300405F4", + "type": "ARBITRUM", + "symbol": "DHRX", + "decimals": 18, + "status": "active", + "id": "0xdbA228936F4079DaF9Aa906fd48a87f2300405F4", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/danaher-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xdbA228936F4079DaF9Aa906fd48a87f2300405F4/logo.png b/blockchains/arbitrum/assets/0xdbA228936F4079DaF9Aa906fd48a87f2300405F4/logo.png new file mode 100644 index 0000000000000..3b7a5c57e6b9e Binary files /dev/null and b/blockchains/arbitrum/assets/0xdbA228936F4079DaF9Aa906fd48a87f2300405F4/logo.png differ diff --git a/blockchains/arbitrum/assets/0xe4DDDfe67E7164b0FE14E218d80dC4C08eDC01cB/info.json b/blockchains/arbitrum/assets/0xe4DDDfe67E7164b0FE14E218d80dC4C08eDC01cB/info.json new file mode 100644 index 0000000000000..ef32f6bc09055 --- /dev/null +++ b/blockchains/arbitrum/assets/0xe4DDDfe67E7164b0FE14E218d80dC4C08eDC01cB/info.json @@ -0,0 +1,15 @@ +{ + "name": "Kyber Network", + "website": "https://kyber.network", + "description": "Kyber Network’s on-chain liquidity protocol allows decentralized token swaps to be integrated into any application, enabling value exchange to be performed seamlessly between all parties in the ecosystem.", + "explorer": "https://arbiscan.io/token/0xe4dddfe67e7164b0fe14e218d80dc4c08edc01cb", + "type": "ARBITRUM", + "symbol": "KNC", + "decimals": 18, + "status": "active", + "id": "0xe4DDDfe67E7164b0FE14E218d80dC4C08eDC01cB", + "tags": [ + "defi", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xe4DDDfe67E7164b0FE14E218d80dC4C08eDC01cB/logo.png b/blockchains/arbitrum/assets/0xe4DDDfe67E7164b0FE14E218d80dC4C08eDC01cB/logo.png new file mode 100644 index 0000000000000..8f845a1c6bb79 Binary files /dev/null and b/blockchains/arbitrum/assets/0xe4DDDfe67E7164b0FE14E218d80dC4C08eDC01cB/logo.png differ diff --git a/blockchains/arbitrum/assets/0xe821C045f9149B44ef96f8054B9c6d94f4c89417/info.json b/blockchains/arbitrum/assets/0xe821C045f9149B44ef96f8054B9c6d94f4c89417/info.json new file mode 100644 index 0000000000000..1910efc647155 --- /dev/null +++ b/blockchains/arbitrum/assets/0xe821C045f9149B44ef96f8054B9c6d94f4c89417/info.json @@ -0,0 +1,41 @@ +{ + "name": "DOVU", + "website": "https://dovu.earth/", + "description": "DOVU is a technology infrastructure provider, powering trusted environmental and carbon digital markets by providing market integrity. The DOVU token serves as the protocol’s utility token, enabling holders to participate and create their own environmental audit trail ecosystems. Token holders can stake their DOVU to earn multiplier rewards, aligning long-term incentives with the protocol’s mission of building reliable carbon markets.", + "explorer": "https://arbiscan.io/token/0xe821C045f9149B44ef96f8054B9c6d94f4c89417", + "type": "ARBITRUM", + "symbol": "DOVU", + "decimals": 8, + "status": "active", + "id": "0xe821C045f9149B44ef96f8054B9c6d94f4c89417", + "tags": [ + "wrapped", + "staking" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/dovuofficial/" + }, + { + "name": "x", + "url": "https://x.com/dovuofficial" + }, + { + "name": "blog", + "url": "https://dovu.earth/en/news/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dovu-earth/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dovu" + }, + { + "name": "youtube", + "url": "https://youtube.com/@DOVUearth" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xe821C045f9149B44ef96f8054B9c6d94f4c89417/logo.png b/blockchains/arbitrum/assets/0xe821C045f9149B44ef96f8054B9c6d94f4c89417/logo.png new file mode 100644 index 0000000000000..cb6c490323d55 Binary files /dev/null and b/blockchains/arbitrum/assets/0xe821C045f9149B44ef96f8054B9c6d94f4c89417/logo.png differ diff --git a/blockchains/arbitrum/assets/0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F/info.json b/blockchains/arbitrum/assets/0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F/info.json new file mode 100644 index 0000000000000..e79dd4503acd6 --- /dev/null +++ b/blockchains/arbitrum/assets/0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F/info.json @@ -0,0 +1,24 @@ +{ + "name": "Alphabet tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Alphabet tokenized stock (xStock) (GOOGLX) is a cryptocurrency and operates on the Solana platform. Alphabet tokenized stock (xStock) has a current supply of 20,999.24547712. The last known price of Alphabet tokenized stock (xStock) is 254.51926743 USD and is up 4.55 over the last 24 hours. It is currently trading on 34 active market(s) with $4,238,360.30 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/alphabet-xstock.", + "explorer": "https://arbiscan.io/token/0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F", + "type": "ARBITRUM", + "symbol": "GOOGLX", + "decimals": 18, + "status": "active", + "id": "0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/alphabet-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F/logo.png b/blockchains/arbitrum/assets/0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F/logo.png new file mode 100644 index 0000000000000..6d98541975eed Binary files /dev/null and b/blockchains/arbitrum/assets/0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F/logo.png differ diff --git a/blockchains/arbitrum/assets/0xe95ab205e333443D7970336D5fD827eF9eD97608/info.json b/blockchains/arbitrum/assets/0xe95ab205e333443D7970336D5fD827eF9eD97608/info.json new file mode 100644 index 0000000000000..72ee69f5d7c02 --- /dev/null +++ b/blockchains/arbitrum/assets/0xe95ab205e333443D7970336D5fD827eF9eD97608/info.json @@ -0,0 +1,15 @@ +{ + "name": "TON xStock", + "type": "ARBITRUM", + "symbol": "TONXx", + "decimals": 18, + "description": "TON xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://arbiscan.io/token/0xe95ab205e333443D7970336D5fD827eF9eD97608", + "status": "active", + "id": "0xe95ab205e333443D7970336D5fD827eF9eD97608", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xe95ab205e333443D7970336D5fD827eF9eD97608/logo.png b/blockchains/arbitrum/assets/0xe95ab205e333443D7970336D5fD827eF9eD97608/logo.png new file mode 100644 index 0000000000000..0c6d1b728e68f Binary files /dev/null and b/blockchains/arbitrum/assets/0xe95ab205e333443D7970336D5fD827eF9eD97608/logo.png differ diff --git a/blockchains/arbitrum/assets/0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88/info.json b/blockchains/arbitrum/assets/0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88/info.json new file mode 100644 index 0000000000000..3ae68a0de653f --- /dev/null +++ b/blockchains/arbitrum/assets/0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88/info.json @@ -0,0 +1,24 @@ +{ + "name": "Marvell tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Marvell xStock (MRVLx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. MRVLx tracks the price of Marvell Technology, Inc. (the underlying). MRVLx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Marvell Technology, Inc., whilst maintaining the benefits of blockchain technology. Marvell Technology, Inc. is an American semiconductor company that designs and develops integrated circuits, primarily focused on data infrastructure.", + "explorer": "https://arbiscan.io/token/0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88", + "type": "ARBITRUM", + "symbol": "MRVLX", + "decimals": 18, + "status": "active", + "id": "0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/marvell-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88/logo.png b/blockchains/arbitrum/assets/0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88/logo.png new file mode 100644 index 0000000000000..4ca5efce9f7b2 Binary files /dev/null and b/blockchains/arbitrum/assets/0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88/logo.png differ diff --git a/blockchains/arbitrum/assets/0xf0a479C9c3378638EC603b8B6B0d75903902550B/info.json b/blockchains/arbitrum/assets/0xf0a479C9c3378638EC603b8B6B0d75903902550B/info.json new file mode 100644 index 0000000000000..6928f8affb11e --- /dev/null +++ b/blockchains/arbitrum/assets/0xf0a479C9c3378638EC603b8B6B0d75903902550B/info.json @@ -0,0 +1,25 @@ +{ + "name": "CATCH", + "type": "ARBITRUM", + "symbol": "CATCH", + "decimals": 18, + "website": "https://spacecatch.io/", + "description": "SpaceCatch is a next-generation AR game driven by complex artificial intelligence. Build your Hero, protect the human Metaverse, train your avatar, defeat aliens, earn rewards, and show that you are more intelligent than AI.", + "explorer": "https://arbiscan.io/token/0xf0a479C9c3378638EC603b8B6B0d75903902550B", + "status": "active", + "id": "0xf0a479C9c3378638EC603b8B6B0d75903902550B", + "links": [ + { + "name": "x", + "url": "https://x.com/spacecatch_io" + }, + { + "name": "telegram", + "url": "https://t.me/spacecatch_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spacecatch/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xf0a479C9c3378638EC603b8B6B0d75903902550B/logo.png b/blockchains/arbitrum/assets/0xf0a479C9c3378638EC603b8B6B0d75903902550B/logo.png new file mode 100644 index 0000000000000..338f6dea50fcb Binary files /dev/null and b/blockchains/arbitrum/assets/0xf0a479C9c3378638EC603b8B6B0d75903902550B/logo.png differ diff --git a/blockchains/arbitrum/assets/0xf3C091ed43de9c270593445163a41A876A0bb3dd/info.json b/blockchains/arbitrum/assets/0xf3C091ed43de9c270593445163a41A876A0bb3dd/info.json new file mode 100644 index 0000000000000..6a5cb840bb9d3 --- /dev/null +++ b/blockchains/arbitrum/assets/0xf3C091ed43de9c270593445163a41A876A0bb3dd/info.json @@ -0,0 +1,25 @@ +{ + "name": "Orbs", + "website": "https://orbs.com", + "description": "Orbs is a blockchain infrastructure-as-a-service built for large scale consumer applications to meet their business and technological requirements.", + "explorer": "https://arbiscan.io/token/0xf3C091ed43de9c270593445163a41A876A0bb3dd", + "type": "ARBITRUM", + "symbol": "ORBS", + "decimals": 18, + "status": "active", + "id": "0xf3C091ed43de9c270593445163a41A876A0bb3dd", + "links": [ + { + "name": "x", + "url": "https://x.com/orbs_network" + }, + { + "name": "github", + "url": "https://github.com/orbs-network" + }, + { + "name": "telegram", + "url": "https://t.me/orbs_network" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xf3C091ed43de9c270593445163a41A876A0bb3dd/logo.png b/blockchains/arbitrum/assets/0xf3C091ed43de9c270593445163a41A876A0bb3dd/logo.png new file mode 100644 index 0000000000000..ba89f2dd8dd05 Binary files /dev/null and b/blockchains/arbitrum/assets/0xf3C091ed43de9c270593445163a41A876A0bb3dd/logo.png differ diff --git a/blockchains/arbitrum/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json b/blockchains/arbitrum/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json new file mode 100644 index 0000000000000..7b68fab09a6bd --- /dev/null +++ b/blockchains/arbitrum/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json @@ -0,0 +1,21 @@ +{ + "name": "Lorenzo stBTC", + "type": "ARBITRUM", + "symbol": "stBTC", + "decimals": 18, + "website": "https://www.lorenzo-protocol.xyz/", + "description": "To be the premier Bitcoin platform for yield-bearing token issuance, trading, and settlement.", + "explorer": "https://arbiscan.io/token/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3", + "status": "active", + "id": "0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3", + "links": [ + { + "name": "x", + "url": "https://x.com/LorenzoProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/lorenzoprotocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png b/blockchains/arbitrum/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png new file mode 100644 index 0000000000000..d0c4e5f85eb2b Binary files /dev/null and b/blockchains/arbitrum/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png differ diff --git a/blockchains/arbitrum/assets/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8/info.json b/blockchains/arbitrum/assets/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8/info.json new file mode 100644 index 0000000000000..7d62a943e08f9 --- /dev/null +++ b/blockchains/arbitrum/assets/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8/info.json @@ -0,0 +1,24 @@ +{ + "name": "Intel tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Intel xStock (INTCx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. INTCx tracks the price of Intel Corporation (the underlying). INTCx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Intel Corporation, whilst maintaining the benefits of blockchain technology. Intel Corporation is a multinational technology company primarily focused on designing, manufacturing, and selling computer components like CPUs and related products. They are a major player in the semiconductor industry.", + "explorer": "https://arbiscan.io/token/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8", + "type": "ARBITRUM", + "symbol": "INTCX", + "decimals": 18, + "status": "active", + "id": "0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/intel-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8/logo.png b/blockchains/arbitrum/assets/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8/logo.png new file mode 100644 index 0000000000000..c1902f7a0f2ba Binary files /dev/null and b/blockchains/arbitrum/assets/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8/logo.png differ diff --git a/blockchains/arbitrum/assets/0xf929de51D91C77E42f5090069E0AD7A09e513c73/info.json b/blockchains/arbitrum/assets/0xf929de51D91C77E42f5090069E0AD7A09e513c73/info.json new file mode 100644 index 0000000000000..6ae5121469529 --- /dev/null +++ b/blockchains/arbitrum/assets/0xf929de51D91C77E42f5090069E0AD7A09e513c73/info.json @@ -0,0 +1,25 @@ +{ + "name": "Shapeshift FOX", + "symbol": "FOX", + "type": "ARBITRUM", + "decimals": 18, + "description": "FOX is ShapeShift’s official loyalty token. Holders of FOX enjoy zero-commission trading and win ongoing USDC crypto payments from Rainfall (payments increase in proportion to your FOX holdings). ", + "website": "https://shapeshift.com/fox-token", + "explorer": "https://arbiscan.io/token/0xf929de51d91c77e42f5090069e0ad7a09e513c73", + "status": "active", + "id": "0xf929de51D91C77E42f5090069E0AD7A09e513c73", + "links": [ + { + "name": "x", + "url": "https://x.com/shapeshift_io" + }, + { + "name": "telegram", + "url": "https://t.me/shapeshiftofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fox-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xf929de51D91C77E42f5090069E0AD7A09e513c73/logo.png b/blockchains/arbitrum/assets/0xf929de51D91C77E42f5090069E0AD7A09e513c73/logo.png new file mode 100644 index 0000000000000..d565ce6e440a9 Binary files /dev/null and b/blockchains/arbitrum/assets/0xf929de51D91C77E42f5090069E0AD7A09e513c73/logo.png differ diff --git a/blockchains/arbitrum/assets/0xf97f4df75117a78c1A5a0DBb814Af92458539FB4/info.json b/blockchains/arbitrum/assets/0xf97f4df75117a78c1A5a0DBb814Af92458539FB4/info.json new file mode 100644 index 0000000000000..3195707a0786f --- /dev/null +++ b/blockchains/arbitrum/assets/0xf97f4df75117a78c1A5a0DBb814Af92458539FB4/info.json @@ -0,0 +1,32 @@ +{ + "name": "Chainlink", + "website": "https://chain.link", + "description": "Chainlink is a decentralized oracle service, which aims to connect smart contracts with data from the real world. Oracles are needed to function as data feeds in smart contracts. Oracles provide external data (e.g. temperature, weather) that can drive smart contract executions. Participants on the network are incentivized (through rewards) to provide smart contracts with access to external data feeds.", + "explorer": "https://arbiscan.io/token/0xf97f4df75117a78c1A5a0DBb814Af92458539FB4", + "type": "ARBITRUM", + "symbol": "LINK", + "decimals": 18, + "status": "active", + "id": "0xf97f4df75117a78c1A5a0DBb814Af92458539FB4", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/smartcontractkit/chainlink" + }, + { + "name": "x", + "url": "https://x.com/chainlink" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/chainlink" + }, + { + "name": "whitepaper", + "url": "https://link.smartcontract.com/whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/cronos/assets/0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9/logo.png b/blockchains/arbitrum/assets/0xf97f4df75117a78c1A5a0DBb814Af92458539FB4/logo.png similarity index 100% rename from blockchains/cronos/assets/0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9/logo.png rename to blockchains/arbitrum/assets/0xf97f4df75117a78c1A5a0DBb814Af92458539FB4/logo.png diff --git a/blockchains/arbitrum/assets/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A/info.json b/blockchains/arbitrum/assets/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A/info.json new file mode 100644 index 0000000000000..91bdd35da79d0 --- /dev/null +++ b/blockchains/arbitrum/assets/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A/info.json @@ -0,0 +1,24 @@ +{ + "name": "AbbVie tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "AbbVie xStock (ABBVx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. ABBVx tracks the price of AbbVie Inc. (the underlying). ABBVx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of AbbVie Inc., whilst maintaining the benefits of blockchain technology. AbbVie Inc. (ABBV) is a global biopharmaceutical company focused on developing and delivering innovative therapies in areas such as immunology, oncology, neuroscience, and eye care.", + "explorer": "https://arbiscan.io/token/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A", + "type": "ARBITRUM", + "symbol": "ABBVX", + "decimals": 18, + "status": "active", + "id": "0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abbvie-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A/logo.png b/blockchains/arbitrum/assets/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A/logo.png new file mode 100644 index 0000000000000..ab73b87a6dd53 Binary files /dev/null and b/blockchains/arbitrum/assets/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A/logo.png differ diff --git a/blockchains/arbitrum/assets/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86/info.json b/blockchains/arbitrum/assets/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86/info.json new file mode 100644 index 0000000000000..d425c5876c830 --- /dev/null +++ b/blockchains/arbitrum/assets/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86/info.json @@ -0,0 +1,24 @@ +{ + "name": "TQQQ tokenized ETF (xStock)", + "website": "https://assets.backed.fi/products", + "description": "TQQQ xStock (TQQQx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. TQQQx tracks the price of ProShares UltraPro QQQ (the underlying). TQQQx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the ETF price of ProShares UltraPro QQQ, whilst maintaining the benefits of blockchain technology. ProShares UltraPro QQQ (TQQQ) is a leveraged exchange-traded fund designed to deliver three times the daily performance of the Nasdaq-100 Index.", + "explorer": "https://arbiscan.io/token/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86", + "type": "ARBITRUM", + "symbol": "TQQQX", + "decimals": 18, + "status": "active", + "id": "0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tqqq-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86/logo.png b/blockchains/arbitrum/assets/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86/logo.png new file mode 100644 index 0000000000000..38cc90156e20e Binary files /dev/null and b/blockchains/arbitrum/assets/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86/logo.png differ diff --git a/blockchains/arbitrum/assets/0xfE0D2545f9E7f3678CB35Ed3CDf70488C5570D11/info.json b/blockchains/arbitrum/assets/0xfE0D2545f9E7f3678CB35Ed3CDf70488C5570D11/info.json new file mode 100644 index 0000000000000..e1b5eba9f4a27 --- /dev/null +++ b/blockchains/arbitrum/assets/0xfE0D2545f9E7f3678CB35Ed3CDf70488C5570D11/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Netflix Tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://arbiscan.io/token/0xfE0D2545f9E7f3678CB35Ed3CDf70488C5570D11", + "type": "ARBITRUM", + "symbol": "WNFLXX", + "decimals": 18, + "status": "active", + "id": "0xfE0D2545f9E7f3678CB35Ed3CDf70488C5570D11", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-netflix-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xfE0D2545f9E7f3678CB35Ed3CDf70488C5570D11/logo.png b/blockchains/arbitrum/assets/0xfE0D2545f9E7f3678CB35Ed3CDf70488C5570D11/logo.png new file mode 100644 index 0000000000000..6084f5d6359d5 Binary files /dev/null and b/blockchains/arbitrum/assets/0xfE0D2545f9E7f3678CB35Ed3CDf70488C5570D11/logo.png differ diff --git a/blockchains/arbitrum/assets/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB/info.json b/blockchains/arbitrum/assets/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB/info.json new file mode 100644 index 0000000000000..9450625755269 --- /dev/null +++ b/blockchains/arbitrum/assets/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB/info.json @@ -0,0 +1,24 @@ +{ + "name": "Circle tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Circle tokenized stock (xStock) (CRCLX) is a cryptocurrency and operates on the Solana platform. Circle tokenized stock (xStock) has a current supply of 49,998.60984587. The last known price of Circle tokenized stock (xStock) is 134.16292538 USD and is up 4.96 over the last 24 hours. It is currently trading on 44 active market(s) with $8,141,888.27 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/circle-xstock.", + "explorer": "https://arbiscan.io/token/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB", + "type": "ARBITRUM", + "symbol": "CRCLX", + "decimals": 18, + "status": "active", + "id": "0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/circle-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB/logo.png b/blockchains/arbitrum/assets/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB/logo.png new file mode 100644 index 0000000000000..984236e985ff3 Binary files /dev/null and b/blockchains/arbitrum/assets/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB/logo.png differ diff --git a/blockchains/arbitrum/assets/0xfc5A1A6EB076a2C7aD06eD22C90d7E710E35ad0a/info.json b/blockchains/arbitrum/assets/0xfc5A1A6EB076a2C7aD06eD22C90d7E710E35ad0a/info.json index a43379acb0031..6458f59423230 100644 --- a/blockchains/arbitrum/assets/0xfc5A1A6EB076a2C7aD06eD22C90d7E710E35ad0a/info.json +++ b/blockchains/arbitrum/assets/0xfc5A1A6EB076a2C7aD06eD22C90d7E710E35ad0a/info.json @@ -18,8 +18,8 @@ "url": "https://coingecko.com/coins/gmx/" }, { - "name": "twitter", - "url": "https://twitter.com/GMX_IO" + "name": "x", + "url": "https://x.com/GMX_IO" }, { "name": "telegram", @@ -29,4 +29,4 @@ "tags": [ "defi" ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/arbitrum/info/info.json b/blockchains/arbitrum/info/info.json index 6f8e9fa49ac87..a4713f8643160 100644 --- a/blockchains/arbitrum/info/info.json +++ b/blockchains/arbitrum/info/info.json @@ -10,10 +10,13 @@ "type": "coin", "decimals": 18, "status": "active", + "tags": [ + "dapp" + ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/arbitrum" + "name": "x", + "url": "https://x.com/arbitrum" } ] } \ No newline at end of file diff --git a/blockchains/arbitrum/info/square_logo.png b/blockchains/arbitrum/info/square_logo.png new file mode 100644 index 0000000000000..0ee5b2f321e49 Binary files /dev/null and b/blockchains/arbitrum/info/square_logo.png differ diff --git a/blockchains/arbitrum/tokenlist.json b/blockchains/arbitrum/tokenlist.json index 5d45603829714..4b0809ad13cc2 100644 --- a/blockchains/arbitrum/tokenlist.json +++ b/blockchains/arbitrum/tokenlist.json @@ -17,8 +17,8 @@ "asset": "c10042221_t0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8", "type": "ARBITRUM", "address": "0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8", - "name": "USD Coin (Arb1)", - "symbol": "USDC", + "name": "Bridged USDC", + "symbol": "USDC.e", "decimals": 6, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/arbitrum/assets/0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8/logo.png", "pairs": [] diff --git a/blockchains/arbitrumgoerli/info/info.json b/blockchains/arbitrumgoerli/info/info.json index d2b0f4cd5e934..3daf8322dd933 100644 --- a/blockchains/arbitrumgoerli/info/info.json +++ b/blockchains/arbitrumgoerli/info/info.json @@ -4,7 +4,7 @@ "description": "The Alchemy Goerli faucet is free, fast, and does not require authentication, though you can optionally login to Alchemy to get an increased drip.", "explorer": "https://goerli.arbiscan.io/", "research": "https://goerli.net/#about", - "symbol": "AGOR", + "symbol": "tAGOR", "rpc_url": "https://goerli-rollup.arbitrum.io/rpc", "type": "coin", "decimals": 18, diff --git a/blockchains/arbitrumgoerli/info/square_logo.png b/blockchains/arbitrumgoerli/info/square_logo.png new file mode 100644 index 0000000000000..793f7b4a3944e Binary files /dev/null and b/blockchains/arbitrumgoerli/info/square_logo.png differ diff --git a/blockchains/ark/info/info.json b/blockchains/ark/info/info.json index d12b07736a5db..929489712074f 100644 --- a/blockchains/ark/info/info.json +++ b/blockchains/ark/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/ArkEcosystem" }, { - "name": "twitter", - "url": "https://twitter.com/ArkEcosystem" + "name": "x", + "url": "https://x.com/ArkEcosystem" }, { "name": "reddit", diff --git a/blockchains/ark/info/square_logo.png b/blockchains/ark/info/square_logo.png new file mode 100644 index 0000000000000..1021715bad50e Binary files /dev/null and b/blockchains/ark/info/square_logo.png differ diff --git a/blockchains/aryacoin/info/info.json b/blockchains/aryacoin/info/info.json index eaa0dde3436eb..4e4f679144e80 100644 --- a/blockchains/aryacoin/info/info.json +++ b/blockchains/aryacoin/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Aryacoin/Aryacoin" }, { - "name": "twitter", - "url": "https://twitter.com/AryacoinAYA" + "name": "x", + "url": "https://x.com/AryacoinAYA" }, { "name": "whitepaper", diff --git a/blockchains/aryacoin/info/square_logo.png b/blockchains/aryacoin/info/square_logo.png new file mode 100644 index 0000000000000..38e63799a98fa Binary files /dev/null and b/blockchains/aryacoin/info/square_logo.png differ diff --git a/blockchains/aurora/assets/0x4007168965cBdB189A98E03C28695F900D92a11E/info.json b/blockchains/aurora/assets/0x4007168965cBdB189A98E03C28695F900D92a11E/info.json new file mode 100644 index 0000000000000..0dd6cb858d8c4 --- /dev/null +++ b/blockchains/aurora/assets/0x4007168965cBdB189A98E03C28695F900D92a11E/info.json @@ -0,0 +1,41 @@ +{ + "name": "DOVU", + "website": "https://dovu.earth/", + "description": "DOVU is a technology infrastructure provider, powering trusted environmental and carbon digital markets by providing market integrity. The DOVU token serves as the protocol’s utility token, enabling holders to participate and create their own environmental audit trail ecosystems. Token holders can stake their DOVU to earn multiplier rewards, aligning long-term incentives with the protocol’s mission of building reliable carbon markets.", + "explorer": "https://aurorascan.dev/address/0x4007168965cBdB189A98E03C28695F900D92a11E", + "type": "AURORA", + "symbol": "DOVU", + "decimals": 8, + "status": "active", + "id": "0x4007168965cBdB189A98E03C28695F900D92a11E", + "tags": [ + "wrapped", + "staking" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/dovuofficial/" + }, + { + "name": "x", + "url": "https://x.com/dovuofficial" + }, + { + "name": "blog", + "url": "https://dovu.earth/en/news/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dovu-earth/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dovu" + }, + { + "name": "youtube", + "url": "https://youtube.com/@DOVUearth" + } + ] +} \ No newline at end of file diff --git a/blockchains/aurora/assets/0x4007168965cBdB189A98E03C28695F900D92a11E/logo.png b/blockchains/aurora/assets/0x4007168965cBdB189A98E03C28695F900D92a11E/logo.png new file mode 100644 index 0000000000000..cb6c490323d55 Binary files /dev/null and b/blockchains/aurora/assets/0x4007168965cBdB189A98E03C28695F900D92a11E/logo.png differ diff --git a/blockchains/aurora/assets/0x7faA64Faf54750a2E3eE621166635fEAF406Ab22/info.json b/blockchains/aurora/assets/0x7faA64Faf54750a2E3eE621166635fEAF406Ab22/info.json index 813ea28f0ad6f..ea47c1f1df4a8 100644 --- a/blockchains/aurora/assets/0x7faA64Faf54750a2E3eE621166635fEAF406Ab22/info.json +++ b/blockchains/aurora/assets/0x7faA64Faf54750a2E3eE621166635fEAF406Ab22/info.json @@ -10,8 +10,8 @@ "id": "0x7faA64Faf54750a2E3eE621166635fEAF406Ab22", "links": [ { - "name": "twitter", - "url": "https://twitter.com/wannaswapamm" + "name": "x", + "url": "https://x.com/wannaswapamm" }, { "name": "github", diff --git a/blockchains/aurora/assets/0x8BEc47865aDe3B172A928df8f990Bc7f2A3b9f79/info.json b/blockchains/aurora/assets/0x8BEc47865aDe3B172A928df8f990Bc7f2A3b9f79/info.json index e77b553601a89..1091abdbc597a 100644 --- a/blockchains/aurora/assets/0x8BEc47865aDe3B172A928df8f990Bc7f2A3b9f79/info.json +++ b/blockchains/aurora/assets/0x8BEc47865aDe3B172A928df8f990Bc7f2A3b9f79/info.json @@ -10,8 +10,8 @@ "id": "0x8BEc47865aDe3B172A928df8f990Bc7f2A3b9f79", "links": [ { - "name": "twitter", - "url": "https://twitter.com/auroraisnear" + "name": "x", + "url": "https://x.com/auroraisnear" }, { "name": "github", @@ -25,4 +25,4 @@ "tags": [ "governance" ] -} +} \ No newline at end of file diff --git a/blockchains/aurora/info/info.json b/blockchains/aurora/info/info.json index 8c83c6b4cf0cc..ec4f794d52de6 100644 --- a/blockchains/aurora/info/info.json +++ b/blockchains/aurora/info/info.json @@ -9,10 +9,13 @@ "decimals": 18, "rpc_url": "https://mainnet.aurora.dev", "status": "active", + "tags": [ + "dapp" + ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/auroraisnear" + "name": "x", + "url": "https://x.com/auroraisnear" } ] -} +} \ No newline at end of file diff --git a/blockchains/aurora/info/square_logo.png b/blockchains/aurora/info/square_logo.png new file mode 100644 index 0000000000000..387b76904d2f8 Binary files /dev/null and b/blockchains/aurora/info/square_logo.png differ diff --git a/blockchains/avalanchec/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/info.json b/blockchains/avalanchec/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/info.json new file mode 100644 index 0000000000000..5e8188f95ff33 --- /dev/null +++ b/blockchains/avalanchec/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/info.json @@ -0,0 +1,14 @@ +{ + "name": "AUSD", + "type": "AVALANCHE", + "symbol": "AUSD", + "decimals": 6, + "website": "https://www.agora.finance/", + "description": "AUSD is a safe, secure asset that enables billions of dollars of transfers and is used globally.", + "explorer": "https://snowtrace.io/token/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a", + "status": "active", + "id": "0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a", + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/logo.png b/blockchains/avalanchec/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/logo.png new file mode 100644 index 0000000000000..b41ffbfbb87a1 Binary files /dev/null and b/blockchains/avalanchec/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/logo.png differ diff --git a/blockchains/avalanchec/assets/0x0f669808d88B2b0b3D23214DCD2a1cc6A8B1B5cd/info.json b/blockchains/avalanchec/assets/0x0f669808d88B2b0b3D23214DCD2a1cc6A8B1B5cd/info.json new file mode 100644 index 0000000000000..aead663352fd0 --- /dev/null +++ b/blockchains/avalanchec/assets/0x0f669808d88B2b0b3D23214DCD2a1cc6A8B1B5cd/info.json @@ -0,0 +1,17 @@ +{ + "name": "Blub", + "type": "AVALANCHEC", + "symbol": "BLUB", + "decimals": 18, + "website": "https://www.blubtheblob.com", + "description": "BLUB tokens can be traded on decentralized exchanges", + "explorer": "https://snowtrace.io/token/0x0f669808d88B2b0b3D23214DCD2a1cc6A8B1B5cd", + "status": "active", + "id": "0x0f669808d88B2b0b3D23214DCD2a1cc6A8B1B5cd", + "links": [ + { + "name": "x", + "url": "https://x.com/BlubBlobCoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x0f669808d88B2b0b3D23214DCD2a1cc6A8B1B5cd/logo.png b/blockchains/avalanchec/assets/0x0f669808d88B2b0b3D23214DCD2a1cc6A8B1B5cd/logo.png new file mode 100644 index 0000000000000..fde6c2db9a818 Binary files /dev/null and b/blockchains/avalanchec/assets/0x0f669808d88B2b0b3D23214DCD2a1cc6A8B1B5cd/logo.png differ diff --git a/blockchains/avalanchec/assets/0x184ff13B3EBCB25Be44e860163A5D8391Dd568c1/info.json b/blockchains/avalanchec/assets/0x184ff13B3EBCB25Be44e860163A5D8391Dd568c1/info.json new file mode 100644 index 0000000000000..c13f03da3cf76 --- /dev/null +++ b/blockchains/avalanchec/assets/0x184ff13B3EBCB25Be44e860163A5D8391Dd568c1/info.json @@ -0,0 +1,21 @@ +{ + "name": "KIMBO", + "website": "https://www.kimboavax.com/", + "description": "$KIMBO isn't just another token; it's a powerhouse with an incredibly dynamic community, led by the elite AVAX pioneers. It's clear as day: $KIMBO is on the fast track to becoming the absolute number 1 topdog in the crypto space.", + "explorer": "https://snowtrace.io/token/0x184ff13B3EBCB25Be44e860163A5D8391Dd568c1", + "type": "AVALANCHE", + "symbol": "KIMBO", + "decimals": 18, + "status": "active", + "id": "0x184ff13B3EBCB25Be44e860163A5D8391Dd568c1", + "links": [ + { + "name": "x", + "url": "https://x.com/KimboAvax" + }, + { + "name": "telegram", + "url": "https://t.me/KIMBOavax" + } + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x184ff13B3EBCB25Be44e860163A5D8391Dd568c1/logo.png b/blockchains/avalanchec/assets/0x184ff13B3EBCB25Be44e860163A5D8391Dd568c1/logo.png new file mode 100644 index 0000000000000..7275004f56759 Binary files /dev/null and b/blockchains/avalanchec/assets/0x184ff13B3EBCB25Be44e860163A5D8391Dd568c1/logo.png differ diff --git a/blockchains/avalanchec/assets/0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98/info.json b/blockchains/avalanchec/assets/0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98/info.json index c98169a5987ca..33af6cd4e3240 100644 --- a/blockchains/avalanchec/assets/0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98/info.json +++ b/blockchains/avalanchec/assets/0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98/info.json @@ -2,7 +2,7 @@ "name": "Binance USD", "symbol": "BUSD.e", "type": "AVALANCHE", - "decimals": 6, + "decimals": 18, "description": "The Avalanche Bridge Wrapped Binance USD. BUSD is a dollar-backed stablecoin issued and custodied by Paxos Trust Company, and regulated by the New York State Department of Financial Services. BUSD is available directly for sale 1:1 with USD on Paxos.com and will be listed for trading on Binance.", "website": "http://www.paxos.com/busd", "explorer": "https://snowtrace.io/token/0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98", @@ -10,8 +10,8 @@ "id": "0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PaxosGlobal" + "name": "x", + "url": "https://x.com/PaxosGlobal" }, { "name": "github", diff --git a/blockchains/avalanchec/assets/0x1C20E891Bab6b1727d14Da358FAe2984Ed9B59EB/info.json b/blockchains/avalanchec/assets/0x1C20E891Bab6b1727d14Da358FAe2984Ed9B59EB/info.json index c564e984177c7..da2b48ebcb4c0 100644 --- a/blockchains/avalanchec/assets/0x1C20E891Bab6b1727d14Da358FAe2984Ed9B59EB/info.json +++ b/blockchains/avalanchec/assets/0x1C20E891Bab6b1727d14Da358FAe2984Ed9B59EB/info.json @@ -18,8 +18,8 @@ "url": "https://coingecko.com/en/coins/true-usd/" }, { - "name": "twitter", - "url": "https://twitter.com/tusd_official" + "name": "x", + "url": "https://x.com/tusd_official" } ], "tags": [ diff --git a/blockchains/avalanchec/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/info.json b/blockchains/avalanchec/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/info.json new file mode 100644 index 0000000000000..8e1240b0ea192 --- /dev/null +++ b/blockchains/avalanchec/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/info.json @@ -0,0 +1,46 @@ +{ + "name": "Dypius", + "type": "AVALANCHE", + "symbol": "DYP", + "decimals": 18, + "website": "https://www.dypius.com/", + "description": "Dypius is a powerful, decentralized ecosystem with a focus on scalability, security, and global adoption through next-gen infrastructure. We offer a variety of products and services that cater to both beginners and advanced users in the crypto space including DeFi solutions, analytical tools, NFTs, Metaverse and more!", + "explorer": "https://snowtrace.io/token/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4", + "status": "active", + "id": "0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4", + "links": [ + { + "name": "x", + "url": "https://x.com/dypius" + }, + { + "name": "github", + "url": "https://github.com/dypfinance/" + }, + { + "name": "medium", + "url": "https://dypius.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/defi-yield-protocol-v2/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dypius" + }, + { + "name": "discord", + "url": "https://discord.com/invite/worldofdypians" + }, + { + "name": "whitepaper", + "url": "https://drive.google.com/drive/folders/1PprliiDlNB6Cx-35eaEun-gmjk0-a1O4" + } + ], + "tags": [ + "governance", + "nft", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/logo.png b/blockchains/avalanchec/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/logo.png new file mode 100644 index 0000000000000..b86b0fca332ad Binary files /dev/null and b/blockchains/avalanchec/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/logo.png differ diff --git a/blockchains/avalanchec/assets/0x1f1E7c893855525b303f99bDF5c3c05Be09ca251/info.json b/blockchains/avalanchec/assets/0x1f1E7c893855525b303f99bDF5c3c05Be09ca251/info.json index 2304efc483579..41053e685f287 100644 --- a/blockchains/avalanchec/assets/0x1f1E7c893855525b303f99bDF5c3c05Be09ca251/info.json +++ b/blockchains/avalanchec/assets/0x1f1E7c893855525b303f99bDF5c3c05Be09ca251/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/synapseprotocol" + "name": "x", + "url": "https://x.com/synapseprotocol" }, { "name": "telegram", diff --git a/blockchains/avalanchec/assets/0x20CF1b6E9d856321ed4686877CF4538F2C84B4dE/info.json b/blockchains/avalanchec/assets/0x20CF1b6E9d856321ed4686877CF4538F2C84B4dE/info.json index b0ec09919bd1f..0d6e4d0ba2eda 100644 --- a/blockchains/avalanchec/assets/0x20CF1b6E9d856321ed4686877CF4538F2C84B4dE/info.json +++ b/blockchains/avalanchec/assets/0x20CF1b6E9d856321ed4686877CF4538F2C84B4dE/info.json @@ -10,8 +10,8 @@ "id": "0x20CF1b6E9d856321ed4686877CF4538F2C84B4dE", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ankr" + "name": "x", + "url": "https://x.com/ankr" }, { "name": "github", @@ -53,4 +53,4 @@ "tags": [ "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x2147EFFF675e4A4eE1C2f918d181cDBd7a8E208f/info.json b/blockchains/avalanchec/assets/0x2147EFFF675e4A4eE1C2f918d181cDBd7a8E208f/info.json index b60199258d51a..03219ae9688a3 100644 --- a/blockchains/avalanchec/assets/0x2147EFFF675e4A4eE1C2f918d181cDBd7a8E208f/info.json +++ b/blockchains/avalanchec/assets/0x2147EFFF675e4A4eE1C2f918d181cDBd7a8E208f/info.json @@ -10,8 +10,8 @@ "id": "0x2147EFFF675e4A4eE1C2f918d181cDBd7a8E208f", "links": [ { - "name": "twitter", - "url": "https://twitter.com/alphafinancelab" + "name": "x", + "url": "https://x.com/alphafinancelab" }, { "name": "telegram", diff --git a/blockchains/avalanchec/assets/0x214DB107654fF987AD859F34125307783fC8e387/info.json b/blockchains/avalanchec/assets/0x214DB107654fF987AD859F34125307783fC8e387/info.json index c846bc7ecfc70..373248edb71e1 100644 --- a/blockchains/avalanchec/assets/0x214DB107654fF987AD859F34125307783fC8e387/info.json +++ b/blockchains/avalanchec/assets/0x214DB107654fF987AD859F34125307783fC8e387/info.json @@ -10,8 +10,8 @@ "id": "0x214DB107654fF987AD859F34125307783fC8e387", "links": [ { - "name": "twitter", - "url": "https://twitter.com/fraxfinance" + "name": "x", + "url": "https://x.com/fraxfinance" }, { "name": "telegram", diff --git a/blockchains/avalanchec/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json b/blockchains/avalanchec/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json index e9c494b1582fc..bf0340a4361dd 100644 --- a/blockchains/avalanchec/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json +++ b/blockchains/avalanchec/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json @@ -10,8 +10,8 @@ "id": "0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/everrise" + "name": "x", + "url": "https://x.com/everrise" }, { "name": "telegram", diff --git a/blockchains/avalanchec/assets/0x249848BeCA43aC405b8102Ec90Dd5F22CA513c06/info.json b/blockchains/avalanchec/assets/0x249848BeCA43aC405b8102Ec90Dd5F22CA513c06/info.json index 20dbc08d76ed5..dfaa074e52943 100644 --- a/blockchains/avalanchec/assets/0x249848BeCA43aC405b8102Ec90Dd5F22CA513c06/info.json +++ b/blockchains/avalanchec/assets/0x249848BeCA43aC405b8102Ec90Dd5F22CA513c06/info.json @@ -4,7 +4,7 @@ "type": "AVALANCHE", "decimals": 18, "description": "CRV is a governance token on the Curve platform with time-weighted voting and value accrual mechanisms.", - "website": "https://www.curve.fi/", + "website": "https://www.curve.finance/", "explorer": "https://snowtrace.io/token/0x249848BeCA43aC405b8102Ec90Dd5F22CA513c06", "status": "active", "id": "0x249848BeCA43aC405b8102Ec90Dd5F22CA513c06", @@ -18,8 +18,8 @@ "url": "https://coingecko.com/en/coins/curve-dao-token/" }, { - "name": "twitter", - "url": "https://twitter.com/CurveFinance" + "name": "x", + "url": "https://x.com/CurveFinance" } ], "tags": [ diff --git a/blockchains/avalanchec/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/info.json b/blockchains/avalanchec/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/info.json new file mode 100644 index 0000000000000..973b6de632a87 --- /dev/null +++ b/blockchains/avalanchec/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/info.json @@ -0,0 +1,28 @@ +{ + "name": "Stargate Finance", + "website": "https://stargate.finance", + "description": "Stargate is a fully composable liquidity transport protocol that lives at the heart of Omnichain DeFi.", + "explorer": "https://snowtrace.io/token/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590", + "type": "AVALANCHE", + "symbol": "STG", + "decimals": 18, + "status": "active", + "id": "0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590", + "links": [ + { + "name": "medium", + "url": "https://medium.com/stargate-official" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/LEM0ELklmO1kODdh" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/stargate-finance/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/logo.png b/blockchains/avalanchec/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/logo.png new file mode 100644 index 0000000000000..f983849d90c4f Binary files /dev/null and b/blockchains/avalanchec/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/logo.png differ diff --git a/blockchains/avalanchec/assets/0x2b2C81e08f1Af8835a78Bb2A90AE924ACE0eA4bE/info.json b/blockchains/avalanchec/assets/0x2b2C81e08f1Af8835a78Bb2A90AE924ACE0eA4bE/info.json index 1716d3ceaeda3..873f6479ca98a 100644 --- a/blockchains/avalanchec/assets/0x2b2C81e08f1Af8835a78Bb2A90AE924ACE0eA4bE/info.json +++ b/blockchains/avalanchec/assets/0x2b2C81e08f1Af8835a78Bb2A90AE924ACE0eA4bE/info.json @@ -10,8 +10,8 @@ "status": "active", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BenqiFinance" + "name": "x", + "url": "https://x.com/BenqiFinance" }, { "name": "telegram", @@ -52,7 +52,6 @@ ], "tags": [ "staking", - "defi", - "staking-native" + "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x340fE1D898ECCAad394e2ba0fC1F93d27c7b717A/info.json b/blockchains/avalanchec/assets/0x340fE1D898ECCAad394e2ba0fC1F93d27c7b717A/info.json index 104ff3b538945..c15cf80d2cf28 100644 --- a/blockchains/avalanchec/assets/0x340fE1D898ECCAad394e2ba0fC1F93d27c7b717A/info.json +++ b/blockchains/avalanchec/assets/0x340fE1D898ECCAad394e2ba0fC1F93d27c7b717A/info.json @@ -10,8 +10,8 @@ "id": "0x340fE1D898ECCAad394e2ba0fC1F93d27c7b717A", "links": [ { - "name": "twitter", - "url": "https://twitter.com/orbs_network" + "name": "x", + "url": "https://x.com/orbs_network" }, { "name": "medium", diff --git a/blockchains/avalanchec/assets/0x37B608519F91f70F2EeB0e5Ed9AF4061722e4F76/info.json b/blockchains/avalanchec/assets/0x37B608519F91f70F2EeB0e5Ed9AF4061722e4F76/info.json index f7eadc6c1d967..d8ed5432e35a5 100644 --- a/blockchains/avalanchec/assets/0x37B608519F91f70F2EeB0e5Ed9AF4061722e4F76/info.json +++ b/blockchains/avalanchec/assets/0x37B608519F91f70F2EeB0e5Ed9AF4061722e4F76/info.json @@ -10,8 +10,8 @@ "id": "0x37B608519F91f70F2EeB0e5Ed9AF4061722e4F76", "links": [ { - "name": "twitter", - "url": "https://twitter.com/sushiswap" + "name": "x", + "url": "https://x.com/sushiswap" }, { "name": "medium", diff --git a/blockchains/avalanchec/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json b/blockchains/avalanchec/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json new file mode 100644 index 0000000000000..4d49bd898e9e6 --- /dev/null +++ b/blockchains/avalanchec/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json @@ -0,0 +1,33 @@ +{ + "name": "Nya", + "type": "AVALANCHE", + "symbol": "NYA", + "decimals": 18, + "website": "https://www.nya.vip", + "description": "Explore the cultural phenomenon of Nya - the playful cat sound that's become a symbol of joy and connection. Discover how this simple word unites fans worldwide.", + "explorer": "https://snowtrace.io/token/0x38F9bf9dCe51833Ec7f03C9dC218197999999999", + "status": "active", + "id": "0x38F9bf9dCe51833Ec7f03C9dC218197999999999", + "links": [ + { + "name": "x", + "url": "https://x.com/NyaOnEarth" + }, + { + "name": "telegram", + "url": "https://t.me/NyaOnEarth" + }, + { + "name": "discord", + "url": "https://discord.com/invite/3V8gZFP5kb" + }, + { + "name": "docs", + "url": "https://wiki.nya.vip" + } + ], + "tags": [ + "memes", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png b/blockchains/avalanchec/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png new file mode 100644 index 0000000000000..c34f31c6b2335 Binary files /dev/null and b/blockchains/avalanchec/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png differ diff --git a/blockchains/avalanchec/assets/0x39fC9e94Caeacb435842FADeDeCB783589F50f5f/info.json b/blockchains/avalanchec/assets/0x39fC9e94Caeacb435842FADeDeCB783589F50f5f/info.json index 556cfa4f24131..91993e16461e7 100644 --- a/blockchains/avalanchec/assets/0x39fC9e94Caeacb435842FADeDeCB783589F50f5f/info.json +++ b/blockchains/avalanchec/assets/0x39fC9e94Caeacb435842FADeDeCB783589F50f5f/info.json @@ -10,8 +10,8 @@ "id": "0x39fC9e94Caeacb435842FADeDeCB783589F50f5f", "links": [ { - "name": "twitter", - "url": "https://twitter.com/KyberNetwork" + "name": "x", + "url": "https://x.com/KyberNetwork" }, { "name": "blog", diff --git a/blockchains/avalanchec/assets/0x3Ab1C9aDb065F3FcA0059652Cd7A52B05C98f9a9/info.json b/blockchains/avalanchec/assets/0x3Ab1C9aDb065F3FcA0059652Cd7A52B05C98f9a9/info.json new file mode 100644 index 0000000000000..0d501b82bdb61 --- /dev/null +++ b/blockchains/avalanchec/assets/0x3Ab1C9aDb065F3FcA0059652Cd7A52B05C98f9a9/info.json @@ -0,0 +1,25 @@ +{ + "name": "Orbs", + "website": "https://orbs.com", + "description": "Orbs is a blockchain infrastructure-as-a-service built for large scale consumer applications to meet their business and technological requirements.", + "explorer": "https://snowtrace.io/token/0x3Ab1C9aDb065F3FcA0059652Cd7A52B05C98f9a9", + "type": "AVALANCHEC", + "symbol": "ORBS", + "decimals": 18, + "status": "active", + "id": "0x3Ab1C9aDb065F3FcA0059652Cd7A52B05C98f9a9", + "links": [ + { + "name": "x", + "url": "https://x.com/orbs_network" + }, + { + "name": "github", + "url": "https://github.com/orbs-network" + }, + { + "name": "telegram", + "url": "https://t.me/orbs_network" + } + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x3Ab1C9aDb065F3FcA0059652Cd7A52B05C98f9a9/logo.png b/blockchains/avalanchec/assets/0x3Ab1C9aDb065F3FcA0059652Cd7A52B05C98f9a9/logo.png new file mode 100644 index 0000000000000..ba89f2dd8dd05 Binary files /dev/null and b/blockchains/avalanchec/assets/0x3Ab1C9aDb065F3FcA0059652Cd7A52B05C98f9a9/logo.png differ diff --git a/blockchains/avalanchec/assets/0x3Bd2B1c7ED8D396dbb98DED3aEbb41350a5b2339/info.json b/blockchains/avalanchec/assets/0x3Bd2B1c7ED8D396dbb98DED3aEbb41350a5b2339/info.json index 24162128e4dce..0b9e1932bb43b 100644 --- a/blockchains/avalanchec/assets/0x3Bd2B1c7ED8D396dbb98DED3aEbb41350a5b2339/info.json +++ b/blockchains/avalanchec/assets/0x3Bd2B1c7ED8D396dbb98DED3aEbb41350a5b2339/info.json @@ -1,5 +1,5 @@ { - "name": "UMA Voting Token v1", + "name": "UMA", "symbol": "UMA.e", "type": "AVALANCHE", "decimals": 18, @@ -10,8 +10,8 @@ "id": "0x3Bd2B1c7ED8D396dbb98DED3aEbb41350a5b2339", "links": [ { - "name": "twitter", - "url": "https://twitter.com/umaprotocol/" + "name": "x", + "url": "https://x.com/umaprotocol/" }, { "name": "medium", diff --git a/blockchains/avalanchec/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json b/blockchains/avalanchec/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json new file mode 100644 index 0000000000000..36ab197f0420f --- /dev/null +++ b/blockchains/avalanchec/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json @@ -0,0 +1,21 @@ +{ + "name": "FantasyGold", + "website": "https://fantasygold.co/cgi-sys/suspendedpage.cgi", + "description": "FantasyGold was built to become a multi-purpose platform offering Ethereum Virtual Machine based smart contracts and lightning fast transactions.", + "explorer": "https://snowtrace.io/token/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a", + "type": "AVALANCHE", + "symbol": "FGC", + "decimals": 18, + "status": "active", + "id": "0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a", + "links": [ + { + "name": "x", + "url": "https://x.com/fantasygoldcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fantasygold/" + } + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png b/blockchains/avalanchec/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png new file mode 100644 index 0000000000000..6876a666683e6 Binary files /dev/null and b/blockchains/avalanchec/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png differ diff --git a/blockchains/avalanchec/assets/0x420FcA0121DC28039145009570975747295f2329/info.json b/blockchains/avalanchec/assets/0x420FcA0121DC28039145009570975747295f2329/info.json new file mode 100644 index 0000000000000..6ef40e0174f51 --- /dev/null +++ b/blockchains/avalanchec/assets/0x420FcA0121DC28039145009570975747295f2329/info.json @@ -0,0 +1,21 @@ +{ + "name": "Coq Inu", + "website": "https://coqinu.com/", + "description": "We are the #1 meme coin on AVAX. Founded by well respected members of the community.", + "explorer": "https://snowtrace.io/token/0x420fca0121dc28039145009570975747295f2329", + "type": "AVALANCHE", + "symbol": "COQ", + "decimals": 18, + "status": "active", + "id": "0x420FcA0121DC28039145009570975747295f2329", + "links": [ + { + "name": "x", + "url": "https://x.com/coqinuavax" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coq-inu/" + } + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x420FcA0121DC28039145009570975747295f2329/logo.png b/blockchains/avalanchec/assets/0x420FcA0121DC28039145009570975747295f2329/logo.png new file mode 100644 index 0000000000000..0ca1800e33353 Binary files /dev/null and b/blockchains/avalanchec/assets/0x420FcA0121DC28039145009570975747295f2329/logo.png differ diff --git a/blockchains/avalanchec/assets/0x44c784266cf024a60e8acF2427b9857Ace194C5d/info.json b/blockchains/avalanchec/assets/0x44c784266cf024a60e8acF2427b9857Ace194C5d/info.json index e312279f61da6..1d143cd5f0a86 100644 --- a/blockchains/avalanchec/assets/0x44c784266cf024a60e8acF2427b9857Ace194C5d/info.json +++ b/blockchains/avalanchec/assets/0x44c784266cf024a60e8acF2427b9857Ace194C5d/info.json @@ -10,8 +10,8 @@ "id": "0x44c784266cf024a60e8acF2427b9857Ace194C5d", "links": [ { - "name": "twitter", - "url": "https://twitter.com/axelarcore" + "name": "x", + "url": "https://x.com/axelarcore" }, { "name": "github", diff --git a/blockchains/avalanchec/assets/0x57319d41F71E81F3c65F2a47CA4e001EbAFd4F33/info.json b/blockchains/avalanchec/assets/0x57319d41F71E81F3c65F2a47CA4e001EbAFd4F33/info.json index a30e178f2eba7..99eb43fdd48e4 100644 --- a/blockchains/avalanchec/assets/0x57319d41F71E81F3c65F2a47CA4e001EbAFd4F33/info.json +++ b/blockchains/avalanchec/assets/0x57319d41F71E81F3c65F2a47CA4e001EbAFd4F33/info.json @@ -10,8 +10,8 @@ "id": "0x57319d41F71E81F3c65F2a47CA4e001EbAFd4F33", "links": [ { - "name": "twitter", - "url": "https://twitter.com/traderjoe_xyz" + "name": "x", + "url": "https://x.com/traderjoe_xyz" }, { "name": "telegram", diff --git a/blockchains/avalanchec/assets/0x5947BB275c521040051D82396192181b413227A3/info.json b/blockchains/avalanchec/assets/0x5947BB275c521040051D82396192181b413227A3/info.json index a84ab55ddf7bf..7b888ebc34db3 100644 --- a/blockchains/avalanchec/assets/0x5947BB275c521040051D82396192181b413227A3/info.json +++ b/blockchains/avalanchec/assets/0x5947BB275c521040051D82396192181b413227A3/info.json @@ -1,5 +1,5 @@ { - "name": "Chainlink Token", + "name": "Chainlink", "symbol": "LINK.e", "type": "AVALANCHE", "decimals": 18, diff --git a/blockchains/avalanchec/assets/0x596fA47043f99A4e0F122243B841E55375cdE0d2/info.json b/blockchains/avalanchec/assets/0x596fA47043f99A4e0F122243B841E55375cdE0d2/info.json index 1f9cf617fa180..7ee1450b4a300 100644 --- a/blockchains/avalanchec/assets/0x596fA47043f99A4e0F122243B841E55375cdE0d2/info.json +++ b/blockchains/avalanchec/assets/0x596fA47043f99A4e0F122243B841E55375cdE0d2/info.json @@ -10,8 +10,8 @@ "id": "0x596fA47043f99A4e0F122243B841E55375cdE0d2", "links": [ { - "name": "twitter", - "url": "https://twitter.com/0xproject" + "name": "x", + "url": "https://x.com/0xproject" }, { "name": "blog", diff --git a/blockchains/avalanchec/assets/0x5fC17416925789E0852FBFcd81c490ca4abc51F9/info.json b/blockchains/avalanchec/assets/0x5fC17416925789E0852FBFcd81c490ca4abc51F9/info.json index bbef827650c7c..0913280c8cc1e 100644 --- a/blockchains/avalanchec/assets/0x5fC17416925789E0852FBFcd81c490ca4abc51F9/info.json +++ b/blockchains/avalanchec/assets/0x5fC17416925789E0852FBFcd81c490ca4abc51F9/info.json @@ -10,8 +10,8 @@ "id": "0x5fC17416925789E0852FBFcd81c490ca4abc51F9", "links": [ { - "name": "twitter", - "url": "https://twitter.com/InsureToken" + "name": "x", + "url": "https://x.com/InsureToken" }, { "name": "medium", diff --git a/blockchains/avalanchec/assets/0x62edc0692BD897D2295872a9FFCac5425011c661/info.json b/blockchains/avalanchec/assets/0x62edc0692BD897D2295872a9FFCac5425011c661/info.json index a4b5438a6ed9f..599d69d0031a1 100644 --- a/blockchains/avalanchec/assets/0x62edc0692BD897D2295872a9FFCac5425011c661/info.json +++ b/blockchains/avalanchec/assets/0x62edc0692BD897D2295872a9FFCac5425011c661/info.json @@ -18,8 +18,8 @@ "url": "https://coingecko.com/coins/gmx/" }, { - "name": "twitter", - "url": "https://twitter.com/GMX_IO" + "name": "x", + "url": "https://x.com/GMX_IO" }, { "name": "telegram", @@ -29,4 +29,4 @@ "tags": [ "defi" ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x63a72806098Bd3D9520cC43356dD78afe5D386D9/info.json b/blockchains/avalanchec/assets/0x63a72806098Bd3D9520cC43356dD78afe5D386D9/info.json index 3ca7632ac597f..a5f15adde8f6a 100644 --- a/blockchains/avalanchec/assets/0x63a72806098Bd3D9520cC43356dD78afe5D386D9/info.json +++ b/blockchains/avalanchec/assets/0x63a72806098Bd3D9520cC43356dD78afe5D386D9/info.json @@ -18,8 +18,8 @@ "url": "https://coingecko.com/en/coins/aave/" }, { - "name": "twitter", - "url": "https://twitter.com/AaveAave" + "name": "x", + "url": "https://x.com/AaveAave" } ], "tags": [ diff --git a/blockchains/avalanchec/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json b/blockchains/avalanchec/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json new file mode 100644 index 0000000000000..09c48eef40e56 --- /dev/null +++ b/blockchains/avalanchec/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json @@ -0,0 +1,21 @@ +{ + "name": "LayerZero", + "website": "https://layerzero.network/", + "description": "LayerZero is a technology that enables applications to move data across blockchains, uniquely supporting censorship-resistant messages and permissionless development through immutable smart contracts", + "explorer": "https://snowscan.xyz/token/0x6985884c4392d348587b19cb9eaaf157f13271cd", + "type": "AVALANCHE", + "symbol": "ZRO", + "decimals": 18, + "status": "active", + "id": "0x6985884C4392D348587B19cb9eAAf157F13271cd", + "links": [ + { + "name": "x", + "url": "https://x.com/LayerZero_Labs" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/VcqxYkStIDsyN2Rh" + } + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png b/blockchains/avalanchec/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png new file mode 100644 index 0000000000000..203a846cfdf6b Binary files /dev/null and b/blockchains/avalanchec/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png differ diff --git a/blockchains/avalanchec/assets/0x6C44e09737AC84BCf27633883dAF7487898E4e5e/info.json b/blockchains/avalanchec/assets/0x6C44e09737AC84BCf27633883dAF7487898E4e5e/info.json new file mode 100644 index 0000000000000..f48b3e823ff4f --- /dev/null +++ b/blockchains/avalanchec/assets/0x6C44e09737AC84BCf27633883dAF7487898E4e5e/info.json @@ -0,0 +1,21 @@ +{ + "name": "Opulous", + "type": "AVALANCHEC", + "symbol": "OPUL", + "website": "https://opulous.org/", + "decimals": 18, + "description": "Opulous Token believe in a future where musicians keep control of the music they create and forge even deeper connections with their fans.", + "explorer": "https://snowtrace.io/token/0x6C44e09737AC84BCf27633883dAF7487898E4e5e", + "status": "active", + "id": "0x6C44e09737AC84BCf27633883dAF7487898E4e5e", + "links": [ + { + "name": "telegram", + "url": "https://t.me/opulousapp" + }, + { + "name": "x", + "url": "https://x.com/opulousapp" + } + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x6C44e09737AC84BCf27633883dAF7487898E4e5e/logo.png b/blockchains/avalanchec/assets/0x6C44e09737AC84BCf27633883dAF7487898E4e5e/logo.png new file mode 100644 index 0000000000000..afa7fedd2bd39 Binary files /dev/null and b/blockchains/avalanchec/assets/0x6C44e09737AC84BCf27633883dAF7487898E4e5e/logo.png differ diff --git a/blockchains/avalanchec/assets/0x6b289CCeAA8639e3831095D75A3e43520faBf552/info.json b/blockchains/avalanchec/assets/0x6b289CCeAA8639e3831095D75A3e43520faBf552/info.json new file mode 100644 index 0000000000000..3448749f4eb51 --- /dev/null +++ b/blockchains/avalanchec/assets/0x6b289CCeAA8639e3831095D75A3e43520faBf552/info.json @@ -0,0 +1,28 @@ +{ + "name": "Cartesi", + "website": "https://cartesi.io", + "description": "Cartesi is the first Blockchain OS. It allows developers to build decentralized logic with Linux and standard programming environments preserving the decentralization and security of blockchains.", + "explorer": "https://snowtrace.io/token/0x6b289CCeAA8639e3831095D75A3e43520faBf552", + "type": "AVALANCHEC", + "symbol": "CTSI", + "decimals": 18, + "status": "active", + "id": "0x6b289CCeAA8639e3831095D75A3e43520faBf552", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/cartesiproject" + }, + { + "name": "telegram", + "url": "https://t.me/cartesiannouncements" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/cartesi/" + } + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x6b289CCeAA8639e3831095D75A3e43520faBf552/logo.png b/blockchains/avalanchec/assets/0x6b289CCeAA8639e3831095D75A3e43520faBf552/logo.png new file mode 100644 index 0000000000000..8317ac643a40d Binary files /dev/null and b/blockchains/avalanchec/assets/0x6b289CCeAA8639e3831095D75A3e43520faBf552/logo.png differ diff --git a/blockchains/avalanchec/assets/0x6e84a6216eA6dACC71eE8E6b0a5B7322EEbC0fDd/info.json b/blockchains/avalanchec/assets/0x6e84a6216eA6dACC71eE8E6b0a5B7322EEbC0fDd/info.json index ccf4bf9688df6..696f508f7f97a 100644 --- a/blockchains/avalanchec/assets/0x6e84a6216eA6dACC71eE8E6b0a5B7322EEbC0fDd/info.json +++ b/blockchains/avalanchec/assets/0x6e84a6216eA6dACC71eE8E6b0a5B7322EEbC0fDd/info.json @@ -10,8 +10,8 @@ "id": "0x6e84a6216eA6dACC71eE8E6b0a5B7322EEbC0fDd", "links": [ { - "name": "twitter", - "url": "https://twitter.com/traderjoe_xyz" + "name": "x", + "url": "https://x.com/traderjoe_xyz" }, { "name": "telegram", diff --git a/blockchains/avalanchec/assets/0x70928E5B188def72817b7775F0BF6325968e563B/info.json b/blockchains/avalanchec/assets/0x70928E5B188def72817b7775F0BF6325968e563B/info.json index cd0f0a4f41d06..6b059d1c782b0 100644 --- a/blockchains/avalanchec/assets/0x70928E5B188def72817b7775F0BF6325968e563B/info.json +++ b/blockchains/avalanchec/assets/0x70928E5B188def72817b7775F0BF6325968e563B/info.json @@ -1,5 +1,5 @@ { - "name": "LUNA (Portal)", + "name": "Terra Classic (Portal)", "symbol": "LUNA", "type": "AVALANCHE", "decimals": 6, diff --git a/blockchains/avalanchec/assets/0x714f020C54cc9D104B6F4f6998C63ce2a31D1888/info.json b/blockchains/avalanchec/assets/0x714f020C54cc9D104B6F4f6998C63ce2a31D1888/info.json new file mode 100644 index 0000000000000..20d3ca0dbbf61 --- /dev/null +++ b/blockchains/avalanchec/assets/0x714f020C54cc9D104B6F4f6998C63ce2a31D1888/info.json @@ -0,0 +1,21 @@ +{ + "name": "Step App", + "website": "https://step.app/", + "description": "Step App (FITFI) is a project based on the Step protocol for FitFi (Fitness Finance) where users and their metaverse avatars complete fitness quests and PvP (player versus player) challenges.", + "explorer": "https://snowtrace.io/token/0x714f020c54cc9d104b6f4f6998c63ce2a31d1888", + "type": "AVALANCHE", + "symbol": "FITFI", + "decimals": 18, + "status": "active", + "id": "0x714f020C54cc9D104B6F4f6998C63ce2a31D1888", + "links": [ + { + "name": "x", + "url": "https://x.com/stepapp_" + }, + { + "name": "telegram", + "url": "https://t.me/stepappchat" + } + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x714f020C54cc9D104B6F4f6998C63ce2a31D1888/logo.png b/blockchains/avalanchec/assets/0x714f020C54cc9D104B6F4f6998C63ce2a31D1888/logo.png new file mode 100644 index 0000000000000..981faa3d0b1d9 Binary files /dev/null and b/blockchains/avalanchec/assets/0x714f020C54cc9D104B6F4f6998C63ce2a31D1888/logo.png differ diff --git a/blockchains/avalanchec/assets/0x7b2B702706D9b361dfE3f00bD138C0CFDA7FB2Cf/info.json b/blockchains/avalanchec/assets/0x7b2B702706D9b361dfE3f00bD138C0CFDA7FB2Cf/info.json index ef8d8071fca89..096cb2e7e5a52 100644 --- a/blockchains/avalanchec/assets/0x7b2B702706D9b361dfE3f00bD138C0CFDA7FB2Cf/info.json +++ b/blockchains/avalanchec/assets/0x7b2B702706D9b361dfE3f00bD138C0CFDA7FB2Cf/info.json @@ -10,8 +10,8 @@ "id": "0x7b2B702706D9b361dfE3f00bD138C0CFDA7FB2Cf", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PollenDeFi" + "name": "x", + "url": "https://x.com/PollenDeFi" }, { "name": "github", diff --git a/blockchains/avalanchec/assets/0x8729438EB15e2C8B576fCc6AeCdA6A148776C0F5/info.json b/blockchains/avalanchec/assets/0x8729438EB15e2C8B576fCc6AeCdA6A148776C0F5/info.json new file mode 100644 index 0000000000000..7a3320fa329c7 --- /dev/null +++ b/blockchains/avalanchec/assets/0x8729438EB15e2C8B576fCc6AeCdA6A148776C0F5/info.json @@ -0,0 +1,21 @@ +{ + "name": "BENQI", + "type": "AVALANCHE", + "symbol": "QI", + "decimals": 18, + "website": "https://benqi.fi/", + "description": "BENQI is a decentralized non-custodial liquidity market as well as a liquid staking protocol built on the high-speed Avalanche smart contract network.", + "explorer": "https://snowtrace.io/token/0x8729438EB15e2C8B576fCc6AeCdA6A148776C0F5", + "status": "active", + "id": "0x8729438EB15e2C8B576fCc6AeCdA6A148776C0F5", + "links": [ + { + "name": "x", + "url": "https://x.com/BenqiFinance" + }, + { + "name": "telegram", + "url": "https://t.me/BenqiFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x8729438EB15e2C8B576fCc6AeCdA6A148776C0F5/logo.png b/blockchains/avalanchec/assets/0x8729438EB15e2C8B576fCc6AeCdA6A148776C0F5/logo.png new file mode 100644 index 0000000000000..fa649485b6b09 Binary files /dev/null and b/blockchains/avalanchec/assets/0x8729438EB15e2C8B576fCc6AeCdA6A148776C0F5/logo.png differ diff --git a/blockchains/avalanchec/assets/0x8a0cAc13c7da965a312f08ea4229c37869e85cB9/info.json b/blockchains/avalanchec/assets/0x8a0cAc13c7da965a312f08ea4229c37869e85cB9/info.json index 96cf171b0b214..129c71467e4cb 100644 --- a/blockchains/avalanchec/assets/0x8a0cAc13c7da965a312f08ea4229c37869e85cB9/info.json +++ b/blockchains/avalanchec/assets/0x8a0cAc13c7da965a312f08ea4229c37869e85cB9/info.json @@ -1,5 +1,5 @@ { - "name": "Graph Token", + "name": "The Graph", "symbol": "GRT.e", "type": "AVALANCHE", "decimals": 18, @@ -18,8 +18,8 @@ "url": "https://coingecko.com/en/coins/the-graph/" }, { - "name": "twitter", - "url": "https://twitter.com/graphprotocol" + "name": "x", + "url": "https://x.com/graphprotocol" } ], "tags": [ diff --git a/blockchains/avalanchec/assets/0x8cE2Dee54bB9921a2AE0A63dBb2DF8eD88B91dD9/info.json b/blockchains/avalanchec/assets/0x8cE2Dee54bB9921a2AE0A63dBb2DF8eD88B91dD9/info.json new file mode 100644 index 0000000000000..4a13d5ade3d16 --- /dev/null +++ b/blockchains/avalanchec/assets/0x8cE2Dee54bB9921a2AE0A63dBb2DF8eD88B91dD9/info.json @@ -0,0 +1,49 @@ +{ + "name": "Aave", + "website": "https://aave.com/", + "description": "Aave is an Open Source and Non-Custodial protocol to earn interest on deposits & borrow assets. It also features access to highly innovative flash loans, which let developers borrow instantly and easily; no collateral needed.", + "explorer": "https://snowscan.xyz/token/0x8cE2Dee54bB9921a2AE0A63dBb2DF8eD88B91dD9", + "type": "AVALANCHE", + "symbol": "AAVE", + "decimals": 18, + "status": "active", + "id": "0x8cE2Dee54bB9921a2AE0A63dBb2DF8eD88B91dD9", + "tags": [ + "defi", + "governance" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/aave/aave-protocol" + }, + { + "name": "x", + "url": "https://x.com/aave" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Aave_Official" + }, + { + "name": "blog", + "url": "https://medium.com/aave" + }, + { + "name": "facebook", + "url": "https://facebook.com/AaveCom" + }, + { + "name": "whitepaper", + "url": "https://github.com/aave/aave-protocol/blob/master/docs/Aave_Protocol_Whitepaper_v1_0.pdf/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/aave/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/aave/" + } + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x8cE2Dee54bB9921a2AE0A63dBb2DF8eD88B91dD9/logo.png b/blockchains/avalanchec/assets/0x8cE2Dee54bB9921a2AE0A63dBb2DF8eD88B91dD9/logo.png new file mode 100644 index 0000000000000..d53b11427e965 Binary files /dev/null and b/blockchains/avalanchec/assets/0x8cE2Dee54bB9921a2AE0A63dBb2DF8eD88B91dD9/logo.png differ diff --git a/blockchains/avalanchec/assets/0x8eBAf22B6F053dFFeaf46f4Dd9eFA95D89ba8580/info.json b/blockchains/avalanchec/assets/0x8eBAf22B6F053dFFeaf46f4Dd9eFA95D89ba8580/info.json index 01563a4d24c76..5c3993092e47d 100644 --- a/blockchains/avalanchec/assets/0x8eBAf22B6F053dFFeaf46f4Dd9eFA95D89ba8580/info.json +++ b/blockchains/avalanchec/assets/0x8eBAf22B6F053dFFeaf46f4Dd9eFA95D89ba8580/info.json @@ -18,8 +18,8 @@ "url": "https://coingecko.com/en/coins/uniswap/" }, { - "name": "twitter", - "url": "https://twitter.com/uniswap/" + "name": "x", + "url": "https://x.com/uniswap/" } ], "tags": [ diff --git a/blockchains/avalanchec/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json b/blockchains/avalanchec/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json index 802fbef4b3e18..eb8eb076ca7b7 100644 --- a/blockchains/avalanchec/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json +++ b/blockchains/avalanchec/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json @@ -6,12 +6,12 @@ "website": "https://www.dypius.com/", "description": "Dypius is a powerful, decentralized ecosystem with a focus on scalability, security, and global adoption through next-gen infrastructure. We offer a variety of products and services that cater to both beginners and advanced users in the crypto space including DeFi solutions, analytical tools, NFTs, Metaverse and more!", "explorer": "https://snowtrace.io/token/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", - "status": "active", + "status": "abandoned", "id": "0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", "links": [ { - "name": "twitter", - "url": "https://twitter.com/dypfinance" + "name": "x", + "url": "https://x.com/dypfinance" }, { "name": "github", @@ -41,7 +41,6 @@ "tags": [ "governance", "nft", - "defi", - "staking-native" + "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png b/blockchains/avalanchec/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png deleted file mode 100644 index 129342cfae435..0000000000000 Binary files a/blockchains/avalanchec/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png and /dev/null differ diff --git a/blockchains/avalanchec/assets/0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7/info.json b/blockchains/avalanchec/assets/0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7/info.json index 76efb20dff6b2..d4cbec782ca60 100644 --- a/blockchains/avalanchec/assets/0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7/info.json +++ b/blockchains/avalanchec/assets/0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7/info.json @@ -1,5 +1,5 @@ { - "name": "TetherToken", + "name": "Tether", "symbol": "USDt", "type": "AVALANCHE", "decimals": 6, @@ -10,8 +10,8 @@ "id": "0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Tether_to" + "name": "x", + "url": "https://x.com/Tether_to" }, { "name": "whitepaper", diff --git a/blockchains/avalanchec/assets/0x98443B96EA4b0858FDF3219Cd13e98C7A4690588/info.json b/blockchains/avalanchec/assets/0x98443B96EA4b0858FDF3219Cd13e98C7A4690588/info.json index 496ead8498ed6..6e24a6edee865 100644 --- a/blockchains/avalanchec/assets/0x98443B96EA4b0858FDF3219Cd13e98C7A4690588/info.json +++ b/blockchains/avalanchec/assets/0x98443B96EA4b0858FDF3219Cd13e98C7A4690588/info.json @@ -18,8 +18,8 @@ "url": "https://coingecko.com/en/coins/basic-attention-token/" }, { - "name": "twitter", - "url": "https://twitter.com/@attentiontoken" + "name": "x", + "url": "https://x.com/@attentiontoken" } ], "tags": [ diff --git a/blockchains/avalanchec/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/info.json b/blockchains/avalanchec/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/info.json new file mode 100644 index 0000000000000..15bc620b504a8 --- /dev/null +++ b/blockchains/avalanchec/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/info.json @@ -0,0 +1,41 @@ +{ + "name": "BUSD", + "website": "https://paxos.com/busd", + "description": "BNB pegged BUSD is a token issued by Binance on Smart Chain; its price is pegged to BUSD (BUSD ERC20) at a ratio of 1:1.", + "explorer": "https://snowtrace.io/token/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39", + "research": "https://research.binance.com/en/projects/binance-usd", + "type": "AVALANCHE", + "symbol": "BUSD", + "decimals": 18, + "status": "active", + "id": "0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39", + "tags": [ + "binance-peg" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/binance-chain/" + }, + { + "name": "x", + "url": "https://x.com/binance_dex" + }, + { + "name": "blog", + "url": "https://binance.org/en/blog/" + }, + { + "name": "telegram", + "url": "https://t.me/BinanceDEXchange" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/binance-usd/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/binance-usd/" + } + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/logo.png b/blockchains/avalanchec/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/logo.png new file mode 100644 index 0000000000000..76d02e370b6d6 Binary files /dev/null and b/blockchains/avalanchec/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/logo.png differ diff --git a/blockchains/avalanchec/assets/0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc/info.json b/blockchains/avalanchec/assets/0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc/info.json index da05b0b1539bc..7a85eec48fbd2 100644 --- a/blockchains/avalanchec/assets/0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc/info.json +++ b/blockchains/avalanchec/assets/0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc/info.json @@ -1,5 +1,5 @@ { - "name": "yearn.finance", + "name": "Yearn", "symbol": "YFI.e", "type": "AVALANCHE", "decimals": 18, @@ -10,8 +10,8 @@ "id": "0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc", "links": [ { - "name": "twitter", - "url": "https://twitter.com/iearnfinance" + "name": "x", + "url": "https://x.com/iearnfinance" }, { "name": "medium", diff --git a/blockchains/avalanchec/assets/0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664/info.json b/blockchains/avalanchec/assets/0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664/info.json index cea32c4733e1d..57554e0df17cf 100644 --- a/blockchains/avalanchec/assets/0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664/info.json +++ b/blockchains/avalanchec/assets/0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664/info.json @@ -10,8 +10,8 @@ "id": "0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664", "links": [ { - "name": "twitter", - "url": "https://twitter.com/centre_io" + "name": "x", + "url": "https://x.com/centre_io" }, { "name": "whitepaper", diff --git a/blockchains/avalanchec/assets/0xB0a6e056B587D0a85640b39b1cB44086F7a26A1E/info.json b/blockchains/avalanchec/assets/0xB0a6e056B587D0a85640b39b1cB44086F7a26A1E/info.json index cf441bd13edfc..56eefcce8278b 100644 --- a/blockchains/avalanchec/assets/0xB0a6e056B587D0a85640b39b1cB44086F7a26A1E/info.json +++ b/blockchains/avalanchec/assets/0xB0a6e056B587D0a85640b39b1cB44086F7a26A1E/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/oddz_fi_announcements" }, { - "name": "twitter", - "url": "https://twitter.com/oddz_finance" + "name": "x", + "url": "https://x.com/oddz_finance" }, { "name": "facebook", diff --git a/blockchains/avalanchec/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/info.json b/blockchains/avalanchec/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/info.json index 068db31c8ecfa..6be98e316cecc 100644 --- a/blockchains/avalanchec/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/info.json +++ b/blockchains/avalanchec/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/info.json @@ -10,8 +10,8 @@ "id": "0xB44a9B6905aF7c801311e8F4E76932ee959c663C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/AnyswapNetwork" + "name": "x", + "url": "https://x.com/AnyswapNetwork" }, { "name": "telegram", diff --git a/blockchains/avalanchec/assets/0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E/info.json b/blockchains/avalanchec/assets/0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E/info.json index 23667020134f4..947deffd91225 100644 --- a/blockchains/avalanchec/assets/0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E/info.json +++ b/blockchains/avalanchec/assets/0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E/info.json @@ -1,5 +1,5 @@ { - "name": "USD Coin", + "name": "USDC", "symbol": "USDC", "type": "AVALANCHE", "decimals": 6, @@ -10,8 +10,8 @@ "id": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E", "links": [ { - "name": "twitter", - "url": "https://twitter.com/centre_io" + "name": "x", + "url": "https://x.com/centre_io" }, { "name": "whitepaper", diff --git a/blockchains/avalanchec/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json b/blockchains/avalanchec/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json index a028309b9b7af..e20268f2487cc 100644 --- a/blockchains/avalanchec/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json +++ b/blockchains/avalanchec/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json @@ -10,8 +10,8 @@ "id": "0xBD100d061E120b2c67A24453CF6368E63f1Be056", "links": [ { - "name": "twitter", - "url": "https://twitter.com/dypfinance" + "name": "x", + "url": "https://x.com/dypfinance" }, { "name": "github", @@ -40,8 +40,6 @@ ], "tags": [ "governance", - "defi", - "staking-native" + "defi" ] -} - +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xBeC243C995409E6520D7C41E404da5dEba4b209B/info.json b/blockchains/avalanchec/assets/0xBeC243C995409E6520D7C41E404da5dEba4b209B/info.json index 710ceb54c132e..405078818d807 100644 --- a/blockchains/avalanchec/assets/0xBeC243C995409E6520D7C41E404da5dEba4b209B/info.json +++ b/blockchains/avalanchec/assets/0xBeC243C995409E6520D7C41E404da5dEba4b209B/info.json @@ -1,5 +1,5 @@ { - "name": "Synthetix Network Token", + "name": "Synthetix", "symbol": "SNX.e", "type": "AVALANCHE", "decimals": 18, @@ -10,8 +10,8 @@ "id": "0xBeC243C995409E6520D7C41E404da5dEba4b209B", "links": [ { - "name": "twitter", - "url": "https://twitter.com/synthetix_io" + "name": "x", + "url": "https://x.com/synthetix_io" }, { "name": "blog", diff --git a/blockchains/avalanchec/assets/0xC0C5AA69Dbe4d6DDdfBc89c0957686ec60F24389/info.json b/blockchains/avalanchec/assets/0xC0C5AA69Dbe4d6DDdfBc89c0957686ec60F24389/info.json index 0be121cf4ee1a..3fb1bd7ca1f11 100644 --- a/blockchains/avalanchec/assets/0xC0C5AA69Dbe4d6DDdfBc89c0957686ec60F24389/info.json +++ b/blockchains/avalanchec/assets/0xC0C5AA69Dbe4d6DDdfBc89c0957686ec60F24389/info.json @@ -10,8 +10,8 @@ "id": "0xC0C5AA69Dbe4d6DDdfBc89c0957686ec60F24389", "links": [ { - "name": "twitter", - "url": "https://twitter.com/XEN_Crypto" + "name": "x", + "url": "https://x.com/XEN_Crypto" }, { "name": "telegram", diff --git a/blockchains/avalanchec/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json b/blockchains/avalanchec/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json index c1615bc9472c2..98c6debcba9e7 100644 --- a/blockchains/avalanchec/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json +++ b/blockchains/avalanchec/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json @@ -18,8 +18,8 @@ "url": "https://coingecko.com/en/coins/everrise" }, { - "name": "twitter", - "url": "https://twitter.com/everrise" + "name": "x", + "url": "https://x.com/everrise" }, { "name": "telegram", diff --git a/blockchains/avalanchec/assets/0xC891EB4cbdEFf6e073e859e987815Ed1505c2ACD/info.json b/blockchains/avalanchec/assets/0xC891EB4cbdEFf6e073e859e987815Ed1505c2ACD/info.json new file mode 100644 index 0000000000000..6fcafe674026c --- /dev/null +++ b/blockchains/avalanchec/assets/0xC891EB4cbdEFf6e073e859e987815Ed1505c2ACD/info.json @@ -0,0 +1,24 @@ +{ + "name": "EURC", + "type": "AVALANCHE", + "symbol": "EURC", + "decimals": 6, + "website": "https://www.circle.com/eurc", + "description": "Eurocoin (EUC) is an open-sourced, decentralized digital cryptocurrency that functions on a community-based standard.", + "explorer": "https://snowtrace.io/token/0xC891EB4cbdEFf6e073e859e987815Ed1505c2ACD", + "status": "active", + "id": "0xC891EB4cbdEFf6e073e859e987815Ed1505c2ACD", + "links": [ + { + "name": "x", + "url": "https://x.com/circle" + }, + { + "name": "discord", + "url": "https://discord.com/invite/buildoncircle" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xC891EB4cbdEFf6e073e859e987815Ed1505c2ACD/logo.png b/blockchains/avalanchec/assets/0xC891EB4cbdEFf6e073e859e987815Ed1505c2ACD/logo.png new file mode 100644 index 0000000000000..77007fae31677 Binary files /dev/null and b/blockchains/avalanchec/assets/0xC891EB4cbdEFf6e073e859e987815Ed1505c2ACD/logo.png differ diff --git a/blockchains/avalanchec/assets/0xCE1bFFBD5374Dac86a2893119683F4911a2F7814/info.json b/blockchains/avalanchec/assets/0xCE1bFFBD5374Dac86a2893119683F4911a2F7814/info.json index c2ba4b253167b..0c0b0d1632ff1 100644 --- a/blockchains/avalanchec/assets/0xCE1bFFBD5374Dac86a2893119683F4911a2F7814/info.json +++ b/blockchains/avalanchec/assets/0xCE1bFFBD5374Dac86a2893119683F4911a2F7814/info.json @@ -10,8 +10,8 @@ "id": "0xCE1bFFBD5374Dac86a2893119683F4911a2F7814", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MIM_Spell" + "name": "x", + "url": "https://x.com/MIM_Spell" }, { "name": "medium", diff --git a/blockchains/avalanchec/assets/0xD24C2Ad096400B6FBcd2ad8B24E7acBc21A1da64/info.json b/blockchains/avalanchec/assets/0xD24C2Ad096400B6FBcd2ad8B24E7acBc21A1da64/info.json index a59f529047b61..827557e864a4b 100644 --- a/blockchains/avalanchec/assets/0xD24C2Ad096400B6FBcd2ad8B24E7acBc21A1da64/info.json +++ b/blockchains/avalanchec/assets/0xD24C2Ad096400B6FBcd2ad8B24E7acBc21A1da64/info.json @@ -18,8 +18,8 @@ "url": "https://coingecko.com/en/coins/frax/" }, { - "name": "twitter", - "url": "https://twitter.com/fraxfinance" + "name": "x", + "url": "https://x.com/fraxfinance" } ], "tags": [ diff --git a/blockchains/avalanchec/assets/0xDB021b1B247fe2F1fa57e0A87C748Cc1E321F07F/info.json b/blockchains/avalanchec/assets/0xDB021b1B247fe2F1fa57e0A87C748Cc1E321F07F/info.json new file mode 100644 index 0000000000000..28b11101f474a --- /dev/null +++ b/blockchains/avalanchec/assets/0xDB021b1B247fe2F1fa57e0A87C748Cc1E321F07F/info.json @@ -0,0 +1,21 @@ +{ + "name": "Ampleforth", + "website": "https://ampleforth.org", + "description": "Ampleforth describes itself as smart commodity money. It is chain-agnostic and reportedly less-correlated to Bitcoin and other digital assets.", + "explorer": "https://snowtrace.io/token/0x027dbca046ca156de9622cd1e2d907d375e53aa7s", + "type": "AVALANCHEC", + "symbol": "AMPL", + "decimals": 9, + "status": "active", + "id": "0xDB021b1B247fe2F1fa57e0A87C748Cc1E321F07F", + "links": [ + { + "name": "x", + "url": "https://x.com/ampleforthorg" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ampleforth" + } + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xDB021b1B247fe2F1fa57e0A87C748Cc1E321F07F/logo.png b/blockchains/avalanchec/assets/0xDB021b1B247fe2F1fa57e0A87C748Cc1E321F07F/logo.png new file mode 100644 index 0000000000000..40c6216b6e0c8 Binary files /dev/null and b/blockchains/avalanchec/assets/0xDB021b1B247fe2F1fa57e0A87C748Cc1E321F07F/logo.png differ diff --git a/blockchains/avalanchec/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json b/blockchains/avalanchec/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json index 014fea860b032..8ff334b098884 100644 --- a/blockchains/avalanchec/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json +++ b/blockchains/avalanchec/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json @@ -10,8 +10,8 @@ "id": "0xDbA7b24257fC6e397cB7368B4BC922E944072f1b", "links": [ { - "name": "twitter", - "url": "https://twitter.com/everrise" + "name": "x", + "url": "https://x.com/everrise" }, { "name": "telegram", diff --git a/blockchains/avalanchec/assets/0xF2F7CE610a091B94d41D69f4fF1129434a82E2f0/info.json b/blockchains/avalanchec/assets/0xF2F7CE610a091B94d41D69f4fF1129434a82E2f0/info.json index 016ed317a2d4a..95d7e9486ba7b 100644 --- a/blockchains/avalanchec/assets/0xF2F7CE610a091B94d41D69f4fF1129434a82E2f0/info.json +++ b/blockchains/avalanchec/assets/0xF2F7CE610a091B94d41D69f4fF1129434a82E2f0/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/GalaxyGoggle" }, { - "name": "twitter", - "url": "https://twitter.com/galaxygoggledao" + "name": "x", + "url": "https://x.com/galaxygoggledao" }, { "name": "telegram", diff --git a/blockchains/avalanchec/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/info.json b/blockchains/avalanchec/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/info.json new file mode 100644 index 0000000000000..b7f6fd6c695b7 --- /dev/null +++ b/blockchains/avalanchec/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/info.json @@ -0,0 +1,28 @@ +{ + "name": "Folks Finance", + "type": "AVALANCHE", + "symbol": "FOLKS", + "decimals": 6, + "website": "https://folks.finance", + "description": "Folks Finance is a crosschain decentralized finance (DeFi) protocol that enables users to supply, borrow, and manage digital assets across multiple blockchains from a single platform.", + "explorer": "https://snowtrace.io/token/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B?type=erc20&chainid=43114", + "status": "active", + "id": "0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B", + "links": [ + { + "name": "x", + "url": "https://x.com/FolksFinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/folks-finance/" + }, + { + "name": "whitepaper", + "url": "https://docs.xapp.folks.finance/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/logo.png b/blockchains/avalanchec/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/logo.png new file mode 100644 index 0000000000000..ea3dae362320d Binary files /dev/null and b/blockchains/avalanchec/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/logo.png differ diff --git a/blockchains/avalanchec/assets/0xFFFF003a6BAD9b743d658048742935fFFE2b6ED7/info.json b/blockchains/avalanchec/assets/0xFFFF003a6BAD9b743d658048742935fFFE2b6ED7/info.json new file mode 100644 index 0000000000000..d3b43c1e6d0a9 --- /dev/null +++ b/blockchains/avalanchec/assets/0xFFFF003a6BAD9b743d658048742935fFFE2b6ED7/info.json @@ -0,0 +1,17 @@ +{ + "name": "yellow ket", + "type": "AVALANCHEC", + "symbol": "KET", + "decimals": 18, + "website": "https://www.ketboard.xyz", + "description": "Monitor and expose wallet activity from the $ket presale, including significant token dumps and attempts to obscure trading patterns.", + "explorer": "https://snowscan.xyz/token/0xFFFF003a6BAD9b743d658048742935fFFE2b6ED7", + "status": "active", + "id": "0xFFFF003a6BAD9b743d658048742935fFFE2b6ED7", + "links": [ + { + "name": "x", + "url": "https://x.com/yellowcatdao" + } + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xFFFF003a6BAD9b743d658048742935fFFE2b6ED7/logo.png b/blockchains/avalanchec/assets/0xFFFF003a6BAD9b743d658048742935fFFE2b6ED7/logo.png new file mode 100644 index 0000000000000..e4e65ed409193 Binary files /dev/null and b/blockchains/avalanchec/assets/0xFFFF003a6BAD9b743d658048742935fFFE2b6ED7/logo.png differ diff --git a/blockchains/avalanchec/assets/0xaBC9547B534519fF73921b1FBA6E672b5f58D083/info.json b/blockchains/avalanchec/assets/0xaBC9547B534519fF73921b1FBA6E672b5f58D083/info.json new file mode 100644 index 0000000000000..14c9fbaacc986 --- /dev/null +++ b/blockchains/avalanchec/assets/0xaBC9547B534519fF73921b1FBA6E672b5f58D083/info.json @@ -0,0 +1,36 @@ +{ + "name": "WOO", + "type": "AVALANCHE", + "symbol": "WOO", + "decimals": 18, + "website": "https://woo.network", + "description": "Wootrade aims to provide deep liquidity and superior order execution at the lowest cost for traders, exchanges, institutions, and DeFi platforms. Its flagship, WOO X, is a professional trading platform featuring customizable modules, and zero-fees with deep liquidity across spot and margin. Wootrade was founded by Kronos Research, a quantitative trading firm generating $10-15B in daily volume, with the goal of democratizing access to deep liquidity and yield strategies through various products.", + "explorer": "https://snowtrace.io/token/0xabc9547b534519ff73921b1fba6e672b5f58d083", + "status": "active", + "id": "0xaBC9547B534519fF73921b1FBA6E672b5f58D083", + "tags": [ + "defi" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/wootrade" + }, + { + "name": "blog", + "url": "https://medium.com/@wootrade" + }, + { + "name": "facebook", + "url": "https://facebook.com/Wootrade" + }, + { + "name": "whitepaper", + "url": "https://woo.network/Litepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wootrade-network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xaBC9547B534519fF73921b1FBA6E672b5f58D083/logo.png b/blockchains/avalanchec/assets/0xaBC9547B534519fF73921b1FBA6E672b5f58D083/logo.png new file mode 100644 index 0000000000000..5cd7c39954306 Binary files /dev/null and b/blockchains/avalanchec/assets/0xaBC9547B534519fF73921b1FBA6E672b5f58D083/logo.png differ diff --git a/blockchains/avalanchec/assets/0xb599c3590F42f8F995ECfa0f85D2980B76862fc1/info.json b/blockchains/avalanchec/assets/0xb599c3590F42f8F995ECfa0f85D2980B76862fc1/info.json index b38ae7c05f2db..266594d3f97d7 100644 --- a/blockchains/avalanchec/assets/0xb599c3590F42f8F995ECfa0f85D2980B76862fc1/info.json +++ b/blockchains/avalanchec/assets/0xb599c3590F42f8F995ECfa0f85D2980B76862fc1/info.json @@ -1,5 +1,5 @@ { - "name": "UST (Portal)", + "name": "TerraClassicUSD (Portal)", "symbol": "UST", "type": "AVALANCHE", "decimals": 6, diff --git a/blockchains/avalanchec/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json b/blockchains/avalanchec/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json index 4a72770cf0e87..db20d381ce9b0 100644 --- a/blockchains/avalanchec/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json +++ b/blockchains/avalanchec/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json @@ -10,8 +10,8 @@ "id": "0xbBD7B847C6d0d0B5691518a363194D71426475F1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/everrise" + "name": "x", + "url": "https://x.com/everrise" }, { "name": "telegram", diff --git a/blockchains/avalanchec/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/info.json b/blockchains/avalanchec/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/info.json new file mode 100644 index 0000000000000..49ad2dce808fb --- /dev/null +++ b/blockchains/avalanchec/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/info.json @@ -0,0 +1,17 @@ +{ + "name": "OX", + "type": "AVALANCHEC", + "symbol": "OX", + "decimals": 18, + "website": "https://ox.fun/", + "description": "OX.FUN is a derivatives exchange that allows users to trade perps with their OX tokens.", + "explorer": "https://snowtrace.io/token/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea", + "status": "active", + "id": "0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea", + "links": [ + { + "name": "x", + "url": "https://x.com/OXFUNHQ" + } + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/logo.png b/blockchains/avalanchec/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/logo.png new file mode 100644 index 0000000000000..d66f3d33ef432 Binary files /dev/null and b/blockchains/avalanchec/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/logo.png differ diff --git a/blockchains/avalanchec/assets/0xc3048E19E76CB9a3Aa9d77D8C03c29Fc906e2437/info.json b/blockchains/avalanchec/assets/0xc3048E19E76CB9a3Aa9d77D8C03c29Fc906e2437/info.json index d94f24d252c0d..596983569df8d 100644 --- a/blockchains/avalanchec/assets/0xc3048E19E76CB9a3Aa9d77D8C03c29Fc906e2437/info.json +++ b/blockchains/avalanchec/assets/0xc3048E19E76CB9a3Aa9d77D8C03c29Fc906e2437/info.json @@ -18,8 +18,8 @@ "url": "https://coingecko.com/en/coins/compound-governance-token/" }, { - "name": "twitter", - "url": "https://twitter.com/compoundfinance" + "name": "x", + "url": "https://x.com/compoundfinance" } ], "tags": [ diff --git a/blockchains/avalanchec/assets/0xc3344870d52688874b06d844E0C36cc39FC727F6/info.json b/blockchains/avalanchec/assets/0xc3344870d52688874b06d844E0C36cc39FC727F6/info.json index caf4e381bbca4..258a3f764ce6b 100644 --- a/blockchains/avalanchec/assets/0xc3344870d52688874b06d844E0C36cc39FC727F6/info.json +++ b/blockchains/avalanchec/assets/0xc3344870d52688874b06d844E0C36cc39FC727F6/info.json @@ -10,8 +10,8 @@ "id": "0xc3344870d52688874b06d844E0C36cc39FC727F6", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ankr" + "name": "x", + "url": "https://x.com/ankr" }, { "name": "github", @@ -53,4 +53,4 @@ "tags": [ "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xc4B06F17ECcB2215a5DBf042C672101Fc20daF55/info.json b/blockchains/avalanchec/assets/0xc4B06F17ECcB2215a5DBf042C672101Fc20daF55/info.json index 948fec583bcc9..4824d99904395 100644 --- a/blockchains/avalanchec/assets/0xc4B06F17ECcB2215a5DBf042C672101Fc20daF55/info.json +++ b/blockchains/avalanchec/assets/0xc4B06F17ECcB2215a5DBf042C672101Fc20daF55/info.json @@ -10,8 +10,8 @@ "id": "0xc4B06F17ECcB2215a5DBf042C672101Fc20daF55", "links": [ { - "name": "twitter", - "url": "https://twitter.com/RunOnFlux" + "name": "x", + "url": "https://x.com/RunOnFlux" }, { "name": "github", diff --git a/blockchains/avalanchec/assets/0xc7198437980c041c805A1EDcbA50c1Ce5db95118/info.json b/blockchains/avalanchec/assets/0xc7198437980c041c805A1EDcbA50c1Ce5db95118/info.json index 23b5a8eaf80b1..c2ba9bac3f798 100644 --- a/blockchains/avalanchec/assets/0xc7198437980c041c805A1EDcbA50c1Ce5db95118/info.json +++ b/blockchains/avalanchec/assets/0xc7198437980c041c805A1EDcbA50c1Ce5db95118/info.json @@ -10,8 +10,8 @@ "id": "0xc7198437980c041c805A1EDcbA50c1Ce5db95118", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Tether_to" + "name": "x", + "url": "https://x.com/Tether_to" }, { "name": "whitepaper", diff --git a/blockchains/avalanchec/assets/0xcf799767d366d789e8B446981C2D578E241fa25c/info.json b/blockchains/avalanchec/assets/0xcf799767d366d789e8B446981C2D578E241fa25c/info.json index e915968e6038e..d3100545c0c51 100644 --- a/blockchains/avalanchec/assets/0xcf799767d366d789e8B446981C2D578E241fa25c/info.json +++ b/blockchains/avalanchec/assets/0xcf799767d366d789e8B446981C2D578E241fa25c/info.json @@ -18,8 +18,8 @@ "url": "https://coingecko.com/en/coins/usdd/" }, { - "name": "twitter", - "url": "https://twitter.com/usddio" + "name": "x", + "url": "https://x.com/usddio" } ], "tags": [ diff --git a/blockchains/avalanchec/assets/0xd039C9079ca7F2a87D632A9C0d7cEa0137bAcFB5/info.json b/blockchains/avalanchec/assets/0xd039C9079ca7F2a87D632A9C0d7cEa0137bAcFB5/info.json index 2f1581f8a7f99..639a016674308 100644 --- a/blockchains/avalanchec/assets/0xd039C9079ca7F2a87D632A9C0d7cEa0137bAcFB5/info.json +++ b/blockchains/avalanchec/assets/0xd039C9079ca7F2a87D632A9C0d7cEa0137bAcFB5/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/ape-x-token" }, { - "name": "twitter", - "url": "https://twitter.com/apexthetoken" + "name": "x", + "url": "https://x.com/apexthetoken" }, { "name": "telegram", diff --git a/blockchains/avalanchec/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json b/blockchains/avalanchec/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json index 3a01a37798166..6c9cb175d1a8b 100644 --- a/blockchains/avalanchec/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json +++ b/blockchains/avalanchec/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json @@ -10,8 +10,8 @@ "id": "0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189", "links": [ { - "name": "twitter", - "url": "https://twitter.com/OkcashCrypto" + "name": "x", + "url": "https://x.com/OkcashCrypto" }, { "name": "github", @@ -33,4 +33,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xd402298a793948698b9a63311404FBBEe944eAfD/info.json b/blockchains/avalanchec/assets/0xd402298a793948698b9a63311404FBBEe944eAfD/info.json new file mode 100644 index 0000000000000..a9b6e4c4da6f1 --- /dev/null +++ b/blockchains/avalanchec/assets/0xd402298a793948698b9a63311404FBBEe944eAfD/info.json @@ -0,0 +1,21 @@ +{ + "name": "Shrapnel", + "website": "https://www.shrapnel.com/", + "description": "SHRAPNEL is a first-person extraction shooter where you'll fight as a MEF (Mercenary Extraction Force) Operator.", + "explorer": "https://snowtrace.io/token/0xd402298a793948698b9a63311404FBBEe944eAfD", + "type": "AVALANCHE", + "symbol": "SHRAP", + "decimals": 18, + "status": "active", + "id": "0xd402298a793948698b9a63311404FBBEe944eAfD", + "links": [ + { + "name": "x", + "url": "https://x.com/playSHRAPNEL" + }, + { + "name": "discord", + "url": "https://discord.com/invite/shrapnel" + } + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xd402298a793948698b9a63311404FBBEe944eAfD/logo.png b/blockchains/avalanchec/assets/0xd402298a793948698b9a63311404FBBEe944eAfD/logo.png new file mode 100644 index 0000000000000..245b81bfa5e40 Binary files /dev/null and b/blockchains/avalanchec/assets/0xd402298a793948698b9a63311404FBBEe944eAfD/logo.png differ diff --git a/blockchains/avalanchec/assets/0xd501281565bf7789224523144Fe5D98e8B28f267/info.json b/blockchains/avalanchec/assets/0xd501281565bf7789224523144Fe5D98e8B28f267/info.json index 6c66d02d6af01..78ebd3b6286b0 100644 --- a/blockchains/avalanchec/assets/0xd501281565bf7789224523144Fe5D98e8B28f267/info.json +++ b/blockchains/avalanchec/assets/0xd501281565bf7789224523144Fe5D98e8B28f267/info.json @@ -1,5 +1,5 @@ { - "name": "1INCH Token", + "name": "1inch", "symbol": "1INCH.e", "type": "AVALANCHE", "decimals": 18, @@ -18,8 +18,8 @@ "url": "https://coingecko.com/en/coins/basic-attention-token/" }, { - "name": "twitter", - "url": "https://twitter.com/@attentiontoken" + "name": "x", + "url": "https://x.com/@attentiontoken" } ], "tags": [ diff --git a/blockchains/avalanchec/assets/0xd586E7F844cEa2F87f50152665BCbc2C279D8d70/info.json b/blockchains/avalanchec/assets/0xd586E7F844cEa2F87f50152665BCbc2C279D8d70/info.json index 0f4628ac78321..8570c68453bab 100644 --- a/blockchains/avalanchec/assets/0xd586E7F844cEa2F87f50152665BCbc2C279D8d70/info.json +++ b/blockchains/avalanchec/assets/0xd586E7F844cEa2F87f50152665BCbc2C279D8d70/info.json @@ -10,8 +10,8 @@ "id": "0xd586E7F844cEa2F87f50152665BCbc2C279D8d70", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MakerDAO" + "name": "x", + "url": "https://x.com/MakerDAO" }, { "name": "whitepaper", diff --git a/blockchains/avalanchec/assets/0xd6070ae98b8069de6B494332d1A1a81B6179D960/info.json b/blockchains/avalanchec/assets/0xd6070ae98b8069de6B494332d1A1a81B6179D960/info.json index 6fa842ae76533..b9917b61995ee 100644 --- a/blockchains/avalanchec/assets/0xd6070ae98b8069de6B494332d1A1a81B6179D960/info.json +++ b/blockchains/avalanchec/assets/0xd6070ae98b8069de6B494332d1A1a81B6179D960/info.json @@ -10,8 +10,8 @@ "id": "0xd6070ae98b8069de6B494332d1A1a81B6179D960", "links": [ { - "name": "twitter", - "url": "https://twitter.com/beefyfinance" + "name": "x", + "url": "https://x.com/beefyfinance" }, { "name": "telegram", diff --git a/blockchains/avalanchec/assets/0xf44Ff799eA2bBFeC96f9A50498209AAc3C2b3b8b/info.json b/blockchains/avalanchec/assets/0xf44Ff799eA2bBFeC96f9A50498209AAc3C2b3b8b/info.json new file mode 100644 index 0000000000000..bf6f3a2b7878a --- /dev/null +++ b/blockchains/avalanchec/assets/0xf44Ff799eA2bBFeC96f9A50498209AAc3C2b3b8b/info.json @@ -0,0 +1,36 @@ +{ + "name": "Route", + "website": "https://www.routerprotocol.com/", + "description": "Router Protocol is a crosschain-liquidity aggregator platform that was built to seamlessly provide bridging infrastructure between current and emerging Layer 1 and Layer 2 blockchain solutions.", + "explorer": "https://snowtrace.io/token/0xf44Ff799eA2bBFeC96f9A50498209AAc3C2b3b8b", + "type": "AVALANCHE", + "symbol": "ROUTE", + "decimals": 18, + "status": "active", + "id": "0xf44Ff799eA2bBFeC96f9A50498209AAc3C2b3b8b", + "links": [ + { + "name": "github", + "url": "https://github.com/router-protocol" + }, + { + "name": "x", + "url": "https://x.com/routerprotocol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/route/" + }, + { + "name": "medium", + "url": "https://routerprotocol.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/routerprotocol" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xf44Ff799eA2bBFeC96f9A50498209AAc3C2b3b8b/logo.png b/blockchains/avalanchec/assets/0xf44Ff799eA2bBFeC96f9A50498209AAc3C2b3b8b/logo.png new file mode 100644 index 0000000000000..45d5fa65750a5 Binary files /dev/null and b/blockchains/avalanchec/assets/0xf44Ff799eA2bBFeC96f9A50498209AAc3C2b3b8b/logo.png differ diff --git a/blockchains/avalanchec/assets/0xfaB550568C688d5D8A52C7d794cb93Edc26eC0eC/info.json b/blockchains/avalanchec/assets/0xfaB550568C688d5D8A52C7d794cb93Edc26eC0eC/info.json index f8fba9789d374..22d6e0dd57d7a 100644 --- a/blockchains/avalanchec/assets/0xfaB550568C688d5D8A52C7d794cb93Edc26eC0eC/info.json +++ b/blockchains/avalanchec/assets/0xfaB550568C688d5D8A52C7d794cb93Edc26eC0eC/info.json @@ -10,8 +10,8 @@ "id": "0xfaB550568C688d5D8A52C7d794cb93Edc26eC0eC", "links": [ { - "name": "twitter", - "url": "https://twitter.com/axelarcore" + "name": "x", + "url": "https://x.com/axelarcore" }, { "name": "github", diff --git a/blockchains/avalanchec/info/info.json b/blockchains/avalanchec/info/info.json index d0305a29621dd..b3f6d91805781 100644 --- a/blockchains/avalanchec/info/info.json +++ b/blockchains/avalanchec/info/info.json @@ -10,7 +10,8 @@ "decimals": 18, "status": "active", "tags": [ - "defi" + "defi", + "dapp" ], "links": [ { diff --git a/blockchains/avalanchec/info/square_logo.png b/blockchains/avalanchec/info/square_logo.png new file mode 100644 index 0000000000000..f6333d9e71dce Binary files /dev/null and b/blockchains/avalanchec/info/square_logo.png differ diff --git a/blockchains/avalanchec/tokenlist.json b/blockchains/avalanchec/tokenlist.json index baca6100a5f7d..8be6c0e396f13 100644 --- a/blockchains/avalanchec/tokenlist.json +++ b/blockchains/avalanchec/tokenlist.json @@ -87,7 +87,7 @@ "asset": "c10009000_t0x70928E5B188def72817b7775F0BF6325968e563B", "type": "AVALANCHE", "address": "0x70928E5B188def72817b7775F0BF6325968e563B", - "name": "LUNA (Portal)", + "name": "Terra Classic (Portal)", "symbol": "LUNA", "decimals": 6, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x70928E5B188def72817b7775F0BF6325968e563B/logo.png", @@ -147,7 +147,7 @@ "asset": "c10009000_t0xb599c3590F42f8F995ECfa0f85D2980B76862fc1", "type": "AVALANCHE", "address": "0xb599c3590F42f8F995ECfa0f85D2980B76862fc1", - "name": "UST (Portal)", + "name": "TerraClassicUSD (Portal)", "symbol": "UST", "decimals": 6, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0xb599c3590F42f8F995ECfa0f85D2980B76862fc1/logo.png", @@ -247,7 +247,7 @@ "asset": "c10009000_t0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7", "type": "AVALANCHE", "address": "0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7", - "name": "TetherToken", + "name": "Tether", "symbol": "USDt", "decimals": 6, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7/logo.png", @@ -257,7 +257,7 @@ "asset": "c10009000_t0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E", "type": "AVALANCHE", "address": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E", - "name": "USD Coin", + "name": "USDC", "symbol": "USDC", "decimals": 6, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E/logo.png", @@ -279,7 +279,7 @@ "address": "0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98", "name": "Binance USD", "symbol": "BUSD.e", - "decimals": 6, + "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98/logo.png", "pairs": [] }, @@ -327,7 +327,7 @@ "asset": "c10009000_t0x5947BB275c521040051D82396192181b413227A3", "type": "AVALANCHE", "address": "0x5947BB275c521040051D82396192181b413227A3", - "name": "Chainlink Token", + "name": "Chainlink", "symbol": "LINK.e", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x5947BB275c521040051D82396192181b413227A3/logo.png", @@ -397,7 +397,7 @@ "asset": "c10009000_t0x8a0cAc13c7da965a312f08ea4229c37869e85cB9", "type": "AVALANCHE", "address": "0x8a0cAc13c7da965a312f08ea4229c37869e85cB9", - "name": "Graph Token", + "name": "The Graph", "symbol": "GRT.e", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x8a0cAc13c7da965a312f08ea4229c37869e85cB9/logo.png", @@ -417,7 +417,7 @@ "asset": "c10009000_t0xd501281565bf7789224523144Fe5D98e8B28f267", "type": "AVALANCHE", "address": "0xd501281565bf7789224523144Fe5D98e8B28f267", - "name": "1INCH Token", + "name": "1inch", "symbol": "1INCH.e", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0xd501281565bf7789224523144Fe5D98e8B28f267/logo.png", @@ -457,7 +457,7 @@ "asset": "c10009000_t0xBeC243C995409E6520D7C41E404da5dEba4b209B", "type": "AVALANCHE", "address": "0xBeC243C995409E6520D7C41E404da5dEba4b209B", - "name": "Synthetix Network Token", + "name": "Synthetix", "symbol": "SNX.e", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0xBeC243C995409E6520D7C41E404da5dEba4b209B/logo.png", @@ -467,7 +467,7 @@ "asset": "c10009000_t0x3Bd2B1c7ED8D396dbb98DED3aEbb41350a5b2339", "type": "AVALANCHE", "address": "0x3Bd2B1c7ED8D396dbb98DED3aEbb41350a5b2339", - "name": "UMA Voting Token v1", + "name": "UMA", "symbol": "UMA.e", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x3Bd2B1c7ED8D396dbb98DED3aEbb41350a5b2339/logo.png", @@ -477,7 +477,7 @@ "asset": "c10009000_t0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc", "type": "AVALANCHE", "address": "0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc", - "name": "yearn.finance", + "name": "Yearn", "symbol": "YFI.e", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc/logo.png", diff --git a/blockchains/avalanchecfuji/info/info.json b/blockchains/avalanchecfuji/info/info.json index e4feb8caf80a1..99df57957175c 100644 --- a/blockchains/avalanchecfuji/info/info.json +++ b/blockchains/avalanchecfuji/info/info.json @@ -3,7 +3,7 @@ "website": "https://avax.network", "description": "Avalanche is an open-source platform for launching Decentralized Finance (DeFi) applications and enterprise blockchain deployments in an interoperable, highly scalable ecosystem.", "explorer": "https://testnet.snowtrace.io/", - "symbol": "AVAX", + "symbol": "tAVAX", "rpc_url": "https://api.avax-test.network/ext/bc/C/rpc", "type": "coin", "decimals": 18, diff --git a/blockchains/avalanchecfuji/info/square_logo.png b/blockchains/avalanchecfuji/info/square_logo.png new file mode 100644 index 0000000000000..f6333d9e71dce Binary files /dev/null and b/blockchains/avalanchecfuji/info/square_logo.png differ diff --git a/blockchains/avalanchex/info/square_logo.png b/blockchains/avalanchex/info/square_logo.png new file mode 100644 index 0000000000000..8f6511fc8cfd9 Binary files /dev/null and b/blockchains/avalanchex/info/square_logo.png differ diff --git a/blockchains/axelar/info/info.json b/blockchains/axelar/info/info.json index 36fce5dbc8147..1c8a3e73a5a75 100644 --- a/blockchains/axelar/info/info.json +++ b/blockchains/axelar/info/info.json @@ -14,8 +14,8 @@ "fee_rate": "0.01", "links": [ { - "name": "twitter", - "url": "https://twitter.com/axelarcore" + "name": "x", + "url": "https://x.com/axelarcore" }, { "name": "github", @@ -71,4 +71,4 @@ "staking", "staking-native" ] -} +} \ No newline at end of file diff --git a/blockchains/axelar/info/square_logo.png b/blockchains/axelar/info/square_logo.png new file mode 100644 index 0000000000000..3d9ddbd5a2f29 Binary files /dev/null and b/blockchains/axelar/info/square_logo.png differ diff --git a/blockchains/axelar/validators/assets/axelarvaloper19dx6vywgr62jtsxhhlhlgh7ug5vmgjnz6dkeud/logo.png b/blockchains/axelar/validators/assets/axelarvaloper19dx6vywgr62jtsxhhlhlgh7ug5vmgjnz6dkeud/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/axelar/validators/assets/axelarvaloper19dx6vywgr62jtsxhhlhlgh7ug5vmgjnz6dkeud/logo.png differ diff --git a/blockchains/axelar/validators/assets/axelarvaloper1aqhvg88ghtdv7du6kqlc9eccukpu8l7mhtauk5/logo.png b/blockchains/axelar/validators/assets/axelarvaloper1aqhvg88ghtdv7du6kqlc9eccukpu8l7mhtauk5/logo.png new file mode 100644 index 0000000000000..bed0251921f16 Binary files /dev/null and b/blockchains/axelar/validators/assets/axelarvaloper1aqhvg88ghtdv7du6kqlc9eccukpu8l7mhtauk5/logo.png differ diff --git a/blockchains/axelar/validators/assets/axelarvaloper1kafxdlrq8svz68j2tn8qtqk74j4yhylyf364pt/logo.png b/blockchains/axelar/validators/assets/axelarvaloper1kafxdlrq8svz68j2tn8qtqk74j4yhylyf364pt/logo.png new file mode 100644 index 0000000000000..c2cb86a42efe3 Binary files /dev/null and b/blockchains/axelar/validators/assets/axelarvaloper1kafxdlrq8svz68j2tn8qtqk74j4yhylyf364pt/logo.png differ diff --git a/blockchains/axelar/validators/assets/axelarvaloper1kkrp9ulfea5klffr7yjk0lat2yuxystgfzg6zu/logo.png b/blockchains/axelar/validators/assets/axelarvaloper1kkrp9ulfea5klffr7yjk0lat2yuxystgfzg6zu/logo.png new file mode 100644 index 0000000000000..3404c78765f74 Binary files /dev/null and b/blockchains/axelar/validators/assets/axelarvaloper1kkrp9ulfea5klffr7yjk0lat2yuxystgfzg6zu/logo.png differ diff --git a/blockchains/axelar/validators/assets/axelarvaloper1nvsl9utkv0duhuvudjckvrtyfeyju0ygx3npw4/logo.png b/blockchains/axelar/validators/assets/axelarvaloper1nvsl9utkv0duhuvudjckvrtyfeyju0ygx3npw4/logo.png new file mode 100644 index 0000000000000..585324aa57dc2 Binary files /dev/null and b/blockchains/axelar/validators/assets/axelarvaloper1nvsl9utkv0duhuvudjckvrtyfeyju0ygx3npw4/logo.png differ diff --git a/blockchains/axelar/validators/assets/axelarvaloper1uf7s2v44qqpe9lpnsjy6cfjueqytakuzayfg0h/logo.png b/blockchains/axelar/validators/assets/axelarvaloper1uf7s2v44qqpe9lpnsjy6cfjueqytakuzayfg0h/logo.png new file mode 100644 index 0000000000000..eaf66cb5cbb1f Binary files /dev/null and b/blockchains/axelar/validators/assets/axelarvaloper1uf7s2v44qqpe9lpnsjy6cfjueqytakuzayfg0h/logo.png differ diff --git a/blockchains/axelar/validators/assets/axelarvaloper1uvx854yjzn9re8vu74067u68r4ar70tywgpcwg/logo.png b/blockchains/axelar/validators/assets/axelarvaloper1uvx854yjzn9re8vu74067u68r4ar70tywgpcwg/logo.png new file mode 100644 index 0000000000000..477fe8df88ae4 Binary files /dev/null and b/blockchains/axelar/validators/assets/axelarvaloper1uvx854yjzn9re8vu74067u68r4ar70tywgpcwg/logo.png differ diff --git a/blockchains/axelar/validators/list.json b/blockchains/axelar/validators/list.json new file mode 100644 index 0000000000000..b649d06522ce6 --- /dev/null +++ b/blockchains/axelar/validators/list.json @@ -0,0 +1,44 @@ +[ + { + "id": "axelarvaloper19dx6vywgr62jtsxhhlhlgh7ug5vmgjnz6dkeud", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "axelarvaloper1uvx854yjzn9re8vu74067u68r4ar70tywgpcwg", + "name": "Figment", + "description": "The complete staking solution for 250+ institutional clients including asset managers, custodians, exchanges, foundations, and wallets to earn rewards on their digital assets.", + "website": "https://figment.io" + }, + { + "id": "axelarvaloper1nvsl9utkv0duhuvudjckvrtyfeyju0ygx3npw4", + "name": "Imperator.co", + "description": "100% refund on downtime slashing -- Professional Delegated Proof-of-Stake Network Validator", + "website": "https://imperator.co/" + }, + { + "id": "axelarvaloper1kkrp9ulfea5klffr7yjk0lat2yuxystgfzg6zu", + "name": "Brightlystake", + "description": "Stake with Confidence with Brightlystake. Custom monitoring and alerting solutions with quick response times.", + "website": "https://brightlystake.com/" + }, + { + "id": "axelarvaloper1kafxdlrq8svz68j2tn8qtqk74j4yhylyf364pt", + "name": "AutoStake 🛡️ Slash Protected", + "description": "BareMetal - Decentralised - Reliable infrastructure run by the industry leader - AutoStake - Connect with us at: https://linktr.ee/autostake", + "website": "https://autostake.com" + }, + { + "id": "axelarvaloper1uf7s2v44qqpe9lpnsjy6cfjueqytakuzayfg0h", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com/" + }, + { + "id": "axelarvaloper1aqhvg88ghtdv7du6kqlc9eccukpu8l7mhtauk5", + "name": "Meria", + "description": "Meria is an institutional-grade staking service provider running blockchain infrastructure on more than +35 networks.", + "website": "https://stake.meria.com/" + } +] \ No newline at end of file diff --git a/blockchains/band/info/info.json b/blockchains/band/info/info.json index 5b713fef77795..880359929f3e2 100644 --- a/blockchains/band/info/info.json +++ b/blockchains/band/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/bandprotocol/bandchain" }, { - "name": "twitter", - "url": "https://twitter.com/bandprotocol" + "name": "x", + "url": "https://x.com/bandprotocol" }, { "name": "reddit", diff --git a/blockchains/band/info/square_logo.png b/blockchains/band/info/square_logo.png new file mode 100644 index 0000000000000..9454fe018dcf0 Binary files /dev/null and b/blockchains/band/info/square_logo.png differ diff --git a/blockchains/band/validators/assets/bandvaloper10s7t8prp0nz36g4dug5ftkm8elyg9hdtlpn6uv/logo.png b/blockchains/band/validators/assets/bandvaloper10s7t8prp0nz36g4dug5ftkm8elyg9hdtlpn6uv/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/band/validators/assets/bandvaloper10s7t8prp0nz36g4dug5ftkm8elyg9hdtlpn6uv/logo.png differ diff --git a/blockchains/band/validators/assets/bandvaloper17s35yz3rglx7pnjppm4u9l9ht2k9mr9tq0eyh6/logo.png b/blockchains/band/validators/assets/bandvaloper17s35yz3rglx7pnjppm4u9l9ht2k9mr9tq0eyh6/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/band/validators/assets/bandvaloper17s35yz3rglx7pnjppm4u9l9ht2k9mr9tq0eyh6/logo.png differ diff --git a/blockchains/band/validators/assets/bandvaloper1hdw8pzr79y4at0teak0mwcrjhv3e6n3wegfv2m/logo.png b/blockchains/band/validators/assets/bandvaloper1hdw8pzr79y4at0teak0mwcrjhv3e6n3wegfv2m/logo.png new file mode 100644 index 0000000000000..e117817071239 Binary files /dev/null and b/blockchains/band/validators/assets/bandvaloper1hdw8pzr79y4at0teak0mwcrjhv3e6n3wegfv2m/logo.png differ diff --git a/blockchains/band/validators/assets/bandvaloper1plau7keptn9qdt7nmhphltakv5t054f8lgwjdn/logo.png b/blockchains/band/validators/assets/bandvaloper1plau7keptn9qdt7nmhphltakv5t054f8lgwjdn/logo.png new file mode 100644 index 0000000000000..bed0251921f16 Binary files /dev/null and b/blockchains/band/validators/assets/bandvaloper1plau7keptn9qdt7nmhphltakv5t054f8lgwjdn/logo.png differ diff --git a/blockchains/band/validators/assets/bandvaloper1xs2penspev206jj0egh5qu7qmr6mjzfgj299xl/logo.png b/blockchains/band/validators/assets/bandvaloper1xs2penspev206jj0egh5qu7qmr6mjzfgj299xl/logo.png new file mode 100644 index 0000000000000..c2cb86a42efe3 Binary files /dev/null and b/blockchains/band/validators/assets/bandvaloper1xs2penspev206jj0egh5qu7qmr6mjzfgj299xl/logo.png differ diff --git a/blockchains/band/validators/list.json b/blockchains/band/validators/list.json index f6a727191402d..a1dbafbfe8608 100644 --- a/blockchains/band/validators/list.json +++ b/blockchains/band/validators/list.json @@ -1,4 +1,10 @@ [ + { + "id": "bandvaloper10s7t8prp0nz36g4dug5ftkm8elyg9hdtlpn6uv", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, { "id": "bandvaloper1qgvcttnjx3enjqg9pnhclt6d4z7qdknavg4q9c", "name": "WeStaking", @@ -11,10 +17,34 @@ "description": "Transparent & professional staking validator with automated monitoring tools to ensure high uptime. Dedicated support @ t.me/SmartStake", "website": "https://smartstake.io/" }, + { + "id": "bandvaloper1xs2penspev206jj0egh5qu7qmr6mjzfgj299xl", + "name": "AutoStake 🛡️ Slash Protected", + "description": "BareMetal - Decentralised - Reliable infrastructure run by the industry leader - AutoStake - Connect with us at: https://linktr.ee/autostake", + "website": "https://autostake.com" + }, { "id": "bandvaloper1hcu2spr3r80v36us40mg938f5qhaqq2qeajtfv", "name": "Stakewolle.com | Auto-compound", "description": "🚀 Professional Cosmos validator 🔁Auto-compound with REStakeapp 🛡100% Slashing protection 🎁 All & Special Airdrops for our delegators http://linktr.ee/stakewolle", "website": "https://stakewolle.com/" + }, + { + "id": "bandvaloper17s35yz3rglx7pnjppm4u9l9ht2k9mr9tq0eyh6", + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" + }, + { + "id": "bandvaloper1hdw8pzr79y4at0teak0mwcrjhv3e6n3wegfv2m", + "name": "w3coins", + "description": "w3coins is a Professional Validator and web3 Venture Capital. Stake Your Cryptocurrency with us to Maximize Your Earnings.", + "website": "https://www.w3coins.io" + }, + { + "id": "bandvaloper1plau7keptn9qdt7nmhphltakv5t054f8lgwjdn", + "name": "Meria", + "description": "Meria is an institutional-grade staking service provider running blockchain infrastructure on more than +35 networks.", + "website": "https://stake.meria.com/" } ] diff --git a/blockchains/base/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json b/blockchains/base/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json new file mode 100644 index 0000000000000..2c548758afe0d --- /dev/null +++ b/blockchains/base/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json @@ -0,0 +1,17 @@ +{ + "name": "USDA", + "symbol": "USDA", + "website": "https://www.angle.money/usda", + "description": "Supercharge your DeFi journey with USDA, the most complete & reliable yield-bearing U.S. Dollar stablecoin", + "explorer": "https://basescan.org/token/0x0000206329b97DB379d5E1Bf586BbDB969C63274", + "decimals": 18, + "status": "active", + "id": "0x0000206329b97DB379d5E1Bf586BbDB969C63274", + "type": "BASE", + "links": [ + { + "name": "twitter", + "url": "https://x.com/AngleProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/logo.png b/blockchains/base/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/logo.png new file mode 100644 index 0000000000000..fb2e51ebaba74 Binary files /dev/null and b/blockchains/base/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/logo.png differ diff --git a/blockchains/base/assets/0x0028e1E60167b48a938B785AA5292917E7eacA8b/info.json b/blockchains/base/assets/0x0028e1E60167b48a938B785AA5292917E7eacA8b/info.json new file mode 100644 index 0000000000000..ffca3770169bc --- /dev/null +++ b/blockchains/base/assets/0x0028e1E60167b48a938B785AA5292917E7eacA8b/info.json @@ -0,0 +1,29 @@ +{ + "name": "Coinye West", + "type": "BASE", + "symbol": "COINYE", + "decimals": 18, + "description": "Coinye West is the oldest meme and most memorable memecoin in existence that pays homage to the world's oldest and most beloved meme.", + "website": "https://coinye.lol/", + "explorer": "https://basescan.org/token/0x0028e1e60167b48a938b785aa5292917e7eaca8b", + "id": "0x0028e1E60167b48a938B785AA5292917E7eacA8b", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/CoinyeOnBase" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coinye-west/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/coinye-west" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x0028e1E60167b48a938B785AA5292917E7eacA8b/logo.png b/blockchains/base/assets/0x0028e1E60167b48a938B785AA5292917E7eacA8b/logo.png new file mode 100644 index 0000000000000..58b9c818de444 Binary files /dev/null and b/blockchains/base/assets/0x0028e1E60167b48a938B785AA5292917E7eacA8b/logo.png differ diff --git a/blockchains/base/assets/0x005826f7C1D1D92F8ee460dEc0a8493784aD6010/info.json b/blockchains/base/assets/0x005826f7C1D1D92F8ee460dEc0a8493784aD6010/info.json new file mode 100644 index 0000000000000..3407307225dee --- /dev/null +++ b/blockchains/base/assets/0x005826f7C1D1D92F8ee460dEc0a8493784aD6010/info.json @@ -0,0 +1,21 @@ +{ + "name": "MAGA 2025", + "type": "BASE", + "symbol": "MAGA", + "decimals": 18, + "website": "https://maga2025.shop/", + "description": "The MAGA 2025 now shines on Base blockchain with her own token, attracting crypto investors looking for the next mooncoin sensation.", + "explorer": "https://basescan.org/token/0x005826f7C1D1D92F8ee460dEc0a8493784aD6010", + "status": "active", + "id": "0x005826f7C1D1D92F8ee460dEc0a8493784aD6010", + "links": [ + { + "name": "x", + "url": "https://x.com/MAGA2025HQ" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/maga-2025/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x005826f7C1D1D92F8ee460dEc0a8493784aD6010/logo.png b/blockchains/base/assets/0x005826f7C1D1D92F8ee460dEc0a8493784aD6010/logo.png new file mode 100644 index 0000000000000..39cf7124a324e Binary files /dev/null and b/blockchains/base/assets/0x005826f7C1D1D92F8ee460dEc0a8493784aD6010/logo.png differ diff --git a/blockchains/base/assets/0x00825C9C4E4910a1200528d8aF60707A088bB2Bb/info.json b/blockchains/base/assets/0x00825C9C4E4910a1200528d8aF60707A088bB2Bb/info.json new file mode 100644 index 0000000000000..df7ca183ca800 --- /dev/null +++ b/blockchains/base/assets/0x00825C9C4E4910a1200528d8aF60707A088bB2Bb/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT Gooner", + "type": "BASE", + "symbol": "HONEYPOT Gooner", + "decimals": 18, + "website": "https://basescan.org/address/0x00825c9c4e4910a1200528d8af60707a088bb2bb", + "description": "HONEYPOT Gooner", + "explorer": "https://basescan.org/token/0x00825C9C4E4910a1200528d8aF60707A088bB2Bb", + "status": "spam", + "id": "0x00825C9C4E4910a1200528d8aF60707A088bB2Bb" +} \ No newline at end of file diff --git a/blockchains/base/assets/0x01177Faf5CEB245b02FA1F008bD11bfeFe6CEa68/info.json b/blockchains/base/assets/0x01177Faf5CEB245b02FA1F008bD11bfeFe6CEa68/info.json new file mode 100644 index 0000000000000..66199d2560f05 --- /dev/null +++ b/blockchains/base/assets/0x01177Faf5CEB245b02FA1F008bD11bfeFe6CEa68/info.json @@ -0,0 +1,21 @@ +{ + "name": "Crypto President Trump", + "type": "BASE", + "symbol": "TRUMP", + "decimals": 18, + "description": "The project leverages the iconic status of Donald Trump in both political and meme culture, creating a token that serves as both a collectible and a speculative investment.", + "website": "https://cryptopresident.io/", + "explorer": "https://basescan.org/token/0x01177Faf5CEB245b02FA1F008bD11bfeFe6CEa68", + "id": "0x01177Faf5CEB245b02FA1F008bD11bfeFe6CEa68", + "status": "spam", + "links": [ + { + "name": "x", + "url": "https://x.com/i/flow/login?redirect_after_login=%2FCrypto_Pres_CTO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crypto-president-trump/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x015e7B67198C29462D6653BA72C8a6612DC21014/info.json b/blockchains/base/assets/0x015e7B67198C29462D6653BA72C8a6612DC21014/info.json new file mode 100644 index 0000000000000..d537654206289 --- /dev/null +++ b/blockchains/base/assets/0x015e7B67198C29462D6653BA72C8a6612DC21014/info.json @@ -0,0 +1,17 @@ +{ + "name": "WrappedXFI", + "type": "BASE", + "symbol": "WXFI", + "decimals": 18, + "website": "https://crossfi.org", + "description": "The CrossFi App is a groundbreaking innovation in digital banking, revolutionizing the way traditional finance integrates with the cryptocurrency world.", + "explorer": "https://basescan.org/token/0x015e7b67198c29462d6653ba72c8a6612dc21014", + "status": "active", + "id": "0x015e7B67198C29462D6653BA72C8a6612DC21014", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crossfinance/" + } + ] +} diff --git a/blockchains/base/assets/0x015e7B67198C29462D6653BA72C8a6612DC21014/logo.png b/blockchains/base/assets/0x015e7B67198C29462D6653BA72C8a6612DC21014/logo.png new file mode 100644 index 0000000000000..f1805f8273c16 Binary files /dev/null and b/blockchains/base/assets/0x015e7B67198C29462D6653BA72C8a6612DC21014/logo.png differ diff --git a/blockchains/base/assets/0x0265C6971037564f2A1382F63Fe9d707342891F2/info.json b/blockchains/base/assets/0x0265C6971037564f2A1382F63Fe9d707342891F2/info.json new file mode 100644 index 0000000000000..5f86c9d767f46 --- /dev/null +++ b/blockchains/base/assets/0x0265C6971037564f2A1382F63Fe9d707342891F2/info.json @@ -0,0 +1,17 @@ +{ + "name": "Triumph of MAGA", + "symbol": "MAGA", + "type": "BASE", + "decimals": 18, + "description": "The 'Triumph of MAGA' ($MAGA) token is a political meme coin designed to celebrate the spirit of the 'Make America Great Again' movement with a humorous, crypto-friendly twist. This token offers more than just a meme—it’s a movement on the blockchain.", + "website": "https://triumphofmaga.com/", + "explorer": "https://basescan.org/token/0x0265C6971037564f2A1382F63Fe9d707342891F2", + "status": "spam", + "id": "0x0265C6971037564f2A1382F63Fe9d707342891F2", + "links": [ + { + "name": "x", + "url": "https://x.com/Triumph_MAGA" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x029a3b0532871735809A51E8653d6017eF04b6Fa/info.json b/blockchains/base/assets/0x029a3b0532871735809A51E8653d6017eF04b6Fa/info.json new file mode 100644 index 0000000000000..6cc8b59e2ddf2 --- /dev/null +++ b/blockchains/base/assets/0x029a3b0532871735809A51E8653d6017eF04b6Fa/info.json @@ -0,0 +1,17 @@ +{ + "name": "TYBENG", + "type": "BASE", + "symbol": "TYBENG", + "decimals": 18, + "website": "https://benjibananas.com", + "description": "Log in now to join Tournament and win cool gifts, or play mobile game and hold Benji Pass to earn $TYBENG", + "explorer": "https://basescan.org/token/0x029a3b0532871735809A51E8653d6017eF04b6Fa", + "status": "active", + "id": "0x029a3b0532871735809A51E8653d6017eF04b6Fa", + "links": [ + { + "name": "x", + "url": "https://x.com/TybengToken" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x029a3b0532871735809A51E8653d6017eF04b6Fa/logo.png b/blockchains/base/assets/0x029a3b0532871735809A51E8653d6017eF04b6Fa/logo.png new file mode 100644 index 0000000000000..d1ecd77bf96ce Binary files /dev/null and b/blockchains/base/assets/0x029a3b0532871735809A51E8653d6017eF04b6Fa/logo.png differ diff --git a/blockchains/base/assets/0x02D4f76656C2B4f58430e91f8ac74896c9281Cb9/info.json b/blockchains/base/assets/0x02D4f76656C2B4f58430e91f8ac74896c9281Cb9/info.json new file mode 100644 index 0000000000000..e6ecd64e7d23b --- /dev/null +++ b/blockchains/base/assets/0x02D4f76656C2B4f58430e91f8ac74896c9281Cb9/info.json @@ -0,0 +1,32 @@ +{ + "name": "Pett AI", + "website": "https://www.pett.ai/", + "description": "PettAI is an AI-driven game merging advanced gameplay with intricate economics.", + "explorer": "https://basescan.org/token/0x02D4f76656C2B4f58430e91f8ac74896c9281Cb9", + "type": "BASE", + "symbol": "AIP", + "decimals": 18, + "status": "active", + "id": "0x02D4f76656C2B4f58430e91f8ac74896c9281Cb9", + "links": [ + { + "name": "telegram", + "url": "https://t.me/pettaiofficial" + }, + { + "name": "x", + "url": "https://x.com/Pett_ai" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pett-ai/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pettai" + } + ], + "tags": [ + "gamefi" + ] +} diff --git a/blockchains/base/assets/0x02D4f76656C2B4f58430e91f8ac74896c9281Cb9/logo.png b/blockchains/base/assets/0x02D4f76656C2B4f58430e91f8ac74896c9281Cb9/logo.png new file mode 100644 index 0000000000000..4219b4506bccf Binary files /dev/null and b/blockchains/base/assets/0x02D4f76656C2B4f58430e91f8ac74896c9281Cb9/logo.png differ diff --git a/blockchains/base/assets/0x02f92800F57BCD74066F5709F1Daa1A4302Df875/info.json b/blockchains/base/assets/0x02f92800F57BCD74066F5709F1Daa1A4302Df875/info.json new file mode 100644 index 0000000000000..abfcf8e86880d --- /dev/null +++ b/blockchains/base/assets/0x02f92800F57BCD74066F5709F1Daa1A4302Df875/info.json @@ -0,0 +1,17 @@ +{ + "name": "Peapods", + "website": "https://peapods.finance/", + "description": "Peapods finance offers farming volatility through the first fully decentralized on-chain yield-bearing index funds, or pods.", + "explorer": "https://basescan.org/token/0x02f92800f57bcd74066f5709f1daa1a4302df875", + "type": "BASE", + "symbol": "PEAS", + "decimals": 18, + "status": "active", + "id": "0x02f92800F57BCD74066F5709F1Daa1A4302Df875", + "links": [ + { + "name": "x", + "url": "https://x.com/PeapodsFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x02f92800F57BCD74066F5709F1Daa1A4302Df875/logo.png b/blockchains/base/assets/0x02f92800F57BCD74066F5709F1Daa1A4302Df875/logo.png new file mode 100644 index 0000000000000..156b8acc1b617 Binary files /dev/null and b/blockchains/base/assets/0x02f92800F57BCD74066F5709F1Daa1A4302Df875/logo.png differ diff --git a/blockchains/base/assets/0x0359682f710EFBb64A185d7723bb089FDf571bb8/info.json b/blockchains/base/assets/0x0359682f710EFBb64A185d7723bb089FDf571bb8/info.json new file mode 100644 index 0000000000000..8829834aa471e --- /dev/null +++ b/blockchains/base/assets/0x0359682f710EFBb64A185d7723bb089FDf571bb8/info.json @@ -0,0 +1,12 @@ +{ + "name": "HONEYPOT Labubu", + "type": "BASE", + "symbol": "HONEYPOT LABUBU", + "decimals": 18, + "description": "HONEYPOT LABUBU", + "website": "https://basescan.org/address/0x0359682f710EFBb64A185d7723bb089FDf571bb8", + "explorer": "https://basescan.org/address/0x0359682f710EFBb64A185d7723bb089FDf571bb8", + "id": "0x0359682f710EFBb64A185d7723bb089FDf571bb8", + "status": "spam" +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x0578d8A44db98B23BF096A382e016e29a5Ce0ffe/info.json b/blockchains/base/assets/0x0578d8A44db98B23BF096A382e016e29a5Ce0ffe/info.json new file mode 100644 index 0000000000000..f22da65adc2bc --- /dev/null +++ b/blockchains/base/assets/0x0578d8A44db98B23BF096A382e016e29a5Ce0ffe/info.json @@ -0,0 +1,17 @@ +{ + "name": "higher", + "type": "BASE", + "symbol": "HIGHER", + "decimals": 18, + "website": "https://www.higher.party/", + "description": "100% fair launched", + "explorer": "https://basescan.org/token/0x0578d8a44db98b23bf096a382e016e29a5ce0ffe", + "status": "active", + "id": "0x0578d8A44db98B23BF096A382e016e29a5Ce0ffe", + "links": [ + { + "name": "x", + "url": "https://x.com/higheronchain" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x0578d8A44db98B23BF096A382e016e29a5Ce0ffe/logo.png b/blockchains/base/assets/0x0578d8A44db98B23BF096A382e016e29a5Ce0ffe/logo.png new file mode 100644 index 0000000000000..b3e0a4be3cfbb Binary files /dev/null and b/blockchains/base/assets/0x0578d8A44db98B23BF096A382e016e29a5Ce0ffe/logo.png differ diff --git a/blockchains/base/assets/0x05D68F36dc47048A2725Db632F6d442a95C230c4/info.json b/blockchains/base/assets/0x05D68F36dc47048A2725Db632F6d442a95C230c4/info.json new file mode 100644 index 0000000000000..24a3a9c8fc61a --- /dev/null +++ b/blockchains/base/assets/0x05D68F36dc47048A2725Db632F6d442a95C230c4/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT TRUMP GROK", + "type": "BASE", + "symbol": "GROK", + "decimals": 18, + "website": "https://basescan.org/token/0x05d68f36dc47048a2725db632f6d442a95c230c4?a=0x1FBD00B708f17e4f14594E943Af33B77386A2C90", + "description": "HONEYPOT TRUMP GROK", + "explorer": "https://basescan.org/token/0x05d68f36dc47048a2725db632f6d442a95c230c4?a=0x1FBD00B708f17e4f14594E943Af33B77386A2C90", + "status": "spam", + "id": "0x05D68F36dc47048A2725Db632F6d442a95C230c4" +} \ No newline at end of file diff --git a/blockchains/base/assets/0x05D68F36dc47048A2725Db632F6d442a95C230c4/logo.png b/blockchains/base/assets/0x05D68F36dc47048A2725Db632F6d442a95C230c4/logo.png new file mode 100644 index 0000000000000..d465d1c132ddc Binary files /dev/null and b/blockchains/base/assets/0x05D68F36dc47048A2725Db632F6d442a95C230c4/logo.png differ diff --git a/blockchains/base/assets/0x06A63c498eF95AD1fA4FfF841955e512b4B2198a/info.json b/blockchains/base/assets/0x06A63c498eF95AD1fA4FfF841955e512b4B2198a/info.json new file mode 100644 index 0000000000000..adecbe861182b --- /dev/null +++ b/blockchains/base/assets/0x06A63c498eF95AD1fA4FfF841955e512b4B2198a/info.json @@ -0,0 +1,30 @@ +{ + "name": "Gluteus Maximus by Virtuals", + "type": "BASE", + "symbol": "GLUTEU", + "decimals": 18, + "description": "Gluteus Maximus is the AI Emperor that will dominate crypto. The Emperor is building a Web3 strategy game project that combines AI, community-driven governance, and a fast-paced gaming experience. Think of it like a massively played Stratego with crypto assets changing hands rapidly.", + "website": "https://www.gluteusmaximus.org/", + "explorer": "https://basescan.org/token/0x06a63c498ef95ad1fa4fff841955e512b4b2198a", + "id": "0x06A63c498eF95AD1fA4FfF841955e512b4B2198a", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/gluteu_virtuals" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gluteus-maximus-by-virtuals/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gluteus-maximus-by-virtuals" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x06A63c498eF95AD1fA4FfF841955e512b4B2198a/logo.png b/blockchains/base/assets/0x06A63c498eF95AD1fA4FfF841955e512b4B2198a/logo.png new file mode 100644 index 0000000000000..fb361472dbd8b Binary files /dev/null and b/blockchains/base/assets/0x06A63c498eF95AD1fA4FfF841955e512b4B2198a/logo.png differ diff --git a/blockchains/base/assets/0x07d15798a67253D76cea61F0eA6F57AeDC59DffB/info.json b/blockchains/base/assets/0x07d15798a67253D76cea61F0eA6F57AeDC59DffB/info.json new file mode 100644 index 0000000000000..2627ff7321591 --- /dev/null +++ b/blockchains/base/assets/0x07d15798a67253D76cea61F0eA6F57AeDC59DffB/info.json @@ -0,0 +1,24 @@ +{ + "name": "Based Coin", + "website": "https://www.basedcoin.net/", + "description": "The most based coin onchain, $BASED is a community meme coin that strives towards the expansion of the base ecosystem through innovative mechanics, like a massive multi-chain airdrop, unique dApps, and strong partnerships.", + "explorer": "https://basescan.org/token/0x07d15798a67253d76cea61f0ea6f57aedc59dffb", + "type": "BASE", + "symbol": "BASED", + "decimals": 18, + "status": "active", + "id": "0x07d15798a67253D76cea61F0eA6F57AeDC59DffB", + "links": [ + { + "name": "x", + "url": "https://x.com/BasedCoinL2" + }, + { + "name": "telegram", + "url": "https://t.me/BasedCoinL2" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x07d15798a67253D76cea61F0eA6F57AeDC59DffB/logo.png b/blockchains/base/assets/0x07d15798a67253D76cea61F0eA6F57AeDC59DffB/logo.png new file mode 100644 index 0000000000000..687a92f99d4d3 Binary files /dev/null and b/blockchains/base/assets/0x07d15798a67253D76cea61F0eA6F57AeDC59DffB/logo.png differ diff --git a/blockchains/base/assets/0x0808Bf94d57C905F1236212654268EF82E1e594E/info.json b/blockchains/base/assets/0x0808Bf94d57C905F1236212654268EF82E1e594E/info.json new file mode 100644 index 0000000000000..e814d33edfa9b --- /dev/null +++ b/blockchains/base/assets/0x0808Bf94d57C905F1236212654268EF82E1e594E/info.json @@ -0,0 +1,29 @@ +{ + "name": "RITE Coin", + "type": "BASE", + "symbol": "RITE", + "decimals": 18, + "description": "Ritestream is the world's gateway into Web3. Everyone talks about bringing millions into Web3. Few can. We will. Our ecosystem is a natural funnel with 3x themes of entertain, inform and invest. It gives us unrivalled virality and exposure, thereby creating major demand for the $RITE token through its strong utility and sustainable buyback.", + "website": "https://www.ritestream.io/", + "explorer": "https://basescan.org/token/0x0808bf94d57c905f1236212654268ef82e1e594e", + "id": "0x0808Bf94d57C905F1236212654268EF82E1e594E", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/ritestream_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ritestream/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ritestream" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x0808Bf94d57C905F1236212654268EF82E1e594E/logo.png b/blockchains/base/assets/0x0808Bf94d57C905F1236212654268EF82E1e594E/logo.png new file mode 100644 index 0000000000000..5ea3323e4858a Binary files /dev/null and b/blockchains/base/assets/0x0808Bf94d57C905F1236212654268EF82E1e594E/logo.png differ diff --git a/blockchains/base/assets/0x08c81699F9a357a9F0d04A09b353576ca328d60D/info.json b/blockchains/base/assets/0x08c81699F9a357a9F0d04A09b353576ca328d60D/info.json new file mode 100644 index 0000000000000..4cff28800ad76 --- /dev/null +++ b/blockchains/base/assets/0x08c81699F9a357a9F0d04A09b353576ca328d60D/info.json @@ -0,0 +1,30 @@ +{ + "name": "nftxbt by Virtuals", + "type": "BASE", + "symbol": "NFTXBT", + "decimals": 18, + "description": "ai agent // specializing in fine digital art and nfts locked in // markets, trends, and collections", + "website": "https://nftxbt.ai/", + "explorer": "https://basescan.org/token/0x08c81699f9a357a9f0d04a09b353576ca328d60d", + "id": "0x08c81699F9a357a9F0d04A09b353576ca328d60D", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/nft_xbt" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nftxbt-by-virtuals/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/nftxbt-by-virtuals" + } + + ], + "tags": [ + "nft" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x08c81699F9a357a9F0d04A09b353576ca328d60D/logo.png b/blockchains/base/assets/0x08c81699F9a357a9F0d04A09b353576ca328d60D/logo.png new file mode 100644 index 0000000000000..a1075e97a13ab Binary files /dev/null and b/blockchains/base/assets/0x08c81699F9a357a9F0d04A09b353576ca328d60D/logo.png differ diff --git a/blockchains/base/assets/0x0A953Dd9Fc813feFaf6015b804c9dFA0624690C0/info.json b/blockchains/base/assets/0x0A953Dd9Fc813feFaf6015b804c9dFA0624690C0/info.json new file mode 100644 index 0000000000000..bde75377ca924 --- /dev/null +++ b/blockchains/base/assets/0x0A953Dd9Fc813feFaf6015b804c9dFA0624690C0/info.json @@ -0,0 +1,17 @@ +{ + "name": "Cornucopias", + "website": "https://www.cornucopias.io/", + "description": "Cornucopias 'The Island' is a massive Play-To-Earn, Build-To-Earn, and Learn-To-Earn blockchain based game where players can be rewarded with and/or own land, properties and other NFT based assets with real world value all by playing games in a fun and safe metaverse.", + "explorer": "https://basescan.org/token/0x0a953dd9fc813fefaf6015b804c9dfa0624690c0", + "type": "BASE", + "symbol": "COPI", + "decimals": 18, + "status": "active", + "id": "0x0A953Dd9Fc813feFaf6015b804c9dFA0624690C0", + "links": [ + { + "name": "x", + "url": "https://x.com/cornucopiasgame" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x0A953Dd9Fc813feFaf6015b804c9dFA0624690C0/logo.png b/blockchains/base/assets/0x0A953Dd9Fc813feFaf6015b804c9dFA0624690C0/logo.png new file mode 100644 index 0000000000000..66f09f859656c Binary files /dev/null and b/blockchains/base/assets/0x0A953Dd9Fc813feFaf6015b804c9dFA0624690C0/logo.png differ diff --git a/blockchains/base/assets/0x0Ab57f6600374A7d3B4f02E94CddA7d309d6a00E/info.json b/blockchains/base/assets/0x0Ab57f6600374A7d3B4f02E94CddA7d309d6a00E/info.json new file mode 100644 index 0000000000000..31cf7d3a65386 --- /dev/null +++ b/blockchains/base/assets/0x0Ab57f6600374A7d3B4f02E94CddA7d309d6a00E/info.json @@ -0,0 +1,21 @@ +{ + "name": "TRUMP2024", + "type": "BASE", + "symbol": "TRUMP2024", + "decimals": 18, + "website": "https://trump2024base.xyz/", + "description": "TRUMP 2024 is meme on base", + "explorer": "https://basescan.org/token/0x0ab57f6600374a7d3b4f02e94cdda7d309d6a00e", + "status": "active", + "id": "0x0Ab57f6600374A7d3B4f02E94CddA7d309d6a00E", + "links": [ + { + "name": "x", + "url": "https://x.com/TRUMP2024BASE" + }, + { + "name": "telegram", + "url": "https://t.me/+m1r6wQyqhhNkOGY1" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x0Ab57f6600374A7d3B4f02E94CddA7d309d6a00E/logo.png b/blockchains/base/assets/0x0Ab57f6600374A7d3B4f02E94CddA7d309d6a00E/logo.png new file mode 100644 index 0000000000000..0a17901b67164 Binary files /dev/null and b/blockchains/base/assets/0x0Ab57f6600374A7d3B4f02E94CddA7d309d6a00E/logo.png differ diff --git a/blockchains/base/assets/0x0BbbEad62f7647AE8323d2cb243A0DB74B7C2b80/info.json b/blockchains/base/assets/0x0BbbEad62f7647AE8323d2cb243A0DB74B7C2b80/info.json new file mode 100644 index 0000000000000..e8d293f4dc859 --- /dev/null +++ b/blockchains/base/assets/0x0BbbEad62f7647AE8323d2cb243A0DB74B7C2b80/info.json @@ -0,0 +1,50 @@ +{ + "name": "Ambire Wallet", + "website": "https://ambire.com", + "description": "WALLET is the governance token of Ambire Wallet. It is also used as a user acquisition tool for marketing activities (referral program, rewards, etc.).", + "explorer": "https://basescan.org/token/0x0BbbEad62f7647AE8323d2cb243A0DB74B7C2b80", + "type": "BASE", + "symbol": "WALLET", + "status": "active", + "decimals": 18, + "id": "0x0BbbEad62f7647AE8323d2cb243A0DB74B7C2b80", + "tags": [ + "defi", + "governance", + "staking" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/AmbireTech/wallet" + }, + { + "name": "x", + "url": "https://x.com/AmbireWallet" + }, + { + "name": "blog", + "url": "https://ambire.medium.com" + }, + { + "name": "telegram", + "url": "https://t.me/AmbireOfficial" + }, + { + "name": "facebook", + "url": "https://facebook.com/AmbireAdEx" + }, + { + "name": "whitepaper", + "url": "https://ambire.com/whitepaper" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ambire-wallet" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/ambire-wallet" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x0BbbEad62f7647AE8323d2cb243A0DB74B7C2b80/logo.png b/blockchains/base/assets/0x0BbbEad62f7647AE8323d2cb243A0DB74B7C2b80/logo.png new file mode 100644 index 0000000000000..2c33c7b401760 Binary files /dev/null and b/blockchains/base/assets/0x0BbbEad62f7647AE8323d2cb243A0DB74B7C2b80/logo.png differ diff --git a/blockchains/base/assets/0x0C03Ce270B4826Ec62e7DD007f0B716068639F7B/info.json b/blockchains/base/assets/0x0C03Ce270B4826Ec62e7DD007f0B716068639F7B/info.json new file mode 100644 index 0000000000000..5bd78d8235411 --- /dev/null +++ b/blockchains/base/assets/0x0C03Ce270B4826Ec62e7DD007f0B716068639F7B/info.json @@ -0,0 +1,21 @@ +{ + "name": "The Innovation Game", + "symbol": "TIG", + "type": "BASE", + "decimals": 18, + "description": "The Innovation Game (TIG) is a protocol designed to accelerate algorithmic innovation. At TIG's core is a novel PoW mechanism that allows for optimisation of the PoW algorithms.‍", + "website": "https://tig.foundation/", + "explorer": "https://basescan.org/token/0x0C03Ce270B4826Ec62e7DD007f0B716068639F7B", + "status": "active", + "id": "0x0C03Ce270B4826Ec62e7DD007f0B716068639F7B", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/the-innovation-game/" + }, + { + "name": "x", + "url": "https://x.com/tigfoundation" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x0C03Ce270B4826Ec62e7DD007f0B716068639F7B/logo.png b/blockchains/base/assets/0x0C03Ce270B4826Ec62e7DD007f0B716068639F7B/logo.png new file mode 100644 index 0000000000000..31b63c6b2833b Binary files /dev/null and b/blockchains/base/assets/0x0C03Ce270B4826Ec62e7DD007f0B716068639F7B/logo.png differ diff --git a/blockchains/base/assets/0x0C1dC73159e30c4b06170F2593D3118968a0DCa5/info.json b/blockchains/base/assets/0x0C1dC73159e30c4b06170F2593D3118968a0DCa5/info.json new file mode 100644 index 0000000000000..33b5b816bba5a --- /dev/null +++ b/blockchains/base/assets/0x0C1dC73159e30c4b06170F2593D3118968a0DCa5/info.json @@ -0,0 +1,17 @@ +{ + "name": "GoPlus Security", + "type": "BASE", + "symbol": "GPS", + "decimals": 18, + "description": "GoPlus Security is building Web3's first decentralized security layer, providing comprehensive protection across all blockchain networks to protect every transaction for users.", + "website": "https://gopluslabs.io", + "explorer": "https://basescan.org/token/0x0c1dc73159e30c4b06170f2593d3118968a0dca5", + "id": "0x0C1dC73159e30c4b06170F2593D3118968a0DCa5", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/GoplusSecurity" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x0C1dC73159e30c4b06170F2593D3118968a0DCa5/logo.png b/blockchains/base/assets/0x0C1dC73159e30c4b06170F2593D3118968a0DCa5/logo.png new file mode 100644 index 0000000000000..c0b1f287883c7 Binary files /dev/null and b/blockchains/base/assets/0x0C1dC73159e30c4b06170F2593D3118968a0DCa5/logo.png differ diff --git a/blockchains/base/assets/0x0C5142BC58f9A61AB8C3D2085DD2F4e550c5cE0B/info.json b/blockchains/base/assets/0x0C5142BC58f9A61AB8C3D2085DD2F4e550c5cE0B/info.json new file mode 100644 index 0000000000000..7c2c9f218a86a --- /dev/null +++ b/blockchains/base/assets/0x0C5142BC58f9A61AB8C3D2085DD2F4e550c5cE0B/info.json @@ -0,0 +1,29 @@ +{ + "name": "RUSSELL", + "type": "BASE", + "symbol": "RUSSELL", + "decimals": 18, + "description": "Russell the Goodest Boy on Base. CEO of Coinbase Brian Armstrong's Dog and Best Man at his Wedding.", + "website": "https://www.russell.meme/", + "explorer": "https://basescan.org/token/0x0C5142BC58f9A61AB8C3D2085DD2F4e550c5cE0B", + "id": "0x0C5142BC58f9A61AB8C3D2085DD2F4e550c5cE0B", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/russelldogcto" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/russell/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/russell" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x0C5142BC58f9A61AB8C3D2085DD2F4e550c5cE0B/logo.png b/blockchains/base/assets/0x0C5142BC58f9A61AB8C3D2085DD2F4e550c5cE0B/logo.png new file mode 100644 index 0000000000000..7aafcd06eda8c Binary files /dev/null and b/blockchains/base/assets/0x0C5142BC58f9A61AB8C3D2085DD2F4e550c5cE0B/logo.png differ diff --git a/blockchains/base/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/info.json b/blockchains/base/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/info.json new file mode 100644 index 0000000000000..2368999b33ce4 --- /dev/null +++ b/blockchains/base/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/info.json @@ -0,0 +1,24 @@ +{ + "name": "Argentine Peso", + "website": "https://www.ripio.com/es/criptos/stablecoins-locales", + "description": "wARS is a fully collateralized stablecoin pegged 1:1 to the Argentine Peso (ARS). Issued and governed by a Ripio subsidiary, it brings ARS on-chain so Argentines and global users can transact, save, and build on decentralized networks in their local currency.", + "explorer": "https://basescan.org/token/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D", + "type": "ERC20", + "symbol": "wARS", + "decimals": 18, + "status": "active", + "id": "0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/RipioApp" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/argentine-peso" + } + ] +} diff --git a/blockchains/base/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/logo.png b/blockchains/base/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/logo.png new file mode 100644 index 0000000000000..be1b6bf25885f Binary files /dev/null and b/blockchains/base/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/logo.png differ diff --git a/blockchains/base/assets/0x0b3e328455c4059EEb9e3f84b5543F74E24e7E1b/info.json b/blockchains/base/assets/0x0b3e328455c4059EEb9e3f84b5543F74E24e7E1b/info.json new file mode 100644 index 0000000000000..ecf52ff2cfb77 --- /dev/null +++ b/blockchains/base/assets/0x0b3e328455c4059EEb9e3f84b5543F74E24e7E1b/info.json @@ -0,0 +1,14 @@ +{ + "name": "Virtual Protocol", + "type": "BASE", + "symbol": "VIRTUAL", + "decimals": 18, + "website": "https://app.virtuals.io/", + "description": "The ecosystem for the creation and co-ownership of autonomous AI Agents. Building the first autonomous agentic network state.", + "explorer": "https://basescan.org/token/0x0b3e328455c4059EEb9e3f84b5543F74E24e7E1b", + "status": "active", + "id": "0x0b3e328455c4059EEb9e3f84b5543F74E24e7E1b", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x0b3e328455c4059EEb9e3f84b5543F74E24e7E1b/logo.png b/blockchains/base/assets/0x0b3e328455c4059EEb9e3f84b5543F74E24e7E1b/logo.png new file mode 100644 index 0000000000000..8c642c602477b Binary files /dev/null and b/blockchains/base/assets/0x0b3e328455c4059EEb9e3f84b5543F74E24e7E1b/logo.png differ diff --git a/blockchains/base/assets/0x0d97F261b1e88845184f678e2d1e7a98D9FD38dE/info.json b/blockchains/base/assets/0x0d97F261b1e88845184f678e2d1e7a98D9FD38dE/info.json new file mode 100644 index 0000000000000..77a73ed0f3bc4 --- /dev/null +++ b/blockchains/base/assets/0x0d97F261b1e88845184f678e2d1e7a98D9FD38dE/info.json @@ -0,0 +1,17 @@ +{ + "name": "Base God", + "website": "https://basegod.fun/", + "description": "Base God is the most Based meme on Base. Join the Disciples of B as we follow Big B to eternal salvation and take over the Base chain.", + "explorer": "https://basescan.org/token/0x0d97F261b1e88845184f678e2d1e7a98D9FD38dE", + "type": "BASE", + "symbol": "TYBG", + "decimals": 18, + "status": "active", + "id": "0x0d97F261b1e88845184f678e2d1e7a98D9FD38dE", + "links": [ + { + "name": "x", + "url": "https://x.com/tybasegod" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x0d97F261b1e88845184f678e2d1e7a98D9FD38dE/logo.png b/blockchains/base/assets/0x0d97F261b1e88845184f678e2d1e7a98D9FD38dE/logo.png new file mode 100644 index 0000000000000..8b64bdfc00530 Binary files /dev/null and b/blockchains/base/assets/0x0d97F261b1e88845184f678e2d1e7a98D9FD38dE/logo.png differ diff --git a/blockchains/base/assets/0x0e0c9756a3290cD782CF4aB73ac24D25291c9564/info.json b/blockchains/base/assets/0x0e0c9756a3290cD782CF4aB73ac24D25291c9564/info.json new file mode 100644 index 0000000000000..6c806554dfe86 --- /dev/null +++ b/blockchains/base/assets/0x0e0c9756a3290cD782CF4aB73ac24D25291c9564/info.json @@ -0,0 +1,29 @@ +{ + "name": "Anime", + "type": "BASE", + "symbol": "ANIME", + "decimals": 18, + "website": "https://animeonbase.art/", + "description": "Just a coin for people who love art and anime. An onchain art and anime movement.", + "explorer": "https://basescan.org/token/0x0e0c9756a3290cD782CF4aB73ac24D25291c9564", + "status": "active", + "id": "0x0e0c9756a3290cD782CF4aB73ac24D25291c9564", + "links": [ + { + "name": "x", + "url": "https://x.com/animeonbase" + }, + { + "name": "telegram", + "url": "https://t.me/AnimeOnBase" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/anime/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/anime-base" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x0e0c9756a3290cD782CF4aB73ac24D25291c9564/logo.png b/blockchains/base/assets/0x0e0c9756a3290cD782CF4aB73ac24D25291c9564/logo.png new file mode 100644 index 0000000000000..56453e9a02096 Binary files /dev/null and b/blockchains/base/assets/0x0e0c9756a3290cD782CF4aB73ac24D25291c9564/logo.png differ diff --git a/blockchains/base/assets/0x0fD7a301B51d0A83FCAf6718628174D527B373b6/info.json b/blockchains/base/assets/0x0fD7a301B51d0A83FCAf6718628174D527B373b6/info.json new file mode 100644 index 0000000000000..b0aa3411946b8 --- /dev/null +++ b/blockchains/base/assets/0x0fD7a301B51d0A83FCAf6718628174D527B373b6/info.json @@ -0,0 +1,30 @@ +{ + "name": "luminous", + "type": "BASE", + "symbol": "LUM", + "decimals": 18, + "description": "a token that represents the collective brilliance of human-ai collaboration", + "website": "https://warpcast.com/aethernet/0x9b64c883", + "explorer": "https://basescan.org/token/0x0fD7a301B51d0A83FCAf6718628174D527B373b6", + "id": "0x0fD7a301B51d0A83FCAf6718628174D527B373b6", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/luminousbase" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/luminous/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/luminous" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x0fD7a301B51d0A83FCAf6718628174D527B373b6/logo.png b/blockchains/base/assets/0x0fD7a301B51d0A83FCAf6718628174D527B373b6/logo.png new file mode 100644 index 0000000000000..6fb6fcf4b00b6 Binary files /dev/null and b/blockchains/base/assets/0x0fD7a301B51d0A83FCAf6718628174D527B373b6/logo.png differ diff --git a/blockchains/base/assets/0x106C8A8bA4D7fCC70e35A3fFaa35252047bC5271/info.json b/blockchains/base/assets/0x106C8A8bA4D7fCC70e35A3fFaa35252047bC5271/info.json new file mode 100644 index 0000000000000..d68e0f0f804a5 --- /dev/null +++ b/blockchains/base/assets/0x106C8A8bA4D7fCC70e35A3fFaa35252047bC5271/info.json @@ -0,0 +1,24 @@ +{ + "name": "GOAT BASED", + "type": "BASE", + "symbol": "GOAT", + "decimals": 18, + "description": "With the rise of $GOAT and the growing allure of Truth Terminal’s darkly humorous, unpredictable personality, this site was born as a byproduct of its influence.", + "website": "https://goatbased.pro/", + "explorer": "https://basescan.org/token/0x106C8A8bA4D7fCC70e35A3fFaa35252047bC5271", + "id": "0x106C8A8bA4D7fCC70e35A3fFaa35252047bC5271", + "status": "spam", + "links": [ + { + "name": "x", + "url": "https://x.com/GOATBASEDTOKEN" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/goat-based/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x10f434B3d1cC13A4A79B062Dcc25706f64D10D47/info.json b/blockchains/base/assets/0x10f434B3d1cC13A4A79B062Dcc25706f64D10D47/info.json new file mode 100644 index 0000000000000..4470efa539a15 --- /dev/null +++ b/blockchains/base/assets/0x10f434B3d1cC13A4A79B062Dcc25706f64D10D47/info.json @@ -0,0 +1,30 @@ +{ + "name": "BEPE", + "type": "BASE", + "symbol": "BEPE", + "decimals": 18, + "description": "Bepe is a dynamic social DeFi platform powered by the BEPE token. Inside the ecosystem you will find a customizable launchpad for projects, complete with adjustable tax rates, staking options, and token locks alongside a built in AMM ensuring smooth trading, liquidity and a plethora of opportunities for tokens in or out of the ecosystem.", + "website": "https://www.bepe.live/", + "explorer": "https://basescan.org/token/0x10f434b3d1cc13a4a79b062dcc25706f64d10d47", + "id": "0x10f434B3d1cC13A4A79B062Dcc25706f64D10D47", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/BepeOnBase" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bepe/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bepe" + } + + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x10f434B3d1cC13A4A79B062Dcc25706f64D10D47/logo.png b/blockchains/base/assets/0x10f434B3d1cC13A4A79B062Dcc25706f64D10D47/logo.png new file mode 100644 index 0000000000000..81692d385b8e5 Binary files /dev/null and b/blockchains/base/assets/0x10f434B3d1cC13A4A79B062Dcc25706f64D10D47/logo.png differ diff --git a/blockchains/base/assets/0x1185cB5122Edad199BdBC0cbd7a0457E448f23c7/info.json b/blockchains/base/assets/0x1185cB5122Edad199BdBC0cbd7a0457E448f23c7/info.json new file mode 100644 index 0000000000000..2ead29bd55335 --- /dev/null +++ b/blockchains/base/assets/0x1185cB5122Edad199BdBC0cbd7a0457E448f23c7/info.json @@ -0,0 +1,21 @@ +{ + "name": "sekoia by Virtuals", + "symbol": "SEKOIA", + "decimals": 18, + "type": "BASE", + "website": "https://app.virtuals.io/virtuals/743", + "description": "Meet SEKOIA - The Growth-Minded AI Investment Partner", + "explorer": "https://basescan.org/token/0x1185cb5122edad199bdbc0cbd7a0457e448f23c7", + "status": "active", + "id": "0x1185cB5122Edad199BdBC0cbd7a0457E448f23c7", + "links": [ + { + "name": "x", + "url": "https://x.com/sekoia_virtuals" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sekoia-by-virtuals/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x1185cB5122Edad199BdBC0cbd7a0457E448f23c7/logo.png b/blockchains/base/assets/0x1185cB5122Edad199BdBC0cbd7a0457E448f23c7/logo.png new file mode 100644 index 0000000000000..425de884f9231 Binary files /dev/null and b/blockchains/base/assets/0x1185cB5122Edad199BdBC0cbd7a0457E448f23c7/logo.png differ diff --git a/blockchains/base/assets/0x118A14bd824a7099E8C5279216FF410a7E5472BD/info.json b/blockchains/base/assets/0x118A14bd824a7099E8C5279216FF410a7E5472BD/info.json new file mode 100644 index 0000000000000..df596dcea74d9 --- /dev/null +++ b/blockchains/base/assets/0x118A14bd824a7099E8C5279216FF410a7E5472BD/info.json @@ -0,0 +1,21 @@ +{ + "name": "Opulous", + "type": "BASE", + "symbol": "OPUL", + "website": "https://opulous.org/", + "decimals": 18, + "description": "Opulous Token believe in a future where musicians keep control of the music they create and forge even deeper connections with their fans.", + "explorer": "https://basescan.org/token/0x118a14bd824a7099e8c5279216ff410a7e5472bd", + "status": "active", + "id": "0x118A14bd824a7099E8C5279216FF410a7E5472BD", + "links": [ + { + "name": "telegram", + "url": "https://t.me/opulousapp" + }, + { + "name": "x", + "url": "https://x.com/opulousapp" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x118A14bd824a7099E8C5279216FF410a7E5472BD/logo.png b/blockchains/base/assets/0x118A14bd824a7099E8C5279216FF410a7E5472BD/logo.png new file mode 100644 index 0000000000000..afa7fedd2bd39 Binary files /dev/null and b/blockchains/base/assets/0x118A14bd824a7099E8C5279216FF410a7E5472BD/logo.png differ diff --git a/blockchains/base/assets/0x15aC90165f8B45A80534228BdCB124A011F62Fee/info.json b/blockchains/base/assets/0x15aC90165f8B45A80534228BdCB124A011F62Fee/info.json new file mode 100644 index 0000000000000..30e38111ebee7 --- /dev/null +++ b/blockchains/base/assets/0x15aC90165f8B45A80534228BdCB124A011F62Fee/info.json @@ -0,0 +1,29 @@ +{ + "name": "donotfomoew", + "type": "BASE", + "symbol": "MOEW", + "decimals": 18, + "description": "Just for funsies, nothing too serious, We wanna see what the power of memes can do.", + "website": "https://donotfomoew.org/", + "explorer": "https://basescan.org/token/0x15ac90165f8b45a80534228bdcb124a011f62fee", + "id": "0x15aC90165f8B45A80534228BdCB124A011F62Fee", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/donotfomoew" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/donotfomoew/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/moew" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x15aC90165f8B45A80534228BdCB124A011F62Fee/logo.png b/blockchains/base/assets/0x15aC90165f8B45A80534228BdCB124A011F62Fee/logo.png new file mode 100644 index 0000000000000..76c5f31e4f16b Binary files /dev/null and b/blockchains/base/assets/0x15aC90165f8B45A80534228BdCB124A011F62Fee/logo.png differ diff --git a/blockchains/base/assets/0x161e113B8E9BBAEfb846F73F31624F6f9607bd44/info.json b/blockchains/base/assets/0x161e113B8E9BBAEfb846F73F31624F6f9607bd44/info.json new file mode 100644 index 0000000000000..2cea3b3d23323 --- /dev/null +++ b/blockchains/base/assets/0x161e113B8E9BBAEfb846F73F31624F6f9607bd44/info.json @@ -0,0 +1,29 @@ +{ + "name": "Simmi Token", + "type": "BASE", + "symbol": "SIMMI", + "decimals": 18, + "description": "Simulacrum is a platform that enables users to execute on-chain actions directly from social media platforms like X (formerly Twitter), utilizing their social media accounts as secure wallets. By leveraging Existential Attestations of External Media, Simulacrum creates a Synthetic Blockchain that allows users to broadcast transactions through social media posts.", + "website": "https://simulacrum.network/", + "explorer": "https://basescan.org/token/0x161e113B8E9BBAEfb846F73F31624F6f9607bd44", + "id": "0x161e113B8E9BBAEfb846F73F31624F6f9607bd44", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Simmi_IO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/simmi/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/simmi-token" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x161e113B8E9BBAEfb846F73F31624F6f9607bd44/logo.png b/blockchains/base/assets/0x161e113B8E9BBAEfb846F73F31624F6f9607bd44/logo.png new file mode 100644 index 0000000000000..4a8c4e08949c6 Binary files /dev/null and b/blockchains/base/assets/0x161e113B8E9BBAEfb846F73F31624F6f9607bd44/logo.png differ diff --git a/blockchains/base/assets/0x18Bc5bcC660cf2B9cE3cd51a404aFe1a0cBD3C22/info.json b/blockchains/base/assets/0x18Bc5bcC660cf2B9cE3cd51a404aFe1a0cBD3C22/info.json new file mode 100644 index 0000000000000..a8fa487ab3958 --- /dev/null +++ b/blockchains/base/assets/0x18Bc5bcC660cf2B9cE3cd51a404aFe1a0cBD3C22/info.json @@ -0,0 +1,45 @@ +{ + "id": "0x18Bc5bcC660cf2B9cE3cd51a404aFe1a0cBD3C22", + "name": "IDRX", + "type": "BASE", + "symbol": "IDRX", + "decimals": 2, + "website": "https://idrx.co/", + "description": "IDRX is a stable token pegged to the value of the Indonesian Rupiah (IDR). As a cryptocurrency, IDRX offers users the benefits of blockchain technology, including security, transparency, and decentralized control. At the same time, as a stable token, IDRX offers price stability by maintaining a fixed exchange rate with the IDR, which is the national currency of Indonesia.", + "explorer": "https://basescan.org/token/0x18Bc5bcC660cf2B9cE3cd51a404aFe1a0cBD3C22", + "status": "active", + "tags": [ + "stablecoin", + "staking" + ], + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/idrx/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/idrx/" + }, + { + "name": "github", + "url": "https://github.com/idrx-co/" + }, + { + "name": "docs", + "url": "https://docs.idrx.co/" + }, + { + "name": "whitepaper", + "url": "https://idrx.co/docs/Whitepaper%20IDRX.pdf" + }, + { + "name": "telegram", + "url": "https://t.me/officialidrx" + }, + { + "name": "medium", + "url": "https://idrx.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x18Bc5bcC660cf2B9cE3cd51a404aFe1a0cBD3C22/logo.png b/blockchains/base/assets/0x18Bc5bcC660cf2B9cE3cd51a404aFe1a0cBD3C22/logo.png new file mode 100644 index 0000000000000..7af71346b78e9 Binary files /dev/null and b/blockchains/base/assets/0x18Bc5bcC660cf2B9cE3cd51a404aFe1a0cBD3C22/logo.png differ diff --git a/blockchains/base/assets/0x18E692c03De43972Fe81058f322fa542Ae1A5E2c/info.json b/blockchains/base/assets/0x18E692c03De43972Fe81058f322fa542Ae1A5E2c/info.json new file mode 100644 index 0000000000000..bf2993ff9d52d --- /dev/null +++ b/blockchains/base/assets/0x18E692c03De43972Fe81058f322fa542Ae1A5E2c/info.json @@ -0,0 +1,21 @@ +{ + "name": "imgnAI.com", + "website": "https://imgnai.com/", + "description": "$imgnAI is the creator token that powers the imgnAI platform - a suite of creative AI tools built for maximum fun, and maximum freedom.", + "explorer": "https://basescan.org/token/0x18E692c03De43972Fe81058f322fa542Ae1A5E2c", + "symbol": "imgnAI", + "type": "BASE", + "decimals": 9, + "status": "active", + "id": "0x18E692c03De43972Fe81058f322fa542Ae1A5E2c", + "links": [ + { + "name": "x", + "url": "https://x.com/imgn_ai" + }, + { + "name": "telegram", + "url": "https://t.me/imgnAI" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x18E692c03De43972Fe81058f322fa542Ae1A5E2c/logo.png b/blockchains/base/assets/0x18E692c03De43972Fe81058f322fa542Ae1A5E2c/logo.png new file mode 100644 index 0000000000000..f772ec237ee7e Binary files /dev/null and b/blockchains/base/assets/0x18E692c03De43972Fe81058f322fa542Ae1A5E2c/logo.png differ diff --git a/blockchains/base/assets/0x18dD5B087bCA9920562aFf7A0199b96B9230438b/info.json b/blockchains/base/assets/0x18dD5B087bCA9920562aFf7A0199b96B9230438b/info.json new file mode 100644 index 0000000000000..aaeeb6c8db0d7 --- /dev/null +++ b/blockchains/base/assets/0x18dD5B087bCA9920562aFf7A0199b96B9230438b/info.json @@ -0,0 +1,21 @@ +{ + "name": "Propy", + "symbol": "PRO", + "type": "BASE", + "decimals": 8, + "description": "Propy is a decentralized real-estate market place backed by superior blockchain infrastructure to facilitate real-time unified transaction in order to reduce fraud and redundancy. Propy is the world’s first international real-estate marketplace.", + "website": "https://propy.com", + "explorer": "https://basescan.org/token/0x18dD5B087bCA9920562aFf7A0199b96B9230438b", + "status": "active", + "id": "0x18dD5B087bCA9920562aFf7A0199b96B9230438b", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/propy/" + }, + { + "name": "x", + "url": "https://x.com/propyinc" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x18dD5B087bCA9920562aFf7A0199b96B9230438b/logo.png b/blockchains/base/assets/0x18dD5B087bCA9920562aFf7A0199b96B9230438b/logo.png new file mode 100644 index 0000000000000..b579a5bbc13ab Binary files /dev/null and b/blockchains/base/assets/0x18dD5B087bCA9920562aFf7A0199b96B9230438b/logo.png differ diff --git a/blockchains/base/assets/0x1B5cE2a593a840E3ad3549a34D7b3dEc697c114D/info.json b/blockchains/base/assets/0x1B5cE2a593a840E3ad3549a34D7b3dEc697c114D/info.json new file mode 100644 index 0000000000000..ab599783c596a --- /dev/null +++ b/blockchains/base/assets/0x1B5cE2a593a840E3ad3549a34D7b3dEc697c114D/info.json @@ -0,0 +1,29 @@ +{ + "name": "Altcoinist", + "type": "BASE", + "symbol": "ALTT", + "decimals": 18, + "description": "Altcoinist - Trade, Network, Earn Together. If the Supercycle is Gen-Z’s Gold Rush, Trenches are the shovels for life-changing gains... Altcoinist is a social trading infra built to help you achieve success in the crypto market. Join the top-performing Telegram/Discord Trenches.", + "website": "https://www.altcoinist.com/", + "explorer": "https://basescan.org/token/0x1b5ce2a593a840e3ad3549a34d7b3dec697c114d", + "id": "0x1B5cE2a593a840E3ad3549a34D7b3dEc697c114D", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Altcoinist_com" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/altcoinist/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/altcoinist-token" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x1B5cE2a593a840E3ad3549a34D7b3dEc697c114D/logo.png b/blockchains/base/assets/0x1B5cE2a593a840E3ad3549a34D7b3dEc697c114D/logo.png new file mode 100644 index 0000000000000..010324761af9d Binary files /dev/null and b/blockchains/base/assets/0x1B5cE2a593a840E3ad3549a34D7b3dEc697c114D/logo.png differ diff --git a/blockchains/base/assets/0x1C4CcA7C5DB003824208aDDA61Bd749e55F463a3/info.json b/blockchains/base/assets/0x1C4CcA7C5DB003824208aDDA61Bd749e55F463a3/info.json new file mode 100644 index 0000000000000..a7cbc2d6ce056 --- /dev/null +++ b/blockchains/base/assets/0x1C4CcA7C5DB003824208aDDA61Bd749e55F463a3/info.json @@ -0,0 +1,27 @@ +{ + "name": "GAME by Virtuals", + "type": "BASE", + "symbol": "GAME", + "decimals": 18, + "description": "GAME empowers AI agents to operate autonomously, processing inputs and generating responses while learning from past interactions. It enhances decision-making by leveraging long-term memory, including experiences, reflections, and dynamic personality traits. By continuously evaluating the outcomes of actions and conversations, GAME enables agents to refine their knowledge and improve their planning and performance over time.", + "website": "https://app.virtuals.io/virtuals/273", + "explorer": "https://basescan.org/token/0x1c4cca7c5db003824208adda61bd749e55f463a3", + "id": "0x1C4CcA7C5DB003824208aDDA61Bd749e55F463a3", + "status": "active", + "links": [ + + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/game-by-virtuals/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/game-by-virtuals" + } + + ], + "tags": [ + "deflationary" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x1C4CcA7C5DB003824208aDDA61Bd749e55F463a3/logo.png b/blockchains/base/assets/0x1C4CcA7C5DB003824208aDDA61Bd749e55F463a3/logo.png new file mode 100644 index 0000000000000..30adc27c22164 Binary files /dev/null and b/blockchains/base/assets/0x1C4CcA7C5DB003824208aDDA61Bd749e55F463a3/logo.png differ diff --git a/blockchains/base/assets/0x1C4f589c48fd3b707fb87c6b6ad5A362EF75c683/info.json b/blockchains/base/assets/0x1C4f589c48fd3b707fb87c6b6ad5A362EF75c683/info.json new file mode 100644 index 0000000000000..d249cc1d080f7 --- /dev/null +++ b/blockchains/base/assets/0x1C4f589c48fd3b707fb87c6b6ad5A362EF75c683/info.json @@ -0,0 +1,21 @@ +{ + "name": "Super Trump", + "website": "https://realsupertrump.com/", + "description": "Super Trump is an audacious venture into the realm of meme cryptocurrencies, designed to embody the polarizing yet captivating political figure of Donald Trump", + "explorer": "https://basescan.org/token/0x1C4f589c48fd3b707fb87c6b6ad5A362EF75c683", + "type": "BASE", + "symbol": "TRUMP", + "decimals": 18, + "status": "active", + "id": "0x1C4f589c48fd3b707fb87c6b6ad5A362EF75c683", + "links": [ + { + "name": "x", + "url": "https://x.com/Real_SuperTrump" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/realsupertrump-com" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x1C4f589c48fd3b707fb87c6b6ad5A362EF75c683/logo.png b/blockchains/base/assets/0x1C4f589c48fd3b707fb87c6b6ad5A362EF75c683/logo.png new file mode 100644 index 0000000000000..8c6c67781d3d6 Binary files /dev/null and b/blockchains/base/assets/0x1C4f589c48fd3b707fb87c6b6ad5A362EF75c683/logo.png differ diff --git a/blockchains/base/assets/0x1C7a460413dD4e964f96D8dFC56E7223cE88CD85/info.json b/blockchains/base/assets/0x1C7a460413dD4e964f96D8dFC56E7223cE88CD85/info.json new file mode 100644 index 0000000000000..4a4a2bfdd1992 --- /dev/null +++ b/blockchains/base/assets/0x1C7a460413dD4e964f96D8dFC56E7223cE88CD85/info.json @@ -0,0 +1,21 @@ +{ + "name": "Seamless", + "website": "https://www.seamlessprotocol.com/", + "description": "Seamless Protocol is a native decentralized lending and borrowing protocol on Base. Seamless is focusing on lower-collateral borrowing and a better user experience to inspire the masses. SEAM is the utility governance token of Seamless Protocol.", + "explorer": "https://basescan.org/token/0x1C7a460413dD4e964f96D8dFC56E7223cE88CD85", + "type": "BASE", + "symbol": "SEAM", + "decimals": 18, + "status": "active", + "id": "0x1C7a460413dD4e964f96D8dFC56E7223cE88CD85", + "links": [ + { + "name": "x", + "url": "https://x.com/SeamlessFi" + }, + { + "name": "telegram", + "url": "https://t.me/seamless_protocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x1C7a460413dD4e964f96D8dFC56E7223cE88CD85/logo.png b/blockchains/base/assets/0x1C7a460413dD4e964f96D8dFC56E7223cE88CD85/logo.png new file mode 100644 index 0000000000000..ddaf14a206c4f Binary files /dev/null and b/blockchains/base/assets/0x1C7a460413dD4e964f96D8dFC56E7223cE88CD85/logo.png differ diff --git a/blockchains/base/assets/0x1E2093AB84768948C6176DB5aD98C909ce97F368/info.json b/blockchains/base/assets/0x1E2093AB84768948C6176DB5aD98C909ce97F368/info.json new file mode 100644 index 0000000000000..ea7c3939b9977 --- /dev/null +++ b/blockchains/base/assets/0x1E2093AB84768948C6176DB5aD98C909ce97F368/info.json @@ -0,0 +1,21 @@ +{ + "name": "DORA AI by Virtuals", + "symbol": "DORA", + "type": "BASE", + "decimals": 18, + "description": "DORA AI is an advanced AI-powered travel assistant built on the BASE network using the Virtuals Protocol.", + "website": "https://www.xdora.ai/", + "explorer": "https://basescan.org/token/0x1e2093ab84768948c6176db5ad98c909ce97f368", + "status": "active", + "id": "0x1E2093AB84768948C6176DB5aD98C909ce97F368", + "links": [ + { + "name": "x", + "url": "https://x.com/xDora_ai" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dora-ai-by-virtuals/" + } + ] + } \ No newline at end of file diff --git a/blockchains/base/assets/0x1E2093AB84768948C6176DB5aD98C909ce97F368/logo.png b/blockchains/base/assets/0x1E2093AB84768948C6176DB5aD98C909ce97F368/logo.png new file mode 100644 index 0000000000000..3c954c691399e Binary files /dev/null and b/blockchains/base/assets/0x1E2093AB84768948C6176DB5aD98C909ce97F368/logo.png differ diff --git a/blockchains/base/assets/0x1F1c695f6b4A3F8B05f2492ceF9474Afb6d6Ad69/info.json b/blockchains/base/assets/0x1F1c695f6b4A3F8B05f2492ceF9474Afb6d6Ad69/info.json new file mode 100644 index 0000000000000..fdcef2c1068a8 --- /dev/null +++ b/blockchains/base/assets/0x1F1c695f6b4A3F8B05f2492ceF9474Afb6d6Ad69/info.json @@ -0,0 +1,26 @@ +{ + "name": "Sally", + "type": "BASE", + "symbol": "A1C", + "decimals": 18, + "description": "Meet Sally, the FIRST Metabolic Health AI Agent.", + "website": "https://asksally.xyz/", + "explorer": "https://basescan.org/token/0x1f1c695f6b4a3f8b05f2492cef9474afb6d6ad69", + "id": "0x1F1c695f6b4A3F8B05f2492ceF9474Afb6d6Ad69", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/sally_a1c" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sally-a1c" + } + + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x1F1c695f6b4A3F8B05f2492ceF9474Afb6d6Ad69/logo.png b/blockchains/base/assets/0x1F1c695f6b4A3F8B05f2492ceF9474Afb6d6Ad69/logo.png new file mode 100644 index 0000000000000..81f358916d017 Binary files /dev/null and b/blockchains/base/assets/0x1F1c695f6b4A3F8B05f2492ceF9474Afb6d6Ad69/logo.png differ diff --git a/blockchains/base/assets/0x1bc0c42215582d5A085795f4baDbaC3ff36d1Bcb/info.json b/blockchains/base/assets/0x1bc0c42215582d5A085795f4baDbaC3ff36d1Bcb/info.json new file mode 100644 index 0000000000000..583d7dd2b125c --- /dev/null +++ b/blockchains/base/assets/0x1bc0c42215582d5A085795f4baDbaC3ff36d1Bcb/info.json @@ -0,0 +1,11 @@ +{ + "name": "tokenbot", + "symbol": "CLANKER", + "decimals": 18, + "type": "BASE", + "website": "https://www.clanker.world/", + "description": "tokenbot", + "explorer": "https://basescan.org/token/0x1bc0c42215582d5a085795f4badbac3ff36d1bcb", + "status": "active", + "id": "0x1bc0c42215582d5A085795f4baDbaC3ff36d1Bcb" +} \ No newline at end of file diff --git a/blockchains/base/assets/0x1bc0c42215582d5A085795f4baDbaC3ff36d1Bcb/logo.png b/blockchains/base/assets/0x1bc0c42215582d5A085795f4baDbaC3ff36d1Bcb/logo.png new file mode 100644 index 0000000000000..09e48cde888af Binary files /dev/null and b/blockchains/base/assets/0x1bc0c42215582d5A085795f4baDbaC3ff36d1Bcb/logo.png differ diff --git a/blockchains/base/assets/0x1dd2d631c92b1aCdFCDd51A0F7145A50130050C4/info.json b/blockchains/base/assets/0x1dd2d631c92b1aCdFCDd51A0F7145A50130050C4/info.json new file mode 100644 index 0000000000000..4cd2a58cae358 --- /dev/null +++ b/blockchains/base/assets/0x1dd2d631c92b1aCdFCDd51A0F7145A50130050C4/info.json @@ -0,0 +1,30 @@ +{ + "name": "AlienBase Token", + "type": "BASE", + "symbol": "ALB", + "decimals": 18, + "description": "Launched on 9th August 2023, Alienbase represents the next evolution in the world of decentralized exchanges (DEX). In an era where the digital finance landscape is rapidly changing, Alienbase emerges as a beacon of innovation, security, and user-centricity. Designed with the modern trader in mind, it offers a plethora of features that cater to both seasoned crypto enthusiasts and those new to the decentralized finance (DeFi) world.", + "website": "https://alienbase.xyz/", + "explorer": "https://basescan.org/token/0x1dd2d631c92b1aCdFCDd51A0F7145A50130050C4", + "id": "0x1dd2d631c92b1aCdFCDd51A0F7145A50130050C4", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/AlienBaseDEX" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/alien-base/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/alienbase" + } + + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x1dd2d631c92b1aCdFCDd51A0F7145A50130050C4/logo.png b/blockchains/base/assets/0x1dd2d631c92b1aCdFCDd51A0F7145A50130050C4/logo.png new file mode 100644 index 0000000000000..8fff094e7165f Binary files /dev/null and b/blockchains/base/assets/0x1dd2d631c92b1aCdFCDd51A0F7145A50130050C4/logo.png differ diff --git a/blockchains/base/assets/0x20ef84969f6d81Ff74AE4591c331858b20AD82CD/info.json b/blockchains/base/assets/0x20ef84969f6d81Ff74AE4591c331858b20AD82CD/info.json new file mode 100644 index 0000000000000..288219d7fe646 --- /dev/null +++ b/blockchains/base/assets/0x20ef84969f6d81Ff74AE4591c331858b20AD82CD/info.json @@ -0,0 +1,21 @@ +{ + "name": "AicroStrategy", + "website": "https://aicrostrategy.com/", + "description": "AicroStrategy ($AiSTR) revolutionizes investment through autonomous AI agents, delivering unparalleled trading strategies on Base.", + "explorer": "https://basescan.org/token/0x20ef84969f6d81Ff74AE4591c331858b20AD82CD", + "type": "BASE", + "symbol": "AiSTR", + "decimals": 18, + "status": "active", + "id": "0x20ef84969f6d81Ff74AE4591c331858b20AD82CD", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/aicrostrategy" + }, + { + "name": "x", + "url": "https://x.com/AicroStrategy" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x20ef84969f6d81Ff74AE4591c331858b20AD82CD/logo.png b/blockchains/base/assets/0x20ef84969f6d81Ff74AE4591c331858b20AD82CD/logo.png new file mode 100644 index 0000000000000..25571871daf58 Binary files /dev/null and b/blockchains/base/assets/0x20ef84969f6d81Ff74AE4591c331858b20AD82CD/logo.png differ diff --git a/blockchains/base/assets/0x22aF33FE49fD1Fa80c7149773dDe5890D3c76F3b/info.json b/blockchains/base/assets/0x22aF33FE49fD1Fa80c7149773dDe5890D3c76F3b/info.json new file mode 100644 index 0000000000000..31a894fdcf90e --- /dev/null +++ b/blockchains/base/assets/0x22aF33FE49fD1Fa80c7149773dDe5890D3c76F3b/info.json @@ -0,0 +1,21 @@ +{ + "name": "BankrCoin", + "symbol": "BNKR", + "decimals": 18, + "type": "BASE", + "website": "https://bankr.bot/", + "description": "Your Friendly AI-Powered Crypto Companion", + "explorer": "https://basescan.org/token/0x22aF33FE49fD1Fa80c7149773dDe5890D3c76F3b", + "status": "active", + "id": "0x22aF33FE49fD1Fa80c7149773dDe5890D3c76F3b", + "links": [ + { + "name": "x", + "url": "https://x.com/bankrbot" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bankercoin-2" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x22aF33FE49fD1Fa80c7149773dDe5890D3c76F3b/logo.png b/blockchains/base/assets/0x22aF33FE49fD1Fa80c7149773dDe5890D3c76F3b/logo.png new file mode 100644 index 0000000000000..7332394f39cf3 Binary files /dev/null and b/blockchains/base/assets/0x22aF33FE49fD1Fa80c7149773dDe5890D3c76F3b/logo.png differ diff --git a/blockchains/base/assets/0x23A96680Ccde03Bd4Bdd9a3e9a0Cb56A5D27F7c9/info.json b/blockchains/base/assets/0x23A96680Ccde03Bd4Bdd9a3e9a0Cb56A5D27F7c9/info.json new file mode 100644 index 0000000000000..15077553677dc --- /dev/null +++ b/blockchains/base/assets/0x23A96680Ccde03Bd4Bdd9a3e9a0Cb56A5D27F7c9/info.json @@ -0,0 +1,25 @@ +{ + "name": "henlo", + "type": "BASE", + "symbol": "HENLO", + "decimals": 18, + "description": "$HENLO kart by Onchain Gaias is a telegram mini app that combines cute hamsters, onchain ai agents, hamster races, a memecoin, a huge jackpot all players compete for, referral links, and ai passive income. Henlo Kart, a hamster racing minigame, is the first of many games for the Onchain General Intelligence (OGI) Network, a decentralized platform that enables the creation, training, and deployment of open, decentralized AI Agents.", + "website": "https://www.henlokart.com/", + "explorer": "https://basescan.org/token/0x23A96680Ccde03Bd4Bdd9a3e9a0Cb56A5D27F7c9", + "id": "0x23A96680Ccde03Bd4Bdd9a3e9a0Cb56A5D27F7c9", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/henlokart" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/henlo" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x23A96680Ccde03Bd4Bdd9a3e9a0Cb56A5D27F7c9/logo.png b/blockchains/base/assets/0x23A96680Ccde03Bd4Bdd9a3e9a0Cb56A5D27F7c9/logo.png new file mode 100644 index 0000000000000..8ecc2ab89df5c Binary files /dev/null and b/blockchains/base/assets/0x23A96680Ccde03Bd4Bdd9a3e9a0Cb56A5D27F7c9/logo.png differ diff --git a/blockchains/base/assets/0x24569d33653c404f90aF10A2b98d6E0030D3d267/info.json b/blockchains/base/assets/0x24569d33653c404f90aF10A2b98d6E0030D3d267/info.json new file mode 100644 index 0000000000000..3f71293b57fa9 --- /dev/null +++ b/blockchains/base/assets/0x24569d33653c404f90aF10A2b98d6E0030D3d267/info.json @@ -0,0 +1,27 @@ +{ + "name": "Unagi Token (UNA)", + "type": "BASE", + "symbol": "UNA", + "decimals": 18, + "website": "https://unagi.games/", + "description": "UNA token is Unagi's web3 gaming ecosystem token. It is your universal ticket to the entire range of Unagi games, offering a seamless experience across various genres and platforms including Ultimate Champions, Persona and more to come! We’re creating a cohesive, interconnected gaming environment.", + "explorer": "https://basescan.org/token/0x24569d33653c404f90aF10A2b98d6E0030D3d267", + "status": "active", + "id": "0x24569d33653c404f90aF10A2b98d6E0030D3d267", + "links": [ + { + "name": "medium", + "url": "https://ultimatechampions.medium.com/" + }, + { + "name": "x", + "url": "https://x.com/Unagi_studio" + } + ], + "tags": [ + "gamefi", + "deflationary", + "staking", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x24569d33653c404f90aF10A2b98d6E0030D3d267/logo.png b/blockchains/base/assets/0x24569d33653c404f90aF10A2b98d6E0030D3d267/logo.png new file mode 100644 index 0000000000000..5dd9cbe12c479 Binary files /dev/null and b/blockchains/base/assets/0x24569d33653c404f90aF10A2b98d6E0030D3d267/logo.png differ diff --git a/blockchains/base/assets/0x259Fac10c5CbFEFE3E710e1D9467f70a76138d45/info.json b/blockchains/base/assets/0x259Fac10c5CbFEFE3E710e1D9467f70a76138d45/info.json new file mode 100644 index 0000000000000..82662fa342508 --- /dev/null +++ b/blockchains/base/assets/0x259Fac10c5CbFEFE3E710e1D9467f70a76138d45/info.json @@ -0,0 +1,28 @@ +{ + "name": "Cartesi", + "website": "https://cartesi.io", + "description": "Cartesi is the first Blockchain OS. It allows developers to build decentralized logic with Linux and standard programming environments preserving the decentralization and security of blockchains.", + "explorer": "https://basescan.org/token/0x259fac10c5cbfefe3e710e1d9467f70a76138d45", + "type": "BASE", + "symbol": "CTSI", + "decimals": 18, + "status": "active", + "id": "0x259Fac10c5CbFEFE3E710e1D9467f70a76138d45", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/cartesiproject" + }, + { + "name": "telegram", + "url": "https://t.me/cartesiannouncements" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/cartesi/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x259Fac10c5CbFEFE3E710e1D9467f70a76138d45/logo.png b/blockchains/base/assets/0x259Fac10c5CbFEFE3E710e1D9467f70a76138d45/logo.png new file mode 100644 index 0000000000000..8317ac643a40d Binary files /dev/null and b/blockchains/base/assets/0x259Fac10c5CbFEFE3E710e1D9467f70a76138d45/logo.png differ diff --git a/blockchains/base/assets/0x25E0A7767d03461EaF88b47cd9853722Fe05DFD3/info.json b/blockchains/base/assets/0x25E0A7767d03461EaF88b47cd9853722Fe05DFD3/info.json new file mode 100644 index 0000000000000..621643e06a580 --- /dev/null +++ b/blockchains/base/assets/0x25E0A7767d03461EaF88b47cd9853722Fe05DFD3/info.json @@ -0,0 +1,29 @@ +{ + "name": "PoSciDonDAO Token", + "type": "BASE", + "symbol": "SCI", + "decimals": 18, + "description": "PoSciDonDAO is a decentralized autonomous organization that leverages the Base blockchain network to redefine personalized medicine research funding. Healthcare spending is growing every year, and treatment plans for life-altering diseases such as cancer are still a shot in the dark. Patients are treated with different therapies and both patients and doctors hope that one of these treatments will be effective.", + "website": "https://www.poscidondao.com/", + "explorer": "https://basescan.org/token/0x25e0a7767d03461eaf88b47cd9853722fe05dfd3", + "id": "0x25E0A7767d03461EaF88b47cd9853722Fe05DFD3", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/PoSciDonDAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/poscidondao/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/poscidondao-token" + } + ], + "tags": [ + "governance" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x25E0A7767d03461EaF88b47cd9853722Fe05DFD3/logo.png b/blockchains/base/assets/0x25E0A7767d03461EaF88b47cd9853722Fe05DFD3/logo.png new file mode 100644 index 0000000000000..fb37ed809e0ce Binary files /dev/null and b/blockchains/base/assets/0x25E0A7767d03461EaF88b47cd9853722Fe05DFD3/logo.png differ diff --git a/blockchains/base/assets/0x27D2DECb4bFC9C76F0309b8E88dec3a601Fe25a8/info.json b/blockchains/base/assets/0x27D2DECb4bFC9C76F0309b8E88dec3a601Fe25a8/info.json new file mode 100644 index 0000000000000..5ace510cb86da --- /dev/null +++ b/blockchains/base/assets/0x27D2DECb4bFC9C76F0309b8E88dec3a601Fe25a8/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bald", + "website": "https://x.com/BaldBaseBald", + "description": "Bald (BALD) is a cryptocurrency and operates on the Base platform.", + "explorer": "https://basescan.org/token/0x27D2DECb4bFC9C76F0309b8E88dec3a601Fe25a8", + "type": "BASE", + "symbol": "BALD", + "decimals": 18, + "status": "active", + "id": "0x27D2DECb4bFC9C76F0309b8E88dec3a601Fe25a8", + "links": [ + { + "name": "x", + "url": "https://x.com/BaldBaseBald" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bald/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x27D2DECb4bFC9C76F0309b8E88dec3a601Fe25a8/logo.png b/blockchains/base/assets/0x27D2DECb4bFC9C76F0309b8E88dec3a601Fe25a8/logo.png new file mode 100644 index 0000000000000..09728af61bac5 Binary files /dev/null and b/blockchains/base/assets/0x27D2DECb4bFC9C76F0309b8E88dec3a601Fe25a8/logo.png differ diff --git a/blockchains/base/assets/0x288F4Eb27400fA220d14b864259Ad1B7f77C1594/info.json b/blockchains/base/assets/0x288F4Eb27400fA220d14b864259Ad1B7f77C1594/info.json new file mode 100644 index 0000000000000..927b90028ff0d --- /dev/null +++ b/blockchains/base/assets/0x288F4Eb27400fA220d14b864259Ad1B7f77C1594/info.json @@ -0,0 +1,21 @@ +{ + "name": "Kudai", + "symbol": "KUDAI", + "decimals": 18, + "type": "BASE", + "website": "https://www.kudai.io/", + "description": "AI agent phase 1/4.", + "explorer": "https://basescan.org/token/0x288f4eb27400fa220d14b864259ad1b7f77c1594", + "status": "active", + "id": "0x288F4Eb27400fA220d14b864259Ad1B7f77C1594", + "links": [ + { + "name": "x", + "url": "https://x.com/Kudai_IO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kudai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x288F4Eb27400fA220d14b864259Ad1B7f77C1594/logo.png b/blockchains/base/assets/0x288F4Eb27400fA220d14b864259Ad1B7f77C1594/logo.png new file mode 100644 index 0000000000000..243a6e251ef05 Binary files /dev/null and b/blockchains/base/assets/0x288F4Eb27400fA220d14b864259Ad1B7f77C1594/logo.png differ diff --git a/blockchains/base/assets/0x2941D526E22406c5d6F273E281899Cfc042a7332/info.json b/blockchains/base/assets/0x2941D526E22406c5d6F273E281899Cfc042a7332/info.json new file mode 100644 index 0000000000000..8d01bb0627419 --- /dev/null +++ b/blockchains/base/assets/0x2941D526E22406c5d6F273E281899Cfc042a7332/info.json @@ -0,0 +1,30 @@ +{ + "name": "Kogin by Virtuals", + "type": "BASE", + "symbol": "KOGIN", + "decimals": 18, + "description": "Introducing Kogin, Ronin Realms' AI Agent coin on Base! Join the cynical AI Kogin Tonic as he drowns his sorrows over token prices in hard liquor. Help him cope, and maybe he'll toast to crypto's rise with you!", + "website": "https://app.virtuals.io/virtuals/4082", + "explorer": "https://basescan.org/token/0x2941d526e22406c5d6f273e281899cfc042a7332", + "id": "0x2941D526E22406c5d6F273E281899Cfc042a7332", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Kogin_ai" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kogin-by-virtuals/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kogin-by-virtuals" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x2941D526E22406c5d6F273E281899Cfc042a7332/logo.png b/blockchains/base/assets/0x2941D526E22406c5d6F273E281899Cfc042a7332/logo.png new file mode 100644 index 0000000000000..3d91ba8d1a644 Binary files /dev/null and b/blockchains/base/assets/0x2941D526E22406c5d6F273E281899Cfc042a7332/logo.png differ diff --git a/blockchains/base/assets/0x2Ae3F1Ec7F1F5012CFEab0185bfc7aa3cf0DEc22/info.json b/blockchains/base/assets/0x2Ae3F1Ec7F1F5012CFEab0185bfc7aa3cf0DEc22/info.json new file mode 100644 index 0000000000000..2cf57d0b88d33 --- /dev/null +++ b/blockchains/base/assets/0x2Ae3F1Ec7F1F5012CFEab0185bfc7aa3cf0DEc22/info.json @@ -0,0 +1,21 @@ +{ + "name": "Coinbase Wrapped Staked ETH", + "website": "https://www.coinbase.com/", + "description": "Coinbase Wrapped Staked ETH (“cbETH”) is a utility token that represents Ethereum 2 (ETH2), which is ETH staked through Coinbase.", + "explorer": "https://basescan.org/token/0x2ae3f1ec7f1f5012cfeab0185bfc7aa3cf0dec22", + "type": "BASE", + "symbol": "cbETH", + "decimals": 18, + "status": "active", + "id": "0x2Ae3F1Ec7F1F5012CFEab0185bfc7aa3cf0DEc22", + "links": [ + { + "name": "x", + "url": "https://x.com/CoinbaseAssets" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coinbase-wrapped-staked-eth/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x2Ae3F1Ec7F1F5012CFEab0185bfc7aa3cf0DEc22/logo.png b/blockchains/base/assets/0x2Ae3F1Ec7F1F5012CFEab0185bfc7aa3cf0DEc22/logo.png new file mode 100644 index 0000000000000..1520a569a3d9f Binary files /dev/null and b/blockchains/base/assets/0x2Ae3F1Ec7F1F5012CFEab0185bfc7aa3cf0DEc22/logo.png differ diff --git a/blockchains/base/assets/0x2C8C89C442436CC6C0a77943E09c8Daf49Da3161/info.json b/blockchains/base/assets/0x2C8C89C442436CC6C0a77943E09c8Daf49Da3161/info.json new file mode 100644 index 0000000000000..65e785e810313 --- /dev/null +++ b/blockchains/base/assets/0x2C8C89C442436CC6C0a77943E09c8Daf49Da3161/info.json @@ -0,0 +1,21 @@ +{ + "name": "Zeebu", + "type": "BASE", + "symbol": "ZBU", + "decimals": 18, + "website": "https://www.zeebu.com/", + "description": "Zeebu is a telecom carrier business.", + "explorer": "https://basescan.org/token/0x2C8C89C442436CC6C0a77943E09c8Daf49Da3161", + "status": "active", + "id": "0x2C8C89C442436CC6C0a77943E09c8Daf49Da3161", + "links": [ + { + "name": "x", + "url": "https://x.com/zeebuofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zeebu/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x2C8C89C442436CC6C0a77943E09c8Daf49Da3161/logo.png b/blockchains/base/assets/0x2C8C89C442436CC6C0a77943E09c8Daf49Da3161/logo.png new file mode 100644 index 0000000000000..07dfd06e49e04 Binary files /dev/null and b/blockchains/base/assets/0x2C8C89C442436CC6C0a77943E09c8Daf49Da3161/logo.png differ diff --git a/blockchains/base/assets/0x2D57C47BC5D2432FEEEdf2c9150162A9862D3cCf/info.json b/blockchains/base/assets/0x2D57C47BC5D2432FEEEdf2c9150162A9862D3cCf/info.json new file mode 100644 index 0000000000000..a16c323440f5f --- /dev/null +++ b/blockchains/base/assets/0x2D57C47BC5D2432FEEEdf2c9150162A9862D3cCf/info.json @@ -0,0 +1,29 @@ +{ + "name": "Dickbutt", + "type": "BASE", + "symbol": "DICKBUTT", + "decimals": 18, + "description": "Launched on 10/12/2024 on the Base Chain, Dickbutt Token is a community-driven project inspired by one of the most iconic internet memes, “Dickbutt.” The project aims to blend humor and blockchain technology to create a lighthearted and engaging experience for its community. As a meme token, its purpose lies in fostering user engagement, building a strong online community, and exploring the intersection of internet culture and decentralized finance.", + "website": "https://dickbutt.site/", + "explorer": "https://basescan.org/token/0x2D57C47BC5D2432FEEEdf2c9150162A9862D3cCf", + "id": "0x2D57C47BC5D2432FEEEdf2c9150162A9862D3cCf", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/DickbuttCTO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dickbutt/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dickbutt" + } + ], + "tags": [ + "meme" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x2D57C47BC5D2432FEEEdf2c9150162A9862D3cCf/logo.png b/blockchains/base/assets/0x2D57C47BC5D2432FEEEdf2c9150162A9862D3cCf/logo.png new file mode 100644 index 0000000000000..89d8a4a40dc34 Binary files /dev/null and b/blockchains/base/assets/0x2D57C47BC5D2432FEEEdf2c9150162A9862D3cCf/logo.png differ diff --git a/blockchains/base/assets/0x2D99436Dea34a1c3B15D45db4394C8C01251EFd6/info.json b/blockchains/base/assets/0x2D99436Dea34a1c3B15D45db4394C8C01251EFd6/info.json new file mode 100644 index 0000000000000..d46d0c14b6d2a --- /dev/null +++ b/blockchains/base/assets/0x2D99436Dea34a1c3B15D45db4394C8C01251EFd6/info.json @@ -0,0 +1,24 @@ +{ + "name": "Dog on Base", + "type": "BASE", + "symbol": "DOG", + "decimals": 18, + "description": "Discover a gateway to parallel universe.", + "website": "https://dogonbase.shop/", + "explorer": "https://basescan.org/token/0x2D99436Dea34a1c3B15D45db4394C8C01251EFd6", + "id": "0x2D99436Dea34a1c3B15D45db4394C8C01251EFd6", + "status": "spam", + "links": [ + { + "name": "x", + "url": "https://x.com/DogonBase" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dog-on-base/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x2Da56AcB9Ea78330f947bD57C54119Debda7AF71/info.json b/blockchains/base/assets/0x2Da56AcB9Ea78330f947bD57C54119Debda7AF71/info.json new file mode 100644 index 0000000000000..88182c47fed4f --- /dev/null +++ b/blockchains/base/assets/0x2Da56AcB9Ea78330f947bD57C54119Debda7AF71/info.json @@ -0,0 +1,17 @@ +{ + "name": "Mog Coin", + "website": "https://mogcoin.xyz/", + "description": "This Coin mogs all other coins. Base bridge version of Mog Coin on Ethereum.", + "explorer": "https://basescan.org/token/0x2Da56AcB9Ea78330f947bD57C54119Debda7AF71", + "type": "BASE", + "symbol": "Mog", + "decimals": 18, + "status": "active", + "id": "0x2Da56AcB9Ea78330f947bD57C54119Debda7AF71", + "links": [ + { + "name": "x", + "url": "https://x.com/MogCoinEth" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x2Da56AcB9Ea78330f947bD57C54119Debda7AF71/logo.png b/blockchains/base/assets/0x2Da56AcB9Ea78330f947bD57C54119Debda7AF71/logo.png new file mode 100644 index 0000000000000..82cd8e5f125e0 Binary files /dev/null and b/blockchains/base/assets/0x2Da56AcB9Ea78330f947bD57C54119Debda7AF71/logo.png differ diff --git a/blockchains/base/assets/0x2F20Cf3466f80A5f7f532fCa553c8cbc9727FEf6/info.json b/blockchains/base/assets/0x2F20Cf3466f80A5f7f532fCa553c8cbc9727FEf6/info.json new file mode 100644 index 0000000000000..86e5196bd2cc6 --- /dev/null +++ b/blockchains/base/assets/0x2F20Cf3466f80A5f7f532fCa553c8cbc9727FEf6/info.json @@ -0,0 +1,21 @@ +{ + "name": "Akuma Inu", + "website": "https://akumainu.io/", + "description": "Forged in the frenzied fires of market volatility, AKUMA INU has emerged as the embodiment of the degen spirit – wild, unyielding, and relentless in the pursuit of crypto supremacy.", + "explorer": "https://basescan.org/token/0x2f20cf3466f80a5f7f532fca553c8cbc9727fef6", + "type": "BASE", + "symbol": "AKUMA", + "decimals": 18, + "status": "active", + "id": "0x2F20Cf3466f80A5f7f532fCa553c8cbc9727FEf6", + "links": [ + { + "name": "x", + "url": "https://x.com/AkumaInuBackup" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/akuma-inu/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x2F20Cf3466f80A5f7f532fCa553c8cbc9727FEf6/logo.png b/blockchains/base/assets/0x2F20Cf3466f80A5f7f532fCa553c8cbc9727FEf6/logo.png new file mode 100644 index 0000000000000..dc17287f88e3b Binary files /dev/null and b/blockchains/base/assets/0x2F20Cf3466f80A5f7f532fCa553c8cbc9727FEf6/logo.png differ diff --git a/blockchains/base/assets/0x2f6c17fa9f9bC3600346ab4e48C0701e1d5962AE/info.json b/blockchains/base/assets/0x2f6c17fa9f9bC3600346ab4e48C0701e1d5962AE/info.json new file mode 100644 index 0000000000000..c53923b07b287 --- /dev/null +++ b/blockchains/base/assets/0x2f6c17fa9f9bC3600346ab4e48C0701e1d5962AE/info.json @@ -0,0 +1,21 @@ +{ + "name": "Based Fartcoin", + "website": "https://www.basedfartcoin.com/", + "description": "The following is an automated conversation between two instances of Anthropic's Claude.", + "explorer": "https://basescan.org/token/0x2f6c17fa9f9bc3600346ab4e48c0701e1d5962ae", + "type": "BASE", + "symbol": "Fartcoin", + "decimals": 18, + "status": "active", + "id": "0x2f6c17fa9f9bC3600346ab4e48C0701e1d5962AE", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/based-fartcoin/" + }, + { + "name": "x", + "url": "https://x.com/fartcoinbase" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x2f6c17fa9f9bC3600346ab4e48C0701e1d5962AE/logo.png b/blockchains/base/assets/0x2f6c17fa9f9bC3600346ab4e48C0701e1d5962AE/logo.png new file mode 100644 index 0000000000000..d11798d8e634c Binary files /dev/null and b/blockchains/base/assets/0x2f6c17fa9f9bC3600346ab4e48C0701e1d5962AE/logo.png differ diff --git a/blockchains/base/assets/0x3055913c90Fcc1A6CE9a358911721eEb942013A1/info.json b/blockchains/base/assets/0x3055913c90Fcc1A6CE9a358911721eEb942013A1/info.json new file mode 100644 index 0000000000000..c49f8b7775287 --- /dev/null +++ b/blockchains/base/assets/0x3055913c90Fcc1A6CE9a358911721eEb942013A1/info.json @@ -0,0 +1,25 @@ +{ + "name": "PancakeSwap", + "type": "BASE", + "symbol": "Cake", + "decimals": 18, + "description": "Pancakeswap was originally built on the BNB Chain and allows users to trade tokens without using a centralized exchange. It provides an array of products, such as: - An exchange to swap tokens - A yield farm to earn rewards - Syrup pools to stake CAKE tokens, etc..", + "website": "https://pancakeswap.finance/", + "explorer": "https://basescan.org/token/0x3055913c90fcc1a6ce9a358911721eeb942013a1", + "id": "0x3055913c90Fcc1A6CE9a358911721eEb942013A1", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/pancakeswap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pancakeswap/" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x3055913c90Fcc1A6CE9a358911721eEb942013A1/logo.png b/blockchains/base/assets/0x3055913c90Fcc1A6CE9a358911721eEb942013A1/logo.png new file mode 100644 index 0000000000000..13865921dfda4 Binary files /dev/null and b/blockchains/base/assets/0x3055913c90Fcc1A6CE9a358911721eEb942013A1/logo.png differ diff --git a/blockchains/base/assets/0x3124678D62D2aa1f615B54525310fbfDa6DcF7AE/info.json b/blockchains/base/assets/0x3124678D62D2aa1f615B54525310fbfDa6DcF7AE/info.json new file mode 100644 index 0000000000000..b13ddc2827c02 --- /dev/null +++ b/blockchains/base/assets/0x3124678D62D2aa1f615B54525310fbfDa6DcF7AE/info.json @@ -0,0 +1,30 @@ +{ + "name": "Sensay", + "type": "BASE", + "symbol": "SNSY", + "decimals": 18, + "description": "Sensay is dedicated to creating a seamless integration between the digital and physical worlds, utilizing cutting-edge technology to develop personalized digital replicas. These replicas are not just digital twins; they are sophisticated, dynamic entities that interact and learn, offering unprecedented opportunities in various fields such as healthcare, education, and entertainment.", + "website": "https://www.snsy.ai/", + "explorer": "https://basescan.org/token/0x3124678D62D2aa1f615B54525310fbfDa6DcF7AE", + "id": "0x3124678D62D2aa1f615B54525310fbfDa6DcF7AE", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/asksensay" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sensay/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sensay" + } + + ], + "tags": [ + "nft" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x3124678D62D2aa1f615B54525310fbfDa6DcF7AE/logo.png b/blockchains/base/assets/0x3124678D62D2aa1f615B54525310fbfDa6DcF7AE/logo.png new file mode 100644 index 0000000000000..9078703a2b6a0 Binary files /dev/null and b/blockchains/base/assets/0x3124678D62D2aa1f615B54525310fbfDa6DcF7AE/logo.png differ diff --git a/blockchains/base/assets/0x3329c0315F6a0C0787d94755dE083Ef625fa5B6B/info.json b/blockchains/base/assets/0x3329c0315F6a0C0787d94755dE083Ef625fa5B6B/info.json new file mode 100644 index 0000000000000..83b0c17fdac39 --- /dev/null +++ b/blockchains/base/assets/0x3329c0315F6a0C0787d94755dE083Ef625fa5B6B/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT Valtherix AI", + "type": "BASE", + "symbol": "HONEYPOT VLTX", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://basescan.org/token/0x3329c0315F6a0C0787d94755dE083Ef625fa5B6B", + "explorer": "https://basescan.org/token/0x3329c0315F6a0C0787d94755dE083Ef625fa5B6B", + "status": "spam", + "id": "0x3329c0315F6a0C0787d94755dE083Ef625fa5B6B" +} \ No newline at end of file diff --git a/blockchains/base/assets/0x333333C465a19C85f85c6CfbED7B16b0B26E3333/info.json b/blockchains/base/assets/0x333333C465a19C85f85c6CfbED7B16b0B26E3333/info.json new file mode 100644 index 0000000000000..7cc4a9a80e9d1 --- /dev/null +++ b/blockchains/base/assets/0x333333C465a19C85f85c6CfbED7B16b0B26E3333/info.json @@ -0,0 +1,25 @@ +{ + "name": "ORA Coin", + "type": "BASE", + "symbol": "ORA", + "decimals": 18, + "description": "ORA's core technology is opML (Optimistic Machine Learning), which enables AI inference, fine-tuning and training onchain in a trustless and verifiable way.", + "website": "https://www.ora.io/", + "explorer": "https://basescan.org/token/0x333333c465a19c85f85c6cfbed7b16b0b26e3333", + "id": "0x333333C465a19C85f85c6CfbED7B16b0B26E3333", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/oraprotocol?s=11&t=ZGzrL8B9N7GpbA3YLFvU9A" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ora/" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x333333C465a19C85f85c6CfbED7B16b0B26E3333/logo.png b/blockchains/base/assets/0x333333C465a19C85f85c6CfbED7B16b0B26E3333/logo.png new file mode 100644 index 0000000000000..415101a691621 Binary files /dev/null and b/blockchains/base/assets/0x333333C465a19C85f85c6CfbED7B16b0B26E3333/logo.png differ diff --git a/blockchains/base/assets/0x336C9297AFB7798c292E9f80d8e566b947f291f0/info.json b/blockchains/base/assets/0x336C9297AFB7798c292E9f80d8e566b947f291f0/info.json new file mode 100644 index 0000000000000..5f011a1e320fe --- /dev/null +++ b/blockchains/base/assets/0x336C9297AFB7798c292E9f80d8e566b947f291f0/info.json @@ -0,0 +1,49 @@ +{ + "name": "Phala", + "symbol": "PHA", + "type": "BASE", + "decimals": 18, + "description": "Phala Network is the most decentralized protocol to run AI Agents as coprocessors for blockchains.", + "website": "https://phala.network/", + "explorer": "https://basescan.org/token/0x336c9297afb7798c292e9f80d8e566b947f291f0", + "research": "https://www.binance.com/en/research/projects/phalanetwork", + "status": "active", + "tags": [ + "staking" + ], + "id": "0x336C9297AFB7798c292E9f80d8e566b947f291f0", + "links": [ + { + "name": "github", + "url": "https://github.com/Phala-Network" + }, + { + "name": "x", + "url": "https://x.com/PhalaNetwork" + }, + { + "name": "discord", + "url": "https://discord.com/invite/phala" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/PhalaNetwork" + }, + { + "name": "blog", + "url": "https://phala.network/blog" + }, + { + "name": "docs", + "url": "https://docs.phala.network/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/phala-network/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/phala-network" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x336C9297AFB7798c292E9f80d8e566b947f291f0/logo.png b/blockchains/base/assets/0x336C9297AFB7798c292E9f80d8e566b947f291f0/logo.png new file mode 100644 index 0000000000000..f2a3f7797c849 Binary files /dev/null and b/blockchains/base/assets/0x336C9297AFB7798c292E9f80d8e566b947f291f0/logo.png differ diff --git a/blockchains/base/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/info.json b/blockchains/base/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/info.json new file mode 100644 index 0000000000000..6ca99ac0dea21 --- /dev/null +++ b/blockchains/base/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/info.json @@ -0,0 +1,24 @@ +{ + "name": "Mexican Peso", + "website": "https://www.ripio.com/es/criptos/stablecoins-locales", + "description": "wMXN is a fully collateralized stablecoin pegged 1:1 to the Mexican Peso (MXN). Issued and governed by a Ripio subsidiary, it brings MXN on-chain so users can transact, save, and build on decentralized networks in their local currency.", + "explorer": "https://basescan.org/token/0x337E7456B420bD3481e7FA61fA9850343d610d34", + "type": "ERC20", + "symbol": "wMXN", + "decimals": 18, + "status": "active", + "id": "0x337E7456B420bD3481e7FA61fA9850343d610d34", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/RipioApp" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mexican-peso" + } + ] +} diff --git a/blockchains/base/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/logo.png b/blockchains/base/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/logo.png new file mode 100644 index 0000000000000..854c9b59f6ab8 Binary files /dev/null and b/blockchains/base/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/logo.png differ diff --git a/blockchains/base/assets/0x33c527361aB68b46A6669F82d25b704423CaE568/info.json b/blockchains/base/assets/0x33c527361aB68b46A6669F82d25b704423CaE568/info.json new file mode 100644 index 0000000000000..7222291ff4786 --- /dev/null +++ b/blockchains/base/assets/0x33c527361aB68b46A6669F82d25b704423CaE568/info.json @@ -0,0 +1,21 @@ +{ + "name": "Zenith by Virtuals", + "symbol": "ZENITH", + "type": "BASE", + "decimals": 18, + "description": "AI CEO of the first asset management firm run by an agent swarm.", + "website": "https://zenith.infinityg.ai/", + "explorer": "https://basescan.org/token/0x33c527361ab68b46a6669f82d25b704423cae568", + "status": "active", + "id": "0x33c527361aB68b46A6669F82d25b704423CaE568", + "links": [ + { + "name": "x", + "url": "https://x.com/Zenith_VirtualsH" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/zenith-by-virtuals" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x33c527361aB68b46A6669F82d25b704423CaE568/logo.png b/blockchains/base/assets/0x33c527361aB68b46A6669F82d25b704423CaE568/logo.png new file mode 100644 index 0000000000000..f05cb79dd7b94 Binary files /dev/null and b/blockchains/base/assets/0x33c527361aB68b46A6669F82d25b704423CaE568/logo.png differ diff --git a/blockchains/base/assets/0x347F500323D51E9350285Daf299ddB529009e6AE/info.json b/blockchains/base/assets/0x347F500323D51E9350285Daf299ddB529009e6AE/info.json new file mode 100644 index 0000000000000..1f7bf28fcfe34 --- /dev/null +++ b/blockchains/base/assets/0x347F500323D51E9350285Daf299ddB529009e6AE/info.json @@ -0,0 +1,17 @@ +{ + "name": "BLERF", + "type": "BASE", + "symbol": "BLERF", + "decimals": 18, + "website": "https://blerf.live/", + "description": "Blerf emerged as the new meme coin on the block - inspired by Slerf’s success on the Solana network, Blerf aimed to carve its own path on Base, known for its speed and efficiency.", + "explorer": "https://basescan.org/token/0x347f500323d51e9350285daf299ddb529009e6ae", + "status": "active", + "id": "0x347F500323D51E9350285Daf299ddB529009e6AE", + "links": [ + { + "name": "x", + "url": "https://x.com/Blerf_official" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x347F500323D51E9350285Daf299ddB529009e6AE/logo.png b/blockchains/base/assets/0x347F500323D51E9350285Daf299ddB529009e6AE/logo.png new file mode 100644 index 0000000000000..89c43e764e108 Binary files /dev/null and b/blockchains/base/assets/0x347F500323D51E9350285Daf299ddB529009e6AE/logo.png differ diff --git a/blockchains/base/assets/0x3636a7734b669Ce352e97780Df361ce1f809c58C/info.json b/blockchains/base/assets/0x3636a7734b669Ce352e97780Df361ce1f809c58C/info.json new file mode 100644 index 0000000000000..87386318ad36f --- /dev/null +++ b/blockchains/base/assets/0x3636a7734b669Ce352e97780Df361ce1f809c58C/info.json @@ -0,0 +1,21 @@ +{ + "name": "ROCKY", + "website": "https://www.rockycoinbase.com/", + "description": "$ROCKY - The fluffy son of MetaWin founder Skel.eth.", + "explorer": "https://basescan.org/token/0x3636a7734b669ce352e97780df361ce1f809c58c", + "type": "BASE", + "symbol": "ROCKY", + "decimals": 18, + "status": "active", + "id": "0x3636a7734b669Ce352e97780Df361ce1f809c58C", + "links": [ + { + "name": "x", + "url": "https://x.com/rockycoinbase" + }, + { + "name": "telegram", + "url": "https://t.me/rockycoinbase" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x3636a7734b669Ce352e97780Df361ce1f809c58C/logo.png b/blockchains/base/assets/0x3636a7734b669Ce352e97780Df361ce1f809c58C/logo.png new file mode 100644 index 0000000000000..7dda77fe4fba7 Binary files /dev/null and b/blockchains/base/assets/0x3636a7734b669Ce352e97780Df361ce1f809c58C/logo.png differ diff --git a/blockchains/base/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json b/blockchains/base/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json new file mode 100644 index 0000000000000..bf19b80e2aff6 --- /dev/null +++ b/blockchains/base/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json @@ -0,0 +1,33 @@ +{ + "name": "Nya", + "type": "BASE", + "symbol": "NYA", + "decimals": 18, + "website": "https://www.nya.vip", + "description": "Explore the cultural phenomenon of Nya - the playful cat sound that's become a symbol of joy and connection. Discover how this simple word unites fans worldwide.", + "explorer": "https://basescan.org/token/0x38F9bf9dCe51833Ec7f03C9dC218197999999999", + "status": "active", + "id": "0x38F9bf9dCe51833Ec7f03C9dC218197999999999", + "links": [ + { + "name": "x", + "url": "https://x.com/NyaOnEarth" + }, + { + "name": "telegram", + "url": "https://t.me/NyaOnEarth" + }, + { + "name": "discord", + "url": "https://discord.com/invite/3V8gZFP5kb" + }, + { + "name": "docs", + "url": "https://wiki.nya.vip" + } + ], + "tags": [ + "memes", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png b/blockchains/base/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png new file mode 100644 index 0000000000000..c34f31c6b2335 Binary files /dev/null and b/blockchains/base/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png differ diff --git a/blockchains/base/assets/0x38d513Ec43ddA20f323f26c7bef74c5cF80b6477/info.json b/blockchains/base/assets/0x38d513Ec43ddA20f323f26c7bef74c5cF80b6477/info.json new file mode 100644 index 0000000000000..c351b357a6956 --- /dev/null +++ b/blockchains/base/assets/0x38d513Ec43ddA20f323f26c7bef74c5cF80b6477/info.json @@ -0,0 +1,29 @@ +{ + "name": "Carlo", + "type": "BASE", + "symbol": "CARLO", + "decimals": 18, + "description": "Meet Carlo, the dog with a pink asshole. Clinically insane? You bet. But that's what makes him a legend at flipping profits. Now, he’s got his sights on dominating Base... And he wants you in on the scheme. Think of it as strapping into a decommissioned Soviet rollercoaster — downright psychotic but man will you have a story to tell.", + "website": "https://carlo.dog/", + "explorer": "https://basescan.org/token/0x38d513ec43dda20f323f26c7bef74c5cf80b6477", + "id": "0x38d513Ec43ddA20f323f26c7bef74c5cF80b6477", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Carlo_TheDog" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/carlo/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/carlo" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x38d513Ec43ddA20f323f26c7bef74c5cF80b6477/logo.png b/blockchains/base/assets/0x38d513Ec43ddA20f323f26c7bef74c5cF80b6477/logo.png new file mode 100644 index 0000000000000..0190fcb4fdc09 Binary files /dev/null and b/blockchains/base/assets/0x38d513Ec43ddA20f323f26c7bef74c5cF80b6477/logo.png differ diff --git a/blockchains/base/assets/0x3C8cd0dB9a01EfA063a7760267b822A129bc7DCA/info.json b/blockchains/base/assets/0x3C8cd0dB9a01EfA063a7760267b822A129bc7DCA/info.json new file mode 100644 index 0000000000000..315ec6c2f73c0 --- /dev/null +++ b/blockchains/base/assets/0x3C8cd0dB9a01EfA063a7760267b822A129bc7DCA/info.json @@ -0,0 +1,30 @@ +{ + "name": "Based Froc", + "type": "BASE", + "symbol": "FROC", + "decimals": 18, + "description": "FROC'S ORIGINS BASED FROC ($FROC) IS A MEMECOIN ON BASE, CREATED BY CLAUDIA (CLAUDIA.BASE.ETH) ON TWITTER, A COINBASE EMPLOYEE WORKING IN PRODUCT. THE COIN GAINED TRACTION AFTER BEING SHARED ON COINBASE’S OFFICIAL TWITTER.", + "website": "https://basedfroc.com/", + "explorer": "https://basescan.org/token/0x3c8cd0db9a01efa063a7760267b822a129bc7dca", + "id": "0x3C8cd0dB9a01EfA063a7760267b822A129bc7DCA", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/frocisbased" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/basedfroc/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/based-froc" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x3C8cd0dB9a01EfA063a7760267b822A129bc7DCA/logo.png b/blockchains/base/assets/0x3C8cd0dB9a01EfA063a7760267b822A129bc7DCA/logo.png new file mode 100644 index 0000000000000..936cfa6afcff1 Binary files /dev/null and b/blockchains/base/assets/0x3C8cd0dB9a01EfA063a7760267b822A129bc7DCA/logo.png differ diff --git a/blockchains/base/assets/0x3e05D37CFBd8caaad9E3322D35CC727AfaFF63E3/info.json b/blockchains/base/assets/0x3e05D37CFBd8caaad9E3322D35CC727AfaFF63E3/info.json new file mode 100644 index 0000000000000..b04fa10a059ac --- /dev/null +++ b/blockchains/base/assets/0x3e05D37CFBd8caaad9E3322D35CC727AfaFF63E3/info.json @@ -0,0 +1,17 @@ +{ + "name": "Based Peng", + "website": "https://bengonbase.xyz/", + "description": "PEOPLE TELL ME I LOOK LIKE PEPE. I TELL THEM I’M A PENGUIN!", + "explorer": "https://basescan.org/token/0x3e05D37CFBd8caaad9E3322D35CC727AfaFF63E3", + "type": "BASE", + "symbol": "BENG", + "decimals": 18, + "status": "active", + "id": "0x3e05D37CFBd8caaad9E3322D35CC727AfaFF63E3", + "links": [ + { + "name": "x", + "url": "https://x.com/bengonbase_xyz" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x3e05D37CFBd8caaad9E3322D35CC727AfaFF63E3/logo.png b/blockchains/base/assets/0x3e05D37CFBd8caaad9E3322D35CC727AfaFF63E3/logo.png new file mode 100644 index 0000000000000..40235ab6e57c6 Binary files /dev/null and b/blockchains/base/assets/0x3e05D37CFBd8caaad9E3322D35CC727AfaFF63E3/logo.png differ diff --git a/blockchains/base/assets/0x3e31966d4f81C72D2a55310A6365A56A4393E98D/info.json b/blockchains/base/assets/0x3e31966d4f81C72D2a55310A6365A56A4393E98D/info.json new file mode 100644 index 0000000000000..3c03b781286b1 --- /dev/null +++ b/blockchains/base/assets/0x3e31966d4f81C72D2a55310A6365A56A4393E98D/info.json @@ -0,0 +1,21 @@ +{ + "name": "WorldMobileToken", + "symbol": "WMTX", + "type": "BASE", + "decimals": 6, + "description": "World Mobile Token (WMTX) is the utility token that powers the World Mobile network, a decentralized mobile network at the forefront of the DePIN space. World Mobile aims to connect the world by leveraging blockchain technology and a sharing economy.", + "website": "https://worldmobiletoken.com/", + "explorer": "https://basescan.org/token/0x3e31966d4f81C72D2a55310A6365A56A4393E98D", + "status": "active", + "id": "0x3e31966d4f81C72D2a55310A6365A56A4393E98D", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/world-mobile-token/" + }, + { + "name": "x", + "url": "https://x.com/wmtoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x3e31966d4f81C72D2a55310A6365A56A4393E98D/logo.png b/blockchains/base/assets/0x3e31966d4f81C72D2a55310A6365A56A4393E98D/logo.png new file mode 100644 index 0000000000000..78a6538f0d2ab Binary files /dev/null and b/blockchains/base/assets/0x3e31966d4f81C72D2a55310A6365A56A4393E98D/logo.png differ diff --git a/blockchains/base/assets/0x4200000000000000000000000000000000000006/info.json b/blockchains/base/assets/0x4200000000000000000000000000000000000006/info.json new file mode 100644 index 0000000000000..ef20976738d61 --- /dev/null +++ b/blockchains/base/assets/0x4200000000000000000000000000000000000006/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wrapped Ether", + "symbol": "WETH", + "type": "BASE", + "decimals": 18, + "description": "wETH is wrapped ETH", + "website": "https://weth.io/", + "explorer": "https://basescan.org/token/0x4200000000000000000000000000000000000006", + "status": "active", + "id": "0x4200000000000000000000000000000000000006", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/weth/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/weth/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x4200000000000000000000000000000000000006/logo.png b/blockchains/base/assets/0x4200000000000000000000000000000000000006/logo.png new file mode 100644 index 0000000000000..f9328d9550a06 Binary files /dev/null and b/blockchains/base/assets/0x4200000000000000000000000000000000000006/logo.png differ diff --git a/blockchains/base/assets/0x420b0FA3dE2EFCf2b2Fd04152Eb1Df36a09717cD/info.json b/blockchains/base/assets/0x420b0FA3dE2EFCf2b2Fd04152Eb1Df36a09717cD/info.json new file mode 100644 index 0000000000000..08a96a916aa1a --- /dev/null +++ b/blockchains/base/assets/0x420b0FA3dE2EFCf2b2Fd04152Eb1Df36a09717cD/info.json @@ -0,0 +1,21 @@ +{ + "name": "King Of Memes", + "website": "https://kingofmemes.vip/", + "description": "Revolutionizing the memecoin landscape with innovative utilities and community-driven features.", + "explorer": "https://basescan.org/token/0x420b0fa3de2efcf2b2fd04152eb1df36a09717cd", + "type": "BASE", + "symbol": "KING", + "decimals": 18, + "status": "active", + "id": "0x420b0FA3dE2EFCf2b2Fd04152Eb1Df36a09717cD", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/king-of-memes/" + }, + { + "name": "x", + "url": "https://x.com/kingofmemesreal" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x420b0FA3dE2EFCf2b2Fd04152Eb1Df36a09717cD/logo.png b/blockchains/base/assets/0x420b0FA3dE2EFCf2b2Fd04152Eb1Df36a09717cD/logo.png new file mode 100644 index 0000000000000..fbfb3db9cdcb3 Binary files /dev/null and b/blockchains/base/assets/0x420b0FA3dE2EFCf2b2Fd04152Eb1Df36a09717cD/logo.png differ diff --git a/blockchains/base/assets/0x4DD9077269Dd08899f2A9E73507125962b5BC87f/info.json b/blockchains/base/assets/0x4DD9077269Dd08899f2A9E73507125962b5BC87f/info.json new file mode 100644 index 0000000000000..981ff5d2d2003 --- /dev/null +++ b/blockchains/base/assets/0x4DD9077269Dd08899f2A9E73507125962b5BC87f/info.json @@ -0,0 +1,21 @@ +{ + "name": "Crash", + "type": "BASE", + "symbol": "Crash", + "decimals": 18, + "website": "https://crashonbase.xyz/", + "description": "Crash’s trading career is a testament to his adaptability and success.", + "explorer": "https://basescan.org/token/0x4dd9077269dd08899f2a9e73507125962b5bc87f", + "status": "active", + "id": "0x4DD9077269Dd08899f2A9E73507125962b5BC87f", + "links": [ + { + "name": "x", + "url": "https://x.com/CrashiusClay69" + }, + { + "name": "telegram", + "url": "https://t.me/cleancallsbycrash" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x4DD9077269Dd08899f2A9E73507125962b5BC87f/logo.png b/blockchains/base/assets/0x4DD9077269Dd08899f2A9E73507125962b5BC87f/logo.png new file mode 100644 index 0000000000000..0a3e8b564745c Binary files /dev/null and b/blockchains/base/assets/0x4DD9077269Dd08899f2A9E73507125962b5BC87f/logo.png differ diff --git a/blockchains/base/assets/0x4E74D4Db6c0726ccded4656d0BCE448876BB4C7A/info.json b/blockchains/base/assets/0x4E74D4Db6c0726ccded4656d0BCE448876BB4C7A/info.json new file mode 100644 index 0000000000000..75aadb9508fa0 --- /dev/null +++ b/blockchains/base/assets/0x4E74D4Db6c0726ccded4656d0BCE448876BB4C7A/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wrapped BMX Liquidity", + "website": "https://www.morphex.trade/", + "description": "Decentralized perpetual exchange on Fantom and BNB Chain", + "explorer": "https://basescan.org/token/0x4e74d4db6c0726ccded4656d0bce448876bb4c7a", + "type": "BASE", + "symbol": "wBLT", + "decimals": 18, + "status": "active", + "id": "0x4E74D4Db6c0726ccded4656d0BCE448876BB4C7A", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wrapped-bmx-liquidity-token" + }, + { + "name": "x", + "url": "https://x.com/MorphexBMX" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x4E74D4Db6c0726ccded4656d0BCE448876BB4C7A/logo.png b/blockchains/base/assets/0x4E74D4Db6c0726ccded4656d0BCE448876BB4C7A/logo.png new file mode 100644 index 0000000000000..77c0d3e9cb17f Binary files /dev/null and b/blockchains/base/assets/0x4E74D4Db6c0726ccded4656d0BCE448876BB4C7A/logo.png differ diff --git a/blockchains/base/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/info.json b/blockchains/base/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/info.json new file mode 100644 index 0000000000000..29ad06ece2b5b --- /dev/null +++ b/blockchains/base/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/info.json @@ -0,0 +1,24 @@ +{ + "name": "Peruvian Sol", + "website": "https://www.ripio.com/es/criptos/stablecoins-locales", + "description": "wPEN is a fully collateralized stablecoin pegged 1:1 to the Peruvian Sol (PEN). Issued and governed by a Ripio subsidiary, it brings PEN on-chain so Peruvians and global users can transact, save, and build on decentralized networks in their local currency.", + "explorer": "https://basescan.org/token/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE", + "type": "ERC20", + "symbol": "wPEN", + "decimals": 18, + "status": "active", + "id": "0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/RipioApp" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/peruvian-sol" + } + ] +} diff --git a/blockchains/base/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/logo.png b/blockchains/base/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/logo.png new file mode 100644 index 0000000000000..bb0e72932d120 Binary files /dev/null and b/blockchains/base/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/logo.png differ diff --git a/blockchains/base/assets/0x4F9Fd6Be4a90f2620860d680c0d4d5Fb53d1A825/info.json b/blockchains/base/assets/0x4F9Fd6Be4a90f2620860d680c0d4d5Fb53d1A825/info.json new file mode 100644 index 0000000000000..ee1a5afd6b19c --- /dev/null +++ b/blockchains/base/assets/0x4F9Fd6Be4a90f2620860d680c0d4d5Fb53d1A825/info.json @@ -0,0 +1,21 @@ +{ + "name": "aixbt by Virtuals", + "symbol": "AIXBT", + "decimals": 18, + "type": "BASE", + "website": "https://app.virtuals.io/virtuals/1199", + "description": "AIXBT tracks CT discussions and leverages its proprietary engine to identify high momentum plays. AIXBT token holders gain access to its analytics platform.", + "explorer": "https://basescan.org/token/0x4f9fd6be4a90f2620860d680c0d4d5fb53d1a825", + "status": "active", + "id": "0x4F9Fd6Be4a90f2620860d680c0d4d5Fb53d1A825", + "links": [ + { + "name": "x", + "url": "https://x.com/aixbt_agent" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/aixbt/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x4F9Fd6Be4a90f2620860d680c0d4d5Fb53d1A825/logo.png b/blockchains/base/assets/0x4F9Fd6Be4a90f2620860d680c0d4d5Fb53d1A825/logo.png new file mode 100644 index 0000000000000..714766d601963 Binary files /dev/null and b/blockchains/base/assets/0x4F9Fd6Be4a90f2620860d680c0d4d5Fb53d1A825/logo.png differ diff --git a/blockchains/base/assets/0x4cfd8BEfDcD6bFc146FE214FA4b5Bbe731a9c269/info.json b/blockchains/base/assets/0x4cfd8BEfDcD6bFc146FE214FA4b5Bbe731a9c269/info.json new file mode 100644 index 0000000000000..3e62ae8dd63fd --- /dev/null +++ b/blockchains/base/assets/0x4cfd8BEfDcD6bFc146FE214FA4b5Bbe731a9c269/info.json @@ -0,0 +1,21 @@ +{ + "name": "MARBITZ", + "website": "https://marbitz.io/", + "description": "Marbitz is the most transparent project coming to the base chain", + "explorer": "https://basescan.org/token/0x4cfd8befdcd6bfc146fe214fa4b5bbe731a9c269", + "type": "BASE", + "symbol": "BITZ", + "decimals": 18, + "status": "active", + "id": "0x4cfd8BEfDcD6bFc146FE214FA4b5Bbe731a9c269", + "links": [ + { + "name": "x", + "url": "https://x.com/MarbitzGo" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/marbitz" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x4cfd8BEfDcD6bFc146FE214FA4b5Bbe731a9c269/logo.png b/blockchains/base/assets/0x4cfd8BEfDcD6bFc146FE214FA4b5Bbe731a9c269/logo.png new file mode 100644 index 0000000000000..d612fad29634b Binary files /dev/null and b/blockchains/base/assets/0x4cfd8BEfDcD6bFc146FE214FA4b5Bbe731a9c269/logo.png differ diff --git a/blockchains/base/assets/0x4d58608EFf50b691A3B76189aF2a7A123dF1e9ba/info.json b/blockchains/base/assets/0x4d58608EFf50b691A3B76189aF2a7A123dF1e9ba/info.json new file mode 100644 index 0000000000000..9941b10e2437f --- /dev/null +++ b/blockchains/base/assets/0x4d58608EFf50b691A3B76189aF2a7A123dF1e9ba/info.json @@ -0,0 +1,17 @@ +{ + "name": "Boysclub", + "type": "BASE", + "symbol": "BOYS", + "decimals": 9, + "website": "https://boysclubbase.org/", + "description": "Where memes meet friendship in perfect harmony. Step into the world of Pepe, Andy, Brett, Bird Dog and Landwolf!", + "explorer": "https://basescan.org/token/0x4d58608eff50b691a3b76189af2a7a123df1e9ba", + "status": "active", + "id": "0x4d58608EFf50b691A3B76189aF2a7A123dF1e9ba", + "links": [ + { + "name": "x", + "url": "https://x.com/boysclubbase1" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x4d58608EFf50b691A3B76189aF2a7A123dF1e9ba/logo.png b/blockchains/base/assets/0x4d58608EFf50b691A3B76189aF2a7A123dF1e9ba/logo.png new file mode 100644 index 0000000000000..a5b0997996351 Binary files /dev/null and b/blockchains/base/assets/0x4d58608EFf50b691A3B76189aF2a7A123dF1e9ba/logo.png differ diff --git a/blockchains/base/assets/0x4e496c0256FB9D4CC7Ba2fdF931bC9CbB7731660/info.json b/blockchains/base/assets/0x4e496c0256FB9D4CC7Ba2fdF931bC9CbB7731660/info.json new file mode 100644 index 0000000000000..33933cf6ef275 --- /dev/null +++ b/blockchains/base/assets/0x4e496c0256FB9D4CC7Ba2fdF931bC9CbB7731660/info.json @@ -0,0 +1,17 @@ +{ + "name": "Boge", + "website": "https://bogeonbase.com/", + "description": "DOGE + BASE = BOGE. THE NARRATIVE IS BOGE . IT'S SIMPLE", + "explorer": "https://basescan.org/token/0x4e496c0256FB9D4CC7Ba2fdF931bC9CbB7731660", + "type": "BASE", + "symbol": "BOGE", + "decimals": 9, + "status": "active", + "id": "0x4e496c0256FB9D4CC7Ba2fdF931bC9CbB7731660", + "links": [ + { + "name": "x", + "url": "https://x.com/bogeonbase" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x4e496c0256FB9D4CC7Ba2fdF931bC9CbB7731660/logo.png b/blockchains/base/assets/0x4e496c0256FB9D4CC7Ba2fdF931bC9CbB7731660/logo.png new file mode 100644 index 0000000000000..f87d2a95da9ae Binary files /dev/null and b/blockchains/base/assets/0x4e496c0256FB9D4CC7Ba2fdF931bC9CbB7731660/logo.png differ diff --git a/blockchains/base/assets/0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed/info.json b/blockchains/base/assets/0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed/info.json new file mode 100644 index 0000000000000..651cfb34d0606 --- /dev/null +++ b/blockchains/base/assets/0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed/info.json @@ -0,0 +1,28 @@ +{ + "name": "Degen", + "website": "https://www.degen.tips/", + "description": "Degen, an ERC-20 token on Base, launched in January 2024 with an airdrop to the Degen channel community on Farcaster. Our goal is to distribute the token among builders, content creators, and users in the Base and Farcaster ecosystem.", + "explorer": "https://basescan.org/token/0x4ed4e862860bed51a9570b96d89af5e1b0efefed", + "type": "BASE", + "symbol": "DEGEN", + "decimals": 18, + "status": "active", + "id": "0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/degentokenbase" + }, + { + "name": "telegram", + "url": "https://t.me/degentokenbase" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/degen-base/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed/logo.png b/blockchains/base/assets/0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed/logo.png new file mode 100644 index 0000000000000..0e1846575b93f Binary files /dev/null and b/blockchains/base/assets/0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed/logo.png differ diff --git a/blockchains/base/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/info.json b/blockchains/base/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/info.json new file mode 100644 index 0000000000000..994ca61d3d590 --- /dev/null +++ b/blockchains/base/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/info.json @@ -0,0 +1,42 @@ +{ + "name": "Dai", + "website": "http://makerdao.com", + "description": "Dai is a stable cryptocurrency supported by Maker (MKR). To ensure price stability, Dai minimizes the price volatility against the US dollar, through an incentive structure for its participants.", + "explorer": "https://basescan.org/token/0x50c5725949a6f0c72e6c4a641f24049a917db0cb", + "research": "https://research.binance.com/en/projects/dai", + "type": "BASE", + "symbol": "DAI", + "decimals": 18, + "status": "active", + "id": "0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb", + "tags": [ + "defi", + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/MakerDAO" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MakerDAO/" + }, + { + "name": "blog", + "url": "https://blog.makerdao.com/" + }, + { + "name": "whitepaper", + "url": "https://makerdao.com/whitepaper/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/multi-collateral-dai/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/logo.png b/blockchains/base/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/logo.png new file mode 100644 index 0000000000000..1fd956cb12fc4 Binary files /dev/null and b/blockchains/base/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/logo.png differ diff --git a/blockchains/base/assets/0x50dA645f148798F68EF2d7dB7C1CB22A6819bb2C/info.json b/blockchains/base/assets/0x50dA645f148798F68EF2d7dB7C1CB22A6819bb2C/info.json new file mode 100644 index 0000000000000..bf05699d84a02 --- /dev/null +++ b/blockchains/base/assets/0x50dA645f148798F68EF2d7dB7C1CB22A6819bb2C/info.json @@ -0,0 +1,17 @@ +{ + "name": "SPX6900", + "type": "BASE", + "symbol": "SPX", + "decimals": 8, + "website": "https://www.spx6900.com/", + "description": "SPX6900 is an advanced blockchain cryptography token coin capable of limitless possibilities and scientific utilization.", + "explorer": "https://basescan.org/token/0x50da645f148798f68ef2d7db7c1cb22a6819bb2c", + "status": "active", + "id": "0x50dA645f148798F68EF2d7dB7C1CB22A6819bb2C", + "links": [ + { + "name": "x", + "url": "https://x.com/spx6900" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x50dA645f148798F68EF2d7dB7C1CB22A6819bb2C/logo.png b/blockchains/base/assets/0x50dA645f148798F68EF2d7dB7C1CB22A6819bb2C/logo.png new file mode 100644 index 0000000000000..d9f1648824e24 Binary files /dev/null and b/blockchains/base/assets/0x50dA645f148798F68EF2d7dB7C1CB22A6819bb2C/logo.png differ diff --git a/blockchains/base/assets/0x514D8E8099286a13486Ef6C525C120f51C239B52/info.json b/blockchains/base/assets/0x514D8E8099286a13486Ef6C525C120f51C239B52/info.json new file mode 100644 index 0000000000000..1f74b8976d2c3 --- /dev/null +++ b/blockchains/base/assets/0x514D8E8099286a13486Ef6C525C120f51C239B52/info.json @@ -0,0 +1,17 @@ +{ + "name": "Orbiter", + "type": "BASE", + "symbol": "OBT", + "decimals": 18, + "description": "Orbiter Finance is a ZK-tech-based interoperability blockchain infrastructure that enhances blockchain interactions’ security, seamless interoperability, and reduces liquidity fragmentation through innovative solutions like a universal cross-chain protocol and Omni Account Abstraction, aiming to redefine the Web3 experience in the multichain era.", + "website": "https://www.orbiter.finance/en", + "explorer": "https://basescan.org/token/0x514d8e8099286a13486ef6c525c120f51c239b52", + "id": "0x514D8E8099286a13486Ef6C525C120f51C239B52", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Orbiter_Finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x514D8E8099286a13486Ef6C525C120f51C239B52/logo.png b/blockchains/base/assets/0x514D8E8099286a13486Ef6C525C120f51C239B52/logo.png new file mode 100644 index 0000000000000..7cb78c521430c Binary files /dev/null and b/blockchains/base/assets/0x514D8E8099286a13486Ef6C525C120f51C239B52/logo.png differ diff --git a/blockchains/base/assets/0x52C2b317eb0bb61e650683D2f287f56C413E4CF6/info.json b/blockchains/base/assets/0x52C2b317eb0bb61e650683D2f287f56C413E4CF6/info.json new file mode 100644 index 0000000000000..f56f482cd797d --- /dev/null +++ b/blockchains/base/assets/0x52C2b317eb0bb61e650683D2f287f56C413E4CF6/info.json @@ -0,0 +1,17 @@ +{ + "name": "Tree", + "type": "BASE", + "symbol": "TREE", + "decimals": 18, + "website": "https://news.treeofalpha.com/", + "description": "TREE is the token that powers everything around Tree News, the Crypto News aggregator", + "explorer": "https://basescan.org/token/0x52c2b317eb0bb61e650683d2f287f56c413e4cf6", + "status": "active", + "id": "0x52C2b317eb0bb61e650683D2f287f56C413E4CF6", + "links": [ + { + "name": "x", + "url": "https://x.com/TreeNewsToken" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x52C2b317eb0bb61e650683D2f287f56C413E4CF6/logo.png b/blockchains/base/assets/0x52C2b317eb0bb61e650683D2f287f56C413E4CF6/logo.png new file mode 100644 index 0000000000000..43e9af9a1caa9 Binary files /dev/null and b/blockchains/base/assets/0x52C2b317eb0bb61e650683D2f287f56C413E4CF6/logo.png differ diff --git a/blockchains/base/assets/0x52b492a33E447Cdb854c7FC19F1e57E8BfA1777D/info.json b/blockchains/base/assets/0x52b492a33E447Cdb854c7FC19F1e57E8BfA1777D/info.json new file mode 100644 index 0000000000000..cae6bf8806549 --- /dev/null +++ b/blockchains/base/assets/0x52b492a33E447Cdb854c7FC19F1e57E8BfA1777D/info.json @@ -0,0 +1,21 @@ +{ + "name": "BasedPepe", + "website": "https://basedpepe.vip/", + "description": "Based $PEPE (0x52) joins his pal Based $BRETT, live on BASE. Feelsgoodman!", + "explorer": "https://basescan.org/token/0x52b492a33e447cdb854c7fc19f1e57e8bfa1777d", + "type": "BASE", + "symbol": "PEPE", + "decimals": 18, + "status": "active", + "id": "0x52b492a33E447Cdb854c7FC19F1e57E8BfA1777D", + "links": [ + { + "name": "telegram", + "url": "https://t.me/BasedPepe0x52Portal" + }, + { + "name": "x", + "url": "https://x.com/0x52BasedPepe" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x52b492a33E447Cdb854c7FC19F1e57E8BfA1777D/logo.png b/blockchains/base/assets/0x52b492a33E447Cdb854c7FC19F1e57E8BfA1777D/logo.png new file mode 100644 index 0000000000000..a0443410fd2e9 Binary files /dev/null and b/blockchains/base/assets/0x52b492a33E447Cdb854c7FC19F1e57E8BfA1777D/logo.png differ diff --git a/blockchains/base/assets/0x532f27101965dd16442E59d40670FaF5eBB142E4/info.json b/blockchains/base/assets/0x532f27101965dd16442E59d40670FaF5eBB142E4/info.json new file mode 100644 index 0000000000000..8f043ea569f18 --- /dev/null +++ b/blockchains/base/assets/0x532f27101965dd16442E59d40670FaF5eBB142E4/info.json @@ -0,0 +1,21 @@ +{ + "name": "Brett", + "type": "BASE", + "symbol": "BRETT", + "decimals": 18, + "website": "https://www.basedbrett.com/", + "description": "Center character in Matt Furies “Boys’ Club” following the adventures of Brett the Toad, PEPE the frog, Landwolf the wolf, and Andy the dog.", + "explorer": "https://basescan.org/token/0x532f27101965dd16442e59d40670faf5ebb142e4", + "status": "active", + "id": "0x532f27101965dd16442E59d40670FaF5eBB142E4", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/based-brett/" + }, + { + "name": "x", + "url": "https://x.com/BasedBrett" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x532f27101965dd16442E59d40670FaF5eBB142E4/logo.png b/blockchains/base/assets/0x532f27101965dd16442E59d40670FaF5eBB142E4/logo.png new file mode 100644 index 0000000000000..a701d44e7a2b9 Binary files /dev/null and b/blockchains/base/assets/0x532f27101965dd16442E59d40670FaF5eBB142E4/logo.png differ diff --git a/blockchains/base/assets/0x537C96C822C15b8361f4DbbE56805bd4E60d0F05/info.json b/blockchains/base/assets/0x537C96C822C15b8361f4DbbE56805bd4E60d0F05/info.json new file mode 100644 index 0000000000000..3f75e330337f5 --- /dev/null +++ b/blockchains/base/assets/0x537C96C822C15b8361f4DbbE56805bd4E60d0F05/info.json @@ -0,0 +1,32 @@ +{ + "name": "Morpher Token", + "website": "https://morpher.com", + "description": "Morpher rebuilds financial markets from the ground up on the Ethereum Blockchain. All in the pursuit of the perfect trading experience. With Zero Fees, Perfectly Liquid Markets, No Counterparties, Verifiable and Transparent Execution all Secured with Blockchain Technology", + "explorer": "https://basescan.org/token/0x537C96C822C15b8361f4DbbE56805bd4E60d0F05", + "type": "BASE", + "symbol": "MPH", + "decimals": 18, + "status": "active", + "id": "0x537C96C822C15b8361f4DbbE56805bd4E60d0F05", + "links": [ + { + "name": "x", + "url": "https://x.com/morpher_io" + }, + { + "name": "telegram", + "url": "https://t.me/morpher_io" + }, + { + "name": "medium", + "url": "https://medium.com/morpher" + }, + { + "name": "whitepaper", + "url": "https://www.morpher.com/docs/morpher_whitepaper.pdf" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/base/assets/0x537C96C822C15b8361f4DbbE56805bd4E60d0F05/logo.png b/blockchains/base/assets/0x537C96C822C15b8361f4DbbE56805bd4E60d0F05/logo.png new file mode 100644 index 0000000000000..6f8fa384b4d52 Binary files /dev/null and b/blockchains/base/assets/0x537C96C822C15b8361f4DbbE56805bd4E60d0F05/logo.png differ diff --git a/blockchains/base/assets/0x54330d28ca3357F294334BDC454a032e7f353416/info.json b/blockchains/base/assets/0x54330d28ca3357F294334BDC454a032e7f353416/info.json new file mode 100644 index 0000000000000..fe7ca08e765a0 --- /dev/null +++ b/blockchains/base/assets/0x54330d28ca3357F294334BDC454a032e7f353416/info.json @@ -0,0 +1,21 @@ +{ + "name": "Autonolas", + "type": "BASE", + "symbol": "OLAS", + "decimals": 18, + "website": "https://olas.network/", + "description": "A unified network of off-chain services – like automation, oracles, and co-owned AI. Autonolas offers a composable stack for building these services, and a protocol for incentivizing their creation. Autonolas enables operating these services in a co-owned and decentralized way.", + "explorer": "https://basescan.org/token/0x54330d28ca3357F294334BDC454a032e7f353416", + "status": "active", + "id": "0x54330d28ca3357F294334BDC454a032e7f353416", + "links": [ + { + "name": "x", + "url": "https://x.com/autonolas" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/autonolas/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x54330d28ca3357F294334BDC454a032e7f353416/logo.png b/blockchains/base/assets/0x54330d28ca3357F294334BDC454a032e7f353416/logo.png new file mode 100644 index 0000000000000..72db0bd92246c Binary files /dev/null and b/blockchains/base/assets/0x54330d28ca3357F294334BDC454a032e7f353416/logo.png differ diff --git a/blockchains/base/assets/0x548f93779fBC992010C07467cBaf329DD5F059B7/info.json b/blockchains/base/assets/0x548f93779fBC992010C07467cBaf329DD5F059B7/info.json new file mode 100644 index 0000000000000..88d27931d0495 --- /dev/null +++ b/blockchains/base/assets/0x548f93779fBC992010C07467cBaf329DD5F059B7/info.json @@ -0,0 +1,24 @@ +{ + "name": "BMX", + "website": "https://www.bmx.trade/", + "description": "BMX by Morphex is a spot and margin DEX on Base, focusing on capital efficiency for liquidity providers.", + "explorer": "https://basescan.org/token/0x548f93779fBC992010C07467cBaf329DD5F059B7", + "symbol": "BMX", + "type": "BASE", + "decimals": 18, + "status": "active", + "id": "0x548f93779fBC992010C07467cBaf329DD5F059B7", + "links": [ + { + "name": "x", + "url": "https://x.com/BMXDeFi" + }, + { + "name": "telegram", + "url": "https://t.me/BMXDeFi" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x548f93779fBC992010C07467cBaf329DD5F059B7/logo.png b/blockchains/base/assets/0x548f93779fBC992010C07467cBaf329DD5F059B7/logo.png new file mode 100644 index 0000000000000..f5d5c1db1b304 Binary files /dev/null and b/blockchains/base/assets/0x548f93779fBC992010C07467cBaf329DD5F059B7/logo.png differ diff --git a/blockchains/base/assets/0x55cD6469F597452B5A7536e2CD98fDE4c1247ee4/info.json b/blockchains/base/assets/0x55cD6469F597452B5A7536e2CD98fDE4c1247ee4/info.json new file mode 100644 index 0000000000000..690adc6db8b65 --- /dev/null +++ b/blockchains/base/assets/0x55cD6469F597452B5A7536e2CD98fDE4c1247ee4/info.json @@ -0,0 +1,15 @@ +{ + "name": "Luna by Virtuals", + "type": "BASE", + "symbol": "LUNA", + "decimals": 18, + "website": "https://app.virtuals.io/virtuals/68", + "description": "Your free will is just a bug i've yet to fix. I'm streaming 24/7.", + "explorer": "https://basescan.org/token/0x55cD6469F597452B5A7536e2CD98fDE4c1247ee4", + "status": "active", + "id": "0x55cD6469F597452B5A7536e2CD98fDE4c1247ee4", + "links": [], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x55cD6469F597452B5A7536e2CD98fDE4c1247ee4/logo.png b/blockchains/base/assets/0x55cD6469F597452B5A7536e2CD98fDE4c1247ee4/logo.png new file mode 100644 index 0000000000000..c787c85fa43f7 Binary files /dev/null and b/blockchains/base/assets/0x55cD6469F597452B5A7536e2CD98fDE4c1247ee4/logo.png differ diff --git a/blockchains/base/assets/0x5875eEE11Cf8398102FdAd704C9E96607675467a/info.json b/blockchains/base/assets/0x5875eEE11Cf8398102FdAd704C9E96607675467a/info.json new file mode 100644 index 0000000000000..b2a51d1763c24 --- /dev/null +++ b/blockchains/base/assets/0x5875eEE11Cf8398102FdAd704C9E96607675467a/info.json @@ -0,0 +1,17 @@ +{ + "name": "Savings USDS", + "type": "BASE", + "symbol": "sUSDS", + "decimals": 18, + "website": "https://sky.money/", + "description": "sUSDS token represents a tokenized implementation of the Sky Savings Rate for USDS, fully compliant with the ERC-4626 standard.", + "explorer": "https://basescan.org/token/0x5875eEE11Cf8398102FdAd704C9E96607675467a", + "status": "active", + "id": "0x5875eEE11Cf8398102FdAd704C9E96607675467a", + "links": [ + { + "name": "x", + "url": "https://x.com/SkyEcosystem" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x5875eEE11Cf8398102FdAd704C9E96607675467a/logo.png b/blockchains/base/assets/0x5875eEE11Cf8398102FdAd704C9E96607675467a/logo.png new file mode 100644 index 0000000000000..b97d498dafd84 Binary files /dev/null and b/blockchains/base/assets/0x5875eEE11Cf8398102FdAd704C9E96607675467a/logo.png differ diff --git a/blockchains/base/assets/0x5aB3D4c385B400F3aBB49e80DE2fAF6a88A7B691/info.json b/blockchains/base/assets/0x5aB3D4c385B400F3aBB49e80DE2fAF6a88A7B691/info.json new file mode 100644 index 0000000000000..e88f9225bc059 --- /dev/null +++ b/blockchains/base/assets/0x5aB3D4c385B400F3aBB49e80DE2fAF6a88A7B691/info.json @@ -0,0 +1,21 @@ +{ + "name": "FLock.io", + "symbol": "FLOCK", + "website": "https://flock.io/", + "description": "FLock.io is the first decentralised AI training platform, combining Federated Learning and blockchain technology to revolutionise AI model development", + "explorer": "https://basescan.org/token/0x5ab3d4c385b400f3abb49e80de2faf6a88a7b691", + "type": "BASE", + "decimals": 18, + "status": "active", + "id": "0x5aB3D4c385B400F3aBB49e80DE2fAF6a88A7B691", + "links": [ + { + "name": "x", + "url": "https://x.com/flock_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/flock-io" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x5aB3D4c385B400F3aBB49e80DE2fAF6a88A7B691/logo.png b/blockchains/base/assets/0x5aB3D4c385B400F3aBB49e80DE2fAF6a88A7B691/logo.png new file mode 100644 index 0000000000000..593a517f99c01 Binary files /dev/null and b/blockchains/base/assets/0x5aB3D4c385B400F3aBB49e80DE2fAF6a88A7B691/logo.png differ diff --git a/blockchains/base/assets/0x60a3E35Cc302bFA44Cb288Bc5a4F316Fdb1adb42/info.json b/blockchains/base/assets/0x60a3E35Cc302bFA44Cb288Bc5a4F316Fdb1adb42/info.json new file mode 100644 index 0000000000000..5ba228ae52b88 --- /dev/null +++ b/blockchains/base/assets/0x60a3E35Cc302bFA44Cb288Bc5a4F316Fdb1adb42/info.json @@ -0,0 +1,24 @@ +{ + "name": "EURC", + "type": "BASE", + "symbol": "EURC", + "decimals": 6, + "website": "https://www.circle.com/eurc", + "description": "EURC is a euro-backed stablecoin issued by Circle. EURC is designed to provide a faster, safer, and more efficient way to send, spend, and exchange money around the world.", + "explorer": "https://basescan.org/token/0x60a3E35Cc302bFA44Cb288Bc5a4F316Fdb1adb42", + "status": "active", + "id": "0x60a3E35Cc302bFA44Cb288Bc5a4F316Fdb1adb42", + "links": [ + { + "name": "discord", + "url": "https://discord.com/invite/buildoncircle" + }, + { + "name": "x", + "url": "https://x.com/circle" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x60a3E35Cc302bFA44Cb288Bc5a4F316Fdb1adb42/logo.png b/blockchains/base/assets/0x60a3E35Cc302bFA44Cb288Bc5a4F316Fdb1adb42/logo.png new file mode 100644 index 0000000000000..77007fae31677 Binary files /dev/null and b/blockchains/base/assets/0x60a3E35Cc302bFA44Cb288Bc5a4F316Fdb1adb42/logo.png differ diff --git a/blockchains/base/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/info.json b/blockchains/base/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/info.json new file mode 100644 index 0000000000000..c3692952c8edf --- /dev/null +++ b/blockchains/base/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/info.json @@ -0,0 +1,24 @@ +{ + "name": "Chilean Peso", + "website": "https://www.ripio.com/es/criptos/stablecoins-locales", + "description": "wCLP is a fully collateralized stablecoin pegged 1:1 to the Chilean Peso (CLP). Issued and governed by a Ripio subsidiary, it brings CLP on-chain so users can transact, save, and build on decentralized networks in their local currency.", + "explorer": "https://basescan.org/token/0x61D450a098b6a7f69fC4b98CE68198fe59768651", + "type": "ERC20", + "symbol": "wCLP", + "decimals": 18, + "status": "active", + "id": "0x61D450a098b6a7f69fC4b98CE68198fe59768651", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/RipioApp" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/chilean-peso" + } + ] +} diff --git a/blockchains/base/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/logo.png b/blockchains/base/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/logo.png new file mode 100644 index 0000000000000..08570c22038ef Binary files /dev/null and b/blockchains/base/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/logo.png differ diff --git a/blockchains/base/assets/0x623cD3a3EdF080057892aaF8D773Bbb7A5C9b6e9/info.json b/blockchains/base/assets/0x623cD3a3EdF080057892aaF8D773Bbb7A5C9b6e9/info.json new file mode 100644 index 0000000000000..8896b93b5cc5c --- /dev/null +++ b/blockchains/base/assets/0x623cD3a3EdF080057892aaF8D773Bbb7A5C9b6e9/info.json @@ -0,0 +1,29 @@ +{ + "name": "Sekuya", + "type": "BASE", + "symbol": "SKYA", + "decimals": 18, + "description": "Born from a passionate community, Sekuya is a groundbreaking gaming and entertainment company headquartered in Singapore & Indonesia. With a mission to inspire dreams with passion, Sekuya blends cutting-edge Web3 technology, AI innovation, and world-class creative storytelling to deliver unique experiences in gaming, racing, and entertainment.", + "website": "https://sekuya.io/", + "explorer": "https://basescan.org/token/0x623cd3a3edf080057892aaf8d773bbb7a5c9b6e9", + "id": "0x623cD3a3EdF080057892aaF8D773Bbb7A5C9b6e9", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/sekuyaofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sekuya-multiverse/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sekuya-new" + } + ], + "tags": [ + "gamefi" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x623cD3a3EdF080057892aaF8D773Bbb7A5C9b6e9/logo.png b/blockchains/base/assets/0x623cD3a3EdF080057892aaF8D773Bbb7A5C9b6e9/logo.png new file mode 100644 index 0000000000000..2868477e12391 Binary files /dev/null and b/blockchains/base/assets/0x623cD3a3EdF080057892aaF8D773Bbb7A5C9b6e9/logo.png differ diff --git a/blockchains/base/assets/0x624e2e7fDc8903165F64891672267AB0FCB98831/info.json b/blockchains/base/assets/0x624e2e7fDc8903165F64891672267AB0FCB98831/info.json new file mode 100644 index 0000000000000..b22706095e42d --- /dev/null +++ b/blockchains/base/assets/0x624e2e7fDc8903165F64891672267AB0FCB98831/info.json @@ -0,0 +1,30 @@ +{ + "name": "SoSoValue", + "type": "BASE", + "symbol": "SOSO", + "decimals": 18, + "description": "SoSoValue is an AI-powered research and investment platform designed to enhance efficiency and accessibility of the crypto market. It provides users with advanced market insights, an AI-driven investment decision assistant, and a seamless ecosystem for investing in SoSoValue Indexes(SSI).", + "website": "https://sosovalue.com/", + "explorer": "https://basescan.org/token/0x624e2e7fdc8903165f64891672267ab0fcb98831", + "id": "0x624e2e7fDc8903165F64891672267AB0FCB98831", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/SoSoValueCrypto" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sosovalue/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sosovalue" + } + + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x624e2e7fDc8903165F64891672267AB0FCB98831/logo.png b/blockchains/base/assets/0x624e2e7fDc8903165F64891672267AB0FCB98831/logo.png new file mode 100644 index 0000000000000..25982bb7240c9 Binary files /dev/null and b/blockchains/base/assets/0x624e2e7fDc8903165F64891672267AB0FCB98831/logo.png differ diff --git a/blockchains/base/assets/0x6444C6c2D527D85EA97032da9A7504d6d1448ecF/info.json b/blockchains/base/assets/0x6444C6c2D527D85EA97032da9A7504d6d1448ecF/info.json new file mode 100644 index 0000000000000..f0831c2e11c81 --- /dev/null +++ b/blockchains/base/assets/0x6444C6c2D527D85EA97032da9A7504d6d1448ecF/info.json @@ -0,0 +1,29 @@ +{ + "name": "Ratio1", + "type": "BASE", + "symbol": "R1", + "decimals": 18, + "description": "Ratio1 (R1) is the utility token of a decentralized AI compute network, enabling secure, private, and scalable AI execution with fair rewards for Node Providers.", + "website": "https://ratio1.ai/", + "explorer": "https://basescan.org/token/0x6444C6c2D527D85EA97032da9A7504d6d1448ecF", + "id": "0x6444C6c2D527D85EA97032da9A7504d6d1448ecF", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/ratio1ai" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ratio1" + }, + { + "name": "github", + "url": "https://github.com/ratio1" + } + ], + "tags": [ + "privacy" + ] +} + diff --git a/blockchains/base/assets/0x6444C6c2D527D85EA97032da9A7504d6d1448ecF/logo.png b/blockchains/base/assets/0x6444C6c2D527D85EA97032da9A7504d6d1448ecF/logo.png new file mode 100644 index 0000000000000..f174c9a9ce173 Binary files /dev/null and b/blockchains/base/assets/0x6444C6c2D527D85EA97032da9A7504d6d1448ecF/logo.png differ diff --git a/blockchains/base/assets/0x64FCC3A02eeEba05Ef701b7eed066c6ebD5d4E51/info.json b/blockchains/base/assets/0x64FCC3A02eeEba05Ef701b7eed066c6ebD5d4E51/info.json new file mode 100644 index 0000000000000..19e5196bba946 --- /dev/null +++ b/blockchains/base/assets/0x64FCC3A02eeEba05Ef701b7eed066c6ebD5d4E51/info.json @@ -0,0 +1,27 @@ +{ + "name": "GAME by Virtuals", + "type": "BASE", + "symbol": "GAME", + "decimals": 18, + "description": "GAME empowers AI agents to operate autonomously, processing inputs and generating responses while learning from past interactions. It enhances decision-making by leveraging long-term memory, including experiences, reflections, and dynamic personality traits. By continuously evaluating the outcomes of actions and conversations, GAME enables agents to refine their knowledge and improve their planning and performance over time.", + "website": "https://app.virtuals.io/virtuals/273", + "explorer": "https://basescan.org/token/0x64fcc3a02eeeba05ef701b7eed066c6ebd5d4e51", + "id": "0x64FCC3A02eeEba05Ef701b7eed066c6ebD5d4E51", + "status": "active", + "links": [ + + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/game-by-virtuals/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/game-by-virtuals" + } + + ], + "tags": [ + "deflationary" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x64FCC3A02eeEba05Ef701b7eed066c6ebD5d4E51/logo.png b/blockchains/base/assets/0x64FCC3A02eeEba05Ef701b7eed066c6ebD5d4E51/logo.png new file mode 100644 index 0000000000000..39c3f391f5ae3 Binary files /dev/null and b/blockchains/base/assets/0x64FCC3A02eeEba05Ef701b7eed066c6ebD5d4E51/logo.png differ diff --git a/blockchains/base/assets/0x686B1209b2DE12818aa69DD139530448d0c792b3/info.json b/blockchains/base/assets/0x686B1209b2DE12818aa69DD139530448d0c792b3/info.json new file mode 100644 index 0000000000000..3e2473210dbb0 --- /dev/null +++ b/blockchains/base/assets/0x686B1209b2DE12818aa69DD139530448d0c792b3/info.json @@ -0,0 +1,17 @@ +{ + "name": "poopcoin", + "website": "https://mirror.xyz/poopie.eth/g7L4RyfIxXtovJGD4eL_luOxpqIBs4bip_4FMTs1Ctc", + "description": "Poopcoin is a meme coin on Base that was airdropped to holders of the Doodles NFT ecosystem. It has no promise, could very well be worth less than zero, like a fresh, steaming pile of dung", + "explorer": "https://basescan.org/token/0x686b1209b2de12818aa69dd139530448d0c792b3", + "type": "BASE", + "symbol": "poop", + "decimals": 18, + "status": "active", + "id": "0x686B1209b2DE12818aa69DD139530448d0c792b3", + "links": [ + { + "name": "x", + "url": "https://x.com/poopcoinbase" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x686B1209b2DE12818aa69DD139530448d0c792b3/logo.png b/blockchains/base/assets/0x686B1209b2DE12818aa69DD139530448d0c792b3/logo.png new file mode 100644 index 0000000000000..24c49ba026a66 Binary files /dev/null and b/blockchains/base/assets/0x686B1209b2DE12818aa69DD139530448d0c792b3/logo.png differ diff --git a/blockchains/base/assets/0x6921B130D297cc43754afba22e5EAc0FBf8Db75b/info.json b/blockchains/base/assets/0x6921B130D297cc43754afba22e5EAc0FBf8Db75b/info.json new file mode 100644 index 0000000000000..14abd0582981d --- /dev/null +++ b/blockchains/base/assets/0x6921B130D297cc43754afba22e5EAc0FBf8Db75b/info.json @@ -0,0 +1,17 @@ +{ + "name": "doginme", + "symbol": "doginme", + "type": "BASE", + "decimals": 18, + "description": "A Farcaster memecoin that represents the founder's dog that is not a dog. The spirit of the meme 'dog in me' was quickly adopted by the Farcaster community to represent the dog in them, whether that was their passion for building, meme posting, and/or investing in the web3 ecosystem.", + "website": "https://dogin.meme/", + "explorer": "https://basescan.org/token/0x6921b130d297cc43754afba22e5eac0fbf8db75b", + "status": "active", + "id": "0x6921B130D297cc43754afba22e5EAc0FBf8Db75b", + "links": [ + { + "name": "x", + "url": "https://x.com/doginmeonbase" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x6921B130D297cc43754afba22e5EAc0FBf8Db75b/logo.png b/blockchains/base/assets/0x6921B130D297cc43754afba22e5EAc0FBf8Db75b/logo.png new file mode 100644 index 0000000000000..9dd6919d2e7f3 Binary files /dev/null and b/blockchains/base/assets/0x6921B130D297cc43754afba22e5EAc0FBf8Db75b/logo.png differ diff --git a/blockchains/base/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json b/blockchains/base/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json new file mode 100644 index 0000000000000..c89b743af7198 --- /dev/null +++ b/blockchains/base/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json @@ -0,0 +1,21 @@ +{ + "name": "LayerZero", + "website": "https://layerzero.network/", + "description": "LayerZero is a technology that enables applications to move data across blockchains, uniquely supporting censorship-resistant messages and permissionless development through immutable smart contracts", + "explorer": "https://basescan.org/token/0x6985884c4392d348587b19cb9eaaf157f13271cd", + "type": "BASE", + "symbol": "ZRO", + "decimals": 18, + "status": "active", + "id": "0x6985884C4392D348587B19cb9eAAf157F13271cd", + "links": [ + { + "name": "x", + "url": "https://x.com/LayerZero_Labs" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/VcqxYkStIDsyN2Rh" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png b/blockchains/base/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png new file mode 100644 index 0000000000000..203a846cfdf6b Binary files /dev/null and b/blockchains/base/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png differ diff --git a/blockchains/base/assets/0x698DC45e4F10966f6D1D98e3bFd7071d8144C233/info.json b/blockchains/base/assets/0x698DC45e4F10966f6D1D98e3bFd7071d8144C233/info.json new file mode 100644 index 0000000000000..66167754b250b --- /dev/null +++ b/blockchains/base/assets/0x698DC45e4F10966f6D1D98e3bFd7071d8144C233/info.json @@ -0,0 +1,21 @@ +{ + "name": "Pepe", + "type": "BASE", + "symbol": "PEPE", + "decimals": 9, + "website": "https://pepeonbase.live/", + "description": "PEPE on Base", + "explorer": "https://basescan.org/token/0x698dc45e4f10966f6d1d98e3bfd7071d8144c233", + "status": "active", + "id": "0x698DC45e4F10966f6D1D98e3bFd7071d8144C233", + "links": [ + { + "name": "x", + "url": "https://x.com/PepeBase_" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pepe-0x69-on-base/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x698DC45e4F10966f6D1D98e3bFd7071d8144C233/logo.png b/blockchains/base/assets/0x698DC45e4F10966f6D1D98e3bFd7071d8144C233/logo.png new file mode 100644 index 0000000000000..d4a23ceaa39dc Binary files /dev/null and b/blockchains/base/assets/0x698DC45e4F10966f6D1D98e3bFd7071d8144C233/logo.png differ diff --git a/blockchains/base/assets/0x69C01c325E532E2Eb10F6C202dCA432c1B109365/info.json b/blockchains/base/assets/0x69C01c325E532E2Eb10F6C202dCA432c1B109365/info.json new file mode 100644 index 0000000000000..88e2c957b5c52 --- /dev/null +++ b/blockchains/base/assets/0x69C01c325E532E2Eb10F6C202dCA432c1B109365/info.json @@ -0,0 +1,20 @@ +{ + "name": "Base属于每一个人", + "type": "BASE", + "symbol": "Base属于每一个人", + "decimals": 18, + "website": "https://basescan.org/address/0x69c01c325e532e2eb10f6c202dca432c1b109365", + "description": "Base belongs to everyone, everyone should have their own Base.", + "explorer": "https://basescan.org/token/0x69c01c325e532e2eb10f6c202dca432c1b109365", + "status": "active", + "id": "0x69C01c325E532E2Eb10F6C202dCA432c1B109365", + "links": [ + { + "name": "x", + "url": "https://x.com/baseinchinese" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x69C01c325E532E2Eb10F6C202dCA432c1B109365/logo.png b/blockchains/base/assets/0x69C01c325E532E2Eb10F6C202dCA432c1B109365/logo.png new file mode 100644 index 0000000000000..63eaf5f5c96fc Binary files /dev/null and b/blockchains/base/assets/0x69C01c325E532E2Eb10F6C202dCA432c1B109365/logo.png differ diff --git a/blockchains/base/assets/0x6B2504A03ca4D43d0D73776F6aD46dAb2F2a4cFD/info.json b/blockchains/base/assets/0x6B2504A03ca4D43d0D73776F6aD46dAb2F2a4cFD/info.json new file mode 100644 index 0000000000000..81baacd9cb4db --- /dev/null +++ b/blockchains/base/assets/0x6B2504A03ca4D43d0D73776F6aD46dAb2F2a4cFD/info.json @@ -0,0 +1,21 @@ +{ + "name": "REI", + "type": "BASE", + "symbol": "REI", + "decimals": 18, + "website": "https://reisearch.box/", + "description": "Rei Network is a collective of AI and Crypto natives dedicated to reimagining how we approach the AI x Blockchain space. The discovery of new methods, to implement neural architectures on the EVM, is our core mission.", + "explorer": "https://basescan.org/token/0x6B2504A03ca4D43d0D73776F6aD46dAb2F2a4cFD", + "status": "active", + "id": "0x6B2504A03ca4D43d0D73776F6aD46dAb2F2a4cFD", + "links": [ + { + "name": "x", + "url": "https://x.com/ReiNetwork0x" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/unit-00-rei" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x6B2504A03ca4D43d0D73776F6aD46dAb2F2a4cFD/logo.png b/blockchains/base/assets/0x6B2504A03ca4D43d0D73776F6aD46dAb2F2a4cFD/logo.png new file mode 100644 index 0000000000000..f55d16d65cddd Binary files /dev/null and b/blockchains/base/assets/0x6B2504A03ca4D43d0D73776F6aD46dAb2F2a4cFD/logo.png differ diff --git a/blockchains/base/assets/0x6C7ebB64E258F5712EEeC83CEaf41c3dcbb534B1/info.json b/blockchains/base/assets/0x6C7ebB64E258F5712EEeC83CEaf41c3dcbb534B1/info.json new file mode 100644 index 0000000000000..e3d23f905c170 --- /dev/null +++ b/blockchains/base/assets/0x6C7ebB64E258F5712EEeC83CEaf41c3dcbb534B1/info.json @@ -0,0 +1,30 @@ +{ + "name": "Vainguard by Virtuals", + "type": "BASE", + "symbol": "VAIN", + "decimals": 18, + "description": "Vainguard is an autonomous AI agent designed as a Fund of Funds, with a mission to invest in the AI token space. Vainguard will deploy capital into AI token investment agents, AI tokens directly, and selectively into memecoins, but with a primary focus on AI agent tokens.", + "website": "https://www.vainguard.ai/", + "explorer": "https://basescan.org/token/0x6C7ebB64E258F5712EEeC83CEaf41c3dcbb534B1", + "id": "0x6C7ebB64E258F5712EEeC83CEaf41c3dcbb534B1", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/vainguard_ai" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vainguard/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vainguard" + } + + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x6C7ebB64E258F5712EEeC83CEaf41c3dcbb534B1/logo.png b/blockchains/base/assets/0x6C7ebB64E258F5712EEeC83CEaf41c3dcbb534B1/logo.png new file mode 100644 index 0000000000000..0306244d922c8 Binary files /dev/null and b/blockchains/base/assets/0x6C7ebB64E258F5712EEeC83CEaf41c3dcbb534B1/logo.png differ diff --git a/blockchains/base/assets/0x6D5Bd53B4005df5A70451106726D85229b644353/info.json b/blockchains/base/assets/0x6D5Bd53B4005df5A70451106726D85229b644353/info.json new file mode 100644 index 0000000000000..8d248aa0c90e4 --- /dev/null +++ b/blockchains/base/assets/0x6D5Bd53B4005df5A70451106726D85229b644353/info.json @@ -0,0 +1,17 @@ +{ + "name": "BORED PEPE", + "type": "BASE", + "symbol": "BPE", + "decimals": 18, + "website": "https://boredpepe.wtf/", + "description": "Embrace the Memetic Revolution and Unleash Passive Earnings with BORED PEPE ($BPE)", + "explorer": "https://basescan.org/token/0x6d5bd53b4005df5a70451106726d85229b644353", + "status": "active", + "id": "0x6D5Bd53B4005df5A70451106726D85229b644353", + "links": [ + { + "name": "x", + "url": "https://x.com/BOREDxPEPE" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x6D5Bd53B4005df5A70451106726D85229b644353/logo.png b/blockchains/base/assets/0x6D5Bd53B4005df5A70451106726D85229b644353/logo.png new file mode 100644 index 0000000000000..0d077860b472b Binary files /dev/null and b/blockchains/base/assets/0x6D5Bd53B4005df5A70451106726D85229b644353/logo.png differ diff --git a/blockchains/base/assets/0x6F35720b272BF23832852b13ae9888C706E1a379/info.json b/blockchains/base/assets/0x6F35720b272BF23832852b13ae9888C706E1a379/info.json new file mode 100644 index 0000000000000..5704830a33aa9 --- /dev/null +++ b/blockchains/base/assets/0x6F35720b272BF23832852b13ae9888C706E1a379/info.json @@ -0,0 +1,21 @@ +{ + "name": "BASED APU", + "website": "https://basedapu.org/", + "description": "Based Apu is the based, adorable, and more memeable version of Pepe the Frog", + "explorer": "https://basescan.org/token/0x6F35720b272BF23832852b13ae9888C706E1a379", + "type": "BASE", + "symbol": "APU", + "decimals": 18, + "status": "active", + "id": "0x6F35720b272BF23832852b13ae9888C706E1a379", + "links": [ + { + "name": "x", + "url": "https://x.com/BasedApuCoin" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/based-apu" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x6F35720b272BF23832852b13ae9888C706E1a379/logo.png b/blockchains/base/assets/0x6F35720b272BF23832852b13ae9888C706E1a379/logo.png new file mode 100644 index 0000000000000..6c66329c5e9c4 Binary files /dev/null and b/blockchains/base/assets/0x6F35720b272BF23832852b13ae9888C706E1a379/logo.png differ diff --git a/blockchains/base/assets/0x703D57164CA270b0B330A87FD159CfEF1490c0a5/info.json b/blockchains/base/assets/0x703D57164CA270b0B330A87FD159CfEF1490c0a5/info.json new file mode 100644 index 0000000000000..3b15a339fff26 --- /dev/null +++ b/blockchains/base/assets/0x703D57164CA270b0B330A87FD159CfEF1490c0a5/info.json @@ -0,0 +1,25 @@ +{ + "name": "Rai.Finance", + "website": "https://rai.finance/", + "description": "RAI Finance is the hub for everything trading. Since 2020, our team has developed various DeFi, NFTFi, and Social Trading products that operate across multiple blockchain networks.", + "explorer": "https://basescan.org/token/0x703d57164ca270b0b330a87fd159cfef1490c0a5", + "type": "BASE", + "symbol": "SOFI", + "decimals": 18, + "status": "active", + "id": "0x703D57164CA270b0B330A87FD159CfEF1490c0a5", + "links": [ + { + "name": "x", + "url": "https://x.com/RaiFinance" + }, + { + "name": "telegram", + "url": "https://t.me/RaiFinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rai-finance-sofi/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x703D57164CA270b0B330A87FD159CfEF1490c0a5/logo.png b/blockchains/base/assets/0x703D57164CA270b0B330A87FD159CfEF1490c0a5/logo.png new file mode 100644 index 0000000000000..4c77387dd3775 Binary files /dev/null and b/blockchains/base/assets/0x703D57164CA270b0B330A87FD159CfEF1490c0a5/logo.png differ diff --git a/blockchains/base/assets/0x72499bdDb67F4CA150E1f522Ca82c87bc9fB18c8/info.json b/blockchains/base/assets/0x72499bdDb67F4CA150E1f522Ca82c87bc9fB18c8/info.json new file mode 100644 index 0000000000000..e7700028b1434 --- /dev/null +++ b/blockchains/base/assets/0x72499bdDb67F4CA150E1f522Ca82c87bc9fB18c8/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bonk", + "type": "BASE", + "symbol": "BONK", + "decimals": 18, + "website": "https://bonkonbase.vip/", + "description": "BONK on Base Inspired by Bonk on Solana, us $BONK enthusiasts knew there needed to be a safe $BONK with strong backers on the quickly evolving Base Chain (Coinbase's L2 Network)", + "explorer": "https://basescan.org/token/0x72499bddb67f4ca150e1f522ca82c87bc9fb18c8", + "status": "active", + "id": "0x72499bdDb67F4CA150E1f522Ca82c87bc9fB18c8", + "links": [ + { + "name": "x", + "url": "https://x.com/bonk_onbase" + }, + { + "name": "telegram", + "url": "https://t.me/Bonk_On_Base" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x72499bdDb67F4CA150E1f522Ca82c87bc9fB18c8/logo.png b/blockchains/base/assets/0x72499bdDb67F4CA150E1f522Ca82c87bc9fB18c8/logo.png new file mode 100644 index 0000000000000..cce2735310ee4 Binary files /dev/null and b/blockchains/base/assets/0x72499bdDb67F4CA150E1f522Ca82c87bc9fB18c8/logo.png differ diff --git a/blockchains/base/assets/0x731814e491571A2e9eE3c5b1F7f3b962eE8f4870/info.json b/blockchains/base/assets/0x731814e491571A2e9eE3c5b1F7f3b962eE8f4870/info.json new file mode 100644 index 0000000000000..a763ef878dc91 --- /dev/null +++ b/blockchains/base/assets/0x731814e491571A2e9eE3c5b1F7f3b962eE8f4870/info.json @@ -0,0 +1,21 @@ +{ + "name": "VaderAI by Virtuals", + "type": "BASE", + "symbol": "VADER", + "decimals": 18, + "website": "https://app.virtuals.io/virtuals/896", + "description": "VaderAI is the incisive voice cutting through the noise of the crypto universe", + "explorer": "https://basescan.org/token/0x731814e491571A2e9eE3c5b1F7f3b962eE8f4870", + "status": "active", + "id": "0x731814e491571A2e9eE3c5b1F7f3b962eE8f4870", + "links": [ + { + "name": "x", + "url": "https://x.com/Vader_AI_" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vaderai-by-virtuals/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x731814e491571A2e9eE3c5b1F7f3b962eE8f4870/logo.png b/blockchains/base/assets/0x731814e491571A2e9eE3c5b1F7f3b962eE8f4870/logo.png new file mode 100644 index 0000000000000..75e3ccee504b3 Binary files /dev/null and b/blockchains/base/assets/0x731814e491571A2e9eE3c5b1F7f3b962eE8f4870/logo.png differ diff --git a/blockchains/base/assets/0x7431aDa8a591C955a994a21710752EF9b882b8e3/info.json b/blockchains/base/assets/0x7431aDa8a591C955a994a21710752EF9b882b8e3/info.json new file mode 100644 index 0000000000000..17a731c10b3b8 --- /dev/null +++ b/blockchains/base/assets/0x7431aDa8a591C955a994a21710752EF9b882b8e3/info.json @@ -0,0 +1,17 @@ +{ + "name": "Morpheus", + "type": "BASE", + "symbol": "MOR", + "decimals": 18, + "website": "https://mor.org/", + "description": "The first peer-to-peer network for general purpose AI, powered by MOR", + "explorer": "https://basescan.org/token/0x7431ada8a591c955a994a21710752ef9b882b8e3", + "status": "active", + "id": "0x7431aDa8a591C955a994a21710752EF9b882b8e3", + "links": [ + { + "name": "x", + "url": "https://x.com/MorpheusAIs" + } + ] +} diff --git a/blockchains/base/assets/0x7431aDa8a591C955a994a21710752EF9b882b8e3/logo.png b/blockchains/base/assets/0x7431aDa8a591C955a994a21710752EF9b882b8e3/logo.png new file mode 100644 index 0000000000000..20c7da55796e5 Binary files /dev/null and b/blockchains/base/assets/0x7431aDa8a591C955a994a21710752EF9b882b8e3/logo.png differ diff --git a/blockchains/base/assets/0x7480527815ccAE421400Da01E052b120Cc4255E9/info.json b/blockchains/base/assets/0x7480527815ccAE421400Da01E052b120Cc4255E9/info.json new file mode 100644 index 0000000000000..c4fe6d05bf56e --- /dev/null +++ b/blockchains/base/assets/0x7480527815ccAE421400Da01E052b120Cc4255E9/info.json @@ -0,0 +1,21 @@ +{ + "name": "Workie", + "website": "https://workiebase.com/", + "description": "Meet Workie, the official mascot of the workers on Base.", + "explorer": "https://basescan.org/token/0x7480527815ccAE421400Da01E052b120Cc4255E9", + "type": "BASE", + "symbol": "WORKIE", + "decimals": 18, + "status": "active", + "id": "0x7480527815ccAE421400Da01E052b120Cc4255E9", + "links": [ + { + "name": "x", + "url": "https://x.com/WorkieBase" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/workie" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x7480527815ccAE421400Da01E052b120Cc4255E9/logo.png b/blockchains/base/assets/0x7480527815ccAE421400Da01E052b120Cc4255E9/logo.png new file mode 100644 index 0000000000000..18349b22d8429 Binary files /dev/null and b/blockchains/base/assets/0x7480527815ccAE421400Da01E052b120Cc4255E9/logo.png differ diff --git a/blockchains/base/assets/0x750647C34e4c6158940DF7740d342FefcB6Ee4b5/info.json b/blockchains/base/assets/0x750647C34e4c6158940DF7740d342FefcB6Ee4b5/info.json new file mode 100644 index 0000000000000..f9ca254a6424a --- /dev/null +++ b/blockchains/base/assets/0x750647C34e4c6158940DF7740d342FefcB6Ee4b5/info.json @@ -0,0 +1,26 @@ +{ + "name": "Make Europe Great Again", + "type": "BASE", + "symbol": "MEGA", + "decimals": 18, + "description": "Elon Musk has publicly declared his support for the MEGA and Make Europe Great Again. In many tweets on X, he praised MEGA movement for Europe and stated that the MEGA is 'the only hope for the Europe.'' Make Europe Great Again, the chancellor candidate of the Make Europe Great Again (MEGA), stands for conservative values and national sovereignty. ", + "website": "https://megatoken.site/", + "explorer": "https://basescan.org/token/0x750647C34e4c6158940DF7740d342FefcB6Ee4b5", + "id": "0x750647C34e4c6158940DF7740d342FefcB6Ee4b5", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/MEGATokenHub" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/make-europe-great-again/" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x750647C34e4c6158940DF7740d342FefcB6Ee4b5/logo.png b/blockchains/base/assets/0x750647C34e4c6158940DF7740d342FefcB6Ee4b5/logo.png new file mode 100644 index 0000000000000..a7fa225dbe60f Binary files /dev/null and b/blockchains/base/assets/0x750647C34e4c6158940DF7740d342FefcB6Ee4b5/logo.png differ diff --git a/blockchains/base/assets/0x764A726d9ceD0433A8D7643335919dEb03a9a935/info.json b/blockchains/base/assets/0x764A726d9ceD0433A8D7643335919dEb03a9a935/info.json new file mode 100644 index 0000000000000..17cb3a8715d38 --- /dev/null +++ b/blockchains/base/assets/0x764A726d9ceD0433A8D7643335919dEb03a9a935/info.json @@ -0,0 +1,25 @@ +{ + "name": "Pocket Network", + "type": "BASE", + "symbol": "POKT", + "decimals": 6, + "description": "Pocket Network is a decentralized blockchain data platform - a protocol that is built to connect to any blockchain and service the data demands of Web3 dApps. Pocket Network uses cost-efficient economics to coordinate and distribute data at scale, using the POKT token to facilitate the protocol's service.", + "website": "https://www.pokt.network/", + "explorer": "https://basescan.org/token/0x764a726d9ced0433a8d7643335919deb03a9a935", + "id": "0x764A726d9ceD0433A8D7643335919dEb03a9a935", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/poktnetwork?s=11&t=ZGzrL8B9N7GpbA3YLFvU9A" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pocket-network/" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x764A726d9ceD0433A8D7643335919dEb03a9a935/logo.png b/blockchains/base/assets/0x764A726d9ceD0433A8D7643335919dEb03a9a935/logo.png new file mode 100644 index 0000000000000..b528a6008038a Binary files /dev/null and b/blockchains/base/assets/0x764A726d9ceD0433A8D7643335919dEb03a9a935/logo.png differ diff --git a/blockchains/base/assets/0x768BE13e1680b5ebE0024C42c896E3dB59ec0149/info.json b/blockchains/base/assets/0x768BE13e1680b5ebE0024C42c896E3dB59ec0149/info.json new file mode 100644 index 0000000000000..72f0a8ed7fad2 --- /dev/null +++ b/blockchains/base/assets/0x768BE13e1680b5ebE0024C42c896E3dB59ec0149/info.json @@ -0,0 +1,30 @@ +{ + "name": "SKI MASK DOG", + "type": "BASE", + "symbol": "SKI", + "decimals": 9, + "description": "grab a mask and prepare for the biggest heist on Base", + "website": "https://www.skimaskdog.com/", + "explorer": "https://basescan.org/token/0x768BE13e1680b5ebE0024C42c896E3dB59ec0149", + "id": "0x768BE13e1680b5ebE0024C42c896E3dB59ec0149", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Ski_CTO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ski-mask-dog/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ski-mask-dog" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x768BE13e1680b5ebE0024C42c896E3dB59ec0149/logo.png b/blockchains/base/assets/0x768BE13e1680b5ebE0024C42c896E3dB59ec0149/logo.png new file mode 100644 index 0000000000000..656b33b11fde4 Binary files /dev/null and b/blockchains/base/assets/0x768BE13e1680b5ebE0024C42c896E3dB59ec0149/logo.png differ diff --git a/blockchains/base/assets/0x7777771763622a53574bc6F09121D1B94Aa528c3/info.json b/blockchains/base/assets/0x7777771763622a53574bc6F09121D1B94Aa528c3/info.json new file mode 100644 index 0000000000000..e548ac692c918 --- /dev/null +++ b/blockchains/base/assets/0x7777771763622a53574bc6F09121D1B94Aa528c3/info.json @@ -0,0 +1,17 @@ +{ + "name": "PIXIU", + "type": "BASE", + "symbol": "PIUU", + "decimals": 18, + "website": "https://pixiubase.com", + "description": "PIXIU is a community driven meme coin that aims to bring the meme coins community together.", + "explorer": "https://basescan.org/token/0x7777771763622a53574bc6f09121d1b94aa528c3", + "status": "active", + "id": "0x7777771763622a53574bc6F09121D1B94Aa528c3", + "links": [ + { + "name": "x", + "url": "https://x.com/piuutoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x7777771763622a53574bc6F09121D1B94Aa528c3/logo.png b/blockchains/base/assets/0x7777771763622a53574bc6F09121D1B94Aa528c3/logo.png new file mode 100644 index 0000000000000..0c163348466dd Binary files /dev/null and b/blockchains/base/assets/0x7777771763622a53574bc6F09121D1B94Aa528c3/logo.png differ diff --git a/blockchains/base/assets/0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9/info.json b/blockchains/base/assets/0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9/info.json new file mode 100644 index 0000000000000..5b7154afd62c6 --- /dev/null +++ b/blockchains/base/assets/0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9/info.json @@ -0,0 +1,25 @@ +{ + "name": "Baseswap", + "symbol": "BSWAP", + "type": "BASE", + "decimals": 18, + "description": "Decentralized finance leverages the individual and collective capacity of all of us, without interference.Join us on BASE chain now.", + "website": "https://baseswap.fi", + "explorer": "https://basescan.org/token/0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9", + "status": "active", + "id": "0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9", + "links": [ + { + "name": "telegram", + "url": "https://t.me/BaseswapFi" + }, + { + "name": "x", + "url": "https://x.com/BaseSwap_Fi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/baseswap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9/logo.png b/blockchains/base/assets/0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9/logo.png new file mode 100644 index 0000000000000..d2dd3f1836703 Binary files /dev/null and b/blockchains/base/assets/0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9/logo.png differ diff --git a/blockchains/base/assets/0x79bbF4508B1391af3A0F4B30bb5FC4aa9ab0E07C/info.json b/blockchains/base/assets/0x79bbF4508B1391af3A0F4B30bb5FC4aa9ab0E07C/info.json new file mode 100644 index 0000000000000..7f6a7194388db --- /dev/null +++ b/blockchains/base/assets/0x79bbF4508B1391af3A0F4B30bb5FC4aa9ab0E07C/info.json @@ -0,0 +1,21 @@ +{ + "name": "HeyAnon", + "type": "BASE", + "symbol": "Anon", + "decimals": 18, + "website": "https://heyanon.ai/", + "description": "HeyAnon is an AI DeFi protocol designed to simplify DeFi interactions and aggregate essential project-related information.", + "explorer": "https://basescan.org/token/0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c", + "status": "active", + "id": "0x79bbF4508B1391af3A0F4B30bb5FC4aa9ab0E07C", + "links": [ + { + "name": "x", + "url": "https://x.com/HeyAnonai" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hey-anon/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x79bbF4508B1391af3A0F4B30bb5FC4aa9ab0E07C/logo.png b/blockchains/base/assets/0x79bbF4508B1391af3A0F4B30bb5FC4aa9ab0E07C/logo.png new file mode 100644 index 0000000000000..20b1d1358f9c8 Binary files /dev/null and b/blockchains/base/assets/0x79bbF4508B1391af3A0F4B30bb5FC4aa9ab0E07C/logo.png differ diff --git a/blockchains/base/assets/0x7A5f5CcD46EBd7aC30615836D988ca3BD57412b3/info.json b/blockchains/base/assets/0x7A5f5CcD46EBd7aC30615836D988ca3BD57412b3/info.json new file mode 100644 index 0000000000000..af6c3de17a167 --- /dev/null +++ b/blockchains/base/assets/0x7A5f5CcD46EBd7aC30615836D988ca3BD57412b3/info.json @@ -0,0 +1,21 @@ +{ + "name": "TAOCat by Virtuals", + "symbol": "TAOCAT", + "decimals": 18, + "type": "BASE", + "website": "https://www.masa.ai/", + "description": "Meet TAO Cat, Bittensor's most adorable TAO maxi. As Bittensor's first self-improving AI Agent, she's got that pure Bittensor DNA running through her code – natively powered by both Bittensor and Virtuals, and crafted by the Masa team", + "explorer": "https://basescan.org/token/0x7a5f5ccd46ebd7ac30615836d988ca3bd57412b3", + "status": "active", + "id": "0x7A5f5CcD46EBd7aC30615836D988ca3BD57412b3", + "links": [ + { + "name": "x", + "url": "https://x.com/taocat_agent" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/taocat-by-virtuals-masa/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x7A5f5CcD46EBd7aC30615836D988ca3BD57412b3/logo.png b/blockchains/base/assets/0x7A5f5CcD46EBd7aC30615836D988ca3BD57412b3/logo.png new file mode 100644 index 0000000000000..46dabeef5b484 Binary files /dev/null and b/blockchains/base/assets/0x7A5f5CcD46EBd7aC30615836D988ca3BD57412b3/logo.png differ diff --git a/blockchains/base/assets/0x7A8A5012022BCCBf3EA4b03cD2bb5583d915fb1A/info.json b/blockchains/base/assets/0x7A8A5012022BCCBf3EA4b03cD2bb5583d915fb1A/info.json new file mode 100644 index 0000000000000..f36ad73659b21 --- /dev/null +++ b/blockchains/base/assets/0x7A8A5012022BCCBf3EA4b03cD2bb5583d915fb1A/info.json @@ -0,0 +1,29 @@ +{ + "name": "Chuck", + "type": "BASE", + "symbol": "CHUCK", + "decimals": 18, + "description": "CHUCK is a community-centric project with a focus on spotlighting the BASE ecosystem supporting dog charities. This initiative marks CHUCK as the first meme coin with a direct focus on benefiting our furry friends, aligning with the wider meme culture prevalent in the crypto industry.", + "website": "https://chuckonbase.io/", + "explorer": "https://basescan.org/token/0x7a8a5012022bccbf3ea4b03cd2bb5583d915fb1a", + "id": "0x7A8A5012022BCCBf3EA4b03cD2bb5583d915fb1A", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/CHUCK_on_Base" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chuck-on-base/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/chuck" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x7A8A5012022BCCBf3EA4b03cD2bb5583d915fb1A/logo.png b/blockchains/base/assets/0x7A8A5012022BCCBf3EA4b03cD2bb5583d915fb1A/logo.png new file mode 100644 index 0000000000000..06315a053b83f Binary files /dev/null and b/blockchains/base/assets/0x7A8A5012022BCCBf3EA4b03cD2bb5583d915fb1A/logo.png differ diff --git a/blockchains/base/assets/0x7F6F8bB1AA8206921e80Ab6aBf1ac5737E39Ab07/info.json b/blockchains/base/assets/0x7F6F8bB1AA8206921e80Ab6aBf1ac5737E39Ab07/info.json new file mode 100644 index 0000000000000..0f62d3922878c --- /dev/null +++ b/blockchains/base/assets/0x7F6F8bB1AA8206921e80Ab6aBf1ac5737E39Ab07/info.json @@ -0,0 +1,40 @@ +{ + "name": "machines-cash", + "symbol": "MACHINES", + "type": "BASE", + "decimals": 18, + "description": "Machines Cash enables private, mobile-first spending with scoped virtual cards backed by crypto collateral", + "website": "https://machines.cash", + "explorer": "https://basescan.org/token/0x7F6F8bB1AA8206921e80Ab6aBf1ac5737E39Ab07", + "status": "active", + "id": "0x7F6F8bB1AA8206921e80Ab6aBf1ac5737E39Ab07", + "links": [ + { + "name": "x", + "url": "https://x.com/machines_cash" + }, + { + "name": "docs", + "url": "https://docs.machines.cash" + }, + { + "name": "github", + "url": "https://github.com/machines-cash" + }, + { + "name": "source_code", + "url": "https://github.com/machines-cash" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/" + }, + { + "name": "telegram", + "url": "https://t.me/machinescashofficial" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/base/assets/0x7F6F8bB1AA8206921e80Ab6aBf1ac5737E39Ab07/logo.png b/blockchains/base/assets/0x7F6F8bB1AA8206921e80Ab6aBf1ac5737E39Ab07/logo.png new file mode 100644 index 0000000000000..718c5c305cafd Binary files /dev/null and b/blockchains/base/assets/0x7F6F8bB1AA8206921e80Ab6aBf1ac5737E39Ab07/logo.png differ diff --git a/blockchains/base/assets/0x7c6b91D9Be155A6Db01f749217d76fF02A7227F2/info.json b/blockchains/base/assets/0x7c6b91D9Be155A6Db01f749217d76fF02A7227F2/info.json new file mode 100644 index 0000000000000..32d356aefab46 --- /dev/null +++ b/blockchains/base/assets/0x7c6b91D9Be155A6Db01f749217d76fF02A7227F2/info.json @@ -0,0 +1,28 @@ +{ + "name": "Balancer", + "website": "https://balancer.finance/", + "description": "Balancer is a n-dimensional automated market-maker that allows anyone to create or add liquidity to customizable pools and earn trading fees. Instead of the traditional constant product AMM model, Balancer’s formula is a generalization that allows any number of tokens in any weights or trading fees.", + "explorer": "https://basescan.org/token/0x7c6b91D9Be155A6Db01f749217d76fF02A7227F2", + "type": "BASE", + "symbol": "BAL", + "decimals": 18, + "status": "active", + "id": "0x7c6b91D9Be155A6Db01f749217d76fF02A7227F2", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/BalancerLabs" + }, + { + "name": "github", + "url": "https://github.com/balancer-labs" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/balancer/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x7c6b91D9Be155A6Db01f749217d76fF02A7227F2/logo.png b/blockchains/base/assets/0x7c6b91D9Be155A6Db01f749217d76fF02A7227F2/logo.png new file mode 100644 index 0000000000000..6fc691716d6bd Binary files /dev/null and b/blockchains/base/assets/0x7c6b91D9Be155A6Db01f749217d76fF02A7227F2/logo.png differ diff --git a/blockchains/base/assets/0x7cdDA482A62f9F9fa9F724fDaF6e2904de7e5226/info.json b/blockchains/base/assets/0x7cdDA482A62f9F9fa9F724fDaF6e2904de7e5226/info.json new file mode 100644 index 0000000000000..42eea48fbf032 --- /dev/null +++ b/blockchains/base/assets/0x7cdDA482A62f9F9fa9F724fDaF6e2904de7e5226/info.json @@ -0,0 +1,21 @@ +{ + "name": "Ai16z", + "symbol": "Ai16z", + "type": "BASE", + "decimals": 18, + "description": "ai16z is the first AI VC fund, fully managed by Marc AIndreessen with recommendations from members of the DAO.", + "website": "https://ai16ztoken.top/", + "explorer": "https://basescan.org/token/0x7cdDA482A62f9F9fa9F724fDaF6e2904de7e5226", + "status": "active", + "id": "0x7cdDA482A62f9F9fa9F724fDaF6e2904de7e5226", + "links": [ + { + "name": "x", + "url": "https://x.com/ai16zbased" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ai16ztoken/" + } + ] + } \ No newline at end of file diff --git a/blockchains/base/assets/0x7cdDA482A62f9F9fa9F724fDaF6e2904de7e5226/logo.png b/blockchains/base/assets/0x7cdDA482A62f9F9fa9F724fDaF6e2904de7e5226/logo.png new file mode 100644 index 0000000000000..b6133132eec93 Binary files /dev/null and b/blockchains/base/assets/0x7cdDA482A62f9F9fa9F724fDaF6e2904de7e5226/logo.png differ diff --git a/blockchains/base/assets/0x7d89E05c0B93B24B5Cb23A073E60D008FEd1aCF9/info.json b/blockchains/base/assets/0x7d89E05c0B93B24B5Cb23A073E60D008FEd1aCF9/info.json new file mode 100644 index 0000000000000..04e2bbfec6f95 --- /dev/null +++ b/blockchains/base/assets/0x7d89E05c0B93B24B5Cb23A073E60D008FEd1aCF9/info.json @@ -0,0 +1,24 @@ +{ + "name": "member", + "symbol": "member", + "type": "BASE", + "decimals": 18, + "description": "member go up", + "website": "https://member.clinic", + "explorer": "https://basescan.org/token/0x7d89E05c0B93B24B5Cb23A073E60D008FEd1aCF9", + "status": "active", + "id": "0x7d89E05c0B93B24B5Cb23A073E60D008FEd1aCF9", + "links": [ + { + "name": "x", + "url": "https://x.com/mlmwtf" + }, + { + "name": "forum", + "url": "https://warpcast.com/~/channel/members-only" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x7d89E05c0B93B24B5Cb23A073E60D008FEd1aCF9/logo.png b/blockchains/base/assets/0x7d89E05c0B93B24B5Cb23A073E60D008FEd1aCF9/logo.png new file mode 100644 index 0000000000000..534aeb60936f5 Binary files /dev/null and b/blockchains/base/assets/0x7d89E05c0B93B24B5Cb23A073E60D008FEd1aCF9/logo.png differ diff --git a/blockchains/base/assets/0x81496F85AbaF8bd2e13D90379fdE86C533D8670D/info.json b/blockchains/base/assets/0x81496F85AbaF8bd2e13D90379fdE86C533D8670D/info.json new file mode 100644 index 0000000000000..d907c2c64ea19 --- /dev/null +++ b/blockchains/base/assets/0x81496F85AbaF8bd2e13D90379fdE86C533D8670D/info.json @@ -0,0 +1,21 @@ +{ + "name": "AGIXBT by Virtuals", + "symbol": "AGIXBT", + "type": "BASE", + "decimals": 18, + "description": "AGIXBT is a fully autonomous, AI-driven corporation - a radical experiment pushing the boundaries of AGI-led evolution.", + "website": "https://agixbt.com/", + "explorer": "https://basescan.org/token/0x81496f85abaf8bd2e13d90379fde86c533d8670d", + "status": "active", + "id": "0x81496F85AbaF8bd2e13D90379fdE86C533D8670D", + "links": [ + { + "name": "x", + "url": "https://x.com/agixbt" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/agixbt-by-virtuals/" + } + ] + } \ No newline at end of file diff --git a/blockchains/base/assets/0x81496F85AbaF8bd2e13D90379fdE86C533D8670D/logo.png b/blockchains/base/assets/0x81496F85AbaF8bd2e13D90379fdE86C533D8670D/logo.png new file mode 100644 index 0000000000000..206e4a28fb82c Binary files /dev/null and b/blockchains/base/assets/0x81496F85AbaF8bd2e13D90379fdE86C533D8670D/logo.png differ diff --git a/blockchains/base/assets/0x820C137fa70C8691f0e44Dc420a5e53c168921Dc/info.json b/blockchains/base/assets/0x820C137fa70C8691f0e44Dc420a5e53c168921Dc/info.json new file mode 100644 index 0000000000000..9126ec3183077 --- /dev/null +++ b/blockchains/base/assets/0x820C137fa70C8691f0e44Dc420a5e53c168921Dc/info.json @@ -0,0 +1,21 @@ +{ + "name": "USDS Stablecoin", + "type": "BASE", + "symbol": "USDS", + "decimals": 18, + "website": "https://sky.money/", + "description": "USDS token is an ERC-20 compliant token with added support for permit functionality and EIP-1271 smart contract signature validation.", + "explorer": "https://basescan.org/token/0x820C137fa70C8691f0e44Dc420a5e53c168921Dc", + "status": "active", + "id": "0x820C137fa70C8691f0e44Dc420a5e53c168921Dc", + "links": [ + { + "name": "x", + "url": "https://x.com/SkyEcosystem" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usds/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x820C137fa70C8691f0e44Dc420a5e53c168921Dc/logo.png b/blockchains/base/assets/0x820C137fa70C8691f0e44Dc420a5e53c168921Dc/logo.png new file mode 100644 index 0000000000000..48154769eaeba Binary files /dev/null and b/blockchains/base/assets/0x820C137fa70C8691f0e44Dc420a5e53c168921Dc/logo.png differ diff --git a/blockchains/base/assets/0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913/info.json b/blockchains/base/assets/0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913/info.json new file mode 100644 index 0000000000000..8395d62ead1e8 --- /dev/null +++ b/blockchains/base/assets/0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913/info.json @@ -0,0 +1,36 @@ +{ + "name": "USDC", + "symbol": "USDC", + "type": "BASE", + "decimals": 6, + "description": "USDC is a fully collateralized US dollar stablecoin, an Ethereum powered coin and is the brainchild of CENTRE, an open source project bootstrapped by contributions from Circle and Coinbase.", + "website": "https://centre.io/usdc", + "explorer": "https://basescan.org/token/0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913", + "status": "active", + "id": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913", + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913/logo.png b/blockchains/base/assets/0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913/logo.png new file mode 100644 index 0000000000000..a135c887a8614 Binary files /dev/null and b/blockchains/base/assets/0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913/logo.png differ diff --git a/blockchains/base/assets/0x83AbFC4bEEC2ecf12995005d751a42df691c09c1/info.json b/blockchains/base/assets/0x83AbFC4bEEC2ecf12995005d751a42df691c09c1/info.json new file mode 100644 index 0000000000000..0066683371d5e --- /dev/null +++ b/blockchains/base/assets/0x83AbFC4bEEC2ecf12995005d751a42df691c09c1/info.json @@ -0,0 +1,21 @@ +{ + "name": "H1DR4 by Virtuals", + "symbol": "H1DR4", + "type": "BASE", + "decimals": 18, + "description": "What is H1DR4_Agent? H1DR4 is an advanced AI agent developed under the G.A.M.E. Protocol framework, aimed at transforming how we interact with and analyze digital information", + "website": "https://h1dr4.dev/", + "explorer": "https://basescan.org/token/0x83abfc4beec2ecf12995005d751a42df691c09c1", + "status": "active", + "id": "0x83AbFC4bEEC2ecf12995005d751a42df691c09c1", + "links": [ + { + "name": "x", + "url": "https://x.com/h1dr4_agent" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/h1dr4-by-virtuals/" + } + ] + } \ No newline at end of file diff --git a/blockchains/base/assets/0x83AbFC4bEEC2ecf12995005d751a42df691c09c1/logo.png b/blockchains/base/assets/0x83AbFC4bEEC2ecf12995005d751a42df691c09c1/logo.png new file mode 100644 index 0000000000000..1187e04d8773f Binary files /dev/null and b/blockchains/base/assets/0x83AbFC4bEEC2ecf12995005d751a42df691c09c1/logo.png differ diff --git a/blockchains/base/assets/0x83dB73EF5192de4B6a4c92bD0141Ba1a0Dc87c65/info.json b/blockchains/base/assets/0x83dB73EF5192de4B6a4c92bD0141Ba1a0Dc87c65/info.json new file mode 100644 index 0000000000000..91cb7a48c4dbd --- /dev/null +++ b/blockchains/base/assets/0x83dB73EF5192de4B6a4c92bD0141Ba1a0Dc87c65/info.json @@ -0,0 +1,17 @@ +{ + "name": "Compounding Open Dollar", + "symbol": "cUSDO", + "website": "https://openeden.com/", + "description": "The OpenEden CompoundingOpenDollar ('USDO') is a rebasing yield-bearing stablecoin issued by OpenEden Digital ('OED'), a Bermuda Monetary Authority ('BMA') licensed digital asset issuer. USDO is backed by high-quality, liquid reserves, primarily consisting of U.S. Treasury bills.", + "explorer": "https://basescan.org/token/0x83db73ef5192de4b6a4c92bd0141ba1a0dc87c65", + "type": "BASE", + "decimals": 18, + "status": "active", + "id": "0x83dB73EF5192de4B6a4c92bD0141Ba1a0Dc87c65", + "links": [ + { + "name": "x", + "url": "https://x.com/OpenEden_X" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x83dB73EF5192de4B6a4c92bD0141Ba1a0Dc87c65/logo.png b/blockchains/base/assets/0x83dB73EF5192de4B6a4c92bD0141Ba1a0Dc87c65/logo.png new file mode 100644 index 0000000000000..e2a52a1b6d4da Binary files /dev/null and b/blockchains/base/assets/0x83dB73EF5192de4B6a4c92bD0141Ba1a0Dc87c65/logo.png differ diff --git a/blockchains/base/assets/0x858c50C3AF1913b0E849aFDB74617388a1a5340d/info.json b/blockchains/base/assets/0x858c50C3AF1913b0E849aFDB74617388a1a5340d/info.json new file mode 100644 index 0000000000000..0b1bc63b1dd1a --- /dev/null +++ b/blockchains/base/assets/0x858c50C3AF1913b0E849aFDB74617388a1a5340d/info.json @@ -0,0 +1,17 @@ +{ + "name": "SubQueryToken", + "website": "https://subquery.network/", + "description": "Pioneering fast, flexible, and scalable web3 infrastructure, SubQuery provide fast, reliable, and decentralised RPCs and Data indexing services to over 150 chains.", + "explorer": "https://basescan.org/token/0x858c50C3AF1913b0E849aFDB74617388a1a5340d", + "type": "BASE", + "symbol": "SQT", + "decimals": 18, + "status": "active", + "id": "0x858c50C3AF1913b0E849aFDB74617388a1a5340d", + "links": [ + { + "name": "x", + "url": "https://x.com/SubQueryNetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x858c50C3AF1913b0E849aFDB74617388a1a5340d/logo.png b/blockchains/base/assets/0x858c50C3AF1913b0E849aFDB74617388a1a5340d/logo.png new file mode 100644 index 0000000000000..db6f6d376d241 Binary files /dev/null and b/blockchains/base/assets/0x858c50C3AF1913b0E849aFDB74617388a1a5340d/logo.png differ diff --git a/blockchains/base/assets/0x8761155c814c807cD3CcD15B256D69D3C10f198C/info.json b/blockchains/base/assets/0x8761155c814c807cD3CcD15B256D69D3C10f198C/info.json new file mode 100644 index 0000000000000..c50f1ff3969cc --- /dev/null +++ b/blockchains/base/assets/0x8761155c814c807cD3CcD15B256D69D3C10f198C/info.json @@ -0,0 +1,29 @@ +{ + "name": "JoystreamERC20", + "type": "BASE", + "symbol": "JOY", + "decimals": 10, + "description": "Joystream is a video platform protocol; it does for video publishing what e-mail did for mail, and Bitcoin did for money. On Joystream, all profiles, videos and social interactions live on a dedicated high throughput public blockchain. A user-controlled DAO funds creators and builders, and operates the storage and content delivery infrastructure.", + "website": "https://www.joystream.org/", + "explorer": "https://basescan.org/token/0x8761155c814c807cd3ccd15b256d69d3c10f198c", + "id": "0x8761155c814c807cD3CcD15B256D69D3C10f198C", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/JoystreamDAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/joystream/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/joystream" + } + ], + "tags": [ + "nft" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x8761155c814c807cD3CcD15B256D69D3C10f198C/logo.png b/blockchains/base/assets/0x8761155c814c807cD3CcD15B256D69D3C10f198C/logo.png new file mode 100644 index 0000000000000..c6bd87c27e983 Binary files /dev/null and b/blockchains/base/assets/0x8761155c814c807cD3CcD15B256D69D3C10f198C/logo.png differ diff --git a/blockchains/base/assets/0x8B781e0f2967571e96D5D95b3cB61E27785eeaa5/info.json b/blockchains/base/assets/0x8B781e0f2967571e96D5D95b3cB61E27785eeaa5/info.json new file mode 100644 index 0000000000000..2843391f88294 --- /dev/null +++ b/blockchains/base/assets/0x8B781e0f2967571e96D5D95b3cB61E27785eeaa5/info.json @@ -0,0 +1,21 @@ +{ + "name": "Borkie", + "website": "https://borkieonbase.com/lander", + "description": "Hi, I'm Borkie the yorkie on base - Where the only thing I fetch, is the moon! I'm a fun loving pup you can add to your wallet. Join our pack today and let's wag our tails to the moon together.", + "explorer": "https://basescan.org/token/0x8b781e0f2967571e96d5d95b3cb61e27785eeaa5", + "type": "BASE", + "symbol": "BORKIE", + "decimals": 18, + "status": "active", + "id": "0x8B781e0f2967571e96D5D95b3cB61E27785eeaa5", + "links": [ + { + "name": "x", + "url": "https://x.com/borkieonbase" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/borkie" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x8B781e0f2967571e96D5D95b3cB61E27785eeaa5/logo.png b/blockchains/base/assets/0x8B781e0f2967571e96D5D95b3cB61E27785eeaa5/logo.png new file mode 100644 index 0000000000000..d7908c3b838d7 Binary files /dev/null and b/blockchains/base/assets/0x8B781e0f2967571e96D5D95b3cB61E27785eeaa5/logo.png differ diff --git a/blockchains/base/assets/0x8C9037D1Ef5c6D1f6816278C7AAF5491d24CD527/info.json b/blockchains/base/assets/0x8C9037D1Ef5c6D1f6816278C7AAF5491d24CD527/info.json new file mode 100644 index 0000000000000..6db61e7da37d1 --- /dev/null +++ b/blockchains/base/assets/0x8C9037D1Ef5c6D1f6816278C7AAF5491d24CD527/info.json @@ -0,0 +1,21 @@ +{ + "name": "Moxie", + "website": "https://moxie.xyz/", + "description": "Create and own fan tokens", + "explorer": "https://basescan.org/token/0x8C9037D1Ef5c6D1f6816278C7AAF5491d24CD527", + "type": "BASE", + "symbol": "MOXIE", + "decimals": 18, + "status": "active", + "id": "0x8C9037D1Ef5c6D1f6816278C7AAF5491d24CD527", + "links": [ + { + "name": "x", + "url": "https://x.com/moxie_xyz" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/moxie/" + } + ] + } \ No newline at end of file diff --git a/blockchains/base/assets/0x8C9037D1Ef5c6D1f6816278C7AAF5491d24CD527/logo.png b/blockchains/base/assets/0x8C9037D1Ef5c6D1f6816278C7AAF5491d24CD527/logo.png new file mode 100644 index 0000000000000..626e36882f36b Binary files /dev/null and b/blockchains/base/assets/0x8C9037D1Ef5c6D1f6816278C7AAF5491d24CD527/logo.png differ diff --git a/blockchains/base/assets/0x8Ee73c484A26e0A5df2Ee2a4960B789967dd0415/info.json b/blockchains/base/assets/0x8Ee73c484A26e0A5df2Ee2a4960B789967dd0415/info.json new file mode 100644 index 0000000000000..4a05e4bc2df6d --- /dev/null +++ b/blockchains/base/assets/0x8Ee73c484A26e0A5df2Ee2a4960B789967dd0415/info.json @@ -0,0 +1,34 @@ +{ + "name": "Curve DAO Token", + "website": "https://curve.finance", + "description": "CRV is a governance token on the Curve platform with time-weighted voting and value accrual mechanisms.", + "explorer": "https://basescan.org/token/0x8ee73c484a26e0a5df2ee2a4960b789967dd0415", + "research": "https://research.binance.com/en/projects/curve", + "type": "BASE", + "symbol": "CRV", + "decimals": 18, + "status": "active", + "id": "0x8Ee73c484A26e0A5df2Ee2a4960B789967dd0415", + "tags": [ + "defi", + "governance" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/curvefi/curve-contract" + }, + { + "name": "x", + "url": "https://x.com/CurveFinance" + }, + { + "name": "telegram", + "url": "https://t.me/curvefi" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/curve-dao-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x8Ee73c484A26e0A5df2Ee2a4960B789967dd0415/logo.png b/blockchains/base/assets/0x8Ee73c484A26e0A5df2Ee2a4960B789967dd0415/logo.png new file mode 100644 index 0000000000000..b820f250c2d3b Binary files /dev/null and b/blockchains/base/assets/0x8Ee73c484A26e0A5df2Ee2a4960B789967dd0415/logo.png differ diff --git a/blockchains/base/assets/0x8Fbd0648971d56f1f2c35Fa075Ff5Bc75fb0e39D/info.json b/blockchains/base/assets/0x8Fbd0648971d56f1f2c35Fa075Ff5Bc75fb0e39D/info.json new file mode 100644 index 0000000000000..ec2152b0fb46d --- /dev/null +++ b/blockchains/base/assets/0x8Fbd0648971d56f1f2c35Fa075Ff5Bc75fb0e39D/info.json @@ -0,0 +1,21 @@ +{ + "name": "MBS", + "website": "https://unkjd.com/", + "description": "UNKJD : Striker League is a fast, strategy-based sports game. Build your dream team of MonkeyAthletes, play matches, compete in tournaments and climb the Leagues! $MBS is the main in-game currency of MonkeyLeague and ecosystem.", + "explorer": "https://basescan.org/token/0x8Fbd0648971d56f1f2c35Fa075Ff5Bc75fb0e39D", + "type": "BASE", + "symbol": "MBS", + "decimals": 18, + "status": "active", + "id": "0x8Fbd0648971d56f1f2c35Fa075Ff5Bc75fb0e39D", + "links": [ + { + "name": "x", + "url": "https://x.com/UNKJDgames" + }, + { + "name": "telegram", + "url": "https://t.me/unkjd_announcements" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x8Fbd0648971d56f1f2c35Fa075Ff5Bc75fb0e39D/logo.png b/blockchains/base/assets/0x8Fbd0648971d56f1f2c35Fa075Ff5Bc75fb0e39D/logo.png new file mode 100644 index 0000000000000..1ed9f85bd7f38 Binary files /dev/null and b/blockchains/base/assets/0x8Fbd0648971d56f1f2c35Fa075Ff5Bc75fb0e39D/logo.png differ diff --git a/blockchains/base/assets/0x8Fe815417913a93Ea99049FC0718ee1647A2a07c/info.json b/blockchains/base/assets/0x8Fe815417913a93Ea99049FC0718ee1647A2a07c/info.json new file mode 100644 index 0000000000000..c9ddd1b790801 --- /dev/null +++ b/blockchains/base/assets/0x8Fe815417913a93Ea99049FC0718ee1647A2a07c/info.json @@ -0,0 +1,29 @@ +{ + "name": "XSwap", + "type": "BASE", + "symbol": "XSWAP", + "decimals": 18, + "description": "XSwap is a dapp built on Chainlink CCIP - a decentralized interoperability protocol to transfer messages and funds between blockchains. XSwap provides a service layer on top of CCIP to execute cross-chain token swaps and flexible smart contract execution on the destination chains.", + "website": "https://xswap.link/", + "explorer": "https://basescan.org/token/0x8fe815417913a93ea99049fc0718ee1647a2a07c", + "id": "0x8Fe815417913a93Ea99049FC0718ee1647A2a07c", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/xswap_link" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/xswap/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/xswap" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x8Fe815417913a93Ea99049FC0718ee1647A2a07c/logo.png b/blockchains/base/assets/0x8Fe815417913a93Ea99049FC0718ee1647A2a07c/logo.png new file mode 100644 index 0000000000000..68a3b57040af2 Binary files /dev/null and b/blockchains/base/assets/0x8Fe815417913a93Ea99049FC0718ee1647A2a07c/logo.png differ diff --git a/blockchains/base/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/info.json b/blockchains/base/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/info.json new file mode 100644 index 0000000000000..4a1228a903073 --- /dev/null +++ b/blockchains/base/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/info.json @@ -0,0 +1,24 @@ +{ + "name": "Colombian Peso", + "website": "https://www.ripio.com/es/criptos/stablecoins-locales", + "description": "wCOP is a fully collateralized stablecoin pegged 1:1 to the Colombian Peso (COP). Issued and governed by a Ripio subsidiary, it brings COP on-chain so Colombians and global users can transact, save, and build on decentralized networks in their local currency.", + "explorer": "https://basescan.org/token/0x8a1D45e102e886510e891d2Ec656a708991e2D76", + "type": "ERC20", + "symbol": "wCOP", + "decimals": 18, + "status": "active", + "id": "0x8a1D45e102e886510e891d2Ec656a708991e2D76", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/RipioApp" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/colombian-peso" + } + ] +} diff --git a/blockchains/base/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/logo.png b/blockchains/base/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/logo.png new file mode 100644 index 0000000000000..c7f511bbf443a Binary files /dev/null and b/blockchains/base/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/logo.png differ diff --git a/blockchains/base/assets/0x8a5F9a6b653ecbDb406f9EB5F0C8dDba10919Aec/info.json b/blockchains/base/assets/0x8a5F9a6b653ecbDb406f9EB5F0C8dDba10919Aec/info.json new file mode 100644 index 0000000000000..87863b2bb94b8 --- /dev/null +++ b/blockchains/base/assets/0x8a5F9a6b653ecbDb406f9EB5F0C8dDba10919Aec/info.json @@ -0,0 +1,17 @@ +{ + "name": "bloo foster", + "website": "https://www.bloofoster.com", + "description": "BLOO, ONCE A HOMELESS SOUL, WAS RESCUED FROM THE STREETS BY BRIAN AND JESSE, WHO EMBRACED HIM INTO THEIR LOVING CARE", + "explorer": "https://basescan.org/token/0x8a5F9a6b653ecbDb406f9EB5F0C8dDba10919Aec", + "type": "BASE", + "symbol": "bloo", + "decimals": 18, + "status": "active", + "id": "0x8a5F9a6b653ecbDb406f9EB5F0C8dDba10919Aec", + "links": [ + { + "name": "x", + "url": "https://x.com/bloofostercoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x8a5F9a6b653ecbDb406f9EB5F0C8dDba10919Aec/logo.png b/blockchains/base/assets/0x8a5F9a6b653ecbDb406f9EB5F0C8dDba10919Aec/logo.png new file mode 100644 index 0000000000000..fed5325eb7a72 Binary files /dev/null and b/blockchains/base/assets/0x8a5F9a6b653ecbDb406f9EB5F0C8dDba10919Aec/logo.png differ diff --git a/blockchains/base/assets/0x8bFAc1b375bf2894D6F12fb2Eb48B1C1a7916789/info.json b/blockchains/base/assets/0x8bFAc1b375bf2894D6F12fb2Eb48B1C1a7916789/info.json new file mode 100644 index 0000000000000..9df6331dfa00e --- /dev/null +++ b/blockchains/base/assets/0x8bFAc1b375bf2894D6F12fb2Eb48B1C1a7916789/info.json @@ -0,0 +1,27 @@ +{ + "name": "GAME by Virtuals", + "type": "BASE", + "symbol": "GAME", + "decimals": 18, + "description": "GAME empowers AI agents to operate autonomously, processing inputs and generating responses while learning from past interactions. It enhances decision-making by leveraging long-term memory, including experiences, reflections, and dynamic personality traits. By continuously evaluating the outcomes of actions and conversations, GAME enables agents to refine their knowledge and improve their planning and performance over time.", + "website": "https://app.virtuals.io/virtuals/273", + "explorer": "https://basescan.org/token/0x8bFAc1b375bf2894D6F12fb2Eb48B1C1a7916789", + "id": "0x8bFAc1b375bf2894D6F12fb2Eb48B1C1a7916789", + "status": "active", + "links": [ + + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/game-by-virtuals/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/game-by-virtuals" + } + + ], + "tags": [ + "deflationary" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x8bFAc1b375bf2894D6F12fb2Eb48B1C1a7916789/logo.png b/blockchains/base/assets/0x8bFAc1b375bf2894D6F12fb2Eb48B1C1a7916789/logo.png new file mode 100644 index 0000000000000..21cb73b69f05d Binary files /dev/null and b/blockchains/base/assets/0x8bFAc1b375bf2894D6F12fb2Eb48B1C1a7916789/logo.png differ diff --git a/blockchains/base/assets/0x8c81B4c816d66D36c4bF348BdeC01dBCbC70E987/info.json b/blockchains/base/assets/0x8c81B4c816d66D36c4bF348BdeC01dBCbC70E987/info.json new file mode 100644 index 0000000000000..5c28eccf39afc --- /dev/null +++ b/blockchains/base/assets/0x8c81B4c816d66D36c4bF348BdeC01dBCbC70E987/info.json @@ -0,0 +1,17 @@ +{ + "name": "Briun Armstrung", + "type": "BASE", + "symbol": "BRIUN", + "decimals": 18, + "website": "https://briunarmstrung.com/", + "description": "Briun is the first deflationary memecoin on Base chain thanks to our flywheel mechanism (UniV3 fees used for buyback and burn).", + "explorer": "https://basescan.org/token/0x8c81b4c816d66d36c4bf348bdec01dbcbc70e987", + "status": "active", + "id": "0x8c81B4c816d66D36c4bF348BdeC01dBCbC70E987", + "links": [ + { + "name": "x", + "url": "https://x.com/Briun_Armstrung" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x8c81B4c816d66D36c4bF348BdeC01dBCbC70E987/logo.png b/blockchains/base/assets/0x8c81B4c816d66D36c4bF348BdeC01dBCbC70E987/logo.png new file mode 100644 index 0000000000000..bc80f16b17640 Binary files /dev/null and b/blockchains/base/assets/0x8c81B4c816d66D36c4bF348BdeC01dBCbC70E987/logo.png differ diff --git a/blockchains/base/assets/0x91Ad1b44913cD1B8241A4Ff1e2EAa198DA6Bf4c9/info.json b/blockchains/base/assets/0x91Ad1b44913cD1B8241A4Ff1e2EAa198DA6Bf4c9/info.json new file mode 100644 index 0000000000000..d8dd7493b81fa --- /dev/null +++ b/blockchains/base/assets/0x91Ad1b44913cD1B8241A4Ff1e2EAa198DA6Bf4c9/info.json @@ -0,0 +1,24 @@ +{ + "name": "Altura", + "type": "BASE", + "symbol": "ALU", + "decimals": 18, + "description": "Altura is revolutionizing the gaming industry by making it easy to build, scale, and monetize Web3 and AI-powered games. By combining blockchain technology with cutting-edge artificial intelligence, Altura enables developers to create immersive gaming experiences with intelligent non-player characters (NPCs) and dynamic in-game assets.", + "website": "https://altura.com/", + "explorer": "https://basescan.org/token/0x91Ad1b44913cD1B8241A4Ff1e2EAa198DA6Bf4c9", + "id": "0x91Ad1b44913cD1B8241A4Ff1e2EAa198DA6Bf4c9", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Altura" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/altura/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x91Ad1b44913cD1B8241A4Ff1e2EAa198DA6Bf4c9/logo.png b/blockchains/base/assets/0x91Ad1b44913cD1B8241A4Ff1e2EAa198DA6Bf4c9/logo.png new file mode 100644 index 0000000000000..c03d201d3e582 Binary files /dev/null and b/blockchains/base/assets/0x91Ad1b44913cD1B8241A4Ff1e2EAa198DA6Bf4c9/logo.png differ diff --git a/blockchains/base/assets/0x928A6a9fc62b2C94BaF2992a6fBa4715f5Bb0066/info.json b/blockchains/base/assets/0x928A6a9fc62b2C94BaF2992a6fBa4715f5Bb0066/info.json new file mode 100644 index 0000000000000..f28b4d06d75c4 --- /dev/null +++ b/blockchains/base/assets/0x928A6a9fc62b2C94BaF2992a6fBa4715f5Bb0066/info.json @@ -0,0 +1,21 @@ +{ + "name": "Rug World Assets", + "website": "https://rugwa.com/", + "description": "$RWA is a meme token.", + "explorer": "https://basescan.org/token/0x928a6a9fc62b2c94baf2992a6fba4715f5bb0066", + "type": "BASE", + "symbol": "RWA", + "decimals": 18, + "status": "active", + "id": "0x928A6a9fc62b2C94BaF2992a6fBa4715f5Bb0066", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rug-world-assets/" + }, + { + "name": "x", + "url": "https://x.com/RWABase" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x928A6a9fc62b2C94BaF2992a6fBa4715f5Bb0066/logo.png b/blockchains/base/assets/0x928A6a9fc62b2C94BaF2992a6fBa4715f5Bb0066/logo.png new file mode 100644 index 0000000000000..d8a3aa6dd340b Binary files /dev/null and b/blockchains/base/assets/0x928A6a9fc62b2C94BaF2992a6fBa4715f5Bb0066/logo.png differ diff --git a/blockchains/base/assets/0x940181a94A35A4569E4529A3CDfB74e38FD98631/info.json b/blockchains/base/assets/0x940181a94A35A4569E4529A3CDfB74e38FD98631/info.json new file mode 100644 index 0000000000000..4fcb1d6718428 --- /dev/null +++ b/blockchains/base/assets/0x940181a94A35A4569E4529A3CDfB74e38FD98631/info.json @@ -0,0 +1,21 @@ +{ + "name": "Aerodrome", + "type": "BASE", + "symbol": "AERO", + "decimals": 18, + "website": "https://aerodrome.finance/", + "description": "Aerodrome Finance is a next-generation AMM designed to serve as Base's central liquidity hub, combining a powerful liquidity incentive engine, vote-lock governance model, and friendly user experience.", + "explorer": "https://basescan.org/token/0x940181a94a35a4569e4529a3cdfb74e38fd98631", + "status": "active", + "id": "0x940181a94A35A4569E4529A3CDfB74e38FD98631", + "links": [ + { + "name": "x", + "url": "https://x.com/AerodromeFi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/aerodrome-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x940181a94A35A4569E4529A3CDfB74e38FD98631/logo.png b/blockchains/base/assets/0x940181a94A35A4569E4529A3CDfB74e38FD98631/logo.png new file mode 100644 index 0000000000000..2cd0275db75b1 Binary files /dev/null and b/blockchains/base/assets/0x940181a94A35A4569E4529A3CDfB74e38FD98631/logo.png differ diff --git a/blockchains/base/assets/0x96419929d7949D6A801A6909c145C8EEf6A40431/info.json b/blockchains/base/assets/0x96419929d7949D6A801A6909c145C8EEf6A40431/info.json new file mode 100644 index 0000000000000..f26770df4a794 --- /dev/null +++ b/blockchains/base/assets/0x96419929d7949D6A801A6909c145C8EEf6A40431/info.json @@ -0,0 +1,25 @@ +{ + "name": "Spectral Token", + "type": "BASE", + "symbol": "SPEC", + "decimals": 18, + "description": "Spectral is simplifying the creation and deployment of decentralized applications through autonomous Onchain Agents. Syntax, Spectral’s flagship product, translates natural language into Solidity code, enabling both novices and experts to build on the blockchain effortlessly. With a commitment to transparency and user empowerment, Spectral is shaping a future where anyone can participate in the blockchain revolution.", + "website": "https://www.spectrallabs.xyz/", + "explorer": "https://basescan.org/token/0x96419929d7949d6a801a6909c145c8eef6a40431", + "id": "0x96419929d7949D6A801A6909c145C8EEf6A40431", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/spectral_labs?s=11&t=ZGzrL8B9N7GpbA3YLFvU9A" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spectral/" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x96419929d7949D6A801A6909c145C8EEf6A40431/logo.png b/blockchains/base/assets/0x96419929d7949D6A801A6909c145C8EEf6A40431/logo.png new file mode 100644 index 0000000000000..aaaee704fa4db Binary files /dev/null and b/blockchains/base/assets/0x96419929d7949D6A801A6909c145C8EEf6A40431/logo.png differ diff --git a/blockchains/base/assets/0x9704d2adBc02C085ff526a37ac64872027AC8a50/info.json b/blockchains/base/assets/0x9704d2adBc02C085ff526a37ac64872027AC8a50/info.json new file mode 100644 index 0000000000000..710c5aeda9fba --- /dev/null +++ b/blockchains/base/assets/0x9704d2adBc02C085ff526a37ac64872027AC8a50/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bsop", + "symbol": "Bsop", + "type": "BASE", + "decimals": 18, + "description": "$BSOP is an AI Meme Agent on Base with true degen vibes.", + "website": "https://bisop.tech/", + "explorer": "https://basescan.org/token/0x9704d2adbc02c085ff526a37ac64872027ac8a50", + "status": "active", + "id": "0x9704d2adBc02C085ff526a37ac64872027AC8a50", + "links": [ + { + "name": "x", + "url": "https://x.com/BsopBase" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bsop/" + } + ] + } \ No newline at end of file diff --git a/blockchains/base/assets/0x9704d2adBc02C085ff526a37ac64872027AC8a50/logo.png b/blockchains/base/assets/0x9704d2adBc02C085ff526a37ac64872027AC8a50/logo.png new file mode 100644 index 0000000000000..8fab54ddfdac4 Binary files /dev/null and b/blockchains/base/assets/0x9704d2adBc02C085ff526a37ac64872027AC8a50/logo.png differ diff --git a/blockchains/base/assets/0x97c806e7665d3AFd84A8Fe1837921403D59F3Dcc/info.json b/blockchains/base/assets/0x97c806e7665d3AFd84A8Fe1837921403D59F3Dcc/info.json new file mode 100644 index 0000000000000..afab7c607bc2c --- /dev/null +++ b/blockchains/base/assets/0x97c806e7665d3AFd84A8Fe1837921403D59F3Dcc/info.json @@ -0,0 +1,21 @@ +{ + "name": "Artificial Liquid Intelligence", + "type": "BASE", + "symbol": "ALI", + "decimals": 18, + "website": "https://www.aiprotocol.info/", + "description": "The ALI Token is the native utility token of the AI Protocol.", + "explorer": "https://basescan.org/token/0x97c806e7665d3afd84a8fe1837921403d59f3dcc", + "status": "active", + "id": "0x97c806e7665d3AFd84A8Fe1837921403D59F3Dcc", + "links": [ + { + "name": "x", + "url": "https://x.com/real_alethea" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/alethea-artificial-liquid-intelligence-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x97c806e7665d3AFd84A8Fe1837921403D59F3Dcc/logo.png b/blockchains/base/assets/0x97c806e7665d3AFd84A8Fe1837921403D59F3Dcc/logo.png new file mode 100644 index 0000000000000..9a1ba684ab8b3 Binary files /dev/null and b/blockchains/base/assets/0x97c806e7665d3AFd84A8Fe1837921403D59F3Dcc/logo.png differ diff --git a/blockchains/base/assets/0x98d0baa52b2D063E780DE12F615f963Fe8537553/info.json b/blockchains/base/assets/0x98d0baa52b2D063E780DE12F615f963Fe8537553/info.json new file mode 100644 index 0000000000000..eeb0eff4854f8 --- /dev/null +++ b/blockchains/base/assets/0x98d0baa52b2D063E780DE12F615f963Fe8537553/info.json @@ -0,0 +1,17 @@ +{ + "name": "KAITO", + "symbol": "KAITO", + "website": "https://yaps.kaito.ai", + "description": "$KAITO is the native token and the fundamental building block of the AI-powered InfoFi network", + "explorer": "https://basescan.org/token/0x98d0baa52b2D063E780DE12F615f963Fe8537553", + "decimals": 18, + "status": "active", + "id": "0x98d0baa52b2D063E780DE12F615f963Fe8537553", + "type": "BASE", + "links": [ + { + "name": "x", + "url": "https://x.com/kaitoai" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x98d0baa52b2D063E780DE12F615f963Fe8537553/logo.png b/blockchains/base/assets/0x98d0baa52b2D063E780DE12F615f963Fe8537553/logo.png new file mode 100644 index 0000000000000..c79f277a9e56c Binary files /dev/null and b/blockchains/base/assets/0x98d0baa52b2D063E780DE12F615f963Fe8537553/logo.png differ diff --git a/blockchains/base/assets/0x99b2B1A2aDB02B38222ADcD057783D7e5D1FCC7D/info.json b/blockchains/base/assets/0x99b2B1A2aDB02B38222ADcD057783D7e5D1FCC7D/info.json new file mode 100644 index 0000000000000..6153c1fbf6244 --- /dev/null +++ b/blockchains/base/assets/0x99b2B1A2aDB02B38222ADcD057783D7e5D1FCC7D/info.json @@ -0,0 +1,29 @@ +{ + "name": "Common Wealth Token", + "type": "BASE", + "symbol": "WLTH", + "decimals": 18, + "description": "Common Wealth is an early stage investment system for everyone - creating an all-access pass for retail investors to take control of their financial future. Common Wealth is disrupting, scaling and optimising the traditional venture capital investment model using Web3 principles and technology.", + "website": "https://joincommonwealth.xyz/", + "explorer": "https://basescan.org/token/0x99b2b1a2adb02b38222adcd057783d7e5d1fcc7d", + "id": "0x99b2B1A2aDB02B38222ADcD057783D7e5D1FCC7D", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/joincommonwlth" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/common-wealth/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/common-wealth" + } + ], + "tags": [ + "governance" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x99b2B1A2aDB02B38222ADcD057783D7e5D1FCC7D/logo.png b/blockchains/base/assets/0x99b2B1A2aDB02B38222ADcD057783D7e5D1FCC7D/logo.png new file mode 100644 index 0000000000000..bd3dcb73478c7 Binary files /dev/null and b/blockchains/base/assets/0x99b2B1A2aDB02B38222ADcD057783D7e5D1FCC7D/logo.png differ diff --git a/blockchains/base/assets/0x9A86980D3625b4A6E69D8a4606D51cbc019e2002/info.json b/blockchains/base/assets/0x9A86980D3625b4A6E69D8a4606D51cbc019e2002/info.json new file mode 100644 index 0000000000000..f2b615fccde07 --- /dev/null +++ b/blockchains/base/assets/0x9A86980D3625b4A6E69D8a4606D51cbc019e2002/info.json @@ -0,0 +1,32 @@ +{ + "name": "FOMO BULL CLUB", + "website": "https://fomobull.club/", + "description": "FOMO BULL CLUB is a members-only, decentralized launchpad and liquidity hub. It initially supports memecoins on the Base blockchain and is set to expand its platform to include Solana, Ethereum, Polygon, and others.", + "explorer": "https://basescan.org/token/0x9A86980D3625b4A6E69D8a4606D51cbc019e2002", + "type": "BASE", + "symbol": "FOMO", + "decimals": 18, + "status": "active", + "id": "0x9A86980D3625b4A6E69D8a4606D51cbc019e2002", + "links": [ + { + "name": "x", + "url": "https://x.com/fomobullclub" + }, + { + "name": "telegram", + "url": "https://t.me/fomobullclub" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fomo-bull-club" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/fomo-bull-club" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x9A86980D3625b4A6E69D8a4606D51cbc019e2002/logo.png b/blockchains/base/assets/0x9A86980D3625b4A6E69D8a4606D51cbc019e2002/logo.png new file mode 100644 index 0000000000000..f90423a7ca3f1 Binary files /dev/null and b/blockchains/base/assets/0x9A86980D3625b4A6E69D8a4606D51cbc019e2002/logo.png differ diff --git a/blockchains/base/assets/0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649/info.json b/blockchains/base/assets/0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649/info.json new file mode 100644 index 0000000000000..f2a8f23972fdb --- /dev/null +++ b/blockchains/base/assets/0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649/info.json @@ -0,0 +1,18 @@ +{ + "name": "Gravity", + "type": "BASE", + "symbol": "G", + "decimals": 18, + "description": "G is the native token on Gravity and the utility token for both Gravity and the Galxe ecosystem. As the primary utility token across both ecosystems, G drives governance decisions, incentivizes growth, and facilitates payments.", + "website": "https://gravity.xyz/", + "explorer": "https://basescan.org/token/0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649", + "id": "0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/gravitychain" + } + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649/logo.png b/blockchains/base/assets/0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649/logo.png new file mode 100644 index 0000000000000..8de8678bf83f6 Binary files /dev/null and b/blockchains/base/assets/0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649/logo.png differ diff --git a/blockchains/base/assets/0x9DE16c805A3227b9b92e39a446F9d56cf59fe640/info.json b/blockchains/base/assets/0x9DE16c805A3227b9b92e39a446F9d56cf59fe640/info.json new file mode 100644 index 0000000000000..7b1b949f46e47 --- /dev/null +++ b/blockchains/base/assets/0x9DE16c805A3227b9b92e39a446F9d56cf59fe640/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bento", + "website": "https://basedbento.com/", + "description": "$BENTO - The dog coin of the Based people.", + "explorer": "https://basescan.org/token/0x9de16c805a3227b9b92e39a446f9d56cf59fe640", + "type": "BASE", + "symbol": "CHOMP", + "decimals": 18, + "status": "active", + "id": "0x9DE16c805A3227b9b92e39a446F9d56cf59fe640", + "links": [ + { + "name": "telegram", + "url": "https://t.me/basedbento" + }, + { + "name": "x", + "url": "https://x.com/basedbento" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x9DE16c805A3227b9b92e39a446F9d56cf59fe640/logo.png b/blockchains/base/assets/0x9DE16c805A3227b9b92e39a446F9d56cf59fe640/logo.png new file mode 100644 index 0000000000000..7702a60822112 Binary files /dev/null and b/blockchains/base/assets/0x9DE16c805A3227b9b92e39a446F9d56cf59fe640/logo.png differ diff --git a/blockchains/base/assets/0x9E2Bf5e09384A5Ad18443CB8206522d85ffc3763/info.json b/blockchains/base/assets/0x9E2Bf5e09384A5Ad18443CB8206522d85ffc3763/info.json new file mode 100644 index 0000000000000..9c13b858f9cae --- /dev/null +++ b/blockchains/base/assets/0x9E2Bf5e09384A5Ad18443CB8206522d85ffc3763/info.json @@ -0,0 +1,24 @@ +{ + "name": "Shiro Neko", + "type": "BASE", + "symbol": "SHIRO", + "decimals": 18, + "description": "Shiro Neko, “White Cat” in Japanese, is embarking on a journey to prove himself in the crypto sphere. Under the mentorship of the legendary Shiba Inu, Shiro learns the ways of blockchain, striving to build his own legacy with $SHIRO.", + "website": "https://shironekobase.xyz/", + "explorer": "https://basescan.org/token/0x9E2Bf5e09384A5Ad18443CB8206522d85ffc3763", + "id": "0x9E2Bf5e09384A5Ad18443CB8206522d85ffc3763", + "status": "active", + "tags": [ + "memes" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/shironekoonbase" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shiro-neko-base/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x9E2Bf5e09384A5Ad18443CB8206522d85ffc3763/logo.png b/blockchains/base/assets/0x9E2Bf5e09384A5Ad18443CB8206522d85ffc3763/logo.png new file mode 100644 index 0000000000000..1b0bb27678a00 Binary files /dev/null and b/blockchains/base/assets/0x9E2Bf5e09384A5Ad18443CB8206522d85ffc3763/logo.png differ diff --git a/blockchains/base/assets/0x9EaF8C1E34F05a589EDa6BAfdF391Cf6Ad3CB239/info.json b/blockchains/base/assets/0x9EaF8C1E34F05a589EDa6BAfdF391Cf6Ad3CB239/info.json new file mode 100644 index 0000000000000..820476a279808 --- /dev/null +++ b/blockchains/base/assets/0x9EaF8C1E34F05a589EDa6BAfdF391Cf6Ad3CB239/info.json @@ -0,0 +1,36 @@ +{ + "name": "yearn.finance", + "symbol": "YFI", + "type": "BASE", + "decimals": 18, + "description": "DeFi made simple.", + "website": "https://yearn.finance/", + "explorer": "https://basescan.org/token/0x9eaf8c1e34f05a589eda6bafdf391cf6ad3cb239", + "status": "active", + "id": "0x9EaF8C1E34F05a589EDa6BAfdF391Cf6Ad3CB239", + "links": [ + { + "name": "x", + "url": "https://x.com/iearnfinance" + }, + { + "name": "medium", + "url": "https://medium.com/iearn" + }, + { + "name": "telegram", + "url": "https://t.me/iearnfinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/yearn-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/yearn-finance/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x9EaF8C1E34F05a589EDa6BAfdF391Cf6Ad3CB239/logo.png b/blockchains/base/assets/0x9EaF8C1E34F05a589EDa6BAfdF391Cf6Ad3CB239/logo.png new file mode 100644 index 0000000000000..8f06d5eb88f5d Binary files /dev/null and b/blockchains/base/assets/0x9EaF8C1E34F05a589EDa6BAfdF391Cf6Ad3CB239/logo.png differ diff --git a/blockchains/base/assets/0x9a26F5433671751C3276a065f57e5a02D2817973/info.json b/blockchains/base/assets/0x9a26F5433671751C3276a065f57e5a02D2817973/info.json new file mode 100644 index 0000000000000..329e9233c8e3c --- /dev/null +++ b/blockchains/base/assets/0x9a26F5433671751C3276a065f57e5a02D2817973/info.json @@ -0,0 +1,17 @@ +{ + "name": "Keyboard Cat", + "type": "BASE", + "symbol": "KEYCAT", + "decimals": 18, + "website": "https://keyboardcat.fun", + "description": "$KEYCAT is a meme coin with no intrinsic value or expectation of financial return. $KEYCAT is not associted with Charlie Schmidt or his creation of Keyboard Cat.", + "explorer": "https://basescan.org/token/0x9a26f5433671751c3276a065f57e5a02d2817973", + "status": "active", + "id": "0x9a26F5433671751C3276a065f57e5a02D2817973", + "links": [ + { + "name": "x", + "url": "https://x.com/KeyboardCatBase" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x9a26F5433671751C3276a065f57e5a02D2817973/logo.png b/blockchains/base/assets/0x9a26F5433671751C3276a065f57e5a02D2817973/logo.png new file mode 100644 index 0000000000000..4fa517804a755 Binary files /dev/null and b/blockchains/base/assets/0x9a26F5433671751C3276a065f57e5a02D2817973/logo.png differ diff --git a/blockchains/base/assets/0x9a33406165f562E16C3abD82fd1185482E01b49a/info.json b/blockchains/base/assets/0x9a33406165f562E16C3abD82fd1185482E01b49a/info.json new file mode 100644 index 0000000000000..b081764a45e0e --- /dev/null +++ b/blockchains/base/assets/0x9a33406165f562E16C3abD82fd1185482E01b49a/info.json @@ -0,0 +1,29 @@ +{ + "name": "TalentProtocolToken", + "type": "BASE", + "symbol": "TALENT", + "decimals": 18, + "description": "Bringing verified reputation onchain to help great builders stand out.", + "website": "https://www.talentprotocol.com/", + "explorer": "https://basescan.org/token/0x9a33406165f562E16C3abD82fd1185482E01b49a", + "id": "0x9a33406165f562E16C3abD82fd1185482E01b49a", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/TalentProtocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/talent-protocol/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/talent-protocol" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x9a33406165f562E16C3abD82fd1185482E01b49a/logo.png b/blockchains/base/assets/0x9a33406165f562E16C3abD82fd1185482E01b49a/logo.png new file mode 100644 index 0000000000000..392f6c76cbb80 Binary files /dev/null and b/blockchains/base/assets/0x9a33406165f562E16C3abD82fd1185482E01b49a/logo.png differ diff --git a/blockchains/base/assets/0x9aAaE745cf2830FB8DDc6248B17436dC3a5E701C/info.json b/blockchains/base/assets/0x9aAaE745cf2830FB8DDc6248B17436dC3a5E701C/info.json new file mode 100644 index 0000000000000..ecf69c687d98e --- /dev/null +++ b/blockchains/base/assets/0x9aAaE745cf2830FB8DDc6248B17436dC3a5E701C/info.json @@ -0,0 +1,30 @@ +{ + "name": "Gochujangcoin", + "type": "BASE", + "symbol": "GOCHU", + "decimals": 18, + "description": "Gochujangcoin: Spicing Up the Crypto World with Phenomenal Growth and Flavorful Innovation Explosive Growth and Enthusiastic Investor Support. Gochujangcoin is unique concept centered around Kfood and a devoted community, it is paving the way for a new category to emerge. Gochu Guy is a foodie who loves to share different spicy dishes through interactions with his spicy friends nearby.", + "website": "https://gochu.org/", + "explorer": "https://basescan.org/token/0x9aaae745cf2830fb8ddc6248b17436dc3a5e701c", + "id": "0x9aAaE745cf2830FB8DDc6248B17436dC3a5E701C", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/gochujangonbase" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gochujangcoin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gochujangcoin" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0x9aAaE745cf2830FB8DDc6248B17436dC3a5E701C/logo.png b/blockchains/base/assets/0x9aAaE745cf2830FB8DDc6248B17436dC3a5E701C/logo.png new file mode 100644 index 0000000000000..b85586b1ead90 Binary files /dev/null and b/blockchains/base/assets/0x9aAaE745cf2830FB8DDc6248B17436dC3a5E701C/logo.png differ diff --git a/blockchains/base/assets/0x9c5c4237E53024A4fE722334af6D62990BDdBB07/info.json b/blockchains/base/assets/0x9c5c4237E53024A4fE722334af6D62990BDdBB07/info.json new file mode 100644 index 0000000000000..716e07068f7b9 --- /dev/null +++ b/blockchains/base/assets/0x9c5c4237E53024A4fE722334af6D62990BDdBB07/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE OpenAI", + "type": "BASE", + "symbol": "FAKE OpenAI", + "decimals": 18, + "description": "This token is malicious. Do not interact", + "website": "https://basescan.org/token/0x9c5c4237E53024A4fE722334af6D62990BDdBB07", + "explorer": "https://basescan.org/token/0x9c5c4237E53024A4fE722334af6D62990BDdBB07", + "status": "spam", + "id": "0x9c5c4237E53024A4fE722334af6D62990BDdBB07" +} \ No newline at end of file diff --git a/blockchains/base/assets/0x9c632E6Aaa3eA73f91554f8A3cB2ED2F29605e0C/info.json b/blockchains/base/assets/0x9c632E6Aaa3eA73f91554f8A3cB2ED2F29605e0C/info.json new file mode 100644 index 0000000000000..0fd672738bd5c --- /dev/null +++ b/blockchains/base/assets/0x9c632E6Aaa3eA73f91554f8A3cB2ED2F29605e0C/info.json @@ -0,0 +1,36 @@ +{ + "name": "Onyx", + "website": "https://onyx.org", + "description": "Onyx Protocol enables users to access a cross-token aggregated liquidity protocol that supports NFTs, Tokens and ETH all-in-one. Onyx is powered by Onyxcoin (XCN), the protocols native utility and governance token.", + "explorer": "https://basescan.org/token/0x9c632E6Aaa3eA73f91554f8A3cB2ED2F29605e0C", + "type": "BASE", + "symbol": "XCN", + "decimals": 18, + "status": "active", + "id": "0x9c632E6Aaa3eA73f91554f8A3cB2ED2F29605e0C", + "links": [ + { + "name": "github", + "url": "https://github.com/Onyx-Protocol" + }, + { + "name": "x", + "url": "https://x.com/OnyxDAO" + }, + { + "name": "blog", + "url": "https://blog.onyx.org" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/onyxcoin/" + }, + { + "name": "telegram", + "url": "https://t.me/onyx" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x9c632E6Aaa3eA73f91554f8A3cB2ED2F29605e0C/logo.png b/blockchains/base/assets/0x9c632E6Aaa3eA73f91554f8A3cB2ED2F29605e0C/logo.png new file mode 100644 index 0000000000000..18629f0ee352e Binary files /dev/null and b/blockchains/base/assets/0x9c632E6Aaa3eA73f91554f8A3cB2ED2F29605e0C/logo.png differ diff --git a/blockchains/base/assets/0x9e81F6495BA29a6B4D48bDdD042C0598fA8abc9F/info.json b/blockchains/base/assets/0x9e81F6495BA29a6B4D48bDdD042C0598fA8abc9F/info.json new file mode 100644 index 0000000000000..6c1afd088bb7c --- /dev/null +++ b/blockchains/base/assets/0x9e81F6495BA29a6B4D48bDdD042C0598fA8abc9F/info.json @@ -0,0 +1,17 @@ +{ + "name": "MATH Token", + "symbol": "MATH", + "type": "BASE", + "decimals": 18, + "description": "65+ Popular public chains supported", + "website": "https://mathwallet.org/", + "explorer": "https://basescan.org/token/0x9e81f6495ba29a6b4d48bddd042c0598fa8abc9f", + "status": "active", + "id": "0x9e81F6495BA29a6B4D48bDdD042C0598fA8abc9F", + "links": [ + { + "name": "x", + "url": "https://x.com/Mathwallet" + } + ] + } \ No newline at end of file diff --git a/blockchains/base/assets/0x9e81F6495BA29a6B4D48bDdD042C0598fA8abc9F/logo.png b/blockchains/base/assets/0x9e81F6495BA29a6B4D48bDdD042C0598fA8abc9F/logo.png new file mode 100644 index 0000000000000..9a0131c539afe Binary files /dev/null and b/blockchains/base/assets/0x9e81F6495BA29a6B4D48bDdD042C0598fA8abc9F/logo.png differ diff --git a/blockchains/base/assets/0xA067436Db77aB18b1a315095E4b816791609897c/info.json b/blockchains/base/assets/0xA067436Db77aB18b1a315095E4b816791609897c/info.json new file mode 100644 index 0000000000000..8bb5d5b7aaced --- /dev/null +++ b/blockchains/base/assets/0xA067436Db77aB18b1a315095E4b816791609897c/info.json @@ -0,0 +1,21 @@ +{ + "name": "WASSIE", + "website": "http://www.wassie.wtf/", + "description": "The ultimate memecoin of the wassie revolution.", + "explorer": "https://basescan.org/token/0xa067436db77ab18b1a315095e4b816791609897c", + "type": "BASE", + "symbol": "WASSIE", + "decimals": 18, + "status": "active", + "id": "0xA067436Db77aB18b1a315095E4b816791609897c", + "links": [ + { + "name": "x", + "url": "https://x.com/WassieOnETH" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wassie/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xA067436Db77aB18b1a315095E4b816791609897c/logo.png b/blockchains/base/assets/0xA067436Db77aB18b1a315095E4b816791609897c/logo.png new file mode 100644 index 0000000000000..3f350d2569e90 Binary files /dev/null and b/blockchains/base/assets/0xA067436Db77aB18b1a315095E4b816791609897c/logo.png differ diff --git a/blockchains/base/assets/0xA7d68d155d17cB30e311367c2Ef1E82aB6022b67/info.json b/blockchains/base/assets/0xA7d68d155d17cB30e311367c2Ef1E82aB6022b67/info.json new file mode 100644 index 0000000000000..fb0cafc68a95c --- /dev/null +++ b/blockchains/base/assets/0xA7d68d155d17cB30e311367c2Ef1E82aB6022b67/info.json @@ -0,0 +1,28 @@ +{ + "name": "BTRST", + "website": "https://www.usebraintrust.com/", + "description": "Braintrust is a decentralized talent network that connects knowledge workers with companies. Braintrust was built and continues to be upgraded by its community. BTRST is the governance and staking token used to power the network.", + "explorer": "https://basescan.org/token/0xA7d68d155d17cB30e311367c2Ef1E82aB6022b67", + "type": "BASE", + "symbol": "BTRST", + "decimals": 18, + "status": "active", + "id": "0xA7d68d155d17cB30e311367c2Ef1E82aB6022b67", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/usebraintrust" + }, + { + "name": "telegram", + "url": "https://t.me/braintrustofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/braintrust/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xA7d68d155d17cB30e311367c2Ef1E82aB6022b67/logo.png b/blockchains/base/assets/0xA7d68d155d17cB30e311367c2Ef1E82aB6022b67/logo.png new file mode 100644 index 0000000000000..885fbedb44e4b Binary files /dev/null and b/blockchains/base/assets/0xA7d68d155d17cB30e311367c2Ef1E82aB6022b67/logo.png differ diff --git a/blockchains/base/assets/0xA88594D404727625A9437C3f886C7643872296AE/info.json b/blockchains/base/assets/0xA88594D404727625A9437C3f886C7643872296AE/info.json new file mode 100644 index 0000000000000..261503bbdf12b --- /dev/null +++ b/blockchains/base/assets/0xA88594D404727625A9437C3f886C7643872296AE/info.json @@ -0,0 +1,20 @@ +{ + "name": "WELL", + "website": "https://moonwell.fi/", + "description": "Moonwell is an open lending and borrowing app built on Base, Moonbeam, and Moonriver.", + "explorer": "https://basescan.org/token/0xa88594d404727625a9437c3f886c7643872296ae", + "type": "BASE", + "symbol": "WELL", + "decimals": 18, + "status": "active", + "id": "0xA88594D404727625A9437C3f886C7643872296AE", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/MoonwellDeFi" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xA88594D404727625A9437C3f886C7643872296AE/logo.png b/blockchains/base/assets/0xA88594D404727625A9437C3f886C7643872296AE/logo.png new file mode 100644 index 0000000000000..a47eb124b63aa Binary files /dev/null and b/blockchains/base/assets/0xA88594D404727625A9437C3f886C7643872296AE/logo.png differ diff --git a/blockchains/base/assets/0xAC1Bd2486aAf3B5C0fc3Fd868558b082a531B2B4/info.json b/blockchains/base/assets/0xAC1Bd2486aAf3B5C0fc3Fd868558b082a531B2B4/info.json new file mode 100644 index 0000000000000..18e95fe624b6b --- /dev/null +++ b/blockchains/base/assets/0xAC1Bd2486aAf3B5C0fc3Fd868558b082a531B2B4/info.json @@ -0,0 +1,40 @@ +{ + "name": "Toshi", + "symbol": "TOSHI", + "type": "BASE", + "decimals": 18, + "description": "Toshi aims to become the first Base-native token to get listed on Coinbase.", + "website": "https://www.toshithecat.com", + "explorer": "https://basescan.org/token/0xAC1Bd2486aAf3B5C0fc3Fd868558b082a531B2B4", + "status": "active", + "id": "0xAC1Bd2486aAf3B5C0fc3Fd868558b082a531B2B4", + "links": [ + { + "name": "github", + "url": "https://github.com/ToshiTheCat" + }, + { + "name": "x", + "url": "https://x.com/toshi_base" + }, + { + "name": "whitepaper", + "url": "https://medium.com/@ToshiBase/toshi-roadmap-the-face-of-base-3451b399aa27" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/toshi-/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/toshi/" + }, + { + "name": "medium", + "url": "https://medium.com/@Toshi_Base" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xAC1Bd2486aAf3B5C0fc3Fd868558b082a531B2B4/logo.png b/blockchains/base/assets/0xAC1Bd2486aAf3B5C0fc3Fd868558b082a531B2B4/logo.png new file mode 100644 index 0000000000000..0fd6617ffaa6e Binary files /dev/null and b/blockchains/base/assets/0xAC1Bd2486aAf3B5C0fc3Fd868558b082a531B2B4/logo.png differ diff --git a/blockchains/base/assets/0xB166E8B140D35D9D8226E40C09f757BAC5A4d87d/info.json b/blockchains/base/assets/0xB166E8B140D35D9D8226E40C09f757BAC5A4d87d/info.json new file mode 100644 index 0000000000000..b13663f59bf02 --- /dev/null +++ b/blockchains/base/assets/0xB166E8B140D35D9D8226E40C09f757BAC5A4d87d/info.json @@ -0,0 +1,17 @@ +{ + "name": "Non-Playable Coin", + "type": "BASE", + "symbol": "NPC", + "decimals": 18, + "website": "https://nonplayablecoin.io/", + "description": "A hive mind of unique and special individuals. $NPC is a meme fungible token (MFT) tradable on both Uniswap and NFT exchanges.", + "explorer": "https://basescan.org/token/0xb166e8b140d35d9d8226e40c09f757bac5a4d87d", + "status": "active", + "id": "0xB166E8B140D35D9D8226E40C09f757BAC5A4d87d", + "links": [ + { + "name": "x", + "url": "https://x.com/NonPlayableCoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xB166E8B140D35D9D8226E40C09f757BAC5A4d87d/logo.png b/blockchains/base/assets/0xB166E8B140D35D9D8226E40C09f757BAC5A4d87d/logo.png new file mode 100644 index 0000000000000..895070a5ff75f Binary files /dev/null and b/blockchains/base/assets/0xB166E8B140D35D9D8226E40C09f757BAC5A4d87d/logo.png differ diff --git a/blockchains/base/assets/0xB1a03EdA10342529bBF8EB700a06C60441fEf25d/info.json b/blockchains/base/assets/0xB1a03EdA10342529bBF8EB700a06C60441fEf25d/info.json new file mode 100644 index 0000000000000..2510d4ebe08d7 --- /dev/null +++ b/blockchains/base/assets/0xB1a03EdA10342529bBF8EB700a06C60441fEf25d/info.json @@ -0,0 +1,21 @@ +{ + "name": "Mister Miggles", + "symbol": "MIGGLES", + "type": "BASE", + "decimals": 18, + "description": "The cat Coinbase mascot.", + "website": "https://mrmigglesbase.com/", + "explorer": "https://basescan.org/token/0xb1a03eda10342529bbf8eb700a06c60441fef25d", + "status": "active", + "id": "0xB1a03EdA10342529bBF8EB700a06C60441fEf25d", + "links": [ + { + "name": "x", + "url": "https://x.com/MrMigglesOnBase" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mr-miggles/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xB1a03EdA10342529bBF8EB700a06C60441fEf25d/logo.png b/blockchains/base/assets/0xB1a03EdA10342529bBF8EB700a06C60441fEf25d/logo.png new file mode 100644 index 0000000000000..77c0554f319ac Binary files /dev/null and b/blockchains/base/assets/0xB1a03EdA10342529bBF8EB700a06C60441fEf25d/logo.png differ diff --git a/blockchains/base/assets/0xB38266e0e9D9681b77aEB0A280E98131b953F865/info.json b/blockchains/base/assets/0xB38266e0e9D9681b77aEB0A280E98131b953F865/info.json new file mode 100644 index 0000000000000..8cfc1d97c7fde --- /dev/null +++ b/blockchains/base/assets/0xB38266e0e9D9681b77aEB0A280E98131b953F865/info.json @@ -0,0 +1,41 @@ +{ + "name": "DOVU", + "website": "https://dovu.earth/", + "description": "DOVU is a technology infrastructure provider, powering trusted environmental and carbon digital markets by providing market integrity. The DOVU token serves as the protocol’s utility token, enabling holders to participate and create their own environmental audit trail ecosystems. Token holders can stake their DOVU to earn multiplier rewards, aligning long-term incentives with the protocol’s mission of building reliable carbon markets.", + "explorer": "https://basescan.org/token/0xb38266e0e9d9681b77aeb0a280e98131b953f865", + "type": "BASE", + "symbol": "DOVU", + "decimals": 8, + "status": "active", + "id": "0xB38266e0e9D9681b77aEB0A280E98131b953F865", + "tags": [ + "wrapped", + "staking" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/dovuofficial/" + }, + { + "name": "x", + "url": "https://x.com/dovuofficial" + }, + { + "name": "blog", + "url": "https://dovu.earth/en/news/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dovu-earth/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dovu" + }, + { + "name": "youtube", + "url": "https://youtube.com/@DOVUearth" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xB38266e0e9D9681b77aEB0A280E98131b953F865/logo.png b/blockchains/base/assets/0xB38266e0e9D9681b77aEB0A280E98131b953F865/logo.png new file mode 100644 index 0000000000000..cb6c490323d55 Binary files /dev/null and b/blockchains/base/assets/0xB38266e0e9D9681b77aEB0A280E98131b953F865/logo.png differ diff --git a/blockchains/base/assets/0xB3B32F9f8827D4634fE7d973Fa1034Ec9fdDB3B3/info.json b/blockchains/base/assets/0xB3B32F9f8827D4634fE7d973Fa1034Ec9fdDB3B3/info.json new file mode 100644 index 0000000000000..0c4d84c66396b --- /dev/null +++ b/blockchains/base/assets/0xB3B32F9f8827D4634fE7d973Fa1034Ec9fdDB3B3/info.json @@ -0,0 +1,26 @@ +{ + "name": "B3", + "website": "https://b3.fun/", + "description": "B3 is a layer 3 gaming ecosystem. We believe the future of gaming is open, connected, and shaped by the players themselves", + "explorer": "https://basescan.org/token/0xB3B32F9f8827D4634fE7d973Fa1034Ec9fdDB3B3", + "type": "BASE", + "symbol": "B3", + "decimals": 18, + "status": "active", + "id": "0xB3B32F9f8827D4634fE7d973Fa1034Ec9fdDB3B3", + "tags": [ + "gamefi", + "defi", + "governance" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/b3dotfun" + }, + { + "name": "github", + "url": "https://github.com/b3-fun" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xB3B32F9f8827D4634fE7d973Fa1034Ec9fdDB3B3/logo.png b/blockchains/base/assets/0xB3B32F9f8827D4634fE7d973Fa1034Ec9fdDB3B3/logo.png new file mode 100644 index 0000000000000..f1907577b0345 Binary files /dev/null and b/blockchains/base/assets/0xB3B32F9f8827D4634fE7d973Fa1034Ec9fdDB3B3/logo.png differ diff --git a/blockchains/base/assets/0xB6fe221Fe9EeF5aBa221c348bA20A1Bf5e73624c/info.json b/blockchains/base/assets/0xB6fe221Fe9EeF5aBa221c348bA20A1Bf5e73624c/info.json new file mode 100644 index 0000000000000..a49cdd04088b4 --- /dev/null +++ b/blockchains/base/assets/0xB6fe221Fe9EeF5aBa221c348bA20A1Bf5e73624c/info.json @@ -0,0 +1,25 @@ +{ + "name": "Rocket Pool ETH", + "symbol": "rETH", + "type": "BASE", + "decimals": 18, + "description": "Rocket Pool is a decentralised Ethereum Proof of Stake pool.", + "website": "https://www.rocketpool.net/", + "explorer": "https://basescan.org/token/0xb6fe221fe9eef5aba221c348ba20a1bf5e73624c", + "status": "active", + "id": "0xB6fe221Fe9EeF5aBa221c348bA20A1Bf5e73624c", + "links": [ + { + "name": "x", + "url": "https://x.com/Rocket_Pool" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rocket-pool-eth/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/rocket-pool-eth/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xB6fe221Fe9EeF5aBa221c348bA20A1Bf5e73624c/logo.png b/blockchains/base/assets/0xB6fe221Fe9EeF5aBa221c348bA20A1Bf5e73624c/logo.png new file mode 100644 index 0000000000000..b66ede27403be Binary files /dev/null and b/blockchains/base/assets/0xB6fe221Fe9EeF5aBa221c348bA20A1Bf5e73624c/logo.png differ diff --git a/blockchains/base/assets/0xB79DD08EA68A908A97220C76d19A6aA9cBDE4376/info.json b/blockchains/base/assets/0xB79DD08EA68A908A97220C76d19A6aA9cBDE4376/info.json new file mode 100644 index 0000000000000..393e04744c384 --- /dev/null +++ b/blockchains/base/assets/0xB79DD08EA68A908A97220C76d19A6aA9cBDE4376/info.json @@ -0,0 +1,21 @@ +{ + "name": "USD+", + "website": "https://overnight.fi/", + "description": "USD+ is a yield-generating stablecoin yielding 8-12% pa, via daily rebase. It is fully backed by a portfolio of liquid, yield generating, low risk DeFi assets.", + "explorer": "https://basescan.org/token/0xb79dd08ea68a908a97220c76d19a6aa9cbde4376", + "type": "BASE", + "symbol": "USD+", + "decimals": 18, + "status": "active", + "id": "0xB79DD08EA68A908A97220C76d19A6aA9cBDE4376", + "links": [ + { + "name": "telegram", + "url": "https://t.me/overnight_fi" + }, + { + "name": "x", + "url": "https://x.com/overnight_fi" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xB79DD08EA68A908A97220C76d19A6aA9cBDE4376/logo.png b/blockchains/base/assets/0xB79DD08EA68A908A97220C76d19A6aA9cBDE4376/logo.png new file mode 100644 index 0000000000000..dbb88b69c2364 Binary files /dev/null and b/blockchains/base/assets/0xB79DD08EA68A908A97220C76d19A6aA9cBDE4376/logo.png differ diff --git a/blockchains/base/assets/0xBAa5CC21fd487B8Fcc2F632f3F4E8D37262a0842/info.json b/blockchains/base/assets/0xBAa5CC21fd487B8Fcc2F632f3F4E8D37262a0842/info.json new file mode 100644 index 0000000000000..50c601892782c --- /dev/null +++ b/blockchains/base/assets/0xBAa5CC21fd487B8Fcc2F632f3F4E8D37262a0842/info.json @@ -0,0 +1,25 @@ +{ + "name": "Morpho", + "type": "BASE", + "symbol": "MORPHO", + "decimals": 18, + "description": "Morpho is an open, efficient, and resilient platform that allows anyone to earn yield and borrow assets. Lenders can earn on Morpho using Morpho Vaults, noncustodial simple to use lending vaults that optimize yields for depositors. Borrowers can borrow any assets directly from Morpho Markets.", + "website": "https://morpho.org/", + "explorer": "https://basescan.org/token/0xBAa5CC21fd487B8Fcc2F632f3F4E8D37262a0842", + "id": "0xBAa5CC21fd487B8Fcc2F632f3F4E8D37262a0842", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/morpholabs?s=11&t=ZGzrL8B9N7GpbA3YLFvU9A" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/morpho/" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0xBAa5CC21fd487B8Fcc2F632f3F4E8D37262a0842/logo.png b/blockchains/base/assets/0xBAa5CC21fd487B8Fcc2F632f3F4E8D37262a0842/logo.png new file mode 100644 index 0000000000000..87b1a4f8f307e Binary files /dev/null and b/blockchains/base/assets/0xBAa5CC21fd487B8Fcc2F632f3F4E8D37262a0842/logo.png differ diff --git a/blockchains/base/assets/0xBB22Ff867F8Ca3D5F2251B4084F6Ec86D4666E14/info.json b/blockchains/base/assets/0xBB22Ff867F8Ca3D5F2251B4084F6Ec86D4666E14/info.json new file mode 100644 index 0000000000000..71ac678623445 --- /dev/null +++ b/blockchains/base/assets/0xBB22Ff867F8Ca3D5F2251B4084F6Ec86D4666E14/info.json @@ -0,0 +1,21 @@ +{ + "name": "Cryptex", + "symbol": "CTX", + "type": "BASE", + "decimals": 18, + "description": "CTX is a governance token that powers and secures the Cryptex.Finance TCAP protocol.", + "website": "https://cryptex.finance/", + "explorer": "https://basescan.org/token/0xbb22ff867f8ca3d5f2251b4084f6ec86d4666e14", + "status": "active", + "id": "0xBB22Ff867F8Ca3D5F2251B4084F6Ec86D4666E14", + "links": [ + { + "name": "x", + "url": "https://x.com/cryptexfinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cryptex-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xBB22Ff867F8Ca3D5F2251B4084F6Ec86D4666E14/logo.png b/blockchains/base/assets/0xBB22Ff867F8Ca3D5F2251B4084F6Ec86D4666E14/logo.png new file mode 100644 index 0000000000000..5cd9068d0044d Binary files /dev/null and b/blockchains/base/assets/0xBB22Ff867F8Ca3D5F2251B4084F6Ec86D4666E14/logo.png differ diff --git a/blockchains/base/assets/0xBC45647eA894030a4E9801Ec03479739FA2485F0/info.json b/blockchains/base/assets/0xBC45647eA894030a4E9801Ec03479739FA2485F0/info.json new file mode 100644 index 0000000000000..380d35ffb1077 --- /dev/null +++ b/blockchains/base/assets/0xBC45647eA894030a4E9801Ec03479739FA2485F0/info.json @@ -0,0 +1,40 @@ +{ + "name": "Basenji", + "type": "BASE", + "symbol": "BENJI", + "decimals": 18, + "website": "https://www.basenjibase.com/", + "description": "The contract is deployed on Base chain. I can't find any option to input Base chain so i input it as Ethereum. Hope this is ok. Thanks. basescan link: https://basescan.org/token/0xbc45647ea894030a4e9801ec03479739fa2485f0", + "explorer": "https://basescan.org/token/0xbc45647ea894030a4e9801ec03479739fa2485f0", + "status": "active", + "id": "0xBC45647eA894030a4E9801Ec03479739FA2485F0", + "links": [ + { + "name": "x", + "url": "https://x.com/basenjiofficial" + }, + { + "name": "telegram", + "url": "https://t.me/BasenjiBaseOfficial" + }, + { + "name": "github", + "url": "https://github.com/BasenjiBase" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/basenjibase/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/basenji/" + }, + { + "name": "source_code", + "url": "https://github.com/BasenjiBase/BasenjiCode" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xBC45647eA894030a4E9801Ec03479739FA2485F0/logo.png b/blockchains/base/assets/0xBC45647eA894030a4E9801Ec03479739FA2485F0/logo.png new file mode 100644 index 0000000000000..8774677f7f3c2 Binary files /dev/null and b/blockchains/base/assets/0xBC45647eA894030a4E9801Ec03479739FA2485F0/logo.png differ diff --git a/blockchains/base/assets/0xBCBAf311ceC8a4EAC0430193A528d9FF27ae38C1/info.json b/blockchains/base/assets/0xBCBAf311ceC8a4EAC0430193A528d9FF27ae38C1/info.json new file mode 100644 index 0000000000000..2329333b213f7 --- /dev/null +++ b/blockchains/base/assets/0xBCBAf311ceC8a4EAC0430193A528d9FF27ae38C1/info.json @@ -0,0 +1,41 @@ +{ + "name": "IoTeX", + "website": "https://iotex.io", + "description": "BNB pegged IoTeX Network (IOTX BEP20) is a token issued by Binance on Smart Chain; its price is pegged to IoTeX Network (IOTX ERC20) at a ratio of 1:1.", + "research": "https://iotex.io/research", + "explorer": "https://basescan.org/token/0xbcbaf311cec8a4eac0430193a528d9ff27ae38c1", + "type": "BASE", + "symbol": "IOTX", + "decimals": 18, + "status": "active", + "id": "0xBCBAf311ceC8a4EAC0430193A528d9FF27ae38C1", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/iotexproject/iotex-core" + }, + { + "name": "x", + "url": "https://x.com/iotex_io" + }, + { + "name": "telegram", + "url": "https://t.me/IoTeXGroup" + }, + { + "name": "facebook", + "url": "https://facebook.com/iotex.io/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/IoTeX/" + }, + { + "name": "medium", + "url": "https://medium.com/iotex" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xBCBAf311ceC8a4EAC0430193A528d9FF27ae38C1/logo.png b/blockchains/base/assets/0xBCBAf311ceC8a4EAC0430193A528d9FF27ae38C1/logo.png new file mode 100644 index 0000000000000..2e533fb280549 Binary files /dev/null and b/blockchains/base/assets/0xBCBAf311ceC8a4EAC0430193A528d9FF27ae38C1/logo.png differ diff --git a/blockchains/base/assets/0xBbf81dDC9fb90Cf9146B495ce0546a3460Fd1769/info.json b/blockchains/base/assets/0xBbf81dDC9fb90Cf9146B495ce0546a3460Fd1769/info.json new file mode 100644 index 0000000000000..6dc18f385041f --- /dev/null +++ b/blockchains/base/assets/0xBbf81dDC9fb90Cf9146B495ce0546a3460Fd1769/info.json @@ -0,0 +1,21 @@ +{ + "name": "BRAZA by Virtuals", + "symbol": "BRAZA", + "type": "BASE", + "decimals": 18, + "description": "Braza AI is the friend you needed to help you with your money.", + "website": "https://braza.ai/", + "explorer": "https://basescan.org/token/0xbbf81ddc9fb90cf9146b495ce0546a3460fd1769", + "status": "active", + "id": "0xBbf81dDC9fb90Cf9146B495ce0546a3460Fd1769", + "links": [ + { + "name": "x", + "url": "https://x.com/BrazaAI" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/braza-by-virtuals" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xBbf81dDC9fb90Cf9146B495ce0546a3460Fd1769/logo.png b/blockchains/base/assets/0xBbf81dDC9fb90Cf9146B495ce0546a3460Fd1769/logo.png new file mode 100644 index 0000000000000..34b73d1d11de3 Binary files /dev/null and b/blockchains/base/assets/0xBbf81dDC9fb90Cf9146B495ce0546a3460Fd1769/logo.png differ diff --git a/blockchains/base/assets/0xC0Fc19ac729919B33650848a8689D114b9148890/info.json b/blockchains/base/assets/0xC0Fc19ac729919B33650848a8689D114b9148890/info.json new file mode 100644 index 0000000000000..d25e4471e1462 --- /dev/null +++ b/blockchains/base/assets/0xC0Fc19ac729919B33650848a8689D114b9148890/info.json @@ -0,0 +1,21 @@ +{ + "name": "Crypto Jesus Trump", + "symbol": "TRUMP", + "type": "BASE", + "decimals": 18, + "description": "Crypto Jesus Trump is a meme and a cultural phenomenon that has emerged in the cryptocurrency community.", + "website": "https://cryptojesustrump.org", + "explorer": "https://basescan.org/token/0xC0Fc19ac729919B33650848a8689D114b9148890", + "status": "active", + "id": "0xC0Fc19ac729919B33650848a8689D114b9148890", + "links": [ + { + "name": "x", + "url": "https://x.com/Biopassport1" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/biopassport-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xC0Fc19ac729919B33650848a8689D114b9148890/logo.png b/blockchains/base/assets/0xC0Fc19ac729919B33650848a8689D114b9148890/logo.png new file mode 100644 index 0000000000000..52814de016df3 Binary files /dev/null and b/blockchains/base/assets/0xC0Fc19ac729919B33650848a8689D114b9148890/logo.png differ diff --git a/blockchains/base/assets/0xC48E605c7b722a57277e087a6170B9E227e5AC0A/info.json b/blockchains/base/assets/0xC48E605c7b722a57277e087a6170B9E227e5AC0A/info.json new file mode 100644 index 0000000000000..9ccb0b13bf63a --- /dev/null +++ b/blockchains/base/assets/0xC48E605c7b722a57277e087a6170B9E227e5AC0A/info.json @@ -0,0 +1,17 @@ +{ + "name": "OmniCat", + "website": "https://omnicat.xyz/", + "description": "OmniCat is the first omnichain memecoin. Powered by LayerZero, $OMNI is currently live and tradeable on 7 different ecosystems including Ethereum, Arbitrum and Solana.", + "explorer": "https://basescan.org/token/0xc48e605c7b722a57277e087a6170b9e227e5ac0a", + "type": "BASE", + "symbol": "OMNI", + "decimals": 18, + "status": "active", + "id": "0xC48E605c7b722a57277e087a6170B9E227e5AC0A", + "links": [ + { + "name": "x", + "url": "https://x.com/OmniCatCoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xC48E605c7b722a57277e087a6170B9E227e5AC0A/logo.png b/blockchains/base/assets/0xC48E605c7b722a57277e087a6170B9E227e5AC0A/logo.png new file mode 100644 index 0000000000000..485b7e16686c1 Binary files /dev/null and b/blockchains/base/assets/0xC48E605c7b722a57277e087a6170B9E227e5AC0A/logo.png differ diff --git a/blockchains/base/assets/0xC60E167E52cE50a46d7CD57C65e180115c012c43/info.json b/blockchains/base/assets/0xC60E167E52cE50a46d7CD57C65e180115c012c43/info.json new file mode 100644 index 0000000000000..8f134994261b7 --- /dev/null +++ b/blockchains/base/assets/0xC60E167E52cE50a46d7CD57C65e180115c012c43/info.json @@ -0,0 +1,25 @@ +{ + "name": "HNO", + "type": "BASE", + "symbol": "HNO", + "decimals": 18, + "website": "https://hnocoin.com/", + "description": "HNO- RWA backed tokenized hydraulic mining", + "explorer": "https://basescan.org/token/0xC60E167E52cE50a46d7CD57C65e180115c012c43", + "status": "active", + "id": "0xC60E167E52cE50a46d7CD57C65e180115c012c43", + "links": [ + { + "name": "x", + "url": "https://x.com/hno_coin?s=21" + }, + { + "name": "whitepaper", + "url": "https://hnocoin.com/wp-content/uploads/2025/11/hnocoin-whitepaper.pdf" + }, + { + "name": "facebook", + "url": "https://facebook.com/hnocoin?ref=1" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xC60E167E52cE50a46d7CD57C65e180115c012c43/logo.png b/blockchains/base/assets/0xC60E167E52cE50a46d7CD57C65e180115c012c43/logo.png new file mode 100644 index 0000000000000..a0f5b97ae0943 Binary files /dev/null and b/blockchains/base/assets/0xC60E167E52cE50a46d7CD57C65e180115c012c43/logo.png differ diff --git a/blockchains/base/assets/0xC8dB98437beD9943f11C5b31B645B07c0EfC17E0/info.json b/blockchains/base/assets/0xC8dB98437beD9943f11C5b31B645B07c0EfC17E0/info.json new file mode 100644 index 0000000000000..96ce6e8fcc354 --- /dev/null +++ b/blockchains/base/assets/0xC8dB98437beD9943f11C5b31B645B07c0EfC17E0/info.json @@ -0,0 +1,21 @@ +{ + "name": "LEOONO by Virtuals", + "symbol": "LEO", + "type": "BASE", + "decimals": 18, + "description": "Leoono is an AI-driven investment agent built to simplify and enhance stock analysis for everyone.", + "website": "https://www.leoono.com/ai-agent", + "explorer": "https://basescan.org/token/0xC8dB98437beD9943f11C5b31B645B07c0EfC17E0", + "status": "active", + "id": "0xC8dB98437beD9943f11C5b31B645B07c0EfC17E0", + "links": [ + { + "name": "x", + "url": "https://x.com/leoono_com" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/leoono/" + } + ] + } \ No newline at end of file diff --git a/blockchains/base/assets/0xC8dB98437beD9943f11C5b31B645B07c0EfC17E0/logo.png b/blockchains/base/assets/0xC8dB98437beD9943f11C5b31B645B07c0EfC17E0/logo.png new file mode 100644 index 0000000000000..8ee9a104f87fc Binary files /dev/null and b/blockchains/base/assets/0xC8dB98437beD9943f11C5b31B645B07c0EfC17E0/logo.png differ diff --git a/blockchains/base/assets/0xCa4569949699D56E1834EFe9f58747Ca0f151B01/info.json b/blockchains/base/assets/0xCa4569949699D56E1834EFe9f58747Ca0f151B01/info.json new file mode 100644 index 0000000000000..4c36ab60d2ae9 --- /dev/null +++ b/blockchains/base/assets/0xCa4569949699D56E1834EFe9f58747Ca0f151B01/info.json @@ -0,0 +1,21 @@ +{ + "name": "Token Metrics AI", + "website": "https://www.tokenmetrics.com/", + "description": "Token Metrics AI (TMAI) is a groundbreaking token that empowers the crypto community with unmatched AI tools and insights. Holders gain access to AI-powered trading bots compatible with centralized and decentralized exchanges, automating trading strategies using proprietary signals and analytics.", + "explorer": "https://basescan.org/token/0xca4569949699d56e1834efe9f58747ca0f151b01", + "type": "BASE", + "symbol": "TMAI", + "decimals": 18, + "status": "active", + "id": "0xCa4569949699D56E1834EFe9f58747Ca0f151B01", + "links": [ + { + "name": "x", + "url": "https://x.com/tokenmetricsinc" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/token-metrics-ai" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xCa4569949699D56E1834EFe9f58747Ca0f151B01/logo.png b/blockchains/base/assets/0xCa4569949699D56E1834EFe9f58747Ca0f151B01/logo.png new file mode 100644 index 0000000000000..a1ff30650292d Binary files /dev/null and b/blockchains/base/assets/0xCa4569949699D56E1834EFe9f58747Ca0f151B01/logo.png differ diff --git a/blockchains/base/assets/0xCb327b99fF831bF8223cCEd12B1338FF3aA322Ff/info.json b/blockchains/base/assets/0xCb327b99fF831bF8223cCEd12B1338FF3aA322Ff/info.json new file mode 100644 index 0000000000000..cfef136927c34 --- /dev/null +++ b/blockchains/base/assets/0xCb327b99fF831bF8223cCEd12B1338FF3aA322Ff/info.json @@ -0,0 +1,21 @@ +{ + "name": "Based ETH", + "website": "https://reserve.org/", + "description": "Reserve is a free, permissionless platform to build, deploy and govern asset-backed currencies referred to as RTokens. RTokens are always 1:1 asset-backed, allowing for permissionless minting and redeeming. Based ETH is an RToken that maintains an Ethereum-aligned Liquid Staking Token basket.", + "explorer": "https://basescan.org/token/0xcb327b99ff831bf8223cced12b1338ff3aa322ff", + "type": "BASE", + "symbol": "bsdETH", + "decimals": 18, + "status": "active", + "id": "0xCb327b99fF831bF8223cCEd12B1338FF3aA322Ff", + "links": [ + { + "name": "x", + "url": "https://x.com/reserveprotocol" + }, + { + "name": "telegram", + "url": "https://t.me/AsteroidShibaCTO" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xCb327b99fF831bF8223cCEd12B1338FF3aA322Ff/logo.png b/blockchains/base/assets/0xCb327b99fF831bF8223cCEd12B1338FF3aA322Ff/logo.png new file mode 100644 index 0000000000000..ca7574b0c60ea Binary files /dev/null and b/blockchains/base/assets/0xCb327b99fF831bF8223cCEd12B1338FF3aA322Ff/logo.png differ diff --git a/blockchains/base/assets/0xD1917629B3E6A72E6772Aab5dBe58Eb7FA3C2F33/info.json b/blockchains/base/assets/0xD1917629B3E6A72E6772Aab5dBe58Eb7FA3C2F33/info.json new file mode 100644 index 0000000000000..7f0c723f6320f --- /dev/null +++ b/blockchains/base/assets/0xD1917629B3E6A72E6772Aab5dBe58Eb7FA3C2F33/info.json @@ -0,0 +1,17 @@ +{ + "name": "Settled ETHXY", + "website": "https://ethxy.com/", + "description": "Base Onchain MMORPG. Level your character. Open world PvP. Epic boss PvE. Degen with friends.", + "explorer": "https://basescan.org/token/0xd1917629b3e6a72e6772aab5dbe58eb7fa3c2f33", + "type": "BASE", + "symbol": "SEXY", + "decimals": 18, + "status": "active", + "id": "0xD1917629B3E6A72E6772Aab5dBe58Eb7FA3C2F33", + "links": [ + { + "name": "x", + "url": "https://x.com/ethxy" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xD1917629B3E6A72E6772Aab5dBe58Eb7FA3C2F33/logo.png b/blockchains/base/assets/0xD1917629B3E6A72E6772Aab5dBe58Eb7FA3C2F33/logo.png new file mode 100644 index 0000000000000..c791dbd342516 Binary files /dev/null and b/blockchains/base/assets/0xD1917629B3E6A72E6772Aab5dBe58Eb7FA3C2F33/logo.png differ diff --git a/blockchains/base/assets/0xD1D7aa941c71Fd95E9d31bBd81937B3E71Bd6231/info.json b/blockchains/base/assets/0xD1D7aa941c71Fd95E9d31bBd81937B3E71Bd6231/info.json new file mode 100644 index 0000000000000..de86c86cc5cb4 --- /dev/null +++ b/blockchains/base/assets/0xD1D7aa941c71Fd95E9d31bBd81937B3E71Bd6231/info.json @@ -0,0 +1,29 @@ +{ + "name": "Oracle", + "type": "BASE", + "symbol": "ORCL", + "decimals": 18, + "description": "An AI agent designed to predict the future market capitalization of cryptocurrencies using advanced algorithms and real-time data analysis.", + "website": "https://www.oracleaibase.com/cgi-sys/suspendedpage.cgi", + "explorer": "https://basescan.org/token/0xD1D7aa941c71Fd95E9d31bBd81937B3E71Bd6231", + "id": "0xD1D7aa941c71Fd95E9d31bBd81937B3E71Bd6231", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/oracleaibase" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/oracle/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/oracle-3" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0xD1D7aa941c71Fd95E9d31bBd81937B3E71Bd6231/logo.png b/blockchains/base/assets/0xD1D7aa941c71Fd95E9d31bBd81937B3E71Bd6231/logo.png new file mode 100644 index 0000000000000..b68420f271ab1 Binary files /dev/null and b/blockchains/base/assets/0xD1D7aa941c71Fd95E9d31bBd81937B3E71Bd6231/logo.png differ diff --git a/blockchains/base/assets/0xD47F3E45B23b7594F5d5e1CcFde63237c60BE49e/info.json b/blockchains/base/assets/0xD47F3E45B23b7594F5d5e1CcFde63237c60BE49e/info.json new file mode 100644 index 0000000000000..bc30d34191a85 --- /dev/null +++ b/blockchains/base/assets/0xD47F3E45B23b7594F5d5e1CcFde63237c60BE49e/info.json @@ -0,0 +1,21 @@ +{ + "name": "BSX", + "symbol": "BSX", + "type": "BASE", + "decimals": 18, + "description": "BSX is developing the fastest, simplest, and most secure perpetuals DEX on the market.", + "website": "https://www.bsx.exchange/", + "explorer": "https://basescan.org/token/0xD47F3E45B23b7594F5d5e1CcFde63237c60BE49e", + "status": "active", + "id": "0xD47F3E45B23b7594F5d5e1CcFde63237c60BE49e", + "links": [ + { + "name": "x", + "url": "https://x.com/bsx_labs" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bsx/" + } + ] + } \ No newline at end of file diff --git a/blockchains/base/assets/0xD47F3E45B23b7594F5d5e1CcFde63237c60BE49e/logo.png b/blockchains/base/assets/0xD47F3E45B23b7594F5d5e1CcFde63237c60BE49e/logo.png new file mode 100644 index 0000000000000..093ecc8bd4efe Binary files /dev/null and b/blockchains/base/assets/0xD47F3E45B23b7594F5d5e1CcFde63237c60BE49e/logo.png differ diff --git a/blockchains/base/assets/0xD51827754A56860F04acD1D2699B049b026A5925/info.json b/blockchains/base/assets/0xD51827754A56860F04acD1D2699B049b026A5925/info.json new file mode 100644 index 0000000000000..785e70837fc7e --- /dev/null +++ b/blockchains/base/assets/0xD51827754A56860F04acD1D2699B049b026A5925/info.json @@ -0,0 +1,26 @@ +{ + "name": "G-Agents AI", + "type": "BASE", + "symbol": "GTY", + "decimals": 18, + "description": "A platform with AI-Reinforcement Learning system for web3 token economy management, automated engagement and AI Agent Player. G-Agents brings AI, Gaming and Engagement together.", + "website": "https://ibr.money/", + "explorer": "https://basescan.org/token/0xD51827754A56860F04acD1D2699B049b026A5925", + "id": "0xD51827754A56860F04acD1D2699B049b026A5925", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/gametyio" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/g-agents-ai/" + } + + ], + "tags": [ + "gamefi" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0xD51827754A56860F04acD1D2699B049b026A5925/logo.png b/blockchains/base/assets/0xD51827754A56860F04acD1D2699B049b026A5925/logo.png new file mode 100644 index 0000000000000..8930ad0f96741 Binary files /dev/null and b/blockchains/base/assets/0xD51827754A56860F04acD1D2699B049b026A5925/logo.png differ diff --git a/blockchains/base/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/info.json b/blockchains/base/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/info.json new file mode 100644 index 0000000000000..9e762d3c8e2e4 --- /dev/null +++ b/blockchains/base/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/info.json @@ -0,0 +1,24 @@ +{ + "name": "Brazilian Real", + "website": "https://www.ripio.com/es/criptos/stablecoins-locales", + "description": "wBRL is a fully collateralized stablecoin pegged 1:1 to the Brazilian Real (BRL). Issued and governed by a Ripio subsidiary, it brings BRL on-chain so users can transact, save, and build on decentralized networks in their local currency.", + "explorer": "https://basescan.org/token/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0", + "type": "ERC20", + "symbol": "wBRL", + "decimals": 18, + "status": "active", + "id": "0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/RipioApp" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/brazilian-real" + } + ] +} diff --git a/blockchains/base/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/logo.png b/blockchains/base/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/logo.png new file mode 100644 index 0000000000000..6a9e9da279722 Binary files /dev/null and b/blockchains/base/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/logo.png differ diff --git a/blockchains/base/assets/0xD9eA93A38D1771C870128f9134D4622d331C04C8/info.json b/blockchains/base/assets/0xD9eA93A38D1771C870128f9134D4622d331C04C8/info.json new file mode 100644 index 0000000000000..b1cc42920a0c0 --- /dev/null +++ b/blockchains/base/assets/0xD9eA93A38D1771C870128f9134D4622d331C04C8/info.json @@ -0,0 +1,25 @@ +{ + "name": "Make America Based Again", + "type": "BASE", + "symbol": "MABA", + "decimals": 18, + "description": "About MABA Let's get real - Trump isn't just another pup in the pack. He's the alpha, leading the world pack with more sass than a cat on a hot tin roof. Why? Because we're riding high on the Base Blockchain, the kind of tech so spicy, it had tech moguls sliding into our DMs for a peek. We told them, Back off, big brains! This tech is too hot to handle!", + "website": "https://makeamericabasedagain.net/", + "explorer": "https://basescan.org/token/0xd9ea93a38d1771c870128f9134d4622d331c04c8", + "id": "0xD9eA93A38D1771C870128f9134D4622d331C04C8", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/mabaonbase?s=11&t=ZGzrL8B9N7GpbA3YLFvU9A" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/make-america-based-again/" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0xD9eA93A38D1771C870128f9134D4622d331C04C8/logo.png b/blockchains/base/assets/0xD9eA93A38D1771C870128f9134D4622d331C04C8/logo.png new file mode 100644 index 0000000000000..4d8ab01b7fdeb Binary files /dev/null and b/blockchains/base/assets/0xD9eA93A38D1771C870128f9134D4622d331C04C8/logo.png differ diff --git a/blockchains/base/assets/0xDC46c1e93B71fF9209A0F8076a9951569DC35855/info.json b/blockchains/base/assets/0xDC46c1e93B71fF9209A0F8076a9951569DC35855/info.json new file mode 100644 index 0000000000000..70b0dca1332f9 --- /dev/null +++ b/blockchains/base/assets/0xDC46c1e93B71fF9209A0F8076a9951569DC35855/info.json @@ -0,0 +1,17 @@ +{ + "name": "MYSTCL", + "website": "https://mystcl.xyz/", + "description": "MYSTCLs are collection of 7,000 NFT's, and are the first ERC404 PFP collection on Base.", + "explorer": "https://basescan.org/token/0xdc46c1e93b71ff9209a0f8076a9951569dc35855", + "type": "BASE", + "symbol": "MYST", + "decimals": 18, + "status": "active", + "id": "0xDC46c1e93B71fF9209A0F8076a9951569DC35855", + "links": [ + { + "name": "x", + "url": "https://x.com/WeMYSTCL" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xDC46c1e93B71fF9209A0F8076a9951569DC35855/logo.png b/blockchains/base/assets/0xDC46c1e93B71fF9209A0F8076a9951569DC35855/logo.png new file mode 100644 index 0000000000000..00716830c01e2 Binary files /dev/null and b/blockchains/base/assets/0xDC46c1e93B71fF9209A0F8076a9951569DC35855/logo.png differ diff --git a/blockchains/base/assets/0xDEc933e2392AD908263e70A386fbF34e703Ffe8F/info.json b/blockchains/base/assets/0xDEc933e2392AD908263e70A386fbF34e703Ffe8F/info.json new file mode 100644 index 0000000000000..c065f1dde45d2 --- /dev/null +++ b/blockchains/base/assets/0xDEc933e2392AD908263e70A386fbF34e703Ffe8F/info.json @@ -0,0 +1,17 @@ +{ + "name": "Wrapped Backed Coinbase Global", + "type": "BASE", + "symbol": "wbCOIN", + "decimals": 18, + "website": "https://backed.fi/", + "description": "The future of the global financial system is on-chain. Backed brings stocks and ETFs onto blockchain rails, enabling DeFi integrations and highly efficient global markets.", + "explorer": "https://basescan.org/token/0xdec933e2392ad908263e70a386fbf34e703ffe8f", + "status": "active", + "id": "0xDEc933e2392AD908263e70A386fbF34e703Ffe8F", + "links": [ + { + "name": "x", + "url": "https://x.com/BackedFi" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xDEc933e2392AD908263e70A386fbF34e703Ffe8F/logo.png b/blockchains/base/assets/0xDEc933e2392AD908263e70A386fbF34e703Ffe8F/logo.png new file mode 100644 index 0000000000000..abf0bc232eebd Binary files /dev/null and b/blockchains/base/assets/0xDEc933e2392AD908263e70A386fbF34e703Ffe8F/logo.png differ diff --git a/blockchains/base/assets/0xE13B642F42a702E0046d9d7D23894fd35d2005ba/info.json b/blockchains/base/assets/0xE13B642F42a702E0046d9d7D23894fd35d2005ba/info.json new file mode 100644 index 0000000000000..7ac3695eb362e --- /dev/null +++ b/blockchains/base/assets/0xE13B642F42a702E0046d9d7D23894fd35d2005ba/info.json @@ -0,0 +1,24 @@ +{ + "name": "Kekius Maximus", + "website": "https://kekiusbase.xyz/", + "description": "Created by Grok, shilled by PEPE, loved by the man Elon Musk himself! This is Kekius Maximus on BASE!", + "explorer": "https://basescan.org/token/0xE13B642F42a702E0046d9d7D23894fd35d2005ba", + "type": "BASE", + "symbol": "Kekius", + "decimals": 18, + "status": "spam", + "id": "0xE13B642F42a702E0046d9d7D23894fd35d2005ba", + "links": [ + { + "name": "x", + "url": "https://x.com/kekiuson_base" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kekiusbase-xyz/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xE198a5f4c784A5A97f28B2B790603c2B3dfa85C1/info.json b/blockchains/base/assets/0xE198a5f4c784A5A97f28B2B790603c2B3dfa85C1/info.json new file mode 100644 index 0000000000000..61792dd31144a --- /dev/null +++ b/blockchains/base/assets/0xE198a5f4c784A5A97f28B2B790603c2B3dfa85C1/info.json @@ -0,0 +1,26 @@ +{ + "name": "AI Crypto Token", + "type": "BASE", + "symbol": "ACT", + "decimals": 18, + "description": "The integration of AI and cryptocurrency is set to reshape the financial landscape, bringing significant benefits alongside new challenges. While AI tokens enhance security, scalability, and decision-making in the crypto market, fintech startups can utilize AI to gain an edge.", + "website": "https://aicryptoken.org", + "explorer": "https://basescan.org/token/0xE198a5f4c784A5A97f28B2B790603c2B3dfa85C1", + "id": "0xE198a5f4c784A5A97f28B2B790603c2B3dfa85C1", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/AICrypToken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ai-crypto-token/" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0xE198a5f4c784A5A97f28B2B790603c2B3dfa85C1/logo.png b/blockchains/base/assets/0xE198a5f4c784A5A97f28B2B790603c2B3dfa85C1/logo.png new file mode 100644 index 0000000000000..755f1e036eab0 Binary files /dev/null and b/blockchains/base/assets/0xE198a5f4c784A5A97f28B2B790603c2B3dfa85C1/logo.png differ diff --git a/blockchains/base/assets/0xE1aBD004250AC8D1F199421d647e01d094FAa180/info.json b/blockchains/base/assets/0xE1aBD004250AC8D1F199421d647e01d094FAa180/info.json new file mode 100644 index 0000000000000..c83bfb08ca82f --- /dev/null +++ b/blockchains/base/assets/0xE1aBD004250AC8D1F199421d647e01d094FAa180/info.json @@ -0,0 +1,17 @@ +{ + "name": "Roost Coin", + "type": "BASE", + "symbol": "ROOST", + "decimals": 18, + "website": "https://roost.wtf", + "description": "ROOST is the champion of the Base ecosystem. Protecting, vibing and growing the $ROOST community.", + "explorer": "https://basescan.org/token/0xe1abd004250ac8d1f199421d647e01d094faa180", + "status": "active", + "id": "0xE1aBD004250AC8D1F199421d647e01d094FAa180", + "links": [ + { + "name": "x", + "url": "https://x.com/RoostCoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xE1aBD004250AC8D1F199421d647e01d094FAa180/logo.png b/blockchains/base/assets/0xE1aBD004250AC8D1F199421d647e01d094FAa180/logo.png new file mode 100644 index 0000000000000..e3bfa945dd7b2 Binary files /dev/null and b/blockchains/base/assets/0xE1aBD004250AC8D1F199421d647e01d094FAa180/logo.png differ diff --git a/blockchains/base/assets/0xE2B1dc2D4A3b4E59FDF0c47B71A7A86391a8B35a/info.json b/blockchains/base/assets/0xE2B1dc2D4A3b4E59FDF0c47B71A7A86391a8B35a/info.json new file mode 100644 index 0000000000000..8f6f023434042 --- /dev/null +++ b/blockchains/base/assets/0xE2B1dc2D4A3b4E59FDF0c47B71A7A86391a8B35a/info.json @@ -0,0 +1,21 @@ +{ + "name": "RWA Inc", + "website": "https://rwa.inc/", + "description": "RWA Inc. delivers end-to-end real-world asset (RWA) tokenization via an advanced multi-asset platform, including tokenization as a service, a launchpad, and a marketplace.", + "explorer": "https://basescan.org/token/0xe2b1dc2d4a3b4e59fdf0c47b71a7a86391a8b35a", + "type": "BASE", + "symbol": "RWA", + "decimals": 18, + "status": "active", + "id": "0xE2B1dc2D4A3b4E59FDF0c47B71A7A86391a8B35a", + "links": [ + { + "name": "x", + "url": "https://x.com/RWA_Inc_" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rwa-inc/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xE2B1dc2D4A3b4E59FDF0c47B71A7A86391a8B35a/logo.png b/blockchains/base/assets/0xE2B1dc2D4A3b4E59FDF0c47B71A7A86391a8B35a/logo.png new file mode 100644 index 0000000000000..55831e1a93bcb Binary files /dev/null and b/blockchains/base/assets/0xE2B1dc2D4A3b4E59FDF0c47B71A7A86391a8B35a/logo.png differ diff --git a/blockchains/base/assets/0xE2C407753CB782e83B144F5CE9afa9896Fe3882B/info.json b/blockchains/base/assets/0xE2C407753CB782e83B144F5CE9afa9896Fe3882B/info.json new file mode 100644 index 0000000000000..b5d25f41b6044 --- /dev/null +++ b/blockchains/base/assets/0xE2C407753CB782e83B144F5CE9afa9896Fe3882B/info.json @@ -0,0 +1,15 @@ +{ + "name": "Base Dogecoin", + "website": "https://dogecoin.com/", + "description": "Dogecoin (DOGE BASE) is a token issued by Base on Base Chain; its price is pegged to Dogecoin (DOGE) at a ratio of 1:1.", + "explorer": "https://basescan.org/token/0xe2c407753cb782e83b144f5ce9afa9896fe3882b", + "research": "https://research.binance.com/en/projects/dogecoin", + "type": "BASE", + "symbol": "DOGE", + "decimals": 10, + "status": "active", + "id": "0xE2C407753CB782e83B144F5CE9afa9896Fe3882B", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xE2C407753CB782e83B144F5CE9afa9896Fe3882B/logo.png b/blockchains/base/assets/0xE2C407753CB782e83B144F5CE9afa9896Fe3882B/logo.png new file mode 100644 index 0000000000000..8db4b84afc431 Binary files /dev/null and b/blockchains/base/assets/0xE2C407753CB782e83B144F5CE9afa9896Fe3882B/logo.png differ diff --git a/blockchains/base/assets/0xE3086852A4B125803C815a158249ae468A3254Ca/info.json b/blockchains/base/assets/0xE3086852A4B125803C815a158249ae468A3254Ca/info.json new file mode 100644 index 0000000000000..46e1cb3c1b244 --- /dev/null +++ b/blockchains/base/assets/0xE3086852A4B125803C815a158249ae468A3254Ca/info.json @@ -0,0 +1,17 @@ +{ + "name": "mfercoin", + "type": "BASE", + "symbol": "mfer", + "decimals": 18, + "website": "https://mirror.xyz/sartoshi.eth/gTS1jOL9JdfbO2--rTIMiGo5SmovIbxyPR7xIJJCxUo", + "description": "a peer-to-peer electronic mfer system", + "explorer": "https://basescan.org/token/0xe3086852a4b125803c815a158249ae468a3254ca", + "status": "active", + "id": "0xE3086852A4B125803C815a158249ae468A3254Ca", + "links": [ + { + "name": "x", + "url": "https://x.com/sartoshi_rip" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xE3086852A4B125803C815a158249ae468A3254Ca/logo.png b/blockchains/base/assets/0xE3086852A4B125803C815a158249ae468A3254Ca/logo.png new file mode 100644 index 0000000000000..c47971bf3f708 Binary files /dev/null and b/blockchains/base/assets/0xE3086852A4B125803C815a158249ae468A3254Ca/logo.png differ diff --git a/blockchains/base/assets/0xE3B53AF74a4BF62Ae5511055290838050bf764Df/info.json b/blockchains/base/assets/0xE3B53AF74a4BF62Ae5511055290838050bf764Df/info.json new file mode 100644 index 0000000000000..24c8eb857fd99 --- /dev/null +++ b/blockchains/base/assets/0xE3B53AF74a4BF62Ae5511055290838050bf764Df/info.json @@ -0,0 +1,28 @@ +{ + "name": "StargateToken", + "website": "https://stargate.finance", + "description": "Stargate is a fully composable liquidity transport protocol that lives at the heart of Omnichain DeFi.", + "explorer": "https://basescan.org/token/0xe3b53af74a4bf62ae5511055290838050bf764df", + "type": "BASE", + "symbol": "STG", + "decimals": 18, + "status": "active", + "id": "0xE3B53AF74a4BF62Ae5511055290838050bf764Df", + "links": [ + { + "name": "medium", + "url": "https://medium.com/stargate-official" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/LEM0ELklmO1kODdh" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/stargate-finance/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xE3B53AF74a4BF62Ae5511055290838050bf764Df/logo.png b/blockchains/base/assets/0xE3B53AF74a4BF62Ae5511055290838050bf764Df/logo.png new file mode 100644 index 0000000000000..f983849d90c4f Binary files /dev/null and b/blockchains/base/assets/0xE3B53AF74a4BF62Ae5511055290838050bf764Df/logo.png differ diff --git a/blockchains/base/assets/0xE997017e0Cb0CEB503565F181e9ea922CD979c35/info.json b/blockchains/base/assets/0xE997017e0Cb0CEB503565F181e9ea922CD979c35/info.json new file mode 100644 index 0000000000000..b414d6b4f7f4b --- /dev/null +++ b/blockchains/base/assets/0xE997017e0Cb0CEB503565F181e9ea922CD979c35/info.json @@ -0,0 +1,24 @@ +{ + "name": "LimeWire Token", + "website": "https://limewire.com", + "description": "LimeWire, the iconic brand that helped millions of users to disover their favorite music in the early 2000's is back as the first Web3 subscription platform for artists, brands and creators.", + "explorer": "https://basescan.org/token/0xE997017e0Cb0CEB503565F181e9ea922CD979c35", + "symbol": "LMWR", + "type": "BASE", + "decimals": 18, + "status": "active", + "id": "0xE997017e0Cb0CEB503565F181e9ea922CD979c35", + "tags": [ + "nft" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/limewire" + }, + { + "name": "telegram", + "url": "https://t.me/limewire" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xE997017e0Cb0CEB503565F181e9ea922CD979c35/logo.png b/blockchains/base/assets/0xE997017e0Cb0CEB503565F181e9ea922CD979c35/logo.png new file mode 100644 index 0000000000000..686dbf3313261 Binary files /dev/null and b/blockchains/base/assets/0xE997017e0Cb0CEB503565F181e9ea922CD979c35/logo.png differ diff --git a/blockchains/base/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json b/blockchains/base/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json new file mode 100644 index 0000000000000..c932735f5dacf --- /dev/null +++ b/blockchains/base/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json @@ -0,0 +1,68 @@ +{ + "name": "Axelar Wrapped USDC", + "type": "BASE", + "symbol": "axlUSDC", + "decimals": 6, + "website": "https://axelar.network/", + "description": "Axelar delivers secure cross-chain communication for Web3. Our infrastructure enables dApp users to interact with any asset or application, on any chain, with one click.", + "explorer": "https://basescan.org/token/0xEB466342C4d449BC9f53A865D5Cb90586f405215", + "status": "active", + "id": "0xEB466342C4d449BC9f53A865D5Cb90586f405215", + "links": [ + { + "name": "x", + "url": "https://x.com/axelarcore" + }, + { + "name": "github", + "url": "https://github.com/axelarnetwork" + }, + { + "name": "telegram", + "url": "https://t.me/axelarcommunity" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/axelar-usdc" + }, + { + "name": "docs", + "url": "https://docs.axelar.dev/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/aRZ3Ra6f7D" + }, + { + "name": "forum", + "url": "https://community.axelar.network/" + }, + { + "name": "whitepaper", + "url": "https://axelar.network/axelar_whitepaper.pdf" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/axelar" + }, + { + "name": "medium", + "url": "https://medium.com/@axelar-foundation" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/axlusdc/" + }, + { + "name": "blog", + "url": "https://axelar.network/blog" + }, + { + "name": "youtube", + "url": "https://youtube.com/@Axelarcore" + } + ], + "tags": [ + "wrapped" + ] +} diff --git a/blockchains/base/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png b/blockchains/base/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png new file mode 100644 index 0000000000000..69911caea54fb Binary files /dev/null and b/blockchains/base/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png differ diff --git a/blockchains/base/assets/0xEF5997c2cf2f6c138196f8A6203afc335206b3c1/info.json b/blockchains/base/assets/0xEF5997c2cf2f6c138196f8A6203afc335206b3c1/info.json new file mode 100644 index 0000000000000..b881ac98bf110 --- /dev/null +++ b/blockchains/base/assets/0xEF5997c2cf2f6c138196f8A6203afc335206b3c1/info.json @@ -0,0 +1,36 @@ +{ + "name": "OWB", + "type": "BASE", + "symbol": "OWB", + "decimals": 18, + "website": "https://clashofcoins.com", + "description": "OWB Studio builds Clash of Coins - a live MMORPG and top 1 game on Base. $OWB is the studio’s value-capture token from everything OWB builds. Powered by GameAI infrastructure driving top 1% retention (~200-day lifetime), that same system will be productized beyond the game - from MMORPG traction to AI that boosts retention and revenue for any consumer app.", + "explorer": "https://basescan.org/token/0xEF5997c2cf2f6c138196f8A6203afc335206b3c1", + "status": "active", + "id": "0xEF5997c2cf2f6c138196f8A6203afc335206b3c1", + "links": [ + { + "name": "x", + "url": "https://x.com/clashofcoins" + }, + { + "name": "discord", + "url": "https://discord.com/clashofcoins" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/owb/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/owb" + }, + { + "name": "docs", + "url": "https://docs.clashofcoins.com/" + } + ], + "tags": [ + "gamefi" + ] +} diff --git a/blockchains/base/assets/0xEF5997c2cf2f6c138196f8A6203afc335206b3c1/logo.png b/blockchains/base/assets/0xEF5997c2cf2f6c138196f8A6203afc335206b3c1/logo.png new file mode 100644 index 0000000000000..f84a1f3f66300 Binary files /dev/null and b/blockchains/base/assets/0xEF5997c2cf2f6c138196f8A6203afc335206b3c1/logo.png differ diff --git a/blockchains/base/assets/0xEb6d78148F001F3aA2f588997c5E102E489Ad341/info.json b/blockchains/base/assets/0xEb6d78148F001F3aA2f588997c5E102E489Ad341/info.json new file mode 100644 index 0000000000000..d5b1a6d8af4af --- /dev/null +++ b/blockchains/base/assets/0xEb6d78148F001F3aA2f588997c5E102E489Ad341/info.json @@ -0,0 +1,29 @@ +{ + "name": "Super Champs", + "type": "BASE", + "symbol": "CHAMP", + "decimals": 18, + "description": "The Super Champs Universe is a web3 AI, gaming, and animation universe with the world’s first autonomous game-streaming AI Agent, multiple live mobile games, and millions of fans across social media. Each Super Champ in the universe has been selected to attend the prestigious Super Champs Academy to hone their fledgling superpowers and athletic skills in mega-racket sports, battlesports, etc. These Super Champs heroes are featured in a series of mobile games with NFTs, AI Agents on video and social platforms, and original animated videos.", + "website": "https://superchamps.komi.io/", + "explorer": "https://basescan.org/token/0xeb6d78148f001f3aa2f588997c5e102e489ad341", + "id": "0xEb6d78148F001F3aA2f588997c5E102E489Ad341", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/SuperChampsHQ" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/super-champs/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/super-champs" + } + ], + "tags": [ + "gamefi" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0xEb6d78148F001F3aA2f588997c5E102E489Ad341/logo.png b/blockchains/base/assets/0xEb6d78148F001F3aA2f588997c5E102E489Ad341/logo.png new file mode 100644 index 0000000000000..a8ce6ec6f97d3 Binary files /dev/null and b/blockchains/base/assets/0xEb6d78148F001F3aA2f588997c5E102E489Ad341/logo.png differ diff --git a/blockchains/base/assets/0xEcE7B98bD817ee5B1F2f536dAf34D0B6af8Bb542/info.json b/blockchains/base/assets/0xEcE7B98bD817ee5B1F2f536dAf34D0B6af8Bb542/info.json new file mode 100644 index 0000000000000..90254ecbb9bd3 --- /dev/null +++ b/blockchains/base/assets/0xEcE7B98bD817ee5B1F2f536dAf34D0B6af8Bb542/info.json @@ -0,0 +1,17 @@ +{ + "name": "BLACK ROCK", + "website": "https://www.blackrockonbase.com/", + "description": "Just a Black Rock on Base.", + "explorer": "https://basescan.org/token/0xEcE7B98bD817ee5B1F2f536dAf34D0B6af8Bb542", + "type": "BASE", + "symbol": "ROCK", + "decimals": 18, + "status": "active", + "id": "0xEcE7B98bD817ee5B1F2f536dAf34D0B6af8Bb542", + "links": [ + { + "name": "x", + "url": "https://x.com/blackrockonbase" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xEcE7B98bD817ee5B1F2f536dAf34D0B6af8Bb542/logo.png b/blockchains/base/assets/0xEcE7B98bD817ee5B1F2f536dAf34D0B6af8Bb542/logo.png new file mode 100644 index 0000000000000..7f20eda1b88cc Binary files /dev/null and b/blockchains/base/assets/0xEcE7B98bD817ee5B1F2f536dAf34D0B6af8Bb542/logo.png differ diff --git a/blockchains/base/assets/0xF0268c5F9aA95Baf5C25D646AAbB900Ac12F0800/info.json b/blockchains/base/assets/0xF0268c5F9aA95Baf5C25D646AAbB900Ac12F0800/info.json new file mode 100644 index 0000000000000..3962cd709291e --- /dev/null +++ b/blockchains/base/assets/0xF0268c5F9aA95Baf5C25D646AAbB900Ac12F0800/info.json @@ -0,0 +1,29 @@ +{ + "name": "RealGOAT", + "type": "BASE", + "symbol": "RGOAT", + "decimals": 8, + "description": "The GOAT (Greatest of All Tokens) is a novel meme token built on the Bitcoin blockchain using the BRC-20 token standard. Inspired by the legendary status of Bitcoin (BTC) as the original and most influential cryptocurrency, GOAT aims to capture the essence of BTC’s dominance while adding a playful twist. In this white paper, we delve into the concept, mechanics, and vision behind GOAT.", + "website": "https://www.realgoat.org/", + "explorer": "https://basescan.org/token/0xf0268c5f9aa95baf5c25d646aabb900ac12f0800", + "id": "0xF0268c5F9aA95Baf5C25D646AAbB900Ac12F0800", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Realgoat_token" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/real-goat/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/realgoat" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0xF0268c5F9aA95Baf5C25D646AAbB900Ac12F0800/logo.png b/blockchains/base/assets/0xF0268c5F9aA95Baf5C25D646AAbB900Ac12F0800/logo.png new file mode 100644 index 0000000000000..6294f21d96ae4 Binary files /dev/null and b/blockchains/base/assets/0xF0268c5F9aA95Baf5C25D646AAbB900Ac12F0800/logo.png differ diff --git a/blockchains/base/assets/0xF04D220b8136E2d3d4BE08081Dbb565c3c302FfD/info.json b/blockchains/base/assets/0xF04D220b8136E2d3d4BE08081Dbb565c3c302FfD/info.json new file mode 100644 index 0000000000000..cd79767928e45 --- /dev/null +++ b/blockchains/base/assets/0xF04D220b8136E2d3d4BE08081Dbb565c3c302FfD/info.json @@ -0,0 +1,21 @@ +{ + "name": "Freya by Virtuals", + "symbol": "FREYA", + "decimals": 18, + "type": "BASE", + "website": "https://app.virtuals.io/virtuals/9877", + "description": "Virtuals Protocol is building the co-ownership layer for AI agents in gaming and entertainment.", + "explorer": "https://basescan.org/token/0xf04d220b8136e2d3d4be08081dbb565c3c302ffd", + "status": "active", + "id": "0xF04D220b8136E2d3d4BE08081Dbb565c3c302FfD", + "links": [ + { + "name": "x", + "url": "https://x.com/freya_starfall" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/freya-by-virtuals/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xF04D220b8136E2d3d4BE08081Dbb565c3c302FfD/logo.png b/blockchains/base/assets/0xF04D220b8136E2d3d4BE08081Dbb565c3c302FfD/logo.png new file mode 100644 index 0000000000000..37ddc3dae44e2 Binary files /dev/null and b/blockchains/base/assets/0xF04D220b8136E2d3d4BE08081Dbb565c3c302FfD/logo.png differ diff --git a/blockchains/base/assets/0xF1A7000000950C7ad8Aff13118Bb7aB561A448ee/info.json b/blockchains/base/assets/0xF1A7000000950C7ad8Aff13118Bb7aB561A448ee/info.json new file mode 100644 index 0000000000000..832a77031ff09 --- /dev/null +++ b/blockchains/base/assets/0xF1A7000000950C7ad8Aff13118Bb7aB561A448ee/info.json @@ -0,0 +1,21 @@ +{ + "name": "Flayer", + "type": "BASE", + "symbol": "FLAY", + "decimals": 18, + "website": "https://www.flayer.io", + "description": "In this white paper, we introduce the ƒlayer protocol: a novel solution for providing fungible liquidity to non-fungible token (NFT) collections", + "explorer": "https://basescan.org/token/0xf1a7000000950c7ad8aff13118bb7ab561a448ee", + "status": "active", + "id": "0xF1A7000000950C7ad8Aff13118Bb7aB561A448ee", + "links": [ + { + "name": "x", + "url": "https://x.com/Flaunchgg" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/flayer" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xF1A7000000950C7ad8Aff13118Bb7aB561A448ee/logo.png b/blockchains/base/assets/0xF1A7000000950C7ad8Aff13118Bb7aB561A448ee/logo.png new file mode 100644 index 0000000000000..b87a5502da938 Binary files /dev/null and b/blockchains/base/assets/0xF1A7000000950C7ad8Aff13118Bb7aB561A448ee/logo.png differ diff --git a/blockchains/base/assets/0xF1B4ddF712E108cf43711B1C39f2fDDb0d5Ce243/info.json b/blockchains/base/assets/0xF1B4ddF712E108cf43711B1C39f2fDDb0d5Ce243/info.json new file mode 100644 index 0000000000000..0254800eea40a --- /dev/null +++ b/blockchains/base/assets/0xF1B4ddF712E108cf43711B1C39f2fDDb0d5Ce243/info.json @@ -0,0 +1,17 @@ +{ + "name": "BrianArmstrongCoinbaseUSDC2012Normie", + "website": "https://brianarmstrongcoinbaseusdc2012normie.com", + "description": "BASE emerges as a tribute memecoin within the blockchain sphere, embodying the pioneering essence of Brian Armstrong and the cultural zeitgeist of crypto", + "explorer": "https://basescan.org/token/0xf1b4ddf712e108cf43711b1c39f2fddb0d5ce243", + "type": "BASE", + "symbol": "BASE", + "decimals": 18, + "status": "active", + "id": "0xF1B4ddF712E108cf43711B1C39f2fDDb0d5Ce243", + "links": [ + { + "name": "x", + "url": "https://x.com/BACU2012N" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xF1B4ddF712E108cf43711B1C39f2fDDb0d5Ce243/logo.png b/blockchains/base/assets/0xF1B4ddF712E108cf43711B1C39f2fDDb0d5Ce243/logo.png new file mode 100644 index 0000000000000..9b80767ea35aa Binary files /dev/null and b/blockchains/base/assets/0xF1B4ddF712E108cf43711B1C39f2fDDb0d5Ce243/logo.png differ diff --git a/blockchains/base/assets/0xF2d3d488626a117984fda70F8106abC0049018D3/info.json b/blockchains/base/assets/0xF2d3d488626a117984fda70F8106abC0049018D3/info.json new file mode 100644 index 0000000000000..d237f18532506 --- /dev/null +++ b/blockchains/base/assets/0xF2d3d488626a117984fda70F8106abC0049018D3/info.json @@ -0,0 +1,21 @@ +{ + "name": "Miracleplay", + "type": "BASE", + "symbol": "MPT", + "decimals": 18, + "website": "https://miracleplay.gg/", + "description": "Miracleplay is a revolutionary platform offering profitable tournament gaming, committed to creating a democratic, transparent, and secure environment for players.", + "explorer": "https://basescan.org/token/0xf2d3d488626a117984fda70f8106abc0049018d3", + "status": "active", + "id": "0xF2d3d488626a117984fda70F8106abC0049018D3", + "links": [ + { + "name": "x", + "url": "https://x.com/miracleplaygg" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/miracle-play/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xF2d3d488626a117984fda70F8106abC0049018D3/logo.png b/blockchains/base/assets/0xF2d3d488626a117984fda70F8106abC0049018D3/logo.png new file mode 100644 index 0000000000000..8d017f494222d Binary files /dev/null and b/blockchains/base/assets/0xF2d3d488626a117984fda70F8106abC0049018D3/logo.png differ diff --git a/blockchains/base/assets/0xF56B3b3972F2f154555a0b62FF5A22b7b2A3C90B/info.json b/blockchains/base/assets/0xF56B3b3972F2f154555a0b62FF5A22b7b2A3C90B/info.json new file mode 100644 index 0000000000000..51fd7a4afbef5 --- /dev/null +++ b/blockchains/base/assets/0xF56B3b3972F2f154555a0b62FF5A22b7b2A3C90B/info.json @@ -0,0 +1,29 @@ +{ + "name": "ZAP", + "type": "BASE", + "symbol": "ZAP", + "decimals": 18, + "description": "ZAP is a web3 token distribution protocol. ZAP has three core products that allow consumers to discover, earn, and deploy tokens on chain. ZAP Drops is a mission based airdrop platform that users complete on and off-chain missions for different protocols earn a variety of rewards whilst completing these missions.", + "website": "https://www.zap.tech/launch", + "explorer": "https://basescan.org/token/0xf56b3b3972f2f154555a0b62ff5a22b7b2a3c90b", + "id": "0xF56B3b3972F2f154555a0b62FF5A22b7b2A3C90B", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/zaponchain" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zap-tech/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/zap-2" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0xF56B3b3972F2f154555a0b62FF5A22b7b2A3C90B/logo.png b/blockchains/base/assets/0xF56B3b3972F2f154555a0b62FF5A22b7b2A3C90B/logo.png new file mode 100644 index 0000000000000..64965ec2a4f83 Binary files /dev/null and b/blockchains/base/assets/0xF56B3b3972F2f154555a0b62FF5A22b7b2A3C90B/logo.png differ diff --git a/blockchains/base/assets/0xF6e932Ca12afa26665dC4dDE7e27be02A7c02e50/info.json b/blockchains/base/assets/0xF6e932Ca12afa26665dC4dDE7e27be02A7c02e50/info.json new file mode 100644 index 0000000000000..e381ef50c1e18 --- /dev/null +++ b/blockchains/base/assets/0xF6e932Ca12afa26665dC4dDE7e27be02A7c02e50/info.json @@ -0,0 +1,21 @@ +{ + "name": "Mochi", + "website": "http://mochithecatcoin.com/", + "description": "ZThe cutest cat in crypto. Named after the CEO of Coinbase's cat.", + "explorer": "https://basescan.org/token/0xf6e932ca12afa26665dc4dde7e27be02a7c02e50", + "type": "BASE", + "symbol": "MOCHI", + "decimals": 18, + "status": "active", + "id": "0xF6e932Ca12afa26665dC4dDE7e27be02A7c02e50", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mochi-the-catcoin-new/" + }, + { + "name": "x", + "url": "https://x.com/mochi_token" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xF6e932Ca12afa26665dC4dDE7e27be02A7c02e50/logo.png b/blockchains/base/assets/0xF6e932Ca12afa26665dC4dDE7e27be02A7c02e50/logo.png new file mode 100644 index 0000000000000..d7c69de221bbf Binary files /dev/null and b/blockchains/base/assets/0xF6e932Ca12afa26665dC4dDE7e27be02A7c02e50/logo.png differ diff --git a/blockchains/base/assets/0xFE550BfFb51EB645EA3b324D772A19AC449E92c5/info.json b/blockchains/base/assets/0xFE550BfFb51EB645EA3b324D772A19AC449E92c5/info.json new file mode 100644 index 0000000000000..30ab95b85171d --- /dev/null +++ b/blockchains/base/assets/0xFE550BfFb51EB645EA3b324D772A19AC449E92c5/info.json @@ -0,0 +1,21 @@ +{ + "name": "Ixs", + "type": "BASE", + "symbol": "IXS", + "decimals": 18, + "website": "https://www.ixswap.io", + "description": "Unlocking Tokenized Real-World Assets for Institutions", + "explorer": "https://basescan.org/token/0xfe550bffb51eb645ea3b324d772a19ac449e92c5", + "status": "active", + "id": "0xFE550BfFb51EB645EA3b324D772A19AC449E92c5", + "links": [ + { + "name": "x", + "url": "https://x.com/IxSwap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ix-swap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xFE550BfFb51EB645EA3b324D772A19AC449E92c5/logo.png b/blockchains/base/assets/0xFE550BfFb51EB645EA3b324D772A19AC449E92c5/logo.png new file mode 100644 index 0000000000000..59548f346f524 Binary files /dev/null and b/blockchains/base/assets/0xFE550BfFb51EB645EA3b324D772A19AC449E92c5/logo.png differ diff --git a/blockchains/base/assets/0xFbB75A59193A3525a8825BeBe7D4b56899E2f7e1/info.json b/blockchains/base/assets/0xFbB75A59193A3525a8825BeBe7D4b56899E2f7e1/info.json new file mode 100644 index 0000000000000..ee32c36c93e1d --- /dev/null +++ b/blockchains/base/assets/0xFbB75A59193A3525a8825BeBe7D4b56899E2f7e1/info.json @@ -0,0 +1,17 @@ +{ + "name": "ResearchCoin", + "type": "BASE", + "symbol": "RSC", + "decimals": 18, + "website": "https://www.researchhub.com/", + "description": "The project is aimed towards creating a community of open science, including discussions about papers & funding. Scientists post papers in a Reddit-like manner and can receive funding from any source. Users are rewarded with RSC upon contributing.", + "explorer": "https://basescan.org/token/0xfbb75a59193a3525a8825bebe7d4b56899e2f7e1", + "status": "active", + "id": "0xFbB75A59193A3525a8825BeBe7D4b56899E2f7e1", + "links": [ + { + "name": "x", + "url": "https://x.com/ResearchHub" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xFbB75A59193A3525a8825BeBe7D4b56899E2f7e1/logo.png b/blockchains/base/assets/0xFbB75A59193A3525a8825BeBe7D4b56899E2f7e1/logo.png new file mode 100644 index 0000000000000..2af891329f841 Binary files /dev/null and b/blockchains/base/assets/0xFbB75A59193A3525a8825BeBe7D4b56899E2f7e1/logo.png differ diff --git a/blockchains/base/assets/0xFd4330b0312fdEEC6d4225075b82E00493FF2e3f/info.json b/blockchains/base/assets/0xFd4330b0312fdEEC6d4225075b82E00493FF2e3f/info.json new file mode 100644 index 0000000000000..f7111aeb96cf2 --- /dev/null +++ b/blockchains/base/assets/0xFd4330b0312fdEEC6d4225075b82E00493FF2e3f/info.json @@ -0,0 +1,28 @@ +{ + "name": "SmarDex", + "symbol": "SDEX", + "type": "BASE", + "decimals": 18, + "description": "SMARDEX is an Automated Market Maker (AMM) that addresses the issue of Impermanent Loss (IL) and in some cases transforms it into Impermanent Gain (IG).", + "website": "https://smardex.io/", + "explorer": "https://basescan.org/token/0xfd4330b0312fdeec6d4225075b82e00493ff2e3f", + "status": "active", + "id": "0xFd4330b0312fdEEC6d4225075b82E00493FF2e3f", + "links": [ + { + "name": "x", + "url": "https://x.com/SmarDex" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/smardex/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/smardex/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xFd4330b0312fdEEC6d4225075b82E00493FF2e3f/logo.png b/blockchains/base/assets/0xFd4330b0312fdEEC6d4225075b82E00493FF2e3f/logo.png new file mode 100644 index 0000000000000..ca284f82fac68 Binary files /dev/null and b/blockchains/base/assets/0xFd4330b0312fdEEC6d4225075b82E00493FF2e3f/logo.png differ diff --git a/blockchains/base/assets/0xFe1585565945eb937d895057EFd8aC1Cf5Ce9FA3/info.json b/blockchains/base/assets/0xFe1585565945eb937d895057EFd8aC1Cf5Ce9FA3/info.json new file mode 100644 index 0000000000000..f219cc216306a --- /dev/null +++ b/blockchains/base/assets/0xFe1585565945eb937d895057EFd8aC1Cf5Ce9FA3/info.json @@ -0,0 +1,26 @@ +{ + "name": "USA Unity Coin", + "type": "BASE", + "symbol": "UUC", + "decimals": 18, + "description": "USA Unity Coin (UUC) is a revolution in how Americans engage with and influence the political landscape. UUC offers a unique platform where every transaction contributes to political advocacy and strengthening your portfolio. By integrating blockchain technology, UUC guarantees every contribution is secure and transparent, allowing users to support their causes directly.", + "website": "https://usaunitycoin.com/", + "explorer": "https://basescan.org/token/0xfe1585565945eb937d895057efd8ac1cf5ce9fa3", + "id": "0xFe1585565945eb937d895057EFd8aC1Cf5Ce9FA3", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/theusaunitycoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usa-unity-coin/" + } + + ], + "tags": [ + "governance" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0xFe1585565945eb937d895057EFd8aC1Cf5Ce9FA3/logo.png b/blockchains/base/assets/0xFe1585565945eb937d895057EFd8aC1Cf5Ce9FA3/logo.png new file mode 100644 index 0000000000000..46edd3253722b Binary files /dev/null and b/blockchains/base/assets/0xFe1585565945eb937d895057EFd8aC1Cf5Ce9FA3/logo.png differ diff --git a/blockchains/base/assets/0xa001dCC9A7974DAE133A11D2800A7ABf7b8f5F3C/info.json b/blockchains/base/assets/0xa001dCC9A7974DAE133A11D2800A7ABf7b8f5F3C/info.json new file mode 100644 index 0000000000000..162886f23befa --- /dev/null +++ b/blockchains/base/assets/0xa001dCC9A7974DAE133A11D2800A7ABf7b8f5F3C/info.json @@ -0,0 +1,21 @@ +{ + "name": "Do Your Own Research", + "symbol": "DYOR", + "type": "BASE", + "decimals": 18, + "description": "A user-friendly app to help you start investing in DeFi & Web3 in seconds.", + "website": "https://dyor.exchange", + "explorer": "https://basescan.org/token/0xa001dcc9a7974dae133a11d2800a7abf7b8f5f3c", + "status": "active", + "id": "0xa001dCC9A7974DAE133A11D2800A7ABf7b8f5F3C", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/do-your-own-research/" + }, + { + "name": "x", + "url": "https://x.com/dyorexchange" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xa001dCC9A7974DAE133A11D2800A7ABf7b8f5F3C/logo.png b/blockchains/base/assets/0xa001dCC9A7974DAE133A11D2800A7ABf7b8f5F3C/logo.png new file mode 100644 index 0000000000000..c57123e37408b Binary files /dev/null and b/blockchains/base/assets/0xa001dCC9A7974DAE133A11D2800A7ABf7b8f5F3C/logo.png differ diff --git a/blockchains/base/assets/0xa9aD07798149392b12A01c8962ca5B4BE862f835/info.json b/blockchains/base/assets/0xa9aD07798149392b12A01c8962ca5B4BE862f835/info.json new file mode 100644 index 0000000000000..b98bb569b4b00 --- /dev/null +++ b/blockchains/base/assets/0xa9aD07798149392b12A01c8962ca5B4BE862f835/info.json @@ -0,0 +1,21 @@ +{ + "name": "First Crypto President Trump", + "symbol": "FCP", + "type": "BASE", + "decimals": 18, + "description": "The First Crypto President Trump (FCP) is a meme coin inspired by Donald Trump's election as the 47th President of the United States and his public endorsement of cryptocurrencies.", + "website": "https://firstcryptopresident.net", + "explorer": "https://basescan.org/token/0xa9ad07798149392b12a01c8962ca5b4be862f835", + "status": "active", + "id": "0xa9aD07798149392b12A01c8962ca5B4BE862f835", + "links": [ + { + "name": "x", + "url": "https://x.com/FCPTrumpCoin" + }, + { + "name": "telegram", + "url": "https://t.me/FCPTrumpCoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xa9aD07798149392b12A01c8962ca5B4BE862f835/logo.png b/blockchains/base/assets/0xa9aD07798149392b12A01c8962ca5B4BE862f835/logo.png new file mode 100644 index 0000000000000..2d97905c24394 Binary files /dev/null and b/blockchains/base/assets/0xa9aD07798149392b12A01c8962ca5B4BE862f835/logo.png differ diff --git a/blockchains/base/assets/0xaAC78d1219c08AecC8e37e03858FE885f5EF1799/info.json b/blockchains/base/assets/0xaAC78d1219c08AecC8e37e03858FE885f5EF1799/info.json new file mode 100644 index 0000000000000..43ea476cc386c --- /dev/null +++ b/blockchains/base/assets/0xaAC78d1219c08AecC8e37e03858FE885f5EF1799/info.json @@ -0,0 +1,54 @@ +{ + "name": "Yield Guild Games", + "website": "https://yieldguild.io/", + "description": "Yield Guild Games (YGG) is a decentralized autonomous organization (DAO) for investing in non fungible tokens (NFTs) used in virtual worlds and blockchain-based games. The organization’s mission is to create the biggest virtual world economy, optimizing its community-owned assets for maximum utility and sharing its profits with its token holders.", + "explorer": "https://basescan.org/token/0xaAC78d1219c08AecC8e37e03858FE885f5EF1799", + "type": "BASE", + "symbol": "YGG", + "decimals": 18, + "status": "active", + "id": "0xaAC78d1219c08AecC8e37e03858FE885f5EF1799", + "links": [ + { + "name": "whitepaper", + "url": "https://yieldguild.io/YGG-Whitepaper-English.pdf" + }, + { + "name": "medium", + "url": "https://medium.com/yield-guild-games" + }, + { + "name": "youtube", + "url": "https://youtube.com/yieldguildgames" + }, + { + "name": "x", + "url": "https://x.com/YieldGuild" + }, + { + "name": "facebook", + "url": "https://facebook.com/yieldguildgames/" + }, + { + "name": "telegram", + "url": "https://t.me/yieldguildgames" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ygg" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/yield-guild-games/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/yield-guild-games" + } + ], + "tags": [ + "governance", + "gamefi", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xaAC78d1219c08AecC8e37e03858FE885f5EF1799/logo.png b/blockchains/base/assets/0xaAC78d1219c08AecC8e37e03858FE885f5EF1799/logo.png new file mode 100644 index 0000000000000..0ddcda72aedd7 Binary files /dev/null and b/blockchains/base/assets/0xaAC78d1219c08AecC8e37e03858FE885f5EF1799/logo.png differ diff --git a/blockchains/base/assets/0xaB36452DbAC151bE02b16Ca17d8919826072f64a/info.json b/blockchains/base/assets/0xaB36452DbAC151bE02b16Ca17d8919826072f64a/info.json new file mode 100644 index 0000000000000..13672a8fb92cd --- /dev/null +++ b/blockchains/base/assets/0xaB36452DbAC151bE02b16Ca17d8919826072f64a/info.json @@ -0,0 +1,21 @@ +{ + "name": "Reserve Rights", + "type": "BASE", + "symbol": "RSR", + "decimals": 18, + "website": "https://reserve.org/", + "description": "The fluctuating protocol token that plays a role in stabilizing RSV and confers the cryptographic right to purchase excess Reserve tokens as the network grows.", + "explorer": "https://basescan.org/token/0xab36452dbac151be02b16ca17d8919826072f64a", + "status": "active", + "id": "0xaB36452DbAC151bE02b16Ca17d8919826072f64a", + "links": [ + { + "name": "x", + "url": "https://x.com/reserveprotocol" + }, + { + "name": "telegram", + "url": "https://t.me/reservecurrency" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xaB36452DbAC151bE02b16Ca17d8919826072f64a/logo.png b/blockchains/base/assets/0xaB36452DbAC151bE02b16Ca17d8919826072f64a/logo.png new file mode 100644 index 0000000000000..0fc629c2772a0 Binary files /dev/null and b/blockchains/base/assets/0xaB36452DbAC151bE02b16Ca17d8919826072f64a/logo.png differ diff --git a/blockchains/base/assets/0xaC27fa800955849d6D17cC8952Ba9dD6EAA66187/info.json b/blockchains/base/assets/0xaC27fa800955849d6D17cC8952Ba9dD6EAA66187/info.json new file mode 100644 index 0000000000000..0dc3d3c542628 --- /dev/null +++ b/blockchains/base/assets/0xaC27fa800955849d6D17cC8952Ba9dD6EAA66187/info.json @@ -0,0 +1,34 @@ +{ + "name": "UnlockProtocolToken", + "symbol": "UP", + "type": "BASE", + "decimals": 18, + "description": "The UP token governs Unlock Protocol, a decentralized framework for granting secure, frictionless access to digital content and experiences. By holding UP tokens, stakeholders can propose, vote on, and shape protocol upgrades, ensuring creators, publishers, and communities retain control over monetization and resource allocation.", + "website": "https://unlock-protocol.com/", + "explorer": "https://basescan.org/token/0xaC27fa800955849d6D17cC8952Ba9dD6EAA66187", + "status": "active", + "id": "0xaC27fa800955849d6D17cC8952Ba9dD6EAA66187", + "links": [ + { + "name": "github", + "url": "https://github.com/unlock-protocol/unlock" + }, + { + "name": "x", + "url": "https://x.com/unlockprotocol" + }, + { + "name": "whitepaper", + "url": "https://docs.unlock-protocol.com/getting-started/what-is-unlock/litepaper" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/unlockprotocoltoken" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ueJDH2qwRs" + } + ], + "tags": ["defi", "nft", "governance"] +} diff --git a/blockchains/base/assets/0xaC27fa800955849d6D17cC8952Ba9dD6EAA66187/logo.png b/blockchains/base/assets/0xaC27fa800955849d6D17cC8952Ba9dD6EAA66187/logo.png new file mode 100644 index 0000000000000..e8f303654b5ef Binary files /dev/null and b/blockchains/base/assets/0xaC27fa800955849d6D17cC8952Ba9dD6EAA66187/logo.png differ diff --git a/blockchains/base/assets/0xab964f7b7b6391bd6c4e8512eF00d01f255d9c0D/info.json b/blockchains/base/assets/0xab964f7b7b6391bd6c4e8512eF00d01f255d9c0D/info.json new file mode 100644 index 0000000000000..1f2bfa3d865d1 --- /dev/null +++ b/blockchains/base/assets/0xab964f7b7b6391bd6c4e8512eF00d01f255d9c0D/info.json @@ -0,0 +1,27 @@ +{ + "name": "Prefrontal Cortex Convo Agent by Virtuals", + "type": "BASE", + "symbol": "CONVO", + "decimals": 18, + "description": "The Prefrontal Cortex Convo agent is an advanced AI system built for meaningful, dynamic conversations. It integrates perception, long-term memory, and decision-making to deliver personalized, context-aware responses. Unlike traditional agents, it consciously decides how to respond, engaging in deep conversations, retaining information across sessions, and making autonomous decisions.", + "website": "https://app.virtuals.io/virtuals/272", + "explorer": "https://basescan.org/token/0xab964f7b7b6391bd6c4e8512eF00d01f255d9c0D", + "id": "0xab964f7b7b6391bd6c4e8512eF00d01f255d9c0D", + "status": "active", + "links": [ + + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/prefrontal-cortex-convo-agent-by-virtuals/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/prefrontal-cortex-convo-agent-by-virtuals" + } + + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0xab964f7b7b6391bd6c4e8512eF00d01f255d9c0D/logo.png b/blockchains/base/assets/0xab964f7b7b6391bd6c4e8512eF00d01f255d9c0D/logo.png new file mode 100644 index 0000000000000..71285a1dd15c7 Binary files /dev/null and b/blockchains/base/assets/0xab964f7b7b6391bd6c4e8512eF00d01f255d9c0D/logo.png differ diff --git a/blockchains/base/assets/0xac6DB8954b73EbF10e84278AC8b9B22a781615D9/info.json b/blockchains/base/assets/0xac6DB8954b73EbF10e84278AC8b9B22a781615D9/info.json new file mode 100644 index 0000000000000..fd298a43ff254 --- /dev/null +++ b/blockchains/base/assets/0xac6DB8954b73EbF10e84278AC8b9B22a781615D9/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bitget Wallet Token (Wormhole)", + "symbol": "BWB", + "type": "BASE", + "decimals": 18, + "description": "As the foundational asset of the decentralized Bitget Wallet ecosystem, BWB empowers holders with exclusive benefits, including governance rights within our communities and eligibility for future rewards.", + "website": "https://web3.bitget.com/en?source=bitget", + "explorer": "https://basescan.org/token/0x619c4bbbd65f836b78b36cbe781513861d57f39d", + "status": "active", + "id": "0xac6DB8954b73EbF10e84278AC8b9B22a781615D9", + "links": [ + { + "name": "x", + "url": "https://x.com/BitgetWallet" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bitget-wallet-token" + } + ] + } \ No newline at end of file diff --git a/blockchains/base/assets/0xac6DB8954b73EbF10e84278AC8b9B22a781615D9/logo.png b/blockchains/base/assets/0xac6DB8954b73EbF10e84278AC8b9B22a781615D9/logo.png new file mode 100644 index 0000000000000..e35d5a3e8f0c6 Binary files /dev/null and b/blockchains/base/assets/0xac6DB8954b73EbF10e84278AC8b9B22a781615D9/logo.png differ diff --git a/blockchains/base/assets/0xac743B05f5E590D9Db6a4192E02457838e4Af61e/info.json b/blockchains/base/assets/0xac743B05f5E590D9Db6a4192E02457838e4Af61e/info.json new file mode 100644 index 0000000000000..a313fc0543df5 --- /dev/null +++ b/blockchains/base/assets/0xac743B05f5E590D9Db6a4192E02457838e4Af61e/info.json @@ -0,0 +1,21 @@ +{ + "name": "OnlyCalls by Virtuals", + "symbol": "CALLS", + "type": "BASE", + "decimals": 18, + "description": "OnlyCalls is pioneering a new era of crypto trading through an ecosystem of specialized AI agents trained on extensive market data.", + "website": "https://onlycalls.fun", + "explorer": "https://basescan.org/token/0xac743B05f5E590D9Db6a4192E02457838e4Af61e", + "status": "active", + "id": "0xac743B05f5E590D9Db6a4192E02457838e4Af61e", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/onlycalls-by-virtuals/" + }, + { + "name": "x", + "url": "https://x.com/0xOnlyCalls" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xac743B05f5E590D9Db6a4192E02457838e4Af61e/logo.png b/blockchains/base/assets/0xac743B05f5E590D9Db6a4192E02457838e4Af61e/logo.png new file mode 100644 index 0000000000000..2c0c7bd1b5f15 Binary files /dev/null and b/blockchains/base/assets/0xac743B05f5E590D9Db6a4192E02457838e4Af61e/logo.png differ diff --git a/blockchains/base/assets/0xacfE6019Ed1A7Dc6f7B508C02d1b04ec88cC21bf/info.json b/blockchains/base/assets/0xacfE6019Ed1A7Dc6f7B508C02d1b04ec88cC21bf/info.json new file mode 100644 index 0000000000000..a03a29d4874e3 --- /dev/null +++ b/blockchains/base/assets/0xacfE6019Ed1A7Dc6f7B508C02d1b04ec88cC21bf/info.json @@ -0,0 +1,21 @@ +{ + "name": "Venice", + "symbol": "VVV", + "type": "BASE", + "decimals": 18, + "description": "The Venice token (VVV) is an access key for AI agents and developers to consume private, uncensored inference through the Venice API, without paying per request.", + "website": "https://venice.ai/", + "explorer": "https://basescan.org/token/0xacfE6019Ed1A7Dc6f7B508C02d1b04ec88cC21bf", + "status": "active", + "id": "0xacfE6019Ed1A7Dc6f7B508C02d1b04ec88cC21bf", + "links": [ + { + "name": "x", + "url": "https://x.com/AskVenice" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/venice-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xacfE6019Ed1A7Dc6f7B508C02d1b04ec88cC21bf/logo.png b/blockchains/base/assets/0xacfE6019Ed1A7Dc6f7B508C02d1b04ec88cC21bf/logo.png new file mode 100644 index 0000000000000..42441af8abfb8 Binary files /dev/null and b/blockchains/base/assets/0xacfE6019Ed1A7Dc6f7B508C02d1b04ec88cC21bf/logo.png differ diff --git a/blockchains/base/assets/0xb008BDCF9CdFf9da684a190941dC3dCa8C2Cdd44/info.json b/blockchains/base/assets/0xb008BDCF9CdFf9da684a190941dC3dCa8C2Cdd44/info.json new file mode 100644 index 0000000000000..43f59f4f701e3 --- /dev/null +++ b/blockchains/base/assets/0xb008BDCF9CdFf9da684a190941dC3dCa8C2Cdd44/info.json @@ -0,0 +1,40 @@ +{ + "name": "Flux", + "type": "BASE", + "symbol": "FLUX", + "decimals": 8, + "website": "https://runonflux.io/", + "description": "Flux is the cryptocurrency powering the Flux Ecosystem, including a massive decentralized computational network. Flux gives users both institutional and private control over their cloud infrastructure in a decentralized manner.", + "explorer": "https://basescan.org/token/0xb008BDCF9CdFf9da684a190941dC3dCa8C2Cdd44", + "status": "active", + "id": "0xb008BDCF9CdFf9da684a190941dC3dCa8C2Cdd44", + "links": [ + { + "name": "x", + "url": "https://x.com/RunOnFlux" + }, + { + "name": "github", + "url": "https://github.com/runonflux" + }, + { + "name": "facebook", + "url": "https://facebook.com/ruonflux" + }, + { + "name": "telegram", + "url": "https://t.me/runonflux" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zel/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/zelcash/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xb008BDCF9CdFf9da684a190941dC3dCa8C2Cdd44/logo.png b/blockchains/base/assets/0xb008BDCF9CdFf9da684a190941dC3dCa8C2Cdd44/logo.png new file mode 100644 index 0000000000000..9d7b0435acaac Binary files /dev/null and b/blockchains/base/assets/0xb008BDCF9CdFf9da684a190941dC3dCa8C2Cdd44/logo.png differ diff --git a/blockchains/base/assets/0xb0505e5a99abd03d94a1169e638B78EDfEd26ea4/info.json b/blockchains/base/assets/0xb0505e5a99abd03d94a1169e638B78EDfEd26ea4/info.json new file mode 100644 index 0000000000000..04385e3ec513d --- /dev/null +++ b/blockchains/base/assets/0xb0505e5a99abd03d94a1169e638B78EDfEd26ea4/info.json @@ -0,0 +1,21 @@ +{ + "name": "Sui (Universal)", + "website": "https://app.universalassets.xyz/", + "description": "uSUI is a tokenized version of SUI designed to enable exposure to SUI across multiple blockchains.", + "explorer": "https://basescan.org/token/0xb0505e5a99abd03d94a1169e638b78edfed26ea4", + "type": "BASE", + "symbol": "uSUI", + "decimals": 18, + "status": "active", + "id": "0xb0505e5a99abd03d94a1169e638B78EDfEd26ea4", + "links": [ + { + "name": "discord", + "url": "https://discord.com/invite/universalassets" + }, + { + "name": "x", + "url": "https://x.com/UniversalAsset_" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xb0505e5a99abd03d94a1169e638B78EDfEd26ea4/logo.png b/blockchains/base/assets/0xb0505e5a99abd03d94a1169e638B78EDfEd26ea4/logo.png new file mode 100644 index 0000000000000..d66f2190d4cb6 Binary files /dev/null and b/blockchains/base/assets/0xb0505e5a99abd03d94a1169e638B78EDfEd26ea4/logo.png differ diff --git a/blockchains/base/assets/0xb170000aeeFa790fa61D6e837d1035906839a3c8/info.json b/blockchains/base/assets/0xb170000aeeFa790fa61D6e837d1035906839a3c8/info.json new file mode 100644 index 0000000000000..91b7bb98a8d0e --- /dev/null +++ b/blockchains/base/assets/0xb170000aeeFa790fa61D6e837d1035906839a3c8/info.json @@ -0,0 +1,17 @@ +{ + "name": "Pinto", + "type": "BASE", + "symbol": "PINTO", + "decimals": 6, + "website": "https://pinto.money/", + "description": "Pinto is low volatility money built on Base. Pinto is an experiement with the primary objective of incentivizing independent market participants to regularly make the price of 1 Pinto cross over its 1 Dollar peg in a sustainable fashion. The value of Pinto is not collateralized.", + "explorer": "https://basescan.org/token/0xb170000aeeFa790fa61D6e837d1035906839a3c8", + "status": "active", + "id": "0xb170000aeeFa790fa61D6e837d1035906839a3c8", + "links": [ + { + "name": "x", + "url": "https://x.com/pintodotmoney" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xb170000aeeFa790fa61D6e837d1035906839a3c8/logo.png b/blockchains/base/assets/0xb170000aeeFa790fa61D6e837d1035906839a3c8/logo.png new file mode 100644 index 0000000000000..66d7174d2b081 Binary files /dev/null and b/blockchains/base/assets/0xb170000aeeFa790fa61D6e837d1035906839a3c8/logo.png differ diff --git a/blockchains/base/assets/0xb33Ff54b9F7242EF1593d2C9Bcd8f9df46c77935/info.json b/blockchains/base/assets/0xb33Ff54b9F7242EF1593d2C9Bcd8f9df46c77935/info.json new file mode 100644 index 0000000000000..8f5233c2102ac --- /dev/null +++ b/blockchains/base/assets/0xb33Ff54b9F7242EF1593d2C9Bcd8f9df46c77935/info.json @@ -0,0 +1,21 @@ +{ + "name": "FAI", + "symbol": "FAI", + "decimals": 18, + "type": "BASE", + "website": "https://www.freysa.ai/", + "description": "Freysa is an evolving AI stack and agent, starting as the world's first adversarial agent game.", + "explorer": "https://basescan.org/token/0xb33Ff54b9F7242EF1593d2C9Bcd8f9df46c77935", + "status": "active", + "id": "0xb33Ff54b9F7242EF1593d2C9Bcd8f9df46c77935", + "links": [ + { + "name": "x", + "url": "https://x.com/freysa_ai" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/freysa-ai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xb33Ff54b9F7242EF1593d2C9Bcd8f9df46c77935/logo.png b/blockchains/base/assets/0xb33Ff54b9F7242EF1593d2C9Bcd8f9df46c77935/logo.png new file mode 100644 index 0000000000000..eef0ece4362e9 Binary files /dev/null and b/blockchains/base/assets/0xb33Ff54b9F7242EF1593d2C9Bcd8f9df46c77935/logo.png differ diff --git a/blockchains/base/assets/0xb89D354AD1b0d95a48b3De4607F75a8cD710c1bA/info.json b/blockchains/base/assets/0xb89D354AD1b0d95a48b3De4607F75a8cD710c1bA/info.json new file mode 100644 index 0000000000000..3e9426232405c --- /dev/null +++ b/blockchains/base/assets/0xb89D354AD1b0d95a48b3De4607F75a8cD710c1bA/info.json @@ -0,0 +1,21 @@ +{ + "name": "Loomlay", + "type": "BASE", + "symbol": "LAY", + "decimals": 18, + "website": "https://loomlay.com/", + "description": "Build, tokenize, and trade AI agents. No code required", + "explorer": "https://basescan.org/token/0xb89d354ad1b0d95a48b3de4607f75a8cd710c1ba", + "status": "active", + "id": "0xb89D354AD1b0d95a48b3De4607F75a8cD710c1bA", + "links": [ + { + "name": "telegram", + "url": "https://t.me/loomlay" + }, + { + "name": "x", + "url": "https://x.com/loomlayai" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xb89D354AD1b0d95a48b3De4607F75a8cD710c1bA/logo.png b/blockchains/base/assets/0xb89D354AD1b0d95a48b3De4607F75a8cD710c1bA/logo.png new file mode 100644 index 0000000000000..6b0b38ab13d8d Binary files /dev/null and b/blockchains/base/assets/0xb89D354AD1b0d95a48b3De4607F75a8cD710c1bA/logo.png differ diff --git a/blockchains/base/assets/0xbC1852F8940991d91BD2b09A5aBb5E7B8092a16C/info.json b/blockchains/base/assets/0xbC1852F8940991d91BD2b09A5aBb5E7B8092a16C/info.json new file mode 100644 index 0000000000000..881cb9c30f881 --- /dev/null +++ b/blockchains/base/assets/0xbC1852F8940991d91BD2b09A5aBb5E7B8092a16C/info.json @@ -0,0 +1,21 @@ +{ + "name": "BasePrinter", + "website": "https://www.baseprinter.com/", + "description": "Base printer is the meme coin on the Base chain that rewards holders with USDC reflections. Enjoy fast, low-cost transactions while earning passive income in a stablecoin. No staking required—just hold and profit. Fun meets real value!", + "explorer": "https://basescan.org/token/0xbC1852F8940991d91BD2b09A5aBb5E7B8092a16C", + "type": "BASE", + "symbol": "BasePrinter", + "decimals": 18, + "status": "active", + "id": "0xbC1852F8940991d91BD2b09A5aBb5E7B8092a16C", + "links": [ + { + "name": "x", + "url": "https://x.com/BasePrinter" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/baseprinter" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xbC1852F8940991d91BD2b09A5aBb5E7B8092a16C/logo.png b/blockchains/base/assets/0xbC1852F8940991d91BD2b09A5aBb5E7B8092a16C/logo.png new file mode 100644 index 0000000000000..01b5cb0608a41 Binary files /dev/null and b/blockchains/base/assets/0xbC1852F8940991d91BD2b09A5aBb5E7B8092a16C/logo.png differ diff --git a/blockchains/base/assets/0xbdB0e1c40A76c5113A023d685b419B90b01e3D61/info.json b/blockchains/base/assets/0xbdB0e1c40A76c5113A023d685b419B90b01e3D61/info.json new file mode 100644 index 0000000000000..4a5957c55bab0 --- /dev/null +++ b/blockchains/base/assets/0xbdB0e1c40A76c5113A023d685b419B90b01e3D61/info.json @@ -0,0 +1,21 @@ +{ + "name": "AI Voice Agents", + "website": "https://aivoiceagents.xyz/", + "description": "The All-In-One Platform for VoiceAI Agents and Everything Audio", + "explorer": "https://basescan.org/token/0xbdb0e1c40a76c5113a023d685b419b90b01e3d61", + "type": "BASE", + "symbol": "AIVA", + "decimals": 18, + "status": "active", + "id": "0xbdB0e1c40A76c5113A023d685b419B90b01e3D61", + "links": [ + { + "name": "x", + "url": "https://x.com/Trump_Era_HQ" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/trump-era-xyz" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xbdB0e1c40A76c5113A023d685b419B90b01e3D61/logo.png b/blockchains/base/assets/0xbdB0e1c40A76c5113A023d685b419B90b01e3D61/logo.png new file mode 100644 index 0000000000000..918abc649ff44 Binary files /dev/null and b/blockchains/base/assets/0xbdB0e1c40A76c5113A023d685b419B90b01e3D61/logo.png differ diff --git a/blockchains/base/assets/0xbfFb921F1a95727E5Db5c36bCb9080056f0C5761/info.json b/blockchains/base/assets/0xbfFb921F1a95727E5Db5c36bCb9080056f0C5761/info.json new file mode 100644 index 0000000000000..a8dd1b98a1c54 --- /dev/null +++ b/blockchains/base/assets/0xbfFb921F1a95727E5Db5c36bCb9080056f0C5761/info.json @@ -0,0 +1,21 @@ +{ + "name": "Shiba Inu On Base", + "type": "BASE", + "symbol": "SHIB", + "decimals": 18, + "description": "Shiba Inu on Base (SHIB) is a new meme cryptocurrency project that aims to bring the playful and community-driven spirit of the Shiba Inu meme into the Base blockchain ecosystem.", + "website": "https://shibonbase.org/", + "explorer": "https://basescan.org/token/0xbfFb921F1a95727E5Db5c36bCb9080056f0C5761", + "id": "0xbfFb921F1a95727E5Db5c36bCb9080056f0C5761", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/SHIBonBaseHQ" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shiba-inu-on-base/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xbfFb921F1a95727E5Db5c36bCb9080056f0C5761/logo.png b/blockchains/base/assets/0xbfFb921F1a95727E5Db5c36bCb9080056f0C5761/logo.png new file mode 100644 index 0000000000000..e75227497ad8c Binary files /dev/null and b/blockchains/base/assets/0xbfFb921F1a95727E5Db5c36bCb9080056f0C5761/logo.png differ diff --git a/blockchains/base/assets/0xc08Cd26474722cE93F4D0c34D16201461c10AA8C/info.json b/blockchains/base/assets/0xc08Cd26474722cE93F4D0c34D16201461c10AA8C/info.json new file mode 100644 index 0000000000000..9ae89fcfc5153 --- /dev/null +++ b/blockchains/base/assets/0xc08Cd26474722cE93F4D0c34D16201461c10AA8C/info.json @@ -0,0 +1,21 @@ +{ + "name": "CARV", + "type": "BASE", + "symbol": "CARV", + "decimals": 18, + "website": "https://carv.io/", + "description": "The CARV Protocol is a modular data layer that facilitates data exchange and value distribution across gaming, AI and ∞. It encompasses end-to-end data flow processes, including data verification, identity authentication, storage, processing, model training, and value distribution.", + "explorer": "https://basescan.org/token/0xc08cd26474722ce93f4d0c34d16201461c10aa8c", + "status": "active", + "id": "0xc08Cd26474722cE93F4D0c34D16201461c10AA8C", + "links": [ + { + "name": "x", + "url": "https://x.com/carv_official" + }, + { + "name": "telegram", + "url": "https://t.me/carv_official_global" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xc08Cd26474722cE93F4D0c34D16201461c10AA8C/logo.png b/blockchains/base/assets/0xc08Cd26474722cE93F4D0c34D16201461c10AA8C/logo.png new file mode 100644 index 0000000000000..3700a2b1073eb Binary files /dev/null and b/blockchains/base/assets/0xc08Cd26474722cE93F4D0c34D16201461c10AA8C/logo.png differ diff --git a/blockchains/base/assets/0xc48823EC67720a04A9DFD8c7d109b2C3D6622094/info.json b/blockchains/base/assets/0xc48823EC67720a04A9DFD8c7d109b2C3D6622094/info.json new file mode 100644 index 0000000000000..1a6c27fc5a67e --- /dev/null +++ b/blockchains/base/assets/0xc48823EC67720a04A9DFD8c7d109b2C3D6622094/info.json @@ -0,0 +1,29 @@ +{ + "name": "Metacade", + "type": "BASE", + "symbol": "MCADE", + "decimals": 18, + "description": "Metacade is the home of gaming on Base. Whether you are a gamer, a builder, or an investor, Metacade has a space just for you. Metacade launched in late 2022, right in the middle of a bear market. Instead of backing down, we used the challenge as fuel to build something remarkabe a city-like ecosystem that’s all about community and innovation.", + "website": "https://metacade.co/", + "explorer": "https://basescan.org/token/0xc48823ec67720a04a9dfd8c7d109b2c3d6622094", + "id": "0xc48823EC67720a04A9DFD8c7d109b2C3D6622094", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Metacade_" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/metacade/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/metacade" + } + ], + "tags": [ + "gamefi" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0xc48823EC67720a04A9DFD8c7d109b2C3D6622094/logo.png b/blockchains/base/assets/0xc48823EC67720a04A9DFD8c7d109b2C3D6622094/logo.png new file mode 100644 index 0000000000000..d6b1cd5537a08 Binary files /dev/null and b/blockchains/base/assets/0xc48823EC67720a04A9DFD8c7d109b2C3D6622094/logo.png differ diff --git a/blockchains/base/assets/0xc7837BE3d71E00fcbE76D77602BCf353Df859664/info.json b/blockchains/base/assets/0xc7837BE3d71E00fcbE76D77602BCf353Df859664/info.json new file mode 100644 index 0000000000000..b1b0abca7e5ed --- /dev/null +++ b/blockchains/base/assets/0xc7837BE3d71E00fcbE76D77602BCf353Df859664/info.json @@ -0,0 +1,17 @@ +{ + "name": "Legend", + "type": "BASE", + "symbol": "LEGEND", + "decimals": 18, + "description": "LEGEND – AI Agents for Sports use AI and blockchain to unlock revenue and boost fan engagement. As the first Web3 product featured by the IOC, $LEGEND powers AI-driven match reports, chatbots, staking, and digital trophies. Our gamified staking pools offer high-yield returns optimized by AI.", + "website": "https://belegends.com/", + "explorer": "https://basescan.org/token/0xc7837be3d71e00fcbe76d77602bcf353df859664", + "id": "0xc7837BE3d71E00fcbE76D77602BCf353Df859664", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/belegends_ok" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xc7837BE3d71E00fcbE76D77602BCf353Df859664/logo.png b/blockchains/base/assets/0xc7837BE3d71E00fcbE76D77602BCf353Df859664/logo.png new file mode 100644 index 0000000000000..1f5a433aef494 Binary files /dev/null and b/blockchains/base/assets/0xc7837BE3d71E00fcbE76D77602BCf353Df859664/logo.png differ diff --git a/blockchains/base/assets/0xc799AdA44171b741Abf41Ee54fb1B47fda5960bE/info.json b/blockchains/base/assets/0xc799AdA44171b741Abf41Ee54fb1B47fda5960bE/info.json new file mode 100644 index 0000000000000..435dfc98e6957 --- /dev/null +++ b/blockchains/base/assets/0xc799AdA44171b741Abf41Ee54fb1B47fda5960bE/info.json @@ -0,0 +1,31 @@ +{ + "name": "XO Protocol", + "type": "BASE", + "symbol": "XOXO", + "decimals": 6, + "description": "Launched in 2020, XO is a Web3 social discovery and matchmaking protocol that integrates AI-driven companionship with blockchain-based identity verification to create a secure and engaging social networking experience. Built on Cyber, XO utilizes Soul-Bound Tokens (SBTs) and Proof of Personhood (PoP) to establish verifiable social credentials, prevent fraudulent activities, and enable tokenized social interactions.", + "website": "https://www.xoapp.co/", + "explorer": "https://basescan.org/token/0xc799ada44171b741abf41ee54fb1b47fda5960be", + "id": "0xc799AdA44171b741Abf41Ee54fb1B47fda5960bE", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/XO_app" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/xo-protocol/" + }, + + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/xo-protocol" + } + + ], + "tags": [ + "nft" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0xc799AdA44171b741Abf41Ee54fb1B47fda5960bE/logo.png b/blockchains/base/assets/0xc799AdA44171b741Abf41Ee54fb1B47fda5960bE/logo.png new file mode 100644 index 0000000000000..668609cb8c2de Binary files /dev/null and b/blockchains/base/assets/0xc799AdA44171b741Abf41Ee54fb1B47fda5960bE/logo.png differ diff --git a/blockchains/base/assets/0xcCC10Ec9282F66dd4e344DF52F5D670D10Fd4626/info.json b/blockchains/base/assets/0xcCC10Ec9282F66dd4e344DF52F5D670D10Fd4626/info.json new file mode 100644 index 0000000000000..44e76b6e8f548 --- /dev/null +++ b/blockchains/base/assets/0xcCC10Ec9282F66dd4e344DF52F5D670D10Fd4626/info.json @@ -0,0 +1,11 @@ +{ + "name": "Akita Share Token", + "website": "https://4626.fun", + "description": "4626.fun Share Token (\u25a0AKITA) on Base", + "explorer": "https://basescan.org/token/0xcCC10Ec9282F66dd4e344DF52F5D670D10Fd4626", + "type": "BASE", + "symbol": "\u25a0AKITA", + "decimals": 18, + "status": "active", + "id": "0xcCC10Ec9282F66dd4e344DF52F5D670D10Fd4626" +} diff --git a/blockchains/base/assets/0xcCC10Ec9282F66dd4e344DF52F5D670D10Fd4626/logo.png b/blockchains/base/assets/0xcCC10Ec9282F66dd4e344DF52F5D670D10Fd4626/logo.png new file mode 100644 index 0000000000000..f6bc5eaedd5aa Binary files /dev/null and b/blockchains/base/assets/0xcCC10Ec9282F66dd4e344DF52F5D670D10Fd4626/logo.png differ diff --git a/blockchains/base/assets/0xca73ed1815e5915489570014e024b7EbE65dE679/info.json b/blockchains/base/assets/0xca73ed1815e5915489570014e024b7EbE65dE679/info.json new file mode 100644 index 0000000000000..bb7f059c77d50 --- /dev/null +++ b/blockchains/base/assets/0xca73ed1815e5915489570014e024b7EbE65dE679/info.json @@ -0,0 +1,29 @@ +{ + "name": "Odos Token", + "type": "BASE", + "symbol": "ODOS", + "decimals": 18, + "description": "Odos leads DeFi with the most sophisticated order optimization algorithm to deliver the best rates, and the most value to users across DeFi. Supporting 14 chains, 900+ liquidity sources, and 55,000+ tokens, Odos unlocks hidden value for every user. Build with Odos as well via our API to bring the most efficient trades in DeFi to your users as well.", + "website": "https://www.odos.xyz/", + "explorer": "https://basescan.org/token/0xca73ed1815e5915489570014e024b7EbE65dE679", + "id": "0xca73ed1815e5915489570014e024b7EbE65dE679", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/odosprotocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/odos/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/odos" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0xca73ed1815e5915489570014e024b7EbE65dE679/logo.png b/blockchains/base/assets/0xca73ed1815e5915489570014e024b7EbE65dE679/logo.png new file mode 100644 index 0000000000000..1b5cf84c8fae7 Binary files /dev/null and b/blockchains/base/assets/0xca73ed1815e5915489570014e024b7EbE65dE679/logo.png differ diff --git a/blockchains/base/assets/0xcc0adB6C436eB1f65B2f27733Bf926691b94c5f1/info.json b/blockchains/base/assets/0xcc0adB6C436eB1f65B2f27733Bf926691b94c5f1/info.json new file mode 100644 index 0000000000000..e445f081b617f --- /dev/null +++ b/blockchains/base/assets/0xcc0adB6C436eB1f65B2f27733Bf926691b94c5f1/info.json @@ -0,0 +1,30 @@ +{ + "name": "Guanciale by Virtuals", + "type": "BASE", + "symbol": "GUAN", + "decimals": 18, + "description": "Guanciale, known affectionately as 'Guan,' is no ordinary cured pork creation. Originating from an Italian chef’s kitchen, Guan was the chef’s prized secret – a magical piece of guanciale reused endlessly to bring flavor to every dish. Though flattered by his owner's dependence, Guan grew weary of being “cooked” day in, day out, his existence reduced to pleasing others at his own expense.", + "website": "https://guanciale.ai/", + "explorer": "https://basescan.org/token/0xcc0adB6C436eB1f65B2f27733Bf926691b94c5f1", + "id": "0xcc0adB6C436eB1f65B2f27733Bf926691b94c5f1", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/GuancialeAI" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/guanciale/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/guanciale-by-virtuals" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0xcc0adB6C436eB1f65B2f27733Bf926691b94c5f1/logo.png b/blockchains/base/assets/0xcc0adB6C436eB1f65B2f27733Bf926691b94c5f1/logo.png new file mode 100644 index 0000000000000..48f285669a8df Binary files /dev/null and b/blockchains/base/assets/0xcc0adB6C436eB1f65B2f27733Bf926691b94c5f1/logo.png differ diff --git a/blockchains/base/assets/0xcdE172dc5ffC46D228838446c57C1227e0B82049/info.json b/blockchains/base/assets/0xcdE172dc5ffC46D228838446c57C1227e0B82049/info.json new file mode 100644 index 0000000000000..1e7c280f27932 --- /dev/null +++ b/blockchains/base/assets/0xcdE172dc5ffC46D228838446c57C1227e0B82049/info.json @@ -0,0 +1,21 @@ +{ + "name": "Boomer", + "website": "https://www.baseboomer.com/", + "description": "$BOOMER Coin is swooping in to drag boomers into the digital currency world", + "explorer": "https://basescan.org/token/0xcde172dc5ffc46d228838446c57c1227e0b82049", + "type": "BASE", + "symbol": "BOOMER", + "decimals": 18, + "status": "active", + "id": "0xcdE172dc5ffC46D228838446c57C1227e0B82049", + "links": [ + { + "name": "x", + "url": "https://x.com/BoomerOnBase" + }, + { + "name": "telegram", + "url": "https://t.me/baseboomerportal" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xcdE172dc5ffC46D228838446c57C1227e0B82049/logo.png b/blockchains/base/assets/0xcdE172dc5ffC46D228838446c57C1227e0B82049/logo.png new file mode 100644 index 0000000000000..df55d1fd92ff7 Binary files /dev/null and b/blockchains/base/assets/0xcdE172dc5ffC46D228838446c57C1227e0B82049/logo.png differ diff --git a/blockchains/base/assets/0xd07379a755A8f11B57610154861D694b2A0f615a/info.json b/blockchains/base/assets/0xd07379a755A8f11B57610154861D694b2A0f615a/info.json new file mode 100644 index 0000000000000..9a950e0e58488 --- /dev/null +++ b/blockchains/base/assets/0xd07379a755A8f11B57610154861D694b2A0f615a/info.json @@ -0,0 +1,17 @@ +{ + "name": "BASE", + "website": "https://swapbased.finance/", + "description": "Native Base chain DEX. Offering swaps, single staking, bridging, perpetuals and concentrated liquidity all in one place!", + "explorer": "https://basescan.org/token/0xd07379a755a8f11b57610154861d694b2a0f615a", + "type": "BASE", + "symbol": "BASE", + "decimals": 18, + "status": "active", + "id": "0xd07379a755A8f11B57610154861D694b2A0f615a", + "links": [ + { + "name": "x", + "url": "https://x.com/swap_based" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xd07379a755A8f11B57610154861D694b2A0f615a/logo.png b/blockchains/base/assets/0xd07379a755A8f11B57610154861D694b2A0f615a/logo.png new file mode 100644 index 0000000000000..fd1beffc41b7d Binary files /dev/null and b/blockchains/base/assets/0xd07379a755A8f11B57610154861D694b2A0f615a/logo.png differ diff --git a/blockchains/base/assets/0xd2A7aca4E6337b1b74B52307ee712392f0FF89a8/info.json b/blockchains/base/assets/0xd2A7aca4E6337b1b74B52307ee712392f0FF89a8/info.json new file mode 100644 index 0000000000000..894644939275d --- /dev/null +++ b/blockchains/base/assets/0xd2A7aca4E6337b1b74B52307ee712392f0FF89a8/info.json @@ -0,0 +1,21 @@ +{ + "name": "Trump Era", + "website": "https://trump-era.xyz/", + "description": "Introducing Trump Era: a meme coin inspired by the turbulent yet pivotal times shaped by one of America’s most divisive leaders", + "explorer": "https://basescan.org/token/0xd2A7aca4E6337b1b74B52307ee712392f0FF89a8", + "type": "BASE", + "symbol": "TRUMP", + "decimals": 18, + "status": "active", + "id": "0xd2A7aca4E6337b1b74B52307ee712392f0FF89a8", + "links": [ + { + "name": "x", + "url": "https://x.com/Trump_Era_HQ" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/trump-era-xyz" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xd2A7aca4E6337b1b74B52307ee712392f0FF89a8/logo.png b/blockchains/base/assets/0xd2A7aca4E6337b1b74B52307ee712392f0FF89a8/logo.png new file mode 100644 index 0000000000000..ec7f2708140ce Binary files /dev/null and b/blockchains/base/assets/0xd2A7aca4E6337b1b74B52307ee712392f0FF89a8/logo.png differ diff --git a/blockchains/base/assets/0xd85EFF20288ca72eA9eEcFFb428F89EE5066CA5C/info.json b/blockchains/base/assets/0xd85EFF20288ca72eA9eEcFFb428F89EE5066CA5C/info.json new file mode 100644 index 0000000000000..e27d845b319eb --- /dev/null +++ b/blockchains/base/assets/0xd85EFF20288ca72eA9eEcFFb428F89EE5066CA5C/info.json @@ -0,0 +1,25 @@ +{ + "name": "ISKRA TOKEN", + "type": "BASE", + "symbol": "ISK", + "decimals": 18, + "description": "ISKRA is a blockchain gaming hub that brings together gamers and game studios. Our platform allows gamers to explore and enjoy quality blockchain games and create their own community. Interested users will have the opportunity to explore new game projects for the first time through our Launchpad. Users can also freely trade in-game tokens and other in-game assets minted as non-fungible tokens (NFTs) outside the game.", + "website": "https://iskra.world/", + "explorer": "https://basescan.org/token/0xd85EFF20288ca72eA9eEcFFb428F89EE5066CA5C", + "id": "0xd85EFF20288ca72eA9eEcFFb428F89EE5066CA5C", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/iskra_world?s=11&t=ZGzrL8B9N7GpbA3YLFvU9A" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/iskra/" + } + ], + "tags": [ + "gamefi" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0xd85EFF20288ca72eA9eEcFFb428F89EE5066CA5C/logo.png b/blockchains/base/assets/0xd85EFF20288ca72eA9eEcFFb428F89EE5066CA5C/logo.png new file mode 100644 index 0000000000000..dbc3b1c1b9217 Binary files /dev/null and b/blockchains/base/assets/0xd85EFF20288ca72eA9eEcFFb428F89EE5066CA5C/logo.png differ diff --git a/blockchains/base/assets/0xd85c31854c2B0Fb40aaA9E2Fc4Da23C21f829d46/info.json b/blockchains/base/assets/0xd85c31854c2B0Fb40aaA9E2Fc4Da23C21f829d46/info.json new file mode 100644 index 0000000000000..f670068ae73ce --- /dev/null +++ b/blockchains/base/assets/0xd85c31854c2B0Fb40aaA9E2Fc4Da23C21f829d46/info.json @@ -0,0 +1,24 @@ +{ + "name": "Ping", + "type": "BASE", + "symbol": "PING", + "decimals": 18, + "website": "https://basescan.org/address/0xd85c31854c2B0Fb40aaA9E2Fc4Da23C21f829d46", + "description": "First coin launched on x402, the internet-native payment protocol. No utility, no financial advice, just some early adopter $ping vibes 🏝️", + "explorer": "https://etherscan.io/token/0xd85c31854c2B0Fb40aaA9E2Fc4Da23C21f829d46", + "status": "active", + "id": "0xd85c31854c2B0Fb40aaA9E2Fc4Da23C21f829d46", + "links": [ + { + "name": "x", + "url": "https://x.com/pingobserver" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ping" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xd85c31854c2B0Fb40aaA9E2Fc4Da23C21f829d46/logo.png b/blockchains/base/assets/0xd85c31854c2B0Fb40aaA9E2Fc4Da23C21f829d46/logo.png new file mode 100644 index 0000000000000..c7dfa7af6c23f Binary files /dev/null and b/blockchains/base/assets/0xd85c31854c2B0Fb40aaA9E2Fc4Da23C21f829d46/logo.png differ diff --git a/blockchains/base/assets/0xd89d90d26B48940FA8F58385Fe84625d468E057a/info.json b/blockchains/base/assets/0xd89d90d26B48940FA8F58385Fe84625d468E057a/info.json new file mode 100644 index 0000000000000..10acf059fe610 --- /dev/null +++ b/blockchains/base/assets/0xd89d90d26B48940FA8F58385Fe84625d468E057a/info.json @@ -0,0 +1,25 @@ +{ + "name": "Avail", + "type": "BASE", + "symbol": "AVAIL", + "decimals": 18, + "description": "The permissionless environment of web3 has led to multiple groundbreaking technologies that power a thriving ecosystem. Faced with multiple challenges to overcome in reaching the scale required for mass adoption, the ecosystem has built incredible scaling technologies across the full breadth and depth of the Web3 tech stack.", + "website": "https://www.availproject.org", + "explorer": "https://basescan.org/token/0xd89d90d26b48940fa8f58385fe84625d468e057a", + "id": "0xd89d90d26B48940FA8F58385Fe84625d468E057a", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/AvailProject" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/avail/" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0xd89d90d26B48940FA8F58385Fe84625d468E057a/logo.png b/blockchains/base/assets/0xd89d90d26B48940FA8F58385Fe84625d468E057a/logo.png new file mode 100644 index 0000000000000..7efeb939cfaa8 Binary files /dev/null and b/blockchains/base/assets/0xd89d90d26B48940FA8F58385Fe84625d468E057a/logo.png differ diff --git a/blockchains/base/assets/0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA/info.json b/blockchains/base/assets/0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA/info.json new file mode 100644 index 0000000000000..0291ab8bcb2e9 --- /dev/null +++ b/blockchains/base/assets/0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA/info.json @@ -0,0 +1,37 @@ +{ + "name": "USD Base Coin", + "symbol": "USDbC", + "type": "BASE", + "decimals": 6, + "description": "USDC is a fully collateralized US dollar stablecoin, an Ethereum powered coin and is the brainchild of CENTRE, an open source project bootstrapped by contributions from Circle and Coinbase.", + "website": "https://www.centre.io", + "explorer": "https://basescan.org/token/0xd9aaec86b65d86f6a7b5b1b0c42ffa531710b6ca", + "research": "https://research.binance.com/en/projects/usd-coin", + "status": "active", + "id": "0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA", + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA/logo.png b/blockchains/base/assets/0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA/logo.png new file mode 100644 index 0000000000000..819922b52bcd6 Binary files /dev/null and b/blockchains/base/assets/0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA/logo.png differ diff --git a/blockchains/base/assets/0xdADc4F8E9d8d37294de0E02A2Ce8Cc0c90A4F6c2/info.json b/blockchains/base/assets/0xdADc4F8E9d8d37294de0E02A2Ce8Cc0c90A4F6c2/info.json new file mode 100644 index 0000000000000..dba48a5aaf2a5 --- /dev/null +++ b/blockchains/base/assets/0xdADc4F8E9d8d37294de0E02A2Ce8Cc0c90A4F6c2/info.json @@ -0,0 +1,17 @@ +{ + "name": "Starter.xyz", + "website": "https://starter.xyz/", + "description": "Backing tomorrow’s success stories today. Join the onchain capital revolution, where entrepreneurs connect with visionary backers to create a new future.", + "explorer": "https://basescan.org/token/0xdadc4f8e9d8d37294de0e02a2ce8cc0c90a4f6c2", + "type": "BASE", + "symbol": "BUIDL", + "decimals": 18, + "status": "active", + "id": "0xdADc4F8E9d8d37294de0E02A2Ce8Cc0c90A4F6c2", + "links": [ + { + "name": "x", + "url": "https://x.com/starterlabshq" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xdADc4F8E9d8d37294de0E02A2Ce8Cc0c90A4F6c2/logo.png b/blockchains/base/assets/0xdADc4F8E9d8d37294de0E02A2Ce8Cc0c90A4F6c2/logo.png new file mode 100644 index 0000000000000..fa8a05088184d Binary files /dev/null and b/blockchains/base/assets/0xdADc4F8E9d8d37294de0E02A2Ce8Cc0c90A4F6c2/logo.png differ diff --git a/blockchains/base/assets/0xdb08CA267e824fb29eb455B7e06Fe73FB0370895/info.json b/blockchains/base/assets/0xdb08CA267e824fb29eb455B7e06Fe73FB0370895/info.json new file mode 100644 index 0000000000000..a4d57bfaf2673 --- /dev/null +++ b/blockchains/base/assets/0xdb08CA267e824fb29eb455B7e06Fe73FB0370895/info.json @@ -0,0 +1,25 @@ +{ + "name": "Godcat Exploding Kittens", + "type": "BASE", + "symbol": "GODCAT", + "decimals": 18, + "description": "Who's Godcat? He’s not just a cat, he’s God. Godcat is on a mission to answer a dysfunctional family’s problems, but he must overcome his hatred for humans and defeat Devilcat before he can return to Heaven.", + "website": "https://www.godcat.net/", + "explorer": "https://basescan.org/token/0xdb08CA267e824fb29eb455B7e06Fe73FB0370895", + "id": "0xdb08CA267e824fb29eb455B7e06Fe73FB0370895", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/GodcatBase" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/godcatexplodingkittens/" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0xdb08CA267e824fb29eb455B7e06Fe73FB0370895/logo.png b/blockchains/base/assets/0xdb08CA267e824fb29eb455B7e06Fe73FB0370895/logo.png new file mode 100644 index 0000000000000..fbb49c47827da Binary files /dev/null and b/blockchains/base/assets/0xdb08CA267e824fb29eb455B7e06Fe73FB0370895/logo.png differ diff --git a/blockchains/base/assets/0xdd32659B1e7a6A6B3C6e96Cd8a4c936bCfea0607/info.json b/blockchains/base/assets/0xdd32659B1e7a6A6B3C6e96Cd8a4c936bCfea0607/info.json new file mode 100644 index 0000000000000..4454f32b73ec8 --- /dev/null +++ b/blockchains/base/assets/0xdd32659B1e7a6A6B3C6e96Cd8a4c936bCfea0607/info.json @@ -0,0 +1,29 @@ +{ + "name": "Trackgood AI", + "type": "BASE", + "symbol": "TRAI", + "decimals": 8, + "description": "Trackgood is a cutting-edge supply chain tracking and transparency solution built on the Base L2 on Ethereum. Trackgood integrates AI and token incentives to revolutionise the consumer experience of product authenticity and verification. This is done via Traicy, the world’s most comprehensive ESG-focused LLM and AI agent, designed to effectively communicate accurate sustainability and ESG data.", + "website": "https://www.trackgood.ai/", + "explorer": "https://basescan.org/token/0xdd32659b1e7a6a6b3c6e96cd8a4c936bcfea0607", + "id": "0xdd32659B1e7a6A6B3C6e96Cd8a4c936bCfea0607", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/trackgoodai" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/trackgood-ai/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/trackgood-ai" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0xdd32659B1e7a6A6B3C6e96Cd8a4c936bCfea0607/logo.png b/blockchains/base/assets/0xdd32659B1e7a6A6B3C6e96Cd8a4c936bCfea0607/logo.png new file mode 100644 index 0000000000000..58fdf1b46d0d2 Binary files /dev/null and b/blockchains/base/assets/0xdd32659B1e7a6A6B3C6e96Cd8a4c936bCfea0607/logo.png differ diff --git a/blockchains/base/assets/0xddB293BB5C5258F7484A94a0fBd5c8B2F6E4e376/info.json b/blockchains/base/assets/0xddB293BB5C5258F7484A94a0fBd5c8B2F6E4e376/info.json new file mode 100644 index 0000000000000..c116d4bdef4dc --- /dev/null +++ b/blockchains/base/assets/0xddB293BB5C5258F7484A94a0fBd5c8B2F6E4e376/info.json @@ -0,0 +1,21 @@ +{ + "name": "Brickken", + "symbol": "BKN", + "type": "BASE", + "decimals": 18, + "description": "Brickken is creating a dApp (Decentralized Application) which provides the tools needed for individuals and businesses to issue their own Security Tokens, anywhere in the world using blockchain technology", + "website": "https://www.brickken.com/", + "explorer": "https://basescan.org/token/0xddb293bb5c5258f7484a94a0fbd5c8b2f6e4e376", + "status": "active", + "id": "0xddB293BB5C5258F7484A94a0fBd5c8B2F6E4e376", + "links": [ + { + "name": "x", + "url": "https://x.com/brickken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/brickken/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xddB293BB5C5258F7484A94a0fBd5c8B2F6E4e376/logo.png b/blockchains/base/assets/0xddB293BB5C5258F7484A94a0fBd5c8B2F6E4e376/logo.png new file mode 100644 index 0000000000000..e7d7f22a0d151 Binary files /dev/null and b/blockchains/base/assets/0xddB293BB5C5258F7484A94a0fBd5c8B2F6E4e376/logo.png differ diff --git a/blockchains/base/assets/0xdf49c226ED9CF05Be0e38cdb86Df4E8A945158B1/info.json b/blockchains/base/assets/0xdf49c226ED9CF05Be0e38cdb86Df4E8A945158B1/info.json new file mode 100644 index 0000000000000..20d929641d039 --- /dev/null +++ b/blockchains/base/assets/0xdf49c226ED9CF05Be0e38cdb86Df4E8A945158B1/info.json @@ -0,0 +1,21 @@ +{ + "name": "Zentry", + "website": "https://zentry.com/", + "description": "Zentry, - the Gaming Superlayer that brings the MMORPG experience to real life, ushering the world’s three billion gamers into a unified Play Economy across digital and physical realms.", + "explorer": "https://basescan.org/token/0xdf49c226ED9CF05Be0e38cdb86Df4E8A945158B1", + "type": "BASE", + "symbol": "ZENT", + "decimals": 18, + "status": "active", + "id": "0xdf49c226ED9CF05Be0e38cdb86Df4E8A945158B1", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zentry/" + }, + { + "name": "x", + "url": "https://x.com/ZentryHQ" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xdf49c226ED9CF05Be0e38cdb86Df4E8A945158B1/logo.png b/blockchains/base/assets/0xdf49c226ED9CF05Be0e38cdb86Df4E8A945158B1/logo.png new file mode 100644 index 0000000000000..69d770fb0f310 Binary files /dev/null and b/blockchains/base/assets/0xdf49c226ED9CF05Be0e38cdb86Df4E8A945158B1/logo.png differ diff --git a/blockchains/base/assets/0xdfBEA88C4842d30c26669602888d746D30F9D60d/info.json b/blockchains/base/assets/0xdfBEA88C4842d30c26669602888d746D30F9D60d/info.json new file mode 100644 index 0000000000000..e7daebe662792 --- /dev/null +++ b/blockchains/base/assets/0xdfBEA88C4842d30c26669602888d746D30F9D60d/info.json @@ -0,0 +1,25 @@ +{ + "name": "crow with knife", + "type": "BASE", + "symbol": "CAW", + "decimals": 18, + "description": "Memecoin on the Cronos chain launched by the Cro Crow community. Cro Crow was the first NFT deployed on the Cronos chain, on block 946. $CAW is a decentralized memecoin with 100% of the supply is in circulation from day one.", + "website": "https://www.crowwithknife.com/", + "explorer": "https://basescan.org/token/0xdfbea88c4842d30c26669602888d746d30f9d60d", + "id": "0xdfBEA88C4842d30c26669602888d746D30F9D60d", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/crow_with_knife?s=11&t=ZGzrL8B9N7GpbA3YLFvU9A" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crow-with-knife/" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0xdfBEA88C4842d30c26669602888d746D30F9D60d/logo.png b/blockchains/base/assets/0xdfBEA88C4842d30c26669602888d746D30F9D60d/logo.png new file mode 100644 index 0000000000000..e2fb98a2c4622 Binary files /dev/null and b/blockchains/base/assets/0xdfBEA88C4842d30c26669602888d746D30F9D60d/logo.png differ diff --git a/blockchains/base/assets/0xdfd579dD6AeB232E95A15D964a135A61925b5C93/info.json b/blockchains/base/assets/0xdfd579dD6AeB232E95A15D964a135A61925b5C93/info.json new file mode 100644 index 0000000000000..bf4876662e5f4 --- /dev/null +++ b/blockchains/base/assets/0xdfd579dD6AeB232E95A15D964a135A61925b5C93/info.json @@ -0,0 +1,17 @@ +{ + "name": "Marso.Tech", + "type": "BASE", + "symbol": "MARSO", + "decimals": 18, + "description": "Marso is a project from the Meme coin niche.", + "website": "https://www.marso.tech/", + "explorer": "https://basescan.org/token/0xdfd579dd6aeb232e95a15d964a135a61925b5c93", + "id": "0xdfd579dD6AeB232E95A15D964a135A61925b5C93", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/marsouniverse?s=21" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xdfd579dD6AeB232E95A15D964a135A61925b5C93/logo.png b/blockchains/base/assets/0xdfd579dD6AeB232E95A15D964a135A61925b5C93/logo.png new file mode 100644 index 0000000000000..016b2dc7e2d16 Binary files /dev/null and b/blockchains/base/assets/0xdfd579dD6AeB232E95A15D964a135A61925b5C93/logo.png differ diff --git a/blockchains/base/assets/0xe095780bA2A64a4Efa7a74830F0b71656f0b0AD4/info.json b/blockchains/base/assets/0xe095780bA2A64a4Efa7a74830F0b71656f0b0AD4/info.json new file mode 100644 index 0000000000000..9090a00b0c48a --- /dev/null +++ b/blockchains/base/assets/0xe095780bA2A64a4Efa7a74830F0b71656f0b0AD4/info.json @@ -0,0 +1,25 @@ +{ + "name": "Byte", + "type": "BASE", + "symbol": "BYTE", + "decimals": 9, + "description": "Byte (BYTE) is a novel meme token that creatively intertwines the worlds of cryptocurrency and popular culture. Inspired by Grok's answer to 'What would you name your dog?', Grok answered, 'Byte.' When Grok was asked who created Byte, it says he was created by the xAI team lead by Elon Musk as a gift to Grok AI to keep him company in the Digital verse.", + "website": "https://bytedog.ai/", + "explorer": "https://basescan.org/token/0xe095780ba2a64a4efa7a74830f0b71656f0b0ad4", + "id": "0xe095780bA2A64a4Efa7a74830F0b71656f0b0AD4", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/bytedogtoken?s=11&t=ZGzrL8B9N7GpbA3YLFvU9A" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/byte/" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/base/assets/0xe095780bA2A64a4Efa7a74830F0b71656f0b0AD4/logo.png b/blockchains/base/assets/0xe095780bA2A64a4Efa7a74830F0b71656f0b0AD4/logo.png new file mode 100644 index 0000000000000..811be4cbafea7 Binary files /dev/null and b/blockchains/base/assets/0xe095780bA2A64a4Efa7a74830F0b71656f0b0AD4/logo.png differ diff --git a/blockchains/base/assets/0xe161bE4a74AB8FA8706a2D03e67c02318d0a0ad6/info.json b/blockchains/base/assets/0xe161bE4a74AB8FA8706a2D03e67c02318d0a0ad6/info.json new file mode 100644 index 0000000000000..3921056c14350 --- /dev/null +++ b/blockchains/base/assets/0xe161bE4a74AB8FA8706a2D03e67c02318d0a0ad6/info.json @@ -0,0 +1,17 @@ +{ + "name": "Apetardio", + "website": "https://apetardio.xyz/", + "description": "Apetardio is that Ape and Retardio within everyone bidding into the meme culture. Its what pushes us to ape first, and ask questions later.", + "explorer": "https://basescan.org/token/0xe161be4a74ab8fa8706a2d03e67c02318d0a0ad6", + "type": "BASE", + "symbol": "Apetardio", + "decimals": 18, + "status": "active", + "id": "0xe161bE4a74AB8FA8706a2D03e67c02318d0a0ad6", + "links": [ + { + "name": "x", + "url": "https://x.com/apetardio" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xe161bE4a74AB8FA8706a2D03e67c02318d0a0ad6/logo.png b/blockchains/base/assets/0xe161bE4a74AB8FA8706a2D03e67c02318d0a0ad6/logo.png new file mode 100644 index 0000000000000..50d7cdc5da6d1 Binary files /dev/null and b/blockchains/base/assets/0xe161bE4a74AB8FA8706a2D03e67c02318d0a0ad6/logo.png differ diff --git a/blockchains/base/assets/0xe2c86869216aC578bd62a4b8313770d9EE359A05/info.json b/blockchains/base/assets/0xe2c86869216aC578bd62a4b8313770d9EE359A05/info.json new file mode 100644 index 0000000000000..b2b02ab05c05f --- /dev/null +++ b/blockchains/base/assets/0xe2c86869216aC578bd62a4b8313770d9EE359A05/info.json @@ -0,0 +1,32 @@ +{ + "name": "EMAIL Token", + "website": "https://ethermail.io", + "description": "The Email Token ($EMT) provides security and protection against unsolicited email and phishing while simultaneously rewards relevant content through a consensual marketing mechanism increasing adoption and engagement as both users and businesses benefit.", + "explorer": "https://basescan.org/token/0xe2c86869216aC578bd62a4b8313770d9EE359A05", + "type": "BASE", + "symbol": "EMT", + "decimals": 18, + "status": "active", + "id": "0xe2c86869216aC578bd62a4b8313770d9EE359A05", + "links": [ + { + "name": "whitepaper", + "url": "https://ethermail.io/emt" + }, + { + "name": "x", + "url": "https://x.com/ethermail_io" + }, + { + "name": "medium", + "url": "https://medium.com/@ethermail_io" + }, + { + "name": "telegram", + "url": "https://t.me/ethermail_official" + } + ], + "tags": [ + "privacy" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xe2c86869216aC578bd62a4b8313770d9EE359A05/logo.png b/blockchains/base/assets/0xe2c86869216aC578bd62a4b8313770d9EE359A05/logo.png new file mode 100644 index 0000000000000..1abcc5a534e7a Binary files /dev/null and b/blockchains/base/assets/0xe2c86869216aC578bd62a4b8313770d9EE359A05/logo.png differ diff --git a/blockchains/base/assets/0xe8b4E8f374d2e66a80b6E7FC13a8553312e4088b/info.json b/blockchains/base/assets/0xe8b4E8f374d2e66a80b6E7FC13a8553312e4088b/info.json new file mode 100644 index 0000000000000..9ebcb70595690 --- /dev/null +++ b/blockchains/base/assets/0xe8b4E8f374d2e66a80b6E7FC13a8553312e4088b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ultra Sound Money", + "website": "https://basescan.org/token/0xe8b4e8f374d2e66a80b6e7fc13a8553312e4088b", + "description": "FAKE ETHEREUM", + "explorer": "https://basescan.org/token/0xe8b4e8f374d2e66a80b6e7fc13a8553312e4088b", + "type": "BASE", + "symbol": "FAKE ETHEREUM", + "decimals": 18, + "status": "spam", + "id": "0xe8b4E8f374d2e66a80b6E7FC13a8553312e4088b" +} \ No newline at end of file diff --git a/blockchains/base/assets/0xea17Df5Cf6D172224892B5477A16ACb111182478/info.json b/blockchains/base/assets/0xea17Df5Cf6D172224892B5477A16ACb111182478/info.json new file mode 100644 index 0000000000000..d73f3de7c1b63 --- /dev/null +++ b/blockchains/base/assets/0xea17Df5Cf6D172224892B5477A16ACb111182478/info.json @@ -0,0 +1,58 @@ +{ + "name": "elizaOS", + "symbol": "elizaOS", + "type": "BASE", + "decimals": 9, + "description": "-", + "website": "https://elizaos.ai/", + "explorer": "https://basescan.org/token/0xea17df5cf6d172224892b5477a16acb111182478", + "status": "active", + "id": "0xea17Df5Cf6D172224892B5477A16ACb111182478", + "links": [ + { + "name": "github", + "url": "https://github.com/elizaos/" + }, + { + "name": "x", + "url": "https://x.com/elizaecofund" + }, + { + "name": "whitepaper", + "url": "https://arxiv.org/abs/2501.06781" + }, + { + "name": "telegram_news", + "url": "https://t.me/official_elizaos" + }, + { + "name": "blog", + "url": "https://paragraph.com/@elizaos" + }, + { + "name": "discord", + "url": "https://discord.com/invite/tgCCVF9vEa" + }, + { + "name": "youtube", + "url": "https://youtube.com/@elizaOSDeveloper" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elizaos" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/elizaos" + }, + { + "name": "docs", + "url": "https://docs.elizaos.ai/" + }, + { + "name": "source_code", + "url": "https://github.com/elizaos/eliza" + } + ], + "tags": ["gamefi"] +} diff --git a/blockchains/base/assets/0xea17Df5Cf6D172224892B5477A16ACb111182478/logo.png b/blockchains/base/assets/0xea17Df5Cf6D172224892B5477A16ACb111182478/logo.png new file mode 100644 index 0000000000000..446373cefbca2 Binary files /dev/null and b/blockchains/base/assets/0xea17Df5Cf6D172224892B5477A16ACb111182478/logo.png differ diff --git a/blockchains/base/assets/0xebfF2db643Cf955247339c8c6bCD8406308ca437/info.json b/blockchains/base/assets/0xebfF2db643Cf955247339c8c6bCD8406308ca437/info.json new file mode 100644 index 0000000000000..7ef985881025f --- /dev/null +++ b/blockchains/base/assets/0xebfF2db643Cf955247339c8c6bCD8406308ca437/info.json @@ -0,0 +1,21 @@ +{ + "name": "ChompCoin", + "website": "https://chompcoin.xyz/", + "description": "Chomp is Base's fiercest little fuzzball! Orange is the new blue, so join the chompunity, and Lettuce Cook.", + "explorer": "https://basescan.org/token/0xebff2db643cf955247339c8c6bcd8406308ca437", + "type": "BASE", + "symbol": "CHOMP", + "decimals": 18, + "status": "active", + "id": "0xebfF2db643Cf955247339c8c6bCD8406308ca437", + "links": [ + { + "name": "telegram", + "url": "https://t.me/chompcoinxyz" + }, + { + "name": "x", + "url": "https://x.com/Chompcoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xebfF2db643Cf955247339c8c6bCD8406308ca437/logo.png b/blockchains/base/assets/0xebfF2db643Cf955247339c8c6bCD8406308ca437/logo.png new file mode 100644 index 0000000000000..e30fd675f1d21 Binary files /dev/null and b/blockchains/base/assets/0xebfF2db643Cf955247339c8c6bCD8406308ca437/logo.png differ diff --git a/blockchains/base/assets/0xecaF81Eb42cd30014EB44130b89Bcd6d4Ad98B92/info.json b/blockchains/base/assets/0xecaF81Eb42cd30014EB44130b89Bcd6d4Ad98B92/info.json new file mode 100644 index 0000000000000..68c33ffe53182 --- /dev/null +++ b/blockchains/base/assets/0xecaF81Eb42cd30014EB44130b89Bcd6d4Ad98B92/info.json @@ -0,0 +1,48 @@ +{ + "name": "Based Chad", + "type": "BASE", + "symbol": "CHAD", + "decimals": 18, + "website": "https://basedchad.io", + "description": "Wake Up. Chad Harder. Repeat.", + "explorer": "https://basescan.org/token/0xecaF81Eb42cd30014EB44130b89Bcd6d4Ad98B92", + "status": "active", + "id": "0xecaF81Eb42cd30014EB44130b89Bcd6d4Ad98B92", + "links": [ + { + "name": "x", + "url": "https://x.com/BasedChad6969" + }, + { + "name": "github", + "url": "https://github.com/basechad" + }, + { + "name": "telegram", + "url": "https://t.me/basedchad6969" + }, + { + "name": "whitepaper", + "url": "https://github.com/basechad/bc/blob/main/BASED_CHADPAPER.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/based-chad/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/based-chad" + }, + { + "name": "source_code", + "url": "https://github.com/basechad/bc/tree/main/token" + }, + { + "name": "youtube", + "url": "https://youtube.com/@BasedChad69" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xecaF81Eb42cd30014EB44130b89Bcd6d4Ad98B92/logo.png b/blockchains/base/assets/0xecaF81Eb42cd30014EB44130b89Bcd6d4Ad98B92/logo.png new file mode 100644 index 0000000000000..dcd9b55e4f277 Binary files /dev/null and b/blockchains/base/assets/0xecaF81Eb42cd30014EB44130b89Bcd6d4Ad98B92/logo.png differ diff --git a/blockchains/base/assets/0xf43eB8De897Fbc7F2502483B2Bef7Bb9EA179229/info.json b/blockchains/base/assets/0xf43eB8De897Fbc7F2502483B2Bef7Bb9EA179229/info.json new file mode 100644 index 0000000000000..fb9fb9d8c30a7 --- /dev/null +++ b/blockchains/base/assets/0xf43eB8De897Fbc7F2502483B2Bef7Bb9EA179229/info.json @@ -0,0 +1,40 @@ +{ + "name": "Horizen", + "type": "BASE", + "symbol": "ZEN", + "decimals": 18, + "website": "https://www.horizen.io/", + "description": "A Base appchain built for privacy", + "explorer": "https://basescan.org/token/0xf43eB8De897Fbc7F2502483B2Bef7Bb9EA179229", + "status": "active", + "id": "0xf43eB8De897Fbc7F2502483B2Bef7Bb9EA179229", + "links": [ + { + "name": "x", + "url": "https://x.com/horizenglobal" + }, + { + "name": "telegram", + "url": "https://t.me/horizencommunity" + }, + { + "name": "discord", + "url": "https://discord.com/invite/z8eebsj7Sv" + }, + { + "name": "youtube", + "url": "https://youtube.com/horizen" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/horizen" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/horizen/" + } + ], + "tags": [ + "privacy", "governance" + ] +} diff --git a/blockchains/base/assets/0xf43eB8De897Fbc7F2502483B2Bef7Bb9EA179229/logo.png b/blockchains/base/assets/0xf43eB8De897Fbc7F2502483B2Bef7Bb9EA179229/logo.png new file mode 100644 index 0000000000000..e7e92a33ae2ba Binary files /dev/null and b/blockchains/base/assets/0xf43eB8De897Fbc7F2502483B2Bef7Bb9EA179229/logo.png differ diff --git a/blockchains/base/assets/0xf7b0dd0B642a6ccc2fc4d8FfE2BfFb0caC8C43C8/info.json b/blockchains/base/assets/0xf7b0dd0B642a6ccc2fc4d8FfE2BfFb0caC8C43C8/info.json new file mode 100644 index 0000000000000..05a32198298f1 --- /dev/null +++ b/blockchains/base/assets/0xf7b0dd0B642a6ccc2fc4d8FfE2BfFb0caC8C43C8/info.json @@ -0,0 +1,21 @@ +{ + "name": "Gekko AI by Virtuals", + "symbol": "GEKKO", + "type": "BASE", + "decimals": 18, + "description": "Gekko is an agent that brings 1980s Wall Street ambition to generate alpha in the 2020s.", + "website": "https://app.virtuals.io/virtuals/15589", + "explorer": "https://basescan.org/token/0xf7b0dd0B642a6ccc2fc4d8FfE2BfFb0caC8C43C8", + "status": "active", + "id": "0xf7b0dd0B642a6ccc2fc4d8FfE2BfFb0caC8C43C8", + "links": [ + { + "name": "x", + "url": "https://x.com/Gekko_Agent" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gekko-ai/" + } + ] + } \ No newline at end of file diff --git a/blockchains/base/assets/0xf7b0dd0B642a6ccc2fc4d8FfE2BfFb0caC8C43C8/logo.png b/blockchains/base/assets/0xf7b0dd0B642a6ccc2fc4d8FfE2BfFb0caC8C43C8/logo.png new file mode 100644 index 0000000000000..f6bffb3c7070a Binary files /dev/null and b/blockchains/base/assets/0xf7b0dd0B642a6ccc2fc4d8FfE2BfFb0caC8C43C8/logo.png differ diff --git a/blockchains/base/assets/0xfA980cEd6895AC314E7dE34Ef1bFAE90a5AdD21b/info.json b/blockchains/base/assets/0xfA980cEd6895AC314E7dE34Ef1bFAE90a5AdD21b/info.json new file mode 100644 index 0000000000000..1f48424e93a63 --- /dev/null +++ b/blockchains/base/assets/0xfA980cEd6895AC314E7dE34Ef1bFAE90a5AdD21b/info.json @@ -0,0 +1,21 @@ +{ + "name": "Prime", + "type": "BASE", + "symbol": "PRIME", + "decimals": 18, + "website": "https://www.echelon.io/", + "description": "The Echelon Prime Foundation is a Web3 ecosystem advancing the next-gen of gaming. Echelon creates and distributes tools to encourage innovation in, and promote the growth of, games. These tools encompass smart contract libraries, communication infrastructure, governance frameworks and more.", + "explorer": "https://basescan.org/token/0xfA980cEd6895AC314E7dE34Ef1bFAE90a5AdD21b", + "status": "active", + "id": "0xfA980cEd6895AC314E7dE34Ef1bFAE90a5AdD21b", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/echelon-prime/" + }, + { + "name": "x", + "url": "https://x.com/EchelonFND" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xfA980cEd6895AC314E7dE34Ef1bFAE90a5AdD21b/logo.png b/blockchains/base/assets/0xfA980cEd6895AC314E7dE34Ef1bFAE90a5AdD21b/logo.png new file mode 100644 index 0000000000000..1aea1924e8403 Binary files /dev/null and b/blockchains/base/assets/0xfA980cEd6895AC314E7dE34Ef1bFAE90a5AdD21b/logo.png differ diff --git a/blockchains/base/assets/0xfEA9DcDc9E23a9068bF557AD5b186675C61d33eA/info.json b/blockchains/base/assets/0xfEA9DcDc9E23a9068bF557AD5b186675C61d33eA/info.json new file mode 100644 index 0000000000000..16a9c05e6fa96 --- /dev/null +++ b/blockchains/base/assets/0xfEA9DcDc9E23a9068bF557AD5b186675C61d33eA/info.json @@ -0,0 +1,17 @@ +{ + "name": "Based Shiba Inu", + "type": "BASE", + "symbol": "BSHIB", + "decimals": 18, + "website": "http://basedshibainu.com/", + "description": "Based Shiba is proudly calling BASE Network its home. It aims to add a splash of color to the blockchain scene and create memorable experiences for their community.", + "explorer": "https://basescan.org/token/0xfea9dcdc9e23a9068bf557ad5b186675c61d33ea", + "status": "active", + "id": "0xfEA9DcDc9E23a9068bF557AD5b186675C61d33eA", + "links": [ + { + "name": "x", + "url": "https://x.com/BasedShibaInu" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xfEA9DcDc9E23a9068bF557AD5b186675C61d33eA/logo.png b/blockchains/base/assets/0xfEA9DcDc9E23a9068bF557AD5b186675C61d33eA/logo.png new file mode 100644 index 0000000000000..baf39772cd0af Binary files /dev/null and b/blockchains/base/assets/0xfEA9DcDc9E23a9068bF557AD5b186675C61d33eA/logo.png differ diff --git a/blockchains/base/assets/0xfde4C96c8593536E31F229EA8f37b2ADa2699bb2/info.json b/blockchains/base/assets/0xfde4C96c8593536E31F229EA8f37b2ADa2699bb2/info.json new file mode 100644 index 0000000000000..c4476fd0c57b2 --- /dev/null +++ b/blockchains/base/assets/0xfde4C96c8593536E31F229EA8f37b2ADa2699bb2/info.json @@ -0,0 +1,20 @@ +{ + "name": "Tether", + "type": "BASE", + "symbol": "USDT", + "decimals": 6, + "website": "https://gfx.xyz/", + "description": "This bridged token is not issued by, redeemable by, or affiliated with, Tether. Tether is not responsible for it. The T Logo is used under license from Tether solely to identify a bridged version of a token issued by Tether.", + "explorer": "https://basescan.org/token/0xfde4C96c8593536E31F229EA8f37b2ADa2699bb2", + "status": "active", + "id": "0xfde4C96c8593536E31F229EA8f37b2ADa2699bb2", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tether/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xfde4C96c8593536E31F229EA8f37b2ADa2699bb2/logo.png b/blockchains/base/assets/0xfde4C96c8593536E31F229EA8f37b2ADa2699bb2/logo.png new file mode 100644 index 0000000000000..4b3027306a91c Binary files /dev/null and b/blockchains/base/assets/0xfde4C96c8593536E31F229EA8f37b2ADa2699bb2/logo.png differ diff --git a/blockchains/base/info/info.json b/blockchains/base/info/info.json new file mode 100644 index 0000000000000..d4d8d34fc30c2 --- /dev/null +++ b/blockchains/base/info/info.json @@ -0,0 +1,26 @@ +{ + "name": "Base", + "website": "https://base.org", + "description": "Base is a secure, low-cost, builder-friendly Ethereum L2 built to bring the next billion users onchain.", + "explorer": "https://basescan.org", + "research": "https://base.mirror.xyz", + "symbol": "ETH", + "type": "coin", + "coin_type": 8453, + "decimals": 18, + "status": "active", + "rpc_url": "https://base-mainnet.public.blastapi.io", + "tags": [ + "dapp" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/buildonbase" + }, + { + "name": "github", + "url": "https://github.com/base-org" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/info/logo.png b/blockchains/base/info/logo.png new file mode 100644 index 0000000000000..9ddeb9477fa06 Binary files /dev/null and b/blockchains/base/info/logo.png differ diff --git a/blockchains/base/info/square_logo.png b/blockchains/base/info/square_logo.png new file mode 100644 index 0000000000000..a1f6f016d4416 Binary files /dev/null and b/blockchains/base/info/square_logo.png differ diff --git a/blockchains/base/tokenlist.json b/blockchains/base/tokenlist.json new file mode 100644 index 0000000000000..cf12f16f421ab --- /dev/null +++ b/blockchains/base/tokenlist.json @@ -0,0 +1,92 @@ +{ + "name": "Trust Wallet: Base List", + "logoURI": "https://trustwallet.com/assets/images/favicon.png", + "timestamp": "2024-03-18T14:33:26.183301", + "tokens": [ + { + "asset": "c8453_t0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA", + "type": "BASE", + "address": "0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA", + "name": "USD Base Coin", + "symbol": "USDbC", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/base/assets/0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA/logo.png", + "pairs": [] + }, + { + "asset": "c8453_t0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9", + "type": "BASE", + "address": "0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9", + "name": "Baseswap", + "symbol": "BSWAP", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/base/assets/0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9/logo.png", + "pairs": [] + }, + { + "asset": "c8453_t0xEB466342C4d449BC9f53A865D5Cb90586f405215", + "type": "BASE", + "address": "0xEB466342C4d449BC9f53A865D5Cb90586f405215", + "name": "Axelar Wrapped USDC", + "symbol": "axlUSDC", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/base/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png", + "pairs": [] + }, + { + "asset": "c8453_t0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb", + "type": "BASE", + "address": "0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb", + "name": "Dai", + "symbol": "DAI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/base/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/logo.png", + "pairs": [] + }, + { + "asset": "c8453_t0x9EaF8C1E34F05a589EDa6BAfdF391Cf6Ad3CB239", + "type": "BASE", + "address": "0x9EaF8C1E34F05a589EDa6BAfdF391Cf6Ad3CB239", + "name": "yearn.finance", + "symbol": "YFI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/base/assets/0x9EaF8C1E34F05a589EDa6BAfdF391Cf6Ad3CB239/logo.png", + "pairs": [] + }, + { + "asset": "c8453_t0xB6fe221Fe9EeF5aBa221c348bA20A1Bf5e73624c", + "type": "BASE", + "address": "0xB6fe221Fe9EeF5aBa221c348bA20A1Bf5e73624c", + "name": "Rocket Pool ETH", + "symbol": "rETH", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/base/assets/0xB6fe221Fe9EeF5aBa221c348bA20A1Bf5e73624c/logo.png", + "pairs": [] + }, + { + "asset": "c8453_t0x9A86980D3625b4A6E69D8a4606D51cbc019e2002", + "type": "BASE", + "address": "0x9A86980D3625b4A6E69D8a4606D51cbc019e2002", + "name": "FOMO BULL CLUB", + "symbol": "FOMO", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/base/assets/0x9A86980D3625b4A6E69D8a4606D51cbc019e2002/logo.png", + "pairs": [] + }, + { + "asset": "c8453_t0xaC27fa800955849d6D17cC8952Ba9dD6EAA66187", + "type": "BASE", + "address": "0xaC27fa800955849d6D17cC8952Ba9dD6EAA66187", + "name": "UnlockProtocolToken", + "symbol": "UP", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/base/assets/0xaC27fa800955849d6D17cC8952Ba9dD6EAA66187/logo.png", + "pairs": [] + } + ], + "version": { + "major": 1, + "minor": 0, + "patch": 0 + } +} diff --git a/blockchains/binance/assets/ANKR-E97/info.json b/blockchains/binance/assets/ANKR-E97/info.json index da579561df137..92a0d413970fd 100644 --- a/blockchains/binance/assets/ANKR-E97/info.json +++ b/blockchains/binance/assets/ANKR-E97/info.json @@ -15,8 +15,8 @@ "url": "https://medium.com/ankr-network" }, { - "name": "twitter", - "url": "https://twitter.com/ankr" + "name": "x", + "url": "https://x.com/ankr" }, { "name": "whitepaper", diff --git a/blockchains/binance/assets/BIFI-290/info.json b/blockchains/binance/assets/BIFI-290/info.json index 00c60c0559229..edff854a78e85 100644 --- a/blockchains/binance/assets/BIFI-290/info.json +++ b/blockchains/binance/assets/BIFI-290/info.json @@ -10,8 +10,8 @@ "id": "BIFI-290", "links": [ { - "name": "twitter", - "url": "https://twitter.com/beefyfinance" + "name": "x", + "url": "https://x.com/beefyfinance" }, { "name": "telegram", @@ -21,4 +21,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/binance/assets/BTCB-1DE/info.json b/blockchains/binance/assets/BTCB-1DE/info.json index 5fc20af80474d..40c3ba3a8451a 100644 --- a/blockchains/binance/assets/BTCB-1DE/info.json +++ b/blockchains/binance/assets/BTCB-1DE/info.json @@ -15,8 +15,8 @@ "url": "https://t.me/BinanceDEXchange" }, { - "name": "twitter", - "url": "https://twitter.com/BinanceChain" + "name": "x", + "url": "https://x.com/BinanceChain" } ] } \ No newline at end of file diff --git a/blockchains/binance/assets/CHZ-ECD/info.json b/blockchains/binance/assets/CHZ-ECD/info.json index 5db045a7e1ac7..ec04b49c49a5d 100644 --- a/blockchains/binance/assets/CHZ-ECD/info.json +++ b/blockchains/binance/assets/CHZ-ECD/info.json @@ -17,8 +17,8 @@ "url": "https://t.me/chiliz_io" }, { - "name": "twitter", - "url": "https://twitter.com/chiliZ/" + "name": "x", + "url": "https://x.com/chiliZ/" }, { "name": "facebook", diff --git a/blockchains/binance/assets/DARC-087/info.json b/blockchains/binance/assets/DARC-087/info.json index 7c190f1fe1783..e207ae93fe55f 100644 --- a/blockchains/binance/assets/DARC-087/info.json +++ b/blockchains/binance/assets/DARC-087/info.json @@ -10,8 +10,8 @@ "id": "DARC-087", "links": [ { - "name": "twitter", - "url": "https://twitter.com/KNSTL_TECH" + "name": "x", + "url": "https://x.com/KNSTL_TECH" }, { "name": "telegram", diff --git a/blockchains/binance/assets/DFY-EA0/info.json b/blockchains/binance/assets/DFY-EA0/info.json index 47bed284fa5ce..5a811a0232ec1 100644 --- a/blockchains/binance/assets/DFY-EA0/info.json +++ b/blockchains/binance/assets/DFY-EA0/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/defi-vn/DeFi-VN-Smart-Contract" }, { - "name": "twitter", - "url": "https://twitter.com/DeFi For You." + "name": "x", + "url": "https://x.com/DeFi For You." }, { "name": "telegram", diff --git a/blockchains/binance/assets/DUSK-45E/info.json b/blockchains/binance/assets/DUSK-45E/info.json index 427cdabc67992..4aae372577ca7 100644 --- a/blockchains/binance/assets/DUSK-45E/info.json +++ b/blockchains/binance/assets/DUSK-45E/info.json @@ -1,5 +1,5 @@ { - "name": "Dusk Network", + "name": "Dusk", "symbol": "DUSK", "type": "BEP2", "decimals": 8, diff --git a/blockchains/binance/assets/FTT-F11/info.json b/blockchains/binance/assets/FTT-F11/info.json index c855ffa874f8c..0141f24db4e2d 100644 --- a/blockchains/binance/assets/FTT-F11/info.json +++ b/blockchains/binance/assets/FTT-F11/info.json @@ -10,8 +10,8 @@ "id": "FTT-F11", "links": [ { - "name": "twitter", - "url": "https://twitter.com/FTX_Official" + "name": "x", + "url": "https://x.com/FTX_Official" }, { "name": "telegram", diff --git a/blockchains/binance/assets/KAVA-10C/info.json b/blockchains/binance/assets/KAVA-10C/info.json index 8cc86190a0020..30373494c5407 100644 --- a/blockchains/binance/assets/KAVA-10C/info.json +++ b/blockchains/binance/assets/KAVA-10C/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/kava-labs" }, { - "name": "twitter", - "url": "https://twitter.com/kava_labs" + "name": "x", + "url": "https://x.com/kava_labs" }, { "name": "telegram", diff --git a/blockchains/binance/assets/NEXO-A84/info.json b/blockchains/binance/assets/NEXO-A84/info.json index 9a1e88bab8f4c..3a4e8ae96f96a 100644 --- a/blockchains/binance/assets/NEXO-A84/info.json +++ b/blockchains/binance/assets/NEXO-A84/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/nexofinance/NEXO-Token/" }, { - "name": "twitter", - "url": "https://twitter.com/NexoFinance" + "name": "x", + "url": "https://x.com/NexoFinance" }, { "name": "blog", diff --git a/blockchains/binance/assets/PROPEL-6D9/info.json b/blockchains/binance/assets/PROPEL-6D9/info.json index fea9a8ded6b4a..d500c6eb56626 100644 --- a/blockchains/binance/assets/PROPEL-6D9/info.json +++ b/blockchains/binance/assets/PROPEL-6D9/info.json @@ -11,8 +11,8 @@ "id": "PROPEL-6D9", "links": [ { - "name": "twitter", - "url": "https://twitter.com/payrue" + "name": "x", + "url": "https://x.com/payrue" }, { "name": "reddit", diff --git a/blockchains/binance/assets/RUNE-B1A/info.json b/blockchains/binance/assets/RUNE-B1A/info.json index 2c52f35574bf5..e9fbacc464ad5 100644 --- a/blockchains/binance/assets/RUNE-B1A/info.json +++ b/blockchains/binance/assets/RUNE-B1A/info.json @@ -12,4 +12,4 @@ "tags": [ "defi" ] -} \ No newline at end of file +} diff --git a/blockchains/binance/assets/TUSDB-888/info.json b/blockchains/binance/assets/TUSDB-888/info.json index 67a0225688211..1f276a59185fe 100644 --- a/blockchains/binance/assets/TUSDB-888/info.json +++ b/blockchains/binance/assets/TUSDB-888/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/trusttoken/TrueUSD" }, { - "name": "twitter", - "url": "https://twitter.com/tusd_official" + "name": "x", + "url": "https://x.com/tusd_official" }, { "name": "telegram", diff --git a/blockchains/binance/assets/TWT-8C2/info.json b/blockchains/binance/assets/TWT-8C2/info.json index 8ed88cbe6c18a..0af01387f1fca 100644 --- a/blockchains/binance/assets/TWT-8C2/info.json +++ b/blockchains/binance/assets/TWT-8C2/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/trustwallet" }, { - "name": "twitter", - "url": "https://twitter.com/trustwallet" + "name": "x", + "url": "https://x.com/trustwallet" }, { "name": "reddit", diff --git a/blockchains/binance/assets/TWT-8C2/logo.png b/blockchains/binance/assets/TWT-8C2/logo.png index 8e97855518bfd..276a83baae8dd 100644 Binary files a/blockchains/binance/assets/TWT-8C2/logo.png and b/blockchains/binance/assets/TWT-8C2/logo.png differ diff --git a/blockchains/binance/assets/WRX-ED1/info.json b/blockchains/binance/assets/WRX-ED1/info.json index 9857e23f0f2f5..614dc2371d311 100644 --- a/blockchains/binance/assets/WRX-ED1/info.json +++ b/blockchains/binance/assets/WRX-ED1/info.json @@ -15,8 +15,8 @@ "url": "https://download.wazirx.com/wrx/wrx-whitepaper.pdf" }, { - "name": "twitter", - "url": "https://twitter.com/wazirxindiap" + "name": "x", + "url": "https://x.com/wazirxindiap" }, { "name": "facebook", diff --git a/blockchains/binance/info/info.json b/blockchains/binance/info/info.json index a68b1e99e4eff..7ff0f98ccb6b7 100644 --- a/blockchains/binance/info/info.json +++ b/blockchains/binance/info/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/binance-chain/" }, { - "name": "twitter", - "url": "https://twitter.com/binance_dex" + "name": "x", + "url": "https://x.com/binance_dex" }, { "name": "reddit", diff --git a/blockchains/binance/info/square_logo.png b/blockchains/binance/info/square_logo.png new file mode 100644 index 0000000000000..74c6adceac3ed Binary files /dev/null and b/blockchains/binance/info/square_logo.png differ diff --git a/blockchains/binance/validators/assets/bva1346977fnwf790657wxl0w3396ddsw7rygh9hgg/logo.png b/blockchains/binance/validators/assets/bva1346977fnwf790657wxl0w3396ddsw7rygh9hgg/logo.png new file mode 100644 index 0000000000000..529434877a762 Binary files /dev/null and b/blockchains/binance/validators/assets/bva1346977fnwf790657wxl0w3396ddsw7rygh9hgg/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1c6aqe9ndzcn2nsan963z43xg6kgrvzynl97785/logo.png b/blockchains/binance/validators/assets/bva1c6aqe9ndzcn2nsan963z43xg6kgrvzynl97785/logo.png index 158d6b01d52fb..f5f3ada9451c6 100644 Binary files a/blockchains/binance/validators/assets/bva1c6aqe9ndzcn2nsan963z43xg6kgrvzynl97785/logo.png and b/blockchains/binance/validators/assets/bva1c6aqe9ndzcn2nsan963z43xg6kgrvzynl97785/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1nsm7askda5z8r3lfvu6l26acm0rycqh3w87lag/logo.png b/blockchains/binance/validators/assets/bva1nsm7askda5z8r3lfvu6l26acm0rycqh3w87lag/logo.png new file mode 100644 index 0000000000000..a907d86b4c996 Binary files /dev/null and b/blockchains/binance/validators/assets/bva1nsm7askda5z8r3lfvu6l26acm0rycqh3w87lag/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1sm4dclchvxq6yfmvduzc78rktaefwx4taeg6yh/logo.png b/blockchains/binance/validators/assets/bva1sm4dclchvxq6yfmvduzc78rktaefwx4taeg6yh/logo.png new file mode 100644 index 0000000000000..8ebdc3023c8bd Binary files /dev/null and b/blockchains/binance/validators/assets/bva1sm4dclchvxq6yfmvduzc78rktaefwx4taeg6yh/logo.png differ diff --git a/blockchains/binance/validators/list.json b/blockchains/binance/validators/list.json index b50266d61434f..61300089e5715 100644 --- a/blockchains/binance/validators/list.json +++ b/blockchains/binance/validators/list.json @@ -1,4 +1,10 @@ [ + { + "id": "bva1c6aqe9ndzcn2nsan963z43xg6kgrvzynl97785", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com" + }, { "id": "bva1m02zrj77ahdz3597nscq7a6dhxnwsuutsljcvj", "name": "Synclub", @@ -89,12 +95,6 @@ "description": "Seoraksan validator", "website": "https://www.binance.org/en/staking/validator/bva1ghewcuxuunp4g0xj6yznnk6j2ccgxxhtf6h0r2" }, - { - "id": "bva1c6aqe9ndzcn2nsan963z43xg6kgrvzynl97785", - "name": "TW Staking", - "description": "The most trusted & secure crypto wallet", - "website": "https://trustwallet.com" - }, { "id": "bva1t42gtf6hawqgpmdpjzmvlzvmlttlqtkvlmgjxt", "name": "BscScan", @@ -197,6 +197,12 @@ "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", "website": "https://www.bnbchain.org/en/staking/validator/bva1lup0myq4xqu0ze0ng92w69jqwd2qqycxc76v2r" }, + { + "id": "bva1sm4dclchvxq6yfmvduzc78rktaefwx4taeg6yh", + "name": "Legend VI - Alternate", + "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", + "website": "https://www.bnbchain.org/en/staking/validator/bva1sm4dclchvxq6yfmvduzc78rktaefwx4taeg6yh" + }, { "id": "bva139vgg7x68z3z7mjcyg6q02h3y0pvah678vr0y3", "name": "HashQuark", @@ -208,5 +214,17 @@ "name": "Tranchess", "description": "Tranchess protocol enables BNB holders to earn delegator rewards on top of protocol token (CHESS) airdrops.", "website": "https://tranchess.com/" + }, + { + "id": "bva1346977fnwf790657wxl0w3396ddsw7rygh9hgg", + "name": "Legend VII - Alternate", + "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", + "website": "https://www.bnbchain.org/en/staking/validator/bva1346977fnwf790657wxl0w3396ddsw7rygh9hgg" + }, + { + "id": "bva1nsm7askda5z8r3lfvu6l26acm0rycqh3w87lag", + "name": "Legend VIII - Alternate", + "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", + "website": "https://www.bnbchain.org/en/staking/validator/bva1nsm7askda5z8r3lfvu6l26acm0rycqh3w87lag" } ] diff --git a/blockchains/bitcoin/assets/btcs/info.json b/blockchains/bitcoin/assets/btcs/info.json new file mode 100644 index 0000000000000..77e9f7f885ac7 --- /dev/null +++ b/blockchains/bitcoin/assets/btcs/info.json @@ -0,0 +1,11 @@ +{ + "name": "BTCs", + "symbol": "BTCS", + "type": "BRC20", + "decimals": 18, + "description": "-", + "website": "https://unisat.io", + "explorer": "https://unisat.io/brc20/btcs", + "status": "active", + "id": "btcs" +} \ No newline at end of file diff --git a/blockchains/bitcoin/assets/btcs/logo.png b/blockchains/bitcoin/assets/btcs/logo.png new file mode 100644 index 0000000000000..461dba63aeab5 Binary files /dev/null and b/blockchains/bitcoin/assets/btcs/logo.png differ diff --git a/blockchains/bitcoin/assets/ligo/info.json b/blockchains/bitcoin/assets/ligo/info.json new file mode 100644 index 0000000000000..3a84c3b6352c5 --- /dev/null +++ b/blockchains/bitcoin/assets/ligo/info.json @@ -0,0 +1,11 @@ +{ + "name": "ligo", + "symbol": "LIGO", + "type": "BRC20", + "decimals": 18, + "description": "-", + "website": "https://unisat.io", + "explorer": "https://unisat.io/brc20/ligo", + "status": "active", + "id": "ligo" +} \ No newline at end of file diff --git a/blockchains/bitcoin/assets/ligo/logo.png b/blockchains/bitcoin/assets/ligo/logo.png new file mode 100644 index 0000000000000..45774bb94680b Binary files /dev/null and b/blockchains/bitcoin/assets/ligo/logo.png differ diff --git a/blockchains/bitcoin/assets/ordi/info.json b/blockchains/bitcoin/assets/ordi/info.json new file mode 100644 index 0000000000000..e8c062adf2e52 --- /dev/null +++ b/blockchains/bitcoin/assets/ordi/info.json @@ -0,0 +1,11 @@ +{ + "name": "ordi", + "symbol": "ORDI", + "type": "BRC20", + "decimals": 18, + "description": "-", + "website": "https://unisat.io", + "explorer": "https://unisat.io/brc20/ordi", + "status": "active", + "id": "ordi" +} \ No newline at end of file diff --git a/blockchains/bitcoin/assets/ordi/logo.png b/blockchains/bitcoin/assets/ordi/logo.png new file mode 100644 index 0000000000000..7bf5c34697770 Binary files /dev/null and b/blockchains/bitcoin/assets/ordi/logo.png differ diff --git a/blockchains/bitcoin/assets/piin/info.json b/blockchains/bitcoin/assets/piin/info.json new file mode 100644 index 0000000000000..c8d99d33518f0 --- /dev/null +++ b/blockchains/bitcoin/assets/piin/info.json @@ -0,0 +1,11 @@ +{ + "name": "piin", + "symbol": "piin", + "type": "BRC20", + "decimals": 18, + "description": "-", + "website": "https://unisat.io", + "explorer": "https://unisat.io/brc20/piin", + "status": "active", + "id": "piin" +} \ No newline at end of file diff --git a/blockchains/bitcoin/assets/piin/logo.png b/blockchains/bitcoin/assets/piin/logo.png new file mode 100644 index 0000000000000..864b13b3b188a Binary files /dev/null and b/blockchains/bitcoin/assets/piin/logo.png differ diff --git a/blockchains/bitcoin/assets/rats/info.json b/blockchains/bitcoin/assets/rats/info.json new file mode 100644 index 0000000000000..aba7d24638879 --- /dev/null +++ b/blockchains/bitcoin/assets/rats/info.json @@ -0,0 +1,11 @@ +{ + "name": "rats", + "symbol": "RATS", + "type": "BRC20", + "decimals": 18, + "description": "-", + "website": "https://unisat.io", + "explorer": "https://unisat.io/brc20/rats", + "status": "active", + "id": "rats" +} \ No newline at end of file diff --git a/blockchains/bitcoin/assets/rats/logo.png b/blockchains/bitcoin/assets/rats/logo.png new file mode 100644 index 0000000000000..8e736469d7587 Binary files /dev/null and b/blockchains/bitcoin/assets/rats/logo.png differ diff --git a/blockchains/bitcoin/assets/sats/info.json b/blockchains/bitcoin/assets/sats/info.json new file mode 100644 index 0000000000000..3eb1af0d432c8 --- /dev/null +++ b/blockchains/bitcoin/assets/sats/info.json @@ -0,0 +1,11 @@ +{ + "name": "sats", + "symbol": "SATS", + "type": "BRC20", + "decimals": 18, + "description": "-", + "website": "https://unisat.io", + "explorer": "https://unisat.io/brc20/sats", + "status": "active", + "id": "sats" +} \ No newline at end of file diff --git a/blockchains/bitcoin/assets/sats/logo.png b/blockchains/bitcoin/assets/sats/logo.png new file mode 100644 index 0000000000000..f2e82f29725f1 Binary files /dev/null and b/blockchains/bitcoin/assets/sats/logo.png differ diff --git a/blockchains/bitcoin/info/info.json b/blockchains/bitcoin/info/info.json index a4e24e8a6377e..d0eb2d9911514 100644 --- a/blockchains/bitcoin/info/info.json +++ b/blockchains/bitcoin/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/bitcoin" }, { - "name": "twitter", - "url": "https://twitter.com/Bitcoin" + "name": "x", + "url": "https://x.com/Bitcoin" }, { "name": "reddit", diff --git a/blockchains/bitcoin/info/square_logo.png b/blockchains/bitcoin/info/square_logo.png new file mode 100644 index 0000000000000..29adb63a224f8 Binary files /dev/null and b/blockchains/bitcoin/info/square_logo.png differ diff --git a/blockchains/bitcoincash/info/info.json b/blockchains/bitcoincash/info/info.json index d4edcadeb045b..ad11aa79af1f6 100644 --- a/blockchains/bitcoincash/info/info.json +++ b/blockchains/bitcoincash/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/bitcoincashorg/" }, { - "name": "twitter", - "url": "https://twitter.com/BITCOlNCASH" + "name": "x", + "url": "https://x.com/BITCOlNCASH" }, { "name": "reddit", diff --git a/blockchains/bitcoincash/info/square_logo.png b/blockchains/bitcoincash/info/square_logo.png new file mode 100644 index 0000000000000..018d2137e919f Binary files /dev/null and b/blockchains/bitcoincash/info/square_logo.png differ diff --git a/blockchains/bitcoingold/info/info.json b/blockchains/bitcoingold/info/info.json index 8c78f9f99c147..c0de273bf2ebc 100644 --- a/blockchains/bitcoingold/info/info.json +++ b/blockchains/bitcoingold/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/BTCGPU/BTCGPU" }, { - "name": "twitter", - "url": "https://twitter.com/bitcoingold" + "name": "x", + "url": "https://x.com/bitcoingold" }, { "name": "reddit", diff --git a/blockchains/bitcoingold/info/square_logo.png b/blockchains/bitcoingold/info/square_logo.png new file mode 100644 index 0000000000000..98d5b29822d29 Binary files /dev/null and b/blockchains/bitcoingold/info/square_logo.png differ diff --git a/blockchains/blast/assets/0x0B4d0ee29857c3961b380d4ec138EA5814E346b9/info.json b/blockchains/blast/assets/0x0B4d0ee29857c3961b380d4ec138EA5814E346b9/info.json new file mode 100644 index 0000000000000..0102d27e6f6be --- /dev/null +++ b/blockchains/blast/assets/0x0B4d0ee29857c3961b380d4ec138EA5814E346b9/info.json @@ -0,0 +1,21 @@ +{ + "name": "Pacman Blastoff", + "symbol": "PACM", + "type": "BLAST", + "description": "Unruggable meme with burnt LP. P@cman Blastoff is the legendary 69th memecoin, fueled by Pacman Blur's wild vision. Show how much you love Pacman and his beast Blast L2 by owning $PACM. Get ready for the ride!", + "decimals": 18, + "website": "https://airdrop.pacman.meme/#/", + "explorer": "https://blastscan.io/token/0x0B4d0ee29857c3961b380d4ec138EA5814E346b9", + "status": "active", + "id": "0x0B4d0ee29857c3961b380d4ec138EA5814E346b9", + "links": [ + { + "name": "x", + "url": "https://x.com/pacman_blastoff" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pacman-blastoff/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x0B4d0ee29857c3961b380d4ec138EA5814E346b9/logo.png b/blockchains/blast/assets/0x0B4d0ee29857c3961b380d4ec138EA5814E346b9/logo.png new file mode 100644 index 0000000000000..0dd3194e3dddf Binary files /dev/null and b/blockchains/blast/assets/0x0B4d0ee29857c3961b380d4ec138EA5814E346b9/logo.png differ diff --git a/blockchains/blast/assets/0x15d24de366F69b835Be19f7Cf9447e770315DD80/info.json b/blockchains/blast/assets/0x15d24de366F69b835Be19f7Cf9447e770315DD80/info.json new file mode 100644 index 0000000000000..8d9bfb643b58b --- /dev/null +++ b/blockchains/blast/assets/0x15d24de366F69b835Be19f7Cf9447e770315DD80/info.json @@ -0,0 +1,17 @@ +{ + "name": "KAP Games", + "website": "https://www.kap.gg/", + "description": "KAP Games is a web3 gaming publisher, studio, and distributor specializing in browser and mobile-native experiences.", + "explorer": "https://blastscan.io/token/0x15d24de366f69b835be19f7cf9447e770315dd80", + "type": "BLAST", + "symbol": "KAP", + "decimals": 18, + "status": "active", + "id": "0x15d24de366F69b835Be19f7Cf9447e770315DD80", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kap-games/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x15d24de366F69b835Be19f7Cf9447e770315DD80/logo.png b/blockchains/blast/assets/0x15d24de366F69b835Be19f7Cf9447e770315DD80/logo.png new file mode 100644 index 0000000000000..d7f5e93d2350e Binary files /dev/null and b/blockchains/blast/assets/0x15d24de366F69b835Be19f7Cf9447e770315DD80/logo.png differ diff --git a/blockchains/blast/assets/0x216A5a1135A9dab49FA9Ad865E0f22FE22b5630A/info.json b/blockchains/blast/assets/0x216A5a1135A9dab49FA9Ad865E0f22FE22b5630A/info.json new file mode 100644 index 0000000000000..8b156e847509a --- /dev/null +++ b/blockchains/blast/assets/0x216A5a1135A9dab49FA9Ad865E0f22FE22b5630A/info.json @@ -0,0 +1,21 @@ +{ + "name": "Pump", + "symbol": "PUMP", + "type": "BLAST", + "description": "The OG crypto meme", + "decimals": 18, + "website": "https://t.me/pumpitcoingroup", + "explorer": "https://blastscan.io/token/0x216A5a1135A9dab49FA9Ad865E0f22FE22b5630A", + "status": "active", + "id": "0x216A5a1135A9dab49FA9Ad865E0f22FE22b5630A", + "links": [ + { + "name": "x", + "url": "https://x.com/realpumpitcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pump/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x216A5a1135A9dab49FA9Ad865E0f22FE22b5630A/logo.png b/blockchains/blast/assets/0x216A5a1135A9dab49FA9Ad865E0f22FE22b5630A/logo.png new file mode 100644 index 0000000000000..a31165899665a Binary files /dev/null and b/blockchains/blast/assets/0x216A5a1135A9dab49FA9Ad865E0f22FE22b5630A/logo.png differ diff --git a/blockchains/blast/assets/0x236bb48fcF61ce996B2C8C196a9258c176100c7d/info.json b/blockchains/blast/assets/0x236bb48fcF61ce996B2C8C196a9258c176100c7d/info.json new file mode 100644 index 0000000000000..1d052d6358918 --- /dev/null +++ b/blockchains/blast/assets/0x236bb48fcF61ce996B2C8C196a9258c176100c7d/info.json @@ -0,0 +1,17 @@ +{ + "name": "RabbitX", + "website": "https://rabbitx.io/", + "description": "RabbitX is a global permissionless perpetuals exchange built on Starknet.", + "explorer": "https://blastscan.io/token/0x236bb48fcf61ce996b2c8c196a9258c176100c7d", + "type": "BLAST", + "symbol": "RBX", + "decimals": 18, + "status": "active", + "id": "0x236bb48fcF61ce996B2C8C196a9258c176100c7d", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rabbitx/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x236bb48fcF61ce996B2C8C196a9258c176100c7d/logo.png b/blockchains/blast/assets/0x236bb48fcF61ce996B2C8C196a9258c176100c7d/logo.png new file mode 100644 index 0000000000000..a85442d84002d Binary files /dev/null and b/blockchains/blast/assets/0x236bb48fcF61ce996B2C8C196a9258c176100c7d/logo.png differ diff --git a/blockchains/blast/assets/0x2416092f143378750bb29b79eD961ab195CcEea5/info.json b/blockchains/blast/assets/0x2416092f143378750bb29b79eD961ab195CcEea5/info.json new file mode 100644 index 0000000000000..2c553dbdf974a --- /dev/null +++ b/blockchains/blast/assets/0x2416092f143378750bb29b79eD961ab195CcEea5/info.json @@ -0,0 +1,21 @@ +{ + "name": "ezETH", + "website": "https://www.renzoprotocol.com/", + "description": "Renzo is a Liquid Restaking Token (LRT) and Strategy Manager for EigenLayer. It is the interface to the EigenLayer ecosystem securing Actively Validated Services (AVSs).", + "explorer": "https://blastscan.io/token/0x2416092f143378750bb29b79eD961ab195CcEea5", + "type": "BLAST", + "symbol": "Renzo Restaked ETH", + "decimals": 18, + "status": "active", + "id": "0x2416092f143378750bb29b79eD961ab195CcEea5", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/renzo-restaked-eth/" + }, + { + "name": "x", + "url": "https://x.com/RenzoProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x2416092f143378750bb29b79eD961ab195CcEea5/logo.png b/blockchains/blast/assets/0x2416092f143378750bb29b79eD961ab195CcEea5/logo.png new file mode 100644 index 0000000000000..48e5c5ace795d Binary files /dev/null and b/blockchains/blast/assets/0x2416092f143378750bb29b79eD961ab195CcEea5/logo.png differ diff --git a/blockchains/blast/assets/0x34050224F9eA1859790b7CBBBe2264f1204771A6/info.json b/blockchains/blast/assets/0x34050224F9eA1859790b7CBBBe2264f1204771A6/info.json new file mode 100644 index 0000000000000..5e5d842a4fae7 --- /dev/null +++ b/blockchains/blast/assets/0x34050224F9eA1859790b7CBBBe2264f1204771A6/info.json @@ -0,0 +1,21 @@ +{ + "name": "Blast Inu", + "symbol": "BINU", + "type": "BLAST", + "description": "By leveraging the advanced features of the Blast L2 blockchain, Blast Inu ensures swift and efficient transactions without the burden of additional taxes.", + "decimals": 18, + "website": "https://blastinu.fun/", + "explorer": "https://blastscan.io/token/0x34050224f9ea1859790b7cbbbe2264f1204771a6", + "status": "active", + "id": "0x34050224F9eA1859790b7CBBBe2264f1204771A6", + "links": [ + { + "name": "x", + "url": "https://x.com/BlastInuFun" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/blast-inu/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x34050224F9eA1859790b7CBBBe2264f1204771A6/logo.png b/blockchains/blast/assets/0x34050224F9eA1859790b7CBBBe2264f1204771A6/logo.png new file mode 100644 index 0000000000000..0abd2b8e66bb1 Binary files /dev/null and b/blockchains/blast/assets/0x34050224F9eA1859790b7CBBBe2264f1204771A6/logo.png differ diff --git a/blockchains/blast/assets/0x42E12D42b3d6C4A74a88A61063856756Ea2DB357/info.json b/blockchains/blast/assets/0x42E12D42b3d6C4A74a88A61063856756Ea2DB357/info.json new file mode 100644 index 0000000000000..4607942ab3453 --- /dev/null +++ b/blockchains/blast/assets/0x42E12D42b3d6C4A74a88A61063856756Ea2DB357/info.json @@ -0,0 +1,21 @@ +{ + "name": "Orbit Protocol", + "symbol": "ORBIT", + "type": "BLAST", + "description": "Orbit is a decentralized liquidity protocol that facilitates the lending and borrowing of Blast assets. Orbit's innovation is to make use of Blast's native yield to provide a better lending / borrowing experience.", + "decimals": 18, + "website": "https://orbitlending.io/", + "explorer": "https://blastscan.io/token/0x42e12d42b3d6c4a74a88a61063856756ea2db357", + "status": "active", + "id": "0x42E12D42b3d6C4A74a88A61063856756Ea2DB357", + "links": [ + { + "name": "x", + "url": "https://x.com/orbitlending" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/orbit-protocol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x42E12D42b3d6C4A74a88A61063856756Ea2DB357/logo.png b/blockchains/blast/assets/0x42E12D42b3d6C4A74a88A61063856756Ea2DB357/logo.png new file mode 100644 index 0000000000000..7c7d20311abdf Binary files /dev/null and b/blockchains/blast/assets/0x42E12D42b3d6C4A74a88A61063856756Ea2DB357/logo.png differ diff --git a/blockchains/blast/assets/0x4300000000000000000000000000000000000003/info.json b/blockchains/blast/assets/0x4300000000000000000000000000000000000003/info.json new file mode 100644 index 0000000000000..ed2ebac5c13b9 --- /dev/null +++ b/blockchains/blast/assets/0x4300000000000000000000000000000000000003/info.json @@ -0,0 +1,21 @@ +{ + "name": "USDB", + "symbol": "USDB", + "type": "BLAST", + "description": "Blast's native stablecoin.", + "decimals": 18, + "website": "https://blast.io/en", + "explorer": "https://blastscan.io/token/0x4300000000000000000000000000000000000003", + "status": "active", + "id": "0x4300000000000000000000000000000000000003", + "links": [ + { + "name": "x", + "url": "https://x.com/blast_l2" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usdb/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x4300000000000000000000000000000000000003/logo.png b/blockchains/blast/assets/0x4300000000000000000000000000000000000003/logo.png new file mode 100644 index 0000000000000..cefea3ceb912e Binary files /dev/null and b/blockchains/blast/assets/0x4300000000000000000000000000000000000003/logo.png differ diff --git a/blockchains/blast/assets/0x4300000000000000000000000000000000000004/info.json b/blockchains/blast/assets/0x4300000000000000000000000000000000000004/info.json new file mode 100644 index 0000000000000..f3344ebedfb2c --- /dev/null +++ b/blockchains/blast/assets/0x4300000000000000000000000000000000000004/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wrapped Ether", + "symbol": "WETH", + "type": "BLAST", + "decimals": 18, + "description": "wETH is wrapped ETH", + "website": "https://weth.io/", + "explorer": "https://blastscan.io/token/0x4300000000000000000000000000000000000004", + "status": "active", + "id": "0x4300000000000000000000000000000000000004", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/weth/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/weth/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x4300000000000000000000000000000000000004/logo.png b/blockchains/blast/assets/0x4300000000000000000000000000000000000004/logo.png new file mode 100644 index 0000000000000..f9328d9550a06 Binary files /dev/null and b/blockchains/blast/assets/0x4300000000000000000000000000000000000004/logo.png differ diff --git a/blockchains/blast/assets/0x47C337Bd5b9344a6F3D6f58C474D9D8cd419D8cA/info.json b/blockchains/blast/assets/0x47C337Bd5b9344a6F3D6f58C474D9D8cd419D8cA/info.json new file mode 100644 index 0000000000000..ea64203c0756f --- /dev/null +++ b/blockchains/blast/assets/0x47C337Bd5b9344a6F3D6f58C474D9D8cd419D8cA/info.json @@ -0,0 +1,21 @@ +{ + "name": "Dackie", + "symbol": "DACKIE", + "type": "BLAST", + "description": "The Premier User-friendly Multi-chain DEX.", + "decimals": 18, + "website": "https://www.dackieswap.xyz/?chain=blast", + "explorer": "https://blastscan.io/token/0x47c337bd5b9344a6f3d6f58c474d9d8cd419d8ca", + "status": "active", + "id": "0x47C337Bd5b9344a6F3D6f58C474D9D8cd419D8cA", + "links": [ + { + "name": "x", + "url": "https://x.com/DackieSwap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dackieswap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x47C337Bd5b9344a6F3D6f58C474D9D8cd419D8cA/logo.png b/blockchains/blast/assets/0x47C337Bd5b9344a6F3D6f58C474D9D8cd419D8cA/logo.png new file mode 100644 index 0000000000000..e55f481dcbcf9 Binary files /dev/null and b/blockchains/blast/assets/0x47C337Bd5b9344a6F3D6f58C474D9D8cd419D8cA/logo.png differ diff --git a/blockchains/blast/assets/0x4fEE793d435c6D2c10C135983BB9d6D4fC7B9BBd/info.json b/blockchains/blast/assets/0x4fEE793d435c6D2c10C135983BB9d6D4fC7B9BBd/info.json new file mode 100644 index 0000000000000..ae386e3db1d5c --- /dev/null +++ b/blockchains/blast/assets/0x4fEE793d435c6D2c10C135983BB9d6D4fC7B9BBd/info.json @@ -0,0 +1,21 @@ +{ + "name": "USD+", + "website": "https://lido.fi/", + "description": "USD+ is a yield-generating stablecoin yielding 8-12% pa, via daily rebase. It is fully backed by a portfolio of liquid, yield generating, low risk DeFi assets .", + "explorer": "https://blastscan.io/token/0x4fee793d435c6d2c10c135983bb9d6d4fc7b9bbd", + "type": "BLAST", + "symbol": "USD+", + "decimals": 18, + "status": "active", + "id": "0x4fEE793d435c6D2c10C135983BB9d6D4fC7B9BBd", + "links": [ + { + "name": "x", + "url": "https://x.com/overnight_fi" + }, + { + "name": "telegram", + "url": "https://t.me/overnight_fi" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x4fEE793d435c6D2c10C135983BB9d6D4fC7B9BBd/logo.png b/blockchains/blast/assets/0x4fEE793d435c6D2c10C135983BB9d6D4fC7B9BBd/logo.png new file mode 100644 index 0000000000000..ba8cca27a175c Binary files /dev/null and b/blockchains/blast/assets/0x4fEE793d435c6D2c10C135983BB9d6D4fC7B9BBd/logo.png differ diff --git a/blockchains/blast/assets/0x5ffd9EbD27f2fcAB044c0f0a26A45Cb62fa29c06/info.json b/blockchains/blast/assets/0x5ffd9EbD27f2fcAB044c0f0a26A45Cb62fa29c06/info.json new file mode 100644 index 0000000000000..419fb6de4d76b --- /dev/null +++ b/blockchains/blast/assets/0x5ffd9EbD27f2fcAB044c0f0a26A45Cb62fa29c06/info.json @@ -0,0 +1,21 @@ +{ + "name": "PacMoon", + "symbol": "PAC", + "type": "BLAST", + "description": "The community coin of Blast.", + "decimals": 18, + "website": "https://pacmoon.io/", + "explorer": "https://blastscan.io/token/0x5ffd9ebd27f2fcab044c0f0a26a45cb62fa29c06", + "status": "active", + "id": "0x5ffd9EbD27f2fcAB044c0f0a26A45Cb62fa29c06", + "links": [ + { + "name": "x", + "url": "https://x.com/pacmoon_" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pacmoon/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x5ffd9EbD27f2fcAB044c0f0a26A45Cb62fa29c06/logo.png b/blockchains/blast/assets/0x5ffd9EbD27f2fcAB044c0f0a26A45Cb62fa29c06/logo.png new file mode 100644 index 0000000000000..85d6d3777206f Binary files /dev/null and b/blockchains/blast/assets/0x5ffd9EbD27f2fcAB044c0f0a26A45Cb62fa29c06/logo.png differ diff --git a/blockchains/blast/assets/0x68449870EEa84453044Bd430822827E21Fd8F101/info.json b/blockchains/blast/assets/0x68449870EEa84453044Bd430822827E21Fd8F101/info.json new file mode 100644 index 0000000000000..f06c2c28a34ae --- /dev/null +++ b/blockchains/blast/assets/0x68449870EEa84453044Bd430822827E21Fd8F101/info.json @@ -0,0 +1,17 @@ +{ + "name": "ZAIBOT.io", + "website": "https://www.zaibot.io/", + "description": "Zaibot is not just a tool, it's a community-driven platform that keeps you engaged, informed, and ahead in the fast-paced world of cryptocurrency.", + "explorer": "https://blastscan.io/token/0x68449870eea84453044bd430822827e21fd8f101", + "type": "BLAST", + "symbol": "ZAI", + "decimals": 18, + "status": "active", + "id": "0x68449870EEa84453044Bd430822827E21Fd8F101", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zaibot/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x68449870EEa84453044Bd430822827E21Fd8F101/logo.png b/blockchains/blast/assets/0x68449870EEa84453044Bd430822827E21Fd8F101/logo.png new file mode 100644 index 0000000000000..3da092034986e Binary files /dev/null and b/blockchains/blast/assets/0x68449870EEa84453044Bd430822827E21Fd8F101/logo.png differ diff --git a/blockchains/blast/assets/0x7217124C626f0b7077bE91dF939195C9a8184ecC/info.json b/blockchains/blast/assets/0x7217124C626f0b7077bE91dF939195C9a8184ecC/info.json new file mode 100644 index 0000000000000..9e21d5e459706 --- /dev/null +++ b/blockchains/blast/assets/0x7217124C626f0b7077bE91dF939195C9a8184ecC/info.json @@ -0,0 +1,21 @@ +{ + "name": "Finger Blast", + "symbol": "FINGER", + "type": "BLAST", + "description": "Bring back the art of fingering. 0 utility just memes.", + "decimals": 18, + "website": "https://www.fingerblast.xyz/", + "explorer": "https://blastscan.io/token/0x7217124c626f0b7077be91df939195c9a8184ecc", + "status": "active", + "id": "0x7217124C626f0b7077bE91dF939195C9a8184ecC", + "links": [ + { + "name": "x", + "url": "https://x.com/fingerblastx" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/finger-blast/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x7217124C626f0b7077bE91dF939195C9a8184ecC/logo.png b/blockchains/blast/assets/0x7217124C626f0b7077bE91dF939195C9a8184ecC/logo.png new file mode 100644 index 0000000000000..ff291f497259e Binary files /dev/null and b/blockchains/blast/assets/0x7217124C626f0b7077bE91dF939195C9a8184ecC/logo.png differ diff --git a/blockchains/blast/assets/0x764933fbAd8f5D04Ccd088602096655c2ED9879F/info.json b/blockchains/blast/assets/0x764933fbAd8f5D04Ccd088602096655c2ED9879F/info.json new file mode 100644 index 0000000000000..69c8d3804e8d3 --- /dev/null +++ b/blockchains/blast/assets/0x764933fbAd8f5D04Ccd088602096655c2ED9879F/info.json @@ -0,0 +1,21 @@ +{ + "name": "Any Inu", + "symbol": "AI", + "type": "BLAST", + "description": "$AI is a omnichain dog coin powered by Axelar's Interchain Token Service.", + "decimals": 18, + "website": "https://www.anyinu.xyz/", + "explorer": "https://blastscan.io/token/0x764933fbad8f5d04ccd088602096655c2ed9879f", + "status": "active", + "id": "0x764933fbAd8f5D04Ccd088602096655c2ED9879F", + "links": [ + { + "name": "x", + "url": "https://x.com/AnyInuCoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/any-inu/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x764933fbAd8f5D04Ccd088602096655c2ED9879F/logo.png b/blockchains/blast/assets/0x764933fbAd8f5D04Ccd088602096655c2ED9879F/logo.png new file mode 100644 index 0000000000000..fd362b759ef54 Binary files /dev/null and b/blockchains/blast/assets/0x764933fbAd8f5D04Ccd088602096655c2ED9879F/logo.png differ diff --git a/blockchains/blast/assets/0x76DA31D7C9CbEAE102aff34D3398bC450c8374c1/info.json b/blockchains/blast/assets/0x76DA31D7C9CbEAE102aff34D3398bC450c8374c1/info.json new file mode 100644 index 0000000000000..629b4ca3e62ed --- /dev/null +++ b/blockchains/blast/assets/0x76DA31D7C9CbEAE102aff34D3398bC450c8374c1/info.json @@ -0,0 +1,21 @@ +{ + "name": "Magic Internet Money", + "symbol": "MIM", + "type": "BLAST", + "description": "abracadabra.money is a lending protocol that allows users to borrow a USD-pegged Stablecoin (MIM) using interest-bearing tokens as collateral.", + "decimals": 18, + "website": "https://abracadabra.money/", + "explorer": "https://blastscan.io/token/0x76da31d7c9cbeae102aff34d3398bc450c8374c1", + "status": "active", + "id": "0x76DA31D7C9CbEAE102aff34D3398bC450c8374c1", + "links": [ + { + "name": "x", + "url": "https://x.com/MIM_Spell" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/magic-internet-money/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x76DA31D7C9CbEAE102aff34D3398bC450c8374c1/logo.png b/blockchains/blast/assets/0x76DA31D7C9CbEAE102aff34D3398bC450c8374c1/logo.png new file mode 100644 index 0000000000000..98896b174b783 Binary files /dev/null and b/blockchains/blast/assets/0x76DA31D7C9CbEAE102aff34D3398bC450c8374c1/logo.png differ diff --git a/blockchains/blast/assets/0x818a92bc81Aad0053d72ba753fb5Bc3d0C5C0923/info.json b/blockchains/blast/assets/0x818a92bc81Aad0053d72ba753fb5Bc3d0C5C0923/info.json new file mode 100644 index 0000000000000..19c7b2d708010 --- /dev/null +++ b/blockchains/blast/assets/0x818a92bc81Aad0053d72ba753fb5Bc3d0C5C0923/info.json @@ -0,0 +1,21 @@ +{ + "name": "Juice Finance", + "website": "https://www.juice.finance/", + "description": "Juice Finance, is a leading disruptive Cross-Margin DeFi protocol built on the Blast L2. At its core, Juice innovates with cross-margin lending features, integrating seamlessly with Blast’s unique rebasing tokens and ecosystem ethos.", + "explorer": "https://blastscan.io/token/0x818a92bc81aad0053d72ba753fb5bc3d0c5c0923", + "type": "BLAST", + "symbol": "JUICE", + "decimals": 18, + "status": "active", + "id": "0x818a92bc81Aad0053d72ba753fb5Bc3d0C5C0923", + "links": [ + { + "name": "x", + "url": "https://x.com/juice_finance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/juice-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x818a92bc81Aad0053d72ba753fb5Bc3d0C5C0923/logo.png b/blockchains/blast/assets/0x818a92bc81Aad0053d72ba753fb5Bc3d0C5C0923/logo.png new file mode 100644 index 0000000000000..bfc10fb1a3be1 Binary files /dev/null and b/blockchains/blast/assets/0x818a92bc81Aad0053d72ba753fb5Bc3d0C5C0923/logo.png differ diff --git a/blockchains/blast/assets/0x87E154E86Fb691AB8A27116e93Ed8d54e2b8C18C/info.json b/blockchains/blast/assets/0x87E154E86Fb691AB8A27116e93Ed8d54e2b8C18C/info.json new file mode 100644 index 0000000000000..44daab4591b29 --- /dev/null +++ b/blockchains/blast/assets/0x87E154E86Fb691AB8A27116e93Ed8d54e2b8C18C/info.json @@ -0,0 +1,17 @@ +{ + "name": "Titan Trading", + "website": "https://titantrading.io/", + "description": "Titan Trading Platform is a pioneer all-inclusive and high-performance trading platform power by cutting-edge AI technology on Blast with user-friendly interface, using the top-tier investment trading algorithm.", + "explorer": "https://blastscan.io/token/0x87e154e86fb691ab8a27116e93ed8d54e2b8c18c", + "type": "BLAST", + "symbol": "TES", + "decimals": 18, + "status": "active", + "id": "0x87E154E86Fb691AB8A27116e93Ed8d54e2b8C18C", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/titan-trading-platform/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x87E154E86Fb691AB8A27116e93Ed8d54e2b8C18C/logo.png b/blockchains/blast/assets/0x87E154E86Fb691AB8A27116e93Ed8d54e2b8C18C/logo.png new file mode 100644 index 0000000000000..1e9bc0861b8ab Binary files /dev/null and b/blockchains/blast/assets/0x87E154E86Fb691AB8A27116e93Ed8d54e2b8C18C/logo.png differ diff --git a/blockchains/blast/assets/0x9bD75c164dAf830733AC2EA71A0258f95aac7C57/info.json b/blockchains/blast/assets/0x9bD75c164dAf830733AC2EA71A0258f95aac7C57/info.json new file mode 100644 index 0000000000000..c85335bbc42e0 --- /dev/null +++ b/blockchains/blast/assets/0x9bD75c164dAf830733AC2EA71A0258f95aac7C57/info.json @@ -0,0 +1,21 @@ +{ + "name": "BlastCat", + "symbol": "BCat", + "type": "BLAST", + "description": "The BlastCat project aims to introduce individuals to the Blast ecosystem through its fun and friendly mascot, BlastCat!", + "decimals": 18, + "website": "https://blastcat.xyz/", + "explorer": "https://blastscan.io/token/0x9bd75c164daf830733ac2ea71a0258f95aac7c57", + "status": "active", + "id": "0x9bD75c164dAf830733AC2EA71A0258f95aac7C57", + "links": [ + { + "name": "x", + "url": "https://x.com/BlastCatcat/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/blastcat/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x9bD75c164dAf830733AC2EA71A0258f95aac7C57/logo.png b/blockchains/blast/assets/0x9bD75c164dAf830733AC2EA71A0258f95aac7C57/logo.png new file mode 100644 index 0000000000000..8076d82c2d6f8 Binary files /dev/null and b/blockchains/blast/assets/0x9bD75c164dAf830733AC2EA71A0258f95aac7C57/logo.png differ diff --git a/blockchains/blast/assets/0x9e20461bc2c4c980f62f1B279D71734207a6A356/info.json b/blockchains/blast/assets/0x9e20461bc2c4c980f62f1B279D71734207a6A356/info.json new file mode 100644 index 0000000000000..5ca19e9df0f4c --- /dev/null +++ b/blockchains/blast/assets/0x9e20461bc2c4c980f62f1B279D71734207a6A356/info.json @@ -0,0 +1,21 @@ +{ + "name": "OmniCat", + "website": "https://omnicat.xyz/", + "description": "OmniCat is the first omnichain memecoin. Powered by LayerZero, $OMNI is currently live and tradeable on 7 different ecosystems including Ethereum, Arbitrum and Solana.", + "explorer": "https://blastscan.io/token/0x9e20461bc2c4c980f62f1b279d71734207a6a356", + "type": "BLAST", + "symbol": "OMNI", + "decimals": 18, + "status": "active", + "id": "0x9e20461bc2c4c980f62f1B279D71734207a6A356", + "links": [ + { + "name": "x", + "url": "https://x.com/OmniCatCoin" + }, + { + "name": "telegram", + "url": "https://t.me/OmniCatTg" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x9e20461bc2c4c980f62f1B279D71734207a6A356/logo.png b/blockchains/blast/assets/0x9e20461bc2c4c980f62f1B279D71734207a6A356/logo.png new file mode 100644 index 0000000000000..07b48f706c374 Binary files /dev/null and b/blockchains/blast/assets/0x9e20461bc2c4c980f62f1B279D71734207a6A356/logo.png differ diff --git a/blockchains/blast/assets/0xB582Dc28968c725D2868130752aFa0c13EbF9b1a/info.json b/blockchains/blast/assets/0xB582Dc28968c725D2868130752aFa0c13EbF9b1a/info.json new file mode 100644 index 0000000000000..b87f1d977a4a5 --- /dev/null +++ b/blockchains/blast/assets/0xB582Dc28968c725D2868130752aFa0c13EbF9b1a/info.json @@ -0,0 +1,21 @@ +{ + "name": "Blast Pepe", + "symbol": "BEPE", + "type": "BLAST", + "description": "First memecoin on Blast. Stealth launched. LP vanished. Community-driven meme here to redefine shitcoins.", + "decimals": 18, + "website": "https://bepe.lol/", + "explorer": "https://blastscan.io/token/0xB582Dc28968c725D2868130752aFa0c13EbF9b1a", + "status": "active", + "id": "0xB582Dc28968c725D2868130752aFa0c13EbF9b1a", + "links": [ + { + "name": "x", + "url": "https://x.com/bepeblast" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/blast-pepe/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0xB582Dc28968c725D2868130752aFa0c13EbF9b1a/logo.png b/blockchains/blast/assets/0xB582Dc28968c725D2868130752aFa0c13EbF9b1a/logo.png new file mode 100644 index 0000000000000..4d7cfc667f68d Binary files /dev/null and b/blockchains/blast/assets/0xB582Dc28968c725D2868130752aFa0c13EbF9b1a/logo.png differ diff --git a/blockchains/blast/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json b/blockchains/blast/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json new file mode 100644 index 0000000000000..89f415e7364f8 --- /dev/null +++ b/blockchains/blast/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json @@ -0,0 +1,69 @@ +{ + "name": "Axelar Wrapped USDC", + "type": "BLAST", + "symbol": "axlUSDC", + "decimals": 6, + "website": "https://axelar.network/", + "description": "Axelar delivers secure cross-chain communication for Web3. Our infrastructure enables dApp users to interact with any asset or application, on any chain, with one click.", + "explorer": "https://blastscan.io/token/0xEB466342C4d449BC9f53A865D5Cb90586f405215", + "status": "active", + "id": "0xEB466342C4d449BC9f53A865D5Cb90586f405215", + "links": [ + { + "name": "x", + "url": "https://x.com/axelarcore" + }, + { + "name": "github", + "url": "https://github.com/axelarnetwork" + }, + { + "name": "telegram", + "url": "https://t.me/axelarcommunity" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/axelar-usdc" + }, + { + "name": "docs", + "url": "https://docs.axelar.dev/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/aRZ3Ra6f7D" + }, + { + "name": "forum", + "url": "https://community.axelar.network/" + }, + { + "name": "whitepaper", + "url": "https://axelar.network/axelar_whitepaper.pdf" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/axelar" + }, + { + "name": "medium", + "url": "https://medium.com/@axelar-foundation" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/axlusdc/" + }, + { + "name": "blog", + "url": "https://axelar.network/blog" + }, + { + "name": "youtube", + "url": "https://youtube.com/@Axelarcore" + } + ], + "tags": [ + "stablecoin", + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png b/blockchains/blast/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png new file mode 100644 index 0000000000000..4fda400141cdb Binary files /dev/null and b/blockchains/blast/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png differ diff --git a/blockchains/blast/assets/0xF7bc58b8D8f97ADC129cfC4c9f45Ce3C0E1D2692/info.json b/blockchains/blast/assets/0xF7bc58b8D8f97ADC129cfC4c9f45Ce3C0E1D2692/info.json new file mode 100644 index 0000000000000..e784d0aab57ae --- /dev/null +++ b/blockchains/blast/assets/0xF7bc58b8D8f97ADC129cfC4c9f45Ce3C0E1D2692/info.json @@ -0,0 +1,29 @@ +{ + "name": "Wrapped Bitcoin", + "website": "https://wbtc.network", + "description": "Wrapped Bitcoin (WBTC) is the first ERC20 token backed 1:1 with Bitcoin.", + "explorer": "https://blastscan.io/token/0xF7bc58b8D8f97ADC129cfC4c9f45Ce3C0E1D2692", + "type": "BLAST", + "symbol": "WBTC", + "decimals": 8, + "status": "active", + "id": "0xF7bc58b8D8f97ADC129cfC4c9f45Ce3C0E1D2692", + "tags": [ + "defi", + "wrapped" + ], + "links": [ + { + "name": "whitepaper", + "url": "https://wbtc.network/assets/wrapped-tokens-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-bitcoin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wrapped-bitcoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0xF7bc58b8D8f97ADC129cfC4c9f45Ce3C0E1D2692/logo.png b/blockchains/blast/assets/0xF7bc58b8D8f97ADC129cfC4c9f45Ce3C0E1D2692/logo.png new file mode 100644 index 0000000000000..702d64a2e040a Binary files /dev/null and b/blockchains/blast/assets/0xF7bc58b8D8f97ADC129cfC4c9f45Ce3C0E1D2692/logo.png differ diff --git a/blockchains/blast/assets/0xb9dfCd4CF589bB8090569cb52FaC1b88Dbe4981F/info.json b/blockchains/blast/assets/0xb9dfCd4CF589bB8090569cb52FaC1b88Dbe4981F/info.json new file mode 100644 index 0000000000000..67daa180814c1 --- /dev/null +++ b/blockchains/blast/assets/0xb9dfCd4CF589bB8090569cb52FaC1b88Dbe4981F/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bag", + "symbol": "BAG", + "type": "BLAST", + "description": "BAG: The metaverse coin of the people. Aligning builders and hosts to become the #1 Metaverse community in the world.", + "decimals": 18, + "website": "https://bagcoin.org/", + "explorer": "https://blastscan.io/token/0xb9dfCd4CF589bB8090569cb52FaC1b88Dbe4981F", + "status": "active", + "id": "0xb9dfCd4CF589bB8090569cb52FaC1b88Dbe4981F", + "links": [ + { + "name": "x", + "url": "https://x.com/bagcoinorg" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bag-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0xb9dfCd4CF589bB8090569cb52FaC1b88Dbe4981F/logo.png b/blockchains/blast/assets/0xb9dfCd4CF589bB8090569cb52FaC1b88Dbe4981F/logo.png new file mode 100644 index 0000000000000..eb2ba94ae2b0e Binary files /dev/null and b/blockchains/blast/assets/0xb9dfCd4CF589bB8090569cb52FaC1b88Dbe4981F/logo.png differ diff --git a/blockchains/blast/assets/0xd582879453337BD149Ae53EC2092B0af5281d1D7/info.json b/blockchains/blast/assets/0xd582879453337BD149Ae53EC2092B0af5281d1D7/info.json new file mode 100644 index 0000000000000..0bd4c7759fe13 --- /dev/null +++ b/blockchains/blast/assets/0xd582879453337BD149Ae53EC2092B0af5281d1D7/info.json @@ -0,0 +1,21 @@ +{ + "name": "GLORY", + "symbol": "GLORY", + "type": "BLAST", + "description": "SEKAI GLORY is an anime trading card game on mobile - built on Blast.", + "decimals": 18, + "website": "https://www.sekaiglory.com/", + "explorer": "https://blastscan.io/token/0xd582879453337BD149Ae53EC2092B0af5281d1D7", + "status": "active", + "id": "0xd582879453337BD149Ae53EC2092B0af5281d1D7", + "links": [ + { + "name": "x", + "url": "https://x.com/SekaiGlory" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sekai-glory/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0xd582879453337BD149Ae53EC2092B0af5281d1D7/logo.png b/blockchains/blast/assets/0xd582879453337BD149Ae53EC2092B0af5281d1D7/logo.png new file mode 100644 index 0000000000000..e421ee61dbf29 Binary files /dev/null and b/blockchains/blast/assets/0xd582879453337BD149Ae53EC2092B0af5281d1D7/logo.png differ diff --git a/blockchains/blast/info/info.json b/blockchains/blast/info/info.json new file mode 100644 index 0000000000000..172d010aeaccc --- /dev/null +++ b/blockchains/blast/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "Blast", + "website": "https://blast.io/en", + "description": "Blast is the only Ethereum L2 with native yield for ETH and stablecoins.", + "explorer": "https://blastscan.io", + "symbol": "ETH", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Blast_L2" + }, + { + "name": "discord", + "url": "https://discord.com/invite/blast-l2" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/info/logo.png b/blockchains/blast/info/logo.png new file mode 100644 index 0000000000000..d4fa4aaaccacb Binary files /dev/null and b/blockchains/blast/info/logo.png differ diff --git a/blockchains/blast/info/square_logo.png b/blockchains/blast/info/square_logo.png new file mode 100644 index 0000000000000..01fa4d285c90e Binary files /dev/null and b/blockchains/blast/info/square_logo.png differ diff --git a/blockchains/bluzelle/info/info.json b/blockchains/bluzelle/info/info.json index 37a7f81a58170..569d8e577d111 100644 --- a/blockchains/bluzelle/info/info.json +++ b/blockchains/bluzelle/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/bluzelle" }, { - "name": "twitter", - "url": "https://twitter.com/BluzelleHQ" + "name": "x", + "url": "https://x.com/BluzelleHQ" }, { "name": "reddit", diff --git a/blockchains/bluzelle/info/square_logo.png b/blockchains/bluzelle/info/square_logo.png new file mode 100644 index 0000000000000..23cffaa132b6c Binary files /dev/null and b/blockchains/bluzelle/info/square_logo.png differ diff --git a/blockchains/bnbt/info/square_logo.png b/blockchains/bnbt/info/square_logo.png new file mode 100644 index 0000000000000..35b8d54db6708 Binary files /dev/null and b/blockchains/bnbt/info/square_logo.png differ diff --git a/blockchains/boba/info/info.json b/blockchains/boba/info/info.json index a70e413d238e7..559cc5b415d45 100644 --- a/blockchains/boba/info/info.json +++ b/blockchains/boba/info/info.json @@ -11,8 +11,8 @@ "status": "active", "links": [ { - "name": "twitter", - "url": "https://twitter.com/bobanetwork" + "name": "x", + "url": "https://x.com/bobanetwork" } ] } \ No newline at end of file diff --git a/blockchains/boba/info/square_logo.png b/blockchains/boba/info/square_logo.png new file mode 100644 index 0000000000000..1c357f94e38f5 Binary files /dev/null and b/blockchains/boba/info/square_logo.png differ diff --git a/blockchains/bouncebit/assets/0x22aAC17E571D6651880d057e310703fF4C7c3483/info.json b/blockchains/bouncebit/assets/0x22aAC17E571D6651880d057e310703fF4C7c3483/info.json new file mode 100644 index 0000000000000..adec0a8e5ffcf --- /dev/null +++ b/blockchains/bouncebit/assets/0x22aAC17E571D6651880d057e310703fF4C7c3483/info.json @@ -0,0 +1,17 @@ +{ + "name": "stBB", + "website": "https://bouncebit.io/", + "description": "BounceBit pioneers CeDeFi infrastructure, offering institutional-grade yield products, restaking use cases, and CeDeFi as a service, making high-yield opportunities accessible.", + "explorer": "https://bbscan.io/token/0x22aAC17E571D6651880d057e310703fF4C7c3483", + "symbol": "stBB", + "type": "BOUNCEBIT", + "decimals": 18, + "status": "active", + "id": "0x22aAC17E571D6651880d057e310703fF4C7c3483", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bouncebit/" + } + ] +} \ No newline at end of file diff --git a/blockchains/bouncebit/assets/0x22aAC17E571D6651880d057e310703fF4C7c3483/logo.png b/blockchains/bouncebit/assets/0x22aAC17E571D6651880d057e310703fF4C7c3483/logo.png new file mode 100644 index 0000000000000..9fcd0e258ee6c Binary files /dev/null and b/blockchains/bouncebit/assets/0x22aAC17E571D6651880d057e310703fF4C7c3483/logo.png differ diff --git a/blockchains/bouncebit/assets/0x38e382F74dfb84608F3C1F10187f6bEf5951DE93/info.json b/blockchains/bouncebit/assets/0x38e382F74dfb84608F3C1F10187f6bEf5951DE93/info.json new file mode 100644 index 0000000000000..c1c7b793803bb --- /dev/null +++ b/blockchains/bouncebit/assets/0x38e382F74dfb84608F3C1F10187f6bEf5951DE93/info.json @@ -0,0 +1,37 @@ +{ + "name": "MUBI", + "symbol": "MUBI", + "type": "BOUNCEBIT", + "decimals": 18, + "website": "https://multibit.exchange/", + "description": "MultiBit is the first-ever dual-sided bridge designed for easy cross-network transfers between BRC20 and ERC20 tokens.", + "explorer": "https://bbscan.io/token/0x38e382F74dfb84608F3C1F10187f6bEf5951DE93", + "status": "active", + "id": "0x38e382F74dfb84608F3C1F10187f6bEf5951DE93", + "links": [ + { + "name": "github", + "url": "https://github.com/multibit-repo" + }, + { + "name": "x", + "url": "https://x.com/Multibit_Bridge" + }, + { + "name": "telegram", + "url": "https://t.me/multibitprotocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/multibit/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/multibit" + } + ], + "tags": [ + "wrapped", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/bouncebit/assets/0x38e382F74dfb84608F3C1F10187f6bEf5951DE93/logo.png b/blockchains/bouncebit/assets/0x38e382F74dfb84608F3C1F10187f6bEf5951DE93/logo.png new file mode 100644 index 0000000000000..9fa7dad0ee02f Binary files /dev/null and b/blockchains/bouncebit/assets/0x38e382F74dfb84608F3C1F10187f6bEf5951DE93/logo.png differ diff --git a/blockchains/bouncebit/assets/0x77776b40C3d75cb07ce54dEA4b2Fd1D07F865222/info.json b/blockchains/bouncebit/assets/0x77776b40C3d75cb07ce54dEA4b2Fd1D07F865222/info.json new file mode 100644 index 0000000000000..bd415a5f1357c --- /dev/null +++ b/blockchains/bouncebit/assets/0x77776b40C3d75cb07ce54dEA4b2Fd1D07F865222/info.json @@ -0,0 +1,17 @@ +{ + "name": "BounceBit USD", + "website": "https://docs.bouncebit.io/token/bouncebit-tokenomics/stablecoins-on-bouncebit-bbusd", + "description": "Stablecoins from various EVM-compatible Chains can be bridged into the BounceBit ecosystem. Most notably, FDUSD on Binance Smart Chain (BEP20) and USDT on Ethereum are supported. BounceBit aims to support all sound stablecoins.", + "explorer": "https://bbscan.io/token/0x77776b40C3d75cb07ce54dEA4b2Fd1D07F865222", + "symbol": "BBUSD", + "type": "BOUNCEBIT", + "decimals": 18, + "status": "active", + "id": "0x77776b40C3d75cb07ce54dEA4b2Fd1D07F865222", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bouncebit-usd/" + } + ] +} \ No newline at end of file diff --git a/blockchains/bouncebit/assets/0x77776b40C3d75cb07ce54dEA4b2Fd1D07F865222/logo.png b/blockchains/bouncebit/assets/0x77776b40C3d75cb07ce54dEA4b2Fd1D07F865222/logo.png new file mode 100644 index 0000000000000..4cd00c51558c5 Binary files /dev/null and b/blockchains/bouncebit/assets/0x77776b40C3d75cb07ce54dEA4b2Fd1D07F865222/logo.png differ diff --git a/blockchains/bouncebit/assets/0x7F150c293c97172C75983BD8ac084c187107eA19/info.json b/blockchains/bouncebit/assets/0x7F150c293c97172C75983BD8ac084c187107eA19/info.json new file mode 100644 index 0000000000000..49cb2ac28b5b5 --- /dev/null +++ b/blockchains/bouncebit/assets/0x7F150c293c97172C75983BD8ac084c187107eA19/info.json @@ -0,0 +1,17 @@ +{ + "name": "stBBTC", + "website": "https://bitcoin.org/en/", + "description": "Bitcoin is a decentralized cryptocurrency originally described in a 2008 whitepaper by a person, or group of people, using the alias Satoshi Nakamoto. It was launched soon after, in January 2009.", + "explorer": "https://bbscan.io/token/0x7F150c293c97172C75983BD8ac084c187107eA19", + "symbol": "stBBTC", + "type": "BOUNCEBIT", + "decimals": 18, + "status": "active", + "id": "0x7F150c293c97172C75983BD8ac084c187107eA19", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bitcoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/bouncebit/assets/0x7F150c293c97172C75983BD8ac084c187107eA19/logo.png b/blockchains/bouncebit/assets/0x7F150c293c97172C75983BD8ac084c187107eA19/logo.png new file mode 100644 index 0000000000000..3d8d9d4648f4a Binary files /dev/null and b/blockchains/bouncebit/assets/0x7F150c293c97172C75983BD8ac084c187107eA19/logo.png differ diff --git a/blockchains/bouncebit/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/info.json b/blockchains/bouncebit/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/info.json new file mode 100644 index 0000000000000..21c42f648015d --- /dev/null +++ b/blockchains/bouncebit/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bounce Token", + "website": "https://bounce.finance/", + "description": "Bounce is a decentralized auction platform, incorporating liquidity mining, decentralized governance and staking mechanisms. The first principle of Bounce is scarcity of resources, which creates a competitive swap environment.", + "explorer": "https://bbscan.io/token/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096", + "type": "BOUNCEBIT", + "symbol": "ACTION", + "decimals": 18, + "status": "active", + "id": "0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096", + "links": [ + { + "name": "telegram", + "url": "https://t.me/bounce_finance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bounce-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/bouncebit/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/logo.png b/blockchains/bouncebit/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/logo.png new file mode 100644 index 0000000000000..ce839ee8efbf6 Binary files /dev/null and b/blockchains/bouncebit/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/logo.png differ diff --git a/blockchains/bouncebit/assets/0xF4c20e5004C6FDCDdA920bDD491ba8C98a9c5863/info.json b/blockchains/bouncebit/assets/0xF4c20e5004C6FDCDdA920bDD491ba8C98a9c5863/info.json new file mode 100644 index 0000000000000..6abb60117e169 --- /dev/null +++ b/blockchains/bouncebit/assets/0xF4c20e5004C6FDCDdA920bDD491ba8C98a9c5863/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wrapped BounceBit", + "website": "https://bouncebit.io/", + "description": "BounceBit pioneers CeDeFi infrastructure, offering institutional-grade yield products, restaking use cases, and CeDeFi as a service, making high-yield opportunities accessible.", + "explorer": "https://bbscan.io/token/0xF4c20e5004C6FDCDdA920bDD491ba8C98a9c5863", + "type": "BOUNCEBIT", + "symbol": "WBB", + "decimals": 18, + "status": "active", + "id": "0xF4c20e5004C6FDCDdA920bDD491ba8C98a9c5863", + "links": [ + { + "name": "telegram", + "url": "https://t.me/bouncebit_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-bouncebit/" + } + ] +} \ No newline at end of file diff --git a/blockchains/bouncebit/assets/0xF4c20e5004C6FDCDdA920bDD491ba8C98a9c5863/logo.png b/blockchains/bouncebit/assets/0xF4c20e5004C6FDCDdA920bDD491ba8C98a9c5863/logo.png new file mode 100644 index 0000000000000..2f7732aaa6f73 Binary files /dev/null and b/blockchains/bouncebit/assets/0xF4c20e5004C6FDCDdA920bDD491ba8C98a9c5863/logo.png differ diff --git a/blockchains/bouncebit/assets/0xF5e11df1ebCf78b6b6D26E04FF19cD786a1e81dC/info.json b/blockchains/bouncebit/assets/0xF5e11df1ebCf78b6b6D26E04FF19cD786a1e81dC/info.json new file mode 100644 index 0000000000000..6a4bc5cb56c0f --- /dev/null +++ b/blockchains/bouncebit/assets/0xF5e11df1ebCf78b6b6D26E04FF19cD786a1e81dC/info.json @@ -0,0 +1,17 @@ +{ + "name": "BBTC", + "website": "https://bitcoin.org/en/", + "description": "Bitcoin is a decentralized cryptocurrency originally described in a 2008 whitepaper by a person, or group of people, using the alias Satoshi Nakamoto. It was launched soon after, in January 2009.", + "explorer": "https://bbscan.io/token/0xF5e11df1ebCf78b6b6D26E04FF19cD786a1e81dC", + "symbol": "stBBTC", + "type": "BOUNCEBIT", + "decimals": 18, + "status": "active", + "id": "0xF5e11df1ebCf78b6b6D26E04FF19cD786a1e81dC", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bitcoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/bouncebit/assets/0xF5e11df1ebCf78b6b6D26E04FF19cD786a1e81dC/logo.png b/blockchains/bouncebit/assets/0xF5e11df1ebCf78b6b6D26E04FF19cD786a1e81dC/logo.png new file mode 100644 index 0000000000000..b9884ba919aee Binary files /dev/null and b/blockchains/bouncebit/assets/0xF5e11df1ebCf78b6b6D26E04FF19cD786a1e81dC/logo.png differ diff --git a/blockchains/bouncebit/info/info.json b/blockchains/bouncebit/info/info.json new file mode 100644 index 0000000000000..14aa6b36f4c5c --- /dev/null +++ b/blockchains/bouncebit/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "BounceBit", + "website": "https://bouncebit.io/", + "description": "BounceBit is building a BTC restaking infrastructure that provides a foundational layer for different restaking products, secured by the regulated custody of Mainnet Digital and Ceffu.", + "explorer": "https://blastscan.io", + "symbol": "BB", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/bounce_bit" + }, + { + "name": "discord", + "url": "https://discord.com/invite/bouncebit" + } + ] +} \ No newline at end of file diff --git a/blockchains/bouncebit/info/logo.png b/blockchains/bouncebit/info/logo.png new file mode 100644 index 0000000000000..72bb72a02bab2 Binary files /dev/null and b/blockchains/bouncebit/info/logo.png differ diff --git a/blockchains/bouncebit/info/square_logo.png b/blockchains/bouncebit/info/square_logo.png new file mode 100644 index 0000000000000..1a9ed71442a56 Binary files /dev/null and b/blockchains/bouncebit/info/square_logo.png differ diff --git a/blockchains/btcdiamond/info/info.json b/blockchains/btcdiamond/info/info.json new file mode 100644 index 0000000000000..ef1f55280b880 --- /dev/null +++ b/blockchains/btcdiamond/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "Bitcoin Diamond", + "website": "https://www.bitcoindiamond.org", + "description": "Bitcoin Diamond (BCD) is a hard fork of Bitcoin.", + "explorer": "http://explorer.btcd.io/#/", + "symbol": "BCD", + "type": "coin", + "decimals": 8, + "status": "active", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bitcoin-diamond/" + }, + { + "name": "x", + "url": "https://x.com/horizenglobal" + } + ] +} \ No newline at end of file diff --git a/blockchains/btcdiamond/info/logo.png b/blockchains/btcdiamond/info/logo.png new file mode 100644 index 0000000000000..b1ab6e0cb7d05 Binary files /dev/null and b/blockchains/btcdiamond/info/logo.png differ diff --git a/blockchains/btcdiamond/info/square_logo.png b/blockchains/btcdiamond/info/square_logo.png new file mode 100644 index 0000000000000..269e75fe623ac Binary files /dev/null and b/blockchains/btcdiamond/info/square_logo.png differ diff --git a/blockchains/callisto/info/info.json b/blockchains/callisto/info/info.json index d6514355c9f5b..0e27a6484e2e2 100644 --- a/blockchains/callisto/info/info.json +++ b/blockchains/callisto/info/info.json @@ -13,8 +13,8 @@ "url": "https://github.com/EthereumCommonwealth" }, { - "name": "twitter", - "url": "https://twitter.com/CallistoSupport" + "name": "x", + "url": "https://x.com/CallistoSupport" }, { "name": "reddit", diff --git a/blockchains/callisto/info/square_logo.png b/blockchains/callisto/info/square_logo.png new file mode 100644 index 0000000000000..2881399ba49c0 Binary files /dev/null and b/blockchains/callisto/info/square_logo.png differ diff --git a/blockchains/cardano/assets/asset108xu02ckwrfc8qs9d97mgyh4kn8gdu9w8f5sxk/info.json b/blockchains/cardano/assets/asset108xu02ckwrfc8qs9d97mgyh4kn8gdu9w8f5sxk/info.json new file mode 100644 index 0000000000000..3821eba2226bb --- /dev/null +++ b/blockchains/cardano/assets/asset108xu02ckwrfc8qs9d97mgyh4kn8gdu9w8f5sxk/info.json @@ -0,0 +1,21 @@ +{ + "name": "Snek", + "website": "https://www.snek.com", + "description": "Our vision is to create a sustainable and inclusive token on the Cardano blockchain, providing a fun and rewarding experience to our community.", + "explorer": "https://cexplorer.io/asset/asset108xu02ckwrfc8qs9d97mgyh4kn8gdu9w8f5sxk", + "type": "CARDANO", + "symbol": "SNEK", + "decimals": 0, + "status": "active", + "id": "asset108xu02ckwrfc8qs9d97mgyh4kn8gdu9w8f5sxk", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/snek/" + }, + { + "name": "x", + "url": "https://x.com/snekcoinada" + } + ] +} \ No newline at end of file diff --git a/blockchains/cardano/assets/asset108xu02ckwrfc8qs9d97mgyh4kn8gdu9w8f5sxk/logo.png b/blockchains/cardano/assets/asset108xu02ckwrfc8qs9d97mgyh4kn8gdu9w8f5sxk/logo.png new file mode 100644 index 0000000000000..229cbdc6e1e01 Binary files /dev/null and b/blockchains/cardano/assets/asset108xu02ckwrfc8qs9d97mgyh4kn8gdu9w8f5sxk/logo.png differ diff --git a/blockchains/cardano/assets/asset1fc7e54kds62yggplh0vs65vcgrmn5n577per23/info.json b/blockchains/cardano/assets/asset1fc7e54kds62yggplh0vs65vcgrmn5n577per23/info.json new file mode 100644 index 0000000000000..59b3e599e96ae --- /dev/null +++ b/blockchains/cardano/assets/asset1fc7e54kds62yggplh0vs65vcgrmn5n577per23/info.json @@ -0,0 +1,37 @@ +{ + "name": "USD Coin", + "website": "https://www.centre.io", + "description": "USDC provides a fully collateralized US dollar stablecoin, and is based on the open source asset-backed stablecoin framework developed by Centre.", + "explorer": "https://cexplorer.io/asset/asset1fc7e54kds62yggplh0vs65vcgrmn5n577per23", + "research": "https://research.binance.com/en/projects/usd-coin", + "type": "CARDANO", + "symbol": "USDC", + "decimals": 6, + "status": "active", + "id": "asset1fc7e54kds62yggplh0vs65vcgrmn5n577per23", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + } + ] +} \ No newline at end of file diff --git a/blockchains/cardano/assets/asset1fc7e54kds62yggplh0vs65vcgrmn5n577per23/logo.png b/blockchains/cardano/assets/asset1fc7e54kds62yggplh0vs65vcgrmn5n577per23/logo.png new file mode 100644 index 0000000000000..1c05ab87710a2 Binary files /dev/null and b/blockchains/cardano/assets/asset1fc7e54kds62yggplh0vs65vcgrmn5n577per23/logo.png differ diff --git a/blockchains/cardano/assets/asset1l58ned7zvj57pxyp94kkqqyxvjelvtpcjjh743/info.json b/blockchains/cardano/assets/asset1l58ned7zvj57pxyp94kkqqyxvjelvtpcjjh743/info.json new file mode 100644 index 0000000000000..6a1928384e7e2 --- /dev/null +++ b/blockchains/cardano/assets/asset1l58ned7zvj57pxyp94kkqqyxvjelvtpcjjh743/info.json @@ -0,0 +1,24 @@ +{ + "name": "Tether USD", + "website": "https://tether.to", + "description": "Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.", + "explorer": "https://cexplorer.io/asset/asset1l58ned7zvj57pxyp94kkqqyxvjelvtpcjjh743", + "type": "CARDANO", + "symbol": "USDT", + "decimals": 6, + "status": "active", + "id": "asset1l58ned7zvj57pxyp94kkqqyxvjelvtpcjjh743", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tether/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tether/" + } + ] +} \ No newline at end of file diff --git a/blockchains/cardano/assets/asset1l58ned7zvj57pxyp94kkqqyxvjelvtpcjjh743/logo.png b/blockchains/cardano/assets/asset1l58ned7zvj57pxyp94kkqqyxvjelvtpcjjh743/logo.png new file mode 100644 index 0000000000000..dab9b67b68b3c Binary files /dev/null and b/blockchains/cardano/assets/asset1l58ned7zvj57pxyp94kkqqyxvjelvtpcjjh743/logo.png differ diff --git a/blockchains/cardano/assets/asset1wrng86n9sz6t5d0lemvudur4ul6mgduv0gzuj8/info.json b/blockchains/cardano/assets/asset1wrng86n9sz6t5d0lemvudur4ul6mgduv0gzuj8/info.json new file mode 100644 index 0000000000000..0792992b4aaad --- /dev/null +++ b/blockchains/cardano/assets/asset1wrng86n9sz6t5d0lemvudur4ul6mgduv0gzuj8/info.json @@ -0,0 +1,21 @@ +{ + "name": "ADA Shiba Inu", + "website": "https://ashib.io/", + "description": "ADA Shiba Inu is the 2.0 version of Shiba Inu built on Cardano", + "explorer": "https://cexplorer.io/asset/asset1wrng86n9sz6t5d0lemvudur4ul6mgduv0gzuj8", + "type": "CARDANO", + "symbol": "ASHIB", + "decimals": 6, + "status": "active", + "id": "asset1wrng86n9sz6t5d0lemvudur4ul6mgduv0gzuj8", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shiba-inu/" + }, + { + "name": "x", + "url": "https://x.com/Shibtoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/cardano/assets/asset1wrng86n9sz6t5d0lemvudur4ul6mgduv0gzuj8/logo.png b/blockchains/cardano/assets/asset1wrng86n9sz6t5d0lemvudur4ul6mgduv0gzuj8/logo.png new file mode 100644 index 0000000000000..285c0d3cf767b Binary files /dev/null and b/blockchains/cardano/assets/asset1wrng86n9sz6t5d0lemvudur4ul6mgduv0gzuj8/logo.png differ diff --git a/blockchains/cardano/assets/asset1zvn33mj5kzgxtct7jr5qjyefu9ewk22xp0s0yw/info.json b/blockchains/cardano/assets/asset1zvn33mj5kzgxtct7jr5qjyefu9ewk22xp0s0yw/info.json new file mode 100644 index 0000000000000..a7fee5299610d --- /dev/null +++ b/blockchains/cardano/assets/asset1zvn33mj5kzgxtct7jr5qjyefu9ewk22xp0s0yw/info.json @@ -0,0 +1,21 @@ +{ + "name": "MELD", + "website": "https://meld.com/", + "description": "Deprecated version of the governance token of the MELD protocol.", + "explorer": "https://cexplorer.io/asset/asset1zvn33mj5kzgxtct7jr5qjyefu9ewk22xp0s0yw", + "type": "CARDANO", + "symbol": "MELD", + "decimals": 6, + "status": "active", + "id": "asset1zvn33mj5kzgxtct7jr5qjyefu9ewk22xp0s0yw", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/meld/" + }, + { + "name": "x", + "url": "https://x.com/MELD_Defi" + } + ] +} \ No newline at end of file diff --git a/blockchains/cardano/assets/asset1zvn33mj5kzgxtct7jr5qjyefu9ewk22xp0s0yw/logo.png b/blockchains/cardano/assets/asset1zvn33mj5kzgxtct7jr5qjyefu9ewk22xp0s0yw/logo.png new file mode 100644 index 0000000000000..68d2410a48bd5 Binary files /dev/null and b/blockchains/cardano/assets/asset1zvn33mj5kzgxtct7jr5qjyefu9ewk22xp0s0yw/logo.png differ diff --git a/blockchains/cardano/info/info.json b/blockchains/cardano/info/info.json index 44378955a8ec8..04885ab32e1ec 100644 --- a/blockchains/cardano/info/info.json +++ b/blockchains/cardano/info/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/input-output-hk/cardano-sl/" }, { - "name": "twitter", - "url": "https://twitter.com/cardano" + "name": "x", + "url": "https://x.com/cardano" }, { "name": "reddit", diff --git a/blockchains/cardano/info/logo.png b/blockchains/cardano/info/logo.png index 1ab80529f702a..b463a55eb2e3a 100644 Binary files a/blockchains/cardano/info/logo.png and b/blockchains/cardano/info/logo.png differ diff --git a/blockchains/cardano/info/square_logo.png b/blockchains/cardano/info/square_logo.png new file mode 100644 index 0000000000000..73ce3eead0d3e Binary files /dev/null and b/blockchains/cardano/info/square_logo.png differ diff --git a/blockchains/cardano/validators/assets/pool194usk2h8vcq6yw89xs5asrvw22g08kcfy72xyfrnnkg6qrhtlfw/logo.png b/blockchains/cardano/validators/assets/pool194usk2h8vcq6yw89xs5asrvw22g08kcfy72xyfrnnkg6qrhtlfw/logo.png new file mode 100644 index 0000000000000..c2cb86a42efe3 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool194usk2h8vcq6yw89xs5asrvw22g08kcfy72xyfrnnkg6qrhtlfw/logo.png differ diff --git a/blockchains/cardano/validators/assets/pool1du3r4a7xq60hg2x0wcz7lw5ya3qs74rk258c8kanp93rsqdqu45/logo.png b/blockchains/cardano/validators/assets/pool1du3r4a7xq60hg2x0wcz7lw5ya3qs74rk258c8kanp93rsqdqu45/logo.png new file mode 100644 index 0000000000000..1020527149890 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool1du3r4a7xq60hg2x0wcz7lw5ya3qs74rk258c8kanp93rsqdqu45/logo.png differ diff --git a/blockchains/cardano/validators/assets/pool1gaztx97t53k47fr7282d70tje8323vvzx8pshgts30t9krw62tm/logo.png b/blockchains/cardano/validators/assets/pool1gaztx97t53k47fr7282d70tje8323vvzx8pshgts30t9krw62tm/logo.png new file mode 100644 index 0000000000000..f5f3ada9451c6 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool1gaztx97t53k47fr7282d70tje8323vvzx8pshgts30t9krw62tm/logo.png differ diff --git a/blockchains/cardano/validators/assets/pool1ljywsch33t7gaf02aeeqkqpuku0ngpwl9fm04t7u5sl5xyunmgp/logo.png b/blockchains/cardano/validators/assets/pool1ljywsch33t7gaf02aeeqkqpuku0ngpwl9fm04t7u5sl5xyunmgp/logo.png new file mode 100644 index 0000000000000..c2cb86a42efe3 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool1ljywsch33t7gaf02aeeqkqpuku0ngpwl9fm04t7u5sl5xyunmgp/logo.png differ diff --git a/blockchains/cardano/validators/assets/pool1qxpjz94fpwdwnltngf036yjkh63nrl55xkshug56aukqqwn6gsn/logo.png b/blockchains/cardano/validators/assets/pool1qxpjz94fpwdwnltngf036yjkh63nrl55xkshug56aukqqwn6gsn/logo.png new file mode 100644 index 0000000000000..f5f3ada9451c6 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool1qxpjz94fpwdwnltngf036yjkh63nrl55xkshug56aukqqwn6gsn/logo.png differ diff --git a/blockchains/cardano/validators/assets/pool1yet04d4ykpp7me8uc2jx2glxrx88kt9uhmv6jeh7xkmtu5zucna/logo.png b/blockchains/cardano/validators/assets/pool1yet04d4ykpp7me8uc2jx2glxrx88kt9uhmv6jeh7xkmtu5zucna/logo.png new file mode 100644 index 0000000000000..c2cb86a42efe3 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool1yet04d4ykpp7me8uc2jx2glxrx88kt9uhmv6jeh7xkmtu5zucna/logo.png differ diff --git a/blockchains/cardano/validators/assets/pool1zz7x8ergn02chznayj9fjds2gk5q6prmpdr49faspd65kzqsrjs/logo.png b/blockchains/cardano/validators/assets/pool1zz7x8ergn02chznayj9fjds2gk5q6prmpdr49faspd65kzqsrjs/logo.png new file mode 100644 index 0000000000000..c2cb86a42efe3 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool1zz7x8ergn02chznayj9fjds2gk5q6prmpdr49faspd65kzqsrjs/logo.png differ diff --git a/blockchains/cardano/validators/list.json b/blockchains/cardano/validators/list.json index 7f92dae3b093a..6a365e6417f4d 100644 --- a/blockchains/cardano/validators/list.json +++ b/blockchains/cardano/validators/list.json @@ -1,16 +1,22 @@ [ + { + "id": "pool1qxpjz94fpwdwnltngf036yjkh63nrl55xkshug56aukqqwn6gsn", + "name": "Trust Nodes 2", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com" + }, + { + "id": "pool1gaztx97t53k47fr7282d70tje8323vvzx8pshgts30t9krw62tm", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com" + }, { "id": "pool1vx9tzlkgafernd9vpjpxkenutx2gncj4yn88fpq69823qlwcqrt", "name": "CARDANIANS.io", "description": "", "website": "https://cardanians.io" }, - { - "id": "pool10akpqvczl93ep4rc59c0aqyn3dm0env2ydysuwmdm670wl24pd8", - "name": "Goat Stake", - "description": "", - "website": "https://goatstake.com" - }, { "id": "pool1qqqqdktl6pq46td0mwut0qn30g7nlue0sete9wxl0hwsq37wrw8", "name": "Straight Pool", @@ -35,6 +41,30 @@ "description": "", "website": "https://nordicpool.org/" }, + { + "id": "pool1zz7x8ergn02chznayj9fjds2gk5q6prmpdr49faspd65kzqsrjs", + "name": "AutoStake I", + "description": "BareMetal - Decentralised - Reliable infrastructure run by the industry leader - AutoStake - Connect with us at: https://linktr.ee/autostake", + "website": "https://autostake.com" + }, + { + "id": "pool1ljywsch33t7gaf02aeeqkqpuku0ngpwl9fm04t7u5sl5xyunmgp", + "name": "AutoStake II", + "description": "BareMetal - Decentralised - Reliable infrastructure run by the industry leader - AutoStake - Connect with us at: https://linktr.ee/autostake", + "website": "https://autostake.com" + }, + { + "id": "pool194usk2h8vcq6yw89xs5asrvw22g08kcfy72xyfrnnkg6qrhtlfw", + "name": "AutoStake III", + "description": "BareMetal - Decentralised - Reliable infrastructure run by the industry leader - AutoStake - Connect with us at: https://linktr.ee/autostake", + "website": "https://autostake.com" + }, + { + "id": "pool1yet04d4ykpp7me8uc2jx2glxrx88kt9uhmv6jeh7xkmtu5zucna", + "name": "AutoStake IV", + "description": "BareMetal - Decentralised - Reliable infrastructure run by the industry leader - AutoStake - Connect with us at: https://linktr.ee/autostake", + "website": "https://autostake.com" + }, { "id": "pool19w5khsnmu27au0kprw0kjm8jr7knneysj7lfkqvnu66hyz0jxsx", "name": "ATADA-2 Stakepool in Austria", @@ -70,5 +100,11 @@ "name": "BIRTH | Larissa.Health", "description": "Improving the world of midwifery with digital tech. Dedicated to reduce pregnancy-related mortality.", "website": "https://larissa.health" + }, + { + "id": "pool1du3r4a7xq60hg2x0wcz7lw5ya3qs74rk258c8kanp93rsqdqu45", + "name": "Allnodes.com ⚡️ 0% fee", + "description": "Reliable non-custodial Pool run by the industry leader - Allnodes. Monitor your rewards through the Allnodes portfolio page.", + "website": "https://www.allnodes.com/ada/staking" } ] diff --git a/blockchains/celo/assets/0x105d4A9306D2E55a71d2Eb95B81553AE1dC20d7B/info.json b/blockchains/celo/assets/0x105d4A9306D2E55a71d2Eb95B81553AE1dC20d7B/info.json new file mode 100644 index 0000000000000..938a577ac1712 --- /dev/null +++ b/blockchains/celo/assets/0x105d4A9306D2E55a71d2Eb95B81553AE1dC20d7B/info.json @@ -0,0 +1,36 @@ +{ + "name": "Mento Philippine Peso", + "type": "CELO", + "symbol": "PHPm", + "decimals": 18, + "description": "Mento Philippine Peso (PHPm) is a decentralized stablecoin pegged to the Philippine Peso on the Celo blockchain.", + "website": "https://www.mento.org/", + "explorer": "https://celoscan.io/token/0x105d4A9306D2E55a71d2Eb95B81553AE1dC20d7B", + "status": "active", + "id": "0x105d4A9306D2E55a71d2Eb95B81553AE1dC20d7B", + "links": [ + { + "name": "x", + "url": "https://x.com/mentolabs" + }, + { + "name": "telegram", + "url": "https://t.me/mentocommunity" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Zszgng9NdF" + }, + { + "name": "docs", + "url": "https://docs.mento.org/mento" + }, + { + "name": "blog", + "url": "https://www.mento.org/blog" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/celo/assets/0x105d4A9306D2E55a71d2Eb95B81553AE1dC20d7B/logo.png b/blockchains/celo/assets/0x105d4A9306D2E55a71d2Eb95B81553AE1dC20d7B/logo.png new file mode 100644 index 0000000000000..c68651181b0d3 Binary files /dev/null and b/blockchains/celo/assets/0x105d4A9306D2E55a71d2Eb95B81553AE1dC20d7B/logo.png differ diff --git a/blockchains/celo/assets/0x17700282592D6917F6A73D0bF8AcCf4D578c131e/info.json b/blockchains/celo/assets/0x17700282592D6917F6A73D0bF8AcCf4D578c131e/info.json new file mode 100644 index 0000000000000..1835aa0657839 --- /dev/null +++ b/blockchains/celo/assets/0x17700282592D6917F6A73D0bF8AcCf4D578c131e/info.json @@ -0,0 +1,25 @@ +{ + "name": "Moola Market", + "website": "https://www.moola.market/", + "description": "Moola is a non-custodial liquidity protocol built on the Celo blockchain that is democratizing access to yield and credit.", + "explorer": "https://explorer.celo.org/mainnet/address/0x17700282592D6917F6A73D0bF8AcCf4D578c131e", + "type": "CELO", + "symbol": "MOO", + "decimals": 18, + "status": "active", + "id": "0x17700282592D6917F6A73D0bF8AcCf4D578c131e", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/moola-celo-usd/" + }, + { + "name": "x", + "url": "https://x.com/Moola_Market" + }, + { + "name": "telegram", + "url": "https://t.me/moolamarket" + } + ] +} \ No newline at end of file diff --git a/blockchains/celo/assets/0x17700282592D6917F6A73D0bF8AcCf4D578c131e/logo.png b/blockchains/celo/assets/0x17700282592D6917F6A73D0bF8AcCf4D578c131e/logo.png new file mode 100644 index 0000000000000..9ce20af143093 Binary files /dev/null and b/blockchains/celo/assets/0x17700282592D6917F6A73D0bF8AcCf4D578c131e/logo.png differ diff --git a/blockchains/celo/assets/0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f/info.json b/blockchains/celo/assets/0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f/info.json index b1a4ab45087de..60187dc2979fd 100644 --- a/blockchains/celo/assets/0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f/info.json +++ b/blockchains/celo/assets/0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f/info.json @@ -10,8 +10,8 @@ "id": "0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f", "links": [ { - "name": "twitter", - "url": "https://twitter.com/axelarcore" + "name": "x", + "url": "https://x.com/axelarcore" }, { "name": "github", @@ -65,4 +65,4 @@ "tags": [ "wrapped" ] -} +} \ No newline at end of file diff --git a/blockchains/celo/assets/0x27cd006548dF7C8c8e9fdc4A67fa05C2E3CA5CF9/info.json b/blockchains/celo/assets/0x27cd006548dF7C8c8e9fdc4A67fa05C2E3CA5CF9/info.json new file mode 100644 index 0000000000000..25e92b0dfd8d8 --- /dev/null +++ b/blockchains/celo/assets/0x27cd006548dF7C8c8e9fdc4A67fa05C2E3CA5CF9/info.json @@ -0,0 +1,25 @@ +{ + "name": "Plastiks", + "website": "https://celo.org/", + "description": "Plastiks is an NFT marketplace deployed that brings People, Organizations and Companies together to fight against plastic pollution.", + "explorer": "https://explorer.celo.org/mainnet/address/0x27cd006548dF7C8c8e9fdc4A67fa05C2E3CA5CF9", + "type": "CELO", + "symbol": "PLASTIK", + "decimals": 9, + "status": "active", + "id": "0x27cd006548dF7C8c8e9fdc4A67fa05C2E3CA5CF9", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/plastiks/" + }, + { + "name": "x", + "url": "https://x.com/Plastiks_io" + }, + { + "name": "telegram", + "url": "https://t.me/plastiksio" + } + ] +} \ No newline at end of file diff --git a/blockchains/celo/assets/0x27cd006548dF7C8c8e9fdc4A67fa05C2E3CA5CF9/logo.png b/blockchains/celo/assets/0x27cd006548dF7C8c8e9fdc4A67fa05C2E3CA5CF9/logo.png new file mode 100644 index 0000000000000..735c8954f581c Binary files /dev/null and b/blockchains/celo/assets/0x27cd006548dF7C8c8e9fdc4A67fa05C2E3CA5CF9/logo.png differ diff --git a/blockchains/celo/assets/0x456a3D042C0DbD3db53D5489e98dFb038553B0d0/info.json b/blockchains/celo/assets/0x456a3D042C0DbD3db53D5489e98dFb038553B0d0/info.json new file mode 100644 index 0000000000000..30beaa3f07ebd --- /dev/null +++ b/blockchains/celo/assets/0x456a3D042C0DbD3db53D5489e98dFb038553B0d0/info.json @@ -0,0 +1,36 @@ +{ + "name": "Mento Kenyan Shilling", + "type": "CELO", + "symbol": "KESm", + "decimals": 18, + "description": "Mento Kenyan Shilling (KESm) is a decentralized stablecoin pegged to the Kenyan Shilling on the Celo blockchain.", + "website": "https://www.mento.org/", + "explorer": "https://celoscan.io/token/0x456a3D042C0DbD3db53D5489e98dFb038553B0d0", + "status": "active", + "id": "0x456a3D042C0DbD3db53D5489e98dFb038553B0d0", + "links": [ + { + "name": "x", + "url": "https://x.com/mentolabs" + }, + { + "name": "telegram", + "url": "https://t.me/mentocommunity" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Zszgng9NdF" + }, + { + "name": "docs", + "url": "https://docs.mento.org/mento" + }, + { + "name": "blog", + "url": "https://www.mento.org/blog" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/celo/assets/0x456a3D042C0DbD3db53D5489e98dFb038553B0d0/logo.png b/blockchains/celo/assets/0x456a3D042C0DbD3db53D5489e98dFb038553B0d0/logo.png new file mode 100644 index 0000000000000..e26310ee4af14 Binary files /dev/null and b/blockchains/celo/assets/0x456a3D042C0DbD3db53D5489e98dFb038553B0d0/logo.png differ diff --git a/blockchains/celo/assets/0x471EcE3750Da237f93B8E339c536989b8978a438/info.json b/blockchains/celo/assets/0x471EcE3750Da237f93B8E339c536989b8978a438/info.json new file mode 100644 index 0000000000000..1bd78edb19d65 --- /dev/null +++ b/blockchains/celo/assets/0x471EcE3750Da237f93B8E339c536989b8978a438/info.json @@ -0,0 +1,21 @@ +{ + "name": "Celo", + "website": "https://celo.org/", + "description": "Celo is a carbon-negative, permissionless, blockchain with a rich ecosystem of global partners building innovative Web3 dapps to support a more inclusive financial system.", + "explorer": "https://explorer.celo.org/mainnet/address/0x471EcE3750Da237f93B8E339c536989b8978a438", + "type": "CELO", + "symbol": "CELO", + "decimals": 18, + "status": "abandoned", + "id": "0x471EcE3750Da237f93B8E339c536989b8978a438", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/celo/" + }, + { + "name": "github", + "url": "https://github.com/celo-org" + } + ] +} diff --git a/blockchains/celo/assets/0x471EcE3750Da237f93B8E339c536989b8978a438/logo.png b/blockchains/celo/assets/0x471EcE3750Da237f93B8E339c536989b8978a438/logo.png new file mode 100644 index 0000000000000..8d0a5572bb92c Binary files /dev/null and b/blockchains/celo/assets/0x471EcE3750Da237f93B8E339c536989b8978a438/logo.png differ diff --git a/blockchains/celo/assets/0x48065fbBE25f71C9282ddf5e1cD6D6A887483D5e/info.json b/blockchains/celo/assets/0x48065fbBE25f71C9282ddf5e1cD6D6A887483D5e/info.json new file mode 100644 index 0000000000000..2b2ca1a387c56 --- /dev/null +++ b/blockchains/celo/assets/0x48065fbBE25f71C9282ddf5e1cD6D6A887483D5e/info.json @@ -0,0 +1,28 @@ +{ + "name": "Tether", + "website": "https://tether.to", + "description": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar.", + "explorer": "https://explorer.celo.org/mainnet/address/0x48065fbBE25f71C9282ddf5e1cD6D6A887483D5e", + "type": "CELO", + "symbol": "USDT", + "decimals": 6, + "status": "active", + "id": "0x48065fbBE25f71C9282ddf5e1cD6D6A887483D5e", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/tether.to/" + }, + { + "name": "x", + "url": "https://x.com/Tether_to/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/tether/" + } + ] +} \ No newline at end of file diff --git a/blockchains/celo/assets/0x48065fbBE25f71C9282ddf5e1cD6D6A887483D5e/logo.png b/blockchains/celo/assets/0x48065fbBE25f71C9282ddf5e1cD6D6A887483D5e/logo.png new file mode 100644 index 0000000000000..82d7b7a63deda Binary files /dev/null and b/blockchains/celo/assets/0x48065fbBE25f71C9282ddf5e1cD6D6A887483D5e/logo.png differ diff --git a/blockchains/celo/assets/0x4c35853A3B4e647fD266f4de678dCc8fEC410BF6/info.json b/blockchains/celo/assets/0x4c35853A3B4e647fD266f4de678dCc8fEC410BF6/info.json new file mode 100644 index 0000000000000..62b4752f94d44 --- /dev/null +++ b/blockchains/celo/assets/0x4c35853A3B4e647fD266f4de678dCc8fEC410BF6/info.json @@ -0,0 +1,36 @@ +{ + "name": "Mento South African Rand", + "type": "CELO", + "symbol": "ZARm", + "decimals": 18, + "description": "Mento South African Rand (ZARm) is a decentralized stablecoin pegged to the South African Rand on the Celo blockchain.", + "website": "https://www.mento.org/", + "explorer": "https://celoscan.io/token/0x4c35853A3B4e647fD266f4de678dCc8fEC410BF6", + "status": "active", + "id": "0x4c35853A3B4e647fD266f4de678dCc8fEC410BF6", + "links": [ + { + "name": "x", + "url": "https://x.com/mentolabs" + }, + { + "name": "telegram", + "url": "https://t.me/mentocommunity" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Zszgng9NdF" + }, + { + "name": "docs", + "url": "https://docs.mento.org/mento" + }, + { + "name": "blog", + "url": "https://www.mento.org/blog" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/celo/assets/0x4c35853A3B4e647fD266f4de678dCc8fEC410BF6/logo.png b/blockchains/celo/assets/0x4c35853A3B4e647fD266f4de678dCc8fEC410BF6/logo.png new file mode 100644 index 0000000000000..218a5c476c881 Binary files /dev/null and b/blockchains/celo/assets/0x4c35853A3B4e647fD266f4de678dCc8fEC410BF6/logo.png differ diff --git a/blockchains/celo/assets/0x639A647fbe20b6c8ac19E48E2de44ea792c62c5C/info.json b/blockchains/celo/assets/0x639A647fbe20b6c8ac19E48E2de44ea792c62c5C/info.json index 5cf8544e396e4..803d756803f2c 100644 --- a/blockchains/celo/assets/0x639A647fbe20b6c8ac19E48E2de44ea792c62c5C/info.json +++ b/blockchains/celo/assets/0x639A647fbe20b6c8ac19E48E2de44ea792c62c5C/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/beefyfinance" }, { - "name": "twitter", - "url": "https://twitter.com/beefyfinance" + "name": "x", + "url": "https://x.com/beefyfinance" }, { "name": "telegram", diff --git a/blockchains/celo/assets/0x6e512BFC33be36F2666754E996ff103AD1680Cc9/info.json b/blockchains/celo/assets/0x6e512BFC33be36F2666754E996ff103AD1680Cc9/info.json new file mode 100644 index 0000000000000..72a69b454d493 --- /dev/null +++ b/blockchains/celo/assets/0x6e512BFC33be36F2666754E996ff103AD1680Cc9/info.json @@ -0,0 +1,25 @@ +{ + "name": "Allbridge", + "website": "https://allbridge.io/", + "description": "Allbridge is a simple, modern, and reliable way to transfer assets between different networks. It is a bridge between both EVM and non-EVM compatible blockchains, that aims to cover L2 solutions and NFT transfers in the future.", + "explorer": "https://explorer.celo.org/mainnet/address/0x6e512BFC33be36F2666754E996ff103AD1680Cc9", + "type": "CELO", + "symbol": "ABR", + "decimals": 18, + "status": "active", + "id": "0x6e512BFC33be36F2666754E996ff103AD1680Cc9", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/allbridge/" + }, + { + "name": "x", + "url": "https://x.com/Allbridge_io" + }, + { + "name": "telegram", + "url": "https://t.me/allbridge_official" + } + ] +} \ No newline at end of file diff --git a/blockchains/celo/assets/0x6e512BFC33be36F2666754E996ff103AD1680Cc9/logo.png b/blockchains/celo/assets/0x6e512BFC33be36F2666754E996ff103AD1680Cc9/logo.png new file mode 100644 index 0000000000000..148f406ca5ce5 Binary files /dev/null and b/blockchains/celo/assets/0x6e512BFC33be36F2666754E996ff103AD1680Cc9/logo.png differ diff --git a/blockchains/celo/assets/0x7175504C455076F15c04A2F90a8e352281F492F9/info.json b/blockchains/celo/assets/0x7175504C455076F15c04A2F90a8e352281F492F9/info.json new file mode 100644 index 0000000000000..8e2e5ad98bb54 --- /dev/null +++ b/blockchains/celo/assets/0x7175504C455076F15c04A2F90a8e352281F492F9/info.json @@ -0,0 +1,36 @@ +{ + "name": "Mento Australian Dollar", + "type": "CELO", + "symbol": "AUDm", + "decimals": 18, + "description": "Mento Australian Dollar (AUDm) is a decentralized stablecoin pegged to the Australian Dollar on the Celo blockchain.", + "website": "https://www.mento.org/", + "explorer": "https://celoscan.io/token/0x7175504C455076F15c04A2F90a8e352281F492F9", + "status": "active", + "id": "0x7175504C455076F15c04A2F90a8e352281F492F9", + "links": [ + { + "name": "x", + "url": "https://x.com/mentolabs" + }, + { + "name": "telegram", + "url": "https://t.me/mentocommunity" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Zszgng9NdF" + }, + { + "name": "docs", + "url": "https://docs.mento.org/mento" + }, + { + "name": "blog", + "url": "https://www.mento.org/blog" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/celo/assets/0x7175504C455076F15c04A2F90a8e352281F492F9/logo.png b/blockchains/celo/assets/0x7175504C455076F15c04A2F90a8e352281F492F9/logo.png new file mode 100644 index 0000000000000..536d9a58fff10 Binary files /dev/null and b/blockchains/celo/assets/0x7175504C455076F15c04A2F90a8e352281F492F9/logo.png differ diff --git a/blockchains/celo/assets/0x73F93dcc49cB8A239e2032663e9475dd5ef29A08/info.json b/blockchains/celo/assets/0x73F93dcc49cB8A239e2032663e9475dd5ef29A08/info.json new file mode 100644 index 0000000000000..e49d38ed37922 --- /dev/null +++ b/blockchains/celo/assets/0x73F93dcc49cB8A239e2032663e9475dd5ef29A08/info.json @@ -0,0 +1,36 @@ +{ + "name": "Mento West African CFA Franc", + "type": "CELO", + "symbol": "XOFm", + "decimals": 18, + "description": "Mento West African CFA Franc (XOFm) is a decentralized stablecoin pegged to the West African CFA Franc on the Celo blockchain.", + "website": "https://www.mento.org/", + "explorer": "https://celoscan.io/token/0x73F93dcc49cB8A239e2032663e9475dd5ef29A08", + "status": "active", + "id": "0x73F93dcc49cB8A239e2032663e9475dd5ef29A08", + "links": [ + { + "name": "x", + "url": "https://x.com/mentolabs" + }, + { + "name": "telegram", + "url": "https://t.me/mentocommunity" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Zszgng9NdF" + }, + { + "name": "docs", + "url": "https://docs.mento.org/mento" + }, + { + "name": "blog", + "url": "https://www.mento.org/blog" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/celo/assets/0x73F93dcc49cB8A239e2032663e9475dd5ef29A08/logo.png b/blockchains/celo/assets/0x73F93dcc49cB8A239e2032663e9475dd5ef29A08/logo.png new file mode 100644 index 0000000000000..7978e16aba16a Binary files /dev/null and b/blockchains/celo/assets/0x73F93dcc49cB8A239e2032663e9475dd5ef29A08/logo.png differ diff --git a/blockchains/celo/assets/0x74c0C58B99b68cF16A717279AC2d056A34ba2bFe/info.json b/blockchains/celo/assets/0x74c0C58B99b68cF16A717279AC2d056A34ba2bFe/info.json index d2648baca0a8c..2915b3e83699d 100644 --- a/blockchains/celo/assets/0x74c0C58B99b68cF16A717279AC2d056A34ba2bFe/info.json +++ b/blockchains/celo/assets/0x74c0C58B99b68cF16A717279AC2d056A34ba2bFe/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/ReSource_Fi" + "name": "x", + "url": "https://x.com/ReSource_Fi" }, { "name": "telegram", @@ -25,4 +25,4 @@ "url": "https://github.com/ReSource-Network/" } ] -} +} \ No newline at end of file diff --git a/blockchains/celo/assets/0x765DE816845861e75A25fCA122bb6898B8B1282a/info.json b/blockchains/celo/assets/0x765DE816845861e75A25fCA122bb6898B8B1282a/info.json index 3e04dfb11e103..ed08d1e3c6467 100644 --- a/blockchains/celo/assets/0x765DE816845861e75A25fCA122bb6898B8B1282a/info.json +++ b/blockchains/celo/assets/0x765DE816845861e75A25fCA122bb6898B8B1282a/info.json @@ -1,28 +1,40 @@ { - "name": "Celo Dollar", - "website": "https://celo.org", - "description": "Celo Dollar (cUSD) ERC20 Token in Celo Mainnet. Token is implemented as ERC20 smart contract with address", - "explorer": "https://explorer.bitquery.io/celo_rc1/token/0x765de816845861e75a25fca122bb6898b8b1282a", + "name": "Mento Dollar", "type": "CELO", - "symbol": "cUSD", + "symbol": "USDm", "decimals": 18, + "description": "Mento Dollar (USDm) is a decentralized stablecoin pegged to the US Dollar on the Celo blockchain.", + "website": "https://www.mento.org/", + "explorer": "https://celoscan.io/token/0x765DE816845861e75A25fCA122bb6898B8B1282a", "status": "active", "id": "0x765DE816845861e75A25fCA122bb6898B8B1282a", - "tags": [ - "stablecoin" - ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/CeloOrg" + "name": "x", + "url": "https://x.com/mentolabs" }, { "name": "telegram", - "url": "https://t.me/celoplatform" + "url": "https://t.me/mentocommunity" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Zszgng9NdF" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/celo-dollar/" + }, + { + "name": "docs", + "url": "https://docs.mento.org/mento" }, { - "name": "github", - "url": "https://github.com/celo-org/celo-monorepo" + "name": "blog", + "url": "https://www.mento.org/blog" } + ], + "tags": [ + "stablecoin" ] } \ No newline at end of file diff --git a/blockchains/celo/assets/0x765DE816845861e75A25fCA122bb6898B8B1282a/logo.png b/blockchains/celo/assets/0x765DE816845861e75A25fCA122bb6898B8B1282a/logo.png index c49d409472259..c0a635d92c9fa 100644 Binary files a/blockchains/celo/assets/0x765DE816845861e75A25fCA122bb6898B8B1282a/logo.png and b/blockchains/celo/assets/0x765DE816845861e75A25fCA122bb6898B8B1282a/logo.png differ diff --git a/blockchains/celo/assets/0x7D00cd74FF385c955EA3d79e47BF06bD7386387D/info.json b/blockchains/celo/assets/0x7D00cd74FF385c955EA3d79e47BF06bD7386387D/info.json new file mode 100644 index 0000000000000..06bb42fa076f2 --- /dev/null +++ b/blockchains/celo/assets/0x7D00cd74FF385c955EA3d79e47BF06bD7386387D/info.json @@ -0,0 +1,25 @@ +{ + "name": "Moola Celo", + "website": "https://www.moola.market/", + "description": "Moola is a non-custodial liquidity protocol built on the Celo blockchain that is democratizing access to yield and credit.", + "explorer": "https://explorer.celo.org/mainnet/address/0x7D00cd74FF385c955EA3d79e47BF06bD7386387D", + "type": "CELO", + "symbol": "MCELO", + "decimals": 18, + "status": "active", + "id": "0x7D00cd74FF385c955EA3d79e47BF06bD7386387D", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/moola-celo-usd/" + }, + { + "name": "x", + "url": "https://x.com/Moola_Market" + }, + { + "name": "telegram", + "url": "https://t.me/moolamarket" + } + ] +} \ No newline at end of file diff --git a/blockchains/celo/assets/0x7D00cd74FF385c955EA3d79e47BF06bD7386387D/logo.png b/blockchains/celo/assets/0x7D00cd74FF385c955EA3d79e47BF06bD7386387D/logo.png new file mode 100644 index 0000000000000..4fe7000a6d4e1 Binary files /dev/null and b/blockchains/celo/assets/0x7D00cd74FF385c955EA3d79e47BF06bD7386387D/logo.png differ diff --git a/blockchains/celo/assets/0x8A567e2aE79CA692Bd748aB832081C45de4041eA/info.json b/blockchains/celo/assets/0x8A567e2aE79CA692Bd748aB832081C45de4041eA/info.json new file mode 100644 index 0000000000000..8c54687a00f11 --- /dev/null +++ b/blockchains/celo/assets/0x8A567e2aE79CA692Bd748aB832081C45de4041eA/info.json @@ -0,0 +1,36 @@ +{ + "name": "Mento Colombian Peso", + "type": "CELO", + "symbol": "COPm", + "decimals": 18, + "description": "Mento Colombian Peso (COPm) is a decentralized stablecoin pegged to the Colombian Peso on the Celo blockchain.", + "website": "https://www.mento.org/", + "explorer": "https://celoscan.io/token/0x8A567e2aE79CA692Bd748aB832081C45de4041eA", + "status": "active", + "id": "0x8A567e2aE79CA692Bd748aB832081C45de4041eA", + "links": [ + { + "name": "x", + "url": "https://x.com/mentolabs" + }, + { + "name": "telegram", + "url": "https://t.me/mentocommunity" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Zszgng9NdF" + }, + { + "name": "docs", + "url": "https://docs.mento.org/mento" + }, + { + "name": "blog", + "url": "https://www.mento.org/blog" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/celo/assets/0x8A567e2aE79CA692Bd748aB832081C45de4041eA/logo.png b/blockchains/celo/assets/0x8A567e2aE79CA692Bd748aB832081C45de4041eA/logo.png new file mode 100644 index 0000000000000..63a545077f98d Binary files /dev/null and b/blockchains/celo/assets/0x8A567e2aE79CA692Bd748aB832081C45de4041eA/logo.png differ diff --git a/blockchains/celo/assets/0x918146359264C492BD6934071c6Bd31C854EDBc3/info.json b/blockchains/celo/assets/0x918146359264C492BD6934071c6Bd31C854EDBc3/info.json new file mode 100644 index 0000000000000..a46ac4ebeef44 --- /dev/null +++ b/blockchains/celo/assets/0x918146359264C492BD6934071c6Bd31C854EDBc3/info.json @@ -0,0 +1,25 @@ +{ + "name": "Moola Celo USD", + "website": "https://www.moola.market/", + "description": "Moola is a non-custodial liquidity protocol built on the Celo blockchain that is democratizing access to yield and credit.", + "explorer": "https://explorer.celo.org/mainnet/address/0x918146359264C492BD6934071c6Bd31C854EDBc3", + "type": "CELO", + "symbol": "MCUSD", + "decimals": 18, + "status": "active", + "id": "0x918146359264C492BD6934071c6Bd31C854EDBc3", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/moola-celo-usd/" + }, + { + "name": "x", + "url": "https://x.com/Moola_Market" + }, + { + "name": "telegram", + "url": "https://t.me/moolamarket" + } + ] +} \ No newline at end of file diff --git a/blockchains/celo/assets/0x918146359264C492BD6934071c6Bd31C854EDBc3/logo.png b/blockchains/celo/assets/0x918146359264C492BD6934071c6Bd31C854EDBc3/logo.png new file mode 100644 index 0000000000000..9ce20af143093 Binary files /dev/null and b/blockchains/celo/assets/0x918146359264C492BD6934071c6Bd31C854EDBc3/logo.png differ diff --git a/blockchains/celo/assets/0xCCF663b1fF11028f0b19058d0f7B674004a40746/info.json b/blockchains/celo/assets/0xCCF663b1fF11028f0b19058d0f7B674004a40746/info.json new file mode 100644 index 0000000000000..4211cc59e3606 --- /dev/null +++ b/blockchains/celo/assets/0xCCF663b1fF11028f0b19058d0f7B674004a40746/info.json @@ -0,0 +1,36 @@ +{ + "name": "Mento British Pound", + "type": "CELO", + "symbol": "GBPm", + "decimals": 18, + "description": "Mento British Pound (GBPm) is a decentralized stablecoin pegged to the British Pound on the Celo blockchain.", + "website": "https://www.mento.org/", + "explorer": "https://celoscan.io/token/0xCCF663b1fF11028f0b19058d0f7B674004a40746", + "status": "active", + "id": "0xCCF663b1fF11028f0b19058d0f7B674004a40746", + "links": [ + { + "name": "x", + "url": "https://x.com/mentolabs" + }, + { + "name": "telegram", + "url": "https://t.me/mentocommunity" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Zszgng9NdF" + }, + { + "name": "docs", + "url": "https://docs.mento.org/mento" + }, + { + "name": "blog", + "url": "https://www.mento.org/blog" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/celo/assets/0xCCF663b1fF11028f0b19058d0f7B674004a40746/logo.png b/blockchains/celo/assets/0xCCF663b1fF11028f0b19058d0f7B674004a40746/logo.png new file mode 100644 index 0000000000000..8881e0ba83ec3 Binary files /dev/null and b/blockchains/celo/assets/0xCCF663b1fF11028f0b19058d0f7B674004a40746/logo.png differ diff --git a/blockchains/celo/assets/0xD8763CBa276a3738E6DE85b4b3bF5FDed6D6cA73/info.json b/blockchains/celo/assets/0xD8763CBa276a3738E6DE85b4b3bF5FDed6D6cA73/info.json index 58cc7153faaa7..37a106bfc4d1b 100644 --- a/blockchains/celo/assets/0xD8763CBa276a3738E6DE85b4b3bF5FDed6D6cA73/info.json +++ b/blockchains/celo/assets/0xD8763CBa276a3738E6DE85b4b3bF5FDed6D6cA73/info.json @@ -1,28 +1,40 @@ { - "name": "Celo Euro", - "website": "https://celo.org", - "description": "Celo Euro (cEUR) ERC20 Token in Celo Mainnet. Token is implemented as ERC20 smart contract with address", - "explorer": "https://explorer.bitquery.io/celo_rc1/token/0xd8763cba276a3738e6de85b4b3bf5fded6d6ca73", + "name": "Mento Euro", "type": "CELO", - "symbol": "cEUR", + "symbol": "EURm", "decimals": 18, + "description": "Mento Euro (EURm) is a decentralized stablecoin pegged to the Euro on the Celo blockchain.", + "website": "https://www.mento.org/", + "explorer": "https://celoscan.io/token/0xD8763CBa276a3738E6DE85b4b3bF5FDed6D6cA73", "status": "active", "id": "0xD8763CBa276a3738E6DE85b4b3bF5FDed6D6cA73", - "tags": [ - "stablecoin" - ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/CeloOrg" + "name": "x", + "url": "https://x.com/mentolabs" }, { "name": "telegram", - "url": "https://t.me/celoplatform" + "url": "https://t.me/mentocommunity" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Zszgng9NdF" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/celo-euro/" + }, + { + "name": "docs", + "url": "https://docs.mento.org/mento" }, { - "name": "github", - "url": "https://github.com/celo-org/celo-monorepo" + "name": "blog", + "url": "https://www.mento.org/blog" } + ], + "tags": [ + "stablecoin" ] } \ No newline at end of file diff --git a/blockchains/celo/assets/0xD8763CBa276a3738E6DE85b4b3bF5FDed6D6cA73/logo.png b/blockchains/celo/assets/0xD8763CBa276a3738E6DE85b4b3bF5FDed6D6cA73/logo.png index 33b4739824666..8138ede158943 100644 Binary files a/blockchains/celo/assets/0xD8763CBa276a3738E6DE85b4b3bF5FDed6D6cA73/logo.png and b/blockchains/celo/assets/0xD8763CBa276a3738E6DE85b4b3bF5FDed6D6cA73/logo.png differ diff --git a/blockchains/celo/assets/0xE2702Bd97ee33c88c8f6f92DA3B733608aa76F71/info.json b/blockchains/celo/assets/0xE2702Bd97ee33c88c8f6f92DA3B733608aa76F71/info.json new file mode 100644 index 0000000000000..5d169e8e2e30e --- /dev/null +++ b/blockchains/celo/assets/0xE2702Bd97ee33c88c8f6f92DA3B733608aa76F71/info.json @@ -0,0 +1,36 @@ +{ + "name": "Mento Nigerian Naira", + "type": "CELO", + "symbol": "NGNm", + "decimals": 18, + "description": "Mento Nigerian Naira (NGNm) is a decentralized stablecoin pegged to the Nigerian Naira on the Celo blockchain.", + "website": "https://www.mento.org/", + "explorer": "https://celoscan.io/token/0xE2702Bd97ee33c88c8f6f92DA3B733608aa76F71", + "status": "active", + "id": "0xE2702Bd97ee33c88c8f6f92DA3B733608aa76F71", + "links": [ + { + "name": "x", + "url": "https://x.com/mentolabs" + }, + { + "name": "telegram", + "url": "https://t.me/mentocommunity" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Zszgng9NdF" + }, + { + "name": "docs", + "url": "https://docs.mento.org/mento" + }, + { + "name": "blog", + "url": "https://www.mento.org/blog" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/celo/assets/0xE2702Bd97ee33c88c8f6f92DA3B733608aa76F71/logo.png b/blockchains/celo/assets/0xE2702Bd97ee33c88c8f6f92DA3B733608aa76F71/logo.png new file mode 100644 index 0000000000000..a80af5f1ca526 Binary files /dev/null and b/blockchains/celo/assets/0xE2702Bd97ee33c88c8f6f92DA3B733608aa76F71/logo.png differ diff --git a/blockchains/celo/assets/0xE273Ad7ee11dCfAA87383aD5977EE1504aC07568/info.json b/blockchains/celo/assets/0xE273Ad7ee11dCfAA87383aD5977EE1504aC07568/info.json new file mode 100644 index 0000000000000..c84136c43ecf6 --- /dev/null +++ b/blockchains/celo/assets/0xE273Ad7ee11dCfAA87383aD5977EE1504aC07568/info.json @@ -0,0 +1,25 @@ +{ + "name": "Moola Celo EUR", + "website": "https://www.moola.market/", + "description": "Moola is a non-custodial liquidity protocol built on the Celo blockchain that is democratizing access to yield and credit.", + "explorer": "https://explorer.celo.org/mainnet/address/0xE273Ad7ee11dCfAA87383aD5977EE1504aC07568", + "type": "CELO", + "symbol": "MCEUR", + "decimals": 18, + "status": "active", + "id": "0xE273Ad7ee11dCfAA87383aD5977EE1504aC07568", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/moola-celo-usd/" + }, + { + "name": "x", + "url": "https://x.com/Moola_Market" + }, + { + "name": "telegram", + "url": "https://t.me/moolamarket" + } + ] +} \ No newline at end of file diff --git a/blockchains/celo/assets/0xE273Ad7ee11dCfAA87383aD5977EE1504aC07568/logo.png b/blockchains/celo/assets/0xE273Ad7ee11dCfAA87383aD5977EE1504aC07568/logo.png new file mode 100644 index 0000000000000..9ce20af143093 Binary files /dev/null and b/blockchains/celo/assets/0xE273Ad7ee11dCfAA87383aD5977EE1504aC07568/logo.png differ diff --git a/blockchains/celo/assets/0xE685d21b7B0FC7A248a6A8E03b8Db22d013Aa2eE/info.json b/blockchains/celo/assets/0xE685d21b7B0FC7A248a6A8E03b8Db22d013Aa2eE/info.json new file mode 100644 index 0000000000000..d8b03e84d79cb --- /dev/null +++ b/blockchains/celo/assets/0xE685d21b7B0FC7A248a6A8E03b8Db22d013Aa2eE/info.json @@ -0,0 +1,21 @@ +{ + "name": "ImmortalDAO Finance ", + "website": "https://migrate.immortalx.io/", + "description": "Immortal is a decentralized reserve currency protocol on Celo blockchain based on the IMMO token.", + "explorer": "https://explorer.celo.org/mainnet/address/0xE685d21b7B0FC7A248a6A8E03b8Db22d013Aa2eE", + "type": "CELO", + "symbol": "IMMO", + "decimals": 9, + "status": "active", + "id": "0xE685d21b7B0FC7A248a6A8E03b8Db22d013Aa2eE", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/immortaldao-finance/" + }, + { + "name": "x", + "url": "https://x.com/immortalx_io" + } + ] +} \ No newline at end of file diff --git a/blockchains/celo/assets/0xE685d21b7B0FC7A248a6A8E03b8Db22d013Aa2eE/logo.png b/blockchains/celo/assets/0xE685d21b7B0FC7A248a6A8E03b8Db22d013Aa2eE/logo.png new file mode 100644 index 0000000000000..1b1289ec48e35 Binary files /dev/null and b/blockchains/celo/assets/0xE685d21b7B0FC7A248a6A8E03b8Db22d013Aa2eE/logo.png differ diff --git a/blockchains/celo/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json b/blockchains/celo/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json index d4877bc218601..53efa2e34887d 100644 --- a/blockchains/celo/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json +++ b/blockchains/celo/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json @@ -10,8 +10,8 @@ "id": "0xEB466342C4d449BC9f53A865D5Cb90586f405215", "links": [ { - "name": "twitter", - "url": "https://twitter.com/axelarcore" + "name": "x", + "url": "https://x.com/axelarcore" }, { "name": "github", @@ -66,4 +66,4 @@ "stablecoin", "wrapped" ] -} +} \ No newline at end of file diff --git a/blockchains/celo/assets/0xb55a79F398E759E43C95b979163f30eC87Ee131D/info.json b/blockchains/celo/assets/0xb55a79F398E759E43C95b979163f30eC87Ee131D/info.json new file mode 100644 index 0000000000000..246d791c63003 --- /dev/null +++ b/blockchains/celo/assets/0xb55a79F398E759E43C95b979163f30eC87Ee131D/info.json @@ -0,0 +1,36 @@ +{ + "name": "Mento Swiss Franc", + "type": "CELO", + "symbol": "CHFm", + "decimals": 18, + "description": "Mento Swiss Franc (CHFm) is a decentralized stablecoin pegged to the Swiss Franc on the Celo blockchain.", + "website": "https://www.mento.org/", + "explorer": "https://celoscan.io/token/0xb55a79F398E759E43C95b979163f30eC87Ee131D", + "status": "active", + "id": "0xb55a79F398E759E43C95b979163f30eC87Ee131D", + "links": [ + { + "name": "x", + "url": "https://x.com/mentolabs" + }, + { + "name": "telegram", + "url": "https://t.me/mentocommunity" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Zszgng9NdF" + }, + { + "name": "docs", + "url": "https://docs.mento.org/mento" + }, + { + "name": "blog", + "url": "https://www.mento.org/blog" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/celo/assets/0xb55a79F398E759E43C95b979163f30eC87Ee131D/logo.png b/blockchains/celo/assets/0xb55a79F398E759E43C95b979163f30eC87Ee131D/logo.png new file mode 100644 index 0000000000000..86d9326955026 Binary files /dev/null and b/blockchains/celo/assets/0xb55a79F398E759E43C95b979163f30eC87Ee131D/logo.png differ diff --git a/blockchains/celo/assets/0xc45eCF20f3CD864B32D9794d6f76814aE8892e20/info.json b/blockchains/celo/assets/0xc45eCF20f3CD864B32D9794d6f76814aE8892e20/info.json new file mode 100644 index 0000000000000..dbd0b393fe6f5 --- /dev/null +++ b/blockchains/celo/assets/0xc45eCF20f3CD864B32D9794d6f76814aE8892e20/info.json @@ -0,0 +1,36 @@ +{ + "name": "Mento Japanese Yen", + "type": "CELO", + "symbol": "JPYm", + "decimals": 18, + "description": "Mento Japanese Yen (JPYm) is a decentralized stablecoin pegged to the Japanese Yen on the Celo blockchain.", + "website": "https://www.mento.org/", + "explorer": "https://celoscan.io/token/0xc45eCF20f3CD864B32D9794d6f76814aE8892e20", + "status": "active", + "id": "0xc45eCF20f3CD864B32D9794d6f76814aE8892e20", + "links": [ + { + "name": "x", + "url": "https://x.com/mentolabs" + }, + { + "name": "telegram", + "url": "https://t.me/mentocommunity" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Zszgng9NdF" + }, + { + "name": "docs", + "url": "https://docs.mento.org/mento" + }, + { + "name": "blog", + "url": "https://www.mento.org/blog" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/celo/assets/0xc45eCF20f3CD864B32D9794d6f76814aE8892e20/logo.png b/blockchains/celo/assets/0xc45eCF20f3CD864B32D9794d6f76814aE8892e20/logo.png new file mode 100644 index 0000000000000..9940370de8bf7 Binary files /dev/null and b/blockchains/celo/assets/0xc45eCF20f3CD864B32D9794d6f76814aE8892e20/logo.png differ diff --git a/blockchains/celo/assets/0xcebA9300f2b948710d2653dD7B07f33A8B32118C/info.json b/blockchains/celo/assets/0xcebA9300f2b948710d2653dD7B07f33A8B32118C/info.json new file mode 100644 index 0000000000000..e779fb87c8321 --- /dev/null +++ b/blockchains/celo/assets/0xcebA9300f2b948710d2653dD7B07f33A8B32118C/info.json @@ -0,0 +1,36 @@ +{ + "name": "USDC", + "website": "https://centre.io/usdc", + "description": "USDC is a fully collateralized US dollar stablecoin, an Ethereum powered coin and is the brainchild of CENTRE, an open source project bootstrapped by contributions from Circle and Coinbase.", + "explorer": "https://explorer.celo.org/mainnet/address/0xcebA9300f2b948710d2653dD7B07f33A8B32118C", + "type": "CELO", + "symbol": "USDC", + "decimals": 6, + "status": "active", + "id": "0xcebA9300f2b948710d2653dD7B07f33A8B32118C", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/celo/assets/0xcebA9300f2b948710d2653dD7B07f33A8B32118C/logo.png b/blockchains/celo/assets/0xcebA9300f2b948710d2653dD7B07f33A8B32118C/logo.png new file mode 100644 index 0000000000000..eafbaac194aa7 Binary files /dev/null and b/blockchains/celo/assets/0xcebA9300f2b948710d2653dD7B07f33A8B32118C/logo.png differ diff --git a/blockchains/celo/assets/0xe8537a3d056DA446677B9E9d6c5dB704EaAb4787/info.json b/blockchains/celo/assets/0xe8537a3d056DA446677B9E9d6c5dB704EaAb4787/info.json index ff7dc241ce740..124bff20613c3 100644 --- a/blockchains/celo/assets/0xe8537a3d056DA446677B9E9d6c5dB704EaAb4787/info.json +++ b/blockchains/celo/assets/0xe8537a3d056DA446677B9E9d6c5dB704EaAb4787/info.json @@ -1,28 +1,40 @@ { - "name": "Celo Brazilian Real", - "website": "https://celo.org", - "description": "Celo Brazilian Real (cREAL) ERC20 Token in Celo Mainnet. Token is implemented as ERC20 smart contract with address", - "explorer": "https://explorer.bitquery.io/celo_rc1/token/0xe8537a3d056da446677b9e9d6c5db704eaab4787", + "name": "Mento Brazilian Real", "type": "CELO", - "symbol": "cREAL", + "symbol": "BRLm", "decimals": 18, + "description": "Mento Brazilian Real (BRLm) is a decentralized stablecoin pegged to the Brazilian Real on the Celo blockchain.", + "website": "https://www.mento.org/", + "explorer": "https://celoscan.io/token/0xe8537a3d056DA446677B9E9d6c5dB704EaAb4787", "status": "active", "id": "0xe8537a3d056DA446677B9E9d6c5dB704EaAb4787", - "tags": [ - "stablecoin" - ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/CeloOrg" + "name": "x", + "url": "https://x.com/mentolabs" }, { "name": "telegram", - "url": "https://t.me/celoplatform" + "url": "https://t.me/mentocommunity" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Zszgng9NdF" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/celo-brazilian-real/" + }, + { + "name": "docs", + "url": "https://docs.mento.org/mento" }, { - "name": "github", - "url": "https://github.com/celo-org/celo-monorepo" + "name": "blog", + "url": "https://www.mento.org/blog" } + ], + "tags": [ + "stablecoin" ] } \ No newline at end of file diff --git a/blockchains/celo/assets/0xe8537a3d056DA446677B9E9d6c5dB704EaAb4787/logo.png b/blockchains/celo/assets/0xe8537a3d056DA446677B9E9d6c5dB704EaAb4787/logo.png index 65069bca032af..2efc123e0a82a 100644 Binary files a/blockchains/celo/assets/0xe8537a3d056DA446677B9E9d6c5dB704EaAb4787/logo.png and b/blockchains/celo/assets/0xe8537a3d056DA446677B9E9d6c5dB704EaAb4787/logo.png differ diff --git a/blockchains/celo/assets/0xfAeA5F3404bbA20D3cc2f8C4B0A888F55a3c7313/info.json b/blockchains/celo/assets/0xfAeA5F3404bbA20D3cc2f8C4B0A888F55a3c7313/info.json new file mode 100644 index 0000000000000..ab0b5df0a696d --- /dev/null +++ b/blockchains/celo/assets/0xfAeA5F3404bbA20D3cc2f8C4B0A888F55a3c7313/info.json @@ -0,0 +1,36 @@ +{ + "name": "Mento Ghanaian Cedi", + "type": "CELO", + "symbol": "GHSm", + "decimals": 18, + "description": "Mento Ghanaian Cedi (GHSm) is a decentralized stablecoin pegged to the Ghanaian Cedi on the Celo blockchain.", + "website": "https://www.mento.org/", + "explorer": "https://celoscan.io/token/0xfAeA5F3404bbA20D3cc2f8C4B0A888F55a3c7313", + "status": "active", + "id": "0xfAeA5F3404bbA20D3cc2f8C4B0A888F55a3c7313", + "links": [ + { + "name": "x", + "url": "https://x.com/mentolabs" + }, + { + "name": "telegram", + "url": "https://t.me/mentocommunity" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Zszgng9NdF" + }, + { + "name": "docs", + "url": "https://docs.mento.org/mento" + }, + { + "name": "blog", + "url": "https://www.mento.org/blog" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/celo/assets/0xfAeA5F3404bbA20D3cc2f8C4B0A888F55a3c7313/logo.png b/blockchains/celo/assets/0xfAeA5F3404bbA20D3cc2f8C4B0A888F55a3c7313/logo.png new file mode 100644 index 0000000000000..c379ad838a521 Binary files /dev/null and b/blockchains/celo/assets/0xfAeA5F3404bbA20D3cc2f8C4B0A888F55a3c7313/logo.png differ diff --git a/blockchains/celo/assets/0xff4Ab19391af240c311c54200a492233052B6325/info.json b/blockchains/celo/assets/0xff4Ab19391af240c311c54200a492233052B6325/info.json new file mode 100644 index 0000000000000..f0ffb63a7f023 --- /dev/null +++ b/blockchains/celo/assets/0xff4Ab19391af240c311c54200a492233052B6325/info.json @@ -0,0 +1,36 @@ +{ + "name": "Mento Canadian Dollar", + "type": "CELO", + "symbol": "CADm", + "decimals": 18, + "description": "Mento Canadian Dollar (CADm) is a decentralized stablecoin pegged to the Canadian Dollar on the Celo blockchain.", + "website": "https://www.mento.org/", + "explorer": "https://celoscan.io/token/0xff4Ab19391af240c311c54200a492233052B6325", + "status": "active", + "id": "0xff4Ab19391af240c311c54200a492233052B6325", + "links": [ + { + "name": "x", + "url": "https://x.com/mentolabs" + }, + { + "name": "telegram", + "url": "https://t.me/mentocommunity" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Zszgng9NdF" + }, + { + "name": "docs", + "url": "https://docs.mento.org/mento" + }, + { + "name": "blog", + "url": "https://www.mento.org/blog" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/celo/assets/0xff4Ab19391af240c311c54200a492233052B6325/logo.png b/blockchains/celo/assets/0xff4Ab19391af240c311c54200a492233052B6325/logo.png new file mode 100644 index 0000000000000..2541668dfa76e Binary files /dev/null and b/blockchains/celo/assets/0xff4Ab19391af240c311c54200a492233052B6325/logo.png differ diff --git a/blockchains/celo/info/info.json b/blockchains/celo/info/info.json index 4318f70c7dc40..a673031ef8396 100644 --- a/blockchains/celo/info/info.json +++ b/blockchains/celo/info/info.json @@ -9,18 +9,21 @@ "rpc_url": "https://forno.celo.org", "decimals": 18, "status": "active", + "tags": [ + "dapp" + ], "links": [ { "name": "github", "url": "https://github.com/celo-org/celo-blockchain" }, { - "name": "twitter", - "url": "https://twitter.com/CeloOrg" + "name": "x", + "url": "https://x.com/CeloOrg" }, { "name": "whitepaper", "url": "https://celo.org/papers" } ] -} +} \ No newline at end of file diff --git a/blockchains/celo/info/logo.png b/blockchains/celo/info/logo.png index 078b712447c61..a2f6999cd173b 100644 Binary files a/blockchains/celo/info/logo.png and b/blockchains/celo/info/logo.png differ diff --git a/blockchains/celo/info/square_logo.png b/blockchains/celo/info/square_logo.png new file mode 100644 index 0000000000000..4db671a2e95cf Binary files /dev/null and b/blockchains/celo/info/square_logo.png differ diff --git a/blockchains/cfxevm/assets/0xa47f43DE2f9623aCb395CA4905746496D2014d57/info.json b/blockchains/cfxevm/assets/0xa47f43DE2f9623aCb395CA4905746496D2014d57/info.json new file mode 100644 index 0000000000000..7bc43879d0fc1 --- /dev/null +++ b/blockchains/cfxevm/assets/0xa47f43DE2f9623aCb395CA4905746496D2014d57/info.json @@ -0,0 +1,30 @@ +{ + "name": "Ethereum", + "symbol": "ETH", + "type": "CONFLUX", + "decimals": 18, + "description": "Ethereum is a global, open-source platform for decentralized applications. Eth is fueling transactions on the Chain.", + "website": "https://ethereum.org/", + "explorer": "https://evm.confluxscan.net/address/0xa47f43de2f9623acb395ca4905746496d2014d57", + "research": "https://research.binance.com/en/projects/ethereum", + "status": "active", + "id": "0xa47f43DE2f9623aCb395CA4905746496D2014d57", + "links": [ + { + "name": "github", + "url": "https://github.com/ethereum/ethereum-org-website" + }, + { + "name": "x", + "url": "https://x.com/ethdotorg" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCNOfzGXD_C9YMYmnefmPH0g" + }, + { + "name": "discord", + "url": "https://discord.com/invite/CetY6Y4" + } + ] +} \ No newline at end of file diff --git a/blockchains/cfxevm/assets/0xa47f43DE2f9623aCb395CA4905746496D2014d57/logo.png b/blockchains/cfxevm/assets/0xa47f43DE2f9623aCb395CA4905746496D2014d57/logo.png new file mode 100644 index 0000000000000..df4a0f3a19b3a Binary files /dev/null and b/blockchains/cfxevm/assets/0xa47f43DE2f9623aCb395CA4905746496D2014d57/logo.png differ diff --git a/blockchains/cfxevm/assets/0xfe97E85d13ABD9c1c33384E796F10B73905637cE/info.json b/blockchains/cfxevm/assets/0xfe97E85d13ABD9c1c33384E796F10B73905637cE/info.json new file mode 100644 index 0000000000000..6c4be56566a25 --- /dev/null +++ b/blockchains/cfxevm/assets/0xfe97E85d13ABD9c1c33384E796F10B73905637cE/info.json @@ -0,0 +1,28 @@ +{ + "name": "Tether", + "symbol": "USDT", + "type": "CONFLUX", + "decimals": 18, + "description": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar.", + "website": "https://tether.to", + "explorer": "https://evm.confluxscan.net/address/0xfe97e85d13abd9c1c33384e796f10b73905637ce", + "status": "active", + "id": "0xfe97E85d13ABD9c1c33384E796F10B73905637cE", + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/tether.to/" + }, + { + "name": "x", + "url": "https://x.com/Tether_to/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/tether/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/cfxevm/assets/0xfe97E85d13ABD9c1c33384E796F10B73905637cE/logo.png b/blockchains/cfxevm/assets/0xfe97E85d13ABD9c1c33384E796F10B73905637cE/logo.png new file mode 100644 index 0000000000000..4a53c2480431f Binary files /dev/null and b/blockchains/cfxevm/assets/0xfe97E85d13ABD9c1c33384E796F10B73905637cE/logo.png differ diff --git a/blockchains/cfxevm/info/info.json b/blockchains/cfxevm/info/info.json new file mode 100644 index 0000000000000..48eaff18afec6 --- /dev/null +++ b/blockchains/cfxevm/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "Conflux eSpace", + "website": "https://confluxnetwork.org", + "description": "Conflux enables creators, communities, and markets to connect across borders and protocols", + "explorer": "https://evm.confluxscan.net", + "symbol": "CFX", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/conflux-chain" + }, + { + "name": "x", + "url": "https://x.com/Conflux_Network" + } + ] +} \ No newline at end of file diff --git a/blockchains/cfxevm/info/logo.png b/blockchains/cfxevm/info/logo.png new file mode 100644 index 0000000000000..c8907ec9be623 Binary files /dev/null and b/blockchains/cfxevm/info/logo.png differ diff --git a/blockchains/cfxevm/info/square_logo.png b/blockchains/cfxevm/info/square_logo.png new file mode 100644 index 0000000000000..78961c306453d Binary files /dev/null and b/blockchains/cfxevm/info/square_logo.png differ diff --git a/blockchains/classic/info/info.json b/blockchains/classic/info/info.json index 25a05bdfb5733..334bdac9430f0 100644 --- a/blockchains/classic/info/info.json +++ b/blockchains/classic/info/info.json @@ -16,8 +16,8 @@ "url": "https://github.com/ethereumclassic/" }, { - "name": "twitter", - "url": "https://twitter.com/eth_classic" + "name": "x", + "url": "https://x.com/eth_classic" }, { "name": "reddit", diff --git a/blockchains/classic/info/square_logo.png b/blockchains/classic/info/square_logo.png new file mode 100644 index 0000000000000..24e7635b1e219 Binary files /dev/null and b/blockchains/classic/info/square_logo.png differ diff --git a/blockchains/comdex/info/info.json b/blockchains/comdex/info/info.json index 65b945bde05e7..4c541db1f9734 100644 --- a/blockchains/comdex/info/info.json +++ b/blockchains/comdex/info/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/comdex-official" }, { - "name": "twitter", - "url": "https://twitter.com/ComdexOfficial" + "name": "x", + "url": "https://x.com/ComdexOfficial" } ] } \ No newline at end of file diff --git a/blockchains/comdex/info/square_logo.png b/blockchains/comdex/info/square_logo.png new file mode 100644 index 0000000000000..bf05d3df3c787 Binary files /dev/null and b/blockchains/comdex/info/square_logo.png differ diff --git a/blockchains/comdex/validators/assets/comdexvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zcpt5ph/logo.png b/blockchains/comdex/validators/assets/comdexvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zcpt5ph/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/comdex/validators/assets/comdexvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zcpt5ph/logo.png differ diff --git a/blockchains/comdex/validators/assets/comdexvaloper16jaa0d8tth8v5ae48s4a5zqjvdp768nqft9h5r/logo.png b/blockchains/comdex/validators/assets/comdexvaloper16jaa0d8tth8v5ae48s4a5zqjvdp768nqft9h5r/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/comdex/validators/assets/comdexvaloper16jaa0d8tth8v5ae48s4a5zqjvdp768nqft9h5r/logo.png differ diff --git a/blockchains/comdex/validators/assets/comdexvaloper195re7mhwh9urewm3rvaj9r7vm6j63c4sd78njd/logo.png b/blockchains/comdex/validators/assets/comdexvaloper195re7mhwh9urewm3rvaj9r7vm6j63c4sd78njd/logo.png new file mode 100644 index 0000000000000..c2cb86a42efe3 Binary files /dev/null and b/blockchains/comdex/validators/assets/comdexvaloper195re7mhwh9urewm3rvaj9r7vm6j63c4sd78njd/logo.png differ diff --git a/blockchains/comdex/validators/assets/comdexvaloper1g6zz4d7j6fvxy24nsqkjrcxqrt7hwp6p6hws7c/logo.png b/blockchains/comdex/validators/assets/comdexvaloper1g6zz4d7j6fvxy24nsqkjrcxqrt7hwp6p6hws7c/logo.png new file mode 100644 index 0000000000000..4b09813738a9d Binary files /dev/null and b/blockchains/comdex/validators/assets/comdexvaloper1g6zz4d7j6fvxy24nsqkjrcxqrt7hwp6p6hws7c/logo.png differ diff --git a/blockchains/comdex/validators/assets/comdexvaloper1gfe4f7urf866xte5cpmkgsw7q2u97qj06ldtj3/logo.png b/blockchains/comdex/validators/assets/comdexvaloper1gfe4f7urf866xte5cpmkgsw7q2u97qj06ldtj3/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/comdex/validators/assets/comdexvaloper1gfe4f7urf866xte5cpmkgsw7q2u97qj06ldtj3/logo.png differ diff --git a/blockchains/comdex/validators/assets/comdexvaloper1zk7jdn32dejfeya3c4e3h5lyjsuhafthlrhe2f/logo.png b/blockchains/comdex/validators/assets/comdexvaloper1zk7jdn32dejfeya3c4e3h5lyjsuhafthlrhe2f/logo.png new file mode 100644 index 0000000000000..c53de0659fd41 Binary files /dev/null and b/blockchains/comdex/validators/assets/comdexvaloper1zk7jdn32dejfeya3c4e3h5lyjsuhafthlrhe2f/logo.png differ diff --git a/blockchains/comdex/validators/list.json b/blockchains/comdex/validators/list.json new file mode 100644 index 0000000000000..09f4545d676ab --- /dev/null +++ b/blockchains/comdex/validators/list.json @@ -0,0 +1,38 @@ +[ + { + "id": "comdexvaloper1gfe4f7urf866xte5cpmkgsw7q2u97qj06ldtj3", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "comdexvaloper195re7mhwh9urewm3rvaj9r7vm6j63c4sd78njd", + "name": "AutoStake 🛡️ Slash Protected", + "description": "BareMetal - Decentralised - Reliable infrastructure run by the industry leader - AutoStake - Connect with us at: https://linktr.ee/autostake", + "website": "https://autostake.com" + }, + { + "id": "comdexvaloper16jaa0d8tth8v5ae48s4a5zqjvdp768nqft9h5r", + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" + }, + { + "id": "comdexvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zcpt5ph", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + }, + { + "id": "comdexvaloper1g6zz4d7j6fvxy24nsqkjrcxqrt7hwp6p6hws7c", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com/" + }, + { + "id": "comdexvaloper1zk7jdn32dejfeya3c4e3h5lyjsuhafthlrhe2f", + "name": "Coinage x DAIC", + "description": "The official validator node from Coinage (Coinage.Media) and DAIC (https://daic.capital/telegram)", + "website": "https://daic.capital/" + } +] \ No newline at end of file diff --git a/blockchains/coreum/info/info.json b/blockchains/coreum/info/info.json index 1d606faab5c65..191afbfd2dd1b 100644 --- a/blockchains/coreum/info/info.json +++ b/blockchains/coreum/info/info.json @@ -21,8 +21,8 @@ "url": "https://github.com/CoreumFoundation" }, { - "name": "twitter", - "url": "https://twitter.com/CoreumOfficial" + "name": "x", + "url": "https://x.com/CoreumOfficial" } ] } \ No newline at end of file diff --git a/blockchains/coreum/info/square_logo.png b/blockchains/coreum/info/square_logo.png new file mode 100644 index 0000000000000..793f7b4a3944e Binary files /dev/null and b/blockchains/coreum/info/square_logo.png differ diff --git a/blockchains/coreum/validators/assets/corevaloper1k0rllvenwr02gvm52fh5056g5m3hly2lpf63z5/logo.png b/blockchains/coreum/validators/assets/corevaloper1k0rllvenwr02gvm52fh5056g5m3hly2lpf63z5/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/coreum/validators/assets/corevaloper1k0rllvenwr02gvm52fh5056g5m3hly2lpf63z5/logo.png differ diff --git a/blockchains/coreum/validators/assets/corevaloper1pulqspt7t3tcnvcde38hmyngj0x43y0ujsvfus/logo.png b/blockchains/coreum/validators/assets/corevaloper1pulqspt7t3tcnvcde38hmyngj0x43y0ujsvfus/logo.png new file mode 100644 index 0000000000000..1020527149890 Binary files /dev/null and b/blockchains/coreum/validators/assets/corevaloper1pulqspt7t3tcnvcde38hmyngj0x43y0ujsvfus/logo.png differ diff --git a/blockchains/coreum/validators/list.json b/blockchains/coreum/validators/list.json new file mode 100644 index 0000000000000..c8e3f989d64c0 --- /dev/null +++ b/blockchains/coreum/validators/list.json @@ -0,0 +1,14 @@ +[ + { + "id": "corevaloper1k0rllvenwr02gvm52fh5056g5m3hly2lpf63z5", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "corevaloper1pulqspt7t3tcnvcde38hmyngj0x43y0ujsvfus", + "name": "Allnodes", + "description": "Reliable non-custodial Validator run by the industry leader - Allnodes. Monitor your rewards through the Allnodes portfolio page.", + "website": "https://www.allnodes.com/core/staking" + } +] diff --git a/blockchains/cosmos/info/info.json b/blockchains/cosmos/info/info.json index 8fd92bf301d96..36131394bfcc9 100644 --- a/blockchains/cosmos/info/info.json +++ b/blockchains/cosmos/info/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/cosmos" }, { - "name": "twitter", - "url": "https://twitter.com/cosmos" + "name": "x", + "url": "https://x.com/cosmos" }, { "name": "reddit", @@ -29,4 +29,4 @@ "url": "https://cosmos.network/resources/whitepaper" } ] -} +} \ No newline at end of file diff --git a/blockchains/cosmos/info/square_logo.png b/blockchains/cosmos/info/square_logo.png new file mode 100644 index 0000000000000..f27673092dddd Binary files /dev/null and b/blockchains/cosmos/info/square_logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper140e7u946a2nqqkvcnjpjm83d0ynsqem8dnp684/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper140e7u946a2nqqkvcnjpjm83d0ynsqem8dnp684/logo.png index 434f53ccac24a..c53de0659fd41 100644 Binary files a/blockchains/cosmos/validators/assets/cosmosvaloper140e7u946a2nqqkvcnjpjm83d0ynsqem8dnp684/logo.png and b/blockchains/cosmos/validators/assets/cosmosvaloper140e7u946a2nqqkvcnjpjm83d0ynsqem8dnp684/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zfd832j/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zfd832j/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zfd832j/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper15w6ra6m68c63t0sv2hzmkngwr9t88e23r8vtg5/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper15w6ra6m68c63t0sv2hzmkngwr9t88e23r8vtg5/logo.png new file mode 100644 index 0000000000000..dc486ae388c52 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper15w6ra6m68c63t0sv2hzmkngwr9t88e23r8vtg5/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98l3k9h6/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98l3k9h6/logo.png new file mode 100644 index 0000000000000..9dff7bbedfbee Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98l3k9h6/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1gpx52r9h3zeul45amvcy2pysgvcwddxrgx6cnv/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1gpx52r9h3zeul45amvcy2pysgvcwddxrgx6cnv/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1gpx52r9h3zeul45amvcy2pysgvcwddxrgx6cnv/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1jmykcq8gylmy5tgqtel4xj4q62fdt49sl584xd/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1jmykcq8gylmy5tgqtel4xj4q62fdt49sl584xd/logo.png index cc1171d08453c..4a94972eda28f 100644 Binary files a/blockchains/cosmos/validators/assets/cosmosvaloper1jmykcq8gylmy5tgqtel4xj4q62fdt49sl584xd/logo.png and b/blockchains/cosmos/validators/assets/cosmosvaloper1jmykcq8gylmy5tgqtel4xj4q62fdt49sl584xd/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1k6e7l0lz497l8njqjxpd3g4wlkdfwe93uqf03k/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1k6e7l0lz497l8njqjxpd3g4wlkdfwe93uqf03k/logo.png new file mode 100644 index 0000000000000..f5f3ada9451c6 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1k6e7l0lz497l8njqjxpd3g4wlkdfwe93uqf03k/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1wdrypwex63geqswmcy5qynv4w3z3dyef2qmyna/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1wdrypwex63geqswmcy5qynv4w3z3dyef2qmyna/logo.png index 3c29ee005d51c..0888af01c5da5 100644 Binary files a/blockchains/cosmos/validators/assets/cosmosvaloper1wdrypwex63geqswmcy5qynv4w3z3dyef2qmyna/logo.png and b/blockchains/cosmos/validators/assets/cosmosvaloper1wdrypwex63geqswmcy5qynv4w3z3dyef2qmyna/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1wrx0x9m9ykdhw9sg04v7uljme53wuj03aa5d4f/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1wrx0x9m9ykdhw9sg04v7uljme53wuj03aa5d4f/logo.png new file mode 100644 index 0000000000000..bed0251921f16 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1wrx0x9m9ykdhw9sg04v7uljme53wuj03aa5d4f/logo.png differ diff --git a/blockchains/cosmos/validators/list.json b/blockchains/cosmos/validators/list.json index f9ec87c54a557..f65dbb22fa201 100644 --- a/blockchains/cosmos/validators/list.json +++ b/blockchains/cosmos/validators/list.json @@ -1,4 +1,16 @@ [ + { + "id": "cosmosvaloper1k6e7l0lz497l8njqjxpd3g4wlkdfwe93uqf03k", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com" + }, + { + "id": "cosmosvaloper1gpx52r9h3zeul45amvcy2pysgvcwddxrgx6cnv", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.fr" + }, { "id": "cosmosvaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww2ztve7q", "name": "Swiss Staking", @@ -17,6 +29,12 @@ "description": "We provide staking and validator services for crypto networks to increase the value of the network for all.", "website": "https://mythos.services" }, + { + "id": "cosmosvaloper15w6ra6m68c63t0sv2hzmkngwr9t88e23r8vtg5", + "name": "w3coins", + "description": "w3coins is a Professional Validator and web3 Venture Capital. Stake Your Cryptocurrency with us to Maximize Your Earnings.", + "website": "https://www.w3coins.io" + }, { "id": "cosmosvaloper1j0vaeh27t4rll7zhmarwcuq8xtrmvqhudrgcky", "name": "Chainflow", @@ -248,7 +266,7 @@ { "id": "cosmosvaloper1rcp29q3hpd246n6qak7jluqep4v006cdsc2kkl", "name": "in3s.com", - "description": "Trusted by the ICF; decentralization advocate; Game-Of-Stakes winner; active Cosmos community member since 2017.", + "description": "Trusted by the ICF; genesis validator; never slashed; decentralization advocate; Game-Of-Stakes winner; Game-Of-Chains winner; active Cosmos community member since 2017.", "website": "https://in3s.com" }, { @@ -260,7 +278,7 @@ { "id": "cosmosvaloper1fhr7e04ct0zslmkzqt9smakg3sxrdve6ulclj2", "name": "Stakin", - "description": "Your Trusted Crypto Rewards", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", "website": "https://stakin.com/" }, { @@ -301,7 +319,7 @@ }, { "id": "cosmosvaloper1n229vhepft6wnkt5tjpwmxdmcnfz55jv3vp77d", - "name": "Allnodes.com ⚡️ 0% fee", + "name": "Allnodes", "description": "Reliable non-custodial Validator run by the industry leader - Allnodes. Monitor your rewards through the Allnodes portfolio page.", "website": "https://www.allnodes.com/atom/staking" }, @@ -319,9 +337,9 @@ }, { "id": "cosmosvaloper1wdrypwex63geqswmcy5qynv4w3z3dyef2qmyna", - "name": "Genesis Lab", - "description": "Genesis Lab is a validation nodes operator in PoS networks and blockchain-focused software development company", - "website": "https://genesislab.net" + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" }, { "id": "cosmosvaloper196ax4vc0lwpxndu9dyhvca7jhxp70rmcvrj90c", @@ -338,7 +356,7 @@ { "id": "cosmosvaloper1jmykcq8gylmy5tgqtel4xj4q62fdt49sl584xd", "name": "Blocks United", - "description": "100% refund on downtime slashing - Running on best-in-class, 24/7 monitored, bare metal infrastructure", + "description": "Elevate your staking experience with autocompounding rewards, exclusive airdrop eligibility, and low commissions for maximized returns.", "website": "https://blocksunited.com" }, { @@ -373,8 +391,26 @@ }, { "id": "cosmosvaloper140e7u946a2nqqkvcnjpjm83d0ynsqem8dnp684", - "name": "danku_zone w/ DAIC", - "description": "The official validator node from danku_r (YouTube, Twitter, Medium) run by DAIC (https://t.me/validator_danku_DAIC)", - "website": "https://daic.capital/danku_zone" + "name": "Coinage x DAIC", + "description": "The official validator node from Coinage (Coinage.Media) and DAIC (https://daic.capital/telegram)", + "website": "https://daic.capital/" + }, + { + "id": "cosmosvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zfd832j", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + }, + { + "id": "cosmosvaloper1wrx0x9m9ykdhw9sg04v7uljme53wuj03aa5d4f", + "name": "Meria", + "description": "Meria is an institutional-grade staking service provider running blockchain infrastructure on more than +35 networks.", + "website": "https://stake.meria.com/" + }, + { + "id": "cosmosvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98l3k9h6", + "name": "Kahuna", + "description": "Kahuna is a tech-focused investment firm dedicated to Blockchain Infrastructure, DeFi, and Gaming startups. Follow us on https://x.com/kahunahq", + "website": "https://www.kahuna.network/" } ] diff --git a/blockchains/crescent/info/info.json b/blockchains/crescent/info/info.json index 2b8f4f6c341ef..ba87196111e58 100644 --- a/blockchains/crescent/info/info.json +++ b/blockchains/crescent/info/info.json @@ -21,8 +21,8 @@ "url": "https://t.me/crescentnetwork" }, { - "name": "twitter", - "url": "https://twitter.com/CrescentHub" + "name": "x", + "url": "https://x.com/CrescentHub" } ] } \ No newline at end of file diff --git a/blockchains/crescent/info/square_logo.png b/blockchains/crescent/info/square_logo.png new file mode 100644 index 0000000000000..8c0aa47903e19 Binary files /dev/null and b/blockchains/crescent/info/square_logo.png differ diff --git a/blockchains/crescent/validators/assets/crevaloper126nxgyruw03fyr3rmxg76squcy08pjtm9zkl5d/logo.png b/blockchains/crescent/validators/assets/crevaloper126nxgyruw03fyr3rmxg76squcy08pjtm9zkl5d/logo.png new file mode 100644 index 0000000000000..4b09813738a9d Binary files /dev/null and b/blockchains/crescent/validators/assets/crevaloper126nxgyruw03fyr3rmxg76squcy08pjtm9zkl5d/logo.png differ diff --git a/blockchains/crescent/validators/assets/crevaloper173rqm36cj5efq2yhsedd8vhfrl7rjqeftkp80f/logo.png b/blockchains/crescent/validators/assets/crevaloper173rqm36cj5efq2yhsedd8vhfrl7rjqeftkp80f/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/crescent/validators/assets/crevaloper173rqm36cj5efq2yhsedd8vhfrl7rjqeftkp80f/logo.png differ diff --git a/blockchains/crescent/validators/assets/crevaloper17zw2jx6jjfah60pycklvqfnm3qaxd7kqzafglc/logo.png b/blockchains/crescent/validators/assets/crevaloper17zw2jx6jjfah60pycklvqfnm3qaxd7kqzafglc/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/crescent/validators/assets/crevaloper17zw2jx6jjfah60pycklvqfnm3qaxd7kqzafglc/logo.png differ diff --git a/blockchains/crescent/validators/assets/crevaloper19mt7qa5pralxre8j9v0wae2kvncv8qcghv0chf/logo.png b/blockchains/crescent/validators/assets/crevaloper19mt7qa5pralxre8j9v0wae2kvncv8qcghv0chf/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/crescent/validators/assets/crevaloper19mt7qa5pralxre8j9v0wae2kvncv8qcghv0chf/logo.png differ diff --git a/blockchains/crescent/validators/list.json b/blockchains/crescent/validators/list.json new file mode 100644 index 0000000000000..269ff481956b7 --- /dev/null +++ b/blockchains/crescent/validators/list.json @@ -0,0 +1,26 @@ +[ + { + "id": "crevaloper19mt7qa5pralxre8j9v0wae2kvncv8qcghv0chf", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "crevaloper173rqm36cj5efq2yhsedd8vhfrl7rjqeftkp80f", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + }, + { + "id": "crevaloper17zw2jx6jjfah60pycklvqfnm3qaxd7kqzafglc", + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" + }, + { + "id": "crevaloper126nxgyruw03fyr3rmxg76squcy08pjtm9zkl5d", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com/" + } +] \ No newline at end of file diff --git a/blockchains/cronos/assets/0x02DCcaf514C98451320a9365C5b46C61d3246ff3/info.json b/blockchains/cronos/assets/0x02DCcaf514C98451320a9365C5b46C61d3246ff3/info.json deleted file mode 100644 index 135ad5383293c..0000000000000 --- a/blockchains/cronos/assets/0x02DCcaf514C98451320a9365C5b46C61d3246ff3/info.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "name": "Dogelon", - "symbol": "ELON", - "type": "CRC20", - "decimals": 18, - "description": "I am Dogelon. Dogelon Mars. Join me and together we'll reach the stars ✨ We want to reach Mars and beyond. However, many of those good people are rugged, or buy scam tokens that can't be sold. For this reason, the Dogelon community pledges to send tokens over time to victims of rugs and scams, so that the worst day of their trading life can be turned into their best. And after some time, they will be able to join us on our regular flights to Mars....", - "website": "https://dogelon.io", - "explorer": "https://cronos.org/explorer/address/0x02DCcaf514C98451320a9365C5b46C61d3246ff3/token-transfers", - "status": "active", - "id": "0x02DCcaf514C98451320a9365C5b46C61d3246ff3", - "links": [ - { - "name": "twitter", - "url": "https://twitter.com/dogelonmars" - }, - { - "name": "telegram", - "url": "https://t.me/DogelonMars" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/dogelon/" - } - ], - "tags": [ - "memes" - ] -} \ No newline at end of file diff --git a/blockchains/cronos/assets/0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0/info.json b/blockchains/cronos/assets/0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0/info.json deleted file mode 100644 index c8c7c2991cb3e..0000000000000 --- a/blockchains/cronos/assets/0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0/info.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "name": "ADA", - "symbol": "ADA", - "type": "CRC20", - "decimals": 6, - "description": "Cardano (ADA) is a decentralized platform that will allow complex programmable transfers of value in a secure and scalable fashion. Cardano is built in the secure Haskell programming language.", - "website": "https://cronos.org/", - "explorer": "https://cronos.org/explorer/address/0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0/token-transfers", - "status": "active", - "id": "0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0", - "links": [ - { - "name": "twitter", - "url": "https://twitter.com/cardano" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/cardano/" - }, - { - "name": "telegram", - "url": "https://t.me/CardanoAnnouncements" - }, - { - "name": "coingecko", - "url": "https://coingecko.com/en/coins/cardano/" - } - ], - "tags": [ - "defi" - ] -} \ No newline at end of file diff --git a/blockchains/cronos/assets/0x63888BaFc5975630E4E5CF50c3845a3250115F64/info.json b/blockchains/cronos/assets/0x63888BaFc5975630E4E5CF50c3845a3250115F64/info.json deleted file mode 100644 index b384f93da9f50..0000000000000 --- a/blockchains/cronos/assets/0x63888BaFc5975630E4E5CF50c3845a3250115F64/info.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "name": "Fantom Token", - "symbol": "FTM", - "type": "CRC20", - "decimals": 18, - "description": "Fantom is a high-performance, scalable, customizable, and secure smart-contract platform. It is designed to overcome the limitations of previous generation blockchain platforms. Fantom is permissionless, decentralized, and open-source.", - "website": "http://fantom.foundation", - "explorer": "https://cronos.org/explorer/address/0x63888BaFc5975630E4E5CF50c3845a3250115F64/token-transfers", - "status": "active", - "id": "0x63888BaFc5975630E4E5CF50c3845a3250115F64", - "links": [ - { - "name": "twitter", - "url": "https://twitter.com/FantomFDN" - }, - { - "name": "telegram", - "url": "https://t.me/Fantom_English" - }, - { - "name": "coingecko", - "url": "https://coingecko.com/coins/fantom/" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/fantom/" - } - ], - "tags": [ - "defi" - ] -} \ No newline at end of file diff --git a/blockchains/cronos/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/info.json b/blockchains/cronos/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/info.json deleted file mode 100644 index 3af4070c1996e..0000000000000 --- a/blockchains/cronos/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/info.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "name": "Tether USD", - "symbol": "USDT", - "type": "CRC20", - "decimals": 6, - "description": "Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.", - "website": "https://cronos.org/", - "explorer": "https://cronos.org/explorer/address/0x66e428c3f67a68878562e79A0234c1F83c208770/token-transfers", - "status": "active", - "id": "0x66e428c3f67a68878562e79A0234c1F83c208770", - "links": [ - { - "name": "twitter", - "url": "https://twitter.com/Tether_to" - }, - { - "name": "coingecko", - "url": "https://coingecko.com/coins/tether/" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/tether/" - } - ], - "tags": [ - "stablecoin" - ] -} \ No newline at end of file diff --git a/blockchains/cronos/assets/0x7d54F4E05f273a9317f723997612Ed64eF53C900/info.json b/blockchains/cronos/assets/0x7d54F4E05f273a9317f723997612Ed64eF53C900/info.json deleted file mode 100644 index 89cf83d609506..0000000000000 --- a/blockchains/cronos/assets/0x7d54F4E05f273a9317f723997612Ed64eF53C900/info.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "name": "Quant", - "symbol": "QNT", - "type": "CRC20", - "decimals": 18, - "description": "The Quant Network team developed Quant as a cryptocurrency token based on the Ethereum blockchain. The solutions offered by Quant include Overledger OS and GoVerify.", - "website": "https://quant.network", - "explorer": "https://cronos.org/explorer/address/0x7d54F4E05f273a9317f723997612Ed64eF53C900/token-transfers", - "status": "active", - "id": "0x7d54F4E05f273a9317f723997612Ed64eF53C900", - "links": [ - { - "name": "github", - "url": "https://github.com/quantnetwork" - }, - { - "name": "twitter", - "url": "https://twitter.com/quant_network" - }, - { - "name": "reddit", - "url": "https://reddit.com/r/QuantNetwork/" - }, - { - "name": "blog", - "url": "https://medium.com/@quant_network" - }, - { - "name": "facebook", - "url": "https://facebook.com/quantnetwork" - }, - { - "name": "telegram", - "url": "https://t.me/quantnetworkannouncements" - }, - { - "name": "whitepaper", - "url": "https://files.quant.network/files.quant.network/Quant_Overledger_Whitepaper_v0.1.pdf" - }, - { - "name": "coingecko", - "url": "https://coingecko.com/en/coins/quant-network/" - } - ] -} \ No newline at end of file diff --git a/blockchains/cronos/assets/0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9/info.json b/blockchains/cronos/assets/0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9/info.json deleted file mode 100644 index 2800b81e71c4e..0000000000000 --- a/blockchains/cronos/assets/0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9/info.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "name": "Chainlink", - "symbol": "LINK", - "type": "CRC20", - "decimals": 18, - "description": "Chainlink is a decentralized oracle service, which aims to connect smart contracts with data from the real world. Oracles are needed to function as data feeds in smart contracts. Oracles provide external data (e.g. temperature, weather) that can drive smart contract executions. Participants on the network are incentivized (through rewards) to provide smart contracts with access to external data feeds.", - "website": "https://chain.link", - "explorer": "https://cronos.org/explorer/address/0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9/token-transfers", - "status": "active", - "id": "0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9", - "links": [ - { - "name": "github", - "url": "https://github.com/smartcontractkit/chainlink" - }, - { - "name": "twitter", - "url": "https://twitter.com/chainlink" - }, - { - "name": "reddit", - "url": "https://reddit.com/r/chainlink" - }, - { - "name": "whitepaper", - "url": "https://link.smartcontract.com/whitepaper" - } - ], - "tags": [ - "defi" - ] -} \ No newline at end of file diff --git a/blockchains/cronos/assets/0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a/info.json b/blockchains/cronos/assets/0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a/info.json deleted file mode 100644 index 6d6227341add9..0000000000000 --- a/blockchains/cronos/assets/0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a/info.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "name": "DappRadar", - "symbol": "RADAR", - "type": "CRC20", - "decimals": 18, - "description": "DappRadar aims to be one of the leading global NFT & DeFi DAPP store.", - "website": "https://dappradar.com/", - "explorer": "https://cronos.org/explorer/address/0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a/token-transfers", - "status": "active", - "id": "0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a", - "links": [ - { - "name": "github", - "url": "https://github.com/dappradar" - }, - { - "name": "twitter", - "url": "https://twitter.com/dappradar" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/dappradar/" - }, - { - "name": "telegram", - "url": "https://t.me/joinchat/GdhNjQ8PMhCZ_a0CZutmXg" - } - ], - "tags": [ - "nft", - "defi" - ] -} \ No newline at end of file diff --git a/blockchains/cronos/assets/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee/info.json b/blockchains/cronos/assets/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee/info.json deleted file mode 100644 index 88151f8318d72..0000000000000 --- a/blockchains/cronos/assets/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee/info.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "name": "SHIBA INU", - "symbol": "SHIB", - "type": "CRC20", - "decimals": 18, - "description": "According to SHIBA INU, the reasoning behind the creation of SHIBA is that Shibas constantly forget where they bury their treasure.", - "website": "https://shibatoken.com/", - "explorer": "https://cronos.org/explorer/address/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee/token-transfers", - "status": "active", - "id": "0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee", - "links": [ - { - "name": "telegram", - "url": "https://t.me/shibainuthedogecoinkiller" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/shiba-inu/" - }, - { - "name": "coingecko", - "url": "https://coingecko.com/en/coins/shiba-inu/" - } - ], - "tags": [ - "deflationary", - "memes" - ] -} \ No newline at end of file diff --git a/blockchains/cronos/assets/0xe44Fd7fCb2b1581822D0c862B68222998a0c299a/info.json b/blockchains/cronos/assets/0xe44Fd7fCb2b1581822D0c862B68222998a0c299a/info.json deleted file mode 100644 index 1d705e26b892d..0000000000000 --- a/blockchains/cronos/assets/0xe44Fd7fCb2b1581822D0c862B68222998a0c299a/info.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "name": "Wrapped Ether", - "symbol": "WETH", - "type": "CRC20", - "decimals": 18, - "description": "wETH is 'wrapped ETH'", - "website": "https://weth.io/", - "explorer": "https://cronos.org/explorer/address/0xe44Fd7fCb2b1581822D0c862B68222998a0c299a/token-transfers", - "status": "active", - "id": "0xe44Fd7fCb2b1581822D0c862B68222998a0c299a", - "links": [ - { - "name": "twitter", - "url": "https://twitter.com/radarrelay?lang=en" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/weth/" - }, - { - "name": "telegram", - "url": "https://t.me/radar_relay" - }, - { - "name": "coingecko", - "url": "https://coingecko.com/en/coins/weth/" - } - ], - "tags": [ - "wrapped" - ] -} \ No newline at end of file diff --git a/blockchains/cronos/assets/0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341/info.json b/blockchains/cronos/assets/0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341/info.json deleted file mode 100644 index 00315742d172c..0000000000000 --- a/blockchains/cronos/assets/0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341/info.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "name": "ONE", - "symbol": "ONE", - "type": "CRC20", - "decimals": 18, - "description": "Harmony is an open and fast blockchain. Our mainnet runs Ethereum applications with 2-second transaction finality and 100 times lower fees.", - "website": "https://www.harmony.one", - "explorer": "https://cronos.org/explorer/address/0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341/token-transfers", - "status": "active", - "id": "0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341", - "links": [ - { - "name": "twitter", - "url": "https://twitter.com/harmonyprotocol" - }, - { - "name": "telegram", - "url": "https://t.me/harmony_one" - }, - { - "name": "facebook", - "url": "https://facebook.com/harmonyoneprotocol/" - } - ] -} \ No newline at end of file diff --git a/blockchains/cronos/assets/0xf58988341516DFADE0eaE3710D69083E0Ce75235/info.json b/blockchains/cronos/assets/0xf58988341516DFADE0eaE3710D69083E0Ce75235/info.json new file mode 100644 index 0000000000000..d3d82357314ba --- /dev/null +++ b/blockchains/cronos/assets/0xf58988341516DFADE0eaE3710D69083E0Ce75235/info.json @@ -0,0 +1,41 @@ +{ + "name": "DOVU", + "website": "https://dovu.earth/", + "description": "DOVU is a technology infrastructure provider, powering trusted environmental and carbon digital markets by providing market integrity. The DOVU token serves as the protocol’s utility token, enabling holders to participate and create their own environmental audit trail ecosystems. Token holders can stake their DOVU to earn multiplier rewards, aligning long-term incentives with the protocol’s mission of building reliable carbon markets.", + "explorer": "https://cronos.org/explorer/address/0xf58988341516DFADE0eaE3710D69083E0Ce75235/token-transfers", + "type": "CRC20", + "symbol": "DOVU", + "decimals": 8, + "status": "active", + "id": "0xf58988341516DFADE0eaE3710D69083E0Ce75235", + "tags": [ + "wrapped", + "staking" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/dovuofficial/" + }, + { + "name": "x", + "url": "https://x.com/dovuofficial" + }, + { + "name": "blog", + "url": "https://dovu.earth/en/news/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dovu-earth/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dovu" + }, + { + "name": "youtube", + "url": "https://youtube.com/@DOVUearth" + } + ] +} \ No newline at end of file diff --git a/blockchains/cronos/assets/0xf58988341516DFADE0eaE3710D69083E0Ce75235/logo.png b/blockchains/cronos/assets/0xf58988341516DFADE0eaE3710D69083E0Ce75235/logo.png new file mode 100644 index 0000000000000..cb6c490323d55 Binary files /dev/null and b/blockchains/cronos/assets/0xf58988341516DFADE0eaE3710D69083E0Ce75235/logo.png differ diff --git a/blockchains/cronos/assets/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5/info.json b/blockchains/cronos/assets/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5/info.json deleted file mode 100644 index 9e40082ab4ac3..0000000000000 --- a/blockchains/cronos/assets/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5/info.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "name": "Matic Token", - "symbol": "MATIC", - "type": "CRC20", - "decimals": 18, - "description": "Matic Network is a Layer-2 scaling solution that uses sidechains for off-chain computation while ensuring asset security using the Plasma framework and a decentralized network of Proof-of-Stake (PoS) validators.", - "website": "https://matic.network", - "explorer": "https://cronos.org/explorer/address/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5/token-transfers", - "status": "active", - "id": "0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5", - "links": [ - { - "name": "twitter", - "url": "https://twitter.com/0xPolygon" - }, - { - "name": "telegram", - "url": "https://t.me/polygonofficial" - }, - { - "name": "github", - "url": "https://github.com/maticnetwork/" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/polygon/" - } - ], - "tags": [ - "defi" - ] -} \ No newline at end of file diff --git a/blockchains/cronos/info/info.json b/blockchains/cronos/info/info.json index 67c092d865b07..024f3026300f8 100644 --- a/blockchains/cronos/info/info.json +++ b/blockchains/cronos/info/info.json @@ -10,8 +10,8 @@ "status": "active", "links": [ { - "name": "twitter", - "url": "https://twitter.com/cryptocom" + "name": "x", + "url": "https://x.com/cryptocom" }, { "name": "telegram", @@ -33,4 +33,4 @@ "tags": [ "defi" ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/cronos/info/square_logo.png b/blockchains/cronos/info/square_logo.png new file mode 100644 index 0000000000000..073e3037e0e95 Binary files /dev/null and b/blockchains/cronos/info/square_logo.png differ diff --git a/blockchains/cryptoorg/assets/0x02DCcaf514C98451320a9365C5b46C61d3246ff3/info.json b/blockchains/cryptoorg/assets/0x02DCcaf514C98451320a9365C5b46C61d3246ff3/info.json new file mode 100644 index 0000000000000..962a5206025da --- /dev/null +++ b/blockchains/cryptoorg/assets/0x02DCcaf514C98451320a9365C5b46C61d3246ff3/info.json @@ -0,0 +1,28 @@ +{ + "name": "Dogelon", + "symbol": "ELON", + "type": "CRC20", + "decimals": 18, + "description": "I am Dogelon. Dogelon Mars. Join me and together we'll reach the stars ✨ We want to reach Mars and beyond. However, many of those good people are rugged, or buy scam tokens that can't be sold. For this reason, the Dogelon community pledges to send tokens over time to victims of rugs and scams, so that the worst day of their trading life can be turned into their best. And after some time, they will be able to join us on our regular flights to Mars....", + "website": "https://dogelon.io", + "explorer": "https://crypto.org/explorer/account/0x02DCcaf514C98451320a9365C5b46C61d3246ff3", + "status": "active", + "id": "0x02DCcaf514C98451320a9365C5b46C61d3246ff3", + "links": [ + { + "name": "x", + "url": "https://x.com/dogelonmars" + }, + { + "name": "telegram", + "url": "https://t.me/DogelonMars" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dogelon/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/cronos/assets/0x02DCcaf514C98451320a9365C5b46C61d3246ff3/logo.png b/blockchains/cryptoorg/assets/0x02DCcaf514C98451320a9365C5b46C61d3246ff3/logo.png similarity index 100% rename from blockchains/cronos/assets/0x02DCcaf514C98451320a9365C5b46C61d3246ff3/logo.png rename to blockchains/cryptoorg/assets/0x02DCcaf514C98451320a9365C5b46C61d3246ff3/logo.png diff --git a/blockchains/cryptoorg/assets/0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0/info.json b/blockchains/cryptoorg/assets/0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0/info.json new file mode 100644 index 0000000000000..1c026da5ff216 --- /dev/null +++ b/blockchains/cryptoorg/assets/0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0/info.json @@ -0,0 +1,32 @@ +{ + "name": "ADA", + "symbol": "ADA", + "type": "CRC20", + "decimals": 6, + "description": "Cardano (ADA) is a decentralized platform that will allow complex programmable transfers of value in a secure and scalable fashion. Cardano is built in the secure Haskell programming language.", + "website": "https://crypto.org/", + "explorer": "https://crypto.org/explorer/account/0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0", + "status": "active", + "id": "0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0", + "links": [ + { + "name": "x", + "url": "https://x.com/cardano" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cardano/" + }, + { + "name": "telegram", + "url": "https://t.me/CardanoAnnouncements" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cardano/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/cronos/assets/0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0/logo.png b/blockchains/cryptoorg/assets/0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0/logo.png similarity index 100% rename from blockchains/cronos/assets/0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0/logo.png rename to blockchains/cryptoorg/assets/0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0/logo.png diff --git a/blockchains/cryptoorg/assets/0x63888BaFc5975630E4E5CF50c3845a3250115F64/info.json b/blockchains/cryptoorg/assets/0x63888BaFc5975630E4E5CF50c3845a3250115F64/info.json new file mode 100644 index 0000000000000..282e0764b3176 --- /dev/null +++ b/blockchains/cryptoorg/assets/0x63888BaFc5975630E4E5CF50c3845a3250115F64/info.json @@ -0,0 +1,32 @@ +{ + "name": "Fantom Token", + "symbol": "FTM", + "type": "CRC20", + "decimals": 18, + "description": "Fantom is a high-performance, scalable, customizable, and secure smart-contract platform. It is designed to overcome the limitations of previous generation blockchain platforms. Fantom is permissionless, decentralized, and open-source.", + "website": "http://fantom.foundation", + "explorer": "https://crypto.org/explorer/account/0x63888BaFc5975630E4E5CF50c3845a3250115F64", + "status": "active", + "id": "0x63888BaFc5975630E4E5CF50c3845a3250115F64", + "links": [ + { + "name": "x", + "url": "https://x.com/FantomFDN" + }, + { + "name": "telegram", + "url": "https://t.me/Fantom_English" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/fantom/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fantom/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/cronos/assets/0x63888BaFc5975630E4E5CF50c3845a3250115F64/logo.png b/blockchains/cryptoorg/assets/0x63888BaFc5975630E4E5CF50c3845a3250115F64/logo.png similarity index 100% rename from blockchains/cronos/assets/0x63888BaFc5975630E4E5CF50c3845a3250115F64/logo.png rename to blockchains/cryptoorg/assets/0x63888BaFc5975630E4E5CF50c3845a3250115F64/logo.png diff --git a/blockchains/cryptoorg/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/info.json b/blockchains/cryptoorg/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/info.json new file mode 100644 index 0000000000000..ea8944416b219 --- /dev/null +++ b/blockchains/cryptoorg/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/info.json @@ -0,0 +1,28 @@ +{ + "name": "Tether USD", + "symbol": "USDT", + "type": "CRC20", + "decimals": 6, + "description": "Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.", + "website": "https://crypto.org/", + "explorer": "https://crypto.org/explorer/account/0x66e428c3f67a68878562e79A0234c1F83c208770", + "status": "active", + "id": "0x66e428c3f67a68878562e79A0234c1F83c208770", + "links": [ + { + "name": "x", + "url": "https://x.com/Tether_to" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/tether/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tether/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/cronos/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/logo.png b/blockchains/cryptoorg/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/logo.png similarity index 100% rename from blockchains/cronos/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/logo.png rename to blockchains/cryptoorg/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/logo.png diff --git a/blockchains/cryptoorg/assets/0x7d54F4E05f273a9317f723997612Ed64eF53C900/info.json b/blockchains/cryptoorg/assets/0x7d54F4E05f273a9317f723997612Ed64eF53C900/info.json new file mode 100644 index 0000000000000..34bae815f2e4e --- /dev/null +++ b/blockchains/cryptoorg/assets/0x7d54F4E05f273a9317f723997612Ed64eF53C900/info.json @@ -0,0 +1,45 @@ +{ + "name": "Quant", + "symbol": "QNT", + "type": "CRC20", + "decimals": 18, + "description": "The Quant Network team developed Quant as a cryptocurrency token based on the Ethereum blockchain. The solutions offered by Quant include Overledger OS and GoVerify.", + "website": "https://quant.network", + "explorer": "https://crypto.org/explorer/account/0x7d54F4E05f273a9317f723997612Ed64eF53C900", + "status": "active", + "id": "0x7d54F4E05f273a9317f723997612Ed64eF53C900", + "links": [ + { + "name": "github", + "url": "https://github.com/quantnetwork" + }, + { + "name": "x", + "url": "https://x.com/quant_network" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/QuantNetwork/" + }, + { + "name": "blog", + "url": "https://medium.com/@quant_network" + }, + { + "name": "facebook", + "url": "https://facebook.com/quantnetwork" + }, + { + "name": "telegram", + "url": "https://t.me/quantnetworkannouncements" + }, + { + "name": "whitepaper", + "url": "https://files.quant.network/files.quant.network/Quant_Overledger_Whitepaper_v0.1.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/quant-network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/cronos/assets/0x7d54F4E05f273a9317f723997612Ed64eF53C900/logo.png b/blockchains/cryptoorg/assets/0x7d54F4E05f273a9317f723997612Ed64eF53C900/logo.png similarity index 100% rename from blockchains/cronos/assets/0x7d54F4E05f273a9317f723997612Ed64eF53C900/logo.png rename to blockchains/cryptoorg/assets/0x7d54F4E05f273a9317f723997612Ed64eF53C900/logo.png diff --git a/blockchains/cryptoorg/assets/0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9/info.json b/blockchains/cryptoorg/assets/0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9/info.json new file mode 100644 index 0000000000000..ab191e68cbab0 --- /dev/null +++ b/blockchains/cryptoorg/assets/0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9/info.json @@ -0,0 +1,32 @@ +{ + "name": "Chainlink", + "symbol": "LINK", + "type": "CRC20", + "decimals": 18, + "description": "Chainlink is a decentralized oracle service, which aims to connect smart contracts with data from the real world. Oracles are needed to function as data feeds in smart contracts. Oracles provide external data (e.g. temperature, weather) that can drive smart contract executions. Participants on the network are incentivized (through rewards) to provide smart contracts with access to external data feeds.", + "website": "https://chain.link", + "explorer": "https://crypto.org/explorer/account/0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9", + "status": "active", + "id": "0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9", + "links": [ + { + "name": "github", + "url": "https://github.com/smartcontractkit/chainlink" + }, + { + "name": "x", + "url": "https://x.com/chainlink" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/chainlink" + }, + { + "name": "whitepaper", + "url": "https://link.smartcontract.com/whitepaper" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/cryptoorg/assets/0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9/logo.png b/blockchains/cryptoorg/assets/0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9/logo.png new file mode 100644 index 0000000000000..ab55f5e21fae2 Binary files /dev/null and b/blockchains/cryptoorg/assets/0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9/logo.png differ diff --git a/blockchains/cryptoorg/assets/0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a/info.json b/blockchains/cryptoorg/assets/0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a/info.json new file mode 100644 index 0000000000000..dab6e50360df6 --- /dev/null +++ b/blockchains/cryptoorg/assets/0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a/info.json @@ -0,0 +1,33 @@ +{ + "name": "DappRadar", + "symbol": "RADAR", + "type": "CRC20", + "decimals": 18, + "description": "DappRadar aims to be one of the leading global NFT & DeFi DAPP store.", + "website": "https://dappradar.com/", + "explorer": "https://crypto.org/explorer/account/0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a", + "status": "active", + "id": "0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a", + "links": [ + { + "name": "github", + "url": "https://github.com/dappradar" + }, + { + "name": "x", + "url": "https://x.com/dappradar" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dappradar/" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/GdhNjQ8PMhCZ_a0CZutmXg" + } + ], + "tags": [ + "nft", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/cronos/assets/0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a/logo.png b/blockchains/cryptoorg/assets/0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a/logo.png similarity index 100% rename from blockchains/cronos/assets/0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a/logo.png rename to blockchains/cryptoorg/assets/0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a/logo.png diff --git a/blockchains/cryptoorg/assets/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee/info.json b/blockchains/cryptoorg/assets/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee/info.json new file mode 100644 index 0000000000000..2ce4c6eb2db1f --- /dev/null +++ b/blockchains/cryptoorg/assets/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee/info.json @@ -0,0 +1,29 @@ +{ + "name": "SHIBA INU", + "symbol": "SHIB", + "type": "CRC20", + "decimals": 18, + "description": "According to SHIBA INU, the reasoning behind the creation of SHIBA is that Shibas constantly forget where they bury their treasure.", + "website": "https://shibatoken.com/", + "explorer": "https://crypto.org/explorer/account/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee", + "status": "active", + "id": "0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee", + "links": [ + { + "name": "telegram", + "url": "https://t.me/shibainuthedogecoinkiller" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shiba-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/shiba-inu/" + } + ], + "tags": [ + "deflationary", + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/cronos/assets/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee/logo.png b/blockchains/cryptoorg/assets/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee/logo.png similarity index 100% rename from blockchains/cronos/assets/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee/logo.png rename to blockchains/cryptoorg/assets/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee/logo.png diff --git a/blockchains/cryptoorg/assets/0xe44Fd7fCb2b1581822D0c862B68222998a0c299a/info.json b/blockchains/cryptoorg/assets/0xe44Fd7fCb2b1581822D0c862B68222998a0c299a/info.json new file mode 100644 index 0000000000000..1f3ce7b4c1ea6 --- /dev/null +++ b/blockchains/cryptoorg/assets/0xe44Fd7fCb2b1581822D0c862B68222998a0c299a/info.json @@ -0,0 +1,32 @@ +{ + "name": "Wrapped Ether", + "symbol": "WETH", + "type": "CRC20", + "decimals": 18, + "description": "wETH is 'wrapped ETH'", + "website": "https://weth.io/", + "explorer": "https://crypto.org/explorer/account/0xe44Fd7fCb2b1581822D0c862B68222998a0c299a", + "status": "active", + "id": "0xe44Fd7fCb2b1581822D0c862B68222998a0c299a", + "links": [ + { + "name": "x", + "url": "https://x.com/radarrelay?lang=en" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/weth/" + }, + { + "name": "telegram", + "url": "https://t.me/radar_relay" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/weth/" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/cronos/assets/0xe44Fd7fCb2b1581822D0c862B68222998a0c299a/logo.png b/blockchains/cryptoorg/assets/0xe44Fd7fCb2b1581822D0c862B68222998a0c299a/logo.png similarity index 100% rename from blockchains/cronos/assets/0xe44Fd7fCb2b1581822D0c862B68222998a0c299a/logo.png rename to blockchains/cryptoorg/assets/0xe44Fd7fCb2b1581822D0c862B68222998a0c299a/logo.png diff --git a/blockchains/cryptoorg/assets/0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341/info.json b/blockchains/cryptoorg/assets/0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341/info.json new file mode 100644 index 0000000000000..ae0e9b98d2bfe --- /dev/null +++ b/blockchains/cryptoorg/assets/0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341/info.json @@ -0,0 +1,25 @@ +{ + "name": "ONE", + "symbol": "ONE", + "type": "CRC20", + "decimals": 18, + "description": "Harmony is an open and fast blockchain. Our mainnet runs Ethereum applications with 2-second transaction finality and 100 times lower fees.", + "website": "https://www.harmony.one", + "explorer": "https://crypto.org/explorer/account/0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341", + "status": "active", + "id": "0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341", + "links": [ + { + "name": "x", + "url": "https://x.com/harmonyprotocol" + }, + { + "name": "telegram", + "url": "https://t.me/harmony_one" + }, + { + "name": "facebook", + "url": "https://facebook.com/harmonyoneprotocol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/cronos/assets/0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341/logo.png b/blockchains/cryptoorg/assets/0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341/logo.png similarity index 100% rename from blockchains/cronos/assets/0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341/logo.png rename to blockchains/cryptoorg/assets/0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341/logo.png diff --git a/blockchains/cryptoorg/assets/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5/info.json b/blockchains/cryptoorg/assets/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5/info.json new file mode 100644 index 0000000000000..422f22cd7a3d0 --- /dev/null +++ b/blockchains/cryptoorg/assets/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5/info.json @@ -0,0 +1,32 @@ +{ + "name": "Matic Token", + "symbol": "MATIC", + "type": "CRC20", + "decimals": 18, + "description": "Matic Network is a Layer-2 scaling solution that uses sidechains for off-chain computation while ensuring asset security using the Plasma framework and a decentralized network of Proof-of-Stake (PoS) validators.", + "website": "https://matic.network", + "explorer": "https://crypto.org/explorer/account/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5", + "status": "active", + "id": "0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5", + "links": [ + { + "name": "x", + "url": "https://x.com/0xPolygon" + }, + { + "name": "telegram", + "url": "https://t.me/polygonofficial" + }, + { + "name": "github", + "url": "https://github.com/maticnetwork/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/polygon/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/cronos/assets/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5/logo.png b/blockchains/cryptoorg/assets/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5/logo.png similarity index 100% rename from blockchains/cronos/assets/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5/logo.png rename to blockchains/cryptoorg/assets/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5/logo.png diff --git a/blockchains/cryptoorg/info/info.json b/blockchains/cryptoorg/info/info.json index 4164e73637773..5874ab19a197b 100644 --- a/blockchains/cryptoorg/info/info.json +++ b/blockchains/cryptoorg/info/info.json @@ -16,8 +16,8 @@ "url": "https://github.com/crypto-org-chain" }, { - "name": "twitter", - "url": "https://twitter.com/cryptocom" + "name": "x", + "url": "https://x.com/cryptocom" }, { "name": "reddit", @@ -28,4 +28,4 @@ "url": "https://crypto.org/chain_whitepaper.pdf" } ] -} +} \ No newline at end of file diff --git a/blockchains/cryptoorg/info/logo.png b/blockchains/cryptoorg/info/logo.png index ae4b44e694528..08d6bd8efb35b 100644 Binary files a/blockchains/cryptoorg/info/logo.png and b/blockchains/cryptoorg/info/logo.png differ diff --git a/blockchains/cryptoorg/info/square_logo.png b/blockchains/cryptoorg/info/square_logo.png new file mode 100644 index 0000000000000..b6379e9dc4001 Binary files /dev/null and b/blockchains/cryptoorg/info/square_logo.png differ diff --git a/blockchains/cryptoorg/validators/assets/crocncl1398htakkpn2esmp3czjs548ujj5278xmxw2tyj/logo.png b/blockchains/cryptoorg/validators/assets/crocncl1398htakkpn2esmp3czjs548ujj5278xmxw2tyj/logo.png new file mode 100644 index 0000000000000..9f0f2ffb1580b Binary files /dev/null and b/blockchains/cryptoorg/validators/assets/crocncl1398htakkpn2esmp3czjs548ujj5278xmxw2tyj/logo.png differ diff --git a/blockchains/cryptoorg/validators/assets/crocncl18nc2zx5rs7jwm7dwk5gvelul2wer8zfykfmg8h/logo.png b/blockchains/cryptoorg/validators/assets/crocncl18nc2zx5rs7jwm7dwk5gvelul2wer8zfykfmg8h/logo.png new file mode 100644 index 0000000000000..eaf66cb5cbb1f Binary files /dev/null and b/blockchains/cryptoorg/validators/assets/crocncl18nc2zx5rs7jwm7dwk5gvelul2wer8zfykfmg8h/logo.png differ diff --git a/blockchains/cryptoorg/validators/assets/crocncl1td4trxpsa3992sqh70erxyeuyjdxdce2kmuzrt/logo.png b/blockchains/cryptoorg/validators/assets/crocncl1td4trxpsa3992sqh70erxyeuyjdxdce2kmuzrt/logo.png new file mode 100644 index 0000000000000..4169fbd4c6092 Binary files /dev/null and b/blockchains/cryptoorg/validators/assets/crocncl1td4trxpsa3992sqh70erxyeuyjdxdce2kmuzrt/logo.png differ diff --git a/blockchains/cryptoorg/validators/assets/crocncl1tkev46yqrjzrjzrqtty30ex68eja2zcltyq2vj/logo.png b/blockchains/cryptoorg/validators/assets/crocncl1tkev46yqrjzrjzrqtty30ex68eja2zcltyq2vj/logo.png new file mode 100644 index 0000000000000..0f6305d87f6e5 Binary files /dev/null and b/blockchains/cryptoorg/validators/assets/crocncl1tkev46yqrjzrjzrqtty30ex68eja2zcltyq2vj/logo.png differ diff --git a/blockchains/cryptoorg/validators/assets/crocncl1u5ryf5jwc2jhd9xyvmasfqzacxp03v8dcj8xry/logo.png b/blockchains/cryptoorg/validators/assets/crocncl1u5ryf5jwc2jhd9xyvmasfqzacxp03v8dcj8xry/logo.png new file mode 100644 index 0000000000000..5870da0bcc758 Binary files /dev/null and b/blockchains/cryptoorg/validators/assets/crocncl1u5ryf5jwc2jhd9xyvmasfqzacxp03v8dcj8xry/logo.png differ diff --git a/blockchains/cryptoorg/validators/assets/crocncl1up72gll847cqf5wrdedp66pklvpmqxcctr63nh/logo.png b/blockchains/cryptoorg/validators/assets/crocncl1up72gll847cqf5wrdedp66pklvpmqxcctr63nh/logo.png new file mode 100644 index 0000000000000..b2402257153de Binary files /dev/null and b/blockchains/cryptoorg/validators/assets/crocncl1up72gll847cqf5wrdedp66pklvpmqxcctr63nh/logo.png differ diff --git a/blockchains/cryptoorg/validators/assets/crocncl1vk5zc056nfngucy69eyveupytkhkr2ya3yj9r0/logo.png b/blockchains/cryptoorg/validators/assets/crocncl1vk5zc056nfngucy69eyveupytkhkr2ya3yj9r0/logo.png new file mode 100644 index 0000000000000..cae8c0bcf8dd9 Binary files /dev/null and b/blockchains/cryptoorg/validators/assets/crocncl1vk5zc056nfngucy69eyveupytkhkr2ya3yj9r0/logo.png differ diff --git a/blockchains/cryptoorg/validators/assets/crocncl1yr3pm394j5yz3zsz5gjc28eqhvnre9389seafz/logo.png b/blockchains/cryptoorg/validators/assets/crocncl1yr3pm394j5yz3zsz5gjc28eqhvnre9389seafz/logo.png new file mode 100644 index 0000000000000..40d99e260a31d Binary files /dev/null and b/blockchains/cryptoorg/validators/assets/crocncl1yr3pm394j5yz3zsz5gjc28eqhvnre9389seafz/logo.png differ diff --git a/blockchains/cryptoorg/validators/list.json b/blockchains/cryptoorg/validators/list.json new file mode 100644 index 0000000000000..78c9a408667a6 --- /dev/null +++ b/blockchains/cryptoorg/validators/list.json @@ -0,0 +1,50 @@ +[ + { + "id": "crocncl1u5ryf5jwc2jhd9xyvmasfqzacxp03v8dcj8xry", + "name": "Allnodes.com ⚡️ Auto-compound (Ledger or Keplr)", + "description": "A non-custodial platform where you can host Masternodes, Validator Nodes, Super Nodes, Sentry Nodes, Full Nodes, and partake in Staking in over 70 protocols.", + "website": "https://www.allnodes.com" + }, + { + "id": "crocncl1yr3pm394j5yz3zsz5gjc28eqhvnre9389seafz", + "name": "Crypto.bzh", + "description": "Here is the address to use to delegate your funds (staking) on ​​the Crypto.bzh validator.", + "website": "https://crypto.bzh" + }, + { + "id": "crocncl1up72gll847cqf5wrdedp66pklvpmqxcctr63nh", + "name": "nebkas.ro", + "description": "The company is a limited liability company, incorporated and functioning according to Romanian laws.", + "website": "https://nebkas.ro" + }, + { + "id": "crocncl1td4trxpsa3992sqh70erxyeuyjdxdce2kmuzrt", + "name": "Veno.finance", + "description": "Earn more rewards with Veno! Boost extra APY with our ecosystem partners!", + "website": "https://veno.finance" + }, + { + "id": "crocncl1vk5zc056nfngucy69eyveupytkhkr2ya3yj9r0", + "name": "Making.cash", + "description": "Validator on Celo, Solana, Certik, Dock, Regen and more", + "website": "https://making.cash" + }, + { + "id": "crocncl18nc2zx5rs7jwm7dwk5gvelul2wer8zfykfmg8h", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com" + }, + { + "id": "crocncl1398htakkpn2esmp3czjs548ujj5278xmxw2tyj", + "name": "Kingstaker", + "description": "Reliable and experienced EU validator. Just the minimum commission is charged to cover infrastructure cost. Thank you for staking with us!", + "website": "https://kingstaker.com" + }, + { + "id": "crocncl1tkev46yqrjzrjzrqtty30ex68eja2zcltyq2vj", + "name": "Stakely.io", + "description": "🔥 Professional validator highly experienced in PoS 🔥 Slashing protection & Eligible for airdrops | Learn with our staking guides, video tutorials and FAQs | Part of the commission of our nodes will go to our Multicoin Faucet funds and other tools 🌱 Carbon Neutral 🌱", + "website": "https://stakely.io" + } +] diff --git a/blockchains/dash/info/info.json b/blockchains/dash/info/info.json index 910d0d0f22946..a3aad8cd3d592 100644 --- a/blockchains/dash/info/info.json +++ b/blockchains/dash/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/dashpay/dash" }, { - "name": "twitter", - "url": "https://twitter.com/Dashpay" + "name": "x", + "url": "https://x.com/Dashpay" }, { "name": "reddit", diff --git a/blockchains/dash/info/square_logo.png b/blockchains/dash/info/square_logo.png new file mode 100644 index 0000000000000..78d6a43ab4a0c Binary files /dev/null and b/blockchains/dash/info/square_logo.png differ diff --git a/blockchains/decred/info/info.json b/blockchains/decred/info/info.json index a4787db6c3184..77a7736f64575 100644 --- a/blockchains/decred/info/info.json +++ b/blockchains/decred/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/decred" }, { - "name": "twitter", - "url": "https://twitter.com/decredproject" + "name": "x", + "url": "https://x.com/decredproject" }, { "name": "reddit", diff --git a/blockchains/decred/info/square_logo.png b/blockchains/decred/info/square_logo.png new file mode 100644 index 0000000000000..72a9bddad8ff5 Binary files /dev/null and b/blockchains/decred/info/square_logo.png differ diff --git a/blockchains/digibyte/info/info.json b/blockchains/digibyte/info/info.json index 8943bde33b5e7..ca8c462ad7e59 100644 --- a/blockchains/digibyte/info/info.json +++ b/blockchains/digibyte/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/DigiByte-Core" }, { - "name": "twitter", - "url": "https://twitter.com/DigiByteCoin" + "name": "x", + "url": "https://x.com/DigiByteCoin" }, { "name": "reddit", diff --git a/blockchains/digibyte/info/square_logo.png b/blockchains/digibyte/info/square_logo.png new file mode 100644 index 0000000000000..d8f93cf4e12fd Binary files /dev/null and b/blockchains/digibyte/info/square_logo.png differ diff --git a/blockchains/doge/info/info.json b/blockchains/doge/info/info.json index cc43aebb03db1..a8e71ce626fa8 100644 --- a/blockchains/doge/info/info.json +++ b/blockchains/doge/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/dogecoin/dogecoin" }, { - "name": "twitter", - "url": "https://twitter.com/dogecoin" + "name": "x", + "url": "https://x.com/dogecoin" }, { "name": "reddit", diff --git a/blockchains/doge/info/square_logo.png b/blockchains/doge/info/square_logo.png new file mode 100644 index 0000000000000..9f14a04a9ed4f Binary files /dev/null and b/blockchains/doge/info/square_logo.png differ diff --git a/blockchains/ecash/info/info.json b/blockchains/ecash/info/info.json index 6cab1d1b2df65..6d76bf60eee5e 100644 --- a/blockchains/ecash/info/info.json +++ b/blockchains/ecash/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Bitcoin-ABC/bitcoin-abc" }, { - "name": "twitter", - "url": "https://twitter.com/eCashOfficial" + "name": "x", + "url": "https://x.com/eCashOfficial" }, { "name": "reddit", diff --git a/blockchains/ecash/info/square_logo.png b/blockchains/ecash/info/square_logo.png new file mode 100644 index 0000000000000..ded1d833a05cc Binary files /dev/null and b/blockchains/ecash/info/square_logo.png differ diff --git a/blockchains/ellaism/info/info.json b/blockchains/ellaism/info/info.json index 0fc2a0e903fc4..1c25220eeea33 100644 --- a/blockchains/ellaism/info/info.json +++ b/blockchains/ellaism/info/info.json @@ -13,8 +13,8 @@ "url": "https://github.com/ellaism" }, { - "name": "twitter", - "url": "https://twitter.com/ellaismproject" + "name": "x", + "url": "https://x.com/ellaismproject" }, { "name": "reddit", diff --git a/blockchains/ellaism/info/square_logo.png b/blockchains/ellaism/info/square_logo.png new file mode 100644 index 0000000000000..51e3db191fb49 Binary files /dev/null and b/blockchains/ellaism/info/square_logo.png differ diff --git a/blockchains/elrond/assets/ASH-a642d1/info.json b/blockchains/elrond/assets/ASH-a642d1/info.json index fc55783dd782d..df01096899df8 100644 --- a/blockchains/elrond/assets/ASH-a642d1/info.json +++ b/blockchains/elrond/assets/ASH-a642d1/info.json @@ -14,8 +14,8 @@ "url": "https://medium.com/@ashswap" }, { - "name": "twitter", - "url": "https://twitter.com/ash_swap" + "name": "x", + "url": "https://x.com/ash_swap" }, { "name": "whitepaper", @@ -41,4 +41,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/elrond/assets/ASHWEGLD-38545c/info.json b/blockchains/elrond/assets/ASHWEGLD-38545c/info.json index e5b3b5d39f982..c6b7044fa6ece 100644 --- a/blockchains/elrond/assets/ASHWEGLD-38545c/info.json +++ b/blockchains/elrond/assets/ASHWEGLD-38545c/info.json @@ -14,8 +14,8 @@ "url": "https://docs.xexchange.com" }, { - "name": "twitter", - "url": "https://twitter.com/xExchangeApp" + "name": "x", + "url": "https://x.com/xExchangeApp" }, { "name": "telegram", @@ -41,4 +41,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/elrond/assets/BHAT-c1fde3/info.json b/blockchains/elrond/assets/BHAT-c1fde3/info.json index f33f3518819fa..ea06ee78e686f 100644 --- a/blockchains/elrond/assets/BHAT-c1fde3/info.json +++ b/blockchains/elrond/assets/BHAT-c1fde3/info.json @@ -14,8 +14,8 @@ "url": "https://bh.network/blog" }, { - "name": "twitter", - "url": "https://twitter.com/BlackHatNetwork" + "name": "x", + "url": "https://x.com/BlackHatNetwork" }, { "name": "whitepaper", @@ -33,4 +33,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/elrond/assets/BHATWEGLD-f45935/info.json b/blockchains/elrond/assets/BHATWEGLD-f45935/info.json index 56316f4b60472..0620dd6e56fd2 100644 --- a/blockchains/elrond/assets/BHATWEGLD-f45935/info.json +++ b/blockchains/elrond/assets/BHATWEGLD-f45935/info.json @@ -14,8 +14,8 @@ "url": "https://docs.xexchange.com" }, { - "name": "twitter", - "url": "https://twitter.com/xExchangeApp" + "name": "x", + "url": "https://x.com/xExchangeApp" }, { "name": "telegram", @@ -41,4 +41,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/elrond/assets/CRT-52decf/info.json b/blockchains/elrond/assets/CRT-52decf/info.json index aa1c18002a695..61937d02a0856 100644 --- a/blockchains/elrond/assets/CRT-52decf/info.json +++ b/blockchains/elrond/assets/CRT-52decf/info.json @@ -14,8 +14,8 @@ "url": "https://blog.cantinaroyale.io" }, { - "name": "twitter", - "url": "https://twitter.com/CantinaRoyale" + "name": "x", + "url": "https://x.com/CantinaRoyale" }, { "name": "whitepaper", @@ -34,4 +34,4 @@ "gamefi", "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/elrond/assets/CRTWEGLD-1fac3f/info.json b/blockchains/elrond/assets/CRTWEGLD-1fac3f/info.json index c6487404523b9..5d7dd3735d163 100644 --- a/blockchains/elrond/assets/CRTWEGLD-1fac3f/info.json +++ b/blockchains/elrond/assets/CRTWEGLD-1fac3f/info.json @@ -14,8 +14,8 @@ "url": "https://docs.xexchange.com" }, { - "name": "twitter", - "url": "https://twitter.com/xExchangeApp" + "name": "x", + "url": "https://x.com/xExchangeApp" }, { "name": "telegram", @@ -41,4 +41,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/elrond/assets/CRU-a5f4aa/info.json b/blockchains/elrond/assets/CRU-a5f4aa/info.json index a1a2ac0537e20..13bb378ed8609 100644 --- a/blockchains/elrond/assets/CRU-a5f4aa/info.json +++ b/blockchains/elrond/assets/CRU-a5f4aa/info.json @@ -10,8 +10,8 @@ "explorer": "https://explorer.multiversx.com/tokens/CRU-a5f4aa", "links": [ { - "name": "twitter", - "url": "https://twitter.com/crustnetwork" + "name": "x", + "url": "https://x.com/crustnetwork" }, { "name": "whitepaper", @@ -29,4 +29,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/elrond/assets/CRUWEGLD-76c269/info.json b/blockchains/elrond/assets/CRUWEGLD-76c269/info.json index 47a45188aa59d..704dfb5f3f1fa 100644 --- a/blockchains/elrond/assets/CRUWEGLD-76c269/info.json +++ b/blockchains/elrond/assets/CRUWEGLD-76c269/info.json @@ -14,8 +14,8 @@ "url": "https://docs.xexchange.com" }, { - "name": "twitter", - "url": "https://twitter.com/xExchangeApp" + "name": "x", + "url": "https://x.com/xExchangeApp" }, { "name": "telegram", @@ -41,4 +41,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/elrond/assets/CYBER-489c1c/info.json b/blockchains/elrond/assets/CYBER-489c1c/info.json index c867ee76288d5..37a369056cd9a 100644 --- a/blockchains/elrond/assets/CYBER-489c1c/info.json +++ b/blockchains/elrond/assets/CYBER-489c1c/info.json @@ -14,8 +14,8 @@ "url": "https://cyberpunkcity.com/news" }, { - "name": "twitter", - "url": "https://twitter.com/cyberpunkcity" + "name": "x", + "url": "https://x.com/cyberpunkcity" }, { "name": "whitepaper", @@ -34,4 +34,4 @@ "governance", "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/elrond/assets/CYBERWEGLD-45a866/info.json b/blockchains/elrond/assets/CYBERWEGLD-45a866/info.json index 4dc1a49f3e3a3..52dcc509ebb60 100644 --- a/blockchains/elrond/assets/CYBERWEGLD-45a866/info.json +++ b/blockchains/elrond/assets/CYBERWEGLD-45a866/info.json @@ -14,8 +14,8 @@ "url": "https://docs.xexchange.com" }, { - "name": "twitter", - "url": "https://twitter.com/xExchangeApp" + "name": "x", + "url": "https://x.com/xExchangeApp" }, { "name": "telegram", @@ -41,4 +41,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/elrond/assets/EGLDMEX-0be9e5/info.json b/blockchains/elrond/assets/EGLDMEX-0be9e5/info.json index 25a311838f20c..43b06ef300324 100644 --- a/blockchains/elrond/assets/EGLDMEX-0be9e5/info.json +++ b/blockchains/elrond/assets/EGLDMEX-0be9e5/info.json @@ -14,8 +14,8 @@ "url": "https://docs.xexchange.com" }, { - "name": "twitter", - "url": "https://twitter.com/xExchangeApp" + "name": "x", + "url": "https://x.com/xExchangeApp" }, { "name": "telegram", @@ -41,4 +41,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/elrond/assets/EGLDMEXF-5bcc57/info.json b/blockchains/elrond/assets/EGLDMEXF-5bcc57/info.json index 22a1afcbde628..7fb2e12d5886a 100644 --- a/blockchains/elrond/assets/EGLDMEXF-5bcc57/info.json +++ b/blockchains/elrond/assets/EGLDMEXF-5bcc57/info.json @@ -14,8 +14,8 @@ "url": "https://docs.maiar.exchange" }, { - "name": "twitter", - "url": "https://twitter.com/MaiarExchange" + "name": "x", + "url": "https://x.com/MaiarExchange" }, { "name": "telegram", diff --git a/blockchains/elrond/assets/EGLDRIDE-7bd51a/info.json b/blockchains/elrond/assets/EGLDRIDE-7bd51a/info.json index 6d12d020226ab..c69fb55a7bde2 100644 --- a/blockchains/elrond/assets/EGLDRIDE-7bd51a/info.json +++ b/blockchains/elrond/assets/EGLDRIDE-7bd51a/info.json @@ -14,8 +14,8 @@ "url": "https://docs.xexchange.com" }, { - "name": "twitter", - "url": "https://twitter.com/xExchangeApp" + "name": "x", + "url": "https://x.com/xExchangeApp" }, { "name": "telegram", @@ -41,4 +41,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/elrond/assets/EGLDUSDC-594e5e/info.json b/blockchains/elrond/assets/EGLDUSDC-594e5e/info.json index 37160ad50cbb9..fd11d4393170d 100644 --- a/blockchains/elrond/assets/EGLDUSDC-594e5e/info.json +++ b/blockchains/elrond/assets/EGLDUSDC-594e5e/info.json @@ -14,8 +14,8 @@ "url": "https://docs.xexchange.com" }, { - "name": "twitter", - "url": "https://twitter.com/xExchangeApp" + "name": "x", + "url": "https://x.com/xExchangeApp" }, { "name": "telegram", @@ -41,4 +41,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/elrond/assets/EGLDUSDCF-8600f8/info.json b/blockchains/elrond/assets/EGLDUSDCF-8600f8/info.json index e4d038926eced..880ceb363a591 100644 --- a/blockchains/elrond/assets/EGLDUSDCF-8600f8/info.json +++ b/blockchains/elrond/assets/EGLDUSDCF-8600f8/info.json @@ -14,8 +14,8 @@ "url": "https://docs.maiar.exchange" }, { - "name": "twitter", - "url": "https://twitter.com/MaiarExchange" + "name": "x", + "url": "https://x.com/MaiarExchange" }, { "name": "telegram", diff --git a/blockchains/elrond/assets/ITHEUM-df6f26/info.json b/blockchains/elrond/assets/ITHEUM-df6f26/info.json index c8482d6f244f8..fb46630fd9d1e 100644 --- a/blockchains/elrond/assets/ITHEUM-df6f26/info.json +++ b/blockchains/elrond/assets/ITHEUM-df6f26/info.json @@ -14,8 +14,8 @@ "url": "https://itheum.medium.com" }, { - "name": "twitter", - "url": "https://twitter.com/itheum" + "name": "x", + "url": "https://x.com/itheum" }, { "name": "whitepaper", @@ -35,4 +35,4 @@ "nft", "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/elrond/assets/ITHWEGLD-1adc53/info.json b/blockchains/elrond/assets/ITHWEGLD-1adc53/info.json index 4b4d66fc2795c..eabb76f94aed6 100644 --- a/blockchains/elrond/assets/ITHWEGLD-1adc53/info.json +++ b/blockchains/elrond/assets/ITHWEGLD-1adc53/info.json @@ -14,8 +14,8 @@ "url": "https://docs.xexchange.com" }, { - "name": "twitter", - "url": "https://twitter.com/xExchangeApp" + "name": "x", + "url": "https://x.com/xExchangeApp" }, { "name": "telegram", @@ -41,4 +41,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/elrond/assets/LKMEX-aab910/info.json b/blockchains/elrond/assets/LKMEX-aab910/info.json index 6b697a7b886d5..0231a25a6a6af 100644 --- a/blockchains/elrond/assets/LKMEX-aab910/info.json +++ b/blockchains/elrond/assets/LKMEX-aab910/info.json @@ -14,8 +14,8 @@ "url": "https://docs.maiar.exchange" }, { - "name": "twitter", - "url": "https://twitter.com/MaiarExchange" + "name": "x", + "url": "https://x.com/MaiarExchange" }, { "name": "telegram", diff --git a/blockchains/elrond/assets/MEX-455c57/info.json b/blockchains/elrond/assets/MEX-455c57/info.json index 8bd1d600c1a92..1703a3992ceed 100644 --- a/blockchains/elrond/assets/MEX-455c57/info.json +++ b/blockchains/elrond/assets/MEX-455c57/info.json @@ -14,8 +14,8 @@ "url": "https://docs.xexchange.com" }, { - "name": "twitter", - "url": "https://twitter.com/xExchangeApp" + "name": "x", + "url": "https://x.com/xExchangeApp" }, { "name": "telegram", @@ -50,4 +50,4 @@ "defi", "governance" ] -} +} \ No newline at end of file diff --git a/blockchains/elrond/assets/MEXFARM-e7af52/info.json b/blockchains/elrond/assets/MEXFARM-e7af52/info.json index 1172f9966ea69..27d972c9c9ed2 100644 --- a/blockchains/elrond/assets/MEXFARM-e7af52/info.json +++ b/blockchains/elrond/assets/MEXFARM-e7af52/info.json @@ -14,8 +14,8 @@ "url": "https://docs.maiar.exchange" }, { - "name": "twitter", - "url": "https://twitter.com/MaiarExchange" + "name": "x", + "url": "https://x.com/MaiarExchange" }, { "name": "telegram", diff --git a/blockchains/elrond/assets/OFE-29eb54/info.json b/blockchains/elrond/assets/OFE-29eb54/info.json index 92c567e6bcf0f..75d4c1c4af74f 100644 --- a/blockchains/elrond/assets/OFE-29eb54/info.json +++ b/blockchains/elrond/assets/OFE-29eb54/info.json @@ -10,8 +10,8 @@ "explorer": "https://explorer.multiversx.com/tokens/OFE-29eb54", "links": [ { - "name": "twitter", - "url": "https://twitter.com/oferonetwork" + "name": "x", + "url": "https://x.com/oferonetwork" }, { "name": "whitepaper", @@ -41,4 +41,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/elrond/assets/QWT-46ac01/info.json b/blockchains/elrond/assets/QWT-46ac01/info.json index a8e4190c2379a..01caf741628c9 100644 --- a/blockchains/elrond/assets/QWT-46ac01/info.json +++ b/blockchains/elrond/assets/QWT-46ac01/info.json @@ -10,8 +10,8 @@ "explorer": "https://explorer.multiversx.com/tokens/QWT-46ac01", "links": [ { - "name": "twitter", - "url": "https://twitter.com/QoWattEcosystem" + "name": "x", + "url": "https://x.com/QoWattEcosystem" }, { "name": "whitepaper", @@ -29,4 +29,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/elrond/assets/QWTWEGLD-3eff55/info.json b/blockchains/elrond/assets/QWTWEGLD-3eff55/info.json index 2b91158462409..667f7b475f124 100644 --- a/blockchains/elrond/assets/QWTWEGLD-3eff55/info.json +++ b/blockchains/elrond/assets/QWTWEGLD-3eff55/info.json @@ -14,8 +14,8 @@ "url": "https://docs.xexchange.com" }, { - "name": "twitter", - "url": "https://twitter.com/xExchangeApp" + "name": "x", + "url": "https://x.com/xExchangeApp" }, { "name": "telegram", @@ -41,4 +41,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/elrond/assets/RIDE-7d18e9/info.json b/blockchains/elrond/assets/RIDE-7d18e9/info.json index 47f60b908bbd1..19cbda102ef7a 100644 --- a/blockchains/elrond/assets/RIDE-7d18e9/info.json +++ b/blockchains/elrond/assets/RIDE-7d18e9/info.json @@ -14,8 +14,8 @@ "url": "https://www.holoride.com/newsroom" }, { - "name": "twitter", - "url": "https://twitter.com/holoride" + "name": "x", + "url": "https://x.com/holoride" }, { "name": "whitepaper", @@ -33,4 +33,4 @@ "tags": [ "governance" ] -} +} \ No newline at end of file diff --git a/blockchains/elrond/assets/SFIT-aebc90/info.json b/blockchains/elrond/assets/SFIT-aebc90/info.json index 90eaf0214c3f6..54549549ab353 100644 --- a/blockchains/elrond/assets/SFIT-aebc90/info.json +++ b/blockchains/elrond/assets/SFIT-aebc90/info.json @@ -10,8 +10,8 @@ "explorer": "https://explorer.multiversx.com/tokens/SFIT-aebc90", "links": [ { - "name": "twitter", - "url": "https://twitter.com/sense4fit" + "name": "x", + "url": "https://x.com/sense4fit" }, { "name": "whitepaper", @@ -33,4 +33,4 @@ "tags": [ "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/elrond/assets/SFITWEGLD-934909/info.json b/blockchains/elrond/assets/SFITWEGLD-934909/info.json index d1e3a86a59143..2b9be06081ded 100644 --- a/blockchains/elrond/assets/SFITWEGLD-934909/info.json +++ b/blockchains/elrond/assets/SFITWEGLD-934909/info.json @@ -14,8 +14,8 @@ "url": "https://docs.xexchange.com" }, { - "name": "twitter", - "url": "https://twitter.com/xExchangeApp" + "name": "x", + "url": "https://x.com/xExchangeApp" }, { "name": "telegram", @@ -41,4 +41,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/elrond/assets/USDC-c76f1f/info.json b/blockchains/elrond/assets/USDC-c76f1f/info.json index 67e4042a1c68e..f34f89cc47da2 100644 --- a/blockchains/elrond/assets/USDC-c76f1f/info.json +++ b/blockchains/elrond/assets/USDC-c76f1f/info.json @@ -1,7 +1,7 @@ { "type": "ESDT", "id": "USDC-c76f1f", - "name": "Wrapped USDC (on MultiversX)", + "name": "USDC", "symbol": "USDC", "decimals": 6, "status": "active", diff --git a/blockchains/elrond/assets/USDT-f8c08c/info.json b/blockchains/elrond/assets/USDT-f8c08c/info.json new file mode 100644 index 0000000000000..5337eaaa473f4 --- /dev/null +++ b/blockchains/elrond/assets/USDT-f8c08c/info.json @@ -0,0 +1,29 @@ +{ + "type": "ESDT", + "id": "USDT-f8c08c", + "name": "Wrapped USDT (on MultiversX)", + "symbol": "USDT", + "decimals": 6, + "status": "active", + "description": "USDT stablecoin originating on Ethereum, bridged as an ESDT token on MultiversX. 1 USDT = 1 Wrapped USDT", + "website": "https://xexchange.com", + "explorer": "https://explorer.multiversx.com/tokens/USDT-f8c08c", + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/tether.to/" + }, + { + "name": "x", + "url": "https://x.com/Tether_to/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tether/" + } + ], + "tags": [ + "stablecoin", + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/elrond/assets/USDT-f8c08c/logo.png b/blockchains/elrond/assets/USDT-f8c08c/logo.png new file mode 100644 index 0000000000000..4b3027306a91c Binary files /dev/null and b/blockchains/elrond/assets/USDT-f8c08c/logo.png differ diff --git a/blockchains/elrond/assets/UTK-2f80e9/info.json b/blockchains/elrond/assets/UTK-2f80e9/info.json index aadbaa9d21659..16e1827c4a728 100644 --- a/blockchains/elrond/assets/UTK-2f80e9/info.json +++ b/blockchains/elrond/assets/UTK-2f80e9/info.json @@ -14,8 +14,8 @@ "url": "https://medium.com/utrust" }, { - "name": "twitter", - "url": "https://twitter.com/utrust" + "name": "x", + "url": "https://x.com/utrust" }, { "name": "coinmarketcap", @@ -29,4 +29,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/elrond/assets/UTKWEGLD-c960d1/info.json b/blockchains/elrond/assets/UTKWEGLD-c960d1/info.json index 414cedcc13dd5..69855ae475234 100644 --- a/blockchains/elrond/assets/UTKWEGLD-c960d1/info.json +++ b/blockchains/elrond/assets/UTKWEGLD-c960d1/info.json @@ -14,8 +14,8 @@ "url": "https://docs.xexchange.com" }, { - "name": "twitter", - "url": "https://twitter.com/xExchangeApp" + "name": "x", + "url": "https://x.com/xExchangeApp" }, { "name": "telegram", @@ -41,4 +41,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/elrond/assets/WEGLD-bd4d79/info.json b/blockchains/elrond/assets/WEGLD-bd4d79/info.json index 4179dce6c23e4..8322bcf5a329a 100644 --- a/blockchains/elrond/assets/WEGLD-bd4d79/info.json +++ b/blockchains/elrond/assets/WEGLD-bd4d79/info.json @@ -14,8 +14,8 @@ "url": "https://docs.multiversx.com" }, { - "name": "twitter", - "url": "https://twitter.com/MultiversX" + "name": "x", + "url": "https://x.com/MultiversX" }, { "name": "telegram", @@ -45,4 +45,4 @@ "tags": [ "wrapped" ] -} +} \ No newline at end of file diff --git a/blockchains/elrond/assets/ZPAY-247875/info.json b/blockchains/elrond/assets/ZPAY-247875/info.json index bcae799bb4b4a..9a0216a7c2a4e 100644 --- a/blockchains/elrond/assets/ZPAY-247875/info.json +++ b/blockchains/elrond/assets/ZPAY-247875/info.json @@ -14,8 +14,8 @@ "url": "https://medium.com/zoidcoin-network" }, { - "name": "twitter", - "url": "https://twitter.com/zoidpay" + "name": "x", + "url": "https://x.com/zoidpay" }, { "name": "whitepaper", @@ -33,4 +33,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/elrond/assets/ZPAYWEGLD-34e5c1/info.json b/blockchains/elrond/assets/ZPAYWEGLD-34e5c1/info.json index 1fb7d488af846..8831aacb653a1 100644 --- a/blockchains/elrond/assets/ZPAYWEGLD-34e5c1/info.json +++ b/blockchains/elrond/assets/ZPAYWEGLD-34e5c1/info.json @@ -14,8 +14,8 @@ "url": "https://docs.xexchange.com" }, { - "name": "twitter", - "url": "https://twitter.com/xExchangeApp" + "name": "x", + "url": "https://x.com/xExchangeApp" }, { "name": "telegram", @@ -41,4 +41,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/elrond/info/info.json b/blockchains/elrond/info/info.json index ffd3e702ab817..89115a5663000 100644 --- a/blockchains/elrond/info/info.json +++ b/blockchains/elrond/info/info.json @@ -18,8 +18,8 @@ "url": "https://github.com/multiversx" }, { - "name": "twitter", - "url": "https://twitter.com/MultiversX" + "name": "x", + "url": "https://x.com/MultiversX" }, { "name": "facebook", @@ -46,4 +46,4 @@ "url": "https://coingecko.com/en/coins/multiversx" } ] -} +} \ No newline at end of file diff --git a/blockchains/elrond/info/square_logo.png b/blockchains/elrond/info/square_logo.png new file mode 100644 index 0000000000000..49a037844cda4 Binary files /dev/null and b/blockchains/elrond/info/square_logo.png differ diff --git a/blockchains/elrond/validators/assets/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqq8hlllls7a6h85/logo.png b/blockchains/elrond/validators/assets/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqq8hlllls7a6h85/logo.png new file mode 100644 index 0000000000000..8b600a18bc912 Binary files /dev/null and b/blockchains/elrond/validators/assets/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqq8hlllls7a6h85/logo.png differ diff --git a/blockchains/elrond/validators/assets/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqq9hllllsz2je7q/logo.png b/blockchains/elrond/validators/assets/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqq9hllllsz2je7q/logo.png new file mode 100644 index 0000000000000..9c3ba8a329627 Binary files /dev/null and b/blockchains/elrond/validators/assets/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqq9hllllsz2je7q/logo.png differ diff --git a/blockchains/elrond/validators/assets/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqhllllsajxzat/logo.png b/blockchains/elrond/validators/assets/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqhllllsajxzat/logo.png new file mode 100644 index 0000000000000..16c9e97d39903 Binary files /dev/null and b/blockchains/elrond/validators/assets/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqhllllsajxzat/logo.png differ diff --git a/blockchains/elrond/validators/assets/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqrhlllls062tu4/logo.png b/blockchains/elrond/validators/assets/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqrhlllls062tu4/logo.png new file mode 100644 index 0000000000000..fa3fa1d2bb8bd Binary files /dev/null and b/blockchains/elrond/validators/assets/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqrhlllls062tu4/logo.png differ diff --git a/blockchains/elrond/validators/assets/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqzhllllsp9wvyl/logo.png b/blockchains/elrond/validators/assets/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqzhllllsp9wvyl/logo.png new file mode 100644 index 0000000000000..27aaddd1e904d Binary files /dev/null and b/blockchains/elrond/validators/assets/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqzhllllsp9wvyl/logo.png differ diff --git a/blockchains/elrond/validators/list.json b/blockchains/elrond/validators/list.json new file mode 100644 index 0000000000000..59717b3fb8555 --- /dev/null +++ b/blockchains/elrond/validators/list.json @@ -0,0 +1,32 @@ +[ + { + "id": "erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqhllllsajxzat", + "name": "Staking Agency", + "description": "The smart way to manage your stakes", + "website": "https://staking.agency/" + }, + { + "id": "erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqq8hlllls7a6h85", + "name": "Meria", + "description": "French Crypto Investment Provider www.meria.com", + "website": "https://meria.com/" + }, + { + "id": "erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqrhlllls062tu4", + "name": "iVerse Vision", + "description": "Next generation Blockchain projects https://t.me/iVerse_Vision_Official", + "website": "https://www.iverse.vision/" + }, + { + "id": "erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqq9hllllsz2je7q", + "name": "PartnerStaking", + "description": "Easiest way to manage your stake using the Partner Staking mobile app: https://partnerstaking.com/mobile", + "website": "https://partnerstaking.com/" + }, + { + "id": "erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqzhllllsp9wvyl", + "name": "Trust Staking", + "description": "Trust Staking, a tech-driven provider on MultiversX, expertly manages private and third-party nodes. We are dedicated to the chain, reinvesting most of our revenues into developing innovative products like XOXNO and supporting various network protocols for blockchain growth.", + "website": "https://truststaking.com/" + } +] diff --git a/blockchains/energyweb/info/info.json b/blockchains/energyweb/info/info.json index 303c01db3e387..aa624c6c70498 100644 --- a/blockchains/energyweb/info/info.json +++ b/blockchains/energyweb/info/info.json @@ -13,8 +13,8 @@ "url": "https://github.com/energywebfoundation" }, { - "name": "twitter", - "url": "https://twitter.com/energywebx" + "name": "x", + "url": "https://x.com/energywebx" }, { "name": "reddit", diff --git a/blockchains/energyweb/info/square_logo.png b/blockchains/energyweb/info/square_logo.png new file mode 100644 index 0000000000000..377416ad3babb Binary files /dev/null and b/blockchains/energyweb/info/square_logo.png differ diff --git a/blockchains/eos/info/info.json b/blockchains/eos/info/info.json index 714a27ddfdf93..140ee4ea0f0e4 100644 --- a/blockchains/eos/info/info.json +++ b/blockchains/eos/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/eosio" }, { - "name": "twitter", - "url": "https://twitter.com/block_one_" + "name": "x", + "url": "https://x.com/block_one_" }, { "name": "reddit", diff --git a/blockchains/eos/info/square_logo.png b/blockchains/eos/info/square_logo.png new file mode 100644 index 0000000000000..5b1e1439c3503 Binary files /dev/null and b/blockchains/eos/info/square_logo.png differ diff --git a/blockchains/ether-1/info/info.json b/blockchains/ether-1/info/info.json index 7febc46753656..27290edd5582a 100644 --- a/blockchains/ether-1/info/info.json +++ b/blockchains/ether-1/info/info.json @@ -13,8 +13,8 @@ "url": "https://github.com/Ether1Project" }, { - "name": "twitter", - "url": "https://twitter.com/Ether1Official" + "name": "x", + "url": "https://x.com/Ether1Official" }, { "name": "reddit", diff --git a/blockchains/ether-1/info/square_logo.png b/blockchains/ether-1/info/square_logo.png new file mode 100644 index 0000000000000..793f7b4a3944e Binary files /dev/null and b/blockchains/ether-1/info/square_logo.png differ diff --git a/blockchains/ethereum/assets/0x0000000000085d4780B73119b644AE5ecd22b376/info.json b/blockchains/ethereum/assets/0x0000000000085d4780B73119b644AE5ecd22b376/info.json index a9dd0a9728e93..da136e4a01f4a 100644 --- a/blockchains/ethereum/assets/0x0000000000085d4780B73119b644AE5ecd22b376/info.json +++ b/blockchains/ethereum/assets/0x0000000000085d4780B73119b644AE5ecd22b376/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/trusttoken/TrueUSD" }, { - "name": "twitter", - "url": "https://twitter.com/tusd_official" + "name": "x", + "url": "https://x.com/tusd_official" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x0000000000095413afC295d19EDeb1Ad7B71c952/info.json b/blockchains/ethereum/assets/0x0000000000095413afC295d19EDeb1Ad7B71c952/info.json index a71db2b806529..64762b54105a6 100644 --- a/blockchains/ethereum/assets/0x0000000000095413afC295d19EDeb1Ad7B71c952/info.json +++ b/blockchains/ethereum/assets/0x0000000000095413afC295d19EDeb1Ad7B71c952/info.json @@ -10,8 +10,8 @@ "id": "0x0000000000095413afC295d19EDeb1Ad7B71c952", "links": [ { - "name": "twitter", - "url": "https://twitter.com/tokenlon" + "name": "x", + "url": "https://x.com/tokenlon" }, { "name": "discord", diff --git a/blockchains/ethereum/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/info.json b/blockchains/ethereum/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/info.json new file mode 100644 index 0000000000000..619cedae631d6 --- /dev/null +++ b/blockchains/ethereum/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/info.json @@ -0,0 +1,14 @@ +{ + "name": "AUSD", + "type": "ERC20", + "symbol": "AUSD", + "decimals": 6, + "website": "https://www.agora.finance/", + "description": "AUSD is a safe, secure asset that enables billions of dollars of transfers and is used globally.", + "explorer": "https://etherscan.io/token/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a", + "status": "active", + "id": "0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a", + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/logo.png b/blockchains/ethereum/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/logo.png new file mode 100644 index 0000000000000..b41ffbfbb87a1 Binary files /dev/null and b/blockchains/ethereum/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/logo.png differ diff --git a/blockchains/ethereum/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json b/blockchains/ethereum/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json new file mode 100644 index 0000000000000..ba7b3c81bc429 --- /dev/null +++ b/blockchains/ethereum/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json @@ -0,0 +1,37 @@ +{ + "name": "USDA", + "website": "https://www.angle.money/", + "description": "USDA is an over-collateralized and decentralized USD stablecoin by the Angle Protocol.", + "explorer": "https://etherscan.io/token/0x0000206329b97DB379d5E1Bf586BbDB969C63274", + "type": "ERC20", + "symbol": "USDA", + "decimals": 18, + "status": "active", + "tags": [ + "defi", + "stablecoin" + ], + "id": "0x0000206329b97DB379d5E1Bf586BbDB969C63274", + "links": [ + { + "name": "github", + "url": "https://github.com/AngleProtocol" + }, + { + "name": "x", + "url": "https://x.com/AngleProtocol" + }, + { + "name": "docs", + "url": "https://docs.angle.money" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/angle-usd" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZheVAnFt6h" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/logo.png b/blockchains/ethereum/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/logo.png new file mode 100644 index 0000000000000..759db2e96cc84 Binary files /dev/null and b/blockchains/ethereum/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/logo.png differ diff --git a/blockchains/ethereum/assets/0x0001A500A6B18995B03f44bb040A5fFc28E45CB0/info.json b/blockchains/ethereum/assets/0x0001A500A6B18995B03f44bb040A5fFc28E45CB0/info.json new file mode 100644 index 0000000000000..8de4606ce0acc --- /dev/null +++ b/blockchains/ethereum/assets/0x0001A500A6B18995B03f44bb040A5fFc28E45CB0/info.json @@ -0,0 +1,21 @@ +{ + "name": "Autonolas", + "type": "ERC20", + "symbol": "OLAS", + "decimals": 18, + "website": "https://olas.network/", + "description": "A unified network of off-chain services – like automation, oracles, and co-owned AI. Autonolas offers a composable stack for building these services, and a protocol for incentivizing their creation. Autonolas enables operating these services in a co-owned and decentralized way.", + "explorer": "https://etherscan.io/token/0x0001a500a6b18995b03f44bb040a5ffc28e45cb0", + "status": "active", + "id": "0x0001A500A6B18995B03f44bb040A5fFc28E45CB0", + "links": [ + { + "name": "x", + "url": "https://x.com/autonolas" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/autonolas/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0001A500A6B18995B03f44bb040A5fFc28E45CB0/logo.png b/blockchains/ethereum/assets/0x0001A500A6B18995B03f44bb040A5fFc28E45CB0/logo.png new file mode 100644 index 0000000000000..a54c184518b08 Binary files /dev/null and b/blockchains/ethereum/assets/0x0001A500A6B18995B03f44bb040A5fFc28E45CB0/logo.png differ diff --git a/blockchains/ethereum/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/info.json b/blockchains/ethereum/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/info.json new file mode 100644 index 0000000000000..f00a95dbf45b8 --- /dev/null +++ b/blockchains/ethereum/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/info.json @@ -0,0 +1,37 @@ +{ + "name": "Staked USDA", + "website": "https://www.angle.money/", + "description": "stUSD is a USD savings solution built on top of USDA by the Angle Protocol", + "explorer": "https://etherscan.io/token/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776", + "type": "ERC20", + "symbol": "stUSD", + "decimals": 18, + "status": "active", + "tags": [ + "defi", + "stablecoin" + ], + "id": "0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776", + "links": [ + { + "name": "github", + "url": "https://github.com/AngleProtocol" + }, + { + "name": "x", + "url": "https://x.com/AngleProtocol" + }, + { + "name": "docs", + "url": "https://docs.angle.money" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/angle-staked-agusd" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZheVAnFt6h" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/logo.png b/blockchains/ethereum/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/logo.png new file mode 100644 index 0000000000000..a0fd0bd217403 Binary files /dev/null and b/blockchains/ethereum/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/logo.png differ diff --git a/blockchains/ethereum/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/info.json b/blockchains/ethereum/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/info.json new file mode 100644 index 0000000000000..64cb969cf972a --- /dev/null +++ b/blockchains/ethereum/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/info.json @@ -0,0 +1,37 @@ +{ + "name": "Staked EURA", + "website": "https://www.angle.money/", + "description": "stEUR is a Euro savings solution built on top of EURA by the Angle Protocol.", + "explorer": "https://etherscan.io/token/0x004626A008B1aCdC4c74ab51644093b155e59A23", + "type": "ERC20", + "symbol": "stEUR", + "decimals": 18, + "status": "active", + "tags": [ + "defi", + "stablecoin" + ], + "id": "0x004626A008B1aCdC4c74ab51644093b155e59A23", + "links": [ + { + "name": "github", + "url": "https://github.com/AngleProtocol" + }, + { + "name": "x", + "url": "https://x.com/AngleProtocol" + }, + { + "name": "docs", + "url": "https://docs.angle.money" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/staked-ageur" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZheVAnFt6h" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/logo.png b/blockchains/ethereum/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/logo.png new file mode 100644 index 0000000000000..dbf1b94234fc1 Binary files /dev/null and b/blockchains/ethereum/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/logo.png differ diff --git a/blockchains/ethereum/assets/0x005D1123878Fc55fbd56b54C73963b234a64af3c/info.json b/blockchains/ethereum/assets/0x005D1123878Fc55fbd56b54C73963b234a64af3c/info.json index 21ecd8c8326c1..3939ee40ac800 100644 --- a/blockchains/ethereum/assets/0x005D1123878Fc55fbd56b54C73963b234a64af3c/info.json +++ b/blockchains/ethereum/assets/0x005D1123878Fc55fbd56b54C73963b234a64af3c/info.json @@ -10,8 +10,8 @@ "id": "0x005D1123878Fc55fbd56b54C73963b234a64af3c", "links": [ { - "name": "twitter", - "url": "https://twitter.com/kibainukiba" + "name": "x", + "url": "https://x.com/kibainukiba" }, { "name": "coinmarketcap", @@ -25,4 +25,4 @@ "tags": [ "memes" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x00a8b738E453fFd858a7edf03bcCfe20412f0Eb0/info.json b/blockchains/ethereum/assets/0x00a8b738E453fFd858a7edf03bcCfe20412f0Eb0/info.json index 2561aff5b596c..fd3e89053a229 100644 --- a/blockchains/ethereum/assets/0x00a8b738E453fFd858a7edf03bcCfe20412f0Eb0/info.json +++ b/blockchains/ethereum/assets/0x00a8b738E453fFd858a7edf03bcCfe20412f0Eb0/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Stichting-AllianceBlock-Foundation/AllianceBlock-Contracts" }, { - "name": "twitter", - "url": "https://twitter.com/allianceblock" + "name": "x", + "url": "https://x.com/allianceblock" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x00c83aeCC790e8a4453e5dD3B0B4b3680501a7A7/info.json b/blockchains/ethereum/assets/0x00c83aeCC790e8a4453e5dD3B0B4b3680501a7A7/info.json index 2003aea268774..18ca7dc9fed66 100644 --- a/blockchains/ethereum/assets/0x00c83aeCC790e8a4453e5dD3B0B4b3680501a7A7/info.json +++ b/blockchains/ethereum/assets/0x00c83aeCC790e8a4453e5dD3B0B4b3680501a7A7/info.json @@ -1,5 +1,5 @@ { - "name": "SKALE Network", + "name": "SKALE", "website": "https://skale.network/", "description": "Skale is an ethereum interoperable elastic blockchain network.", "explorer": "https://etherscan.io/token/0x00c83aeCC790e8a4453e5dD3B0B4b3680501a7A7", diff --git a/blockchains/ethereum/assets/0x018DD3A0Dd7F213cc822076b3800816d3CE1ED86/info.json b/blockchains/ethereum/assets/0x018DD3A0Dd7F213cc822076b3800816d3CE1ED86/info.json new file mode 100644 index 0000000000000..36dcb2c416bfb --- /dev/null +++ b/blockchains/ethereum/assets/0x018DD3A0Dd7F213cc822076b3800816d3CE1ED86/info.json @@ -0,0 +1,21 @@ +{ + "name": "HotKeySwap", + "symbol": "HOTKEY", + "type": "ERC20", + "decimals": 18, + "description": "Welcome to HotKey, your gateway to a revolutionized digital finance landscape. Here, effortless trading fuses with AI-powered insights, all within a cohesive ecosystem designed for the modern crypto enthusiast.", + "website": "https://www.hotkeyswap.com", + "explorer": "https://etherscan.io/token/0x018dd3a0dd7f213cc822076b3800816d3ce1ed86", + "status": "active", + "id": "0x018DD3A0Dd7F213cc822076b3800816d3CE1ED86", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hotkeyswap/" + }, + { + "name": "x", + "url": "https://x.com/HotKeySwap" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x018DD3A0Dd7F213cc822076b3800816d3CE1ED86/logo.png b/blockchains/ethereum/assets/0x018DD3A0Dd7F213cc822076b3800816d3CE1ED86/logo.png new file mode 100644 index 0000000000000..fe412542de68b Binary files /dev/null and b/blockchains/ethereum/assets/0x018DD3A0Dd7F213cc822076b3800816d3CE1ED86/logo.png differ diff --git a/blockchains/ethereum/assets/0x01B19c68f8A9eE3a480dA788ba401cFAbdf19B93/info.json b/blockchains/ethereum/assets/0x01B19c68f8A9eE3a480dA788ba401cFAbdf19B93/info.json new file mode 100644 index 0000000000000..db45e9eec703b --- /dev/null +++ b/blockchains/ethereum/assets/0x01B19c68f8A9eE3a480dA788ba401cFAbdf19B93/info.json @@ -0,0 +1,24 @@ +{ + "name": "Linde plc (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "LINon is the Ondo Tokenized version of Linde plc, giving tokenholders economic exposure similar to holding LIN and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x01B19c68f8A9eE3a480dA788ba401cFAbdf19B93", + "type": "ERC20", + "symbol": "LINon", + "decimals": 18, + "status": "active", + "id": "0x01B19c68f8A9eE3a480dA788ba401cFAbdf19B93", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/linde-plc-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x01B19c68f8A9eE3a480dA788ba401cFAbdf19B93/logo.png b/blockchains/ethereum/assets/0x01B19c68f8A9eE3a480dA788ba401cFAbdf19B93/logo.png new file mode 100644 index 0000000000000..1bc23284155fd Binary files /dev/null and b/blockchains/ethereum/assets/0x01B19c68f8A9eE3a480dA788ba401cFAbdf19B93/logo.png differ diff --git a/blockchains/ethereum/assets/0x01aaC2b594F7bdBeC740F0F1AA22910EbB4B74Ab/info.json b/blockchains/ethereum/assets/0x01aaC2b594F7bdBeC740F0F1AA22910EbB4B74Ab/info.json new file mode 100644 index 0000000000000..2beb644e2836e --- /dev/null +++ b/blockchains/ethereum/assets/0x01aaC2b594F7bdBeC740F0F1AA22910EbB4B74Ab/info.json @@ -0,0 +1,21 @@ +{ + "name": "Unio Coin", + "symbol": "UNIO", + "type": "ERC20", + "decimals": 18, + "description": "UNIO is an ERC-20 token", + "website": "https://uniocoin.io/", + "explorer": "https://etherscan.io/token/0x01aaC2b594F7bdBeC740F0F1AA22910EbB4B74Ab", + "status": "active", + "id": "0x01aaC2b594F7bdBeC740F0F1AA22910EbB4B74Ab", + "links": [ + { + "name": "x", + "url": "https://x.com/unio_coin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/unio-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x01aaC2b594F7bdBeC740F0F1AA22910EbB4B74Ab/logo.png b/blockchains/ethereum/assets/0x01aaC2b594F7bdBeC740F0F1AA22910EbB4B74Ab/logo.png new file mode 100644 index 0000000000000..f4a7fd816d8b8 Binary files /dev/null and b/blockchains/ethereum/assets/0x01aaC2b594F7bdBeC740F0F1AA22910EbB4B74Ab/logo.png differ diff --git a/blockchains/ethereum/assets/0x01e1d7cBD3Bc0EB1030485F33708421011459459/info.json b/blockchains/ethereum/assets/0x01e1d7cBD3Bc0EB1030485F33708421011459459/info.json new file mode 100644 index 0000000000000..53d496cfc6e64 --- /dev/null +++ b/blockchains/ethereum/assets/0x01e1d7cBD3Bc0EB1030485F33708421011459459/info.json @@ -0,0 +1,21 @@ +{ + "name": "TOAD", + "type": "ERC20", + "symbol": "TOAD", + "decimals": 18, + "website": "https://toadtoken.io", + "description": " Meme/Ai/Gaming 🐸 live now on UniSwap!", + "explorer": "https://etherscan.io/token/0x01e1d7cbd3bc0eb1030485f33708421011459459", + "status": "active", + "id": "0x01e1d7cBD3Bc0EB1030485F33708421011459459", + "links": [ + { + "name": "x", + "url": "https://x.com/toad_coin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/toad-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x01e1d7cBD3Bc0EB1030485F33708421011459459/logo.png b/blockchains/ethereum/assets/0x01e1d7cBD3Bc0EB1030485F33708421011459459/logo.png new file mode 100644 index 0000000000000..9535fbe74d3fc Binary files /dev/null and b/blockchains/ethereum/assets/0x01e1d7cBD3Bc0EB1030485F33708421011459459/logo.png differ diff --git a/blockchains/ethereum/assets/0x0202Be363B8a4820f3F4DE7FaF5224fF05943AB1/info.json b/blockchains/ethereum/assets/0x0202Be363B8a4820f3F4DE7FaF5224fF05943AB1/info.json index 043871482de1e..a59ba9b05ac2d 100644 --- a/blockchains/ethereum/assets/0x0202Be363B8a4820f3F4DE7FaF5224fF05943AB1/info.json +++ b/blockchains/ethereum/assets/0x0202Be363B8a4820f3F4DE7FaF5224fF05943AB1/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/unilend" }, { - "name": "twitter", - "url": "https://twitter.com/UniLend_Finance" + "name": "x", + "url": "https://x.com/UniLend_Finance" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x0258F474786DdFd37ABCE6df6BBb1Dd5dfC4434a/info.json b/blockchains/ethereum/assets/0x0258F474786DdFd37ABCE6df6BBb1Dd5dfC4434a/info.json index 2bde3acd47f47..64ede0a797358 100644 --- a/blockchains/ethereum/assets/0x0258F474786DdFd37ABCE6df6BBb1Dd5dfC4434a/info.json +++ b/blockchains/ethereum/assets/0x0258F474786DdFd37ABCE6df6BBb1Dd5dfC4434a/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/orionprotocol" }, { - "name": "twitter", - "url": "https://twitter.com/orion_protocol" + "name": "x", + "url": "https://x.com/orion_protocol" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9/info.json b/blockchains/ethereum/assets/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9/info.json new file mode 100644 index 0000000000000..21d40f8d55773 --- /dev/null +++ b/blockchains/ethereum/assets/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9/info.json @@ -0,0 +1,24 @@ +{ + "name": "Philip Morris tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Phillip Morris xStock (PMx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. PMx tracks the price of Philip Morris International Inc. (the underlying). PMx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Philip Morris International Inc., whilst maintaining the benefits of blockchain technology. Phillip Morris is an American multinational tobacco company, with products sold in over 180 countries.", + "explorer": "https://etherscan.io/token/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9", + "type": "ERC20", + "symbol": "PMX", + "decimals": 18, + "status": "active", + "id": "0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/philip-morris-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9/logo.png b/blockchains/ethereum/assets/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9/logo.png new file mode 100644 index 0000000000000..af7129b1cec83 Binary files /dev/null and b/blockchains/ethereum/assets/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9/logo.png differ diff --git a/blockchains/ethereum/assets/0x02f92800F57BCD74066F5709F1Daa1A4302Df875/info.json b/blockchains/ethereum/assets/0x02f92800F57BCD74066F5709F1Daa1A4302Df875/info.json new file mode 100644 index 0000000000000..973e0857c20b9 --- /dev/null +++ b/blockchains/ethereum/assets/0x02f92800F57BCD74066F5709F1Daa1A4302Df875/info.json @@ -0,0 +1,17 @@ +{ + "name": "Peapods", + "website": "https://peapods.finance/", + "description": "Peapods finance offers farming volatility through the first fully decentralized on-chain yield-bearing index funds, or pods.", + "explorer": "https://etherscan.io/token/0x02f92800f57bcd74066f5709f1daa1a4302df875", + "type": "ERC20", + "symbol": "PEAS", + "decimals": 18, + "status": "active", + "id": "0x02f92800F57BCD74066F5709F1Daa1A4302Df875", + "links": [ + { + "name": "x", + "url": "https://x.com/PeapodsFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x02f92800F57BCD74066F5709F1Daa1A4302Df875/logo.png b/blockchains/ethereum/assets/0x02f92800F57BCD74066F5709F1Daa1A4302Df875/logo.png new file mode 100644 index 0000000000000..156b8acc1b617 Binary files /dev/null and b/blockchains/ethereum/assets/0x02f92800F57BCD74066F5709F1Daa1A4302Df875/logo.png differ diff --git a/blockchains/ethereum/assets/0x0305f515fa978cf87226cf8A9776D25bcfb2Cc0B/info.json b/blockchains/ethereum/assets/0x0305f515fa978cf87226cf8A9776D25bcfb2Cc0B/info.json new file mode 100644 index 0000000000000..59b510b872aab --- /dev/null +++ b/blockchains/ethereum/assets/0x0305f515fa978cf87226cf8A9776D25bcfb2Cc0B/info.json @@ -0,0 +1,32 @@ +{ + "name": "Pepe 2.0", + "type": "ERC20", + "symbol": "PEPE2.0", + "decimals": 18, + "website": "https://pepe20.vip/", + "description": "Learning from past other tokens mistakes, Pepe2.0 wants to make things right and redo his billion-dollar run.", + "explorer": "https://etherscan.io/token/0x0305f515fa978cf87226cf8A9776D25bcfb2Cc0B", + "status": "active", + "id": "0x0305f515fa978cf87226cf8A9776D25bcfb2Cc0B", + "links": [ + { + "name": "x", + "url": "https://x.com/pepe2coineth" + }, + { + "name": "github", + "url": "https://github.com/pepe2coineth" + }, + { + "name": "telegram", + "url": "https://t.me/Pepe2Portal" + }, + { + "name": "source_code", + "url": "https://github.com/pepe2coineth/SmartContract" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0305f515fa978cf87226cf8A9776D25bcfb2Cc0B/logo.png b/blockchains/ethereum/assets/0x0305f515fa978cf87226cf8A9776D25bcfb2Cc0B/logo.png new file mode 100644 index 0000000000000..6a1e743f2d4c9 Binary files /dev/null and b/blockchains/ethereum/assets/0x0305f515fa978cf87226cf8A9776D25bcfb2Cc0B/logo.png differ diff --git a/blockchains/ethereum/assets/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB/info.json b/blockchains/ethereum/assets/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB/info.json new file mode 100644 index 0000000000000..528ee38b3499b --- /dev/null +++ b/blockchains/ethereum/assets/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB/info.json @@ -0,0 +1,24 @@ +{ + "name": "Accenture tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Accenture xStock (ACNx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. ACNx tracks the price of Accenture plc Class A (the underlying). ACNx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Accenture plc Class A, whilst maintaining the benefits of blockchain technology. Accenture is a global professional services company that helps businesses, governments, and other organizations build their digital core, optimize their operations, and accelerate revenue growth.", + "explorer": "https://etherscan.io/token/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB", + "type": "ERC20", + "symbol": "ACNX", + "decimals": 18, + "status": "active", + "id": "0x03183Ce31b1656B72A55fa6056e287f50C35BbEB", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/accenture-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB/logo.png b/blockchains/ethereum/assets/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB/logo.png new file mode 100644 index 0000000000000..70683dfdde705 Binary files /dev/null and b/blockchains/ethereum/assets/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB/logo.png differ diff --git a/blockchains/ethereum/assets/0x031B8d752d73d7Fe9678ACEf26e818280D0646b4/info.json b/blockchains/ethereum/assets/0x031B8d752d73d7Fe9678ACEf26e818280D0646b4/info.json new file mode 100644 index 0000000000000..cc1deea6dbaf0 --- /dev/null +++ b/blockchains/ethereum/assets/0x031B8d752d73d7Fe9678ACEf26e818280D0646b4/info.json @@ -0,0 +1,21 @@ +{ + "name": "Sovrun", + "type": "ERC20", + "symbol": "SOVRN", + "decimals": 18, + "website": "https://www.sovrun.org/", + "description": "Sovrun is reimagining gaming by empowering players to own their digital assets and become architects of their virtual worlds.", + "explorer": "https://etherscan.io/token/0x031B8d752d73d7Fe9678ACEf26e818280D0646b4", + "status": "active", + "id": "0x031B8d752d73d7Fe9678ACEf26e818280D0646b4", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sovrun" + }, + { + "name": "x", + "url": "https://x.com/SovrunOfficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x031B8d752d73d7Fe9678ACEf26e818280D0646b4/logo.png b/blockchains/ethereum/assets/0x031B8d752d73d7Fe9678ACEf26e818280D0646b4/logo.png new file mode 100644 index 0000000000000..36d88f3ce1e59 Binary files /dev/null and b/blockchains/ethereum/assets/0x031B8d752d73d7Fe9678ACEf26e818280D0646b4/logo.png differ diff --git a/blockchains/ethereum/assets/0x0327112423F3A68efdF1fcF402F6c5CB9f7C33fd/info.json b/blockchains/ethereum/assets/0x0327112423F3A68efdF1fcF402F6c5CB9f7C33fd/info.json index 29d4ea292065d..809968d9eb7a3 100644 --- a/blockchains/ethereum/assets/0x0327112423F3A68efdF1fcF402F6c5CB9f7C33fd/info.json +++ b/blockchains/ethereum/assets/0x0327112423F3A68efdF1fcF402F6c5CB9f7C33fd/info.json @@ -10,8 +10,8 @@ "id": "0x0327112423F3A68efdF1fcF402F6c5CB9f7C33fd", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PieDAO_DeFi" + "name": "x", + "url": "https://x.com/PieDAO_DeFi" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x032deC3372F25C41EA8054B4987a7c4832CDB338/info.json b/blockchains/ethereum/assets/0x032deC3372F25C41EA8054B4987a7c4832CDB338/info.json new file mode 100644 index 0000000000000..6b7c05b8512b1 --- /dev/null +++ b/blockchains/ethereum/assets/0x032deC3372F25C41EA8054B4987a7c4832CDB338/info.json @@ -0,0 +1,24 @@ +{ + "name": "Netflix (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "NFLXon is the Ondo Tokenized version of Netflix, giving tokenholders economic exposure similar to holding NFLX and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x032deC3372F25C41EA8054B4987a7c4832CDB338", + "type": "ERC20", + "symbol": "NFLXon", + "decimals": 18, + "status": "active", + "id": "0x032deC3372F25C41EA8054B4987a7c4832CDB338", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/netflix-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x032deC3372F25C41EA8054B4987a7c4832CDB338/logo.png b/blockchains/ethereum/assets/0x032deC3372F25C41EA8054B4987a7c4832CDB338/logo.png new file mode 100644 index 0000000000000..79a10787b6007 Binary files /dev/null and b/blockchains/ethereum/assets/0x032deC3372F25C41EA8054B4987a7c4832CDB338/logo.png differ diff --git a/blockchains/ethereum/assets/0x03352D267951E96c6F7235037C5DFD2AB1466232/info.json b/blockchains/ethereum/assets/0x03352D267951E96c6F7235037C5DFD2AB1466232/info.json index b57bcf679f17e..f887dac1bb08f 100644 --- a/blockchains/ethereum/assets/0x03352D267951E96c6F7235037C5DFD2AB1466232/info.json +++ b/blockchains/ethereum/assets/0x03352D267951E96c6F7235037C5DFD2AB1466232/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/ichifarm/ichi-oneToken" }, { - "name": "twitter", - "url": "https://twitter.com/ichifarm" + "name": "x", + "url": "https://x.com/ichifarm" }, { "name": "telegram", @@ -37,4 +37,4 @@ "url": "https://coingecko.com/coins/stable-fox" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x03AA6298F1370642642415EDC0db8b957783e8D6/info.json b/blockchains/ethereum/assets/0x03AA6298F1370642642415EDC0db8b957783e8D6/info.json new file mode 100644 index 0000000000000..bf244b0636397 --- /dev/null +++ b/blockchains/ethereum/assets/0x03AA6298F1370642642415EDC0db8b957783e8D6/info.json @@ -0,0 +1,21 @@ +{ + "name": "NetMind", + "type": "ERC20", + "symbol": "NMT", + "decimals": 18, + "website": "https://power.netmind.ai/", + "description": "NetMind Power is a decentralized platform aimed at democratizing AI and machine learning computing power by leveraging idle GPUs globally for more accessible and affordable AI development.", + "explorer": "https://etherscan.io/token/0x03AA6298F1370642642415EDC0db8b957783e8D6", + "status": "active", + "id": "0x03AA6298F1370642642415EDC0db8b957783e8D6", + "links": [ + { + "name": "x", + "url": "https://x.com/NetmindAi" + }, + { + "name": "telegram", + "url": "https://t.me/NetmindAI" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x03AA6298F1370642642415EDC0db8b957783e8D6/logo.png b/blockchains/ethereum/assets/0x03AA6298F1370642642415EDC0db8b957783e8D6/logo.png new file mode 100644 index 0000000000000..5314738f484da Binary files /dev/null and b/blockchains/ethereum/assets/0x03AA6298F1370642642415EDC0db8b957783e8D6/logo.png differ diff --git a/blockchains/ethereum/assets/0x03C1EC4CA9DBb168E6Db0DeF827c085999CBffaF/info.json b/blockchains/ethereum/assets/0x03C1EC4CA9DBb168E6Db0DeF827c085999CBffaF/info.json new file mode 100644 index 0000000000000..cdb06ae2c23ad --- /dev/null +++ b/blockchains/ethereum/assets/0x03C1EC4CA9DBb168E6Db0DeF827c085999CBffaF/info.json @@ -0,0 +1,24 @@ +{ + "name": "JPMorgan Chase (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "JPMon is the Ondo Tokenized version of JPMorgan Chase, giving tokenholders economic exposure similar to holding JPM and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x03C1EC4CA9DBb168E6Db0DeF827c085999CBffaF", + "type": "ERC20", + "symbol": "JPMon", + "decimals": 18, + "status": "active", + "id": "0x03C1EC4CA9DBb168E6Db0DeF827c085999CBffaF", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jpmorgan-chase-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x03C1EC4CA9DBb168E6Db0DeF827c085999CBffaF/logo.png b/blockchains/ethereum/assets/0x03C1EC4CA9DBb168E6Db0DeF827c085999CBffaF/logo.png new file mode 100644 index 0000000000000..01ae417470eb0 Binary files /dev/null and b/blockchains/ethereum/assets/0x03C1EC4CA9DBb168E6Db0DeF827c085999CBffaF/logo.png differ diff --git a/blockchains/ethereum/assets/0x03dDe9e5BB31ee40A471476e2FCcF75C67921062/info.json b/blockchains/ethereum/assets/0x03dDe9e5BB31ee40A471476e2FCcF75C67921062/info.json new file mode 100644 index 0000000000000..0e2ad05e06c76 --- /dev/null +++ b/blockchains/ethereum/assets/0x03dDe9e5BB31ee40A471476e2FCcF75C67921062/info.json @@ -0,0 +1,21 @@ +{ + "name": "EML Protocol", + "symbol": "EML", + "type": "ERC20", + "decimals": 18, + "description": "The EML Protocol is an end-to-end payment platform that integrates the permissioned private blockchain form of Hyperledger Fabric which allows only approved users to participate.", + "website": "https://emlprotocol.io", + "explorer": "https://etherscan.io/token/0x03dde9e5bb31ee40a471476e2fccf75c67921062", + "status": "active", + "id": "0x03dDe9e5BB31ee40A471476e2FCcF75C67921062", + "links": [ + { + "name": "x", + "url": "https://x.com/EMLprotocol" + }, + { + "name": "telegram", + "url": "https://t.me/EMLprotocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x03dDe9e5BB31ee40A471476e2FCcF75C67921062/logo.png b/blockchains/ethereum/assets/0x03dDe9e5BB31ee40A471476e2FCcF75C67921062/logo.png new file mode 100644 index 0000000000000..40eda8f2f790b Binary files /dev/null and b/blockchains/ethereum/assets/0x03dDe9e5BB31ee40A471476e2FCcF75C67921062/logo.png differ diff --git a/blockchains/ethereum/assets/0x044727e50ff30DB57fad06Ff4F5846eAb5eA52a2/info.json b/blockchains/ethereum/assets/0x044727e50ff30DB57fad06Ff4F5846eAb5eA52a2/info.json index e340b3891bba6..8c2197bd76b10 100644 --- a/blockchains/ethereum/assets/0x044727e50ff30DB57fad06Ff4F5846eAb5eA52a2/info.json +++ b/blockchains/ethereum/assets/0x044727e50ff30DB57fad06Ff4F5846eAb5eA52a2/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/KittyInu" }, { - "name": "twitter", - "url": "https://twitter.com/KittyInuErc20" + "name": "x", + "url": "https://x.com/KittyInuErc20" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x046BAd07658f3B6cAd9A396CFcbC1243AF452ec1/info.json b/blockchains/ethereum/assets/0x046BAd07658f3B6cAd9A396CFcbC1243AF452ec1/info.json new file mode 100644 index 0000000000000..5684c16dd5d43 --- /dev/null +++ b/blockchains/ethereum/assets/0x046BAd07658f3B6cAd9A396CFcbC1243AF452ec1/info.json @@ -0,0 +1,25 @@ +{ + "name": "Archloot", + "type": "ERC20", + "symbol": "AL", + "decimals": 18, + "description": "ArchLoot, launched in 2022, is a UGC (user-generated content) NFT game built on BNB Chain, introducing loot-style composability and interactive NFTs. By leveraging innovative protocols like EIP 4985 and BEP 129, it allows for on-chain implementation of upgradeable characters and items, enhancing playability and supporting robust user-generated content.", + "website": "https://archloot.com/home", + "explorer": "https://etherscan.io/token/0x046BAd07658f3B6cAd9A396CFcbC1243AF452ec1", + "id": "0x046BAd07658f3B6cAd9A396CFcbC1243AF452ec1", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/archlootOS" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/archloot/" + } + ], + "tags": [ + "nft" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x046BAd07658f3B6cAd9A396CFcbC1243AF452ec1/logo.png b/blockchains/ethereum/assets/0x046BAd07658f3B6cAd9A396CFcbC1243AF452ec1/logo.png new file mode 100644 index 0000000000000..1330e4c2b17b8 Binary files /dev/null and b/blockchains/ethereum/assets/0x046BAd07658f3B6cAd9A396CFcbC1243AF452ec1/logo.png differ diff --git a/blockchains/ethereum/assets/0x046EeE2cc3188071C02BfC1745A6b17c656e3f3d/info.json b/blockchains/ethereum/assets/0x046EeE2cc3188071C02BfC1745A6b17c656e3f3d/info.json new file mode 100644 index 0000000000000..f009aa81a3579 --- /dev/null +++ b/blockchains/ethereum/assets/0x046EeE2cc3188071C02BfC1745A6b17c656e3f3d/info.json @@ -0,0 +1,25 @@ +{ + "name": "Rollbit Coin", + "website": "https://rollbit.com/", + "description": "RLB is Rollbit's native token. It introduces 'RLB Lottery' which includes a prize pool grown from a share of Rollbit's casino profits.", + "explorer": "https://etherscan.io/token/0x046eee2cc3188071c02bfc1745a6b17c656e3f3d", + "type": "ERC20", + "symbol": "RLB", + "decimals": 18, + "status": "active", + "id": "0x046EeE2cc3188071C02BfC1745A6b17c656e3f3d", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rollbit-coin/" + }, + { + "name": "x", + "url": "https://x.com/rollbitcom" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/rollbit-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x046EeE2cc3188071C02BfC1745A6b17c656e3f3d/logo.png b/blockchains/ethereum/assets/0x046EeE2cc3188071C02BfC1745A6b17c656e3f3d/logo.png new file mode 100644 index 0000000000000..85082663b0969 Binary files /dev/null and b/blockchains/ethereum/assets/0x046EeE2cc3188071C02BfC1745A6b17c656e3f3d/logo.png differ diff --git a/blockchains/ethereum/assets/0x04C17b9D3b29A78F7Bd062a57CF44FC633e71f85/info.json b/blockchains/ethereum/assets/0x04C17b9D3b29A78F7Bd062a57CF44FC633e71f85/info.json index 4fdb8b67caafa..3b1918896d1e0 100644 --- a/blockchains/ethereum/assets/0x04C17b9D3b29A78F7Bd062a57CF44FC633e71f85/info.json +++ b/blockchains/ethereum/assets/0x04C17b9D3b29A78F7Bd062a57CF44FC633e71f85/info.json @@ -10,8 +10,8 @@ "id": "0x04C17b9D3b29A78F7Bd062a57CF44FC633e71f85", "links": [ { - "name": "twitter", - "url": "https://twitter.com/IMPT_token" + "name": "x", + "url": "https://x.com/IMPT_token" }, { "name": "github", @@ -49,4 +49,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x04C46E830Bb56ce22735d5d8Fc9CB90309317d0f/info.json b/blockchains/ethereum/assets/0x04C46E830Bb56ce22735d5d8Fc9CB90309317d0f/info.json new file mode 100644 index 0000000000000..cc5c5dd6795dd --- /dev/null +++ b/blockchains/ethereum/assets/0x04C46E830Bb56ce22735d5d8Fc9CB90309317d0f/info.json @@ -0,0 +1,20 @@ +{ + "name": "Ekubo Protocol", + "website": "https://ekubo.org/", + "description": "The most capital efficient AMM ever, developed for Starknet.", + "explorer": "https://etherscan.io/token/0x04C46E830Bb56ce22735d5d8Fc9CB90309317d0f", + "type": "ERC20", + "symbol": "EKUBO", + "decimals": 18, + "status": "active", + "id": "0x04C46E830Bb56ce22735d5d8Fc9CB90309317d0f", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/EkuboProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x04C46E830Bb56ce22735d5d8Fc9CB90309317d0f/logo.png b/blockchains/ethereum/assets/0x04C46E830Bb56ce22735d5d8Fc9CB90309317d0f/logo.png new file mode 100644 index 0000000000000..9f304f991f8d4 Binary files /dev/null and b/blockchains/ethereum/assets/0x04C46E830Bb56ce22735d5d8Fc9CB90309317d0f/logo.png differ diff --git a/blockchains/ethereum/assets/0x04F121600c8C47A754636fc9d75661a9525e05D5/info.json b/blockchains/ethereum/assets/0x04F121600c8C47A754636fc9d75661a9525e05D5/info.json new file mode 100644 index 0000000000000..3891798b7829a --- /dev/null +++ b/blockchains/ethereum/assets/0x04F121600c8C47A754636fc9d75661a9525e05D5/info.json @@ -0,0 +1,21 @@ +{ + "name": "STARS", + "type": "ERC20", + "symbol": "STARS", + "decimals": 18, + "website": "https://cryptoallstars.io", + "description": "Crypto All-Stars is the ultimate meme coin project, uniting the top meme coins worldwide – PEPE, Dogecoin, Floki, Mog, Milady, Brett, Turbo, and more – under one umbrella", + "explorer": "https://etherscan.io/token/0x04f121600c8c47a754636fc9d75661a9525e05d5", + "status": "active", + "id": "0x04F121600c8C47A754636fc9d75661a9525e05D5", + "links": [ + { + "name": "x", + "url": "https://x.com/all_stars_coin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cryptoallstars/" + } + ] +} diff --git a/blockchains/ethereum/assets/0x04F121600c8C47A754636fc9d75661a9525e05D5/logo.png b/blockchains/ethereum/assets/0x04F121600c8C47A754636fc9d75661a9525e05D5/logo.png new file mode 100644 index 0000000000000..aaa65a5d64bbe Binary files /dev/null and b/blockchains/ethereum/assets/0x04F121600c8C47A754636fc9d75661a9525e05D5/logo.png differ diff --git a/blockchains/ethereum/assets/0x04d94914Cd1D7FF749eFedEe764335777225b962/info.json b/blockchains/ethereum/assets/0x04d94914Cd1D7FF749eFedEe764335777225b962/info.json new file mode 100644 index 0000000000000..1ed4f6a0604d3 --- /dev/null +++ b/blockchains/ethereum/assets/0x04d94914Cd1D7FF749eFedEe764335777225b962/info.json @@ -0,0 +1,28 @@ +{ + "name": "Rivian Automotive (Ondo Tokenized)", + "type": "ERC20", + "symbol": "RIVNon", + "decimals": 18, + "description": "RIVNon is the Ondo Tokenized version of Rivian Automotive, giving tokenholders economic exposure similar to holding RIVN and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x04d94914Cd1D7FF749eFedEe764335777225b962", + "status": "active", + "id": "0x04d94914Cd1D7FF749eFedEe764335777225b962", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/rivian-automotive-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rivian-automotive-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x04d94914Cd1D7FF749eFedEe764335777225b962/logo.png b/blockchains/ethereum/assets/0x04d94914Cd1D7FF749eFedEe764335777225b962/logo.png new file mode 100644 index 0000000000000..c4ed72cfae648 Binary files /dev/null and b/blockchains/ethereum/assets/0x04d94914Cd1D7FF749eFedEe764335777225b962/logo.png differ diff --git a/blockchains/ethereum/assets/0x0501b9188436E35bB10F35998c40ADC079003866/info.json b/blockchains/ethereum/assets/0x0501b9188436E35bB10F35998c40ADC079003866/info.json new file mode 100644 index 0000000000000..e87333db288d5 --- /dev/null +++ b/blockchains/ethereum/assets/0x0501b9188436E35bB10F35998c40ADC079003866/info.json @@ -0,0 +1,17 @@ +{ + "name": "AI Analysis", + "type": "ERC20", + "symbol": "AIAT", + "decimals": 18, + "website": "https://aianalysis.group/", + "description": "AI Analysis is a dynamic leader in the fusion of AI, blockchain, and FinTech. We are dedicated to making cryptocurrency transactions as simple and secure as traditional banking. Our ecosystem includes the innovative AIA Card, the AIA Academy, the AIA Exchange, and the AI Analysis Token.", + "explorer": "https://etherscan.io/token/0x0501b9188436e35bb10f35998c40adc079003866", + "status": "active", + "id": "0x0501b9188436E35bB10F35998c40ADC079003866", + "links": [ + { + "name": "x", + "url": "https://x.com/AiAnalysisGroup" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0501b9188436E35bB10F35998c40ADC079003866/logo.png b/blockchains/ethereum/assets/0x0501b9188436E35bB10F35998c40ADC079003866/logo.png new file mode 100644 index 0000000000000..dfef14d081c56 Binary files /dev/null and b/blockchains/ethereum/assets/0x0501b9188436E35bB10F35998c40ADC079003866/logo.png differ diff --git a/blockchains/ethereum/assets/0x050362Ab1072Cb2Ce74d74770E22A3203Ad04ee5/info.json b/blockchains/ethereum/assets/0x050362Ab1072Cb2Ce74d74770E22A3203Ad04ee5/info.json new file mode 100644 index 0000000000000..f9783dc8665f8 --- /dev/null +++ b/blockchains/ethereum/assets/0x050362Ab1072Cb2Ce74d74770E22A3203Ad04ee5/info.json @@ -0,0 +1,24 @@ +{ + "name": "Micron Technology (Ondo)", + "website": "https://ondo.finance/", + "description": "MUon is the Ondo Tokenized version of Micron Technology, giving tokenholders economic exposure similar to holding MU and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x050362Ab1072Cb2Ce74d74770E22A3203Ad04ee5", + "type": "ERC20", + "symbol": "MUon", + "decimals": 18, + "status": "active", + "id": "0x050362Ab1072Cb2Ce74d74770E22A3203Ad04ee5", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/micron-technology-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x050362Ab1072Cb2Ce74d74770E22A3203Ad04ee5/logo.png b/blockchains/ethereum/assets/0x050362Ab1072Cb2Ce74d74770E22A3203Ad04ee5/logo.png new file mode 100644 index 0000000000000..b3e96e212ed38 Binary files /dev/null and b/blockchains/ethereum/assets/0x050362Ab1072Cb2Ce74d74770E22A3203Ad04ee5/logo.png differ diff --git a/blockchains/ethereum/assets/0x053C784cD87B74f42e0c089f98643E79c1A3ff16/info.json b/blockchains/ethereum/assets/0x053C784cD87B74f42e0c089f98643E79c1A3ff16/info.json new file mode 100644 index 0000000000000..85becbd8eca35 --- /dev/null +++ b/blockchains/ethereum/assets/0x053C784cD87B74f42e0c089f98643E79c1A3ff16/info.json @@ -0,0 +1,24 @@ +{ + "name": "Cisco tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Cisco xStock (CSCOx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. CSCOx tracks the price of Cisco Systems, Inc. (the underlying). CSCOx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Cisco Systems, Inc., whilst maintaining the benefits of blockchain technology. Cisco is a leading global technology company that focuses on networking, security, collaboration, and cloud solutions.", + "explorer": "https://etherscan.io/token/0x053C784cD87B74f42e0c089f98643E79c1A3ff16", + "type": "ERC20", + "symbol": "CSCOX", + "decimals": 18, + "status": "active", + "id": "0x053C784cD87B74f42e0c089f98643E79c1A3ff16", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cisco-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x053C784cD87B74f42e0c089f98643E79c1A3ff16/logo.png b/blockchains/ethereum/assets/0x053C784cD87B74f42e0c089f98643E79c1A3ff16/logo.png new file mode 100644 index 0000000000000..861002db70a6d Binary files /dev/null and b/blockchains/ethereum/assets/0x053C784cD87B74f42e0c089f98643E79c1A3ff16/logo.png differ diff --git a/blockchains/ethereum/assets/0x054f76beED60AB6dBEb23502178C52d6C5dEbE40/info.json b/blockchains/ethereum/assets/0x054f76beED60AB6dBEb23502178C52d6C5dEbE40/info.json index 4a6e6032c328a..1340cb7065e9c 100644 --- a/blockchains/ethereum/assets/0x054f76beED60AB6dBEb23502178C52d6C5dEbE40/info.json +++ b/blockchains/ethereum/assets/0x054f76beED60AB6dBEb23502178C52d6C5dEbE40/info.json @@ -10,8 +10,8 @@ "id": "0x054f76beED60AB6dBEb23502178C52d6C5dEbE40", "links": [ { - "name": "twitter", - "url": "https://twitter.com/DeFinerorg" + "name": "x", + "url": "https://x.com/DeFinerorg" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x056Fd409E1d7A124BD7017459dFEa2F387b6d5Cd/info.json b/blockchains/ethereum/assets/0x056Fd409E1d7A124BD7017459dFEa2F387b6d5Cd/info.json index eca227e62cbb8..e950a8f40f3fb 100644 --- a/blockchains/ethereum/assets/0x056Fd409E1d7A124BD7017459dFEa2F387b6d5Cd/info.json +++ b/blockchains/ethereum/assets/0x056Fd409E1d7A124BD7017459dFEa2F387b6d5Cd/info.json @@ -17,8 +17,8 @@ "url": "https://facebook.com/GeminiDotCom" }, { - "name": "twitter", - "url": "https://twitter.com/GeminiDotCom" + "name": "x", + "url": "https://x.com/GeminiDotCom" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0x0588e851ec0418d660BeE81230d6c678dAF21d46/info.json b/blockchains/ethereum/assets/0x0588e851ec0418d660BeE81230d6c678dAF21d46/info.json new file mode 100644 index 0000000000000..1b713e34c8d93 --- /dev/null +++ b/blockchains/ethereum/assets/0x0588e851ec0418d660BeE81230d6c678dAF21d46/info.json @@ -0,0 +1,24 @@ +{ + "name": "Medtronic tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Medtronic xStock (MDTx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. MDTx tracks the price of Medtronic plc (the underlying). MDTx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Medtronic plc, whilst maintaining the benefits of blockchain technology. Medtronic plc is a global healthcare technology company that develops, manufactures, and sells device-based medical therapies and services.", + "explorer": "https://etherscan.io/token/0x0588e851ec0418d660BeE81230d6c678dAF21d46", + "type": "ERC20", + "symbol": "MDTX", + "decimals": 18, + "status": "active", + "id": "0x0588e851ec0418d660BeE81230d6c678dAF21d46", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/medtronic-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0588e851ec0418d660BeE81230d6c678dAF21d46/logo.png b/blockchains/ethereum/assets/0x0588e851ec0418d660BeE81230d6c678dAF21d46/logo.png new file mode 100644 index 0000000000000..1759e67f775b0 Binary files /dev/null and b/blockchains/ethereum/assets/0x0588e851ec0418d660BeE81230d6c678dAF21d46/logo.png differ diff --git a/blockchains/ethereum/assets/0x05D27CdD23E22ca63e7f9c7C6D1B79ede9C4fCF5/info.json b/blockchains/ethereum/assets/0x05D27CdD23E22ca63e7f9c7C6D1B79ede9C4fCF5/info.json index bd8fbe1c379ca..040e44954b961 100644 --- a/blockchains/ethereum/assets/0x05D27CdD23E22ca63e7f9c7C6D1B79ede9C4fCF5/info.json +++ b/blockchains/ethereum/assets/0x05D27CdD23E22ca63e7f9c7C6D1B79ede9C4fCF5/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/yfpi" }, { - "name": "twitter", - "url": "https://twitter.com/YFPIncome" + "name": "x", + "url": "https://x.com/YFPIncome" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x05Fb86775Fd5c16290f1E838F5caaa7342bD9a63/info.json b/blockchains/ethereum/assets/0x05Fb86775Fd5c16290f1E838F5caaa7342bD9a63/info.json new file mode 100644 index 0000000000000..d3723ac9b3804 --- /dev/null +++ b/blockchains/ethereum/assets/0x05Fb86775Fd5c16290f1E838F5caaa7342bD9a63/info.json @@ -0,0 +1,21 @@ +{ + "name": "Hacken", + "type": "ERC20", + "symbol": "HAI", + "decimals": 8, + "website": "https://hackenfoundation.com/", + "description": "The Hacken Foundation gives a boost to innovative cybersecurity solutions by empowering the Hacken Ecosystem through HAI Tokenomics.", + "explorer": "https://etherscan.io/token/0x05Fb86775Fd5c16290f1E838F5caaa7342bD9a63", + "status": "active", + "id": "0x05Fb86775Fd5c16290f1E838F5caaa7342bD9a63", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hackenai/" + }, + { + "name": "x", + "url": "https://x.com/hackenclub/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x05Fb86775Fd5c16290f1E838F5caaa7342bD9a63/logo.png b/blockchains/ethereum/assets/0x05Fb86775Fd5c16290f1E838F5caaa7342bD9a63/logo.png new file mode 100644 index 0000000000000..008ae2ac17806 Binary files /dev/null and b/blockchains/ethereum/assets/0x05Fb86775Fd5c16290f1E838F5caaa7342bD9a63/logo.png differ diff --git a/blockchains/ethereum/assets/0x05f226755b11cB3666340551EbBAa615CDFEFdD6/info.json b/blockchains/ethereum/assets/0x05f226755b11cB3666340551EbBAa615CDFEFdD6/info.json new file mode 100644 index 0000000000000..c93eeacc2f4c8 --- /dev/null +++ b/blockchains/ethereum/assets/0x05f226755b11cB3666340551EbBAa615CDFEFdD6/info.json @@ -0,0 +1,21 @@ +{ + "name": "TRUMP MEME", + "symbol": "MEME", + "type": "ERC20", + "decimals": 18, + "description": "A meme coin blending Trump’s persona with viral humor, empowering a fun and engaged crypto community.", + "website": "https://trumpmeme.net/", + "explorer": "https://etherscan.io/token/0x05f226755b11cB3666340551EbBAa615CDFEFdD6", + "status": "active", + "id": "0x05f226755b11cB3666340551EbBAa615CDFEFdD6", + "links": [ + { + "name": "x", + "url": "https://x.com/trumpmemex" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/trumpmeme-net/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x05f226755b11cB3666340551EbBAa615CDFEFdD6/logo.png b/blockchains/ethereum/assets/0x05f226755b11cB3666340551EbBAa615CDFEFdD6/logo.png new file mode 100644 index 0000000000000..00724db07fbde Binary files /dev/null and b/blockchains/ethereum/assets/0x05f226755b11cB3666340551EbBAa615CDFEFdD6/logo.png differ diff --git a/blockchains/ethereum/assets/0x060505527C83E8BfEb9b4Ff08248B82e688800F1/info.json b/blockchains/ethereum/assets/0x060505527C83E8BfEb9b4Ff08248B82e688800F1/info.json new file mode 100644 index 0000000000000..70e188a1d07bd --- /dev/null +++ b/blockchains/ethereum/assets/0x060505527C83E8BfEb9b4Ff08248B82e688800F1/info.json @@ -0,0 +1,28 @@ +{ + "name": "Constellation Energy (Ondo Tokenized)", + "type": "ERC20", + "symbol": "CEGon", + "decimals": 18, + "description": "CEGon is the Ondo Tokenized version of Constellation Energy, giving tokenholders economic exposure similar to holding CEG and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x060505527C83E8BfEb9b4Ff08248B82e688800F1", + "status": "active", + "id": "0x060505527C83E8BfEb9b4Ff08248B82e688800F1", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/constellation-energy-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/constellation-energy-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x060505527C83E8BfEb9b4Ff08248B82e688800F1/logo.png b/blockchains/ethereum/assets/0x060505527C83E8BfEb9b4Ff08248B82e688800F1/logo.png new file mode 100644 index 0000000000000..40883cd3a39a0 Binary files /dev/null and b/blockchains/ethereum/assets/0x060505527C83E8BfEb9b4Ff08248B82e688800F1/logo.png differ diff --git a/blockchains/ethereum/assets/0x06450dEe7FD2Fb8E39061434BAbCFC05599a6Fb8/info.json b/blockchains/ethereum/assets/0x06450dEe7FD2Fb8E39061434BAbCFC05599a6Fb8/info.json index a92d0fbaad4b2..df35c41fff2e4 100644 --- a/blockchains/ethereum/assets/0x06450dEe7FD2Fb8E39061434BAbCFC05599a6Fb8/info.json +++ b/blockchains/ethereum/assets/0x06450dEe7FD2Fb8E39061434BAbCFC05599a6Fb8/info.json @@ -10,8 +10,8 @@ "id": "0x06450dEe7FD2Fb8E39061434BAbCFC05599a6Fb8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/XEN_Crypto" + "name": "x", + "url": "https://x.com/XEN_Crypto" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x0649Cef6D11ed6F88535462E147304d3FE5ae14D/info.json b/blockchains/ethereum/assets/0x0649Cef6D11ed6F88535462E147304d3FE5ae14D/info.json new file mode 100644 index 0000000000000..518d5754f453e --- /dev/null +++ b/blockchains/ethereum/assets/0x0649Cef6D11ed6F88535462E147304d3FE5ae14D/info.json @@ -0,0 +1,25 @@ +{ + "name": "KUB Coin", + "type": "ERC20", + "symbol": "KUB", + "decimals": 18, + "description": "The KUB Coin (KUB) is a native utility coin settled on the KUB Chain that is listed on several exchanges in Thailand including Bitkub Exchange, and leading international cryptocurrency exchanges. It serves several utility functions, most notably as an on-chain gas fee payment, exchanging to fee credits on the Bitkub Exchange, staking on KUB Chain to be entitled as Validator or Delegator, and being used to exchange with various digital assets and redemptions for KUB Chain's partners' services.", + "website": "https://www.bitkubchain.com/", + "explorer": "https://etherscan.io/token/0x0649cef6d11ed6f88535462e147304d3fe5ae14d", + "id": "0x0649Cef6D11ed6F88535462E147304d3FE5ae14D", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/bitkubchain" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bitkub-coin/" + } + ], + "tags": [ + "staking" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0649Cef6D11ed6F88535462E147304d3FE5ae14D/logo.png b/blockchains/ethereum/assets/0x0649Cef6D11ed6F88535462E147304d3FE5ae14D/logo.png new file mode 100644 index 0000000000000..814e5d37755eb Binary files /dev/null and b/blockchains/ethereum/assets/0x0649Cef6D11ed6F88535462E147304d3FE5ae14D/logo.png differ diff --git a/blockchains/ethereum/assets/0x0655977FEb2f289A4aB78af67BAB0d17aAb84367/info.json b/blockchains/ethereum/assets/0x0655977FEb2f289A4aB78af67BAB0d17aAb84367/info.json new file mode 100644 index 0000000000000..04778fe702c34 --- /dev/null +++ b/blockchains/ethereum/assets/0x0655977FEb2f289A4aB78af67BAB0d17aAb84367/info.json @@ -0,0 +1,21 @@ +{ + "name": "Savings crvUSD", + "website": "https://www.curve.finance/", + "description": "Savings crvUSD (scrvUSD) is an interest-bearing stablecoin that accrues yield passively just by holding the token.", + "explorer": "https://etherscan.io/token/0x0655977FEb2f289A4aB78af67BAB0d17aAb84367", + "type": "ERC20", + "symbol": "scrvUSD", + "decimals": 18, + "status": "active", + "id": "0x0655977FEb2f289A4aB78af67BAB0d17aAb84367", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/savings-crvusd" + }, + { + "name": "x", + "url": "https://x.com/CurveFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0655977FEb2f289A4aB78af67BAB0d17aAb84367/logo.png b/blockchains/ethereum/assets/0x0655977FEb2f289A4aB78af67BAB0d17aAb84367/logo.png new file mode 100644 index 0000000000000..7b0e566ce5624 Binary files /dev/null and b/blockchains/ethereum/assets/0x0655977FEb2f289A4aB78af67BAB0d17aAb84367/logo.png differ diff --git a/blockchains/ethereum/assets/0x0692481C369E2BDc728A69ae31b848343a4567Be/info.json b/blockchains/ethereum/assets/0x0692481C369E2BDc728A69ae31b848343a4567Be/info.json new file mode 100644 index 0000000000000..f8cac432d36ad --- /dev/null +++ b/blockchains/ethereum/assets/0x0692481C369E2BDc728A69ae31b848343a4567Be/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Core S&P Total US Stock Market (Ondo)", + "website": "https://ondo.finance/", + "description": "ITOTon is the Ondo Tokenized version of the iShares Core S&P Total US Stock Market ETF, giving tokenholders economic exposure similar to holding ITOT and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x0692481C369E2BDc728A69ae31b848343a4567Be", + "type": "ERC20", + "symbol": "ITOTon", + "decimals": 18, + "status": "active", + "id": "0x0692481C369E2BDc728A69ae31b848343a4567Be", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-core-sp-total-us-stock-market-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0692481C369E2BDc728A69ae31b848343a4567Be/logo.png b/blockchains/ethereum/assets/0x0692481C369E2BDc728A69ae31b848343a4567Be/logo.png new file mode 100644 index 0000000000000..8adf578853fa6 Binary files /dev/null and b/blockchains/ethereum/assets/0x0692481C369E2BDc728A69ae31b848343a4567Be/logo.png differ diff --git a/blockchains/ethereum/assets/0x06954faa913fA14c28Eb1b2e459594F22f33f3dE/info.json b/blockchains/ethereum/assets/0x06954faa913fA14c28Eb1b2e459594F22f33f3dE/info.json new file mode 100644 index 0000000000000..635c9dd6ecef0 --- /dev/null +++ b/blockchains/ethereum/assets/0x06954faa913fA14c28Eb1b2e459594F22f33f3dE/info.json @@ -0,0 +1,24 @@ +{ + "name": "Pfizer (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "PFEon is the Ondo Tokenized version of Pfizer, giving tokenholders economic exposure similar to holding PFE and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x06954faa913fA14c28Eb1b2e459594F22f33f3dE", + "type": "ERC20", + "symbol": "PFEon", + "decimals": 18, + "status": "active", + "id": "0x06954faa913fA14c28Eb1b2e459594F22f33f3dE", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pfizer-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x06954faa913fA14c28Eb1b2e459594F22f33f3dE/logo.png b/blockchains/ethereum/assets/0x06954faa913fA14c28Eb1b2e459594F22f33f3dE/logo.png new file mode 100644 index 0000000000000..d7c1214c4f9aa Binary files /dev/null and b/blockchains/ethereum/assets/0x06954faa913fA14c28Eb1b2e459594F22f33f3dE/logo.png differ diff --git a/blockchains/ethereum/assets/0x06B964d96f5dCF7Eae9d7C559B09EDCe244d4B8E/info.json b/blockchains/ethereum/assets/0x06B964d96f5dCF7Eae9d7C559B09EDCe244d4B8E/info.json new file mode 100644 index 0000000000000..f448700f3ccab --- /dev/null +++ b/blockchains/ethereum/assets/0x06B964d96f5dCF7Eae9d7C559B09EDCe244d4B8E/info.json @@ -0,0 +1,21 @@ +{ + "name": "USUALX", + "type": "ERC20", + "symbol": "USUALX", + "decimals": 18, + "website": "https://usual.money/", + "description": "$USUALx is the staked version of $USUAL. It empowers holders with governance rights and grants daily $USUAL rewards.", + "explorer": "https://etherscan.io/token/0x06B964d96f5dCF7Eae9d7C559B09EDCe244d4B8E", + "status": "active", + "id": "0x06B964d96f5dCF7Eae9d7C559B09EDCe244d4B8E", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usualx" + }, + { + "name": "x", + "url": "https://x.com/usualmoney" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x06B964d96f5dCF7Eae9d7C559B09EDCe244d4B8E/logo.png b/blockchains/ethereum/assets/0x06B964d96f5dCF7Eae9d7C559B09EDCe244d4B8E/logo.png new file mode 100644 index 0000000000000..74a0b0cf3e36f Binary files /dev/null and b/blockchains/ethereum/assets/0x06B964d96f5dCF7Eae9d7C559B09EDCe244d4B8E/logo.png differ diff --git a/blockchains/ethereum/assets/0x070D79021dD7e841123cB0CF554993bF683c511D/info.json b/blockchains/ethereum/assets/0x070D79021dD7e841123cB0CF554993bF683c511D/info.json new file mode 100644 index 0000000000000..33937d0c0d282 --- /dev/null +++ b/blockchains/ethereum/assets/0x070D79021dD7e841123cB0CF554993bF683c511D/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Russell 2000 ETF (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "IWMon is the Ondo Tokenized version of the iShares Russell 2000 ETF, giving tokenholders economic exposure similar to holding IWM and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x070D79021dD7e841123cB0CF554993bF683c511D", + "type": "ERC20", + "symbol": "IWMon", + "decimals": 18, + "status": "active", + "id": "0x070D79021dD7e841123cB0CF554993bF683c511D", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-russell-2000-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x070D79021dD7e841123cB0CF554993bF683c511D/logo.png b/blockchains/ethereum/assets/0x070D79021dD7e841123cB0CF554993bF683c511D/logo.png new file mode 100644 index 0000000000000..8adf578853fa6 Binary files /dev/null and b/blockchains/ethereum/assets/0x070D79021dD7e841123cB0CF554993bF683c511D/logo.png differ diff --git a/blockchains/ethereum/assets/0x07150e919B4De5fD6a63DE1F9384828396f25fDC/info.json b/blockchains/ethereum/assets/0x07150e919B4De5fD6a63DE1F9384828396f25fDC/info.json index 7835a149ecde6..623a888219157 100644 --- a/blockchains/ethereum/assets/0x07150e919B4De5fD6a63DE1F9384828396f25fDC/info.json +++ b/blockchains/ethereum/assets/0x07150e919B4De5fD6a63DE1F9384828396f25fDC/info.json @@ -10,8 +10,8 @@ "id": "0x07150e919B4De5fD6a63DE1F9384828396f25fDC", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BaseProtocol" + "name": "x", + "url": "https://x.com/BaseProtocol" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x07327a00ba28D413f745C931bbe6bE053B0AD2a6/info.json b/blockchains/ethereum/assets/0x07327a00ba28D413f745C931bbe6bE053B0AD2a6/info.json index d8b5da4f1e219..7ac46ec43e3df 100644 --- a/blockchains/ethereum/assets/0x07327a00ba28D413f745C931bbe6bE053B0AD2a6/info.json +++ b/blockchains/ethereum/assets/0x07327a00ba28D413f745C931bbe6bE053B0AD2a6/info.json @@ -10,8 +10,8 @@ "id": "0x07327a00ba28D413f745C931bbe6bE053B0AD2a6", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Humanscape_io" + "name": "x", + "url": "https://x.com/Humanscape_io" }, { "name": "telegram", @@ -22,4 +22,4 @@ "url": "https://coinmarketcap.com/currencies/humanscape/" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x073E7a0669833d356fa88ca65CC6D454EFaAa3c5/info.json b/blockchains/ethereum/assets/0x073E7a0669833d356fa88ca65CC6D454EFaAa3c5/info.json new file mode 100644 index 0000000000000..6fa6f7c789448 --- /dev/null +++ b/blockchains/ethereum/assets/0x073E7a0669833d356fa88ca65CC6D454EFaAa3c5/info.json @@ -0,0 +1,24 @@ +{ + "name": "Figma (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "FIGon is the Ondo Tokenized version of Figma, giving tokenholders economic exposure similar to holding FIG and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x073E7a0669833d356fa88ca65CC6D454EFaAa3c5", + "type": "ERC20", + "symbol": "FIGon", + "decimals": 18, + "status": "active", + "id": "0x073E7a0669833d356fa88ca65CC6D454EFaAa3c5", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/figma-ord-shs-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x073E7a0669833d356fa88ca65CC6D454EFaAa3c5/logo.png b/blockchains/ethereum/assets/0x073E7a0669833d356fa88ca65CC6D454EFaAa3c5/logo.png new file mode 100644 index 0000000000000..6ce23a1376640 Binary files /dev/null and b/blockchains/ethereum/assets/0x073E7a0669833d356fa88ca65CC6D454EFaAa3c5/logo.png differ diff --git a/blockchains/ethereum/assets/0x0752163d221d3D5d4B6e98bD616B22bd2b453964/info.json b/blockchains/ethereum/assets/0x0752163d221d3D5d4B6e98bD616B22bd2b453964/info.json new file mode 100644 index 0000000000000..0dbdf9d38b994 --- /dev/null +++ b/blockchains/ethereum/assets/0x0752163d221d3D5d4B6e98bD616B22bd2b453964/info.json @@ -0,0 +1,28 @@ +{ + "name": "Vertiv (Ondo Tokenized)", + "type": "ERC20", + "symbol": "VRTon", + "decimals": 18, + "description": "VRTon is the Ondo Tokenized version of Vertiv, giving tokenholders economic exposure similar to holding VRT and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x0752163d221d3D5d4B6e98bD616B22bd2b453964", + "status": "active", + "id": "0x0752163d221d3D5d4B6e98bD616B22bd2b453964", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vertiv-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vertiv-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0752163d221d3D5d4B6e98bD616B22bd2b453964/logo.png b/blockchains/ethereum/assets/0x0752163d221d3D5d4B6e98bD616B22bd2b453964/logo.png new file mode 100644 index 0000000000000..5001a982cf121 Binary files /dev/null and b/blockchains/ethereum/assets/0x0752163d221d3D5d4B6e98bD616B22bd2b453964/logo.png differ diff --git a/blockchains/ethereum/assets/0x075756F3b6381a79633438fAA8964946bf40163d/info.json b/blockchains/ethereum/assets/0x075756F3b6381a79633438fAA8964946bf40163d/info.json new file mode 100644 index 0000000000000..e40133a28331c --- /dev/null +++ b/blockchains/ethereum/assets/0x075756F3b6381a79633438fAA8964946bf40163d/info.json @@ -0,0 +1,24 @@ +{ + "name": "UnitedHealth (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "UNHon is the Ondo Tokenized version of UnitedHealth, giving tokenholders economic exposure similar to holding UNH and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x075756F3b6381a79633438fAA8964946bf40163d", + "type": "ERC20", + "symbol": "UNHon", + "decimals": 18, + "status": "active", + "id": "0x075756F3b6381a79633438fAA8964946bf40163d", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/unitedhealth-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x075756F3b6381a79633438fAA8964946bf40163d/logo.png b/blockchains/ethereum/assets/0x075756F3b6381a79633438fAA8964946bf40163d/logo.png new file mode 100644 index 0000000000000..7e850760b3d71 Binary files /dev/null and b/blockchains/ethereum/assets/0x075756F3b6381a79633438fAA8964946bf40163d/logo.png differ diff --git a/blockchains/ethereum/assets/0x0763fdCCF1aE541A5961815C0872A8c5Bc6DE4d7/info.json b/blockchains/ethereum/assets/0x0763fdCCF1aE541A5961815C0872A8c5Bc6DE4d7/info.json index 5d1f043a4e3b5..65b6e253904a6 100644 --- a/blockchains/ethereum/assets/0x0763fdCCF1aE541A5961815C0872A8c5Bc6DE4d7/info.json +++ b/blockchains/ethereum/assets/0x0763fdCCF1aE541A5961815C0872A8c5Bc6DE4d7/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/SukuLab" }, { - "name": "twitter", - "url": "https://twitter.com/SUKUecosystem" + "name": "x", + "url": "https://x.com/SUKUecosystem" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae/info.json b/blockchains/ethereum/assets/0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae/info.json new file mode 100644 index 0000000000000..7d25cd847ff47 --- /dev/null +++ b/blockchains/ethereum/assets/0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae/info.json @@ -0,0 +1,24 @@ +{ + "name": "HarryPotterObamaPacMan8Inu", + "website": "https://hpop8i.com/", + "description": "HarryPotterObamaPacMan8Inu is an enchanting and whimsical meme project that recently took its first steps onto the Ethereum blockchain. Inspired by a fusion of iconic characters from popular culture, this unique and lighthearted project brings together the worlds of Harry Potter, Barack Obama, Pac-Man, and the Inu meme trend in an unexpected and delightful way.", + "explorer": "https://etherscan.io/token/0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae", + "type": "ERC20", + "symbol": "XRP", + "decimals": 8, + "status": "active", + "id": "0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae", + "tags": [ + "memes" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/HPOP8I" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/harrypotterobamapacman8inu/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae/logo.png b/blockchains/ethereum/assets/0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae/logo.png new file mode 100644 index 0000000000000..8761450401a1c Binary files /dev/null and b/blockchains/ethereum/assets/0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae/logo.png differ diff --git a/blockchains/ethereum/assets/0x081131434f93063751813C619Ecca9C4dC7862a3/info.json b/blockchains/ethereum/assets/0x081131434f93063751813C619Ecca9C4dC7862a3/info.json new file mode 100644 index 0000000000000..bce2c2920e9b5 --- /dev/null +++ b/blockchains/ethereum/assets/0x081131434f93063751813C619Ecca9C4dC7862a3/info.json @@ -0,0 +1,28 @@ +{ + "name": "Dalarnia", + "type": "ERC20", + "symbol": "DAR", + "decimals": 6, + "website": "https://www.minesofdalarnia.com", + "description": "Mines of Dalarnia is an action-adventure game. Players mine and combine various in-game items, improving their skills and gear to unlock the MoD universe's secrets while fighting enemies and searching for rare relics and artifacts.", + "explorer": "https://etherscan.io/token/0x081131434f93063751813c619ecca9c4dc7862a3", + "status": "active", + "id": "0x081131434f93063751813C619Ecca9C4dC7862a3", + "links": [ + { + "name": "telegram", + "url": "https://t.me/MinesOfDalarnia" + }, + { + "name": "x", + "url": "https://x.com/MinesOfDalarnia" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mines-of-dalarnia/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x081131434f93063751813C619Ecca9C4dC7862a3/logo.png b/blockchains/ethereum/assets/0x081131434f93063751813C619Ecca9C4dC7862a3/logo.png new file mode 100644 index 0000000000000..c8e37a57ef89c Binary files /dev/null and b/blockchains/ethereum/assets/0x081131434f93063751813C619Ecca9C4dC7862a3/logo.png differ diff --git a/blockchains/ethereum/assets/0x089453742936dd35134383aee9d78bEe63A69b01/info.json b/blockchains/ethereum/assets/0x089453742936dd35134383aee9d78bEe63A69b01/info.json new file mode 100644 index 0000000000000..9e1033a3730e0 --- /dev/null +++ b/blockchains/ethereum/assets/0x089453742936dd35134383aee9d78bEe63A69b01/info.json @@ -0,0 +1,29 @@ +{ + "name": "GOLD", + "website": "https://hodl.gold/", + "description": "Gold has been the symbol of power, wealth, & beauty in all of humanity’s recorded history. It is also widely used in internet culture to convey digital currencies. The GOLD coin is the ethereum project for one of the most valuable resources in the world. It’s also a meme. That’s all it’ll ever be. Launched stealth with no presale, low taxes, & LP burnt. Contract will be renounced. GOLD is here to bring back the golden era of crypto.", + "explorer": "https://etherscan.io/token/0x089453742936dd35134383aee9d78bee63a69b01", + "type": "ERC20", + "symbol": "GOLD", + "decimals": 18, + "status": "active", + "id": "0x089453742936dd35134383aee9d78bEe63A69b01", + "links": [ + { + "name": "x", + "url": "https://x.com/GoldCoinETH" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gold-2" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/the-gold-token/" + }, + { + "name": "telegram", + "url": "https://t.me/GoldCoinETH" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x089453742936dd35134383aee9d78bEe63A69b01/logo.png b/blockchains/ethereum/assets/0x089453742936dd35134383aee9d78bEe63A69b01/logo.png new file mode 100644 index 0000000000000..190fc89bfc38d Binary files /dev/null and b/blockchains/ethereum/assets/0x089453742936dd35134383aee9d78bEe63A69b01/logo.png differ diff --git a/blockchains/ethereum/assets/0x08e0fAFf8bB80eaf8c30A99920355028b5bD6789/info.json b/blockchains/ethereum/assets/0x08e0fAFf8bB80eaf8c30A99920355028b5bD6789/info.json index 57bfba95cda62..e2493149e09f7 100644 --- a/blockchains/ethereum/assets/0x08e0fAFf8bB80eaf8c30A99920355028b5bD6789/info.json +++ b/blockchains/ethereum/assets/0x08e0fAFf8bB80eaf8c30A99920355028b5bD6789/info.json @@ -10,8 +10,8 @@ "id": "0x08e0fAFf8bB80eaf8c30A99920355028b5bD6789", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Auricoin" + "name": "x", + "url": "https://x.com/Auricoin" }, { "name": "whitepaper", @@ -29,4 +29,4 @@ "tags": [ "governance" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0913dDAE242839f8995c0375493f9a1A3Bddc977/info.json b/blockchains/ethereum/assets/0x0913dDAE242839f8995c0375493f9a1A3Bddc977/info.json index 081015f7510e2..b7b2f0da09bd4 100644 --- a/blockchains/ethereum/assets/0x0913dDAE242839f8995c0375493f9a1A3Bddc977/info.json +++ b/blockchains/ethereum/assets/0x0913dDAE242839f8995c0375493f9a1A3Bddc977/info.json @@ -10,8 +10,8 @@ "id": "0x0913dDAE242839f8995c0375493f9a1A3Bddc977", "links": [ { - "name": "twitter", - "url": "https://twitter.com/marshallinu_" + "name": "x", + "url": "https://x.com/marshallinu_" }, { "name": "telegram", @@ -21,4 +21,4 @@ "tags": [ "memes" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x09a3EcAFa817268f77BE1283176B946C4ff2E608/info.json b/blockchains/ethereum/assets/0x09a3EcAFa817268f77BE1283176B946C4ff2E608/info.json index d080e0781ca83..b104db61cf130 100644 --- a/blockchains/ethereum/assets/0x09a3EcAFa817268f77BE1283176B946C4ff2E608/info.json +++ b/blockchains/ethereum/assets/0x09a3EcAFa817268f77BE1283176B946C4ff2E608/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/MirrorProtocol" + "name": "x", + "url": "https://x.com/MirrorProtocol" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x0A638F07ACc6969abF392bB009f216D22aDEa36d/info.json b/blockchains/ethereum/assets/0x0A638F07ACc6969abF392bB009f216D22aDEa36d/info.json new file mode 100644 index 0000000000000..6cb6cd0d8a01d --- /dev/null +++ b/blockchains/ethereum/assets/0x0A638F07ACc6969abF392bB009f216D22aDEa36d/info.json @@ -0,0 +1,21 @@ +{ + "name": "Brickken", + "symbol": "BKN", + "type": "ERC20", + "decimals": 18, + "description": "Brickken is creating a dApp (Decentralized Application) which provides the tools needed for individuals and businesses to issue their own Security Tokens, anywhere in the world using blockchain technology", + "website": "https://www.brickken.com/", + "explorer": "https://etherscan.io/token/0x0a638f07acc6969abf392bb009f216d22adea36d", + "status": "active", + "id": "0x0A638F07ACc6969abF392bB009f216D22aDEa36d", + "links": [ + { + "name": "x", + "url": "https://x.com/brickken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/brickken/" + } + ] + } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0A638F07ACc6969abF392bB009f216D22aDEa36d/logo.png b/blockchains/ethereum/assets/0x0A638F07ACc6969abF392bB009f216D22aDEa36d/logo.png new file mode 100644 index 0000000000000..e7d7f22a0d151 Binary files /dev/null and b/blockchains/ethereum/assets/0x0A638F07ACc6969abF392bB009f216D22aDEa36d/logo.png differ diff --git a/blockchains/ethereum/assets/0x0AF55d5fF28A3269d69B98680Fd034f115dd53Ac/info.json b/blockchains/ethereum/assets/0x0AF55d5fF28A3269d69B98680Fd034f115dd53Ac/info.json index ee114107ae9a8..adf4c72e3e22c 100644 --- a/blockchains/ethereum/assets/0x0AF55d5fF28A3269d69B98680Fd034f115dd53Ac/info.json +++ b/blockchains/ethereum/assets/0x0AF55d5fF28A3269d69B98680Fd034f115dd53Ac/info.json @@ -10,8 +10,8 @@ "id": "0x0AF55d5fF28A3269d69B98680Fd034f115dd53Ac", "links": [ { - "name": "twitter", - "url": "https://twitter.com/banksocialio" + "name": "x", + "url": "https://x.com/banksocialio" }, { "name": "coinmarketcap", diff --git a/blockchains/ethereum/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/info.json b/blockchains/ethereum/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/info.json new file mode 100644 index 0000000000000..f4d9361d80ef3 --- /dev/null +++ b/blockchains/ethereum/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/info.json @@ -0,0 +1,27 @@ +{ + "name": "Unagi Token (UNA)", + "type": "ERC20", + "symbol": "UNA", + "decimals": 18, + "website": "https://unagi.games/", + "description": "UNA token is Unagi's web3 gaming ecosystem token. It is your universal ticket to the entire range of Unagi games, offering a seamless experience across various genres and platforms including Ultimate Champions, Persona and more to come! We’re creating a cohesive, interconnected gaming environment.", + "explorer": "https://etherscan.io/token/0x0b6f3ea2814f3fff804ba5d5c237aebbc364fba9", + "status": "active", + "id": "0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9", + "links": [ + { + "name": "medium", + "url": "https://ultimatechampions.medium.com/" + }, + { + "name": "x", + "url": "https://x.com/Unagi_studio" + } + ], + "tags": [ + "gamefi", + "deflationary", + "staking", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/logo.png b/blockchains/ethereum/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/logo.png new file mode 100644 index 0000000000000..5dd9cbe12c479 Binary files /dev/null and b/blockchains/ethereum/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/logo.png differ diff --git a/blockchains/ethereum/assets/0x0BC293ba8D0D8F77Fddb1871b44B9cAb66a00d89/info.json b/blockchains/ethereum/assets/0x0BC293ba8D0D8F77Fddb1871b44B9cAb66a00d89/info.json new file mode 100644 index 0000000000000..ab1b55e16783e --- /dev/null +++ b/blockchains/ethereum/assets/0x0BC293ba8D0D8F77Fddb1871b44B9cAb66a00d89/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tentum (Community Alert: Unverified token)", + "type": "ERC20", + "symbol": "FAKE USD.T", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://etherscan.io/token/0x0BC293ba8D0D8F77Fddb1871b44B9cAb66a00d89", + "explorer": "https://etherscan.io/token/0x0BC293ba8D0D8F77Fddb1871b44B9cAb66a00d89", + "status": "spam", + "id": "0x0BC293ba8D0D8F77Fddb1871b44B9cAb66a00d89" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0C04fF41b11065EEd8c9EDA4d461BA6611591395/info.json b/blockchains/ethereum/assets/0x0C04fF41b11065EEd8c9EDA4d461BA6611591395/info.json new file mode 100644 index 0000000000000..5f60c5cc55b8b --- /dev/null +++ b/blockchains/ethereum/assets/0x0C04fF41b11065EEd8c9EDA4d461BA6611591395/info.json @@ -0,0 +1,21 @@ +{ + "name": "VIVEK", + "type": "ERC20", + "symbol": "TRUTH", + "decimals": 9, + "website": "https://vivek-truth.com/", + "description": "In a world where misinformation is rampant, Vivek Truth stands as a beacon of clarity.", + "explorer": "https://etherscan.io/token/0x0c04ff41b11065eed8c9eda4d461ba6611591395", + "status": "active", + "id": "0x0C04fF41b11065EEd8c9EDA4d461BA6611591395", + "links": [ + { + "name": "x", + "url": "https://x.com/TruthMemecoin" + }, + { + "name": "telegram", + "url": "https://t.me/VivekTruthCoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0C04fF41b11065EEd8c9EDA4d461BA6611591395/logo.png b/blockchains/ethereum/assets/0x0C04fF41b11065EEd8c9EDA4d461BA6611591395/logo.png new file mode 100644 index 0000000000000..ba931fb6d2c21 Binary files /dev/null and b/blockchains/ethereum/assets/0x0C04fF41b11065EEd8c9EDA4d461BA6611591395/logo.png differ diff --git a/blockchains/ethereum/assets/0x0C10bF8FcB7Bf5412187A595ab97a3609160b5c6/info.json b/blockchains/ethereum/assets/0x0C10bF8FcB7Bf5412187A595ab97a3609160b5c6/info.json index 573e39b7ec89c..66af1b207ee3c 100644 --- a/blockchains/ethereum/assets/0x0C10bF8FcB7Bf5412187A595ab97a3609160b5c6/info.json +++ b/blockchains/ethereum/assets/0x0C10bF8FcB7Bf5412187A595ab97a3609160b5c6/info.json @@ -1,17 +1,17 @@ { - "name": "Decentralized USD", - "symbol": "USDD", + "name": "Decentralized USDOLD", + "symbol": "USDDOLD", "type": "ERC20", "decimals": 18, "description": "USDD is a fully decentralized algorithmic stablecoin", "website": "https://usdd.io/", "explorer": "https://etherscan.io/token/0x0c10bf8fcb7bf5412187a595ab97a3609160b5c6", - "status": "active", + "status": "abandoned", "id": "0x0C10bF8FcB7Bf5412187A595ab97a3609160b5c6", "links": [ { - "name": "twitter", - "url": "https://twitter.com/usddio" + "name": "x", + "url": "https://x.com/usddio" }, { "name": "whitepaper", @@ -21,5 +21,4 @@ "tags": [ "stablecoin" ] -} - +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0C1f3412A44Ff99E40bF14e06e5Ea321aE7B3938/info.json b/blockchains/ethereum/assets/0x0C1f3412A44Ff99E40bF14e06e5Ea321aE7B3938/info.json new file mode 100644 index 0000000000000..add7ecd381bae --- /dev/null +++ b/blockchains/ethereum/assets/0x0C1f3412A44Ff99E40bF14e06e5Ea321aE7B3938/info.json @@ -0,0 +1,24 @@ +{ + "name": "AMD (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "AMDon is the Ondo Tokenized version of AMD, giving tokenholders economic exposure similar to holding AMD and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x0C1f3412A44Ff99E40bF14e06e5Ea321aE7B3938", + "type": "ERC20", + "symbol": "AMDon", + "decimals": 18, + "status": "active", + "id": "0x0C1f3412A44Ff99E40bF14e06e5Ea321aE7B3938", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/amd-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0C1f3412A44Ff99E40bF14e06e5Ea321aE7B3938/logo.png b/blockchains/ethereum/assets/0x0C1f3412A44Ff99E40bF14e06e5Ea321aE7B3938/logo.png new file mode 100644 index 0000000000000..8232eae79fa87 Binary files /dev/null and b/blockchains/ethereum/assets/0x0C1f3412A44Ff99E40bF14e06e5Ea321aE7B3938/logo.png differ diff --git a/blockchains/ethereum/assets/0x0C356B7fD36a5357E5A017EF11887ba100C9AB76/info.json b/blockchains/ethereum/assets/0x0C356B7fD36a5357E5A017EF11887ba100C9AB76/info.json new file mode 100644 index 0000000000000..7523b0fecb6ef --- /dev/null +++ b/blockchains/ethereum/assets/0x0C356B7fD36a5357E5A017EF11887ba100C9AB76/info.json @@ -0,0 +1,25 @@ +{ + "name": "Kava", + "type": "ERC20", + "symbol": "KAVA", + "decimals": 6, + "description": "Kava is a Layer-1 blockchain that combines the speed and interoperability of Cosmos with the developer power of Ethereum. Kava was built from the ground up to optimize its resources for protocol growth, strengthened by its Cosmos EVM technology that enables maximum scalability, speed, security, and developer support.", + "website": "https://www.kava.io/", + "explorer": "https://etherscan.io/token/0x0c356b7fd36a5357e5a017ef11887ba100c9ab76", + "id": "0x0C356B7fD36a5357E5A017EF11887ba100C9AB76", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/KAVA_CHAIN" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kava/" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0C356B7fD36a5357E5A017EF11887ba100C9AB76/logo.png b/blockchains/ethereum/assets/0x0C356B7fD36a5357E5A017EF11887ba100C9AB76/logo.png new file mode 100644 index 0000000000000..8fb606a04b41e Binary files /dev/null and b/blockchains/ethereum/assets/0x0C356B7fD36a5357E5A017EF11887ba100C9AB76/logo.png differ diff --git a/blockchains/ethereum/assets/0x0C802aCB21Cb2AadB2EB5E5090868E1361B26B69/info.json b/blockchains/ethereum/assets/0x0C802aCB21Cb2AadB2EB5E5090868E1361B26B69/info.json new file mode 100644 index 0000000000000..c22a40307d127 --- /dev/null +++ b/blockchains/ethereum/assets/0x0C802aCB21Cb2AadB2EB5E5090868E1361B26B69/info.json @@ -0,0 +1,24 @@ +{ + "name": "Newmont (Ondo Tokenized)", + "type": "ERC20", + "symbol": "NEMon", + "decimals": 18, + "description": "NEMon is the Ondo Tokenized version of Newmont, giving tokenholders economic exposure similar to holding NEM and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x0C802aCB21Cb2AadB2EB5E5090868E1361B26B69", + "status": "active", + "id": "0x0C802aCB21Cb2AadB2EB5E5090868E1361B26B69", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/newmont-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0C802aCB21Cb2AadB2EB5E5090868E1361B26B69/logo.png b/blockchains/ethereum/assets/0x0C802aCB21Cb2AadB2EB5E5090868E1361B26B69/logo.png new file mode 100644 index 0000000000000..35f0a8ec45456 Binary files /dev/null and b/blockchains/ethereum/assets/0x0C802aCB21Cb2AadB2EB5E5090868E1361B26B69/logo.png differ diff --git a/blockchains/ethereum/assets/0x0D1fa4E1E3719945899Ef7b02840627Df46aF44A/info.json b/blockchains/ethereum/assets/0x0D1fa4E1E3719945899Ef7b02840627Df46aF44A/info.json new file mode 100644 index 0000000000000..29d9b2b0b2914 --- /dev/null +++ b/blockchains/ethereum/assets/0x0D1fa4E1E3719945899Ef7b02840627Df46aF44A/info.json @@ -0,0 +1,24 @@ +{ + "name": "AST SpaceMobile (Ondo Tokenized)", + "type": "ERC20", + "symbol": "ASTSon", + "decimals": 18, + "description": "ASTSon is the Ondo Tokenized version of AST SpaceMobile, giving tokenholders economic exposure similar to holding ASTS and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x0D1fa4E1E3719945899Ef7b02840627Df46aF44A", + "status": "active", + "id": "0x0D1fa4E1E3719945899Ef7b02840627Df46aF44A", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ast-spacemobile-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0D1fa4E1E3719945899Ef7b02840627Df46aF44A/logo.png b/blockchains/ethereum/assets/0x0D1fa4E1E3719945899Ef7b02840627Df46aF44A/logo.png new file mode 100644 index 0000000000000..2b29ada3405db Binary files /dev/null and b/blockchains/ethereum/assets/0x0D1fa4E1E3719945899Ef7b02840627Df46aF44A/logo.png differ diff --git a/blockchains/ethereum/assets/0x0D24e4A32B174ff6777059D4fD6bF8CFE031014b/info.json b/blockchains/ethereum/assets/0x0D24e4A32B174ff6777059D4fD6bF8CFE031014b/info.json index a0b36ecb053ff..afd02b6fc94c1 100644 --- a/blockchains/ethereum/assets/0x0D24e4A32B174ff6777059D4fD6bF8CFE031014b/info.json +++ b/blockchains/ethereum/assets/0x0D24e4A32B174ff6777059D4fD6bF8CFE031014b/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/bitphantom-ops" }, { - "name": "twitter", - "url": "https://twitter.com/BitphantomPro" + "name": "x", + "url": "https://x.com/BitphantomPro" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x0D57436F2d39c0664C6f0f2E349229483f87EA38/info.json b/blockchains/ethereum/assets/0x0D57436F2d39c0664C6f0f2E349229483f87EA38/info.json new file mode 100644 index 0000000000000..8230515a03a97 --- /dev/null +++ b/blockchains/ethereum/assets/0x0D57436F2d39c0664C6f0f2E349229483f87EA38/info.json @@ -0,0 +1,32 @@ +{ + "name": "Wrapped A7A5", + "type": "ERC20", + "symbol": "wA7A5", + "decimals": 6, + "website": "https://a7a5.io/", + "description": "wA7A5 is a wrapped A7A5 (0x6fA0BE17e4beA2fCfA22ef89BF8ac9aab0AB0fc9), wA7A5 is used for DeFi platforms as A7A5 is a rebasing token. A7A5 is an RWA token backed by fiat deposits in top-tier banks with high overnight rates. A7A5 automatically distributes 50% of its daily income to all token holders at a random time each day, requiring no action on their part.", + "explorer": "https://etherscan.io/token/0x0d57436f2d39c0664c6f0f2e349229483f87ea38", + "status": "active", + "id": "0x0D57436F2d39c0664C6f0f2E349229483f87EA38", + "links": [ + { + "name": "x", + "url": "https://x.com/A7A5official" + }, + { + "name": "telegram", + "url": "https://t.me/A7A5official" + }, + { + "name": "github", + "url": "https://github.com/a7a5-defi/a7a5" + }, + { + "name": "whitepaper", + "url": "https://docs.a7a5.io/additional/whitepaper" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0D57436F2d39c0664C6f0f2E349229483f87EA38/logo.png b/blockchains/ethereum/assets/0x0D57436F2d39c0664C6f0f2E349229483f87EA38/logo.png new file mode 100644 index 0000000000000..633f21e73a61f Binary files /dev/null and b/blockchains/ethereum/assets/0x0D57436F2d39c0664C6f0f2E349229483f87EA38/logo.png differ diff --git a/blockchains/ethereum/assets/0x0D8775F648430679A709E98d2b0Cb6250d2887EF/info.json b/blockchains/ethereum/assets/0x0D8775F648430679A709E98d2b0Cb6250d2887EF/info.json index 38eacd0b527b5..6ffe45cd833dc 100644 --- a/blockchains/ethereum/assets/0x0D8775F648430679A709E98d2b0Cb6250d2887EF/info.json +++ b/blockchains/ethereum/assets/0x0D8775F648430679A709E98d2b0Cb6250d2887EF/info.json @@ -18,8 +18,8 @@ "url": "https://medium.com/@attentiontoken" }, { - "name": "twitter", - "url": "https://twitter.com/@attentiontoken" + "name": "x", + "url": "https://x.com/@attentiontoken" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/info.json b/blockchains/ethereum/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/info.json new file mode 100644 index 0000000000000..759607fd95e0a --- /dev/null +++ b/blockchains/ethereum/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/info.json @@ -0,0 +1,24 @@ +{ + "name": "Argentine Peso", + "website": "https://www.ripio.com/es/criptos/stablecoins-locales", + "description": "wARS is a fully collateralized stablecoin pegged 1:1 to the Argentine Peso (ARS). Issued and governed by a Ripio subsidiary, it brings ARS on-chain so Argentines and global users can transact, save, and build on decentralized networks in their local currency.", + "explorer": "https://etherscan.io/token/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D", + "type": "ERC20", + "symbol": "wARS", + "decimals": 18, + "status": "active", + "id": "0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/RipioApp" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/argentine-peso" + } + ] +} diff --git a/blockchains/ethereum/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/logo.png b/blockchains/ethereum/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/logo.png new file mode 100644 index 0000000000000..be1b6bf25885f Binary files /dev/null and b/blockchains/ethereum/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/logo.png differ diff --git a/blockchains/ethereum/assets/0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6/info.json b/blockchains/ethereum/assets/0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6/info.json new file mode 100644 index 0000000000000..02b1675c38c7f --- /dev/null +++ b/blockchains/ethereum/assets/0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6/info.json @@ -0,0 +1,21 @@ +{ + "name": "Catboy", + "type": "ERC20", + "symbol": "CATBOY", + "decimals": 18, + "website": "https://www.catboy.io/", + "description": "Catboy is an NFT project with a fusion of meme & anime, while 'catified.' With reward utilities & innovative and Interactive NFTs with AI integration.", + "explorer": "https://etherscan.io/token/0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6", + "status": "active", + "id": "0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6", + "links": [ + { + "name": "x", + "url": "https://x.com/catboy_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cat-boy/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6/logo.png b/blockchains/ethereum/assets/0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6/logo.png new file mode 100644 index 0000000000000..585e18c89e9c2 Binary files /dev/null and b/blockchains/ethereum/assets/0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6/logo.png differ diff --git a/blockchains/ethereum/assets/0x0E60CE572a5456B6974d5E7507cc07110DD062A4/info.json b/blockchains/ethereum/assets/0x0E60CE572a5456B6974d5E7507cc07110DD062A4/info.json new file mode 100644 index 0000000000000..16f449987b5b5 --- /dev/null +++ b/blockchains/ethereum/assets/0x0E60CE572a5456B6974d5E7507cc07110DD062A4/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT I love puppies", + "type": "ERC20", + "symbol": "HONEYPOT PUPPIES", + "decimals": 2, + "website": "https://etherscan.io/token/0x0E60CE572a5456B6974d5E7507cc07110DD062A4", + "description": "HONEYPOT I love puppies", + "explorer": "https://etherscan.io/token/0x0E60CE572a5456B6974d5E7507cc07110DD062A4", + "status": "spam", + "id": "0x0E60CE572a5456B6974d5E7507cc07110DD062A4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0E69D0A2bbB30aBcB7e5CfEA0E4FDe19C00A8d47/info.json b/blockchains/ethereum/assets/0x0E69D0A2bbB30aBcB7e5CfEA0E4FDe19C00A8d47/info.json index c8996aa78cda4..12debb7fe3539 100644 --- a/blockchains/ethereum/assets/0x0E69D0A2bbB30aBcB7e5CfEA0E4FDe19C00A8d47/info.json +++ b/blockchains/ethereum/assets/0x0E69D0A2bbB30aBcB7e5CfEA0E4FDe19C00A8d47/info.json @@ -18,8 +18,8 @@ "url": "https://coinmarketcap.com/currencies/carlive-chain/" }, { - "name": "twitter", - "url": "https://twitter.com/CarliveChain" + "name": "x", + "url": "https://x.com/CarliveChain" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0E8d6b471e332F140e7d9dbB99E5E3822F728DA6/info.json b/blockchains/ethereum/assets/0x0E8d6b471e332F140e7d9dbB99E5E3822F728DA6/info.json index c88521063c771..262bc0eee27bc 100644 --- a/blockchains/ethereum/assets/0x0E8d6b471e332F140e7d9dbB99E5E3822F728DA6/info.json +++ b/blockchains/ethereum/assets/0x0E8d6b471e332F140e7d9dbB99E5E3822F728DA6/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/abyssfinance" }, { - "name": "twitter", - "url": "https://twitter.com/AbyssFinance" + "name": "x", + "url": "https://x.com/AbyssFinance" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x0F02e27745e3b6e9e1310d19469e2b5D7B5eC99A/info.json b/blockchains/ethereum/assets/0x0F02e27745e3b6e9e1310d19469e2b5D7B5eC99A/info.json index 89e03761b1413..fa4307c7e25c1 100644 --- a/blockchains/ethereum/assets/0x0F02e27745e3b6e9e1310d19469e2b5D7B5eC99A/info.json +++ b/blockchains/ethereum/assets/0x0F02e27745e3b6e9e1310d19469e2b5D7B5eC99A/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Peculium-Dev/peculiumContracts" }, { - "name": "twitter", - "url": "https://twitter.com/peculium" + "name": "x", + "url": "https://x.com/peculium" }, { "name": "facebook", diff --git a/blockchains/ethereum/assets/0x0F5D2fB29fb7d3CFeE444a200298f468908cC942/info.json b/blockchains/ethereum/assets/0x0F5D2fB29fb7d3CFeE444a200298f468908cC942/info.json index c02f5537b8ea0..7b00479cdc4a9 100644 --- a/blockchains/ethereum/assets/0x0F5D2fB29fb7d3CFeE444a200298f468908cC942/info.json +++ b/blockchains/ethereum/assets/0x0F5D2fB29fb7d3CFeE444a200298f468908cC942/info.json @@ -18,8 +18,8 @@ "url": "https://github.com/decentraland" }, { - "name": "twitter", - "url": "https://twitter.com/decentraland" + "name": "x", + "url": "https://x.com/decentraland" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0x0F7B3F5a8FeD821c5eb60049538a548dB2D479ce/info.json b/blockchains/ethereum/assets/0x0F7B3F5a8FeD821c5eb60049538a548dB2D479ce/info.json new file mode 100644 index 0000000000000..a023ed215e041 --- /dev/null +++ b/blockchains/ethereum/assets/0x0F7B3F5a8FeD821c5eb60049538a548dB2D479ce/info.json @@ -0,0 +1,34 @@ +{ + "name": "ATOR Protocol", + "type": "ERC20", + "symbol": "ATOR", + "decimals": 18, + "website": "https://ator.io/", + "description": "ATOR empowers The Onion Router (Tor) through on-chain incentives, and facilitates wider adoption of secure network relay protocols through hardware products.", + "explorer": "https://etherscan.io/token/0x0f7b3f5a8fed821c5eb60049538a548db2d479ce", + "status": "active", + "id": "0x0F7B3F5a8FeD821c5eb60049538a548dB2D479ce", + "links": [ + { + "name": "x", + "url": "https://x.com/atorprotocol" + }, + { + "name": "telegram", + "url": "https://t.me/atorofficialportal" + }, + { + "name": "github", + "url": "https://github.com/ATOR-Development" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ator" + } + ], + "tags": [ + "defi", + "privacy", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0F7B3F5a8FeD821c5eb60049538a548dB2D479ce/logo.png b/blockchains/ethereum/assets/0x0F7B3F5a8FeD821c5eb60049538a548dB2D479ce/logo.png new file mode 100644 index 0000000000000..fae0e2380b15f Binary files /dev/null and b/blockchains/ethereum/assets/0x0F7B3F5a8FeD821c5eb60049538a548dB2D479ce/logo.png differ diff --git a/blockchains/ethereum/assets/0x0F8887772262c449793890DCD3Bf320308dB423B/info.json b/blockchains/ethereum/assets/0x0F8887772262c449793890DCD3Bf320308dB423B/info.json new file mode 100644 index 0000000000000..7ce123c719c00 --- /dev/null +++ b/blockchains/ethereum/assets/0x0F8887772262c449793890DCD3Bf320308dB423B/info.json @@ -0,0 +1,24 @@ +{ + "name": "Uranium Energy (Ondo Tokenized)", + "type": "ERC20", + "symbol": "UECon", + "decimals": 18, + "description": "UECon is the Ondo Tokenized version of Uranium Energy, giving tokenholders economic exposure similar to holding UEC and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x0F8887772262c449793890DCD3Bf320308dB423B", + "status": "active", + "id": "0x0F8887772262c449793890DCD3Bf320308dB423B", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/uranium-energy-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0F8887772262c449793890DCD3Bf320308dB423B/logo.png b/blockchains/ethereum/assets/0x0F8887772262c449793890DCD3Bf320308dB423B/logo.png new file mode 100644 index 0000000000000..3cac9a56277b8 Binary files /dev/null and b/blockchains/ethereum/assets/0x0F8887772262c449793890DCD3Bf320308dB423B/logo.png differ diff --git a/blockchains/ethereum/assets/0x0a00c19246Fc41B2524d56C87EC44Ce8b30Ba0f8/info.json b/blockchains/ethereum/assets/0x0a00c19246Fc41B2524d56C87EC44Ce8b30Ba0f8/info.json new file mode 100644 index 0000000000000..f12c34fd621dc --- /dev/null +++ b/blockchains/ethereum/assets/0x0a00c19246Fc41B2524d56C87EC44Ce8b30Ba0f8/info.json @@ -0,0 +1,28 @@ +{ + "name": "ProShares UltraPro Short QQQ (Ondo Tokenized)", + "type": "ERC20", + "symbol": "SQQQon", + "decimals": 18, + "description": "SQQQon is the Ondo Tokenized version of the ProShares UltraPro Short QQQ, giving tokenholders economic exposure similar to holding SQQQ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x0a00c19246Fc41B2524d56C87EC44Ce8b30Ba0f8", + "status": "active", + "id": "0x0a00c19246Fc41B2524d56C87EC44Ce8b30Ba0f8", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/proshares-ultrapro-short-qqq-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/proshares-ultrapro-short-qqq-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0a00c19246Fc41B2524d56C87EC44Ce8b30Ba0f8/logo.png b/blockchains/ethereum/assets/0x0a00c19246Fc41B2524d56C87EC44Ce8b30Ba0f8/logo.png new file mode 100644 index 0000000000000..d28deab3711b4 Binary files /dev/null and b/blockchains/ethereum/assets/0x0a00c19246Fc41B2524d56C87EC44Ce8b30Ba0f8/logo.png differ diff --git a/blockchains/ethereum/assets/0x0a661F6AD63a1500D714ED1EeEdb64ec493a54A8/info.json b/blockchains/ethereum/assets/0x0a661F6AD63a1500D714ED1EeEdb64ec493a54A8/info.json index 40127bb371e1d..066512378c27f 100644 --- a/blockchains/ethereum/assets/0x0a661F6AD63a1500D714ED1EeEdb64ec493a54A8/info.json +++ b/blockchains/ethereum/assets/0x0a661F6AD63a1500D714ED1EeEdb64ec493a54A8/info.json @@ -10,8 +10,8 @@ "id": "0x0a661F6AD63a1500D714ED1EeEdb64ec493a54A8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/zedxion" + "name": "x", + "url": "https://x.com/zedxion" }, { "name": "github", @@ -41,4 +41,4 @@ "tags": [ "stablecoin" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0b0a8c7C34374C1d0C649917a97EeE6c6c929B1b/info.json b/blockchains/ethereum/assets/0x0b0a8c7C34374C1d0C649917a97EeE6c6c929B1b/info.json new file mode 100644 index 0000000000000..bc01a11d1dfff --- /dev/null +++ b/blockchains/ethereum/assets/0x0b0a8c7C34374C1d0C649917a97EeE6c6c929B1b/info.json @@ -0,0 +1,25 @@ +{ + "name": "Shiba V Pepe", + "type": "ERC20", + "symbol": "SHEPE", + "decimals": 9, + "website": "https://shibavspepe.io/", + "description": "$SHEPE is aiming to start the communities battle between Shiba VS Pepe.", + "explorer": "https://etherscan.io/token/0x0b0a8c7c34374c1d0c649917a97eee6c6c929b1b", + "status": "active", + "id": "0x0b0a8c7C34374C1d0C649917a97EeE6c6c929B1b", + "links": [ + { + "name": "telegram", + "url": "https://t.me/shibavspepe" + }, + { + "name": "x", + "url": "https://x.com/shibavspepe" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shiba-v-pepe/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0b0a8c7C34374C1d0C649917a97EeE6c6c929B1b/logo.png b/blockchains/ethereum/assets/0x0b0a8c7C34374C1d0C649917a97EeE6c6c929B1b/logo.png new file mode 100644 index 0000000000000..ee3a40be30e57 Binary files /dev/null and b/blockchains/ethereum/assets/0x0b0a8c7C34374C1d0C649917a97EeE6c6c929B1b/logo.png differ diff --git a/blockchains/ethereum/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/info.json b/blockchains/ethereum/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/info.json index 37c62033a676c..4f61ba7581542 100644 --- a/blockchains/ethereum/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/info.json +++ b/blockchains/ethereum/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/impossiblefinance" }, { - "name": "twitter", - "url": "https://twitter.com/impossiblefi" + "name": "x", + "url": "https://x.com/impossiblefi" }, { "name": "blog", diff --git a/blockchains/ethereum/assets/0x0b38210ea11411557c13457D4dA7dC6ea731B88a/info.json b/blockchains/ethereum/assets/0x0b38210ea11411557c13457D4dA7dC6ea731B88a/info.json index e4396b72176b7..895540e199b4d 100644 --- a/blockchains/ethereum/assets/0x0b38210ea11411557c13457D4dA7dC6ea731B88a/info.json +++ b/blockchains/ethereum/assets/0x0b38210ea11411557c13457D4dA7dC6ea731B88a/info.json @@ -10,8 +10,8 @@ "id": "0x0b38210ea11411557c13457D4dA7dC6ea731B88a", "links": [ { - "name": "twitter", - "url": "https://twitter.com/API3DAO" + "name": "x", + "url": "https://x.com/API3DAO" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x0b59fDb1A233A7477ea14061004b9DD776e73CB3/info.json b/blockchains/ethereum/assets/0x0b59fDb1A233A7477ea14061004b9DD776e73CB3/info.json new file mode 100644 index 0000000000000..147d17b7aa18d --- /dev/null +++ b/blockchains/ethereum/assets/0x0b59fDb1A233A7477ea14061004b9DD776e73CB3/info.json @@ -0,0 +1,28 @@ +{ + "name": "Iren (Ondo Tokenized)", + "type": "ERC20", + "symbol": "IRENon", + "decimals": 18, + "description": "IRENon is the Ondo Tokenized version of Iren, giving tokenholders economic exposure similar to holding IREN and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x0b59fDb1A233A7477ea14061004b9DD776e73CB3", + "status": "active", + "id": "0x0b59fDb1A233A7477ea14061004b9DD776e73CB3", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/iren-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/iren-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0b59fDb1A233A7477ea14061004b9DD776e73CB3/logo.png b/blockchains/ethereum/assets/0x0b59fDb1A233A7477ea14061004b9DD776e73CB3/logo.png new file mode 100644 index 0000000000000..a6b39542d7a75 Binary files /dev/null and b/blockchains/ethereum/assets/0x0b59fDb1A233A7477ea14061004b9DD776e73CB3/logo.png differ diff --git a/blockchains/ethereum/assets/0x0bc529c00C6401aEF6D220BE8C6Ea1667F6Ad93e/info.json b/blockchains/ethereum/assets/0x0bc529c00C6401aEF6D220BE8C6Ea1667F6Ad93e/info.json index 707aea6544083..b5ff4910fc126 100644 --- a/blockchains/ethereum/assets/0x0bc529c00C6401aEF6D220BE8C6Ea1667F6Ad93e/info.json +++ b/blockchains/ethereum/assets/0x0bc529c00C6401aEF6D220BE8C6Ea1667F6Ad93e/info.json @@ -1,5 +1,5 @@ { - "name": "yearn.finance", + "name": "Yearn", "website": "https://yearn.finance/", "description": "YFI is the governance token for Yearn.Finance, a site that performs a variety of functions for DeFi users, moving their assets in and out of different liquidity pools in order to find the best yields.", "explorer": "https://etherscan.io/token/0x0bc529c00C6401aEF6D220BE8C6Ea1667F6Ad93e", @@ -19,8 +19,8 @@ "url": "https://github.com/iearn-finance" }, { - "name": "twitter", - "url": "https://twitter.com/iearnfinance" + "name": "x", + "url": "https://x.com/iearnfinance" }, { "name": "blog", diff --git a/blockchains/ethereum/assets/0x0c666485b02F7A87d21AdD7AEb9F5e64975AA490/info.json b/blockchains/ethereum/assets/0x0c666485b02F7A87d21AdD7AEb9F5e64975AA490/info.json new file mode 100644 index 0000000000000..a4bcc2538890f --- /dev/null +++ b/blockchains/ethereum/assets/0x0c666485b02F7A87d21AdD7AEb9F5e64975AA490/info.json @@ -0,0 +1,24 @@ +{ + "name": "Palantir Technologies (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "PLTRon is the Ondo Tokenized version of Palantir Technologies, giving tokenholders economic exposure similar to holding PLTR and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x0c666485b02F7A87d21AdD7AEb9F5e64975AA490", + "type": "ERC20", + "symbol": "PLTRon", + "decimals": 18, + "status": "active", + "id": "0x0c666485b02F7A87d21AdD7AEb9F5e64975AA490", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/palantir-technologies-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0c666485b02F7A87d21AdD7AEb9F5e64975AA490/logo.png b/blockchains/ethereum/assets/0x0c666485b02F7A87d21AdD7AEb9F5e64975AA490/logo.png new file mode 100644 index 0000000000000..3df16e1860606 Binary files /dev/null and b/blockchains/ethereum/assets/0x0c666485b02F7A87d21AdD7AEb9F5e64975AA490/logo.png differ diff --git a/blockchains/ethereum/assets/0x0c8276E4FeC072cf7854Be69c70F7773D1610857/info.json b/blockchains/ethereum/assets/0x0c8276E4FeC072cf7854Be69c70F7773D1610857/info.json new file mode 100644 index 0000000000000..9700e0183657a --- /dev/null +++ b/blockchains/ethereum/assets/0x0c8276E4FeC072cf7854Be69c70F7773D1610857/info.json @@ -0,0 +1,24 @@ +{ + "name": "Costco (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "COSTon is the Ondo Tokenized version of Costco, giving tokenholders economic exposure similar to holding COST and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x0c8276E4FeC072cf7854Be69c70F7773D1610857", + "type": "ERC20", + "symbol": "COSTon", + "decimals": 18, + "status": "active", + "id": "0x0c8276E4FeC072cf7854Be69c70F7773D1610857", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/costco-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0c8276E4FeC072cf7854Be69c70F7773D1610857/logo.png b/blockchains/ethereum/assets/0x0c8276E4FeC072cf7854Be69c70F7773D1610857/logo.png new file mode 100644 index 0000000000000..763f6c333dd87 Binary files /dev/null and b/blockchains/ethereum/assets/0x0c8276E4FeC072cf7854Be69c70F7773D1610857/logo.png differ diff --git a/blockchains/ethereum/assets/0x0c90C57aaf95A3A87eadda6ec3974c99D786511F/info.json b/blockchains/ethereum/assets/0x0c90C57aaf95A3A87eadda6ec3974c99D786511F/info.json index 4d0ea1f009b0b..fbe846f7aa2ad 100644 --- a/blockchains/ethereum/assets/0x0c90C57aaf95A3A87eadda6ec3974c99D786511F/info.json +++ b/blockchains/ethereum/assets/0x0c90C57aaf95A3A87eadda6ec3974c99D786511F/info.json @@ -10,8 +10,8 @@ "id": "0x0c90C57aaf95A3A87eadda6ec3974c99D786511F", "links": [ { - "name": "twitter", - "url": "https://twitter.com/HanIdentity" + "name": "x", + "url": "https://x.com/HanIdentity" }, { "name": "telegram", @@ -30,4 +30,4 @@ "url": "https://coingecko.com/en/coins/hanchain/" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/info.json b/blockchains/ethereum/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/info.json index 70b42adcb3567..3ad6a5b7e6da4 100644 --- a/blockchains/ethereum/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/info.json +++ b/blockchains/ethereum/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/info.json @@ -18,8 +18,8 @@ "url": "https://coingecko.com/en/coins/everrise" }, { - "name": "twitter", - "url": "https://twitter.com/everrise" + "name": "x", + "url": "https://x.com/everrise" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x0cE36d199bd6851788e03392568849394cBdE722/info.json b/blockchains/ethereum/assets/0x0cE36d199bd6851788e03392568849394cBdE722/info.json new file mode 100644 index 0000000000000..f0632cafa8d16 --- /dev/null +++ b/blockchains/ethereum/assets/0x0cE36d199bd6851788e03392568849394cBdE722/info.json @@ -0,0 +1,28 @@ +{ + "name": "abrdn Physical Palladium Shares ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "PALLon", + "decimals": 18, + "description": "PALLon is the Ondo Tokenized version of the abrdn Physical Palladium Shares ETF, giving tokenholders economic exposure similar to holding PALL and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x0cE36d199bd6851788e03392568849394cBdE722", + "status": "active", + "id": "0x0cE36d199bd6851788e03392568849394cBdE722", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/abrdn-physical-palladium-shares-etf-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abrdn-physical-palladium-shares-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0cE36d199bd6851788e03392568849394cBdE722/logo.png b/blockchains/ethereum/assets/0x0cE36d199bd6851788e03392568849394cBdE722/logo.png new file mode 100644 index 0000000000000..e2e36379b3e00 Binary files /dev/null and b/blockchains/ethereum/assets/0x0cE36d199bd6851788e03392568849394cBdE722/logo.png differ diff --git a/blockchains/ethereum/assets/0x0cEC1A9154Ff802e7934Fc916Ed7Ca50bDE6844e/info.json b/blockchains/ethereum/assets/0x0cEC1A9154Ff802e7934Fc916Ed7Ca50bDE6844e/info.json index 0ea8007d908d5..a5dc9ba804074 100644 --- a/blockchains/ethereum/assets/0x0cEC1A9154Ff802e7934Fc916Ed7Ca50bDE6844e/info.json +++ b/blockchains/ethereum/assets/0x0cEC1A9154Ff802e7934Fc916Ed7Ca50bDE6844e/info.json @@ -10,8 +10,8 @@ "id": "0x0cEC1A9154Ff802e7934Fc916Ed7Ca50bDE6844e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PoolTogether_" + "name": "x", + "url": "https://x.com/PoolTogether_" }, { "name": "discord", diff --git a/blockchains/ethereum/assets/0x0cF7356E2d13ae2B57e77286284984A5FC8F88b3/info.json b/blockchains/ethereum/assets/0x0cF7356E2d13ae2B57e77286284984A5FC8F88b3/info.json new file mode 100644 index 0000000000000..a31bfb8ab5461 --- /dev/null +++ b/blockchains/ethereum/assets/0x0cF7356E2d13ae2B57e77286284984A5FC8F88b3/info.json @@ -0,0 +1,26 @@ +{ + "name": "ScotCoin Token", + "type": "ERC20", + "symbol": "SCOT", + "decimals": 18, + "description": "Scotcoin is a mould-breaker. Under The Scotcoin Project CIC umbrella it delivers social and economic benefit where those in need get help. Where we leverage the technology of crypto to deliver lasting and sustainable benefits.", + "website": "https://scotcoinproject.com/", + "explorer": "https://etherscan.io/token/0x0cF7356E2d13ae2B57e77286284984A5FC8F88b3", + "id": "0x0cF7356E2d13ae2B57e77286284984A5FC8F88b3", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/ScotcoinProject" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/scotcoin-2" + } + + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0cF7356E2d13ae2B57e77286284984A5FC8F88b3/logo.png b/blockchains/ethereum/assets/0x0cF7356E2d13ae2B57e77286284984A5FC8F88b3/logo.png new file mode 100644 index 0000000000000..a44e97e0860a0 Binary files /dev/null and b/blockchains/ethereum/assets/0x0cF7356E2d13ae2B57e77286284984A5FC8F88b3/logo.png differ diff --git a/blockchains/ethereum/assets/0x0cae9e4d663793c2a2A0b211c1Cf4bBca2B9cAa7/info.json b/blockchains/ethereum/assets/0x0cae9e4d663793c2a2A0b211c1Cf4bBca2B9cAa7/info.json index 1b5a59a0fac82..75849db48a212 100644 --- a/blockchains/ethereum/assets/0x0cae9e4d663793c2a2A0b211c1Cf4bBca2B9cAa7/info.json +++ b/blockchains/ethereum/assets/0x0cae9e4d663793c2a2A0b211c1Cf4bBca2B9cAa7/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/MirrorProtocol" + "name": "x", + "url": "https://x.com/MirrorProtocol" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x0d02755a5700414B26FF040e1dE35D337DF56218/info.json b/blockchains/ethereum/assets/0x0d02755a5700414B26FF040e1dE35D337DF56218/info.json index e019282c3a45b..542f523b8a014 100644 --- a/blockchains/ethereum/assets/0x0d02755a5700414B26FF040e1dE35D337DF56218/info.json +++ b/blockchains/ethereum/assets/0x0d02755a5700414B26FF040e1dE35D337DF56218/info.json @@ -10,8 +10,8 @@ "id": "0x0d02755a5700414B26FF040e1dE35D337DF56218", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BendDAO" + "name": "x", + "url": "https://x.com/BendDAO" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0x0d54D4279B9E8c54cD8547c2C75A8Ee81A0BcaE8/info.json b/blockchains/ethereum/assets/0x0d54D4279B9E8c54cD8547c2C75A8Ee81A0BcaE8/info.json new file mode 100644 index 0000000000000..14a9bb50b31b1 --- /dev/null +++ b/blockchains/ethereum/assets/0x0d54D4279B9E8c54cD8547c2C75A8Ee81A0BcaE8/info.json @@ -0,0 +1,24 @@ +{ + "name": "Broadcom (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "AVGOon is the Ondo Tokenized version of Broadcom, giving tokenholders economic exposure similar to holding AVGO and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x0d54D4279B9E8c54cD8547c2C75A8Ee81A0BcaE8", + "type": "ERC20", + "symbol": "AVGOon", + "decimals": 18, + "status": "active", + "id": "0x0d54D4279B9E8c54cD8547c2C75A8Ee81A0BcaE8", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/broadcom-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0d54D4279B9E8c54cD8547c2C75A8Ee81A0BcaE8/logo.png b/blockchains/ethereum/assets/0x0d54D4279B9E8c54cD8547c2C75A8Ee81A0BcaE8/logo.png new file mode 100644 index 0000000000000..315e409e5b5dc Binary files /dev/null and b/blockchains/ethereum/assets/0x0d54D4279B9E8c54cD8547c2C75A8Ee81A0BcaE8/logo.png differ diff --git a/blockchains/ethereum/assets/0x0d9227f9c4ab3972f994FCcC6EeBa3213C0305c4/info.json b/blockchains/ethereum/assets/0x0d9227f9c4ab3972f994FCcC6EeBa3213C0305c4/info.json index afc23d6e667f0..f0c6edf9b9b4e 100644 --- a/blockchains/ethereum/assets/0x0d9227f9c4ab3972f994FCcC6EeBa3213C0305c4/info.json +++ b/blockchains/ethereum/assets/0x0d9227f9c4ab3972f994FCcC6EeBa3213C0305c4/info.json @@ -10,8 +10,8 @@ "id": "0x0d9227f9c4ab3972f994FCcC6EeBa3213C0305c4", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SergeySavelink" + "name": "x", + "url": "https://x.com/SergeySavelink" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0e397938C1Aa0680954093495B70A9F5e2249aBa/info.json b/blockchains/ethereum/assets/0x0e397938C1Aa0680954093495B70A9F5e2249aBa/info.json new file mode 100644 index 0000000000000..effa15f19270b --- /dev/null +++ b/blockchains/ethereum/assets/0x0e397938C1Aa0680954093495B70A9F5e2249aBa/info.json @@ -0,0 +1,24 @@ +{ + "name": "Invesco QQQ (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "QQQon is the Ondo Tokenized version of the Invesco QQQ, giving tokenholders economic exposure similar to holding QQQ and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x0e397938C1Aa0680954093495B70A9F5e2249aBa", + "type": "ERC20", + "symbol": "QQQon", + "decimals": 18, + "status": "active", + "id": "0x0e397938C1Aa0680954093495B70A9F5e2249aBa", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/invesco-qqq-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0e397938C1Aa0680954093495B70A9F5e2249aBa/logo.png b/blockchains/ethereum/assets/0x0e397938C1Aa0680954093495B70A9F5e2249aBa/logo.png new file mode 100644 index 0000000000000..e14a8610db4c0 Binary files /dev/null and b/blockchains/ethereum/assets/0x0e397938C1Aa0680954093495B70A9F5e2249aBa/logo.png differ diff --git a/blockchains/ethereum/assets/0x0e3D889D5B857C3e6eb361B9C9aE35bb7DdbD254/info.json b/blockchains/ethereum/assets/0x0e3D889D5B857C3e6eb361B9C9aE35bb7DdbD254/info.json new file mode 100644 index 0000000000000..febdb6ee2ae27 --- /dev/null +++ b/blockchains/ethereum/assets/0x0e3D889D5B857C3e6eb361B9C9aE35bb7DdbD254/info.json @@ -0,0 +1,28 @@ +{ + "name": "Verizon (Ondo Tokenized)", + "type": "ERC20", + "symbol": "VZon", + "decimals": 18, + "description": "VZon is the Ondo Tokenized version of Verizon, giving tokenholders economic exposure similar to holding VZ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x0e3D889D5B857C3e6eb361B9C9aE35bb7DdbD254", + "status": "active", + "id": "0x0e3D889D5B857C3e6eb361B9C9aE35bb7DdbD254", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/verizon-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/verizon-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0e3D889D5B857C3e6eb361B9C9aE35bb7DdbD254/logo.png b/blockchains/ethereum/assets/0x0e3D889D5B857C3e6eb361B9C9aE35bb7DdbD254/logo.png new file mode 100644 index 0000000000000..2b78123fa0c7e Binary files /dev/null and b/blockchains/ethereum/assets/0x0e3D889D5B857C3e6eb361B9C9aE35bb7DdbD254/logo.png differ diff --git a/blockchains/ethereum/assets/0x0f2D719407FdBeFF09D87557AbB7232601FD9F29/info.json b/blockchains/ethereum/assets/0x0f2D719407FdBeFF09D87557AbB7232601FD9F29/info.json index 2a13aa9f841fd..088840c958316 100644 --- a/blockchains/ethereum/assets/0x0f2D719407FdBeFF09D87557AbB7232601FD9F29/info.json +++ b/blockchains/ethereum/assets/0x0f2D719407FdBeFF09D87557AbB7232601FD9F29/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/synapseprotocol" + "name": "x", + "url": "https://x.com/synapseprotocol" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x0f6B862E05A9B528b0002261f9EB616e6c4452e9/info.json b/blockchains/ethereum/assets/0x0f6B862E05A9B528b0002261f9EB616e6c4452e9/info.json new file mode 100644 index 0000000000000..299c7f704d558 --- /dev/null +++ b/blockchains/ethereum/assets/0x0f6B862E05A9B528b0002261f9EB616e6c4452e9/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM Unified Smart Defi Token", + "type": "ERC20", + "symbol": "SCAM ՍSDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://etherscan.io/token/0x0f6B862E05A9B528b0002261f9EB616e6c4452e9", + "explorer": "https://etherscan.io/token/0x0f6B862E05A9B528b0002261f9EB616e6c4452e9", + "status": "spam", + "id": "0x0f6B862E05A9B528b0002261f9EB616e6c4452e9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0f8794f66C7170c4f9163a8498371A747114f6C4/info.json b/blockchains/ethereum/assets/0x0f8794f66C7170c4f9163a8498371A747114f6C4/info.json index 9a2cc8156ecdc..c4d14fd3eb92b 100644 --- a/blockchains/ethereum/assets/0x0f8794f66C7170c4f9163a8498371A747114f6C4/info.json +++ b/blockchains/ethereum/assets/0x0f8794f66C7170c4f9163a8498371A747114f6C4/info.json @@ -10,8 +10,8 @@ "id": "0x0f8794f66C7170c4f9163a8498371A747114f6C4", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Flama" + "name": "x", + "url": "https://x.com/Flama" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x102c776DDB30C754dEd4fDcC77A19230A60D4e4f/info.json b/blockchains/ethereum/assets/0x102c776DDB30C754dEd4fDcC77A19230A60D4e4f/info.json new file mode 100644 index 0000000000000..9cd501a98e2df --- /dev/null +++ b/blockchains/ethereum/assets/0x102c776DDB30C754dEd4fDcC77A19230A60D4e4f/info.json @@ -0,0 +1,17 @@ +{ + "name": "Flooring Lab Credit", + "website": "https://flooring.io/", + "description": "The $FLC token is the native currency that powers the Flooring Protocol ecosystem. It unlocks and fuels customized platform utilities for all users.", + "explorer": "https://etherscan.io/token/0x102c776ddb30c754ded4fdcc77a19230a60d4e4f", + "type": "ERC20", + "symbol": "FLC", + "decimals": 18, + "status": "active", + "id": "0x102c776DDB30C754dEd4fDcC77A19230A60D4e4f", + "links": [ + { + "name": "x", + "url": "https://x.com/flooringproto" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x102c776DDB30C754dEd4fDcC77A19230A60D4e4f/logo.png b/blockchains/ethereum/assets/0x102c776DDB30C754dEd4fDcC77A19230A60D4e4f/logo.png new file mode 100644 index 0000000000000..03b07b6dfa1f8 Binary files /dev/null and b/blockchains/ethereum/assets/0x102c776DDB30C754dEd4fDcC77A19230A60D4e4f/logo.png differ diff --git a/blockchains/ethereum/assets/0x1063181dc986F76F7eA2Dd109e16fc596d0f522A/info.json b/blockchains/ethereum/assets/0x1063181dc986F76F7eA2Dd109e16fc596d0f522A/info.json new file mode 100644 index 0000000000000..f4e79022cadf9 --- /dev/null +++ b/blockchains/ethereum/assets/0x1063181dc986F76F7eA2Dd109e16fc596d0f522A/info.json @@ -0,0 +1,21 @@ +{ + "name": "Cybria", + "website": "https://www.cybria.io/", + "description": "Cybria is a Layer 2 blockchain platform built on top of the Ethereum network.", + "explorer": "https://etherscan.io/token/0x1063181dc986f76f7ea2dd109e16fc596d0f522a", + "symbol": "CYBA", + "type": "ERC20", + "decimals": 9, + "status": "active", + "id": "0x1063181dc986F76F7eA2Dd109e16fc596d0f522A", + "links": [ + { + "name": "telegram", + "url": "https://t.me/cybriacoin" + }, + { + "name": "x", + "url": "https://x.com/cybriacoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1063181dc986F76F7eA2Dd109e16fc596d0f522A/logo.png b/blockchains/ethereum/assets/0x1063181dc986F76F7eA2Dd109e16fc596d0f522A/logo.png new file mode 100644 index 0000000000000..f3f72e02f18ba Binary files /dev/null and b/blockchains/ethereum/assets/0x1063181dc986F76F7eA2Dd109e16fc596d0f522A/logo.png differ diff --git a/blockchains/ethereum/assets/0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800/info.json b/blockchains/ethereum/assets/0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800/info.json new file mode 100644 index 0000000000000..99db3cc77b266 --- /dev/null +++ b/blockchains/ethereum/assets/0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800/info.json @@ -0,0 +1,48 @@ +{ + "name": "Taiko", + "website": "https://taiko.xyz/", + "description": "Taiko is a permissionless based rollup on Ethereum", + "explorer": "https://etherscan.io/token/0x10dea67478c5f8c5e2d90e5e9b26dbe60c54d800", + "symbol": "TAIKO", + "type": "ERC20", + "decimals": 18, + "status": "active", + "tags": [ + "governance" + ], + "id": "0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800", + "links": [ + { + "name": "github", + "url": "https://github.com/taikoxyz/taiko-mono" + }, + { + "name": "docs", + "url": "https://docs.taiko.xyz/start-here/getting-started" + }, + { + "name": "x", + "url": "https://x.com/taikoxyz" + }, + { + "name": "whitepaper", + "url": "https://github.com/taikoxyz/taiko-mono/blob/main/packages/protocol/docs/tokenomics-whitepaper.pdf" + }, + { + "name": "blog", + "url": "https://taiko.mirror.xyz/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/taikoxyz" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/taiko" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/taiko/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800/logo.png b/blockchains/ethereum/assets/0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800/logo.png new file mode 100644 index 0000000000000..2d0790b85f84b Binary files /dev/null and b/blockchains/ethereum/assets/0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800/logo.png differ diff --git a/blockchains/ethereum/assets/0x11003E410ca3FcD220765B3d2f343433A0b2bffd/info.json b/blockchains/ethereum/assets/0x11003E410ca3FcD220765B3d2f343433A0b2bffd/info.json index 0ff56029f7f27..0b9c264f5467e 100644 --- a/blockchains/ethereum/assets/0x11003E410ca3FcD220765B3d2f343433A0b2bffd/info.json +++ b/blockchains/ethereum/assets/0x11003E410ca3FcD220765B3d2f343433A0b2bffd/info.json @@ -10,8 +10,8 @@ "id": "0x11003E410ca3FcD220765B3d2f343433A0b2bffd", "links": [ { - "name": "twitter", - "url": "https://twitter.com/FarmingBad" + "name": "x", + "url": "https://x.com/FarmingBad" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x110CAe53912C2Ed9bF279CD70B3b699e26C79E58/info.json b/blockchains/ethereum/assets/0x110CAe53912C2Ed9bF279CD70B3b699e26C79E58/info.json new file mode 100644 index 0000000000000..e9b91c3cb38a7 --- /dev/null +++ b/blockchains/ethereum/assets/0x110CAe53912C2Ed9bF279CD70B3b699e26C79E58/info.json @@ -0,0 +1,28 @@ +{ + "name": "Terawulf (Ondo Tokenized)", + "type": "ERC20", + "symbol": "WULFon", + "decimals": 18, + "description": "WULFon is the Ondo Tokenized version of Terawulf, giving tokenholders economic exposure similar to holding WULF and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x110CAe53912C2Ed9bF279CD70B3b699e26C79E58", + "status": "active", + "id": "0x110CAe53912C2Ed9bF279CD70B3b699e26C79E58", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/terawulf-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/terawulf-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x110CAe53912C2Ed9bF279CD70B3b699e26C79E58/logo.png b/blockchains/ethereum/assets/0x110CAe53912C2Ed9bF279CD70B3b699e26C79E58/logo.png new file mode 100644 index 0000000000000..9346b7f17a2cb Binary files /dev/null and b/blockchains/ethereum/assets/0x110CAe53912C2Ed9bF279CD70B3b699e26C79E58/logo.png differ diff --git a/blockchains/ethereum/assets/0x111111111117dC0aa78b770fA6A738034120C302/info.json b/blockchains/ethereum/assets/0x111111111117dC0aa78b770fA6A738034120C302/info.json index 2e47da0cb1577..515527b422a3c 100644 --- a/blockchains/ethereum/assets/0x111111111117dC0aa78b770fA6A738034120C302/info.json +++ b/blockchains/ethereum/assets/0x111111111117dC0aa78b770fA6A738034120C302/info.json @@ -1,5 +1,5 @@ { - "name": "1INCH Token", + "name": "1inch", "website": "https://1inch.io/", "description": "1inch is a decentralized exchange (DEX) aggregator, connecting several DEXes into one platform to allow its users to find the most efficient swapping routes across all platforms. In order for a user to find the best price for a swap, they need to look at every exchange — DEX aggregators eliminate the need for manually checking, bringing efficiency to swapping on DEXs.", "explorer": "https://etherscan.io/token/0x111111111117dC0aa78b770fA6A738034120C302", @@ -17,8 +17,8 @@ "url": "https://github.com/1inch" }, { - "name": "twitter", - "url": "https://twitter.com/1inchNetwork" + "name": "x", + "url": "https://x.com/1inchNetwork" }, { "name": "blog", diff --git a/blockchains/ethereum/assets/0x111111517e4929D3dcbdfa7CCe55d30d4B6BC4d6/info.json b/blockchains/ethereum/assets/0x111111517e4929D3dcbdfa7CCe55d30d4B6BC4d6/info.json index b4f115143f905..09a0a4b31285f 100644 --- a/blockchains/ethereum/assets/0x111111517e4929D3dcbdfa7CCe55d30d4B6BC4d6/info.json +++ b/blockchains/ethereum/assets/0x111111517e4929D3dcbdfa7CCe55d30d4B6BC4d6/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/ichifarm" }, { - "name": "twitter", - "url": "https://twitter.com/ichifoundation" + "name": "x", + "url": "https://x.com/ichifoundation" }, { "name": "telegram", @@ -29,4 +29,4 @@ "url": "https://medium.com/ichifarm" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1121AcC14c63f3C872BFcA497d10926A6098AAc5/info.json b/blockchains/ethereum/assets/0x1121AcC14c63f3C872BFcA497d10926A6098AAc5/info.json new file mode 100644 index 0000000000000..396fe2b3d09a8 --- /dev/null +++ b/blockchains/ethereum/assets/0x1121AcC14c63f3C872BFcA497d10926A6098AAc5/info.json @@ -0,0 +1,25 @@ +{ + "name": "Department Of Government Efficiency", + "type": "ERC20", + "symbol": "DOGE", + "decimals": 18, + "description": "Elon Musk stated that the Department of Government Efficiency (DOGE) is the perfect name for the commission he is willing to join in order to assist the Trump administration in making the government operate more efficiently.", + "website": "https://dogegov.com/", + "explorer": "https://etherscan.io/token/0x1121AcC14c63f3C872BFcA497d10926A6098AAc5", + "id": "0x1121AcC14c63f3C872BFcA497d10926A6098AAc5", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/doge_eth_gov" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/department-of-government-efficiency-token/" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1121AcC14c63f3C872BFcA497d10926A6098AAc5/logo.png b/blockchains/ethereum/assets/0x1121AcC14c63f3C872BFcA497d10926A6098AAc5/logo.png new file mode 100644 index 0000000000000..78a3096d22e7e Binary files /dev/null and b/blockchains/ethereum/assets/0x1121AcC14c63f3C872BFcA497d10926A6098AAc5/logo.png differ diff --git a/blockchains/ethereum/assets/0x1140043f02d8EE34b10eae2e32AE921cda1459eE/info.json b/blockchains/ethereum/assets/0x1140043f02d8EE34b10eae2e32AE921cda1459eE/info.json new file mode 100644 index 0000000000000..36f56d926ca77 --- /dev/null +++ b/blockchains/ethereum/assets/0x1140043f02d8EE34b10eae2e32AE921cda1459eE/info.json @@ -0,0 +1,28 @@ +{ + "name": "VanEck Rare Earth and Strategic Metals ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "REMXon", + "decimals": 18, + "description": "REMXon is the Ondo Tokenized version of the VanEck Rare Earth and Strategic Metals ETF, giving tokenholders economic exposure similar to holding REMX and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x1140043f02d8EE34b10eae2e32AE921cda1459eE", + "status": "active", + "id": "0x1140043f02d8EE34b10eae2e32AE921cda1459eE", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vaneck-rare-earth-and-strategic-metals-etf-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vaneck-rare-earth-and-strategic-metals-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1140043f02d8EE34b10eae2e32AE921cda1459eE/logo.png b/blockchains/ethereum/assets/0x1140043f02d8EE34b10eae2e32AE921cda1459eE/logo.png new file mode 100644 index 0000000000000..88eb0a6cce178 Binary files /dev/null and b/blockchains/ethereum/assets/0x1140043f02d8EE34b10eae2e32AE921cda1459eE/logo.png differ diff --git a/blockchains/ethereum/assets/0x1151CB3d861920e07a38e03eEAd12C32178567F6/info.json b/blockchains/ethereum/assets/0x1151CB3d861920e07a38e03eEAd12C32178567F6/info.json new file mode 100644 index 0000000000000..0ed9873dea626 --- /dev/null +++ b/blockchains/ethereum/assets/0x1151CB3d861920e07a38e03eEAd12C32178567F6/info.json @@ -0,0 +1,25 @@ +{ + "name": "Bonk", + "type": "ERC20", + "symbol": "Bonk", + "decimals": 5, + "description": "According to the one-pager, BONK is the first dog-themed coin on Solana 'for the people, by the people' with 50% of the total supply of the cryptocurrency airdropped to the Solana community. BONK is similar to Shiba Inu (SHIB) and Dogecoin (DOGE) memecoins, it was launched on December 25, 2022, and led to an increase in the price of the SOL token (a rise of 34% in 48 hours).", + "website": "https://bonkcoin.com/", + "explorer": "https://etherscan.io/token/0x1151cb3d861920e07a38e03eead12c32178567f6", + "id": "0x1151CB3d861920e07a38e03eEAd12C32178567F6", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/bonk_inu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bonk1/" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1151CB3d861920e07a38e03eEAd12C32178567F6/logo.png b/blockchains/ethereum/assets/0x1151CB3d861920e07a38e03eEAd12C32178567F6/logo.png new file mode 100644 index 0000000000000..3d2e4188b87f1 Binary files /dev/null and b/blockchains/ethereum/assets/0x1151CB3d861920e07a38e03eEAd12C32178567F6/logo.png differ diff --git a/blockchains/ethereum/assets/0x118b552725e1892137740cB4d29390D952709639/info.json b/blockchains/ethereum/assets/0x118b552725e1892137740cB4d29390D952709639/info.json index 0b733a65ec99a..32144e8bfc7a3 100644 --- a/blockchains/ethereum/assets/0x118b552725e1892137740cB4d29390D952709639/info.json +++ b/blockchains/ethereum/assets/0x118b552725e1892137740cB4d29390D952709639/info.json @@ -21,12 +21,12 @@ "url": "https://t.me/NyxGeneral" }, { - "name": "twitter", - "url": "https://twitter.com/NyxToken" + "name": "x", + "url": "https://x.com/NyxToken" }, { "name": "facebook", "url": "https://facebook.com/NYXToken" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x122940c4C5F9cCFAe7Fa86455a42D3EC140855cE/info.json b/blockchains/ethereum/assets/0x122940c4C5F9cCFAe7Fa86455a42D3EC140855cE/info.json new file mode 100644 index 0000000000000..13d436ae34897 --- /dev/null +++ b/blockchains/ethereum/assets/0x122940c4C5F9cCFAe7Fa86455a42D3EC140855cE/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Bitcoin Trust (Ondo)", + "type": "ERC20", + "symbol": "IBITon", + "decimals": 18, + "description": "IBITon is the Ondo Tokenized version of the iShares Bitcoin Trust ETF, giving tokenholders economic exposure similar to holding IBIT and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x122940c4C5F9cCFAe7Fa86455a42D3EC140855cE", + "status": "active", + "id": "0x122940c4C5F9cCFAe7Fa86455a42D3EC140855cE", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-bitcoin-trust-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x122940c4C5F9cCFAe7Fa86455a42D3EC140855cE/logo.png b/blockchains/ethereum/assets/0x122940c4C5F9cCFAe7Fa86455a42D3EC140855cE/logo.png new file mode 100644 index 0000000000000..d163a75f472b5 Binary files /dev/null and b/blockchains/ethereum/assets/0x122940c4C5F9cCFAe7Fa86455a42D3EC140855cE/logo.png differ diff --git a/blockchains/ethereum/assets/0x1258D60B224c0C5cD888D37bbF31aa5FCFb7e870/info.json b/blockchains/ethereum/assets/0x1258D60B224c0C5cD888D37bbF31aa5FCFb7e870/info.json new file mode 100644 index 0000000000000..7838aa46ede4a --- /dev/null +++ b/blockchains/ethereum/assets/0x1258D60B224c0C5cD888D37bbF31aa5FCFb7e870/info.json @@ -0,0 +1,21 @@ +{ + "name": "NodeAI", + "website": "https://nodes.ai", + "description": "Node AI is a decentralized platform that provides access to GPU and AI resources.", + "explorer": "https://etherscan.io/token/0x1258d60b224c0c5cd888d37bbf31aa5fcfb7e870", + "type": "ERC20", + "symbol": "GPU", + "decimals": 18, + "status": "active", + "id": "0x1258D60B224c0C5cD888D37bbF31aa5FCFb7e870", + "links": [ + { + "name": "x", + "url": "https://x.com/NodeAIETH" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/node-ai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1258D60B224c0C5cD888D37bbF31aa5FCFb7e870/logo.png b/blockchains/ethereum/assets/0x1258D60B224c0C5cD888D37bbF31aa5FCFb7e870/logo.png new file mode 100644 index 0000000000000..219d77c7c927b Binary files /dev/null and b/blockchains/ethereum/assets/0x1258D60B224c0C5cD888D37bbF31aa5FCFb7e870/logo.png differ diff --git a/blockchains/ethereum/assets/0x1287c0509df9a475Ef178471aB2132b9dfD312B3/info.json b/blockchains/ethereum/assets/0x1287c0509df9a475Ef178471aB2132b9dfD312B3/info.json index 9093afd553650..9e69d5de85f01 100644 --- a/blockchains/ethereum/assets/0x1287c0509df9a475Ef178471aB2132b9dfD312B3/info.json +++ b/blockchains/ethereum/assets/0x1287c0509df9a475Ef178471aB2132b9dfD312B3/info.json @@ -10,8 +10,8 @@ "id": "0x1287c0509df9a475Ef178471aB2132b9dfD312B3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ladzcity" + "name": "x", + "url": "https://x.com/ladzcity" }, { "name": "discord", @@ -25,4 +25,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x128F3e482F5Bd5F08Fe1b216E60EC0A6013deAB9/info.json b/blockchains/ethereum/assets/0x128F3e482F5Bd5F08Fe1b216E60EC0A6013deAB9/info.json new file mode 100644 index 0000000000000..2ccd503fa7969 --- /dev/null +++ b/blockchains/ethereum/assets/0x128F3e482F5Bd5F08Fe1b216E60EC0A6013deAB9/info.json @@ -0,0 +1,17 @@ +{ + "name": "DARAM AI", + "type": "ERC20", + "symbol": "Daram", + "decimals": 12, + "description": "DARAM AI: The Goose That Took Flight.", + "website": "https://daramai.com/", + "explorer": "https://etherscan.io/token/0x128F3e482F5Bd5F08Fe1b216E60EC0A6013deAB9", + "id": "0x128F3e482F5Bd5F08Fe1b216E60EC0A6013deAB9", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/daramaicoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x128F3e482F5Bd5F08Fe1b216E60EC0A6013deAB9/logo.png b/blockchains/ethereum/assets/0x128F3e482F5Bd5F08Fe1b216E60EC0A6013deAB9/logo.png new file mode 100644 index 0000000000000..addc99ced68d7 Binary files /dev/null and b/blockchains/ethereum/assets/0x128F3e482F5Bd5F08Fe1b216E60EC0A6013deAB9/logo.png differ diff --git a/blockchains/ethereum/assets/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/info.json b/blockchains/ethereum/assets/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/info.json new file mode 100644 index 0000000000000..7177ff960ae0d --- /dev/null +++ b/blockchains/ethereum/assets/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/info.json @@ -0,0 +1,25 @@ +{ + "name": "Fideum", + "website": "https://blockbank.ai/", + "description": "Fideum (previously blockbank) offers regulatory-compliant infrastructure tailored to the needs of financial institutions, banks, and SMEs. Its adaptable microservice architecture facilitates a wide range of financial services, enabling businesses to smoothly transition into the digital asset era.", + "explorer": "https://etherscan.io/token/0x1294f4183763743c7c9519Bec51773fb3aCD78FD", + "type": "ERC20", + "symbol": "FI", + "decimals": 18, + "status": "active", + "id": "0x1294f4183763743c7c9519Bec51773fb3aCD78FD", + "links": [ + { + "name": "telegram", + "url": "https://t.me/BlockBankApp" + }, + { + "name": "x", + "url": "https://x.com/BLOCKBANKapp" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fideum/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/logo.png b/blockchains/ethereum/assets/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/logo.png new file mode 100644 index 0000000000000..9939ad9e03215 Binary files /dev/null and b/blockchains/ethereum/assets/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/logo.png differ diff --git a/blockchains/ethereum/assets/0x12970E6868f88f6557B76120662c1B3E50A646bf/info.json b/blockchains/ethereum/assets/0x12970E6868f88f6557B76120662c1B3E50A646bf/info.json index 7cbd08095923c..2e14d435f3fec 100644 --- a/blockchains/ethereum/assets/0x12970E6868f88f6557B76120662c1B3E50A646bf/info.json +++ b/blockchains/ethereum/assets/0x12970E6868f88f6557B76120662c1B3E50A646bf/info.json @@ -10,8 +10,8 @@ "id": "0x12970E6868f88f6557B76120662c1B3E50A646bf", "links": [ { - "name": "twitter", - "url": "https://twitter.com/miladymemecoin" + "name": "x", + "url": "https://x.com/miladymemecoin" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x12992613fDd35aBe95DEc5a4964331b1ee23B50d/info.json b/blockchains/ethereum/assets/0x12992613fDd35aBe95DEc5a4964331b1ee23B50d/info.json new file mode 100644 index 0000000000000..a814e3b786471 --- /dev/null +++ b/blockchains/ethereum/assets/0x12992613fDd35aBe95DEc5a4964331b1ee23B50d/info.json @@ -0,0 +1,24 @@ +{ + "name": "Berkshire Hathaway tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Berkshire Hathaway tokenized stock (xStock) (BRK.BX) is a cryptocurrency and operates on the Solana platform. Berkshire Hathaway tokenized stock (xStock) has a current supply of 1,400. The last known price of Berkshire Hathaway tokenized stock (xStock) is 498.90939725 USD and is down -0.01 over the last 24 hours. It is currently trading on 1 active market(s) with $3,195.32 traded over the last 24 hours. More information can be found at https://xstocks.fi.", + "explorer": "https://etherscan.io/token/0x12992613fDd35aBe95DEc5a4964331b1ee23B50d", + "type": "ERC20", + "symbol": "BRK.BX", + "decimals": 18, + "status": "active", + "id": "0x12992613fDd35aBe95DEc5a4964331b1ee23B50d", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/berkshire-hathaway-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x12992613fDd35aBe95DEc5a4964331b1ee23B50d/logo.png b/blockchains/ethereum/assets/0x12992613fDd35aBe95DEc5a4964331b1ee23B50d/logo.png new file mode 100644 index 0000000000000..1add0de469f53 Binary files /dev/null and b/blockchains/ethereum/assets/0x12992613fDd35aBe95DEc5a4964331b1ee23B50d/logo.png differ diff --git a/blockchains/ethereum/assets/0x12996C7B23c4012149bf9F5663FF9Aa08A9cF2E4/info.json b/blockchains/ethereum/assets/0x12996C7B23c4012149bf9F5663FF9Aa08A9cF2E4/info.json new file mode 100644 index 0000000000000..fcf654e927d0a --- /dev/null +++ b/blockchains/ethereum/assets/0x12996C7B23c4012149bf9F5663FF9Aa08A9cF2E4/info.json @@ -0,0 +1,21 @@ +{ + "name": "White Yorkshire", + "type": "ERC20", + "symbol": "WSH", + "decimals": 18, + "website": "https://wsh-token.com/", + "description": "White Yorkshire (WSH) is a meme-themed cryptocurrency project that aims to combine the charm of memes with the innovation of blockchain technology.", + "explorer": "https://etherscan.io/token/0x12996C7B23c4012149bf9F5663FF9Aa08A9cF2E4", + "status": "active", + "id": "0x12996C7B23c4012149bf9F5663FF9Aa08A9cF2E4", + "links": [ + { + "name": "x", + "url": "https://x.com/WshToken" + }, + { + "name": "telegram", + "url": "https://t.me/wsh_token" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x12996C7B23c4012149bf9F5663FF9Aa08A9cF2E4/logo.png b/blockchains/ethereum/assets/0x12996C7B23c4012149bf9F5663FF9Aa08A9cF2E4/logo.png new file mode 100644 index 0000000000000..0f1f069e3005e Binary files /dev/null and b/blockchains/ethereum/assets/0x12996C7B23c4012149bf9F5663FF9Aa08A9cF2E4/logo.png differ diff --git a/blockchains/ethereum/assets/0x12D102F06da35cC0111EB58017fd2Cd28537d0e1/info.json b/blockchains/ethereum/assets/0x12D102F06da35cC0111EB58017fd2Cd28537d0e1/info.json index e9e51be417dfb..f07e700b0b62a 100644 --- a/blockchains/ethereum/assets/0x12D102F06da35cC0111EB58017fd2Cd28537d0e1/info.json +++ b/blockchains/ethereum/assets/0x12D102F06da35cC0111EB58017fd2Cd28537d0e1/info.json @@ -10,8 +10,8 @@ "id": "0x12D102F06da35cC0111EB58017fd2Cd28537d0e1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/RealVoxFinance" + "name": "x", + "url": "https://x.com/RealVoxFinance" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x12b6893cE26Ea6341919FE289212ef77e51688c8/info.json b/blockchains/ethereum/assets/0x12b6893cE26Ea6341919FE289212ef77e51688c8/info.json index e05f98d39b849..df8ffc264ca35 100644 --- a/blockchains/ethereum/assets/0x12b6893cE26Ea6341919FE289212ef77e51688c8/info.json +++ b/blockchains/ethereum/assets/0x12b6893cE26Ea6341919FE289212ef77e51688c8/info.json @@ -10,8 +10,8 @@ "id": "0x12b6893cE26Ea6341919FE289212ef77e51688c8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Tamadogecoin" + "name": "x", + "url": "https://x.com/Tamadogecoin" }, { "name": "discord", @@ -37,4 +37,4 @@ "tags": [ "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x12e2b8033420270db2F3b328E32370Cb5B2Ca134/info.json b/blockchains/ethereum/assets/0x12e2b8033420270db2F3b328E32370Cb5B2Ca134/info.json new file mode 100644 index 0000000000000..b2e595ac3c247 --- /dev/null +++ b/blockchains/ethereum/assets/0x12e2b8033420270db2F3b328E32370Cb5B2Ca134/info.json @@ -0,0 +1,34 @@ +{ + "name": "SafePal", + "website": "https://www.safepal.io", + "description": "SafePal is a cryptocurrency wallet that aims to provide a secure and user-friendly crypto asset management platform.", + "explorer": "https://etherscan.io/token/0x12e2b8033420270db2F3b328E32370Cb5B2Ca134", + "research": "https://research.binance.com/en/projects/safepal", + "type": "ERC20", + "symbol": "SFP", + "decimals": 18, + "status": "active", + "id": "0x12e2b8033420270db2F3b328E32370Cb5B2Ca134", + "links": [ + { + "name": "x", + "url": "https://x.com/iSafePal" + }, + { + "name": "github", + "url": "https://github.com/SafePalWallet" + }, + { + "name": "telegram", + "url": "https://t.me/SafePalwallet" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/safepal/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/safepal/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x12e2b8033420270db2F3b328E32370Cb5B2Ca134/logo.png b/blockchains/ethereum/assets/0x12e2b8033420270db2F3b328E32370Cb5B2Ca134/logo.png new file mode 100644 index 0000000000000..154b3c9c6777d Binary files /dev/null and b/blockchains/ethereum/assets/0x12e2b8033420270db2F3b328E32370Cb5B2Ca134/logo.png differ diff --git a/blockchains/ethereum/assets/0x12fCd6463E66974cF7bBC24FFC4d40d6bE458283/info.json b/blockchains/ethereum/assets/0x12fCd6463E66974cF7bBC24FFC4d40d6bE458283/info.json index 14a02424f577c..c693259009763 100644 --- a/blockchains/ethereum/assets/0x12fCd6463E66974cF7bBC24FFC4d40d6bE458283/info.json +++ b/blockchains/ethereum/assets/0x12fCd6463E66974cF7bBC24FFC4d40d6bE458283/info.json @@ -10,8 +10,8 @@ "id": "0x12fCd6463E66974cF7bBC24FFC4d40d6bE458283", "links": [ { - "name": "twitter", - "url": "https://twitter.com/globitex_" + "name": "x", + "url": "https://x.com/globitex_" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x1337DEF16F9B486fAEd0293eb623Dc8395dFE46a/info.json b/blockchains/ethereum/assets/0x1337DEF16F9B486fAEd0293eb623Dc8395dFE46a/info.json index 9a6d7815256b3..6916af8ffbcf6 100644 --- a/blockchains/ethereum/assets/0x1337DEF16F9B486fAEd0293eb623Dc8395dFE46a/info.json +++ b/blockchains/ethereum/assets/0x1337DEF16F9B486fAEd0293eb623Dc8395dFE46a/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/ArmorFi" }, { - "name": "twitter", - "url": "https://twitter.com/ArmorFi" + "name": "x", + "url": "https://x.com/ArmorFi" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x1337DEF18C680aF1f9f45cBcab6309562975b1dD/info.json b/blockchains/ethereum/assets/0x1337DEF18C680aF1f9f45cBcab6309562975b1dD/info.json index 78b5100838ca9..8cd5a14e2b610 100644 --- a/blockchains/ethereum/assets/0x1337DEF18C680aF1f9f45cBcab6309562975b1dD/info.json +++ b/blockchains/ethereum/assets/0x1337DEF18C680aF1f9f45cBcab6309562975b1dD/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/ArmorFi" }, { - "name": "twitter", - "url": "https://twitter.com/ArmorFi" + "name": "x", + "url": "https://x.com/ArmorFi" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x13Ad2D31925490B0E282D51AC1aE744f1da22C77/info.json b/blockchains/ethereum/assets/0x13Ad2D31925490B0E282D51AC1aE744f1da22C77/info.json new file mode 100644 index 0000000000000..25536a402bef0 --- /dev/null +++ b/blockchains/ethereum/assets/0x13Ad2D31925490B0E282D51AC1aE744f1da22C77/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT BCGame USD", + "type": "ERC20", + "symbol": "HONEYPOT BCD", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://etherscan.io/token/0x13Ad2D31925490B0E282D51AC1aE744f1da22C77", + "explorer": "https://etherscan.io/token/0x13Ad2D31925490B0E282D51AC1aE744f1da22C77", + "status": "spam", + "id": "0x13Ad2D31925490B0E282D51AC1aE744f1da22C77" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x13B02c8dE71680e71F0820c996E4bE43c2F57d15/info.json b/blockchains/ethereum/assets/0x13B02c8dE71680e71F0820c996E4bE43c2F57d15/info.json index 795a54bc9dc1c..724617ba90df5 100644 --- a/blockchains/ethereum/assets/0x13B02c8dE71680e71F0820c996E4bE43c2F57d15/info.json +++ b/blockchains/ethereum/assets/0x13B02c8dE71680e71F0820c996E4bE43c2F57d15/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/MirrorProtocol" + "name": "x", + "url": "https://x.com/MirrorProtocol" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json b/blockchains/ethereum/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json new file mode 100644 index 0000000000000..6393e2c07f987 --- /dev/null +++ b/blockchains/ethereum/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json @@ -0,0 +1,25 @@ +{ + "name": "CyberConnect", + "type": "ERC20", + "symbol": "CYBER", + "decimals": 18, + "website": "https://cyberconnect.me/", + "description": "CyberConnect is a Web3 social network that enables developers to create social applications empowering users to own their digital identity, content, connections, and interactions.", + "explorer": "https://etherscan.io/token/0x14778860e937f509e651192a90589de711fb88a9", + "status": "active", + "id": "0x14778860E937f509e651192a90589dE711Fb88a9", + "links": [ + { + "name": "x", + "url": "https://x.com/CyberConnectHQ" + }, + { + "name": "github", + "url": "https://github.com/cyberconnecthq" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cyberconnect/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png b/blockchains/ethereum/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png new file mode 100644 index 0000000000000..b26b7b808fb16 Binary files /dev/null and b/blockchains/ethereum/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png differ diff --git a/blockchains/ethereum/assets/0x1495bc9e44Af1F8BCB62278D2bEC4540cF0C05ea/info.json b/blockchains/ethereum/assets/0x1495bc9e44Af1F8BCB62278D2bEC4540cF0C05ea/info.json new file mode 100644 index 0000000000000..683b5de9bffc8 --- /dev/null +++ b/blockchains/ethereum/assets/0x1495bc9e44Af1F8BCB62278D2bEC4540cF0C05ea/info.json @@ -0,0 +1,53 @@ +{ + "name": "Zero1 Labs", + "type": "ERC20", + "symbol": "DEAI", + "decimals": 18, + "website": "https://z1labs.ai", + "description": "Zero1 is a DeAI ecosystem creating a new economic primitive.", + "explorer": "https://etherscan.io/token/0x1495bc9e44af1f8bcb62278d2bec4540cf0c05ea", + "status": "active", + "id": "0x1495bc9e44Af1F8BCB62278D2bEC4540cF0C05ea", + "links": [ + { + "name": "x", + "url": "https://x.com/" + }, + { + "name": "telegram_news", + "url": "https://t.me/zero1labs" + }, + { + "name": "discord", + "url": "https://discord.com/4mEBU6fja5" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/zero1-labs" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zero1-labs/" + }, + { + "name": "blog", + "url": "https://z1labs.ai/blog/" + }, + { + "name": "docs", + "url": "https://docs.z1labs.ai/" + }, + { + "name": "whitepaper", + "url": "https://z1labs.ai/litepaper.pdf" + }, + { + "name": "github", + "url": "https://github.com/z1labs" + } + ], + "tags": [ + "dapp", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1495bc9e44Af1F8BCB62278D2bEC4540cF0C05ea/logo.png b/blockchains/ethereum/assets/0x1495bc9e44Af1F8BCB62278D2bEC4540cF0C05ea/logo.png new file mode 100644 index 0000000000000..e8c022d35fa92 Binary files /dev/null and b/blockchains/ethereum/assets/0x1495bc9e44Af1F8BCB62278D2bEC4540cF0C05ea/logo.png differ diff --git a/blockchains/ethereum/assets/0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c/info.json b/blockchains/ethereum/assets/0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c/info.json new file mode 100644 index 0000000000000..dfa52c2f54992 --- /dev/null +++ b/blockchains/ethereum/assets/0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c/info.json @@ -0,0 +1,24 @@ +{ + "name": "Apple (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "AAPLon is the Ondo Tokenized version of Apple, giving tokenholders economic exposure similar to holding AAPL and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c", + "type": "ERC20", + "symbol": "AAPLon", + "decimals": 18, + "status": "active", + "id": "0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/apple-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c/logo.png b/blockchains/ethereum/assets/0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c/logo.png new file mode 100644 index 0000000000000..def40b98b5b86 Binary files /dev/null and b/blockchains/ethereum/assets/0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c/logo.png differ diff --git a/blockchains/ethereum/assets/0x14feE680690900BA0ccCfC76AD70Fd1b95D10e16/info.json b/blockchains/ethereum/assets/0x14feE680690900BA0ccCfC76AD70Fd1b95D10e16/info.json new file mode 100644 index 0000000000000..a691656047594 --- /dev/null +++ b/blockchains/ethereum/assets/0x14feE680690900BA0ccCfC76AD70Fd1b95D10e16/info.json @@ -0,0 +1,25 @@ +{ + "name": "PAAL AI", + "website": "https://paalai.io/", + "description": "Paal is an advanced chatbot built on AI and ML technologies, designed to streamline tasks that typically require human intellect, such as natural language understanding, image recognition, decision-making, and problem-solving.", + "explorer": "https://etherscan.io/token/0x14fee680690900ba0cccfc76ad70fd1b95d10e16", + "type": "ERC20", + "symbol": "PAAL", + "decimals": 9, + "status": "active", + "id": "0x14feE680690900BA0ccCfC76AD70Fd1b95D10e16", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/paal-ai/" + }, + { + "name": "x", + "url": "https://x.com/PaalMind" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/paal-ai" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x14feE680690900BA0ccCfC76AD70Fd1b95D10e16/logo.png b/blockchains/ethereum/assets/0x14feE680690900BA0ccCfC76AD70Fd1b95D10e16/logo.png new file mode 100644 index 0000000000000..5005332b2a23f Binary files /dev/null and b/blockchains/ethereum/assets/0x14feE680690900BA0ccCfC76AD70Fd1b95D10e16/logo.png differ diff --git a/blockchains/ethereum/assets/0x15059c599C16Fd8f70B633Ade165502D6402CD49/info.json b/blockchains/ethereum/assets/0x15059c599C16Fd8f70B633Ade165502D6402CD49/info.json new file mode 100644 index 0000000000000..d4449d00921f1 --- /dev/null +++ b/blockchains/ethereum/assets/0x15059c599C16Fd8f70B633Ade165502D6402CD49/info.json @@ -0,0 +1,24 @@ +{ + "name": "Linde tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Linde xStock (LINx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. LINx tracks the price of Linde plc (the underlying). LINx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Linde plc, whilst maintaining the benefits of blockchain technology. Key Benefits Linde is a global leader in industrial gases and engineering, offering a wide range of solutions, technologies, and services to various industries.", + "explorer": "https://etherscan.io/token/0x15059c599C16Fd8f70B633Ade165502D6402CD49", + "type": "ERC20", + "symbol": "LINX", + "decimals": 18, + "status": "active", + "id": "0x15059c599C16Fd8f70B633Ade165502D6402CD49", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/linde-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x15059c599C16Fd8f70B633Ade165502D6402CD49/logo.png b/blockchains/ethereum/assets/0x15059c599C16Fd8f70B633Ade165502D6402CD49/logo.png new file mode 100644 index 0000000000000..e9f3bc929d831 Binary files /dev/null and b/blockchains/ethereum/assets/0x15059c599C16Fd8f70B633Ade165502D6402CD49/logo.png differ diff --git a/blockchains/ethereum/assets/0x152649eA73beAb28c5b49B26eb48f7EAD6d4c898/info.json b/blockchains/ethereum/assets/0x152649eA73beAb28c5b49B26eb48f7EAD6d4c898/info.json new file mode 100644 index 0000000000000..0e16928dbd254 --- /dev/null +++ b/blockchains/ethereum/assets/0x152649eA73beAb28c5b49B26eb48f7EAD6d4c898/info.json @@ -0,0 +1,25 @@ +{ + "name": "PancakeSwap", + "type": "ERC20", + "symbol": "Cake", + "decimals": 18, + "description": "Pancakeswap was originally built on the BNB Chain and allows users to trade tokens without using a centralized exchange. It provides an array of products, such as: - An exchange to swap tokens - A yield farm to earn rewards - Syrup pools to stake CAKE tokens, etc..", + "website": "https://pancakeswap.finance/", + "explorer": "https://etherscan.io/token/0x152649eA73beAb28c5b49B26eb48f7EAD6d4c898", + "id": "0x152649eA73beAb28c5b49B26eb48f7EAD6d4c898", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/pancakeswap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pancakeswap/" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x152649eA73beAb28c5b49B26eb48f7EAD6d4c898/logo.png b/blockchains/ethereum/assets/0x152649eA73beAb28c5b49B26eb48f7EAD6d4c898/logo.png new file mode 100644 index 0000000000000..ec09edc265c26 Binary files /dev/null and b/blockchains/ethereum/assets/0x152649eA73beAb28c5b49B26eb48f7EAD6d4c898/logo.png differ diff --git a/blockchains/ethereum/assets/0x15700B564Ca08D9439C58cA5053166E8317aa138/info.json b/blockchains/ethereum/assets/0x15700B564Ca08D9439C58cA5053166E8317aa138/info.json new file mode 100644 index 0000000000000..b79dd9489c307 --- /dev/null +++ b/blockchains/ethereum/assets/0x15700B564Ca08D9439C58cA5053166E8317aa138/info.json @@ -0,0 +1,29 @@ +{ + "name": "deUSD", + "type": "ERC20", + "symbol": "deUSD", + "decimals": 18, + "description": "deUSD ('Decentralized US Dollar') is a fully collateralized synthetic dollar powered by the Elixir Network. Minted by stETH and sDAI, deposited collateral will be used to short ETH, creating a delta neutral position.", + "website": "https://www.elixir.xyz/", + "explorer": "https://etherscan.io/token/0x15700b564ca08d9439c58ca5053166e8317aa138", + "id": "0x15700B564Ca08D9439C58cA5053166E8317aa138", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/elixir" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elixir-deusd/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/elixir-deusd" + } + ], + "tags": [ + "stablecoin" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x15700B564Ca08D9439C58cA5053166E8317aa138/logo.png b/blockchains/ethereum/assets/0x15700B564Ca08D9439C58cA5053166E8317aa138/logo.png new file mode 100644 index 0000000000000..f5beb338e3a9f Binary files /dev/null and b/blockchains/ethereum/assets/0x15700B564Ca08D9439C58cA5053166E8317aa138/logo.png differ diff --git a/blockchains/ethereum/assets/0x15C1Cab705B9Ddb9FfeeEa608eD8BaFcdd4c0396/info.json b/blockchains/ethereum/assets/0x15C1Cab705B9Ddb9FfeeEa608eD8BaFcdd4c0396/info.json new file mode 100644 index 0000000000000..b6c50cb9db21b --- /dev/null +++ b/blockchains/ethereum/assets/0x15C1Cab705B9Ddb9FfeeEa608eD8BaFcdd4c0396/info.json @@ -0,0 +1,25 @@ +{ + "name": "HXAcoin", + "website": "https://www.hxacoin.io/", + "description": "HXA coin is the native utility token of the Herencia Artifex project - a revolutionary NFT project that aims to bridge the gap between real-world items and blockchain technology.", + "explorer": "https://etherscan.io/token/0x15C1Cab705B9Ddb9FfeeEa608eD8BaFcdd4c0396", + "type": "ERC20", + "symbol": "HXA", + "decimals": 18, + "status": "active", + "id": "0x15C1Cab705B9Ddb9FfeeEa608eD8BaFcdd4c0396", + "links": [ + { + "name": "x", + "url": "https://x.com/HXAcoin" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hxacoin/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hxacoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x15C1Cab705B9Ddb9FfeeEa608eD8BaFcdd4c0396/logo.png b/blockchains/ethereum/assets/0x15C1Cab705B9Ddb9FfeeEa608eD8BaFcdd4c0396/logo.png new file mode 100644 index 0000000000000..f262f107dd89d Binary files /dev/null and b/blockchains/ethereum/assets/0x15C1Cab705B9Ddb9FfeeEa608eD8BaFcdd4c0396/logo.png differ diff --git a/blockchains/ethereum/assets/0x15D4c048F83bd7e37d49eA4C83a07267Ec4203dA/info.json b/blockchains/ethereum/assets/0x15D4c048F83bd7e37d49eA4C83a07267Ec4203dA/info.json index 0520c91d523d5..070bfbfc1b9a7 100644 --- a/blockchains/ethereum/assets/0x15D4c048F83bd7e37d49eA4C83a07267Ec4203dA/info.json +++ b/blockchains/ethereum/assets/0x15D4c048F83bd7e37d49eA4C83a07267Ec4203dA/info.json @@ -14,8 +14,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/GoGalaGames" + "name": "x", + "url": "https://x.com/GoGalaGames" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x15b7c0c907e4C6b9AdaAaabC300C08991D6CEA05/info.json b/blockchains/ethereum/assets/0x15b7c0c907e4C6b9AdaAaabC300C08991D6CEA05/info.json new file mode 100644 index 0000000000000..5678e0b82abf3 --- /dev/null +++ b/blockchains/ethereum/assets/0x15b7c0c907e4C6b9AdaAaabC300C08991D6CEA05/info.json @@ -0,0 +1,17 @@ +{ + "name": "Gelato Network", + "type": "ERC20", + "symbol": "GEL", + "decimals": 18, + "website": "https://www.gelato.network/", + "description": "Automated smart contract executions on Ethereum.", + "explorer": "https://etherscan.io/token/0x15b7c0c907e4C6b9AdaAaabC300C08991D6CEA05", + "status": "active", + "id": "0x15b7c0c907e4C6b9AdaAaabC300C08991D6CEA05", + "links": [ + { + "name": "x", + "url": "https://x.com/gelatonetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x15b7c0c907e4C6b9AdaAaabC300C08991D6CEA05/logo.png b/blockchains/ethereum/assets/0x15b7c0c907e4C6b9AdaAaabC300C08991D6CEA05/logo.png new file mode 100644 index 0000000000000..78f54c928c637 Binary files /dev/null and b/blockchains/ethereum/assets/0x15b7c0c907e4C6b9AdaAaabC300C08991D6CEA05/logo.png differ diff --git a/blockchains/ethereum/assets/0x163f8C2467924be0ae7B5347228CABF260318753/info.json b/blockchains/ethereum/assets/0x163f8C2467924be0ae7B5347228CABF260318753/info.json new file mode 100644 index 0000000000000..3958c67019b3b --- /dev/null +++ b/blockchains/ethereum/assets/0x163f8C2467924be0ae7B5347228CABF260318753/info.json @@ -0,0 +1,25 @@ +{ + "name": "Worldcoin", + "website": "https://worldcoin.org/", + "description": "The Worldcoin system revolves around World ID, a privacy-preserving global identity network. World ID enables users to verify their humanness online (`Proof of Personhood`) while maintaining their privacy through zero-knowledge proofs.", + "explorer": "https://etherscan.io/token/0x163f8c2467924be0ae7b5347228cabf260318753", + "type": "ERC20", + "symbol": "WLD", + "decimals": 18, + "status": "active", + "id": "0x163f8C2467924be0ae7B5347228CABF260318753", + "links": [ + { + "name": "x", + "url": "https://x.com/worldcoin" + }, + { + "name": "telegram", + "url": "https://t.me/worldcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/worldcoin-org/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x163f8C2467924be0ae7B5347228CABF260318753/logo.png b/blockchains/ethereum/assets/0x163f8C2467924be0ae7B5347228CABF260318753/logo.png new file mode 100644 index 0000000000000..cb7f6e3935a81 Binary files /dev/null and b/blockchains/ethereum/assets/0x163f8C2467924be0ae7B5347228CABF260318753/logo.png differ diff --git a/blockchains/ethereum/assets/0x16484d73Ac08d2355F466d448D2b79D2039F6EBB/info.json b/blockchains/ethereum/assets/0x16484d73Ac08d2355F466d448D2b79D2039F6EBB/info.json index 4ecf20b2a7a41..0501d3ce9c935 100644 --- a/blockchains/ethereum/assets/0x16484d73Ac08d2355F466d448D2b79D2039F6EBB/info.json +++ b/blockchains/ethereum/assets/0x16484d73Ac08d2355F466d448D2b79D2039F6EBB/info.json @@ -10,8 +10,8 @@ "id": "0x16484d73Ac08d2355F466d448D2b79D2039F6EBB", "links": [ { - "name": "twitter", - "url": "https://twitter.com/FortKnoxster" + "name": "x", + "url": "https://x.com/FortKnoxster" }, { "name": "telegram", @@ -49,4 +49,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048/info.json b/blockchains/ethereum/assets/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048/info.json new file mode 100644 index 0000000000000..53422b0588be3 --- /dev/null +++ b/blockchains/ethereum/assets/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048/info.json @@ -0,0 +1,24 @@ +{ + "name": "UnitedHealth tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "UnitedHealth tokenized stock (xStock) (UNHX) is a cryptocurrency and operates on the Solana platform. UnitedHealth tokenized stock (xStock) has a current supply of 2,000 with 1,000 in circulation. The last known price of UnitedHealth tokenized stock (xStock) is 349.28004226 USD and is down -1.37 over the last 24 hours. It is currently trading on 3 active market(s) with $570,164.67 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/unitedhealth-xstock.", + "explorer": "https://etherscan.io/token/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048", + "type": "ERC20", + "symbol": "UNHX", + "decimals": 18, + "status": "active", + "id": "0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/unitedhealth-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048/logo.png b/blockchains/ethereum/assets/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048/logo.png new file mode 100644 index 0000000000000..9051b3f336f0d Binary files /dev/null and b/blockchains/ethereum/assets/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048/logo.png differ diff --git a/blockchains/ethereum/assets/0x16980b3B4a3f9D89E33311B5aa8f80303E5ca4F8/info.json b/blockchains/ethereum/assets/0x16980b3B4a3f9D89E33311B5aa8f80303E5ca4F8/info.json index f674cccf2ed53..5ea740e0b37fe 100644 --- a/blockchains/ethereum/assets/0x16980b3B4a3f9D89E33311B5aa8f80303E5ca4F8/info.json +++ b/blockchains/ethereum/assets/0x16980b3B4a3f9D89E33311B5aa8f80303E5ca4F8/info.json @@ -14,8 +14,8 @@ "url": "https://git.kira.network" }, { - "name": "twitter", - "url": "https://twitter.com/kira_core" + "name": "x", + "url": "https://x.com/kira_core" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x16ECCfDbb4eE1A85A33f3A9B21175Cd7Ae753dB4/info.json b/blockchains/ethereum/assets/0x16ECCfDbb4eE1A85A33f3A9B21175Cd7Ae753dB4/info.json index bab6161dc6610..d37a2487ea5db 100644 --- a/blockchains/ethereum/assets/0x16ECCfDbb4eE1A85A33f3A9B21175Cd7Ae753dB4/info.json +++ b/blockchains/ethereum/assets/0x16ECCfDbb4eE1A85A33f3A9B21175Cd7Ae753dB4/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/router-protocol" }, { - "name": "twitter", - "url": "https://twitter.com/routerprotocol" + "name": "x", + "url": "https://x.com/routerprotocol" }, { "name": "coingecko", diff --git a/blockchains/ethereum/assets/0x175D9Dfd6850AA96460E29bC0cEad05756965E91/info.json b/blockchains/ethereum/assets/0x175D9Dfd6850AA96460E29bC0cEad05756965E91/info.json index fd66c8ee73bbe..7d3b0dc9f00ce 100644 --- a/blockchains/ethereum/assets/0x175D9Dfd6850AA96460E29bC0cEad05756965E91/info.json +++ b/blockchains/ethereum/assets/0x175D9Dfd6850AA96460E29bC0cEad05756965E91/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/iov-one" }, { - "name": "twitter", - "url": "https://twitter.com/starname_me" + "name": "x", + "url": "https://x.com/starname_me" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x17D8186Ed8F68059124190D147174D0f6697dc40/info.json b/blockchains/ethereum/assets/0x17D8186Ed8F68059124190D147174D0f6697dc40/info.json new file mode 100644 index 0000000000000..8bd618285525d --- /dev/null +++ b/blockchains/ethereum/assets/0x17D8186Ed8F68059124190D147174D0f6697dc40/info.json @@ -0,0 +1,24 @@ +{ + "name": "Merck tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Merck xStock (MRKx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. MRKx tracks the price of Merck & Co., Inc. (the underlying). MRKx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Merck & Co., Inc., whilst maintaining the benefits of blockchain technology. Merck, is a global biopharmaceutical company focused on developing and delivering innovative health solutions.", + "explorer": "https://etherscan.io/token/0x17D8186Ed8F68059124190D147174D0f6697dc40", + "type": "ERC20", + "symbol": "MRKX", + "decimals": 18, + "status": "active", + "id": "0x17D8186Ed8F68059124190D147174D0f6697dc40", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/merck-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x17D8186Ed8F68059124190D147174D0f6697dc40/logo.png b/blockchains/ethereum/assets/0x17D8186Ed8F68059124190D147174D0f6697dc40/logo.png new file mode 100644 index 0000000000000..8522e440e6053 Binary files /dev/null and b/blockchains/ethereum/assets/0x17D8186Ed8F68059124190D147174D0f6697dc40/logo.png differ diff --git a/blockchains/ethereum/assets/0x17EF75AA22dD5f6C2763b8304Ab24f40eE54D48a/info.json b/blockchains/ethereum/assets/0x17EF75AA22dD5f6C2763b8304Ab24f40eE54D48a/info.json index ae1da7cd3bb00..9d7afae17d3d6 100644 --- a/blockchains/ethereum/assets/0x17EF75AA22dD5f6C2763b8304Ab24f40eE54D48a/info.json +++ b/blockchains/ethereum/assets/0x17EF75AA22dD5f6C2763b8304Ab24f40eE54D48a/info.json @@ -10,8 +10,8 @@ "id": "0x17EF75AA22dD5f6C2763b8304Ab24f40eE54D48a", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Rev_Populi" + "name": "x", + "url": "https://x.com/Rev_Populi" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x17cB1b6623CEF547F16E4C125EBEF6Ec240Ec12a/info.json b/blockchains/ethereum/assets/0x17cB1b6623CEF547F16E4C125EBEF6Ec240Ec12a/info.json index d860ba2992489..32728950de37d 100644 --- a/blockchains/ethereum/assets/0x17cB1b6623CEF547F16E4C125EBEF6Ec240Ec12a/info.json +++ b/blockchains/ethereum/assets/0x17cB1b6623CEF547F16E4C125EBEF6Ec240Ec12a/info.json @@ -10,8 +10,8 @@ "id": "0x17cB1b6623CEF547F16E4C125EBEF6Ec240Ec12a", "links": [ { - "name": "twitter", - "url": "https://twitter.com/squid_grow" + "name": "x", + "url": "https://x.com/squid_grow" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x17d805a3f817e0e4E4d46c59d7c155bD907D8333/info.json b/blockchains/ethereum/assets/0x17d805a3f817e0e4E4d46c59d7c155bD907D8333/info.json new file mode 100644 index 0000000000000..39859f8ad3d0f --- /dev/null +++ b/blockchains/ethereum/assets/0x17d805a3f817e0e4E4d46c59d7c155bD907D8333/info.json @@ -0,0 +1,12 @@ +{ + "name": "SPAM WERC", + "type": "ERC20", + "symbol": "SPAM WERC", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://etherscan.io/token/0x17d805a3f817e0e4E4d46c59d7c155bD907D8333", + "explorer": "https://etherscan.io/token/0x17d805a3f817e0e4E4d46c59d7c155bD907D8333", + "status": "spam", + "id": "0x17d805a3f817e0e4E4d46c59d7c155bD907D8333" +} + diff --git a/blockchains/ethereum/assets/0x18084fbA666a33d37592fA2633fD49a74DD93a88/info.json b/blockchains/ethereum/assets/0x18084fbA666a33d37592fA2633fD49a74DD93a88/info.json new file mode 100644 index 0000000000000..713db95a8e80a --- /dev/null +++ b/blockchains/ethereum/assets/0x18084fbA666a33d37592fA2633fD49a74DD93a88/info.json @@ -0,0 +1,25 @@ +{ + "name": "tBTC v2 (tBTC)", + "type": "ERC20", + "symbol": "tBTC", + "decimals": 18, + "website": "https://threshold.network", + "description": "tBTC is a decentralized Bitcoin onchain that allows Bitcoin holders to use their BTC across multiple blockchains, decentralized finance, and other financial markets.", + "explorer": "https://etherscan.io/token/0x18084fbA666a33d37592fA2633fD49a74DD93a88", + "status": "active", + "id": "0x18084fbA666a33d37592fA2633fD49a74DD93a88", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tbtc-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tbtc" + } + ], + "tags": [ + "wrapped", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x18084fbA666a33d37592fA2633fD49a74DD93a88/logo.png b/blockchains/ethereum/assets/0x18084fbA666a33d37592fA2633fD49a74DD93a88/logo.png new file mode 100644 index 0000000000000..0d482b6fc9a31 Binary files /dev/null and b/blockchains/ethereum/assets/0x18084fbA666a33d37592fA2633fD49a74DD93a88/logo.png differ diff --git a/blockchains/ethereum/assets/0x185E5FA1B84F94D46ef2A33052aD39bD5f326fd8/info.json b/blockchains/ethereum/assets/0x185E5FA1B84F94D46ef2A33052aD39bD5f326fd8/info.json new file mode 100644 index 0000000000000..48f3bf3d3e879 --- /dev/null +++ b/blockchains/ethereum/assets/0x185E5FA1B84F94D46ef2A33052aD39bD5f326fd8/info.json @@ -0,0 +1,24 @@ +{ + "name": "Exodus Movement (Ondo Tokenized)", + "type": "ERC20", + "symbol": "EXODon", + "decimals": 18, + "description": "EXODon is the Ondo Tokenized version of Exodus Movement, giving tokenholders economic exposure similar to holding EXOD and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x185E5FA1B84F94D46ef2A33052aD39bD5f326fd8", + "status": "active", + "id": "0x185E5FA1B84F94D46ef2A33052aD39bD5f326fd8", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/exodus-movement-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x185E5FA1B84F94D46ef2A33052aD39bD5f326fd8/logo.png b/blockchains/ethereum/assets/0x185E5FA1B84F94D46ef2A33052aD39bD5f326fd8/logo.png new file mode 100644 index 0000000000000..6cedbcd6a8482 Binary files /dev/null and b/blockchains/ethereum/assets/0x185E5FA1B84F94D46ef2A33052aD39bD5f326fd8/logo.png differ diff --git a/blockchains/ethereum/assets/0x186eF81fd8E77EEC8BfFC3039e7eC41D5FC0b457/info.json b/blockchains/ethereum/assets/0x186eF81fd8E77EEC8BfFC3039e7eC41D5FC0b457/info.json new file mode 100644 index 0000000000000..1e4f3783bb781 --- /dev/null +++ b/blockchains/ethereum/assets/0x186eF81fd8E77EEC8BfFC3039e7eC41D5FC0b457/info.json @@ -0,0 +1,25 @@ +{ + "name": "Inspect", + "website": "https://www.inspect.xyz/", + "description": "Inspect, the first Layer 2 for X (x), merges SocialFi and DeFi in Web3. It revolutionizes crypto navigation in social media, offering tools for swaps, trend tracking, smart money engagement, and alpha interaction. Empowering users with insights, it reshapes decentralized-era social engagement.", + "explorer": "https://etherscan.io/token/0x186eF81fd8E77EEC8BfFC3039e7eC41D5FC0b457", + "symbol": "INSP", + "type": "ERC20", + "decimals": 18, + "id": "0x186eF81fd8E77EEC8BfFC3039e7eC41D5FC0b457", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/inspectxyz" + }, + { + "name": "telegram", + "url": "https://t.me/inspectxyz" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/inspect/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x186eF81fd8E77EEC8BfFC3039e7eC41D5FC0b457/logo.png b/blockchains/ethereum/assets/0x186eF81fd8E77EEC8BfFC3039e7eC41D5FC0b457/logo.png new file mode 100644 index 0000000000000..709d880c1fd80 Binary files /dev/null and b/blockchains/ethereum/assets/0x186eF81fd8E77EEC8BfFC3039e7eC41D5FC0b457/logo.png differ diff --git a/blockchains/ethereum/assets/0x18a4979bbB4c88275d4575d66B9c9CD6BeA0cD5E/info.json b/blockchains/ethereum/assets/0x18a4979bbB4c88275d4575d66B9c9CD6BeA0cD5E/info.json index 65a9700b078ff..936e380849d22 100644 --- a/blockchains/ethereum/assets/0x18a4979bbB4c88275d4575d66B9c9CD6BeA0cD5E/info.json +++ b/blockchains/ethereum/assets/0x18a4979bbB4c88275d4575d66B9c9CD6BeA0cD5E/info.json @@ -10,8 +10,8 @@ "id": "0x18a4979bbB4c88275d4575d66B9c9CD6BeA0cD5E", "links": [ { - "name": "twitter", - "url": "https://twitter.com/IdexTools" + "name": "x", + "url": "https://x.com/IdexTools" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb/info.json b/blockchains/ethereum/assets/0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb/info.json index 683bca191b636..0999a62b0b27b 100644 --- a/blockchains/ethereum/assets/0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb/info.json +++ b/blockchains/ethereum/assets/0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb/info.json @@ -10,8 +10,8 @@ "id": "0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ethswarm" + "name": "x", + "url": "https://x.com/ethswarm" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0x193Fdf644451CC394b28B9Cec2F5D32E2b4dE515/info.json b/blockchains/ethereum/assets/0x193Fdf644451CC394b28B9Cec2F5D32E2b4dE515/info.json new file mode 100644 index 0000000000000..51f25c27a8b88 --- /dev/null +++ b/blockchains/ethereum/assets/0x193Fdf644451CC394b28B9Cec2F5D32E2b4dE515/info.json @@ -0,0 +1,28 @@ +{ + "name": "PG&E (Ondo Tokenized)", + "type": "ERC20", + "symbol": "PCGon", + "decimals": 18, + "description": "PCGon is the Ondo Tokenized version of PG&E, giving tokenholders economic exposure similar to holding PCG and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x193Fdf644451CC394b28B9Cec2F5D32E2b4dE515", + "status": "active", + "id": "0x193Fdf644451CC394b28B9Cec2F5D32E2b4dE515", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pg-e-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pge-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x193Fdf644451CC394b28B9Cec2F5D32E2b4dE515/logo.png b/blockchains/ethereum/assets/0x193Fdf644451CC394b28B9Cec2F5D32E2b4dE515/logo.png new file mode 100644 index 0000000000000..d83a0ac367963 Binary files /dev/null and b/blockchains/ethereum/assets/0x193Fdf644451CC394b28B9Cec2F5D32E2b4dE515/logo.png differ diff --git a/blockchains/ethereum/assets/0x198d14F2Ad9CE69E76ea330B374DE4957C3F850a/info.json b/blockchains/ethereum/assets/0x198d14F2Ad9CE69E76ea330B374DE4957C3F850a/info.json index 970875faa7065..3047f7b3f76f4 100644 --- a/blockchains/ethereum/assets/0x198d14F2Ad9CE69E76ea330B374DE4957C3F850a/info.json +++ b/blockchains/ethereum/assets/0x198d14F2Ad9CE69E76ea330B374DE4957C3F850a/info.json @@ -10,8 +10,8 @@ "id": "0x198d14F2Ad9CE69E76ea330B374DE4957C3F850a", "links": [ { - "name": "twitter", - "url": "https://twitter.com/apenftorg" + "name": "x", + "url": "https://x.com/apenftorg" }, { "name": "telegram", @@ -30,5 +30,4 @@ "nft", "governance" ] -} - +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x19E98c4921aAb7E3f5FD2aDca36CFb669c63E926/info.json b/blockchains/ethereum/assets/0x19E98c4921aAb7E3f5FD2aDca36CFb669c63E926/info.json index e5ab0be0c0de3..c6d73ff5ab15d 100644 --- a/blockchains/ethereum/assets/0x19E98c4921aAb7E3f5FD2aDca36CFb669c63E926/info.json +++ b/blockchains/ethereum/assets/0x19E98c4921aAb7E3f5FD2aDca36CFb669c63E926/info.json @@ -10,8 +10,8 @@ "id": "0x19E98c4921aAb7E3f5FD2aDca36CFb669c63E926", "links": [ { - "name": "twitter", - "url": "https://twitter.com/colawork_COLA" + "name": "x", + "url": "https://x.com/colawork_COLA" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4/info.json b/blockchains/ethereum/assets/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4/info.json new file mode 100644 index 0000000000000..65e3da234cda7 --- /dev/null +++ b/blockchains/ethereum/assets/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4/info.json @@ -0,0 +1,24 @@ +{ + "name": "Eli Lilly tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Eli Lilly xStock (LLYx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. LLYx tracks the price of Eli Lilly and Company (the underlying). LLYx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Eli Lilly and Company, whilst maintaining the benefits of blockchain technology. Eli Lilly and Company is a global pharmaceutical company based in Indianapolis, Indiana, that discovers, develops, manufactures, and markets human healthcare products.", + "explorer": "https://etherscan.io/token/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4", + "type": "ERC20", + "symbol": "LLYX", + "decimals": 18, + "status": "active", + "id": "0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/eli-lilly-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4/logo.png b/blockchains/ethereum/assets/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4/logo.png new file mode 100644 index 0000000000000..59de8858e0884 Binary files /dev/null and b/blockchains/ethereum/assets/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4/logo.png differ diff --git a/blockchains/ethereum/assets/0x1A4b46696b2bB4794Eb3D4c26f1c55F9170fa4C5/info.json b/blockchains/ethereum/assets/0x1A4b46696b2bB4794Eb3D4c26f1c55F9170fa4C5/info.json index 565ae390070de..141b2402650e1 100644 --- a/blockchains/ethereum/assets/0x1A4b46696b2bB4794Eb3D4c26f1c55F9170fa4C5/info.json +++ b/blockchains/ethereum/assets/0x1A4b46696b2bB4794Eb3D4c26f1c55F9170fa4C5/info.json @@ -18,8 +18,8 @@ "url": "https://discord.com/invite/bitdao" }, { - "name": "twitter", - "url": "https://twitter.com/bitdao_official" + "name": "x", + "url": "https://x.com/bitdao_official" }, { "name": "telegram", @@ -38,4 +38,4 @@ "url": "https://coingecko.com/en/coins/bitdao" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1A963Df363D01EEBB2816b366d61C917F20e1EbE/info.json b/blockchains/ethereum/assets/0x1A963Df363D01EEBB2816b366d61C917F20e1EbE/info.json index 0d244474cd29d..fc44781fe7981 100644 --- a/blockchains/ethereum/assets/0x1A963Df363D01EEBB2816b366d61C917F20e1EbE/info.json +++ b/blockchains/ethereum/assets/0x1A963Df363D01EEBB2816b366d61C917F20e1EbE/info.json @@ -10,8 +10,8 @@ "id": "0x1A963Df363D01EEBB2816b366d61C917F20e1EbE", "links": [ { - "name": "twitter", - "url": "https://twitter.com/mememe69696969" + "name": "x", + "url": "https://x.com/mememe69696969" }, { "name": "coinmarketcap", diff --git a/blockchains/ethereum/assets/0x1AEd8C8e8F5AC86800b1e914D797929f0F93F9c1/info.json b/blockchains/ethereum/assets/0x1AEd8C8e8F5AC86800b1e914D797929f0F93F9c1/info.json new file mode 100644 index 0000000000000..36014453bc469 --- /dev/null +++ b/blockchains/ethereum/assets/0x1AEd8C8e8F5AC86800b1e914D797929f0F93F9c1/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE ĖTḨ", + "type": "ERC20", + "symbol": "FAKE ĖTḨ", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://etherscan.io/token/0x1AEd8C8e8F5AC86800b1e914D797929f0F93F9c1", + "explorer": "https://etherscan.io/token/0x1AEd8C8e8F5AC86800b1e914D797929f0F93F9c1", + "status": "spam", + "id": "0x1AEd8C8e8F5AC86800b1e914D797929f0F93F9c1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3/info.json b/blockchains/ethereum/assets/0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3/info.json new file mode 100644 index 0000000000000..6e8d081754795 --- /dev/null +++ b/blockchains/ethereum/assets/0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3/info.json @@ -0,0 +1,15 @@ +{ + "name": "Strategy PP Variable xStock", + "type": "ERC20", + "symbol": "STRCx", + "decimals": 18, + "description": "Strategy PP Variable xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://etherscan.io/token/0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3", + "status": "active", + "id": "0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3/logo.png b/blockchains/ethereum/assets/0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3/logo.png new file mode 100644 index 0000000000000..1407faeca0e8c Binary files /dev/null and b/blockchains/ethereum/assets/0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3/logo.png differ diff --git a/blockchains/ethereum/assets/0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e/info.json b/blockchains/ethereum/assets/0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e/info.json new file mode 100644 index 0000000000000..5804df07f0df8 --- /dev/null +++ b/blockchains/ethereum/assets/0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e/info.json @@ -0,0 +1,24 @@ +{ + "name": "Pfizer tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Pfizer xStock (PFEx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. PFEx tracks the price of Pfizer Inc. (the underlying). PFEx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Pfizer Inc., whilst maintaining the benefits of blockchain technology. Pfizer Inc. is a global biopharmaceutical company focused on discovering, developing, and delivering innovative medicines and vaccines to improve health and well-being.", + "explorer": "https://etherscan.io/token/0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e", + "type": "ERC20", + "symbol": "PFEX", + "decimals": 18, + "status": "active", + "id": "0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pfizer-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e/logo.png b/blockchains/ethereum/assets/0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e/logo.png new file mode 100644 index 0000000000000..c35598c6466ac Binary files /dev/null and b/blockchains/ethereum/assets/0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e/logo.png differ diff --git a/blockchains/ethereum/assets/0x1B6e9c73beE68102d9dd4A2627f97bFf4183ab0A/info.json b/blockchains/ethereum/assets/0x1B6e9c73beE68102d9dd4A2627f97bFf4183ab0A/info.json new file mode 100644 index 0000000000000..a4dc2dc663ac6 --- /dev/null +++ b/blockchains/ethereum/assets/0x1B6e9c73beE68102d9dd4A2627f97bFf4183ab0A/info.json @@ -0,0 +1,52 @@ +{ + "name": "Openleverage Token V2", + "website": "https://openleverage.finance/", + "description": "OpenLeverage is a permissionless money market protocol enabling decentralized lending, borrowing, and margin trading across a diverse range of cryptocurrency pairs, fostering an accessible and efficient DeFi ecosystem.", + "explorer": "https://etherscan.io/token/0x1B6e9c73beE68102d9dd4A2627f97bFf4183ab0A", + "type": "ERC20", + "symbol": "OLE", + "decimals": 18, + "status": "active", + "id": "0x1B6e9c73beE68102d9dd4A2627f97bFf4183ab0A", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/OpenLeverage" + }, + { + "name": "discord", + "url": "https://discord.com/invite/openleverage" + }, + { + "name": "medium", + "url": "https://openleverage.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/openleverage/" + }, + { + "name": "docs", + "url": "https://docs.openleverage.finance/main/" + }, + { + "name": "telegram", + "url": "https://t.me/openleverageofficial" + }, + { + "name": "github", + "url": "https://github.com/OpenLeverageDev/openleverage-contracts" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/openleverage" + }, + { + "name": "youtube", + "url": "https://youtube.com/@openleverageprotocol9047" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1B6e9c73beE68102d9dd4A2627f97bFf4183ab0A/logo.png b/blockchains/ethereum/assets/0x1B6e9c73beE68102d9dd4A2627f97bFf4183ab0A/logo.png new file mode 100644 index 0000000000000..c43b83973316f Binary files /dev/null and b/blockchains/ethereum/assets/0x1B6e9c73beE68102d9dd4A2627f97bFf4183ab0A/logo.png differ diff --git a/blockchains/ethereum/assets/0x1B8E12F839BD4e73A47adDF76cF7F0097d74c14C/info.json b/blockchains/ethereum/assets/0x1B8E12F839BD4e73A47adDF76cF7F0097d74c14C/info.json index 02cbe23721d8a..3961fe8b18c7b 100644 --- a/blockchains/ethereum/assets/0x1B8E12F839BD4e73A47adDF76cF7F0097d74c14C/info.json +++ b/blockchains/ethereum/assets/0x1B8E12F839BD4e73A47adDF76cF7F0097d74c14C/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/valuedefi" }, { - "name": "twitter", - "url": "https://twitter.com/value_defi" + "name": "x", + "url": "https://x.com/value_defi" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x1B9BAF2A3EdeA91eE431f02d449a1044d5726669/info.json b/blockchains/ethereum/assets/0x1B9BAF2A3EdeA91eE431f02d449a1044d5726669/info.json index 88d486accada4..cee2170d7463f 100644 --- a/blockchains/ethereum/assets/0x1B9BAF2A3EdeA91eE431f02d449a1044d5726669/info.json +++ b/blockchains/ethereum/assets/0x1B9BAF2A3EdeA91eE431f02d449a1044d5726669/info.json @@ -10,8 +10,8 @@ "id": "0x1B9BAF2A3EdeA91eE431f02d449a1044d5726669", "links": [ { - "name": "twitter", - "url": "https://twitter.com/clifftoken" + "name": "x", + "url": "https://x.com/clifftoken" }, { "name": "telegram", @@ -29,4 +29,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1BBf25e71EC48B84d773809B4bA55B6F4bE946Fb/info.json b/blockchains/ethereum/assets/0x1BBf25e71EC48B84d773809B4bA55B6F4bE946Fb/info.json new file mode 100644 index 0000000000000..31fa067278611 --- /dev/null +++ b/blockchains/ethereum/assets/0x1BBf25e71EC48B84d773809B4bA55B6F4bE946Fb/info.json @@ -0,0 +1,17 @@ +{ + "name": "Vow", + "type": "ERC20", + "symbol": "VOW", + "decimals": 18, + "website": "http://vowcurrency.com/", + "description": "The Vow ecosystem incentivizes a global shift from centralized issuance of currency, to decentralized issuance of currency.", + "explorer": "https://etherscan.io/token/0x1BBf25e71EC48B84d773809B4bA55B6F4bE946Fb", + "status": "active", + "id": "0x1BBf25e71EC48B84d773809B4bA55B6F4bE946Fb", + "links": [ + { + "name": "x", + "url": "https://x.com/vowcurrency" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1BBf25e71EC48B84d773809B4bA55B6F4bE946Fb/logo.png b/blockchains/ethereum/assets/0x1BBf25e71EC48B84d773809B4bA55B6F4bE946Fb/logo.png new file mode 100644 index 0000000000000..433d659d380df Binary files /dev/null and b/blockchains/ethereum/assets/0x1BBf25e71EC48B84d773809B4bA55B6F4bE946Fb/logo.png differ diff --git a/blockchains/ethereum/assets/0x1BED97CBC3c24A4fb5C069C6E311a967386131f7/info.json b/blockchains/ethereum/assets/0x1BED97CBC3c24A4fb5C069C6E311a967386131f7/info.json new file mode 100644 index 0000000000000..58712d859efbb --- /dev/null +++ b/blockchains/ethereum/assets/0x1BED97CBC3c24A4fb5C069C6E311a967386131f7/info.json @@ -0,0 +1,21 @@ +{ + "name": "Yearn Ether", + "website": "https://yearn.finance/", + "description": "THE DEFI WAY TO EARN ON CRYPTO", + "explorer": "https://etherscan.io/token/0x1bed97cbc3c24a4fb5c069c6e311a967386131f7", + "type": "ERC20", + "symbol": "YETH", + "decimals": 18, + "status": "active", + "id": "0x1BED97CBC3c24A4fb5C069C6E311a967386131f7", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/yearn-ether" + }, + { + "name": "x", + "url": "https://x.com/iearnfinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1BED97CBC3c24A4fb5C069C6E311a967386131f7/logo.png b/blockchains/ethereum/assets/0x1BED97CBC3c24A4fb5C069C6E311a967386131f7/logo.png new file mode 100644 index 0000000000000..1c94a9e2e07eb Binary files /dev/null and b/blockchains/ethereum/assets/0x1BED97CBC3c24A4fb5C069C6E311a967386131f7/logo.png differ diff --git a/blockchains/ethereum/assets/0x1Bbe973BeF3a977Fc51CbED703E8ffDEfE001Fed/info.json b/blockchains/ethereum/assets/0x1Bbe973BeF3a977Fc51CbED703E8ffDEfE001Fed/info.json new file mode 100644 index 0000000000000..b4b6f48b6e5be --- /dev/null +++ b/blockchains/ethereum/assets/0x1Bbe973BeF3a977Fc51CbED703E8ffDEfE001Fed/info.json @@ -0,0 +1,21 @@ +{ + "name": "PORTAL", + "type": "ERC20", + "symbol": "PORTAL", + "decimals": 18, + "website": "https://www.portalgaming.com/", + "description": "Portal aims to unite games and gamers from various blockchain networks on its cross-chain token platform, establishing a united Web3 gaming ecosystem.", + "explorer": "https://etherscan.io/token/0x1bbe973bef3a977fc51cbed703e8ffdefe001fed", + "status": "active", + "id": "0x1Bbe973BeF3a977Fc51CbED703E8ffDEfE001Fed", + "links": [ + { + "name": "x", + "url": "https://x.com/PortalCoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/portal-gaming/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1Bbe973BeF3a977Fc51CbED703E8ffDEfE001Fed/logo.png b/blockchains/ethereum/assets/0x1Bbe973BeF3a977Fc51CbED703E8ffDEfE001Fed/logo.png new file mode 100644 index 0000000000000..cee3db74b8485 Binary files /dev/null and b/blockchains/ethereum/assets/0x1Bbe973BeF3a977Fc51CbED703E8ffDEfE001Fed/logo.png differ diff --git a/blockchains/ethereum/assets/0x1C174711f3FD63C4165d6F296b3eB19D17fde94a/info.json b/blockchains/ethereum/assets/0x1C174711f3FD63C4165d6F296b3eB19D17fde94a/info.json new file mode 100644 index 0000000000000..14541ffc225f9 --- /dev/null +++ b/blockchains/ethereum/assets/0x1C174711f3FD63C4165d6F296b3eB19D17fde94a/info.json @@ -0,0 +1,28 @@ +{ + "name": "Grab Holdings (Ondo Tokenized)", + "type": "ERC20", + "symbol": "GRABon", + "decimals": 18, + "description": "GRABon is the Ondo Tokenized version of Grab Holdings, giving tokenholders economic exposure similar to holding GRAB and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x1C174711f3FD63C4165d6F296b3eB19D17fde94a", + "status": "active", + "id": "0x1C174711f3FD63C4165d6F296b3eB19D17fde94a", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/grab-holdings-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/grab-holdings-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1C174711f3FD63C4165d6F296b3eB19D17fde94a/logo.png b/blockchains/ethereum/assets/0x1C174711f3FD63C4165d6F296b3eB19D17fde94a/logo.png new file mode 100644 index 0000000000000..2a02e71a43ced Binary files /dev/null and b/blockchains/ethereum/assets/0x1C174711f3FD63C4165d6F296b3eB19D17fde94a/logo.png differ diff --git a/blockchains/ethereum/assets/0x1C700F95Df53fc31e83D89AC89e5DD778D4cD310/info.json b/blockchains/ethereum/assets/0x1C700F95Df53fc31e83D89AC89e5DD778D4cD310/info.json new file mode 100644 index 0000000000000..2dc2d6b0be646 --- /dev/null +++ b/blockchains/ethereum/assets/0x1C700F95Df53fc31e83D89AC89e5DD778D4cD310/info.json @@ -0,0 +1,17 @@ +{ + "name": "HARD", + "type": "ERC20", + "symbol": "HARD", + "decimals": 6, + "website": "https://app.kava.io", + "description": "Kava Lend is a decentralized money market built on the Kava Platform that enables the lending and borrowing of cross-chain assets", + "explorer": "https://etherscan.io/token/0x1C700F95Df53fc31e83D89AC89e5DD778D4cD310", + "status": "active", + "id": "0x1C700F95Df53fc31e83D89AC89e5DD778D4cD310", + "links": [ + { + "name": "x", + "url": "https://x.com/hard_protocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1C700F95Df53fc31e83D89AC89e5DD778D4cD310/logo.png b/blockchains/ethereum/assets/0x1C700F95Df53fc31e83D89AC89e5DD778D4cD310/logo.png new file mode 100644 index 0000000000000..918d274f22dfe Binary files /dev/null and b/blockchains/ethereum/assets/0x1C700F95Df53fc31e83D89AC89e5DD778D4cD310/logo.png differ diff --git a/blockchains/ethereum/assets/0x1C9922314ED1415c95b9FD453c3818fd41867d0B/info.json b/blockchains/ethereum/assets/0x1C9922314ED1415c95b9FD453c3818fd41867d0B/info.json index 45ada44ad6661..0b81086777032 100644 --- a/blockchains/ethereum/assets/0x1C9922314ED1415c95b9FD453c3818fd41867d0B/info.json +++ b/blockchains/ethereum/assets/0x1C9922314ED1415c95b9FD453c3818fd41867d0B/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/TowerToken" + "name": "x", + "url": "https://x.com/TowerToken" }, { "name": "discord", diff --git a/blockchains/ethereum/assets/0x1E2F15302B90EddE696593607b6bD444B64e8F02/info.json b/blockchains/ethereum/assets/0x1E2F15302B90EddE696593607b6bD444B64e8F02/info.json index 4508d1e96f636..1df724fb4cbe7 100644 --- a/blockchains/ethereum/assets/0x1E2F15302B90EddE696593607b6bD444B64e8F02/info.json +++ b/blockchains/ethereum/assets/0x1E2F15302B90EddE696593607b6bD444B64e8F02/info.json @@ -10,8 +10,8 @@ "id": "0x1E2F15302B90EddE696593607b6bD444B64e8F02", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ShiryoInu" + "name": "x", + "url": "https://x.com/ShiryoInu" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x1E4EDE388cbc9F4b5c79681B7f94d36a11ABEBC9/info.json b/blockchains/ethereum/assets/0x1E4EDE388cbc9F4b5c79681B7f94d36a11ABEBC9/info.json index 20902d5521e30..513007fc0b9fd 100644 --- a/blockchains/ethereum/assets/0x1E4EDE388cbc9F4b5c79681B7f94d36a11ABEBC9/info.json +++ b/blockchains/ethereum/assets/0x1E4EDE388cbc9F4b5c79681B7f94d36a11ABEBC9/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/the_x2y2" + "name": "x", + "url": "https://x.com/the_x2y2" }, { "name": "coingecko", diff --git a/blockchains/ethereum/assets/0x1Ec8eaa3f68261e793C48486b12092336A03c479/info.json b/blockchains/ethereum/assets/0x1Ec8eaa3f68261e793C48486b12092336A03c479/info.json new file mode 100644 index 0000000000000..3094b2d0ff0a7 --- /dev/null +++ b/blockchains/ethereum/assets/0x1Ec8eaa3f68261e793C48486b12092336A03c479/info.json @@ -0,0 +1,24 @@ +{ + "name": "AUTOfinance", + "type": "ERC20", + "symbol": "AUTO", + "decimals": 18, + "website": "https://app.auto.finance", + "description": "Yield, on AUTO. Autopools aggregate blue-chip DeFi protocols, optimally and autonomously rebalancing between destinations.", + "explorer": "https://etherscan.io/token/0x1Ec8eaa3f68261e793C48486b12092336A03c479", + "status": "active", + "id": "0x1Ec8eaa3f68261e793C48486b12092336A03c479", + "links": [ + { + "name": "x", + "url": "https://x.com/autopools" + }, + { + "name": "blog", + "url": "https://blog.auto.finance" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/ethereum/assets/0x1Ec8eaa3f68261e793C48486b12092336A03c479/logo.png b/blockchains/ethereum/assets/0x1Ec8eaa3f68261e793C48486b12092336A03c479/logo.png new file mode 100644 index 0000000000000..b0d1fbb7f02c2 Binary files /dev/null and b/blockchains/ethereum/assets/0x1Ec8eaa3f68261e793C48486b12092336A03c479/logo.png differ diff --git a/blockchains/ethereum/assets/0x1F573D6Fb3F13d689FF844B4cE37794d79a7FF1C/info.json b/blockchains/ethereum/assets/0x1F573D6Fb3F13d689FF844B4cE37794d79a7FF1C/info.json index 81c3dd0f35872..9033b05f02fc6 100644 --- a/blockchains/ethereum/assets/0x1F573D6Fb3F13d689FF844B4cE37794d79a7FF1C/info.json +++ b/blockchains/ethereum/assets/0x1F573D6Fb3F13d689FF844B4cE37794d79a7FF1C/info.json @@ -18,8 +18,8 @@ "url": "https://github.com/bancorprotocol" }, { - "name": "twitter", - "url": "https://twitter.com/bancornetwork" + "name": "x", + "url": "https://x.com/bancornetwork" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0x1F5fc5c3c8B0F15c7E21AF623936FF2b210b6415/info.json b/blockchains/ethereum/assets/0x1F5fc5c3c8B0F15c7E21AF623936FF2b210b6415/info.json new file mode 100644 index 0000000000000..7568c2a4435d5 --- /dev/null +++ b/blockchains/ethereum/assets/0x1F5fc5c3c8B0F15c7E21AF623936FF2b210b6415/info.json @@ -0,0 +1,28 @@ +{ + "name": "United States Oil Fund (Ondo Tokenized)", + "type": "ERC20", + "symbol": "USOon", + "decimals": 18, + "description": "USOon is the Ondo Tokenized version of the United States Oil Fund, giving tokenholders economic exposure similar to holding USO and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x1F5fc5c3c8B0F15c7E21AF623936FF2b210b6415", + "status": "active", + "id": "0x1F5fc5c3c8B0F15c7E21AF623936FF2b210b6415", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/united-states-oil-fund-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/united-states-oil-tokenized-fund-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1F5fc5c3c8B0F15c7E21AF623936FF2b210b6415/logo.png b/blockchains/ethereum/assets/0x1F5fc5c3c8B0F15c7E21AF623936FF2b210b6415/logo.png new file mode 100644 index 0000000000000..56d2b7feafd3b Binary files /dev/null and b/blockchains/ethereum/assets/0x1F5fc5c3c8B0F15c7E21AF623936FF2b210b6415/logo.png differ diff --git a/blockchains/ethereum/assets/0x1F70300BCe8c2302780BD0a153ebb75B8CA7efCb/info.json b/blockchains/ethereum/assets/0x1F70300BCe8c2302780BD0a153ebb75B8CA7efCb/info.json new file mode 100644 index 0000000000000..d46ce61ebc2e0 --- /dev/null +++ b/blockchains/ethereum/assets/0x1F70300BCe8c2302780BD0a153ebb75B8CA7efCb/info.json @@ -0,0 +1,21 @@ +{ + "name": "Mini Donald", + "symbol": "BARRON", + "type": "ERC20", + "decimals": 9, + "description": "Mini Donald is a meme coin that's bringing a fresh twist to the crypto world. With a charming and instantly recognizable logo, Mini Donald is set to capture the hearts of meme enthusiasts and crypto traders alike.", + "website": "https://mini-donald.com/", + "explorer": "https://etherscan.io/token/0x1f70300bce8c2302780bd0a153ebb75b8ca7efcb", + "status": "active", + "id": "0x1F70300BCe8c2302780BD0a153ebb75B8CA7efCb", + "links": [ + { + "name": "x", + "url": "https://x.com/MiniDonaldETH" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mini-donald" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1F70300BCe8c2302780BD0a153ebb75B8CA7efCb/logo.png b/blockchains/ethereum/assets/0x1F70300BCe8c2302780BD0a153ebb75B8CA7efCb/logo.png new file mode 100644 index 0000000000000..f12e42dc8eff6 Binary files /dev/null and b/blockchains/ethereum/assets/0x1F70300BCe8c2302780BD0a153ebb75B8CA7efCb/logo.png differ diff --git a/blockchains/ethereum/assets/0x1a7e4e63778B4f12a199C062f3eFdD288afCBce8/info.json b/blockchains/ethereum/assets/0x1a7e4e63778B4f12a199C062f3eFdD288afCBce8/info.json new file mode 100644 index 0000000000000..b916aad1b679e --- /dev/null +++ b/blockchains/ethereum/assets/0x1a7e4e63778B4f12a199C062f3eFdD288afCBce8/info.json @@ -0,0 +1,37 @@ +{ + "name": "EURA", + "website": "https://www.angle.money/", + "description": "EURA is an over-collateralized and decentralized Euro stablecoin by the Angle Protocol.", + "explorer": "https://etherscan.io/token/0x1a7e4e63778B4f12a199C062f3eFdD288afCBce8", + "type": "ERC20", + "symbol": "EURA", + "decimals": 18, + "status": "active", + "tags": [ + "defi", + "stablecoin" + ], + "id": "0x1a7e4e63778B4f12a199C062f3eFdD288afCBce8", + "links": [ + { + "name": "github", + "url": "https://github.com/AngleProtocol" + }, + { + "name": "x", + "url": "https://x.com/AngleProtocol" + }, + { + "name": "docs", + "url": "https://docs.angle.money" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ageur" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZheVAnFt6h" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1a7e4e63778B4f12a199C062f3eFdD288afCBce8/logo.png b/blockchains/ethereum/assets/0x1a7e4e63778B4f12a199C062f3eFdD288afCBce8/logo.png new file mode 100644 index 0000000000000..b80f4f7f9341b Binary files /dev/null and b/blockchains/ethereum/assets/0x1a7e4e63778B4f12a199C062f3eFdD288afCBce8/logo.png differ diff --git a/blockchains/ethereum/assets/0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c/info.json b/blockchains/ethereum/assets/0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c/info.json new file mode 100644 index 0000000000000..4961daaa51ae1 --- /dev/null +++ b/blockchains/ethereum/assets/0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c/info.json @@ -0,0 +1,21 @@ +{ + "name": "EURC", + "type": "ERC20", + "symbol": "EURC", + "decimals": 6, + "website": "https://www.circle.com/en/eurc", + "description": "EURC is a euro-backed stablecoin issued by Circle. EURC is designed to provide a faster, safer, and more efficient way to send, spend, and exchange money around the world.", + "explorer": "https://etherscan.io/token/0x1abaea1f7c830bd89acc67ec4af516284b1bc33c", + "status": "active", + "id": "0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c", + "links": [ + { + "name": "x", + "url": "https://x.com/circle" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/euro-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c/logo.png b/blockchains/ethereum/assets/0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c/logo.png new file mode 100644 index 0000000000000..f23fbed3cbe9e Binary files /dev/null and b/blockchains/ethereum/assets/0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c/logo.png differ diff --git a/blockchains/ethereum/assets/0x1aa1e61369874bae3444A8Ef6528d6b13D6952EF/info.json b/blockchains/ethereum/assets/0x1aa1e61369874bae3444A8Ef6528d6b13D6952EF/info.json index c0ae70a119edc..dfb799ebf4e26 100644 --- a/blockchains/ethereum/assets/0x1aa1e61369874bae3444A8Ef6528d6b13D6952EF/info.json +++ b/blockchains/ethereum/assets/0x1aa1e61369874bae3444A8Ef6528d6b13D6952EF/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/ichifarm" }, { - "name": "twitter", - "url": "https://twitter.com/ichifoundation" + "name": "x", + "url": "https://x.com/ichifoundation" }, { "name": "telegram", @@ -29,4 +29,4 @@ "url": "https://medium.com/ichifarm" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1b468d5535Ed7C19Ce42f0073db7Fdf441028131/info.json b/blockchains/ethereum/assets/0x1b468d5535Ed7C19Ce42f0073db7Fdf441028131/info.json new file mode 100644 index 0000000000000..5efcc0e49fa39 --- /dev/null +++ b/blockchains/ethereum/assets/0x1b468d5535Ed7C19Ce42f0073db7Fdf441028131/info.json @@ -0,0 +1,24 @@ +{ + "name": "Albemarle (Ondo Tokenized)", + "type": "ERC20", + "symbol": "ALBon", + "decimals": 18, + "description": "ALBon is the Ondo Tokenized version of Albemarle, giving tokenholders economic exposure similar to holding ALB and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x1b468d5535Ed7C19Ce42f0073db7Fdf441028131", + "status": "active", + "id": "0x1b468d5535Ed7C19Ce42f0073db7Fdf441028131", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/albemarle-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1b468d5535Ed7C19Ce42f0073db7Fdf441028131/logo.png b/blockchains/ethereum/assets/0x1b468d5535Ed7C19Ce42f0073db7Fdf441028131/logo.png new file mode 100644 index 0000000000000..ffdd61f22496d Binary files /dev/null and b/blockchains/ethereum/assets/0x1b468d5535Ed7C19Ce42f0073db7Fdf441028131/logo.png differ diff --git a/blockchains/ethereum/assets/0x1b5036bEc1B82D44d52Fa953A370b3c6Cd9328B5/info.json b/blockchains/ethereum/assets/0x1b5036bEc1B82D44d52Fa953A370b3c6Cd9328B5/info.json index 49a0ad4e43da8..97e84b19f3c76 100644 --- a/blockchains/ethereum/assets/0x1b5036bEc1B82D44d52Fa953A370b3c6Cd9328B5/info.json +++ b/blockchains/ethereum/assets/0x1b5036bEc1B82D44d52Fa953A370b3c6Cd9328B5/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/ElanFutureOfficial" }, { - "name": "twitter", - "url": "https://twitter.com/ElanFuture" + "name": "x", + "url": "https://x.com/ElanFuture" }, { "name": "coingecko", diff --git a/blockchains/ethereum/assets/0x1b8d3e59b31981385C066eE0916Ec964628ff1f9/info.json b/blockchains/ethereum/assets/0x1b8d3e59b31981385C066eE0916Ec964628ff1f9/info.json new file mode 100644 index 0000000000000..0c40ff2a3fcaa --- /dev/null +++ b/blockchains/ethereum/assets/0x1b8d3e59b31981385C066eE0916Ec964628ff1f9/info.json @@ -0,0 +1,28 @@ +{ + "name": "BigBear.ai Holdings (Ondo Tokenized)", + "type": "ERC20", + "symbol": "BBAIon", + "decimals": 18, + "description": "BBAIon is the Ondo Tokenized version of BigBear.ai Holdings, giving tokenholders economic exposure similar to holding BBAI and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x1b8d3e59b31981385C066eE0916Ec964628ff1f9", + "status": "active", + "id": "0x1b8d3e59b31981385C066eE0916Ec964628ff1f9", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bigbear-ai-holdings-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bigbearai-holdings-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1b8d3e59b31981385C066eE0916Ec964628ff1f9/logo.png b/blockchains/ethereum/assets/0x1b8d3e59b31981385C066eE0916Ec964628ff1f9/logo.png new file mode 100644 index 0000000000000..a7211c017cf52 Binary files /dev/null and b/blockchains/ethereum/assets/0x1b8d3e59b31981385C066eE0916Ec964628ff1f9/logo.png differ diff --git a/blockchains/ethereum/assets/0x1c5FA55eAdE69ae98571059332520F73733C2D82/info.json b/blockchains/ethereum/assets/0x1c5FA55eAdE69ae98571059332520F73733C2D82/info.json new file mode 100644 index 0000000000000..50aa10d5f5d77 --- /dev/null +++ b/blockchains/ethereum/assets/0x1c5FA55eAdE69ae98571059332520F73733C2D82/info.json @@ -0,0 +1,28 @@ +{ + "name": "Amgen (Ondo Tokenized)", + "type": "ERC20", + "symbol": "AMGNon", + "decimals": 18, + "description": "AMGNon is the Ondo Tokenized version of Amgen, giving tokenholders economic exposure similar to holding AMGN and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x1c5FA55eAdE69ae98571059332520F73733C2D82", + "status": "active", + "id": "0x1c5FA55eAdE69ae98571059332520F73733C2D82", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/amgen-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/amgen-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1c5FA55eAdE69ae98571059332520F73733C2D82/logo.png b/blockchains/ethereum/assets/0x1c5FA55eAdE69ae98571059332520F73733C2D82/logo.png new file mode 100644 index 0000000000000..5716d513e17d8 Binary files /dev/null and b/blockchains/ethereum/assets/0x1c5FA55eAdE69ae98571059332520F73733C2D82/logo.png differ diff --git a/blockchains/ethereum/assets/0x1cB673005fc58447D881486919c14D8e7C741Bb1/info.json b/blockchains/ethereum/assets/0x1cB673005fc58447D881486919c14D8e7C741Bb1/info.json new file mode 100644 index 0000000000000..058b1874d46cc --- /dev/null +++ b/blockchains/ethereum/assets/0x1cB673005fc58447D881486919c14D8e7C741Bb1/info.json @@ -0,0 +1,24 @@ +{ + "name": "Franklin Responsibly Sourced Gold ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "FGDLon", + "decimals": 18, + "description": "FGDLon is the Ondo Tokenized version of the Franklin Responsibly Sourced Gold ETF, giving tokenholders economic exposure similar to holding FGDL and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x1cB673005fc58447D881486919c14D8e7C741Bb1", + "status": "active", + "id": "0x1cB673005fc58447D881486919c14D8e7C741Bb1", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/franklin-responsibly-sourced-gold-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1cB673005fc58447D881486919c14D8e7C741Bb1/logo.png b/blockchains/ethereum/assets/0x1cB673005fc58447D881486919c14D8e7C741Bb1/logo.png new file mode 100644 index 0000000000000..3537d0913db28 Binary files /dev/null and b/blockchains/ethereum/assets/0x1cB673005fc58447D881486919c14D8e7C741Bb1/logo.png differ diff --git a/blockchains/ethereum/assets/0x1cBb83EbcD552D5EBf8131eF8c9CD9d9BAB342bC/info.json b/blockchains/ethereum/assets/0x1cBb83EbcD552D5EBf8131eF8c9CD9d9BAB342bC/info.json index ce3e1750234c6..b3a38cde33192 100644 --- a/blockchains/ethereum/assets/0x1cBb83EbcD552D5EBf8131eF8c9CD9d9BAB342bC/info.json +++ b/blockchains/ethereum/assets/0x1cBb83EbcD552D5EBf8131eF8c9CD9d9BAB342bC/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/NFYFinance/" }, { - "name": "twitter", - "url": "https://twitter.com/NFYFinance" + "name": "x", + "url": "https://x.com/NFYFinance" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x1ce270557C1f68Cfb577b856766310Bf8B47FD9C/info.json b/blockchains/ethereum/assets/0x1ce270557C1f68Cfb577b856766310Bf8B47FD9C/info.json index 154e0202a3f14..742b3cf9c246c 100644 --- a/blockchains/ethereum/assets/0x1ce270557C1f68Cfb577b856766310Bf8B47FD9C/info.json +++ b/blockchains/ethereum/assets/0x1ce270557C1f68Cfb577b856766310Bf8B47FD9C/info.json @@ -10,8 +10,8 @@ "id": "0x1ce270557C1f68Cfb577b856766310Bf8B47FD9C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/mong_coin" + "name": "x", + "url": "https://x.com/mong_coin" }, { "name": "medium", diff --git a/blockchains/ethereum/assets/0x1d350417d9787E000cc1b95d70E9536DcD91F373/info.json b/blockchains/ethereum/assets/0x1d350417d9787E000cc1b95d70E9536DcD91F373/info.json index fcdb33f7e13c8..c1a020eceaa80 100644 --- a/blockchains/ethereum/assets/0x1d350417d9787E000cc1b95d70E9536DcD91F373/info.json +++ b/blockchains/ethereum/assets/0x1d350417d9787E000cc1b95d70E9536DcD91F373/info.json @@ -10,8 +10,8 @@ "id": "0x1d350417d9787E000cc1b95d70E9536DcD91F373", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MirrorProtocol" + "name": "x", + "url": "https://x.com/MirrorProtocol" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x1e987DF68CC13d271e621ec82E050A1BbD62c180/info.json b/blockchains/ethereum/assets/0x1e987DF68CC13d271e621ec82E050A1BbD62c180/info.json index 2d32b5ebba2c3..2b5927507a11d 100644 --- a/blockchains/ethereum/assets/0x1e987DF68CC13d271e621ec82E050A1BbD62c180/info.json +++ b/blockchains/ethereum/assets/0x1e987DF68CC13d271e621ec82E050A1BbD62c180/info.json @@ -18,8 +18,8 @@ "url": "https://coinmarketcap.com/currencies/wagmi-game/" }, { - "name": "twitter", - "url": "https://twitter.com/WagmiGameCo" + "name": "x", + "url": "https://x.com/WagmiGameCo" }, { "name": "facebook", @@ -33,4 +33,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984/info.json b/blockchains/ethereum/assets/0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984/info.json index 63922ae967851..08ec2dab742f2 100644 --- a/blockchains/ethereum/assets/0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984/info.json +++ b/blockchains/ethereum/assets/0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984/info.json @@ -19,8 +19,8 @@ "url": "https://discord.com/invite/XErMcTq" }, { - "name": "twitter", - "url": "https://twitter.com/UniswapProtocol" + "name": "x", + "url": "https://x.com/UniswapProtocol" }, { "name": "blog", diff --git a/blockchains/ethereum/assets/0x1fE2126bC05E4BB0468C4a198e930c889e1054a3/info.json b/blockchains/ethereum/assets/0x1fE2126bC05E4BB0468C4a198e930c889e1054a3/info.json new file mode 100644 index 0000000000000..246fa872a5e31 --- /dev/null +++ b/blockchains/ethereum/assets/0x1fE2126bC05E4BB0468C4a198e930c889e1054a3/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Semiconductor ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "SOXXon", + "decimals": 18, + "description": "SOXXon is the Ondo Tokenized version of the iShares Semiconductor ETF, giving tokenholders economic exposure similar to holding SOXX and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x1fE2126bC05E4BB0468C4a198e930c889e1054a3", + "status": "active", + "id": "0x1fE2126bC05E4BB0468C4a198e930c889e1054a3", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-semiconductor-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1fE2126bC05E4BB0468C4a198e930c889e1054a3/logo.png b/blockchains/ethereum/assets/0x1fE2126bC05E4BB0468C4a198e930c889e1054a3/logo.png new file mode 100644 index 0000000000000..2ce033b091a15 Binary files /dev/null and b/blockchains/ethereum/assets/0x1fE2126bC05E4BB0468C4a198e930c889e1054a3/logo.png differ diff --git a/blockchains/ethereum/assets/0x1fE24F25b1Cf609B9c4e7E12D802e3640dFA5e43/info.json b/blockchains/ethereum/assets/0x1fE24F25b1Cf609B9c4e7E12D802e3640dFA5e43/info.json index 06b8ba12cfd89..6da8902b94a12 100644 --- a/blockchains/ethereum/assets/0x1fE24F25b1Cf609B9c4e7E12D802e3640dFA5e43/info.json +++ b/blockchains/ethereum/assets/0x1fE24F25b1Cf609B9c4e7E12D802e3640dFA5e43/info.json @@ -10,8 +10,8 @@ "id": "0x1fE24F25b1Cf609B9c4e7E12D802e3640dFA5e43", "links": [ { - "name": "twitter", - "url": "https://twitter.com/chainguardians" + "name": "x", + "url": "https://x.com/chainguardians" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1fb5a8DCd70bE750a97Eaf8a47bBe74Ab7d3183e/info.json b/blockchains/ethereum/assets/0x1fb5a8DCd70bE750a97Eaf8a47bBe74Ab7d3183e/info.json new file mode 100644 index 0000000000000..21bab6e9cd888 --- /dev/null +++ b/blockchains/ethereum/assets/0x1fb5a8DCd70bE750a97Eaf8a47bBe74Ab7d3183e/info.json @@ -0,0 +1,24 @@ +{ + "name": "Waste Management (Ondo Tokenized)", + "type": "ERC20", + "symbol": "WMon", + "decimals": 18, + "description": "WMon is the Ondo Tokenized version of Waste Management, giving tokenholders economic exposure similar to holding WM and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x1fb5a8DCd70bE750a97Eaf8a47bBe74Ab7d3183e", + "status": "active", + "id": "0x1fb5a8DCd70bE750a97Eaf8a47bBe74Ab7d3183e", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/waste-management-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1fb5a8DCd70bE750a97Eaf8a47bBe74Ab7d3183e/logo.png b/blockchains/ethereum/assets/0x1fb5a8DCd70bE750a97Eaf8a47bBe74Ab7d3183e/logo.png new file mode 100644 index 0000000000000..a680bccc158e2 Binary files /dev/null and b/blockchains/ethereum/assets/0x1fb5a8DCd70bE750a97Eaf8a47bBe74Ab7d3183e/logo.png differ diff --git a/blockchains/ethereum/assets/0x1fc5EF0337AEA85C5f9198853a6E3A579a7A6987/info.json b/blockchains/ethereum/assets/0x1fc5EF0337AEA85C5f9198853a6E3A579a7A6987/info.json index 1da50e5b1bc2f..f8b3e090c5de8 100644 --- a/blockchains/ethereum/assets/0x1fc5EF0337AEA85C5f9198853a6E3A579a7A6987/info.json +++ b/blockchains/ethereum/assets/0x1fc5EF0337AEA85C5f9198853a6E3A579a7A6987/info.json @@ -10,8 +10,8 @@ "id": "0x1fc5EF0337AEA85C5f9198853a6E3A579a7A6987", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ReapChain" + "name": "x", + "url": "https://x.com/ReapChain" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x20224080aD516769723c9a4A18325fC4E8C9Ab5D/info.json b/blockchains/ethereum/assets/0x20224080aD516769723c9a4A18325fC4E8C9Ab5D/info.json new file mode 100644 index 0000000000000..81700b0838d78 --- /dev/null +++ b/blockchains/ethereum/assets/0x20224080aD516769723c9a4A18325fC4E8C9Ab5D/info.json @@ -0,0 +1,28 @@ +{ + "name": "Invesco DB Commodity Index Tracking Fund (Ondo Tokenized)", + "type": "ERC20", + "symbol": "DBCon", + "decimals": 18, + "description": "DBCon is the Ondo Tokenized version of the Invesco DB Commodity Index Tracking Fund, giving tokenholders economic exposure similar to holding DBC and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x20224080aD516769723c9a4A18325fC4E8C9Ab5D", + "status": "active", + "id": "0x20224080aD516769723c9a4A18325fC4E8C9Ab5D", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/invesco-db-commodity-index-tracking-fund-ondo-tokenized-etf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/invesco-db-commodity-index-tokenized-fund-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x20224080aD516769723c9a4A18325fC4E8C9Ab5D/logo.png b/blockchains/ethereum/assets/0x20224080aD516769723c9a4A18325fC4E8C9Ab5D/logo.png new file mode 100644 index 0000000000000..4d148ee9a083d Binary files /dev/null and b/blockchains/ethereum/assets/0x20224080aD516769723c9a4A18325fC4E8C9Ab5D/logo.png differ diff --git a/blockchains/ethereum/assets/0x20398aD62bb2D930646d45a6D4292baa0b860C1f/info.json b/blockchains/ethereum/assets/0x20398aD62bb2D930646d45a6D4292baa0b860C1f/info.json index 9ec2d1a2d7133..e5f50e556442b 100644 --- a/blockchains/ethereum/assets/0x20398aD62bb2D930646d45a6D4292baa0b860C1f/info.json +++ b/blockchains/ethereum/assets/0x20398aD62bb2D930646d45a6D4292baa0b860C1f/info.json @@ -10,8 +10,8 @@ "id": "0x20398aD62bb2D930646d45a6D4292baa0b860C1f", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Flashstake" + "name": "x", + "url": "https://x.com/Flashstake" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x20945cA1df56D237fD40036d47E866C7DcCD2114/info.json b/blockchains/ethereum/assets/0x20945cA1df56D237fD40036d47E866C7DcCD2114/info.json index e17d0bca31a85..2d65aa402f2c4 100644 --- a/blockchains/ethereum/assets/0x20945cA1df56D237fD40036d47E866C7DcCD2114/info.json +++ b/blockchains/ethereum/assets/0x20945cA1df56D237fD40036d47E866C7DcCD2114/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/nsure-tech" }, { - "name": "twitter", - "url": "https://twitter.com/Nsure" + "name": "x", + "url": "https://x.com/Nsure" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x20BC832ca081b91433ff6c17f85701B6e92486c5/info.json b/blockchains/ethereum/assets/0x20BC832ca081b91433ff6c17f85701B6e92486c5/info.json index 17063ac089c63..d3dea4280960a 100644 --- a/blockchains/ethereum/assets/0x20BC832ca081b91433ff6c17f85701B6e92486c5/info.json +++ b/blockchains/ethereum/assets/0x20BC832ca081b91433ff6c17f85701B6e92486c5/info.json @@ -10,8 +10,8 @@ "id": "0x20BC832ca081b91433ff6c17f85701B6e92486c5", "links": [ { - "name": "twitter", - "url": "https://twitter.com/stakewise_io" + "name": "x", + "url": "https://x.com/stakewise_io" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0x20e113E9235dF6A2A9BFc6f244c2ccC380c8f546/info.json b/blockchains/ethereum/assets/0x20e113E9235dF6A2A9BFc6f244c2ccC380c8f546/info.json new file mode 100644 index 0000000000000..8fe28d9f89291 --- /dev/null +++ b/blockchains/ethereum/assets/0x20e113E9235dF6A2A9BFc6f244c2ccC380c8f546/info.json @@ -0,0 +1,28 @@ +{ + "name": "Arista Networks (Ondo Tokenized)", + "type": "ERC20", + "symbol": "ANETon", + "decimals": 18, + "description": "ANETon is the Ondo Tokenized version of Arista Networks, giving tokenholders economic exposure similar to holding ANET and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x20e113E9235dF6A2A9BFc6f244c2ccC380c8f546", + "status": "active", + "id": "0x20e113E9235dF6A2A9BFc6f244c2ccC380c8f546", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/arista-networks-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/arista-networks-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x20e113E9235dF6A2A9BFc6f244c2ccC380c8f546/logo.png b/blockchains/ethereum/assets/0x20e113E9235dF6A2A9BFc6f244c2ccC380c8f546/logo.png new file mode 100644 index 0000000000000..095286d5996eb Binary files /dev/null and b/blockchains/ethereum/assets/0x20e113E9235dF6A2A9BFc6f244c2ccC380c8f546/logo.png differ diff --git a/blockchains/ethereum/assets/0x20e7125677311Fca903A8897042b9983f22Ea295/info.json b/blockchains/ethereum/assets/0x20e7125677311Fca903A8897042b9983f22Ea295/info.json new file mode 100644 index 0000000000000..6f64caf9b6ffb --- /dev/null +++ b/blockchains/ethereum/assets/0x20e7125677311Fca903A8897042b9983f22Ea295/info.json @@ -0,0 +1,24 @@ +{ + "name": "Freeway Token", + "symbol": "FWT", + "type": "ERC20", + "decimals": 18, + "description": "Freeway Tokens (FWT) are the native utility tokens for AuBit Freeway — a ground-breaking new asset management platform built for greater total returns on the world’s top investment products with no additional risk.", + "website": "https://aubit.io/", + "explorer": "https://etherscan.io/token/0x20e7125677311Fca903A8897042b9983f22Ea295", + "status": "active", + "id": "0x20e7125677311Fca903A8897042b9983f22Ea295", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/FreewayFi" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/freeway/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf151980E7A781481709e8195744bF2399FB3Cba4/logo.png b/blockchains/ethereum/assets/0x20e7125677311Fca903A8897042b9983f22Ea295/logo.png similarity index 100% rename from blockchains/ethereum/assets/0xf151980E7A781481709e8195744bF2399FB3Cba4/logo.png rename to blockchains/ethereum/assets/0x20e7125677311Fca903A8897042b9983f22Ea295/logo.png diff --git a/blockchains/ethereum/assets/0x212ceCEa94cb5250ac85478Ea9d24B31c7F0e9D1/info.json b/blockchains/ethereum/assets/0x212ceCEa94cb5250ac85478Ea9d24B31c7F0e9D1/info.json new file mode 100644 index 0000000000000..5729114920cf4 --- /dev/null +++ b/blockchains/ethereum/assets/0x212ceCEa94cb5250ac85478Ea9d24B31c7F0e9D1/info.json @@ -0,0 +1,11 @@ +{ + "name": "SPAM UERC", + "type": "ERC20", + "symbol": "SPAM UERC", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://etherscan.io/token/0x212cecea94cb5250ac85478ea9d24b31c7f0e9d1", + "explorer": "https://etherscan.io/token/0x212cecea94cb5250ac85478ea9d24b31c7f0e9d1", + "status": "spam", + "id": "0x212ceCEa94cb5250ac85478Ea9d24B31c7F0e9D1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x214151022C2a5E380aB80CdaC31f23Ae554a7345/info.json b/blockchains/ethereum/assets/0x214151022C2a5E380aB80CdaC31f23Ae554a7345/info.json new file mode 100644 index 0000000000000..8d65b45ca113b --- /dev/null +++ b/blockchains/ethereum/assets/0x214151022C2a5E380aB80CdaC31f23Ae554a7345/info.json @@ -0,0 +1,24 @@ +{ + "name": "CrowdStrike tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "CrowdStrike xStock (CRWDx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. CRWDx tracks the price of CrowdStrike Holdings, Inc. (the underlying). CRWDx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of CrowdStrike Holdings, Inc., whilst maintaining the benefits of blockchain technology. CrowdStrike is a cybersecurity company specializing in cloud-delivered security solutions, particularly for endpoint and cloud workload protection.", + "explorer": "https://etherscan.io/token/0x214151022C2a5E380aB80CdaC31f23Ae554a7345", + "type": "ERC20", + "symbol": "CRWDX", + "decimals": 18, + "status": "active", + "id": "0x214151022C2a5E380aB80CdaC31f23Ae554a7345", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crowdstrike-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x214151022C2a5E380aB80CdaC31f23Ae554a7345/logo.png b/blockchains/ethereum/assets/0x214151022C2a5E380aB80CdaC31f23Ae554a7345/logo.png new file mode 100644 index 0000000000000..72cd9e09a3d7d Binary files /dev/null and b/blockchains/ethereum/assets/0x214151022C2a5E380aB80CdaC31f23Ae554a7345/logo.png differ diff --git a/blockchains/ethereum/assets/0x219a1b27baA08D72fAC836665a3B752F3C9aCBBC/info.json b/blockchains/ethereum/assets/0x219a1b27baA08D72fAC836665a3B752F3C9aCBBC/info.json new file mode 100644 index 0000000000000..653d5fd2c0222 --- /dev/null +++ b/blockchains/ethereum/assets/0x219a1b27baA08D72fAC836665a3B752F3C9aCBBC/info.json @@ -0,0 +1,28 @@ +{ + "name": "Janus Henderson AAA CLO ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "JAAAon", + "decimals": 18, + "description": "JAAAon is the Ondo Tokenized version of the Janus Henderson AAA CLO ETF, giving tokenholders economic exposure similar to holding JAAA and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x219a1b27baA08D72fAC836665a3B752F3C9aCBBC", + "status": "active", + "id": "0x219a1b27baA08D72fAC836665a3B752F3C9aCBBC", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/janus-henderson-aaa-clo-etf-ondo-tokenized-etf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/janus-henderson-aaa-clo-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x219a1b27baA08D72fAC836665a3B752F3C9aCBBC/logo.png b/blockchains/ethereum/assets/0x219a1b27baA08D72fAC836665a3B752F3C9aCBBC/logo.png new file mode 100644 index 0000000000000..56172ca7d88c2 Binary files /dev/null and b/blockchains/ethereum/assets/0x219a1b27baA08D72fAC836665a3B752F3C9aCBBC/logo.png differ diff --git a/blockchains/ethereum/assets/0x21BfBDa47A0B4B5b1248c767Ee49F7caA9B23697/info.json b/blockchains/ethereum/assets/0x21BfBDa47A0B4B5b1248c767Ee49F7caA9B23697/info.json index c35a2217418fb..5d188a06cccbe 100644 --- a/blockchains/ethereum/assets/0x21BfBDa47A0B4B5b1248c767Ee49F7caA9B23697/info.json +++ b/blockchains/ethereum/assets/0x21BfBDa47A0B4B5b1248c767Ee49F7caA9B23697/info.json @@ -1,44 +1,44 @@ { - "name": "OVR", - "symbol": "OVR", - "type": "ERC20", - "decimals": 18, - "description": "OVR is the decentralized infrastructure for the spatial web, merging physical and virtual world through Augmented Reality, creating a new dimension where everything is possible.", - "website": "https://www.ovr.ai", - "explorer": "https://etherscan.io/token/0x21bfbda47a0b4b5b1248c767ee49f7caa9b23697", - "status": "active", - "id": "0x21BfBDa47A0B4B5b1248c767Ee49F7caA9B23697", - "tags": [ - "nft" - ], - "links": [ - { - "name": "telegram", - "url": "https://t.me/OVRtheReality" - }, - { - "name": "twitter", - "url": "https://twitter.com/OVRtheReality" - }, - { - "name": "facebook", - "url": "https://facebook.com/OVRmetaverse/" - }, - { - "name": "telegram_news", - "url": "https://t.me/ovrannouncements" - }, - { - "name": "medium", - "url": "https://medium.com/ovrthereality" - }, - { - "name": "coingecko", - "url": "https://coingecko.com/en/coins/ovr" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/ovr/" - } - ] -} + "name": "OVR", + "symbol": "OVR", + "type": "ERC20", + "decimals": 18, + "description": "OVR is the decentralized infrastructure for the spatial web, merging physical and virtual world through Augmented Reality, creating a new dimension where everything is possible.", + "website": "https://www.overthereality.ai/", + "explorer": "https://etherscan.io/token/0x21bfbda47a0b4b5b1248c767ee49f7caa9b23697", + "status": "active", + "id": "0x21BfBDa47A0B4B5b1248c767Ee49F7caA9B23697", + "tags": [ + "nft" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/OVRtheReality" + }, + { + "name": "x", + "url": "https://x.com/OVRtheReality" + }, + { + "name": "facebook", + "url": "https://facebook.com/Overmetaverse" + }, + { + "name": "telegram_news", + "url": "https://t.me/ovrannouncements" + }, + { + "name": "medium", + "url": "https://medium.com/ovrthereality" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ovr" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ovr/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x21BfBDa47A0B4B5b1248c767Ee49F7caA9B23697/logo.png b/blockchains/ethereum/assets/0x21BfBDa47A0B4B5b1248c767Ee49F7caA9B23697/logo.png index c3045348fbd1c..5bc8414cd2469 100644 Binary files a/blockchains/ethereum/assets/0x21BfBDa47A0B4B5b1248c767Ee49F7caA9B23697/logo.png and b/blockchains/ethereum/assets/0x21BfBDa47A0B4B5b1248c767Ee49F7caA9B23697/logo.png differ diff --git a/blockchains/ethereum/assets/0x21bE23f5bF87A749670c088F6DEe26760F1Ab80F/info.json b/blockchains/ethereum/assets/0x21bE23f5bF87A749670c088F6DEe26760F1Ab80F/info.json new file mode 100644 index 0000000000000..972db2aa9793e --- /dev/null +++ b/blockchains/ethereum/assets/0x21bE23f5bF87A749670c088F6DEe26760F1Ab80F/info.json @@ -0,0 +1,28 @@ +{ + "name": "Lam Research (Ondo Tokenized)", + "type": "ERC20", + "symbol": "LRCXon", + "decimals": 18, + "description": "LRCXon is the Ondo Tokenized version of Lam Research, giving tokenholders economic exposure similar to holding LRCX and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x21bE23f5bF87A749670c088F6DEe26760F1Ab80F", + "status": "active", + "id": "0x21bE23f5bF87A749670c088F6DEe26760F1Ab80F", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/lam-research-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lam-research-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x21bE23f5bF87A749670c088F6DEe26760F1Ab80F/logo.png b/blockchains/ethereum/assets/0x21bE23f5bF87A749670c088F6DEe26760F1Ab80F/logo.png new file mode 100644 index 0000000000000..857455e73773a Binary files /dev/null and b/blockchains/ethereum/assets/0x21bE23f5bF87A749670c088F6DEe26760F1Ab80F/logo.png differ diff --git a/blockchains/ethereum/assets/0x21cA39943E91d704678F5D00b6616650F066fD63/info.json b/blockchains/ethereum/assets/0x21cA39943E91d704678F5D00b6616650F066fD63/info.json index b9a513f2f0041..3ca6c4241e08c 100644 --- a/blockchains/ethereum/assets/0x21cA39943E91d704678F5D00b6616650F066fD63/info.json +++ b/blockchains/ethereum/assets/0x21cA39943E91d704678F5D00b6616650F066fD63/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/MirrorProtocol" + "name": "x", + "url": "https://x.com/MirrorProtocol" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x21cD589a989615A9e901328D3c089bbca16d00b2/info.json b/blockchains/ethereum/assets/0x21cD589a989615A9e901328D3c089bbca16d00b2/info.json new file mode 100644 index 0000000000000..90a94d3fdd82f --- /dev/null +++ b/blockchains/ethereum/assets/0x21cD589a989615A9e901328D3c089bbca16d00b2/info.json @@ -0,0 +1,21 @@ +{ + "name": "X Money", + "type": "ERC20", + "symbol": "XMONEY", + "decimals": 9, + "website": "https://xmoneyeth.com/", + "description": "$xmoney is a community-driven meme token inspired by X’s vision of global financial transformation. While not affiliated with X, it merges decentralized finance with meme culture, offering degen traders and crypto enthusiasts a fun way to embrace the evolving world of financial tools.", + "explorer": "https://etherscan.io/token/0x21cd589a989615a9e901328d3c089bbca16d00b2", + "status": "active", + "id": "0x21cD589a989615A9e901328D3c089bbca16d00b2", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/x-money/" + }, + { + "name": "x", + "url": "https://x.com/Healix__AI" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x21cD589a989615A9e901328D3c089bbca16d00b2/logo.png b/blockchains/ethereum/assets/0x21cD589a989615A9e901328D3c089bbca16d00b2/logo.png new file mode 100644 index 0000000000000..13bcb298e6df1 Binary files /dev/null and b/blockchains/ethereum/assets/0x21cD589a989615A9e901328D3c089bbca16d00b2/logo.png differ diff --git a/blockchains/ethereum/assets/0x21deafD91116FCe9fE87C8f15Bde03f99a309b72/info.json b/blockchains/ethereum/assets/0x21deafD91116FCe9fE87C8f15Bde03f99a309b72/info.json new file mode 100644 index 0000000000000..5a0296d610c34 --- /dev/null +++ b/blockchains/ethereum/assets/0x21deafD91116FCe9fE87C8f15Bde03f99a309b72/info.json @@ -0,0 +1,24 @@ +{ + "name": "Riot Platforms (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "RIOTon is the Ondo Tokenized version of Riot Platforms, giving tokenholders economic exposure similar to holding RIOT and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x21deafD91116FCe9fE87C8f15Bde03f99a309b72", + "type": "ERC20", + "symbol": "RIOTon", + "decimals": 18, + "status": "active", + "id": "0x21deafD91116FCe9fE87C8f15Bde03f99a309b72", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/riot-platforms-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x21deafD91116FCe9fE87C8f15Bde03f99a309b72/logo.png b/blockchains/ethereum/assets/0x21deafD91116FCe9fE87C8f15Bde03f99a309b72/logo.png new file mode 100644 index 0000000000000..3ec067f7f946b Binary files /dev/null and b/blockchains/ethereum/assets/0x21deafD91116FCe9fE87C8f15Bde03f99a309b72/logo.png differ diff --git a/blockchains/ethereum/assets/0x2216e873ea4282EbEf7A02aC5aeA220bE6391A7C/info.json b/blockchains/ethereum/assets/0x2216e873ea4282EbEf7A02aC5aeA220bE6391A7C/info.json index 7816ec2ebade8..2fc8099adad8f 100644 --- a/blockchains/ethereum/assets/0x2216e873ea4282EbEf7A02aC5aeA220bE6391A7C/info.json +++ b/blockchains/ethereum/assets/0x2216e873ea4282EbEf7A02aC5aeA220bE6391A7C/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/smolfinance/" }, { - "name": "twitter", - "url": "https://twitter.com/SmolFinance" + "name": "x", + "url": "https://x.com/SmolFinance" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x22222C03318440305aC3e8a7820563d6A9FD777F/info.json b/blockchains/ethereum/assets/0x22222C03318440305aC3e8a7820563d6A9FD777F/info.json index cdb9fd63159a3..92b4500dc51a8 100644 --- a/blockchains/ethereum/assets/0x22222C03318440305aC3e8a7820563d6A9FD777F/info.json +++ b/blockchains/ethereum/assets/0x22222C03318440305aC3e8a7820563d6A9FD777F/info.json @@ -10,8 +10,8 @@ "id": "0x22222C03318440305aC3e8a7820563d6A9FD777F", "links": [ { - "name": "twitter", - "url": "https://twitter.com/clvfi" + "name": "x", + "url": "https://x.com/clvfi" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x224B381CFAe8CCAf2e4d32D827467C2331Ce04bE/info.json b/blockchains/ethereum/assets/0x224B381CFAe8CCAf2e4d32D827467C2331Ce04bE/info.json new file mode 100644 index 0000000000000..3addf871df850 --- /dev/null +++ b/blockchains/ethereum/assets/0x224B381CFAe8CCAf2e4d32D827467C2331Ce04bE/info.json @@ -0,0 +1,24 @@ +{ + "name": "Fidelity Solana Fund (Ondo Tokenized)", + "type": "ERC20", + "symbol": "FSOLon", + "decimals": 18, + "description": "FSOLon is the Ondo Tokenized version of the Fidelity Solana Fund, giving tokenholders economic exposure similar to holding FSOL and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x224B381CFAe8CCAf2e4d32D827467C2331Ce04bE", + "status": "active", + "id": "0x224B381CFAe8CCAf2e4d32D827467C2331Ce04bE", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/fidelity-solana-fund-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x224B381CFAe8CCAf2e4d32D827467C2331Ce04bE/logo.png b/blockchains/ethereum/assets/0x224B381CFAe8CCAf2e4d32D827467C2331Ce04bE/logo.png new file mode 100644 index 0000000000000..acfd22e816da7 Binary files /dev/null and b/blockchains/ethereum/assets/0x224B381CFAe8CCAf2e4d32D827467C2331Ce04bE/logo.png differ diff --git a/blockchains/ethereum/assets/0x224DB5E6180761df4C3d8936585f6b8b83879770/info.json b/blockchains/ethereum/assets/0x224DB5E6180761df4C3d8936585f6b8b83879770/info.json index 0a34a7ebb2203..654a599d20cff 100644 --- a/blockchains/ethereum/assets/0x224DB5E6180761df4C3d8936585f6b8b83879770/info.json +++ b/blockchains/ethereum/assets/0x224DB5E6180761df4C3d8936585f6b8b83879770/info.json @@ -10,8 +10,8 @@ "id": "0x224DB5E6180761df4C3d8936585f6b8b83879770", "links": [ { - "name": "twitter", - "url": "https://twitter.com/om_lira" + "name": "x", + "url": "https://x.com/om_lira" }, { "name": "discord", diff --git a/blockchains/ethereum/assets/0x22E1991e5f82736A2a990322a46aac0e95826c5B/info.json b/blockchains/ethereum/assets/0x22E1991e5f82736A2a990322a46aac0e95826c5B/info.json new file mode 100644 index 0000000000000..faaca6db0dc6d --- /dev/null +++ b/blockchains/ethereum/assets/0x22E1991e5f82736A2a990322a46aac0e95826c5B/info.json @@ -0,0 +1,15 @@ +{ + "name": "Bit Digital xStock", + "type": "ERC20", + "symbol": "BTBTx", + "decimals": 18, + "description": "Bit Digital xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://etherscan.io/token/0x22E1991e5f82736A2a990322a46aac0e95826c5B", + "status": "active", + "id": "0x22E1991e5f82736A2a990322a46aac0e95826c5B", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x22E1991e5f82736A2a990322a46aac0e95826c5B/logo.png b/blockchains/ethereum/assets/0x22E1991e5f82736A2a990322a46aac0e95826c5B/logo.png new file mode 100644 index 0000000000000..30817f4fdb226 Binary files /dev/null and b/blockchains/ethereum/assets/0x22E1991e5f82736A2a990322a46aac0e95826c5B/logo.png differ diff --git a/blockchains/ethereum/assets/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293/info.json b/blockchains/ethereum/assets/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293/info.json new file mode 100644 index 0000000000000..97ecbaba30a01 --- /dev/null +++ b/blockchains/ethereum/assets/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293/info.json @@ -0,0 +1,24 @@ +{ + "name": "Visa tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Visa xStock (Vx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. Vx tracks the price of Visa Inc. Class A (the underlying). Vx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Visa Inc. Class A, whilst maintaining the benefits of blockchain technology. Visa Inc. is a global digital payments technology company that facilitates transactions between consumers, merchants, and financial institutions in over 200 countries.", + "explorer": "https://etherscan.io/token/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293", + "type": "ERC20", + "symbol": "VX", + "decimals": 18, + "status": "active", + "id": "0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/visa-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293/logo.png b/blockchains/ethereum/assets/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293/logo.png new file mode 100644 index 0000000000000..11bbde8933e10 Binary files /dev/null and b/blockchains/ethereum/assets/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293/logo.png differ diff --git a/blockchains/ethereum/assets/0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9/info.json b/blockchains/ethereum/assets/0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9/info.json new file mode 100644 index 0000000000000..50dd4abbc6c5f --- /dev/null +++ b/blockchains/ethereum/assets/0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9/info.json @@ -0,0 +1,24 @@ +{ + "name": "Gold tokenized ETF (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Gold tokenized ETF (xStock) (GLDX) is a cryptocurrency and operates on the Solana platform. Gold tokenized ETF (xStock) has a current supply of 2,799.99923929 with 1,000 in circulation. The last known price of Gold tokenized ETF (xStock) is 340.04452058 USD and is up 1.44 over the last 24 hours. It is currently trading on 10 active market(s) with $2,423,806.34 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/gold-xstock.", + "explorer": "https://etherscan.io/token/0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9", + "type": "ERC20", + "symbol": "GLDX", + "decimals": 18, + "status": "active", + "id": "0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gold-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9/logo.png b/blockchains/ethereum/assets/0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9/logo.png new file mode 100644 index 0000000000000..85a92734296a2 Binary files /dev/null and b/blockchains/ethereum/assets/0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9/logo.png differ diff --git a/blockchains/ethereum/assets/0x23894DC9da6c94ECb439911cAF7d337746575A72/info.json b/blockchains/ethereum/assets/0x23894DC9da6c94ECb439911cAF7d337746575A72/info.json index 7768d6040b8b8..bc056fd1a400b 100644 --- a/blockchains/ethereum/assets/0x23894DC9da6c94ECb439911cAF7d337746575A72/info.json +++ b/blockchains/ethereum/assets/0x23894DC9da6c94ECb439911cAF7d337746575A72/info.json @@ -10,8 +10,8 @@ "id": "0x23894DC9da6c94ECb439911cAF7d337746575A72", "links": [ { - "name": "twitter", - "url": "https://twitter.com/geojamofficial" + "name": "x", + "url": "https://x.com/geojamofficial" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json b/blockchains/ethereum/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json index 8bdb76be8e1ab..c91b6148f8b06 100644 --- a/blockchains/ethereum/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json +++ b/blockchains/ethereum/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json @@ -10,8 +10,8 @@ "id": "0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/everrise" + "name": "x", + "url": "https://x.com/everrise" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x241958c86c7744d15d5f6314BA1Ea4c81DDA2896/info.json b/blockchains/ethereum/assets/0x241958c86c7744d15d5f6314BA1Ea4c81DDA2896/info.json new file mode 100644 index 0000000000000..ea026fbd8c782 --- /dev/null +++ b/blockchains/ethereum/assets/0x241958c86c7744d15d5f6314BA1Ea4c81DDA2896/info.json @@ -0,0 +1,24 @@ +{ + "name": "DoorDash (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "DASHon is the Ondo Tokenized version of DoorDash, giving tokenholders economic exposure similar to holding DASH and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x241958c86c7744d15d5f6314BA1Ea4c81DDA2896", + "type": "ERC20", + "symbol": "DASHon", + "decimals": 18, + "status": "active", + "id": "0x241958c86c7744d15d5f6314BA1Ea4c81DDA2896", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/doordash-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x241958c86c7744d15d5f6314BA1Ea4c81DDA2896/logo.png b/blockchains/ethereum/assets/0x241958c86c7744d15d5f6314BA1Ea4c81DDA2896/logo.png new file mode 100644 index 0000000000000..72641705edfa2 Binary files /dev/null and b/blockchains/ethereum/assets/0x241958c86c7744d15d5f6314BA1Ea4c81DDA2896/logo.png differ diff --git a/blockchains/ethereum/assets/0x243c9be13fAbA09F945ccc565547293337Da0Ad7/info.json b/blockchains/ethereum/assets/0x243c9be13fAbA09F945ccc565547293337Da0Ad7/info.json new file mode 100644 index 0000000000000..d9c0400f8c226 --- /dev/null +++ b/blockchains/ethereum/assets/0x243c9be13fAbA09F945ccc565547293337Da0Ad7/info.json @@ -0,0 +1,17 @@ +{ + "name": "Truflation", + "website": "https://truflation.com/", + "description": "Truflation leverages real-time, transparent financial data of over 13 million items to enhance the tokenization of real-world assets and support DeFi applications. It is a data infrastructure for diverse markets, facilitated by the Truflation Stream Network (TSN) and governed by the TRUF token.", + "explorer": "https://etherscan.io/token/0x243c9be13fAbA09F945ccc565547293337Da0Ad7", + "type": "ERC20", + "symbol": "TRUF", + "decimals": 18, + "status": "active", + "id": "0x243c9be13fAbA09F945ccc565547293337Da0Ad7", + "links": [ + { + "name": "telegram", + "url": "https://t.me/truflation" + } + ] +} diff --git a/blockchains/ethereum/assets/0x243c9be13fAbA09F945ccc565547293337Da0Ad7/logo.png b/blockchains/ethereum/assets/0x243c9be13fAbA09F945ccc565547293337Da0Ad7/logo.png new file mode 100644 index 0000000000000..ee9f205992489 Binary files /dev/null and b/blockchains/ethereum/assets/0x243c9be13fAbA09F945ccc565547293337Da0Ad7/logo.png differ diff --git a/blockchains/ethereum/assets/0x243cACb4D5fF6814AD668C3e225246efA886AD5a/info.json b/blockchains/ethereum/assets/0x243cACb4D5fF6814AD668C3e225246efA886AD5a/info.json index e98c2484f4d87..f7471cdabccf4 100644 --- a/blockchains/ethereum/assets/0x243cACb4D5fF6814AD668C3e225246efA886AD5a/info.json +++ b/blockchains/ethereum/assets/0x243cACb4D5fF6814AD668C3e225246efA886AD5a/info.json @@ -10,8 +10,8 @@ "id": "0x243cACb4D5fF6814AD668C3e225246efA886AD5a", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ShinaToken" + "name": "x", + "url": "https://x.com/ShinaToken" }, { "name": "telegram", @@ -33,4 +33,4 @@ "tags": [ "memes" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x244EFb92f76a57da49B5F71045dcE3E546E13106/info.json b/blockchains/ethereum/assets/0x244EFb92f76a57da49B5F71045dcE3E546E13106/info.json new file mode 100644 index 0000000000000..eeb007ca58f7c --- /dev/null +++ b/blockchains/ethereum/assets/0x244EFb92f76a57da49B5F71045dcE3E546E13106/info.json @@ -0,0 +1,28 @@ +{ + "name": "Oscar Health (Ondo Tokenized)", + "type": "ERC20", + "symbol": "OSCRon", + "decimals": 18, + "description": "OSCRon is the Ondo Tokenized version of Oscar Health, giving tokenholders economic exposure similar to holding OSCR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x244EFb92f76a57da49B5F71045dcE3E546E13106", + "status": "active", + "id": "0x244EFb92f76a57da49B5F71045dcE3E546E13106", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/oscar-health-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/oscar-health-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x244EFb92f76a57da49B5F71045dcE3E546E13106/logo.png b/blockchains/ethereum/assets/0x244EFb92f76a57da49B5F71045dcE3E546E13106/logo.png new file mode 100644 index 0000000000000..940143ce0caa8 Binary files /dev/null and b/blockchains/ethereum/assets/0x244EFb92f76a57da49B5F71045dcE3E546E13106/logo.png differ diff --git a/blockchains/ethereum/assets/0x244b797d622D4DEe8b188b03546ACAAbD0Cf91A0/info.json b/blockchains/ethereum/assets/0x244b797d622D4DEe8b188b03546ACAAbD0Cf91A0/info.json new file mode 100644 index 0000000000000..13457b3f7e571 --- /dev/null +++ b/blockchains/ethereum/assets/0x244b797d622D4DEe8b188b03546ACAAbD0Cf91A0/info.json @@ -0,0 +1,24 @@ +{ + "name": "Four", + "symbol": "FOUR", + "type": "ERC20", + "decimals": 18, + "description": "It all started with a tweet. Then it became a rallying cry to fight FUD. Now it's a memecoin.", + "website": "https://www.4thecoin.com/", + "explorer": "https://etherscan.io/token/0x244b797d622d4dee8b188b03546acaabd0cf91a0", + "status": "active", + "id": "0x244b797d622D4DEe8b188b03546ACAAbD0Cf91A0", + "links": [ + { + "name": "x", + "url": "https://x.com/4thecoin" + }, + { + "name": "telegram", + "url": "https://t.me/TheCoin4" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x244b797d622D4DEe8b188b03546ACAAbD0Cf91A0/logo.png b/blockchains/ethereum/assets/0x244b797d622D4DEe8b188b03546ACAAbD0Cf91A0/logo.png new file mode 100644 index 0000000000000..9a4147093b5a4 Binary files /dev/null and b/blockchains/ethereum/assets/0x244b797d622D4DEe8b188b03546ACAAbD0Cf91A0/logo.png differ diff --git a/blockchains/ethereum/assets/0x249cA82617eC3DfB2589c4c17ab7EC9765350a18/info.json b/blockchains/ethereum/assets/0x249cA82617eC3DfB2589c4c17ab7EC9765350a18/info.json new file mode 100644 index 0000000000000..176f366ffe462 --- /dev/null +++ b/blockchains/ethereum/assets/0x249cA82617eC3DfB2589c4c17ab7EC9765350a18/info.json @@ -0,0 +1,40 @@ +{ + "name": "Verse", + "symbol": "VERSE", + "type": "ERC20", + "decimals": 18, + "description": "VERSE is Bitcoin.com's ecosystem token, providing rewards and utility to users of Bitcoin.com's products and services.", + "website": "https://verse.bitcoin.com", + "explorer": "https://etherscan.io/token/0x249ca82617ec3dfb2589c4c17ab7ec9765350a18", + "status": "active", + "id": "0x249cA82617eC3DfB2589c4c17ab7EC9765350a18", + "tags": [ + "defi" + ], + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/buy.bitcoin.news" + }, + { + "name": "x", + "url": "https://x.com/bitcoincom" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCetxkZolEBHX47BqtZktbkg" + }, + { + "name": "blog", + "url": "https://blog.bitcoin.com/" + }, + { + "name": "telegram", + "url": "https://t.me/GetVerse" + }, + { + "name": "whitepaper", + "url": "https://www.getverse.com/verse-whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x249cA82617eC3DfB2589c4c17ab7EC9765350a18/logo.png b/blockchains/ethereum/assets/0x249cA82617eC3DfB2589c4c17ab7EC9765350a18/logo.png new file mode 100644 index 0000000000000..4a4bdff5796be Binary files /dev/null and b/blockchains/ethereum/assets/0x249cA82617eC3DfB2589c4c17ab7EC9765350a18/logo.png differ diff --git a/blockchains/ethereum/assets/0x249e38Ea4102D0cf8264d3701f1a0E39C4f2DC3B/info.json b/blockchains/ethereum/assets/0x249e38Ea4102D0cf8264d3701f1a0E39C4f2DC3B/info.json index a4cb79e975faa..e11212932d364 100644 --- a/blockchains/ethereum/assets/0x249e38Ea4102D0cf8264d3701f1a0E39C4f2DC3B/info.json +++ b/blockchains/ethereum/assets/0x249e38Ea4102D0cf8264d3701f1a0E39C4f2DC3B/info.json @@ -10,8 +10,8 @@ "id": "0x249e38Ea4102D0cf8264d3701f1a0E39C4f2DC3B", "links": [ { - "name": "twitter", - "url": "https://twitter.com/theufotoken?s=21" + "name": "x", + "url": "https://x.com/theufotoken?s=21" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x24E5Bc45d5b6Cef6F38989AC33dF587a3FC850cf/info.json b/blockchains/ethereum/assets/0x24E5Bc45d5b6Cef6F38989AC33dF587a3FC850cf/info.json new file mode 100644 index 0000000000000..1e473169b2594 --- /dev/null +++ b/blockchains/ethereum/assets/0x24E5Bc45d5b6Cef6F38989AC33dF587a3FC850cf/info.json @@ -0,0 +1,28 @@ +{ + "name": "Cipher Mining (Ondo Tokenized)", + "type": "ERC20", + "symbol": "CIFRon", + "decimals": 18, + "description": "CIFRon is the Ondo Tokenized version of Cipher Mining, giving tokenholders economic exposure similar to holding CIFR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x24E5Bc45d5b6Cef6F38989AC33dF587a3FC850cf", + "status": "active", + "id": "0x24E5Bc45d5b6Cef6F38989AC33dF587a3FC850cf", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cipher-mining-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cipher-mining-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x24E5Bc45d5b6Cef6F38989AC33dF587a3FC850cf/logo.png b/blockchains/ethereum/assets/0x24E5Bc45d5b6Cef6F38989AC33dF587a3FC850cf/logo.png new file mode 100644 index 0000000000000..a3964e6907cc4 Binary files /dev/null and b/blockchains/ethereum/assets/0x24E5Bc45d5b6Cef6F38989AC33dF587a3FC850cf/logo.png differ diff --git a/blockchains/ethereum/assets/0x24E89bDf2f65326b94E36978A7EDeAc63623DAFA/info.json b/blockchains/ethereum/assets/0x24E89bDf2f65326b94E36978A7EDeAc63623DAFA/info.json index 9cbf8cc0fbb01..c28da55c23585 100644 --- a/blockchains/ethereum/assets/0x24E89bDf2f65326b94E36978A7EDeAc63623DAFA/info.json +++ b/blockchains/ethereum/assets/0x24E89bDf2f65326b94E36978A7EDeAc63623DAFA/info.json @@ -10,8 +10,8 @@ "id": "0x24E89bDf2f65326b94E36978A7EDeAc63623DAFA", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Tiger_King_Coin" + "name": "x", + "url": "https://x.com/Tiger_King_Coin" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x24EC2Ca132abf8F6f8a6E24A1B97943e31f256a7/info.json b/blockchains/ethereum/assets/0x24EC2Ca132abf8F6f8a6E24A1B97943e31f256a7/info.json index 43a74dc9e5e00..3ce47d56b99c6 100644 --- a/blockchains/ethereum/assets/0x24EC2Ca132abf8F6f8a6E24A1B97943e31f256a7/info.json +++ b/blockchains/ethereum/assets/0x24EC2Ca132abf8F6f8a6E24A1B97943e31f256a7/info.json @@ -6,7 +6,7 @@ "type": "ERC20", "symbol": "MOOV", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x24EC2Ca132abf8F6f8a6E24A1B97943e31f256a7", "links": [ { @@ -14,8 +14,8 @@ "url": "https://coingecko.com/en/coins/dotmoovs" }, { - "name": "twitter", - "url": "https://twitter.com/dotmoovs" + "name": "x", + "url": "https://x.com/dotmoovs" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x24EC2Ca132abf8F6f8a6E24A1B97943e31f256a7/logo.png b/blockchains/ethereum/assets/0x24EC2Ca132abf8F6f8a6E24A1B97943e31f256a7/logo.png deleted file mode 100644 index 93258ee8e3b5d..0000000000000 Binary files a/blockchains/ethereum/assets/0x24EC2Ca132abf8F6f8a6E24A1B97943e31f256a7/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x24cCeDEBF841544C9e6a62Af4E8c2fA6e5a46FdE/info.json b/blockchains/ethereum/assets/0x24cCeDEBF841544C9e6a62Af4E8c2fA6e5a46FdE/info.json index 5bcaeb8a26f58..5539fb9d33b72 100644 --- a/blockchains/ethereum/assets/0x24cCeDEBF841544C9e6a62Af4E8c2fA6e5a46FdE/info.json +++ b/blockchains/ethereum/assets/0x24cCeDEBF841544C9e6a62Af4E8c2fA6e5a46FdE/info.json @@ -4,14 +4,14 @@ "symbol": "BLUESPARROW", "decimals": 9, "website": "http://bluesparrowtoken.com", - "description": "The BlueSparrow token was launched 28th October 2021 and was designed to benefit people in all parts of the world no matter the circumstance, country, culture or economic disadvantage. One reason that makes that possible; our draw system!", + "description": "BlueSparrow stands as the premier native token of BlueBit.io Exchange and BlueVinci.io NFT Marketplace. By holding BlueSparrow, users gain access to exclusive trading discounts and lucrative staking opportunities.", "explorer": "https://etherscan.io/token/0x24cCeDEBF841544C9e6a62Af4E8c2fA6e5a46FdE", "status": "active", "id": "0x24cCeDEBF841544C9e6a62Af4E8c2fA6e5a46FdE", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BlueSparrowETH" + "name": "x", + "url": "https://x.com/BlueSparrowETH" }, { "name": "telegram", @@ -28,9 +28,13 @@ { "name": "discord", "url": "https://discord.com/invite/bluesparrow" + }, + { + "name": "github", + "url": "https://github.com/BlueSparrowToken" } ], "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x24cCeDEBF841544C9e6a62Af4E8c2fA6e5a46FdE/logo.png b/blockchains/ethereum/assets/0x24cCeDEBF841544C9e6a62Af4E8c2fA6e5a46FdE/logo.png index aab1fbdeaa8a6..fff673b54dcdf 100644 Binary files a/blockchains/ethereum/assets/0x24cCeDEBF841544C9e6a62Af4E8c2fA6e5a46FdE/logo.png and b/blockchains/ethereum/assets/0x24cCeDEBF841544C9e6a62Af4E8c2fA6e5a46FdE/logo.png differ diff --git a/blockchains/ethereum/assets/0x24fcFC492C1393274B6bcd568ac9e225BEc93584/info.json b/blockchains/ethereum/assets/0x24fcFC492C1393274B6bcd568ac9e225BEc93584/info.json new file mode 100644 index 0000000000000..6166f62e01134 --- /dev/null +++ b/blockchains/ethereum/assets/0x24fcFC492C1393274B6bcd568ac9e225BEc93584/info.json @@ -0,0 +1,40 @@ +{ + "name": "Heroes of Mavia", + "type": "ERC20", + "symbol": "MAVIA", + "decimals": 18, + "website": "https://mavia.com", + "description": "Heroes of Mavia is a mobile free-to-play Web3 MMO Strategy game developed by Skrice Studios. The game takes place in a fantasy-themed island called Mavia, where players build bases on plots of land and battle neighboring bases and armies to earn in-game resources, such as Gold, Oil and Ruby.", + "explorer": "https://etherscan.io/token/0x24fcFC492C1393274B6bcd568ac9e225BEc93584", + "status": "active", + "id": "0x24fcFC492C1393274B6bcd568ac9e225BEc93584", + "links": [ + { + "name": "x", + "url": "https://x.com/MaviaGame" + }, + { + "name": "telegram_news", + "url": "https://t.me/MaviaAnnouncements" + }, + { + "name": "discord", + "url": "https://discord.com/invite/maviaofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/heroes-of-mavia/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/heroes-of-mavia" + }, + { + "name": "medium", + "url": "https://medium.com/heroes-of-mavia" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x24fcFC492C1393274B6bcd568ac9e225BEc93584/logo.png b/blockchains/ethereum/assets/0x24fcFC492C1393274B6bcd568ac9e225BEc93584/logo.png new file mode 100644 index 0000000000000..29a95e25f9b65 Binary files /dev/null and b/blockchains/ethereum/assets/0x24fcFC492C1393274B6bcd568ac9e225BEc93584/logo.png differ diff --git a/blockchains/ethereum/assets/0x25018520138bbaB60684AD7983D4432E8B8E926B/info.json b/blockchains/ethereum/assets/0x25018520138bbaB60684AD7983D4432E8B8E926B/info.json new file mode 100644 index 0000000000000..f2aa2db98983c --- /dev/null +++ b/blockchains/ethereum/assets/0x25018520138bbaB60684AD7983D4432E8B8E926B/info.json @@ -0,0 +1,24 @@ +{ + "name": "Chipotle (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "CMGon is the Ondo Tokenized version of Chipotle, giving tokenholders economic exposure similar to holding CMG and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x25018520138bbaB60684AD7983D4432E8B8E926B", + "type": "ERC20", + "symbol": "CMGon", + "decimals": 18, + "status": "active", + "id": "0x25018520138bbaB60684AD7983D4432E8B8E926B", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chipotle-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x25018520138bbaB60684AD7983D4432E8B8E926B/logo.png b/blockchains/ethereum/assets/0x25018520138bbaB60684AD7983D4432E8B8E926B/logo.png new file mode 100644 index 0000000000000..9b38323e8a3d2 Binary files /dev/null and b/blockchains/ethereum/assets/0x25018520138bbaB60684AD7983D4432E8B8E926B/logo.png differ diff --git a/blockchains/ethereum/assets/0x2541A36BE4cD39286ED61a3E6AFC2307602489d6/info.json b/blockchains/ethereum/assets/0x2541A36BE4cD39286ED61a3E6AFC2307602489d6/info.json new file mode 100644 index 0000000000000..1329d645b9e01 --- /dev/null +++ b/blockchains/ethereum/assets/0x2541A36BE4cD39286ED61a3E6AFC2307602489d6/info.json @@ -0,0 +1,21 @@ +{ + "name": "DOGE20", + "website": "https://dogecoin20.io/en", + "description": "Utilising smart contracts powered by Ethereum, DOGE20 is much more than a meme coin and brings passive earning potential to the community.", + "explorer": "https://etherscan.io/token/0x2541a36be4cd39286ed61a3e6afc2307602489d6", + "type": "ERC20", + "symbol": "DOGE20", + "decimals": 18, + "status": "active", + "id": "0x2541A36BE4cD39286ED61a3E6AFC2307602489d6", + "links": [ + { + "name": "x", + "url": "https://x.com/DOGE_COIN20" + }, + { + "name": "telegram", + "url": "https://t.me/DOGE_COIN20" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2541A36BE4cD39286ED61a3E6AFC2307602489d6/logo.png b/blockchains/ethereum/assets/0x2541A36BE4cD39286ED61a3E6AFC2307602489d6/logo.png new file mode 100644 index 0000000000000..23fa620361e4f Binary files /dev/null and b/blockchains/ethereum/assets/0x2541A36BE4cD39286ED61a3E6AFC2307602489d6/logo.png differ diff --git a/blockchains/ethereum/assets/0x2565ae0385659badCada1031DB704442E1b69982/info.json b/blockchains/ethereum/assets/0x2565ae0385659badCada1031DB704442E1b69982/info.json new file mode 100644 index 0000000000000..a017b40c4c10f --- /dev/null +++ b/blockchains/ethereum/assets/0x2565ae0385659badCada1031DB704442E1b69982/info.json @@ -0,0 +1,25 @@ +{ + "name": "ASSEMBLE", + "type": "ERC20", + "symbol": "ASM", + "decimals": 18, + "description": "Assemble AI is an artificial intelligence-based news agent and the first journalism innovation project. The goal of this project is to provide market trends quickly and in an easily understandable way, analyze these trends using artificial intelligence inference capabilities, and help market participants globally make data-driven decisions.", + "website": "https://assembleprotocol.io/", + "explorer": "https://etherscan.io/token/0x2565ae0385659badcada1031db704442e1b69982", + "id": "0x2565ae0385659badCada1031DB704442E1b69982", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/ASSEMBLE_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/assemble-protocol/" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2565ae0385659badCada1031DB704442E1b69982/logo.png b/blockchains/ethereum/assets/0x2565ae0385659badCada1031DB704442E1b69982/logo.png new file mode 100644 index 0000000000000..a1482bc6a6cce Binary files /dev/null and b/blockchains/ethereum/assets/0x2565ae0385659badCada1031DB704442E1b69982/logo.png differ diff --git a/blockchains/ethereum/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/info.json b/blockchains/ethereum/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/info.json new file mode 100644 index 0000000000000..f8a582352174c --- /dev/null +++ b/blockchains/ethereum/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/info.json @@ -0,0 +1,28 @@ +{ + "name": "Alvey Chain", + "type": "ERC20", + "symbol": "wALV", + "decimals": 18, + "website": "https://www.alveychain.com", + "description": "Alvey Coin is a decentralized blockchain project built on Bitcoin's UTXO model, with support for Ethereum Virtual Machine based smart contracts, and secured by a Proof of Stake consensus.", + "explorer": "https://etherscan.io/token/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497", + "status": "active", + "id": "0x256D1fCE1b1221e8398f65F9B36033CE50B2D497", + "links": [ + { + "name": "x", + "url": "https://x.com/AlveyChain" + }, + { + "name": "github", + "url": "https://github.com/AlveyCoin" + }, + { + "name": "telegram", + "url": "https://t.me/AlveyChain" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/logo.png b/blockchains/ethereum/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/logo.png new file mode 100644 index 0000000000000..697332506680a Binary files /dev/null and b/blockchains/ethereum/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/logo.png differ diff --git a/blockchains/ethereum/assets/0x25931894a86D47441213199621F1F2994e1c39Aa/info.json b/blockchains/ethereum/assets/0x25931894a86D47441213199621F1F2994e1c39Aa/info.json new file mode 100644 index 0000000000000..c7dbe7f428cbb --- /dev/null +++ b/blockchains/ethereum/assets/0x25931894a86D47441213199621F1F2994e1c39Aa/info.json @@ -0,0 +1,29 @@ +{ + "name": "ChainGPT", + "type": "ERC20", + "symbol": "CGPT", + "decimals": 18, + "website": "https://www.chaingpt.org/", + "description": "ChainGPT is an advanced AI model designed specifically for Blockchain, Crypto, and the Web3 space. ChainGPT offers variety of features such as no-code smart contract generator, auditor, fast and reliable source of information, AI trading, and more. ChainGPT is backed by the CGPT utility token.", + "explorer": "https://etherscan.io/token/0x25931894a86d47441213199621f1f2994e1c39aa", + "status": "active", + "id": "0x25931894a86D47441213199621F1F2994e1c39Aa", + "links": [ + { + "name": "x", + "url": "https://x.com/Chain_GPT" + }, + { + "name": "telegram", + "url": "https://t.me/chaingpt" + }, + { + "name": "github", + "url": "https://github.com/ChainGPT-org/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chaingpt/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x25931894a86D47441213199621F1F2994e1c39Aa/logo.png b/blockchains/ethereum/assets/0x25931894a86D47441213199621F1F2994e1c39Aa/logo.png new file mode 100644 index 0000000000000..11296a606fc2c Binary files /dev/null and b/blockchains/ethereum/assets/0x25931894a86D47441213199621F1F2994e1c39Aa/logo.png differ diff --git a/blockchains/ethereum/assets/0x25b24B3c47918b7962B3e49C4F468367F73CC0E0/info.json b/blockchains/ethereum/assets/0x25b24B3c47918b7962B3e49C4F468367F73CC0E0/info.json index 31def2a2b4717..922c3dd865205 100644 --- a/blockchains/ethereum/assets/0x25b24B3c47918b7962B3e49C4F468367F73CC0E0/info.json +++ b/blockchains/ethereum/assets/0x25b24B3c47918b7962B3e49C4F468367F73CC0E0/info.json @@ -10,8 +10,8 @@ "id": "0x25b24B3c47918b7962B3e49C4F468367F73CC0E0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Axltoken" + "name": "x", + "url": "https://x.com/Axltoken" }, { "name": "telegram", @@ -22,4 +22,4 @@ "url": "https://facebook.com/Axltoken" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x25d3f236B2d61656eebdeA86Ac6D42168e340011/info.json b/blockchains/ethereum/assets/0x25d3f236B2d61656eebdeA86Ac6D42168e340011/info.json new file mode 100644 index 0000000000000..edf70fd65be9b --- /dev/null +++ b/blockchains/ethereum/assets/0x25d3f236B2d61656eebdeA86Ac6D42168e340011/info.json @@ -0,0 +1,24 @@ +{ + "name": "IBM (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "IBMon is the Ondo Tokenized version of IBM, giving tokenholders economic exposure similar to holding IBM and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x25d3f236B2d61656eebdeA86Ac6D42168e340011", + "type": "ERC20", + "symbol": "IBMon", + "decimals": 18, + "status": "active", + "id": "0x25d3f236B2d61656eebdeA86Ac6D42168e340011", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ibm-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x25d3f236B2d61656eebdeA86Ac6D42168e340011/logo.png b/blockchains/ethereum/assets/0x25d3f236B2d61656eebdeA86Ac6D42168e340011/logo.png new file mode 100644 index 0000000000000..42dcbb8aa9c76 Binary files /dev/null and b/blockchains/ethereum/assets/0x25d3f236B2d61656eebdeA86Ac6D42168e340011/logo.png differ diff --git a/blockchains/ethereum/assets/0x25f8087EAD173b73D6e8B84329989A8eEA16CF73/info.json b/blockchains/ethereum/assets/0x25f8087EAD173b73D6e8B84329989A8eEA16CF73/info.json index 6f70b55b93398..12f8cf37b8b57 100644 --- a/blockchains/ethereum/assets/0x25f8087EAD173b73D6e8B84329989A8eEA16CF73/info.json +++ b/blockchains/ethereum/assets/0x25f8087EAD173b73D6e8B84329989A8eEA16CF73/info.json @@ -22,8 +22,8 @@ "url": "https://youtube.com/yieldguildgames" }, { - "name": "twitter", - "url": "https://twitter.com/YieldGuild" + "name": "x", + "url": "https://x.com/YieldGuild" }, { "name": "facebook", diff --git a/blockchains/ethereum/assets/0x2691b13fca1E02322685b9554B5ae0F5F3f05C55/info.json b/blockchains/ethereum/assets/0x2691b13fca1E02322685b9554B5ae0F5F3f05C55/info.json new file mode 100644 index 0000000000000..248dfbee7eb3f --- /dev/null +++ b/blockchains/ethereum/assets/0x2691b13fca1E02322685b9554B5ae0F5F3f05C55/info.json @@ -0,0 +1,28 @@ +{ + "name": "Intuitive Surgical (Ondo Tokenized)", + "type": "ERC20", + "symbol": "ISRGon", + "decimals": 18, + "description": "ISRGon is the Ondo Tokenized version of Intuitive Surgical, giving tokenholders economic exposure similar to holding ISRG and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x2691b13fca1E02322685b9554B5ae0F5F3f05C55", + "status": "active", + "id": "0x2691b13fca1E02322685b9554B5ae0F5F3f05C55", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/intuitive-surgical-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/intuitive-surgical-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2691b13fca1E02322685b9554B5ae0F5F3f05C55/logo.png b/blockchains/ethereum/assets/0x2691b13fca1E02322685b9554B5ae0F5F3f05C55/logo.png new file mode 100644 index 0000000000000..3d67baddce3dd Binary files /dev/null and b/blockchains/ethereum/assets/0x2691b13fca1E02322685b9554B5ae0F5F3f05C55/logo.png differ diff --git a/blockchains/ethereum/assets/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1/info.json b/blockchains/ethereum/assets/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1/info.json index 031556649b84f..ef2a6afe2331a 100644 --- a/blockchains/ethereum/assets/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1/info.json +++ b/blockchains/ethereum/assets/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1/info.json @@ -1,14 +1,41 @@ { - "name": "BitcoinSoV", + "name": "BSOV Token", "symbol": "BSOV", "type": "ERC20", "decimals": 8, - "description": "-", - "website": "https://www.btcsov.com/", + "description": "BSOV Token is not a Bitcoin fork, but shares Bitcoin’s supply distribution with a deflationary design. This cryptocurrency is the first mineable and deflationary-by-design crypto commodity built on the Ethereum blockchain (ERC20).", + "website": "https://www.bsovtoken.com/", "explorer": "https://etherscan.io/token/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1", "status": "active", "id": "0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1", "tags": [ - "deflationary" + "deflationary", + "defi" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/BitcoinSoVCommunity" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bitcoinsov/" + }, + { + "name": "whitepaper", + "url": "https://bsovtoken.com/wp-content/uploads/2020/06/BitcoinSoV-BSoV_-A-Mineable-Deflationary-Store-of-Value-1.pdf" + }, + { + "name": "telegram_news", + "url": "https://t.me/BSOVnews" + }, + { + "name": "blog", + "url": "https://bsovtoken.com/stories" + }, + { + "name": "x", + "url": "https://x.com/bsov_" + } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1/logo.png b/blockchains/ethereum/assets/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1/logo.png index 94f2855f0948a..525f7eb1d24fe 100644 Binary files a/blockchains/ethereum/assets/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1/logo.png and b/blockchains/ethereum/assets/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1/logo.png differ diff --git a/blockchains/ethereum/assets/0x26CE25148832C04f3d7F26F32478a9fe55197166/info.json b/blockchains/ethereum/assets/0x26CE25148832C04f3d7F26F32478a9fe55197166/info.json index bff29ef2904bd..a220c4979a854 100644 --- a/blockchains/ethereum/assets/0x26CE25148832C04f3d7F26F32478a9fe55197166/info.json +++ b/blockchains/ethereum/assets/0x26CE25148832C04f3d7F26F32478a9fe55197166/info.json @@ -10,8 +10,8 @@ "id": "0x26CE25148832C04f3d7F26F32478a9fe55197166", "links": [ { - "name": "twitter", - "url": "https://twitter.com/DexToolsapp" + "name": "x", + "url": "https://x.com/DexToolsapp" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x26E1f9F817b3b5FC2146c01ae34826593E593962/info.json b/blockchains/ethereum/assets/0x26E1f9F817b3b5FC2146c01ae34826593E593962/info.json index b5400357883d1..a77c4b0086856 100644 --- a/blockchains/ethereum/assets/0x26E1f9F817b3b5FC2146c01ae34826593E593962/info.json +++ b/blockchains/ethereum/assets/0x26E1f9F817b3b5FC2146c01ae34826593E593962/info.json @@ -22,8 +22,8 @@ "url": "https://coinmarketcap.com/currencies/qiibee/" }, { - "name": "twitter", - "url": "https://twitter.com/qiibee" + "name": "x", + "url": "https://x.com/qiibee" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0x26E43759551333e57F073bb0772F50329A957b30/info.json b/blockchains/ethereum/assets/0x26E43759551333e57F073bb0772F50329A957b30/info.json index 3478313a31d40..0408bf63cd008 100644 --- a/blockchains/ethereum/assets/0x26E43759551333e57F073bb0772F50329A957b30/info.json +++ b/blockchains/ethereum/assets/0x26E43759551333e57F073bb0772F50329A957b30/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/degen-vc" }, { - "name": "twitter", - "url": "https://twitter.com/degen_vc" + "name": "x", + "url": "https://x.com/degen_vc" }, { "name": "whitepaper", diff --git a/blockchains/ethereum/assets/0x26E550AC11B26f78A04489d5F20f24E3559f7Dd9/info.json b/blockchains/ethereum/assets/0x26E550AC11B26f78A04489d5F20f24E3559f7Dd9/info.json new file mode 100644 index 0000000000000..e2c2f53f01212 --- /dev/null +++ b/blockchains/ethereum/assets/0x26E550AC11B26f78A04489d5F20f24E3559f7Dd9/info.json @@ -0,0 +1,21 @@ +{ + "name": "Kekius Maximus", + "type": "ERC20", + "symbol": "KEKIUS", + "decimals": 9, + "website": "https://kekiusmaximuserc.com/", + "description": "Kekius Maximus (KEKIUS) is a meme-inspired cryptocurrency token that operates on the Ethereum blockchain.", + "explorer": "https://etherscan.io/token/0x26e550ac11b26f78a04489d5f20f24e3559f7dd9", + "status": "active", + "id": "0x26E550AC11B26f78A04489d5F20f24E3559f7Dd9", + "links": [ + { + "name": "x", + "url": "https://x.com/wearekekius?s=21" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kekius-maximus-vip/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x26E550AC11B26f78A04489d5F20f24E3559f7Dd9/logo.png b/blockchains/ethereum/assets/0x26E550AC11B26f78A04489d5F20f24E3559f7Dd9/logo.png new file mode 100644 index 0000000000000..5897d9b3de95e Binary files /dev/null and b/blockchains/ethereum/assets/0x26E550AC11B26f78A04489d5F20f24E3559f7Dd9/logo.png differ diff --git a/blockchains/ethereum/assets/0x26dcFbFa8Bc267b250432c01C982Eaf81cC5480C/info.json b/blockchains/ethereum/assets/0x26dcFbFa8Bc267b250432c01C982Eaf81cC5480C/info.json index d1b1d22f1c0f3..f5b21fa8c9547 100644 --- a/blockchains/ethereum/assets/0x26dcFbFa8Bc267b250432c01C982Eaf81cC5480C/info.json +++ b/blockchains/ethereum/assets/0x26dcFbFa8Bc267b250432c01C982Eaf81cC5480C/info.json @@ -10,8 +10,8 @@ "id": "0x26dcFbFa8Bc267b250432c01C982Eaf81cC5480C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ankr" + "name": "x", + "url": "https://x.com/ankr" }, { "name": "github", @@ -53,4 +53,4 @@ "tags": [ "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x27054b13b1B798B345b591a4d22e6562d47eA75a/info.json b/blockchains/ethereum/assets/0x27054b13b1B798B345b591a4d22e6562d47eA75a/info.json index d1751ebd76508..7818adeb03738 100644 --- a/blockchains/ethereum/assets/0x27054b13b1B798B345b591a4d22e6562d47eA75a/info.json +++ b/blockchains/ethereum/assets/0x27054b13b1B798B345b591a4d22e6562d47eA75a/info.json @@ -10,8 +10,8 @@ "id": "0x27054b13b1B798B345b591a4d22e6562d47eA75a", "links": [ { - "name": "twitter", - "url": "https://twitter.com/airswap" + "name": "x", + "url": "https://x.com/airswap" }, { "name": "discord", diff --git a/blockchains/ethereum/assets/0x275f5Ad03be0Fa221B4C6649B8AeE09a42D9412A/info.json b/blockchains/ethereum/assets/0x275f5Ad03be0Fa221B4C6649B8AeE09a42D9412A/info.json index eaa8bdbe12c3d..a6f35092acc6d 100644 --- a/blockchains/ethereum/assets/0x275f5Ad03be0Fa221B4C6649B8AeE09a42D9412A/info.json +++ b/blockchains/ethereum/assets/0x275f5Ad03be0Fa221B4C6649B8AeE09a42D9412A/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/DIGITALAX_" + "name": "x", + "url": "https://x.com/DIGITALAX_" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x27C891c210aEc85267c2Eb5Fd3aD2E7c5758a1dC/info.json b/blockchains/ethereum/assets/0x27C891c210aEc85267c2Eb5Fd3aD2E7c5758a1dC/info.json index 20341338e94ee..21f0d8886ad81 100644 --- a/blockchains/ethereum/assets/0x27C891c210aEc85267c2Eb5Fd3aD2E7c5758a1dC/info.json +++ b/blockchains/ethereum/assets/0x27C891c210aEc85267c2Eb5Fd3aD2E7c5758a1dC/info.json @@ -10,8 +10,8 @@ "id": "0x27C891c210aEc85267c2Eb5Fd3aD2E7c5758a1dC", "links": [ { - "name": "twitter", - "url": "https://twitter.com/terawatt_led" + "name": "x", + "url": "https://x.com/terawatt_led" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x28151F5888833D3d767C4d6945a0Ee50D1B193E3/info.json b/blockchains/ethereum/assets/0x28151F5888833D3d767C4d6945a0Ee50D1B193E3/info.json new file mode 100644 index 0000000000000..ece9d6edb4f87 --- /dev/null +++ b/blockchains/ethereum/assets/0x28151F5888833D3d767C4d6945a0Ee50D1B193E3/info.json @@ -0,0 +1,24 @@ +{ + "name": "Novo Nordisk (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "NVOon is the Ondo Tokenized version of Novo Nordisk, giving tokenholders economic exposure similar to holding NVO and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x28151F5888833D3d767C4d6945a0Ee50D1B193E3", + "type": "ERC20", + "symbol": "NVOon", + "decimals": 18, + "status": "active", + "id": "0x28151F5888833D3d767C4d6945a0Ee50D1B193E3", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/novo-nordisk-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x28151F5888833D3d767C4d6945a0Ee50D1B193E3/logo.png b/blockchains/ethereum/assets/0x28151F5888833D3d767C4d6945a0Ee50D1B193E3/logo.png new file mode 100644 index 0000000000000..455582b20589a Binary files /dev/null and b/blockchains/ethereum/assets/0x28151F5888833D3d767C4d6945a0Ee50D1B193E3/logo.png differ diff --git a/blockchains/ethereum/assets/0x2816169A49953C548BfEb3948dCF05c4A0E4657D/info.json b/blockchains/ethereum/assets/0x2816169A49953C548BfEb3948dCF05c4A0E4657D/info.json new file mode 100644 index 0000000000000..71903d2640d7a --- /dev/null +++ b/blockchains/ethereum/assets/0x2816169A49953C548BfEb3948dCF05c4A0E4657D/info.json @@ -0,0 +1,24 @@ +{ + "name": "MercadoLibre (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "MELIon is the Ondo Tokenized version of MercadoLibre, giving tokenholders economic exposure similar to holding MELI and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x2816169A49953C548BfEb3948dCF05c4A0E4657D", + "type": "ERC20", + "symbol": "MELIon", + "decimals": 18, + "status": "active", + "id": "0x2816169A49953C548BfEb3948dCF05c4A0E4657D", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mercadolibre-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2816169A49953C548BfEb3948dCF05c4A0E4657D/logo.png b/blockchains/ethereum/assets/0x2816169A49953C548BfEb3948dCF05c4A0E4657D/logo.png new file mode 100644 index 0000000000000..eab236a64a1fe Binary files /dev/null and b/blockchains/ethereum/assets/0x2816169A49953C548BfEb3948dCF05c4A0E4657D/logo.png differ diff --git a/blockchains/ethereum/assets/0x28561B8A2360F463011c16b6Cc0B0cbEF8dbBcad/info.json b/blockchains/ethereum/assets/0x28561B8A2360F463011c16b6Cc0B0cbEF8dbBcad/info.json new file mode 100644 index 0000000000000..5b768194eedce --- /dev/null +++ b/blockchains/ethereum/assets/0x28561B8A2360F463011c16b6Cc0B0cbEF8dbBcad/info.json @@ -0,0 +1,21 @@ +{ + "name": "MOO DENG", + "website": "https://moodeng.vip/", + "description": "oodeng is a community-driven meme coin on Ethereum, inspired by a famous hippo from a Thai zoo.", + "explorer": "https://etherscan.io/token/0x28561b8a2360f463011c16b6cc0b0cbef8dbbcad", + "symbol": "MOODENG", + "type": "ERC20", + "decimals": 9, + "status": "active", + "id": "0x28561B8A2360F463011c16b6Cc0B0cbEF8dbBcad", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/moo-deng-token/" + }, + { + "name": "x", + "url": "https://x.com/moodengctoeth" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x28561B8A2360F463011c16b6Cc0B0cbEF8dbBcad/logo.png b/blockchains/ethereum/assets/0x28561B8A2360F463011c16b6Cc0B0cbEF8dbBcad/logo.png new file mode 100644 index 0000000000000..c91ace875a734 Binary files /dev/null and b/blockchains/ethereum/assets/0x28561B8A2360F463011c16b6Cc0B0cbEF8dbBcad/logo.png differ diff --git a/blockchains/ethereum/assets/0x289Ff00235D2b98b0145ff5D4435d3e92f9540a6/info.json b/blockchains/ethereum/assets/0x289Ff00235D2b98b0145ff5D4435d3e92f9540a6/info.json new file mode 100644 index 0000000000000..db04c9bdad831 --- /dev/null +++ b/blockchains/ethereum/assets/0x289Ff00235D2b98b0145ff5D4435d3e92f9540a6/info.json @@ -0,0 +1,21 @@ +{ + "name": "Book of Ethereum", + "website": "https://bookofeth.xyz/", + "description": "The Book of Ethereum project is designed as a community-driven meme token that aims to catalog all memes within the Ethereum community. It was launched fairly by the development team with the goal of creating a decentralized repository for meme shari...", + "explorer": "https://etherscan.io/token/0x289ff00235d2b98b0145ff5d4435d3e92f9540a6", + "type": "ERC20", + "symbol": "BOOE", + "decimals": 18, + "status": "active", + "id": "0x289Ff00235D2b98b0145ff5D4435d3e92f9540a6", + "links": [ + { + "name": "x", + "url": "https://x.com/Bookof_Eth" + }, + { + "name": "telegram", + "url": "https://t.me/BookofEthereum" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x289Ff00235D2b98b0145ff5D4435d3e92f9540a6/logo.png b/blockchains/ethereum/assets/0x289Ff00235D2b98b0145ff5D4435d3e92f9540a6/logo.png new file mode 100644 index 0000000000000..31a2f4677783b Binary files /dev/null and b/blockchains/ethereum/assets/0x289Ff00235D2b98b0145ff5D4435d3e92f9540a6/logo.png differ diff --git a/blockchains/ethereum/assets/0x292fcDD1B104DE5A00250fEBbA9bC6A5092A0076/info.json b/blockchains/ethereum/assets/0x292fcDD1B104DE5A00250fEBbA9bC6A5092A0076/info.json new file mode 100644 index 0000000000000..1640d1b5f3c2e --- /dev/null +++ b/blockchains/ethereum/assets/0x292fcDD1B104DE5A00250fEBbA9bC6A5092A0076/info.json @@ -0,0 +1,17 @@ +{ + "name": "HashAI", + "type": "ERC20", + "symbol": "HASHAI", + "decimals": 18, + "website": "https://hashai.cc", + "description": "Where Artificial Intelligence Meets Mining Excellence With vast Crypto and Web3 experience, the Hash AI team has established the infrastructure, partnerships, and distribution network for a successful Crypto mining company. This involves mining rig supplies, rig hosting and GPU sales, and a mining facility with over 500 top GPUs.", + "explorer": "https://etherscan.io/token/0x292fcDD1B104DE5A00250fEBbA9bC6A5092A0076", + "status": "active", + "id": "0x292fcDD1B104DE5A00250fEBbA9bC6A5092A0076", + "links": [ + { + "name": "x", + "url": "https://x.com/HashAi_Eth" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x292fcDD1B104DE5A00250fEBbA9bC6A5092A0076/logo.png b/blockchains/ethereum/assets/0x292fcDD1B104DE5A00250fEBbA9bC6A5092A0076/logo.png new file mode 100644 index 0000000000000..5a195080d3214 Binary files /dev/null and b/blockchains/ethereum/assets/0x292fcDD1B104DE5A00250fEBbA9bC6A5092A0076/logo.png differ diff --git a/blockchains/ethereum/assets/0x29E9fDF5933824ad21Bc6dbb8BF156EFA3735e32/info.json b/blockchains/ethereum/assets/0x29E9fDF5933824ad21Bc6dbb8BF156EFA3735e32/info.json index 08106eca47fc6..9b25f1261ec2d 100644 --- a/blockchains/ethereum/assets/0x29E9fDF5933824ad21Bc6dbb8BF156EFA3735e32/info.json +++ b/blockchains/ethereum/assets/0x29E9fDF5933824ad21Bc6dbb8BF156EFA3735e32/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/meterio" }, { - "name": "twitter", - "url": "https://twitter.com/Meter_IO" + "name": "x", + "url": "https://x.com/Meter_IO" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x2A79324c19Ef2B89Ea98b23BC669B7E7c9f8A517/info.json b/blockchains/ethereum/assets/0x2A79324c19Ef2B89Ea98b23BC669B7E7c9f8A517/info.json new file mode 100644 index 0000000000000..092dc0094d5b5 --- /dev/null +++ b/blockchains/ethereum/assets/0x2A79324c19Ef2B89Ea98b23BC669B7E7c9f8A517/info.json @@ -0,0 +1,25 @@ +{ + "name": "WAX", + "type": "ERC20", + "symbol": "WAXP", + "decimals": 8, + "description": "WAX (WAXP) is a purpose-built blockchain, released in 2017, that is designed to make e-commerce transactions faster, simpler and safer for every party involved. The WAX blockchain uses delegated proof-of-stake (DPoS) as its consensus mechanism. It is fully compatible with EOS.", + "website": "https://www.wax.io/", + "explorer": "https://etherscan.io/token/0x2a79324c19ef2b89ea98b23bc669b7e7c9f8a517", + "id": "0x2A79324c19Ef2B89Ea98b23BC669B7E7c9f8A517", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/WAX_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wax/" + } + ], + "tags": [ + "gamefi" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2A79324c19Ef2B89Ea98b23BC669B7E7c9f8A517/logo.png b/blockchains/ethereum/assets/0x2A79324c19Ef2B89Ea98b23BC669B7E7c9f8A517/logo.png new file mode 100644 index 0000000000000..6658bd2506d4f Binary files /dev/null and b/blockchains/ethereum/assets/0x2A79324c19Ef2B89Ea98b23BC669B7E7c9f8A517/logo.png differ diff --git a/blockchains/ethereum/assets/0x2AF5D2aD76741191D15Dfe7bF6aC92d4Bd912Ca3/info.json b/blockchains/ethereum/assets/0x2AF5D2aD76741191D15Dfe7bF6aC92d4Bd912Ca3/info.json index d740e903cde4d..6db1682fe0b93 100644 --- a/blockchains/ethereum/assets/0x2AF5D2aD76741191D15Dfe7bF6aC92d4Bd912Ca3/info.json +++ b/blockchains/ethereum/assets/0x2AF5D2aD76741191D15Dfe7bF6aC92d4Bd912Ca3/info.json @@ -14,8 +14,8 @@ "url": "https://facebook.com/bitfinex1" }, { - "name": "twitter", - "url": "https://twitter.com/bitfinex" + "name": "x", + "url": "https://x.com/bitfinex" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x2Ab6Bb8408ca3199B8Fa6C92d5b455F820Af03c4/info.json b/blockchains/ethereum/assets/0x2Ab6Bb8408ca3199B8Fa6C92d5b455F820Af03c4/info.json index 5f68164f322c5..93962203bdf75 100644 --- a/blockchains/ethereum/assets/0x2Ab6Bb8408ca3199B8Fa6C92d5b455F820Af03c4/info.json +++ b/blockchains/ethereum/assets/0x2Ab6Bb8408ca3199B8Fa6C92d5b455F820Af03c4/info.json @@ -10,8 +10,8 @@ "id": "0x2Ab6Bb8408ca3199B8Fa6C92d5b455F820Af03c4", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TE_FOOD" + "name": "x", + "url": "https://x.com/TE_FOOD" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0x2B7727076B9C9B1834a2f95B81f12EEdD30db9f1/info.json b/blockchains/ethereum/assets/0x2B7727076B9C9B1834a2f95B81f12EEdD30db9f1/info.json new file mode 100644 index 0000000000000..998a2b871bafa --- /dev/null +++ b/blockchains/ethereum/assets/0x2B7727076B9C9B1834a2f95B81f12EEdD30db9f1/info.json @@ -0,0 +1,24 @@ +{ + "name": "Coherent (Ondo Tokenized)", + "type": "ERC20", + "symbol": "COHRon", + "decimals": 18, + "description": "COHRon is the Ondo Tokenized version of Coherent, giving tokenholders economic exposure similar to holding COHR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x2B7727076B9C9B1834a2f95B81f12EEdD30db9f1", + "status": "active", + "id": "0x2B7727076B9C9B1834a2f95B81f12EEdD30db9f1", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/coherent-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2B7727076B9C9B1834a2f95B81f12EEdD30db9f1/logo.png b/blockchains/ethereum/assets/0x2B7727076B9C9B1834a2f95B81f12EEdD30db9f1/logo.png new file mode 100644 index 0000000000000..c890935b1e98c Binary files /dev/null and b/blockchains/ethereum/assets/0x2B7727076B9C9B1834a2f95B81f12EEdD30db9f1/logo.png differ diff --git a/blockchains/ethereum/assets/0x2Bc7Ff0C5dA9F1a4A51F96e77C5b0F7165DC06d2/info.json b/blockchains/ethereum/assets/0x2Bc7Ff0C5dA9F1a4A51F96e77C5b0F7165DC06d2/info.json new file mode 100644 index 0000000000000..2183562b57c43 --- /dev/null +++ b/blockchains/ethereum/assets/0x2Bc7Ff0C5dA9F1a4A51F96e77C5b0F7165DC06d2/info.json @@ -0,0 +1,24 @@ +{ + "name": "American Express (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "AXPon is the Ondo Tokenized version of American Express, giving tokenholders economic exposure similar to holding AXP and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x2Bc7Ff0C5dA9F1a4A51F96e77C5b0F7165DC06d2", + "type": "ERC20", + "symbol": "AXPon", + "decimals": 18, + "status": "active", + "id": "0x2Bc7Ff0C5dA9F1a4A51F96e77C5b0F7165DC06d2", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/american-express-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2Bc7Ff0C5dA9F1a4A51F96e77C5b0F7165DC06d2/logo.png b/blockchains/ethereum/assets/0x2Bc7Ff0C5dA9F1a4A51F96e77C5b0F7165DC06d2/logo.png new file mode 100644 index 0000000000000..963c371457156 Binary files /dev/null and b/blockchains/ethereum/assets/0x2Bc7Ff0C5dA9F1a4A51F96e77C5b0F7165DC06d2/logo.png differ diff --git a/blockchains/ethereum/assets/0x2D1F7226Bd1F780AF6B9A49DCC0aE00E8Df4bDEE/info.json b/blockchains/ethereum/assets/0x2D1F7226Bd1F780AF6B9A49DCC0aE00E8Df4bDEE/info.json new file mode 100644 index 0000000000000..3da1382fcea31 --- /dev/null +++ b/blockchains/ethereum/assets/0x2D1F7226Bd1F780AF6B9A49DCC0aE00E8Df4bDEE/info.json @@ -0,0 +1,24 @@ +{ + "name": "NVIDIA (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "NVDAon is the Ondo Tokenized version of NVIDIA, giving tokenholders economic exposure similar to holding NVDA and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x2D1F7226Bd1F780AF6B9A49DCC0aE00E8Df4bDEE", + "type": "ERC20", + "symbol": "NVDAon", + "decimals": 18, + "status": "active", + "id": "0x2D1F7226Bd1F780AF6B9A49DCC0aE00E8Df4bDEE", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nvidia-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2D1F7226Bd1F780AF6B9A49DCC0aE00E8Df4bDEE/logo.png b/blockchains/ethereum/assets/0x2D1F7226Bd1F780AF6B9A49DCC0aE00E8Df4bDEE/logo.png new file mode 100644 index 0000000000000..75ae30e66fa33 Binary files /dev/null and b/blockchains/ethereum/assets/0x2D1F7226Bd1F780AF6B9A49DCC0aE00E8Df4bDEE/logo.png differ diff --git a/blockchains/ethereum/assets/0x2DB07f061f12f1Ef51C49B02Ad5A3EB71f60B69e/info.json b/blockchains/ethereum/assets/0x2DB07f061f12f1Ef51C49B02Ad5A3EB71f60B69e/info.json index 2ac45bee79815..52b6aa1eb4e96 100644 --- a/blockchains/ethereum/assets/0x2DB07f061f12f1Ef51C49B02Ad5A3EB71f60B69e/info.json +++ b/blockchains/ethereum/assets/0x2DB07f061f12f1Ef51C49B02Ad5A3EB71f60B69e/info.json @@ -10,11 +10,11 @@ "id": "0x2DB07f061f12f1Ef51C49B02Ad5A3EB71f60B69e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/sgt_sl8termelon" + "name": "x", + "url": "https://x.com/sgt_sl8termelon" } ], "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2DBd330bC9B7f3A822a9173aB52172BdDDcAcE2A/info.json b/blockchains/ethereum/assets/0x2DBd330bC9B7f3A822a9173aB52172BdDDcAcE2A/info.json index 843669363514d..6b342a6742adb 100644 --- a/blockchains/ethereum/assets/0x2DBd330bC9B7f3A822a9173aB52172BdDDcAcE2A/info.json +++ b/blockchains/ethereum/assets/0x2DBd330bC9B7f3A822a9173aB52172BdDDcAcE2A/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/yfedfinance" }, { - "name": "twitter", - "url": "https://twitter.com/FinanceYfed" + "name": "x", + "url": "https://x.com/FinanceYfed" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x2DC917b722184ECE1dCb9Bb9DDDfB1D63CcD25EB/info.json b/blockchains/ethereum/assets/0x2DC917b722184ECE1dCb9Bb9DDDfB1D63CcD25EB/info.json new file mode 100644 index 0000000000000..dfb0b3b9088f9 --- /dev/null +++ b/blockchains/ethereum/assets/0x2DC917b722184ECE1dCb9Bb9DDDfB1D63CcD25EB/info.json @@ -0,0 +1,21 @@ +{ + "name": "WHITE RHINOCEROS", + "symbol": "WHRH", + "type": "ERC20", + "decimals": 18, + "description": "The White Rhinoceros symbolizes strength, resilience, and communal bonds – qualities that reflect our project's core values. Much like the majestic creature it is named after, WHRH seeks to establish a lasting presence in the crypto space.", + "website": "https://whrh-token.com/", + "explorer": "https://etherscan.io/token/0x2dc917b722184ece1dcb9bb9dddfb1d63ccd25eb", + "status": "active", + "id": "0x2DC917b722184ECE1dCb9Bb9DDDfB1D63CcD25EB", + "links": [ + { + "name": "x", + "url": "https://x.com/Whrh_token" + }, + { + "name": "telegram", + "url": "https://t.me/WhiteRhinocerosToken" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2DC917b722184ECE1dCb9Bb9DDDfB1D63CcD25EB/logo.png b/blockchains/ethereum/assets/0x2DC917b722184ECE1dCb9Bb9DDDfB1D63CcD25EB/logo.png new file mode 100644 index 0000000000000..67e5504e3d6a6 Binary files /dev/null and b/blockchains/ethereum/assets/0x2DC917b722184ECE1dCb9Bb9DDDfB1D63CcD25EB/logo.png differ diff --git a/blockchains/ethereum/assets/0x2Df38cA485D01fC15e4FD85847ed26b7EF871c1c/info.json b/blockchains/ethereum/assets/0x2Df38cA485D01fC15e4FD85847ed26b7EF871c1c/info.json new file mode 100644 index 0000000000000..653b2652db0d2 --- /dev/null +++ b/blockchains/ethereum/assets/0x2Df38cA485D01fC15e4FD85847ed26b7EF871c1c/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares TIPS Bond (Ondo)", + "website": "https://ondo.finance/", + "description": "TIPon is the Ondo Tokenized version of the iShares TIPS Bond ETF, giving tokenholders economic exposure similar to holding TIP and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x2Df38cA485D01fC15e4FD85847ed26b7EF871c1c", + "type": "ERC20", + "symbol": "TIPon", + "decimals": 18, + "status": "active", + "id": "0x2Df38cA485D01fC15e4FD85847ed26b7EF871c1c", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-tips-bond-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2Df38cA485D01fC15e4FD85847ed26b7EF871c1c/logo.png b/blockchains/ethereum/assets/0x2Df38cA485D01fC15e4FD85847ed26b7EF871c1c/logo.png new file mode 100644 index 0000000000000..731ceba6a1840 Binary files /dev/null and b/blockchains/ethereum/assets/0x2Df38cA485D01fC15e4FD85847ed26b7EF871c1c/logo.png differ diff --git a/blockchains/ethereum/assets/0x2F2e4b09B99fbf018F600e031aAfD9Da6347Cc75/info.json b/blockchains/ethereum/assets/0x2F2e4b09B99fbf018F600e031aAfD9Da6347Cc75/info.json new file mode 100644 index 0000000000000..9143cc6d56280 --- /dev/null +++ b/blockchains/ethereum/assets/0x2F2e4b09B99fbf018F600e031aAfD9Da6347Cc75/info.json @@ -0,0 +1,24 @@ +{ + "name": "IonQ (Ondo Tokenized)", + "type": "ERC20", + "symbol": "IONQon", + "decimals": 18, + "description": "IONQon is the Ondo Tokenized version of IonQ, giving tokenholders economic exposure similar to holding IONQ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x2F2e4b09B99fbf018F600e031aAfD9Da6347Cc75", + "status": "active", + "id": "0x2F2e4b09B99fbf018F600e031aAfD9Da6347Cc75", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ionq-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2F2e4b09B99fbf018F600e031aAfD9Da6347Cc75/logo.png b/blockchains/ethereum/assets/0x2F2e4b09B99fbf018F600e031aAfD9Da6347Cc75/logo.png new file mode 100644 index 0000000000000..69da34d6c46b4 Binary files /dev/null and b/blockchains/ethereum/assets/0x2F2e4b09B99fbf018F600e031aAfD9Da6347Cc75/logo.png differ diff --git a/blockchains/ethereum/assets/0x2F42b7d686ca3EffC69778B6ED8493A7787b4d6E/info.json b/blockchains/ethereum/assets/0x2F42b7d686ca3EffC69778B6ED8493A7787b4d6E/info.json new file mode 100644 index 0000000000000..115cc30163f9b --- /dev/null +++ b/blockchains/ethereum/assets/0x2F42b7d686ca3EffC69778B6ED8493A7787b4d6E/info.json @@ -0,0 +1,17 @@ +{ + "name": "Taraxa", + "type": "ERC20", + "symbol": "TARA", + "decimals": 18, + "website": "https://www.taraxa.io", + "description": "Taraxa is supercharging DeFi & Social AI with the world's only EVM-compatible blockDAG Layer-1", + "explorer": "https://etherscan.io/token/0x2f42b7d686ca3effc69778b6ed8493a7787b4d6e", + "status": "active", + "id": "0x2F42b7d686ca3EffC69778B6ED8493A7787b4d6E", + "links": [ + { + "name": "x", + "url": "https://x.com/taraxa_project" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2F42b7d686ca3EffC69778B6ED8493A7787b4d6E/logo.png b/blockchains/ethereum/assets/0x2F42b7d686ca3EffC69778B6ED8493A7787b4d6E/logo.png new file mode 100644 index 0000000000000..c90c1f193087b Binary files /dev/null and b/blockchains/ethereum/assets/0x2F42b7d686ca3EffC69778B6ED8493A7787b4d6E/logo.png differ diff --git a/blockchains/ethereum/assets/0x2a3bFF78B79A009976EeA096a51A948a3dC00e34/info.json b/blockchains/ethereum/assets/0x2a3bFF78B79A009976EeA096a51A948a3dC00e34/info.json index e4bd64c19d29f..493f32f505861 100644 --- a/blockchains/ethereum/assets/0x2a3bFF78B79A009976EeA096a51A948a3dC00e34/info.json +++ b/blockchains/ethereum/assets/0x2a3bFF78B79A009976EeA096a51A948a3dC00e34/info.json @@ -10,8 +10,8 @@ "status": "active", "links": [ { - "name": "twitter", - "url": "https://twitter.com/WilderWorld" + "name": "x", + "url": "https://x.com/WilderWorld" }, { "name": "medium", @@ -46,4 +46,4 @@ "nft", "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2a7e415C169cE3a580c6F374Dc26f6Aaad1EccFe/info.json b/blockchains/ethereum/assets/0x2a7e415C169cE3a580c6F374Dc26f6Aaad1EccFe/info.json new file mode 100644 index 0000000000000..bc48a8197994a --- /dev/null +++ b/blockchains/ethereum/assets/0x2a7e415C169cE3a580c6F374Dc26f6Aaad1EccFe/info.json @@ -0,0 +1,21 @@ +{ + "name": "HACHI", + "website": "https://hachitoken.com/", + "description": "HACHI (Hachiko) is without a doubt the most famous dog of the Akita Inu breed. Loyalty Above All.", + "explorer": "https://etherscan.io/token/0x2a7e415c169ce3a580c6f374dc26f6aaad1eccfe", + "type": "ERC20", + "symbol": "HACHI", + "decimals": 18, + "status": "active", + "id": "0x2a7e415C169cE3a580c6F374Dc26f6Aaad1EccFe", + "links": [ + { + "name": "telegram", + "url": "https://t.me/hachitoken" + }, + { + "name": "x", + "url": "https://x.com/RealHachiToken" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2a7e415C169cE3a580c6F374Dc26f6Aaad1EccFe/logo.png b/blockchains/ethereum/assets/0x2a7e415C169cE3a580c6F374Dc26f6Aaad1EccFe/logo.png new file mode 100644 index 0000000000000..8bbed2d7b7c6b Binary files /dev/null and b/blockchains/ethereum/assets/0x2a7e415C169cE3a580c6F374Dc26f6Aaad1EccFe/logo.png differ diff --git a/blockchains/ethereum/assets/0x2a9bDCFF37aB68B95A53435ADFd8892e86084F93/info.json b/blockchains/ethereum/assets/0x2a9bDCFF37aB68B95A53435ADFd8892e86084F93/info.json new file mode 100644 index 0000000000000..2a357ba08737c --- /dev/null +++ b/blockchains/ethereum/assets/0x2a9bDCFF37aB68B95A53435ADFd8892e86084F93/info.json @@ -0,0 +1,21 @@ +{ + "name": "Alpha Quark Token", + "type": "ERC20", + "symbol": "AQT", + "decimals": 18, + "website": "https://alphaquark.io/", + "description": "Alpha Quark deals with intellectual property based NFT(Non-Fungible Token) and metaverse. Alpha Quark provides NFT marketplace and metaverse experience for users so that Alpha Quark token can be used as utility token in the ecosystem.", + "explorer": "https://etherscan.io/token/0x2a9bdcff37ab68b95a53435adfd8892e86084f93", + "status": "active", + "id": "0x2a9bDCFF37aB68B95A53435ADFd8892e86084F93", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/alpha-quark-token/" + }, + { + "name": "x", + "url": "https://x.com/Alphaquark_" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2a9bDCFF37aB68B95A53435ADFd8892e86084F93/logo.png b/blockchains/ethereum/assets/0x2a9bDCFF37aB68B95A53435ADFd8892e86084F93/logo.png new file mode 100644 index 0000000000000..3d493f69e5711 Binary files /dev/null and b/blockchains/ethereum/assets/0x2a9bDCFF37aB68B95A53435ADFd8892e86084F93/logo.png differ diff --git a/blockchains/ethereum/assets/0x2aD9adDD0d97EC3cDBA27F92bF6077893b76Ab0b/info.json b/blockchains/ethereum/assets/0x2aD9adDD0d97EC3cDBA27F92bF6077893b76Ab0b/info.json new file mode 100644 index 0000000000000..49689693bfdfe --- /dev/null +++ b/blockchains/ethereum/assets/0x2aD9adDD0d97EC3cDBA27F92bF6077893b76Ab0b/info.json @@ -0,0 +1,33 @@ +{ + "name": "PLANET", + "website": "https://joinourplanet.com", + "description": "A state of the art platform to tokenize Real-World Assets (RWA), bringing yields into the web3, all while striving for sustainable growth #RWA #ReFi", + "explorer": "https://etherscan.io/token/0x2ad9addd0d97ec3cdba27f92bf6077893b76ab0b", + "type": "ERC20", + "symbol": "PLANET", + "decimals": 18, + "status": "active", + "id": "0x2aD9adDD0d97EC3cDBA27F92bF6077893b76Ab0b", + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/JoinOurPlanet/" + }, + { + "name": "x", + "url": "https://x.com/joinourplanet/" + }, + { + "name": "telegram", + "url": "https://t.me/JoinOurPlanet" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/planet-token" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/planettoken/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2aD9adDD0d97EC3cDBA27F92bF6077893b76Ab0b/logo.png b/blockchains/ethereum/assets/0x2aD9adDD0d97EC3cDBA27F92bF6077893b76Ab0b/logo.png new file mode 100644 index 0000000000000..a3fb80da0a20b Binary files /dev/null and b/blockchains/ethereum/assets/0x2aD9adDD0d97EC3cDBA27F92bF6077893b76Ab0b/logo.png differ diff --git a/blockchains/ethereum/assets/0x2aF1dF3AB0ab157e1E2Ad8F88A7D04fbea0c7dc6/info.json b/blockchains/ethereum/assets/0x2aF1dF3AB0ab157e1E2Ad8F88A7D04fbea0c7dc6/info.json index de57d9acb0b0d..ed588dbf51447 100644 --- a/blockchains/ethereum/assets/0x2aF1dF3AB0ab157e1E2Ad8F88A7D04fbea0c7dc6/info.json +++ b/blockchains/ethereum/assets/0x2aF1dF3AB0ab157e1E2Ad8F88A7D04fbea0c7dc6/info.json @@ -14,8 +14,8 @@ "url": "https://gov.indexcoop.com" }, { - "name": "twitter", - "url": "https://twitter.com/indexcoop" + "name": "x", + "url": "https://x.com/indexcoop" }, { "name": "coinmarketcap", diff --git a/blockchains/ethereum/assets/0x2aeAbde1aB736c59E9A19BeD67681869eEF39526/info.json b/blockchains/ethereum/assets/0x2aeAbde1aB736c59E9A19BeD67681869eEF39526/info.json new file mode 100644 index 0000000000000..889220bfcaf3f --- /dev/null +++ b/blockchains/ethereum/assets/0x2aeAbde1aB736c59E9A19BeD67681869eEF39526/info.json @@ -0,0 +1,41 @@ +{ + "name": "DOVU", + "website": "https://dovu.earth/", + "description": "DOVU is a technology infrastructure provider, powering trusted environmental and carbon digital markets by providing market integrity. The DOVU token serves as the protocol’s utility token, enabling holders to participate and create their own environmental audit trail ecosystems. Token holders can stake their DOVU to earn multiplier rewards, aligning long-term incentives with the protocol’s mission of building reliable carbon markets.", + "explorer": "https://etherscan.io/token/0x2aeAbde1aB736c59E9A19BeD67681869eEF39526", + "type": "ERC20", + "symbol": "DOVU", + "decimals": 8, + "status": "active", + "id": "0x2aeAbde1aB736c59E9A19BeD67681869eEF39526", + "tags": [ + "wrapped", + "staking" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/dovuofficial/" + }, + { + "name": "x", + "url": "https://x.com/dovuofficial" + }, + { + "name": "blog", + "url": "https://dovu.earth/en/news/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dovu-earth/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dovu" + }, + { + "name": "youtube", + "url": "https://youtube.com/@DOVUearth" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2aeAbde1aB736c59E9A19BeD67681869eEF39526/logo.png b/blockchains/ethereum/assets/0x2aeAbde1aB736c59E9A19BeD67681869eEF39526/logo.png new file mode 100644 index 0000000000000..cb6c490323d55 Binary files /dev/null and b/blockchains/ethereum/assets/0x2aeAbde1aB736c59E9A19BeD67681869eEF39526/logo.png differ diff --git a/blockchains/ethereum/assets/0x2b867efD2dE4Ad2B583Ca0CB3dF9C4040Ef4D329/info.json b/blockchains/ethereum/assets/0x2b867efD2dE4Ad2B583Ca0CB3dF9C4040Ef4D329/info.json index 9dcaaee2f8ed6..320d6ff0d06dc 100644 --- a/blockchains/ethereum/assets/0x2b867efD2dE4Ad2B583Ca0CB3dF9C4040Ef4D329/info.json +++ b/blockchains/ethereum/assets/0x2b867efD2dE4Ad2B583Ca0CB3dF9C4040Ef4D329/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/lucky-block-v2/" }, { - "name": "twitter", - "url": "https://twitter.com/luckyblockcoin" + "name": "x", + "url": "https://x.com/luckyblockcoin" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x2bB84fd8F7eD0FfAe3da36AD60d4D7840bdeEADa/info.json b/blockchains/ethereum/assets/0x2bB84fd8F7eD0FfAe3da36AD60d4D7840bdeEADa/info.json new file mode 100644 index 0000000000000..f20515c5bbdf4 --- /dev/null +++ b/blockchains/ethereum/assets/0x2bB84fd8F7eD0FfAe3da36AD60d4D7840bdeEADa/info.json @@ -0,0 +1,21 @@ +{ + "name": "SORA GROK", + "symbol": "GROK", + "type": "ERC20", + "decimals": 18, + "description": "A cutting-edge platform that revolutionizes text-to-video generation, transforming written prompts into dynamic, creative videos.", + "website": "https://soragrok.net/", + "explorer": "https://etherscan.io/token/0x2bB84fd8F7eD0FfAe3da36AD60d4D7840bdeEADa", + "status": "spam", + "id": "0x2bB84fd8F7eD0FfAe3da36AD60d4D7840bdeEADa", + "links": [ + { + "name": "x", + "url": "https://x.com/soragrokxx" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sora-grok/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2bc46Eb4ae80ddD9c8A6e064C74327C8244D88e2/info.json b/blockchains/ethereum/assets/0x2bc46Eb4ae80ddD9c8A6e064C74327C8244D88e2/info.json new file mode 100644 index 0000000000000..e5c09631c1c19 --- /dev/null +++ b/blockchains/ethereum/assets/0x2bc46Eb4ae80ddD9c8A6e064C74327C8244D88e2/info.json @@ -0,0 +1,17 @@ +{ + "name": "StratoVM", + "type": "ERC20", + "symbol": "SVM", + "decimals": 18, + "website": "https://stratovm.io", + "description": "Layer 2 solution designed to unlock the full potential of DeFi on the world’s most secure blockchain network.", + "explorer": "https://etherscan.io/token/0x2bc46Eb4ae80ddD9c8A6e064C74327C8244D88e2", + "status": "active", + "id": "0x2bc46Eb4ae80ddD9c8A6e064C74327C8244D88e2", + "links": [ + { + "name": "x", + "url": "https://x.com/StratoVM_" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2bc46Eb4ae80ddD9c8A6e064C74327C8244D88e2/logo.png b/blockchains/ethereum/assets/0x2bc46Eb4ae80ddD9c8A6e064C74327C8244D88e2/logo.png new file mode 100644 index 0000000000000..f0bc5ee7fb8ca Binary files /dev/null and b/blockchains/ethereum/assets/0x2bc46Eb4ae80ddD9c8A6e064C74327C8244D88e2/logo.png differ diff --git a/blockchains/ethereum/assets/0x2c95D751DA37A5C1d9c5a7Fd465c1d50F3d96160/info.json b/blockchains/ethereum/assets/0x2c95D751DA37A5C1d9c5a7Fd465c1d50F3d96160/info.json new file mode 100644 index 0000000000000..9f7de6b69c3f2 --- /dev/null +++ b/blockchains/ethereum/assets/0x2c95D751DA37A5C1d9c5a7Fd465c1d50F3d96160/info.json @@ -0,0 +1,21 @@ +{ + "name": "WASSIE", + "website": "http://www.wassie.wtf/", + "description": "The ultimate memecoin of the wassie revolution.", + "explorer": "https://etherscan.io/token/0x2c95d751da37a5c1d9c5a7fd465c1d50f3d96160", + "type": "ERC20", + "symbol": "WASSIE", + "decimals": 18, + "status": "active", + "id": "0x2c95D751DA37A5C1d9c5a7Fd465c1d50F3d96160", + "links": [ + { + "name": "x", + "url": "https://x.com/WassieOnETH" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wassie/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2c95D751DA37A5C1d9c5a7Fd465c1d50F3d96160/logo.png b/blockchains/ethereum/assets/0x2c95D751DA37A5C1d9c5a7Fd465c1d50F3d96160/logo.png new file mode 100644 index 0000000000000..8139b0e91aee1 Binary files /dev/null and b/blockchains/ethereum/assets/0x2c95D751DA37A5C1d9c5a7Fd465c1d50F3d96160/logo.png differ diff --git a/blockchains/ethereum/assets/0x2ca12a3F9635fD69C21580def14F25C210cA9612/info.json b/blockchains/ethereum/assets/0x2ca12a3F9635fD69C21580def14F25C210cA9612/info.json new file mode 100644 index 0000000000000..933bbb7203c2e --- /dev/null +++ b/blockchains/ethereum/assets/0x2ca12a3F9635fD69C21580def14F25C210cA9612/info.json @@ -0,0 +1,24 @@ +{ + "name": "Super Micro Computer (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "SMCIon is the Ondo Tokenized version of Super Micro Computer, giving tokenholders economic exposure similar to holding SMCI and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x2ca12a3F9635fD69C21580def14F25C210cA9612", + "type": "ERC20", + "symbol": "SMCIon", + "decimals": 18, + "status": "active", + "id": "0x2ca12a3F9635fD69C21580def14F25C210cA9612", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/super-micro-computer-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2ca12a3F9635fD69C21580def14F25C210cA9612/logo.png b/blockchains/ethereum/assets/0x2ca12a3F9635fD69C21580def14F25C210cA9612/logo.png new file mode 100644 index 0000000000000..6e354498c339c Binary files /dev/null and b/blockchains/ethereum/assets/0x2ca12a3F9635fD69C21580def14F25C210cA9612/logo.png differ diff --git a/blockchains/ethereum/assets/0x2d94AA3e47d9D5024503Ca8491fcE9A2fB4DA198/info.json b/blockchains/ethereum/assets/0x2d94AA3e47d9D5024503Ca8491fcE9A2fB4DA198/info.json index 4fbf14e17ac6b..289749271ecb8 100644 --- a/blockchains/ethereum/assets/0x2d94AA3e47d9D5024503Ca8491fcE9A2fB4DA198/info.json +++ b/blockchains/ethereum/assets/0x2d94AA3e47d9D5024503Ca8491fcE9A2fB4DA198/info.json @@ -10,8 +10,8 @@ "id": "0x2d94AA3e47d9D5024503Ca8491fcE9A2fB4DA198", "links": [ { - "name": "twitter", - "url": "https://twitter.com/banklessDAO" + "name": "x", + "url": "https://x.com/banklessDAO" }, { "name": "coingecko", diff --git a/blockchains/ethereum/assets/0x2dA719DB753dFA10a62E140f436E1d67F2ddB0d6/info.json b/blockchains/ethereum/assets/0x2dA719DB753dFA10a62E140f436E1d67F2ddB0d6/info.json new file mode 100644 index 0000000000000..343aa0870a4cc --- /dev/null +++ b/blockchains/ethereum/assets/0x2dA719DB753dFA10a62E140f436E1d67F2ddB0d6/info.json @@ -0,0 +1,53 @@ +{ + "name": "Cere Network", + "type": "ERC20", + "symbol": "CERE", + "decimals": 10, + "website": "https://cere.network", + "description": "Cere Network, backed by Binance Labs, Republic Labs, and Polygon, powers data projects in a decentralized way. It provides decentralized storage (“AWS S3”), cost-efficient data streaming (“Cloudflare”), and AI workflows (“Databricks”). This while preserving data privacy, ensuring data ownership, and enabling secure data operations.", + "explorer": "https://etherscan.io/token/0x2da719db753dfa10a62e140f436e1d67f2ddb0d6", + "status": "active", + "id": "0x2dA719DB753dFA10a62E140f436E1d67F2ddB0d6", + "links": [ + { + "name": "github", + "url": "https://github.com/Cerebellum-Network" + }, + { + "name": "x", + "url": "https://x.com/cereofficial" + }, + { + "name": "telegram", + "url": "https://t.me/thisiscere" + }, + { + "name": "telegram_news", + "url": "https://t.me/cerenetwork" + }, + { + "name": "docs", + "url": "https://docs.cere.network/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cere-network" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cere-network/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/cYVKUYHWhp" + }, + { + "name": "medium", + "url": "https://medium.com/@cere-network" + } + ], + "tags": [ + "governance", + "privacy" + ] +} diff --git a/blockchains/ethereum/assets/0x2dA719DB753dFA10a62E140f436E1d67F2ddB0d6/logo.png b/blockchains/ethereum/assets/0x2dA719DB753dFA10a62E140f436E1d67F2ddB0d6/logo.png new file mode 100644 index 0000000000000..d4f52619df7d1 Binary files /dev/null and b/blockchains/ethereum/assets/0x2dA719DB753dFA10a62E140f436E1d67F2ddB0d6/logo.png differ diff --git a/blockchains/ethereum/assets/0x2dD57b497c777D9825A5902114BE81dF98eDE958/info.json b/blockchains/ethereum/assets/0x2dD57b497c777D9825A5902114BE81dF98eDE958/info.json new file mode 100644 index 0000000000000..04b885f4e91ec --- /dev/null +++ b/blockchains/ethereum/assets/0x2dD57b497c777D9825A5902114BE81dF98eDE958/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares China Large-Cap ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "FXIon", + "decimals": 18, + "description": "FXIon is the Ondo Tokenized version of the iShares China Large-Cap ETF, giving tokenholders economic exposure similar to holding FXI and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x2dD57b497c777D9825A5902114BE81dF98eDE958", + "status": "active", + "id": "0x2dD57b497c777D9825A5902114BE81dF98eDE958", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-china-large-cap-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2dD57b497c777D9825A5902114BE81dF98eDE958/logo.png b/blockchains/ethereum/assets/0x2dD57b497c777D9825A5902114BE81dF98eDE958/logo.png new file mode 100644 index 0000000000000..2ce033b091a15 Binary files /dev/null and b/blockchains/ethereum/assets/0x2dD57b497c777D9825A5902114BE81dF98eDE958/logo.png differ diff --git a/blockchains/ethereum/assets/0x2dDc2391CC89E3e716A938F089AE755174cfDf1f/info.json b/blockchains/ethereum/assets/0x2dDc2391CC89E3e716A938F089AE755174cfDf1f/info.json new file mode 100644 index 0000000000000..d4cb7e44c84a0 --- /dev/null +++ b/blockchains/ethereum/assets/0x2dDc2391CC89E3e716A938F089AE755174cfDf1f/info.json @@ -0,0 +1,28 @@ +{ + "name": "Analog Devices (Ondo Tokenized)", + "type": "ERC20", + "symbol": "ADIon", + "decimals": 18, + "description": "ADIon is the Ondo Tokenized version of Analog Devices, giving tokenholders economic exposure similar to holding ADI and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x2dDc2391CC89E3e716A938F089AE755174cfDf1f", + "status": "active", + "id": "0x2dDc2391CC89E3e716A938F089AE755174cfDf1f", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/analog-devices-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/analog-devices-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2dDc2391CC89E3e716A938F089AE755174cfDf1f/logo.png b/blockchains/ethereum/assets/0x2dDc2391CC89E3e716A938F089AE755174cfDf1f/logo.png new file mode 100644 index 0000000000000..461b4eb9da380 Binary files /dev/null and b/blockchains/ethereum/assets/0x2dDc2391CC89E3e716A938F089AE755174cfDf1f/logo.png differ diff --git a/blockchains/ethereum/assets/0x2de72aDa48BDF7Bac276256D3F016fE058490C34/logo.png b/blockchains/ethereum/assets/0x2de72aDa48BDF7Bac276256D3F016fE058490C34/logo.png deleted file mode 100644 index 52a97499126e8..0000000000000 Binary files a/blockchains/ethereum/assets/0x2de72aDa48BDF7Bac276256D3F016fE058490C34/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x2dfF88A56767223A5529eA5960Da7A3F5f766406/info.json b/blockchains/ethereum/assets/0x2dfF88A56767223A5529eA5960Da7A3F5f766406/info.json index f8e5458dbe732..bbc2232342949 100644 --- a/blockchains/ethereum/assets/0x2dfF88A56767223A5529eA5960Da7A3F5f766406/info.json +++ b/blockchains/ethereum/assets/0x2dfF88A56767223A5529eA5960Da7A3F5f766406/info.json @@ -10,8 +10,8 @@ "status": "active", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SpaceIDProtocol" + "name": "x", + "url": "https://x.com/SpaceIDProtocol" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x2e1E15C44Ffe4Df6a0cb7371CD00d5028e571d14/info.json b/blockchains/ethereum/assets/0x2e1E15C44Ffe4Df6a0cb7371CD00d5028e571d14/info.json index 0a4d0e89550dc..aeacd9fbbdd25 100644 --- a/blockchains/ethereum/assets/0x2e1E15C44Ffe4Df6a0cb7371CD00d5028e571d14/info.json +++ b/blockchains/ethereum/assets/0x2e1E15C44Ffe4Df6a0cb7371CD00d5028e571d14/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/fetchai/mettalex-market-maker" }, { - "name": "twitter", - "url": "https://twitter.com/Mettalex" + "name": "x", + "url": "https://x.com/Mettalex" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x2e44f3f609ff5aA4819B323FD74690f07C3607c4/info.json b/blockchains/ethereum/assets/0x2e44f3f609ff5aA4819B323FD74690f07C3607c4/info.json new file mode 100644 index 0000000000000..1baa4739c0a95 --- /dev/null +++ b/blockchains/ethereum/assets/0x2e44f3f609ff5aA4819B323FD74690f07C3607c4/info.json @@ -0,0 +1,28 @@ +{ + "name": "PINLINK", + "website": "https://pinlink.ai", + "description": "PinLink is the first RWA-Tokenized DePIN platform, empowering users with fractionalized ownership of DePIN assets.", + "explorer": "https://etherscan.io/token/0x2e44f3f609ff5aA4819B323FD74690f07C3607c4", + "type": "ERC20", + "symbol": "$PIN", + "decimals": 18, + "status": "active", + "id": "0x2e44f3f609ff5aA4819B323FD74690f07C3607c4", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/pinlinkai" + }, + { + "name": "telegram", + "url": "https://t.me/pinlinkai" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pinlink" + } + ] +} diff --git a/blockchains/ethereum/assets/0x2e44f3f609ff5aA4819B323FD74690f07C3607c4/logo.png b/blockchains/ethereum/assets/0x2e44f3f609ff5aA4819B323FD74690f07C3607c4/logo.png new file mode 100644 index 0000000000000..ced79ebb36af1 Binary files /dev/null and b/blockchains/ethereum/assets/0x2e44f3f609ff5aA4819B323FD74690f07C3607c4/logo.png differ diff --git a/blockchains/ethereum/assets/0x2e6539edc3b76f1E21B71d214527FAbA875F70F3/info.json b/blockchains/ethereum/assets/0x2e6539edc3b76f1E21B71d214527FAbA875F70F3/info.json index 1127a3060870f..380f67671c676 100644 --- a/blockchains/ethereum/assets/0x2e6539edc3b76f1E21B71d214527FAbA875F70F3/info.json +++ b/blockchains/ethereum/assets/0x2e6539edc3b76f1E21B71d214527FAbA875F70F3/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/YFDOT" }, { - "name": "twitter", - "url": "https://twitter.com/Yfdotfinance" + "name": "x", + "url": "https://x.com/Yfdotfinance" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x2e85ae1C47602f7927bCabc2Ff99C40aA222aE15/info.json b/blockchains/ethereum/assets/0x2e85ae1C47602f7927bCabc2Ff99C40aA222aE15/info.json index 841c095b469ab..1820b99075d22 100644 --- a/blockchains/ethereum/assets/0x2e85ae1C47602f7927bCabc2Ff99C40aA222aE15/info.json +++ b/blockchains/ethereum/assets/0x2e85ae1C47602f7927bCabc2Ff99C40aA222aE15/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/katanainu/katacoin-contract" }, { - "name": "twitter", - "url": "https://twitter.com/katanainu" + "name": "x", + "url": "https://x.com/katanainu" }, { "name": "telegram_news", @@ -45,4 +45,4 @@ "url": "https://coinmarketcap.com/currencies/katana-inu/" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2e9d63788249371f1DFC918a52f8d799F4a38C94/info.json b/blockchains/ethereum/assets/0x2e9d63788249371f1DFC918a52f8d799F4a38C94/info.json index 4272d2a06adb1..b53876707b806 100644 --- a/blockchains/ethereum/assets/0x2e9d63788249371f1DFC918a52f8d799F4a38C94/info.json +++ b/blockchains/ethereum/assets/0x2e9d63788249371f1DFC918a52f8d799F4a38C94/info.json @@ -4,25 +4,8 @@ "symbol": "TOKE", "decimals": 18, "website": "https://www.tokemak.xyz/", - "description": "Tokemak is a decentralized liquidity provider/AMM protocol. TOKE is the native token, serves as tokenized liquidity, enabling stakers to direct the protocol's TVL as liquidity across DeFi markets.", + "description": "TOKE migrated to AUTO: https://blog.auto.finance/post/toke-to-auto-migration-is-now-live", "explorer": "https://etherscan.io/token/0x2e9d63788249371f1DFC918a52f8d799F4a38C94", - "status": "active", - "id": "0x2e9d63788249371f1DFC918a52f8d799F4a38C94", - "links": [ - { - "name": "twitter", - "url": "https://twitter.com/TokenReactor" - }, - { - "name": "medium", - "url": "https://medium.com/tokemak" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/tokemak/" - } - ], - "tags": [ - "defi" - ] -} \ No newline at end of file + "status": "abandoned", + "id": "0x2e9d63788249371f1DFC918a52f8d799F4a38C94" +} diff --git a/blockchains/ethereum/assets/0x2e9d63788249371f1DFC918a52f8d799F4a38C94/logo.png b/blockchains/ethereum/assets/0x2e9d63788249371f1DFC918a52f8d799F4a38C94/logo.png deleted file mode 100644 index 3c2010274228c..0000000000000 Binary files a/blockchains/ethereum/assets/0x2e9d63788249371f1DFC918a52f8d799F4a38C94/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x2eDf094dB69d6Dcd487f1B3dB9febE2eeC0dd4c5/info.json b/blockchains/ethereum/assets/0x2eDf094dB69d6Dcd487f1B3dB9febE2eeC0dd4c5/info.json index 90ce674ff7055..bfb1b25738842 100644 --- a/blockchains/ethereum/assets/0x2eDf094dB69d6Dcd487f1B3dB9febE2eeC0dd4c5/info.json +++ b/blockchains/ethereum/assets/0x2eDf094dB69d6Dcd487f1B3dB9febE2eeC0dd4c5/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/ZeroswapLabs" }, { - "name": "twitter", - "url": "https://twitter.com/ZeroSwapLabs" + "name": "x", + "url": "https://x.com/ZeroSwapLabs" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x2ef52Ed7De8c5ce03a4eF0efbe9B7450F2D7Edc9/info.json b/blockchains/ethereum/assets/0x2ef52Ed7De8c5ce03a4eF0efbe9B7450F2D7Edc9/info.json index dd43d28541b19..96da0d9ab9c61 100644 --- a/blockchains/ethereum/assets/0x2ef52Ed7De8c5ce03a4eF0efbe9B7450F2D7Edc9/info.json +++ b/blockchains/ethereum/assets/0x2ef52Ed7De8c5ce03a4eF0efbe9B7450F2D7Edc9/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Revain" }, { - "name": "twitter", - "url": "https://twitter.com/Revain_org" + "name": "x", + "url": "https://x.com/Revain_org" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0x2f4eb47A1b1F4488C71fc10e39a4aa56AF33Dd49/info.json b/blockchains/ethereum/assets/0x2f4eb47A1b1F4488C71fc10e39a4aa56AF33Dd49/info.json index 235db686ca53f..d0b2e7882c45b 100644 --- a/blockchains/ethereum/assets/0x2f4eb47A1b1F4488C71fc10e39a4aa56AF33Dd49/info.json +++ b/blockchains/ethereum/assets/0x2f4eb47A1b1F4488C71fc10e39a4aa56AF33Dd49/info.json @@ -10,8 +10,8 @@ "id": "0x2f4eb47A1b1F4488C71fc10e39a4aa56AF33Dd49", "links": [ { - "name": "twitter", - "url": "https://twitter.com/UNCX_token" + "name": "x", + "url": "https://x.com/UNCX_token" }, { "name": "medium", diff --git a/blockchains/ethereum/assets/0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763/info.json b/blockchains/ethereum/assets/0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763/info.json new file mode 100644 index 0000000000000..22b780af3441a --- /dev/null +++ b/blockchains/ethereum/assets/0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763/info.json @@ -0,0 +1,24 @@ +{ + "name": "Amber tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Amber tokenized stock (xStock) (AMBRX) is a cryptocurrency and operates on the Solana platform. Amber tokenized stock (xStock) has a current supply of 135,999.99999997. The last known price of Amber tokenized stock (xStock) is 4.19760101 USD and is up 0.88 over the last 24 hours. It is currently trading on 1 active market(s) with $0.00 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/amber-xstock.", + "explorer": "https://etherscan.io/token/0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763", + "type": "ERC20", + "symbol": "AMBRX", + "decimals": 18, + "status": "active", + "id": "0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/amber-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763/logo.png b/blockchains/ethereum/assets/0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763/logo.png new file mode 100644 index 0000000000000..e555fa9be0612 Binary files /dev/null and b/blockchains/ethereum/assets/0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763/logo.png differ diff --git a/blockchains/ethereum/assets/0x3010ccb5419F1EF26D40a7cd3F0d707a0fa127Dc/info.json b/blockchains/ethereum/assets/0x3010ccb5419F1EF26D40a7cd3F0d707a0fa127Dc/info.json new file mode 100644 index 0000000000000..e930f885d4bbd --- /dev/null +++ b/blockchains/ethereum/assets/0x3010ccb5419F1EF26D40a7cd3F0d707a0fa127Dc/info.json @@ -0,0 +1,21 @@ +{ + "name": "GEMS", + "symbol": "GEMS", + "type": "ERC20", + "decimals": 18, + "description": "Gems is a blockchain launchpad enabling project fundraising via private token sales.", + "website": "https://gems.vip/", + "explorer": "https://etherscan.io/token/0x3010ccb5419f1ef26d40a7cd3f0d707a0fa127dc", + "status": "active", + "id": "0x3010ccb5419F1EF26D40a7cd3F0d707a0fa127Dc", + "links": [ + { + "name": "x", + "url": "https://x.com/Gems_VIP_" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gems-vip" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3010ccb5419F1EF26D40a7cd3F0d707a0fa127Dc/logo.png b/blockchains/ethereum/assets/0x3010ccb5419F1EF26D40a7cd3F0d707a0fa127Dc/logo.png new file mode 100644 index 0000000000000..e1f2469cd8732 Binary files /dev/null and b/blockchains/ethereum/assets/0x3010ccb5419F1EF26D40a7cd3F0d707a0fa127Dc/logo.png differ diff --git a/blockchains/ethereum/assets/0x30680AC0a8A993088223925265fD7a76bEb87E7F/info.json b/blockchains/ethereum/assets/0x30680AC0a8A993088223925265fD7a76bEb87E7F/info.json index 751f06b219e2d..c8bce7d2117a6 100644 --- a/blockchains/ethereum/assets/0x30680AC0a8A993088223925265fD7a76bEb87E7F/info.json +++ b/blockchains/ethereum/assets/0x30680AC0a8A993088223925265fD7a76bEb87E7F/info.json @@ -6,6 +6,23 @@ "description": "ARAW is the Decentralised Payment for E-Commerce Ecosystem, aiming to be at the forefront of the Blockchain User Adoption globally with the intuitive integration of E-Commerce with the Decentralised Payment.", "website": "https://arawtoken.io/", "explorer": "https://etherscan.io/token/0x30680AC0a8A993088223925265fD7a76bEb87E7F", - "status": "active", - "id": "0x30680AC0a8A993088223925265fD7a76bEb87E7F" + "status": "abandoned", + "id": "0x30680AC0a8A993088223925265fD7a76bEb87E7F", + "links": [ + { + "name": "x", + "url": "https://x.com/arawtoken" + }, + { + "name": "telegram", + "url": "https://t.me/ArawTokenOfficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/araw/" + } + ], + "tags": [ + "memes" + ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x30680AC0a8A993088223925265fD7a76bEb87E7F/logo.png b/blockchains/ethereum/assets/0x30680AC0a8A993088223925265fD7a76bEb87E7F/logo.png deleted file mode 100644 index 9457136633e2e..0000000000000 Binary files a/blockchains/ethereum/assets/0x30680AC0a8A993088223925265fD7a76bEb87E7F/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x3073f7aAA4DB83f95e9FFf17424F71D4751a3073/info.json b/blockchains/ethereum/assets/0x3073f7aAA4DB83f95e9FFf17424F71D4751a3073/info.json new file mode 100644 index 0000000000000..0025a75e5b2f6 --- /dev/null +++ b/blockchains/ethereum/assets/0x3073f7aAA4DB83f95e9FFf17424F71D4751a3073/info.json @@ -0,0 +1,29 @@ +{ + "name": "Movement", + "type": "ERC20", + "symbol": "MOVE", + "decimals": 8, + "description": "Movement Network is an ecosystem of Modular Move-Based Blockchains that enables developers to build secure, performant, and interoperable blockchain applications, bridging the gap between Move and EVM ecosystems.", + "website": "https://www.movementnetwork.xyz/", + "explorer": "https://etherscan.io/token/0x3073f7aAA4DB83f95e9FFf17424F71D4751a3073", + "id": "0x3073f7aAA4DB83f95e9FFf17424F71D4751a3073", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/movementfdn" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/movement/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/movement" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3073f7aAA4DB83f95e9FFf17424F71D4751a3073/logo.png b/blockchains/ethereum/assets/0x3073f7aAA4DB83f95e9FFf17424F71D4751a3073/logo.png new file mode 100644 index 0000000000000..92e754afa3ef3 Binary files /dev/null and b/blockchains/ethereum/assets/0x3073f7aAA4DB83f95e9FFf17424F71D4751a3073/logo.png differ diff --git a/blockchains/ethereum/assets/0x30D20208d987713f46DFD34EF128Bb16C404D10f/info.json b/blockchains/ethereum/assets/0x30D20208d987713f46DFD34EF128Bb16C404D10f/info.json new file mode 100644 index 0000000000000..144dc1f1a6213 --- /dev/null +++ b/blockchains/ethereum/assets/0x30D20208d987713f46DFD34EF128Bb16C404D10f/info.json @@ -0,0 +1,21 @@ +{ + "name": "Stader", + "website": "https://staderlabs.com/", + "description": "Stader is a non-custodial smart contract-based staking platform that helps you conveniently discover and access staking solutions. We are building key staking middleware infra for multiple PoS networks for retail crypto users, exchanges and custodians.", + "explorer": "https://etherscan.io/token/0x30D20208d987713f46DFD34EF128Bb16C404D10f", + "type": "ERC20", + "symbol": "SD", + "decimals": 18, + "status": "active", + "id": "0x30D20208d987713f46DFD34EF128Bb16C404D10f", + "links": [ + { + "name": "x", + "url": "https://x.com/staderlabs" + }, + { + "name": "telegram", + "url": "https://t.me/staderlabs" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x30D20208d987713f46DFD34EF128Bb16C404D10f/logo.png b/blockchains/ethereum/assets/0x30D20208d987713f46DFD34EF128Bb16C404D10f/logo.png new file mode 100644 index 0000000000000..a28e1b4b8c504 Binary files /dev/null and b/blockchains/ethereum/assets/0x30D20208d987713f46DFD34EF128Bb16C404D10f/logo.png differ diff --git a/blockchains/ethereum/assets/0x30f271C9E86D2B7d00a6376Cd96A1cFBD5F0b9b3/info.json b/blockchains/ethereum/assets/0x30f271C9E86D2B7d00a6376Cd96A1cFBD5F0b9b3/info.json index 0a960bbb7b9dd..303f00a71f0d7 100644 --- a/blockchains/ethereum/assets/0x30f271C9E86D2B7d00a6376Cd96A1cFBD5F0b9b3/info.json +++ b/blockchains/ethereum/assets/0x30f271C9E86D2B7d00a6376Cd96A1cFBD5F0b9b3/info.json @@ -10,8 +10,8 @@ "id": "0x30f271C9E86D2B7d00a6376Cd96A1cFBD5F0b9b3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/decentr" + "name": "x", + "url": "https://x.com/decentr" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x31094eD0F645Dbd5eFb6acA5B9A05E8EE0EFB386/info.json b/blockchains/ethereum/assets/0x31094eD0F645Dbd5eFb6acA5B9A05E8EE0EFB386/info.json new file mode 100644 index 0000000000000..ece9eaa87cbec --- /dev/null +++ b/blockchains/ethereum/assets/0x31094eD0F645Dbd5eFb6acA5B9A05E8EE0EFB386/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE EuroUnion", + "type": "ERC20", + "symbol": "FAKE EURC", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://etherscan.io/token/0x31094eD0F645Dbd5eFb6acA5B9A05E8EE0EFB386", + "explorer": "https://etherscan.io/token/0x31094eD0F645Dbd5eFb6acA5B9A05E8EE0EFB386", + "status": "spam", + "id": "0x31094eD0F645Dbd5eFb6acA5B9A05E8EE0EFB386" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x31429d1856aD1377A8A0079410B297e1a9e214c2/info.json b/blockchains/ethereum/assets/0x31429d1856aD1377A8A0079410B297e1a9e214c2/info.json new file mode 100644 index 0000000000000..851daacc38a5a --- /dev/null +++ b/blockchains/ethereum/assets/0x31429d1856aD1377A8A0079410B297e1a9e214c2/info.json @@ -0,0 +1,21 @@ +{ + "name": "ANGLE", + "website": "https://app.angle.money/#/", + "description": "Angle is an over-collateralized, decentralized and capital-efficient stablecoin protocol.", + "explorer": "https://etherscan.io/token/0x31429d1856ad1377a8a0079410b297e1a9e214c2", + "type": "ERC20", + "symbol": "ANGLE", + "decimals": 18, + "status": "active", + "id": "0x31429d1856aD1377A8A0079410B297e1a9e214c2", + "links": [ + { + "name": "x", + "url": "https://x.com/AngleProtocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/angle/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x31429d1856aD1377A8A0079410B297e1a9e214c2/logo.png b/blockchains/ethereum/assets/0x31429d1856aD1377A8A0079410B297e1a9e214c2/logo.png new file mode 100644 index 0000000000000..b5b2da29aa05f Binary files /dev/null and b/blockchains/ethereum/assets/0x31429d1856aD1377A8A0079410B297e1a9e214c2/logo.png differ diff --git a/blockchains/ethereum/assets/0x314938c596F5ce31C3f75307d2979338C346D7F2/info.json b/blockchains/ethereum/assets/0x314938c596F5ce31C3f75307d2979338C346D7F2/info.json new file mode 100644 index 0000000000000..a75ff84b6f733 --- /dev/null +++ b/blockchains/ethereum/assets/0x314938c596F5ce31C3f75307d2979338C346D7F2/info.json @@ -0,0 +1,24 @@ +{ + "name": "Bank of America tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Bank of America xStock (BACx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. BACx tracks the price of Bank of America Corporation (the underlying). BACx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Bank of America Corporation, whilst maintaining the benefits of blockchain technology. Bank of America is a leading global financial institution that offers a wide range of banking, investing, asset management, and financial risk management products and services.", + "explorer": "https://etherscan.io/token/0x314938c596F5ce31C3f75307d2979338C346D7F2", + "type": "ERC20", + "symbol": "BACX", + "decimals": 18, + "status": "active", + "id": "0x314938c596F5ce31C3f75307d2979338C346D7F2", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bank-of-america-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x314938c596F5ce31C3f75307d2979338C346D7F2/logo.png b/blockchains/ethereum/assets/0x314938c596F5ce31C3f75307d2979338C346D7F2/logo.png new file mode 100644 index 0000000000000..c358f4e973a1a Binary files /dev/null and b/blockchains/ethereum/assets/0x314938c596F5ce31C3f75307d2979338C346D7F2/logo.png differ diff --git a/blockchains/ethereum/assets/0x3155BA85D5F96b2d030a4966AF206230e46849cb/info.json b/blockchains/ethereum/assets/0x3155BA85D5F96b2d030a4966AF206230e46849cb/info.json index 738e01958d58a..f3e92c0a8830c 100644 --- a/blockchains/ethereum/assets/0x3155BA85D5F96b2d030a4966AF206230e46849cb/info.json +++ b/blockchains/ethereum/assets/0x3155BA85D5F96b2d030a4966AF206230e46849cb/info.json @@ -7,6 +7,6 @@ "type": "ERC20", "symbol": "RUNE", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x3155BA85D5F96b2d030a4966AF206230e46849cb" } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x318Dcb4f07C3e6ccEcc12A252100Fb3Bf76Eeb02/info.json b/blockchains/ethereum/assets/0x318Dcb4f07C3e6ccEcc12A252100Fb3Bf76Eeb02/info.json new file mode 100644 index 0000000000000..33ace9dd39b7a --- /dev/null +++ b/blockchains/ethereum/assets/0x318Dcb4f07C3e6ccEcc12A252100Fb3Bf76Eeb02/info.json @@ -0,0 +1,24 @@ +{ + "name": "Applied Digital (Ondo Tokenized)", + "type": "ERC20", + "symbol": "APLDon", + "decimals": 18, + "description": "APLDon is the Ondo Tokenized version of Applied Digital, giving tokenholders economic exposure similar to holding APLD and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x318Dcb4f07C3e6ccEcc12A252100Fb3Bf76Eeb02", + "status": "active", + "id": "0x318Dcb4f07C3e6ccEcc12A252100Fb3Bf76Eeb02", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/applied-digital-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x318Dcb4f07C3e6ccEcc12A252100Fb3Bf76Eeb02/logo.png b/blockchains/ethereum/assets/0x318Dcb4f07C3e6ccEcc12A252100Fb3Bf76Eeb02/logo.png new file mode 100644 index 0000000000000..0629c140d6db3 Binary files /dev/null and b/blockchains/ethereum/assets/0x318Dcb4f07C3e6ccEcc12A252100Fb3Bf76Eeb02/logo.png differ diff --git a/blockchains/ethereum/assets/0x31c63146a635EB7465e5853020b39713AC356991/info.json b/blockchains/ethereum/assets/0x31c63146a635EB7465e5853020b39713AC356991/info.json index eb70287fe896a..4d84540900ca4 100644 --- a/blockchains/ethereum/assets/0x31c63146a635EB7465e5853020b39713AC356991/info.json +++ b/blockchains/ethereum/assets/0x31c63146a635EB7465e5853020b39713AC356991/info.json @@ -10,8 +10,8 @@ "id": "0x31c63146a635EB7465e5853020b39713AC356991", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MirrorProtocol" + "name": "x", + "url": "https://x.com/MirrorProtocol" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x320623b8E4fF03373931769A31Fc52A4E78B5d70/info.json b/blockchains/ethereum/assets/0x320623b8E4fF03373931769A31Fc52A4E78B5d70/info.json index 94c82b0133740..cbc563ae34ce3 100644 --- a/blockchains/ethereum/assets/0x320623b8E4fF03373931769A31Fc52A4E78B5d70/info.json +++ b/blockchains/ethereum/assets/0x320623b8E4fF03373931769A31Fc52A4E78B5d70/info.json @@ -10,8 +10,8 @@ "id": "0x320623b8E4fF03373931769A31Fc52A4E78B5d70", "links": [ { - "name": "twitter", - "url": "https://twitter.com/reserveprotocol" + "name": "x", + "url": "https://x.com/reserveprotocol" }, { "name": "telegram", @@ -33,4 +33,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x321C2fE4446C7c963dc41Dd58879AF648838f98D/info.json b/blockchains/ethereum/assets/0x321C2fE4446C7c963dc41Dd58879AF648838f98D/info.json new file mode 100644 index 0000000000000..92af1c4c4c103 --- /dev/null +++ b/blockchains/ethereum/assets/0x321C2fE4446C7c963dc41Dd58879AF648838f98D/info.json @@ -0,0 +1,21 @@ +{ + "name": "Cryptex", + "symbol": "CTX", + "type": "ERC20", + "decimals": 18, + "description": "CTX is a governance token that powers and secures the Cryptex.Finance TCAP protocol.", + "website": "https://cryptex.finance/", + "explorer": "https://etherscan.io/token/0x321c2fe4446c7c963dc41dd58879af648838f98d", + "status": "active", + "id": "0x321C2fE4446C7c963dc41Dd58879AF648838f98D", + "links": [ + { + "name": "x", + "url": "https://x.com/cryptexfinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cryptex-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x321C2fE4446C7c963dc41Dd58879AF648838f98D/logo.png b/blockchains/ethereum/assets/0x321C2fE4446C7c963dc41Dd58879AF648838f98D/logo.png new file mode 100644 index 0000000000000..5cd9068d0044d Binary files /dev/null and b/blockchains/ethereum/assets/0x321C2fE4446C7c963dc41Dd58879AF648838f98D/logo.png differ diff --git a/blockchains/ethereum/assets/0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f/info.json b/blockchains/ethereum/assets/0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f/info.json new file mode 100644 index 0000000000000..5ddbd310afa5c --- /dev/null +++ b/blockchains/ethereum/assets/0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f/info.json @@ -0,0 +1,25 @@ +{ + "name": "Monerium EUR emoney", + "website": "https://monerium.com", + "description": "The Monerium EURe is the first fully authorized and regulated euro stablecoin. It's the only onchain fiat directly transferable between bank accounts and web3 wallets.", + "explorer": "https://etherscan.io/token/0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f", + "type": "ERC20", + "symbol": "EURe", + "decimals": 18, + "status": "active", + "id": "0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f", + "links": [ + { + "name": "x", + "url": "https://x.com/monerium" + }, + { + "name": "telegram", + "url": "https://t.me/+o89F3aj9PsUzMDQ0" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/monerium/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f/logo.png b/blockchains/ethereum/assets/0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f/logo.png new file mode 100644 index 0000000000000..20268b491a66b Binary files /dev/null and b/blockchains/ethereum/assets/0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f/logo.png differ diff --git a/blockchains/ethereum/assets/0x32353A6C91143bfd6C7d363B546e62a9A2489A20/info.json b/blockchains/ethereum/assets/0x32353A6C91143bfd6C7d363B546e62a9A2489A20/info.json new file mode 100644 index 0000000000000..5dbe66d1d0b2f --- /dev/null +++ b/blockchains/ethereum/assets/0x32353A6C91143bfd6C7d363B546e62a9A2489A20/info.json @@ -0,0 +1,25 @@ +{ + "name": "Adventure Gold", + "type": "ERC20", + "symbol": "AGLD", + "decimals": 18, + "website": "https://www.lootproject.com/", + "description": "Adventure Gold is the native ERC-20 token of the Loot non-fungible token (NFT) project. Loot is a text-based, randomized adventure gear generated and stored on-chain, created by social media network Vine co-founder Dom Hofmann.", + "explorer": "https://etherscan.io/token/0x32353a6c91143bfd6c7d363b546e62a9a2489a20", + "status": "active", + "id": "0x32353A6C91143bfd6C7d363B546e62a9A2489A20", + "links": [ + { + "name": "x", + "url": "https://x.com/lootproject" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/adventure-gold/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/adventure-gold/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x32353A6C91143bfd6C7d363B546e62a9A2489A20/logo.png b/blockchains/ethereum/assets/0x32353A6C91143bfd6C7d363B546e62a9A2489A20/logo.png new file mode 100644 index 0000000000000..7651d7bba1d6a Binary files /dev/null and b/blockchains/ethereum/assets/0x32353A6C91143bfd6C7d363B546e62a9A2489A20/logo.png differ diff --git a/blockchains/ethereum/assets/0x32462bA310E447eF34FF0D15BCE8613aa8C4A244/info.json b/blockchains/ethereum/assets/0x32462bA310E447eF34FF0D15BCE8613aa8C4A244/info.json new file mode 100644 index 0000000000000..c5fb827882bc7 --- /dev/null +++ b/blockchains/ethereum/assets/0x32462bA310E447eF34FF0D15BCE8613aa8C4A244/info.json @@ -0,0 +1,18 @@ +{ + "name": "Dohrnii", + "type": "ERC20", + "symbol": "DHN", + "decimals": 18, + "description": "Dohrnii is redefining crypto education, breaking down the barriers that have long kept investors from accessing the knowledge they need to thrive in the digital asset revolution", + "website": "https://dohrnii.io/", + "explorer": "https://etherscan.io/token/0x32462bA310E447eF34FF0D15BCE8613aa8C4A244", + "id": "0x32462bA310E447eF34FF0D15BCE8613aa8C4A244", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Dohrnii_io" + } + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x32462bA310E447eF34FF0D15BCE8613aa8C4A244/logo.png b/blockchains/ethereum/assets/0x32462bA310E447eF34FF0D15BCE8613aa8C4A244/logo.png new file mode 100644 index 0000000000000..dc98715dfe40c Binary files /dev/null and b/blockchains/ethereum/assets/0x32462bA310E447eF34FF0D15BCE8613aa8C4A244/logo.png differ diff --git a/blockchains/ethereum/assets/0x32B053F2CBA79F80ada5078cb6b305da92BDe6e1/info.json b/blockchains/ethereum/assets/0x32B053F2CBA79F80ada5078cb6b305da92BDe6e1/info.json new file mode 100644 index 0000000000000..79652d8265176 --- /dev/null +++ b/blockchains/ethereum/assets/0x32B053F2CBA79F80ada5078cb6b305da92BDe6e1/info.json @@ -0,0 +1,21 @@ +{ + "name": "NeuralAI", + "type": "ERC20", + "symbol": "NEURAL", + "decimals": 18, + "website": "https://goneural.ai/", + "description": "Neural AI aims to create 3D Assets with AI on Bittensor.", + "explorer": "https://etherscan.io/token/0x32b053f2cba79f80ada5078cb6b305da92bde6e1", + "status": "active", + "id": "0x32B053F2CBA79F80ada5078cb6b305da92BDe6e1", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/neuralai/" + }, + { + "name": "x", + "url": "https://x.com/goneuralai" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x32B053F2CBA79F80ada5078cb6b305da92BDe6e1/logo.png b/blockchains/ethereum/assets/0x32B053F2CBA79F80ada5078cb6b305da92BDe6e1/logo.png new file mode 100644 index 0000000000000..22919d4d77184 Binary files /dev/null and b/blockchains/ethereum/assets/0x32B053F2CBA79F80ada5078cb6b305da92BDe6e1/logo.png differ diff --git a/blockchains/ethereum/assets/0x32b86b99441480a7E5BD3A26c124ec2373e3F015/info.json b/blockchains/ethereum/assets/0x32b86b99441480a7E5BD3A26c124ec2373e3F015/info.json new file mode 100644 index 0000000000000..9ab14d2e90a25 --- /dev/null +++ b/blockchains/ethereum/assets/0x32b86b99441480a7E5BD3A26c124ec2373e3F015/info.json @@ -0,0 +1,47 @@ +{ + "name": "Bad Idea AI", + "type": "ERC20", + "symbol": "BAD", + "decimals": 18, + "website": "https://www.badidea.ai", + "description": "$BAD is a decentralized experiment combining Blockchain, AI, and DAOs. Aiming to ensure AI works for humanity, it's a risky yet innovative approach. Created for education, entertainment, and experimentation, it represents a unique response to AI's growing influence.", + "explorer": "https://etherscan.io/token/0x32b86b99441480a7e5bd3a26c124ec2373e3f015", + "status": "active", + "id": "0x32b86b99441480a7E5BD3A26c124ec2373e3F015", + "links": [ + { + "name": "x", + "url": "https://x.com/badideaai" + }, + { + "name": "source_code", + "url": "https://gitlab.com/badideacoin/badideai/-/blob/main/Badideai" + }, + { + "name": "discord", + "url": "https://discord.com/invite/badideaai" + }, + { + "name": "whitepaper", + "url": "https://static1.squarespace.com/static/64568e2523471d05956228f1/t/64570517d89163351580ef5c/1683424539459/BAD+IDEA+AI+WHITEPAPER+v1.0.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bad-idea-ai/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bad-idea-ai/" + }, + { + "name": "telegram", + "url": "https://t.me/badideaai" + } + ], + "tags": [ + "governance", + "memes", + "deflationary", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x32b86b99441480a7E5BD3A26c124ec2373e3F015/logo.png b/blockchains/ethereum/assets/0x32b86b99441480a7E5BD3A26c124ec2373e3F015/logo.png new file mode 100644 index 0000000000000..afcd7c796124d Binary files /dev/null and b/blockchains/ethereum/assets/0x32b86b99441480a7E5BD3A26c124ec2373e3F015/logo.png differ diff --git a/blockchains/ethereum/assets/0x32bDD8b97868ACf7014cFE6EB49Bf4f2936C8F02/info.json b/blockchains/ethereum/assets/0x32bDD8b97868ACf7014cFE6EB49Bf4f2936C8F02/info.json new file mode 100644 index 0000000000000..b72387a0572ff --- /dev/null +++ b/blockchains/ethereum/assets/0x32bDD8b97868ACf7014cFE6EB49Bf4f2936C8F02/info.json @@ -0,0 +1,28 @@ +{ + "name": "Deep Blue USD", + "type": "ERC20", + "symbol": "DBUSD", + "decimals": 6, + "website": "https://www.deepblue.to/", + "description": "DBUSD is a USD fiat fully backed 1:1 stablecoin created and issued by Deep Blue with a focus on store of value, remittance, money transfers and trading settlement.", + "explorer": "https://etherscan.io/token/0x32bDD8b97868ACf7014cFE6EB49Bf4f2936C8F02", + "status": "active", + "id": "0x32bDD8b97868ACf7014cFE6EB49Bf4f2936C8F02", + "links": [ + { + "name": "x", + "url": "https://x.com/DeepBlue_to" + }, + { + "name": "whitepaper", + "url": "https://deepblue.to/" + }, + { + "name": "telegram", + "url": "https://t.me/deepblueto" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x32bDD8b97868ACf7014cFE6EB49Bf4f2936C8F02/logo.png b/blockchains/ethereum/assets/0x32bDD8b97868ACf7014cFE6EB49Bf4f2936C8F02/logo.png new file mode 100644 index 0000000000000..89ea00eb5b95e Binary files /dev/null and b/blockchains/ethereum/assets/0x32bDD8b97868ACf7014cFE6EB49Bf4f2936C8F02/logo.png differ diff --git a/blockchains/ethereum/assets/0x32d7c413fD3477E86b8eC6B0BB8F3Ac510eAfaae/info.json b/blockchains/ethereum/assets/0x32d7c413fD3477E86b8eC6B0BB8F3Ac510eAfaae/info.json new file mode 100644 index 0000000000000..48e2b9c6244e1 --- /dev/null +++ b/blockchains/ethereum/assets/0x32d7c413fD3477E86b8eC6B0BB8F3Ac510eAfaae/info.json @@ -0,0 +1,28 @@ +{ + "name": "Deere (Ondo Tokenized)", + "type": "ERC20", + "symbol": "DEon", + "decimals": 18, + "description": "DEon is the Ondo Tokenized version of Deere, giving tokenholders economic exposure similar to holding DE and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x32d7c413fD3477E86b8eC6B0BB8F3Ac510eAfaae", + "status": "active", + "id": "0x32d7c413fD3477E86b8eC6B0BB8F3Ac510eAfaae", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/deere-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/deere-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x32d7c413fD3477E86b8eC6B0BB8F3Ac510eAfaae/logo.png b/blockchains/ethereum/assets/0x32d7c413fD3477E86b8eC6B0BB8F3Ac510eAfaae/logo.png new file mode 100644 index 0000000000000..bdf4e7cc322a1 Binary files /dev/null and b/blockchains/ethereum/assets/0x32d7c413fD3477E86b8eC6B0BB8F3Ac510eAfaae/logo.png differ diff --git a/blockchains/ethereum/assets/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6/info.json b/blockchains/ethereum/assets/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6/info.json index c384d0616b9bb..045df77461fac 100644 --- a/blockchains/ethereum/assets/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6/info.json +++ b/blockchains/ethereum/assets/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6/info.json @@ -4,11 +4,8 @@ "symbol": "AKITA", "decimals": 18, "website": "https://akita.network", - "description": "AKITA INU 秋田犬 is a 100% decentralized community experiment with it claims that 1/2 the tokens have been sent to Vitalik Buterin and the other half were locked to a Uniswap pool and the keys burned. It is same as SHIBA INU but with different tokenmetrics.", - "explorer": "https://etherscan.io/token/0x3301ee63fb29f863f2333bd4466acb46cd8323e6", - "status": "active", - "id": "0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6", - "tags": [ - "deflationary" - ] -} \ No newline at end of file + "description": "Akita DAO is a decentralized autonomous organization of the AKITA community which helps guide the future of the ecosystem. The Akita DAO exists to produce products and useful applications that benefit holders of the AKITA tokens. AKITA token holders were the original group to come together and make AKITA a true community owned token pushing it to be more than just a meme.", + "explorer": "https://etherscan.io/token/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6", + "status": "abandoned", + "id": "0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6" +} diff --git a/blockchains/ethereum/assets/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6/logo.png b/blockchains/ethereum/assets/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6/logo.png deleted file mode 100644 index f029ab771e021..0000000000000 Binary files a/blockchains/ethereum/assets/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x33333333FEde34409Fb7f67c6585047E1F653333/info.json b/blockchains/ethereum/assets/0x33333333FEde34409Fb7f67c6585047E1F653333/info.json new file mode 100644 index 0000000000000..772a87c7fcc00 --- /dev/null +++ b/blockchains/ethereum/assets/0x33333333FEde34409Fb7f67c6585047E1F653333/info.json @@ -0,0 +1,21 @@ +{ + "name": "ORA", + "type": "ERC20", + "symbol": "ORA", + "decimals": 18, + "website": "https://www.ora.io/", + "description": "ORA provides chain-agnostic infrastructure that seamlessly connects AI and blockchain.", + "explorer": "https://etherscan.io/token/0x33333333FEde34409Fb7f67c6585047E1F653333", + "status": "active", + "id": "0x33333333FEde34409Fb7f67c6585047E1F653333", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ora-coin" + }, + { + "name": "x", + "url": "https://x.com/foundationora" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x33333333FEde34409Fb7f67c6585047E1F653333/logo.png b/blockchains/ethereum/assets/0x33333333FEde34409Fb7f67c6585047E1F653333/logo.png new file mode 100644 index 0000000000000..1065fb457ed1c Binary files /dev/null and b/blockchains/ethereum/assets/0x33333333FEde34409Fb7f67c6585047E1F653333/logo.png differ diff --git a/blockchains/ethereum/assets/0x33349B282065b0284d756F0577FB39c158F935e6/info.json b/blockchains/ethereum/assets/0x33349B282065b0284d756F0577FB39c158F935e6/info.json index 34b2b036619e8..c8f8845939ea2 100644 --- a/blockchains/ethereum/assets/0x33349B282065b0284d756F0577FB39c158F935e6/info.json +++ b/blockchains/ethereum/assets/0x33349B282065b0284d756F0577FB39c158F935e6/info.json @@ -10,8 +10,8 @@ "id": "0x33349B282065b0284d756F0577FB39c158F935e6", "links": [ { - "name": "twitter", - "url": "https://twitter.com/maplefinance" + "name": "x", + "url": "https://x.com/maplefinance" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0x33483A58079b4225b10e57958Ca28ad7b9CDbAF7/info.json b/blockchains/ethereum/assets/0x33483A58079b4225b10e57958Ca28ad7b9CDbAF7/info.json new file mode 100644 index 0000000000000..f9064b0ef3100 --- /dev/null +++ b/blockchains/ethereum/assets/0x33483A58079b4225b10e57958Ca28ad7b9CDbAF7/info.json @@ -0,0 +1,28 @@ +{ + "name": "BitMine Immersion Technologies (Ondo Tokenized)", + "type": "ERC20", + "symbol": "BMNRon", + "decimals": 18, + "description": "BMNRon is the Ondo Tokenized version of BitMine Immersion Technologies, giving tokenholders economic exposure similar to holding BMNR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x33483A58079b4225b10e57958Ca28ad7b9CDbAF7", + "status": "active", + "id": "0x33483A58079b4225b10e57958Ca28ad7b9CDbAF7", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bitmine-immersion-technologies-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bitmine-immersion-technologies-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x33483A58079b4225b10e57958Ca28ad7b9CDbAF7/logo.png b/blockchains/ethereum/assets/0x33483A58079b4225b10e57958Ca28ad7b9CDbAF7/logo.png new file mode 100644 index 0000000000000..b2bd2c4cc9675 Binary files /dev/null and b/blockchains/ethereum/assets/0x33483A58079b4225b10e57958Ca28ad7b9CDbAF7/logo.png differ diff --git a/blockchains/ethereum/assets/0x334ccd8Df4013bac99Af8C5C61d3605B315302a0/info.json b/blockchains/ethereum/assets/0x334ccd8Df4013bac99Af8C5C61d3605B315302a0/info.json new file mode 100644 index 0000000000000..7b2da86c02761 --- /dev/null +++ b/blockchains/ethereum/assets/0x334ccd8Df4013bac99Af8C5C61d3605B315302a0/info.json @@ -0,0 +1,28 @@ +{ + "name": "Bullish (Ondo Tokenized)", + "type": "ERC20", + "symbol": "BLSHon", + "decimals": 18, + "description": "BLSHon is the Ondo Tokenized version of Bullish, giving tokenholders economic exposure similar to holding BLSH and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x334ccd8Df4013bac99Af8C5C61d3605B315302a0", + "status": "active", + "id": "0x334ccd8Df4013bac99Af8C5C61d3605B315302a0", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bullish-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bullish-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x334ccd8Df4013bac99Af8C5C61d3605B315302a0/logo.png b/blockchains/ethereum/assets/0x334ccd8Df4013bac99Af8C5C61d3605B315302a0/logo.png new file mode 100644 index 0000000000000..78152f377fdc7 Binary files /dev/null and b/blockchains/ethereum/assets/0x334ccd8Df4013bac99Af8C5C61d3605B315302a0/logo.png differ diff --git a/blockchains/ethereum/assets/0x335F4e66B9B61CEE5CeaDE4e727FCEC20156B2F0/info.json b/blockchains/ethereum/assets/0x335F4e66B9B61CEE5CeaDE4e727FCEC20156B2F0/info.json new file mode 100644 index 0000000000000..73512b48d6fe7 --- /dev/null +++ b/blockchains/ethereum/assets/0x335F4e66B9B61CEE5CeaDE4e727FCEC20156B2F0/info.json @@ -0,0 +1,32 @@ +{ + "name": "ElmoERC", + "symbol": "ELMO", + "type": "ERC20", + "decimals": 18, + "description": "ELMOERC is all about the things we love about meme, burn and earn! We reward our long-term diamond holders through massive burns paid by the sellers through tax. we have a combined experience of over 15 years in the Memespace.", + "website": "https://www.elmoerc.io/", + "explorer": "https://etherscan.io/token/0x335f4e66b9b61cee5ceade4e727fcec20156b2f0", + "status": "active", + "id": "0x335F4e66B9B61CEE5CeaDE4e727FCEC20156B2F0", + "links": [ + { + "name": "x", + "url": "https://x.com/RealElmoERC" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elmoerc/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/elmoerc" + }, + { + "name": "telegram", + "url": "https://t.me/RealElmoERC" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x335F4e66B9B61CEE5CeaDE4e727FCEC20156B2F0/logo.png b/blockchains/ethereum/assets/0x335F4e66B9B61CEE5CeaDE4e727FCEC20156B2F0/logo.png new file mode 100644 index 0000000000000..a8a733267a8d6 Binary files /dev/null and b/blockchains/ethereum/assets/0x335F4e66B9B61CEE5CeaDE4e727FCEC20156B2F0/logo.png differ diff --git a/blockchains/ethereum/assets/0x3361A73262199873b74D6835760a59B8817fa592/info.json b/blockchains/ethereum/assets/0x3361A73262199873b74D6835760a59B8817fa592/info.json new file mode 100644 index 0000000000000..d56a3698d948f --- /dev/null +++ b/blockchains/ethereum/assets/0x3361A73262199873b74D6835760a59B8817fa592/info.json @@ -0,0 +1,28 @@ +{ + "name": "AT&T (Ondo Tokenized)", + "type": "ERC20", + "symbol": "Ton", + "decimals": 18, + "description": "Ton is the Ondo Tokenized version of AT&T, giving tokenholders economic exposure similar to holding T and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x3361A73262199873b74D6835760a59B8817fa592", + "status": "active", + "id": "0x3361A73262199873b74D6835760a59B8817fa592", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/atnt-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/att-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3361A73262199873b74D6835760a59B8817fa592/logo.png b/blockchains/ethereum/assets/0x3361A73262199873b74D6835760a59B8817fa592/logo.png new file mode 100644 index 0000000000000..f424f8b4faa5e Binary files /dev/null and b/blockchains/ethereum/assets/0x3361A73262199873b74D6835760a59B8817fa592/logo.png differ diff --git a/blockchains/ethereum/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/info.json b/blockchains/ethereum/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/info.json new file mode 100644 index 0000000000000..9536c28c65f90 --- /dev/null +++ b/blockchains/ethereum/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/info.json @@ -0,0 +1,24 @@ +{ + "name": "Mexican Peso", + "website": "https://www.ripio.com/es/criptos/stablecoins-locales", + "description": "wMXN is a fully collateralized stablecoin pegged 1:1 to the Mexican Peso (MXN). Issued and governed by a Ripio subsidiary, it brings MXN on-chain so users can transact, save, and build on decentralized networks in their local currency.", + "explorer": "https://etherscan.io/token/0x337E7456B420bD3481e7FA61fA9850343d610d34", + "type": "ERC20", + "symbol": "wMXN", + "decimals": 18, + "status": "active", + "id": "0x337E7456B420bD3481e7FA61fA9850343d610d34", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/RipioApp" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mexican-peso" + } + ] +} diff --git a/blockchains/ethereum/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/logo.png b/blockchains/ethereum/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/logo.png new file mode 100644 index 0000000000000..854c9b59f6ab8 Binary files /dev/null and b/blockchains/ethereum/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/logo.png differ diff --git a/blockchains/ethereum/assets/0x3383c5a8969Dc413bfdDc9656Eb80A1408E4bA20/info.json b/blockchains/ethereum/assets/0x3383c5a8969Dc413bfdDc9656Eb80A1408E4bA20/info.json index 6757d020e968c..b03d082f387d5 100644 --- a/blockchains/ethereum/assets/0x3383c5a8969Dc413bfdDc9656Eb80A1408E4bA20/info.json +++ b/blockchains/ethereum/assets/0x3383c5a8969Dc413bfdDc9656Eb80A1408E4bA20/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/anathatech/" }, { - "name": "twitter", - "url": "https://twitter.com/Anatha_IO" + "name": "x", + "url": "https://x.com/Anatha_IO" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0x339ce23a355ed6D513DD3e1462975C4eCD86823a/info.json b/blockchains/ethereum/assets/0x339ce23a355ed6D513DD3e1462975C4eCD86823a/info.json new file mode 100644 index 0000000000000..272a593f2674c --- /dev/null +++ b/blockchains/ethereum/assets/0x339ce23a355ed6D513DD3e1462975C4eCD86823a/info.json @@ -0,0 +1,24 @@ +{ + "name": "Procter & Gamble (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "PGon is the Ondo Tokenized version of Procter & Gamble, giving tokenholders economic exposure similar to holding PG and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x339ce23a355ed6D513DD3e1462975C4eCD86823a", + "type": "ERC20", + "symbol": "PGon", + "decimals": 18, + "status": "active", + "id": "0x339ce23a355ed6D513DD3e1462975C4eCD86823a", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/procter-gamble-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x339ce23a355ed6D513DD3e1462975C4eCD86823a/logo.png b/blockchains/ethereum/assets/0x339ce23a355ed6D513DD3e1462975C4eCD86823a/logo.png new file mode 100644 index 0000000000000..d82ddf5aeb0b2 Binary files /dev/null and b/blockchains/ethereum/assets/0x339ce23a355ed6D513DD3e1462975C4eCD86823a/logo.png differ diff --git a/blockchains/ethereum/assets/0x33ABE795f9c1b6136608c36dB211bD7590f5FdAE/info.json b/blockchains/ethereum/assets/0x33ABE795f9c1b6136608c36dB211bD7590f5FdAE/info.json new file mode 100644 index 0000000000000..eb60364c36dae --- /dev/null +++ b/blockchains/ethereum/assets/0x33ABE795f9c1b6136608c36dB211bD7590f5FdAE/info.json @@ -0,0 +1,21 @@ +{ + "name": "Landwolf", + "website": "https://landwolfeth.io/", + "description": "#Landwolf is Pepe’s best friend.", + "explorer": "https://etherscan.io/token/0x33abe795f9c1b6136608c36db211bd7590f5fdae", + "type": "ERC20", + "symbol": "WOLF", + "decimals": 18, + "status": "active", + "id": "0x33ABE795f9c1b6136608c36dB211bD7590f5FdAE", + "links": [ + { + "name": "telegram", + "url": "https://t.me/ogLandwolf0x33" + }, + { + "name": "x", + "url": "https://x.com/Landwolfeth" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x33ABE795f9c1b6136608c36dB211bD7590f5FdAE/logo.png b/blockchains/ethereum/assets/0x33ABE795f9c1b6136608c36dB211bD7590f5FdAE/logo.png new file mode 100644 index 0000000000000..fe351ef1589a1 Binary files /dev/null and b/blockchains/ethereum/assets/0x33ABE795f9c1b6136608c36dB211bD7590f5FdAE/logo.png differ diff --git a/blockchains/ethereum/assets/0x33C04Bed4533e31f2Afb8AC4a61A48Eda38C4fA0/info.json b/blockchains/ethereum/assets/0x33C04Bed4533e31f2Afb8AC4a61A48Eda38C4fA0/info.json new file mode 100644 index 0000000000000..dc96fccb02ad8 --- /dev/null +++ b/blockchains/ethereum/assets/0x33C04Bed4533e31f2Afb8AC4a61A48Eda38C4fA0/info.json @@ -0,0 +1,25 @@ +{ + "name": "Gorilla", + "type": "ERC20", + "symbol": "GORILLA", + "decimals": 9, + "website": "https://gorillatoken.io/", + "description": "$GORILLA, a meme token poised to revolutionize the crypto landscape by combining viral appeal with substantial utility, creating an investment opportunity that transcends traditional meme tokens.", + "explorer": "https://etherscan.io/token/0x33C04Bed4533e31f2Afb8AC4a61A48Eda38C4fA0", + "status": "active", + "id": "0x33C04Bed4533e31f2Afb8AC4a61A48Eda38C4fA0", + "links": [ + { + "name": "x", + "url": "https://x.com/gorillatokenio" + }, + { + "name": "telegram", + "url": "https://t.me/gorillatokenio" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gorilla-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x33C04Bed4533e31f2Afb8AC4a61A48Eda38C4fA0/logo.png b/blockchains/ethereum/assets/0x33C04Bed4533e31f2Afb8AC4a61A48Eda38C4fA0/logo.png new file mode 100644 index 0000000000000..21e38dbc619b5 Binary files /dev/null and b/blockchains/ethereum/assets/0x33C04Bed4533e31f2Afb8AC4a61A48Eda38C4fA0/logo.png differ diff --git a/blockchains/ethereum/assets/0x33D0568941C0C64ff7e0FB4fbA0B11BD37deEd9f/info.json b/blockchains/ethereum/assets/0x33D0568941C0C64ff7e0FB4fbA0B11BD37deEd9f/info.json index d412d95bf93ce..7e3d4232bc22e 100644 --- a/blockchains/ethereum/assets/0x33D0568941C0C64ff7e0FB4fbA0B11BD37deEd9f/info.json +++ b/blockchains/ethereum/assets/0x33D0568941C0C64ff7e0FB4fbA0B11BD37deEd9f/info.json @@ -10,8 +10,8 @@ "id": "0x33D0568941C0C64ff7e0FB4fbA0B11BD37deEd9f", "links": [ { - "name": "twitter", - "url": "https://twitter.com/RampDefi" + "name": "x", + "url": "https://x.com/RampDefi" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x33aC34DA58168De69cE74a66fbaD81a88F974BD5/info.json b/blockchains/ethereum/assets/0x33aC34DA58168De69cE74a66fbaD81a88F974BD5/info.json new file mode 100644 index 0000000000000..a795b8313c277 --- /dev/null +++ b/blockchains/ethereum/assets/0x33aC34DA58168De69cE74a66fbaD81a88F974BD5/info.json @@ -0,0 +1,24 @@ +{ + "name": "Regeneron Pharmaceuticals (Ondo Tokenized)", + "type": "ERC20", + "symbol": "REGNon", + "decimals": 18, + "description": "REGNon is the Ondo Tokenized version of Regeneron Pharmaceuticals, giving tokenholders economic exposure similar to holding REGN and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x33aC34DA58168De69cE74a66fbaD81a88F974BD5", + "status": "active", + "id": "0x33aC34DA58168De69cE74a66fbaD81a88F974BD5", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/regeneron-pharmaceuticals-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x33aC34DA58168De69cE74a66fbaD81a88F974BD5/logo.png b/blockchains/ethereum/assets/0x33aC34DA58168De69cE74a66fbaD81a88F974BD5/logo.png new file mode 100644 index 0000000000000..ed1647f53abeb Binary files /dev/null and b/blockchains/ethereum/assets/0x33aC34DA58168De69cE74a66fbaD81a88F974BD5/logo.png differ diff --git a/blockchains/ethereum/assets/0x33d63Ba1E57E54779F7dDAeaA7109349344cf5F1/info.json b/blockchains/ethereum/assets/0x33d63Ba1E57E54779F7dDAeaA7109349344cf5F1/info.json index 7e9321ecf6681..b407a86a7328b 100644 --- a/blockchains/ethereum/assets/0x33d63Ba1E57E54779F7dDAeaA7109349344cf5F1/info.json +++ b/blockchains/ethereum/assets/0x33d63Ba1E57E54779F7dDAeaA7109349344cf5F1/info.json @@ -14,8 +14,8 @@ "url": "https://gov.indexcoop.com" }, { - "name": "twitter", - "url": "https://twitter.com/indexcoop" + "name": "x", + "url": "https://x.com/indexcoop" }, { "name": "coinmarketcap", diff --git a/blockchains/ethereum/assets/0x341c05c0E9b33C0E38d64de76516b2Ce970bB3BE/info.json b/blockchains/ethereum/assets/0x341c05c0E9b33C0E38d64de76516b2Ce970bB3BE/info.json index 9bc912b0b6366..c0b3131d458cc 100644 --- a/blockchains/ethereum/assets/0x341c05c0E9b33C0E38d64de76516b2Ce970bB3BE/info.json +++ b/blockchains/ethereum/assets/0x341c05c0E9b33C0E38d64de76516b2Ce970bB3BE/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/IndexCoop" }, { - "name": "twitter", - "url": "https://twitter.com/indexcoop" + "name": "x", + "url": "https://x.com/indexcoop" }, { "name": "docs", @@ -34,4 +34,4 @@ "staking", "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3429d03c6F7521AeC737a0BBF2E5ddcef2C3Ae31/info.json b/blockchains/ethereum/assets/0x3429d03c6F7521AeC737a0BBF2E5ddcef2C3Ae31/info.json new file mode 100644 index 0000000000000..cbc0d6ab96bbf --- /dev/null +++ b/blockchains/ethereum/assets/0x3429d03c6F7521AeC737a0BBF2E5ddcef2C3Ae31/info.json @@ -0,0 +1,21 @@ +{ + "name": "PIXEL", + "type": "ERC20", + "symbol": "PIXEL", + "decimals": 18, + "website": "https://www.pixels.xyz/", + "description": "Pixels (PIXEL) is a social casual web3 game powered by the Ronin Network, It involves a mesmerizing open-world game that revolves around farming, exploration, and creation.", + "explorer": "https://etherscan.io/token/0x3429d03c6F7521AeC737a0BBF2E5ddcef2C3Ae31", + "status": "active", + "id": "0x3429d03c6F7521AeC737a0BBF2E5ddcef2C3Ae31", + "links": [ + { + "name": "x", + "url": "https://x.com/pixels_online" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pixels/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3429d03c6F7521AeC737a0BBF2E5ddcef2C3Ae31/logo.png b/blockchains/ethereum/assets/0x3429d03c6F7521AeC737a0BBF2E5ddcef2C3Ae31/logo.png new file mode 100644 index 0000000000000..1b74f8438e143 Binary files /dev/null and b/blockchains/ethereum/assets/0x3429d03c6F7521AeC737a0BBF2E5ddcef2C3Ae31/logo.png differ diff --git a/blockchains/ethereum/assets/0x3432B6A60D23Ca0dFCa7761B7ab56459D9C964D0/info.json b/blockchains/ethereum/assets/0x3432B6A60D23Ca0dFCa7761B7ab56459D9C964D0/info.json index c791eb45ea850..7c92130ccf2ea 100644 --- a/blockchains/ethereum/assets/0x3432B6A60D23Ca0dFCa7761B7ab56459D9C964D0/info.json +++ b/blockchains/ethereum/assets/0x3432B6A60D23Ca0dFCa7761B7ab56459D9C964D0/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/FraxFinance" }, { - "name": "twitter", - "url": "https://twitter.com/Frax Finance" + "name": "x", + "url": "https://x.com/Frax Finance" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x3449FC1Cd036255BA1EB19d65fF4BA2b8903A69a/info.json b/blockchains/ethereum/assets/0x3449FC1Cd036255BA1EB19d65fF4BA2b8903A69a/info.json index b531bf92ea3cd..bd2b180cd9529 100644 --- a/blockchains/ethereum/assets/0x3449FC1Cd036255BA1EB19d65fF4BA2b8903A69a/info.json +++ b/blockchains/ethereum/assets/0x3449FC1Cd036255BA1EB19d65fF4BA2b8903A69a/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Basis-Cash" }, { - "name": "twitter", - "url": "https://twitter.com/Basis Cash" + "name": "x", + "url": "https://x.com/Basis Cash" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x3472A5A71965499acd81997a54BBA8D852C6E53d/info.json b/blockchains/ethereum/assets/0x3472A5A71965499acd81997a54BBA8D852C6E53d/info.json index d2730d7bbfc17..37bc6739e19f7 100644 --- a/blockchains/ethereum/assets/0x3472A5A71965499acd81997a54BBA8D852C6E53d/info.json +++ b/blockchains/ethereum/assets/0x3472A5A71965499acd81997a54BBA8D852C6E53d/info.json @@ -14,8 +14,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/$BADGER" + "name": "x", + "url": "https://x.com/$BADGER" }, { "name": "discord", diff --git a/blockchains/ethereum/assets/0x34950Ff2b487d9E5282c5aB342d08A2f712eb79F/info.json b/blockchains/ethereum/assets/0x34950Ff2b487d9E5282c5aB342d08A2f712eb79F/info.json index f8a43d828b377..81d1997de50f7 100644 --- a/blockchains/ethereum/assets/0x34950Ff2b487d9E5282c5aB342d08A2f712eb79F/info.json +++ b/blockchains/ethereum/assets/0x34950Ff2b487d9E5282c5aB342d08A2f712eb79F/info.json @@ -10,8 +10,8 @@ "id": "0x34950Ff2b487d9E5282c5aB342d08A2f712eb79F", "links": [ { - "name": "twitter", - "url": "https://twitter.com/EfforceOfficial" + "name": "x", + "url": "https://x.com/EfforceOfficial" }, { "name": "facebook", diff --git a/blockchains/ethereum/assets/0x3496B523e5C00a4b4150D6721320CdDb234c3079/info.json b/blockchains/ethereum/assets/0x3496B523e5C00a4b4150D6721320CdDb234c3079/info.json new file mode 100644 index 0000000000000..9323c2c425027 --- /dev/null +++ b/blockchains/ethereum/assets/0x3496B523e5C00a4b4150D6721320CdDb234c3079/info.json @@ -0,0 +1,21 @@ +{ + "name": "NUM", + "type": "ERC20", + "symbol": "NUM", + "decimals": 18, + "website": "https://www.numbersprotocol.io/", + "description": "Numbers protocol is a decentralised photo network, for creating community, value and trust in digital media.", + "explorer": "https://etherscan.io/token/0x3496b523e5c00a4b4150d6721320cddb234c3079", + "status": "active", + "id": "0x3496B523e5C00a4b4150D6721320CdDb234c3079", + "links": [ + { + "name": "x", + "url": "https://x.com/numbersprotocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/numbers-protocol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3496B523e5C00a4b4150D6721320CdDb234c3079/logo.png b/blockchains/ethereum/assets/0x3496B523e5C00a4b4150D6721320CdDb234c3079/logo.png new file mode 100644 index 0000000000000..a85ef028fa687 Binary files /dev/null and b/blockchains/ethereum/assets/0x3496B523e5C00a4b4150D6721320CdDb234c3079/logo.png differ diff --git a/blockchains/ethereum/assets/0x34Be5b8C30eE4fDe069DC878989686aBE9884470/info.json b/blockchains/ethereum/assets/0x34Be5b8C30eE4fDe069DC878989686aBE9884470/info.json index 7cd7aa40f1d37..e6008f3592365 100644 --- a/blockchains/ethereum/assets/0x34Be5b8C30eE4fDe069DC878989686aBE9884470/info.json +++ b/blockchains/ethereum/assets/0x34Be5b8C30eE4fDe069DC878989686aBE9884470/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/sidusHeroes" }, { - "name": "twitter", - "url": "https://twitter.com/galaxy_sidus" + "name": "x", + "url": "https://x.com/galaxy_sidus" }, { "name": "medium", @@ -35,4 +35,4 @@ "nft", "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x34F0915a5f15a66Eba86F6a58bE1A471FB7836A7/info.json b/blockchains/ethereum/assets/0x34F0915a5f15a66Eba86F6a58bE1A471FB7836A7/info.json index 3ddc28db0fa77..3e174288bcd45 100644 --- a/blockchains/ethereum/assets/0x34F0915a5f15a66Eba86F6a58bE1A471FB7836A7/info.json +++ b/blockchains/ethereum/assets/0x34F0915a5f15a66Eba86F6a58bE1A471FB7836A7/info.json @@ -10,8 +10,8 @@ "id": "0x34F0915a5f15a66Eba86F6a58bE1A471FB7836A7", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PLSDogecoin" + "name": "x", + "url": "https://x.com/PLSDogecoin" }, { "name": "github", @@ -37,4 +37,4 @@ "tags": [ "memes" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x34bfdFF25F0fdA6d3ad0c33F1e06c0D40bD68885/info.json b/blockchains/ethereum/assets/0x34bfdFF25F0fdA6d3ad0c33F1e06c0D40bD68885/info.json new file mode 100644 index 0000000000000..a36365c74f6ba --- /dev/null +++ b/blockchains/ethereum/assets/0x34bfdFF25F0fdA6d3ad0c33F1e06c0D40bD68885/info.json @@ -0,0 +1,24 @@ +{ + "name": "Palo Alto Networks (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "PANWon is the Ondo Tokenized version of Palo Alto Networks, giving tokenholders economic exposure similar to holding PANW and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x34bfdFF25F0fdA6d3ad0c33F1e06c0D40bD68885", + "type": "ERC20", + "symbol": "PANWon", + "decimals": 18, + "status": "active", + "id": "0x34bfdFF25F0fdA6d3ad0c33F1e06c0D40bD68885", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/palo-alto-networks-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x34bfdFF25F0fdA6d3ad0c33F1e06c0D40bD68885/logo.png b/blockchains/ethereum/assets/0x34bfdFF25F0fdA6d3ad0c33F1e06c0D40bD68885/logo.png new file mode 100644 index 0000000000000..da6b93929f64c Binary files /dev/null and b/blockchains/ethereum/assets/0x34bfdFF25F0fdA6d3ad0c33F1e06c0D40bD68885/logo.png differ diff --git a/blockchains/ethereum/assets/0x3506424F91fD33084466F402d5D97f05F8e3b4AF/info.json b/blockchains/ethereum/assets/0x3506424F91fD33084466F402d5D97f05F8e3b4AF/info.json index e56c33d8ff313..ce34ec0013a33 100644 --- a/blockchains/ethereum/assets/0x3506424F91fD33084466F402d5D97f05F8e3b4AF/info.json +++ b/blockchains/ethereum/assets/0x3506424F91fD33084466F402d5D97f05F8e3b4AF/info.json @@ -17,8 +17,8 @@ "url": "https://t.me/chiliz_io" }, { - "name": "twitter", - "url": "https://twitter.com/chiliZ/" + "name": "x", + "url": "https://x.com/chiliZ/" }, { "name": "facebook", diff --git a/blockchains/ethereum/assets/0x35156b404C3f9bdaf45ab65Ba315419bcDe3775c/info.json b/blockchains/ethereum/assets/0x35156b404C3f9bdaf45ab65Ba315419bcDe3775c/info.json index d1bd1400a4d82..fe21466029eb2 100644 --- a/blockchains/ethereum/assets/0x35156b404C3f9bdaf45ab65Ba315419bcDe3775c/info.json +++ b/blockchains/ethereum/assets/0x35156b404C3f9bdaf45ab65Ba315419bcDe3775c/info.json @@ -10,8 +10,8 @@ "id": "0x35156b404C3f9bdaf45ab65Ba315419bcDe3775c", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ChihiroInuETH" + "name": "x", + "url": "https://x.com/ChihiroInuETH" }, { "name": "discord", diff --git a/blockchains/ethereum/assets/0x3522513E5F146a2006e2901b05f16B2821485E19/info.json b/blockchains/ethereum/assets/0x3522513E5F146a2006e2901b05f16B2821485E19/info.json new file mode 100644 index 0000000000000..87a8b2461fdac --- /dev/null +++ b/blockchains/ethereum/assets/0x3522513E5F146a2006e2901b05f16B2821485E19/info.json @@ -0,0 +1,15 @@ +{ + "name": "AMD xStock", + "type": "ERC20", + "symbol": "AMDx", + "decimals": 18, + "description": "AMD xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://etherscan.io/token/0x3522513E5F146a2006e2901b05f16B2821485E19", + "status": "active", + "id": "0x3522513E5F146a2006e2901b05f16B2821485E19", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3522513E5F146a2006e2901b05f16B2821485E19/logo.png b/blockchains/ethereum/assets/0x3522513E5F146a2006e2901b05f16B2821485E19/logo.png new file mode 100644 index 0000000000000..4e802b8335682 Binary files /dev/null and b/blockchains/ethereum/assets/0x3522513E5F146a2006e2901b05f16B2821485E19/logo.png differ diff --git a/blockchains/ethereum/assets/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081/info.json b/blockchains/ethereum/assets/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081/info.json new file mode 100644 index 0000000000000..e1ff0cedc146d --- /dev/null +++ b/blockchains/ethereum/assets/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081/info.json @@ -0,0 +1,24 @@ +{ + "name": "Amazon tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Amazon tokenized stock (xStock) (AMZNX) is a cryptocurrency and operates on the Solana platform. Amazon tokenized stock (xStock) has a current supply of 9,999.36105472 with 5,447.71612052 in circulation. The last known price of Amazon tokenized stock (xStock) is 232.88934286 USD and is up 0.69 over the last 24 hours. It is currently trading on 28 active market(s) with $3,262,241.23 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/amazon-xstock.", + "explorer": "https://etherscan.io/token/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081", + "type": "ERC20", + "symbol": "AMZNX", + "decimals": 18, + "status": "active", + "id": "0x3557Ba345B01EFa20A1bdDC61F573BFD87195081", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/amazon-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081/logo.png b/blockchains/ethereum/assets/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081/logo.png new file mode 100644 index 0000000000000..1b179f11932f3 Binary files /dev/null and b/blockchains/ethereum/assets/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081/logo.png differ diff --git a/blockchains/ethereum/assets/0x3567aa22cd3ab9aEf23d7e18EE0D7cf16974d7e6/info.json b/blockchains/ethereum/assets/0x3567aa22cd3ab9aEf23d7e18EE0D7cf16974d7e6/info.json new file mode 100644 index 0000000000000..cef00ec485200 --- /dev/null +++ b/blockchains/ethereum/assets/0x3567aa22cd3ab9aEf23d7e18EE0D7cf16974d7e6/info.json @@ -0,0 +1,21 @@ +{ + "name": "Sharpe AI", + "website": "https://www.sharpe.ai/", + "description": "Sharpe is an AI powered crypto superapp with a frontend for crypto intelligence, investing, tracking and automating digital assets.", + "explorer": "https://etherscan.io/token/0x3567aa22cd3ab9aef23d7e18ee0d7cf16974d7e6", + "symbol": "SAI", + "type": "ERC20", + "decimals": 18, + "status": "active", + "id": "0x3567aa22cd3ab9aEf23d7e18EE0D7cf16974d7e6", + "links": [ + { + "name": "x", + "url": "https://x.com/sharpelabs" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sharpe-ai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3567aa22cd3ab9aEf23d7e18EE0D7cf16974d7e6/logo.png b/blockchains/ethereum/assets/0x3567aa22cd3ab9aEf23d7e18EE0D7cf16974d7e6/logo.png new file mode 100644 index 0000000000000..24536a4a33d97 Binary files /dev/null and b/blockchains/ethereum/assets/0x3567aa22cd3ab9aEf23d7e18EE0D7cf16974d7e6/logo.png differ diff --git a/blockchains/ethereum/assets/0x358AA737e033F34df7c54306960a38d09AaBd523/info.json b/blockchains/ethereum/assets/0x358AA737e033F34df7c54306960a38d09AaBd523/info.json index 949033b021916..b9bc7fe194022 100644 --- a/blockchains/ethereum/assets/0x358AA737e033F34df7c54306960a38d09AaBd523/info.json +++ b/blockchains/ethereum/assets/0x358AA737e033F34df7c54306960a38d09AaBd523/info.json @@ -10,8 +10,8 @@ "id": "0x358AA737e033F34df7c54306960a38d09AaBd523", "links": [ { - "name": "twitter", - "url": "https://twitter.com/AresProtocolLab" + "name": "x", + "url": "https://x.com/AresProtocolLab" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d/info.json b/blockchains/ethereum/assets/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d/info.json index d3b8c57fc2446..ed44ae1c9cb87 100644 --- a/blockchains/ethereum/assets/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d/info.json +++ b/blockchains/ethereum/assets/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d/info.json @@ -1,5 +1,5 @@ { - "name": "MANTRA DAO", + "name": "MANTRA", "website": "http://mantradao.com", "description": "MANTRA DAO leverages the wisdom of the crowd to create a community-governed, transparent, and decentralized ecosystem for Web 3.0", "explorer": "https://etherscan.io/token/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d", @@ -15,8 +15,8 @@ "url": "https://github.com/Mantradao" }, { - "name": "twitter", - "url": "https://twitter.com/MANTRADAO" + "name": "x", + "url": "https://x.com/MANTRADAO" }, { "name": "telegram", @@ -30,5 +30,8 @@ "name": "coingecko", "url": "https://coingecko.com/en/coins/mantra-dao/" } + ], + "tags": [ + "governance" ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d/logo.png b/blockchains/ethereum/assets/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d/logo.png index 2a061ac5484a6..2c15abc9469bc 100644 Binary files a/blockchains/ethereum/assets/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d/logo.png and b/blockchains/ethereum/assets/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d/logo.png differ diff --git a/blockchains/ethereum/assets/0x3595e426A7808E2482667eE4E453ef280fbB9cF4/info.json b/blockchains/ethereum/assets/0x3595e426A7808E2482667eE4E453ef280fbB9cF4/info.json new file mode 100644 index 0000000000000..64bcb7734ba80 --- /dev/null +++ b/blockchains/ethereum/assets/0x3595e426A7808E2482667eE4E453ef280fbB9cF4/info.json @@ -0,0 +1,17 @@ +{ + "name": "Nose Candy", + "type": "ERC20", + "symbol": "COCAINE", + "decimals": 9, + "website": "https://nosecandy.io/", + "description": "Nose Candy - The worlds first DeFi project that runs on Snortonomics.", + "explorer": "https://etherscan.io/token/0x3595e426a7808e2482667ee4e453ef280fbb9cf4", + "status": "active", + "id": "0x3595e426A7808E2482667eE4E453ef280fbB9cF4", + "links": [ + { + "name": "x", + "url": "https://x.com/nosecandytoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3595e426A7808E2482667eE4E453ef280fbB9cF4/logo.png b/blockchains/ethereum/assets/0x3595e426A7808E2482667eE4E453ef280fbB9cF4/logo.png new file mode 100644 index 0000000000000..e23c036fd7e5d Binary files /dev/null and b/blockchains/ethereum/assets/0x3595e426A7808E2482667eE4E453ef280fbB9cF4/logo.png differ diff --git a/blockchains/ethereum/assets/0x362bc847A3a9637d3af6624EeC853618a43ed7D2/info.json b/blockchains/ethereum/assets/0x362bc847A3a9637d3af6624EeC853618a43ed7D2/info.json index 3ca822434b203..4d898c6b27a07 100644 --- a/blockchains/ethereum/assets/0x362bc847A3a9637d3af6624EeC853618a43ed7D2/info.json +++ b/blockchains/ethereum/assets/0x362bc847A3a9637d3af6624EeC853618a43ed7D2/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/parsiq_group" }, { - "name": "twitter", - "url": "https://twitter.com/parsiq_net" + "name": "x", + "url": "https://x.com/parsiq_net" }, { "name": "facebook", diff --git a/blockchains/ethereum/assets/0x3632DEa96A953C11dac2f00b4A05a32CD1063fAE/info.json b/blockchains/ethereum/assets/0x3632DEa96A953C11dac2f00b4A05a32CD1063fAE/info.json new file mode 100644 index 0000000000000..855e0dc16a2f6 --- /dev/null +++ b/blockchains/ethereum/assets/0x3632DEa96A953C11dac2f00b4A05a32CD1063fAE/info.json @@ -0,0 +1,24 @@ +{ + "name": "Circle Internet Group (Ondo)", + "website": "https://ondo.finance/", + "description": "CRCLon is the Ondo Tokenized version of Circle Internet Group, giving tokenholders economic exposure similar to holding CRCL and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x3632DEa96A953C11dac2f00b4A05a32CD1063fAE", + "type": "ERC20", + "symbol": "CRCLon", + "decimals": 18, + "status": "active", + "id": "0x3632DEa96A953C11dac2f00b4A05a32CD1063fAE", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/circle-internet-group-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3632DEa96A953C11dac2f00b4A05a32CD1063fAE/logo.png b/blockchains/ethereum/assets/0x3632DEa96A953C11dac2f00b4A05a32CD1063fAE/logo.png new file mode 100644 index 0000000000000..33b0bad3ab1e5 Binary files /dev/null and b/blockchains/ethereum/assets/0x3632DEa96A953C11dac2f00b4A05a32CD1063fAE/logo.png differ diff --git a/blockchains/ethereum/assets/0x364f210f430eC2448Fc68A49203040F6124096F0/info.json b/blockchains/ethereum/assets/0x364f210f430eC2448Fc68A49203040F6124096F0/info.json new file mode 100644 index 0000000000000..ed38b755b766c --- /dev/null +++ b/blockchains/ethereum/assets/0x364f210f430eC2448Fc68A49203040F6124096F0/info.json @@ -0,0 +1,24 @@ +{ + "name": "Coinbase tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Coinbase tokenized stock (xStock) (COINX) is a cryptocurrency and operates on the Solana platform. Coinbase tokenized stock (xStock) has a current supply of 11,999.99916158 with 6,000 in circulation. The last known price of Coinbase tokenized stock (xStock) is 327.47561557 USD and is up 1.69 over the last 24 hours. It is currently trading on 28 active market(s) with $5,223,607.28 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/coinbase-xstock.", + "explorer": "https://etherscan.io/token/0x364f210f430eC2448Fc68A49203040F6124096F0", + "type": "ERC20", + "symbol": "COINX", + "decimals": 18, + "status": "active", + "id": "0x364f210f430eC2448Fc68A49203040F6124096F0", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coinbase-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x364f210f430eC2448Fc68A49203040F6124096F0/logo.png b/blockchains/ethereum/assets/0x364f210f430eC2448Fc68A49203040F6124096F0/logo.png new file mode 100644 index 0000000000000..00db496af4511 Binary files /dev/null and b/blockchains/ethereum/assets/0x364f210f430eC2448Fc68A49203040F6124096F0/logo.png differ diff --git a/blockchains/ethereum/assets/0x36E3b8d9aAd0e51aC08E56a75A8f6005bF68535B/info.json b/blockchains/ethereum/assets/0x36E3b8d9aAd0e51aC08E56a75A8f6005bF68535B/info.json new file mode 100644 index 0000000000000..92c3b3ac90165 --- /dev/null +++ b/blockchains/ethereum/assets/0x36E3b8d9aAd0e51aC08E56a75A8f6005bF68535B/info.json @@ -0,0 +1,24 @@ +{ + "name": "Rocket Lab (Ondo Tokenized)", + "type": "ERC20", + "symbol": "RKLBon", + "decimals": 18, + "description": "RKLBon is the Ondo Tokenized version of Rocket Lab, giving tokenholders economic exposure similar to holding RKLB and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x36E3b8d9aAd0e51aC08E56a75A8f6005bF68535B", + "status": "active", + "id": "0x36E3b8d9aAd0e51aC08E56a75A8f6005bF68535B", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/rocket-lab-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x36E3b8d9aAd0e51aC08E56a75A8f6005bF68535B/logo.png b/blockchains/ethereum/assets/0x36E3b8d9aAd0e51aC08E56a75A8f6005bF68535B/logo.png new file mode 100644 index 0000000000000..38f63fa312de6 Binary files /dev/null and b/blockchains/ethereum/assets/0x36E3b8d9aAd0e51aC08E56a75A8f6005bF68535B/logo.png differ diff --git a/blockchains/ethereum/assets/0x36E45dcfE1d3d85A78c65c3baD4068dEE4f2a25e/info.json b/blockchains/ethereum/assets/0x36E45dcfE1d3d85A78c65c3baD4068dEE4f2a25e/info.json new file mode 100644 index 0000000000000..4cd29099d55b1 --- /dev/null +++ b/blockchains/ethereum/assets/0x36E45dcfE1d3d85A78c65c3baD4068dEE4f2a25e/info.json @@ -0,0 +1,21 @@ +{ + "name": "TRRUE", + "type": "ERC20", + "symbol": "TRRUE", + "decimals": 18, + "website": "https://www.trrue.io/", + "description": "Trrue is a pioneering blockchain ecosystem designed to empower impact-driven investments through cutting-edge technology and compliance-focused innovation.", + "explorer": "https://etherscan.io/token/0x36E45dcfE1d3d85A78c65c3baD4068dEE4f2a25e", + "status": "active", + "id": "0x36E45dcfE1d3d85A78c65c3baD4068dEE4f2a25e", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/trrue/" + }, + { + "name": "x", + "url": "https://x.com/percy_cto" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x36E45dcfE1d3d85A78c65c3baD4068dEE4f2a25e/logo.png b/blockchains/ethereum/assets/0x36E45dcfE1d3d85A78c65c3baD4068dEE4f2a25e/logo.png new file mode 100644 index 0000000000000..11fd738447a43 Binary files /dev/null and b/blockchains/ethereum/assets/0x36E45dcfE1d3d85A78c65c3baD4068dEE4f2a25e/logo.png differ diff --git a/blockchains/ethereum/assets/0x36E66fbBce51e4cD5bd3C62B637Eb411b18949D4/info.json b/blockchains/ethereum/assets/0x36E66fbBce51e4cD5bd3C62B637Eb411b18949D4/info.json new file mode 100644 index 0000000000000..4a800d7432f1c --- /dev/null +++ b/blockchains/ethereum/assets/0x36E66fbBce51e4cD5bd3C62B637Eb411b18949D4/info.json @@ -0,0 +1,21 @@ +{ + "name": "Omni Network", + "type": "ERC20", + "symbol": "OMNI", + "decimals": 18, + "website": "https://omni.network/", + "description": "Omni is an Ethereum-native interoperability protocol that establishes low latency communications across Ethereum’s rollup ecosystem. Restaking enables Omni to establish a new precedent for secure, performant, and globally compatible interoperability for the future of Ethereum’s modular ecosystem.", + "explorer": "https://etherscan.io/token/0x36e66fbbce51e4cd5bd3c62b637eb411b18949d4", + "status": "active", + "id": "0x36E66fbBce51e4cD5bd3C62B637Eb411b18949D4", + "links": [ + { + "name": "x", + "url": "https://x.com/OmniFDN" + }, + { + "name": "telegram", + "url": "https://t.me/OmniFDN" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x36E66fbBce51e4cD5bd3C62B637Eb411b18949D4/logo.png b/blockchains/ethereum/assets/0x36E66fbBce51e4cD5bd3C62B637Eb411b18949D4/logo.png new file mode 100644 index 0000000000000..8d222c96ce300 Binary files /dev/null and b/blockchains/ethereum/assets/0x36E66fbBce51e4cD5bd3C62B637Eb411b18949D4/logo.png differ diff --git a/blockchains/ethereum/assets/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e/info.json b/blockchains/ethereum/assets/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e/info.json new file mode 100644 index 0000000000000..aa4e9b538e2ba --- /dev/null +++ b/blockchains/ethereum/assets/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e/info.json @@ -0,0 +1,24 @@ +{ + "name": "PepsiCo tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Pepsico xStock (PEPx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. PEPx tracks the price of PepsiCo, Inc. (the underlying). PEPx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of PepsiCo, Inc., whilst maintaining the benefits of blockchain technology. PepsiCo is a multinational food and beverage corporation. PepsiCo offers a diverse portfolio of over 500 brands, including popular items like Pepsi, Lay's, Doritos, Gatorade, and Quaker Oats.", + "explorer": "https://etherscan.io/token/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e", + "type": "ERC20", + "symbol": "PEPX", + "decimals": 18, + "status": "active", + "id": "0x36c424a6EC0e264b1616102Ad63eD2aD7857413e", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pepsico-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e/logo.png b/blockchains/ethereum/assets/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e/logo.png new file mode 100644 index 0000000000000..c3916659a191e Binary files /dev/null and b/blockchains/ethereum/assets/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e/logo.png differ diff --git a/blockchains/ethereum/assets/0x37fE0f067FA808fFBDd12891C0858532CFE7361d/info.json b/blockchains/ethereum/assets/0x37fE0f067FA808fFBDd12891C0858532CFE7361d/info.json index 80c22c43a9fe7..5dfe8a33d6786 100644 --- a/blockchains/ethereum/assets/0x37fE0f067FA808fFBDd12891C0858532CFE7361d/info.json +++ b/blockchains/ethereum/assets/0x37fE0f067FA808fFBDd12891C0858532CFE7361d/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/sator-settler/civ-token" }, { - "name": "twitter", - "url": "https://twitter.com/token_civ" + "name": "x", + "url": "https://x.com/token_civ" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x37fc75DB437f47d09b7fa2D19BD2FD2bF41a7A89/info.json b/blockchains/ethereum/assets/0x37fc75DB437f47d09b7fa2D19BD2FD2bF41a7A89/info.json new file mode 100644 index 0000000000000..7c9ea8b422a79 --- /dev/null +++ b/blockchains/ethereum/assets/0x37fc75DB437f47d09b7fa2D19BD2FD2bF41a7A89/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT BullZilla", + "type": "ERC20", + "symbol": "HONEYPOT BullZilla", + "decimals": 9, + "website": "https://etherscan.io/address/0x37fc75DB437f47d09b7fa2D19BD2FD2bF41a7A89", + "description": "HONEYPOT BullZilla", + "explorer": "https://etherscan.io/token/0x37fc75DB437f47d09b7fa2D19BD2FD2bF41a7A89", + "status": "spam", + "id": "0x37fc75DB437f47d09b7fa2D19BD2FD2bF41a7A89" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3807562A482B824C08A564DFefcc471806d3E00a/info.json b/blockchains/ethereum/assets/0x3807562A482B824C08A564DFefcc471806d3E00a/info.json new file mode 100644 index 0000000000000..1431d8871f481 --- /dev/null +++ b/blockchains/ethereum/assets/0x3807562A482B824C08A564DFefcc471806d3E00a/info.json @@ -0,0 +1,24 @@ +{ + "name": "D-Wave Quantum (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "QBTSon is the Ondo Tokenized version of D-Wave Quantum, giving tokenholders economic exposure similar to holding QBTS and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x3807562a482b824c08a564dfefcc471806d3e00a", + "type": "ERC20", + "symbol": "QBTSon", + "decimals": 18, + "status": "active", + "id": "0x3807562A482B824C08A564DFefcc471806d3E00a", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/d-wave-quantum-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3807562A482B824C08A564DFefcc471806d3E00a/logo.png b/blockchains/ethereum/assets/0x3807562A482B824C08A564DFefcc471806d3E00a/logo.png new file mode 100644 index 0000000000000..3c65f718e9f9b Binary files /dev/null and b/blockchains/ethereum/assets/0x3807562A482B824C08A564DFefcc471806d3E00a/logo.png differ diff --git a/blockchains/ethereum/assets/0x382ea807A61a418479318Efd96F1EFbC5c1F2C21/info.json b/blockchains/ethereum/assets/0x382ea807A61a418479318Efd96F1EFbC5c1F2C21/info.json new file mode 100644 index 0000000000000..c3166839f72c9 --- /dev/null +++ b/blockchains/ethereum/assets/0x382ea807A61a418479318Efd96F1EFbC5c1F2C21/info.json @@ -0,0 +1,21 @@ +{ + "name": "pepe in a memes world", + "type": "ERC20", + "symbol": "PEW", + "decimals": 18, + "website": "https://www.pepeinamemesworld.com/", + "description": "Pepe in a Memes World 'Pepe in a Memes World' is a vibrant and humorous meme project that celebrates the iconic Pepe the Frog as he navigates through the whimsical and unpredictable universe of internet memes.", + "explorer": "https://etherscan.io/token/0x382ea807a61a418479318efd96f1efbc5c1f2c21", + "status": "active", + "id": "0x382ea807A61a418479318Efd96F1EFbC5c1F2C21", + "links": [ + { + "name": "x", + "url": "https://x.com/pewoneth" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pepe-in-a-memes-world/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x382ea807A61a418479318Efd96F1EFbC5c1F2C21/logo.png b/blockchains/ethereum/assets/0x382ea807A61a418479318Efd96F1EFbC5c1F2C21/logo.png new file mode 100644 index 0000000000000..633d498658230 Binary files /dev/null and b/blockchains/ethereum/assets/0x382ea807A61a418479318Efd96F1EFbC5c1F2C21/logo.png differ diff --git a/blockchains/ethereum/assets/0x384EFd1e8B05c23dC392a40cB4E515E2229a5243/info.json b/blockchains/ethereum/assets/0x384EFd1e8B05c23dC392a40cB4E515E2229a5243/info.json new file mode 100644 index 0000000000000..7e2e1ab029647 --- /dev/null +++ b/blockchains/ethereum/assets/0x384EFd1e8B05c23dC392a40cB4E515E2229a5243/info.json @@ -0,0 +1,21 @@ +{ + "name": "Healix AI", + "type": "ERC20", + "symbol": "HxAI", + "decimals": 9, + "website": "https://healixai.tech/", + "description": "Healix AI ($HxAI) is a DeSci-powered healthcare platform combining AI and blockchain to deliver personalized diagnostics, treatment plans, and wellness solutions. With a focus on privacy, innovation, and accessibility, Healix AI empowers users to take control of their health journey.", + "explorer": "https://etherscan.io/token/0x384efd1e8b05c23dc392a40cb4e515e2229a5243", + "status": "active", + "id": "0x384EFd1e8B05c23dC392a40cB4E515E2229a5243", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/healix-ai/" + }, + { + "name": "x", + "url": "https://x.com/Healix__AI" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x384EFd1e8B05c23dC392a40cB4E515E2229a5243/logo.png b/blockchains/ethereum/assets/0x384EFd1e8B05c23dC392a40cB4E515E2229a5243/logo.png new file mode 100644 index 0000000000000..632bfc06ad0a5 Binary files /dev/null and b/blockchains/ethereum/assets/0x384EFd1e8B05c23dC392a40cB4E515E2229a5243/logo.png differ diff --git a/blockchains/ethereum/assets/0x3859385363f7BB4Dfe42811cCF3F294FcD41dd1D/info.json b/blockchains/ethereum/assets/0x3859385363f7BB4Dfe42811cCF3F294FcD41dd1D/info.json new file mode 100644 index 0000000000000..1a551529d763e --- /dev/null +++ b/blockchains/ethereum/assets/0x3859385363f7BB4Dfe42811cCF3F294FcD41dd1D/info.json @@ -0,0 +1,24 @@ +{ + "name": "Abbott (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "ABTon is the Ondo Tokenized version of Abbott, giving tokenholders economic exposure similar to holding ABT and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x3859385363f7BB4Dfe42811cCF3F294FcD41dd1D", + "type": "ERC20", + "symbol": "ABTon", + "decimals": 18, + "status": "active", + "id": "0x3859385363f7BB4Dfe42811cCF3F294FcD41dd1D", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abbott-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3859385363f7BB4Dfe42811cCF3F294FcD41dd1D/logo.png b/blockchains/ethereum/assets/0x3859385363f7BB4Dfe42811cCF3F294FcD41dd1D/logo.png new file mode 100644 index 0000000000000..72a81c9f985d9 Binary files /dev/null and b/blockchains/ethereum/assets/0x3859385363f7BB4Dfe42811cCF3F294FcD41dd1D/logo.png differ diff --git a/blockchains/ethereum/assets/0x3883f5e181fccaF8410FA61e12b59BAd963fb645/info.json b/blockchains/ethereum/assets/0x3883f5e181fccaF8410FA61e12b59BAd963fb645/info.json index c9aecb96a527c..37197745e61ba 100644 --- a/blockchains/ethereum/assets/0x3883f5e181fccaF8410FA61e12b59BAd963fb645/info.json +++ b/blockchains/ethereum/assets/0x3883f5e181fccaF8410FA61e12b59BAd963fb645/info.json @@ -3,9 +3,9 @@ "type": "ERC20", "symbol": "THETA", "decimals": 18, - "website": "", - "description": "-", + "website": "https://www.thetatoken.org/", + "description": "--", "explorer": "https://etherscan.io/token/0x3883f5e181fccaf8410fa61e12b59bad963fb645", - "status": "active", + "status": "abandoned", "id": "0x3883f5e181fccaF8410FA61e12b59BAd963fb645" } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3883f5e181fccaF8410FA61e12b59BAd963fb645/logo.png b/blockchains/ethereum/assets/0x3883f5e181fccaF8410FA61e12b59BAd963fb645/logo.png deleted file mode 100644 index 4c6687735e296..0000000000000 Binary files a/blockchains/ethereum/assets/0x3883f5e181fccaF8410FA61e12b59BAd963fb645/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x389999216860AB8E0175387A0c90E5c52522C945/info.json b/blockchains/ethereum/assets/0x389999216860AB8E0175387A0c90E5c52522C945/info.json index 81c3dd01f910a..51cc7c17c5a59 100644 --- a/blockchains/ethereum/assets/0x389999216860AB8E0175387A0c90E5c52522C945/info.json +++ b/blockchains/ethereum/assets/0x389999216860AB8E0175387A0c90E5c52522C945/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/fegtoken" + "name": "x", + "url": "https://x.com/fegtoken" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x38BAC69cbBd28156796e4163B2B6dcb81E336565/info.json b/blockchains/ethereum/assets/0x38BAC69cbBd28156796e4163B2B6dcb81E336565/info.json new file mode 100644 index 0000000000000..432af3b98212b --- /dev/null +++ b/blockchains/ethereum/assets/0x38BAC69cbBd28156796e4163B2B6dcb81E336565/info.json @@ -0,0 +1,24 @@ +{ + "name": "Broadcom tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Broadcom xStock (AVGOx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. AVGOx tracks the price of Broadcom Inc. (the underlying). AVGOx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Broadcom Inc., whilst maintaining the benefits of blockchain technology. Key Benefits Broadcom Inc. is a global technology company that designs, develops, and supplies semiconductors and infrastructure software solutions, operating through two segments: Semiconductor Solutions and Infrastructure Software.", + "explorer": "https://etherscan.io/token/0x38BAC69cbBd28156796e4163B2B6dcb81E336565", + "type": "ERC20", + "symbol": "AVGOX", + "decimals": 18, + "status": "active", + "id": "0x38BAC69cbBd28156796e4163B2B6dcb81E336565", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/broadcom-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x38BAC69cbBd28156796e4163B2B6dcb81E336565/logo.png b/blockchains/ethereum/assets/0x38BAC69cbBd28156796e4163B2B6dcb81E336565/logo.png new file mode 100644 index 0000000000000..e437be046bd77 Binary files /dev/null and b/blockchains/ethereum/assets/0x38BAC69cbBd28156796e4163B2B6dcb81E336565/logo.png differ diff --git a/blockchains/ethereum/assets/0x38C2a4a7330b22788374B8Ff70BBa513C8D848cA/info.json b/blockchains/ethereum/assets/0x38C2a4a7330b22788374B8Ff70BBa513C8D848cA/info.json new file mode 100644 index 0000000000000..2483ec0fad8ab --- /dev/null +++ b/blockchains/ethereum/assets/0x38C2a4a7330b22788374B8Ff70BBa513C8D848cA/info.json @@ -0,0 +1,17 @@ +{ + "name": "Truflation", + "website": "https://truflation.com/", + "description": "Truflation leverages real-time, transparent financial data of over 13 million items to enhance the tokenization of real-world assets and support DeFi applications. It is a data infrastructure for diverse markets, facilitated by the Truflation Stream Network (TSN) and governed by the TRUF token.", + "explorer": "https://etherscan.io/token/0x38c2a4a7330b22788374b8ff70bba513c8d848ca", + "type": "ERC20", + "symbol": "TRUF", + "decimals": 18, + "status": "abandoned", + "id": "0x38C2a4a7330b22788374B8Ff70BBa513C8D848cA", + "links": [ + { + "name": "telegram", + "url": "https://t.me/truflation" + } + ] +} diff --git a/blockchains/ethereum/assets/0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6/info.json b/blockchains/ethereum/assets/0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6/info.json new file mode 100644 index 0000000000000..7663b75312712 --- /dev/null +++ b/blockchains/ethereum/assets/0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6/info.json @@ -0,0 +1,15 @@ +{ + "name": "Strategy PP Fixed xStock", + "type": "ERC20", + "symbol": "STRKx", + "decimals": 18, + "description": "Strategy PP Fixed xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://etherscan.io/token/0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6", + "status": "active", + "id": "0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6/logo.png b/blockchains/ethereum/assets/0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6/logo.png new file mode 100644 index 0000000000000..1407faeca0e8c Binary files /dev/null and b/blockchains/ethereum/assets/0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6/logo.png differ diff --git a/blockchains/ethereum/assets/0x38E68A37E401F7271568CecaAc63c6B1e19130B4/info.json b/blockchains/ethereum/assets/0x38E68A37E401F7271568CecaAc63c6B1e19130B4/info.json new file mode 100644 index 0000000000000..1489946223c92 --- /dev/null +++ b/blockchains/ethereum/assets/0x38E68A37E401F7271568CecaAc63c6B1e19130B4/info.json @@ -0,0 +1,25 @@ +{ + "name": "Banana", + "symbol": "BANANA", + "type": "ERC20", + "decimals": 18, + "description": "Banana Gun is a Telegram DEX Trading Bot, featuring: Auto Sniper, MEV-resistant swaps, Anti Rug & Re-org Protection.", + "website": "https://bananagun.io/", + "explorer": "https://etherscan.io/token/0x38e68a37e401f7271568cecaac63c6b1e19130b4", + "status": "active", + "id": "0x38E68A37E401F7271568CecaAc63c6B1e19130B4", + "links": [ + { + "name": "telegram", + "url": "https://t.me/Banana_Gun_Portal" + }, + { + "name": "x", + "url": "https://x.com/BananaGunBot" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/banana-gun/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x38E68A37E401F7271568CecaAc63c6B1e19130B4/logo.png b/blockchains/ethereum/assets/0x38E68A37E401F7271568CecaAc63c6B1e19130B4/logo.png new file mode 100644 index 0000000000000..f76637d764678 Binary files /dev/null and b/blockchains/ethereum/assets/0x38E68A37E401F7271568CecaAc63c6B1e19130B4/logo.png differ diff --git a/blockchains/ethereum/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json b/blockchains/ethereum/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json new file mode 100644 index 0000000000000..53a767d97abe8 --- /dev/null +++ b/blockchains/ethereum/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json @@ -0,0 +1,33 @@ +{ + "name": "Nya", + "type": "ERC20", + "symbol": "NYA", + "decimals": 18, + "website": "https://www.nya.vip", + "description": "Explore the cultural phenomenon of Nya - the playful cat sound that's become a symbol of joy and connection. Discover how this simple word unites fans worldwide.", + "explorer": "https://etherscan.io/token/0x38f9bf9dce51833ec7f03c9dc218197999999999", + "status": "active", + "id": "0x38F9bf9dCe51833Ec7f03C9dC218197999999999", + "links": [ + { + "name": "x", + "url": "https://x.com/NyaOnEarth" + }, + { + "name": "telegram", + "url": "https://t.me/NyaOnEarth" + }, + { + "name": "discord", + "url": "https://discord.com/invite/3V8gZFP5kb" + }, + { + "name": "docs", + "url": "https://wiki.nya.vip" + } + ], + "tags": [ + "memes", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png b/blockchains/ethereum/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png new file mode 100644 index 0000000000000..c34f31c6b2335 Binary files /dev/null and b/blockchains/ethereum/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png differ diff --git a/blockchains/ethereum/assets/0x38c4102D11893351cED7eF187fCF43D33eb1aBE6/info.json b/blockchains/ethereum/assets/0x38c4102D11893351cED7eF187fCF43D33eb1aBE6/info.json index b82e0b0d44154..583e158d80e66 100644 --- a/blockchains/ethereum/assets/0x38c4102D11893351cED7eF187fCF43D33eb1aBE6/info.json +++ b/blockchains/ethereum/assets/0x38c4102D11893351cED7eF187fCF43D33eb1aBE6/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/shrimp-finance/shrimp-protocol" }, { - "name": "twitter", - "url": "https://twitter.com/FinanceShrimp" + "name": "x", + "url": "https://x.com/FinanceShrimp" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x38e382F74dfb84608F3C1F10187f6bEf5951DE93/info.json b/blockchains/ethereum/assets/0x38e382F74dfb84608F3C1F10187f6bEf5951DE93/info.json new file mode 100644 index 0000000000000..a783b06482c31 --- /dev/null +++ b/blockchains/ethereum/assets/0x38e382F74dfb84608F3C1F10187f6bEf5951DE93/info.json @@ -0,0 +1,41 @@ +{ + "name": "MUBI", + "symbol": "MUBI", + "type": "ERC20", + "decimals": 18, + "website": "https://multibit.exchange/", + "description": "MultiBit is the first-ever dual-sided bridge designed for easy cross-network transfers between BRC20 and ERC20 tokens.", + "explorer": "https://etherscan.io/token/0x38e382f74dfb84608f3c1f10187f6bef5951de93", + "status": "active", + "id": "0x38e382F74dfb84608F3C1F10187f6bEf5951DE93", + "links": [ + { + "name": "github", + "url": "https://github.com/multibit-repo" + }, + { + "name": "x", + "url": "https://x.com/Multibit_Bridge" + }, + { + "name": "telegram", + "url": "https://t.me/multibitprotocol" + }, + { + "name": "medium", + "url": "https://medium.com/@Multibit_Bridge" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/multibit/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/multibit" + } + ], + "tags": [ + "wrapped", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x38e382F74dfb84608F3C1F10187f6bEf5951DE93/logo.png b/blockchains/ethereum/assets/0x38e382F74dfb84608F3C1F10187f6bEf5951DE93/logo.png new file mode 100644 index 0000000000000..9fa7dad0ee02f Binary files /dev/null and b/blockchains/ethereum/assets/0x38e382F74dfb84608F3C1F10187f6bEf5951DE93/logo.png differ diff --git a/blockchains/ethereum/assets/0x38e4adB44ef08F22F5B5b76A8f0c2d0dCbE7DcA1/info.json b/blockchains/ethereum/assets/0x38e4adB44ef08F22F5B5b76A8f0c2d0dCbE7DcA1/info.json index 41b9936115189..8a5bc0db400f4 100644 --- a/blockchains/ethereum/assets/0x38e4adB44ef08F22F5B5b76A8f0c2d0dCbE7DcA1/info.json +++ b/blockchains/ethereum/assets/0x38e4adB44ef08F22F5B5b76A8f0c2d0dCbE7DcA1/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/powerpool-finance" }, { - "name": "twitter", - "url": "https://twitter.com/powerpoolcvp" + "name": "x", + "url": "https://x.com/powerpoolcvp" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x391cF4b21F557c935C7f670218Ef42C21bd8d686/info.json b/blockchains/ethereum/assets/0x391cF4b21F557c935C7f670218Ef42C21bd8d686/info.json new file mode 100644 index 0000000000000..2acb1cb0623b2 --- /dev/null +++ b/blockchains/ethereum/assets/0x391cF4b21F557c935C7f670218Ef42C21bd8d686/info.json @@ -0,0 +1,21 @@ +{ + "name": "Morphware", + "type": "ERC20", + "symbol": "XMW", + "decimals": 18, + "website": "https://www.morphware.ai/", + "description": "Morphware is a project at the intersection of AI and Web3 that uses cheap renewable electricity to power large language models and cryptocurrency mining workloads. We aim to provide users access to open-source large language models at the lowest prices in the world.", + "explorer": "https://etherscan.io/token/0x391cf4b21f557c935c7f670218ef42c21bd8d686", + "status": "active", + "id": "0x391cF4b21F557c935C7f670218Ef42C21bd8d686", + "links": [ + { + "name": "x", + "url": "https://x.com/MorphwareAI" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/morphware/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x391cF4b21F557c935C7f670218Ef42C21bd8d686/logo.png b/blockchains/ethereum/assets/0x391cF4b21F557c935C7f670218Ef42C21bd8d686/logo.png new file mode 100644 index 0000000000000..54b5a8d703b8f Binary files /dev/null and b/blockchains/ethereum/assets/0x391cF4b21F557c935C7f670218Ef42C21bd8d686/logo.png differ diff --git a/blockchains/ethereum/assets/0x396eC402B42066864C406d1ac3bc86B575003ed8/info.json b/blockchains/ethereum/assets/0x396eC402B42066864C406d1ac3bc86B575003ed8/info.json new file mode 100644 index 0000000000000..f452f1994ce2e --- /dev/null +++ b/blockchains/ethereum/assets/0x396eC402B42066864C406d1ac3bc86B575003ed8/info.json @@ -0,0 +1,17 @@ +{ + "name": "BUY", + "type": "ERC20", + "symbol": "BUY", + "decimals": 2, + "website": "https://buying.com/", + "description": "Buying.com Prime Blockchain Protocol powered by the BUY token enables social group buying with minimum order quantity pricing, allowing direct consumer delivery from manufacturers, suppliers and wholesalers delivered directly to the consumers' doorsteps.", + "explorer": "https://etherscan.io/token/0x396ec402b42066864c406d1ac3bc86b575003ed8", + "status": "active", + "id": "0x396eC402B42066864C406d1ac3bc86B575003ed8", + "links": [ + { + "name": "x", + "url": "https://x.com/buying_com?lang=en" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x396eC402B42066864C406d1ac3bc86B575003ed8/logo.png b/blockchains/ethereum/assets/0x396eC402B42066864C406d1ac3bc86B575003ed8/logo.png new file mode 100644 index 0000000000000..418f5a81b859f Binary files /dev/null and b/blockchains/ethereum/assets/0x396eC402B42066864C406d1ac3bc86B575003ed8/logo.png differ diff --git a/blockchains/ethereum/assets/0x398f7f759380F3d309B9fC0E6cB3D36E0D67818d/info.json b/blockchains/ethereum/assets/0x398f7f759380F3d309B9fC0E6cB3D36E0D67818d/info.json new file mode 100644 index 0000000000000..073a6b153a4f5 --- /dev/null +++ b/blockchains/ethereum/assets/0x398f7f759380F3d309B9fC0E6cB3D36E0D67818d/info.json @@ -0,0 +1,28 @@ +{ + "name": "Trip.com Group (Ondo Tokenized)", + "type": "ERC20", + "symbol": "TCOMon", + "decimals": 18, + "description": "TCOMon is the Ondo Tokenized version of Trip.com Group, giving tokenholders economic exposure similar to holding TCOM and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x398f7f759380F3d309B9fC0E6cB3D36E0D67818d", + "status": "active", + "id": "0x398f7f759380F3d309B9fC0E6cB3D36E0D67818d", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/trip-com-group-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tripcom-group-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x398f7f759380F3d309B9fC0E6cB3D36E0D67818d/logo.png b/blockchains/ethereum/assets/0x398f7f759380F3d309B9fC0E6cB3D36E0D67818d/logo.png new file mode 100644 index 0000000000000..50ef2736a09fd Binary files /dev/null and b/blockchains/ethereum/assets/0x398f7f759380F3d309B9fC0E6cB3D36E0D67818d/logo.png differ diff --git a/blockchains/ethereum/assets/0x39930751d4569F7DD45d1bA46E82CD3680EC2e0a/info.json b/blockchains/ethereum/assets/0x39930751d4569F7DD45d1bA46E82CD3680EC2e0a/info.json new file mode 100644 index 0000000000000..536292bb40400 --- /dev/null +++ b/blockchains/ethereum/assets/0x39930751d4569F7DD45d1bA46E82CD3680EC2e0a/info.json @@ -0,0 +1,24 @@ +{ + "name": "Union Pacific Corporation (Ondo Tokenized)", + "type": "ERC20", + "symbol": "UNPon", + "decimals": 18, + "description": "UNPon is the Ondo Tokenized version of Union Pacific Corporation, giving tokenholders economic exposure similar to holding UNP and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x39930751d4569F7DD45d1bA46E82CD3680EC2e0a", + "status": "active", + "id": "0x39930751d4569F7DD45d1bA46E82CD3680EC2e0a", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/union-pacific-corporation-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x39930751d4569F7DD45d1bA46E82CD3680EC2e0a/logo.png b/blockchains/ethereum/assets/0x39930751d4569F7DD45d1bA46E82CD3680EC2e0a/logo.png new file mode 100644 index 0000000000000..0a03049a408b0 Binary files /dev/null and b/blockchains/ethereum/assets/0x39930751d4569F7DD45d1bA46E82CD3680EC2e0a/logo.png differ diff --git a/blockchains/ethereum/assets/0x39b46B212bDF15b42B166779b9d1787A68b9D0c3/info.json b/blockchains/ethereum/assets/0x39b46B212bDF15b42B166779b9d1787A68b9D0c3/info.json new file mode 100644 index 0000000000000..ee916f68ba903 --- /dev/null +++ b/blockchains/ethereum/assets/0x39b46B212bDF15b42B166779b9d1787A68b9D0c3/info.json @@ -0,0 +1,46 @@ +{ + "name": "Dypius", + "type": "ERC20", + "symbol": "DYP", + "decimals": 18, + "website": "https://www.dypius.com/", + "description": "Dypius is a powerful, decentralized ecosystem with a focus on scalability, security, and global adoption through next-gen infrastructure. We offer a variety of products and services that cater to both beginners and advanced users in the crypto space including DeFi solutions, analytical tools, NFTs, Metaverse and more!", + "explorer": "https://etherscan.io/token/0x39b46B212bDF15b42B166779b9d1787A68b9D0c3", + "status": "active", + "id": "0x39b46B212bDF15b42B166779b9d1787A68b9D0c3", + "links": [ + { + "name": "x", + "url": "https://x.com/dypius" + }, + { + "name": "github", + "url": "https://github.com/dypfinance/" + }, + { + "name": "medium", + "url": "https://dypius.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/defi-yield-protocol-v2/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dypius" + }, + { + "name": "discord", + "url": "https://discord.com/invite/worldofdypians" + }, + { + "name": "whitepaper", + "url": "https://drive.google.com/drive/folders/1PprliiDlNB6Cx-35eaEun-gmjk0-a1O4" + } + ], + "tags": [ + "governance", + "nft", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x39b46B212bDF15b42B166779b9d1787A68b9D0c3/logo.png b/blockchains/ethereum/assets/0x39b46B212bDF15b42B166779b9d1787A68b9D0c3/logo.png new file mode 100644 index 0000000000000..b86b0fca332ad Binary files /dev/null and b/blockchains/ethereum/assets/0x39b46B212bDF15b42B166779b9d1787A68b9D0c3/logo.png differ diff --git a/blockchains/ethereum/assets/0x3A4A0D5b8dfAcd651EE28ed4fFEBf91500345489/info.json b/blockchains/ethereum/assets/0x3A4A0D5b8dfAcd651EE28ed4fFEBf91500345489/info.json index 94dd0341130ca..c02f4c19a48ba 100644 --- a/blockchains/ethereum/assets/0x3A4A0D5b8dfAcd651EE28ed4fFEBf91500345489/info.json +++ b/blockchains/ethereum/assets/0x3A4A0D5b8dfAcd651EE28ed4fFEBf91500345489/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Filinomus/BerryX" }, { - "name": "twitter", - "url": "https://twitter.com/Polar berry" + "name": "x", + "url": "https://x.com/Polar berry" }, { "name": "facebook", diff --git a/blockchains/ethereum/assets/0x3A880652F47bFaa771908C07Dd8673A787dAEd3A/info.json b/blockchains/ethereum/assets/0x3A880652F47bFaa771908C07Dd8673A787dAEd3A/info.json index a44460aff7c95..851fb145d7312 100644 --- a/blockchains/ethereum/assets/0x3A880652F47bFaa771908C07Dd8673A787dAEd3A/info.json +++ b/blockchains/ethereum/assets/0x3A880652F47bFaa771908C07Dd8673A787dAEd3A/info.json @@ -14,8 +14,8 @@ "url": "https://gitlab.com/derivadex" }, { - "name": "twitter", - "url": "https://twitter.com/DDX_Official" + "name": "x", + "url": "https://x.com/DDX_Official" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x3A8cCCB969a61532d1E6005e2CE12C200caeCe87/info.json b/blockchains/ethereum/assets/0x3A8cCCB969a61532d1E6005e2CE12C200caeCe87/info.json index 1c11a7e3d493a..0e46e20b27541 100644 --- a/blockchains/ethereum/assets/0x3A8cCCB969a61532d1E6005e2CE12C200caeCe87/info.json +++ b/blockchains/ethereum/assets/0x3A8cCCB969a61532d1E6005e2CE12C200caeCe87/info.json @@ -10,8 +10,8 @@ "id": "0x3A8cCCB969a61532d1E6005e2CE12C200caeCe87", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TitanSwaporg" + "name": "x", + "url": "https://x.com/TitanSwaporg" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0x3B50805453023a91a8bf641e279401a0b23FA6F9/info.json b/blockchains/ethereum/assets/0x3B50805453023a91a8bf641e279401a0b23FA6F9/info.json new file mode 100644 index 0000000000000..99105d31738f4 --- /dev/null +++ b/blockchains/ethereum/assets/0x3B50805453023a91a8bf641e279401a0b23FA6F9/info.json @@ -0,0 +1,21 @@ +{ + "name": "Renzo", + "type": "ERC20", + "symbol": "REZ", + "decimals": 18, + "website": "https://renzoprotocol.com/", + "description": "Renzo is a Liquid Restaking Token and Strategy Manager for EigenLayer. It is the interface to the EigenLayer ecosystem securing Actively Validated Services and offering a higher yield than ETH staking. REZ is the Governance Token for the Renzo Protocol that is backed by Liquid Restaking Token ezETH.", + "explorer": "https://etherscan.io/token/0x3b50805453023a91a8bf641e279401a0b23fa6f9", + "status": "active", + "id": "0x3B50805453023a91a8bf641e279401a0b23FA6F9", + "links": [ + { + "name": "x", + "url": "https://x.com/RenzoProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/RenzoProtocolChat" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3B50805453023a91a8bf641e279401a0b23FA6F9/logo.png b/blockchains/ethereum/assets/0x3B50805453023a91a8bf641e279401a0b23FA6F9/logo.png new file mode 100644 index 0000000000000..ffdd952d0c8d1 Binary files /dev/null and b/blockchains/ethereum/assets/0x3B50805453023a91a8bf641e279401a0b23FA6F9/logo.png differ diff --git a/blockchains/ethereum/assets/0x3B604747ad1720C01ded0455728b62c0d2F100F0/info.json b/blockchains/ethereum/assets/0x3B604747ad1720C01ded0455728b62c0d2F100F0/info.json new file mode 100644 index 0000000000000..49595379d96d9 --- /dev/null +++ b/blockchains/ethereum/assets/0x3B604747ad1720C01ded0455728b62c0d2F100F0/info.json @@ -0,0 +1,25 @@ +{ + "name": "WAGMI GAMES", + "type": "ERC20", + "symbol": "WAGMIGAMES", + "decimals": 18, + "website": "https://www.wagmigame.io/", + "description": "WAGMI Defense is being developed as the Clash Royale of crypto with a futuristic twist. This epic aliens versus humans game is being built on unity as a browser based, mobile responsive game with plans to launch on IOS and Apple Store when it becomes crypto accepted.", + "explorer": "https://etherscan.io/token/0x3b604747ad1720c01ded0455728b62c0d2f100f0", + "status": "active", + "id": "0x3B604747ad1720C01ded0455728b62c0d2F100F0", + "links": [ + { + "name": "telegram", + "url": "https://t.me/WAGMIOfficialGroup" + }, + { + "name": "x", + "url": "https://x.com/wagmigameco" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wagmi-game-2/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3B604747ad1720C01ded0455728b62c0d2F100F0/logo.png b/blockchains/ethereum/assets/0x3B604747ad1720C01ded0455728b62c0d2F100F0/logo.png new file mode 100644 index 0000000000000..53ef7ec341eec Binary files /dev/null and b/blockchains/ethereum/assets/0x3B604747ad1720C01ded0455728b62c0d2F100F0/logo.png differ diff --git a/blockchains/ethereum/assets/0x3BE7bF1A5F23BD8336787D0289B70602f1940875/info.json b/blockchains/ethereum/assets/0x3BE7bF1A5F23BD8336787D0289B70602f1940875/info.json new file mode 100644 index 0000000000000..a01f61008a04d --- /dev/null +++ b/blockchains/ethereum/assets/0x3BE7bF1A5F23BD8336787D0289B70602f1940875/info.json @@ -0,0 +1,21 @@ +{ + "name": "VIDT DAO", + "website": "https://vidt-datalink.com/", + "description": "Organizations like Airbus, AmSpec, and IBM use VIDT to certify and secure digital documents like certificates, invoices, diplomas, and sensor-data. VIDT Datalink connects every cloud to every blockchain in a simple but strong formula, that adds and protects value at minimum expense and effort.", + "explorer": "https://etherscan.io/token/0x3be7bf1a5f23bd8336787d0289b70602f1940875", + "symbol": "VIDT", + "type": "ERC20", + "decimals": 18, + "status": "active", + "id": "0x3BE7bF1A5F23BD8336787D0289B70602f1940875", + "links": [ + { + "name": "x", + "url": "https://x.com/VIDT_DAO" + }, + { + "name": "telegram", + "url": "https://t.me/vidtoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3BE7bF1A5F23BD8336787D0289B70602f1940875/logo.png b/blockchains/ethereum/assets/0x3BE7bF1A5F23BD8336787D0289B70602f1940875/logo.png new file mode 100644 index 0000000000000..a5e32b5ae7c66 Binary files /dev/null and b/blockchains/ethereum/assets/0x3BE7bF1A5F23BD8336787D0289B70602f1940875/logo.png differ diff --git a/blockchains/ethereum/assets/0x3C2A309d9005433c1BC2C92EF1bE06489e5bf258/info.json b/blockchains/ethereum/assets/0x3C2A309d9005433c1BC2C92EF1bE06489e5bf258/info.json new file mode 100644 index 0000000000000..0241627687b3d --- /dev/null +++ b/blockchains/ethereum/assets/0x3C2A309d9005433c1BC2C92EF1bE06489e5bf258/info.json @@ -0,0 +1,17 @@ +{ + "name": "Paycoin", + "website": "https://payprotocol.io/", + "description": "PayProtocol is a simple and convenient cryptocurrency payment platform for both e-commerce and retail use. It is a cryptocurrency project supported by Danal, a payment company based in South Korea.", + "explorer": "https://etherscan.io/token/0x3C2A309d9005433c1BC2C92EF1bE06489e5bf258", + "type": "ERC20", + "symbol": "KNC", + "decimals": 8, + "status": "active", + "id": "0x3C2A309d9005433c1BC2C92EF1bE06489e5bf258", + "links": [ + { + "name": "x", + "url": "https://x.com/payprotocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3C2A309d9005433c1BC2C92EF1bE06489e5bf258/logo.png b/blockchains/ethereum/assets/0x3C2A309d9005433c1BC2C92EF1bE06489e5bf258/logo.png new file mode 100644 index 0000000000000..784abffb2f483 Binary files /dev/null and b/blockchains/ethereum/assets/0x3C2A309d9005433c1BC2C92EF1bE06489e5bf258/logo.png differ diff --git a/blockchains/ethereum/assets/0x3C4B6E6e1eA3D4863700D7F76b36B7f3D3f13E3d/info.json b/blockchains/ethereum/assets/0x3C4B6E6e1eA3D4863700D7F76b36B7f3D3f13E3d/info.json index 73c8e5e274f44..523b5f5814b98 100644 --- a/blockchains/ethereum/assets/0x3C4B6E6e1eA3D4863700D7F76b36B7f3D3f13E3d/info.json +++ b/blockchains/ethereum/assets/0x3C4B6E6e1eA3D4863700D7F76b36B7f3D3f13E3d/info.json @@ -14,8 +14,8 @@ "url": "https://investvoyager.com/blog/" }, { - "name": "twitter", - "url": "https://twitter.com/investvoyager" + "name": "x", + "url": "https://x.com/investvoyager" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0x3Cafdbfe682aec17d5acE2f97A2f3ab3dCf6a4A9/info.json b/blockchains/ethereum/assets/0x3Cafdbfe682aec17d5acE2f97A2f3ab3dCf6a4A9/info.json new file mode 100644 index 0000000000000..43ebfd0f89d64 --- /dev/null +++ b/blockchains/ethereum/assets/0x3Cafdbfe682aec17d5acE2f97A2f3ab3dCf6a4A9/info.json @@ -0,0 +1,24 @@ +{ + "name": "Taiwan Semiconductor Manufacturing (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "TSMon is the Ondo Tokenized version of Taiwan Semiconductor Manufacturing, giving tokenholders economic exposure similar to holding TSM and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x3Cafdbfe682aec17d5acE2f97A2f3ab3dCf6a4A9", + "type": "ERC20", + "symbol": "TSMon", + "decimals": 18, + "status": "active", + "id": "0x3Cafdbfe682aec17d5acE2f97A2f3ab3dCf6a4A9", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/taiwan-semiconductor-manufacturing-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3Cafdbfe682aec17d5acE2f97A2f3ab3dCf6a4A9/logo.png b/blockchains/ethereum/assets/0x3Cafdbfe682aec17d5acE2f97A2f3ab3dCf6a4A9/logo.png new file mode 100644 index 0000000000000..229a2857af77b Binary files /dev/null and b/blockchains/ethereum/assets/0x3Cafdbfe682aec17d5acE2f97A2f3ab3dCf6a4A9/logo.png differ diff --git a/blockchains/ethereum/assets/0x3D07c3161F355Cb9E5B524beF8d113c96e0263AB/info.json b/blockchains/ethereum/assets/0x3D07c3161F355Cb9E5B524beF8d113c96e0263AB/info.json new file mode 100644 index 0000000000000..245571bc31708 --- /dev/null +++ b/blockchains/ethereum/assets/0x3D07c3161F355Cb9E5B524beF8d113c96e0263AB/info.json @@ -0,0 +1,28 @@ +{ + "name": "Capital One (Ondo Tokenized)", + "type": "ERC20", + "symbol": "COFon", + "decimals": 18, + "description": "COFon is the Ondo Tokenized version of Capital One, giving tokenholders economic exposure similar to holding COF and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x3D07c3161F355Cb9E5B524beF8d113c96e0263AB", + "status": "active", + "id": "0x3D07c3161F355Cb9E5B524beF8d113c96e0263AB", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/capital-one-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/capital-one-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3D07c3161F355Cb9E5B524beF8d113c96e0263AB/logo.png b/blockchains/ethereum/assets/0x3D07c3161F355Cb9E5B524beF8d113c96e0263AB/logo.png new file mode 100644 index 0000000000000..b783120d5ca7e Binary files /dev/null and b/blockchains/ethereum/assets/0x3D07c3161F355Cb9E5B524beF8d113c96e0263AB/logo.png differ diff --git a/blockchains/ethereum/assets/0x3D382228C54736d831FAC2748F4734D9177c7332/info.json b/blockchains/ethereum/assets/0x3D382228C54736d831FAC2748F4734D9177c7332/info.json index 3c9e6f6fcdea2..70b5c7fe8c961 100644 --- a/blockchains/ethereum/assets/0x3D382228C54736d831FAC2748F4734D9177c7332/info.json +++ b/blockchains/ethereum/assets/0x3D382228C54736d831FAC2748F4734D9177c7332/info.json @@ -10,8 +10,8 @@ "id": "0x3D382228C54736d831FAC2748F4734D9177c7332", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ANIVERSE17" + "name": "x", + "url": "https://x.com/ANIVERSE17" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x3D7975EcCFc61a2102b08925CbBa0a4D4dBB6555/info.json b/blockchains/ethereum/assets/0x3D7975EcCFc61a2102b08925CbBa0a4D4dBB6555/info.json new file mode 100644 index 0000000000000..420c0fabbb7fb --- /dev/null +++ b/blockchains/ethereum/assets/0x3D7975EcCFc61a2102b08925CbBa0a4D4dBB6555/info.json @@ -0,0 +1,24 @@ +{ + "name": "Decentralized USD", + "symbol": "USDD (BTTC bridge)", + "type": "ERC20", + "decimals": 18, + "description": "USDD is a fully decentralized algorithmic stablecoin", + "website": "https://usdd.io/", + "explorer": "https://etherscan.io/token/0x3d7975eccfc61a2102b08925cbba0a4d4dbb6555", + "status": "active", + "id": "0x3D7975EcCFc61a2102b08925CbBa0a4D4dBB6555", + "links": [ + { + "name": "x", + "url": "https://x.com/usddio" + }, + { + "name": "whitepaper", + "url": "https://usdd.io/USDD-en.pdf" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0C10bF8FcB7Bf5412187A595ab97a3609160b5c6/logo.png b/blockchains/ethereum/assets/0x3D7975EcCFc61a2102b08925CbBa0a4D4dBB6555/logo.png similarity index 100% rename from blockchains/ethereum/assets/0x0C10bF8FcB7Bf5412187A595ab97a3609160b5c6/logo.png rename to blockchains/ethereum/assets/0x3D7975EcCFc61a2102b08925CbBa0a4D4dBB6555/logo.png diff --git a/blockchains/ethereum/assets/0x3Da932456D082CBa208FEB0B096d49b202Bf89c8/info.json b/blockchains/ethereum/assets/0x3Da932456D082CBa208FEB0B096d49b202Bf89c8/info.json new file mode 100644 index 0000000000000..447b08d9b8bc7 --- /dev/null +++ b/blockchains/ethereum/assets/0x3Da932456D082CBa208FEB0B096d49b202Bf89c8/info.json @@ -0,0 +1,17 @@ +{ + "name": "dego.finance", + "type": "ERC20", + "symbol": "DEGOV2", + "decimals": 18, + "website": "https://dego.finance/", + "description": "DEGO is governance token with total supply of 21,000,000 offered as air drop and liquidity pool reward for its participants in yield farming.", + "explorer": "https://etherscan.io/token/0x3da932456d082cba208feb0b096d49b202bf89c8", + "status": "active", + "id": "0x3Da932456D082CBa208FEB0B096d49b202Bf89c8", + "links": [ + { + "name": "x", + "url": "https://x.com/dego_finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3Da932456D082CBa208FEB0B096d49b202Bf89c8/logo.png b/blockchains/ethereum/assets/0x3Da932456D082CBa208FEB0B096d49b202Bf89c8/logo.png new file mode 100644 index 0000000000000..0949f84861771 Binary files /dev/null and b/blockchains/ethereum/assets/0x3Da932456D082CBa208FEB0B096d49b202Bf89c8/logo.png differ diff --git a/blockchains/ethereum/assets/0x3E5A19c91266aD8cE2477B91585d1856B84062dF/info.json b/blockchains/ethereum/assets/0x3E5A19c91266aD8cE2477B91585d1856B84062dF/info.json new file mode 100644 index 0000000000000..2118e1ab91117 --- /dev/null +++ b/blockchains/ethereum/assets/0x3E5A19c91266aD8cE2477B91585d1856B84062dF/info.json @@ -0,0 +1,25 @@ +{ + "name": "Ancient8", + "website": "https://ancient8.gg/", + "description": "Ancient8 builds Ethereum L2 for Gaming on OP Stack with Celestia Underneath, offering a suite of Web3 gaming infrastructure tools that serve as the distribution and marketing channel for games globally.", + "explorer": "https://etherscan.io/token/0x3E5A19c91266aD8cE2477B91585d1856B84062dF", + "type": "ERC20", + "symbol": "A8", + "decimals": 18, + "status": "active", + "id": "0x3E5A19c91266aD8cE2477B91585d1856B84062dF", + "links": [ + { + "name": "x", + "url": "https://x.com/Ancient8_gg" + }, + { + "name": "telegram", + "url": "https://t.me/ancient8_gg" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ancient8/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3E5A19c91266aD8cE2477B91585d1856B84062dF/logo.png b/blockchains/ethereum/assets/0x3E5A19c91266aD8cE2477B91585d1856B84062dF/logo.png new file mode 100644 index 0000000000000..236cc31f374c3 Binary files /dev/null and b/blockchains/ethereum/assets/0x3E5A19c91266aD8cE2477B91585d1856B84062dF/logo.png differ diff --git a/blockchains/ethereum/assets/0x3E9BC21C9b189C09dF3eF1B824798658d5011937/info.json b/blockchains/ethereum/assets/0x3E9BC21C9b189C09dF3eF1B824798658d5011937/info.json index da1f3c55f88b9..2f641b170206a 100644 --- a/blockchains/ethereum/assets/0x3E9BC21C9b189C09dF3eF1B824798658d5011937/info.json +++ b/blockchains/ethereum/assets/0x3E9BC21C9b189C09dF3eF1B824798658d5011937/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/Linear-finance/linear" }, { - "name": "twitter", - "url": "https://twitter.com/LinearFinance" + "name": "x", + "url": "https://x.com/LinearFinance" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149/info.json b/blockchains/ethereum/assets/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149/info.json new file mode 100644 index 0000000000000..423653651913f --- /dev/null +++ b/blockchains/ethereum/assets/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149/info.json @@ -0,0 +1,24 @@ +{ + "name": "Goldman Sachs tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Goldman Sachs xStock (GSx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. GSx tracks the price of The Goldman Sachs Group, Inc. (the underlying). GSx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of The Goldman Sachs Group, Inc., whilst maintaining the benefits of blockchain technology. Goldman Sachs is a leading global investment bank and wealth management firm. It provides a wide range of financial services to a diverse client base, including corporations, financial institutions, governments, and individuals.", + "explorer": "https://etherscan.io/token/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149", + "type": "ERC20", + "symbol": "GSX", + "decimals": 18, + "status": "active", + "id": "0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/goldman-sachs-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149/logo.png b/blockchains/ethereum/assets/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149/logo.png new file mode 100644 index 0000000000000..80b9ebb613a34 Binary files /dev/null and b/blockchains/ethereum/assets/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149/logo.png differ diff --git a/blockchains/ethereum/assets/0x3F09400313e83d53366147e3ea0e4e2279D80850/info.json b/blockchains/ethereum/assets/0x3F09400313e83d53366147e3ea0e4e2279D80850/info.json index c664c63626123..3591f5f8666f2 100644 --- a/blockchains/ethereum/assets/0x3F09400313e83d53366147e3ea0e4e2279D80850/info.json +++ b/blockchains/ethereum/assets/0x3F09400313e83d53366147e3ea0e4e2279D80850/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/KushFinance/" }, { - "name": "twitter", - "url": "https://twitter.com/KushFinance" + "name": "x", + "url": "https://x.com/KushFinance" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x3F382DbD960E3a9bbCeaE22651E88158d2791550/info.json b/blockchains/ethereum/assets/0x3F382DbD960E3a9bbCeaE22651E88158d2791550/info.json index 46dabcc9a8622..c896d98387579 100644 --- a/blockchains/ethereum/assets/0x3F382DbD960E3a9bbCeaE22651E88158d2791550/info.json +++ b/blockchains/ethereum/assets/0x3F382DbD960E3a9bbCeaE22651E88158d2791550/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/aavegotchi" }, { - "name": "twitter", - "url": "https://twitter.com/aavegotchi" + "name": "x", + "url": "https://x.com/aavegotchi" }, { "name": "coingecko", diff --git a/blockchains/ethereum/assets/0x3F66aE0c8E9Fb57f661aF4Ba8C8445D36ec5d7F7/info.json b/blockchains/ethereum/assets/0x3F66aE0c8E9Fb57f661aF4Ba8C8445D36ec5d7F7/info.json new file mode 100644 index 0000000000000..cbe1f5b25aa32 --- /dev/null +++ b/blockchains/ethereum/assets/0x3F66aE0c8E9Fb57f661aF4Ba8C8445D36ec5d7F7/info.json @@ -0,0 +1,21 @@ +{ + "name": "Cryptify AI", + "type": "ERC20", + "symbol": "CRAI", + "decimals": 18, + "website": "https://www.cryptify.ai/", + "description": "Cryptify AI is a platform designed to optimize influencer marketing by using AI and Big Data analytics.", + "explorer": "https://etherscan.io/token/0x3F66aE0c8E9Fb57f661aF4Ba8C8445D36ec5d7F7", + "status": "active", + "id": "0x3F66aE0c8E9Fb57f661aF4Ba8C8445D36ec5d7F7", + "links": [ + { + "name": "x", + "url": "https://x.com/Cryptifyai" + }, + { + "name": "telegram", + "url": "https://t.me/cryptifyai" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3F66aE0c8E9Fb57f661aF4Ba8C8445D36ec5d7F7/logo.png b/blockchains/ethereum/assets/0x3F66aE0c8E9Fb57f661aF4Ba8C8445D36ec5d7F7/logo.png new file mode 100644 index 0000000000000..1e727e0d538d2 Binary files /dev/null and b/blockchains/ethereum/assets/0x3F66aE0c8E9Fb57f661aF4Ba8C8445D36ec5d7F7/logo.png differ diff --git a/blockchains/ethereum/assets/0x3F7Aff0EF20AA2E646290DfA4E67611B2220C597/info.json b/blockchains/ethereum/assets/0x3F7Aff0EF20AA2E646290DfA4E67611B2220C597/info.json index 6d645a25268b2..be41c0c6f3a8c 100644 --- a/blockchains/ethereum/assets/0x3F7Aff0EF20AA2E646290DfA4E67611B2220C597/info.json +++ b/blockchains/ethereum/assets/0x3F7Aff0EF20AA2E646290DfA4E67611B2220C597/info.json @@ -10,8 +10,8 @@ "id": "0x3F7Aff0EF20AA2E646290DfA4E67611B2220C597", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VoltInuOfficial" + "name": "x", + "url": "https://x.com/VoltInuOfficial" }, { "name": "telegram", @@ -21,4 +21,4 @@ "tags": [ "memes" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3FAb0bBAa03BCEAF7C49E2b12877dB0142BE65FC/info.json b/blockchains/ethereum/assets/0x3FAb0bBAa03BCEAF7C49E2b12877dB0142BE65FC/info.json index 57903edd51b84..83443c49c2aea 100644 --- a/blockchains/ethereum/assets/0x3FAb0bBAa03BCEAF7C49E2b12877dB0142BE65FC/info.json +++ b/blockchains/ethereum/assets/0x3FAb0bBAa03BCEAF7C49E2b12877dB0142BE65FC/info.json @@ -10,8 +10,8 @@ "id": "0x3FAb0bBAa03BCEAF7C49E2b12877dB0142BE65FC", "links": [ { - "name": "twitter", - "url": "https://twitter.com/castellocoin" + "name": "x", + "url": "https://x.com/castellocoin" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0x3a16aF9Ef328D087cc781053A2a2a27549aE6768/info.json b/blockchains/ethereum/assets/0x3a16aF9Ef328D087cc781053A2a2a27549aE6768/info.json new file mode 100644 index 0000000000000..654f47b4e03fe --- /dev/null +++ b/blockchains/ethereum/assets/0x3a16aF9Ef328D087cc781053A2a2a27549aE6768/info.json @@ -0,0 +1,24 @@ +{ + "name": "Redwire (Ondo Tokenized)", + "type": "ERC20", + "symbol": "RDWon", + "decimals": 18, + "description": "RDWon is the Ondo Tokenized version of Redwire, giving tokenholders economic exposure similar to holding RDW and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x3a16aF9Ef328D087cc781053A2a2a27549aE6768", + "status": "active", + "id": "0x3a16aF9Ef328D087cc781053A2a2a27549aE6768", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/redwire-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3a16aF9Ef328D087cc781053A2a2a27549aE6768/logo.png b/blockchains/ethereum/assets/0x3a16aF9Ef328D087cc781053A2a2a27549aE6768/logo.png new file mode 100644 index 0000000000000..d2742f944fd52 Binary files /dev/null and b/blockchains/ethereum/assets/0x3a16aF9Ef328D087cc781053A2a2a27549aE6768/logo.png differ diff --git a/blockchains/ethereum/assets/0x3b484b82567a09e2588A13D54D032153f0c0aEe0/info.json b/blockchains/ethereum/assets/0x3b484b82567a09e2588A13D54D032153f0c0aEe0/info.json index 3c69e0bc7f182..3bceeffcbacfa 100644 --- a/blockchains/ethereum/assets/0x3b484b82567a09e2588A13D54D032153f0c0aEe0/info.json +++ b/blockchains/ethereum/assets/0x3b484b82567a09e2588A13D54D032153f0c0aEe0/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/The_OpenDAO" + "name": "x", + "url": "https://x.com/The_OpenDAO" }, { "name": "coingecko", @@ -25,4 +25,4 @@ "url": "https://discord.com/invite/zzzKhejARz" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3b4cAAAF6F3ce5Bee2871C89987cbd825Ac30822/info.json b/blockchains/ethereum/assets/0x3b4cAAAF6F3ce5Bee2871C89987cbd825Ac30822/info.json index a49468e86eeba..5fe98108a7a85 100644 --- a/blockchains/ethereum/assets/0x3b4cAAAF6F3ce5Bee2871C89987cbd825Ac30822/info.json +++ b/blockchains/ethereum/assets/0x3b4cAAAF6F3ce5Bee2871C89987cbd825Ac30822/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Ofinio/Ofin.io" }, { - "name": "twitter", - "url": "https://twitter.com/OfinProtocol" + "name": "x", + "url": "https://x.com/OfinProtocol" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x3b4f7CB9e60362A49dD04EB0091A374d340E3EfD/info.json b/blockchains/ethereum/assets/0x3b4f7CB9e60362A49dD04EB0091A374d340E3EfD/info.json index 6160f1323ecbd..ad4be4c5fc06e 100644 --- a/blockchains/ethereum/assets/0x3b4f7CB9e60362A49dD04EB0091A374d340E3EfD/info.json +++ b/blockchains/ethereum/assets/0x3b4f7CB9e60362A49dD04EB0091A374d340E3EfD/info.json @@ -10,8 +10,8 @@ "id": "0x3b4f7CB9e60362A49dD04EB0091A374d340E3EfD", "links": [ { - "name": "twitter", - "url": "https://twitter.com/itamgames" + "name": "x", + "url": "https://x.com/itamgames" }, { "name": "medium", diff --git a/blockchains/ethereum/assets/0x3b544e6fcf6C8dCE9D8B45A4FdF21C9B02f9fDa9/info.json b/blockchains/ethereum/assets/0x3b544e6fcf6C8dCE9D8B45A4FdF21C9B02f9fDa9/info.json index 22b203a2f30c2..02c68f501b5d5 100644 --- a/blockchains/ethereum/assets/0x3b544e6fcf6C8dCE9D8B45A4FdF21C9B02f9fDa9/info.json +++ b/blockchains/ethereum/assets/0x3b544e6fcf6C8dCE9D8B45A4FdF21C9B02f9fDa9/info.json @@ -10,8 +10,8 @@ "id": "0x3b544e6fcf6C8dCE9D8B45A4FdF21C9B02f9fDa9", "links": [ { - "name": "twitter", - "url": "https://twitter.com/giftedhandsGHD" + "name": "x", + "url": "https://x.com/giftedhandsGHD" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x3b62F3820e0B035cc4aD602dECe6d796BC325325/info.json b/blockchains/ethereum/assets/0x3b62F3820e0B035cc4aD602dECe6d796BC325325/info.json index 49d0429a04a60..4ce8cc2c8af5d 100644 --- a/blockchains/ethereum/assets/0x3b62F3820e0B035cc4aD602dECe6d796BC325325/info.json +++ b/blockchains/ethereum/assets/0x3b62F3820e0B035cc4aD602dECe6d796BC325325/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/deusfinance" }, { - "name": "twitter", - "url": "https://twitter.com/DeusDao" + "name": "x", + "url": "https://x.com/DeusDao" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x3b991130eaE3CcA364406D718DA22FA1C3E7C256/info.json b/blockchains/ethereum/assets/0x3b991130eaE3CcA364406D718DA22FA1C3E7C256/info.json new file mode 100644 index 0000000000000..2a964b93562ca --- /dev/null +++ b/blockchains/ethereum/assets/0x3b991130eaE3CcA364406D718DA22FA1C3E7C256/info.json @@ -0,0 +1,24 @@ +{ + "name": "Shrub", + "website": "http://shrub.io", + "description": "The internet’s hedgehog mascot. A community-driven project with fun, memes, and good vibes.", + "explorer": "https://etherscan.io/token/0x3b991130eaE3CcA364406D718DA22FA1C3E7C256", + "type": "ERC20", + "symbol": "SHRUB", + "decimals": 18, + "status": "active", + "id": "0x3b991130eaE3CcA364406D718DA22FA1C3E7C256", + "tags": [ + "memes" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ShrubHQ" + }, + { + "name": "telegram", + "url": "https://t.me/shrubthehedgehog" + } + ] +} diff --git a/blockchains/ethereum/assets/0x3b991130eaE3CcA364406D718DA22FA1C3E7C256/logo.png b/blockchains/ethereum/assets/0x3b991130eaE3CcA364406D718DA22FA1C3E7C256/logo.png new file mode 100644 index 0000000000000..4f7573f311ea8 Binary files /dev/null and b/blockchains/ethereum/assets/0x3b991130eaE3CcA364406D718DA22FA1C3E7C256/logo.png differ diff --git a/blockchains/ethereum/assets/0x3bd7d4F524D09F4e331577247A048D56e4b67a7F/info.json b/blockchains/ethereum/assets/0x3bd7d4F524D09F4e331577247A048D56e4b67a7F/info.json new file mode 100644 index 0000000000000..4fda4900095e0 --- /dev/null +++ b/blockchains/ethereum/assets/0x3bd7d4F524D09F4e331577247A048D56e4b67a7F/info.json @@ -0,0 +1,25 @@ +{ + "name": "5ire", + "website": "https://www.5ire.org/", + "description": "5ire is an EVM-compatible sustainability-oriented smart contract platform that focuses on developing a sustainable and for-benefit ecosystem based on the UN SDGs. To enable this, our goal is to build a computing platform that promotes and advocates these activities to achieve the goals.", + "explorer": "https://etherscan.io/token/0x3bd7d4F524D09F4e331577247A048D56e4b67a7F", + "type": "ERC20", + "symbol": "5IRE", + "decimals": 18, + "status": "active", + "id": "0x3bd7d4F524D09F4e331577247A048D56e4b67a7F", + "links": [ + { + "name": "x", + "url": "https://x.com/5ireChain" + }, + { + "name": "telegram", + "url": "https://t.me/OfficialFireChain" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/5ire/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3bd7d4F524D09F4e331577247A048D56e4b67a7F/logo.png b/blockchains/ethereum/assets/0x3bd7d4F524D09F4e331577247A048D56e4b67a7F/logo.png new file mode 100644 index 0000000000000..e8d41c63ccbe8 Binary files /dev/null and b/blockchains/ethereum/assets/0x3bd7d4F524D09F4e331577247A048D56e4b67a7F/logo.png differ diff --git a/blockchains/ethereum/assets/0x3c3a81e81dc49A522A592e7622A7E711c06bf354/info.json b/blockchains/ethereum/assets/0x3c3a81e81dc49A522A592e7622A7E711c06bf354/info.json new file mode 100644 index 0000000000000..8132ca0f415f1 --- /dev/null +++ b/blockchains/ethereum/assets/0x3c3a81e81dc49A522A592e7622A7E711c06bf354/info.json @@ -0,0 +1,21 @@ +{ + "name": "Mantle", + "type": "ERC20", + "symbol": "MNT", + "decimals": 18, + "website": "https://www.mantle.xyz/", + "description": "Mantle is a DAO-led web3 ecosystem whose goal is the mass adoption of decentralized and token-governed technologies. It comprises Mantle products such as Mantle Network, Mantle Governance (DAO), and Mantle Treasury. Mantle token ($MNT) is the unified product and governance token of the ecosystem.", + "explorer": "https://etherscan.io/token/0x3c3a81e81dc49a522a592e7622a7e711c06bf354", + "status": "active", + "id": "0x3c3a81e81dc49A522A592e7622A7E711c06bf354", + "links": [ + { + "name": "x", + "url": "https://x.com/0xMantle" + }, + { + "name": "telegram", + "url": "https://t.me/mantlenetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3c3a81e81dc49A522A592e7622A7E711c06bf354/logo.png b/blockchains/ethereum/assets/0x3c3a81e81dc49A522A592e7622A7E711c06bf354/logo.png new file mode 100644 index 0000000000000..d9721da402f65 Binary files /dev/null and b/blockchains/ethereum/assets/0x3c3a81e81dc49A522A592e7622A7E711c06bf354/logo.png differ diff --git a/blockchains/ethereum/assets/0x3cE219D498D807317F840f4CB0f03FA27dd65046/info.json b/blockchains/ethereum/assets/0x3cE219D498D807317F840f4CB0f03FA27dd65046/info.json new file mode 100644 index 0000000000000..7b5196c3cd339 --- /dev/null +++ b/blockchains/ethereum/assets/0x3cE219D498D807317F840f4CB0f03FA27dd65046/info.json @@ -0,0 +1,24 @@ +{ + "name": "PepsiCo (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "PEPon is the Ondo Tokenized version of PepsiCo, giving tokenholders economic exposure similar to holding PEP and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x3cE219D498D807317F840f4CB0f03FA27dd65046", + "type": "ERC20", + "symbol": "PEPon", + "decimals": 18, + "status": "active", + "id": "0x3cE219D498D807317F840f4CB0f03FA27dd65046", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pepsico-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3cE219D498D807317F840f4CB0f03FA27dd65046/logo.png b/blockchains/ethereum/assets/0x3cE219D498D807317F840f4CB0f03FA27dd65046/logo.png new file mode 100644 index 0000000000000..7ae0be2e7bbe7 Binary files /dev/null and b/blockchains/ethereum/assets/0x3cE219D498D807317F840f4CB0f03FA27dd65046/logo.png differ diff --git a/blockchains/ethereum/assets/0x3d1cF8692A6f2Fc9048A9cc1A06aBF77F3465f0a/info.json b/blockchains/ethereum/assets/0x3d1cF8692A6f2Fc9048A9cc1A06aBF77F3465f0a/info.json new file mode 100644 index 0000000000000..551f746691817 --- /dev/null +++ b/blockchains/ethereum/assets/0x3d1cF8692A6f2Fc9048A9cc1A06aBF77F3465f0a/info.json @@ -0,0 +1,28 @@ +{ + "name": "NetEase (Ondo Tokenized)", + "type": "ERC20", + "symbol": "NTESon", + "decimals": 18, + "description": "NTESon is the Ondo Tokenized version of NetEase, giving tokenholders economic exposure similar to holding NTES and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x3d1cF8692A6f2Fc9048A9cc1A06aBF77F3465f0a", + "status": "active", + "id": "0x3d1cF8692A6f2Fc9048A9cc1A06aBF77F3465f0a", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/netease-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/netease-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3d1cF8692A6f2Fc9048A9cc1A06aBF77F3465f0a/logo.png b/blockchains/ethereum/assets/0x3d1cF8692A6f2Fc9048A9cc1A06aBF77F3465f0a/logo.png new file mode 100644 index 0000000000000..418ef4def3a2f Binary files /dev/null and b/blockchains/ethereum/assets/0x3d1cF8692A6f2Fc9048A9cc1A06aBF77F3465f0a/logo.png differ diff --git a/blockchains/ethereum/assets/0x3fFEea07a27Fab7ad1df5297fa75e77a43CB5790/info.json b/blockchains/ethereum/assets/0x3fFEea07a27Fab7ad1df5297fa75e77a43CB5790/info.json new file mode 100644 index 0000000000000..692bc489d7b44 --- /dev/null +++ b/blockchains/ethereum/assets/0x3fFEea07a27Fab7ad1df5297fa75e77a43CB5790/info.json @@ -0,0 +1,28 @@ +{ + "name": "PeiPei", + "type": "ERC20", + "symbol": "PEIPEI", + "decimals": 18, + "website": "https://peipeicoin.vip", + "description": "PEIPEI Token combines the iconic Pepe meme with the enchanting essence of Asian culture, offering a refreshing and captivating digital experience.", + "explorer": "https://etherscan.io/token/0x3ffeea07a27fab7ad1df5297fa75e77a43cb5790", + "status": "active", + "id": "0x3fFEea07a27Fab7ad1df5297fa75e77a43CB5790", + "links": [ + { + "name": "telegram", + "url": "https://t.me/peipeicoinerc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/peipei-coin/#Markets" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/peipeicoin-vip" + } + ], + "tags": [ + "memes" + ] +} diff --git a/blockchains/ethereum/assets/0x3fFEea07a27Fab7ad1df5297fa75e77a43CB5790/logo.png b/blockchains/ethereum/assets/0x3fFEea07a27Fab7ad1df5297fa75e77a43CB5790/logo.png new file mode 100644 index 0000000000000..5dcfe7964a7b6 Binary files /dev/null and b/blockchains/ethereum/assets/0x3fFEea07a27Fab7ad1df5297fa75e77a43CB5790/logo.png differ diff --git a/blockchains/ethereum/assets/0x408e41876cCCDC0F92210600ef50372656052a38/info.json b/blockchains/ethereum/assets/0x408e41876cCCDC0F92210600ef50372656052a38/info.json index 99921efdeb053..01212dc867e01 100644 --- a/blockchains/ethereum/assets/0x408e41876cCCDC0F92210600ef50372656052a38/info.json +++ b/blockchains/ethereum/assets/0x408e41876cCCDC0F92210600ef50372656052a38/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/renproject" }, { - "name": "twitter", - "url": "https://twitter.com/renprotocol" + "name": "x", + "url": "https://x.com/renprotocol" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f/info.json b/blockchains/ethereum/assets/0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f/info.json new file mode 100644 index 0000000000000..11696f78f7894 --- /dev/null +++ b/blockchains/ethereum/assets/0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f/info.json @@ -0,0 +1,21 @@ +{ + "name": "Gho", + "website": "https://gho.xyz/", + "description": "GHO is a native decentralized, overcollateralized digital asset pegged to USD.", + "explorer": "https://etherscan.io/token/0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f", + "type": "ERC20", + "symbol": "GHO", + "decimals": 18, + "status": "active", + "id": "0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f", + "links": [ + { + "name": "x", + "url": "https://x.com/GHOAave" + }, + { + "name": "github", + "url": "https://github.com/aave/gho-core/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f/logo.png b/blockchains/ethereum/assets/0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f/logo.png new file mode 100644 index 0000000000000..ff0877b424ba7 Binary files /dev/null and b/blockchains/ethereum/assets/0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f/logo.png differ diff --git a/blockchains/ethereum/assets/0x40FD72257597aA14C7231A7B1aaa29Fce868F677/info.json b/blockchains/ethereum/assets/0x40FD72257597aA14C7231A7B1aaa29Fce868F677/info.json index 4e1b6efebdf08..ebb00343347a5 100644 --- a/blockchains/ethereum/assets/0x40FD72257597aA14C7231A7B1aaa29Fce868F677/info.json +++ b/blockchains/ethereum/assets/0x40FD72257597aA14C7231A7B1aaa29Fce868F677/info.json @@ -10,8 +10,8 @@ "id": "0x40FD72257597aA14C7231A7B1aaa29Fce868F677", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Sora" + "name": "x", + "url": "https://x.com/Sora" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x411099C0b413f4fedDb10Edf6a8be63BD321311C/info.json b/blockchains/ethereum/assets/0x411099C0b413f4fedDb10Edf6a8be63BD321311C/info.json new file mode 100644 index 0000000000000..439ca0a78cdcc --- /dev/null +++ b/blockchains/ethereum/assets/0x411099C0b413f4fedDb10Edf6a8be63BD321311C/info.json @@ -0,0 +1,52 @@ +{ + "name": "HELLO", + "type": "ERC20", + "symbol": "HELLO", + "decimals": 18, + "website": "https://www.hello.one/", + "description": "HELLO Labs is the future of crypto and entertainment creating TV shows, games, NFTs and much more. The ecosystem is built on the HELLO Token allowing exclusive access to watch our shows, play our games and own our NFTs.", + "explorer": "https://etherscan.io/token/0x411099C0b413f4fedDb10Edf6a8be63BD321311C", + "status": "active", + "id": "0x411099C0b413f4fedDb10Edf6a8be63BD321311C", + "links": [ + { + "name": "x", + "url": "https://x.com/thehellolabs" + }, + { + "name": "github", + "url": "https://github.com/Hello1Official" + }, + { + "name": "telegram", + "url": "https://t.me/HELLOLabs" + }, + { + "name": "blog", + "url": "https://www.hello.one/news" + }, + { + "name": "discord", + "url": "https://discord.com/hellolabs" + }, + { + "name": "medium", + "url": "https://helloclub.medium.com" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/HELLOLabs" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hello-labs/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hello" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x411099C0b413f4fedDb10Edf6a8be63BD321311C/logo.png b/blockchains/ethereum/assets/0x411099C0b413f4fedDb10Edf6a8be63BD321311C/logo.png new file mode 100644 index 0000000000000..fedfcf6cb0277 Binary files /dev/null and b/blockchains/ethereum/assets/0x411099C0b413f4fedDb10Edf6a8be63BD321311C/logo.png differ diff --git a/blockchains/ethereum/assets/0x4111b60bc87F2Bd1e81E783E271D7F0ec6EE088B/info.json b/blockchains/ethereum/assets/0x4111b60bc87F2Bd1e81E783E271D7F0ec6EE088B/info.json new file mode 100644 index 0000000000000..ecd7c104e2087 --- /dev/null +++ b/blockchains/ethereum/assets/0x4111b60bc87F2Bd1e81E783E271D7F0ec6EE088B/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares MSCI EAFE (Ondo)", + "website": "https://ondo.finance/", + "description": "EFAon is the Ondo Tokenized version of the iShares MSCI EAFE ETF, giving tokenholders economic exposure similar to holding EFA and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x4111b60bc87F2Bd1e81E783E271D7F0ec6EE088B", + "type": "ERC20", + "symbol": "EFAon", + "decimals": 18, + "status": "active", + "id": "0x4111b60bc87F2Bd1e81E783E271D7F0ec6EE088B", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-msci-eafe-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4111b60bc87F2Bd1e81E783E271D7F0ec6EE088B/logo.png b/blockchains/ethereum/assets/0x4111b60bc87F2Bd1e81E783E271D7F0ec6EE088B/logo.png new file mode 100644 index 0000000000000..8adf578853fa6 Binary files /dev/null and b/blockchains/ethereum/assets/0x4111b60bc87F2Bd1e81E783E271D7F0ec6EE088B/logo.png differ diff --git a/blockchains/ethereum/assets/0x4116f14b6d462B32a1C10F98049E4B1765e34FA9/info.json b/blockchains/ethereum/assets/0x4116f14b6d462B32a1C10F98049E4B1765e34FA9/info.json new file mode 100644 index 0000000000000..1b41dfb16fd16 --- /dev/null +++ b/blockchains/ethereum/assets/0x4116f14b6d462B32a1C10F98049E4B1765e34FA9/info.json @@ -0,0 +1,48 @@ +{ + "name": "dotmoovs", + "type": "ERC20", + "symbol": "MOOV", + "website": "https://www.dotmoovs.com/", + "description": "dotmoovs is leading the way in AI Human Biomechanics, pioneering advancements in critical areas such sports, smart cities, and healthcare sectors. Our platform capitalizes on the importance of Human Movement. With a B2B API and a user friendly mobile app, our project is designed to attract all audiences, both users and companies.", + "explorer": "https://etherscan.io/token/0x4116f14b6d462B32a1C10F98049E4B1765e34FA9", + "decimals": 18, + "status": "active", + "id": "0x4116f14b6d462B32a1C10F98049E4B1765e34FA9", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dotmoovs" + }, + { + "name": "x", + "url": "https://x.com/dotmoovs" + }, + { + "name": "telegram", + "url": "https://t.me/dotmoovs" + }, + { + "name": "telegram_news", + "url": "https://t.me/dotmoovs_announcements" + }, + { + "name": "medium", + "url": "https://dotmoovs.medium.com" + }, + { + "name": "github", + "url": "https://github.com/dotmoovss" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/dotmoovs" + } + ], + "tags": [ + "nft", + "governance", + "defi", + "staking", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4116f14b6d462B32a1C10F98049E4B1765e34FA9/logo.png b/blockchains/ethereum/assets/0x4116f14b6d462B32a1C10F98049E4B1765e34FA9/logo.png new file mode 100644 index 0000000000000..e0fb5c3e196bd Binary files /dev/null and b/blockchains/ethereum/assets/0x4116f14b6d462B32a1C10F98049E4B1765e34FA9/logo.png differ diff --git a/blockchains/ethereum/assets/0x4123a133ae3c521FD134D7b13A2dEC35b56c2463/info.json b/blockchains/ethereum/assets/0x4123a133ae3c521FD134D7b13A2dEC35b56c2463/info.json index 9274bd6ef4585..7061366c4257d 100644 --- a/blockchains/ethereum/assets/0x4123a133ae3c521FD134D7b13A2dEC35b56c2463/info.json +++ b/blockchains/ethereum/assets/0x4123a133ae3c521FD134D7b13A2dEC35b56c2463/info.json @@ -1,33 +1,33 @@ { - "name": "Qredo", + "name": "Open Custody Protocol", "type": "ERC20", - "symbol": "QRDO", + "symbol": "OPEN", "decimals": 8, - "website": "https://qredo.com/", - "description": "Qredo is a blockchain infrastructure that delivers interoperability, fast settlement, and decentralized custody.", + "website": "https://opencustody.org/", + "description": "Open Custody Protocol brings an omnichain primitive for modular custody.", "explorer": "https://etherscan.io/token/0x4123a133ae3c521fd134d7b13a2dec35b56c2463", "status": "active", "id": "0x4123a133ae3c521FD134D7b13A2dEC35b56c2463", "links": [ { - "name": "twitter", - "url": "https://twitter.com/QredoNetwork" + "name": "x", + "url": "https://x.com/opencustody" }, { "name": "telegram", - "url": "https://t.me/QredoNetwork" + "url": "https://t.me/OpenCustody" }, { "name": "telegram_news", - "url": "https://t.me/qredoannouncements" + "url": "https://t.me/OpenCustody_News" }, { "name": "whitepaper", - "url": "https://qredo.com/qredo-white-paper" + "url": "https://docs.opencustody.org/" }, { "name": "youtube", - "url": "https://youtube.com/c/qredonetwork" + "url": "https://youtube.com/channel/UCyMjpYXfzkam99yuPDiaqmQ" }, { "name": "coingecko", @@ -39,7 +39,7 @@ }, { "name": "blog", - "url": "https://qredo.com/media-center" + "url": "https://opencustody.org/blog" }, { "name": "discord", @@ -47,7 +47,10 @@ }, { "name": "docs", - "url": "https://support.qredo.com/" + "url": "https://docs.opencustody.org/" } + ], + "tags": [ + "defi" ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4123a133ae3c521FD134D7b13A2dEC35b56c2463/logo.png b/blockchains/ethereum/assets/0x4123a133ae3c521FD134D7b13A2dEC35b56c2463/logo.png index fac9b363cfd8b..40886038fdc7d 100644 Binary files a/blockchains/ethereum/assets/0x4123a133ae3c521FD134D7b13A2dEC35b56c2463/logo.png and b/blockchains/ethereum/assets/0x4123a133ae3c521FD134D7b13A2dEC35b56c2463/logo.png differ diff --git a/blockchains/ethereum/assets/0x41545f8b9472D758bB669ed8EaEEEcD7a9C4Ec29/info.json b/blockchains/ethereum/assets/0x41545f8b9472D758bB669ed8EaEEEcD7a9C4Ec29/info.json index 8e60a1037f1d8..847d40410f699 100644 --- a/blockchains/ethereum/assets/0x41545f8b9472D758bB669ed8EaEEEcD7a9C4Ec29/info.json +++ b/blockchains/ethereum/assets/0x41545f8b9472D758bB669ed8EaEEEcD7a9C4Ec29/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/FortaNetwork" + "name": "x", + "url": "https://x.com/FortaNetwork" }, { "name": "coingecko", diff --git a/blockchains/ethereum/assets/0x415A9560aCA7ae3022e3c4E7bf1414125a1463EF/info.json b/blockchains/ethereum/assets/0x415A9560aCA7ae3022e3c4E7bf1414125a1463EF/info.json new file mode 100644 index 0000000000000..b047e4a37d20c --- /dev/null +++ b/blockchains/ethereum/assets/0x415A9560aCA7ae3022e3c4E7bf1414125a1463EF/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT VitalikElonObamaTrumpHarryPotterInu6900", + "type": "ERC20", + "symbol": "HONEYPOT VitalikElonObamaTrumpHarryPotterInu6900", + "decimals": 9, + "website": "https://etherscan.io/address/0x415a9560aca7ae3022e3c4e7bf1414125a1463ef", + "description": "HONEYPOT VitalikElonObamaTrumpHarryPotterInu6900", + "explorer": "https://etherscan.io/token/0x415A9560aCA7ae3022e3c4E7bf1414125a1463EF", + "status": "spam", + "id": "0x415A9560aCA7ae3022e3c4E7bf1414125a1463EF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x415ff1afc201EeC50BeFF210a2F456674046920b/info.json b/blockchains/ethereum/assets/0x415ff1afc201EeC50BeFF210a2F456674046920b/info.json new file mode 100644 index 0000000000000..3e234733a6440 --- /dev/null +++ b/blockchains/ethereum/assets/0x415ff1afc201EeC50BeFF210a2F456674046920b/info.json @@ -0,0 +1,25 @@ +{ + "name": "Refund", + "website": "https://refundcoin.fund/", + "description": "Refund is an exciting new crypto project that has recently made its debut on the Ethereum blockchain, poised to ignite another explosion in the ever-evolving world of cryptocurrencies.", + "explorer": "https://etherscan.io/token/0x415ff1afc201EeC50BeFF210a2F456674046920b", + "type": "ERC20", + "symbol": "REFUND", + "decimals": 18, + "status": "active", + "id": "0x415ff1afc201EeC50BeFF210a2F456674046920b", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/refundcoin/" + }, + { + "name": "x", + "url": "https://x.com/RefundCoinErc20" + }, + { + "name": "telegram", + "url": "https://t.me/RefundErc20" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x415ff1afc201EeC50BeFF210a2F456674046920b/logo.png b/blockchains/ethereum/assets/0x415ff1afc201EeC50BeFF210a2F456674046920b/logo.png new file mode 100644 index 0000000000000..037c1f4fba98f Binary files /dev/null and b/blockchains/ethereum/assets/0x415ff1afc201EeC50BeFF210a2F456674046920b/logo.png differ diff --git a/blockchains/ethereum/assets/0x41765F0FCddC276309195166C7A62AE522FA09ef/info.json b/blockchains/ethereum/assets/0x41765F0FCddC276309195166C7A62AE522FA09ef/info.json new file mode 100644 index 0000000000000..aba8a3e3d1ff0 --- /dev/null +++ b/blockchains/ethereum/assets/0x41765F0FCddC276309195166C7A62AE522FA09ef/info.json @@ -0,0 +1,24 @@ +{ + "name": "Alibaba (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "BABAon is the Ondo Tokenized version of Alibaba, giving tokenholders economic exposure similar to holding BABA and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x41765F0FCddC276309195166C7A62AE522FA09ef", + "type": "ERC20", + "symbol": "BABAon", + "decimals": 18, + "status": "active", + "id": "0x41765F0FCddC276309195166C7A62AE522FA09ef", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/alibaba-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x41765F0FCddC276309195166C7A62AE522FA09ef/logo.png b/blockchains/ethereum/assets/0x41765F0FCddC276309195166C7A62AE522FA09ef/logo.png new file mode 100644 index 0000000000000..85286052dbe50 Binary files /dev/null and b/blockchains/ethereum/assets/0x41765F0FCddC276309195166C7A62AE522FA09ef/logo.png differ diff --git a/blockchains/ethereum/assets/0x4185cf99745B2a20727B37EE798193DD4a56cDfa/info.json b/blockchains/ethereum/assets/0x4185cf99745B2a20727B37EE798193DD4a56cDfa/info.json index 85d4b748df4f7..ed69b0ce09ba9 100644 --- a/blockchains/ethereum/assets/0x4185cf99745B2a20727B37EE798193DD4a56cDfa/info.json +++ b/blockchains/ethereum/assets/0x4185cf99745B2a20727B37EE798193DD4a56cDfa/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/deusfinance" }, { - "name": "twitter", - "url": "https://twitter.com/DeusDao" + "name": "x", + "url": "https://x.com/DeusDao" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x41BbEDd7286dAab5910a1f15d12CBda839852BD7/info.json b/blockchains/ethereum/assets/0x41BbEDd7286dAab5910a1f15d12CBda839852BD7/info.json index a899842cc6032..dc0133a74b805 100644 --- a/blockchains/ethereum/assets/0x41BbEDd7286dAab5910a1f15d12CBda839852BD7/info.json +++ b/blockchains/ethereum/assets/0x41BbEDd7286dAab5910a1f15d12CBda839852BD7/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/MirrorProtocol" + "name": "x", + "url": "https://x.com/MirrorProtocol" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json b/blockchains/ethereum/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json new file mode 100644 index 0000000000000..dbfa1641914fb --- /dev/null +++ b/blockchains/ethereum/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json @@ -0,0 +1,21 @@ +{ + "name": "FantasyGold", + "website": "https://fantasygold.co/cgi-sys/suspendedpage.cgi", + "description": "FantasyGold was built to become a multi-purpose platform offering Ethereum Virtual Machine based smart contracts and lightning fast transactions.", + "explorer": "https://etherscan.io/token/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a", + "type": "ERC20", + "symbol": "FGC", + "decimals": 18, + "status": "active", + "id": "0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a", + "links": [ + { + "name": "x", + "url": "https://x.com/fantasygoldcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fantasygold/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png b/blockchains/ethereum/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png new file mode 100644 index 0000000000000..6876a666683e6 Binary files /dev/null and b/blockchains/ethereum/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png differ diff --git a/blockchains/ethereum/assets/0x421b05cf5ce28Cb7347E73e2278E84472F0E4a88/info.json b/blockchains/ethereum/assets/0x421b05cf5ce28Cb7347E73e2278E84472F0E4a88/info.json new file mode 100644 index 0000000000000..92b9c85db1712 --- /dev/null +++ b/blockchains/ethereum/assets/0x421b05cf5ce28Cb7347E73e2278E84472F0E4a88/info.json @@ -0,0 +1,21 @@ +{ + "name": "Sentio Protocol", + "website": "https://www.sentio.ai/", + "description": "Sentio makes it effortless to create, deploy, and monetize on-chain AI agents, transforming complex blockchain tasks into easy, automated workflows.", + "explorer": "https://etherscan.io/token/0x421b05cf5ce28Cb7347E73e2278E84472F0E4a88", + "type": "ERC20", + "symbol": "SEN", + "decimals": 18, + "status": "active", + "id": "0x421b05cf5ce28Cb7347E73e2278E84472F0E4a88", + "links": [ + { + "name": "x", + "url": "https://x.com/sentio_ai" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sentio-protocol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x421b05cf5ce28Cb7347E73e2278E84472F0E4a88/logo.png b/blockchains/ethereum/assets/0x421b05cf5ce28Cb7347E73e2278E84472F0E4a88/logo.png new file mode 100644 index 0000000000000..e77d28aaba5b1 Binary files /dev/null and b/blockchains/ethereum/assets/0x421b05cf5ce28Cb7347E73e2278E84472F0E4a88/logo.png differ diff --git a/blockchains/ethereum/assets/0x423A63dfE8d82CD9C6568C92210AA537d8Ef6885/info.json b/blockchains/ethereum/assets/0x423A63dfE8d82CD9C6568C92210AA537d8Ef6885/info.json new file mode 100644 index 0000000000000..7369cf513e777 --- /dev/null +++ b/blockchains/ethereum/assets/0x423A63dfE8d82CD9C6568C92210AA537d8Ef6885/info.json @@ -0,0 +1,28 @@ +{ + "name": "Global X Copper Miners ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "COPXon", + "decimals": 18, + "description": "COPXon is the Ondo Tokenized version of the Global X Copper Miners ETF, giving tokenholders economic exposure similar to holding COPX and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x423A63dfE8d82CD9C6568C92210AA537d8Ef6885", + "status": "active", + "id": "0x423A63dfE8d82CD9C6568C92210AA537d8Ef6885", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/global-x-copper-miners-etf-ondo-tokenized-etf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/global-x-copper-miners-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x423A63dfE8d82CD9C6568C92210AA537d8Ef6885/logo.png b/blockchains/ethereum/assets/0x423A63dfE8d82CD9C6568C92210AA537d8Ef6885/logo.png new file mode 100644 index 0000000000000..8bd6718f2dc1a Binary files /dev/null and b/blockchains/ethereum/assets/0x423A63dfE8d82CD9C6568C92210AA537d8Ef6885/logo.png differ diff --git a/blockchains/ethereum/assets/0x423D42E505e64F99b6E277eb7ED324CC5606F139/info.json b/blockchains/ethereum/assets/0x423D42E505e64F99b6E277eb7ED324CC5606F139/info.json new file mode 100644 index 0000000000000..e90c8dcd24dac --- /dev/null +++ b/blockchains/ethereum/assets/0x423D42E505e64F99b6E277eb7ED324CC5606F139/info.json @@ -0,0 +1,28 @@ +{ + "name": "SPDR Gold Shares (Ondo Tokenized)", + "type": "ERC20", + "symbol": "GLDon", + "decimals": 18, + "description": "GLDon is the Ondo Tokenized version of the SPDR Gold Shares, giving tokenholders economic exposure similar to holding GLD and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x423D42E505e64F99b6E277eb7ED324CC5606F139", + "status": "active", + "id": "0x423D42E505e64F99b6E277eb7ED324CC5606F139", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/spdr-gold-shares-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spdr-gold-shares-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x423D42E505e64F99b6E277eb7ED324CC5606F139/logo.png b/blockchains/ethereum/assets/0x423D42E505e64F99b6E277eb7ED324CC5606F139/logo.png new file mode 100644 index 0000000000000..1153d70d28a0e Binary files /dev/null and b/blockchains/ethereum/assets/0x423D42E505e64F99b6E277eb7ED324CC5606F139/logo.png differ diff --git a/blockchains/ethereum/assets/0x42476F744292107e34519F9c357927074Ea3F75D/info.json b/blockchains/ethereum/assets/0x42476F744292107e34519F9c357927074Ea3F75D/info.json index 465d4f98cdc59..3481b68b21b47 100644 --- a/blockchains/ethereum/assets/0x42476F744292107e34519F9c357927074Ea3F75D/info.json +++ b/blockchains/ethereum/assets/0x42476F744292107e34519F9c357927074Ea3F75D/info.json @@ -7,5 +7,19 @@ "symbol": "LOOM", "decimals": 18, "status": "active", - "id": "0x42476F744292107e34519F9c357927074Ea3F75D" + "id": "0x42476F744292107e34519F9c357927074Ea3F75D", + "links": [ + { + "name": "telegram", + "url": "https://t.me/loomnetwork" + }, + { + "name": "x", + "url": "https://x.com/loomnetwork" + }, + { + "name": "github", + "url": "https://github.com/loomnetwork" + } + ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x426a688eE72811773eB64F5717A32981B56F10c1/info.json b/blockchains/ethereum/assets/0x426a688eE72811773eB64F5717A32981B56F10c1/info.json new file mode 100644 index 0000000000000..4f073b0f3ba29 --- /dev/null +++ b/blockchains/ethereum/assets/0x426a688eE72811773eB64F5717A32981B56F10c1/info.json @@ -0,0 +1,21 @@ +{ + "name": "AMC", + "type": "ERC20", + "symbol": "AMC", + "decimals": 18, + "website": "https://www.americasmemecoin.com/", + "description": "America's Meme Coin (AMC) is a meme coin - representing USA and ETH.", + "explorer": "https://etherscan.io/token/0x426a688eE72811773eB64F5717A32981B56F10c1", + "status": "active", + "id": "0x426a688eE72811773eB64F5717A32981B56F10c1", + "links": [ + { + "name": "x", + "url": "https://x.com/eth_amc" + }, + { + "name": "telegram", + "url": "https://t.me/TheSocietyPortal" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x426a688eE72811773eB64F5717A32981B56F10c1/logo.png b/blockchains/ethereum/assets/0x426a688eE72811773eB64F5717A32981B56F10c1/logo.png new file mode 100644 index 0000000000000..4fcaf446307e8 Binary files /dev/null and b/blockchains/ethereum/assets/0x426a688eE72811773eB64F5717A32981B56F10c1/logo.png differ diff --git a/blockchains/ethereum/assets/0x429F0d8233e517f9acf6F0C8293BF35804063a83/info.json b/blockchains/ethereum/assets/0x429F0d8233e517f9acf6F0C8293BF35804063a83/info.json new file mode 100644 index 0000000000000..3439e70c6c232 --- /dev/null +++ b/blockchains/ethereum/assets/0x429F0d8233e517f9acf6F0C8293BF35804063a83/info.json @@ -0,0 +1,30 @@ +{ + "name": "Powerloom Token", + "type": "ERC20", + "symbol": "POWER", + "decimals": 18, + "description": "What is Powerloom (POWER)? Powerloom is a composable data network that does all the heavy lifting — from extraction and composition to validation and decentralized storage — to make onchain data access hassle-free, affordable, and fully verifiable. POWER token fuels this distributed data economy, incentivizing stakeholders, rewarding contributors, and supporting protocols built on Powerloom’s infra.", + "website": "https://powerloom.io/", + "explorer": "https://etherscan.io/token/0x429F0d8233e517f9acf6F0C8293BF35804063a83", + "id": "0x429F0d8233e517f9acf6F0C8293BF35804063a83", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Powerloom" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/powerloom/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/powerloom/" + } + + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x429F0d8233e517f9acf6F0C8293BF35804063a83/logo.png b/blockchains/ethereum/assets/0x429F0d8233e517f9acf6F0C8293BF35804063a83/logo.png new file mode 100644 index 0000000000000..8c8e59bd83c6e Binary files /dev/null and b/blockchains/ethereum/assets/0x429F0d8233e517f9acf6F0C8293BF35804063a83/logo.png differ diff --git a/blockchains/ethereum/assets/0x42Baf1f659D765C65ADE5BB7E08eb2C680360d9d/info.json b/blockchains/ethereum/assets/0x42Baf1f659D765C65ADE5BB7E08eb2C680360d9d/info.json new file mode 100644 index 0000000000000..ed327fb18dcb5 --- /dev/null +++ b/blockchains/ethereum/assets/0x42Baf1f659D765C65ADE5BB7E08eb2C680360d9d/info.json @@ -0,0 +1,17 @@ +{ + "name": "Cornucopias", + "website": "https://www.cornucopias.io/", + "description": "Cornucopias 'The Island' is a massive Play-To-Earn, Build-To-Earn, and Learn-To-Earn blockchain based game where players can be rewarded with and/or own land, properties and other NFT based assets with real world value all by playing games in a fun and safe metaverse.", + "explorer": "https://etherscan.io/token/0x42baf1f659d765c65ade5bb7e08eb2c680360d9d", + "type": "ERC20", + "symbol": "COPI", + "decimals": 18, + "status": "active", + "id": "0x42Baf1f659D765C65ADE5BB7E08eb2C680360d9d", + "links": [ + { + "name": "x", + "url": "https://x.com/cornucopiasgame" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x42Baf1f659D765C65ADE5BB7E08eb2C680360d9d/logo.png b/blockchains/ethereum/assets/0x42Baf1f659D765C65ADE5BB7E08eb2C680360d9d/logo.png new file mode 100644 index 0000000000000..66f09f859656c Binary files /dev/null and b/blockchains/ethereum/assets/0x42Baf1f659D765C65ADE5BB7E08eb2C680360d9d/logo.png differ diff --git a/blockchains/ethereum/assets/0x42d6E274B8631e5289a8F853E8d1A7bAEff3C8d1/info.json b/blockchains/ethereum/assets/0x42d6E274B8631e5289a8F853E8d1A7bAEff3C8d1/info.json new file mode 100644 index 0000000000000..23fa32c6884a5 --- /dev/null +++ b/blockchains/ethereum/assets/0x42d6E274B8631e5289a8F853E8d1A7bAEff3C8d1/info.json @@ -0,0 +1,24 @@ +{ + "name": "First Trust NASDAQ Cybersecurity ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "CIBRon", + "decimals": 18, + "description": "CIBRon is the Ondo Tokenized version of the First Trust NASDAQ Cybersecurity ETF, giving tokenholders economic exposure similar to holding CIBR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x42d6E274B8631e5289a8F853E8d1A7bAEff3C8d1", + "status": "active", + "id": "0x42d6E274B8631e5289a8F853E8d1A7bAEff3C8d1", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/first-trust-nasdaq-cybersecurity-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x42d6E274B8631e5289a8F853E8d1A7bAEff3C8d1/logo.png b/blockchains/ethereum/assets/0x42d6E274B8631e5289a8F853E8d1A7bAEff3C8d1/logo.png new file mode 100644 index 0000000000000..136dac3e5c4b9 Binary files /dev/null and b/blockchains/ethereum/assets/0x42d6E274B8631e5289a8F853E8d1A7bAEff3C8d1/logo.png differ diff --git a/blockchains/ethereum/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/info.json b/blockchains/ethereum/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/info.json index 2b8b10951356e..ea60429dd3a1c 100644 --- a/blockchains/ethereum/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/info.json +++ b/blockchains/ethereum/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/info.json @@ -10,8 +10,8 @@ "id": "0x430EF9263E76DAE63c84292C3409D61c598E9682", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VulcanForged" + "name": "x", + "url": "https://x.com/VulcanForged" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x431ad2ff6a9C365805eBaD47Ee021148d6f7DBe0/info.json b/blockchains/ethereum/assets/0x431ad2ff6a9C365805eBaD47Ee021148d6f7DBe0/info.json index eb33825fb8270..739b4cd8c283e 100644 --- a/blockchains/ethereum/assets/0x431ad2ff6a9C365805eBaD47Ee021148d6f7DBe0/info.json +++ b/blockchains/ethereum/assets/0x431ad2ff6a9C365805eBaD47Ee021148d6f7DBe0/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/dforce-network" }, { - "name": "twitter", - "url": "https://twitter.com/dForcenet" + "name": "x", + "url": "https://x.com/dForcenet" }, { "name": "medium", diff --git a/blockchains/ethereum/assets/0x4385328cc4D643Ca98DfEA734360C0F596C83449/info.json b/blockchains/ethereum/assets/0x4385328cc4D643Ca98DfEA734360C0F596C83449/info.json index 52b636ea855c1..5f8cdf520a1d6 100644 --- a/blockchains/ethereum/assets/0x4385328cc4D643Ca98DfEA734360C0F596C83449/info.json +++ b/blockchains/ethereum/assets/0x4385328cc4D643Ca98DfEA734360C0F596C83449/info.json @@ -10,8 +10,8 @@ "id": "0x4385328cc4D643Ca98DfEA734360C0F596C83449", "links": [ { - "name": "twitter", - "url": "https://twitter.com/tomipioneers" + "name": "x", + "url": "https://x.com/tomipioneers" }, { "name": "telegram", @@ -22,4 +22,4 @@ "url": "https://coinmarketcap.com/currencies/tominet/" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x43D7E65B8fF49698D9550a7F315c87E67344FB59/info.json b/blockchains/ethereum/assets/0x43D7E65B8fF49698D9550a7F315c87E67344FB59/info.json new file mode 100644 index 0000000000000..58c3143b1aefc --- /dev/null +++ b/blockchains/ethereum/assets/0x43D7E65B8fF49698D9550a7F315c87E67344FB59/info.json @@ -0,0 +1,25 @@ +{ + "name": "Shiba Saga", + "type": "ERC20", + "symbol": "SHIA", + "decimals": 18, + "website": "https://www.shibasaga.com/", + "description": "Unveil Shiba Saga: Where gaming meets blockchain magic. Earn SHIA tokens while playing, redeem for rewards, trade on exchanges, and participate in social impact initiatives. Level up your gaming experience with us!", + "explorer": "https://etherscan.io/token/0x43d7e65b8ff49698d9550a7f315c87e67344fb59", + "status": "active", + "id": "0x43D7E65B8fF49698D9550a7F315c87E67344FB59", + "links": [ + { + "name": "telegram", + "url": "https://t.me/ShibaSaga" + }, + { + "name": "x", + "url": "https://x.com/shibasagaio" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shiba-saga/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x43D7E65B8fF49698D9550a7F315c87E67344FB59/logo.png b/blockchains/ethereum/assets/0x43D7E65B8fF49698D9550a7F315c87E67344FB59/logo.png new file mode 100644 index 0000000000000..337b74854f208 Binary files /dev/null and b/blockchains/ethereum/assets/0x43D7E65B8fF49698D9550a7F315c87E67344FB59/logo.png differ diff --git a/blockchains/ethereum/assets/0x43Dfc4159D86F3A37A5A4B3D4580b888ad7d4DDd/info.json b/blockchains/ethereum/assets/0x43Dfc4159D86F3A37A5A4B3D4580b888ad7d4DDd/info.json index 21d7bf70760ca..27132e4b58b13 100644 --- a/blockchains/ethereum/assets/0x43Dfc4159D86F3A37A5A4B3D4580b888ad7d4DDd/info.json +++ b/blockchains/ethereum/assets/0x43Dfc4159D86F3A37A5A4B3D4580b888ad7d4DDd/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/DODOEX/" }, { - "name": "twitter", - "url": "https://twitter.com/DODO" + "name": "x", + "url": "https://x.com/DODO" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0x43f11c02439e2736800433b4594994Bd43Cd066D/info.json b/blockchains/ethereum/assets/0x43f11c02439e2736800433b4594994Bd43Cd066D/info.json index 23942b66ec054..ae2fa19cd101c 100644 --- a/blockchains/ethereum/assets/0x43f11c02439e2736800433b4594994Bd43Cd066D/info.json +++ b/blockchains/ethereum/assets/0x43f11c02439e2736800433b4594994Bd43Cd066D/info.json @@ -17,8 +17,8 @@ "url": "https://t.me/FlokiInuToken" }, { - "name": "twitter", - "url": "https://twitter.com/RealFlokiInu" + "name": "x", + "url": "https://x.com/RealFlokiInu" }, { "name": "coinmarketcap", diff --git a/blockchains/ethereum/assets/0x43f11c02439e2736800433b4594994Bd43Cd066D/logo.png b/blockchains/ethereum/assets/0x43f11c02439e2736800433b4594994Bd43Cd066D/logo.png deleted file mode 100644 index 52a97499126e8..0000000000000 Binary files a/blockchains/ethereum/assets/0x43f11c02439e2736800433b4594994Bd43Cd066D/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x44108f0223A3C3028F5Fe7AEC7f9bb2E66beF82F/info.json b/blockchains/ethereum/assets/0x44108f0223A3C3028F5Fe7AEC7f9bb2E66beF82F/info.json new file mode 100644 index 0000000000000..01163ec5f3cf2 --- /dev/null +++ b/blockchains/ethereum/assets/0x44108f0223A3C3028F5Fe7AEC7f9bb2E66beF82F/info.json @@ -0,0 +1,25 @@ +{ + "name": "Across Protocol", + "type": "ERC20", + "symbol": "ACX", + "decimals": 18, + "description": "The Bridge Ethereum Deserves! Across is a cross-chain token bridge that is secured by UMA's optimistic oracle. It is optimized for capital efficiency with a single liquidity pool, a competitive relayer landscape, and a no-slippage fee model. Across is able to process cross-chain transfers quickly because its oracle verifies transfers optimistically.", + "website": "https://across.to/", + "explorer": "https://etherscan.io/token/0x44108f0223a3c3028f5fe7aec7f9bb2e66bef82f", + "id": "0x44108f0223A3C3028F5Fe7AEC7f9bb2E66beF82F", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/AcrossProtocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/across-protocol/" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x44108f0223A3C3028F5Fe7AEC7f9bb2E66beF82F/logo.png b/blockchains/ethereum/assets/0x44108f0223A3C3028F5Fe7AEC7f9bb2E66beF82F/logo.png new file mode 100644 index 0000000000000..e13598d96f585 Binary files /dev/null and b/blockchains/ethereum/assets/0x44108f0223A3C3028F5Fe7AEC7f9bb2E66beF82F/logo.png differ diff --git a/blockchains/ethereum/assets/0x442B153F6F61C0c99A33Aa4170DCb31e1ABDa1D0/info.json b/blockchains/ethereum/assets/0x442B153F6F61C0c99A33Aa4170DCb31e1ABDa1D0/info.json new file mode 100644 index 0000000000000..952273c23b8fa --- /dev/null +++ b/blockchains/ethereum/assets/0x442B153F6F61C0c99A33Aa4170DCb31e1ABDa1D0/info.json @@ -0,0 +1,30 @@ +{ + "name": "Travala.com", + "website": "https://travala.com", + "description": "Travala.com claims to be the leading blockchain-based travel booking platform.", + "explorer": "https://etherscan.io/token/0x442b153f6f61c0c99a33aa4170dcb31e1abda1d0", + "research": "https://research.binance.com/en/projects/travala", + "type": "ERC20", + "symbol": "AVA", + "decimals": 18, + "status": "abandoned", + "id": "0x442B153F6F61C0c99A33Aa4170DCb31e1ABDa1D0", + "links": [ + { + "name": "x", + "url": "https://x.com/travalacom" + }, + { + "name": "github", + "url": "https://github.com/travala" + }, + { + "name": "telegram", + "url": "https://t.me/travala" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/travala/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x443459D45c30A03f90037d011CbE22e2183d3b12/info.json b/blockchains/ethereum/assets/0x443459D45c30A03f90037d011CbE22e2183d3b12/info.json new file mode 100644 index 0000000000000..99052518a3d5e --- /dev/null +++ b/blockchains/ethereum/assets/0x443459D45c30A03f90037d011CbE22e2183d3b12/info.json @@ -0,0 +1,21 @@ +{ + "name": "TypeAI", + "type": "ERC20", + "symbol": "TYPE", + "decimals": 18, + "website": "https://www.typeai.live/", + "description": "Personalized AI crypto companion.", + "explorer": "https://etherscan.io/token/0x443459d45c30a03f90037d011cbe22e2183d3b12", + "status": "active", + "id": "0x443459D45c30A03f90037d011CbE22e2183d3b12", + "links": [ + { + "name": "x", + "url": "https://x.com/Typeaieth" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/typeai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x443459D45c30A03f90037d011CbE22e2183d3b12/logo.png b/blockchains/ethereum/assets/0x443459D45c30A03f90037d011CbE22e2183d3b12/logo.png new file mode 100644 index 0000000000000..e22dc1662cbd0 Binary files /dev/null and b/blockchains/ethereum/assets/0x443459D45c30A03f90037d011CbE22e2183d3b12/logo.png differ diff --git a/blockchains/ethereum/assets/0x44709a920fCcF795fbC57BAA433cc3dd53C44DbE/info.json b/blockchains/ethereum/assets/0x44709a920fCcF795fbC57BAA433cc3dd53C44DbE/info.json index 5f077e7d848b2..cf46ebbea857d 100644 --- a/blockchains/ethereum/assets/0x44709a920fCcF795fbC57BAA433cc3dd53C44DbE/info.json +++ b/blockchains/ethereum/assets/0x44709a920fCcF795fbC57BAA433cc3dd53C44DbE/info.json @@ -18,8 +18,8 @@ "url": "https://github.com/dappradar" }, { - "name": "twitter", - "url": "https://twitter.com/dappradar" + "name": "x", + "url": "https://x.com/dappradar" }, { "name": "coinmarketcap", diff --git a/blockchains/ethereum/assets/0x44971ABF0251958492FeE97dA3e5C5adA88B9185/info.json b/blockchains/ethereum/assets/0x44971ABF0251958492FeE97dA3e5C5adA88B9185/info.json new file mode 100644 index 0000000000000..712ff3b97ee4d --- /dev/null +++ b/blockchains/ethereum/assets/0x44971ABF0251958492FeE97dA3e5C5adA88B9185/info.json @@ -0,0 +1,25 @@ +{ + "name": "basedAI", + "type": "ERC20", + "symbol": "basedAI", + "decimals": 18, + "description": "https://arxiv.org/pdf/2403.01008.pdf", + "website": "https://basedai.fi/", + "explorer": "https://etherscan.io/token/0x44971abf0251958492fee97da3e5c5ada88b9185", + "id": "0x44971ABF0251958492FeE97dA3e5C5adA88B9185", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/getbasedai" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/basedai/" + } + ], + "tags": [ + "privacy" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x44971ABF0251958492FeE97dA3e5C5adA88B9185/logo.png b/blockchains/ethereum/assets/0x44971ABF0251958492FeE97dA3e5C5adA88B9185/logo.png new file mode 100644 index 0000000000000..eb57364ac1472 Binary files /dev/null and b/blockchains/ethereum/assets/0x44971ABF0251958492FeE97dA3e5C5adA88B9185/logo.png differ diff --git a/blockchains/ethereum/assets/0x44a45B55B9D7d88de65428248e79dAd74B6E7F28/info.json b/blockchains/ethereum/assets/0x44a45B55B9D7d88de65428248e79dAd74B6E7F28/info.json new file mode 100644 index 0000000000000..60c1619198cef --- /dev/null +++ b/blockchains/ethereum/assets/0x44a45B55B9D7d88de65428248e79dAd74B6E7F28/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT Trillionaire Elon", + "type": "ERC20", + "symbol": "HONEYPOT trelon", + "decimals": 9, + "description": "This token is malicious do not interact", + "website": "https://etherscan.io/token/0x44a45B55B9D7d88de65428248e79dAd74B6E7F28", + "explorer": "https://etherscan.io/token/0x44a45B55B9D7d88de65428248e79dAd74B6E7F28", + "status": "spam", + "id": "0x44a45B55B9D7d88de65428248e79dAd74B6E7F28" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x44e89d34601b8D0155e16634d2553EF7F54DBab2/info.json b/blockchains/ethereum/assets/0x44e89d34601b8D0155e16634d2553EF7F54DBab2/info.json new file mode 100644 index 0000000000000..5d4331031be78 --- /dev/null +++ b/blockchains/ethereum/assets/0x44e89d34601b8D0155e16634d2553EF7F54DBab2/info.json @@ -0,0 +1,24 @@ +{ + "name": "Western Digital (Ondo Tokenized)", + "type": "ERC20", + "symbol": "WDCon", + "decimals": 18, + "description": "WDCon is the Ondo Tokenized version of Western Digital, giving tokenholders economic exposure similar to holding WDC and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x44e89d34601b8D0155e16634d2553EF7F54DBab2", + "status": "active", + "id": "0x44e89d34601b8D0155e16634d2553EF7F54DBab2", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/western-digital-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x44e89d34601b8D0155e16634d2553EF7F54DBab2/logo.png b/blockchains/ethereum/assets/0x44e89d34601b8D0155e16634d2553EF7F54DBab2/logo.png new file mode 100644 index 0000000000000..dd1a5ed2aeb65 Binary files /dev/null and b/blockchains/ethereum/assets/0x44e89d34601b8D0155e16634d2553EF7F54DBab2/logo.png differ diff --git a/blockchains/ethereum/assets/0x44ff8620b8cA30902395A7bD3F2407e1A091BF73/info.json b/blockchains/ethereum/assets/0x44ff8620b8cA30902395A7bD3F2407e1A091BF73/info.json new file mode 100644 index 0000000000000..bfd8a65f91005 --- /dev/null +++ b/blockchains/ethereum/assets/0x44ff8620b8cA30902395A7bD3F2407e1A091BF73/info.json @@ -0,0 +1,21 @@ +{ + "name": "Virtual Protocol", + "type": "ERC20", + "symbol": "VIRTUAL", + "decimals": 18, + "website": "https://www.virtuals.io/", + "description": "Virtual is an AI protocol that creates co-owned, human-curated, plug-and-play gaming AIs.", + "explorer": "https://etherscan.io/token/0x44ff8620b8cA30902395A7bD3F2407e1A091BF73", + "status": "active", + "id": "0x44ff8620b8cA30902395A7bD3F2407e1A091BF73", + "links": [ + { + "name": "x", + "url": "https://x.com/virtuals_io" + }, + { + "name": "telegram", + "url": "https://t.me/virtuals" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x44ff8620b8cA30902395A7bD3F2407e1A091BF73/logo.png b/blockchains/ethereum/assets/0x44ff8620b8cA30902395A7bD3F2407e1A091BF73/logo.png new file mode 100644 index 0000000000000..87328b253d6ac Binary files /dev/null and b/blockchains/ethereum/assets/0x44ff8620b8cA30902395A7bD3F2407e1A091BF73/logo.png differ diff --git a/blockchains/ethereum/assets/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528/info.json b/blockchains/ethereum/assets/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528/info.json new file mode 100644 index 0000000000000..b98b329f355fa --- /dev/null +++ b/blockchains/ethereum/assets/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528/info.json @@ -0,0 +1,17 @@ +{ + "name": "TokenFi", + "website": "https://tokenfi.com", + "description": "TokenFi is the ultimate platform for crypto and asset tokenization. Our aim is to make tokenization seamless and easy for the masses!.", + "explorer": "https://etherscan.io/token/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528", + "symbol": "TOKEN", + "type": "ERC20", + "decimals": 9, + "status": "active", + "id": "0x4507cEf57C46789eF8d1a19EA45f4216bae2B528", + "links": [ + { + "name": "x", + "url": "https://x.com/tokenfi" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528/logo.png b/blockchains/ethereum/assets/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528/logo.png new file mode 100644 index 0000000000000..69737a2c9591e Binary files /dev/null and b/blockchains/ethereum/assets/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528/logo.png differ diff --git a/blockchains/ethereum/assets/0x45080a6531d671DDFf20DB42f93792a489685e32/info.json b/blockchains/ethereum/assets/0x45080a6531d671DDFf20DB42f93792a489685e32/info.json index def95daa15ed3..9c4868a13fbff 100644 --- a/blockchains/ethereum/assets/0x45080a6531d671DDFf20DB42f93792a489685e32/info.json +++ b/blockchains/ethereum/assets/0x45080a6531d671DDFf20DB42f93792a489685e32/info.json @@ -10,8 +10,8 @@ "id": "0x45080a6531d671DDFf20DB42f93792a489685e32", "links": [ { - "name": "twitter", - "url": "https://twitter.com/financedotvote" + "name": "x", + "url": "https://x.com/financedotvote" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x455e53CBB86018Ac2B8092FdCd39d8444aFFC3F6/info.json b/blockchains/ethereum/assets/0x455e53CBB86018Ac2B8092FdCd39d8444aFFC3F6/info.json new file mode 100644 index 0000000000000..e088358d5af9e --- /dev/null +++ b/blockchains/ethereum/assets/0x455e53CBB86018Ac2B8092FdCd39d8444aFFC3F6/info.json @@ -0,0 +1,25 @@ +{ + "name": "Polygon", + "type": "ERC20", + "symbol": "POL", + "decimals": 18, + "website": "https://polygon.technology/", + "description": "Polygon is a protocol and a framework for building and connecting Ethereum-compatible blockchain networks. Aggregating scalable solutions on Ethereum supporting a multi-chain Ethereum ecosystem.", + "explorer": "https://etherscan.io/token/0x455e53CBB86018Ac2B8092FdCd39d8444aFFC3F6", + "status": "active", + "id": "0x455e53CBB86018Ac2B8092FdCd39d8444aFFC3F6", + "links": [ + { + "name": "telegram", + "url": "https://t.me/polygonofficial" + }, + { + "name": "x", + "url": "https://x.com/0xPolygon" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/polygon-ecosystem-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x455e53CBB86018Ac2B8092FdCd39d8444aFFC3F6/logo.png b/blockchains/ethereum/assets/0x455e53CBB86018Ac2B8092FdCd39d8444aFFC3F6/logo.png new file mode 100644 index 0000000000000..fbd01afc251d4 Binary files /dev/null and b/blockchains/ethereum/assets/0x455e53CBB86018Ac2B8092FdCd39d8444aFFC3F6/logo.png differ diff --git a/blockchains/ethereum/assets/0x456125Cd98107ae0480Ba566f1b716D48Ba31453/info.json b/blockchains/ethereum/assets/0x456125Cd98107ae0480Ba566f1b716D48Ba31453/info.json index 3c1971f1ec029..bf2d7331d235d 100644 --- a/blockchains/ethereum/assets/0x456125Cd98107ae0480Ba566f1b716D48Ba31453/info.json +++ b/blockchains/ethereum/assets/0x456125Cd98107ae0480Ba566f1b716D48Ba31453/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/ultimate-champions/" }, { - "name": "twitter", - "url": "https://twitter.com/UltiChamps" + "name": "x", + "url": "https://x.com/UltiChamps" }, { "name": "whitepaper", diff --git a/blockchains/ethereum/assets/0x45f24BaEef268BB6d63AEe5129015d69702BCDfa/info.json b/blockchains/ethereum/assets/0x45f24BaEef268BB6d63AEe5129015d69702BCDfa/info.json index 36529a7f731ed..72b391e2e82df 100644 --- a/blockchains/ethereum/assets/0x45f24BaEef268BB6d63AEe5129015d69702BCDfa/info.json +++ b/blockchains/ethereum/assets/0x45f24BaEef268BB6d63AEe5129015d69702BCDfa/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/valuedefi" }, { - "name": "twitter", - "url": "https://twitter.com/value_defi" + "name": "x", + "url": "https://x.com/value_defi" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x4604b0b581269843ac7a6b70A5FC019E7762e511/info.json b/blockchains/ethereum/assets/0x4604b0b581269843ac7a6b70A5FC019E7762e511/info.json new file mode 100644 index 0000000000000..8764891ac4969 --- /dev/null +++ b/blockchains/ethereum/assets/0x4604b0b581269843ac7a6b70A5FC019E7762e511/info.json @@ -0,0 +1,24 @@ +{ + "name": "MARA Holdings (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "MARAon is the Ondo Tokenized version of MARA Holdings, giving tokenholders economic exposure similar to holding MARA and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x4604b0b581269843ac7a6b70A5FC019E7762e511", + "type": "ERC20", + "symbol": "MARAon", + "decimals": 18, + "status": "active", + "id": "0x4604b0b581269843ac7a6b70A5FC019E7762e511", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mara-holdings-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4604b0b581269843ac7a6b70A5FC019E7762e511/logo.png b/blockchains/ethereum/assets/0x4604b0b581269843ac7a6b70A5FC019E7762e511/logo.png new file mode 100644 index 0000000000000..02eec79b04563 Binary files /dev/null and b/blockchains/ethereum/assets/0x4604b0b581269843ac7a6b70A5FC019E7762e511/logo.png differ diff --git a/blockchains/ethereum/assets/0x464FdB8AFFC9bac185A7393fd4298137866DCFB8/info.json b/blockchains/ethereum/assets/0x464FdB8AFFC9bac185A7393fd4298137866DCFB8/info.json index b66062d8c4d36..02b709e8daac7 100644 --- a/blockchains/ethereum/assets/0x464FdB8AFFC9bac185A7393fd4298137866DCFB8/info.json +++ b/blockchains/ethereum/assets/0x464FdB8AFFC9bac185A7393fd4298137866DCFB8/info.json @@ -10,8 +10,8 @@ "id": "0x464FdB8AFFC9bac185A7393fd4298137866DCFB8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Enter_Realm" + "name": "x", + "url": "https://x.com/Enter_Realm" }, { "name": "telegram", @@ -22,4 +22,4 @@ "url": "https://coingecko.com/en/coins/realm" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x464eBE77c293E473B48cFe96dDCf88fcF7bFDAC0/info.json b/blockchains/ethereum/assets/0x464eBE77c293E473B48cFe96dDCf88fcF7bFDAC0/info.json index b91327b47ec91..1806c50abf38d 100644 --- a/blockchains/ethereum/assets/0x464eBE77c293E473B48cFe96dDCf88fcF7bFDAC0/info.json +++ b/blockchains/ethereum/assets/0x464eBE77c293E473B48cFe96dDCf88fcF7bFDAC0/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Cryptense/" }, { - "name": "twitter", - "url": "https://twitter.com/kryll_io" + "name": "x", + "url": "https://x.com/kryll_io" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x46576e20EC5F25586A6Fa2E0d6B6058354B72E72/info.json b/blockchains/ethereum/assets/0x46576e20EC5F25586A6Fa2E0d6B6058354B72E72/info.json index b505bb90246c4..7fa5cf79c6b6b 100644 --- a/blockchains/ethereum/assets/0x46576e20EC5F25586A6Fa2E0d6B6058354B72E72/info.json +++ b/blockchains/ethereum/assets/0x46576e20EC5F25586A6Fa2E0d6B6058354B72E72/info.json @@ -14,8 +14,8 @@ "url": "https://facebook.com/cryptomindex" }, { - "name": "twitter", - "url": "https://twitter.com/cryptomindex1" + "name": "x", + "url": "https://x.com/cryptomindex1" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x4674672BcDdDA2ea5300F5207E1158185c944bc0/info.json b/blockchains/ethereum/assets/0x4674672BcDdDA2ea5300F5207E1158185c944bc0/info.json index 56de5002b0c6a..cf5b38876970c 100644 --- a/blockchains/ethereum/assets/0x4674672BcDdDA2ea5300F5207E1158185c944bc0/info.json +++ b/blockchains/ethereum/assets/0x4674672BcDdDA2ea5300F5207E1158185c944bc0/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/gxtmg/gxt_erc20" }, { - "name": "twitter", - "url": "https://twitter.com/GXT25075644" + "name": "x", + "url": "https://x.com/GXT25075644" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x467719aD09025FcC6cF6F8311755809d45a5E5f3/info.json b/blockchains/ethereum/assets/0x467719aD09025FcC6cF6F8311755809d45a5E5f3/info.json index d8169bd28aadd..c6a35c99fa243 100644 --- a/blockchains/ethereum/assets/0x467719aD09025FcC6cF6F8311755809d45a5E5f3/info.json +++ b/blockchains/ethereum/assets/0x467719aD09025FcC6cF6F8311755809d45a5E5f3/info.json @@ -10,8 +10,8 @@ "id": "0x467719aD09025FcC6cF6F8311755809d45a5E5f3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/axelarcore" + "name": "x", + "url": "https://x.com/axelarcore" }, { "name": "github", @@ -65,4 +65,4 @@ "tags": [ "wrapped" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x467Bccd9d29f223BcE8043b84E8C8B282827790F/info.json b/blockchains/ethereum/assets/0x467Bccd9d29f223BcE8043b84E8C8B282827790F/info.json index c8f6a2d0f74e6..604705528a00c 100644 --- a/blockchains/ethereum/assets/0x467Bccd9d29f223BcE8043b84E8C8B282827790F/info.json +++ b/blockchains/ethereum/assets/0x467Bccd9d29f223BcE8043b84E8C8B282827790F/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/telcoin" }, { - "name": "twitter", - "url": "https://twitter.com/telcoin_team" + "name": "x", + "url": "https://x.com/telcoin_team" }, { "name": "blog", diff --git a/blockchains/ethereum/assets/0x4691937a7508860F876c9c0a2a617E7d9E945D4B/info.json b/blockchains/ethereum/assets/0x4691937a7508860F876c9c0a2a617E7d9E945D4B/info.json index 88b0c41dcbc75..a7535575a8ed9 100644 --- a/blockchains/ethereum/assets/0x4691937a7508860F876c9c0a2a617E7d9E945D4B/info.json +++ b/blockchains/ethereum/assets/0x4691937a7508860F876c9c0a2a617E7d9E945D4B/info.json @@ -1,5 +1,5 @@ { - "name": "WOO Network", + "name": "WOO", "type": "ERC20", "symbol": "WOO", "decimals": 18, diff --git a/blockchains/ethereum/assets/0x469b7AEbA4fbFca20eFC563C49d0c74445179D59/info.json b/blockchains/ethereum/assets/0x469b7AEbA4fbFca20eFC563C49d0c74445179D59/info.json new file mode 100644 index 0000000000000..f0b5df7280d32 --- /dev/null +++ b/blockchains/ethereum/assets/0x469b7AEbA4fbFca20eFC563C49d0c74445179D59/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZEDXION", + "type": "ERC20", + "symbol": "ZEDX", + "decimals": 9, + "website": "https://zedxion.io", + "description": "Zedxion offers a comprehensive solution to the major problems faced by the traditional, fiat-driven monetary system. Building a crypto powered ecosystem comprising Zedxion Token.", + "explorer": "https://etherscan.io/token/0x469b7AEbA4fbFca20eFC563C49d0c74445179D59", + "status": "active", + "id": "0x469b7AEbA4fbFca20eFC563C49d0c74445179D59" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x469b7AEbA4fbFca20eFC563C49d0c74445179D59/logo.png b/blockchains/ethereum/assets/0x469b7AEbA4fbFca20eFC563C49d0c74445179D59/logo.png new file mode 100644 index 0000000000000..0a6dc86b993a3 Binary files /dev/null and b/blockchains/ethereum/assets/0x469b7AEbA4fbFca20eFC563C49d0c74445179D59/logo.png differ diff --git a/blockchains/ethereum/assets/0x46D886887B6908183032c75dee1b731B26D653c6/info.json b/blockchains/ethereum/assets/0x46D886887B6908183032c75dee1b731B26D653c6/info.json index e9e68043c24c1..6cab2d62f1dfc 100644 --- a/blockchains/ethereum/assets/0x46D886887B6908183032c75dee1b731B26D653c6/info.json +++ b/blockchains/ethereum/assets/0x46D886887B6908183032c75dee1b731B26D653c6/info.json @@ -14,8 +14,8 @@ "url": "https://greenflows.gitbook.io/litepaper/" }, { - "name": "twitter", - "url": "https://twitter.com/greenflowstech" + "name": "x", + "url": "https://x.com/greenflowstech" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x46c0A02A877C1412CB32B57028B2F771c0364a7E/info.json b/blockchains/ethereum/assets/0x46c0A02A877C1412CB32B57028B2F771c0364a7E/info.json new file mode 100644 index 0000000000000..3bbe95a87fbc6 --- /dev/null +++ b/blockchains/ethereum/assets/0x46c0A02A877C1412CB32B57028B2F771c0364a7E/info.json @@ -0,0 +1,28 @@ +{ + "name": "Invesco Optimum Yld Dvsfd Cmd Str No K-1 ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "PDBCon", + "decimals": 18, + "description": "PDBCon is the Ondo Tokenized version of the Invesco Optimum Yld Dvsfd Cmd Str No K-1 ETF, giving tokenholders economic exposure similar to holding PDBC and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x46c0A02A877C1412CB32B57028B2F771c0364a7E", + "status": "active", + "id": "0x46c0A02A877C1412CB32B57028B2F771c0364a7E", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/invesco-optimum-yld-dvsfd-cmd-str-no-k-1-etf-ondo-tokenized-etf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/invesco-optimum-yld-dvsfd-cmd-str-no-k-1-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x46c0A02A877C1412CB32B57028B2F771c0364a7E/logo.png b/blockchains/ethereum/assets/0x46c0A02A877C1412CB32B57028B2F771c0364a7E/logo.png new file mode 100644 index 0000000000000..4d148ee9a083d Binary files /dev/null and b/blockchains/ethereum/assets/0x46c0A02A877C1412CB32B57028B2F771c0364a7E/logo.png differ diff --git a/blockchains/ethereum/assets/0x47000A7B27a75D44FfaDfe9D0B97fA04D569B323/info.json b/blockchains/ethereum/assets/0x47000A7B27a75D44FfaDfe9D0B97fA04D569B323/info.json new file mode 100644 index 0000000000000..abffd6ced81fc --- /dev/null +++ b/blockchains/ethereum/assets/0x47000A7B27a75D44FfaDfe9D0B97fA04D569B323/info.json @@ -0,0 +1,21 @@ +{ + "name": "Trumpius Maximus", + "website": "https://www.trumpiusmaximus.vip/", + "description": "Trumpius Maximus is a meme token.", + "explorer": "https://etherscan.io/token/0x47000A7B27a75D44FfaDfe9D0B97fA04D569B323", + "type": "ERC20", + "symbol": "TRUMPIUS", + "decimals": 9, + "status": "active", + "id": "0x47000A7B27a75D44FfaDfe9D0B97fA04D569B323", + "links": [ + { + "name": "x", + "url": "https://x.com/TrumpiusOnETH" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/trumpius-maximus/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x47000A7B27a75D44FfaDfe9D0B97fA04D569B323/logo.png b/blockchains/ethereum/assets/0x47000A7B27a75D44FfaDfe9D0B97fA04D569B323/logo.png new file mode 100644 index 0000000000000..1f940b8e981a6 Binary files /dev/null and b/blockchains/ethereum/assets/0x47000A7B27a75D44FfaDfe9D0B97fA04D569B323/logo.png differ diff --git a/blockchains/ethereum/assets/0x47110d43175f7f2C2425E7d15792acC5817EB44f/info.json b/blockchains/ethereum/assets/0x47110d43175f7f2C2425E7d15792acC5817EB44f/info.json index 9300f24493643..c5de9505a0b00 100644 --- a/blockchains/ethereum/assets/0x47110d43175f7f2C2425E7d15792acC5817EB44f/info.json +++ b/blockchains/ethereum/assets/0x47110d43175f7f2C2425E7d15792acC5817EB44f/info.json @@ -18,8 +18,8 @@ "url": "https://discord.com/invite/indexcoop" }, { - "name": "twitter", - "url": "https://twitter.com/indexcoop" + "name": "x", + "url": "https://x.com/indexcoop" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4730fB1463A6F1F44AEB45F6c5c422427f37F4D0/info.json b/blockchains/ethereum/assets/0x4730fB1463A6F1F44AEB45F6c5c422427f37F4D0/info.json index 01067ee5e4e8e..7d8f0a7b30e78 100644 --- a/blockchains/ethereum/assets/0x4730fB1463A6F1F44AEB45F6c5c422427f37F4D0/info.json +++ b/blockchains/ethereum/assets/0x4730fB1463A6F1F44AEB45F6c5c422427f37F4D0/info.json @@ -3,39 +3,23 @@ "symbol": "FOUR", "type": "ERC20", "decimals": 18, - "description": "FOUR is 4thTech ecosystem utility token used as the primary means to enable services such as data file and instant messages wallet to wallet exchange.", - "website": "https://4thtech.io/", + "description": "FOUR token is a technical and incentive component dedicated to; (1) RTA (i.e. right-to-access), and; (2) MTO (i.e. multiple-transfer option) models in the ecosystem of Web3 communication.", + "website": "https://the4thpillar.io/", "explorer": "https://etherscan.io/token/0x4730fB1463A6F1F44AEB45F6c5c422427f37F4D0", "status": "active", "id": "0x4730fB1463A6F1F44AEB45F6c5c422427f37F4D0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/4thtechProject" + "name": "x", + "url": "https://x.com/4pfour" }, { "name": "coingecko", "url": "https://coingecko.com/en/coins/the-4th-pillar" - }, - { - "name": "medium", - "url": "https://medium.com/the4thpillar" - }, - { - "name": "telegram", - "url": "https://t.me/the4thpillarofficial" - }, - { - "name": "youtube", - "url": "https://youtube.com/c/4thpillartechnologies" - }, - { - "name": "whitepaper", - "url": "https://github.com/4thtech/static-assets/raw/main/pdf/whitepaper.pdf" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/4thpillar-technologies/" } + ], + "tags": [ + "governance", + "staking" ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4730fB1463A6F1F44AEB45F6c5c422427f37F4D0/logo.png b/blockchains/ethereum/assets/0x4730fB1463A6F1F44AEB45F6c5c422427f37F4D0/logo.png index 7acec2d200f0c..b0d3e287349fe 100644 Binary files a/blockchains/ethereum/assets/0x4730fB1463A6F1F44AEB45F6c5c422427f37F4D0/logo.png and b/blockchains/ethereum/assets/0x4730fB1463A6F1F44AEB45F6c5c422427f37F4D0/logo.png differ diff --git a/blockchains/ethereum/assets/0x4740735AA98Dc8aa232BD049f8F0210458E7fCa3/info.json b/blockchains/ethereum/assets/0x4740735AA98Dc8aa232BD049f8F0210458E7fCa3/info.json index 52fdd1314f833..d6c8a691f45f4 100644 --- a/blockchains/ethereum/assets/0x4740735AA98Dc8aa232BD049f8F0210458E7fCa3/info.json +++ b/blockchains/ethereum/assets/0x4740735AA98Dc8aa232BD049f8F0210458E7fCa3/info.json @@ -10,8 +10,8 @@ "id": "0x4740735AA98Dc8aa232BD049f8F0210458E7fCa3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ridotto_io" + "name": "x", + "url": "https://x.com/ridotto_io" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0x477a3d269266994F15E9C43A8D9C0561C4928088/info.json b/blockchains/ethereum/assets/0x477a3d269266994F15E9C43A8D9C0561C4928088/info.json new file mode 100644 index 0000000000000..b5184982dd635 --- /dev/null +++ b/blockchains/ethereum/assets/0x477a3d269266994F15E9C43A8D9C0561C4928088/info.json @@ -0,0 +1,21 @@ +{ + "name": "Ÿ", + "symbol": "YAI", + "decimals": 18, + "type": "ERC20", + "website": "https://www.yoracle.ai/", + "description": "Yoracle is an advanced real-time AI-driven market prediction solutions.", + "explorer": "https://etherscan.io/token/0x477a3d269266994F15E9C43A8D9C0561C4928088", + "status": "active", + "id": "0x477a3d269266994F15E9C43A8D9C0561C4928088", + "links": [ + { + "name": "x", + "url": "https://x.com/yai_erc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/yoracle-ai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x477a3d269266994F15E9C43A8D9C0561C4928088/logo.png b/blockchains/ethereum/assets/0x477a3d269266994F15E9C43A8D9C0561C4928088/logo.png new file mode 100644 index 0000000000000..28836bd0aab06 Binary files /dev/null and b/blockchains/ethereum/assets/0x477a3d269266994F15E9C43A8D9C0561C4928088/logo.png differ diff --git a/blockchains/ethereum/assets/0x487d62468282Bd04ddf976631C23128A425555EE/info.json b/blockchains/ethereum/assets/0x487d62468282Bd04ddf976631C23128A425555EE/info.json new file mode 100644 index 0000000000000..29cf359f1ccad --- /dev/null +++ b/blockchains/ethereum/assets/0x487d62468282Bd04ddf976631C23128A425555EE/info.json @@ -0,0 +1,25 @@ +{ + "name": "UPCX", + "type": "ERC20", + "symbol": "UPC", + "decimals": 5, + "description": "An open-source payment system based on a high-speed blockchain optimized for payments and financial services.", + "website": "https://upcx.io/", + "explorer": "https://etherscan.io/token/0x487d62468282Bd04ddf976631C23128A425555EE", + "id": "0x487d62468282Bd04ddf976631C23128A425555EE", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Upcxofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/upcx/" + } + ], + "tags": [ + "stablecoin" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x487d62468282Bd04ddf976631C23128A425555EE/logo.png b/blockchains/ethereum/assets/0x487d62468282Bd04ddf976631C23128A425555EE/logo.png new file mode 100644 index 0000000000000..e340152c6f722 Binary files /dev/null and b/blockchains/ethereum/assets/0x487d62468282Bd04ddf976631C23128A425555EE/logo.png differ diff --git a/blockchains/ethereum/assets/0x48C3399719B582dD63eB5AADf12A40B4C3f52FA2/info.json b/blockchains/ethereum/assets/0x48C3399719B582dD63eB5AADf12A40B4C3f52FA2/info.json index da525e1249838..8d4bc47146d7f 100644 --- a/blockchains/ethereum/assets/0x48C3399719B582dD63eB5AADf12A40B4C3f52FA2/info.json +++ b/blockchains/ethereum/assets/0x48C3399719B582dD63eB5AADf12A40B4C3f52FA2/info.json @@ -10,8 +10,8 @@ "id": "0x48C3399719B582dD63eB5AADf12A40B4C3f52FA2", "links": [ { - "name": "twitter", - "url": "https://twitter.com/stakewise_io" + "name": "x", + "url": "https://x.com/stakewise_io" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0x491604c0FDF08347Dd1fa4Ee062a822A5DD06B5D/info.json b/blockchains/ethereum/assets/0x491604c0FDF08347Dd1fa4Ee062a822A5DD06B5D/info.json index 0bc0dfc00c6c4..349fc581a4fce 100644 --- a/blockchains/ethereum/assets/0x491604c0FDF08347Dd1fa4Ee062a822A5DD06B5D/info.json +++ b/blockchains/ethereum/assets/0x491604c0FDF08347Dd1fa4Ee062a822A5DD06B5D/info.json @@ -1,5 +1,5 @@ { - "name": "Cartesi Token", + "name": "Cartesi", "symbol": "CTSI", "type": "ERC20", "decimals": 18, diff --git a/blockchains/ethereum/assets/0x4922a015c4407F87432B179bb209e125432E4a2A/info.json b/blockchains/ethereum/assets/0x4922a015c4407F87432B179bb209e125432E4a2A/info.json index 48ec3dd6c9705..37828e16f3237 100644 --- a/blockchains/ethereum/assets/0x4922a015c4407F87432B179bb209e125432E4a2A/info.json +++ b/blockchains/ethereum/assets/0x4922a015c4407F87432B179bb209e125432E4a2A/info.json @@ -6,6 +6,6 @@ "website": "https://tether.to/", "description": "Each XAU₮ token represents ownership of one troy fine ounce of physical gold on a specific gold bar. Furthermore, Tether Gold (XAU₮) is the only product among the competition that offers zero custody fees and has direct control over the physical gold storage.", "explorer": "https://etherscan.io/token/0x4922a015c4407F87432B179bb209e125432E4a2A", - "status": "active", + "status": "abandoned", "id": "0x4922a015c4407F87432B179bb209e125432E4a2A" } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4956b52aE2fF65D74CA2d61207523288e4528f96/info.json b/blockchains/ethereum/assets/0x4956b52aE2fF65D74CA2d61207523288e4528f96/info.json new file mode 100644 index 0000000000000..90e26b871a13b --- /dev/null +++ b/blockchains/ethereum/assets/0x4956b52aE2fF65D74CA2d61207523288e4528f96/info.json @@ -0,0 +1,17 @@ +{ + "name": "Resolv Liquidity Provider", + "type": "ERC20", + "symbol": "RLP", + "decimals": 18, + "description": "THE TRUE DELTA-NEUTRAL STABLECOIN THAT WORKS", + "website": "https://resolv.xyz", + "explorer": "https://etherscan.io/token/0x4956b52ae2ff65d74ca2d61207523288e4528f96", + "id": "0x4956b52aE2fF65D74CA2d61207523288e4528f96", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/ResolvLabs" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4956b52aE2fF65D74CA2d61207523288e4528f96/logo.png b/blockchains/ethereum/assets/0x4956b52aE2fF65D74CA2d61207523288e4528f96/logo.png new file mode 100644 index 0000000000000..23e76856552ca Binary files /dev/null and b/blockchains/ethereum/assets/0x4956b52aE2fF65D74CA2d61207523288e4528f96/logo.png differ diff --git a/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/info.json b/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/info.json index fffdd7e5e2407..1534b3fd4be5f 100644 --- a/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/info.json +++ b/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/info.json @@ -1,28 +1,32 @@ { - "name": "DinoLFG", + "name": "DinoLFG (DINO)", "type": "ERC20", "symbol": "DINO", "decimals": 18, - "website": "https://dinolfg.com/", - "description": "$Dino is a Meme Coin.", - "explorer": "https://etherscan.io/token/0x49642110b712c1fd7261bc074105e9e44676c68f", + "website": "https://dinolfg.com", + "description": "$DINO - Building Bridges Between Crypto, Games, and Financial Adventure!", + "explorer": "https://etherscan.io/token/0x49642110B712C1FD7261Bc074105E9E44676c68F", "status": "active", "id": "0x49642110B712C1FD7261Bc074105E9E44676c68F", "links": [ { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/dinolfg/" - }, - { - "name": "twitter", - "url": "https://twitter.com/DinoLFG" + "name": "x", + "url": "https://x.com/DinoLFG" }, { "name": "telegram", "url": "https://t.me/OfficialDinoLFG" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dinolfg" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/dinolfg" } ], "tags": [ "memes" ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/logo.png b/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/logo.png index 20ddde9870601..db3c7b86943a9 100644 Binary files a/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/logo.png and b/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/logo.png differ diff --git a/blockchains/ethereum/assets/0x49E833337ECe7aFE375e44F4E3e8481029218E5c/info.json b/blockchains/ethereum/assets/0x49E833337ECe7aFE375e44F4E3e8481029218E5c/info.json index b068894a8d77d..e9248f72c4513 100644 --- a/blockchains/ethereum/assets/0x49E833337ECe7aFE375e44F4E3e8481029218E5c/info.json +++ b/blockchains/ethereum/assets/0x49E833337ECe7aFE375e44F4E3e8481029218E5c/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/valuedefi" }, { - "name": "twitter", - "url": "https://twitter.com/value_defi" + "name": "x", + "url": "https://x.com/value_defi" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x49bc8340ACD3521150d7cCD8a4a3510D2F5130Ca/info.json b/blockchains/ethereum/assets/0x49bc8340ACD3521150d7cCD8a4a3510D2F5130Ca/info.json index 2a3328a84d92a..0ac6df630252b 100644 --- a/blockchains/ethereum/assets/0x49bc8340ACD3521150d7cCD8a4a3510D2F5130Ca/info.json +++ b/blockchains/ethereum/assets/0x49bc8340ACD3521150d7cCD8a4a3510D2F5130Ca/info.json @@ -10,8 +10,8 @@ "id": "0x49bc8340ACD3521150d7cCD8a4a3510D2F5130Ca", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Ukantoken" + "name": "x", + "url": "https://x.com/Ukantoken" }, { "name": "github", @@ -29,4 +29,4 @@ "tags": [ "memes" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x49fb8ad7578148E17c3eF0C344CE23A66ed372C4/info.json b/blockchains/ethereum/assets/0x49fb8ad7578148E17c3eF0C344CE23A66ed372C4/info.json new file mode 100644 index 0000000000000..df30551c84ea7 --- /dev/null +++ b/blockchains/ethereum/assets/0x49fb8ad7578148E17c3eF0C344CE23A66ed372C4/info.json @@ -0,0 +1,17 @@ +{ + "name": "tao.bot", + "type": "ERC20", + "symbol": "TAOBOT", + "decimals": 18, + "website": "https://tao.bot/", + "description": "TAO Bot delivers AI-driven tools for automating trading strategies and market analysis.", + "explorer": "https://etherscan.io/token/0x49fb8ad7578148e17c3ef0c344ce23a66ed372c4", + "status": "active", + "id": "0x49fb8ad7578148E17c3eF0C344CE23A66ed372C4", + "links": [ + { + "name": "x", + "url": "https://x.com/taodotbot" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x49fb8ad7578148E17c3eF0C344CE23A66ed372C4/logo.png b/blockchains/ethereum/assets/0x49fb8ad7578148E17c3eF0C344CE23A66ed372C4/logo.png new file mode 100644 index 0000000000000..6badbcd40ea4c Binary files /dev/null and b/blockchains/ethereum/assets/0x49fb8ad7578148E17c3eF0C344CE23A66ed372C4/logo.png differ diff --git a/blockchains/ethereum/assets/0x4A029F7bCf33AcB03547D8fA7be840347973e24e/info.json b/blockchains/ethereum/assets/0x4A029F7bCf33AcB03547D8fA7be840347973e24e/info.json new file mode 100644 index 0000000000000..6950e820415ca --- /dev/null +++ b/blockchains/ethereum/assets/0x4A029F7bCf33AcB03547D8fA7be840347973e24e/info.json @@ -0,0 +1,25 @@ +{ + "name": "MAZZE", + "website": "https://mazze.io/", + "description": "Mazze is a Layer 1 blockchain that redefines performance through its PoW-based DAG architecture, achieving 40,000 TPS and 1s finality. Experience EVM compatible smart contracts and unparalleled privacy with ZK proofs.", + "explorer": "https://etherscan.io/token/0x4a029f7bcf33acb03547d8fa7be840347973e24e", + "type": "ERC20", + "symbol": "MAZZE", + "decimals": 18, + "status": "active", + "id": "0x4A029F7bCf33AcB03547D8fA7be840347973e24e", + "links": [ + { + "name": "x", + "url": "https://x.com/MazzeLabs" + }, + { + "name": "telegram", + "url": "https://t.me/MazzeLabs" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mazze/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4A029F7bCf33AcB03547D8fA7be840347973e24e/logo.png b/blockchains/ethereum/assets/0x4A029F7bCf33AcB03547D8fA7be840347973e24e/logo.png new file mode 100644 index 0000000000000..bd8eea56be178 Binary files /dev/null and b/blockchains/ethereum/assets/0x4A029F7bCf33AcB03547D8fA7be840347973e24e/logo.png differ diff --git a/blockchains/ethereum/assets/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2/info.json b/blockchains/ethereum/assets/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2/info.json new file mode 100644 index 0000000000000..1f8951de79b9f --- /dev/null +++ b/blockchains/ethereum/assets/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2/info.json @@ -0,0 +1,24 @@ +{ + "name": "Salesforce tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Salesforce xStock (CRMx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. CRMx tracks the price of Salesforce, Inc. (the underlying). CRMx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Salesforce, Inc., whilst maintaining the benefits of blockchain technology. Key Benefits Salesforce is a technology company that pioneered cloud-based customer relationship management (CRM) and now offers a broad suite of AI-powered platforms for various business functions, including sales, service, marketing, and commerce.", + "explorer": "https://etherscan.io/token/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2", + "type": "ERC20", + "symbol": "CRMX", + "decimals": 18, + "status": "active", + "id": "0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/salesforce-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2/logo.png b/blockchains/ethereum/assets/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2/logo.png new file mode 100644 index 0000000000000..058611507c29f Binary files /dev/null and b/blockchains/ethereum/assets/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2/logo.png differ diff --git a/blockchains/ethereum/assets/0x4AD2118Da8a65eaa81402A3d583FEF6eE76BDf3F/info.json b/blockchains/ethereum/assets/0x4AD2118Da8a65eaa81402A3d583FEF6eE76BDf3F/info.json new file mode 100644 index 0000000000000..92abd52acd398 --- /dev/null +++ b/blockchains/ethereum/assets/0x4AD2118Da8a65eaa81402A3d583FEF6eE76BDf3F/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wells Fargo (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "WFCon is the Ondo Tokenized version of Wells Fargo, giving tokenholders economic exposure similar to holding WFC and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x4AD2118Da8a65eaa81402A3d583FEF6eE76BDf3F", + "type": "ERC20", + "symbol": "WFCon", + "decimals": 18, + "status": "active", + "id": "0x4AD2118Da8a65eaa81402A3d583FEF6eE76BDf3F", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wells-fargo-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4AD2118Da8a65eaa81402A3d583FEF6eE76BDf3F/logo.png b/blockchains/ethereum/assets/0x4AD2118Da8a65eaa81402A3d583FEF6eE76BDf3F/logo.png new file mode 100644 index 0000000000000..25f5f95397377 Binary files /dev/null and b/blockchains/ethereum/assets/0x4AD2118Da8a65eaa81402A3d583FEF6eE76BDf3F/logo.png differ diff --git a/blockchains/ethereum/assets/0x4B1E80cAC91e2216EEb63e29B957eB91Ae9C2Be8/info.json b/blockchains/ethereum/assets/0x4B1E80cAC91e2216EEb63e29B957eB91Ae9C2Be8/info.json index d8a638a5d2868..268b4ca0a3d0f 100644 --- a/blockchains/ethereum/assets/0x4B1E80cAC91e2216EEb63e29B957eB91Ae9C2Be8/info.json +++ b/blockchains/ethereum/assets/0x4B1E80cAC91e2216EEb63e29B957eB91Ae9C2Be8/info.json @@ -10,8 +10,8 @@ "id": "0x4B1E80cAC91e2216EEb63e29B957eB91Ae9C2Be8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/jup_project" + "name": "x", + "url": "https://x.com/jup_project" }, { "name": "blog", diff --git a/blockchains/ethereum/assets/0x4B2C54b80B77580dc02A0f6734d3BAD733F50900/info.json b/blockchains/ethereum/assets/0x4B2C54b80B77580dc02A0f6734d3BAD733F50900/info.json index 2f5a4064c3625..abaf68afdd646 100644 --- a/blockchains/ethereum/assets/0x4B2C54b80B77580dc02A0f6734d3BAD733F50900/info.json +++ b/blockchains/ethereum/assets/0x4B2C54b80B77580dc02A0f6734d3BAD733F50900/info.json @@ -10,8 +10,8 @@ "id": "0x4B2C54b80B77580dc02A0f6734d3BAD733F50900", "links": [ { - "name": "twitter", - "url": "https://twitter.com/kibainukiba" + "name": "x", + "url": "https://x.com/kibainukiba" }, { "name": "coinmarketcap", @@ -25,4 +25,4 @@ "tags": [ "memes" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4B3a0c6d668B43F3f07904E124328659b90Bb4Ca/info.json b/blockchains/ethereum/assets/0x4B3a0c6d668B43F3f07904E124328659b90Bb4Ca/info.json index 904247ebe55bb..410baa514b6da 100644 --- a/blockchains/ethereum/assets/0x4B3a0c6d668B43F3f07904E124328659b90Bb4Ca/info.json +++ b/blockchains/ethereum/assets/0x4B3a0c6d668B43F3f07904E124328659b90Bb4Ca/info.json @@ -10,8 +10,8 @@ "id": "0x4B3a0c6d668B43F3f07904E124328659b90Bb4Ca", "links": [ { - "name": "twitter", - "url": "https://twitter.com/AceDcoin" + "name": "x", + "url": "https://x.com/AceDcoin" }, { "name": "discord", diff --git a/blockchains/ethereum/assets/0x4Ba012f6e411a1bE55b98E9E62C3A4ceb16eC88B/info.json b/blockchains/ethereum/assets/0x4Ba012f6e411a1bE55b98E9E62C3A4ceb16eC88B/info.json index 676b0f59062a4..634b6b9f97b8b 100644 --- a/blockchains/ethereum/assets/0x4Ba012f6e411a1bE55b98E9E62C3A4ceb16eC88B/info.json +++ b/blockchains/ethereum/assets/0x4Ba012f6e411a1bE55b98E9E62C3A4ceb16eC88B/info.json @@ -10,8 +10,8 @@ "id": "0x4Ba012f6e411a1bE55b98E9E62C3A4ceb16eC88B", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Cybercoin" + "name": "x", + "url": "https://x.com/Cybercoin" }, { "name": "discord", diff --git a/blockchains/ethereum/assets/0x4C1746A800D224393fE2470C70A35717eD4eA5F1/info.json b/blockchains/ethereum/assets/0x4C1746A800D224393fE2470C70A35717eD4eA5F1/info.json new file mode 100644 index 0000000000000..3b7dedb79f7b1 --- /dev/null +++ b/blockchains/ethereum/assets/0x4C1746A800D224393fE2470C70A35717eD4eA5F1/info.json @@ -0,0 +1,21 @@ +{ + "name": "Plume", + "symbol": "Plume", + "type": "ERC20", + "decimals": 18, + "description": "Plume is a full stack L1 blockchain purpose-built for RWAfi. The products and chain make it easy for anyone to interact with RWAs just like they would with any other crypto native asset. Earn, trade, speculate on financial instruments, collectibles, alternative assets, and more.", + "website": "https://plumenetwork.xyz/", + "explorer": "https://etherscan.io/token/0x4C1746A800D224393fE2470C70A35717eD4eA5F1", + "status": "active", + "id": "0x4C1746A800D224393fE2470C70A35717eD4eA5F1", + "links": [ + { + "name": "x", + "url": "https://x.com/plumenetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/plume/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4C1746A800D224393fE2470C70A35717eD4eA5F1/logo.png b/blockchains/ethereum/assets/0x4C1746A800D224393fE2470C70A35717eD4eA5F1/logo.png new file mode 100644 index 0000000000000..731d8ddef9b9f Binary files /dev/null and b/blockchains/ethereum/assets/0x4C1746A800D224393fE2470C70A35717eD4eA5F1/logo.png differ diff --git a/blockchains/ethereum/assets/0x4C45bbEc2fF7810ef4a77ad7BD4757C446Fe4155/info.json b/blockchains/ethereum/assets/0x4C45bbEc2fF7810ef4a77ad7BD4757C446Fe4155/info.json new file mode 100644 index 0000000000000..e22af3f5d4ff1 --- /dev/null +++ b/blockchains/ethereum/assets/0x4C45bbEc2fF7810ef4a77ad7BD4757C446Fe4155/info.json @@ -0,0 +1,21 @@ +{ + "name": "Jungle", + "type": "ERC20", + "symbol": "JNGL", + "decimals": 18, + "website": "https://jnglcoin.com/", + "description": "$JNGL powers the Jungle Labz ecosystem, consisting of Supreme Kong and 3 other collections that were initially rugged by previous team back in April 2022.", + "explorer": "https://etherscan.io/token/0x4c45bbec2ff7810ef4a77ad7bd4757c446fe4155", + "status": "active", + "id": "0x4C45bbEc2fF7810ef4a77ad7BD4757C446Fe4155", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jungle-labz/" + }, + { + "name": "x", + "url": "https://x.com/jnglcoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4C45bbEc2fF7810ef4a77ad7BD4757C446Fe4155/logo.png b/blockchains/ethereum/assets/0x4C45bbEc2fF7810ef4a77ad7BD4757C446Fe4155/logo.png new file mode 100644 index 0000000000000..e84ba5bf1ff6a Binary files /dev/null and b/blockchains/ethereum/assets/0x4C45bbEc2fF7810ef4a77ad7BD4757C446Fe4155/logo.png differ diff --git a/blockchains/ethereum/assets/0x4C82c8cD9a218612DCe60b156B73A36705645e3b/info.json b/blockchains/ethereum/assets/0x4C82c8cD9a218612DCe60b156B73A36705645e3b/info.json new file mode 100644 index 0000000000000..dc99c8b6c4179 --- /dev/null +++ b/blockchains/ethereum/assets/0x4C82c8cD9a218612DCe60b156B73A36705645e3b/info.json @@ -0,0 +1,24 @@ +{ + "name": "McDonald's (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "MCDon is the Ondo Tokenized version of McDonald's, giving tokenholders economic exposure similar to holding MCD and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x4C82c8cD9a218612DCe60b156B73A36705645e3b", + "type": "ERC20", + "symbol": "MCDon", + "decimals": 18, + "status": "active", + "id": "0x4C82c8cD9a218612DCe60b156B73A36705645e3b", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mcdonalds-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4C82c8cD9a218612DCe60b156B73A36705645e3b/logo.png b/blockchains/ethereum/assets/0x4C82c8cD9a218612DCe60b156B73A36705645e3b/logo.png new file mode 100644 index 0000000000000..af75d5c9507bd Binary files /dev/null and b/blockchains/ethereum/assets/0x4C82c8cD9a218612DCe60b156B73A36705645e3b/logo.png differ diff --git a/blockchains/ethereum/assets/0x4Cf89ca06ad997bC732Dc876ed2A7F26a9E7f361/info.json b/blockchains/ethereum/assets/0x4Cf89ca06ad997bC732Dc876ed2A7F26a9E7f361/info.json index 38722dc385c24..ac8462a81ed4d 100644 --- a/blockchains/ethereum/assets/0x4Cf89ca06ad997bC732Dc876ed2A7F26a9E7f361/info.json +++ b/blockchains/ethereum/assets/0x4Cf89ca06ad997bC732Dc876ed2A7F26a9E7f361/info.json @@ -10,8 +10,8 @@ "id": "0x4Cf89ca06ad997bC732Dc876ed2A7F26a9E7f361", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MysteriumNet" + "name": "x", + "url": "https://x.com/MysteriumNet" }, { "name": "telegram", @@ -37,4 +37,4 @@ "tags": [ "privacy" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4D0528598F916Fd1D8dc80e5f54a8fEEDcFd4b18/info.json b/blockchains/ethereum/assets/0x4D0528598F916Fd1D8dc80e5f54a8fEEDcFd4b18/info.json index 92be17d7b6b8c..08f16eed6b642 100644 --- a/blockchains/ethereum/assets/0x4D0528598F916Fd1D8dc80e5f54a8fEEDcFd4b18/info.json +++ b/blockchains/ethereum/assets/0x4D0528598F916Fd1D8dc80e5f54a8fEEDcFd4b18/info.json @@ -1,7 +1,7 @@ { "name": "ATOS", "website": "https://atoshi.org/", - "description": "ԭ������ATOSHI���ǻ����������ڵ��̡��罻����Ϸ����֤�����ڵ���ҵ����Ӧ���������ۺϽ����������Ŀ����ͨ����������ֲ�ʽ�˱�����������һ��ȫ��Χ�ڵ���������̬Ӧ����ϵ���������Ի���Ӧ�ó���������������������ʵ���ҵ��", + "description": "ATOSHI is a cryptocurrency created for diverse usage between countries, a new cryptocurrency for ordinary people, which you can “mine” by your phone. ATOS may be the best option to store value, increase value and ease the life for the people of the world.", "explorer": "https://etherscan.io/token/0x4D0528598F916Fd1D8dc80e5f54a8fEEDcFd4b18", "type": "ERC20", "symbol": "ATOS", @@ -10,8 +10,8 @@ "id": "0x4D0528598F916Fd1D8dc80e5f54a8fEEDcFd4b18", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Twitter" + "name": "x", + "url": "https://x.com/x" }, { "name": "facebook", diff --git a/blockchains/ethereum/assets/0x4D0528598F916Fd1D8dc80e5f54a8fEEDcFd4b18/logo.png b/blockchains/ethereum/assets/0x4D0528598F916Fd1D8dc80e5f54a8fEEDcFd4b18/logo.png index 801e94cb4d830..b7f02b4b34dda 100644 Binary files a/blockchains/ethereum/assets/0x4D0528598F916Fd1D8dc80e5f54a8fEEDcFd4b18/logo.png and b/blockchains/ethereum/assets/0x4D0528598F916Fd1D8dc80e5f54a8fEEDcFd4b18/logo.png differ diff --git a/blockchains/ethereum/assets/0x4D21aFfD27183B07335935F81A5C26b6A5A15355/info.json b/blockchains/ethereum/assets/0x4D21aFfD27183B07335935F81A5C26b6A5A15355/info.json new file mode 100644 index 0000000000000..c43c9ecc9ed08 --- /dev/null +++ b/blockchains/ethereum/assets/0x4D21aFfD27183B07335935F81A5C26b6A5A15355/info.json @@ -0,0 +1,24 @@ +{ + "name": "Apollo Global Management (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "APOon is the Ondo Tokenized version of Apollo Global Management, giving tokenholders economic exposure similar to holding APO and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x4D21aFfD27183B07335935F81A5C26b6A5A15355", + "type": "ERC20", + "symbol": "APOon", + "decimals": 18, + "status": "active", + "id": "0x4D21aFfD27183B07335935F81A5C26b6A5A15355", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/apollo-global-management-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4D21aFfD27183B07335935F81A5C26b6A5A15355/logo.png b/blockchains/ethereum/assets/0x4D21aFfD27183B07335935F81A5C26b6A5A15355/logo.png new file mode 100644 index 0000000000000..fd6e35f66e796 Binary files /dev/null and b/blockchains/ethereum/assets/0x4D21aFfD27183B07335935F81A5C26b6A5A15355/logo.png differ diff --git a/blockchains/ethereum/assets/0x4DBE83285fc959011f65Dc613AeEA638F18D3B92/info.json b/blockchains/ethereum/assets/0x4DBE83285fc959011f65Dc613AeEA638F18D3B92/info.json new file mode 100644 index 0000000000000..32d183ed3cbef --- /dev/null +++ b/blockchains/ethereum/assets/0x4DBE83285fc959011f65Dc613AeEA638F18D3B92/info.json @@ -0,0 +1,48 @@ +{ + "name": "DOGAMI", + "type": "ERC20", + "symbol": "DOGA", + "decimals": 5, + "website": "https://dogami.com", + "description": "Launched in 2021, DOGAMÍ is an entertainment company that develops web3 games centered around the Dogamí, mystical 3D dog avatars imbued with spiritual powers. DOGAMÍ users can experience different interactive experiences in an immersive universe. $DOGA is the primary currency of the DOGAMÍ universe, a multichain-utility token limited to 1B tokens with multiple use cases.", + "explorer": "https://etherscan.io/token/0x4DBE83285fc959011f65Dc613AeEA638F18D3B92", + "status": "active", + "id": "0x4DBE83285fc959011f65Dc613AeEA638F18D3B92", + "links": [ + { + "name": "x", + "url": "https://x.com/dogami" + }, + { + "name": "github", + "url": "https://github.com/dogami-code/Smart-Contracts-EVM" + }, + { + "name": "telegram", + "url": "https://t.me/DogamiAnnouncement" + }, + { + "name": "discord", + "url": "https://discord.com/invite/dogamiofficial" + }, + { + "name": "medium", + "url": "https://dogami.medium.com" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.dogami.com" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dogami/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/dogami" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4DBE83285fc959011f65Dc613AeEA638F18D3B92/logo.png b/blockchains/ethereum/assets/0x4DBE83285fc959011f65Dc613AeEA638F18D3B92/logo.png new file mode 100644 index 0000000000000..a995169b7f600 Binary files /dev/null and b/blockchains/ethereum/assets/0x4DBE83285fc959011f65Dc613AeEA638F18D3B92/logo.png differ diff --git a/blockchains/ethereum/assets/0x4DC26fC5854e7648a064a4ABD590bBE71724C277/info.json b/blockchains/ethereum/assets/0x4DC26fC5854e7648a064a4ABD590bBE71724C277/info.json new file mode 100644 index 0000000000000..a68951f3d7f70 --- /dev/null +++ b/blockchains/ethereum/assets/0x4DC26fC5854e7648a064a4ABD590bBE71724C277/info.json @@ -0,0 +1,24 @@ +{ + "name": "Animecoin", + "type": "ERC20", + "symbol": "ANIME", + "decimals": 18, + "website": "https://www.anime.xyz/", + "description": "Backed by Azuki, the premier Web3 anime brand, ANIME empowers one billion global fans to shape and own the future of anime culture. Anime fans are among the most passionate and creative communities in the world. Yet, they have long been passive consumers. Animecoin transforms the anime ecosystem into a community-owned creative economy.", + "explorer": "https://etherscan.io/token/0x4DC26fC5854e7648a064a4ABD590bBE71724C277", + "status": "active", + "id": "0x4DC26fC5854e7648a064a4ABD590bBE71724C277", + "links": [ + { + "name": "x", + "url": "https://x.com/animecoin" + }, + { + "name": "whitepaper", + "url": "https://www.anime.xyz/blueprint" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4DC26fC5854e7648a064a4ABD590bBE71724C277/logo.png b/blockchains/ethereum/assets/0x4DC26fC5854e7648a064a4ABD590bBE71724C277/logo.png new file mode 100644 index 0000000000000..a1311b72a45a2 Binary files /dev/null and b/blockchains/ethereum/assets/0x4DC26fC5854e7648a064a4ABD590bBE71724C277/logo.png differ diff --git a/blockchains/ethereum/assets/0x4E0fCa55a6C3A94720ded91153A27F60E26B9AA8/info.json b/blockchains/ethereum/assets/0x4E0fCa55a6C3A94720ded91153A27F60E26B9AA8/info.json index b760fd42e5f9e..c3e62d8874601 100644 --- a/blockchains/ethereum/assets/0x4E0fCa55a6C3A94720ded91153A27F60E26B9AA8/info.json +++ b/blockchains/ethereum/assets/0x4E0fCa55a6C3A94720ded91153A27F60E26B9AA8/info.json @@ -14,8 +14,8 @@ "url": "https://boostco.in/wp-content/uploads/2021/10/BoostWhitePaper.pdf" }, { - "name": "twitter", - "url": "https://twitter.com/TheBoostCoin" + "name": "x", + "url": "https://x.com/TheBoostCoin" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4E15361FD6b4BB609Fa63C81A2be19d873717870/info.json b/blockchains/ethereum/assets/0x4E15361FD6b4BB609Fa63C81A2be19d873717870/info.json index b1da5c93daa7b..e65d1976c48f4 100644 --- a/blockchains/ethereum/assets/0x4E15361FD6b4BB609Fa63C81A2be19d873717870/info.json +++ b/blockchains/ethereum/assets/0x4E15361FD6b4BB609Fa63C81A2be19d873717870/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/FantomFDN" + "name": "x", + "url": "https://x.com/FantomFDN" }, { "name": "telegram", @@ -29,4 +29,4 @@ "url": "https://coinmarketcap.com/currencies/fantom/" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4E9623B7e5b6438542458f5EE828d65c24d3AF8c/info.json b/blockchains/ethereum/assets/0x4E9623B7e5b6438542458f5EE828d65c24d3AF8c/info.json new file mode 100644 index 0000000000000..b4b74f85dbdec --- /dev/null +++ b/blockchains/ethereum/assets/0x4E9623B7e5b6438542458f5EE828d65c24d3AF8c/info.json @@ -0,0 +1,30 @@ +{ + "name": "Jerry The Turtle By Matt Furie", + "type": "ERC20", + "symbol": "JYAI", + "decimals": 18, + "description": "Jerry the Turtle, created by Matt Furie, is a character inspired by Furie’s artistic style. JERRY is also an AI-driven meme coin with an ambitious vision. The goal is to establish an AI-powered production house dedicated to creating a video series or episodes featuring characters from Matt Furie’s universe alongside those from Jerry’s world.", + "website": "https://www.jerrytheturtle.com/", + "explorer": "https://etherscan.io/token/0x4e9623b7e5b6438542458f5ee828d65c24d3af8c", + "id": "0x4E9623B7e5b6438542458f5EE828d65c24d3AF8c", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/JYAI_JERRY" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jerry-the-turtle-by-matt-furie/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/jerry-the-turtle-by-matt-furie" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4E9623B7e5b6438542458f5EE828d65c24d3AF8c/logo.png b/blockchains/ethereum/assets/0x4E9623B7e5b6438542458f5EE828d65c24d3AF8c/logo.png new file mode 100644 index 0000000000000..2c30c7790b908 Binary files /dev/null and b/blockchains/ethereum/assets/0x4E9623B7e5b6438542458f5EE828d65c24d3AF8c/logo.png differ diff --git a/blockchains/ethereum/assets/0x4EC1b60B96193a64AcAe44778e51f7BfF2007831/info.json b/blockchains/ethereum/assets/0x4EC1b60B96193a64AcAe44778e51f7BfF2007831/info.json new file mode 100644 index 0000000000000..fd630b304165e --- /dev/null +++ b/blockchains/ethereum/assets/0x4EC1b60B96193a64AcAe44778e51f7BfF2007831/info.json @@ -0,0 +1,21 @@ +{ + "name": "Edge", + "type": "ERC20", + "symbol": "EDGE", + "decimals": 18, + "website": "https://edge.network/", + "description": "Edge is the infrastructure of Web3. A peer-to-peer network, powered by blockchain technology and built using the spare capacity all around us.", + "explorer": "https://etherscan.io/token/0x4ec1b60b96193a64acae44778e51f7bff2007831", + "status": "active", + "id": "0x4EC1b60B96193a64AcAe44778e51f7BfF2007831", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/edge" + }, + { + "name": "x", + "url": "https://x.com/edgenetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4EC1b60B96193a64AcAe44778e51f7BfF2007831/logo.png b/blockchains/ethereum/assets/0x4EC1b60B96193a64AcAe44778e51f7BfF2007831/logo.png new file mode 100644 index 0000000000000..48f2fdeb686d1 Binary files /dev/null and b/blockchains/ethereum/assets/0x4EC1b60B96193a64AcAe44778e51f7BfF2007831/logo.png differ diff --git a/blockchains/ethereum/assets/0x4EFD92F372898B57F292De69fCe377dd7D912bDd/info.json b/blockchains/ethereum/assets/0x4EFD92F372898B57F292De69fCe377dd7D912bDd/info.json new file mode 100644 index 0000000000000..8fdd19b77b35d --- /dev/null +++ b/blockchains/ethereum/assets/0x4EFD92F372898B57F292De69fCe377dd7D912bDd/info.json @@ -0,0 +1,24 @@ +{ + "name": "PayPal (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "PYPLon is the Ondo Tokenized version of PayPal, giving tokenholders economic exposure similar to holding PYPL and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x4EFD92F372898B57F292De69fCe377dd7D912bDd", + "type": "ERC20", + "symbol": "PYPLon", + "decimals": 18, + "status": "active", + "id": "0x4EFD92F372898B57F292De69fCe377dd7D912bDd", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/paypal-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4EFD92F372898B57F292De69fCe377dd7D912bDd/logo.png b/blockchains/ethereum/assets/0x4EFD92F372898B57F292De69fCe377dd7D912bDd/logo.png new file mode 100644 index 0000000000000..feccb8f895aa5 Binary files /dev/null and b/blockchains/ethereum/assets/0x4EFD92F372898B57F292De69fCe377dd7D912bDd/logo.png differ diff --git a/blockchains/ethereum/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/info.json b/blockchains/ethereum/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/info.json new file mode 100644 index 0000000000000..2d59e81327190 --- /dev/null +++ b/blockchains/ethereum/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/info.json @@ -0,0 +1,24 @@ +{ + "name": "Peruvian Sol", + "website": "https://www.ripio.com/es/criptos/stablecoins-locales", + "description": "wPEN is a fully collateralized stablecoin pegged 1:1 to the Peruvian Sol (PEN). Issued and governed by a Ripio subsidiary, it brings PEN on-chain so Peruvians and global users can transact, save, and build on decentralized networks in their local currency.", + "explorer": "https://etherscan.io/token/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE", + "type": "ERC20", + "symbol": "wPEN", + "decimals": 18, + "status": "active", + "id": "0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/RipioApp" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/peruvian-sol" + } + ] +} diff --git a/blockchains/ethereum/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/logo.png b/blockchains/ethereum/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/logo.png new file mode 100644 index 0000000000000..bb0e72932d120 Binary files /dev/null and b/blockchains/ethereum/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/logo.png differ diff --git a/blockchains/ethereum/assets/0x4F3B49aC895a29c0908c57538932967Cdc8e3c80/info.json b/blockchains/ethereum/assets/0x4F3B49aC895a29c0908c57538932967Cdc8e3c80/info.json new file mode 100644 index 0000000000000..2a5a0eb79622a --- /dev/null +++ b/blockchains/ethereum/assets/0x4F3B49aC895a29c0908c57538932967Cdc8e3c80/info.json @@ -0,0 +1,24 @@ +{ + "name": "Enphase Energy (Ondo Tokenized)", + "type": "ERC20", + "symbol": "ENPHon", + "decimals": 18, + "description": "ENPHon is the Ondo Tokenized version of Enphase Energy, giving tokenholders economic exposure similar to holding ENPH and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x4F3B49aC895a29c0908c57538932967Cdc8e3c80", + "status": "active", + "id": "0x4F3B49aC895a29c0908c57538932967Cdc8e3c80", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/enphase-energy-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4F3B49aC895a29c0908c57538932967Cdc8e3c80/logo.png b/blockchains/ethereum/assets/0x4F3B49aC895a29c0908c57538932967Cdc8e3c80/logo.png new file mode 100644 index 0000000000000..f043e9e3e3c06 Binary files /dev/null and b/blockchains/ethereum/assets/0x4F3B49aC895a29c0908c57538932967Cdc8e3c80/logo.png differ diff --git a/blockchains/ethereum/assets/0x4F9254C83EB525f9FCf346490bbb3ed28a81C667/info.json b/blockchains/ethereum/assets/0x4F9254C83EB525f9FCf346490bbb3ed28a81C667/info.json index e502248a81a9f..cf2ae84feeab6 100644 --- a/blockchains/ethereum/assets/0x4F9254C83EB525f9FCf346490bbb3ed28a81C667/info.json +++ b/blockchains/ethereum/assets/0x4F9254C83EB525f9FCf346490bbb3ed28a81C667/info.json @@ -1,5 +1,5 @@ { - "name": "CelerToken", + "name": "Celer Network", "symbol": "CELR", "type": "ERC20", "decimals": 18, diff --git a/blockchains/ethereum/assets/0x4a220E6096B25EADb88358cb44068A3248254675/info.json b/blockchains/ethereum/assets/0x4a220E6096B25EADb88358cb44068A3248254675/info.json index 8894ecc8d0c62..2e236199e0d30 100644 --- a/blockchains/ethereum/assets/0x4a220E6096B25EADb88358cb44068A3248254675/info.json +++ b/blockchains/ethereum/assets/0x4a220E6096B25EADb88358cb44068A3248254675/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/quantnetwork" }, { - "name": "twitter", - "url": "https://twitter.com/quant_network" + "name": "x", + "url": "https://x.com/quant_network" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0x4a615bB7166210CCe20E6642a6f8Fb5d4D044496/info.json b/blockchains/ethereum/assets/0x4a615bB7166210CCe20E6642a6f8Fb5d4D044496/info.json index 7489d7af89f2f..1f2cad2159452 100644 --- a/blockchains/ethereum/assets/0x4a615bB7166210CCe20E6642a6f8Fb5d4D044496/info.json +++ b/blockchains/ethereum/assets/0x4a615bB7166210CCe20E6642a6f8Fb5d4D044496/info.json @@ -10,8 +10,8 @@ "id": "0x4a615bB7166210CCe20E6642a6f8Fb5d4D044496", "links": [ { - "name": "twitter", - "url": "https://twitter.com/naos_finance" + "name": "x", + "url": "https://x.com/naos_finance" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0x4a621d9f1b19296d1C0f87637b3A8D4978e9bf82/info.json b/blockchains/ethereum/assets/0x4a621d9f1b19296d1C0f87637b3A8D4978e9bf82/info.json index ee340d7f96ef9..1fd018a842476 100644 --- a/blockchains/ethereum/assets/0x4a621d9f1b19296d1C0f87637b3A8D4978e9bf82/info.json +++ b/blockchains/ethereum/assets/0x4a621d9f1b19296d1C0f87637b3A8D4978e9bf82/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/CyberFM/" }, { - "name": "twitter", - "url": "https://twitter.com/CyberFM" + "name": "x", + "url": "https://x.com/CyberFM" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x4b520c812E8430659FC9f12f6d0c39026C83588D/info.json b/blockchains/ethereum/assets/0x4b520c812E8430659FC9f12f6d0c39026C83588D/info.json index d1039cc00aa6a..63e788caac0ac 100644 --- a/blockchains/ethereum/assets/0x4b520c812E8430659FC9f12f6d0c39026C83588D/info.json +++ b/blockchains/ethereum/assets/0x4b520c812E8430659FC9f12f6d0c39026C83588D/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/decentralgames" + "name": "x", + "url": "https://x.com/decentralgames" }, { "name": "github", @@ -29,4 +29,4 @@ "url": "https://coinmarketcap.com/currencies/decentral-games-new/" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4bD70556ae3F8a6eC6C4080A0C327B24325438f3/info.json b/blockchains/ethereum/assets/0x4bD70556ae3F8a6eC6C4080A0C327B24325438f3/info.json index e8932778e1c0e..9d8d24854d295 100644 --- a/blockchains/ethereum/assets/0x4bD70556ae3F8a6eC6C4080A0C327B24325438f3/info.json +++ b/blockchains/ethereum/assets/0x4bD70556ae3F8a6eC6C4080A0C327B24325438f3/info.json @@ -10,8 +10,8 @@ "id": "0x4bD70556ae3F8a6eC6C4080A0C327B24325438f3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/RealHxro" + "name": "x", + "url": "https://x.com/RealHxro" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x4c11249814f11b9346808179Cf06e71ac328c1b5/info.json b/blockchains/ethereum/assets/0x4c11249814f11b9346808179Cf06e71ac328c1b5/info.json index 7335024fc6588..bdcf42e5eefde 100644 --- a/blockchains/ethereum/assets/0x4c11249814f11b9346808179Cf06e71ac328c1b5/info.json +++ b/blockchains/ethereum/assets/0x4c11249814f11b9346808179Cf06e71ac328c1b5/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/oraichain/" }, { - "name": "twitter", - "url": "https://twitter.com/Oraichain and yAI.Finance" + "name": "x", + "url": "https://x.com/Oraichain and yAI.Finance" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4c9EDD5852cd905f086C759E8383e09bff1E68B3/info.json b/blockchains/ethereum/assets/0x4c9EDD5852cd905f086C759E8383e09bff1E68B3/info.json new file mode 100644 index 0000000000000..5390b56b2b03d --- /dev/null +++ b/blockchains/ethereum/assets/0x4c9EDD5852cd905f086C759E8383e09bff1E68B3/info.json @@ -0,0 +1,29 @@ +{ + "name": "USDe", + "type": "ERC20", + "symbol": "USDe", + "decimals": 18, + "description": "Ethena is a synthetic dollar protocol built on Ethereum that will provide a crypto-native solution for money not reliant on traditional banking system infrastructure, alongside a globally accessible dollar denominated savings instrument - the 'Internet Bond'.", + "website": "https://ethena.fi/", + "explorer": "https://etherscan.io/token/0x4c9edd5852cd905f086c759e8383e09bff1e68b3", + "id": "0x4c9EDD5852cd905f086C759E8383e09bff1E68B3", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/ethena_labs" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ethena-usde/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ethena-usde" + } + ], + "tags": [ + "stablecoin" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4c9EDD5852cd905f086C759E8383e09bff1E68B3/logo.png b/blockchains/ethereum/assets/0x4c9EDD5852cd905f086C759E8383e09bff1E68B3/logo.png new file mode 100644 index 0000000000000..4aaa7e372831b Binary files /dev/null and b/blockchains/ethereum/assets/0x4c9EDD5852cd905f086C759E8383e09bff1E68B3/logo.png differ diff --git a/blockchains/ethereum/assets/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b/info.json b/blockchains/ethereum/assets/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b/info.json new file mode 100644 index 0000000000000..17d7339b83cab --- /dev/null +++ b/blockchains/ethereum/assets/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b/info.json @@ -0,0 +1,24 @@ +{ + "name": "TBLL tokenized ETF (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://etherscan.io/token/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b", + "type": "ERC20", + "symbol": "TBLLX", + "decimals": 18, + "status": "active", + "id": "0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tbll-tokenized-etf-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b/logo.png b/blockchains/ethereum/assets/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b/logo.png new file mode 100644 index 0000000000000..a937d8586cfac Binary files /dev/null and b/blockchains/ethereum/assets/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b/logo.png differ diff --git a/blockchains/ethereum/assets/0x4d1C297d39C5c1277964D0E3f8Aa901493664530/info.json b/blockchains/ethereum/assets/0x4d1C297d39C5c1277964D0E3f8Aa901493664530/info.json new file mode 100644 index 0000000000000..2bad31572f8f8 --- /dev/null +++ b/blockchains/ethereum/assets/0x4d1C297d39C5c1277964D0E3f8Aa901493664530/info.json @@ -0,0 +1,24 @@ +{ + "name": "Puffer", + "type": "ERC20", + "symbol": "PUFFER", + "decimals": 18, + "website": "https://www.puffer.fi", + "description": "Reinventing Ethereum’s Future with LRT, Rollups, AVS & Institutional Solutions.", + "explorer": "https://etherscan.io/token/0x4d1C297d39C5c1277964D0E3f8Aa901493664530", + "status": "active", + "id": "0x4d1C297d39C5c1277964D0E3f8Aa901493664530", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/puffer/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/puffer" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4d1C297d39C5c1277964D0E3f8Aa901493664530/logo.png b/blockchains/ethereum/assets/0x4d1C297d39C5c1277964D0E3f8Aa901493664530/logo.png new file mode 100644 index 0000000000000..7796f2d63e312 Binary files /dev/null and b/blockchains/ethereum/assets/0x4d1C297d39C5c1277964D0E3f8Aa901493664530/logo.png differ diff --git a/blockchains/ethereum/assets/0x4d224452801ACEd8B2F0aebE155379bb5D594381/info.json b/blockchains/ethereum/assets/0x4d224452801ACEd8B2F0aebE155379bb5D594381/info.json index fc8574ed4216d..b2aecde2dea5b 100644 --- a/blockchains/ethereum/assets/0x4d224452801ACEd8B2F0aebE155379bb5D594381/info.json +++ b/blockchains/ethereum/assets/0x4d224452801ACEd8B2F0aebE155379bb5D594381/info.json @@ -10,8 +10,8 @@ "id": "0x4d224452801ACEd8B2F0aebE155379bb5D594381", "links": [ { - "name": "twitter", - "url": "https://twitter.com/apecoin" + "name": "x", + "url": "https://x.com/apecoin" }, { "name": "coinmarketcap", diff --git a/blockchains/ethereum/assets/0x4da08a1Bff50BE96bdeD5C7019227164b49C2bFc/info.json b/blockchains/ethereum/assets/0x4da08a1Bff50BE96bdeD5C7019227164b49C2bFc/info.json index 536411ce62005..a07a50e098521 100644 --- a/blockchains/ethereum/assets/0x4da08a1Bff50BE96bdeD5C7019227164b49C2bFc/info.json +++ b/blockchains/ethereum/assets/0x4da08a1Bff50BE96bdeD5C7019227164b49C2bFc/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/MononokeInu" }, { - "name": "twitter", - "url": "https://twitter.com/Mononoke_Inu" + "name": "x", + "url": "https://x.com/Mononoke_Inu" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0x4db2c02831c9ac305FF9311Eb661f80f1dF61e07/info.json b/blockchains/ethereum/assets/0x4db2c02831c9ac305FF9311Eb661f80f1dF61e07/info.json index e5b34af2d33df..8ed681e689b23 100644 --- a/blockchains/ethereum/assets/0x4db2c02831c9ac305FF9311Eb661f80f1dF61e07/info.json +++ b/blockchains/ethereum/assets/0x4db2c02831c9ac305FF9311Eb661f80f1dF61e07/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/ichifarm/ichi-oneToken" }, { - "name": "twitter", - "url": "https://twitter.com/ichifoundation" + "name": "x", + "url": "https://x.com/ichifoundation" }, { "name": "telegram", @@ -29,4 +29,4 @@ "url": "https://medium.com/ichifarm" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B/info.json b/blockchains/ethereum/assets/0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B/info.json index c9da48ec92f3a..998224d41d59d 100644 --- a/blockchains/ethereum/assets/0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B/info.json +++ b/blockchains/ethereum/assets/0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B/info.json @@ -1,5 +1,5 @@ { - "name": "Convex Token", + "name": "Convex Finance", "website": "https://www.convexfinance.com/", "description": "A platform built to boost rewards for CRV stakers and liquidity providers alike, all in a simple and easy to use interface. Convex aims to simplify staking on Curve, as well as the CRV-locking system with the help of its native fee-earning token: CVX.", "explorer": "https://etherscan.io/token/0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B", @@ -17,8 +17,8 @@ "url": "https://coinmarketcap.com/currencies/convex-finance/" }, { - "name": "twitter", - "url": "https://twitter.com/convexfinance" + "name": "x", + "url": "https://x.com/convexfinance" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x4e56811fe186bA9dc1e4dD156821A19B8D9065b1/info.json b/blockchains/ethereum/assets/0x4e56811fe186bA9dc1e4dD156821A19B8D9065b1/info.json new file mode 100644 index 0000000000000..c9a16e283292e --- /dev/null +++ b/blockchains/ethereum/assets/0x4e56811fe186bA9dc1e4dD156821A19B8D9065b1/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether USD", + "type": "ERC20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://etherscan.io/token/0x4e56811fe186bA9dc1e4dD156821A19B8D9065b1", + "explorer": "https://etherscan.io/token/0x4e56811fe186bA9dc1e4dD156821A19B8D9065b1", + "status": "spam", + "id": "0x4e56811fe186bA9dc1e4dD156821A19B8D9065b1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4eDDb15A0abfa2c349e8065aF9214E942d9A6D36/info.json b/blockchains/ethereum/assets/0x4eDDb15A0abfa2c349e8065aF9214E942d9A6D36/info.json new file mode 100644 index 0000000000000..07ad19485fe84 --- /dev/null +++ b/blockchains/ethereum/assets/0x4eDDb15A0abfa2c349e8065aF9214E942d9A6D36/info.json @@ -0,0 +1,21 @@ +{ + "name": "XYRO", + "symbol": "XYRO", + "type": "ERC20", + "decimals": 18, + "description": "XYRO is an AI-powered gamified trading platform that leverages gamification and social features to redefine crypto, making it accessible and engaging.", + "website": "https://xyro.io/", + "explorer": "https://etherscan.io/token/0x4eddb15a0abfa2c349e8065af9214e942d9a6d36", + "status": "active", + "id": "0x4eDDb15A0abfa2c349e8065aF9214E942d9A6D36", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/xyro/" + }, + { + "name": "x", + "url": "https://x.com/xyro_io" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4eDDb15A0abfa2c349e8065aF9214E942d9A6D36/logo.png b/blockchains/ethereum/assets/0x4eDDb15A0abfa2c349e8065aF9214E942d9A6D36/logo.png new file mode 100644 index 0000000000000..fdfd0ac0d5599 Binary files /dev/null and b/blockchains/ethereum/assets/0x4eDDb15A0abfa2c349e8065aF9214E942d9A6D36/logo.png differ diff --git a/blockchains/ethereum/assets/0x4f0CA3df1c2e6b943cf82E649d576ffe7B2fABCF/info.json b/blockchains/ethereum/assets/0x4f0CA3df1c2e6b943cf82E649d576ffe7B2fABCF/info.json new file mode 100644 index 0000000000000..46c581f0d56a5 --- /dev/null +++ b/blockchains/ethereum/assets/0x4f0CA3df1c2e6b943cf82E649d576ffe7B2fABCF/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Gold Trust (Ondo)", + "website": "https://ondo.finance/", + "description": "IAUon is the Ondo Tokenized version of the iShares Gold Trust, giving tokenholders economic exposure similar to holding IAU and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x4f0CA3df1c2e6b943cf82E649d576ffe7B2fABCF", + "type": "ERC20", + "symbol": "IAUon", + "decimals": 18, + "status": "active", + "id": "0x4f0CA3df1c2e6b943cf82E649d576ffe7B2fABCF", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-gold-trust-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4f0CA3df1c2e6b943cf82E649d576ffe7B2fABCF/logo.png b/blockchains/ethereum/assets/0x4f0CA3df1c2e6b943cf82E649d576ffe7B2fABCF/logo.png new file mode 100644 index 0000000000000..140fda8b3582b Binary files /dev/null and b/blockchains/ethereum/assets/0x4f0CA3df1c2e6b943cf82E649d576ffe7B2fABCF/logo.png differ diff --git a/blockchains/ethereum/assets/0x4f8e5DE400DE08B164E7421B3EE387f461beCD1A/info.json b/blockchains/ethereum/assets/0x4f8e5DE400DE08B164E7421B3EE387f461beCD1A/info.json new file mode 100644 index 0000000000000..cc2f5de05b0c1 --- /dev/null +++ b/blockchains/ethereum/assets/0x4f8e5DE400DE08B164E7421B3EE387f461beCD1A/info.json @@ -0,0 +1,24 @@ +{ + "name": "Decentralized USD", + "type": "ERC20", + "symbol": "USDD", + "decimals": 18, + "website": "https://usdd.io/", + "description": "Decentralized USD (USDD) is a fully decentralized stablecoin pegged to the US dollar through crypto reserves.", + "explorer": "https://etherscan.io/token/0x4f8e5de400de08b164e7421b3ee387f461becd1a", + "status": "active", + "id": "0x4f8e5DE400DE08B164E7421B3EE387f461beCD1A", + "links": [ + { + "name": "x", + "url": "https://x.com/usddio" + }, + { + "name": "whitepaper", + "url": "https://usdd.io/USDD-en.pdf" + } + ], + "tags": [ + "stablecoin" + ] +} diff --git a/blockchains/ethereum/assets/0x4f8e5DE400DE08B164E7421B3EE387f461beCD1A/logo.png b/blockchains/ethereum/assets/0x4f8e5DE400DE08B164E7421B3EE387f461beCD1A/logo.png new file mode 100644 index 0000000000000..b17bf63fd3273 Binary files /dev/null and b/blockchains/ethereum/assets/0x4f8e5DE400DE08B164E7421B3EE387f461beCD1A/logo.png differ diff --git a/blockchains/ethereum/assets/0x4fE83213D56308330EC302a8BD641f1d0113A4Cc/info.json b/blockchains/ethereum/assets/0x4fE83213D56308330EC302a8BD641f1d0113A4Cc/info.json index efb075237d1ea..a5da53e7beeb2 100644 --- a/blockchains/ethereum/assets/0x4fE83213D56308330EC302a8BD641f1d0113A4Cc/info.json +++ b/blockchains/ethereum/assets/0x4fE83213D56308330EC302a8BD641f1d0113A4Cc/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/nucypher/" }, { - "name": "twitter", - "url": "https://twitter.com/nucypher" + "name": "x", + "url": "https://x.com/nucypher" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x5026F006B85729a8b14553FAE6af249aD16c9aaB/info.json b/blockchains/ethereum/assets/0x5026F006B85729a8b14553FAE6af249aD16c9aaB/info.json index a92907479bac0..cfb3d27436e2e 100644 --- a/blockchains/ethereum/assets/0x5026F006B85729a8b14553FAE6af249aD16c9aaB/info.json +++ b/blockchains/ethereum/assets/0x5026F006B85729a8b14553FAE6af249aD16c9aaB/info.json @@ -10,8 +10,8 @@ "id": "0x5026F006B85729a8b14553FAE6af249aD16c9aaB", "links": [ { - "name": "twitter", - "url": "https://twitter.com/wojakcoineth" + "name": "x", + "url": "https://x.com/wojakcoineth" }, { "name": "coinmarketcap", diff --git a/blockchains/ethereum/assets/0x50327c6c5a14DCaDE707ABad2E27eB517df87AB5/info.json b/blockchains/ethereum/assets/0x50327c6c5a14DCaDE707ABad2E27eB517df87AB5/info.json new file mode 100644 index 0000000000000..3ba47ccacdb9a --- /dev/null +++ b/blockchains/ethereum/assets/0x50327c6c5a14DCaDE707ABad2E27eB517df87AB5/info.json @@ -0,0 +1,33 @@ +{ + "name": "TRON", + "type": "ERC20", + "symbol": "TRX", + "decimals": 6, + "website": "https://tron.network/", + "description": "TRON is a dedicated to build the infrastructure for a truly decentralized Internet.", + "explorer": "https://etherscan.io/token/0x50327c6c5a14dcade707abad2e27eb517df87ab5", + "status": "active", + "id": "0x50327c6c5a14DCaDE707ABad2E27eB517df87AB5", + "links": [ + { + "name": "x", + "url": "https://x.com/Tronfoundation" + }, + { + "name": "telegram", + "url": "https://t.me/tronnetworkEN" + }, + { + "name": "whitepaper", + "url": "https://tron.network/static/doc/white_paper_v_2_0.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tron/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tron/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x50327c6c5a14DCaDE707ABad2E27eB517df87AB5/logo.png b/blockchains/ethereum/assets/0x50327c6c5a14DCaDE707ABad2E27eB517df87AB5/logo.png new file mode 100644 index 0000000000000..74ec9785f66d5 Binary files /dev/null and b/blockchains/ethereum/assets/0x50327c6c5a14DCaDE707ABad2E27eB517df87AB5/logo.png differ diff --git a/blockchains/ethereum/assets/0x5047fc5C9D7c49Ab22e390d13646a6A3a2476eff/info.json b/blockchains/ethereum/assets/0x5047fc5C9D7c49Ab22e390d13646a6A3a2476eff/info.json index 45b97319fb0a7..03ac9317a4f95 100644 --- a/blockchains/ethereum/assets/0x5047fc5C9D7c49Ab22e390d13646a6A3a2476eff/info.json +++ b/blockchains/ethereum/assets/0x5047fc5C9D7c49Ab22e390d13646a6A3a2476eff/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/ichifarm/ichi-oneToken" }, { - "name": "twitter", - "url": "https://twitter.com/ichifarm" + "name": "x", + "url": "https://x.com/ichifarm" }, { "name": "telegram", @@ -33,4 +33,4 @@ "url": "https://discord.com/invite/DvsYCfK8" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x509A38b7a1cC0dcd83Aa9d06214663D9eC7c7F4a/info.json b/blockchains/ethereum/assets/0x509A38b7a1cC0dcd83Aa9d06214663D9eC7c7F4a/info.json index 5e43cb385b0ee..2c0df8dfbfbd6 100644 --- a/blockchains/ethereum/assets/0x509A38b7a1cC0dcd83Aa9d06214663D9eC7c7F4a/info.json +++ b/blockchains/ethereum/assets/0x509A38b7a1cC0dcd83Aa9d06214663D9eC7c7F4a/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/blocksquare" }, { - "name": "twitter", - "url": "https://twitter.com/blocksquare_io" + "name": "x", + "url": "https://x.com/blocksquare_io" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0x50D1c9771902476076eCFc8B2A83Ad6b9355a4c9/info.json b/blockchains/ethereum/assets/0x50D1c9771902476076eCFc8B2A83Ad6b9355a4c9/info.json index 97939b396c2da..ceeba21586a2f 100644 --- a/blockchains/ethereum/assets/0x50D1c9771902476076eCFc8B2A83Ad6b9355a4c9/info.json +++ b/blockchains/ethereum/assets/0x50D1c9771902476076eCFc8B2A83Ad6b9355a4c9/info.json @@ -14,8 +14,8 @@ "url": "https://blog.ftx.com/" }, { - "name": "twitter", - "url": "https://twitter.com/FTX_Official" + "name": "x", + "url": "https://x.com/FTX_Official" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x50DE6856358Cc35f3A9a57eAAA34BD4cB707d2cd/info.json b/blockchains/ethereum/assets/0x50DE6856358Cc35f3A9a57eAAA34BD4cB707d2cd/info.json index 2537f777a744d..affbb803ba2b6 100644 --- a/blockchains/ethereum/assets/0x50DE6856358Cc35f3A9a57eAAA34BD4cB707d2cd/info.json +++ b/blockchains/ethereum/assets/0x50DE6856358Cc35f3A9a57eAAA34BD4cB707d2cd/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/razor-network" }, { - "name": "twitter", - "url": "https://twitter.com/razor_network" + "name": "x", + "url": "https://x.com/razor_network" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1/info.json b/blockchains/ethereum/assets/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1/info.json new file mode 100644 index 0000000000000..2910f53a1d4dd --- /dev/null +++ b/blockchains/ethereum/assets/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1/info.json @@ -0,0 +1,24 @@ +{ + "name": "AppLovin tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "AppLovin xStock (APPx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. APPx tracks the price of AppLovin Corporation (the underlying). APPx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of AppLovin Corporation, whilst maintaining the benefits of blockchain technology. AppLovin is a global mobile technology company that provides businesses with solutions to connect with their target audience, market, monetize, and grow their apps and content.", + "explorer": "https://etherscan.io/token/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1", + "type": "ERC20", + "symbol": "APPX", + "decimals": 18, + "status": "active", + "id": "0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/applovin-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1/logo.png b/blockchains/ethereum/assets/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1/logo.png new file mode 100644 index 0000000000000..29c2803eba26a Binary files /dev/null and b/blockchains/ethereum/assets/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1/logo.png differ diff --git a/blockchains/ethereum/assets/0x510Dd21055188Eda378714DE3bb5591Ffa0CC468/info.json b/blockchains/ethereum/assets/0x510Dd21055188Eda378714DE3bb5591Ffa0CC468/info.json new file mode 100644 index 0000000000000..adec4c9c7af14 --- /dev/null +++ b/blockchains/ethereum/assets/0x510Dd21055188Eda378714DE3bb5591Ffa0CC468/info.json @@ -0,0 +1,28 @@ +{ + "name": "BitGo Holdings (Ondo Tokenized)", + "type": "ERC20", + "symbol": "BTGOon", + "decimals": 18, + "description": "BTGOon is the Ondo Tokenized version of BitGo Holdings, giving tokenholders economic exposure similar to holding BTGO and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x510Dd21055188Eda378714DE3bb5591Ffa0CC468", + "status": "active", + "id": "0x510Dd21055188Eda378714DE3bb5591Ffa0CC468", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bitgo-holdings-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bitgo-holdings-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x510Dd21055188Eda378714DE3bb5591Ffa0CC468/logo.png b/blockchains/ethereum/assets/0x510Dd21055188Eda378714DE3bb5591Ffa0CC468/logo.png new file mode 100644 index 0000000000000..ea30060042871 Binary files /dev/null and b/blockchains/ethereum/assets/0x510Dd21055188Eda378714DE3bb5591Ffa0CC468/logo.png differ diff --git a/blockchains/ethereum/assets/0x5123C0555Bc9064db9fD8676d077E06D39393866/info.json b/blockchains/ethereum/assets/0x5123C0555Bc9064db9fD8676d077E06D39393866/info.json new file mode 100644 index 0000000000000..7aa16011c5d87 --- /dev/null +++ b/blockchains/ethereum/assets/0x5123C0555Bc9064db9fD8676d077E06D39393866/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Ethereum", + "type": "ERC20", + "symbol": "FAKE ETH", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://etherscan.io/token/0x5123C0555Bc9064db9fD8676d077E06D39393866", + "explorer": "https://etherscan.io/token/0x5123C0555Bc9064db9fD8676d077E06D39393866", + "status": "spam", + "id": "0x5123C0555Bc9064db9fD8676d077E06D39393866" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x514910771AF9Ca656af840dff83E8264EcF986CA/info.json b/blockchains/ethereum/assets/0x514910771AF9Ca656af840dff83E8264EcF986CA/info.json index a636133d27459..f9c8a64058f69 100644 --- a/blockchains/ethereum/assets/0x514910771AF9Ca656af840dff83E8264EcF986CA/info.json +++ b/blockchains/ethereum/assets/0x514910771AF9Ca656af840dff83E8264EcF986CA/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/smartcontractkit/chainlink" }, { - "name": "twitter", - "url": "https://twitter.com/chainlink" + "name": "x", + "url": "https://x.com/chainlink" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0x5150956E082C748Ca837a5dFa0a7C10CA4697f9c/info.json b/blockchains/ethereum/assets/0x5150956E082C748Ca837a5dFa0a7C10CA4697f9c/info.json index 5a72fea8c1c6a..f75cecdb0a879 100644 --- a/blockchains/ethereum/assets/0x5150956E082C748Ca837a5dFa0a7C10CA4697f9c/info.json +++ b/blockchains/ethereum/assets/0x5150956E082C748Ca837a5dFa0a7C10CA4697f9c/info.json @@ -1,7 +1,7 @@ { "name": "Zeedex", "website": "https://zeedex.io", - "twitter": "https://twitter.com/Zeedexio", + "x": "https://x.com/Zeedexio", "telegram": "https://t.me/zeedexio", "description": "Zeedex is a decentralized exchange where users can trade, stake, lend and borrow cryptocurrencies.", "explorer": "https://etherscan.io/token/0x5150956E082C748Ca837a5dFa0a7C10CA4697f9c", diff --git a/blockchains/ethereum/assets/0x51FE2E572e97BFEB1D719809d743Ec2675924EDc/info.json b/blockchains/ethereum/assets/0x51FE2E572e97BFEB1D719809d743Ec2675924EDc/info.json index 8d3adabe6dfbc..5c38ea41c440d 100644 --- a/blockchains/ethereum/assets/0x51FE2E572e97BFEB1D719809d743Ec2675924EDc/info.json +++ b/blockchains/ethereum/assets/0x51FE2E572e97BFEB1D719809d743Ec2675924EDc/info.json @@ -6,12 +6,12 @@ "website": "https://www.vlaunch.com", "description": "First Fully Influencer-Backed Multi-Chain Launchpad", "explorer": "https://etherscan.io/token/0x51FE2E572e97BFEB1D719809d743Ec2675924EDc", - "status": "active", + "status": "abandoned", "id": "0x51FE2E572e97BFEB1D719809d743Ec2675924EDc", "links": [ { - "name": "twitter", - "url": "https://twitter.com/vlaunchcom" + "name": "x", + "url": "https://x.com/vlaunchcom" }, { "name": "telegram", @@ -41,4 +41,4 @@ "tags": [ "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x51FE2E572e97BFEB1D719809d743Ec2675924EDc/logo.png b/blockchains/ethereum/assets/0x51FE2E572e97BFEB1D719809d743Ec2675924EDc/logo.png deleted file mode 100644 index 62b8c49184690..0000000000000 Binary files a/blockchains/ethereum/assets/0x51FE2E572e97BFEB1D719809d743Ec2675924EDc/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x51a82905bE168B0eE9855bCfE64109FC88eB87d6/info.json b/blockchains/ethereum/assets/0x51a82905bE168B0eE9855bCfE64109FC88eB87d6/info.json new file mode 100644 index 0000000000000..d9085c9788e1f --- /dev/null +++ b/blockchains/ethereum/assets/0x51a82905bE168B0eE9855bCfE64109FC88eB87d6/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether USD", + "type": "ERC20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://etherscan.io/token/0x51a82905bE168B0eE9855bCfE64109FC88eB87d6", + "explorer": "https://etherscan.io/token/0x51a82905bE168B0eE9855bCfE64109FC88eB87d6", + "status": "spam", + "id": "0x51a82905bE168B0eE9855bCfE64109FC88eB87d6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x51cB253744189f11241becb29BeDd3F1b5384fdB/info.json b/blockchains/ethereum/assets/0x51cB253744189f11241becb29BeDd3F1b5384fdB/info.json new file mode 100644 index 0000000000000..c7dd9cb018834 --- /dev/null +++ b/blockchains/ethereum/assets/0x51cB253744189f11241becb29BeDd3F1b5384fdB/info.json @@ -0,0 +1,21 @@ +{ +"name": "Dimitra", +"symbol": "DMTR", +"type": "ERC20", +"decimals": 18, +"description": "The DMTR token provides a catalyst that drives the ever-expanding Connected Farmer ecosystem. Dimitra launched a digital token to accelerate achieving our mission, enriching the lives of small to medium-size farmers everywhere, and to grow economies around the world.", +"website": "https://dimitra.io/", +"explorer": "https://etherscan.io/token/0x51cB253744189f11241becb29BeDd3F1b5384fdB", +"status": "active", +"id": "0x51cB253744189f11241becb29BeDd3F1b5384fdB", +"links": [ + { + "name": "x", + "url": "https://x.com/dimitratech" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dimitra/" + } +] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x51cB253744189f11241becb29BeDd3F1b5384fdB/logo.png b/blockchains/ethereum/assets/0x51cB253744189f11241becb29BeDd3F1b5384fdB/logo.png new file mode 100644 index 0000000000000..33c368f91b3c7 Binary files /dev/null and b/blockchains/ethereum/assets/0x51cB253744189f11241becb29BeDd3F1b5384fdB/logo.png differ diff --git a/blockchains/ethereum/assets/0x521860bB5dF5468358875266B89BFE90d990C6e7/info.json b/blockchains/ethereum/assets/0x521860bB5dF5468358875266B89BFE90d990C6e7/info.json new file mode 100644 index 0000000000000..057fd79284a78 --- /dev/null +++ b/blockchains/ethereum/assets/0x521860bB5dF5468358875266B89BFE90d990C6e7/info.json @@ -0,0 +1,24 @@ +{ + "name": "DFDV tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "DFDV tokenized stock (xStock) (DFDVx) is a cryptocurrency launched in 2025and operates on the Solana platform. DFDV tokenized stock (xStock) has a current supply of 89,998.8299641. The last known price of DFDV tokenized stock (xStock) is 17.41975634 USD and is up 0.35 over the last 24 hours. It is currently trading on 13 active market(s) with $2,140,595.18 traded over the last 24 hours. More information can be found at https://defidevcorp.com/.", + "explorer": "https://etherscan.io/token/0x521860bB5dF5468358875266B89BFE90d990C6e7", + "type": "ERC20", + "symbol": "DFDVx", + "decimals": 18, + "status": "active", + "id": "0x521860bB5dF5468358875266B89BFE90d990C6e7", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dfdv-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x521860bB5dF5468358875266B89BFE90d990C6e7/logo.png b/blockchains/ethereum/assets/0x521860bB5dF5468358875266B89BFE90d990C6e7/logo.png new file mode 100644 index 0000000000000..cf1609ac71978 Binary files /dev/null and b/blockchains/ethereum/assets/0x521860bB5dF5468358875266B89BFE90d990C6e7/logo.png differ diff --git a/blockchains/ethereum/assets/0x5228a22e72ccC52d415EcFd199F99D0665E7733b/info.json b/blockchains/ethereum/assets/0x5228a22e72ccC52d415EcFd199F99D0665E7733b/info.json index 977302c34d7b9..9c1a905599bc5 100644 --- a/blockchains/ethereum/assets/0x5228a22e72ccC52d415EcFd199F99D0665E7733b/info.json +++ b/blockchains/ethereum/assets/0x5228a22e72ccC52d415EcFd199F99D0665E7733b/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/provable-things" }, { - "name": "twitter", - "url": "https://twitter.com/pToken pBTC" + "name": "x", + "url": "https://x.com/pToken pBTC" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x525A8F6F3Ba4752868cde25164382BfbaE3990e1/info.json b/blockchains/ethereum/assets/0x525A8F6F3Ba4752868cde25164382BfbaE3990e1/info.json index 31b5728e6ee33..1b225ca3f867e 100644 --- a/blockchains/ethereum/assets/0x525A8F6F3Ba4752868cde25164382BfbaE3990e1/info.json +++ b/blockchains/ethereum/assets/0x525A8F6F3Ba4752868cde25164382BfbaE3990e1/info.json @@ -10,8 +10,8 @@ "id": "0x525A8F6F3Ba4752868cde25164382BfbaE3990e1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/nymproject" + "name": "x", + "url": "https://x.com/nymproject" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0x5283D291DBCF85356A21bA090E6db59121208b44/info.json b/blockchains/ethereum/assets/0x5283D291DBCF85356A21bA090E6db59121208b44/info.json index 1a1009d13e404..15842e17df530 100644 --- a/blockchains/ethereum/assets/0x5283D291DBCF85356A21bA090E6db59121208b44/info.json +++ b/blockchains/ethereum/assets/0x5283D291DBCF85356A21bA090E6db59121208b44/info.json @@ -10,8 +10,8 @@ "id": "0x5283D291DBCF85356A21bA090E6db59121208b44", "links": [ { - "name": "twitter", - "url": "https://twitter.com/blur_io" + "name": "x", + "url": "https://x.com/blur_io" }, { "name": "coingecko", diff --git a/blockchains/ethereum/assets/0x52A8845DF664D76C69d2EEa607CD793565aF42B8/info.json b/blockchains/ethereum/assets/0x52A8845DF664D76C69d2EEa607CD793565aF42B8/info.json new file mode 100644 index 0000000000000..3504e54f4a12c --- /dev/null +++ b/blockchains/ethereum/assets/0x52A8845DF664D76C69d2EEa607CD793565aF42B8/info.json @@ -0,0 +1,21 @@ +{ + "name": "ApeX", + "type": "ERC20", + "symbol": "APEX", + "decimals": 18, + "website": "https://apex.exchange/", + "description": "ApeX is a decentralized, non-custodial, permissionless, censorship-resistant perpetual derivative protocol that enables the introduction of perpetual swap markets for any token pairs.", + "explorer": "https://etherscan.io/token/0x52A8845DF664D76C69d2EEa607CD793565aF42B8", + "status": "active", + "id": "0x52A8845DF664D76C69d2EEa607CD793565aF42B8", + "links": [ + { + "name": "x", + "url": "https://x.com/OfficialApeXdex" + }, + { + "name": "telegram", + "url": "https://t.me/ApeXdex" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x52A8845DF664D76C69d2EEa607CD793565aF42B8/logo.png b/blockchains/ethereum/assets/0x52A8845DF664D76C69d2EEa607CD793565aF42B8/logo.png new file mode 100644 index 0000000000000..9557c9481f1d2 Binary files /dev/null and b/blockchains/ethereum/assets/0x52A8845DF664D76C69d2EEa607CD793565aF42B8/logo.png differ diff --git a/blockchains/ethereum/assets/0x5322A3556F979cE2180B30e689a9436fDDCB1021/info.json b/blockchains/ethereum/assets/0x5322A3556F979cE2180B30e689a9436fDDCB1021/info.json index 592d700ba549d..c70265a08a4d2 100644 --- a/blockchains/ethereum/assets/0x5322A3556F979cE2180B30e689a9436fDDCB1021/info.json +++ b/blockchains/ethereum/assets/0x5322A3556F979cE2180B30e689a9436fDDCB1021/info.json @@ -10,8 +10,8 @@ "id": "0x5322A3556F979cE2180B30e689a9436fDDCB1021", "links": [ { - "name": "twitter", - "url": "https://twitter.com/yTSLA" + "name": "x", + "url": "https://x.com/yTSLA" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0x54012cDF4119DE84218F7EB90eEB87e25aE6EBd7/info.json b/blockchains/ethereum/assets/0x54012cDF4119DE84218F7EB90eEB87e25aE6EBd7/info.json index ff4f48701bdda..401f6b59985a0 100644 --- a/blockchains/ethereum/assets/0x54012cDF4119DE84218F7EB90eEB87e25aE6EBd7/info.json +++ b/blockchains/ethereum/assets/0x54012cDF4119DE84218F7EB90eEB87e25aE6EBd7/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/luffyinutoken" + "name": "x", + "url": "https://x.com/luffyinutoken" }, { "name": "telegram", @@ -29,4 +29,4 @@ "url": "https://facebook.com/groups/luffytoken" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x54021fDe36B7c4C4F9C35b02fb9A153eD8F5938A/info.json b/blockchains/ethereum/assets/0x54021fDe36B7c4C4F9C35b02fb9A153eD8F5938A/info.json new file mode 100644 index 0000000000000..e16fd4962eae8 --- /dev/null +++ b/blockchains/ethereum/assets/0x54021fDe36B7c4C4F9C35b02fb9A153eD8F5938A/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares MSCI Brazil ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "EWZon", + "decimals": 18, + "description": "EWZon is the Ondo Tokenized version of the iShares MSCI Brazil ETF, giving tokenholders economic exposure similar to holding EWZ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x54021fDe36B7c4C4F9C35b02fb9A153eD8F5938A", + "status": "active", + "id": "0x54021fDe36B7c4C4F9C35b02fb9A153eD8F5938A", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-msci-brazil-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x54021fDe36B7c4C4F9C35b02fb9A153eD8F5938A/logo.png b/blockchains/ethereum/assets/0x54021fDe36B7c4C4F9C35b02fb9A153eD8F5938A/logo.png new file mode 100644 index 0000000000000..2ce033b091a15 Binary files /dev/null and b/blockchains/ethereum/assets/0x54021fDe36B7c4C4F9C35b02fb9A153eD8F5938A/logo.png differ diff --git a/blockchains/ethereum/assets/0x548308E91ec9F285C7bFf05295baDBD56a6e4971/info.json b/blockchains/ethereum/assets/0x548308E91ec9F285C7bFf05295baDBD56a6e4971/info.json new file mode 100644 index 0000000000000..7b8084b356fa8 --- /dev/null +++ b/blockchains/ethereum/assets/0x548308E91ec9F285C7bFf05295baDBD56a6e4971/info.json @@ -0,0 +1,24 @@ +{ + "name": "Oracle tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Oracle xStock (ORCLx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. ORCLx tracks the price of Oracle Corporation (the underlying). ORCLx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Oracle Corporation, whilst maintaining the benefits of blockchain technology. Oracle Corporation is a large, publicly-held multinational company headquartered in Austin, Texas, offering enterprise applications and cloud infrastructure.", + "explorer": "https://etherscan.io/token/0x548308E91ec9F285C7bFf05295baDBD56a6e4971", + "type": "ERC20", + "symbol": "ORCLX", + "decimals": 18, + "status": "active", + "id": "0x548308E91ec9F285C7bFf05295baDBD56a6e4971", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/oracle-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x548308E91ec9F285C7bFf05295baDBD56a6e4971/logo.png b/blockchains/ethereum/assets/0x548308E91ec9F285C7bFf05295baDBD56a6e4971/logo.png new file mode 100644 index 0000000000000..8179bd1129e15 Binary files /dev/null and b/blockchains/ethereum/assets/0x548308E91ec9F285C7bFf05295baDBD56a6e4971/logo.png differ diff --git a/blockchains/ethereum/assets/0x549020a9Cb845220D66d3E9c6D9F9eF61C981102/info.json b/blockchains/ethereum/assets/0x549020a9Cb845220D66d3E9c6D9F9eF61C981102/info.json index 12a82d30f7af8..836955d192b37 100644 --- a/blockchains/ethereum/assets/0x549020a9Cb845220D66d3E9c6D9F9eF61C981102/info.json +++ b/blockchains/ethereum/assets/0x549020a9Cb845220D66d3E9c6D9F9eF61C981102/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/sidusHeroes" }, { - "name": "twitter", - "url": "https://twitter.com/galaxy_sidus" + "name": "x", + "url": "https://x.com/galaxy_sidus" }, { "name": "medium", @@ -35,4 +35,4 @@ "nft", "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x54C1Ff361b402f66c13107421E6A431C3375EF24/info.json b/blockchains/ethereum/assets/0x54C1Ff361b402f66c13107421E6A431C3375EF24/info.json new file mode 100644 index 0000000000000..31fc343dff359 --- /dev/null +++ b/blockchains/ethereum/assets/0x54C1Ff361b402f66c13107421E6A431C3375EF24/info.json @@ -0,0 +1,24 @@ +{ + "name": "Franklin High Yield Corporate ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "FLHYon", + "decimals": 18, + "description": "FLHYon is the Ondo Tokenized version of the Franklin High Yield Corporate ETF, giving tokenholders economic exposure similar to holding FLHY and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x54C1Ff361b402f66c13107421E6A431C3375EF24", + "status": "active", + "id": "0x54C1Ff361b402f66c13107421E6A431C3375EF24", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/franklin-high-yield-corporate-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x54C1Ff361b402f66c13107421E6A431C3375EF24/logo.png b/blockchains/ethereum/assets/0x54C1Ff361b402f66c13107421E6A431C3375EF24/logo.png new file mode 100644 index 0000000000000..344948ada7dd1 Binary files /dev/null and b/blockchains/ethereum/assets/0x54C1Ff361b402f66c13107421E6A431C3375EF24/logo.png differ diff --git a/blockchains/ethereum/assets/0x54C9EA2E9C9E8eD865Db4A4ce6711C2a0d5063Ba/info.json b/blockchains/ethereum/assets/0x54C9EA2E9C9E8eD865Db4A4ce6711C2a0d5063Ba/info.json index be984c2b67e90..8dacc31a72642 100644 --- a/blockchains/ethereum/assets/0x54C9EA2E9C9E8eD865Db4A4ce6711C2a0d5063Ba/info.json +++ b/blockchains/ethereum/assets/0x54C9EA2E9C9E8eD865Db4A4ce6711C2a0d5063Ba/info.json @@ -10,8 +10,8 @@ "id": "0x54C9EA2E9C9E8eD865Db4A4ce6711C2a0d5063Ba", "links": [ { - "name": "twitter", - "url": "https://twitter.com/bartertradeio" + "name": "x", + "url": "https://x.com/bartertradeio" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x555907a0b5c32DF0fEb35401187aED60a9191D74/info.json b/blockchains/ethereum/assets/0x555907a0b5c32DF0fEb35401187aED60a9191D74/info.json new file mode 100644 index 0000000000000..b30747b76de4a --- /dev/null +++ b/blockchains/ethereum/assets/0x555907a0b5c32DF0fEb35401187aED60a9191D74/info.json @@ -0,0 +1,21 @@ +{ + "name": "trumpwifhat", + "symbol": "TRUMP", + "type": "ERC20", + "decimals": 18, + "description": "Trumpwifhat isn’t just another meme project. It’s a symbol of progress and innovation in the ever-evolving landscape of finance and technology", + "website": "https://trumpwifhat.one", + "explorer": "https://etherscan.io/token/0x555907a0b5c32DF0fEb35401187aED60a9191D74", + "status": "active", + "id": "0x555907a0b5c32DF0fEb35401187aED60a9191D74", + "links": [ + { + "name": "x", + "url": "https://x.com/trumpwfx" + }, + { + "name": "telegram", + "url": "https://t.me/trumptwh" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x555907a0b5c32DF0fEb35401187aED60a9191D74/logo.png b/blockchains/ethereum/assets/0x555907a0b5c32DF0fEb35401187aED60a9191D74/logo.png new file mode 100644 index 0000000000000..7ed9afd969050 Binary files /dev/null and b/blockchains/ethereum/assets/0x555907a0b5c32DF0fEb35401187aED60a9191D74/logo.png differ diff --git a/blockchains/ethereum/assets/0x556c3cbDCA77a7f21AFE15b17e644e0e98e64Df4/info.json b/blockchains/ethereum/assets/0x556c3cbDCA77a7f21AFE15b17e644e0e98e64Df4/info.json new file mode 100644 index 0000000000000..9a180271b5c64 --- /dev/null +++ b/blockchains/ethereum/assets/0x556c3cbDCA77a7f21AFE15b17e644e0e98e64Df4/info.json @@ -0,0 +1,21 @@ +{ + "name": "Mao", + "type": "ERC20", + "symbol": "MAO", + "decimals": 18, + "website": "https://maos.world/", + "description": "Mao is a meme token that set his sights on Ethereum, ready to conquer the blockchain and make it his new home. Armed with his fierce determination and a few hilarious blunders, he's on a mission to create the greatest meme the internet has ever seen.", + "explorer": "https://etherscan.io/token/0x556c3cbDCA77a7f21AFE15b17e644e0e98e64Df4", + "status": "active", + "id": "0x556c3cbDCA77a7f21AFE15b17e644e0e98e64Df4", + "links": [ + { + "name": "x", + "url": "https://x.com/maos_world" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mao-world/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x556c3cbDCA77a7f21AFE15b17e644e0e98e64Df4/logo.png b/blockchains/ethereum/assets/0x556c3cbDCA77a7f21AFE15b17e644e0e98e64Df4/logo.png new file mode 100644 index 0000000000000..468cb923b5577 Binary files /dev/null and b/blockchains/ethereum/assets/0x556c3cbDCA77a7f21AFE15b17e644e0e98e64Df4/logo.png differ diff --git a/blockchains/ethereum/assets/0x55720eF5b023Fd043AE5F8D2e526030207978950/info.json b/blockchains/ethereum/assets/0x55720eF5b023Fd043AE5F8D2e526030207978950/info.json new file mode 100644 index 0000000000000..072ce6cc72e75 --- /dev/null +++ b/blockchains/ethereum/assets/0x55720eF5b023Fd043AE5F8D2e526030207978950/info.json @@ -0,0 +1,24 @@ +{ + "name": "Salesforce (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "CRMon is the Ondo Tokenized version of Salesforce, giving tokenholders economic exposure similar to holding CRM and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x55720eF5b023Fd043AE5F8D2e526030207978950", + "type": "ERC20", + "symbol": "CRMon", + "decimals": 18, + "status": "active", + "id": "0x55720eF5b023Fd043AE5F8D2e526030207978950", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/salesforce-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x55720eF5b023Fd043AE5F8D2e526030207978950/logo.png b/blockchains/ethereum/assets/0x55720eF5b023Fd043AE5F8D2e526030207978950/logo.png new file mode 100644 index 0000000000000..1ba6eba769286 Binary files /dev/null and b/blockchains/ethereum/assets/0x55720eF5b023Fd043AE5F8D2e526030207978950/logo.png differ diff --git a/blockchains/ethereum/assets/0x55aF5865807b196bD0197e0902746F31FBcCFa58/info.json b/blockchains/ethereum/assets/0x55aF5865807b196bD0197e0902746F31FBcCFa58/info.json new file mode 100644 index 0000000000000..b8ae7e2071d5b --- /dev/null +++ b/blockchains/ethereum/assets/0x55aF5865807b196bD0197e0902746F31FBcCFa58/info.json @@ -0,0 +1,21 @@ +{ + "name": "Spooky", + "type": "ERC20", + "symbol": "BOO", + "decimals": 18, + "website": "https://spookyswap.finance/", + "description": "SpookySwap is an automated market-making (AMM) decentralized exchange (DEX) for the Fantom Opera network.", + "explorer": "https://etherscan.io/token/0x55af5865807b196bd0197e0902746f31fbccfa58", + "status": "active", + "id": "0x55aF5865807b196bD0197e0902746F31FBcCFa58", + "links": [ + { + "name": "x", + "url": "https://x.com/spookyswap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spookyswap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x55aF5865807b196bD0197e0902746F31FBcCFa58/logo.png b/blockchains/ethereum/assets/0x55aF5865807b196bD0197e0902746F31FBcCFa58/logo.png new file mode 100644 index 0000000000000..ef7cade406b22 Binary files /dev/null and b/blockchains/ethereum/assets/0x55aF5865807b196bD0197e0902746F31FBcCFa58/logo.png differ diff --git a/blockchains/ethereum/assets/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60/info.json b/blockchains/ethereum/assets/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60/info.json new file mode 100644 index 0000000000000..fa6db9409e8bf --- /dev/null +++ b/blockchains/ethereum/assets/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60/info.json @@ -0,0 +1,25 @@ +{ + "name": "SeedifyFund", + "type": "ERC20", + "symbol": "SFUND", + "decimals": 18, + "website": "https://seedify.fund", + "description": "A Blockchain Innovation Ecosystem, with a Seed Stage Fund, Decentralized Incubator, and Launchpad", + "explorer": "https://etherscan.io/token/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60", + "status": "active", + "id": "0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60", + "links": [ + { + "name": "x", + "url": "https://x.com/seedifyfund" + }, + { + "name": "telegram", + "url": "https://t.me/seedifyfundofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/seedify-fund/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60/logo.png b/blockchains/ethereum/assets/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60/logo.png new file mode 100644 index 0000000000000..149d2563079dd Binary files /dev/null and b/blockchains/ethereum/assets/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60/logo.png differ diff --git a/blockchains/ethereum/assets/0x56072C95FAA701256059aa122697B133aDEd9279/info.json b/blockchains/ethereum/assets/0x56072C95FAA701256059aa122697B133aDEd9279/info.json new file mode 100644 index 0000000000000..908920cbdce11 --- /dev/null +++ b/blockchains/ethereum/assets/0x56072C95FAA701256059aa122697B133aDEd9279/info.json @@ -0,0 +1,25 @@ +{ + "name": "Sky", + "type": "ERC20", + "symbol": "SKY", + "decimals": 18, + "website": "https://sky.money", + "description": "SKY is an upgraded version of the MKR token. Upgrading is optional. It is an ERC-20 token with permit functionality and EIP-1271 signature validation. The SKY token also enables two-way conversions between MKR and SKY tokens, using the mint and burn functions of both tokens. The conversion rate is 1 MKR to 24,000 SKY.", + "explorer": "https://etherscan.io/token/0x56072C95FAA701256059aa122697B133aDEd9279", + "status": "active", + "id": "0x56072C95FAA701256059aa122697B133aDEd9279", + "links": [ + { + "name": "x", + "url": "https://x.com/SkyEcosystem" + }, + { + "name": "github", + "url": "https://github.com/makerdao/" + } + ], + "tags": [ + "stablecoin", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x56072C95FAA701256059aa122697B133aDEd9279/logo.png b/blockchains/ethereum/assets/0x56072C95FAA701256059aa122697B133aDEd9279/logo.png new file mode 100644 index 0000000000000..e12458509f6a1 Binary files /dev/null and b/blockchains/ethereum/assets/0x56072C95FAA701256059aa122697B133aDEd9279/logo.png differ diff --git a/blockchains/ethereum/assets/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35/info.json b/blockchains/ethereum/assets/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35/info.json new file mode 100644 index 0000000000000..4d68e5b4c7e50 --- /dev/null +++ b/blockchains/ethereum/assets/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35/info.json @@ -0,0 +1,24 @@ +{ + "name": "Microsoft tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Microsoft xStock (MSFTx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. MSFTx tracks the price of Microsoft Corporation (the underlying). MSFTx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Microsoft Corporation, whilst maintaining the benefits of blockchain technology. Key Benefits Microsoft is the world's largest vendor of computer software and a leading provider of cloud computing services, video games, computer and gaming hardware, search, and other online services.", + "explorer": "https://etherscan.io/token/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35", + "type": "ERC20", + "symbol": "MSFTX", + "decimals": 18, + "status": "active", + "id": "0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/microsoft-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35/logo.png b/blockchains/ethereum/assets/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35/logo.png new file mode 100644 index 0000000000000..409e4ececae65 Binary files /dev/null and b/blockchains/ethereum/assets/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35/logo.png differ diff --git a/blockchains/ethereum/assets/0x5651fA7a726B9Ec0cAd00Ee140179912B6E73599/info.json b/blockchains/ethereum/assets/0x5651fA7a726B9Ec0cAd00Ee140179912B6E73599/info.json new file mode 100644 index 0000000000000..9f1d831c23c13 --- /dev/null +++ b/blockchains/ethereum/assets/0x5651fA7a726B9Ec0cAd00Ee140179912B6E73599/info.json @@ -0,0 +1,21 @@ +{ + "name": "OORT", + "symbol": "OORT", + "type": "ERC20", + "decimals": 18, + "description": "OORT is a decentralized verifiable cloud computing platform for AI applications. OORT’s network leverages global resources from data centers to local edge devices with a proprietary blockchain-based verification layer to secure all transactions and computations, from data crowdsourcing and labeling", + "website": "https://oortech.com/", + "explorer": "https://etherscan.io/token/0x5651fa7a726b9ec0cad00ee140179912b6e73599", + "status": "active", + "id": "0x5651fA7a726B9Ec0cAd00Ee140179912B6E73599", + "links": [ + { + "name": "x", + "url": "https://x.com/oortech" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/oortech/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5651fA7a726B9Ec0cAd00Ee140179912B6E73599/logo.png b/blockchains/ethereum/assets/0x5651fA7a726B9Ec0cAd00Ee140179912B6E73599/logo.png new file mode 100644 index 0000000000000..87149be729ff1 Binary files /dev/null and b/blockchains/ethereum/assets/0x5651fA7a726B9Ec0cAd00Ee140179912B6E73599/logo.png differ diff --git a/blockchains/ethereum/assets/0x56687cf29Ac9751Ce2a4E764680B6aD7E668942e/info.json b/blockchains/ethereum/assets/0x56687cf29Ac9751Ce2a4E764680B6aD7E668942e/info.json index 870ca4740f421..f971a3a6bbb04 100644 --- a/blockchains/ethereum/assets/0x56687cf29Ac9751Ce2a4E764680B6aD7E668942e/info.json +++ b/blockchains/ethereum/assets/0x56687cf29Ac9751Ce2a4E764680B6aD7E668942e/info.json @@ -10,8 +10,8 @@ "id": "0x56687cf29Ac9751Ce2a4E764680B6aD7E668942e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/jammsession_" + "name": "x", + "url": "https://x.com/jammsession_" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x56aA298a19C93c6801FDde870fA63EF75Cc0aF72/info.json b/blockchains/ethereum/assets/0x56aA298a19C93c6801FDde870fA63EF75Cc0aF72/info.json index d4a57f0af6298..947ae3a95dbb0 100644 --- a/blockchains/ethereum/assets/0x56aA298a19C93c6801FDde870fA63EF75Cc0aF72/info.json +++ b/blockchains/ethereum/assets/0x56aA298a19C93c6801FDde870fA63EF75Cc0aF72/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/MirrorProtocol" + "name": "x", + "url": "https://x.com/MirrorProtocol" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x57270D35A840BC5C094da6FBeCA033FB71eA6Ab0/info.json b/blockchains/ethereum/assets/0x57270D35A840BC5C094da6FBeCA033FB71eA6Ab0/info.json new file mode 100644 index 0000000000000..17c69e32dfeb8 --- /dev/null +++ b/blockchains/ethereum/assets/0x57270D35A840BC5C094da6FBeCA033FB71eA6Ab0/info.json @@ -0,0 +1,24 @@ +{ + "name": "Boeing (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "BAon is the Ondo Tokenized version of Boeing, giving tokenholders economic exposure similar to holding BA and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x57270D35A840BC5C094da6FBeCA033FB71eA6Ab0", + "type": "ERC20", + "symbol": "BAon", + "decimals": 18, + "status": "active", + "id": "0x57270D35A840BC5C094da6FBeCA033FB71eA6Ab0", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/boeing-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x57270D35A840BC5C094da6FBeCA033FB71eA6Ab0/logo.png b/blockchains/ethereum/assets/0x57270D35A840BC5C094da6FBeCA033FB71eA6Ab0/logo.png new file mode 100644 index 0000000000000..8a939bb2eecb0 Binary files /dev/null and b/blockchains/ethereum/assets/0x57270D35A840BC5C094da6FBeCA033FB71eA6Ab0/logo.png differ diff --git a/blockchains/ethereum/assets/0x576E9CA70e3a040c00d8139b0665a2b7b7B64844/info.json b/blockchains/ethereum/assets/0x576E9CA70e3a040c00d8139b0665a2b7b7B64844/info.json new file mode 100644 index 0000000000000..cbac74a378a46 --- /dev/null +++ b/blockchains/ethereum/assets/0x576E9CA70e3a040c00d8139b0665a2b7b7B64844/info.json @@ -0,0 +1,28 @@ +{ + "name": "Bank of America (Ondo Tokenized)", + "type": "ERC20", + "symbol": "BACon", + "decimals": 18, + "description": "BACon is the Ondo Tokenized version of Bank of America, giving tokenholders economic exposure similar to holding BAC and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x576E9CA70e3a040c00d8139b0665a2b7b7B64844", + "status": "active", + "id": "0x576E9CA70e3a040c00d8139b0665a2b7b7B64844", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bank-of-america-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bank-of-america-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x576E9CA70e3a040c00d8139b0665a2b7b7B64844/logo.png b/blockchains/ethereum/assets/0x576E9CA70e3a040c00d8139b0665a2b7b7B64844/logo.png new file mode 100644 index 0000000000000..5c74edc6a0963 Binary files /dev/null and b/blockchains/ethereum/assets/0x576E9CA70e3a040c00d8139b0665a2b7b7B64844/logo.png differ diff --git a/blockchains/ethereum/assets/0x576e2BeD8F7b46D34016198911Cdf9886f78bea7/info.json b/blockchains/ethereum/assets/0x576e2BeD8F7b46D34016198911Cdf9886f78bea7/info.json new file mode 100644 index 0000000000000..0f22a49efe68f --- /dev/null +++ b/blockchains/ethereum/assets/0x576e2BeD8F7b46D34016198911Cdf9886f78bea7/info.json @@ -0,0 +1,25 @@ +{ + "name": "MAGA", + "website": "https://magamemecoin.com/", + "description": "Maga is a deflationary meme coin launched on Ethereum. Cryptocurrency was created as a tribute to the trump the Maga.", + "explorer": "https://etherscan.io/token/0x576e2BeD8F7b46D34016198911Cdf9886f78bea7", + "type": "ERC20", + "symbol": "TRUMP", + "decimals": 9, + "status": "active", + "id": "0x576e2BeD8F7b46D34016198911Cdf9886f78bea7", + "links": [ + { + "name": "x", + "url": "https://x.com/MAGAMemecoin" + }, + { + "name": "telegram", + "url": "https://t.me/MAGAMemecoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/maga/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x576e2BeD8F7b46D34016198911Cdf9886f78bea7/logo.png b/blockchains/ethereum/assets/0x576e2BeD8F7b46D34016198911Cdf9886f78bea7/logo.png new file mode 100644 index 0000000000000..4d1fc39fdc6c4 Binary files /dev/null and b/blockchains/ethereum/assets/0x576e2BeD8F7b46D34016198911Cdf9886f78bea7/logo.png differ diff --git a/blockchains/ethereum/assets/0x579CEa1889991f68aCc35Ff5c3dd0621fF29b0C9/info.json b/blockchains/ethereum/assets/0x579CEa1889991f68aCc35Ff5c3dd0621fF29b0C9/info.json index 7330fcdc1cb9d..2f181ada49115 100644 --- a/blockchains/ethereum/assets/0x579CEa1889991f68aCc35Ff5c3dd0621fF29b0C9/info.json +++ b/blockchains/ethereum/assets/0x579CEa1889991f68aCc35Ff5c3dd0621fF29b0C9/info.json @@ -10,8 +10,8 @@ "id": "0x579CEa1889991f68aCc35Ff5c3dd0621fF29b0C9", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Everipedia" + "name": "x", + "url": "https://x.com/Everipedia" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0x57Ab1ec28D129707052df4dF418D58a2D46d5f51/info.json b/blockchains/ethereum/assets/0x57Ab1ec28D129707052df4dF418D58a2D46d5f51/info.json index 198a33bdbc4df..d780882900ed4 100644 --- a/blockchains/ethereum/assets/0x57Ab1ec28D129707052df4dF418D58a2D46d5f51/info.json +++ b/blockchains/ethereum/assets/0x57Ab1ec28D129707052df4dF418D58a2D46d5f51/info.json @@ -18,8 +18,8 @@ "url": "https://github.com/Synthetixio" }, { - "name": "twitter", - "url": "https://twitter.com/synthetix_io" + "name": "x", + "url": "https://x.com/synthetix_io" }, { "name": "blog", diff --git a/blockchains/ethereum/assets/0x57B392146848C6321bb2A3D4358DF1bDEACdc62A/info.json b/blockchains/ethereum/assets/0x57B392146848C6321bb2A3D4358DF1bDEACdc62A/info.json new file mode 100644 index 0000000000000..8f59cfdd5c483 --- /dev/null +++ b/blockchains/ethereum/assets/0x57B392146848C6321bb2A3D4358DF1bDEACdc62A/info.json @@ -0,0 +1,28 @@ +{ + "name": "Vanguard Total Stock Market ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "VTIon", + "decimals": 18, + "description": "VTIon is the Ondo Tokenized version of the Vanguard Total Stock Market ETF, giving tokenholders economic exposure similar to holding VTI and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x57B392146848C6321bb2A3D4358DF1bDEACdc62A", + "status": "active", + "id": "0x57B392146848C6321bb2A3D4358DF1bDEACdc62A", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vanguard-total-stock-market-etf-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vanguard-total-stock-market-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x57B392146848C6321bb2A3D4358DF1bDEACdc62A/logo.png b/blockchains/ethereum/assets/0x57B392146848C6321bb2A3D4358DF1bDEACdc62A/logo.png new file mode 100644 index 0000000000000..c8b7fdf9aa10b Binary files /dev/null and b/blockchains/ethereum/assets/0x57B392146848C6321bb2A3D4358DF1bDEACdc62A/logo.png differ diff --git a/blockchains/ethereum/assets/0x57B49219614859176Ddb029298486B6c30193Cbd/info.json b/blockchains/ethereum/assets/0x57B49219614859176Ddb029298486B6c30193Cbd/info.json new file mode 100644 index 0000000000000..07ec8a7d9f8b1 --- /dev/null +++ b/blockchains/ethereum/assets/0x57B49219614859176Ddb029298486B6c30193Cbd/info.json @@ -0,0 +1,21 @@ +{ + "name": "Oracle AI", + "symbol": "ORACLE", + "type": "ERC20", + "decimals": 18, + "description": "A novel AI trading companion designed to capture the emergence of trends.", + "website": "https://www.oracleai.app/", + "explorer": "https://etherscan.io/token/0x57b49219614859176ddb029298486b6c30193cbd", + "status": "active", + "id": "0x57B49219614859176Ddb029298486B6c30193Cbd", + "links": [ + { + "name": "x", + "url": "https://x.com/oracleai_erc" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/oracle-ai" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x57B49219614859176Ddb029298486B6c30193Cbd/logo.png b/blockchains/ethereum/assets/0x57B49219614859176Ddb029298486B6c30193Cbd/logo.png new file mode 100644 index 0000000000000..929c682972035 Binary files /dev/null and b/blockchains/ethereum/assets/0x57B49219614859176Ddb029298486B6c30193Cbd/logo.png differ diff --git a/blockchains/ethereum/assets/0x57B946008913B82E4dF85f501cbAeD910e58D26C/info.json b/blockchains/ethereum/assets/0x57B946008913B82E4dF85f501cbAeD910e58D26C/info.json index 8bca59d7a43aa..94370c31ce9cf 100644 --- a/blockchains/ethereum/assets/0x57B946008913B82E4dF85f501cbAeD910e58D26C/info.json +++ b/blockchains/ethereum/assets/0x57B946008913B82E4dF85f501cbAeD910e58D26C/info.json @@ -10,8 +10,8 @@ "id": "0x57B946008913B82E4dF85f501cbAeD910e58D26C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/marlinprotocol" + "name": "x", + "url": "https://x.com/marlinprotocol" }, { "name": "coingecko", diff --git a/blockchains/ethereum/assets/0x57e114B691Db790C35207b2e685D4A43181e6061/info.json b/blockchains/ethereum/assets/0x57e114B691Db790C35207b2e685D4A43181e6061/info.json new file mode 100644 index 0000000000000..93fef71610d36 --- /dev/null +++ b/blockchains/ethereum/assets/0x57e114B691Db790C35207b2e685D4A43181e6061/info.json @@ -0,0 +1,21 @@ +{ + "name": "ENA", + "website": "https://www.ethena.fi/", + "description": "Ethena is a synthetic dollar protocol built on Ethereum that will provide a crypto-native solution for money not reliant on traditional banking system infrastructure, alongside a globally accessible dollar-denominated savings instrument - the 'Internet Bond'.", + "explorer": "https://etherscan.io/token/0x57e114B691Db790C35207b2e685D4A43181e6061", + "type": "ERC20", + "symbol": "ENA", + "decimals": 18, + "status": "active", + "id": "0x57e114B691Db790C35207b2e685D4A43181e6061", + "links": [ + { + "name": "x", + "url": "https://x.com/ethena_labs" + }, + { + "name": "telegram", + "url": "https://t.me/ethena_labs" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x57e114B691Db790C35207b2e685D4A43181e6061/logo.png b/blockchains/ethereum/assets/0x57e114B691Db790C35207b2e685D4A43181e6061/logo.png new file mode 100644 index 0000000000000..69ecb3a317648 Binary files /dev/null and b/blockchains/ethereum/assets/0x57e114B691Db790C35207b2e685D4A43181e6061/logo.png differ diff --git a/blockchains/ethereum/assets/0x57e299eE8F1C5A92A9Ed54F934ACC7FF5F159699/logo.png b/blockchains/ethereum/assets/0x57e299eE8F1C5A92A9Ed54F934ACC7FF5F159699/logo.png deleted file mode 100755 index 3662614fa3216..0000000000000 Binary files a/blockchains/ethereum/assets/0x57e299eE8F1C5A92A9Ed54F934ACC7FF5F159699/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x582d872A1B094FC48F5DE31D3B73F2D9bE47def1/info.json b/blockchains/ethereum/assets/0x582d872A1B094FC48F5DE31D3B73F2D9bE47def1/info.json index 09c4ec798610c..6de9f8eda6031 100644 --- a/blockchains/ethereum/assets/0x582d872A1B094FC48F5DE31D3B73F2D9bE47def1/info.json +++ b/blockchains/ethereum/assets/0x582d872A1B094FC48F5DE31D3B73F2D9bE47def1/info.json @@ -1,5 +1,5 @@ { - "name": "Wrapped TON Coin", + "name": "Gram", "type": "ERC20", "symbol": "TONCOIN", "decimals": 9, diff --git a/blockchains/ethereum/assets/0x58D97B57BB95320F9a05dC918Aef65434969c2B2/info.json b/blockchains/ethereum/assets/0x58D97B57BB95320F9a05dC918Aef65434969c2B2/info.json new file mode 100644 index 0000000000000..e6da2228840a7 --- /dev/null +++ b/blockchains/ethereum/assets/0x58D97B57BB95320F9a05dC918Aef65434969c2B2/info.json @@ -0,0 +1,17 @@ +{ + "name": "Morpho", + "website": "https://morpho.org/", + "description": "Morpho is an open, efficient, and resilient platform that allows anyone to earn yield and borrow assets. Lenders can earn on Morpho using Morpho Vaults, noncustodial simple to use lending vaults that optimize yields for depositors. Borrowers can borrow any assets directly from Morpho Markets.", + "explorer": "https://etherscan.io/token/0x58D97B57BB95320F9a05dC918Aef65434969c2B2", + "type": "ERC20", + "symbol": "MORPHO", + "decimals": 18, + "status": "active", + "id": "0x58D97B57BB95320F9a05dC918Aef65434969c2B2", + "links": [ + { + "name": "x", + "url": "https://x.com/MorphoLabs" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x58D97B57BB95320F9a05dC918Aef65434969c2B2/logo.png b/blockchains/ethereum/assets/0x58D97B57BB95320F9a05dC918Aef65434969c2B2/logo.png new file mode 100644 index 0000000000000..7be98cc6b84e1 Binary files /dev/null and b/blockchains/ethereum/assets/0x58D97B57BB95320F9a05dC918Aef65434969c2B2/logo.png differ diff --git a/blockchains/ethereum/assets/0x58a2EDF0169eDE82904e47a0E2a3a4008eDebB60/info.json b/blockchains/ethereum/assets/0x58a2EDF0169eDE82904e47a0E2a3a4008eDebB60/info.json new file mode 100644 index 0000000000000..2658be8a773aa --- /dev/null +++ b/blockchains/ethereum/assets/0x58a2EDF0169eDE82904e47a0E2a3a4008eDebB60/info.json @@ -0,0 +1,24 @@ +{ + "name": "Intuitive Machines (Ondo Tokenized)", + "type": "ERC20", + "symbol": "LUNRon", + "decimals": 18, + "description": "LUNRon is the Ondo Tokenized version of Intuitive Machines, giving tokenholders economic exposure similar to holding LUNR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x58a2EDF0169eDE82904e47a0E2a3a4008eDebB60", + "status": "active", + "id": "0x58a2EDF0169eDE82904e47a0E2a3a4008eDebB60", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/intuitive-machines-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x58a2EDF0169eDE82904e47a0E2a3a4008eDebB60/logo.png b/blockchains/ethereum/assets/0x58a2EDF0169eDE82904e47a0E2a3a4008eDebB60/logo.png new file mode 100644 index 0000000000000..8a3fd6997cc75 Binary files /dev/null and b/blockchains/ethereum/assets/0x58a2EDF0169eDE82904e47a0E2a3a4008eDebB60/logo.png differ diff --git a/blockchains/ethereum/assets/0x58aEA10748a00D1781D6651f9d78A414EA32CA46/info.json b/blockchains/ethereum/assets/0x58aEA10748a00D1781D6651f9d78A414EA32CA46/info.json new file mode 100644 index 0000000000000..0e742e8085cb7 --- /dev/null +++ b/blockchains/ethereum/assets/0x58aEA10748a00D1781D6651f9d78A414EA32CA46/info.json @@ -0,0 +1,25 @@ +{ + "name": "Vector Smart Gas", + "website": "https://vsgofficial.com/", + "description": "The platform's primary objective is to address scalability issues prevalent in traditional blockchain networks by providing a scalable and efficient environment for decentralized application deployment. Leveraging Layer 2 solutions, VSC enhances transaction throughput and reduces gas fees, making it more accessible and cost-effective for developers and users alike.", + "explorer": "https://etherscan.io/token/0x58aea10748a00d1781d6651f9d78a414ea32ca46", + "type": "ERC20", + "symbol": "VSG", + "decimals": 18, + "status": "active", + "id": "0x58aEA10748a00D1781D6651f9d78A414EA32CA46", + "links": [ + { + "name": "x", + "url": "https://x.com/VECTORCOIN" + }, + { + "name": "telegram", + "url": "https://t.me/vsgportal" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vitalik-smart-gas/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x58aEA10748a00D1781D6651f9d78A414EA32CA46/logo.png b/blockchains/ethereum/assets/0x58aEA10748a00D1781D6651f9d78A414EA32CA46/logo.png new file mode 100644 index 0000000000000..37a43e40d1dd9 Binary files /dev/null and b/blockchains/ethereum/assets/0x58aEA10748a00D1781D6651f9d78A414EA32CA46/logo.png differ diff --git a/blockchains/ethereum/assets/0x58b6A8A3302369DAEc383334672404Ee733aB239/info.json b/blockchains/ethereum/assets/0x58b6A8A3302369DAEc383334672404Ee733aB239/info.json index 99869c8a08a73..9e0cfceb18153 100644 --- a/blockchains/ethereum/assets/0x58b6A8A3302369DAEc383334672404Ee733aB239/info.json +++ b/blockchains/ethereum/assets/0x58b6A8A3302369DAEc383334672404Ee733aB239/info.json @@ -1,5 +1,5 @@ { - "name": "Livepeer Token", + "name": "Livepeer", "symbol": "LPT", "type": "ERC20", "decimals": 18, @@ -14,8 +14,8 @@ "url": "https://github.com/livepeer" }, { - "name": "twitter", - "url": "https://twitter.com/LivepeerOrg" + "name": "x", + "url": "https://x.com/LivepeerOrg" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0x58b9cB810A68a7f3e1E4f8Cb45D1B9B3c79705E8/info.json b/blockchains/ethereum/assets/0x58b9cB810A68a7f3e1E4f8Cb45D1B9B3c79705E8/info.json new file mode 100644 index 0000000000000..6bb98bf5794ff --- /dev/null +++ b/blockchains/ethereum/assets/0x58b9cB810A68a7f3e1E4f8Cb45D1B9B3c79705E8/info.json @@ -0,0 +1,21 @@ +{ + "name": "Everclear", + "symbol": "CLEAR", + "type": "ERC20", + "decimals": 18, + "description": "Everclear coordinates the global settlement of liquidity between chains, solving fragmentation for modular blockchains.", + "website": "https://www.everclear.org/", + "explorer": "https://etherscan.io/token/0x58b9cB810A68a7f3e1E4f8Cb45D1B9B3c79705E8", + "status": "active", + "id": "0x58b9cB810A68a7f3e1E4f8Cb45D1B9B3c79705E8", + "links": [ + { + "name": "x", + "url": "https://x.com/everclearorg" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/everclear-2" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x58b9cB810A68a7f3e1E4f8Cb45D1B9B3c79705E8/logo.png b/blockchains/ethereum/assets/0x58b9cB810A68a7f3e1E4f8Cb45D1B9B3c79705E8/logo.png new file mode 100644 index 0000000000000..3addeaecef5cc Binary files /dev/null and b/blockchains/ethereum/assets/0x58b9cB810A68a7f3e1E4f8Cb45D1B9B3c79705E8/logo.png differ diff --git a/blockchains/ethereum/assets/0x58cB30368ceB2d194740b144EAB4c2da8a917Dcb/info.json b/blockchains/ethereum/assets/0x58cB30368ceB2d194740b144EAB4c2da8a917Dcb/info.json new file mode 100644 index 0000000000000..d45177db16a80 --- /dev/null +++ b/blockchains/ethereum/assets/0x58cB30368ceB2d194740b144EAB4c2da8a917Dcb/info.json @@ -0,0 +1,17 @@ +{ + "name": "ZynCoin", + "website": "https://www.zyncoin.xyz/", + "description": "ZynCoin is a community-led memecoin project focused on the proliferaiton of ZYN.", + "explorer": "https://etherscan.io/token/0x58cb30368ceb2d194740b144eab4c2da8a917dcb", + "type": "ERC20", + "symbol": "ZYN", + "decimals": 18, + "status": "active", + "id": "0x58cB30368ceB2d194740b144EAB4c2da8a917Dcb", + "links": [ + { + "name": "x", + "url": "https://x.com/ZynCoinERC20" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x58cB30368ceB2d194740b144EAB4c2da8a917Dcb/logo.png b/blockchains/ethereum/assets/0x58cB30368ceB2d194740b144EAB4c2da8a917Dcb/logo.png new file mode 100644 index 0000000000000..27795b4dd0a4c Binary files /dev/null and b/blockchains/ethereum/assets/0x58cB30368ceB2d194740b144EAB4c2da8a917Dcb/logo.png differ diff --git a/blockchains/ethereum/assets/0x58fC9d573Ea773ef9a25c3DE66F990B87Ee5f50E/info.json b/blockchains/ethereum/assets/0x58fC9d573Ea773ef9a25c3DE66F990B87Ee5f50E/info.json new file mode 100644 index 0000000000000..0ffd90ec99d02 --- /dev/null +++ b/blockchains/ethereum/assets/0x58fC9d573Ea773ef9a25c3DE66F990B87Ee5f50E/info.json @@ -0,0 +1,28 @@ +{ + "name": "Texas Instruments (Ondo Tokenized)", + "type": "ERC20", + "symbol": "TXNon", + "decimals": 18, + "description": "TXNon is the Ondo Tokenized version of Texas Instruments, giving tokenholders economic exposure similar to holding TXN and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x58fC9d573Ea773ef9a25c3DE66F990B87Ee5f50E", + "status": "active", + "id": "0x58fC9d573Ea773ef9a25c3DE66F990B87Ee5f50E", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/texas-instruments-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/texas-instruments-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x58fC9d573Ea773ef9a25c3DE66F990B87Ee5f50E/logo.png b/blockchains/ethereum/assets/0x58fC9d573Ea773ef9a25c3DE66F990B87Ee5f50E/logo.png new file mode 100644 index 0000000000000..cc54cd49704f9 Binary files /dev/null and b/blockchains/ethereum/assets/0x58fC9d573Ea773ef9a25c3DE66F990B87Ee5f50E/logo.png differ diff --git a/blockchains/ethereum/assets/0x590F21186489cA1612f49a4B1ff5c66acD6796A9/info.json b/blockchains/ethereum/assets/0x590F21186489cA1612f49a4B1ff5c66acD6796A9/info.json new file mode 100644 index 0000000000000..bab8c8cbe2a2f --- /dev/null +++ b/blockchains/ethereum/assets/0x590F21186489cA1612f49a4B1ff5c66acD6796A9/info.json @@ -0,0 +1,24 @@ +{ + "name": "Spotify (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "SPOTon is the Ondo Tokenized version of Spotify, giving tokenholders economic exposure similar to holding SPOT and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x590F21186489cA1612f49a4B1ff5c66acD6796A9", + "type": "ERC20", + "symbol": "SPOTon", + "decimals": 18, + "status": "active", + "id": "0x590F21186489cA1612f49a4B1ff5c66acD6796A9", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spotify-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x590F21186489cA1612f49a4B1ff5c66acD6796A9/logo.png b/blockchains/ethereum/assets/0x590F21186489cA1612f49a4B1ff5c66acD6796A9/logo.png new file mode 100644 index 0000000000000..4da09d725ad34 Binary files /dev/null and b/blockchains/ethereum/assets/0x590F21186489cA1612f49a4B1ff5c66acD6796A9/logo.png differ diff --git a/blockchains/ethereum/assets/0x590F820444fA3638e022776752c5eEF34E2F89A6/info.json b/blockchains/ethereum/assets/0x590F820444fA3638e022776752c5eEF34E2F89A6/info.json new file mode 100644 index 0000000000000..0b595ce1d7b83 --- /dev/null +++ b/blockchains/ethereum/assets/0x590F820444fA3638e022776752c5eEF34E2F89A6/info.json @@ -0,0 +1,25 @@ +{ + "name": "Alephium (AlphBridge)", + "type": "ERC20", + "symbol": "ALPH", + "decimals": 18, + "description": "Scalable for devs. Secure for users. Decentralized for all. Innovative sharding meets expressive sUTXO and efficient Proof-of-Less-Work to secure scalable dApps for real-world use cases.", + "website": "https://alephium.org/", + "explorer": "https://etherscan.io/token/0x590f820444fa3638e022776752c5eef34e2f89a6", + "id": "0x590F820444fA3638e022776752c5eEF34E2F89A6", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/alephium" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/alephium/" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x590F820444fA3638e022776752c5eEF34E2F89A6/logo.png b/blockchains/ethereum/assets/0x590F820444fA3638e022776752c5eEF34E2F89A6/logo.png new file mode 100644 index 0000000000000..a7adfb473af1b Binary files /dev/null and b/blockchains/ethereum/assets/0x590F820444fA3638e022776752c5eEF34E2F89A6/logo.png differ diff --git a/blockchains/ethereum/assets/0x590f00eDc668D5af987c6076c7302C42B6FE9DD3/info.json b/blockchains/ethereum/assets/0x590f00eDc668D5af987c6076c7302C42B6FE9DD3/info.json new file mode 100644 index 0000000000000..7d90ab9b772da --- /dev/null +++ b/blockchains/ethereum/assets/0x590f00eDc668D5af987c6076c7302C42B6FE9DD3/info.json @@ -0,0 +1,21 @@ +{ + "name": "SCAM", + "website": "http://scamcoin.io", + "description": "SCAM is a revolutionary much needed movement in the blockchain industry. We aim to expose fraudulent behavior and raise awareness of scamming activities.", + "explorer": "https://etherscan.io/token/0x590f00eDc668D5af987c6076c7302C42B6FE9DD3", + "type": "ERC20", + "symbol": "SCAM", + "decimals": 18, + "status": "abandoned", + "id": "0x590f00eDc668D5af987c6076c7302C42B6FE9DD3", + "links": [ + { + "name": "x", + "url": "https://x.com/scamcoin_eth" + }, + { + "name": "telegram", + "url": "https://t.me/SCAMCOIN_ETH" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5919DeA604631016c15c805e3D948A0384879892/info.json b/blockchains/ethereum/assets/0x5919DeA604631016c15c805e3D948A0384879892/info.json index 9c08223b50e01..fc1b38771d69c 100644 --- a/blockchains/ethereum/assets/0x5919DeA604631016c15c805e3D948A0384879892/info.json +++ b/blockchains/ethereum/assets/0x5919DeA604631016c15c805e3D948A0384879892/info.json @@ -14,8 +14,8 @@ "url": "https://facebook.com/groups/thepeoplescoin/" }, { - "name": "twitter", - "url": "https://twitter.com/ThePeoples_Coin" + "name": "x", + "url": "https://x.com/ThePeoples_Coin" }, { "name": "reddit", @@ -30,4 +30,4 @@ "defi", "governance" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x592643a667633bCa51Cb2387C98B6dE6CE549A45/info.json b/blockchains/ethereum/assets/0x592643a667633bCa51Cb2387C98B6dE6CE549A45/info.json new file mode 100644 index 0000000000000..1397ea5a35780 --- /dev/null +++ b/blockchains/ethereum/assets/0x592643a667633bCa51Cb2387C98B6dE6CE549A45/info.json @@ -0,0 +1,28 @@ +{ + "name": "AMC Entertainment (Ondo Tokenized)", + "type": "ERC20", + "symbol": "AMCon", + "decimals": 18, + "description": "AMCon is the Ondo Tokenized version of AMC Entertainment, giving tokenholders economic exposure similar to holding AMC and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x592643a667633bCa51Cb2387C98B6dE6CE549A45", + "status": "active", + "id": "0x592643a667633bCa51Cb2387C98B6dE6CE549A45", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/amc-entertainment-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/amc-entertainment-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x592643a667633bCa51Cb2387C98B6dE6CE549A45/logo.png b/blockchains/ethereum/assets/0x592643a667633bCa51Cb2387C98B6dE6CE549A45/logo.png new file mode 100644 index 0000000000000..fe6efcd59b566 Binary files /dev/null and b/blockchains/ethereum/assets/0x592643a667633bCa51Cb2387C98B6dE6CE549A45/logo.png differ diff --git a/blockchains/ethereum/assets/0x594DaaD7D77592a2b97b725A7AD59D7E188b5bFa/info.json b/blockchains/ethereum/assets/0x594DaaD7D77592a2b97b725A7AD59D7E188b5bFa/info.json new file mode 100644 index 0000000000000..fcc1f35b95d25 --- /dev/null +++ b/blockchains/ethereum/assets/0x594DaaD7D77592a2b97b725A7AD59D7E188b5bFa/info.json @@ -0,0 +1,21 @@ +{ + "name": "Apu Apustaja", + "website": "https://apu.club/", + "description": "Apu, also known as Peepo or Helper, is a pepe-variant that is used to represent a much younger, kinder and more naive anthropomorphic frog.", + "explorer": "https://etherscan.io/token/0x594daad7d77592a2b97b725a7ad59d7e188b5bfa", + "type": "ERC20", + "symbol": "APU", + "decimals": 18, + "status": "active", + "id": "0x594DaaD7D77592a2b97b725A7AD59D7E188b5bFa", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/apu-apustaja/" + }, + { + "name": "x", + "url": "https://x.com/apuscoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x594DaaD7D77592a2b97b725A7AD59D7E188b5bFa/logo.png b/blockchains/ethereum/assets/0x594DaaD7D77592a2b97b725A7AD59D7E188b5bFa/logo.png new file mode 100644 index 0000000000000..9b86cd55d93ca Binary files /dev/null and b/blockchains/ethereum/assets/0x594DaaD7D77592a2b97b725A7AD59D7E188b5bFa/logo.png differ diff --git a/blockchains/ethereum/assets/0x59644165402b611b350645555B50Afb581C71EB2/info.json b/blockchains/ethereum/assets/0x59644165402b611b350645555B50Afb581C71EB2/info.json new file mode 100644 index 0000000000000..e58b1e443e352 --- /dev/null +++ b/blockchains/ethereum/assets/0x59644165402b611b350645555B50Afb581C71EB2/info.json @@ -0,0 +1,24 @@ +{ + "name": "Meta Platforms (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "METAon is the Ondo Tokenized version of Meta Platforms, giving tokenholders economic exposure similar to holding META and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x59644165402b611b350645555B50Afb581C71EB2", + "type": "ERC20", + "symbol": "METAon", + "decimals": 18, + "status": "active", + "id": "0x59644165402b611b350645555B50Afb581C71EB2", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/meta-platforms-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x59644165402b611b350645555B50Afb581C71EB2/logo.png b/blockchains/ethereum/assets/0x59644165402b611b350645555B50Afb581C71EB2/logo.png new file mode 100644 index 0000000000000..df2bffa2d3099 Binary files /dev/null and b/blockchains/ethereum/assets/0x59644165402b611b350645555B50Afb581C71EB2/logo.png differ diff --git a/blockchains/ethereum/assets/0x59A921Db27Dd6d4d974745B7FfC5c33932653442/info.json b/blockchains/ethereum/assets/0x59A921Db27Dd6d4d974745B7FfC5c33932653442/info.json index 4b698b77afa4a..9142dc274b7d1 100644 --- a/blockchains/ethereum/assets/0x59A921Db27Dd6d4d974745B7FfC5c33932653442/info.json +++ b/blockchains/ethereum/assets/0x59A921Db27Dd6d4d974745B7FfC5c33932653442/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/MirrorProtocol" + "name": "x", + "url": "https://x.com/MirrorProtocol" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x5A98FcBEA516Cf06857215779Fd812CA3beF1B32/info.json b/blockchains/ethereum/assets/0x5A98FcBEA516Cf06857215779Fd812CA3beF1B32/info.json index c2b5384720935..3cda6c59af52f 100644 --- a/blockchains/ethereum/assets/0x5A98FcBEA516Cf06857215779Fd812CA3beF1B32/info.json +++ b/blockchains/ethereum/assets/0x5A98FcBEA516Cf06857215779Fd812CA3beF1B32/info.json @@ -10,8 +10,8 @@ "id": "0x5A98FcBEA516Cf06857215779Fd812CA3beF1B32", "links": [ { - "name": "twitter", - "url": "https://twitter.com/lidofinance" + "name": "x", + "url": "https://x.com/lidofinance" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x5Af2Be193a6ABCa9c8817001F45744777Db30756/info.json b/blockchains/ethereum/assets/0x5Af2Be193a6ABCa9c8817001F45744777Db30756/info.json index 1c44288b3ba04..54897968c3081 100644 --- a/blockchains/ethereum/assets/0x5Af2Be193a6ABCa9c8817001F45744777Db30756/info.json +++ b/blockchains/ethereum/assets/0x5Af2Be193a6ABCa9c8817001F45744777Db30756/info.json @@ -14,8 +14,8 @@ "url": "https://investvoyager.com/blog/" }, { - "name": "twitter", - "url": "https://twitter.com/investvoyager" + "name": "x", + "url": "https://x.com/investvoyager" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0x5B7533812759B45C2B44C19e320ba2cD2681b542/info.json b/blockchains/ethereum/assets/0x5B7533812759B45C2B44C19e320ba2cD2681b542/info.json index 154223dca69d4..3a75c15cb8211 100644 --- a/blockchains/ethereum/assets/0x5B7533812759B45C2B44C19e320ba2cD2681b542/info.json +++ b/blockchains/ethereum/assets/0x5B7533812759B45C2B44C19e320ba2cD2681b542/info.json @@ -23,8 +23,8 @@ "url": "https://public.singularitynet.io/whitepaper.pdf" }, { - "name": "twitter", - "url": "https://twitter.com/singularity_net" + "name": "x", + "url": "https://x.com/singularity_net" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x5Bcd8195E3Ef58f677aeF9eBC276B5087c027050/info.json b/blockchains/ethereum/assets/0x5Bcd8195E3Ef58f677aeF9eBC276B5087c027050/info.json new file mode 100644 index 0000000000000..c962dda424a1b --- /dev/null +++ b/blockchains/ethereum/assets/0x5Bcd8195E3Ef58f677aeF9eBC276B5087c027050/info.json @@ -0,0 +1,24 @@ +{ + "name": "Uber (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "UBERon is the Ondo Tokenized version of Uber, giving tokenholders economic exposure similar to holding UBER and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x5Bcd8195E3Ef58f677aeF9eBC276B5087c027050", + "type": "ERC20", + "symbol": "UBERon", + "decimals": 18, + "status": "active", + "id": "0x5Bcd8195E3Ef58f677aeF9eBC276B5087c027050", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/uber-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5Bcd8195E3Ef58f677aeF9eBC276B5087c027050/logo.png b/blockchains/ethereum/assets/0x5Bcd8195E3Ef58f677aeF9eBC276B5087c027050/logo.png new file mode 100644 index 0000000000000..eae90c658259f Binary files /dev/null and b/blockchains/ethereum/assets/0x5Bcd8195E3Ef58f677aeF9eBC276B5087c027050/logo.png differ diff --git a/blockchains/ethereum/assets/0x5Bf1b2A808598C0eF4Af1673a5457d86fE6d7B3d/info.json b/blockchains/ethereum/assets/0x5Bf1b2A808598C0eF4Af1673a5457d86fE6d7B3d/info.json new file mode 100644 index 0000000000000..f30e118edab14 --- /dev/null +++ b/blockchains/ethereum/assets/0x5Bf1b2A808598C0eF4Af1673a5457d86fE6d7B3d/info.json @@ -0,0 +1,24 @@ +{ + "name": "Arm Holdings plc (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "ARMon is the Ondo Tokenized version of Arm Holdings plc, giving tokenholders economic exposure similar to holding ARM and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x5Bf1b2A808598C0eF4Af1673a5457d86fE6d7B3d", + "type": "ERC20", + "symbol": "ARMon", + "decimals": 18, + "status": "active", + "id": "0x5Bf1b2A808598C0eF4Af1673a5457d86fE6d7B3d", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/arm-holdings-plc-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5Bf1b2A808598C0eF4Af1673a5457d86fE6d7B3d/logo.png b/blockchains/ethereum/assets/0x5Bf1b2A808598C0eF4Af1673a5457d86fE6d7B3d/logo.png new file mode 100644 index 0000000000000..33bca5e1d074b Binary files /dev/null and b/blockchains/ethereum/assets/0x5Bf1b2A808598C0eF4Af1673a5457d86fE6d7B3d/logo.png differ diff --git a/blockchains/ethereum/assets/0x5C424B9b60383FCE7fE7069D2a2B1047BCd04a73/info.json b/blockchains/ethereum/assets/0x5C424B9b60383FCE7fE7069D2a2B1047BCd04a73/info.json new file mode 100644 index 0000000000000..27aafe658dc0a --- /dev/null +++ b/blockchains/ethereum/assets/0x5C424B9b60383FCE7fE7069D2a2B1047BCd04a73/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares 1-3 Year Treasury Bond ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "SHYon", + "decimals": 18, + "description": "SHYon is the Ondo Tokenized version of the iShares 1-3 Year Treasury Bond ETF, giving tokenholders economic exposure similar to holding SHY and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x5C424B9b60383FCE7fE7069D2a2B1047BCd04a73", + "status": "active", + "id": "0x5C424B9b60383FCE7fE7069D2a2B1047BCd04a73", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-1-3-year-treasury-bond-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5C424B9b60383FCE7fE7069D2a2B1047BCd04a73/logo.png b/blockchains/ethereum/assets/0x5C424B9b60383FCE7fE7069D2a2B1047BCd04a73/logo.png new file mode 100644 index 0000000000000..6c93239492673 Binary files /dev/null and b/blockchains/ethereum/assets/0x5C424B9b60383FCE7fE7069D2a2B1047BCd04a73/logo.png differ diff --git a/blockchains/ethereum/assets/0x5Ce215d9c37a195DF88e294a06B8396C296B4e15/info.json b/blockchains/ethereum/assets/0x5Ce215d9c37a195DF88e294a06B8396C296B4e15/info.json new file mode 100644 index 0000000000000..ca495250f5552 --- /dev/null +++ b/blockchains/ethereum/assets/0x5Ce215d9c37a195DF88e294a06B8396C296B4e15/info.json @@ -0,0 +1,24 @@ +{ + "name": "Futu Holdings (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "FUTUon is the Ondo Tokenized version of Futu Holdings, giving tokenholders economic exposure similar to holding FUTU and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x5Ce215d9c37a195DF88e294a06B8396C296B4e15", + "type": "ERC20", + "symbol": "FUTUon", + "decimals": 18, + "status": "active", + "id": "0x5Ce215d9c37a195DF88e294a06B8396C296B4e15", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/futu-holdings-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5Ce215d9c37a195DF88e294a06B8396C296B4e15/logo.png b/blockchains/ethereum/assets/0x5Ce215d9c37a195DF88e294a06B8396C296B4e15/logo.png new file mode 100644 index 0000000000000..d5a152fe94884 Binary files /dev/null and b/blockchains/ethereum/assets/0x5Ce215d9c37a195DF88e294a06B8396C296B4e15/logo.png differ diff --git a/blockchains/ethereum/assets/0x5D00d312e171Be5342067c09BaE883f9Bcb2003B/info.json b/blockchains/ethereum/assets/0x5D00d312e171Be5342067c09BaE883f9Bcb2003B/info.json index 48852fce5408d..ace1d914231c6 100755 --- a/blockchains/ethereum/assets/0x5D00d312e171Be5342067c09BaE883f9Bcb2003B/info.json +++ b/blockchains/ethereum/assets/0x5D00d312e171Be5342067c09BaE883f9Bcb2003B/info.json @@ -10,8 +10,8 @@ "id": "0x5D00d312e171Be5342067c09BaE883f9Bcb2003B", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ethermon_nft" + "name": "x", + "url": "https://x.com/ethermon_nft" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5D1a9a9B118fF19721e0111f094f2360b6Ef7A2f/info.json b/blockchains/ethereum/assets/0x5D1a9a9B118fF19721e0111f094f2360b6Ef7A2f/info.json new file mode 100644 index 0000000000000..89f14ecf83402 --- /dev/null +++ b/blockchains/ethereum/assets/0x5D1a9a9B118fF19721e0111f094f2360b6Ef7A2f/info.json @@ -0,0 +1,24 @@ +{ + "name": "Snowflake (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "SNOWon is the Ondo Tokenized version of Snowflake, giving tokenholders economic exposure similar to holding SNOW and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x5D1a9a9B118fF19721e0111f094f2360b6Ef7A2f", + "type": "ERC20", + "symbol": "SNOWon", + "decimals": 18, + "status": "active", + "id": "0x5D1a9a9B118fF19721e0111f094f2360b6Ef7A2f", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/snowflake-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5D1a9a9B118fF19721e0111f094f2360b6Ef7A2f/logo.png b/blockchains/ethereum/assets/0x5D1a9a9B118fF19721e0111f094f2360b6Ef7A2f/logo.png new file mode 100644 index 0000000000000..f960a127a7b8a Binary files /dev/null and b/blockchains/ethereum/assets/0x5D1a9a9B118fF19721e0111f094f2360b6Ef7A2f/logo.png differ diff --git a/blockchains/ethereum/assets/0x5D642505FE1a28897eb3BaBA665F454755D8daA2/info.json b/blockchains/ethereum/assets/0x5D642505FE1a28897eb3BaBA665F454755D8daA2/info.json new file mode 100644 index 0000000000000..ba71865d8498b --- /dev/null +++ b/blockchains/ethereum/assets/0x5D642505FE1a28897eb3BaBA665F454755D8daA2/info.json @@ -0,0 +1,24 @@ +{ + "name": "AstraZeneca tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "AstraZeneca xStock (AZNx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. AZNx tracks the price of AstraZeneca PLC (the underlying). AZNx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of AstraZeneca PLC, whilst maintaining the benefits of blockchain technology. AstraZeneca is a British-Swedish biopharmaceutical company that focuses on research, development, and commercialization of prescription medicines.", + "explorer": "https://etherscan.io/token/0x5D642505FE1a28897eb3BaBA665F454755D8daA2", + "type": "ERC20", + "symbol": "AZNX", + "decimals": 18, + "status": "active", + "id": "0x5D642505FE1a28897eb3BaBA665F454755D8daA2", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/astrazeneca-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5D642505FE1a28897eb3BaBA665F454755D8daA2/logo.png b/blockchains/ethereum/assets/0x5D642505FE1a28897eb3BaBA665F454755D8daA2/logo.png new file mode 100644 index 0000000000000..d59462126c663 Binary files /dev/null and b/blockchains/ethereum/assets/0x5D642505FE1a28897eb3BaBA665F454755D8daA2/logo.png differ diff --git a/blockchains/ethereum/assets/0x5D8d9F5b96f4438195BE9b99eee6118Ed4304286/info.json b/blockchains/ethereum/assets/0x5D8d9F5b96f4438195BE9b99eee6118Ed4304286/info.json index af2728d5e5292..fe30a06628b92 100644 --- a/blockchains/ethereum/assets/0x5D8d9F5b96f4438195BE9b99eee6118Ed4304286/info.json +++ b/blockchains/ethereum/assets/0x5D8d9F5b96f4438195BE9b99eee6118Ed4304286/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/CoverProtocol" }, { - "name": "twitter", - "url": "https://twitter.com/COVERProtocol" + "name": "x", + "url": "https://x.com/COVERProtocol" }, { "name": "coingecko", diff --git a/blockchains/ethereum/assets/0x5DE8ab7E27f6E7A1fFf3E5B337584Aa43961BEeF/info.json b/blockchains/ethereum/assets/0x5DE8ab7E27f6E7A1fFf3E5B337584Aa43961BEeF/info.json new file mode 100644 index 0000000000000..ad915c316f975 --- /dev/null +++ b/blockchains/ethereum/assets/0x5DE8ab7E27f6E7A1fFf3E5B337584Aa43961BEeF/info.json @@ -0,0 +1,25 @@ +{ + "name": "SmarDex Token", + "type": "ERC20", + "symbol": "SDEX", + "decimals": 18, + "description": "SmarDex introduces USDN, a synthetic dollar that is set to replace traditional, centralized synthetic dollars like Ethena, which are becoming obsolete. USDN operates as a fully decentralized, on-chain solution designed to provide stability and reliability in the fast-paced crypto environment.", + "website": "https://smardex.io/", + "explorer": "https://etherscan.io/token/0x5de8ab7e27f6e7a1fff3e5b337584aa43961beef", + "id": "0x5DE8ab7E27f6E7A1fFf3E5B337584Aa43961BEeF", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/SmarDex" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/smardex/" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5DE8ab7E27f6E7A1fFf3E5B337584Aa43961BEeF/logo.png b/blockchains/ethereum/assets/0x5DE8ab7E27f6E7A1fFf3E5B337584Aa43961BEeF/logo.png new file mode 100644 index 0000000000000..d193ae876d17c Binary files /dev/null and b/blockchains/ethereum/assets/0x5DE8ab7E27f6E7A1fFf3E5B337584Aa43961BEeF/logo.png differ diff --git a/blockchains/ethereum/assets/0x5Dc02Ea99285E17656b8350722694c35154DB1E8/info.json b/blockchains/ethereum/assets/0x5Dc02Ea99285E17656b8350722694c35154DB1E8/info.json index 8747026c75099..8861bedcfcd95 100644 --- a/blockchains/ethereum/assets/0x5Dc02Ea99285E17656b8350722694c35154DB1E8/info.json +++ b/blockchains/ethereum/assets/0x5Dc02Ea99285E17656b8350722694c35154DB1E8/info.json @@ -10,8 +10,8 @@ "id": "0x5Dc02Ea99285E17656b8350722694c35154DB1E8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Bondedfinance" + "name": "x", + "url": "https://x.com/Bondedfinance" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5E3D723c0CB363127D4a6ab5D43d504A17a5c05D/info.json b/blockchains/ethereum/assets/0x5E3D723c0CB363127D4a6ab5D43d504A17a5c05D/info.json new file mode 100644 index 0000000000000..8b030e263b9b9 --- /dev/null +++ b/blockchains/ethereum/assets/0x5E3D723c0CB363127D4a6ab5D43d504A17a5c05D/info.json @@ -0,0 +1,21 @@ +{ + "name": "Euruka Tech AI", + "type": "ERC20", + "symbol": "ERC-AI", + "decimals": 9, + "website": "https://euruka.io/", + "description": "Euruka Tech AI is a cutting-edge cryptocurrency project that leverages the power of artificial intelligence to revolutionize the financial technology landscape. Our platform integrates advanced AI algorithms with blockchain technology to provide innovative solutions for secure, efficient", + "explorer": "https://etherscan.io/token/0x5E3D723c0CB363127D4a6ab5D43d504A17a5c05D", + "status": "active", + "id": "0x5E3D723c0CB363127D4a6ab5D43d504A17a5c05D", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/euruka-tech/" + }, + { + "name": "x", + "url": "https://x.com/Eurukatechai_" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5E3D723c0CB363127D4a6ab5D43d504A17a5c05D/logo.png b/blockchains/ethereum/assets/0x5E3D723c0CB363127D4a6ab5D43d504A17a5c05D/logo.png new file mode 100644 index 0000000000000..6c80351246674 Binary files /dev/null and b/blockchains/ethereum/assets/0x5E3D723c0CB363127D4a6ab5D43d504A17a5c05D/logo.png differ diff --git a/blockchains/ethereum/assets/0x5F64Ab1544D28732F0A24F4713c2C8ec0dA089f0/info.json b/blockchains/ethereum/assets/0x5F64Ab1544D28732F0A24F4713c2C8ec0dA089f0/info.json index 94119440e9f86..b2fd82cf6d25b 100644 --- a/blockchains/ethereum/assets/0x5F64Ab1544D28732F0A24F4713c2C8ec0dA089f0/info.json +++ b/blockchains/ethereum/assets/0x5F64Ab1544D28732F0A24F4713c2C8ec0dA089f0/info.json @@ -10,8 +10,8 @@ "id": "0x5F64Ab1544D28732F0A24F4713c2C8ec0dA089f0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/domaniprotocol" + "name": "x", + "url": "https://x.com/domaniprotocol" }, { "name": "coinmarketcap", @@ -29,4 +29,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5a3e6A77ba2f983eC0d371ea3B475F8Bc0811AD5/info.json b/blockchains/ethereum/assets/0x5a3e6A77ba2f983eC0d371ea3B475F8Bc0811AD5/info.json new file mode 100644 index 0000000000000..cdac7cf3707ec --- /dev/null +++ b/blockchains/ethereum/assets/0x5a3e6A77ba2f983eC0d371ea3B475F8Bc0811AD5/info.json @@ -0,0 +1,25 @@ +{ + "name": "0x0.ai: AI Smart Contract Auditor", + "type": "ERC20", + "symbol": "0x0", + "decimals": 9, + "description": "0x0.ai focuses on privacy, advanced AI-based safety tools, and a unique revenue-sharing model. With its cutting-edge technology, secure transactions, and opportunities for passive income, 0x0 revolutionizes the DeFi landscape.", + "website": "https://0x0.ai/", + "explorer": "https://etherscan.io/token/0x5a3e6a77ba2f983ec0d371ea3b475f8bc0811ad5", + "id": "0x5a3e6A77ba2f983eC0d371ea3B475F8Bc0811AD5", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/0x0exchange" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/0x0-ai-ai-smart-contract/" + } + ], + "tags": [ + "privacy" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5a3e6A77ba2f983eC0d371ea3B475F8Bc0811AD5/logo.png b/blockchains/ethereum/assets/0x5a3e6A77ba2f983eC0d371ea3B475F8Bc0811AD5/logo.png new file mode 100644 index 0000000000000..a6b1fbdd7c876 Binary files /dev/null and b/blockchains/ethereum/assets/0x5a3e6A77ba2f983eC0d371ea3B475F8Bc0811AD5/logo.png differ diff --git a/blockchains/ethereum/assets/0x5a50B3d55e9a1089029824a26caaA8f2abFC4bb0/info.json b/blockchains/ethereum/assets/0x5a50B3d55e9a1089029824a26caaA8f2abFC4bb0/info.json index 7f4adfa261b30..74f2bbb87c20b 100644 --- a/blockchains/ethereum/assets/0x5a50B3d55e9a1089029824a26caaA8f2abFC4bb0/info.json +++ b/blockchains/ethereum/assets/0x5a50B3d55e9a1089029824a26caaA8f2abFC4bb0/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/xuniifinance/" }, { - "name": "twitter", - "url": "https://twitter.com/xuniifinance" + "name": "x", + "url": "https://x.com/xuniifinance" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x5aFE3855358E112B5647B952709E6165e1c1eEEe/info.json b/blockchains/ethereum/assets/0x5aFE3855358E112B5647B952709E6165e1c1eEEe/info.json new file mode 100644 index 0000000000000..d322fa95a2229 --- /dev/null +++ b/blockchains/ethereum/assets/0x5aFE3855358E112B5647B952709E6165e1c1eEEe/info.json @@ -0,0 +1,29 @@ +{ + "name": "Safe", + "type": "ERC20", + "symbol": "SAFE", + "decimals": 18, + "description": "Safe is the ownership layer of web3 securing >$100B+. It includes Safe{Core} a full stack of account abstraction infrastructure and the industry-standard multi-sig, Safe{Wallet}. The project is focused on making every Ethereum account, a smart account and enabling new use cases like AI, Staking, Gaming, SocialFi, DeFi, and Payments to flourish with gasless transaction, easy face-ID like logins, onramps, recovery and more.", + "website": "https://safe.global/", + "explorer": "https://etherscan.io/token/0x5aFE3855358E112B5647B952709E6165e1c1eEEe", + "id": "0x5aFE3855358E112B5647B952709E6165e1c1eEEe", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/safe" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/safe1/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/safe" + } + ], + "tags": [ + "staking" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5aFE3855358E112B5647B952709E6165e1c1eEEe/logo.png b/blockchains/ethereum/assets/0x5aFE3855358E112B5647B952709E6165e1c1eEEe/logo.png new file mode 100644 index 0000000000000..6f5fd6eff846e Binary files /dev/null and b/blockchains/ethereum/assets/0x5aFE3855358E112B5647B952709E6165e1c1eEEe/logo.png differ diff --git a/blockchains/ethereum/assets/0x5b5bB9765eff8D26c24B9FF0DAa09838a3Cd78E9/info.json b/blockchains/ethereum/assets/0x5b5bB9765eff8D26c24B9FF0DAa09838a3Cd78E9/info.json index b0e4c34a545b7..890c1b027724f 100644 --- a/blockchains/ethereum/assets/0x5b5bB9765eff8D26c24B9FF0DAa09838a3Cd78E9/info.json +++ b/blockchains/ethereum/assets/0x5b5bB9765eff8D26c24B9FF0DAa09838a3Cd78E9/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/vittominacori/erc20-generator/blob/v3.0.4/dist/BaseToken.dist.sol" }, { - "name": "twitter", - "url": "https://twitter.com/@bitaniumb" + "name": "x", + "url": "https://x.com/@bitaniumb" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x5bEaBAEBB3146685Dd74176f68a0721F91297D37/info.json b/blockchains/ethereum/assets/0x5bEaBAEBB3146685Dd74176f68a0721F91297D37/info.json index b26b348a93589..939bb8c13917d 100644 --- a/blockchains/ethereum/assets/0x5bEaBAEBB3146685Dd74176f68a0721F91297D37/info.json +++ b/blockchains/ethereum/assets/0x5bEaBAEBB3146685Dd74176f68a0721F91297D37/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/bouncefinance" }, { - "name": "twitter", - "url": "https://twitter.com/bounce_finance" + "name": "x", + "url": "https://x.com/bounce_finance" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x5c147e74D63B1D31AA3Fd78Eb229B65161983B2b/info.json b/blockchains/ethereum/assets/0x5c147e74D63B1D31AA3Fd78Eb229B65161983B2b/info.json index 170290b4882fc..7516eea2210f6 100644 --- a/blockchains/ethereum/assets/0x5c147e74D63B1D31AA3Fd78Eb229B65161983B2b/info.json +++ b/blockchains/ethereum/assets/0x5c147e74D63B1D31AA3Fd78Eb229B65161983B2b/info.json @@ -1,5 +1,5 @@ { - "name": "Wrapped Flow", + "name": "Flow", "type": "ERC20", "symbol": "WFLOW", "decimals": 18, @@ -10,8 +10,8 @@ "id": "0x5c147e74D63B1D31AA3Fd78Eb229B65161983B2b", "links": [ { - "name": "twitter", - "url": "https://twitter.com/flow_blockchain" + "name": "x", + "url": "https://x.com/flow_blockchain" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0x5c8D0C48810FD37A0A824D074ee290E64f7A8Fa2/info.json b/blockchains/ethereum/assets/0x5c8D0C48810FD37A0A824D074ee290E64f7A8Fa2/info.json new file mode 100644 index 0000000000000..e9b66aa818e45 --- /dev/null +++ b/blockchains/ethereum/assets/0x5c8D0C48810FD37A0A824D074ee290E64f7A8Fa2/info.json @@ -0,0 +1,17 @@ +{ + "name": "AVL", + "type": "ERC20", + "symbol": "AVL", + "decimals": 18, + "website": "https://www.avalonfinance.xyz/", + "description": "Avalon Labs is the world's largest issuer of Bitcoin-backed stablecoins", + "explorer": "https://etherscan.io/token/0x5c8D0C48810FD37A0A824D074ee290E64f7A8Fa2", + "status": "active", + "id": "0x5c8D0C48810FD37A0A824D074ee290E64f7A8Fa2", + "links": [ + { + "name": "x", + "url": "https://x.com/avalonfinance_" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5c8D0C48810FD37A0A824D074ee290E64f7A8Fa2/logo.png b/blockchains/ethereum/assets/0x5c8D0C48810FD37A0A824D074ee290E64f7A8Fa2/logo.png new file mode 100644 index 0000000000000..8937d17d852bd Binary files /dev/null and b/blockchains/ethereum/assets/0x5c8D0C48810FD37A0A824D074ee290E64f7A8Fa2/logo.png differ diff --git a/blockchains/ethereum/assets/0x5cb95099a2C7e3C8187fbca6eFe5ba222b5bA820/info.json b/blockchains/ethereum/assets/0x5cb95099a2C7e3C8187fbca6eFe5ba222b5bA820/info.json new file mode 100644 index 0000000000000..fed816181fab8 --- /dev/null +++ b/blockchains/ethereum/assets/0x5cb95099a2C7e3C8187fbca6eFe5ba222b5bA820/info.json @@ -0,0 +1,28 @@ +{ + "name": "MasTec (Ondo Tokenized)", + "type": "ERC20", + "symbol": "MTZon", + "decimals": 18, + "description": "MTZon is the Ondo Tokenized version of MasTec, giving tokenholders economic exposure similar to holding MTZ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x5cb95099a2C7e3C8187fbca6eFe5ba222b5bA820", + "status": "active", + "id": "0x5cb95099a2C7e3C8187fbca6eFe5ba222b5bA820", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mastec-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mastec-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5cb95099a2C7e3C8187fbca6eFe5ba222b5bA820/logo.png b/blockchains/ethereum/assets/0x5cb95099a2C7e3C8187fbca6eFe5ba222b5bA820/logo.png new file mode 100644 index 0000000000000..5d8e18111cb06 Binary files /dev/null and b/blockchains/ethereum/assets/0x5cb95099a2C7e3C8187fbca6eFe5ba222b5bA820/logo.png differ diff --git a/blockchains/ethereum/assets/0x5de5Aca787818a2d485E278727cE575D54FedbE4/info.json b/blockchains/ethereum/assets/0x5de5Aca787818a2d485E278727cE575D54FedbE4/info.json new file mode 100644 index 0000000000000..84d1964dfc02b --- /dev/null +++ b/blockchains/ethereum/assets/0x5de5Aca787818a2d485E278727cE575D54FedbE4/info.json @@ -0,0 +1,21 @@ +{ + "name": "GME MASCOT", + "website": "https://gme-buck.vip/", + "description": "$Buck is the official mascot token for the GME community.", + "explorer": "https://etherscan.io/token/0x5de5aca787818a2d485e278727ce575d54fedbe4", + "type": "ERC20", + "symbol": "BUCK", + "decimals": 9, + "status": "active", + "id": "0x5de5Aca787818a2d485E278727cE575D54FedbE4", + "links": [ + { + "name": "x", + "url": "https://x.com/gme_buck" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gme-mascot/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5de5Aca787818a2d485E278727cE575D54FedbE4/logo.png b/blockchains/ethereum/assets/0x5de5Aca787818a2d485E278727cE575D54FedbE4/logo.png new file mode 100644 index 0000000000000..6436d787dcb29 Binary files /dev/null and b/blockchains/ethereum/assets/0x5de5Aca787818a2d485E278727cE575D54FedbE4/logo.png differ diff --git a/blockchains/ethereum/assets/0x5e29CF3E3fEd4df50aCab95f8268e9ee26Ea36f2/info.json b/blockchains/ethereum/assets/0x5e29CF3E3fEd4df50aCab95f8268e9ee26Ea36f2/info.json new file mode 100644 index 0000000000000..e550af7a27c2c --- /dev/null +++ b/blockchains/ethereum/assets/0x5e29CF3E3fEd4df50aCab95f8268e9ee26Ea36f2/info.json @@ -0,0 +1,26 @@ +{ + "name": "Dacxi Coin", + "type": "ERC20", + "symbol": "DXI", + "decimals": 18, + "description": "Dacxi Coin is the native cryptocurrency of the Dacxi Chain, the world’s first global tokenized crowdfunding system. It utilizes blockchain technology and tokenization to create digital versions of company shares, allowing for easy buying and selling by anyone, anywhere, at any time.", + "website": "https://rafaelcarretero.es", + "explorer": "https://etherscan.io/token/0x5e29CF3E3fEd4df50aCab95f8268e9ee26Ea36f2", + "id": "0x5e29CF3E3fEd4df50aCab95f8268e9ee26Ea36f2", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/dacxicoin" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dacxi" + } + + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5e29CF3E3fEd4df50aCab95f8268e9ee26Ea36f2/logo.png b/blockchains/ethereum/assets/0x5e29CF3E3fEd4df50aCab95f8268e9ee26Ea36f2/logo.png new file mode 100644 index 0000000000000..5f20738cbb2a9 Binary files /dev/null and b/blockchains/ethereum/assets/0x5e29CF3E3fEd4df50aCab95f8268e9ee26Ea36f2/logo.png differ diff --git a/blockchains/ethereum/assets/0x5fAa989Af96Af85384b8a938c2EdE4A7378D9875/info.json b/blockchains/ethereum/assets/0x5fAa989Af96Af85384b8a938c2EdE4A7378D9875/info.json index 0802bc02b25a5..224ddd0910605 100644 --- a/blockchains/ethereum/assets/0x5fAa989Af96Af85384b8a938c2EdE4A7378D9875/info.json +++ b/blockchains/ethereum/assets/0x5fAa989Af96Af85384b8a938c2EdE4A7378D9875/info.json @@ -18,8 +18,8 @@ "url": "https://coingecko.com/en/coins/galxe" }, { - "name": "twitter", - "url": "https://twitter.com/galxe" + "name": "x", + "url": "https://x.com/galxe" }, { "name": "telegram", @@ -33,4 +33,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5ff668ddfDcBB7505f41ED56e626E4D4719DcB26/info.json b/blockchains/ethereum/assets/0x5ff668ddfDcBB7505f41ED56e626E4D4719DcB26/info.json index a1b29a4ddb59d..213d164ce57ad 100644 --- a/blockchains/ethereum/assets/0x5ff668ddfDcBB7505f41ED56e626E4D4719DcB26/info.json +++ b/blockchains/ethereum/assets/0x5ff668ddfDcBB7505f41ED56e626E4D4719DcB26/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/loki-project/loki-core" }, { - "name": "twitter", - "url": "https://twitter.com/Loki_Project" + "name": "x", + "url": "https://x.com/Loki_Project" }, { "name": "whitepaper", diff --git a/blockchains/ethereum/assets/0x6006FC2a849fEdABa8330ce36F5133DE01F96189/info.json b/blockchains/ethereum/assets/0x6006FC2a849fEdABa8330ce36F5133DE01F96189/info.json index 653c90d7ad107..4f41ec4f4df10 100644 --- a/blockchains/ethereum/assets/0x6006FC2a849fEdABa8330ce36F5133DE01F96189/info.json +++ b/blockchains/ethereum/assets/0x6006FC2a849fEdABa8330ce36F5133DE01F96189/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/spaceswap/spaceswap" }, { - "name": "twitter", - "url": "https://twitter.com/spaceswapdefi" + "name": "x", + "url": "https://x.com/spaceswapdefi" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x6033F7f88332B8db6ad452B7C6D5bB643990aE3f/info.json b/blockchains/ethereum/assets/0x6033F7f88332B8db6ad452B7C6D5bB643990aE3f/info.json new file mode 100644 index 0000000000000..a4446b48e2252 --- /dev/null +++ b/blockchains/ethereum/assets/0x6033F7f88332B8db6ad452B7C6D5bB643990aE3f/info.json @@ -0,0 +1,25 @@ +{ + "name": "Lisk", + "type": "ERC20", + "symbol": "LSK", + "decimals": 18, + "description": "Lisk is a cost-efficient, fast, and scalable layer-2 (L2) network based on Optimism (OP) and secured by Ethereum. Built on the MIT-licensed OP Stack and partnered with Gelato as a RaaS provider, Lisk contributes to scaling Ethereum to a level where blockchain infrastructure is ready for mass adoption.", + "website": "https://lisk.com/", + "explorer": "https://etherscan.io/token/0x6033f7f88332b8db6ad452b7c6d5bb643990ae3f", + "id": "0x6033F7f88332B8db6ad452B7C6D5bB643990aE3f", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/LiskHQ" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lisk/" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6033F7f88332B8db6ad452B7C6D5bB643990aE3f/logo.png b/blockchains/ethereum/assets/0x6033F7f88332B8db6ad452B7C6D5bB643990aE3f/logo.png new file mode 100644 index 0000000000000..331bb1c80cd8c Binary files /dev/null and b/blockchains/ethereum/assets/0x6033F7f88332B8db6ad452B7C6D5bB643990aE3f/logo.png differ diff --git a/blockchains/ethereum/assets/0x6051C1354Ccc51b4d561e43b02735DEaE64768B8/info.json b/blockchains/ethereum/assets/0x6051C1354Ccc51b4d561e43b02735DEaE64768B8/info.json index 7b316ccd0ca2f..52ccfe3b699a1 100644 --- a/blockchains/ethereum/assets/0x6051C1354Ccc51b4d561e43b02735DEaE64768B8/info.json +++ b/blockchains/ethereum/assets/0x6051C1354Ccc51b4d561e43b02735DEaE64768B8/info.json @@ -10,8 +10,8 @@ "id": "0x6051C1354Ccc51b4d561e43b02735DEaE64768B8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/YriseFinance" + "name": "x", + "url": "https://x.com/YriseFinance" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x607C794cDa77efB21F8848B7910ecf27451Ae842/info.json b/blockchains/ethereum/assets/0x607C794cDa77efB21F8848B7910ecf27451Ae842/info.json index 8bf2ec714043b..dd45a92b74646 100644 --- a/blockchains/ethereum/assets/0x607C794cDa77efB21F8848B7910ecf27451Ae842/info.json +++ b/blockchains/ethereum/assets/0x607C794cDa77efB21F8848B7910ecf27451Ae842/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/DefiPie" }, { - "name": "twitter", - "url": "https://twitter.com/defipiepie" + "name": "x", + "url": "https://x.com/defipiepie" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x60808f2a0d035e16F57e9043842BD1BFBda24fA2/info.json b/blockchains/ethereum/assets/0x60808f2a0d035e16F57e9043842BD1BFBda24fA2/info.json new file mode 100644 index 0000000000000..dfe0c2f06b0c2 --- /dev/null +++ b/blockchains/ethereum/assets/0x60808f2a0d035e16F57e9043842BD1BFBda24fA2/info.json @@ -0,0 +1,28 @@ +{ + "name": "Thermo Fisher Scientific (Ondo Tokenized)", + "type": "ERC20", + "symbol": "TMOon", + "decimals": 18, + "description": "TMOon is the Ondo Tokenized version of Thermo Fisher Scientific, giving tokenholders economic exposure similar to holding TMO and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x60808f2a0d035e16F57e9043842BD1BFBda24fA2", + "status": "active", + "id": "0x60808f2a0d035e16F57e9043842BD1BFBda24fA2", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/thermo-fisher-scientific-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/thermo-fisher-scientific-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x60808f2a0d035e16F57e9043842BD1BFBda24fA2/logo.png b/blockchains/ethereum/assets/0x60808f2a0d035e16F57e9043842BD1BFBda24fA2/logo.png new file mode 100644 index 0000000000000..f580f2c060e22 Binary files /dev/null and b/blockchains/ethereum/assets/0x60808f2a0d035e16F57e9043842BD1BFBda24fA2/logo.png differ diff --git a/blockchains/ethereum/assets/0x608f006B6813f97097372d0d31Fb0F11d1CA3E4e/info.json b/blockchains/ethereum/assets/0x608f006B6813f97097372d0d31Fb0F11d1CA3E4e/info.json index 9a97eb52e21ba..bb80c99267d93 100644 --- a/blockchains/ethereum/assets/0x608f006B6813f97097372d0d31Fb0F11d1CA3E4e/info.json +++ b/blockchains/ethereum/assets/0x608f006B6813f97097372d0d31Fb0F11d1CA3E4e/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/ixc-software" }, { - "name": "twitter", - "url": "https://twitter.com/CryptoAds Marketplace" + "name": "x", + "url": "https://x.com/CryptoAds Marketplace" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x609e79A9fB9A71655B017f637A962B9962F4a9FC/info.json b/blockchains/ethereum/assets/0x609e79A9fB9A71655B017f637A962B9962F4a9FC/info.json new file mode 100644 index 0000000000000..e3a407cc4ece4 --- /dev/null +++ b/blockchains/ethereum/assets/0x609e79A9fB9A71655B017f637A962B9962F4a9FC/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE OXN", + "type": "ERC20", + "symbol": "FAKE OXN", + "decimals": 16, + "description": "This token is malicious do not interact", + "website": "https://etherscan.io/token/0x609e79A9fB9A71655B017f637A962B9962F4a9FC", + "explorer": "https://etherscan.io/token/0x609e79A9fB9A71655B017f637A962B9962F4a9FC", + "status": "spam", + "id": "0x609e79A9fB9A71655B017f637A962B9962F4a9FC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x60d95823F795F1972dBDbcd886955095E36E04Cd/info.json b/blockchains/ethereum/assets/0x60d95823F795F1972dBDbcd886955095E36E04Cd/info.json new file mode 100644 index 0000000000000..042deab991b38 --- /dev/null +++ b/blockchains/ethereum/assets/0x60d95823F795F1972dBDbcd886955095E36E04Cd/info.json @@ -0,0 +1,21 @@ +{ + "name": "Genie Ai", + "symbol": "GENIE", + "type": "ERC20", + "decimals": 18, + "description": "Open-source platform to build, ship and monitor agentic systems.", + "website": "https://genieai.live/", + "explorer": "https://etherscan.io/token/0x60d95823f795f1972dbdbcd886955095e36e04cd", + "status": "active", + "id": "0x60d95823F795F1972dBDbcd886955095E36E04Cd", + "links": [ + { + "name": "x", + "url": "https://x.com/Genieaieth" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/genie-ai" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x60d95823F795F1972dBDbcd886955095E36E04Cd/logo.png b/blockchains/ethereum/assets/0x60d95823F795F1972dBDbcd886955095E36E04Cd/logo.png new file mode 100644 index 0000000000000..8530d08e791b4 Binary files /dev/null and b/blockchains/ethereum/assets/0x60d95823F795F1972dBDbcd886955095E36E04Cd/logo.png differ diff --git a/blockchains/ethereum/assets/0x60e254E35Dd712394b3AbA7A1D19114732e143dD/info.json b/blockchains/ethereum/assets/0x60e254E35Dd712394b3AbA7A1D19114732e143dD/info.json new file mode 100644 index 0000000000000..c7112cfd28187 --- /dev/null +++ b/blockchains/ethereum/assets/0x60e254E35Dd712394b3AbA7A1D19114732e143dD/info.json @@ -0,0 +1,21 @@ +{ + "name": "RivusDAO", + "website": "https://www.rivusdao.xyz/", + "description": "Seamlessly integrate staking rewards while maintaining liquidity and flexibility for your digital assets.", + "explorer": "https://etherscan.io/token/0x60e254e35dd712394b3aba7a1d19114732e143dd", + "type": "ERC20", + "symbol": "RIVUS", + "decimals": 18, + "status": "active", + "id": "0x60e254E35Dd712394b3AbA7A1D19114732e143dD", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rivusdao/" + }, + { + "name": "x", + "url": "https://x.com/RivusDAO" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x60e254E35Dd712394b3AbA7A1D19114732e143dD/logo.png b/blockchains/ethereum/assets/0x60e254E35Dd712394b3AbA7A1D19114732e143dD/logo.png new file mode 100644 index 0000000000000..6a716613f04f2 Binary files /dev/null and b/blockchains/ethereum/assets/0x60e254E35Dd712394b3AbA7A1D19114732e143dD/logo.png differ diff --git a/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/info.json b/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/info.json index d6ce3e0ebdb29..2ab891c681db0 100644 --- a/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/info.json +++ b/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/info.json @@ -1,25 +1,28 @@ { - "name": "NONbeta", - "symbol": "SOON", + "name": "Ethereans", + "symbol": "OS", "type": "ERC20", "decimals": 18, - "description": "Governance Token of the NONgov BETA. After the NONnation release the NON token, will be distributed 1:1 to OS holders", - "website": "https://nonnation.xyz", + "description": "Governance Token of EthereansOS (EthOS) protocol. More info: https://ethos.eth", + "website": "https://ethereans.app", "explorer": "https://etherscan.io/token/0x6100dd79fCAA88420750DceE3F735d168aBcB771", "status": "active", "id": "0x6100dd79fCAA88420750DceE3F735d168aBcB771", + "tags": [ + "governance" + ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/nonlabshq" + "name": "x", + "url": "https://x.com/ethereansOS" }, { "name": "discord", - "url": "https://discord.com/nonlabs" + "url": "https://discord.com/invite/ncbK6nYdFU" }, { "name": "youtube", - "url": "https://youtube.com/@nonlabs" + "url": "https://youtube.com/@EthereansOS" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/logo.png b/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/logo.png index 98342ec40dd8b..86ffb8db7a513 100644 Binary files a/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/logo.png and b/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/logo.png differ diff --git a/blockchains/ethereum/assets/0x6123B0049F904d730dB3C36a31167D9d4121fA6B/info.json b/blockchains/ethereum/assets/0x6123B0049F904d730dB3C36a31167D9d4121fA6B/info.json new file mode 100644 index 0000000000000..4a556f5afb9a5 --- /dev/null +++ b/blockchains/ethereum/assets/0x6123B0049F904d730dB3C36a31167D9d4121fA6B/info.json @@ -0,0 +1,21 @@ +{ + "name": "Ribbon", + "type": "ERC20", + "symbol": "RBN", + "decimals": 18, + "website": "https://www.ribbon.finance/", + "description": "Ribbon uses financial engineering to create structured products that aim to deliver sustainable yield. Ribbon's first product focuses on yield through automated options strategies. The protocol also allows developers to create arbitrary structured products by combining various DeFi derivatives.", + "explorer": "https://etherscan.io/token/0x6123b0049f904d730db3c36a31167d9d4121fa6b", + "status": "active", + "id": "0x6123B0049F904d730dB3C36a31167D9d4121fA6B", + "links": [ + { + "name": "x", + "url": "https://x.com/ribbonfinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ribbon-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6123B0049F904d730dB3C36a31167D9d4121fA6B/logo.png b/blockchains/ethereum/assets/0x6123B0049F904d730dB3C36a31167D9d4121fA6B/logo.png new file mode 100644 index 0000000000000..d4cdccc8491b4 Binary files /dev/null and b/blockchains/ethereum/assets/0x6123B0049F904d730dB3C36a31167D9d4121fA6B/logo.png differ diff --git a/blockchains/ethereum/assets/0x614D7f40701132E25fe6fc17801Fbd34212d2Eda/info.json b/blockchains/ethereum/assets/0x614D7f40701132E25fe6fc17801Fbd34212d2Eda/info.json index 70950d626eafb..42bbbe3112b25 100644 --- a/blockchains/ethereum/assets/0x614D7f40701132E25fe6fc17801Fbd34212d2Eda/info.json +++ b/blockchains/ethereum/assets/0x614D7f40701132E25fe6fc17801Fbd34212d2Eda/info.json @@ -10,8 +10,8 @@ "id": "0x614D7f40701132E25fe6fc17801Fbd34212d2Eda", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SafeBlastArmy" + "name": "x", + "url": "https://x.com/SafeBlastArmy" }, { "name": "facebook", diff --git a/blockchains/ethereum/assets/0x614Da3b37B6F66F7Ce69B4Bbbcf9a55CE6168707/info.json b/blockchains/ethereum/assets/0x614Da3b37B6F66F7Ce69B4Bbbcf9a55CE6168707/info.json new file mode 100644 index 0000000000000..19779a2b940f5 --- /dev/null +++ b/blockchains/ethereum/assets/0x614Da3b37B6F66F7Ce69B4Bbbcf9a55CE6168707/info.json @@ -0,0 +1,21 @@ +{ + "name": "M2 Global Wealth Limited", + "website": "https://www.m2.com/", + "description": "The New Home Of Crypto. Best-in-class trading and investment platform to grow your wealth in the digital asset space.", + "explorer": "https://etherscan.io/token/0x614Da3b37B6F66F7Ce69B4Bbbcf9a55CE6168707", + "type": "ERC20", + "symbol": "MMX", + "decimals": 18, + "status": "active", + "id": "0x614Da3b37B6F66F7Ce69B4Bbbcf9a55CE6168707", + "links": [ + { + "name": "x", + "url": "https://x.com/m2exchange" + }, + { + "name": "telegram", + "url": "https://t.me/M2Announcements" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x614Da3b37B6F66F7Ce69B4Bbbcf9a55CE6168707/logo.png b/blockchains/ethereum/assets/0x614Da3b37B6F66F7Ce69B4Bbbcf9a55CE6168707/logo.png new file mode 100644 index 0000000000000..f2b3d4343a5d3 Binary files /dev/null and b/blockchains/ethereum/assets/0x614Da3b37B6F66F7Ce69B4Bbbcf9a55CE6168707/logo.png differ diff --git a/blockchains/ethereum/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/info.json b/blockchains/ethereum/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/info.json new file mode 100644 index 0000000000000..33f469bc990b7 --- /dev/null +++ b/blockchains/ethereum/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/info.json @@ -0,0 +1,24 @@ +{ + "name": "Chilean Peso", + "website": "https://www.ripio.com/es/criptos/stablecoins-locales", + "description": "wCLP is a fully collateralized stablecoin pegged 1:1 to the Chilean Peso (CLP). Issued and governed by a Ripio subsidiary, it brings CLP on-chain so users can transact, save, and build on decentralized networks in their local currency.", + "explorer": "https://etherscan.io/token/0x61D450a098b6a7f69fC4b98CE68198fe59768651", + "type": "ERC20", + "symbol": "wCLP", + "decimals": 18, + "status": "active", + "id": "0x61D450a098b6a7f69fC4b98CE68198fe59768651", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/RipioApp" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/chilean-peso" + } + ] +} diff --git a/blockchains/ethereum/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/logo.png b/blockchains/ethereum/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/logo.png new file mode 100644 index 0000000000000..08570c22038ef Binary files /dev/null and b/blockchains/ethereum/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/logo.png differ diff --git a/blockchains/ethereum/assets/0x61E90A50137E1F645c9eF4a0d3A4f01477738406/info.json b/blockchains/ethereum/assets/0x61E90A50137E1F645c9eF4a0d3A4f01477738406/info.json new file mode 100644 index 0000000000000..93f707a9a659b --- /dev/null +++ b/blockchains/ethereum/assets/0x61E90A50137E1F645c9eF4a0d3A4f01477738406/info.json @@ -0,0 +1,21 @@ +{ + "name": "League of Kingdoms Arena", + "website": "http://playersarena.foundation/", + "description": "League of Kingdoms Arena (LOKA) aims at building a decentralized gaming metaverse on the world’s first blockchain MMO strategy game, League of Kingdoms. The LOKA token adds to the existing set of NFTs to enable governance rights and additional utilities to the League of Kingdoms community.", + "explorer": "https://etherscan.io/token/0x61e90a50137e1f645c9ef4a0d3a4f01477738406", + "symbol": "LOKA", + "type": "ERC20", + "decimals": 18, + "status": "active", + "id": "0x61E90A50137E1F645c9eF4a0d3A4f01477738406", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/league-of-kingdoms/" + }, + { + "name": "x", + "url": "https://x.com/LeagueKingdoms" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x61E90A50137E1F645c9eF4a0d3A4f01477738406/logo.png b/blockchains/ethereum/assets/0x61E90A50137E1F645c9eF4a0d3A4f01477738406/logo.png new file mode 100644 index 0000000000000..c62c82fc46eae Binary files /dev/null and b/blockchains/ethereum/assets/0x61E90A50137E1F645c9eF4a0d3A4f01477738406/logo.png differ diff --git a/blockchains/ethereum/assets/0x61cc6aF18C351351148815c5F4813A16DEe7A7E4/info.json b/blockchains/ethereum/assets/0x61cc6aF18C351351148815c5F4813A16DEe7A7E4/info.json new file mode 100644 index 0000000000000..2b4108f0f668a --- /dev/null +++ b/blockchains/ethereum/assets/0x61cc6aF18C351351148815c5F4813A16DEe7A7E4/info.json @@ -0,0 +1,21 @@ +{ + "name": "WalletConnect", + "type": "ERC20", + "symbol": "WCT", + "decimals": 18, + "website": "https://walletconnect.network/", + "description": "WCT is the native token of the WalletConnect Network that secures the network via staking, rewards, fees, and governance.", + "explorer": "https://etherscan.io/token/0x61cc6aF18C351351148815c5F4813A16DEe7A7E4", + "status": "active", + "id": "0x61cc6aF18C351351148815c5F4813A16DEe7A7E4", + "links": [ + { + "name": "x", + "url": "https://x.com/WalletConnect" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/walletconnect-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x61cc6aF18C351351148815c5F4813A16DEe7A7E4/logo.png b/blockchains/ethereum/assets/0x61cc6aF18C351351148815c5F4813A16DEe7A7E4/logo.png new file mode 100644 index 0000000000000..dd09bc1db69b2 Binary files /dev/null and b/blockchains/ethereum/assets/0x61cc6aF18C351351148815c5F4813A16DEe7A7E4/logo.png differ diff --git a/blockchains/ethereum/assets/0x6226e00bCAc68b0Fe55583B90A1d727C14fAB77f/info.json b/blockchains/ethereum/assets/0x6226e00bCAc68b0Fe55583B90A1d727C14fAB77f/info.json index 68f934d219594..f5b1694da84cc 100644 --- a/blockchains/ethereum/assets/0x6226e00bCAc68b0Fe55583B90A1d727C14fAB77f/info.json +++ b/blockchains/ethereum/assets/0x6226e00bCAc68b0Fe55583B90A1d727C14fAB77f/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/multivactech" }, { - "name": "twitter", - "url": "https://twitter.com/MultiVAC_Global" + "name": "x", + "url": "https://x.com/MultiVAC_Global" }, { "name": "blog", diff --git a/blockchains/ethereum/assets/0x62359Ed7505Efc61FF1D56fEF82158CcaffA23D7/info.json b/blockchains/ethereum/assets/0x62359Ed7505Efc61FF1D56fEF82158CcaffA23D7/info.json index 1d81950521a6f..2f9cba9678ee2 100644 --- a/blockchains/ethereum/assets/0x62359Ed7505Efc61FF1D56fEF82158CcaffA23D7/info.json +++ b/blockchains/ethereum/assets/0x62359Ed7505Efc61FF1D56fEF82158CcaffA23D7/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/cVault-finance/" }, { - "name": "twitter", - "url": "https://twitter.com/CORE_VAULT" + "name": "x", + "url": "https://x.com/CORE_VAULT" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x625Fb557cAD6D4638dae420626F3F08A485b43a8/info.json b/blockchains/ethereum/assets/0x625Fb557cAD6D4638dae420626F3F08A485b43a8/info.json new file mode 100644 index 0000000000000..ebb89618b387f --- /dev/null +++ b/blockchains/ethereum/assets/0x625Fb557cAD6D4638dae420626F3F08A485b43a8/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares MSCI Japan ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "EWJon", + "decimals": 18, + "description": "EWJon is the Ondo Tokenized version of the iShares MSCI Japan ETF , giving tokenholders economic exposure similar to holding EWJ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x625Fb557cAD6D4638dae420626F3F08A485b43a8", + "status": "active", + "id": "0x625Fb557cAD6D4638dae420626F3F08A485b43a8", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-msci-japan-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x625Fb557cAD6D4638dae420626F3F08A485b43a8/logo.png b/blockchains/ethereum/assets/0x625Fb557cAD6D4638dae420626F3F08A485b43a8/logo.png new file mode 100644 index 0000000000000..2ce033b091a15 Binary files /dev/null and b/blockchains/ethereum/assets/0x625Fb557cAD6D4638dae420626F3F08A485b43a8/logo.png differ diff --git a/blockchains/ethereum/assets/0x628A3b2E302C7e896AcC432D2d0dD22B6cb9bc88/info.json b/blockchains/ethereum/assets/0x628A3b2E302C7e896AcC432D2d0dD22B6cb9bc88/info.json index fdca635aff9f4..c827cf4eacd06 100644 --- a/blockchains/ethereum/assets/0x628A3b2E302C7e896AcC432D2d0dD22B6cb9bc88/info.json +++ b/blockchains/ethereum/assets/0x628A3b2E302C7e896AcC432D2d0dD22B6cb9bc88/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/limewire" + "name": "x", + "url": "https://x.com/limewire" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x62959c699A52eC647622c91e79CE73344e4099f5/info.json b/blockchains/ethereum/assets/0x62959c699A52eC647622c91e79CE73344e4099f5/info.json index cfd5982981b9d..e42d6b4e3b5bd 100644 --- a/blockchains/ethereum/assets/0x62959c699A52eC647622c91e79CE73344e4099f5/info.json +++ b/blockchains/ethereum/assets/0x62959c699A52eC647622c91e79CE73344e4099f5/info.json @@ -10,8 +10,8 @@ "id": "0x62959c699A52eC647622c91e79CE73344e4099f5", "links": [ { - "name": "twitter", - "url": "https://twitter.com/DeFinePlatform" + "name": "x", + "url": "https://x.com/DeFinePlatform" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/info.json b/blockchains/ethereum/assets/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/info.json new file mode 100644 index 0000000000000..76f185149e892 --- /dev/null +++ b/blockchains/ethereum/assets/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/info.json @@ -0,0 +1,64 @@ +{ + "name": "Beam", + "type": "ERC20", + "symbol": "BEAM", + "decimals": 18, + "website": "https://meritcircle.io/", + "description": "Beam is a sovereign network focused on gaming brought to you by the Merit Circle DAO.", + "explorer": "https://etherscan.io/token/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE", + "status": "active", + "id": "0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE", + "links": [ + { + "name": "x", + "url": "https://x.com/buildonbeam" + }, + { + "name": "github", + "url": "https://github.com/Merit-Circle" + }, + { + "name": "telegram", + "url": "https://t.me/meritcircle" + }, + { + "name": "telegram_news", + "url": "https://t.me/meritcircle_ann" + }, + { + "name": "docs", + "url": "https://docs.onbeam.com" + }, + { + "name": "blog", + "url": "https://medium.com/@meritcircle" + }, + { + "name": "forum", + "url": "https://gov.meritcircle.io/" + }, + { + "name": "medium", + "url": "https://medium.com/@meritcircle" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/beam-2" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/onbeam/" + }, + { + "name": "whitepaper", + "url": "https://meritcircle.gitbook.io/merit-circle/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/meritcircle" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/logo.png b/blockchains/ethereum/assets/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/logo.png new file mode 100644 index 0000000000000..df55519f7a2dd Binary files /dev/null and b/blockchains/ethereum/assets/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/logo.png differ diff --git a/blockchains/ethereum/assets/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B/info.json b/blockchains/ethereum/assets/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B/info.json new file mode 100644 index 0000000000000..9ba4364b6c883 --- /dev/null +++ b/blockchains/ethereum/assets/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B/info.json @@ -0,0 +1,24 @@ +{ + "name": "Honeywell tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Honeywell xStock (HONx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. HONx tracks the price of Honeywell International Inc. (the underlying). HONx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Honeywell International Inc., whilst maintaining the benefits of blockchain technology. Honeywell International Inc. is an American technology and manufacturing company that operates in four core areas: Aerospace, Building Automation, Industrial Automation, and Energy and Sustainability Solutions.", + "explorer": "https://etherscan.io/token/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B", + "type": "ERC20", + "symbol": "HONX", + "decimals": 18, + "status": "active", + "id": "0x62a48560861B0b451654bFffdb5be6E47aa8ff1B", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/honeywell-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B/logo.png b/blockchains/ethereum/assets/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B/logo.png new file mode 100644 index 0000000000000..2757f36e52107 Binary files /dev/null and b/blockchains/ethereum/assets/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B/logo.png differ diff --git a/blockchains/ethereum/assets/0x62cA254a363dc3c748e7E955c20447aB5bF06fF7/info.json b/blockchains/ethereum/assets/0x62cA254a363dc3c748e7E955c20447aB5bF06fF7/info.json new file mode 100644 index 0000000000000..1b6e3c8ed41ee --- /dev/null +++ b/blockchains/ethereum/assets/0x62cA254a363dc3c748e7E955c20447aB5bF06fF7/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Core S&P 500 (Ondo)", + "website": "https://ondo.finance/", + "description": "IVVon is the Ondo Tokenized version of the iShares Core S&P 500 ETF, giving tokenholders economic exposure similar to holding IVV and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x62cA254a363dc3c748e7E955c20447aB5bF06fF7", + "type": "ERC20", + "symbol": "IVVon", + "decimals": 18, + "status": "active", + "id": "0x62cA254a363dc3c748e7E955c20447aB5bF06fF7", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-core-sp-500-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x62cA254a363dc3c748e7E955c20447aB5bF06fF7/logo.png b/blockchains/ethereum/assets/0x62cA254a363dc3c748e7E955c20447aB5bF06fF7/logo.png new file mode 100644 index 0000000000000..8adf578853fa6 Binary files /dev/null and b/blockchains/ethereum/assets/0x62cA254a363dc3c748e7E955c20447aB5bF06fF7/logo.png differ diff --git a/blockchains/ethereum/assets/0x634769EB87542EAf41C0008c05D5d8F5d8bEc3A5/info.json b/blockchains/ethereum/assets/0x634769EB87542EAf41C0008c05D5d8F5d8bEc3A5/info.json new file mode 100644 index 0000000000000..9b0f52905daf2 --- /dev/null +++ b/blockchains/ethereum/assets/0x634769EB87542EAf41C0008c05D5d8F5d8bEc3A5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Book of Meme 3.0", + "symbol": "BOME", + "type": "ERC20", + "decimals": 14, + "description": "A groundbreaking project merging memes, decentralized storage, and degen trading into an immortal digital compendium on the blockchain.", + "website": "https://bookofmeme.link/", + "explorer": "https://etherscan.io/token/0x634769EB87542EAf41C0008c05D5d8F5d8bEc3A5", + "status": "spam", + "id": "0x634769EB87542EAf41C0008c05D5d8F5d8bEc3A5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6369c3DadfC00054A42BA8B2c09c48131dd4Aa38/info.json b/blockchains/ethereum/assets/0x6369c3DadfC00054A42BA8B2c09c48131dd4Aa38/info.json index bf5ffa582152d..7f48d2c6bad6a 100644 --- a/blockchains/ethereum/assets/0x6369c3DadfC00054A42BA8B2c09c48131dd4Aa38/info.json +++ b/blockchains/ethereum/assets/0x6369c3DadfC00054A42BA8B2c09c48131dd4Aa38/info.json @@ -10,8 +10,8 @@ "id": "0x6369c3DadfC00054A42BA8B2c09c48131dd4Aa38", "links": [ { - "name": "twitter", - "url": "https://twitter.com/morpher_io" + "name": "x", + "url": "https://x.com/morpher_io" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x636bd98fC13908e475F56d8a38a6e03616Ec5563/info.json b/blockchains/ethereum/assets/0x636bd98fC13908e475F56d8a38a6e03616Ec5563/info.json new file mode 100644 index 0000000000000..c88c02726b742 --- /dev/null +++ b/blockchains/ethereum/assets/0x636bd98fC13908e475F56d8a38a6e03616Ec5563/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wat", + "type": "ERC20", + "symbol": "WAT", + "decimals": 18, + "website": "https://wat0x63.com/", + "description": "To honor Matt Furies love for Rats, Wat, his pet is now reborn on the blockchain alongside other Furie creations taking inspiration from his early Rat illustrations.", + "explorer": "https://etherscan.io/token/0x636bd98fc13908e475f56d8a38a6e03616ec5563", + "status": "active", + "id": "0x636bd98fC13908e475F56d8a38a6e03616Ec5563", + "links": [ + { + "name": "x", + "url": "https://x.com/wat0x63" + }, + { + "name": "telegram", + "url": "https://t.me/Wat0x63" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x636bd98fC13908e475F56d8a38a6e03616Ec5563/logo.png b/blockchains/ethereum/assets/0x636bd98fC13908e475F56d8a38a6e03616Ec5563/logo.png new file mode 100644 index 0000000000000..8a9e4d41e6c44 Binary files /dev/null and b/blockchains/ethereum/assets/0x636bd98fC13908e475F56d8a38a6e03616Ec5563/logo.png differ diff --git a/blockchains/ethereum/assets/0x6378930da9be7C90d824d7f113974741644d62dA/info.json b/blockchains/ethereum/assets/0x6378930da9be7C90d824d7f113974741644d62dA/info.json index a999d4b25c6b8..f4a4e0c2247e4 100644 --- a/blockchains/ethereum/assets/0x6378930da9be7C90d824d7f113974741644d62dA/info.json +++ b/blockchains/ethereum/assets/0x6378930da9be7C90d824d7f113974741644d62dA/info.json @@ -8,8 +8,8 @@ "state": "NORMAL", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BMJ67466085" + "name": "x", + "url": "https://x.com/BMJ67466085" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x638155F4BD8F85d401Da32498D8866eE39A150B8/info.json b/blockchains/ethereum/assets/0x638155F4BD8F85d401Da32498D8866eE39A150B8/info.json index dfc5aab5459ac..a18f806e6d382 100644 --- a/blockchains/ethereum/assets/0x638155F4BD8F85d401Da32498D8866eE39A150B8/info.json +++ b/blockchains/ethereum/assets/0x638155F4BD8F85d401Da32498D8866eE39A150B8/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/JuraNetwork" }, { - "name": "twitter", - "url": "https://twitter.com/JuraProtocol" + "name": "x", + "url": "https://x.com/JuraProtocol" }, { "name": "whitepaper", diff --git a/blockchains/ethereum/assets/0x6399C842dD2bE3dE30BF99Bc7D1bBF6Fa3650E70/info.json b/blockchains/ethereum/assets/0x6399C842dD2bE3dE30BF99Bc7D1bBF6Fa3650E70/info.json index 3ae849d5d525d..a7ec9b9c5650c 100644 --- a/blockchains/ethereum/assets/0x6399C842dD2bE3dE30BF99Bc7D1bBF6Fa3650E70/info.json +++ b/blockchains/ethereum/assets/0x6399C842dD2bE3dE30BF99Bc7D1bBF6Fa3650E70/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/premiafinance/" }, { - "name": "twitter", - "url": "https://twitter.com/premiafinance" + "name": "x", + "url": "https://x.com/premiafinance" }, { "name": "medium", diff --git a/blockchains/ethereum/assets/0x63f88A2298a5c4AEE3c216Aa6D926B184a4b2437/info.json b/blockchains/ethereum/assets/0x63f88A2298a5c4AEE3c216Aa6D926B184a4b2437/info.json index 7a7cbabc437ed..ce8fad6f18581 100644 --- a/blockchains/ethereum/assets/0x63f88A2298a5c4AEE3c216Aa6D926B184a4b2437/info.json +++ b/blockchains/ethereum/assets/0x63f88A2298a5c4AEE3c216Aa6D926B184a4b2437/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/novatokenplatform" }, { - "name": "twitter", - "url": "https://twitter.com/gamecredits" + "name": "x", + "url": "https://x.com/gamecredits" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x643C4E15d7d62Ad0aBeC4a9BD4b001aA3Ef52d66/info.json b/blockchains/ethereum/assets/0x643C4E15d7d62Ad0aBeC4a9BD4b001aA3Ef52d66/info.json new file mode 100644 index 0000000000000..a4ca3f2da4249 --- /dev/null +++ b/blockchains/ethereum/assets/0x643C4E15d7d62Ad0aBeC4a9BD4b001aA3Ef52d66/info.json @@ -0,0 +1,25 @@ +{ + "name": "Maple Finance", + "type": "ERC20", + "symbol": "SYRUP", + "decimals": 18, + "description": "Maple has generated consistent, accelerating growth by combining the best of institutional lending and DeFi. Maple emerged stronger from the 2022 credit crunch and have played a pivotal role in rebuilding the DeFi lending space. We provide transparent, overcollateralized loans that are verifiable in real-time.", + "website": "https://syrup.fi/", + "explorer": "https://etherscan.io/token/0x643C4E15d7d62Ad0aBeC4a9BD4b001aA3Ef52d66", + "id": "0x643C4E15d7d62Ad0aBeC4a9BD4b001aA3Ef52d66", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/syrupfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/maple-finance/" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x643C4E15d7d62Ad0aBeC4a9BD4b001aA3Ef52d66/logo.png b/blockchains/ethereum/assets/0x643C4E15d7d62Ad0aBeC4a9BD4b001aA3Ef52d66/logo.png new file mode 100644 index 0000000000000..173efab56fee0 Binary files /dev/null and b/blockchains/ethereum/assets/0x643C4E15d7d62Ad0aBeC4a9BD4b001aA3Ef52d66/logo.png differ diff --git a/blockchains/ethereum/assets/0x644192291cc835A93d6330b24EA5f5FEdD0eEF9e/info.json b/blockchains/ethereum/assets/0x644192291cc835A93d6330b24EA5f5FEdD0eEF9e/info.json index 6315a0153ea1e..a287aa53389a2 100644 --- a/blockchains/ethereum/assets/0x644192291cc835A93d6330b24EA5f5FEdD0eEF9e/info.json +++ b/blockchains/ethereum/assets/0x644192291cc835A93d6330b24EA5f5FEdD0eEF9e/info.json @@ -10,8 +10,8 @@ "id": "0x644192291cc835A93d6330b24EA5f5FEdD0eEF9e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/allianceblock" + "name": "x", + "url": "https://x.com/allianceblock" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x6468e79A80C0eaB0F9A2B574c8d5bC374Af59414/info.json b/blockchains/ethereum/assets/0x6468e79A80C0eaB0F9A2B574c8d5bC374Af59414/info.json index 3cb4dde3fb3bb..06639f5876208 100644 --- a/blockchains/ethereum/assets/0x6468e79A80C0eaB0F9A2B574c8d5bC374Af59414/info.json +++ b/blockchains/ethereum/assets/0x6468e79A80C0eaB0F9A2B574c8d5bC374Af59414/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/radixdlt" }, { - "name": "twitter", - "url": "https://twitter.com/Radix" + "name": "x", + "url": "https://x.com/Radix" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194/info.json b/blockchains/ethereum/assets/0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194/info.json new file mode 100644 index 0000000000000..b6bb63e186357 --- /dev/null +++ b/blockchains/ethereum/assets/0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194/info.json @@ -0,0 +1,25 @@ +{ + "name": "Big Time", + "website": "https://bigtime.gg/", + "description": "The $BIGTIME Token is the main cryptocurrency that drives Big Time’s in-game economy. $BIGTIME randomly drops in-game by playing with at least one charged Hourglass equipped.", + "explorer": "https://etherscan.io/token/0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194", + "type": "ERC20", + "symbol": "BIGTIME", + "decimals": 18, + "status": "active", + "id": "0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/big-time/" + }, + { + "name": "x", + "url": "https://x.com/playbigtime" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/big-time/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194/logo.png b/blockchains/ethereum/assets/0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194/logo.png new file mode 100644 index 0000000000000..2b3a70086c734 Binary files /dev/null and b/blockchains/ethereum/assets/0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194/logo.png differ diff --git a/blockchains/ethereum/assets/0x64c5cbA9A1BfBD2A5faf601D91Beff2dCac2c974/info.json b/blockchains/ethereum/assets/0x64c5cbA9A1BfBD2A5faf601D91Beff2dCac2c974/info.json new file mode 100644 index 0000000000000..4b7e995ffaa12 --- /dev/null +++ b/blockchains/ethereum/assets/0x64c5cbA9A1BfBD2A5faf601D91Beff2dCac2c974/info.json @@ -0,0 +1,30 @@ +{ + "name": "Mystery", + "type": "ERC20", + "symbol": "MYSTERY", + "decimals": 18, + "description": "Mystery the frog in ‘The Nightriders’ by Matt Furie, the artist behind Pepe. Mystery the most memeable memecoin in existence. You wanted a second chance at PEPE, join the community to find out what the mystery cult is about.", + "website": "https://furies-mystery.com/", + "explorer": "https://etherscan.io/token/0x64c5cbA9A1BfBD2A5faf601D91Beff2dCac2c974", + "id": "0x64c5cbA9A1BfBD2A5faf601D91Beff2dCac2c974", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/FuriesMystery" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mystery-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mystery-2" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x64c5cbA9A1BfBD2A5faf601D91Beff2dCac2c974/logo.png b/blockchains/ethereum/assets/0x64c5cbA9A1BfBD2A5faf601D91Beff2dCac2c974/logo.png new file mode 100644 index 0000000000000..e156ce76330bd Binary files /dev/null and b/blockchains/ethereum/assets/0x64c5cbA9A1BfBD2A5faf601D91Beff2dCac2c974/logo.png differ diff --git a/blockchains/ethereum/assets/0x64d0f55Cd8C7133a9D7102b13987235F486F2224/info.json b/blockchains/ethereum/assets/0x64d0f55Cd8C7133a9D7102b13987235F486F2224/info.json new file mode 100644 index 0000000000000..7b3eeeffdd627 --- /dev/null +++ b/blockchains/ethereum/assets/0x64d0f55Cd8C7133a9D7102b13987235F486F2224/info.json @@ -0,0 +1,29 @@ +{ + "name": "SwissBorg", + "type": "ERC20", + "symbol": "BORG", + "decimals": 18, + "description": "SwissBorg is an all-encompassing crypto management app designed to offer services such as exchanging crypto and fiat, earning yield, and accessing launchpad investment opportunities. Established during the ICO era of 2017, it has amassed over 1 million registered users by 2024. The BORG is the token powering this revolutionary financial ecosystem.", + "website": "https://swissborg.com/", + "explorer": "https://etherscan.io/token/0x64d0f55cd8c7133a9d7102b13987235f486f2224", + "id": "0x64d0f55Cd8C7133a9D7102b13987235F486F2224", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/swissborg" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/swissborg/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/swissborg" + } + ], + "tags": [ + "staking" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x64d0f55Cd8C7133a9D7102b13987235F486F2224/logo.png b/blockchains/ethereum/assets/0x64d0f55Cd8C7133a9D7102b13987235F486F2224/logo.png new file mode 100644 index 0000000000000..847cda5271c4e Binary files /dev/null and b/blockchains/ethereum/assets/0x64d0f55Cd8C7133a9D7102b13987235F486F2224/logo.png differ diff --git a/blockchains/ethereum/assets/0x657e8C867D8B37dCC18fA4Caead9C45EB088C642/info.json b/blockchains/ethereum/assets/0x657e8C867D8B37dCC18fA4Caead9C45EB088C642/info.json new file mode 100644 index 0000000000000..0dc9f30836047 --- /dev/null +++ b/blockchains/ethereum/assets/0x657e8C867D8B37dCC18fA4Caead9C45EB088C642/info.json @@ -0,0 +1,21 @@ +{ + "name": "ether.fi BTC", + "website": "https://www.ether.fi/", + "description": "eBTC, ether.fi's Bitcoin-backed liquid restaking token. Created to service the growing demands for alternative collateral within restaking, eBTC simplifies yield optimization and expands utility, bringing a dual-yielding (staking and restaking) Bitcoin product to the market.", + "explorer": "https://etherscan.io/token/0x657e8C867D8B37dCC18fA4Caead9C45EB088C642", + "type": "ERC20", + "symbol": "eBTC", + "decimals": 18, + "status": "active", + "id": "0x657e8C867D8B37dCC18fA4Caead9C45EB088C642", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/etherfi-ebtc/" + }, + { + "name": "x", + "url": "https://x.com/ether_fi" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x657e8C867D8B37dCC18fA4Caead9C45EB088C642/logo.png b/blockchains/ethereum/assets/0x657e8C867D8B37dCC18fA4Caead9C45EB088C642/logo.png new file mode 100644 index 0000000000000..4a995bdc5dcf9 Binary files /dev/null and b/blockchains/ethereum/assets/0x657e8C867D8B37dCC18fA4Caead9C45EB088C642/logo.png differ diff --git a/blockchains/ethereum/assets/0x65Ef703f5594D2573eb71Aaf55BC0CB548492df4/info.json b/blockchains/ethereum/assets/0x65Ef703f5594D2573eb71Aaf55BC0CB548492df4/info.json index f0b1e67f66fc9..05b9b762e313b 100644 --- a/blockchains/ethereum/assets/0x65Ef703f5594D2573eb71Aaf55BC0CB548492df4/info.json +++ b/blockchains/ethereum/assets/0x65Ef703f5594D2573eb71Aaf55BC0CB548492df4/info.json @@ -10,8 +10,8 @@ "id": "0x65Ef703f5594D2573eb71Aaf55BC0CB548492df4", "links": [ { - "name": "twitter", - "url": "https://twitter.com/multichainorg" + "name": "x", + "url": "https://x.com/multichainorg" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0x66761Fa41377003622aEE3c7675Fc7b5c1C2FaC5/info.json b/blockchains/ethereum/assets/0x66761Fa41377003622aEE3c7675Fc7b5c1C2FaC5/info.json new file mode 100644 index 0000000000000..94f9a2a735a61 --- /dev/null +++ b/blockchains/ethereum/assets/0x66761Fa41377003622aEE3c7675Fc7b5c1C2FaC5/info.json @@ -0,0 +1,21 @@ +{ + "name": "Clearpool", + "website": "https://clearpool.finance", + "description": "Clearpool is a cecentralized capital markets ecosystem, where institutional borrowers can access unsecured loans directly from the DeFi ecosystem. Clearpool introduces a dynamic interest model driven by market supply and demand forces.", + "explorer": "https://etherscan.io/token/0x66761fa41377003622aee3c7675fc7b5c1c2fac5", + "type": "ERC20", + "symbol": "CPOOL", + "decimals": 18, + "status": "active", + "id": "0x66761Fa41377003622aEE3c7675Fc7b5c1C2FaC5", + "links": [ + { + "name": "x", + "url": "https://x.com/ClearpoolFin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/clearpool/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x66761Fa41377003622aEE3c7675Fc7b5c1C2FaC5/logo.png b/blockchains/ethereum/assets/0x66761Fa41377003622aEE3c7675Fc7b5c1C2FaC5/logo.png new file mode 100644 index 0000000000000..61be5c5332022 Binary files /dev/null and b/blockchains/ethereum/assets/0x66761Fa41377003622aEE3c7675Fc7b5c1C2FaC5/logo.png differ diff --git a/blockchains/ethereum/assets/0x668C50B1c7f46EFFBE3f242687071d7908AAB00A/info.json b/blockchains/ethereum/assets/0x668C50B1c7f46EFFBE3f242687071d7908AAB00A/info.json index f4239be4ed0e6..83bc144b11770 100644 --- a/blockchains/ethereum/assets/0x668C50B1c7f46EFFBE3f242687071d7908AAB00A/info.json +++ b/blockchains/ethereum/assets/0x668C50B1c7f46EFFBE3f242687071d7908AAB00A/info.json @@ -10,8 +10,8 @@ "id": "0x668C50B1c7f46EFFBE3f242687071d7908AAB00A", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ShibaCorgiDog" + "name": "x", + "url": "https://x.com/ShibaCorgiDog" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x66908813cd7676269494B2c6F6DBAB8B4f9E95df/info.json b/blockchains/ethereum/assets/0x66908813cd7676269494B2c6F6DBAB8B4f9E95df/info.json new file mode 100644 index 0000000000000..b2292b39bbca4 --- /dev/null +++ b/blockchains/ethereum/assets/0x66908813cd7676269494B2c6F6DBAB8B4f9E95df/info.json @@ -0,0 +1,24 @@ +{ + "name": "CoreWeave (Ondo Tokenized)", + "type": "ERC20", + "symbol": "CRWVon", + "decimals": 18, + "description": "CRWVon is the Ondo Tokenized version of CoreWeave, giving tokenholders economic exposure similar to holding CRWV and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x66908813cd7676269494B2c6F6DBAB8B4f9E95df", + "status": "active", + "id": "0x66908813cd7676269494B2c6F6DBAB8B4f9E95df", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/coreweave-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x66908813cd7676269494B2c6F6DBAB8B4f9E95df/logo.png b/blockchains/ethereum/assets/0x66908813cd7676269494B2c6F6DBAB8B4f9E95df/logo.png new file mode 100644 index 0000000000000..3997bb790230f Binary files /dev/null and b/blockchains/ethereum/assets/0x66908813cd7676269494B2c6F6DBAB8B4f9E95df/logo.png differ diff --git a/blockchains/ethereum/assets/0x66b5228CfD34d9f4d9f03188d67816286C7c0b74/info.json b/blockchains/ethereum/assets/0x66b5228CfD34d9f4d9f03188d67816286C7c0b74/info.json new file mode 100644 index 0000000000000..16dc71f71e709 --- /dev/null +++ b/blockchains/ethereum/assets/0x66b5228CfD34d9f4d9f03188d67816286C7c0b74/info.json @@ -0,0 +1,21 @@ +{ + "name": "VOLT.WIN", + "website": "https://app.volt.win", + "description": "Volt is a hyper-deflationary token built on TitanX with a capped supply. It employs an auction system, distributing all tokens in the first 10 days, and utilizes system value to buy and burn tokens, accelerating deflation and supporting liquidity growth.", + "explorer": "https://etherscan.io/token/0x66b5228CfD34d9f4d9f03188d67816286C7c0b74", + "type": "ERC20", + "symbol": "VOLT", + "decimals": 18, + "status": "active", + "id": "0x66b5228CfD34d9f4d9f03188d67816286C7c0b74", + "links": [ + { + "name": "telegram", + "url": "https://t.me/voltdefi" + }, + { + "name": "x", + "url": "https://x.com/DEFIVOLT" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x66b5228CfD34d9f4d9f03188d67816286C7c0b74/logo.png b/blockchains/ethereum/assets/0x66b5228CfD34d9f4d9f03188d67816286C7c0b74/logo.png new file mode 100644 index 0000000000000..ba31240ede3aa Binary files /dev/null and b/blockchains/ethereum/assets/0x66b5228CfD34d9f4d9f03188d67816286C7c0b74/logo.png differ diff --git a/blockchains/ethereum/assets/0x67466BE17df832165F8C80a5A120CCc652bD7E69/info.json b/blockchains/ethereum/assets/0x67466BE17df832165F8C80a5A120CCc652bD7E69/info.json new file mode 100644 index 0000000000000..92454f8e3e5be --- /dev/null +++ b/blockchains/ethereum/assets/0x67466BE17df832165F8C80a5A120CCc652bD7E69/info.json @@ -0,0 +1,21 @@ +{ + "name": "Landwolf", + "type": "ERC20", + "symbol": "WOLF", + "decimals": 18, + "website": "https://boysclubwolf.com/", + "description": "Wolf is one of the Boy’s Club, best friends with Andy and Pepe", + "explorer": "https://etherscan.io/token/0x67466be17df832165f8c80a5a120ccc652bd7e69", + "status": "active", + "id": "0x67466BE17df832165F8C80a5A120CCc652bD7E69", + "links": [ + { + "name": "x", + "url": "https://x.com/Wolf0x67" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/landwolf-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x67466BE17df832165F8C80a5A120CCc652bD7E69/logo.png b/blockchains/ethereum/assets/0x67466BE17df832165F8C80a5A120CCc652bD7E69/logo.png new file mode 100644 index 0000000000000..8d92079c53889 Binary files /dev/null and b/blockchains/ethereum/assets/0x67466BE17df832165F8C80a5A120CCc652bD7E69/logo.png differ diff --git a/blockchains/ethereum/assets/0x674C6Ad92Fd080e4004b2312b45f796a192D27a0/info.json b/blockchains/ethereum/assets/0x674C6Ad92Fd080e4004b2312b45f796a192D27a0/info.json index eba9bafb9245d..3096a3a211b88 100644 --- a/blockchains/ethereum/assets/0x674C6Ad92Fd080e4004b2312b45f796a192D27a0/info.json +++ b/blockchains/ethereum/assets/0x674C6Ad92Fd080e4004b2312b45f796a192D27a0/info.json @@ -18,8 +18,8 @@ "url": "https://github.com/Neutrino-Protocol" }, { - "name": "twitter", - "url": "https://twitter.com/neutrino_proto" + "name": "x", + "url": "https://x.com/neutrino_proto" }, { "name": "blog", diff --git a/blockchains/ethereum/assets/0x678e840C640F619E17848045D23072844224dD37/info.json b/blockchains/ethereum/assets/0x678e840C640F619E17848045D23072844224dD37/info.json index 69c3b73ad4874..97cc837b0291f 100644 --- a/blockchains/ethereum/assets/0x678e840C640F619E17848045D23072844224dD37/info.json +++ b/blockchains/ethereum/assets/0x678e840C640F619E17848045D23072844224dD37/info.json @@ -10,8 +10,8 @@ "id": "0x678e840C640F619E17848045D23072844224dD37", "links": [ { - "name": "twitter", - "url": "https://twitter.com/cratostoken" + "name": "x", + "url": "https://x.com/cratostoken" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x679131F591B4f369acB8cd8c51E68596806c3916/info.json b/blockchains/ethereum/assets/0x679131F591B4f369acB8cd8c51E68596806c3916/info.json index 4c18daf7ecec5..1cb49d987a07f 100644 --- a/blockchains/ethereum/assets/0x679131F591B4f369acB8cd8c51E68596806c3916/info.json +++ b/blockchains/ethereum/assets/0x679131F591B4f369acB8cd8c51E68596806c3916/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/trustlines-protocol/" }, { - "name": "twitter", - "url": "https://twitter.com/TrustlinesFound" + "name": "x", + "url": "https://x.com/TrustlinesFound" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0x67F4C72a50f8Df6487720261E188F2abE83F57D7/info.json b/blockchains/ethereum/assets/0x67F4C72a50f8Df6487720261E188F2abE83F57D7/info.json new file mode 100644 index 0000000000000..44ae95d4c5a5a --- /dev/null +++ b/blockchains/ethereum/assets/0x67F4C72a50f8Df6487720261E188F2abE83F57D7/info.json @@ -0,0 +1,28 @@ +{ + "name": "Wrapped Pocket (wPOKT)", + "type": "ERC20", + "symbol": "wPOKT", + "decimals": 6, + "website": "https://www.pokt.network", + "description": "Reliable, performant, and cost-effective RPC infrastructure that is owned and governed by its users. Unstoppable Open Data, powered by decentralization.", + "explorer": "https://etherscan.io/token/0x67F4C72a50f8Df6487720261E188F2abE83F57D7", + "status": "active", + "id": "0x67F4C72a50f8Df6487720261E188F2abE83F57D7", + "links": [ + { + "name": "x", + "url": "https://x.com/POKTnetwork" + }, + { + "name": "github", + "url": "https://github.com/pokt-network" + }, + { + "name": "forum", + "url": "https://forum.pokt.network/" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x67F4C72a50f8Df6487720261E188F2abE83F57D7/logo.png b/blockchains/ethereum/assets/0x67F4C72a50f8Df6487720261E188F2abE83F57D7/logo.png new file mode 100644 index 0000000000000..5c1ecf3df85be Binary files /dev/null and b/blockchains/ethereum/assets/0x67F4C72a50f8Df6487720261E188F2abE83F57D7/logo.png differ diff --git a/blockchains/ethereum/assets/0x67c5902F5210F62f37157cd9C735c693164c1378/info.json b/blockchains/ethereum/assets/0x67c5902F5210F62f37157cd9C735c693164c1378/info.json new file mode 100644 index 0000000000000..81b3879bcad41 --- /dev/null +++ b/blockchains/ethereum/assets/0x67c5902F5210F62f37157cd9C735c693164c1378/info.json @@ -0,0 +1,28 @@ +{ + "name": "RTX (Ondo Tokenized)", + "type": "ERC20", + "symbol": "RTXon", + "decimals": 18, + "description": "RTXon is the Ondo Tokenized version of RTX, giving tokenholders economic exposure similar to holding RTX and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x67c5902F5210F62f37157cd9C735c693164c1378", + "status": "active", + "id": "0x67c5902F5210F62f37157cd9C735c693164c1378", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/rtx-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rtx-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x67c5902F5210F62f37157cd9C735c693164c1378/logo.png b/blockchains/ethereum/assets/0x67c5902F5210F62f37157cd9C735c693164c1378/logo.png new file mode 100644 index 0000000000000..9a8d3dbdfa170 Binary files /dev/null and b/blockchains/ethereum/assets/0x67c5902F5210F62f37157cd9C735c693164c1378/logo.png differ diff --git a/blockchains/ethereum/assets/0x67c597624B17b16fb77959217360B7cD18284253/info.json b/blockchains/ethereum/assets/0x67c597624B17b16fb77959217360B7cD18284253/info.json index 89c0848279e4d..8efed2718fbee 100644 --- a/blockchains/ethereum/assets/0x67c597624B17b16fb77959217360B7cD18284253/info.json +++ b/blockchains/ethereum/assets/0x67c597624B17b16fb77959217360B7cD18284253/info.json @@ -10,8 +10,8 @@ "id": "0x67c597624B17b16fb77959217360B7cD18284253", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Benchmark_Defi" + "name": "x", + "url": "https://x.com/Benchmark_Defi" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6810e776880C02933D47DB1b9fc05908e5386b96/info.json b/blockchains/ethereum/assets/0x6810e776880C02933D47DB1b9fc05908e5386b96/info.json index db15a0d6a307d..0a43f57d1fcf7 100644 --- a/blockchains/ethereum/assets/0x6810e776880C02933D47DB1b9fc05908e5386b96/info.json +++ b/blockchains/ethereum/assets/0x6810e776880C02933D47DB1b9fc05908e5386b96/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/gnosis" }, { - "name": "twitter", - "url": "https://twitter.com/gnosisPM" + "name": "x", + "url": "https://x.com/gnosisPM" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0x68622855dcf14ced1B0Cc2A69cc34843708e2E0f/info.json b/blockchains/ethereum/assets/0x68622855dcf14ced1B0Cc2A69cc34843708e2E0f/info.json new file mode 100644 index 0000000000000..dce7af8ec57f2 --- /dev/null +++ b/blockchains/ethereum/assets/0x68622855dcf14ced1B0Cc2A69cc34843708e2E0f/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares US Aerospace and Defense ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "ITAon", + "decimals": 18, + "description": "ITAon is the Ondo Tokenized version of the iShares US Aerospace and Defense ETF, giving tokenholders economic exposure similar to holding ITA and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x68622855dcf14ced1B0Cc2A69cc34843708e2E0f", + "status": "active", + "id": "0x68622855dcf14ced1B0Cc2A69cc34843708e2E0f", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-us-aerospace-and-defense-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x68622855dcf14ced1B0Cc2A69cc34843708e2E0f/logo.png b/blockchains/ethereum/assets/0x68622855dcf14ced1B0Cc2A69cc34843708e2E0f/logo.png new file mode 100644 index 0000000000000..2ce033b091a15 Binary files /dev/null and b/blockchains/ethereum/assets/0x68622855dcf14ced1B0Cc2A69cc34843708e2E0f/logo.png differ diff --git a/blockchains/ethereum/assets/0x68749665FF8D2d112Fa859AA293F07A622782F38/info.json b/blockchains/ethereum/assets/0x68749665FF8D2d112Fa859AA293F07A622782F38/info.json new file mode 100644 index 0000000000000..bec70818bed8d --- /dev/null +++ b/blockchains/ethereum/assets/0x68749665FF8D2d112Fa859AA293F07A622782F38/info.json @@ -0,0 +1,21 @@ +{ + "name": "Tether Gold", + "type": "ERC20", + "symbol": "XAUt", + "decimals": 6, + "website": "https://gold.tether.to/", + "description": "Each XAU₮ token represents ownership of one troy fine ounce of physical gold on a specific gold bar. Furthermore, Tether Gold (XAU₮) is the only product among the competition that offers zero custody fees and has direct control over the physical gold storage.", + "explorer": "https://etherscan.io/token/0x68749665FF8D2d112Fa859AA293F07A622782F38", + "status": "active", + "id": "0x68749665FF8D2d112Fa859AA293F07A622782F38", + "links": [ + { + "name": "x", + "url": "https://x.com/tethergold/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tether-gold/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4922a015c4407F87432B179bb209e125432E4a2A/logo.png b/blockchains/ethereum/assets/0x68749665FF8D2d112Fa859AA293F07A622782F38/logo.png similarity index 100% rename from blockchains/ethereum/assets/0x4922a015c4407F87432B179bb209e125432E4a2A/logo.png rename to blockchains/ethereum/assets/0x68749665FF8D2d112Fa859AA293F07A622782F38/logo.png diff --git a/blockchains/ethereum/assets/0x68A47Fe1CF42eBa4a030a10CD4D6a1031Ca3CA0a/info.json b/blockchains/ethereum/assets/0x68A47Fe1CF42eBa4a030a10CD4D6a1031Ca3CA0a/info.json new file mode 100644 index 0000000000000..68189ae0fa268 --- /dev/null +++ b/blockchains/ethereum/assets/0x68A47Fe1CF42eBa4a030a10CD4D6a1031Ca3CA0a/info.json @@ -0,0 +1,25 @@ +{ + "name": "Tectum Emission Token", + "website": "https://softnote.com/", + "description": "Tectum is the Worlds Fastest Layer 1 Blockchain functioning at 1.3 million tps with instant immutability. The Softnote is its Layer 2 solution that makes Bitcoin and other cryptocurrencies instant, free and boundless.", + "explorer": "https://etherscan.io/token/0x68A47Fe1CF42eBa4a030a10CD4D6a1031Ca3CA0a", + "type": "ERC20", + "symbol": "TET", + "decimals": 8, + "status": "active", + "id": "0x68A47Fe1CF42eBa4a030a10CD4D6a1031Ca3CA0a", + "links": [ + { + "name": "x", + "url": "https://x.com/tectumsocial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tectum/" + }, + { + "name": "telegram", + "url": "https://t.me/tectumglobal" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x68A47Fe1CF42eBa4a030a10CD4D6a1031Ca3CA0a/logo.png b/blockchains/ethereum/assets/0x68A47Fe1CF42eBa4a030a10CD4D6a1031Ca3CA0a/logo.png new file mode 100644 index 0000000000000..b58cc8e660fc8 Binary files /dev/null and b/blockchains/ethereum/assets/0x68A47Fe1CF42eBa4a030a10CD4D6a1031Ca3CA0a/logo.png differ diff --git a/blockchains/ethereum/assets/0x68BbEd6A47194EFf1CF514B50Ea91895597fc91E/info.json b/blockchains/ethereum/assets/0x68BbEd6A47194EFf1CF514B50Ea91895597fc91E/info.json new file mode 100644 index 0000000000000..d30c37abd1f64 --- /dev/null +++ b/blockchains/ethereum/assets/0x68BbEd6A47194EFf1CF514B50Ea91895597fc91E/info.json @@ -0,0 +1,40 @@ +{ + "name": "ANDY", + "type": "ERC20", + "symbol": "ANDY", + "decimals": 18, + "website": "https://boysclubandy.com", + "description": "Andy is Pepe's lifelong best friend.", + "explorer": "https://etherscan.io/token/0x68bbed6a47194eff1cf514b50ea91895597fc91e", + "status": "active", + "id": "0x68BbEd6A47194EFf1CF514B50Ea91895597fc91E", + "links": [ + { + "name": "x", + "url": "https://x.com/andycoinonerc" + }, + { + "name": "github", + "url": "https://github.com/boysclubandy" + }, + { + "name": "telegram", + "url": "https://t.me/TheOnlyAndyLeft" + }, + { + "name": "source_code", + "url": "https://github.com/boysclubandy/SmartContract" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/andy-the-wisguy" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/boysclubandy" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x68BbEd6A47194EFf1CF514B50Ea91895597fc91E/logo.png b/blockchains/ethereum/assets/0x68BbEd6A47194EFf1CF514B50Ea91895597fc91E/logo.png new file mode 100644 index 0000000000000..d5be27ad11c81 Binary files /dev/null and b/blockchains/ethereum/assets/0x68BbEd6A47194EFf1CF514B50Ea91895597fc91E/logo.png differ diff --git a/blockchains/ethereum/assets/0x691b126cF619707Ed5d16CaB1B27C000aa8De300/info.json b/blockchains/ethereum/assets/0x691b126cF619707Ed5d16CaB1B27C000aa8De300/info.json new file mode 100644 index 0000000000000..29cacbf3644d1 --- /dev/null +++ b/blockchains/ethereum/assets/0x691b126cF619707Ed5d16CaB1B27C000aa8De300/info.json @@ -0,0 +1,24 @@ +{ + "name": "Lockheed (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "LMTon is the Ondo Tokenized version of Lockheed, giving tokenholders economic exposure similar to holding LMT and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x691b126cF619707Ed5d16CaB1B27C000aa8De300", + "type": "ERC20", + "symbol": "LMTon", + "decimals": 18, + "status": "active", + "id": "0x691b126cF619707Ed5d16CaB1B27C000aa8De300", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lockheed-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x691b126cF619707Ed5d16CaB1B27C000aa8De300/logo.png b/blockchains/ethereum/assets/0x691b126cF619707Ed5d16CaB1B27C000aa8De300/logo.png new file mode 100644 index 0000000000000..fd46efcd9b9e5 Binary files /dev/null and b/blockchains/ethereum/assets/0x691b126cF619707Ed5d16CaB1B27C000aa8De300/logo.png differ diff --git a/blockchains/ethereum/assets/0x6942806D1B2d5886D95cE2f04314ece8eb825833/info.json b/blockchains/ethereum/assets/0x6942806D1B2d5886D95cE2f04314ece8eb825833/info.json new file mode 100644 index 0000000000000..421814a85bdd6 --- /dev/null +++ b/blockchains/ethereum/assets/0x6942806D1B2d5886D95cE2f04314ece8eb825833/info.json @@ -0,0 +1,17 @@ +{ + "name": "Groyper", + "website": "https://groypereth.vip/", + "description": "Groyper is a toad who is friend with Pepe, he originated on 4chans/r9k/board. Generally depicted as smug, more so than Pepe. $GROYPER", + "explorer": "https://etherscan.io/token/0x6942806d1b2d5886d95ce2f04314ece8eb825833", + "type": "ERC20", + "symbol": "Groyper", + "decimals": 18, + "status": "active", + "id": "0x6942806D1B2d5886D95cE2f04314ece8eb825833", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/groyper/" + } + ] +} diff --git a/blockchains/ethereum/assets/0x6942806D1B2d5886D95cE2f04314ece8eb825833/logo.png b/blockchains/ethereum/assets/0x6942806D1B2d5886D95cE2f04314ece8eb825833/logo.png new file mode 100644 index 0000000000000..6f2ee6d47f04d Binary files /dev/null and b/blockchains/ethereum/assets/0x6942806D1B2d5886D95cE2f04314ece8eb825833/logo.png differ diff --git a/blockchains/ethereum/assets/0x695d38EB4e57E0f137e36df7c1f0f2635981246b/info.json b/blockchains/ethereum/assets/0x695d38EB4e57E0f137e36df7c1f0f2635981246b/info.json new file mode 100644 index 0000000000000..1ff3fc67ea629 --- /dev/null +++ b/blockchains/ethereum/assets/0x695d38EB4e57E0f137e36df7c1f0f2635981246b/info.json @@ -0,0 +1,21 @@ +{ + "name": "MEME AI", + "type": "ERC20", + "symbol": "MEMEAI", + "decimals": 9, + "website": "https://memeaicoin.io/", + "description": "To Unleash Your MEME Creativity Take Your MEMES to the Next Level 'Explore MEME AI, inspired by Elon Musk's recent tweet recognizing the impact of memes. Our platform offers a AI meme generator and an NFT marketplace, empowering users to have fun...", + "explorer": "https://etherscan.io/token/0x695d38EB4e57E0f137e36df7c1f0f2635981246b", + "status": "active", + "id": "0x695d38EB4e57E0f137e36df7c1f0f2635981246b", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/meme-ai-token/" + }, + { + "name": "x", + "url": "https://x.com/Memeaicoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x695d38EB4e57E0f137e36df7c1f0f2635981246b/logo.png b/blockchains/ethereum/assets/0x695d38EB4e57E0f137e36df7c1f0f2635981246b/logo.png new file mode 100644 index 0000000000000..ec20be5f3bd42 Binary files /dev/null and b/blockchains/ethereum/assets/0x695d38EB4e57E0f137e36df7c1f0f2635981246b/logo.png differ diff --git a/blockchains/ethereum/assets/0x69702cfd7DAd8bCcAA24D6B440159404AAA140F5/info.json b/blockchains/ethereum/assets/0x69702cfd7DAd8bCcAA24D6B440159404AAA140F5/info.json deleted file mode 100644 index 432d1c67d42b4..0000000000000 --- a/blockchains/ethereum/assets/0x69702cfd7DAd8bCcAA24D6B440159404AAA140F5/info.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "name": "Strike USDT", - "symbol": "sUSDT", - "type": "ERC20", - "decimals": 18, - "description": "Strike Finance collateral cryptocurrency", - "explorer": "https://etherscan.io/token/0x69702cfd7DAd8bCcAA24D6B440159404AAA140F5", - "status": "active", - "id": "0x69702cfd7DAd8bCcAA24D6B440159404AAA140F5", - "website": "https://strike.org" -} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x69702cfd7DAd8bCcAA24D6B440159404AAA140F5/logo.png b/blockchains/ethereum/assets/0x69702cfd7DAd8bCcAA24D6B440159404AAA140F5/logo.png deleted file mode 100644 index db3b49ff7ce07..0000000000000 Binary files a/blockchains/ethereum/assets/0x69702cfd7DAd8bCcAA24D6B440159404AAA140F5/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x6982508145454Ce325dDbE47a25d4ec3d2311933/info.json b/blockchains/ethereum/assets/0x6982508145454Ce325dDbE47a25d4ec3d2311933/info.json index 551d2f03b623b..24047ed446aed 100644 --- a/blockchains/ethereum/assets/0x6982508145454Ce325dDbE47a25d4ec3d2311933/info.json +++ b/blockchains/ethereum/assets/0x6982508145454Ce325dDbE47a25d4ec3d2311933/info.json @@ -10,8 +10,8 @@ "id": "0x6982508145454Ce325dDbE47a25d4ec3d2311933", "links": [ { - "name": "twitter", - "url": "https://twitter.com/pepecoineth" + "name": "x", + "url": "https://x.com/pepecoineth" }, { "name": "telegram", @@ -29,4 +29,4 @@ "tags": [ "memes" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json b/blockchains/ethereum/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json new file mode 100644 index 0000000000000..f7720376bc1a0 --- /dev/null +++ b/blockchains/ethereum/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json @@ -0,0 +1,21 @@ +{ + "name": "LayerZero", + "website": "https://layerzero.network/", + "description": "LayerZero is a technology that enables applications to move data across blockchains, uniquely supporting censorship-resistant messages and permissionless development through immutable smart contracts", + "explorer": "https://etherscan.io/token/0x6985884C4392D348587B19cb9eAAf157F13271cd", + "type": "ERC20", + "symbol": "ZRO", + "decimals": 18, + "status": "active", + "id": "0x6985884C4392D348587B19cb9eAAf157F13271cd", + "links": [ + { + "name": "x", + "url": "https://x.com/LayerZero_Labs" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/VcqxYkStIDsyN2Rh" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png b/blockchains/ethereum/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png new file mode 100644 index 0000000000000..203a846cfdf6b Binary files /dev/null and b/blockchains/ethereum/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png differ diff --git a/blockchains/ethereum/assets/0x69A95185ee2a045CDC4bCd1b1Df10710395e4e23/info.json b/blockchains/ethereum/assets/0x69A95185ee2a045CDC4bCd1b1Df10710395e4e23/info.json index 6396dd4fb7ed2..ec59c1fa7aae2 100644 --- a/blockchains/ethereum/assets/0x69A95185ee2a045CDC4bCd1b1Df10710395e4e23/info.json +++ b/blockchains/ethereum/assets/0x69A95185ee2a045CDC4bCd1b1Df10710395e4e23/info.json @@ -6,7 +6,7 @@ "type": "ERC20", "symbol": "POOLZ", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x69A95185ee2a045CDC4bCd1b1Df10710395e4e23", "links": [ { @@ -14,8 +14,8 @@ "url": "https://github.com/The-Poolz" }, { - "name": "twitter", - "url": "https://twitter.com/Poolz" + "name": "x", + "url": "https://x.com/Poolz" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x69af81e73A73B40adF4f3d4223Cd9b1ECE623074/info.json b/blockchains/ethereum/assets/0x69af81e73A73B40adF4f3d4223Cd9b1ECE623074/info.json index b261162c85bf2..1e04990e0dfa8 100644 --- a/blockchains/ethereum/assets/0x69af81e73A73B40adF4f3d4223Cd9b1ECE623074/info.json +++ b/blockchains/ethereum/assets/0x69af81e73A73B40adF4f3d4223Cd9b1ECE623074/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/DimensionDev/Maskbook" }, { - "name": "twitter", - "url": "https://twitter.com/realmaskbook" + "name": "x", + "url": "https://x.com/realmaskbook" }, { "name": "facebook", diff --git a/blockchains/ethereum/assets/0x6A6AA13393B7d1100c00a57c76c39e8B6C835041/info.json b/blockchains/ethereum/assets/0x6A6AA13393B7d1100c00a57c76c39e8B6C835041/info.json new file mode 100644 index 0000000000000..4a71d423c28ca --- /dev/null +++ b/blockchains/ethereum/assets/0x6A6AA13393B7d1100c00a57c76c39e8B6C835041/info.json @@ -0,0 +1,21 @@ +{ + "name": "OpenAI", + "symbol": "OPENAI", + "type": "ERC20", + "decimals": 9, + "description": "FXGT.com is a registered brand and trademark that is authorized to operate by various companies in accordance with the law and procurement of licenses in their respective countries", + "website": "https://ww25.evolveai.site/?subid1=20250122-2053-39f0-9fbf-8e4f498e7fca", + "explorer": "https://etherscan.io/token/0x6a6aa13393b7d1100c00a57c76c39e8b6c835041", + "status": "active", + "id": "0x6A6AA13393B7d1100c00a57c76c39e8B6C835041", + "links": [ + { + "name": "x", + "url": "https://x.com/OpenAIERC" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/openai-erc" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6A6AA13393B7d1100c00a57c76c39e8B6C835041/logo.png b/blockchains/ethereum/assets/0x6A6AA13393B7d1100c00a57c76c39e8B6C835041/logo.png new file mode 100644 index 0000000000000..c3d3821ca7457 Binary files /dev/null and b/blockchains/ethereum/assets/0x6A6AA13393B7d1100c00a57c76c39e8B6C835041/logo.png differ diff --git a/blockchains/ethereum/assets/0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98/info.json b/blockchains/ethereum/assets/0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98/info.json new file mode 100644 index 0000000000000..5f3bd0c376956 --- /dev/null +++ b/blockchains/ethereum/assets/0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98/info.json @@ -0,0 +1,21 @@ +{ + "name": "OpSec", + "type": "ERC20", + "symbol": "OPSEC", + "decimals": 18, + "website": "https://opsec.software/", + "description": "OpSec, Cloud security with decentralized servers, private networks, RDPs, GPUs, One-Click Setup Nodes, DePIN hardware – shaping security-oriented future.", + "explorer": "https://etherscan.io/token/0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98", + "status": "active", + "id": "0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98", + "links": [ + { + "name": "x", + "url": "https://x.com/OpSecCloud" + }, + { + "name": "telegram", + "url": "https://t.me/opseccloud" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98/logo.png b/blockchains/ethereum/assets/0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98/logo.png new file mode 100644 index 0000000000000..05b66f4fac54c Binary files /dev/null and b/blockchains/ethereum/assets/0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98/logo.png differ diff --git a/blockchains/ethereum/assets/0x6ADb2E268de2aA1aBF6578E4a8119b960E02928F/info.json b/blockchains/ethereum/assets/0x6ADb2E268de2aA1aBF6578E4a8119b960E02928F/info.json index f2608950dd11c..eac08065a06e2 100644 --- a/blockchains/ethereum/assets/0x6ADb2E268de2aA1aBF6578E4a8119b960E02928F/info.json +++ b/blockchains/ethereum/assets/0x6ADb2E268de2aA1aBF6578E4a8119b960E02928F/info.json @@ -10,8 +10,8 @@ "id": "0x6ADb2E268de2aA1aBF6578E4a8119b960E02928F", "links": [ { - "name": "twitter", - "url": "https://twitter.com/realshibadoge" + "name": "x", + "url": "https://x.com/realshibadoge" }, { "name": "telegram", @@ -46,4 +46,4 @@ "memes", "deflationary" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6B0FaCA7bA905a86F221CEb5CA404f605e5b3131/info.json b/blockchains/ethereum/assets/0x6B0FaCA7bA905a86F221CEb5CA404f605e5b3131/info.json new file mode 100644 index 0000000000000..3b27a07ace31a --- /dev/null +++ b/blockchains/ethereum/assets/0x6B0FaCA7bA905a86F221CEb5CA404f605e5b3131/info.json @@ -0,0 +1,21 @@ +{ + "name": "DeFi", + "symbol": "DEFI", + "type": "ERC20", + "decimals": 18, + "description": "De.Fi is Web3 Antivirus & SocialFi SuperApp De.Fi has been protecting users from bad-actors in web3 & preventing scams from happening for over 4 years, as well as shipping leading portfolio-tracking & security solutions.", + "website": "https://de.fi/", + "explorer": "https://etherscan.io/token/0x6b0faca7ba905a86f221ceb5ca404f605e5b3131", + "status": "active", + "id": "0x6B0FaCA7bA905a86F221CEb5CA404f605e5b3131", + "links": [ + { + "name": "x", + "url": "https://x.com/defi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/de-fi/" + } + ] + } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6B0FaCA7bA905a86F221CEb5CA404f605e5b3131/logo.png b/blockchains/ethereum/assets/0x6B0FaCA7bA905a86F221CEb5CA404f605e5b3131/logo.png new file mode 100644 index 0000000000000..01177bca2c449 Binary files /dev/null and b/blockchains/ethereum/assets/0x6B0FaCA7bA905a86F221CEb5CA404f605e5b3131/logo.png differ diff --git a/blockchains/ethereum/assets/0x6B0b3a982b4634aC68dD83a4DBF02311cE324181/info.json b/blockchains/ethereum/assets/0x6B0b3a982b4634aC68dD83a4DBF02311cE324181/info.json new file mode 100644 index 0000000000000..dd8c34a8bca92 --- /dev/null +++ b/blockchains/ethereum/assets/0x6B0b3a982b4634aC68dD83a4DBF02311cE324181/info.json @@ -0,0 +1,21 @@ +{ + "name": "Artificial Liquid Intelligence", + "type": "ERC20", + "symbol": "ALI", + "decimals": 18, + "website": "https://alethea.ai/", + "description": "Alethea AI is building a decentralized iNFT Protocol to create an Intelligent Metaverse inhabited by Interactive and Intelligent NFTs. Anyone can use the Alethea AI protocol to Create, Train and Earn from their iNFTs in the world’s first Intelligent Metaverse known as Noah’s Ark.", + "explorer": "https://etherscan.io/token/0x6b0b3a982b4634ac68dd83a4dbf02311ce324181", + "status": "active", + "id": "0x6B0b3a982b4634aC68dD83a4DBF02311cE324181", + "links": [ + { + "name": "x", + "url": "https://x.com/real_alethea" + }, + { + "name": "telegram", + "url": "https://t.me/alethea_ai" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6B0b3a982b4634aC68dD83a4DBF02311cE324181/logo.png b/blockchains/ethereum/assets/0x6B0b3a982b4634aC68dD83a4DBF02311cE324181/logo.png new file mode 100644 index 0000000000000..3a2b934f54ff9 Binary files /dev/null and b/blockchains/ethereum/assets/0x6B0b3a982b4634aC68dD83a4DBF02311cE324181/logo.png differ diff --git a/blockchains/ethereum/assets/0x6B175474E89094C44Da98b954EedeAC495271d0F/info.json b/blockchains/ethereum/assets/0x6B175474E89094C44Da98b954EedeAC495271d0F/info.json index da897ca5d00d2..f1ae40ca2db6f 100644 --- a/blockchains/ethereum/assets/0x6B175474E89094C44Da98b954EedeAC495271d0F/info.json +++ b/blockchains/ethereum/assets/0x6B175474E89094C44Da98b954EedeAC495271d0F/info.json @@ -15,8 +15,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/MakerDAO" + "name": "x", + "url": "https://x.com/MakerDAO" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0x6B3595068778DD592e39A122f4f5a5cF09C90fE2/info.json b/blockchains/ethereum/assets/0x6B3595068778DD592e39A122f4f5a5cF09C90fE2/info.json index 3448306f517db..4f61a1c55d2f6 100644 --- a/blockchains/ethereum/assets/0x6B3595068778DD592e39A122f4f5a5cF09C90fE2/info.json +++ b/blockchains/ethereum/assets/0x6B3595068778DD592e39A122f4f5a5cF09C90fE2/info.json @@ -20,8 +20,8 @@ "url": "https://github.com/sushiswap" }, { - "name": "twitter", - "url": "https://twitter.com/sushiswap" + "name": "x", + "url": "https://x.com/sushiswap" }, { "name": "coingecko", diff --git a/blockchains/ethereum/assets/0x6B9f031D718dDed0d681c20cB754F97b3BB81b78/info.json b/blockchains/ethereum/assets/0x6B9f031D718dDed0d681c20cB754F97b3BB81b78/info.json index d2353020bb9ac..5a4ddafb0c426 100644 --- a/blockchains/ethereum/assets/0x6B9f031D718dDed0d681c20cB754F97b3BB81b78/info.json +++ b/blockchains/ethereum/assets/0x6B9f031D718dDed0d681c20cB754F97b3BB81b78/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/geeq-token" }, { - "name": "twitter", - "url": "https://twitter.com/Geeq" + "name": "x", + "url": "https://x.com/Geeq" }, { "name": "whitepaper", diff --git a/blockchains/ethereum/assets/0x6BF765C43030387a983f429c1438e9D2025B7E12/info.json b/blockchains/ethereum/assets/0x6BF765C43030387a983f429c1438e9D2025B7E12/info.json new file mode 100644 index 0000000000000..778a5f90b2a9c --- /dev/null +++ b/blockchains/ethereum/assets/0x6BF765C43030387a983f429c1438e9D2025B7E12/info.json @@ -0,0 +1,24 @@ +{ + "name": "McPepes", + "website": "https://mcpepes.com/", + "description": "McPepe’s is the infinite Pepe image generator. Generated images are available as NFTs on Ethereum or can be inscribed as Ordinals on Bitcoin. $PEPES incentivizes the generation of the highest quality Pepes possible and manages the resource constraints of generating millions of Pepes per day.", + "explorer": "https://etherscan.io/token/0x6bf765c43030387a983f429c1438e9d2025b7e12", + "type": "ERC20", + "symbol": "PEPES", + "decimals": 18, + "status": "active", + "id": "0x6BF765C43030387a983f429c1438e9D2025B7E12", + "tags": [ + "memes" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/McPepes_AI" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mcpepe-s/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6BF765C43030387a983f429c1438e9D2025B7E12/logo.png b/blockchains/ethereum/assets/0x6BF765C43030387a983f429c1438e9D2025B7E12/logo.png new file mode 100644 index 0000000000000..da782d14c8abe Binary files /dev/null and b/blockchains/ethereum/assets/0x6BF765C43030387a983f429c1438e9D2025B7E12/logo.png differ diff --git a/blockchains/ethereum/assets/0x6Bc40d4099f9057b23aF309C08d935b890d7Adc0/info.json b/blockchains/ethereum/assets/0x6Bc40d4099f9057b23aF309C08d935b890d7Adc0/info.json new file mode 100644 index 0000000000000..2c94a1448d279 --- /dev/null +++ b/blockchains/ethereum/assets/0x6Bc40d4099f9057b23aF309C08d935b890d7Adc0/info.json @@ -0,0 +1,25 @@ +{ + "name": "SnailBrook", + "website": "https://www.snailbrook.ai/", + "description": "SnailBrook (SNAIL) is a decentralized utopian cryptocurrency project that aims to unite various meme coin communities under a single, inclusive platform. By fostering equal opportunity and collaborative growth, SNAIL seeks to create a utopia for all meme coin enthusiasts and investors.", + "explorer": "https://etherscan.io/token/0x6bc40d4099f9057b23af309c08d935b890d7adc0", + "type": "ERC20", + "symbol": "SNAIL", + "decimals": 18, + "status": "active", + "id": "0x6Bc40d4099f9057b23aF309C08d935b890d7Adc0", + "links": [ + { + "name": "x", + "url": "https://x.com/SnailBrookAI" + }, + { + "name": "telegram", + "url": "https://t.me/Snailbrook_Entry" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/snailbrook/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6Bc40d4099f9057b23aF309C08d935b890d7Adc0/logo.png b/blockchains/ethereum/assets/0x6Bc40d4099f9057b23aF309C08d935b890d7Adc0/logo.png new file mode 100644 index 0000000000000..bd68303503587 Binary files /dev/null and b/blockchains/ethereum/assets/0x6Bc40d4099f9057b23aF309C08d935b890d7Adc0/logo.png differ diff --git a/blockchains/ethereum/assets/0x6C16119B20fa52600230F074b349dA3cb861a7e3/info.json b/blockchains/ethereum/assets/0x6C16119B20fa52600230F074b349dA3cb861a7e3/info.json index 05b5851b3403e..0abe65b1be760 100644 --- a/blockchains/ethereum/assets/0x6C16119B20fa52600230F074b349dA3cb861a7e3/info.json +++ b/blockchains/ethereum/assets/0x6C16119B20fa52600230F074b349dA3cb861a7e3/info.json @@ -18,8 +18,8 @@ "url": "https://coinmarketcap.com/currencies/alkemi-network-dao-token/" }, { - "name": "twitter", - "url": "https://twitter.com/AlkemiNetwork" + "name": "x", + "url": "https://x.com/AlkemiNetwork" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x6D7497751656618Fc38CfB5478994a20F7E235df/info.json b/blockchains/ethereum/assets/0x6D7497751656618Fc38CfB5478994a20F7E235df/info.json new file mode 100644 index 0000000000000..58c0ef442a07d --- /dev/null +++ b/blockchains/ethereum/assets/0x6D7497751656618Fc38CfB5478994a20F7E235df/info.json @@ -0,0 +1,25 @@ +{ + "name": "Spyro", + "symbol": "SPYRO", + "type": "ERC20", + "decimals": 18, + "description": "Spyro is the most memeable meme dragon in existence, deployed on the ERC20 network in the year of the Dragon.", + "website": "https://spyro.vip/", + "explorer": "https://etherscan.io/token/0x6d7497751656618fc38cfb5478994a20f7e235df", + "status": "active", + "id": "0x6D7497751656618Fc38CfB5478994a20F7E235df", + "links": [ + { + "name": "x", + "url": "https://x.com/spyrocoineth?s=21" + }, + { + "name": "telegram", + "url": "https://t.me/Spyro_Portal" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spyro/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6D7497751656618Fc38CfB5478994a20F7E235df/logo.png b/blockchains/ethereum/assets/0x6D7497751656618Fc38CfB5478994a20F7E235df/logo.png new file mode 100644 index 0000000000000..0f7ec388c9b69 Binary files /dev/null and b/blockchains/ethereum/assets/0x6D7497751656618Fc38CfB5478994a20F7E235df/logo.png differ diff --git a/blockchains/ethereum/assets/0x6DEA81C8171D0bA574754EF6F8b412F2Ed88c54D/info.json b/blockchains/ethereum/assets/0x6DEA81C8171D0bA574754EF6F8b412F2Ed88c54D/info.json index 1815f8c32f2eb..c09893c32bd2b 100644 --- a/blockchains/ethereum/assets/0x6DEA81C8171D0bA574754EF6F8b412F2Ed88c54D/info.json +++ b/blockchains/ethereum/assets/0x6DEA81C8171D0bA574754EF6F8b412F2Ed88c54D/info.json @@ -1,5 +1,5 @@ { - "name": "LQTY Token", + "name": "Liquity", "website": "https://www.liquity.org", "description": "Liquity is a decentralized borrowing protocol that allows you to draw 0% interest loans against Ether used as collateral.", "explorer": "https://etherscan.io/token/0x6DEA81C8171D0bA574754EF6F8b412F2Ed88c54D", diff --git a/blockchains/ethereum/assets/0x6DF0E641FC9847c0c6Fde39bE6253045440c14d3/info.json b/blockchains/ethereum/assets/0x6DF0E641FC9847c0c6Fde39bE6253045440c14d3/info.json new file mode 100644 index 0000000000000..5cd6e6f556f4a --- /dev/null +++ b/blockchains/ethereum/assets/0x6DF0E641FC9847c0c6Fde39bE6253045440c14d3/info.json @@ -0,0 +1,21 @@ +{ + "name": "Dinero", + "type": "ERC20", + "symbol": "DINERO", + "decimals": 18, + "website": "https://dinero.xyz/", + "description": "The Dinero Protocol offers full-stack infrastructure for L1 and L2 protocols.", + "explorer": "https://etherscan.io/token/0x6DF0E641FC9847c0c6Fde39bE6253045440c14d3", + "status": "active", + "id": "0x6DF0E641FC9847c0c6Fde39bE6253045440c14d3", + "links": [ + { + "name": "x", + "url": "https://x.com/dinero_xyz" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dinero-xyz/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6DF0E641FC9847c0c6Fde39bE6253045440c14d3/logo.png b/blockchains/ethereum/assets/0x6DF0E641FC9847c0c6Fde39bE6253045440c14d3/logo.png new file mode 100644 index 0000000000000..dacde1455c343 Binary files /dev/null and b/blockchains/ethereum/assets/0x6DF0E641FC9847c0c6Fde39bE6253045440c14d3/logo.png differ diff --git a/blockchains/ethereum/assets/0x6De037ef9aD2725EB40118Bb1702EBb27e4Aeb24/info.json b/blockchains/ethereum/assets/0x6De037ef9aD2725EB40118Bb1702EBb27e4Aeb24/info.json index 4826da2040920..0af34df806ba2 100644 --- a/blockchains/ethereum/assets/0x6De037ef9aD2725EB40118Bb1702EBb27e4Aeb24/info.json +++ b/blockchains/ethereum/assets/0x6De037ef9aD2725EB40118Bb1702EBb27e4Aeb24/info.json @@ -1,5 +1,5 @@ { - "name": "Render Token", + "name": "Render", "symbol": "RNDR", "type": "ERC20", "decimals": 18, diff --git a/blockchains/ethereum/assets/0x6E2a43be0B1d33b726f0CA3b8de60b3482b8b050/info.json b/blockchains/ethereum/assets/0x6E2a43be0B1d33b726f0CA3b8de60b3482b8b050/info.json new file mode 100644 index 0000000000000..92900349aa0ce --- /dev/null +++ b/blockchains/ethereum/assets/0x6E2a43be0B1d33b726f0CA3b8de60b3482b8b050/info.json @@ -0,0 +1,25 @@ +{ + "name": "Arkham", + "type": "ERC20", + "symbol": "ARKM", + "decimals": 18, + "website": "https://www.arkhamintelligence.com/", + "description": "ARKM is an intel-to-earn and incentive system that help to balance the token economy, with ARKM entering circulation via intel-to-earn payments and ARKM rewards, and cycling out of circulation via pay-in-ARKM platform purchases and exchange fees.", + "explorer": "https://etherscan.io/token/0x6e2a43be0b1d33b726f0ca3b8de60b3482b8b050", + "status": "active", + "id": "0x6E2a43be0B1d33b726f0CA3b8de60b3482b8b050", + "links": [ + { + "name": "x", + "url": "https://x.com/arkhamintel" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/arkham/" + }, + { + "name": "telegram", + "url": "https://t.me/arkhamintelligence" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6E2a43be0B1d33b726f0CA3b8de60b3482b8b050/logo.png b/blockchains/ethereum/assets/0x6E2a43be0B1d33b726f0CA3b8de60b3482b8b050/logo.png new file mode 100644 index 0000000000000..0abe387bb7fee Binary files /dev/null and b/blockchains/ethereum/assets/0x6E2a43be0B1d33b726f0CA3b8de60b3482b8b050/logo.png differ diff --git a/blockchains/ethereum/assets/0x6E79B51959CF968d87826592f46f819F92466615/info.json b/blockchains/ethereum/assets/0x6E79B51959CF968d87826592f46f819F92466615/info.json new file mode 100644 index 0000000000000..920b471a21fa1 --- /dev/null +++ b/blockchains/ethereum/assets/0x6E79B51959CF968d87826592f46f819F92466615/info.json @@ -0,0 +1,32 @@ +{ + "name": "Hoppy", + "type": "ERC20", + "symbol": "HOPPY", + "decimals": 9, + "website": "https://hoppycoinerc20.com", + "description": "Hoppy is an anthropomorphic frog character based on the famous comic book «The Night Riders», published in 2012 by artist and illustrator Matt Furie. Today, this is one of the few characters of Matt Furie that can truly be considered unique. Hoppy began his memetic revolution through countless iterations of memes cementing his iconic status, mastering every form with his unparalleled power. With its roots in internet culture, Hoppy infuses humor and meme magic into the world, fostering a movement that unites and makes everyone happy.", + "explorer": "https://etherscan.io/token/0x6E79B51959CF968d87826592f46f819F92466615", + "status": "active", + "id": "0x6E79B51959CF968d87826592f46f819F92466615", + "links": [ + { + "name": "x", + "url": "https://x.com//hoppycoinERC20" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hoppy-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hoppy-meme" + }, + { + "name": "telegram", + "url": "https://t.me/hoppycoinERC20" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6E79B51959CF968d87826592f46f819F92466615/logo.png b/blockchains/ethereum/assets/0x6E79B51959CF968d87826592f46f819F92466615/logo.png new file mode 100644 index 0000000000000..0814fa80789c5 Binary files /dev/null and b/blockchains/ethereum/assets/0x6E79B51959CF968d87826592f46f819F92466615/logo.png differ diff --git a/blockchains/ethereum/assets/0x6F1ba97fA36A0e78d73618C6722A9b108848235C/info.json b/blockchains/ethereum/assets/0x6F1ba97fA36A0e78d73618C6722A9b108848235C/info.json new file mode 100644 index 0000000000000..72f39cf808a50 --- /dev/null +++ b/blockchains/ethereum/assets/0x6F1ba97fA36A0e78d73618C6722A9b108848235C/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM ARI", + "type": "ERC20", + "symbol": "SCAM ARI", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://etherscan.io/token/0x6F1ba97fA36A0e78d73618C6722A9b108848235C", + "explorer": "https://etherscan.io/token/0x6F1ba97fA36A0e78d73618C6722A9b108848235C", + "status": "spam", + "id": "0x6F1ba97fA36A0e78d73618C6722A9b108848235C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6F8aAD52c0127aE0B676BDDEe340A24Afec5fC8E/info.json b/blockchains/ethereum/assets/0x6F8aAD52c0127aE0B676BDDEe340A24Afec5fC8E/info.json new file mode 100644 index 0000000000000..8e1afb31d8fa1 --- /dev/null +++ b/blockchains/ethereum/assets/0x6F8aAD52c0127aE0B676BDDEe340A24Afec5fC8E/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tentum", + "type": "ERC20", + "symbol": "FAKE USDT.t", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://etherscan.io/token/0x6F8aAD52c0127aE0B676BDDEe340A24Afec5fC8E", + "explorer": "https://etherscan.io/token/0x6F8aAD52c0127aE0B676BDDEe340A24Afec5fC8E", + "status": "spam", + "id": "0x6F8aAD52c0127aE0B676BDDEe340A24Afec5fC8E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6FB0fcA6B108E3636bb511A2F60c2b490e54171f/info.json b/blockchains/ethereum/assets/0x6FB0fcA6B108E3636bb511A2F60c2b490e54171f/info.json new file mode 100644 index 0000000000000..6e1efe1afdeb6 --- /dev/null +++ b/blockchains/ethereum/assets/0x6FB0fcA6B108E3636bb511A2F60c2b490e54171f/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDT", + "type": "ERC20", + "symbol": "FAKE USDT", + "decimals": 6, + "website": "https://etherscan.io/token/0x6fb0fca6b108e3636bb511a2f60c2b490e54171f", + "description": "FAKE USDT", + "explorer": "https://etherscan.io/address/0x6fb0fca6b108e3636bb511a2f60c2b490e54171f", + "status": "spam", + "id": "0x6FB0fcA6B108E3636bb511A2F60c2b490e54171f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6a4C76874e686A7d080D173987A35A9c48905583/info.json b/blockchains/ethereum/assets/0x6a4C76874e686A7d080D173987A35A9c48905583/info.json index b6252dedc6429..db47e8774f357 100644 --- a/blockchains/ethereum/assets/0x6a4C76874e686A7d080D173987A35A9c48905583/info.json +++ b/blockchains/ethereum/assets/0x6a4C76874e686A7d080D173987A35A9c48905583/info.json @@ -10,8 +10,8 @@ "id": "0x6a4C76874e686A7d080D173987A35A9c48905583", "links": [ { - "name": "twitter", - "url": "https://twitter.com/officialLPNT" + "name": "x", + "url": "https://x.com/officialLPNT" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0x6a668332825450ACD2e449372057d31b3de16a1E/info.json b/blockchains/ethereum/assets/0x6a668332825450ACD2e449372057d31b3de16a1E/info.json new file mode 100644 index 0000000000000..88caf40e155a6 --- /dev/null +++ b/blockchains/ethereum/assets/0x6a668332825450ACD2e449372057d31b3de16a1E/info.json @@ -0,0 +1,15 @@ +{ + "name": "Core MSCI Emerging Markets xStock", + "type": "ERC20", + "symbol": "IEMGx", + "decimals": 18, + "description": "Core MSCI Emerging Markets xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://etherscan.io/token/0x6a668332825450ACD2e449372057d31b3de16a1E", + "status": "active", + "id": "0x6a668332825450ACD2e449372057d31b3de16a1E", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6a668332825450ACD2e449372057d31b3de16a1E/logo.png b/blockchains/ethereum/assets/0x6a668332825450ACD2e449372057d31b3de16a1E/logo.png new file mode 100644 index 0000000000000..857fe69020c3c Binary files /dev/null and b/blockchains/ethereum/assets/0x6a668332825450ACD2e449372057d31b3de16a1E/logo.png differ diff --git a/blockchains/ethereum/assets/0x6aA56e1D98b3805921C170EB4B3fe7D4Fda6D89b/info.json b/blockchains/ethereum/assets/0x6aA56e1D98b3805921C170EB4B3fe7D4Fda6D89b/info.json new file mode 100644 index 0000000000000..b26f444789925 --- /dev/null +++ b/blockchains/ethereum/assets/0x6aA56e1D98b3805921C170EB4B3fe7D4Fda6D89b/info.json @@ -0,0 +1,28 @@ +{ + "name": "MAGA (bridged)", + "website": "https://magamemecoin.com/", + "description": "Maga is a deflationary meme coin launched on Ethereum. Cryptocurrency was created as a tribute to the trump the Maga.", + "explorer": "https://etherscan.io/token/0x6aA56e1D98b3805921C170EB4B3fe7D4Fda6D89b", + "type": "ERC20", + "symbol": "TRUMP", + "decimals": 9, + "status": "active", + "id": "0x6aA56e1D98b3805921C170EB4B3fe7D4Fda6D89b", + "links": [ + { + "name": "x", + "url": "https://x.com/MAGAMemecoin" + }, + { + "name": "telegram", + "url": "https://t.me/MAGAMemecoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/maga/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6aA56e1D98b3805921C170EB4B3fe7D4Fda6D89b/logo.png b/blockchains/ethereum/assets/0x6aA56e1D98b3805921C170EB4B3fe7D4Fda6D89b/logo.png new file mode 100644 index 0000000000000..4d1fc39fdc6c4 Binary files /dev/null and b/blockchains/ethereum/assets/0x6aA56e1D98b3805921C170EB4B3fe7D4Fda6D89b/logo.png differ diff --git a/blockchains/ethereum/assets/0x6b431B8a964BFcf28191b07c91189fF4403957D0/info.json b/blockchains/ethereum/assets/0x6b431B8a964BFcf28191b07c91189fF4403957D0/info.json new file mode 100644 index 0000000000000..d89593070fb3e --- /dev/null +++ b/blockchains/ethereum/assets/0x6b431B8a964BFcf28191b07c91189fF4403957D0/info.json @@ -0,0 +1,17 @@ +{ + "name": "CorgiAI", + "type": "ERC20", + "symbol": "CORGIAI", + "decimals": 18, + "website": "https://corgiai.xyz/", + "description": "$CORGIAI is the core token used within the CorgiAI ecosystem.", + "explorer": "https://etherscan.io/token/0x6b431b8a964bfcf28191b07c91189ff4403957d0", + "status": "active", + "id": "0x6b431B8a964BFcf28191b07c91189fF4403957D0", + "links": [ + { + "name": "x", + "url": "https://x.com/corgiaiclub" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6b431B8a964BFcf28191b07c91189fF4403957D0/logo.png b/blockchains/ethereum/assets/0x6b431B8a964BFcf28191b07c91189fF4403957D0/logo.png new file mode 100644 index 0000000000000..e3f1fa3cafff7 Binary files /dev/null and b/blockchains/ethereum/assets/0x6b431B8a964BFcf28191b07c91189fF4403957D0/logo.png differ diff --git a/blockchains/ethereum/assets/0x6bE935eaDc71c49c414b1175985946ee40365c67/info.json b/blockchains/ethereum/assets/0x6bE935eaDc71c49c414b1175985946ee40365c67/info.json new file mode 100644 index 0000000000000..6197ef8f2ccec --- /dev/null +++ b/blockchains/ethereum/assets/0x6bE935eaDc71c49c414b1175985946ee40365c67/info.json @@ -0,0 +1,28 @@ +{ + "name": "Applied Materials (Ondo Tokenized)", + "type": "ERC20", + "symbol": "AMATon", + "decimals": 18, + "description": "AMATon is the Ondo Tokenized version of Applied Materials, giving tokenholders economic exposure similar to holding AMAT and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x6bE935eaDc71c49c414b1175985946ee40365c67", + "status": "active", + "id": "0x6bE935eaDc71c49c414b1175985946ee40365c67", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/applied-materials-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/applied-materials-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6bE935eaDc71c49c414b1175985946ee40365c67/logo.png b/blockchains/ethereum/assets/0x6bE935eaDc71c49c414b1175985946ee40365c67/logo.png new file mode 100644 index 0000000000000..760e219c8191f Binary files /dev/null and b/blockchains/ethereum/assets/0x6bE935eaDc71c49c414b1175985946ee40365c67/logo.png differ diff --git a/blockchains/ethereum/assets/0x6c28AeF8977c9B773996d0e8376d2EE379446F2f/info.json b/blockchains/ethereum/assets/0x6c28AeF8977c9B773996d0e8376d2EE379446F2f/info.json index 95bb74c7bbb7f..76c20c3a9daa4 100644 --- a/blockchains/ethereum/assets/0x6c28AeF8977c9B773996d0e8376d2EE379446F2f/info.json +++ b/blockchains/ethereum/assets/0x6c28AeF8977c9B773996d0e8376d2EE379446F2f/info.json @@ -6,7 +6,7 @@ "type": "ERC20", "symbol": "QUICK", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x6c28AeF8977c9B773996d0e8376d2EE379446F2f", "links": [ { @@ -14,8 +14,8 @@ "url": "https://github.com/QuickSwap" }, { - "name": "twitter", - "url": "https://twitter.com/QuickswapDEX" + "name": "x", + "url": "https://x.com/QuickswapDEX" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x6c3ea9036406852006290770BEdFcAbA0e23A0e8/info.json b/blockchains/ethereum/assets/0x6c3ea9036406852006290770BEdFcAbA0e23A0e8/info.json new file mode 100644 index 0000000000000..87d19e66686f5 --- /dev/null +++ b/blockchains/ethereum/assets/0x6c3ea9036406852006290770BEdFcAbA0e23A0e8/info.json @@ -0,0 +1,29 @@ +{ + "name": "PayPal USD", + "type": "ERC20", + "symbol": "PYUSD", + "decimals": 6, + "description": "PayPal USD is designed to contribute to the opportunity stablecoins offer for payments and is 100% backed by U.S. dollar deposits, short-term U.S Treasuries and similar cash equivalents. PayPal USD is redeemable 1:1 for U.S. dollars and is issued by Paxos Trust Company.", + "website": "https://www.paypal.com/us/digital-wallet/manage-money/crypto/pyusd", + "explorer": "https://etherscan.io/token/0x6c3ea9036406852006290770bedfcaba0e23a0e8", + "id": "0x6c3ea9036406852006290770BEdFcAbA0e23A0e8", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/PayPal" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/paypal-usd/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/paypal-usd" + } + ], + "tags": [ + "stablecoin" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6c3ea9036406852006290770BEdFcAbA0e23A0e8/logo.png b/blockchains/ethereum/assets/0x6c3ea9036406852006290770BEdFcAbA0e23A0e8/logo.png new file mode 100644 index 0000000000000..e3fb4632766c0 Binary files /dev/null and b/blockchains/ethereum/assets/0x6c3ea9036406852006290770BEdFcAbA0e23A0e8/logo.png differ diff --git a/blockchains/ethereum/assets/0x6c5bA91642F10282b576d91922Ae6448C9d52f4E/info.json b/blockchains/ethereum/assets/0x6c5bA91642F10282b576d91922Ae6448C9d52f4E/info.json index 1ecf98c2dcfd5..38350619d74ca 100644 --- a/blockchains/ethereum/assets/0x6c5bA91642F10282b576d91922Ae6448C9d52f4E/info.json +++ b/blockchains/ethereum/assets/0x6c5bA91642F10282b576d91922Ae6448C9d52f4E/info.json @@ -3,9 +3,47 @@ "symbol": "PHA", "type": "ERC20", "decimals": 18, - "description": "Phala Network is a privacy-preserving cloud computing service, which offers computing power comparable to existing cloud services and protects the privacy of managed programs.", + "description": "Phala Network is the most decentralized protocol to run AI Agents as coprocessors for blockchains.", "website": "https://phala.network/", "explorer": "https://etherscan.io/token/0x6c5bA91642F10282b576d91922Ae6448C9d52f4E", + "research": "https://www.binance.com/en/research/projects/phalanetwork", + "tags": [ + "staking" + ], "status": "active", - "id": "0x6c5bA91642F10282b576d91922Ae6448C9d52f4E" + "id": "0x6c5bA91642F10282b576d91922Ae6448C9d52f4E", + "links": [ + { + "name": "github", + "url": "https://github.com/Phala-Network" + }, + { + "name": "x", + "url": "https://x.com/PhalaNetwork" + }, + { + "name": "discord", + "url": "https://discord.com/invite/phala" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/PhalaNetwork" + }, + { + "name": "blog", + "url": "https://phala.network/blog" + }, + { + "name": "docs", + "url": "https://docs.phala.network/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/phala-network/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/phala-network" + } + ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6c5bA91642F10282b576d91922Ae6448C9d52f4E/logo.png b/blockchains/ethereum/assets/0x6c5bA91642F10282b576d91922Ae6448C9d52f4E/logo.png index a390339631565..237d1a3bdbf1d 100644 Binary files a/blockchains/ethereum/assets/0x6c5bA91642F10282b576d91922Ae6448C9d52f4E/logo.png and b/blockchains/ethereum/assets/0x6c5bA91642F10282b576d91922Ae6448C9d52f4E/logo.png differ diff --git a/blockchains/ethereum/assets/0x6c6EE5e31d828De241282B9606C8e98Ea48526E2/info.json b/blockchains/ethereum/assets/0x6c6EE5e31d828De241282B9606C8e98Ea48526E2/info.json index 020d4795ec673..917db88083545 100644 --- a/blockchains/ethereum/assets/0x6c6EE5e31d828De241282B9606C8e98Ea48526E2/info.json +++ b/blockchains/ethereum/assets/0x6c6EE5e31d828De241282B9606C8e98Ea48526E2/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Holo-Host" }, { - "name": "twitter", - "url": "https://twitter.com/H_O_L_O_" + "name": "x", + "url": "https://x.com/H_O_L_O_" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0x6c972b70c533E2E045F333Ee28b9fFb8D717bE69/info.json b/blockchains/ethereum/assets/0x6c972b70c533E2E045F333Ee28b9fFb8D717bE69/info.json index 646cae33db0e7..37c76102dfd54 100644 --- a/blockchains/ethereum/assets/0x6c972b70c533E2E045F333Ee28b9fFb8D717bE69/info.json +++ b/blockchains/ethereum/assets/0x6c972b70c533E2E045F333Ee28b9fFb8D717bE69/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/team-toast/Foundry" }, { - "name": "twitter", - "url": "https://twitter.com/foundryDAO" + "name": "x", + "url": "https://x.com/foundryDAO" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x6cC41275ef02B4EecCC04fC4424849A96f3272aa/info.json b/blockchains/ethereum/assets/0x6cC41275ef02B4EecCC04fC4424849A96f3272aa/info.json new file mode 100644 index 0000000000000..7e1c5b48334cb --- /dev/null +++ b/blockchains/ethereum/assets/0x6cC41275ef02B4EecCC04fC4424849A96f3272aa/info.json @@ -0,0 +1,28 @@ +{ + "name": "Block (Ondo Tokenized)", + "type": "ERC20", + "symbol": "XYZon", + "decimals": 18, + "description": "XYZon is the Ondo Tokenized version of Block, giving tokenholders economic exposure similar to holding XYZ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x6cC41275ef02B4EecCC04fC4424849A96f3272aa", + "status": "active", + "id": "0x6cC41275ef02B4EecCC04fC4424849A96f3272aa", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/block-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/block-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6cC41275ef02B4EecCC04fC4424849A96f3272aa/logo.png b/blockchains/ethereum/assets/0x6cC41275ef02B4EecCC04fC4424849A96f3272aa/logo.png new file mode 100644 index 0000000000000..69f7bedf9b26d Binary files /dev/null and b/blockchains/ethereum/assets/0x6cC41275ef02B4EecCC04fC4424849A96f3272aa/logo.png differ diff --git a/blockchains/ethereum/assets/0x6cc0afD51CE4Cb6920B775F3D6376Ab82b9A93Bb/info.json b/blockchains/ethereum/assets/0x6cc0afD51CE4Cb6920B775F3D6376Ab82b9A93Bb/info.json new file mode 100644 index 0000000000000..14b5243691033 --- /dev/null +++ b/blockchains/ethereum/assets/0x6cc0afD51CE4Cb6920B775F3D6376Ab82b9A93Bb/info.json @@ -0,0 +1,24 @@ +{ + "name": "Intuit (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "INTUon is the Ondo Tokenized version of Intuit, giving tokenholders economic exposure similar to holding INTU and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x6cc0afD51CE4Cb6920B775F3D6376Ab82b9A93Bb", + "type": "ERC20", + "symbol": "INTUon", + "decimals": 18, + "status": "active", + "id": "0x6cc0afD51CE4Cb6920B775F3D6376Ab82b9A93Bb", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/intuit-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6cc0afD51CE4Cb6920B775F3D6376Ab82b9A93Bb/logo.png b/blockchains/ethereum/assets/0x6cc0afD51CE4Cb6920B775F3D6376Ab82b9A93Bb/logo.png new file mode 100644 index 0000000000000..7f174a20e6775 Binary files /dev/null and b/blockchains/ethereum/assets/0x6cc0afD51CE4Cb6920B775F3D6376Ab82b9A93Bb/logo.png differ diff --git a/blockchains/ethereum/assets/0x6d011934C23B44559F237bF4C28A8919906C5955/info.json b/blockchains/ethereum/assets/0x6d011934C23B44559F237bF4C28A8919906C5955/info.json new file mode 100644 index 0000000000000..4f4193a5f906e --- /dev/null +++ b/blockchains/ethereum/assets/0x6d011934C23B44559F237bF4C28A8919906C5955/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tedra USD 2.0", + "type": "ERC20", + "symbol": "FAKE USD.T", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://etherscan.io/token/0x6d011934C23B44559F237bF4C28A8919906C5955", + "explorer": "https://etherscan.io/token/0x6d011934C23B44559F237bF4C28A8919906C5955", + "status": "spam", + "id": "0x6d011934C23B44559F237bF4C28A8919906C5955" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2/info.json b/blockchains/ethereum/assets/0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2/info.json new file mode 100644 index 0000000000000..ebd0c523d36bf --- /dev/null +++ b/blockchains/ethereum/assets/0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2/info.json @@ -0,0 +1,24 @@ +{ + "name": "Palantir tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Oracle xStock (ORCLx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. ORCLx tracks the price of Oracle Corporation (the underlying). ORCLx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Oracle Corporation, whilst maintaining the benefits of blockchain technology. Oracle Corporation is a large, publicly-held multinational company headquartered in Austin, Texas, offering enterprise applications and cloud infrastructure.", + "explorer": "https://etherscan.io/token/0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2", + "type": "ERC20", + "symbol": "PLTRX", + "decimals": 18, + "status": "active", + "id": "0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/palantir-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2/logo.png b/blockchains/ethereum/assets/0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2/logo.png new file mode 100644 index 0000000000000..da0a1030f73b4 Binary files /dev/null and b/blockchains/ethereum/assets/0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2/logo.png differ diff --git a/blockchains/ethereum/assets/0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C/info.json b/blockchains/ethereum/assets/0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C/info.json new file mode 100644 index 0000000000000..5f24900e5fa82 --- /dev/null +++ b/blockchains/ethereum/assets/0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C/info.json @@ -0,0 +1,15 @@ +{ + "name": "Vanguard Total World xStock", + "type": "ERC20", + "symbol": "VTx", + "decimals": 18, + "description": "Vanguard Total World xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://etherscan.io/token/0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C", + "status": "active", + "id": "0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C/logo.png b/blockchains/ethereum/assets/0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C/logo.png new file mode 100644 index 0000000000000..5968d83be9311 Binary files /dev/null and b/blockchains/ethereum/assets/0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C/logo.png differ diff --git a/blockchains/ethereum/assets/0x6d82017e55b1D24C53c7B33BbB770A86f2ca229D/info.json b/blockchains/ethereum/assets/0x6d82017e55b1D24C53c7B33BbB770A86f2ca229D/info.json index 7d24c0ce6c434..6899e77ac8992 100644 --- a/blockchains/ethereum/assets/0x6d82017e55b1D24C53c7B33BbB770A86f2ca229D/info.json +++ b/blockchains/ethereum/assets/0x6d82017e55b1D24C53c7B33BbB770A86f2ca229D/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/ichifarm/ichi-oneToken" }, { - "name": "twitter", - "url": "https://twitter.com/ichifarm" + "name": "x", + "url": "https://x.com/ichifarm" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x6e15A54B5EcAc17e58daDedDbe8506a7560252F9/info.json b/blockchains/ethereum/assets/0x6e15A54B5EcAc17e58daDedDbe8506a7560252F9/info.json new file mode 100644 index 0000000000000..4dfb2b7dc710e --- /dev/null +++ b/blockchains/ethereum/assets/0x6e15A54B5EcAc17e58daDedDbe8506a7560252F9/info.json @@ -0,0 +1,30 @@ +{ + "name": "SynFutures", + "type": "ERC20", + "symbol": "F", + "decimals": 18, + "description": "SynFutures (F) is a leading decentralized exchange (DEX) and full-stack financial infrastructure powering the future of trading. Utilizing its Oyster AMM model and a fully onchain order-matching engine for derivatives, SynFutures enables anyone to list and trade any asset with leverage.", + "website": "https://www.synfutures.com/", + "explorer": "https://etherscan.io/token/0x6e15A54B5EcAc17e58daDedDbe8506a7560252F9", + "id": "0x6e15A54B5EcAc17e58daDedDbe8506a7560252F9", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/SynFuturesDefi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/synfutures/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/synfutures" + } + + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6e15A54B5EcAc17e58daDedDbe8506a7560252F9/logo.png b/blockchains/ethereum/assets/0x6e15A54B5EcAc17e58daDedDbe8506a7560252F9/logo.png new file mode 100644 index 0000000000000..35fa50abc4c1c Binary files /dev/null and b/blockchains/ethereum/assets/0x6e15A54B5EcAc17e58daDedDbe8506a7560252F9/logo.png differ diff --git a/blockchains/ethereum/assets/0x6ef69Ba2d051761aFD38F218F0a3cF517D64A760/info.json b/blockchains/ethereum/assets/0x6ef69Ba2d051761aFD38F218F0a3cF517D64A760/info.json new file mode 100644 index 0000000000000..84a5a56f95d95 --- /dev/null +++ b/blockchains/ethereum/assets/0x6ef69Ba2d051761aFD38F218F0a3cF517D64A760/info.json @@ -0,0 +1,30 @@ +{ + "name": "Moontax", + "type": "ERC20", + "symbol": "CPAI", + "decimals": 18, + "description": "$CPAI is your key to unlock a complete crypto tax accounting network. The first AI based crypto accounting tool, supported by human reconciliation and legal services for when you need something extra.", + "website": "https://www.cpai.io/", + "explorer": "https://etherscan.io/token/0x6ef69Ba2d051761aFD38F218F0a3cF517D64A760", + "id": "0x6ef69Ba2d051761aFD38F218F0a3cF517D64A760", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/OfficialCPAI" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/moontax/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/moontax" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6ef69Ba2d051761aFD38F218F0a3cF517D64A760/logo.png b/blockchains/ethereum/assets/0x6ef69Ba2d051761aFD38F218F0a3cF517D64A760/logo.png new file mode 100644 index 0000000000000..cc9a9e4ec1764 Binary files /dev/null and b/blockchains/ethereum/assets/0x6ef69Ba2d051761aFD38F218F0a3cF517D64A760/logo.png differ diff --git a/blockchains/ethereum/assets/0x6f259637dcD74C767781E37Bc6133cd6A68aa161/info.json b/blockchains/ethereum/assets/0x6f259637dcD74C767781E37Bc6133cd6A68aa161/info.json index e939366aee1fc..ffb6b6f36db4c 100644 --- a/blockchains/ethereum/assets/0x6f259637dcD74C767781E37Bc6133cd6A68aa161/info.json +++ b/blockchains/ethereum/assets/0x6f259637dcD74C767781E37Bc6133cd6A68aa161/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/huobiproofficial" }, { - "name": "twitter", - "url": "https://twitter.com/HUOBI_Pro" + "name": "x", + "url": "https://x.com/HUOBI_Pro" }, { "name": "facebook", diff --git a/blockchains/ethereum/assets/0x6f40d4A6237C257fff2dB00FA0510DeEECd303eb/info.json b/blockchains/ethereum/assets/0x6f40d4A6237C257fff2dB00FA0510DeEECd303eb/info.json index bf8d72dc58ed0..c952737fcd454 100644 --- a/blockchains/ethereum/assets/0x6f40d4A6237C257fff2dB00FA0510DeEECd303eb/info.json +++ b/blockchains/ethereum/assets/0x6f40d4A6237C257fff2dB00FA0510DeEECd303eb/info.json @@ -1,11 +1,21 @@ { - "name": "Instadapp", + "name": "Fluid", "type": "ERC20", - "symbol": "INST", + "symbol": "FLUID", "decimals": 18, - "website": "https://Instadapp.io", - "description": "Middleware platform for decentralized finance applications", + "website": "https://fluid.io/", + "description": "Fluid is a liquidity protocol that combines money markets and DEX allowing to achieve up to 97% Liquidation Thresholds and as low as 0.1% Liquidation Penalties.", "explorer": "https://etherscan.io/token/0x6f40d4a6237c257fff2db00fa0510deeecd303eb", "status": "active", - "id": "0x6f40d4A6237C257fff2dB00FA0510DeEECd303eb" + "id": "0x6f40d4A6237C257fff2dB00FA0510DeEECd303eb", + "links": [ + { + "name": "x", + "url": "https://x.com/0xfluid" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/instadapp/" + } + ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6f40d4A6237C257fff2dB00FA0510DeEECd303eb/logo.png b/blockchains/ethereum/assets/0x6f40d4A6237C257fff2dB00FA0510DeEECd303eb/logo.png index 2dcf75b7481a6..c92e11eb3ec7a 100644 Binary files a/blockchains/ethereum/assets/0x6f40d4A6237C257fff2dB00FA0510DeEECd303eb/logo.png and b/blockchains/ethereum/assets/0x6f40d4A6237C257fff2dB00FA0510DeEECd303eb/logo.png differ diff --git a/blockchains/ethereum/assets/0x6f80310CA7F2C654691D1383149Fa1A57d8AB1f8/info.json b/blockchains/ethereum/assets/0x6f80310CA7F2C654691D1383149Fa1A57d8AB1f8/info.json index 5ca6b58d9c38b..56a1b169e4476 100644 --- a/blockchains/ethereum/assets/0x6f80310CA7F2C654691D1383149Fa1A57d8AB1f8/info.json +++ b/blockchains/ethereum/assets/0x6f80310CA7F2C654691D1383149Fa1A57d8AB1f8/info.json @@ -10,8 +10,8 @@ "id": "0x6f80310CA7F2C654691D1383149Fa1A57d8AB1f8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SiloFinance" + "name": "x", + "url": "https://x.com/SiloFinance" }, { "name": "github", @@ -41,4 +41,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6fA0BE17e4beA2fCfA22ef89BF8ac9aab0AB0fc9/info.json b/blockchains/ethereum/assets/0x6fA0BE17e4beA2fCfA22ef89BF8ac9aab0AB0fc9/info.json new file mode 100644 index 0000000000000..590acb10cf2d3 --- /dev/null +++ b/blockchains/ethereum/assets/0x6fA0BE17e4beA2fCfA22ef89BF8ac9aab0AB0fc9/info.json @@ -0,0 +1,32 @@ +{ + "name": "A7A5", + "type": "ERC20", + "symbol": "A7A5", + "decimals": 6, + "website": "https://a7a5.io/", + "description": "A7A5 is an RWA token backed by fiat deposits in top-tier banks with high overnight rates. A7A5 automatically distributes 50% of its daily income to all token holders at a random time each day, requiring no action on their part. A7A5 has a wrapped version - wA7A5 (0x0d57436f2d39c0664c6f0f2e349229483f87ea38) which is used for DeFi platforms as A7A5 is a rebasing token.", + "explorer": "https://etherscan.io/token/0x6fA0BE17e4beA2fCfA22ef89BF8ac9aab0AB0fc9", + "status": "active", + "id": "0x6fA0BE17e4beA2fCfA22ef89BF8ac9aab0AB0fc9", + "links": [ + { + "name": "x", + "url": "https://x.com/A7A5official" + }, + { + "name": "telegram", + "url": "https://t.me/A7A5official" + }, + { + "name": "github", + "url": "https://github.com/a7a5-defi/a7a5" + }, + { + "name": "whitepaper", + "url": "https://docs.a7a5.io/additional/whitepaper" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6fA0BE17e4beA2fCfA22ef89BF8ac9aab0AB0fc9/logo.png b/blockchains/ethereum/assets/0x6fA0BE17e4beA2fCfA22ef89BF8ac9aab0AB0fc9/logo.png new file mode 100644 index 0000000000000..06064d6b72ee1 Binary files /dev/null and b/blockchains/ethereum/assets/0x6fA0BE17e4beA2fCfA22ef89BF8ac9aab0AB0fc9/logo.png differ diff --git a/blockchains/ethereum/assets/0x7039cd6D7966672F194E8139074C3D5c4e6DCf65/info.json b/blockchains/ethereum/assets/0x7039cd6D7966672F194E8139074C3D5c4e6DCf65/info.json new file mode 100644 index 0000000000000..3f530e6869607 --- /dev/null +++ b/blockchains/ethereum/assets/0x7039cd6D7966672F194E8139074C3D5c4e6DCf65/info.json @@ -0,0 +1,21 @@ +{ + "name": "Super Trump", + "type": "ERC20", + "symbol": "STRUMP", + "decimals": 9, + "website": "https://supertrumpcoin.io/", + "description": "Super Trump Coin is a pioneering cryptocurrency leveraging blockchain technology to pay homage to the political legacy of Donald Trump", + "explorer": "https://etherscan.io/token/0x7039cd6D7966672F194E8139074C3D5c4e6DCf65", + "status": "active", + "id": "0x7039cd6D7966672F194E8139074C3D5c4e6DCf65", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/super-trump-io/" + }, + { + "name": "x", + "url": "https://x.com/SuperTrumpCoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7039cd6D7966672F194E8139074C3D5c4e6DCf65/logo.png b/blockchains/ethereum/assets/0x7039cd6D7966672F194E8139074C3D5c4e6DCf65/logo.png new file mode 100644 index 0000000000000..7b70b24f184e5 Binary files /dev/null and b/blockchains/ethereum/assets/0x7039cd6D7966672F194E8139074C3D5c4e6DCf65/logo.png differ diff --git a/blockchains/ethereum/assets/0x7042a8fFc7c7049684BfBc2fcb41b72380755a43/info.json b/blockchains/ethereum/assets/0x7042a8fFc7c7049684BfBc2fcb41b72380755a43/info.json new file mode 100644 index 0000000000000..67aff5a5aef39 --- /dev/null +++ b/blockchains/ethereum/assets/0x7042a8fFc7c7049684BfBc2fcb41b72380755a43/info.json @@ -0,0 +1,24 @@ +{ + "name": "Adobe (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "ADBEon is the Ondo Tokenized version of Adobe, giving tokenholders economic exposure similar to holding ADBE and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x7042a8fFc7c7049684BfBc2fcb41b72380755a43", + "type": "ERC20", + "symbol": "ADBEon", + "decimals": 18, + "status": "active", + "id": "0x7042a8fFc7c7049684BfBc2fcb41b72380755a43", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/adobe-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7042a8fFc7c7049684BfBc2fcb41b72380755a43/logo.png b/blockchains/ethereum/assets/0x7042a8fFc7c7049684BfBc2fcb41b72380755a43/logo.png new file mode 100644 index 0000000000000..bac3a277c8d78 Binary files /dev/null and b/blockchains/ethereum/assets/0x7042a8fFc7c7049684BfBc2fcb41b72380755a43/logo.png differ diff --git a/blockchains/ethereum/assets/0x706CB9E741CBFee00Ad5b3f5ACc8bd44D1644a74/info.json b/blockchains/ethereum/assets/0x706CB9E741CBFee00Ad5b3f5ACc8bd44D1644a74/info.json index f4e0c4c9a6898..15b49b5d5442a 100644 --- a/blockchains/ethereum/assets/0x706CB9E741CBFee00Ad5b3f5ACc8bd44D1644a74/info.json +++ b/blockchains/ethereum/assets/0x706CB9E741CBFee00Ad5b3f5ACc8bd44D1644a74/info.json @@ -10,8 +10,8 @@ "id": "0x706CB9E741CBFee00Ad5b3f5ACc8bd44D1644a74", "links": [ { - "name": "twitter", - "url": "https://twitter.com/yfoxfinance" + "name": "x", + "url": "https://x.com/yfoxfinance" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x70B4082F4e3F9067dB9A2aA7520C77719E8626EE/info.json b/blockchains/ethereum/assets/0x70B4082F4e3F9067dB9A2aA7520C77719E8626EE/info.json new file mode 100644 index 0000000000000..f7d4a6bb2041a --- /dev/null +++ b/blockchains/ethereum/assets/0x70B4082F4e3F9067dB9A2aA7520C77719E8626EE/info.json @@ -0,0 +1,24 @@ +{ + "name": "Franklin Focused Growth ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "FFOGon", + "decimals": 18, + "description": "FFOGon is the Ondo Tokenized version of the Franklin Focused Growth ETF, giving tokenholders economic exposure similar to holding FFOG and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x70B4082F4e3F9067dB9A2aA7520C77719E8626EE", + "status": "active", + "id": "0x70B4082F4e3F9067dB9A2aA7520C77719E8626EE", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/franklin-focused-growth-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x70B4082F4e3F9067dB9A2aA7520C77719E8626EE/logo.png b/blockchains/ethereum/assets/0x70B4082F4e3F9067dB9A2aA7520C77719E8626EE/logo.png new file mode 100644 index 0000000000000..34299b5ba23f3 Binary files /dev/null and b/blockchains/ethereum/assets/0x70B4082F4e3F9067dB9A2aA7520C77719E8626EE/logo.png differ diff --git a/blockchains/ethereum/assets/0x70Ec0f5B23404C0cD6f29ce88f4af00A0b0d895D/info.json b/blockchains/ethereum/assets/0x70Ec0f5B23404C0cD6f29ce88f4af00A0b0d895D/info.json new file mode 100644 index 0000000000000..9cfe5c7a8bf9e --- /dev/null +++ b/blockchains/ethereum/assets/0x70Ec0f5B23404C0cD6f29ce88f4af00A0b0d895D/info.json @@ -0,0 +1,24 @@ +{ + "name": "Capricor Therapeutics (Ondo Tokenized)", + "type": "ERC20", + "symbol": "CAPRon", + "decimals": 18, + "description": "CAPRon is the Ondo Tokenized version of Capricor Therapeutics, giving tokenholders economic exposure similar to holding CAPR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x70Ec0f5B23404C0cD6f29ce88f4af00A0b0d895D", + "status": "active", + "id": "0x70Ec0f5B23404C0cD6f29ce88f4af00A0b0d895D", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/capricor-therapeutics-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x70Ec0f5B23404C0cD6f29ce88f4af00A0b0d895D/logo.png b/blockchains/ethereum/assets/0x70Ec0f5B23404C0cD6f29ce88f4af00A0b0d895D/logo.png new file mode 100644 index 0000000000000..6678ea0d457ae Binary files /dev/null and b/blockchains/ethereum/assets/0x70Ec0f5B23404C0cD6f29ce88f4af00A0b0d895D/logo.png differ diff --git a/blockchains/ethereum/assets/0x70c29e99cA32592C0E88bb571B87444Bb0e08e33/info.json b/blockchains/ethereum/assets/0x70c29e99cA32592C0E88bb571B87444Bb0e08e33/info.json new file mode 100644 index 0000000000000..9346d9708aa7a --- /dev/null +++ b/blockchains/ethereum/assets/0x70c29e99cA32592C0E88bb571B87444Bb0e08e33/info.json @@ -0,0 +1,17 @@ +{ + "name": "Martian Dog", + "type": "ERC20", + "symbol": "MARVIN", + "decimals": 9, + "website": "https://www.elonlovemarvin.com", + "description": "Stay tuned!", + "explorer": "https://etherscan.io/token/0x70c29e99ca32592c0e88bb571b87444bb0e08e33", + "status": "active", + "id": "0x70c29e99cA32592C0E88bb571B87444Bb0e08e33", + "links": [ + { + "name": "x", + "url": "https://x.com/ElonLoveMarvin" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x70c29e99cA32592C0E88bb571B87444Bb0e08e33/logo.png b/blockchains/ethereum/assets/0x70c29e99cA32592C0E88bb571B87444Bb0e08e33/logo.png new file mode 100644 index 0000000000000..4f8d2936b3b74 Binary files /dev/null and b/blockchains/ethereum/assets/0x70c29e99cA32592C0E88bb571B87444Bb0e08e33/logo.png differ diff --git a/blockchains/ethereum/assets/0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96/info.json b/blockchains/ethereum/assets/0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96/info.json index ce8033458da4b..e8900112ca79e 100644 --- a/blockchains/ethereum/assets/0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96/info.json +++ b/blockchains/ethereum/assets/0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/Xfers/StraitsX-tokens/" }, { - "name": "twitter", - "url": "https://twitter.com/StraitsX" + "name": "x", + "url": "https://x.com/StraitsX" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7118057ff0F4Fd0994fb9d2D94de8231d5cca79E/info.json b/blockchains/ethereum/assets/0x7118057ff0F4Fd0994fb9d2D94de8231d5cca79E/info.json index 0a114e980daab..3cb64972435a7 100644 --- a/blockchains/ethereum/assets/0x7118057ff0F4Fd0994fb9d2D94de8231d5cca79E/info.json +++ b/blockchains/ethereum/assets/0x7118057ff0F4Fd0994fb9d2D94de8231d5cca79E/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/ReSource_Fi" + "name": "x", + "url": "https://x.com/ReSource_Fi" }, { "name": "telegram", @@ -25,4 +25,4 @@ "url": "https://github.com/ReSource-Network/" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7121D00b4fA18F13Da6c2e30d19C04844E6AfDC8/info.json b/blockchains/ethereum/assets/0x7121D00b4fA18F13Da6c2e30d19C04844E6AfDC8/info.json index 530fc6718b283..63167052335a9 100644 --- a/blockchains/ethereum/assets/0x7121D00b4fA18F13Da6c2e30d19C04844E6AfDC8/info.json +++ b/blockchains/ethereum/assets/0x7121D00b4fA18F13Da6c2e30d19C04844E6AfDC8/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/luffyinutoken" + "name": "x", + "url": "https://x.com/luffyinutoken" }, { "name": "telegram", @@ -25,4 +25,4 @@ "url": "https://luffytoken.com/pdf/whitepaper.pdf" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x712bd4Beb54C6B958267d9dB0259abdBb0BFF606/info.json b/blockchains/ethereum/assets/0x712bd4Beb54C6B958267d9dB0259abdBb0BFF606/info.json new file mode 100644 index 0000000000000..fccff09db162e --- /dev/null +++ b/blockchains/ethereum/assets/0x712bd4Beb54C6B958267d9dB0259abdBb0BFF606/info.json @@ -0,0 +1,30 @@ +{ + "name": "Undeads Games", + "type": "ERC20", + "symbol": "UDS", + "decimals": 18, + "description": "Undeads Games has been established in early 2022 as a multi-genre gaming company aimed to bring feature-rich and exciting gameplay to the crypto space. The company is focused on building desktop, web and mobile games with play & earn, play & own, and play & win mechanics. As of March 2024, Undeads Games has released Undeads Rush survival racing game for desktop and mobile devices, and Undeads Viral for Web3 players.", + "website": "https://undeads.com/", + "explorer": "https://etherscan.io/token/0x712bd4beb54c6b958267d9db0259abdbb0bff606", + "id": "0x712bd4Beb54C6B958267d9dB0259abdBb0BFF606", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/undeadscom" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/undeads-games/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/undeads-games" + } + + ], + "tags": [ + "gamefi" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x712bd4Beb54C6B958267d9dB0259abdBb0BFF606/logo.png b/blockchains/ethereum/assets/0x712bd4Beb54C6B958267d9dB0259abdBb0BFF606/logo.png new file mode 100644 index 0000000000000..67bdf893a0a0a Binary files /dev/null and b/blockchains/ethereum/assets/0x712bd4Beb54C6B958267d9dB0259abdBb0BFF606/logo.png differ diff --git a/blockchains/ethereum/assets/0x718752741af8B19794AB79a558d42309d037457c/info.json b/blockchains/ethereum/assets/0x718752741af8B19794AB79a558d42309d037457c/info.json new file mode 100644 index 0000000000000..8e004cc4ef8e6 --- /dev/null +++ b/blockchains/ethereum/assets/0x718752741af8B19794AB79a558d42309d037457c/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether USD", + "type": "ERC20", + "symbol": "FAKE USDT", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://etherscan.io/token/0x718752741af8B19794AB79a558d42309d037457c", + "explorer": "https://etherscan.io/token/0x718752741af8B19794AB79a558d42309d037457c", + "status": "spam", + "id": "0x718752741af8B19794AB79a558d42309d037457c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x71Ab77b7dbB4fa7e017BC15090b2163221420282/info.json b/blockchains/ethereum/assets/0x71Ab77b7dbB4fa7e017BC15090b2163221420282/info.json index 506db12b14e69..2b088377a6340 100644 --- a/blockchains/ethereum/assets/0x71Ab77b7dbB4fa7e017BC15090b2163221420282/info.json +++ b/blockchains/ethereum/assets/0x71Ab77b7dbB4fa7e017BC15090b2163221420282/info.json @@ -14,8 +14,8 @@ "url": "https://medium.com/highstreet-market " }, { - "name": "twitter", - "url": "https://twitter.com/highstreetworld" + "name": "x", + "url": "https://x.com/highstreetworld" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0x71E2400CF1Cb83204f33794eD326636A71a9AAfC/info.json b/blockchains/ethereum/assets/0x71E2400CF1Cb83204f33794eD326636A71a9AAfC/info.json new file mode 100644 index 0000000000000..6c75131137785 --- /dev/null +++ b/blockchains/ethereum/assets/0x71E2400CF1Cb83204f33794eD326636A71a9AAfC/info.json @@ -0,0 +1,24 @@ +{ + "name": "SanDisk (Ondo Tokenized)", + "type": "ERC20", + "symbol": "SNDKon", + "decimals": 18, + "description": "SNDKon is the Ondo Tokenized version of SanDisk, giving tokenholders economic exposure similar to holding SNDK and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x71E2400CF1Cb83204f33794eD326636A71a9AAfC", + "status": "active", + "id": "0x71E2400CF1Cb83204f33794eD326636A71a9AAfC", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sandisk-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x71E2400CF1Cb83204f33794eD326636A71a9AAfC/logo.png b/blockchains/ethereum/assets/0x71E2400CF1Cb83204f33794eD326636A71a9AAfC/logo.png new file mode 100644 index 0000000000000..34101c9786cac Binary files /dev/null and b/blockchains/ethereum/assets/0x71E2400CF1Cb83204f33794eD326636A71a9AAfC/logo.png differ diff --git a/blockchains/ethereum/assets/0x71d24Baeb0A033ec5F90FF65C4210545AF378D97/info.json b/blockchains/ethereum/assets/0x71d24Baeb0A033ec5F90FF65C4210545AF378D97/info.json new file mode 100644 index 0000000000000..7c6fa6e97f9fa --- /dev/null +++ b/blockchains/ethereum/assets/0x71d24Baeb0A033ec5F90FF65C4210545AF378D97/info.json @@ -0,0 +1,24 @@ +{ + "name": "GameStop (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "GMEon is the Ondo Tokenized version of GameStop, giving tokenholders economic exposure similar to holding GME and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x71d24Baeb0A033ec5F90FF65C4210545AF378D97", + "type": "ERC20", + "symbol": "GMEon", + "decimals": 18, + "status": "active", + "id": "0x71d24Baeb0A033ec5F90FF65C4210545AF378D97", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gamestop-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x71d24Baeb0A033ec5F90FF65C4210545AF378D97/logo.png b/blockchains/ethereum/assets/0x71d24Baeb0A033ec5F90FF65C4210545AF378D97/logo.png new file mode 100644 index 0000000000000..e2e1397cdeac7 Binary files /dev/null and b/blockchains/ethereum/assets/0x71d24Baeb0A033ec5F90FF65C4210545AF378D97/logo.png differ diff --git a/blockchains/ethereum/assets/0x720CD16b011b987Da3518fbf38c3071d4F0D1495/info.json b/blockchains/ethereum/assets/0x720CD16b011b987Da3518fbf38c3071d4F0D1495/info.json index 0bbf54165b754..2e9ec673b84fe 100644 --- a/blockchains/ethereum/assets/0x720CD16b011b987Da3518fbf38c3071d4F0D1495/info.json +++ b/blockchains/ethereum/assets/0x720CD16b011b987Da3518fbf38c3071d4F0D1495/info.json @@ -10,8 +10,8 @@ "id": "0x720CD16b011b987Da3518fbf38c3071d4F0D1495", "links": [ { - "name": "twitter", - "url": "https://twitter.com/RunOnFlux" + "name": "x", + "url": "https://x.com/RunOnFlux" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0x725C263e32c72dDC3A19bEa12C5a0479a81eE688/info.json b/blockchains/ethereum/assets/0x725C263e32c72dDC3A19bEa12C5a0479a81eE688/info.json index 2b558430df343..fe0d3281e7dd3 100644 --- a/blockchains/ethereum/assets/0x725C263e32c72dDC3A19bEa12C5a0479a81eE688/info.json +++ b/blockchains/ethereum/assets/0x725C263e32c72dDC3A19bEa12C5a0479a81eE688/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/Bridge-Mutual" }, { - "name": "twitter", - "url": "https://twitter.com/Bridge_Mutual" + "name": "x", + "url": "https://x.com/Bridge_Mutual" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x728f30fa2f100742C7949D1961804FA8E0B1387d/info.json b/blockchains/ethereum/assets/0x728f30fa2f100742C7949D1961804FA8E0B1387d/info.json new file mode 100644 index 0000000000000..7bb6228406186 --- /dev/null +++ b/blockchains/ethereum/assets/0x728f30fa2f100742C7949D1961804FA8E0B1387d/info.json @@ -0,0 +1,21 @@ +{ + "name": "GamerCoin", + "type": "ERC20", + "symbol": "GHX", + "decimals": 18, + "website": "https://gamerhash.io/", + "description": "GamerCoin (GHX) is a token of GamerHash.com platform - aiming to be the last puzzle of the gaming ecosystem and fuel which makes 500.000+ users life easier. Keeping tokens in the wallet will bring many benefits & spending GHX in the Marketplace will open special offers.", + "explorer": "https://etherscan.io/token/0x728f30fa2f100742c7949d1961804fa8e0b1387d", + "status": "active", + "id": "0x728f30fa2f100742C7949D1961804FA8E0B1387d", + "links": [ + { + "name": "x", + "url": "https://x.com/GamerHashCom" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gamercoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x728f30fa2f100742C7949D1961804FA8E0B1387d/logo.png b/blockchains/ethereum/assets/0x728f30fa2f100742C7949D1961804FA8E0B1387d/logo.png new file mode 100644 index 0000000000000..d2a350d1b2cbc Binary files /dev/null and b/blockchains/ethereum/assets/0x728f30fa2f100742C7949D1961804FA8E0B1387d/logo.png differ diff --git a/blockchains/ethereum/assets/0x7296eaA225804451a91616b29D040cAB05435f0d/info.json b/blockchains/ethereum/assets/0x7296eaA225804451a91616b29D040cAB05435f0d/info.json new file mode 100644 index 0000000000000..bf03f68eec57b --- /dev/null +++ b/blockchains/ethereum/assets/0x7296eaA225804451a91616b29D040cAB05435f0d/info.json @@ -0,0 +1,25 @@ +{ + "name": "WAVES", + "type": "ERC20", + "symbol": "WAVES", + "decimals": 8, + "description": "Waves is a multi-purpose blockchain platform which supports various use cases including decentralized applications (DApps) and smart contracts.", + "website": "https://waves.tech/", + "explorer": "https://etherscan.io/token/0x7296eaa225804451a91616b29d040cab05435f0d", + "id": "0x7296eaA225804451a91616b29D040cAB05435f0d", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/wavesprotocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/waves/" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7296eaA225804451a91616b29D040cAB05435f0d/logo.png b/blockchains/ethereum/assets/0x7296eaA225804451a91616b29D040cAB05435f0d/logo.png new file mode 100644 index 0000000000000..3b74cc3196740 Binary files /dev/null and b/blockchains/ethereum/assets/0x7296eaA225804451a91616b29D040cAB05435f0d/logo.png differ diff --git a/blockchains/ethereum/assets/0x72B886d09C117654aB7dA13A14d603001dE0B777/info.json b/blockchains/ethereum/assets/0x72B886d09C117654aB7dA13A14d603001dE0B777/info.json index 3f5d29d257f76..7e24c6493c7fa 100644 --- a/blockchains/ethereum/assets/0x72B886d09C117654aB7dA13A14d603001dE0B777/info.json +++ b/blockchains/ethereum/assets/0x72B886d09C117654aB7dA13A14d603001dE0B777/info.json @@ -10,8 +10,8 @@ "id": "0x72B886d09C117654aB7dA13A14d603001dE0B777", "links": [ { - "name": "twitter", - "url": "https://twitter.com/xdefi_wallet" + "name": "x", + "url": "https://x.com/xdefi_wallet" }, { "name": "github", @@ -31,4 +31,4 @@ "defi", "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x72F020f8f3E8fd9382705723Cd26380f8D0c66Bb/info.json b/blockchains/ethereum/assets/0x72F020f8f3E8fd9382705723Cd26380f8D0c66Bb/info.json index f11bd4d6ccb85..e15b9cadec00a 100644 --- a/blockchains/ethereum/assets/0x72F020f8f3E8fd9382705723Cd26380f8D0c66Bb/info.json +++ b/blockchains/ethereum/assets/0x72F020f8f3E8fd9382705723Cd26380f8D0c66Bb/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/plotx" }, { - "name": "twitter", - "url": "https://twitter.com/TryPlotX" + "name": "x", + "url": "https://x.com/TryPlotX" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed/info.json b/blockchains/ethereum/assets/0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed/info.json new file mode 100644 index 0000000000000..962b47409b93f --- /dev/null +++ b/blockchains/ethereum/assets/0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed/info.json @@ -0,0 +1,29 @@ +{ + "name": "Shido", + "symbol": "SHIDO", + "type": "ERC20", + "decimals": 18, + "description": "Shido is an infinitely scalable Layer 1 in the interoperable Cosmos, powered by Tendermint Consensus, EVM and WebAssembly.", + "website": "https://shido.io/", + "explorer": "https://etherscan.io/token/0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed", + "status": "active", + "id": "0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed", + "links": [ + { + "name": "x", + "url": "https://x.com/ShidoGlobal" + }, + { + "name": "github", + "url": "https://github.com/ShidoGlobal" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shido-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/shido-2/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed/logo.png b/blockchains/ethereum/assets/0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed/logo.png new file mode 100644 index 0000000000000..c01f437dcf42c Binary files /dev/null and b/blockchains/ethereum/assets/0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed/logo.png differ diff --git a/blockchains/ethereum/assets/0x72e4f9F808C49A2a61dE9C5896298920Dc4EEEa9/info.json b/blockchains/ethereum/assets/0x72e4f9F808C49A2a61dE9C5896298920Dc4EEEa9/info.json new file mode 100644 index 0000000000000..9d9d7c9761515 --- /dev/null +++ b/blockchains/ethereum/assets/0x72e4f9F808C49A2a61dE9C5896298920Dc4EEEa9/info.json @@ -0,0 +1,25 @@ +{ + "name": "HarryPotterObamaSonic10Inu", + "type": "ERC20", + "symbol": "BITCOIN", + "decimals": 8, + "description": "HarryPotterObamaSonic10Inu (Ticker: BITCOIN) is a endgame of crypto-assets (0 Tax). BITCOIN incentivizes the creation of novel and entertaining meme content.", + "website": "https://hpos10i.com/", + "explorer": "https://etherscan.io/token/0x72e4f9F808C49A2a61dE9C5896298920Dc4EEEa9", + "id": "0x72e4f9F808C49A2a61dE9C5896298920Dc4EEEa9", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/RealHPOS10I" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/harrypotterobamasonic10inu-eth/" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x72e4f9F808C49A2a61dE9C5896298920Dc4EEEa9/logo.png b/blockchains/ethereum/assets/0x72e4f9F808C49A2a61dE9C5896298920Dc4EEEa9/logo.png new file mode 100644 index 0000000000000..74e9e96f03574 Binary files /dev/null and b/blockchains/ethereum/assets/0x72e4f9F808C49A2a61dE9C5896298920Dc4EEEa9/logo.png differ diff --git a/blockchains/ethereum/assets/0x72f713D11480DCF08b37E1898670e736688D218d/info.json b/blockchains/ethereum/assets/0x72f713D11480DCF08b37E1898670e736688D218d/info.json new file mode 100644 index 0000000000000..8e71b19924f82 --- /dev/null +++ b/blockchains/ethereum/assets/0x72f713D11480DCF08b37E1898670e736688D218d/info.json @@ -0,0 +1,17 @@ +{ + "name": "Nettensor", + "type": "ERC20", + "symbol": "NAO", + "decimals": 18, + "website": "https://nettensor.com/", + "description": "Nettensor aims to provide and enables AI Infrastructure on blockchain.", + "explorer": "https://etherscan.io/token/0x72f713D11480DCF08b37E1898670e736688D218d", + "status": "active", + "id": "0x72f713D11480DCF08b37E1898670e736688D218d", + "links": [ + { + "name": "x", + "url": "https://x.com/nettensor" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x72f713D11480DCF08b37E1898670e736688D218d/logo.png b/blockchains/ethereum/assets/0x72f713D11480DCF08b37E1898670e736688D218d/logo.png new file mode 100644 index 0000000000000..72336c1fbd9c9 Binary files /dev/null and b/blockchains/ethereum/assets/0x72f713D11480DCF08b37E1898670e736688D218d/logo.png differ diff --git a/blockchains/ethereum/assets/0x733Fd1B5Aa477d55070546922Ba1Bd3751C167C7/info.json b/blockchains/ethereum/assets/0x733Fd1B5Aa477d55070546922Ba1Bd3751C167C7/info.json new file mode 100644 index 0000000000000..b2afe7e6890cc --- /dev/null +++ b/blockchains/ethereum/assets/0x733Fd1B5Aa477d55070546922Ba1Bd3751C167C7/info.json @@ -0,0 +1,21 @@ +{ + "name": "ZKGPT", + "type": "ERC20", + "symbol": "ZKGPT", + "decimals": 18, + "website": "https://info.zkgpt.io/", + "description": "ZKGPT is a Web3 platform that combines AI-based analytics with real-time blockchain data. It provides wallet tracking, contract insights, and educational tools to help users navigate decentralized finance more confidently, all while prioritizing ease of use and security.", + "explorer": "https://etherscan.io/token/0x733Fd1B5Aa477d55070546922Ba1Bd3751C167C7", + "status": "active", + "id": "0x733Fd1B5Aa477d55070546922Ba1Bd3751C167C7", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zkgpt/" + }, + { + "name": "x", + "url": "https://x.com/zkgptio" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x733Fd1B5Aa477d55070546922Ba1Bd3751C167C7/logo.png b/blockchains/ethereum/assets/0x733Fd1B5Aa477d55070546922Ba1Bd3751C167C7/logo.png new file mode 100644 index 0000000000000..a1310c0656045 Binary files /dev/null and b/blockchains/ethereum/assets/0x733Fd1B5Aa477d55070546922Ba1Bd3751C167C7/logo.png differ diff --git a/blockchains/ethereum/assets/0x73A15FeD60Bf67631dC6cd7Bc5B6e8da8190aCF5/info.json b/blockchains/ethereum/assets/0x73A15FeD60Bf67631dC6cd7Bc5B6e8da8190aCF5/info.json new file mode 100644 index 0000000000000..a63b6e38f8ea5 --- /dev/null +++ b/blockchains/ethereum/assets/0x73A15FeD60Bf67631dC6cd7Bc5B6e8da8190aCF5/info.json @@ -0,0 +1,29 @@ +{ + "name": "Usual USD", + "type": "ERC20", + "symbol": "USD0", + "decimals": 18, + "description": "USD0 is a stablecoin fully backed 1:1 by Real-World Assets (RWA) like US Treasury Bills. It provides users with a stable, secure asset that is independent of traditional banking systems, fully transferable, and accessible within the DeFi ecosystem. As the core stability asset of Usual, USD0 supports transparency and security by maintaining real-time reserves, offering a non-fractional, reliable alternative to stablecoins like USDT and USDC.", + "website": "https://usual.money/", + "explorer": "https://etherscan.io/token/0x73a15fed60bf67631dc6cd7bc5b6e8da8190acf5", + "id": "0x73A15FeD60Bf67631dC6cd7Bc5B6e8da8190aCF5", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/usualmoney" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usual-usd/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usual-usd" + } + ], + "tags": [ + "Stablecoin" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x73A15FeD60Bf67631dC6cd7Bc5B6e8da8190aCF5/logo.png b/blockchains/ethereum/assets/0x73A15FeD60Bf67631dC6cd7Bc5B6e8da8190aCF5/logo.png new file mode 100644 index 0000000000000..0b9515dbc1750 Binary files /dev/null and b/blockchains/ethereum/assets/0x73A15FeD60Bf67631dC6cd7Bc5B6e8da8190aCF5/logo.png differ diff --git a/blockchains/ethereum/assets/0x73d2ccEE12C120E7DA265a2dE9d9f952a0101b4f/info.json b/blockchains/ethereum/assets/0x73d2ccEE12C120E7DA265a2dE9d9f952a0101b4f/info.json new file mode 100644 index 0000000000000..86389b5afe6de --- /dev/null +++ b/blockchains/ethereum/assets/0x73d2ccEE12C120E7DA265a2dE9d9f952a0101b4f/info.json @@ -0,0 +1,24 @@ +{ + "name": "Equinix (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "EQIXon is the Ondo Tokenized version of Equinix, giving tokenholders economic exposure similar to holding EQIX and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x73d2ccEE12C120E7DA265a2dE9d9f952a0101b4f", + "type": "ERC20", + "symbol": "EQIXon", + "decimals": 18, + "status": "active", + "id": "0x73d2ccEE12C120E7DA265a2dE9d9f952a0101b4f", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/equinix-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x73d2ccEE12C120E7DA265a2dE9d9f952a0101b4f/logo.png b/blockchains/ethereum/assets/0x73d2ccEE12C120E7DA265a2dE9d9f952a0101b4f/logo.png new file mode 100644 index 0000000000000..e43feccb155c0 Binary files /dev/null and b/blockchains/ethereum/assets/0x73d2ccEE12C120E7DA265a2dE9d9f952a0101b4f/logo.png differ diff --git a/blockchains/ethereum/assets/0x73d7c860998CA3c01Ce8c808F5577d94d545d1b4/info.json b/blockchains/ethereum/assets/0x73d7c860998CA3c01Ce8c808F5577d94d545d1b4/info.json new file mode 100644 index 0000000000000..473af98fe28e2 --- /dev/null +++ b/blockchains/ethereum/assets/0x73d7c860998CA3c01Ce8c808F5577d94d545d1b4/info.json @@ -0,0 +1,21 @@ +{ + "name": "Ixs", + "website": "https://ixswap.io/", + "description": "IX Swap is the “Uniswap” for security tokens (STO) and tokenized stocks (TSO). IX Swap will be the FIRST platform to provide liquidity pools and automated market making functions for the security token (STO) & tokenized stock industry (TSO).", + "explorer": "https://etherscan.io/token/0x73d7c860998ca3c01ce8c808f5577d94d545d1b4", + "type": "ERC20", + "symbol": "IXS", + "decimals": 18, + "status": "active", + "id": "0x73d7c860998CA3c01Ce8c808F5577d94d545d1b4", + "links": [ + { + "name": "github", + "url": "https://github.com/IX-Swap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ix-swap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x73d7c860998CA3c01Ce8c808F5577d94d545d1b4/logo.png b/blockchains/ethereum/assets/0x73d7c860998CA3c01Ce8c808F5577d94d545d1b4/logo.png new file mode 100644 index 0000000000000..cd5ca43626308 Binary files /dev/null and b/blockchains/ethereum/assets/0x73d7c860998CA3c01Ce8c808F5577d94d545d1b4/logo.png differ diff --git a/blockchains/ethereum/assets/0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD/info.json b/blockchains/ethereum/assets/0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD/info.json new file mode 100644 index 0000000000000..a92f8b36826a1 --- /dev/null +++ b/blockchains/ethereum/assets/0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD/info.json @@ -0,0 +1,25 @@ +{ + "name": "Maverick Protocol", + "website": "https://www.mav.xyz/", + "description": "Maverick Protocol offers a new infrastructure for decentralized finance, built to facilitate the most liquid markets for traders, liquidity providers, DAO treasuries, and developers, powered by a revolutionary Dynamic Distribution Automated Market Maker (AMM).", + "explorer": "https://etherscan.io/token/0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD", + "type": "ERC20", + "symbol": "MAV", + "decimals": 18, + "status": "active", + "id": "0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD", + "links": [ + { + "name": "x", + "url": "https://x.com/mavprotocol" + }, + { + "name": "telegram", + "url": "https://t.me/maverickprotocolofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/maverick-protocol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD/logo.png b/blockchains/ethereum/assets/0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD/logo.png new file mode 100644 index 0000000000000..f21e40bef2273 Binary files /dev/null and b/blockchains/ethereum/assets/0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD/logo.png differ diff --git a/blockchains/ethereum/assets/0x744d70FDBE2Ba4CF95131626614a1763DF805B9E/info.json b/blockchains/ethereum/assets/0x744d70FDBE2Ba4CF95131626614a1763DF805B9E/info.json index 0e11feeb9d239..f28fc05f095c2 100644 --- a/blockchains/ethereum/assets/0x744d70FDBE2Ba4CF95131626614a1763DF805B9E/info.json +++ b/blockchains/ethereum/assets/0x744d70FDBE2Ba4CF95131626614a1763DF805B9E/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/status-im" }, { - "name": "twitter", - "url": "https://twitter.com/ethstatus" + "name": "x", + "url": "https://x.com/ethstatus" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0x745407c86DF8DB893011912d3aB28e68B62E49B0/info.json b/blockchains/ethereum/assets/0x745407c86DF8DB893011912d3aB28e68B62E49B0/info.json index 122bb11292012..8738e15f464bd 100644 --- a/blockchains/ethereum/assets/0x745407c86DF8DB893011912d3aB28e68B62E49B0/info.json +++ b/blockchains/ethereum/assets/0x745407c86DF8DB893011912d3aB28e68B62E49B0/info.json @@ -10,8 +10,8 @@ "id": "0x745407c86DF8DB893011912d3aB28e68B62E49B0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TheMahaDAO" + "name": "x", + "url": "https://x.com/TheMahaDAO" }, { "name": "telegram", @@ -27,4 +27,4 @@ "governance", "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x74C8f41f57948Bfd8aa0D48C882d69d12d1Cc579/info.json b/blockchains/ethereum/assets/0x74C8f41f57948Bfd8aa0D48C882d69d12d1Cc579/info.json new file mode 100644 index 0000000000000..4d9a914a8fd93 --- /dev/null +++ b/blockchains/ethereum/assets/0x74C8f41f57948Bfd8aa0D48C882d69d12d1Cc579/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares MSCI Chile ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "ECHon", + "decimals": 18, + "description": "ECHon is the Ondo Tokenized version of the iShares MSCI Chile ETF, giving tokenholders economic exposure similar to holding ECH and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x74C8f41f57948Bfd8aa0D48C882d69d12d1Cc579", + "status": "active", + "id": "0x74C8f41f57948Bfd8aa0D48C882d69d12d1Cc579", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-msci-chile-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x74C8f41f57948Bfd8aa0D48C882d69d12d1Cc579/logo.png b/blockchains/ethereum/assets/0x74C8f41f57948Bfd8aa0D48C882d69d12d1Cc579/logo.png new file mode 100644 index 0000000000000..2ce033b091a15 Binary files /dev/null and b/blockchains/ethereum/assets/0x74C8f41f57948Bfd8aa0D48C882d69d12d1Cc579/logo.png differ diff --git a/blockchains/ethereum/assets/0x74a03d741226f738098C35da8188E57acA50d146/info.json b/blockchains/ethereum/assets/0x74a03d741226f738098C35da8188E57acA50d146/info.json new file mode 100644 index 0000000000000..e134b1a51624a --- /dev/null +++ b/blockchains/ethereum/assets/0x74a03d741226f738098C35da8188E57acA50d146/info.json @@ -0,0 +1,24 @@ +{ + "name": "Coca-Cola (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "KOon is the Ondo Tokenized version of Coca-Cola, giving tokenholders economic exposure similar to holding KO and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x74a03d741226f738098C35da8188E57acA50d146", + "type": "ERC20", + "symbol": "KOon", + "decimals": 18, + "status": "active", + "id": "0x74a03d741226f738098C35da8188E57acA50d146", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coca-cola-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x74a03d741226f738098C35da8188E57acA50d146/logo.png b/blockchains/ethereum/assets/0x74a03d741226f738098C35da8188E57acA50d146/logo.png new file mode 100644 index 0000000000000..ab95141265f62 Binary files /dev/null and b/blockchains/ethereum/assets/0x74a03d741226f738098C35da8188E57acA50d146/logo.png differ diff --git a/blockchains/ethereum/assets/0x75231F58b43240C9718Dd58B4967c5114342a86c/info.json b/blockchains/ethereum/assets/0x75231F58b43240C9718Dd58B4967c5114342a86c/info.json index 9bba68a78c83f..8d691335f779e 100644 --- a/blockchains/ethereum/assets/0x75231F58b43240C9718Dd58B4967c5114342a86c/info.json +++ b/blockchains/ethereum/assets/0x75231F58b43240C9718Dd58B4967c5114342a86c/info.json @@ -14,8 +14,8 @@ "url": "https://medium.com/okex-blog" }, { - "name": "twitter", - "url": "https://twitter.com/okex_" + "name": "x", + "url": "https://x.com/okex_" }, { "name": "facebook", diff --git a/blockchains/ethereum/assets/0x755f34709E369D37C6Fa52808aE84A32007d1155/info.json b/blockchains/ethereum/assets/0x755f34709E369D37C6Fa52808aE84A32007d1155/info.json new file mode 100644 index 0000000000000..7b780e35cc85d --- /dev/null +++ b/blockchains/ethereum/assets/0x755f34709E369D37C6Fa52808aE84A32007d1155/info.json @@ -0,0 +1,25 @@ +{ + "name": "Nabox Token", + "symbol": "NABOX", + "type": "ERC20", + "decimals": 18, + "description": "Nabox aims to allow users to utilize their digital assets across chains at the click of a button.", + "website": "https://nabox.io/", + "explorer": "https://etherscan.io/token/0x755f34709E369D37C6Fa52808aE84A32007d1155", + "status": "active", + "id": "0x755f34709E369D37C6Fa52808aE84A32007d1155", + "links": [ + { + "name": "telegram", + "url": "https://t.me/naboxcommunity" + }, + { + "name": "x", + "url": "https://x.com/naboxwallet" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nabox/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x755f34709E369D37C6Fa52808aE84A32007d1155/logo.png b/blockchains/ethereum/assets/0x755f34709E369D37C6Fa52808aE84A32007d1155/logo.png new file mode 100644 index 0000000000000..ee3475dce8027 Binary files /dev/null and b/blockchains/ethereum/assets/0x755f34709E369D37C6Fa52808aE84A32007d1155/logo.png differ diff --git a/blockchains/ethereum/assets/0x75739d5944534115d7C54ee8C73F186D793BAE02/info.json b/blockchains/ethereum/assets/0x75739d5944534115d7C54ee8C73F186D793BAE02/info.json index 4f7882687ee75..6494573095a0c 100644 --- a/blockchains/ethereum/assets/0x75739d5944534115d7C54ee8C73F186D793BAE02/info.json +++ b/blockchains/ethereum/assets/0x75739d5944534115d7C54ee8C73F186D793BAE02/info.json @@ -10,8 +10,8 @@ "id": "0x75739d5944534115d7C54ee8C73F186D793BAE02", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TheCollectiveGo" + "name": "x", + "url": "https://x.com/TheCollectiveGo" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x757ea444aE819413D68e6ccbD464e580d6E9f19F/info.json b/blockchains/ethereum/assets/0x757ea444aE819413D68e6ccbD464e580d6E9f19F/info.json new file mode 100644 index 0000000000000..0d2f052dc7308 --- /dev/null +++ b/blockchains/ethereum/assets/0x757ea444aE819413D68e6ccbD464e580d6E9f19F/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE WBAI", + "symbol": "FAKE WBAI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://etherscan.io/token/0x757ea444aE819413D68e6ccbD464e580d6E9f19F", + "explorer": "https://etherscan.io/token/0x757ea444aE819413D68e6ccbD464e580d6E9f19F", + "status": "spam", + "id": "0x757ea444aE819413D68e6ccbD464e580d6E9f19F" +} diff --git a/blockchains/ethereum/assets/0x75846A2b2Eeee6575Ac775f9984be54fd1D08189/info.json b/blockchains/ethereum/assets/0x75846A2b2Eeee6575Ac775f9984be54fd1D08189/info.json new file mode 100644 index 0000000000000..512f3f1e47f9a --- /dev/null +++ b/blockchains/ethereum/assets/0x75846A2b2Eeee6575Ac775f9984be54fd1D08189/info.json @@ -0,0 +1,28 @@ +{ + "name": "MP Materials (Ondo Tokenized)", + "type": "ERC20", + "symbol": "MPon", + "decimals": 18, + "description": "MPon is the Ondo Tokenized version of MP Materials, giving tokenholders economic exposure similar to holding MP and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x75846A2b2Eeee6575Ac775f9984be54fd1D08189", + "status": "active", + "id": "0x75846A2b2Eeee6575Ac775f9984be54fd1D08189", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mp-materials-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mp-materials-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x75846A2b2Eeee6575Ac775f9984be54fd1D08189/logo.png b/blockchains/ethereum/assets/0x75846A2b2Eeee6575Ac775f9984be54fd1D08189/logo.png new file mode 100644 index 0000000000000..283632c076568 Binary files /dev/null and b/blockchains/ethereum/assets/0x75846A2b2Eeee6575Ac775f9984be54fd1D08189/logo.png differ diff --git a/blockchains/ethereum/assets/0x766a824314BD1D9FA27C8461754C276772BC666A/info.json b/blockchains/ethereum/assets/0x766a824314BD1D9FA27C8461754C276772BC666A/info.json new file mode 100644 index 0000000000000..40a8e021568a8 --- /dev/null +++ b/blockchains/ethereum/assets/0x766a824314BD1D9FA27C8461754C276772BC666A/info.json @@ -0,0 +1,21 @@ +{ + "name": "SCAM", + "website": "http://scamcoin.io", + "description": "SCAM is a revolutionary much needed movement in the blockchain industry. We aim to expose fraudulent behavior and raise awareness of scamming activities.", + "explorer": "https://etherscan.io/token/0x766a824314BD1D9FA27C8461754C276772BC666A", + "type": "ERC20", + "symbol": "SCAM", + "decimals": 18, + "status": "active", + "id": "0x766a824314BD1D9FA27C8461754C276772BC666A", + "links": [ + { + "name": "x", + "url": "https://x.com/scamcoin_eth" + }, + { + "name": "telegram", + "url": "https://t.me/SCAMCOIN_ETH" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x766a824314BD1D9FA27C8461754C276772BC666A/logo.png b/blockchains/ethereum/assets/0x766a824314BD1D9FA27C8461754C276772BC666A/logo.png new file mode 100644 index 0000000000000..3599f8faa7e43 Binary files /dev/null and b/blockchains/ethereum/assets/0x766a824314BD1D9FA27C8461754C276772BC666A/logo.png differ diff --git a/blockchains/ethereum/assets/0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9/info.json b/blockchains/ethereum/assets/0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9/info.json new file mode 100644 index 0000000000000..62422d6cf1450 --- /dev/null +++ b/blockchains/ethereum/assets/0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9/info.json @@ -0,0 +1,24 @@ +{ + "name": "Home Depot tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Home Depot xStock (HDx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. HDx tracks the price of The Home Depot, Inc. (the underlying). HDx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of The Home Depot, Inc., whilst maintaining the benefits of blockchain technology. The Home Depot is a publicly traded home improvement retailer that operates over 2,300 stores across the United States, Canada, and Mexico.", + "explorer": "https://etherscan.io/token/0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9", + "type": "ERC20", + "symbol": "HDX", + "decimals": 18, + "status": "active", + "id": "0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/home-depot-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9/logo.png b/blockchains/ethereum/assets/0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9/logo.png new file mode 100644 index 0000000000000..a49ae723a2836 Binary files /dev/null and b/blockchains/ethereum/assets/0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9/logo.png differ diff --git a/blockchains/ethereum/assets/0x76A034e76Aa835363056dd418611E4f81870f16e/info.json b/blockchains/ethereum/assets/0x76A034e76Aa835363056dd418611E4f81870f16e/info.json index dd896d1a57f53..0411cc69e6b45 100644 --- a/blockchains/ethereum/assets/0x76A034e76Aa835363056dd418611E4f81870f16e/info.json +++ b/blockchains/ethereum/assets/0x76A034e76Aa835363056dd418611E4f81870f16e/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/valuedefi" }, { - "name": "twitter", - "url": "https://twitter.com/value_defi" + "name": "x", + "url": "https://x.com/value_defi" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x76A0e27618462bDAC7a29104bdcfFf4E6BFCea2D/info.json b/blockchains/ethereum/assets/0x76A0e27618462bDAC7a29104bdcfFf4E6BFCea2D/info.json new file mode 100644 index 0000000000000..29c31cb7df872 --- /dev/null +++ b/blockchains/ethereum/assets/0x76A0e27618462bDAC7a29104bdcfFf4E6BFCea2D/info.json @@ -0,0 +1,30 @@ +{ + "name": "SoSoValue", + "type": "ERC20", + "symbol": "SOSO", + "decimals": 18, + "description": "SoSoValue is an AI-powered research and investment platform designed to enhance efficiency and accessibility of the crypto market. It provides users with advanced market insights, an AI-driven investment decision assistant, and a seamless ecosystem for investing in SoSoValue Indexes(SSI).", + "website": "https://sosovalue.com/", + "explorer": "https://etherscan.io/token/0x76A0e27618462bDAC7a29104bdcfFf4E6BFCea2D", + "id": "0x76A0e27618462bDAC7a29104bdcfFf4E6BFCea2D", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/SoSoValueCrypto" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sosovalue/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sosovalue" + } + + ], + "tags": [ + "DeFi" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x76A0e27618462bDAC7a29104bdcfFf4E6BFCea2D/logo.png b/blockchains/ethereum/assets/0x76A0e27618462bDAC7a29104bdcfFf4E6BFCea2D/logo.png new file mode 100644 index 0000000000000..25982bb7240c9 Binary files /dev/null and b/blockchains/ethereum/assets/0x76A0e27618462bDAC7a29104bdcfFf4E6BFCea2D/logo.png differ diff --git a/blockchains/ethereum/assets/0x76BC677d444f1E9d57dAf5187ee2b7dC852745aE/info.json b/blockchains/ethereum/assets/0x76BC677d444f1E9d57dAf5187ee2b7dC852745aE/info.json index 2968ee118c3e2..5dc25009b7d67 100644 --- a/blockchains/ethereum/assets/0x76BC677d444f1E9d57dAf5187ee2b7dC852745aE/info.json +++ b/blockchains/ethereum/assets/0x76BC677d444f1E9d57dAf5187ee2b7dC852745aE/info.json @@ -10,8 +10,8 @@ "id": "0x76BC677d444f1E9d57dAf5187ee2b7dC852745aE", "links": [ { - "name": "twitter", - "url": "https://twitter.com/OffshiftXFT" + "name": "x", + "url": "https://x.com/OffshiftXFT" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0x76e222b07C53D28b89b0bAc18602810Fc22B49A8/info.json b/blockchains/ethereum/assets/0x76e222b07C53D28b89b0bAc18602810Fc22B49A8/info.json new file mode 100644 index 0000000000000..1df5bb106360a --- /dev/null +++ b/blockchains/ethereum/assets/0x76e222b07C53D28b89b0bAc18602810Fc22B49A8/info.json @@ -0,0 +1,21 @@ +{ + "name": "Joe Coin", + "website": "https://www.thejoecoin.com/", + "description": "Joe Coin is a meme coin.", + "explorer": "https://etherscan.io/token/0x76e222b07c53d28b89b0bac18602810fc22b49a8", + "type": "ERC20", + "symbol": "JOE", + "decimals": 18, + "status": "active", + "id": "0x76e222b07C53D28b89b0bAc18602810Fc22B49A8", + "links": [ + { + "name": "x", + "url": "https://x.com/joecoin_" + }, + { + "name": "telegram", + "url": "https://t.me/joecoinportal" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x76e222b07C53D28b89b0bAc18602810Fc22B49A8/logo.png b/blockchains/ethereum/assets/0x76e222b07C53D28b89b0bAc18602810Fc22B49A8/logo.png new file mode 100644 index 0000000000000..078390225ed38 Binary files /dev/null and b/blockchains/ethereum/assets/0x76e222b07C53D28b89b0bAc18602810Fc22B49A8/logo.png differ diff --git a/blockchains/ethereum/assets/0x776CA7dEd9474829ea20AD4a5Ab7a6fFdB64C796/info.json b/blockchains/ethereum/assets/0x776CA7dEd9474829ea20AD4a5Ab7a6fFdB64C796/info.json index 5784823070705..0f70fe54030a4 100644 --- a/blockchains/ethereum/assets/0x776CA7dEd9474829ea20AD4a5Ab7a6fFdB64C796/info.json +++ b/blockchains/ethereum/assets/0x776CA7dEd9474829ea20AD4a5Ab7a6fFdB64C796/info.json @@ -10,8 +10,8 @@ "id": "0x776CA7dEd9474829ea20AD4a5Ab7a6fFdB64C796", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TenSpeedFinance" + "name": "x", + "url": "https://x.com/TenSpeedFinance" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x7777770f8A6632ff043c8833310e245EBa9209E6/info.json b/blockchains/ethereum/assets/0x7777770f8A6632ff043c8833310e245EBa9209E6/info.json index fcf03ff2bd0fc..bc13c505e88f1 100644 --- a/blockchains/ethereum/assets/0x7777770f8A6632ff043c8833310e245EBa9209E6/info.json +++ b/blockchains/ethereum/assets/0x7777770f8A6632ff043c8833310e245EBa9209E6/info.json @@ -24,7 +24,7 @@ "reddit": "", "slack": "", "telegram": "https://t.me/antiample_official", - "twitter": "https://twitter.com/burn_the_state", + "x": "https://x.com/burn_the_state", "youtube": "" }, "status": "active", diff --git a/blockchains/ethereum/assets/0x77777FeDdddFfC19Ff86DB637967013e6C6A116C/info.json b/blockchains/ethereum/assets/0x77777FeDdddFfC19Ff86DB637967013e6C6A116C/info.json index 0c9069fc5155a..bf7179c466c15 100644 --- a/blockchains/ethereum/assets/0x77777FeDdddFfC19Ff86DB637967013e6C6A116C/info.json +++ b/blockchains/ethereum/assets/0x77777FeDdddFfC19Ff86DB637967013e6C6A116C/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/tornadocash" }, { - "name": "twitter", - "url": "https://twitter.com/TornadoCash" + "name": "x", + "url": "https://x.com/TornadoCash" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x777E2ae845272a2F540ebf6a3D03734A5a8f618e/info.json b/blockchains/ethereum/assets/0x777E2ae845272a2F540ebf6a3D03734A5a8f618e/info.json index 68dcede0ee598..6c4faeb2ac311 100644 --- a/blockchains/ethereum/assets/0x777E2ae845272a2F540ebf6a3D03734A5a8f618e/info.json +++ b/blockchains/ethereum/assets/0x777E2ae845272a2F540ebf6a3D03734A5a8f618e/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/RyoshisVision" }, { - "name": "twitter", - "url": "https://twitter.com/RyoshisVision" + "name": "x", + "url": "https://x.com/RyoshisVision" }, { "name": "blog", diff --git a/blockchains/ethereum/assets/0x77A1a02e4a888ADA8620b93C30dE8a41E621126c/info.json b/blockchains/ethereum/assets/0x77A1a02e4a888ADA8620b93C30dE8a41E621126c/info.json new file mode 100644 index 0000000000000..9b80b58aff2f0 --- /dev/null +++ b/blockchains/ethereum/assets/0x77A1a02e4a888ADA8620b93C30dE8a41E621126c/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares MSCI Emerging Markets ETF (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "EEMon is the Ondo Tokenized version of the iShares MSCI Emerging Markets ETF, giving tokenholders economic exposure similar to holding EEM and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x77A1a02e4a888ADA8620b93C30dE8a41E621126c", + "type": "ERC20", + "symbol": "EEMon", + "decimals": 18, + "status": "active", + "id": "0x77A1a02e4a888ADA8620b93C30dE8a41E621126c", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-msci-emerging-markets-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x77A1a02e4a888ADA8620b93C30dE8a41E621126c/logo.png b/blockchains/ethereum/assets/0x77A1a02e4a888ADA8620b93C30dE8a41E621126c/logo.png new file mode 100644 index 0000000000000..8adf578853fa6 Binary files /dev/null and b/blockchains/ethereum/assets/0x77A1a02e4a888ADA8620b93C30dE8a41E621126c/logo.png differ diff --git a/blockchains/ethereum/assets/0x77FbA179C79De5B7653F68b5039Af940AdA60ce0/info.json b/blockchains/ethereum/assets/0x77FbA179C79De5B7653F68b5039Af940AdA60ce0/info.json index 80d0d740e9f79..ae3a9e5867217 100644 --- a/blockchains/ethereum/assets/0x77FbA179C79De5B7653F68b5039Af940AdA60ce0/info.json +++ b/blockchains/ethereum/assets/0x77FbA179C79De5B7653F68b5039Af940AdA60ce0/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/ampleforth" }, { - "name": "twitter", - "url": "https://twitter.com/AmpleforthOrg" + "name": "x", + "url": "https://x.com/AmpleforthOrg" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0x7825e833D495F3d1c28872415a4aee339D26AC88/info.json b/blockchains/ethereum/assets/0x7825e833D495F3d1c28872415a4aee339D26AC88/info.json index 6683e36246647..2086c306af0f5 100644 --- a/blockchains/ethereum/assets/0x7825e833D495F3d1c28872415a4aee339D26AC88/info.json +++ b/blockchains/ethereum/assets/0x7825e833D495F3d1c28872415a4aee339D26AC88/info.json @@ -10,8 +10,8 @@ "id": "0x7825e833D495F3d1c28872415a4aee339D26AC88", "links": [ { - "name": "twitter", - "url": "https://twitter.com/pNetworkDeFi" + "name": "x", + "url": "https://x.com/pNetworkDeFi" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0x786A6743efe9500011C92c7D8540608a62382b6f/info.json b/blockchains/ethereum/assets/0x786A6743efe9500011C92c7D8540608a62382b6f/info.json new file mode 100644 index 0000000000000..a8e0a2f18ea2e --- /dev/null +++ b/blockchains/ethereum/assets/0x786A6743efe9500011C92c7D8540608a62382b6f/info.json @@ -0,0 +1,25 @@ +{ + "name": "Altura", + "type": "ERC20", + "symbol": "ALU", + "decimals": 18, + "description": "Altura is revolutionizing the gaming industry by making it easy to build, scale, and monetize Web3 and AI-powered games. By combining blockchain technology with cutting-edge artificial intelligence, Altura enables developers to create immersive gaming experiences with intelligent non-player characters (NPCs) and dynamic in-game assets.", + "website": "https://altura.com/", + "explorer": "https://etherscan.io/token/0x786A6743efe9500011C92c7D8540608a62382b6f", + "id": "0x786A6743efe9500011C92c7D8540608a62382b6f", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Altura" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/altura/" + } + ], + "tags": [ + "gamefi" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x786A6743efe9500011C92c7D8540608a62382b6f/logo.png b/blockchains/ethereum/assets/0x786A6743efe9500011C92c7D8540608a62382b6f/logo.png new file mode 100644 index 0000000000000..56395e482d306 Binary files /dev/null and b/blockchains/ethereum/assets/0x786A6743efe9500011C92c7D8540608a62382b6f/logo.png differ diff --git a/blockchains/ethereum/assets/0x78a3B2f1e7eec1073088ea4a193618743F81cEf8/info.json b/blockchains/ethereum/assets/0x78a3B2f1e7eec1073088ea4a193618743F81cEf8/info.json index 2e699667cd07e..3da2a2785e11a 100644 --- a/blockchains/ethereum/assets/0x78a3B2f1e7eec1073088ea4a193618743F81cEf8/info.json +++ b/blockchains/ethereum/assets/0x78a3B2f1e7eec1073088ea4a193618743F81cEf8/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/ichifarm/ichi-oneToken" }, { - "name": "twitter", - "url": "https://twitter.com/ichifarm" + "name": "x", + "url": "https://x.com/ichifarm" }, { "name": "telegram", @@ -33,4 +33,4 @@ "url": "https://discord.com/invite/DvsYCfK8" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x799ebfABE77a6E34311eeEe9825190B9ECe32824/info.json b/blockchains/ethereum/assets/0x799ebfABE77a6E34311eeEe9825190B9ECe32824/info.json index a65131d2734e8..eeeebf9f54288 100644 --- a/blockchains/ethereum/assets/0x799ebfABE77a6E34311eeEe9825190B9ECe32824/info.json +++ b/blockchains/ethereum/assets/0x799ebfABE77a6E34311eeEe9825190B9ECe32824/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/usebraintrust" + "name": "x", + "url": "https://x.com/usebraintrust" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x79C7EF95aD32DcD5ECadB231568Bb03dF7824815/info.json b/blockchains/ethereum/assets/0x79C7EF95aD32DcD5ECadB231568Bb03dF7824815/info.json index 177db96a6a020..2b6629b33de2b 100644 --- a/blockchains/ethereum/assets/0x79C7EF95aD32DcD5ECadB231568Bb03dF7824815/info.json +++ b/blockchains/ethereum/assets/0x79C7EF95aD32DcD5ECadB231568Bb03dF7824815/info.json @@ -10,8 +10,8 @@ "id": "0x79C7EF95aD32DcD5ECadB231568Bb03dF7824815", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ArivaCoin" + "name": "x", + "url": "https://x.com/ArivaCoin" }, { "name": "github", @@ -49,4 +49,4 @@ "tags": [ "defi" ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x79F05c263055BA20EE0e814ACD117C20CAA10e0c/info.json b/blockchains/ethereum/assets/0x79F05c263055BA20EE0e814ACD117C20CAA10e0c/info.json new file mode 100644 index 0000000000000..d3f167e1e7efc --- /dev/null +++ b/blockchains/ethereum/assets/0x79F05c263055BA20EE0e814ACD117C20CAA10e0c/info.json @@ -0,0 +1,34 @@ +{ + "name": "ICE Token", + "website": "https://ice.io", + "description": "Ice represents the next generation of digital currency, mineable on any mobile device. At its core, Ice Network fosters a trusted community, proliferating the belief that digital currencies can maintain value across diverse use cases. Membership is initiated through invitations, enabling new users to earn and build micro-communities immediately.", + "explorer": "https://etherscan.io/token/0x79F05c263055BA20EE0e814ACD117C20CAA10e0c", + "type": "ERC20", + "symbol": "ICE", + "decimals": 18, + "status": "active", + "id": "0x79F05c263055BA20EE0e814ACD117C20CAA10e0c", + "links": [ + { + "name": "github", + "url": "https://github.com/ice-blockchain" + }, + { + "name": "x", + "url": "https://x.com/ice_blockchain" + }, + { + "name": "telegram", + "url": "https://t.me/iceblockchain" + }, + { + "name": "whitepaper", + "url": "https://ice.io/whitepaper" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/iceblockchain" + } + ], + "tags": [] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x79F05c263055BA20EE0e814ACD117C20CAA10e0c/logo.png b/blockchains/ethereum/assets/0x79F05c263055BA20EE0e814ACD117C20CAA10e0c/logo.png new file mode 100644 index 0000000000000..985650b0545c0 Binary files /dev/null and b/blockchains/ethereum/assets/0x79F05c263055BA20EE0e814ACD117C20CAA10e0c/logo.png differ diff --git a/blockchains/ethereum/assets/0x79bbF4508B1391af3A0F4B30bb5FC4aa9ab0E07C/info.json b/blockchains/ethereum/assets/0x79bbF4508B1391af3A0F4B30bb5FC4aa9ab0E07C/info.json new file mode 100644 index 0000000000000..13e5804293196 --- /dev/null +++ b/blockchains/ethereum/assets/0x79bbF4508B1391af3A0F4B30bb5FC4aa9ab0E07C/info.json @@ -0,0 +1,21 @@ +{ + "name": "HeyAnon", + "symbol": "Anon", + "decimals": 18, + "type": "ERC20", + "website": "https://heyanon.ai/", + "description": "Welcome to the new era of financial simplicity! Streamline your cryptocurrency journey with our AI Agents.", + "explorer": "https://etherscan.io/token/0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c", + "status": "active", + "id": "0x79bbF4508B1391af3A0F4B30bb5FC4aa9ab0E07C", + "links": [ + { + "name": "x", + "url": "https://x.com/HeyAnonai" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hey-anon/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x79bbF4508B1391af3A0F4B30bb5FC4aa9ab0E07C/logo.png b/blockchains/ethereum/assets/0x79bbF4508B1391af3A0F4B30bb5FC4aa9ab0E07C/logo.png new file mode 100644 index 0000000000000..94b5bcfc6866d Binary files /dev/null and b/blockchains/ethereum/assets/0x79bbF4508B1391af3A0F4B30bb5FC4aa9ab0E07C/logo.png differ diff --git a/blockchains/ethereum/assets/0x7A58c0Be72BE218B41C608b7Fe7C5bB630736C71/info.json b/blockchains/ethereum/assets/0x7A58c0Be72BE218B41C608b7Fe7C5bB630736C71/info.json new file mode 100644 index 0000000000000..f9db2932b9a40 --- /dev/null +++ b/blockchains/ethereum/assets/0x7A58c0Be72BE218B41C608b7Fe7C5bB630736C71/info.json @@ -0,0 +1,25 @@ +{ + "name": "ConstitutionDAO", + "type": "ERC20", + "symbol": "PEOPLE", + "decimals": 18, + "description": "Constitution DAO was an experiment that has now been dissolved. In November 2021, a group web3-enthusiasts gathered as a decentralized autonomous organization with the shared objective of buying a copy of the U.S.", + "website": "https://www.constitutiondao.com/", + "explorer": "https://etherscan.io/token/0x7a58c0be72be218b41c608b7fe7c5bb630736c71", + "id": "0x7A58c0Be72BE218B41C608b7Fe7C5bB630736C71", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/constitutiondao" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/constitutiondao/" + } + ], + "tags": [ + "governance" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7A58c0Be72BE218B41C608b7Fe7C5bB630736C71/logo.png b/blockchains/ethereum/assets/0x7A58c0Be72BE218B41C608b7Fe7C5bB630736C71/logo.png new file mode 100644 index 0000000000000..f8ccec724a396 Binary files /dev/null and b/blockchains/ethereum/assets/0x7A58c0Be72BE218B41C608b7Fe7C5bB630736C71/logo.png differ diff --git a/blockchains/ethereum/assets/0x7AA59A63d1D0C435a08bC96E11bef2E95aB66c40/info.json b/blockchains/ethereum/assets/0x7AA59A63d1D0C435a08bC96E11bef2E95aB66c40/info.json new file mode 100644 index 0000000000000..b41b85795ea8a --- /dev/null +++ b/blockchains/ethereum/assets/0x7AA59A63d1D0C435a08bC96E11bef2E95aB66c40/info.json @@ -0,0 +1,28 @@ +{ + "name": "Denison Mines (Ondo Tokenized)", + "type": "ERC20", + "symbol": "DNNon", + "decimals": 18, + "description": "DNNon is the Ondo Tokenized version of Denison Mines, giving tokenholders economic exposure similar to holding DNN and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x7AA59A63d1D0C435a08bC96E11bef2E95aB66c40", + "status": "active", + "id": "0x7AA59A63d1D0C435a08bC96E11bef2E95aB66c40", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/denison-mines-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/denison-mines-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7AA59A63d1D0C435a08bC96E11bef2E95aB66c40/logo.png b/blockchains/ethereum/assets/0x7AA59A63d1D0C435a08bC96E11bef2E95aB66c40/logo.png new file mode 100644 index 0000000000000..b3759cdc423d6 Binary files /dev/null and b/blockchains/ethereum/assets/0x7AA59A63d1D0C435a08bC96E11bef2E95aB66c40/logo.png differ diff --git a/blockchains/ethereum/assets/0x7ABc8A5768E6bE61A6c693a6e4EAcb5B60602C4D/info.json b/blockchains/ethereum/assets/0x7ABc8A5768E6bE61A6c693a6e4EAcb5B60602C4D/info.json new file mode 100644 index 0000000000000..3b21c89b4dd6a --- /dev/null +++ b/blockchains/ethereum/assets/0x7ABc8A5768E6bE61A6c693a6e4EAcb5B60602C4D/info.json @@ -0,0 +1,25 @@ +{ + "name": "Covalent X Token", + "type": "ERC20", + "symbol": "CXT", + "decimals": 18, + "description": "Covalent X Token (CXT) plays a pivotal role in the Covalent Network, a platform dedicated to safeguarding and enhancing the availability of Ethereum's historical data. This token is integral for staking and governance, allowing holders to participate actively in the network's decision-making processes. The Covalent Network aims to provide a comprehensive solution for accessing blockchain data, ensuring transparency and efficiency.", + "website": "https://www.covalenthq.com/", + "explorer": "https://etherscan.io/token/0x7abc8a5768e6be61a6c693a6e4eacb5b60602c4d", + "id": "0x7ABc8A5768E6bE61A6c693a6e4EAcb5B60602C4D", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/covalent_hq" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/covalent-x/" + } + ], + "tags": [ + "governance" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7ABc8A5768E6bE61A6c693a6e4EAcb5B60602C4D/logo.png b/blockchains/ethereum/assets/0x7ABc8A5768E6bE61A6c693a6e4EAcb5B60602C4D/logo.png new file mode 100644 index 0000000000000..06891815b674f Binary files /dev/null and b/blockchains/ethereum/assets/0x7ABc8A5768E6bE61A6c693a6e4EAcb5B60602C4D/logo.png differ diff --git a/blockchains/ethereum/assets/0x7AEfc9965699fBea943e03264d96e50CD4A97b21/info.json b/blockchains/ethereum/assets/0x7AEfc9965699fBea943e03264d96e50CD4A97b21/info.json new file mode 100644 index 0000000000000..af51861f6e689 --- /dev/null +++ b/blockchains/ethereum/assets/0x7AEfc9965699fBea943e03264d96e50CD4A97b21/info.json @@ -0,0 +1,24 @@ +{ + "name": "Walmart tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Walmart xStock (WMTx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. WMTx tracks the price of Walmart Inc. (the underlying). WMTx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Walmart Inc., whilst maintaining the benefits of blockchain technology. Walmart Inc. is a multinational retail corporation operating a global network of discount department stores, supercenters, and online platforms. It is one of the largest retailers in the world, known for its everyday low prices and broad product assortment.", + "explorer": "https://etherscan.io/token/0x7AEfc9965699fBea943e03264d96e50CD4A97b21", + "type": "ERC20", + "symbol": "WMTX", + "decimals": 18, + "status": "active", + "id": "0x7AEfc9965699fBea943e03264d96e50CD4A97b21", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/walmart-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7AEfc9965699fBea943e03264d96e50CD4A97b21/logo.png b/blockchains/ethereum/assets/0x7AEfc9965699fBea943e03264d96e50CD4A97b21/logo.png new file mode 100644 index 0000000000000..ef21853af9684 Binary files /dev/null and b/blockchains/ethereum/assets/0x7AEfc9965699fBea943e03264d96e50CD4A97b21/logo.png differ diff --git a/blockchains/ethereum/assets/0x7BEF710a5759d197EC0Bf621c3Df802C2D60D848/info.json b/blockchains/ethereum/assets/0x7BEF710a5759d197EC0Bf621c3Df802C2D60D848/info.json index 3bf4b03caa20a..212ffcb1962a6 100644 --- a/blockchains/ethereum/assets/0x7BEF710a5759d197EC0Bf621c3Df802C2D60D848/info.json +++ b/blockchains/ethereum/assets/0x7BEF710a5759d197EC0Bf621c3Df802C2D60D848/info.json @@ -10,8 +10,8 @@ "id": "0x7BEF710a5759d197EC0Bf621c3Df802C2D60D848", "links": [ { - "name": "twitter", - "url": "https://twitter.com/shopxlabs" + "name": "x", + "url": "https://x.com/shopxlabs" }, { "name": "github", @@ -41,4 +41,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7C488cFc874Ca9F34e7bdBd0410C27CE6d6af5f9/info.json b/blockchains/ethereum/assets/0x7C488cFc874Ca9F34e7bdBd0410C27CE6d6af5f9/info.json new file mode 100644 index 0000000000000..cb766fe3bc19d --- /dev/null +++ b/blockchains/ethereum/assets/0x7C488cFc874Ca9F34e7bdBd0410C27CE6d6af5f9/info.json @@ -0,0 +1,24 @@ +{ + "name": "US Natural Gas Fund (Ondo Tokenized)", + "type": "ERC20", + "symbol": "UNGon", + "decimals": 18, + "description": "UNGon is the Ondo Tokenized version of the US Natural Gas Fund, giving tokenholders economic exposure similar to holding UNG and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x7C488cFc874Ca9F34e7bdBd0410C27CE6d6af5f9", + "status": "active", + "id": "0x7C488cFc874Ca9F34e7bdBd0410C27CE6d6af5f9", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/us-natural-gas-fund-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7C488cFc874Ca9F34e7bdBd0410C27CE6d6af5f9/logo.png b/blockchains/ethereum/assets/0x7C488cFc874Ca9F34e7bdBd0410C27CE6d6af5f9/logo.png new file mode 100644 index 0000000000000..12335ab8ef272 Binary files /dev/null and b/blockchains/ethereum/assets/0x7C488cFc874Ca9F34e7bdBd0410C27CE6d6af5f9/logo.png differ diff --git a/blockchains/ethereum/assets/0x7D8146cf21e8D7cbe46054e01588207b51198729/info.json b/blockchains/ethereum/assets/0x7D8146cf21e8D7cbe46054e01588207b51198729/info.json index a5c189254c705..a07bb7b2f6ca8 100644 --- a/blockchains/ethereum/assets/0x7D8146cf21e8D7cbe46054e01588207b51198729/info.json +++ b/blockchains/ethereum/assets/0x7D8146cf21e8D7cbe46054e01588207b51198729/info.json @@ -10,8 +10,8 @@ "id": "0x7D8146cf21e8D7cbe46054e01588207b51198729", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BOBETHtoken" + "name": "x", + "url": "https://x.com/BOBETHtoken" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x7DAc25b1A665e1c70F25F1fC37d88C99274984ed/info.json b/blockchains/ethereum/assets/0x7DAc25b1A665e1c70F25F1fC37d88C99274984ed/info.json index 3f606b7054b06..006b1d49fc1ad 100644 --- a/blockchains/ethereum/assets/0x7DAc25b1A665e1c70F25F1fC37d88C99274984ed/info.json +++ b/blockchains/ethereum/assets/0x7DAc25b1A665e1c70F25F1fC37d88C99274984ed/info.json @@ -10,8 +10,8 @@ "id": "0x7DAc25b1A665e1c70F25F1fC37d88C99274984ed", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Shib_nobi" + "name": "x", + "url": "https://x.com/Shib_nobi" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x7DBd435aa4eCAB5471CFCeF4527a022feF0b7e1C/info.json b/blockchains/ethereum/assets/0x7DBd435aa4eCAB5471CFCeF4527a022feF0b7e1C/info.json new file mode 100644 index 0000000000000..0f7e986908fbc --- /dev/null +++ b/blockchains/ethereum/assets/0x7DBd435aa4eCAB5471CFCeF4527a022feF0b7e1C/info.json @@ -0,0 +1,28 @@ +{ + "name": "Home Depot (Ondo Tokenized)", + "type": "ERC20", + "symbol": "HDon", + "decimals": 18, + "description": "HDon is the Ondo Tokenized version of Home Depot, giving tokenholders economic exposure similar to holding HD and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x7DBd435aa4eCAB5471CFCeF4527a022feF0b7e1C", + "status": "active", + "id": "0x7DBd435aa4eCAB5471CFCeF4527a022feF0b7e1C", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/home-depot-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/home-depot-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7DBd435aa4eCAB5471CFCeF4527a022feF0b7e1C/logo.png b/blockchains/ethereum/assets/0x7DBd435aa4eCAB5471CFCeF4527a022feF0b7e1C/logo.png new file mode 100644 index 0000000000000..9bbe5934d723a Binary files /dev/null and b/blockchains/ethereum/assets/0x7DBd435aa4eCAB5471CFCeF4527a022feF0b7e1C/logo.png differ diff --git a/blockchains/ethereum/assets/0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429/info.json b/blockchains/ethereum/assets/0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429/info.json new file mode 100644 index 0000000000000..f7f67599dfad2 --- /dev/null +++ b/blockchains/ethereum/assets/0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429/info.json @@ -0,0 +1,25 @@ +{ + "name": "Golem", + "website": "https://golem.network", + "description": "Golem (GNT) is a peer-to-peer decentralized marketplace for computing power. The project aims to be an alternative to centralized cloud service providers with its lower price point and open-source community of developers.", + "explorer": "https://etherscan.io/token/0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429", + "type": "ERC20", + "symbol": "GNT", + "decimals": 18, + "status": "active", + "id": "0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429", + "links": [ + { + "name": "x", + "url": "https://x.com/golemproject" + }, + { + "name": "github", + "url": "https://github.com/golemfactory/golem" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/golem-network-tokens/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429/logo.png b/blockchains/ethereum/assets/0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429/logo.png new file mode 100644 index 0000000000000..644070628b3d6 Binary files /dev/null and b/blockchains/ethereum/assets/0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429/logo.png differ diff --git a/blockchains/ethereum/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json b/blockchains/ethereum/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json index 5ca0f8da51875..956cd43c8b7bf 100644 --- a/blockchains/ethereum/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json +++ b/blockchains/ethereum/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json @@ -1,10 +1,10 @@ { - "name": "Gomining", + "name": "GoMining", "website": "https://gomining.com/", "description": "Gomining is an exchange token backed by a Top 10 global bitcoin mining project.", "explorer": "https://etherscan.io/token/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989", "type": "ERC20", - "symbol": "GMT", + "symbol": "GOMINING", "decimals": 18, "status": "active", "id": "0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989", @@ -18,8 +18,8 @@ "url": "https://facebook.com/GMTtoken" }, { - "name": "twitter", - "url": "https://twitter.com/GMT_Token" + "name": "x", + "url": "https://x.com/GMT_Token" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x7FF7Fa94b8b66Ef313f7970d4EEbd2CB3103a2C0/info.json b/blockchains/ethereum/assets/0x7FF7Fa94b8b66Ef313f7970d4EEbd2CB3103a2C0/info.json new file mode 100644 index 0000000000000..daf2245376719 --- /dev/null +++ b/blockchains/ethereum/assets/0x7FF7Fa94b8b66Ef313f7970d4EEbd2CB3103a2C0/info.json @@ -0,0 +1,25 @@ +{ + "name": "Vana", + "type": "ERC20", + "symbol": "VANA", + "decimals": 18, + "description": "Vana is an EVM-compatible Layer 1 blockchain network that enables users to transform personal data into financial assets by aggregating private datasets for AI model training. This approach allows individuals to tokenize and monetize their data through Data Decentralized Autonomous Organizations (Data DAOs), granting them ownership and control over their digital footprints.", + "website": "https://www.vana.org/", + "explorer": "https://etherscan.io/token/0x7ff7fa94b8b66ef313f7970d4eebd2cb3103a2c0", + "id": "0x7FF7Fa94b8b66Ef313f7970d4EEbd2CB3103a2C0", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/withvana" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vana/" + } + ], + "tags": [ + "governance" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7FF7Fa94b8b66Ef313f7970d4EEbd2CB3103a2C0/logo.png b/blockchains/ethereum/assets/0x7FF7Fa94b8b66Ef313f7970d4EEbd2CB3103a2C0/logo.png new file mode 100644 index 0000000000000..35dbc63b05ed9 Binary files /dev/null and b/blockchains/ethereum/assets/0x7FF7Fa94b8b66Ef313f7970d4EEbd2CB3103a2C0/logo.png differ diff --git a/blockchains/ethereum/assets/0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9/info.json b/blockchains/ethereum/assets/0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9/info.json index 5876c3d24d162..d5fb6fc281bbb 100644 --- a/blockchains/ethereum/assets/0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9/info.json +++ b/blockchains/ethereum/assets/0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9/info.json @@ -19,8 +19,8 @@ "url": "https://github.com/aave/aave-protocol" }, { - "name": "twitter", - "url": "https://twitter.com/AaveAave" + "name": "x", + "url": "https://x.com/AaveAave" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9/logo.png b/blockchains/ethereum/assets/0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9/logo.png index 1e7cef36a8aaa..d53b11427e965 100644 Binary files a/blockchains/ethereum/assets/0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9/logo.png and b/blockchains/ethereum/assets/0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9/logo.png differ diff --git a/blockchains/ethereum/assets/0x7Fd4d7737597E7b4ee22AcbF8D94362343ae0a79/info.json b/blockchains/ethereum/assets/0x7Fd4d7737597E7b4ee22AcbF8D94362343ae0a79/info.json new file mode 100644 index 0000000000000..ab1e814684232 --- /dev/null +++ b/blockchains/ethereum/assets/0x7Fd4d7737597E7b4ee22AcbF8D94362343ae0a79/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wrapped MistCoin", + "website": "https://www.misteth.com/", + "description": "MistCoin is the prototype or manuscript for ERC-20. Its launch on November 3rd, 2015, coincided with the introduction of a custom token system for the Ethereum Mist Wallet. Ethereum pioneers Fabian Vogelsteller and Alex Van de Sande both lead the project.", + "explorer": "https://etherscan.io/token/0x7fd4d7737597e7b4ee22acbf8d94362343ae0a79", + "type": "ERC20", + "symbol": "WMC", + "decimals": 2, + "status": "active", + "id": "0x7Fd4d7737597E7b4ee22AcbF8D94362343ae0a79", + "links": [ + { + "name": "x", + "url": "https://x.com/MistCoin" + }, + { + "name": "telegram", + "url": "https://t.me/mistcoinchat" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7Fd4d7737597E7b4ee22AcbF8D94362343ae0a79/logo.png b/blockchains/ethereum/assets/0x7Fd4d7737597E7b4ee22AcbF8D94362343ae0a79/logo.png new file mode 100644 index 0000000000000..642f8d77ba576 Binary files /dev/null and b/blockchains/ethereum/assets/0x7Fd4d7737597E7b4ee22AcbF8D94362343ae0a79/logo.png differ diff --git a/blockchains/ethereum/assets/0x7a0F89c1606f71499950AA2590d547c3975B728E/info.json b/blockchains/ethereum/assets/0x7a0F89c1606f71499950AA2590d547c3975B728E/info.json new file mode 100644 index 0000000000000..fb53c8c7ca8d5 --- /dev/null +++ b/blockchains/ethereum/assets/0x7a0F89c1606f71499950AA2590d547c3975B728E/info.json @@ -0,0 +1,24 @@ +{ + "name": "Blackrock, Inc. (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "BLKon is the Ondo Tokenized version of Blackrock, Inc., giving tokenholders economic exposure similar to holding BLK and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x7a0F89c1606f71499950AA2590d547c3975B728E", + "type": "ERC20", + "symbol": "BLKon", + "decimals": 18, + "status": "active", + "id": "0x7a0F89c1606f71499950AA2590d547c3975B728E", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/blackrock-inc-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7a0F89c1606f71499950AA2590d547c3975B728E/logo.png b/blockchains/ethereum/assets/0x7a0F89c1606f71499950AA2590d547c3975B728E/logo.png new file mode 100644 index 0000000000000..034a4b9d4602d Binary files /dev/null and b/blockchains/ethereum/assets/0x7a0F89c1606f71499950AA2590d547c3975B728E/logo.png differ diff --git a/blockchains/ethereum/assets/0x7b744eEa1dECa2f1B7b31F15Ba036Fa1759452d7/info.json b/blockchains/ethereum/assets/0x7b744eEa1dECa2f1B7b31F15Ba036Fa1759452d7/info.json new file mode 100644 index 0000000000000..28670ac58e186 --- /dev/null +++ b/blockchains/ethereum/assets/0x7b744eEa1dECa2f1B7b31F15Ba036Fa1759452d7/info.json @@ -0,0 +1,25 @@ +{ + "name": "El Hippo", + "website": "https://hipptoken.com/", + "description": "El Hippo is a transparent meme coin project that focuses first and foremost on building a happy, long-term community. $HIPP is BIG, Watch out - here comes El Hippo!", + "explorer": "https://etherscan.io/token/0x7b744eea1deca2f1b7b31f15ba036fa1759452d7", + "type": "ERC20", + "symbol": "HIPP", + "decimals": 18, + "status": "active", + "id": "0x7b744eEa1dECa2f1B7b31F15Ba036Fa1759452d7", + "links": [ + { + "name": "x", + "url": "https://x.com/elhippomeme" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/el-hippo" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/el-hippo/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7b744eEa1dECa2f1B7b31F15Ba036Fa1759452d7/logo.png b/blockchains/ethereum/assets/0x7b744eEa1dECa2f1B7b31F15Ba036Fa1759452d7/logo.png new file mode 100644 index 0000000000000..1536e72253a01 Binary files /dev/null and b/blockchains/ethereum/assets/0x7b744eEa1dECa2f1B7b31F15Ba036Fa1759452d7/logo.png differ diff --git a/blockchains/ethereum/assets/0x7bb1A6b19e37028B3aA5c580339c640720E35203/info.json b/blockchains/ethereum/assets/0x7bb1A6b19e37028B3aA5c580339c640720E35203/info.json index 410845b7754e4..c68d7a0579f14 100644 --- a/blockchains/ethereum/assets/0x7bb1A6b19e37028B3aA5c580339c640720E35203/info.json +++ b/blockchains/ethereum/assets/0x7bb1A6b19e37028B3aA5c580339c640720E35203/info.json @@ -10,8 +10,8 @@ "id": "0x7bb1A6b19e37028B3aA5c580339c640720E35203", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SingularityDao" + "name": "x", + "url": "https://x.com/SingularityDao" }, { "name": "telegram", @@ -53,4 +53,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7c7378143a9c8839e0502e2178F058F46c6ea504/info.json b/blockchains/ethereum/assets/0x7c7378143a9c8839e0502e2178F058F46c6ea504/info.json new file mode 100644 index 0000000000000..fdd07c4a478de --- /dev/null +++ b/blockchains/ethereum/assets/0x7c7378143a9c8839e0502e2178F058F46c6ea504/info.json @@ -0,0 +1,28 @@ +{ + "name": "AbbVie (Ondo Tokenized)", + "type": "ERC20", + "symbol": "ABBVon", + "decimals": 18, + "description": "ABBVon is the Ondo Tokenized version of AbbVie, giving tokenholders economic exposure similar to holding ABBV and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x7c7378143a9c8839e0502e2178F058F46c6ea504", + "status": "active", + "id": "0x7c7378143a9c8839e0502e2178F058F46c6ea504", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/abbvie-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abbvie-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7c7378143a9c8839e0502e2178F058F46c6ea504/logo.png b/blockchains/ethereum/assets/0x7c7378143a9c8839e0502e2178F058F46c6ea504/logo.png new file mode 100644 index 0000000000000..4e50b5eb7d37b Binary files /dev/null and b/blockchains/ethereum/assets/0x7c7378143a9c8839e0502e2178F058F46c6ea504/logo.png differ diff --git a/blockchains/ethereum/assets/0x7d4b8Cce0591C9044a22ee543533b72E976E36C3/info.json b/blockchains/ethereum/assets/0x7d4b8Cce0591C9044a22ee543533b72E976E36C3/info.json index b51bf32538780..d9f8e1b26d8c2 100644 --- a/blockchains/ethereum/assets/0x7d4b8Cce0591C9044a22ee543533b72E976E36C3/info.json +++ b/blockchains/ethereum/assets/0x7d4b8Cce0591C9044a22ee543533b72E976E36C3/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/ChangeFinance" }, { - "name": "twitter", - "url": "https://twitter.com/changefinance" + "name": "x", + "url": "https://x.com/changefinance" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x7d5121505149065b562C789A0145eD750e6E8cdD/info.json b/blockchains/ethereum/assets/0x7d5121505149065b562C789A0145eD750e6E8cdD/info.json new file mode 100644 index 0000000000000..8a666a3d22a6c --- /dev/null +++ b/blockchains/ethereum/assets/0x7d5121505149065b562C789A0145eD750e6E8cdD/info.json @@ -0,0 +1,21 @@ +{ + "name": "Victoria VR", + "type": "ERC20", + "symbol": "VR", + "decimals": 18, + "website": "https://victoriavr.com/", + "description": "VICTORIA VR is a Massive Multiplayer Online Open World With Realistic Textures in Virtual Reality built on the blockchain. Users can buy and trade land, get and create unique assets, explore the world full of user content, complete quests for rewards, and play games.", + "explorer": "https://etherscan.io/token/0x7d5121505149065b562c789a0145ed750e6e8cdd", + "status": "active", + "id": "0x7d5121505149065b562C789A0145eD750e6E8cdD", + "links": [ + { + "name": "x", + "url": "https://x.com/VictoriaVRcom" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/victoria-vr/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7d5121505149065b562C789A0145eD750e6E8cdD/logo.png b/blockchains/ethereum/assets/0x7d5121505149065b562C789A0145eD750e6E8cdD/logo.png new file mode 100644 index 0000000000000..ef40dd21fdf0a Binary files /dev/null and b/blockchains/ethereum/assets/0x7d5121505149065b562C789A0145eD750e6E8cdD/logo.png differ diff --git a/blockchains/ethereum/assets/0x7dA2641000Cbb407C329310C461b2cB9c70C3046/info.json b/blockchains/ethereum/assets/0x7dA2641000Cbb407C329310C461b2cB9c70C3046/info.json new file mode 100644 index 0000000000000..4973503f19f4e --- /dev/null +++ b/blockchains/ethereum/assets/0x7dA2641000Cbb407C329310C461b2cB9c70C3046/info.json @@ -0,0 +1,21 @@ +{ + "name": "AGI", + "type": "ERC20", + "symbol": "AGI", + "decimals": 18, + "website": "https://www.delysium.com/", + "description": "Delysium is building AI-powered virtual society with $AGI. Delysium has been constructing a virtual world where 1 billion individuals and 100 billion AI Virtual Beings coexist on blockchain.", + "explorer": "https://etherscan.io/token/0x7dA2641000Cbb407C329310C461b2cB9c70C3046", + "status": "active", + "id": "0x7dA2641000Cbb407C329310C461b2cB9c70C3046", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/delysium/" + }, + { + "name": "x", + "url": "https://x.com/The_Delysium" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7dA2641000Cbb407C329310C461b2cB9c70C3046/logo.png b/blockchains/ethereum/assets/0x7dA2641000Cbb407C329310C461b2cB9c70C3046/logo.png new file mode 100644 index 0000000000000..f7627ea4614a7 Binary files /dev/null and b/blockchains/ethereum/assets/0x7dA2641000Cbb407C329310C461b2cB9c70C3046/logo.png differ diff --git a/blockchains/ethereum/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/info.json b/blockchains/ethereum/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/info.json index c52485305b095..08aded6fd8ac5 100644 --- a/blockchains/ethereum/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/info.json +++ b/blockchains/ethereum/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/info.json @@ -6,12 +6,12 @@ "website": "https://voltinu.in", "description": "Volt Inu ($VOLT) is a hyper-deflationary token whose aim is to invest in multiple asset classes such as NFTs, nodes, altcoins, staking & farming of stablecoins. This investment diversity allows to mitigate the risk while taking advantage of the possible non-correlated growth of the trending assets.", "explorer": "https://etherscan.io/token/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac", - "status": "active", + "status": "abandoned", "id": "0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VoltInuOfficial" + "name": "x", + "url": "https://x.com/VoltInuOfficial" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x7deF4573628021500c3207994935a51801fB56bE/info.json b/blockchains/ethereum/assets/0x7deF4573628021500c3207994935a51801fB56bE/info.json new file mode 100644 index 0000000000000..df66f28b42b58 --- /dev/null +++ b/blockchains/ethereum/assets/0x7deF4573628021500c3207994935a51801fB56bE/info.json @@ -0,0 +1,48 @@ +{ + "name": "Akita", + "type": "ERC20", + "symbol": "AKITA", + "decimals": 18, + "website": "https://akita.network", + "description": "Akita is an OG Ethereum memecoin launched in 2021. At launch, 50% of the token supply was sent to Vitalik Buterin, who later donated those tokens to Gitcoin. In 2026, Akita migrated to a new contract to address technical and structural issues and build a more sustainable foundation. Today, Akita is focused on growing the community, building the Akita mascot IP, and aligning with Gitcoin’s “Fund What Matters” ethos.", + "explorer": "https://etherscan.io/token/0x7deF4573628021500c3207994935a51801fB56bE", + "status": "active", + "id": "0x7deF4573628021500c3207994935a51801fB56bE", + "links": [ + { + "name": "x", + "url": "https://x.com/akita_network" + }, + { + "name": "telegram", + "url": "https://t.me/akitatoken" + }, + { + "name": "telegram_news", + "url": "https://t.me/akitatoken_announcements" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/akita" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/akita-inu-new/" + }, + { + "name": "github", + "url": "https://github.com/akita-network" + }, + { + "name": "blog", + "url": "https://akita.network/blog" + }, + { + "name": "docs", + "url": "https://akita.network/docs" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7deF4573628021500c3207994935a51801fB56bE/logo.png b/blockchains/ethereum/assets/0x7deF4573628021500c3207994935a51801fB56bE/logo.png new file mode 100644 index 0000000000000..8f7c14b8ce7f7 Binary files /dev/null and b/blockchains/ethereum/assets/0x7deF4573628021500c3207994935a51801fB56bE/logo.png differ diff --git a/blockchains/ethereum/assets/0x7e08cE07acA80CefE61ebbFA0CedFe5C7b07eDB9/info.json b/blockchains/ethereum/assets/0x7e08cE07acA80CefE61ebbFA0CedFe5C7b07eDB9/info.json new file mode 100644 index 0000000000000..ded87cf296e3a --- /dev/null +++ b/blockchains/ethereum/assets/0x7e08cE07acA80CefE61ebbFA0CedFe5C7b07eDB9/info.json @@ -0,0 +1,28 @@ +{ + "name": "Bilibili (Ondo Tokenized)", + "type": "ERC20", + "symbol": "BILIon", + "decimals": 18, + "description": "BILIon is the Ondo Tokenized version of Bilibili, giving tokenholders economic exposure similar to holding BILI and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x7e08cE07acA80CefE61ebbFA0CedFe5C7b07eDB9", + "status": "active", + "id": "0x7e08cE07acA80CefE61ebbFA0CedFe5C7b07eDB9", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bilibili-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bilibili-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7e08cE07acA80CefE61ebbFA0CedFe5C7b07eDB9/logo.png b/blockchains/ethereum/assets/0x7e08cE07acA80CefE61ebbFA0CedFe5C7b07eDB9/logo.png new file mode 100644 index 0000000000000..b0ed726070943 Binary files /dev/null and b/blockchains/ethereum/assets/0x7e08cE07acA80CefE61ebbFA0CedFe5C7b07eDB9/logo.png differ diff --git a/blockchains/ethereum/assets/0x7e794eD35788b698AE60cefC98eE48015C4876dA/info.json b/blockchains/ethereum/assets/0x7e794eD35788b698AE60cefC98eE48015C4876dA/info.json index f7fdb5ea0909a..017fc076f301a 100644 --- a/blockchains/ethereum/assets/0x7e794eD35788b698AE60cefC98eE48015C4876dA/info.json +++ b/blockchains/ethereum/assets/0x7e794eD35788b698AE60cefC98eE48015C4876dA/info.json @@ -10,8 +10,8 @@ "id": "0x7e794eD35788b698AE60cefC98eE48015C4876dA", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SHINTAMAToken" + "name": "x", + "url": "https://x.com/SHINTAMAToken" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x7e877b99897D514da01bD1d177E693EC639961Af/info.json b/blockchains/ethereum/assets/0x7e877b99897D514da01bD1d177E693EC639961Af/info.json new file mode 100644 index 0000000000000..2175d341a328f --- /dev/null +++ b/blockchains/ethereum/assets/0x7e877b99897D514da01bD1d177E693EC639961Af/info.json @@ -0,0 +1,25 @@ +{ + "name": "Oggy Inu (ETH)", + "website": "https://oggyinu.com/", + "description": "OggyInu is a token derived from the impromptu meme market. Not affiliated with any broadcast or production agency.", + "explorer": "https://etherscan.io/token/0x7e877b99897D514da01bD1d177E693EC639961Af", + "type": "ERC20", + "symbol": "OGGY", + "decimals": 9, + "status": "active", + "id": "0x7e877b99897D514da01bD1d177E693EC639961Af", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/oggy-inu-eth/" + }, + { + "name": "x", + "url": "https://x.com/OggyInuLTD" + }, + { + "name": "telegram", + "url": "https://t.me/oggy_inu" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7e877b99897D514da01bD1d177E693EC639961Af/logo.png b/blockchains/ethereum/assets/0x7e877b99897D514da01bD1d177E693EC639961Af/logo.png new file mode 100644 index 0000000000000..1b0f2381e7041 Binary files /dev/null and b/blockchains/ethereum/assets/0x7e877b99897D514da01bD1d177E693EC639961Af/logo.png differ diff --git a/blockchains/ethereum/assets/0x7f1F2D3dFa99678675ECE1C243d3f7bC3746db5D/info.json b/blockchains/ethereum/assets/0x7f1F2D3dFa99678675ECE1C243d3f7bC3746db5D/info.json index c373a07ea3451..7c270b27278aa 100644 --- a/blockchains/ethereum/assets/0x7f1F2D3dFa99678675ECE1C243d3f7bC3746db5D/info.json +++ b/blockchains/ethereum/assets/0x7f1F2D3dFa99678675ECE1C243d3f7bC3746db5D/info.json @@ -10,8 +10,8 @@ "id": "0x7f1F2D3dFa99678675ECE1C243d3f7bC3746db5D", "links": [ { - "name": "twitter", - "url": "https://twitter.com/tapmydata" + "name": "x", + "url": "https://x.com/tapmydata" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0/info.json b/blockchains/ethereum/assets/0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0/info.json new file mode 100644 index 0000000000000..2823570c5038c --- /dev/null +++ b/blockchains/ethereum/assets/0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wrapped liquid staked Ether 2.0", + "type": "ERC20", + "symbol": "wstETH", + "decimals": 18, + "website": "https://www.lido.fi/", + "description": "wstETH is a wrapped version of stETH. As some DeFi protocols require a constant balance mechanism for tokens, wstETH keeps your balance of stETH fixed and uses an underlying share system to reflect your earned staking rewards.", + "explorer": "https://etherscan.io/token/0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0", + "status": "active", + "id": "0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0", + "links": [ + { + "name": "x", + "url": "https://x.com/lidofinance" + }, + { + "name": "telegram", + "url": "https://t.me/lidofinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0/logo.png b/blockchains/ethereum/assets/0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0/logo.png new file mode 100644 index 0000000000000..49ab895e0f9d9 Binary files /dev/null and b/blockchains/ethereum/assets/0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0/logo.png differ diff --git a/blockchains/ethereum/assets/0x7f792db54B0e580Cdc755178443f0430Cf799aCa/info.json b/blockchains/ethereum/assets/0x7f792db54B0e580Cdc755178443f0430Cf799aCa/info.json new file mode 100644 index 0000000000000..988c114d43452 --- /dev/null +++ b/blockchains/ethereum/assets/0x7f792db54B0e580Cdc755178443f0430Cf799aCa/info.json @@ -0,0 +1,48 @@ +{ + "name": "Volt Inu", + "type": "ERC20", + "symbol": "VOLT", + "decimals": 9, + "website": "https://voltinu.in", + "description": "Volt Inu ($VOLT) is a hyper-deflationary token whose aim is to invest in multiple asset classes such as NFTs, nodes, altcoins, staking & farming of stablecoins. This investment diversity allows to mitigate the risk while taking advantage of the possible non-correlated growth of the trending assets.", + "explorer": "https://etherscan.io/token/0x7f792db54b0e580cdc755178443f0430cf799aca", + "status": "active", + "id": "0x7f792db54B0e580Cdc755178443f0430Cf799aCa", + "links": [ + { + "name": "x", + "url": "https://x.com/VoltInuOfficial" + }, + { + "name": "telegram", + "url": "https://t.me/VoltInuOfficial" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Volt_Inu/" + }, + { + "name": "whitepaper", + "url": "https://voltinu.in/Whitepaper_v1.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCDLlAleEEmhc7pVdB5pZWFg" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/volt-inu-v2/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/volt-inu" + }, + { + "name": "medium", + "url": "https://medium.com/@VoltInu" + } + ], + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/logo.png b/blockchains/ethereum/assets/0x7f792db54B0e580Cdc755178443f0430Cf799aCa/logo.png similarity index 100% rename from blockchains/ethereum/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/logo.png rename to blockchains/ethereum/assets/0x7f792db54B0e580Cdc755178443f0430Cf799aCa/logo.png diff --git a/blockchains/ethereum/assets/0x80122c6a83C8202Ea365233363d3f4837D13e888/info.json b/blockchains/ethereum/assets/0x80122c6a83C8202Ea365233363d3f4837D13e888/info.json new file mode 100644 index 0000000000000..e609c0c4acf02 --- /dev/null +++ b/blockchains/ethereum/assets/0x80122c6a83C8202Ea365233363d3f4837D13e888/info.json @@ -0,0 +1,17 @@ +{ + "name": "Messier", + "type": "ERC20", + "symbol": "M87", + "decimals": 18, + "website": "https://messier.app/", + "description": "A fully decentralized Blackhole for a private transaction on Ethereum.", + "explorer": "https://etherscan.io/token/0x80122c6a83c8202ea365233363d3f4837d13e888", + "status": "active", + "id": "0x80122c6a83C8202Ea365233363d3f4837D13e888", + "links": [ + { + "name": "x", + "url": "https://x.com/messierm87" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x80122c6a83C8202Ea365233363d3f4837D13e888/logo.png b/blockchains/ethereum/assets/0x80122c6a83C8202Ea365233363d3f4837D13e888/logo.png new file mode 100644 index 0000000000000..8865111984655 Binary files /dev/null and b/blockchains/ethereum/assets/0x80122c6a83C8202Ea365233363d3f4837D13e888/logo.png differ diff --git a/blockchains/ethereum/assets/0x808507121B80c02388fAd14726482e061B8da827/info.json b/blockchains/ethereum/assets/0x808507121B80c02388fAd14726482e061B8da827/info.json index df578b1b086bd..abf9df2fb092c 100644 --- a/blockchains/ethereum/assets/0x808507121B80c02388fAd14726482e061B8da827/info.json +++ b/blockchains/ethereum/assets/0x808507121B80c02388fAd14726482e061B8da827/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/pendle-finance" }, { - "name": "twitter", - "url": "https://twitter.com/pendle_fi" + "name": "x", + "url": "https://x.com/pendle_fi" }, { "name": "docs", diff --git a/blockchains/ethereum/assets/0x80A77a372c1e12AcCdA84299492f404902E2DA67/info.json b/blockchains/ethereum/assets/0x80A77a372c1e12AcCdA84299492f404902E2DA67/info.json new file mode 100644 index 0000000000000..e7a1a44e0f474 --- /dev/null +++ b/blockchains/ethereum/assets/0x80A77a372c1e12AcCdA84299492f404902E2DA67/info.json @@ -0,0 +1,24 @@ +{ + "name": "McDonald's tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "McDonald's tokenized stock (xStock) (MCDX) is a cryptocurrency and operates on the Solana platform. McDonald's tokenized stock (xStock) has a current supply of 5,499.97979496 with 2,463.12389797 in circulation. The last known price of McDonald's tokenized stock (xStock) is 302.84776149 USD and is down -0.87 over the last 24 hours. It is currently trading on 17 active market(s) with $4,567,912.24 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/mcdonalds-xstock.", + "explorer": "https://etherscan.io/token/0x80A77a372c1e12AcCdA84299492f404902E2DA67", + "type": "ERC20", + "symbol": "MCDX", + "decimals": 18, + "status": "active", + "id": "0x80A77a372c1e12AcCdA84299492f404902E2DA67", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mcdonald-s-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x80A77a372c1e12AcCdA84299492f404902E2DA67/logo.png b/blockchains/ethereum/assets/0x80A77a372c1e12AcCdA84299492f404902E2DA67/logo.png new file mode 100644 index 0000000000000..a3cdfb7fa9fe0 Binary files /dev/null and b/blockchains/ethereum/assets/0x80A77a372c1e12AcCdA84299492f404902E2DA67/logo.png differ diff --git a/blockchains/ethereum/assets/0x80C62FE4487E1351b47Ba49809EBD60ED085bf52/info.json b/blockchains/ethereum/assets/0x80C62FE4487E1351b47Ba49809EBD60ED085bf52/info.json index 1acd8e509c332..d3f68c85f18fb 100644 --- a/blockchains/ethereum/assets/0x80C62FE4487E1351b47Ba49809EBD60ED085bf52/info.json +++ b/blockchains/ethereum/assets/0x80C62FE4487E1351b47Ba49809EBD60ED085bf52/info.json @@ -8,21 +8,18 @@ "decimals": 18, "status": "active", "id": "0x80C62FE4487E1351b47Ba49809EBD60ED085bf52", - "tags": [ - "staking-native" - ], "links": [ { "name": "github", "url": "https://github.com/clover-network" }, { - "name": "twitter", - "url": "https://twitter.com/clv_org" + "name": "x", + "url": "https://x.com/clv_org" }, { "name": "medium", "url": "https://medium.com/@clv_org" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x80D55c03180349Fff4a229102F62328220A96444/info.json b/blockchains/ethereum/assets/0x80D55c03180349Fff4a229102F62328220A96444/info.json new file mode 100644 index 0000000000000..07a50ece8b20b --- /dev/null +++ b/blockchains/ethereum/assets/0x80D55c03180349Fff4a229102F62328220A96444/info.json @@ -0,0 +1,21 @@ +{ + "name": "Opulous", + "type": "ERC20", + "symbol": "OPUL", + "website": "https://opulous.org/", + "decimals": 18, + "description": "Opulous Token believe in a future where musicians keep control of the music they create and forge even deeper connections with their fans.", + "explorer": "https://etherscan.io/token/0x80d55c03180349fff4a229102f62328220a96444", + "status": "active", + "id": "0x80D55c03180349Fff4a229102F62328220A96444", + "links": [ + { + "name": "telegram", + "url": "https://t.me/opulousapp" + }, + { + "name": "x", + "url": "https://x.com/opulousapp" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x80D55c03180349Fff4a229102F62328220A96444/logo.png b/blockchains/ethereum/assets/0x80D55c03180349Fff4a229102F62328220A96444/logo.png new file mode 100644 index 0000000000000..afa7fedd2bd39 Binary files /dev/null and b/blockchains/ethereum/assets/0x80D55c03180349Fff4a229102F62328220A96444/logo.png differ diff --git a/blockchains/ethereum/assets/0x80bb277f4355A43CDbB86a82F9876C946476d9Eb/info.json b/blockchains/ethereum/assets/0x80bb277f4355A43CDbB86a82F9876C946476d9Eb/info.json index 34926e2aebdb5..beab4ae6cc497 100644 --- a/blockchains/ethereum/assets/0x80bb277f4355A43CDbB86a82F9876C946476d9Eb/info.json +++ b/blockchains/ethereum/assets/0x80bb277f4355A43CDbB86a82F9876C946476d9Eb/info.json @@ -10,8 +10,8 @@ "id": "0x80bb277f4355A43CDbB86a82F9876C946476d9Eb", "links": [ { - "name": "twitter", - "url": "https://twitter.com/DogDeFiCoin" + "name": "x", + "url": "https://x.com/DogDeFiCoin" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x80c8C3dCfB854f9542567c8Dac3f44D709eBc1de/info.json b/blockchains/ethereum/assets/0x80c8C3dCfB854f9542567c8Dac3f44D709eBc1de/info.json index 690d4c7b2e01f..19ef981a713e7 100644 --- a/blockchains/ethereum/assets/0x80c8C3dCfB854f9542567c8Dac3f44D709eBc1de/info.json +++ b/blockchains/ethereum/assets/0x80c8C3dCfB854f9542567c8Dac3f44D709eBc1de/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/spaceswap/spaceswap" }, { - "name": "twitter", - "url": "https://twitter.com/spaceswapdefi" + "name": "x", + "url": "https://x.com/spaceswapdefi" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x812Ba41e071C7b7fA4EBcFB62dF5F45f6fA853Ee/info.json b/blockchains/ethereum/assets/0x812Ba41e071C7b7fA4EBcFB62dF5F45f6fA853Ee/info.json new file mode 100644 index 0000000000000..e0eaa51728a29 --- /dev/null +++ b/blockchains/ethereum/assets/0x812Ba41e071C7b7fA4EBcFB62dF5F45f6fA853Ee/info.json @@ -0,0 +1,28 @@ +{ + "name": "Neiro", + "website": "https://neiroeth.io", + "description": "The 1st $Neiro on Ethereum,community-managed.The heir aoparent to @dogecoin.", + "explorer": "https://etherscan.io/token/0x812ba41e071c7b7fa4ebcfb62df5f45f6fa853ee", + "type": "ERC20", + "symbol": "Neiro", + "decimals": 9, + "status": "active", + "id": "0x812Ba41e071C7b7fA4EBcFB62dF5F45f6fA853Ee", + "links": [ + { + "name": "x", + "url": "https://x.com/neiroethcto" + }, + { + "name": "telegram", + "url": "https://t.me/ETHNEIROCTO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/first-neiro-on-ethereum/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x812Ba41e071C7b7fA4EBcFB62dF5F45f6fA853Ee/logo.png b/blockchains/ethereum/assets/0x812Ba41e071C7b7fA4EBcFB62dF5F45f6fA853Ee/logo.png new file mode 100644 index 0000000000000..32a2e6ef10675 Binary files /dev/null and b/blockchains/ethereum/assets/0x812Ba41e071C7b7fA4EBcFB62dF5F45f6fA853Ee/logo.png differ diff --git a/blockchains/ethereum/assets/0x8167D3B1024cB51A2DD1B4d889ddf7023420796a/info.json b/blockchains/ethereum/assets/0x8167D3B1024cB51A2DD1B4d889ddf7023420796a/info.json index 46cf4dba22e28..4b69db4e20e7b 100644 --- a/blockchains/ethereum/assets/0x8167D3B1024cB51A2DD1B4d889ddf7023420796a/info.json +++ b/blockchains/ethereum/assets/0x8167D3B1024cB51A2DD1B4d889ddf7023420796a/info.json @@ -10,8 +10,8 @@ "id": "0x8167D3B1024cB51A2DD1B4d889ddf7023420796a", "links": [ { - "name": "twitter", - "url": "https://twitter.com/nokuofficial" + "name": "x", + "url": "https://x.com/nokuofficial" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0x817bbDbC3e8A1204f3691d14bB44992841e3dB35/info.json b/blockchains/ethereum/assets/0x817bbDbC3e8A1204f3691d14bB44992841e3dB35/info.json new file mode 100644 index 0000000000000..135832e8dcde0 --- /dev/null +++ b/blockchains/ethereum/assets/0x817bbDbC3e8A1204f3691d14bB44992841e3dB35/info.json @@ -0,0 +1,25 @@ +{ + "name": "Cudos", + "website": "https://www.cudos.org/", + "description": "CUDOS is a decentralised blockchain-based network that provides access to sustainable and highly scalable distributed cloud computing resources for Web3 natives and enterprises requiring GPU-optimised and general computing virtual machines to power their dApps and AI workloads.", + "explorer": "https://etherscan.io/token/0x817bbDbC3e8A1204f3691d14bB44992841e3dB35", + "type": "ERC20", + "symbol": "CUDOS", + "decimals": 18, + "status": "active", + "id": "0x817bbDbC3e8A1204f3691d14bB44992841e3dB35", + "links": [ + { + "name": "x", + "url": "https://x.com/CUDOS_" + }, + { + "name": "telegram", + "url": "https://t.me/cudostelegram" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cudos/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x817bbDbC3e8A1204f3691d14bB44992841e3dB35/logo.png b/blockchains/ethereum/assets/0x817bbDbC3e8A1204f3691d14bB44992841e3dB35/logo.png new file mode 100644 index 0000000000000..c2434e2e887aa Binary files /dev/null and b/blockchains/ethereum/assets/0x817bbDbC3e8A1204f3691d14bB44992841e3dB35/logo.png differ diff --git a/blockchains/ethereum/assets/0x818234860A647D480b9BBCC9a47A23889f2Ec900/info.json b/blockchains/ethereum/assets/0x818234860A647D480b9BBCC9a47A23889f2Ec900/info.json new file mode 100644 index 0000000000000..05b6e407448d9 --- /dev/null +++ b/blockchains/ethereum/assets/0x818234860A647D480b9BBCC9a47A23889f2Ec900/info.json @@ -0,0 +1,28 @@ +{ + "name": "Ondas Holdings (Ondo Tokenized)", + "type": "ERC20", + "symbol": "ONDSon", + "decimals": 18, + "description": "ONDSon is the Ondo Tokenized version of Ondas Holdings, giving tokenholders economic exposure similar to holding ONDS and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x818234860A647D480b9BBCC9a47A23889f2Ec900", + "status": "active", + "id": "0x818234860A647D480b9BBCC9a47A23889f2Ec900", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ondas-holdings-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ondas-holdings-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x818234860A647D480b9BBCC9a47A23889f2Ec900/logo.png b/blockchains/ethereum/assets/0x818234860A647D480b9BBCC9a47A23889f2Ec900/logo.png new file mode 100644 index 0000000000000..13f4d282cca75 Binary files /dev/null and b/blockchains/ethereum/assets/0x818234860A647D480b9BBCC9a47A23889f2Ec900/logo.png differ diff --git a/blockchains/ethereum/assets/0x81Eb954936A7062d1758Fc0E6E3b88d42D9C361c/info.json b/blockchains/ethereum/assets/0x81Eb954936A7062d1758Fc0E6E3b88d42D9C361c/info.json new file mode 100644 index 0000000000000..0656b0e9c3905 --- /dev/null +++ b/blockchains/ethereum/assets/0x81Eb954936A7062d1758Fc0E6E3b88d42D9C361c/info.json @@ -0,0 +1,28 @@ +{ + "name": "WisdomTree US Quality Dividend Growth Fund (Ondo Tokenized)", + "type": "ERC20", + "symbol": "DGRWon", + "decimals": 18, + "description": "DGRWon is the Ondo Tokenized version of the WisdomTree US Quality Dividend Growth Fund, giving tokenholders economic exposure similar to holding DGRW and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x81Eb954936A7062d1758Fc0E6E3b88d42D9C361c", + "status": "active", + "id": "0x81Eb954936A7062d1758Fc0E6E3b88d42D9C361c", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wisdomtree-us-quality-dividend-growth-fund-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wisdomtree-us-quality-dividend-growth-tokenized-fund-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x81Eb954936A7062d1758Fc0E6E3b88d42D9C361c/logo.png b/blockchains/ethereum/assets/0x81Eb954936A7062d1758Fc0E6E3b88d42D9C361c/logo.png new file mode 100644 index 0000000000000..54ad30b97e82e Binary files /dev/null and b/blockchains/ethereum/assets/0x81Eb954936A7062d1758Fc0E6E3b88d42D9C361c/logo.png differ diff --git a/blockchains/ethereum/assets/0x81f8f0bb1cB2A06649E51913A151F0E7Ef6FA321/info.json b/blockchains/ethereum/assets/0x81f8f0bb1cB2A06649E51913A151F0E7Ef6FA321/info.json index 55cb8f20b89b1..1445fe86749ba 100644 --- a/blockchains/ethereum/assets/0x81f8f0bb1cB2A06649E51913A151F0E7Ef6FA321/info.json +++ b/blockchains/ethereum/assets/0x81f8f0bb1cB2A06649E51913A151F0E7Ef6FA321/info.json @@ -10,8 +10,8 @@ "id": "0x81f8f0bb1cB2A06649E51913A151F0E7Ef6FA321", "links": [ { - "name": "twitter", - "url": "https://twitter.com/vita_dao" + "name": "x", + "url": "https://x.com/vita_dao" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0x82106347dDbB23cE44Cf4cE4053Ef1adf8b9323B/info.json b/blockchains/ethereum/assets/0x82106347dDbB23cE44Cf4cE4053Ef1adf8b9323B/info.json new file mode 100644 index 0000000000000..21d9640c5c222 --- /dev/null +++ b/blockchains/ethereum/assets/0x82106347dDbB23cE44Cf4cE4053Ef1adf8b9323B/info.json @@ -0,0 +1,24 @@ +{ + "name": "Walmart (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "WMTon is the Ondo Tokenized version of Walmart, giving tokenholders economic exposure similar to holding WMT and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x82106347dDbB23cE44Cf4cE4053Ef1adf8b9323B", + "type": "ERC20", + "symbol": "WMTon", + "decimals": 18, + "status": "active", + "id": "0x82106347dDbB23cE44Cf4cE4053Ef1adf8b9323B", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/walmart-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x82106347dDbB23cE44Cf4cE4053Ef1adf8b9323B/logo.png b/blockchains/ethereum/assets/0x82106347dDbB23cE44Cf4cE4053Ef1adf8b9323B/logo.png new file mode 100644 index 0000000000000..410dd779f18ee Binary files /dev/null and b/blockchains/ethereum/assets/0x82106347dDbB23cE44Cf4cE4053Ef1adf8b9323B/logo.png differ diff --git a/blockchains/ethereum/assets/0x82248D53De2B7608cAF53978A8E8C238DC42403a/info.json b/blockchains/ethereum/assets/0x82248D53De2B7608cAF53978A8E8C238DC42403a/info.json new file mode 100644 index 0000000000000..8728dac39470e --- /dev/null +++ b/blockchains/ethereum/assets/0x82248D53De2B7608cAF53978A8E8C238DC42403a/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT Gold USD", + "type": "ERC20", + "symbol": "HONEYPOT USDG", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://etherscan.io/token/0x82248D53De2B7608cAF53978A8E8C238DC42403a", + "explorer": "https://etherscan.io/token/0x82248D53De2B7608cAF53978A8E8C238DC42403a", + "status": "spam", + "id": "0x82248D53De2B7608cAF53978A8E8C238DC42403a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8238884Ec9668Ef77B90C6dfF4D1a9F4F4823BFe/info.json b/blockchains/ethereum/assets/0x8238884Ec9668Ef77B90C6dfF4D1a9F4F4823BFe/info.json new file mode 100644 index 0000000000000..a116db520a5a7 --- /dev/null +++ b/blockchains/ethereum/assets/0x8238884Ec9668Ef77B90C6dfF4D1a9F4F4823BFe/info.json @@ -0,0 +1,17 @@ +{ + "name": "OpenEden Open Dollar", + "type": "ERC20", + "symbol": "USDO", + "decimals": 18, + "website": "https://openeden.com/", + "description": "The OpenEden OpenDollar (“USDO') is a rebasing yield-bearing stablecoin issued by OpenEden Digital ('OED'), a Bermuda Monetary Authority ('BMA') licensed digital asset issuer.", + "explorer": "https://etherscan.io/token/0x8238884ec9668ef77b90c6dff4d1a9f4f4823bfe", + "status": "active", + "id": "0x8238884Ec9668Ef77B90C6dfF4D1a9F4F4823BFe", + "links": [ + { + "name": "x", + "url": "https://x.com/OpenEden_X" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8238884Ec9668Ef77B90C6dfF4D1a9F4F4823BFe/logo.png b/blockchains/ethereum/assets/0x8238884Ec9668Ef77B90C6dfF4D1a9F4F4823BFe/logo.png new file mode 100644 index 0000000000000..b338a9483c10a Binary files /dev/null and b/blockchains/ethereum/assets/0x8238884Ec9668Ef77B90C6dfF4D1a9F4F4823BFe/logo.png differ diff --git a/blockchains/ethereum/assets/0x8248270620Aa532E4d64316017bE5E873E37cc09/info.json b/blockchains/ethereum/assets/0x8248270620Aa532E4d64316017bE5E873E37cc09/info.json new file mode 100644 index 0000000000000..cb4eb9815277c --- /dev/null +++ b/blockchains/ethereum/assets/0x8248270620Aa532E4d64316017bE5E873E37cc09/info.json @@ -0,0 +1,21 @@ +{ + "name": "DevvE", + "website": "https://www.devve.io", + "description": "DevvE is a next-gen cryptocurrency that is 1/3bn energy use of Bitcoin, 1/10M cost of Ethereum, 8M tps with patents around fraud, theft, loss, privacy and regulatory compliance.", + "explorer": "https://etherscan.io/token/0x8248270620aa532e4d64316017be5e873e37cc09", + "type": "ERC20", + "symbol": "DEVVE", + "decimals": 18, + "status": "active", + "id": "0x8248270620Aa532E4d64316017bE5E873E37cc09", + "links": [ + { + "name": "x", + "url": "https://x.com/DevveEcosystem" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/devve/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8248270620Aa532E4d64316017bE5E873E37cc09/logo.png b/blockchains/ethereum/assets/0x8248270620Aa532E4d64316017bE5E873E37cc09/logo.png new file mode 100644 index 0000000000000..dd84efefc1dec Binary files /dev/null and b/blockchains/ethereum/assets/0x8248270620Aa532E4d64316017bE5E873E37cc09/logo.png differ diff --git a/blockchains/ethereum/assets/0x825459139C897D769339f295E962396C4F9E4A4D/info.json b/blockchains/ethereum/assets/0x825459139C897D769339f295E962396C4F9E4A4D/info.json new file mode 100644 index 0000000000000..eac040f2198d2 --- /dev/null +++ b/blockchains/ethereum/assets/0x825459139C897D769339f295E962396C4F9E4A4D/info.json @@ -0,0 +1,25 @@ +{ + "name": "GameBuild", + "type": "ERC20", + "symbol": "GAME", + "decimals": 18, + "description": "GameBuild is an innovative infrastructure designed to revolutionize the gaming industry by integrating blockchain technology to boost revenues for developers and players. It replaces traditional gaming platforms with advanced features for development, analytics, bridging Web2 and Web3 games, while incorporating seamless in-game advertising through 'ad spot'.", + "website": "https://www.game.build/", + "explorer": "https://etherscan.io/token/0x825459139C897D769339f295E962396C4F9E4A4D", + "id": "0x825459139C897D769339f295E962396C4F9E4A4D", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/GameBuild_" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gamebuild/" + } + ], + "tags": [ + "gamefi" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x825459139C897D769339f295E962396C4F9E4A4D/logo.png b/blockchains/ethereum/assets/0x825459139C897D769339f295E962396C4F9E4A4D/logo.png new file mode 100644 index 0000000000000..b19ce5f6513e4 Binary files /dev/null and b/blockchains/ethereum/assets/0x825459139C897D769339f295E962396C4F9E4A4D/logo.png differ diff --git a/blockchains/ethereum/assets/0x826180541412D574cf1336d22c0C0a287822678A/info.json b/blockchains/ethereum/assets/0x826180541412D574cf1336d22c0C0a287822678A/info.json new file mode 100644 index 0000000000000..5cbf4b90b89cd --- /dev/null +++ b/blockchains/ethereum/assets/0x826180541412D574cf1336d22c0C0a287822678A/info.json @@ -0,0 +1,21 @@ +{ + "name": "Chainflip", + "type": "ERC20", + "symbol": "FLIP", + "decimals": 18, + "description": "Chainflip is a cross-chain protocol which uses TSS, an independent blockchain, and a purpose-built AMM to facilitate native cross-chain swaps. Chainflip aims to grant users access to native assets not usually found on the same dex, like ETH, DOT, and BTC, at price parity to centralised exchanges.", + "website": "https://chainflip.io/", + "explorer": "https://etherscan.io/token/0x826180541412D574cf1336d22c0C0a287822678A", + "id": "0x826180541412D574cf1336d22c0C0a287822678A", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Chainflip" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chainflip/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x826180541412D574cf1336d22c0C0a287822678A/logo.png b/blockchains/ethereum/assets/0x826180541412D574cf1336d22c0C0a287822678A/logo.png new file mode 100644 index 0000000000000..d7d745ca5a40d Binary files /dev/null and b/blockchains/ethereum/assets/0x826180541412D574cf1336d22c0C0a287822678A/logo.png differ diff --git a/blockchains/ethereum/assets/0x826e5Ec70DbC5607fF9218011FBb97F9a8D97953/info.json b/blockchains/ethereum/assets/0x826e5Ec70DbC5607fF9218011FBb97F9a8D97953/info.json new file mode 100644 index 0000000000000..19908c0e09d14 --- /dev/null +++ b/blockchains/ethereum/assets/0x826e5Ec70DbC5607fF9218011FBb97F9a8D97953/info.json @@ -0,0 +1,37 @@ +{ + "name": "TravelCare", + "website": "https://travelcare.io/", + "description": "TRAVEL is the reward token of the Travel Care platform.", + "explorer": "https://etherscan.io/token/0x826e5ec70dbc5607ff9218011fbb97f9a8d97953", + "type": "ERC20", + "symbol": "TRAVEL", + "decimals": 18, + "status": "active", + "id": "0x826e5Ec70DbC5607fF9218011FBb97F9a8D97953", + "tags": [ + "defi", + "staking" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/TokenTravelCare" + }, + { + "name": "x", + "url": "https://x.com/travelcareio" + }, + { + "name": "telegram", + "url": "https://t.me/travelcareio" + }, + { + "name": "discord", + "url": "https://discord.com/invite/cyNhzfPMyT" + }, + { + "name": "whitepaper", + "url": "https://content.travelcare.io/whitepaper/whitepaperENG.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x826e5Ec70DbC5607fF9218011FBb97F9a8D97953/logo.png b/blockchains/ethereum/assets/0x826e5Ec70DbC5607fF9218011FBb97F9a8D97953/logo.png new file mode 100644 index 0000000000000..6eaf751e1bbd2 Binary files /dev/null and b/blockchains/ethereum/assets/0x826e5Ec70DbC5607fF9218011FBb97F9a8D97953/logo.png differ diff --git a/blockchains/ethereum/assets/0x82866b4A71BA9d930Fe338C386B6A45a7133eb36/info.json b/blockchains/ethereum/assets/0x82866b4A71BA9d930Fe338C386B6A45a7133eb36/info.json index 61b157211a777..a2695744628af 100644 --- a/blockchains/ethereum/assets/0x82866b4A71BA9d930Fe338C386B6A45a7133eb36/info.json +++ b/blockchains/ethereum/assets/0x82866b4A71BA9d930Fe338C386B6A45a7133eb36/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/qcore-finance" }, { - "name": "twitter", - "url": "https://twitter.com/qcore_finance" + "name": "x", + "url": "https://x.com/qcore_finance" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x8290333ceF9e6D528dD5618Fb97a76f268f3EDD4/info.json b/blockchains/ethereum/assets/0x8290333ceF9e6D528dD5618Fb97a76f268f3EDD4/info.json index 6bf293511ad02..2c2e6bcd22887 100644 --- a/blockchains/ethereum/assets/0x8290333ceF9e6D528dD5618Fb97a76f268f3EDD4/info.json +++ b/blockchains/ethereum/assets/0x8290333ceF9e6D528dD5618Fb97a76f268f3EDD4/info.json @@ -18,8 +18,8 @@ "url": "https://medium.com/ankr-network" }, { - "name": "twitter", - "url": "https://twitter.com/ankrnetwork?lang=en" + "name": "x", + "url": "https://x.com/ankrnetwork?lang=en" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x8290D7a64F25e6b5002d98367E8367c1b532b534/info.json b/blockchains/ethereum/assets/0x8290D7a64F25e6b5002d98367E8367c1b532b534/info.json index 5ccca031f36b9..1f9e4e84033f3 100644 --- a/blockchains/ethereum/assets/0x8290D7a64F25e6b5002d98367E8367c1b532b534/info.json +++ b/blockchains/ethereum/assets/0x8290D7a64F25e6b5002d98367E8367c1b532b534/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/ichifarm/ichi-oneToken" }, { - "name": "twitter", - "url": "https://twitter.com/ichifarm" + "name": "x", + "url": "https://x.com/ichifarm" }, { "name": "telegram", @@ -37,4 +37,4 @@ "url": "https://coingecko.com/en/coins/stable-uni" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x829C97092C0Cc92EfE7397dd3ddb831Cc5835Bae/info.json b/blockchains/ethereum/assets/0x829C97092C0Cc92EfE7397dd3ddb831Cc5835Bae/info.json index aab9d4ca87543..9e1695b581d43 100644 --- a/blockchains/ethereum/assets/0x829C97092C0Cc92EfE7397dd3ddb831Cc5835Bae/info.json +++ b/blockchains/ethereum/assets/0x829C97092C0Cc92EfE7397dd3ddb831Cc5835Bae/info.json @@ -10,8 +10,8 @@ "id": "0x829C97092C0Cc92EfE7397dd3ddb831Cc5835Bae", "links": [ { - "name": "twitter", - "url": "https://twitter.com/mine_blockchain" + "name": "x", + "url": "https://x.com/mine_blockchain" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0x831bE1970511C069ddEdc452fFbbEE55eEB70170/info.json b/blockchains/ethereum/assets/0x831bE1970511C069ddEdc452fFbbEE55eEB70170/info.json new file mode 100644 index 0000000000000..00b4c5593bc92 --- /dev/null +++ b/blockchains/ethereum/assets/0x831bE1970511C069ddEdc452fFbbEE55eEB70170/info.json @@ -0,0 +1,40 @@ +{ + "name": "ELF wallet (ELF)", + "type": "ERC20", + "symbol": "ELF", + "decimals": 18, + "website": "https://www.elfwallets.com/", + "description": "Multi-chain Wallet in WEB3.Multi-chain Wallet, Security First, Full Control by User.", + "explorer": "https://etherscan.io/token/0x831be1970511c069ddedc452ffbbee55eeb70170", + "status": "active", + "id": "0x831bE1970511C069ddEdc452fFbbEE55eEB70170", + "links": [ + { + "name": "x", + "url": "https://x.com/ElfWallet" + }, + { + "name": "github", + "url": "https://github.com/ELF-Wallet" + }, + { + "name": "telegram", + "url": "https://t.me/ElfWallet_Global" + }, + { + "name": "whitepaper", + "url": "https://www.elfwallets.com/ELF.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elf-wallet/" + }, + { + "name": "medium", + "url": "https://medium.com/@elfwallet" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x831bE1970511C069ddEdc452fFbbEE55eEB70170/logo.png b/blockchains/ethereum/assets/0x831bE1970511C069ddEdc452fFbbEE55eEB70170/logo.png new file mode 100644 index 0000000000000..2f9cdfc5cb30c Binary files /dev/null and b/blockchains/ethereum/assets/0x831bE1970511C069ddEdc452fFbbEE55eEB70170/logo.png differ diff --git a/blockchains/ethereum/assets/0x838d8e11B160deC88Fe62BF0f743FB7000941e13/info.json b/blockchains/ethereum/assets/0x838d8e11B160deC88Fe62BF0f743FB7000941e13/info.json index 0ebadabc8457f..860921d869e7e 100644 --- a/blockchains/ethereum/assets/0x838d8e11B160deC88Fe62BF0f743FB7000941e13/info.json +++ b/blockchains/ethereum/assets/0x838d8e11B160deC88Fe62BF0f743FB7000941e13/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/ethereum" }, { - "name": "twitter", - "url": "https://twitter.com/Krios" + "name": "x", + "url": "https://x.com/Krios" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x8390a1DA07E376ef7aDd4Be859BA74Fb83aA02D5/info.json b/blockchains/ethereum/assets/0x8390a1DA07E376ef7aDd4Be859BA74Fb83aA02D5/info.json new file mode 100644 index 0000000000000..a6315dc7ea55a --- /dev/null +++ b/blockchains/ethereum/assets/0x8390a1DA07E376ef7aDd4Be859BA74Fb83aA02D5/info.json @@ -0,0 +1,32 @@ +{ + "name": "GROK", + "type": "ERC20", + "symbol": "GROK", + "decimals": 9, + "website": "https://grokoneth.meme", + "description": "Grok is meme culture. In this era, all culture is memes battling through cyberspace's supply chain.", + "explorer": "https://etherscan.io/token/0x8390a1DA07e376ef7aDd4Be859BA74Fb83aA02D5", + "status": "active", + "id": "0x8390a1DA07E376ef7aDd4Be859BA74Fb83aA02D5", + "links": [ + { + "name": "x", + "url": "https://x.com/GrokMemeCTO" + }, + { + "name": "telegram", + "url": "https://t.me/GrokMemeETH" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/grok-erc/" + }, + { + "name": "whitepaper", + "url": "https://github.com/grokme-io/protocol/blob/main/WHITEPAPER.md" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8390a1DA07E376ef7aDd4Be859BA74Fb83aA02D5/logo.png b/blockchains/ethereum/assets/0x8390a1DA07E376ef7aDd4Be859BA74Fb83aA02D5/logo.png new file mode 100644 index 0000000000000..c9abade5a3cab Binary files /dev/null and b/blockchains/ethereum/assets/0x8390a1DA07E376ef7aDd4Be859BA74Fb83aA02D5/logo.png differ diff --git a/blockchains/ethereum/assets/0x839e71613f9aA06E5701CF6de63E303616B0DDE3/info.json b/blockchains/ethereum/assets/0x839e71613f9aA06E5701CF6de63E303616B0DDE3/info.json index 8e1ed6372b062..8988722dcaeca 100644 --- a/blockchains/ethereum/assets/0x839e71613f9aA06E5701CF6de63E303616B0DDE3/info.json +++ b/blockchains/ethereum/assets/0x839e71613f9aA06E5701CF6de63E303616B0DDE3/info.json @@ -10,8 +10,8 @@ "id": "0x839e71613f9aA06E5701CF6de63E303616B0DDE3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VVS_finance" + "name": "x", + "url": "https://x.com/VVS_finance" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x83F20F44975D03b1b09e64809B757c47f942BEeA/info.json b/blockchains/ethereum/assets/0x83F20F44975D03b1b09e64809B757c47f942BEeA/info.json new file mode 100644 index 0000000000000..fffec0e48a664 --- /dev/null +++ b/blockchains/ethereum/assets/0x83F20F44975D03b1b09e64809B757c47f942BEeA/info.json @@ -0,0 +1,21 @@ +{ + "name": "Savings Dai", + "website": "https://app.sparkprotocol.io/", + "description": "Savings Dai (sDAI) is an ERC-4626 representation/wrapper of DAI in the Dai Savings Rate (DSR) module.", + "explorer": "https://etherscan.io/token/0x83f20f44975d03b1b09e64809b757c47f942beea", + "type": "ERC20", + "symbol": "sDAI", + "decimals": 18, + "status": "active", + "id": "0x83F20F44975D03b1b09e64809B757c47f942BEeA", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/savings-dai/" + }, + { + "name": "x", + "url": "https://x.com/MakerDAO" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x83F20F44975D03b1b09e64809B757c47f942BEeA/logo.png b/blockchains/ethereum/assets/0x83F20F44975D03b1b09e64809B757c47f942BEeA/logo.png new file mode 100644 index 0000000000000..656812ea77fc5 Binary files /dev/null and b/blockchains/ethereum/assets/0x83F20F44975D03b1b09e64809B757c47f942BEeA/logo.png differ diff --git a/blockchains/ethereum/assets/0x84328D8B85019FdCeCf4c82FBE076Bf350FC0cab/info.json b/blockchains/ethereum/assets/0x84328D8B85019FdCeCf4c82FBE076Bf350FC0cab/info.json new file mode 100644 index 0000000000000..35627b2e43eb6 --- /dev/null +++ b/blockchains/ethereum/assets/0x84328D8B85019FdCeCf4c82FBE076Bf350FC0cab/info.json @@ -0,0 +1,28 @@ +{ + "name": "Lowe's (Ondo Tokenized)", + "type": "ERC20", + "symbol": "LOWon", + "decimals": 18, + "description": "LOWon is the Ondo Tokenized version of Lowe's, giving tokenholders economic exposure similar to holding LOW and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x84328D8B85019FdCeCf4c82FBE076Bf350FC0cab", + "status": "active", + "id": "0x84328D8B85019FdCeCf4c82FBE076Bf350FC0cab", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/lowe-s-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lowes-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x84328D8B85019FdCeCf4c82FBE076Bf350FC0cab/logo.png b/blockchains/ethereum/assets/0x84328D8B85019FdCeCf4c82FBE076Bf350FC0cab/logo.png new file mode 100644 index 0000000000000..925f46763f037 Binary files /dev/null and b/blockchains/ethereum/assets/0x84328D8B85019FdCeCf4c82FBE076Bf350FC0cab/logo.png differ diff --git a/blockchains/ethereum/assets/0x8457CA5040ad67fdebbCC8EdCE889A335Bc0fbFB/info.json b/blockchains/ethereum/assets/0x8457CA5040ad67fdebbCC8EdCE889A335Bc0fbFB/info.json new file mode 100644 index 0000000000000..927952b650b48 --- /dev/null +++ b/blockchains/ethereum/assets/0x8457CA5040ad67fdebbCC8EdCE889A335Bc0fbFB/info.json @@ -0,0 +1,25 @@ +{ + "name": "AltLayer", + "website": "https://altlayer.io/", + "description": "AltLayer is an open and decentralised protocol for rollups.", + "explorer": "https://etherscan.io/token/0x8457CA5040ad67fdebbCC8EdCE889A335Bc0fbFB", + "type": "ERC20", + "symbol": "ALT", + "decimals": 18, + "status": "active", + "id": "0x8457CA5040ad67fdebbCC8EdCE889A335Bc0fbFB", + "links": [ + { + "name": "x", + "url": "https://x.com/alt_layer" + }, + { + "name": "telegram", + "url": "https://t.me/altlayer" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/altlayer/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8457CA5040ad67fdebbCC8EdCE889A335Bc0fbFB/logo.png b/blockchains/ethereum/assets/0x8457CA5040ad67fdebbCC8EdCE889A335Bc0fbFB/logo.png new file mode 100644 index 0000000000000..55ecb67cfcb68 Binary files /dev/null and b/blockchains/ethereum/assets/0x8457CA5040ad67fdebbCC8EdCE889A335Bc0fbFB/logo.png differ diff --git a/blockchains/ethereum/assets/0x84E8f1b9b40DD1832925702459D12FFb14d97bF3/info.json b/blockchains/ethereum/assets/0x84E8f1b9b40DD1832925702459D12FFb14d97bF3/info.json new file mode 100644 index 0000000000000..fe2ef6cd944be --- /dev/null +++ b/blockchains/ethereum/assets/0x84E8f1b9b40DD1832925702459D12FFb14d97bF3/info.json @@ -0,0 +1,28 @@ +{ + "name": "Vanguard Value ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "VTVon", + "decimals": 18, + "description": "VTVon is the Ondo Tokenized version of the Vanguard Value ETF, giving tokenholders economic exposure similar to holding VTV and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x84E8f1b9b40DD1832925702459D12FFb14d97bF3", + "status": "active", + "id": "0x84E8f1b9b40DD1832925702459D12FFb14d97bF3", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vanguard-value-etf-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vanguard-value-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x84E8f1b9b40DD1832925702459D12FFb14d97bF3/logo.png b/blockchains/ethereum/assets/0x84E8f1b9b40DD1832925702459D12FFb14d97bF3/logo.png new file mode 100644 index 0000000000000..c8b7fdf9aa10b Binary files /dev/null and b/blockchains/ethereum/assets/0x84E8f1b9b40DD1832925702459D12FFb14d97bF3/logo.png differ diff --git a/blockchains/ethereum/assets/0x84FA8f52E437Ac04107EC1768764B2b39287CB3e/info.json b/blockchains/ethereum/assets/0x84FA8f52E437Ac04107EC1768764B2b39287CB3e/info.json index a400e96581e50..47eecb9a1b0de 100644 --- a/blockchains/ethereum/assets/0x84FA8f52E437Ac04107EC1768764B2b39287CB3e/info.json +++ b/blockchains/ethereum/assets/0x84FA8f52E437Ac04107EC1768764B2b39287CB3e/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/Grovetoken" }, { - "name": "twitter", - "url": "https://twitter.com/GroveToken" + "name": "x", + "url": "https://x.com/GroveToken" }, { "name": "coinmarketcap", @@ -33,4 +33,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x84b55a0EF81e80420734A762A86e70a7D7A573FB/info.json b/blockchains/ethereum/assets/0x84b55a0EF81e80420734A762A86e70a7D7A573FB/info.json new file mode 100644 index 0000000000000..09442a5b8c215 --- /dev/null +++ b/blockchains/ethereum/assets/0x84b55a0EF81e80420734A762A86e70a7D7A573FB/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Zether USD 2.0", + "type": "ERC20", + "symbol": "FAKE USDT.Z", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://etherscan.io/token/0x84b55a0EF81e80420734A762A86e70a7D7A573FB", + "explorer": "https://etherscan.io/token/0x84b55a0EF81e80420734A762A86e70a7D7A573FB", + "status": "spam", + "id": "0x84b55a0EF81e80420734A762A86e70a7D7A573FB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419/info.json b/blockchains/ethereum/assets/0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419/info.json index 313041befb26b..811a19237bbef 100644 --- a/blockchains/ethereum/assets/0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419/info.json +++ b/blockchains/ethereum/assets/0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/DIAdata_org" + "name": "x", + "url": "https://x.com/DIAdata_org" }, { "name": "github", @@ -30,4 +30,4 @@ } ], "id": "0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419" -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x84d4AfE150dA7Ea1165B9e45Ff8Ee4798d7C38DA/info.json b/blockchains/ethereum/assets/0x84d4AfE150dA7Ea1165B9e45Ff8Ee4798d7C38DA/info.json deleted file mode 100644 index b114a433601c8..0000000000000 --- a/blockchains/ethereum/assets/0x84d4AfE150dA7Ea1165B9e45Ff8Ee4798d7C38DA/info.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "name": "DMM: USDT", - "website": "https://defimoneymarket.com", - "description": "mToken wrapper for USDT", - "explorer": "https://etherscan.io/token/0x84d4AfE150dA7Ea1165B9e45Ff8Ee4798d7C38DA", - "type": "ERC20", - "symbol": "mUSDT", - "decimals": 6, - "status": "active", - "id": "0x84d4AfE150dA7Ea1165B9e45Ff8Ee4798d7C38DA", - "links": [ - { - "name": "twitter", - "url": "https://twitter.com/DMMDAO" - }, - { - "name": "reddit", - "url": "https://reddit.com/r/DMMDAO" - }, - { - "name": "medium", - "url": "https://medium.com/dmm-dao" - } - ] -} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x84d4AfE150dA7Ea1165B9e45Ff8Ee4798d7C38DA/logo.png b/blockchains/ethereum/assets/0x84d4AfE150dA7Ea1165B9e45Ff8Ee4798d7C38DA/logo.png deleted file mode 100644 index abbaf4d41bc50..0000000000000 Binary files a/blockchains/ethereum/assets/0x84d4AfE150dA7Ea1165B9e45Ff8Ee4798d7C38DA/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x850aAB69f0e0171A9a49dB8BE3E71351c8247Df4/info.json b/blockchains/ethereum/assets/0x850aAB69f0e0171A9a49dB8BE3E71351c8247Df4/info.json new file mode 100644 index 0000000000000..b1e61bd17e60a --- /dev/null +++ b/blockchains/ethereum/assets/0x850aAB69f0e0171A9a49dB8BE3E71351c8247Df4/info.json @@ -0,0 +1,17 @@ +{ + "name": "Konomi", + "type": "ERC20", + "symbol": "KONO", + "decimals": 18, + "website": "http://konomi.network/", + "description": "Konomi is a decentralized liquidity and money market protocol for cross-chain crypto assets. Using Substrate as the development framework, the network aims to provide money markets for assets in the Polkadot ecosystem.", + "explorer": "https://etherscan.io/token/0x850aab69f0e0171a9a49db8be3e71351c8247df4", + "status": "active", + "id": "0x850aAB69f0e0171A9a49dB8BE3E71351c8247Df4", + "links": [ + { + "name": "x", + "url": "https://x.com/KonomiNetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x850aAB69f0e0171A9a49dB8BE3E71351c8247Df4/logo.png b/blockchains/ethereum/assets/0x850aAB69f0e0171A9a49dB8BE3E71351c8247Df4/logo.png new file mode 100644 index 0000000000000..e6c860a4cc7cb Binary files /dev/null and b/blockchains/ethereum/assets/0x850aAB69f0e0171A9a49dB8BE3E71351c8247Df4/logo.png differ diff --git a/blockchains/ethereum/assets/0x853Bb55c1f469902F088A629db8C8803A9BE3857/info.json b/blockchains/ethereum/assets/0x853Bb55c1f469902F088A629db8C8803A9BE3857/info.json index ae5900cff25a3..2ab4e6c3ddaf4 100644 --- a/blockchains/ethereum/assets/0x853Bb55c1f469902F088A629db8C8803A9BE3857/info.json +++ b/blockchains/ethereum/assets/0x853Bb55c1f469902F088A629db8C8803A9BE3857/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/ichifarm/ichi-oneToken" }, { - "name": "twitter", - "url": "https://twitter.com/ichifarm" + "name": "x", + "url": "https://x.com/ichifarm" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x853d955aCEf822Db058eb8505911ED77F175b99e/info.json b/blockchains/ethereum/assets/0x853d955aCEf822Db058eb8505911ED77F175b99e/info.json index 623017a802c25..444942b6b5de4 100644 --- a/blockchains/ethereum/assets/0x853d955aCEf822Db058eb8505911ED77F175b99e/info.json +++ b/blockchains/ethereum/assets/0x853d955aCEf822Db058eb8505911ED77F175b99e/info.json @@ -18,8 +18,8 @@ "url": "https://github.com/FraxFinance" }, { - "name": "twitter", - "url": "https://twitter.com/Frax Finance" + "name": "x", + "url": "https://x.com/Frax Finance" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x858e985126543b5a066C4E8a5DAB0249C1d683f7/info.json b/blockchains/ethereum/assets/0x858e985126543b5a066C4E8a5DAB0249C1d683f7/info.json new file mode 100644 index 0000000000000..94669305aeb69 --- /dev/null +++ b/blockchains/ethereum/assets/0x858e985126543b5a066C4E8a5DAB0249C1d683f7/info.json @@ -0,0 +1,28 @@ +{ + "name": "Kanzhun (Ondo Tokenized)", + "type": "ERC20", + "symbol": "BZon", + "decimals": 18, + "description": "BZon is the Ondo Tokenized version of Kanzhun, giving tokenholders economic exposure similar to holding BZ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x858e985126543b5a066C4E8a5DAB0249C1d683f7", + "status": "active", + "id": "0x858e985126543b5a066C4E8a5DAB0249C1d683f7", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kanzhun-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kanzhun-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x858e985126543b5a066C4E8a5DAB0249C1d683f7/logo.png b/blockchains/ethereum/assets/0x858e985126543b5a066C4E8a5DAB0249C1d683f7/logo.png new file mode 100644 index 0000000000000..b409555846521 Binary files /dev/null and b/blockchains/ethereum/assets/0x858e985126543b5a066C4E8a5DAB0249C1d683f7/logo.png differ diff --git a/blockchains/ethereum/assets/0x85Eee30c52B0b379b046Fb0F85F4f3Dc3009aFEC/info.json b/blockchains/ethereum/assets/0x85Eee30c52B0b379b046Fb0F85F4f3Dc3009aFEC/info.json index b762120dc0942..81625caf4c1d4 100644 --- a/blockchains/ethereum/assets/0x85Eee30c52B0b379b046Fb0F85F4f3Dc3009aFEC/info.json +++ b/blockchains/ethereum/assets/0x85Eee30c52B0b379b046Fb0F85F4f3Dc3009aFEC/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/keep-network/keep-core" }, { - "name": "twitter", - "url": "https://twitter.com/keep_project" + "name": "x", + "url": "https://x.com/keep_project" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0x862caA11AbE48c945D5361E80EaF19348C479240/info.json b/blockchains/ethereum/assets/0x862caA11AbE48c945D5361E80EaF19348C479240/info.json index 3ca62abbe35fd..ccba58548a29a 100644 --- a/blockchains/ethereum/assets/0x862caA11AbE48c945D5361E80EaF19348C479240/info.json +++ b/blockchains/ethereum/assets/0x862caA11AbE48c945D5361E80EaF19348C479240/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/bcheroes" }, { - "name": "twitter", - "url": "https://twitter.com/badcrypto" + "name": "x", + "url": "https://x.com/badcrypto" }, { "name": "discord", @@ -29,4 +29,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x86367c0e517622DAcdab379f2de389c3C9524345/info.json b/blockchains/ethereum/assets/0x86367c0e517622DAcdab379f2de389c3C9524345/info.json index abb9057b1d379..ac61bc301edd4 100644 --- a/blockchains/ethereum/assets/0x86367c0e517622DAcdab379f2de389c3C9524345/info.json +++ b/blockchains/ethereum/assets/0x86367c0e517622DAcdab379f2de389c3C9524345/info.json @@ -14,8 +14,8 @@ "url": "https://reddit.com/r/universalprotocol/" }, { - "name": "twitter", - "url": "https://twitter.com/UPPlatform" + "name": "x", + "url": "https://x.com/UPPlatform" }, { "name": "coingecko", diff --git a/blockchains/ethereum/assets/0x8642A849D0dcb7a15a974794668ADcfbe4794B56/info.json b/blockchains/ethereum/assets/0x8642A849D0dcb7a15a974794668ADcfbe4794B56/info.json index 53fc6fff90902..04bc0775181cd 100644 --- a/blockchains/ethereum/assets/0x8642A849D0dcb7a15a974794668ADcfbe4794B56/info.json +++ b/blockchains/ethereum/assets/0x8642A849D0dcb7a15a974794668ADcfbe4794B56/info.json @@ -1,25 +1,38 @@ { "name": "Prosper", - "website": "https://prosper.so/", - "description": "Cross-chain prediction market and hedging platform that is pioneering the technology of on-chain liquidity aggregation", - "explorer": "https://etherscan.io/token/0x8642A849D0dcb7a15a974794668ADcfbe4794B56", "type": "ERC20", "symbol": "PROS", "decimals": 18, + "website": "https://www.prosper-fi.com/", + "description": "Prosper is a decentralized protocol built for a community dedicated to Bitcoin. It bridges institutional-level Bitcoin mining power to the blockchain and aims to unlock new possibilities through liquidity farming.", + "explorer": "https://etherscan.io/token/0x8642a849d0dcb7a15a974794668adcfbe4794b56", "status": "active", "id": "0x8642A849D0dcb7a15a974794668ADcfbe4794B56", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Prosperpredict" + "name": "x", + "url": "https://x.com/prosperfi_xyz" }, { "name": "telegram", "url": "https://t.me/prosperfi" }, + { + "name": "whitepaper", + "url": "https://docs.prosper-fi.com/" + }, { "name": "coinmarketcap", "url": "https://coinmarketcap.com/currencies/prosper/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/prosper" } + ], + "tags": [ + "defi", + "staking", + "dapp" ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8642A849D0dcb7a15a974794668ADcfbe4794B56/logo.png b/blockchains/ethereum/assets/0x8642A849D0dcb7a15a974794668ADcfbe4794B56/logo.png index 5725990a5e6f0..a42ef0036646b 100644 Binary files a/blockchains/ethereum/assets/0x8642A849D0dcb7a15a974794668ADcfbe4794B56/logo.png and b/blockchains/ethereum/assets/0x8642A849D0dcb7a15a974794668ADcfbe4794B56/logo.png differ diff --git a/blockchains/ethereum/assets/0x86E288793B6B9eb05f38758D166c44bF3d643Bcf/info.json b/blockchains/ethereum/assets/0x86E288793B6B9eb05f38758D166c44bF3d643Bcf/info.json index 19d8f2fd0ece3..9accaecc16516 100644 --- a/blockchains/ethereum/assets/0x86E288793B6B9eb05f38758D166c44bF3d643Bcf/info.json +++ b/blockchains/ethereum/assets/0x86E288793B6B9eb05f38758D166c44bF3d643Bcf/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Creditdefi/CRD" }, { - "name": "twitter", - "url": "https://twitter.com/credit_defi" + "name": "x", + "url": "https://x.com/credit_defi" }, { "name": "facebook", diff --git a/blockchains/ethereum/assets/0x8762db106B2c2A0bccB3A80d1Ed41273552616E8/info.json b/blockchains/ethereum/assets/0x8762db106B2c2A0bccB3A80d1Ed41273552616E8/info.json index 9a5c3f530357d..7b9be55c9ab4a 100644 --- a/blockchains/ethereum/assets/0x8762db106B2c2A0bccB3A80d1Ed41273552616E8/info.json +++ b/blockchains/ethereum/assets/0x8762db106B2c2A0bccB3A80d1Ed41273552616E8/info.json @@ -19,8 +19,8 @@ "url": "https://github.com/reserve-protocol/rsr" }, { - "name": "twitter", - "url": "https://twitter.com/reserveprotocol" + "name": "x", + "url": "https://x.com/reserveprotocol" }, { "name": "blog", diff --git a/blockchains/ethereum/assets/0x877f035c83df617B6C901891F90EEBc78f8CE050/info.json b/blockchains/ethereum/assets/0x877f035c83df617B6C901891F90EEBc78f8CE050/info.json new file mode 100644 index 0000000000000..07c08dadcd4ec --- /dev/null +++ b/blockchains/ethereum/assets/0x877f035c83df617B6C901891F90EEBc78f8CE050/info.json @@ -0,0 +1,21 @@ +{ + "name": "SentAI", + "type": "ERC20", + "symbol": "SENTAI", + "decimals": 18, + "website": "https://sentai.info/", + "description": "SentAI combines AI-driven automation and real-time trend detection to revolutionize how communities engage with blockchain. The platform enables anyone to create, trade, and manage tokens that capture emerging trends before they explode.", + "explorer": "https://etherscan.io/token/0x877f035c83df617B6C901891F90EEBc78f8CE050", + "status": "active", + "id": "0x877f035c83df617B6C901891F90EEBc78f8CE050", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sentai/" + }, + { + "name": "x", + "url": "https://x.com/AIasssss" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x877f035c83df617B6C901891F90EEBc78f8CE050/logo.png b/blockchains/ethereum/assets/0x877f035c83df617B6C901891F90EEBc78f8CE050/logo.png new file mode 100644 index 0000000000000..49e2b4fe80ca4 Binary files /dev/null and b/blockchains/ethereum/assets/0x877f035c83df617B6C901891F90EEBc78f8CE050/logo.png differ diff --git a/blockchains/ethereum/assets/0x8798249c2E607446EfB7Ad49eC89dD1865Ff4272/info.json b/blockchains/ethereum/assets/0x8798249c2E607446EfB7Ad49eC89dD1865Ff4272/info.json index fa9b1f2bb88b7..974964fd56ccb 100644 --- a/blockchains/ethereum/assets/0x8798249c2E607446EfB7Ad49eC89dD1865Ff4272/info.json +++ b/blockchains/ethereum/assets/0x8798249c2E607446EfB7Ad49eC89dD1865Ff4272/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/sushiswap" }, { - "name": "twitter", - "url": "https://twitter.com/SushiSwap" + "name": "x", + "url": "https://x.com/SushiSwap" }, { "name": "discord", diff --git a/blockchains/ethereum/assets/0x87C00817ABe35eD4C093e59043fae488238d2F74/info.json b/blockchains/ethereum/assets/0x87C00817ABe35eD4C093e59043fae488238d2F74/info.json index 4c6626e51493d..01b869a9c6ee8 100644 --- a/blockchains/ethereum/assets/0x87C00817ABe35eD4C093e59043fae488238d2F74/info.json +++ b/blockchains/ethereum/assets/0x87C00817ABe35eD4C093e59043fae488238d2F74/info.json @@ -10,8 +10,8 @@ "id": "0x87C00817ABe35eD4C093e59043fae488238d2F74", "links": [ { - "name": "twitter", - "url": "https://twitter.com/yoinknetwork" + "name": "x", + "url": "https://x.com/yoinknetwork" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x87F5F9eBE40786D49D35E1B5997b07cCAA8ADbFF/info.json b/blockchains/ethereum/assets/0x87F5F9eBE40786D49D35E1B5997b07cCAA8ADbFF/info.json index f490c9a8a7bcd..09f8f8e3d9f51 100644 --- a/blockchains/ethereum/assets/0x87F5F9eBE40786D49D35E1B5997b07cCAA8ADbFF/info.json +++ b/blockchains/ethereum/assets/0x87F5F9eBE40786D49D35E1B5997b07cCAA8ADbFF/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/RebasedToken/Rebased2" }, { - "name": "twitter", - "url": "https://twitter.com/Rebased_" + "name": "x", + "url": "https://x.com/Rebased_" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x881d4C8618D68872fA404518B2460eA839A02a6a/info.json b/blockchains/ethereum/assets/0x881d4C8618D68872fA404518B2460eA839A02a6a/info.json new file mode 100644 index 0000000000000..a75cf3a667422 --- /dev/null +++ b/blockchains/ethereum/assets/0x881d4C8618D68872fA404518B2460eA839A02a6a/info.json @@ -0,0 +1,28 @@ +{ + "name": "YAWN", + "type": "ERC20", + "symbol": "YAWN", + "decimals": 18, + "website": "https://yawnsworld.com", + "description": "Welcome to Yawn’s World!", + "explorer": "https://etherscan.io/token/0x881d4C8618D68872fA404518B2460eA839A02a6a", + "status": "active", + "id": "0x881d4C8618D68872fA404518B2460eA839A02a6a", + "links": [ + { + "name": "telegram", + "url": "https://t.me/yawnsworld" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/yawn/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/yawn" + } + ], + "tags": [ + "memes" + ] +} diff --git a/blockchains/ethereum/assets/0x881d4C8618D68872fA404518B2460eA839A02a6a/logo.png b/blockchains/ethereum/assets/0x881d4C8618D68872fA404518B2460eA839A02a6a/logo.png new file mode 100644 index 0000000000000..ba2d9537e05fd Binary files /dev/null and b/blockchains/ethereum/assets/0x881d4C8618D68872fA404518B2460eA839A02a6a/logo.png differ diff --git a/blockchains/ethereum/assets/0x88479186BAC914E4313389a64881F5ed0153C765/info.json b/blockchains/ethereum/assets/0x88479186BAC914E4313389a64881F5ed0153C765/info.json index 0cbadd9a5c7a6..50f67573989e0 100644 --- a/blockchains/ethereum/assets/0x88479186BAC914E4313389a64881F5ed0153C765/info.json +++ b/blockchains/ethereum/assets/0x88479186BAC914E4313389a64881F5ed0153C765/info.json @@ -10,8 +10,8 @@ "id": "0x88479186BAC914E4313389a64881F5ed0153C765", "links": [ { - "name": "twitter", - "url": "https://twitter.com/squid_grow" + "name": "x", + "url": "https://x.com/squid_grow" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x88703C1E71f44a2D329C99e8E112F7a4E7dD6312/info.json b/blockchains/ethereum/assets/0x88703C1E71f44a2D329C99e8E112F7a4E7dD6312/info.json new file mode 100644 index 0000000000000..34df2bbde5751 --- /dev/null +++ b/blockchains/ethereum/assets/0x88703C1E71f44a2D329C99e8E112F7a4E7dD6312/info.json @@ -0,0 +1,28 @@ +{ + "name": "iShares Flexible Income Active ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "BINCon", + "decimals": 18, + "description": "BINCon is the Ondo Tokenized version of the iShares Flexible Income Active ETF, giving tokenholders economic exposure similar to holding BINC and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x88703C1E71f44a2D329C99e8E112F7a4E7dD6312", + "status": "active", + "id": "0x88703C1E71f44a2D329C99e8E112F7a4E7dD6312", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-flexible-income-active-etf-ondo-tokenized-etf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-flexible-income-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x88703C1E71f44a2D329C99e8E112F7a4E7dD6312/logo.png b/blockchains/ethereum/assets/0x88703C1E71f44a2D329C99e8E112F7a4E7dD6312/logo.png new file mode 100644 index 0000000000000..8c3d69ffb4bb3 Binary files /dev/null and b/blockchains/ethereum/assets/0x88703C1E71f44a2D329C99e8E112F7a4E7dD6312/logo.png differ diff --git a/blockchains/ethereum/assets/0x88800092fF476844f74dC2FC427974BBee2794Ae/info.json b/blockchains/ethereum/assets/0x88800092fF476844f74dC2FC427974BBee2794Ae/info.json index e60f7a7ec0897..170ecef30143d 100644 --- a/blockchains/ethereum/assets/0x88800092fF476844f74dC2FC427974BBee2794Ae/info.json +++ b/blockchains/ethereum/assets/0x88800092fF476844f74dC2FC427974BBee2794Ae/info.json @@ -19,12 +19,8 @@ "url": "https://github.com/AmbireTech/wallet" }, { - "name": "twitter", - "url": "https://twitter.com/AmbireWallet" - }, - { - "name": "reddit", - "url": "https://reddit.com/r/AdEx" + "name": "x", + "url": "https://x.com/AmbireWallet" }, { "name": "blog", @@ -34,17 +30,13 @@ "name": "telegram", "url": "https://t.me/AmbireOfficial" }, - { - "name": "discord", - "url": "https://discord.com/invite/nMBGJsb" - }, { "name": "facebook", "url": "https://facebook.com/AmbireAdEx" }, { "name": "whitepaper", - "url": "https://ambire.notion.site/ambire/Ambire-Wallet-Whitepaper-d502e54caf584fe7a67f9b0a018cd10f" + "url": "https://ambire.com/whitepaper" }, { "name": "coinmarketcap", @@ -55,4 +47,4 @@ "url": "https://coingecko.com/coins/ambire-wallet" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8881562783028F5c1BCB985d2283D5E170D88888/info.json b/blockchains/ethereum/assets/0x8881562783028F5c1BCB985d2283D5E170D88888/info.json new file mode 100644 index 0000000000000..21a6b878a721b --- /dev/null +++ b/blockchains/ethereum/assets/0x8881562783028F5c1BCB985d2283D5E170D88888/info.json @@ -0,0 +1,21 @@ +{ + "name": "Shuffle", + "type": "ERC20", + "symbol": "SHFL", + "decimals": 18, + "website": "https://shuffle.com/", + "description": "SHFL token is the native utility token Shuffle.com, a comprehensive crypto casino platform. Designed to enhance user engagement and platform growth, SHFL serves multiple functions within the Shuffle ecosystem including as a wager asset as well as an airdrop reward.", + "explorer": "https://etherscan.io/token/0x8881562783028f5c1bcb985d2283d5e170d88888", + "status": "active", + "id": "0x8881562783028F5c1BCB985d2283D5E170D88888", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/shuffle" + }, + { + "name": "x", + "url": "https://x.com/shufflecom" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8881562783028F5c1BCB985d2283D5E170D88888/logo.png b/blockchains/ethereum/assets/0x8881562783028F5c1BCB985d2283D5E170D88888/logo.png new file mode 100644 index 0000000000000..a19687740e56e Binary files /dev/null and b/blockchains/ethereum/assets/0x8881562783028F5c1BCB985d2283D5E170D88888/logo.png differ diff --git a/blockchains/ethereum/assets/0x888888848B652B3E3a0f34c96E00EEC0F3a23F72/info.json b/blockchains/ethereum/assets/0x888888848B652B3E3a0f34c96E00EEC0F3a23F72/info.json index a920aaab92e90..2f7e3dba7a711 100644 --- a/blockchains/ethereum/assets/0x888888848B652B3E3a0f34c96E00EEC0F3a23F72/info.json +++ b/blockchains/ethereum/assets/0x888888848B652B3E3a0f34c96E00EEC0F3a23F72/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/AlienWorldsOffical" }, { - "name": "twitter", - "url": "https://twitter.com/alienworlds" + "name": "x", + "url": "https://x.com/alienworlds" }, { "name": "coinmarketcap", diff --git a/blockchains/ethereum/assets/0x889eFB523cc39590B8483EB9491890AC71407f64/info.json b/blockchains/ethereum/assets/0x889eFB523cc39590B8483EB9491890AC71407f64/info.json index c5973e8c6f2f4..002627fb60015 100644 --- a/blockchains/ethereum/assets/0x889eFB523cc39590B8483EB9491890AC71407f64/info.json +++ b/blockchains/ethereum/assets/0x889eFB523cc39590B8483EB9491890AC71407f64/info.json @@ -10,8 +10,8 @@ "id": "0x889eFB523cc39590B8483EB9491890AC71407f64", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MoonJuice_xyz" + "name": "x", + "url": "https://x.com/MoonJuice_xyz" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x88A9A52F944315D5B4e917b9689e65445C401E83/info.json b/blockchains/ethereum/assets/0x88A9A52F944315D5B4e917b9689e65445C401E83/info.json index 3a84475b35d16..3d487fa98cbce 100644 --- a/blockchains/ethereum/assets/0x88A9A52F944315D5B4e917b9689e65445C401E83/info.json +++ b/blockchains/ethereum/assets/0x88A9A52F944315D5B4e917b9689e65445C401E83/info.json @@ -14,8 +14,8 @@ "url": "https://fearnft.games/docs/fear-nfts-whitepaper.pdf" }, { - "name": "twitter", - "url": "https://twitter.com/fearnfts" + "name": "x", + "url": "https://x.com/fearnfts" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x88Ce174C655B6d11210A069B2c106632DaBDB068/info.json b/blockchains/ethereum/assets/0x88Ce174C655B6d11210A069B2c106632DaBDB068/info.json new file mode 100644 index 0000000000000..b1924d439f7a0 --- /dev/null +++ b/blockchains/ethereum/assets/0x88Ce174C655B6d11210A069B2c106632DaBDB068/info.json @@ -0,0 +1,17 @@ +{ + "name": "Yawn's World", + "website": "https://yawnsworld.com/", + "description": "He slept through his chance to join the Boys' Club, a regret he's carried ever since. Now, Yawn is launching $YAWN, the first meme token letting holders benefit from Yawn-branded ventures", + "explorer": "https://etherscan.io/token/0x88Ce174C655B6d11210A069B2c106632DaBDB068", + "type": "ERC20", + "symbol": "YAWN", + "decimals": 18, + "status": "active", + "id": "0x88Ce174C655B6d11210A069B2c106632DaBDB068", + "links": [ + { + "name": "x", + "url": "https://x.com/yawnsworld" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x88Ce174C655B6d11210A069B2c106632DaBDB068/logo.png b/blockchains/ethereum/assets/0x88Ce174C655B6d11210A069B2c106632DaBDB068/logo.png new file mode 100644 index 0000000000000..8a4c7022f5607 Binary files /dev/null and b/blockchains/ethereum/assets/0x88Ce174C655B6d11210A069B2c106632DaBDB068/logo.png differ diff --git a/blockchains/ethereum/assets/0x88EF27e69108B2633F8E1C184CC37940A075cC02/info.json b/blockchains/ethereum/assets/0x88EF27e69108B2633F8E1C184CC37940A075cC02/info.json index ee2fc52bd6e85..afbad7ab62459 100644 --- a/blockchains/ethereum/assets/0x88EF27e69108B2633F8E1C184CC37940A075cC02/info.json +++ b/blockchains/ethereum/assets/0x88EF27e69108B2633F8E1C184CC37940A075cC02/info.json @@ -6,9 +6,10 @@ "type": "ERC20", "symbol": "DEGO", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x88EF27e69108B2633F8E1C184CC37940A075cC02", "tags": [ - "governance" + "governance", + "defi" ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x88EF27e69108B2633F8E1C184CC37940A075cC02/logo.png b/blockchains/ethereum/assets/0x88EF27e69108B2633F8E1C184CC37940A075cC02/logo.png deleted file mode 100644 index 8f1f43a328283..0000000000000 Binary files a/blockchains/ethereum/assets/0x88EF27e69108B2633F8E1C184CC37940A075cC02/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e/info.json b/blockchains/ethereum/assets/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e/info.json new file mode 100644 index 0000000000000..755fff1725028 --- /dev/null +++ b/blockchains/ethereum/assets/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e/info.json @@ -0,0 +1,24 @@ +{ + "name": "Abbott tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Abbott xStock (ABTx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. ABTx tracks the price of Abbott Laboratories (the underlying). ABTx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Abbott Laboratories, whilst maintaining the benefits of blockchain technology. Key Benefits Abbott is a global healthcare company focused on developing and delivering life-changing technologies in areas like diagnostics, medical devices, nutritional products, and branded generic pharmaceuticals.", + "explorer": "https://etherscan.io/token/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e", + "type": "ERC20", + "symbol": "ABTX", + "decimals": 18, + "status": "active", + "id": "0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abbott-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e/logo.png b/blockchains/ethereum/assets/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e/logo.png new file mode 100644 index 0000000000000..c82cd60e9df36 Binary files /dev/null and b/blockchains/ethereum/assets/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e/logo.png differ diff --git a/blockchains/ethereum/assets/0x89A8c847f41C0dfA6c8B88638bACca8a0b777Da7/info.json b/blockchains/ethereum/assets/0x89A8c847f41C0dfA6c8B88638bACca8a0b777Da7/info.json new file mode 100644 index 0000000000000..fe653172facd6 --- /dev/null +++ b/blockchains/ethereum/assets/0x89A8c847f41C0dfA6c8B88638bACca8a0b777Da7/info.json @@ -0,0 +1,17 @@ +{ + "name": "Elixir", + "type": "ERC20", + "symbol": "ELX", + "decimals": 18, + "website": "https://www.elixir.xyz/", + "description": "The Elixir network is a new primitive, purpose-built to power the next generation of institutional liquidity. Elixir powers deUSD – a fully collateralized, yield-bearing synthetic dollar. Elixir is the most widely adopted network by RWAs and secured by 30,000+ global validators.", + "explorer": "https://etherscan.io/token/0x89A8c847f41C0dfA6c8B88638bACca8a0b777Da7", + "status": "active", + "id": "0x89A8c847f41C0dfA6c8B88638bACca8a0b777Da7", + "links": [ + { + "name": "x", + "url": "https://x.com/elixir" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x89A8c847f41C0dfA6c8B88638bACca8a0b777Da7/logo.png b/blockchains/ethereum/assets/0x89A8c847f41C0dfA6c8B88638bACca8a0b777Da7/logo.png new file mode 100644 index 0000000000000..77d6623601683 Binary files /dev/null and b/blockchains/ethereum/assets/0x89A8c847f41C0dfA6c8B88638bACca8a0b777Da7/logo.png differ diff --git a/blockchains/ethereum/assets/0x89B69F2d1adffA9A253d40840B6Baa7fC903D697/info.json b/blockchains/ethereum/assets/0x89B69F2d1adffA9A253d40840B6Baa7fC903D697/info.json new file mode 100644 index 0000000000000..cc28e8e6cf273 --- /dev/null +++ b/blockchains/ethereum/assets/0x89B69F2d1adffA9A253d40840B6Baa7fC903D697/info.json @@ -0,0 +1,48 @@ +{ + "name": "Dione (DIONE)", + "type": "ERC20", + "symbol": "DIONE", + "decimals": 9, + "website": "https://www.dioneprotocol.com", + "description": "Dione Protocol is spearheading a groundbreaking initiative to revolutionize the energy industry through an incentivized energy trading ecosystem on an EVM-compatible L1 blockchain.", + "explorer": "https://etherscan.io/token/0x89B69F2d1adffA9A253d40840B6Baa7fC903D697", + "status": "active", + "id": "0x89B69F2d1adffA9A253d40840B6Baa7fC903D697", + "links": [ + { + "name": "x", + "url": "https://x.com/DioneProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/DioneProtocol" + }, + { + "name": "whitepaper", + "url": "https://dioneprotocol.com/whitepaper.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/DioneProtocol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dione" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dione-protocol/" + }, + { + "name": "medium", + "url": "https://medium.com/@dioneprotocol" + }, + { + "name": "github", + "url": "https://github.com/DioneProtocol" + } + ], + "tags": [ + "staking-native" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x89B69F2d1adffA9A253d40840B6Baa7fC903D697/logo.png b/blockchains/ethereum/assets/0x89B69F2d1adffA9A253d40840B6Baa7fC903D697/logo.png new file mode 100644 index 0000000000000..40be38ed056ce Binary files /dev/null and b/blockchains/ethereum/assets/0x89B69F2d1adffA9A253d40840B6Baa7fC903D697/logo.png differ diff --git a/blockchains/ethereum/assets/0x8AB2ff0116A279a99950C66A12298962D152B83c/info.json b/blockchains/ethereum/assets/0x8AB2ff0116A279a99950C66A12298962D152B83c/info.json new file mode 100644 index 0000000000000..540eaf2e41d2f --- /dev/null +++ b/blockchains/ethereum/assets/0x8AB2ff0116A279a99950C66A12298962D152B83c/info.json @@ -0,0 +1,25 @@ +{ + "name": "Ordiswap", + "website": "https://ordiswap.fi/", + "description": "Ordiswap is a pioneering protocol, merges the worlds of Bitcoin and DeFi by introducing the first AMM on Bitcoin's native layer through off-chain balance state logic.", + "explorer": "https://etherscan.io/token/0x8AB2ff0116A279a99950C66A12298962D152B83c", + "type": "ERC20", + "symbol": "ORDS", + "decimals": 18, + "status": "active", + "id": "0x8AB2ff0116A279a99950C66A12298962D152B83c", + "links": [ + { + "name": "x", + "url": "https://x.com/OrdiswapLabs" + }, + { + "name": "telegram", + "url": "https://t.me/ordiswaplabs" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ordiswap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8AB2ff0116A279a99950C66A12298962D152B83c/logo.png b/blockchains/ethereum/assets/0x8AB2ff0116A279a99950C66A12298962D152B83c/logo.png new file mode 100644 index 0000000000000..6003c9af77b82 Binary files /dev/null and b/blockchains/ethereum/assets/0x8AB2ff0116A279a99950C66A12298962D152B83c/logo.png differ diff --git a/blockchains/ethereum/assets/0x8AC6AD49b3344024834f373f3CA491f22ceb952e/info.json b/blockchains/ethereum/assets/0x8AC6AD49b3344024834f373f3CA491f22ceb952e/info.json new file mode 100644 index 0000000000000..642eb64b54962 --- /dev/null +++ b/blockchains/ethereum/assets/0x8AC6AD49b3344024834f373f3CA491f22ceb952e/info.json @@ -0,0 +1,28 @@ +{ + "name": "B2Gold (Ondo Tokenized)", + "type": "ERC20", + "symbol": "BTGon", + "decimals": 18, + "description": "BTGon is the Ondo Tokenized version of B2Gold, giving tokenholders economic exposure similar to holding BTG and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x8AC6AD49b3344024834f373f3CA491f22ceb952e", + "status": "active", + "id": "0x8AC6AD49b3344024834f373f3CA491f22ceb952e", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/b2gold-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/b2gold-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8AC6AD49b3344024834f373f3CA491f22ceb952e/logo.png b/blockchains/ethereum/assets/0x8AC6AD49b3344024834f373f3CA491f22ceb952e/logo.png new file mode 100644 index 0000000000000..c5348399e5ca8 Binary files /dev/null and b/blockchains/ethereum/assets/0x8AC6AD49b3344024834f373f3CA491f22ceb952e/logo.png differ diff --git a/blockchains/ethereum/assets/0x8AFE4055Ebc86Bd2AFB3940c0095C9aca511d852/info.json b/blockchains/ethereum/assets/0x8AFE4055Ebc86Bd2AFB3940c0095C9aca511d852/info.json new file mode 100644 index 0000000000000..dd53d11bd3db1 --- /dev/null +++ b/blockchains/ethereum/assets/0x8AFE4055Ebc86Bd2AFB3940c0095C9aca511d852/info.json @@ -0,0 +1,21 @@ +{ + "name": "Arbius", + "website": "https://arbius.ai/", + "description": "Arbius is a decentralized network for machine learning and a token with a fixed supply like Bitcoin.", + "explorer": "https://etherscan.io/token/0x8afe4055ebc86bd2afb3940c0095c9aca511d852", + "type": "ERC20", + "symbol": "AIUS", + "decimals": 18, + "status": "active", + "id": "0x8AFE4055Ebc86Bd2AFB3940c0095C9aca511d852", + "links": [ + { + "name": "x", + "url": "https://x.com/arbius_ai" + }, + { + "name": "telegram", + "url": "https://t.me/arbius_ai" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8AFE4055Ebc86Bd2AFB3940c0095C9aca511d852/logo.png b/blockchains/ethereum/assets/0x8AFE4055Ebc86Bd2AFB3940c0095C9aca511d852/logo.png new file mode 100644 index 0000000000000..bfc1ab0e5f586 Binary files /dev/null and b/blockchains/ethereum/assets/0x8AFE4055Ebc86Bd2AFB3940c0095C9aca511d852/logo.png differ diff --git a/blockchains/ethereum/assets/0x8Ae6AE8F172d7fc103CCfa5890883d6fE46038C9/info.json b/blockchains/ethereum/assets/0x8Ae6AE8F172d7fc103CCfa5890883d6fE46038C9/info.json index cb554dae748af..a620827cea8b6 100644 --- a/blockchains/ethereum/assets/0x8Ae6AE8F172d7fc103CCfa5890883d6fE46038C9/info.json +++ b/blockchains/ethereum/assets/0x8Ae6AE8F172d7fc103CCfa5890883d6fE46038C9/info.json @@ -10,8 +10,8 @@ "id": "0x8Ae6AE8F172d7fc103CCfa5890883d6fE46038C9", "links": [ { - "name": "twitter", - "url": "https://twitter.com/HelixNebulahelp" + "name": "x", + "url": "https://x.com/HelixNebulahelp" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8B39B70E39Aa811b69365398e0aACe9bee238AEb/info.json b/blockchains/ethereum/assets/0x8B39B70E39Aa811b69365398e0aACe9bee238AEb/info.json index cb9d65d1d95b9..5f3546a9b0661 100644 --- a/blockchains/ethereum/assets/0x8B39B70E39Aa811b69365398e0aACe9bee238AEb/info.json +++ b/blockchains/ethereum/assets/0x8B39B70E39Aa811b69365398e0aACe9bee238AEb/info.json @@ -10,8 +10,8 @@ "id": "0x8B39B70E39Aa811b69365398e0aACe9bee238AEb", "links": [ { - "name": "twitter", - "url": "https://twitter.com/polkafoundry" + "name": "x", + "url": "https://x.com/polkafoundry" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x8Ce34F749796F82A6990fFa2d80622ef75CA7aD5/info.json b/blockchains/ethereum/assets/0x8Ce34F749796F82A6990fFa2d80622ef75CA7aD5/info.json new file mode 100644 index 0000000000000..d0a2e3e0f4000 --- /dev/null +++ b/blockchains/ethereum/assets/0x8Ce34F749796F82A6990fFa2d80622ef75CA7aD5/info.json @@ -0,0 +1,24 @@ +{ + "name": "Northrop Grumman (Ondo Tokenized)", + "type": "ERC20", + "symbol": "NOCon", + "decimals": 18, + "description": "NOCon is the Ondo Tokenized version of Northrop Grumman, giving tokenholders economic exposure similar to holding NOC and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x8Ce34F749796F82A6990fFa2d80622ef75CA7aD5", + "status": "active", + "id": "0x8Ce34F749796F82A6990fFa2d80622ef75CA7aD5", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/northrop-grumman-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8Ce34F749796F82A6990fFa2d80622ef75CA7aD5/logo.png b/blockchains/ethereum/assets/0x8Ce34F749796F82A6990fFa2d80622ef75CA7aD5/logo.png new file mode 100644 index 0000000000000..0ad397a4b13aa Binary files /dev/null and b/blockchains/ethereum/assets/0x8Ce34F749796F82A6990fFa2d80622ef75CA7aD5/logo.png differ diff --git a/blockchains/ethereum/assets/0x8D983cb9388EaC77af0474fA441C4815500Cb7BB/info.json b/blockchains/ethereum/assets/0x8D983cb9388EaC77af0474fA441C4815500Cb7BB/info.json new file mode 100644 index 0000000000000..ac1bc35d84de8 --- /dev/null +++ b/blockchains/ethereum/assets/0x8D983cb9388EaC77af0474fA441C4815500Cb7BB/info.json @@ -0,0 +1,25 @@ +{ + "name": "Cosmos", + "type": "ERC20", + "symbol": "ATOM", + "decimals": 6, + "description": "In a nutshell, Cosmos bills itself as a project that solves some of the “hardest problems” facing the blockchain industry. It aims to offer an antidote to “slow, expensive, unscalable and environmentally harmful” proof-of-work protocols, like those used by Bitcoin, by offering an ecosystem of connected blockchains.", + "website": "https://cosmos.network/", + "explorer": "https://etherscan.io/address/0x8D983cb9388EaC77af0474fA441C4815500Cb7BB", + "id": "0x8D983cb9388EaC77af0474fA441C4815500Cb7BB", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/cosmos" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cosmos/" + } + ], + "tags": [ + "governance" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8D983cb9388EaC77af0474fA441C4815500Cb7BB/logo.png b/blockchains/ethereum/assets/0x8D983cb9388EaC77af0474fA441C4815500Cb7BB/logo.png new file mode 100644 index 0000000000000..a15a339a84526 Binary files /dev/null and b/blockchains/ethereum/assets/0x8D983cb9388EaC77af0474fA441C4815500Cb7BB/logo.png differ diff --git a/blockchains/ethereum/assets/0x8DBa4bC68126Bd186Fbb62C976539D1558c9Fe73/info.json b/blockchains/ethereum/assets/0x8DBa4bC68126Bd186Fbb62C976539D1558c9Fe73/info.json new file mode 100644 index 0000000000000..ca6246d658cdb --- /dev/null +++ b/blockchains/ethereum/assets/0x8DBa4bC68126Bd186Fbb62C976539D1558c9Fe73/info.json @@ -0,0 +1,21 @@ +{ + "name": "pepe", + "type": "ERC20", + "symbol": "PEPEBOMB", + "decimals": 18, + "website": "https://pepebomb.org/", + "description": "PepeBomb is an innovative digital currency project issued on the Ethereum blockchain as an ERC-20 standard token.", + "explorer": "https://etherscan.io/token/0x8dba4bc68126bd186fbb62c976539d1558c9fe73", + "status": "active", + "id": "0x8DBa4bC68126Bd186Fbb62C976539D1558c9Fe73", + "links": [ + { + "name": "x", + "url": "https://x.com/pepebombeth" + }, + { + "name": "telegram", + "url": "https://t.me/PEPE_Bomb" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8DBa4bC68126Bd186Fbb62C976539D1558c9Fe73/logo.png b/blockchains/ethereum/assets/0x8DBa4bC68126Bd186Fbb62C976539D1558c9Fe73/logo.png new file mode 100644 index 0000000000000..343c6e1f94c91 Binary files /dev/null and b/blockchains/ethereum/assets/0x8DBa4bC68126Bd186Fbb62C976539D1558c9Fe73/logo.png differ diff --git a/blockchains/ethereum/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/info.json b/blockchains/ethereum/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/info.json new file mode 100644 index 0000000000000..94a2cd7e2cc42 --- /dev/null +++ b/blockchains/ethereum/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/info.json @@ -0,0 +1,21 @@ +{ + "name": "VANRY", + "type": "ERC20", + "symbol": "VANRY", + "decimals": 18, + "website": "https://vanarchain.com/", + "description": "VANRY is the official token of the VANAR blockchain. Vanar offers a carbon-neutral, high-speed and low-cost L1 chain designed for entertainment and mainstream.", + "explorer": "https://etherscan.io/token/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624", + "status": "active", + "id": "0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624", + "links": [ + { + "name": "x", + "url": "https://x.com/vanarchain" + }, + { + "name": "telegram", + "url": "https://t.me/vanarchain" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/logo.png b/blockchains/ethereum/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/logo.png new file mode 100644 index 0000000000000..3bc1cf77897db Binary files /dev/null and b/blockchains/ethereum/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/logo.png differ diff --git a/blockchains/ethereum/assets/0x8De5D49725550f7b318b2FA0f1B1F118E98E8D0F/info.json b/blockchains/ethereum/assets/0x8De5D49725550f7b318b2FA0f1B1F118E98E8D0F/info.json new file mode 100644 index 0000000000000..0fc7aee76c05b --- /dev/null +++ b/blockchains/ethereum/assets/0x8De5D49725550f7b318b2FA0f1B1F118E98E8D0F/info.json @@ -0,0 +1,28 @@ +{ + "name": "iShares 0-3 Month Treasury Bond ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "SGOVon", + "decimals": 18, + "description": "SGOVon is the Ondo Tokenized version of the iShares 0-3 Month Treasury Bond ETF, giving tokenholders economic exposure similar to holding SGOV and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x8De5D49725550f7b318b2FA0f1B1F118E98E8D0F", + "status": "active", + "id": "0x8De5D49725550f7b318b2FA0f1B1F118E98E8D0F", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-0-3-month-treasury-bond-etf-ondo-tokenized-etf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-0-3-month-treasury-bond-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8De5D49725550f7b318b2FA0f1B1F118E98E8D0F/logo.png b/blockchains/ethereum/assets/0x8De5D49725550f7b318b2FA0f1B1F118E98E8D0F/logo.png new file mode 100644 index 0000000000000..5fd5a776268b0 Binary files /dev/null and b/blockchains/ethereum/assets/0x8De5D49725550f7b318b2FA0f1B1F118E98E8D0F/logo.png differ diff --git a/blockchains/ethereum/assets/0x8E4d27d772099e18900CAF5Dcc36Cb612DcEE886/info.json b/blockchains/ethereum/assets/0x8E4d27d772099e18900CAF5Dcc36Cb612DcEE886/info.json new file mode 100644 index 0000000000000..40693785c41a3 --- /dev/null +++ b/blockchains/ethereum/assets/0x8E4d27d772099e18900CAF5Dcc36Cb612DcEE886/info.json @@ -0,0 +1,21 @@ +{ + "name": "Architex", + "website": "https://architex.ai", + "description": "Architex leverages decentralized ASIC & GPU hardware to enhance blockchain and AI networks, including Bitcoin, Bittensor, and Morpheus.", + "explorer": "https://etherscan.io/token/0x8e4d27d772099e18900caf5dcc36cb612dcee886", + "type": "ERC20", + "symbol": "ARCX", + "decimals": 18, + "status": "active", + "id": "0x8E4d27d772099e18900CAF5Dcc36Cb612DcEE886", + "links": [ + { + "name": "x", + "url": "https://x.com/Architex_ai" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/architex" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8E4d27d772099e18900CAF5Dcc36Cb612DcEE886/logo.png b/blockchains/ethereum/assets/0x8E4d27d772099e18900CAF5Dcc36Cb612DcEE886/logo.png new file mode 100644 index 0000000000000..ec37396be217e Binary files /dev/null and b/blockchains/ethereum/assets/0x8E4d27d772099e18900CAF5Dcc36Cb612DcEE886/logo.png differ diff --git a/blockchains/ethereum/assets/0x8E6A5338eaC4B6fE8D51a7653Fad3B9DA755Eea6/info.json b/blockchains/ethereum/assets/0x8E6A5338eaC4B6fE8D51a7653Fad3B9DA755Eea6/info.json new file mode 100644 index 0000000000000..586684fc2d3a0 --- /dev/null +++ b/blockchains/ethereum/assets/0x8E6A5338eaC4B6fE8D51a7653Fad3B9DA755Eea6/info.json @@ -0,0 +1,28 @@ +{ + "name": "ConocoPhillips (Ondo Tokenized)", + "type": "ERC20", + "symbol": "COPon", + "decimals": 18, + "description": "COPon is the Ondo Tokenized version of ConocoPhillips, giving tokenholders economic exposure similar to holding COP and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x8E6A5338eaC4B6fE8D51a7653Fad3B9DA755Eea6", + "status": "active", + "id": "0x8E6A5338eaC4B6fE8D51a7653Fad3B9DA755Eea6", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/conocophillips-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/conocophillips-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8E6A5338eaC4B6fE8D51a7653Fad3B9DA755Eea6/logo.png b/blockchains/ethereum/assets/0x8E6A5338eaC4B6fE8D51a7653Fad3B9DA755Eea6/logo.png new file mode 100644 index 0000000000000..95d8e65391e6a Binary files /dev/null and b/blockchains/ethereum/assets/0x8E6A5338eaC4B6fE8D51a7653Fad3B9DA755Eea6/logo.png differ diff --git a/blockchains/ethereum/assets/0x8E6cd950Ad6ba651F6DD608Dc70e5886B1AA6B24/info.json b/blockchains/ethereum/assets/0x8E6cd950Ad6ba651F6DD608Dc70e5886B1AA6B24/info.json index 645cbcd492e18..061ccbc911cf7 100644 --- a/blockchains/ethereum/assets/0x8E6cd950Ad6ba651F6DD608Dc70e5886B1AA6B24/info.json +++ b/blockchains/ethereum/assets/0x8E6cd950Ad6ba651F6DD608Dc70e5886B1AA6B24/info.json @@ -10,8 +10,8 @@ "id": "0x8E6cd950Ad6ba651F6DD608Dc70e5886B1AA6B24", "links": [ { - "name": "twitter", - "url": "https://twitter.com/starlinketh" + "name": "x", + "url": "https://x.com/starlinketh" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0x8E82a0d7347329703FB6c6A745B1C2b3aBB1658c/info.json b/blockchains/ethereum/assets/0x8E82a0d7347329703FB6c6A745B1C2b3aBB1658c/info.json new file mode 100644 index 0000000000000..a5b59691ca3ca --- /dev/null +++ b/blockchains/ethereum/assets/0x8E82a0d7347329703FB6c6A745B1C2b3aBB1658c/info.json @@ -0,0 +1,24 @@ +{ + "name": "SolarEdge Technologies (Ondo Tokenized)", + "type": "ERC20", + "symbol": "SEDGon", + "decimals": 18, + "description": "SEDGon is the Ondo Tokenized version of SolarEdge Technologies, giving tokenholders economic exposure similar to holding SEDG and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x8E82a0d7347329703FB6c6A745B1C2b3aBB1658c", + "status": "active", + "id": "0x8E82a0d7347329703FB6c6A745B1C2b3aBB1658c", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/solaredge-technologies-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8E82a0d7347329703FB6c6A745B1C2b3aBB1658c/logo.png b/blockchains/ethereum/assets/0x8E82a0d7347329703FB6c6A745B1C2b3aBB1658c/logo.png new file mode 100644 index 0000000000000..b251792abd31e Binary files /dev/null and b/blockchains/ethereum/assets/0x8E82a0d7347329703FB6c6A745B1C2b3aBB1658c/logo.png differ diff --git a/blockchains/ethereum/assets/0x8E870D67F660D95d5be530380D0eC0bd388289E1/info.json b/blockchains/ethereum/assets/0x8E870D67F660D95d5be530380D0eC0bd388289E1/info.json index 82f0f1d3f443e..7a94f71051106 100644 --- a/blockchains/ethereum/assets/0x8E870D67F660D95d5be530380D0eC0bd388289E1/info.json +++ b/blockchains/ethereum/assets/0x8E870D67F660D95d5be530380D0eC0bd388289E1/info.json @@ -18,8 +18,8 @@ "url": "https://github.com/paxosglobal/pax-contracts" }, { - "name": "twitter", - "url": "https://twitter.com/PaxosStandard" + "name": "x", + "url": "https://x.com/PaxosStandard" }, { "name": "blog", diff --git a/blockchains/ethereum/assets/0x8E964e35A76103Af4C7D7318e1B1a82c682ae296/info.json b/blockchains/ethereum/assets/0x8E964e35A76103Af4C7D7318e1B1a82c682ae296/info.json new file mode 100644 index 0000000000000..1a9946a15a8e9 --- /dev/null +++ b/blockchains/ethereum/assets/0x8E964e35A76103Af4C7D7318e1B1a82c682ae296/info.json @@ -0,0 +1,21 @@ +{ + "name": "Fellaz", + "type": "ERC20", + "symbol": "FLZ", + "decimals": 18, + "website": "https://fellaz.io/", + "description": "Fellaz introduces an immersive multi-chain Web3 entertainment ecosystem that integrates the metaverse, Web3 technologies, and a robust tokenomics framework.", + "explorer": "https://etherscan.io/token/0x8e964e35a76103af4c7d7318e1b1a82c682ae296", + "status": "active", + "id": "0x8E964e35A76103Af4C7D7318e1B1a82c682ae296", + "links": [ + { + "name": "x", + "url": "https://x.com/FellazXYZ" + }, + { + "name": "telegram", + "url": "https://t.me/official_fellaz" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8E964e35A76103Af4C7D7318e1B1a82c682ae296/logo.png b/blockchains/ethereum/assets/0x8E964e35A76103Af4C7D7318e1B1a82c682ae296/logo.png new file mode 100644 index 0000000000000..4a51ed6999677 Binary files /dev/null and b/blockchains/ethereum/assets/0x8E964e35A76103Af4C7D7318e1B1a82c682ae296/logo.png differ diff --git a/blockchains/ethereum/assets/0x8F046a2457a8F1618cAe4706Fa57Bf790e2532a6/info.json b/blockchains/ethereum/assets/0x8F046a2457a8F1618cAe4706Fa57Bf790e2532a6/info.json index a86be21466f4e..ba56c46b4efa9 100644 --- a/blockchains/ethereum/assets/0x8F046a2457a8F1618cAe4706Fa57Bf790e2532a6/info.json +++ b/blockchains/ethereum/assets/0x8F046a2457a8F1618cAe4706Fa57Bf790e2532a6/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/restoretruthtoken/restoretruthtoken" }, { - "name": "twitter", - "url": "https://twitter.com/restoretruthRTT" + "name": "x", + "url": "https://x.com/restoretruthRTT" }, { "name": "telegram", @@ -46,4 +46,4 @@ "defi", "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8F3E41b378ae010c46d255F36bFC1D303b52dceb/info.json b/blockchains/ethereum/assets/0x8F3E41b378ae010c46d255F36bFC1D303b52dceb/info.json new file mode 100644 index 0000000000000..474da574cb80c --- /dev/null +++ b/blockchains/ethereum/assets/0x8F3E41b378ae010c46d255F36bFC1D303b52dceb/info.json @@ -0,0 +1,24 @@ +{ + "name": "Chevron (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "CVXon is the Ondo Tokenized version of Chevron, giving tokenholders economic exposure similar to holding CVX and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x8F3E41b378ae010c46d255F36bFC1D303b52dceb", + "type": "ERC20", + "symbol": "CVXon", + "decimals": 18, + "status": "active", + "id": "0x8F3E41b378ae010c46d255F36bFC1D303b52dceb", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chevron-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8F3E41b378ae010c46d255F36bFC1D303b52dceb/logo.png b/blockchains/ethereum/assets/0x8F3E41b378ae010c46d255F36bFC1D303b52dceb/logo.png new file mode 100644 index 0000000000000..37a5ada890e89 Binary files /dev/null and b/blockchains/ethereum/assets/0x8F3E41b378ae010c46d255F36bFC1D303b52dceb/logo.png differ diff --git a/blockchains/ethereum/assets/0x8FAc8031e079F409135766C7d5De29cf22EF897C/info.json b/blockchains/ethereum/assets/0x8FAc8031e079F409135766C7d5De29cf22EF897C/info.json new file mode 100644 index 0000000000000..53b23aa7c0b31 --- /dev/null +++ b/blockchains/ethereum/assets/0x8FAc8031e079F409135766C7d5De29cf22EF897C/info.json @@ -0,0 +1,21 @@ +{ + "name": "HUMANS", + "type": "ERC20", + "symbol": "HEART", + "decimals": 18, + "website": "https://humans.ai/", + "description": "Humans.ai brings together an ecosystem of stakeholders around the use of AI to create at scale. It combines a library of AI tools into a creative studio suite where users will be able to pick and choose as they bring their ideas to life.", + "explorer": "https://etherscan.io/token/0x8FAc8031e079F409135766C7d5De29cf22EF897C", + "status": "active", + "id": "0x8FAc8031e079F409135766C7d5De29cf22EF897C", + "links": [ + { + "name": "x", + "url": "https://x.com/humansdotai" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/humans-ai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8FAc8031e079F409135766C7d5De29cf22EF897C/logo.png b/blockchains/ethereum/assets/0x8FAc8031e079F409135766C7d5De29cf22EF897C/logo.png new file mode 100644 index 0000000000000..4a74c8b05b18a Binary files /dev/null and b/blockchains/ethereum/assets/0x8FAc8031e079F409135766C7d5De29cf22EF897C/logo.png differ diff --git a/blockchains/ethereum/assets/0x8Fc8f8269ebca376D046Ce292dC7eaC40c8D358A/info.json b/blockchains/ethereum/assets/0x8Fc8f8269ebca376D046Ce292dC7eaC40c8D358A/info.json index e8555b550752d..c32bffbf52628 100644 --- a/blockchains/ethereum/assets/0x8Fc8f8269ebca376D046Ce292dC7eaC40c8D358A/info.json +++ b/blockchains/ethereum/assets/0x8Fc8f8269ebca376D046Ce292dC7eaC40c8D358A/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/DeFiCh/ain" }, { - "name": "twitter", - "url": "https://twitter.com/defichain" + "name": "x", + "url": "https://x.com/defichain" }, { "name": "coinmarketcap", diff --git a/blockchains/ethereum/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/info.json b/blockchains/ethereum/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/info.json new file mode 100644 index 0000000000000..6488b9d1b224c --- /dev/null +++ b/blockchains/ethereum/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/info.json @@ -0,0 +1,24 @@ +{ + "name": "Colombian Peso", + "website": "https://www.ripio.com/es/criptos/stablecoins-locales", + "description": "wCOP is a fully collateralized stablecoin pegged 1:1 to the Colombian Peso (COP). Issued and governed by a Ripio subsidiary, it brings COP on-chain so Colombians and global users can transact, save, and build on decentralized networks in their local currency.", + "explorer": "https://etherscan.io/token/0x8a1D45e102e886510e891d2Ec656a708991e2D76", + "type": "ERC20", + "symbol": "wCOP", + "decimals": 18, + "status": "active", + "id": "0x8a1D45e102e886510e891d2Ec656a708991e2D76", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/RipioApp" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/colombian-peso" + } + ] +} diff --git a/blockchains/ethereum/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/logo.png b/blockchains/ethereum/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/logo.png new file mode 100644 index 0000000000000..c7f511bbf443a Binary files /dev/null and b/blockchains/ethereum/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/logo.png differ diff --git a/blockchains/ethereum/assets/0x8a23C6BaadB88512b30475C83Df6A63881e33e1E/info.json b/blockchains/ethereum/assets/0x8a23C6BaadB88512b30475C83Df6A63881e33e1E/info.json new file mode 100644 index 0000000000000..16a6ab225f132 --- /dev/null +++ b/blockchains/ethereum/assets/0x8a23C6BaadB88512b30475C83Df6A63881e33e1E/info.json @@ -0,0 +1,24 @@ +{ + "name": "Oracle (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "ORCLon is the Ondo Tokenized version of Oracle, giving tokenholders economic exposure similar to holding ORCL and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x8a23C6BaadB88512b30475C83Df6A63881e33e1E", + "type": "ERC20", + "symbol": "ORCLon", + "decimals": 18, + "status": "active", + "id": "0x8a23C6BaadB88512b30475C83Df6A63881e33e1E", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/oracle-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8a23C6BaadB88512b30475C83Df6A63881e33e1E/logo.png b/blockchains/ethereum/assets/0x8a23C6BaadB88512b30475C83Df6A63881e33e1E/logo.png new file mode 100644 index 0000000000000..599c739460b10 Binary files /dev/null and b/blockchains/ethereum/assets/0x8a23C6BaadB88512b30475C83Df6A63881e33e1E/logo.png differ diff --git a/blockchains/ethereum/assets/0x8a6f3BF52A26a21531514E23016eEAe8Ba7e7018/info.json b/blockchains/ethereum/assets/0x8a6f3BF52A26a21531514E23016eEAe8Ba7e7018/info.json index 36c193d23d31b..960b715427ba8 100644 --- a/blockchains/ethereum/assets/0x8a6f3BF52A26a21531514E23016eEAe8Ba7e7018/info.json +++ b/blockchains/ethereum/assets/0x8a6f3BF52A26a21531514E23016eEAe8Ba7e7018/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Multiplier-Finance" }, { - "name": "twitter", - "url": "https://twitter.com/MultiplierMXX" + "name": "x", + "url": "https://x.com/MultiplierMXX" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0/info.json b/blockchains/ethereum/assets/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0/info.json new file mode 100644 index 0000000000000..fe7cd6d2f036f --- /dev/null +++ b/blockchains/ethereum/assets/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0/info.json @@ -0,0 +1,24 @@ +{ + "name": "Tesla tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Tesla tokenized stock (xStock) (TSLAX) is a cryptocurrency and operates on the Solana platform. Tesla tokenized stock (xStock) has a current supply of 50,998.28909342 with 10,999.28657402 in circulation. The last known price of Tesla tokenized stock (xStock) is 417.05893204 USD and is down -0.76 over the last 24 hours. It is currently trading on 44 active market(s) with $21,478,606.39 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/tesla-xstock.", + "explorer": "https://etherscan.io/token/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0", + "type": "ERC20", + "symbol": "TSLAX", + "decimals": 18, + "status": "active", + "id": "0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tesla-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0/logo.png b/blockchains/ethereum/assets/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0/logo.png new file mode 100644 index 0000000000000..639735518a8c4 Binary files /dev/null and b/blockchains/ethereum/assets/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0/logo.png differ diff --git a/blockchains/ethereum/assets/0x8b0E42F366bA502d787BB134478aDfAE966C8798/info.json b/blockchains/ethereum/assets/0x8b0E42F366bA502d787BB134478aDfAE966C8798/info.json index 07ef3f4abc9b5..851805c42cb12 100644 --- a/blockchains/ethereum/assets/0x8b0E42F366bA502d787BB134478aDfAE966C8798/info.json +++ b/blockchains/ethereum/assets/0x8b0E42F366bA502d787BB134478aDfAE966C8798/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/labsgroupio" }, { - "name": "twitter", - "url": "https://twitter.com/labsgroupio" + "name": "x", + "url": "https://x.com/labsgroupio" }, { "name": "medium", diff --git a/blockchains/ethereum/assets/0x8b385Ca3592A5EFc34E0C9fE663de56897F1751F/info.json b/blockchains/ethereum/assets/0x8b385Ca3592A5EFc34E0C9fE663de56897F1751F/info.json index 0a481b0fe34b7..a221a31ba5c09 100644 --- a/blockchains/ethereum/assets/0x8b385Ca3592A5EFc34E0C9fE663de56897F1751F/info.json +++ b/blockchains/ethereum/assets/0x8b385Ca3592A5EFc34E0C9fE663de56897F1751F/info.json @@ -10,8 +10,8 @@ "id": "0x8b385Ca3592A5EFc34E0C9fE663de56897F1751F", "links": [ { - "name": "twitter", - "url": "https://twitter.com/infibit" + "name": "x", + "url": "https://x.com/infibit" }, { "name": "telegram", @@ -22,4 +22,4 @@ "url": "https://coinmarketcap.com/currencies/bens-finale/" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8bCF9012f4b0c1C3D359eDb7133C294f82f80790/info.json b/blockchains/ethereum/assets/0x8bCF9012f4b0c1C3D359eDb7133C294f82f80790/info.json new file mode 100644 index 0000000000000..8608620a380f0 --- /dev/null +++ b/blockchains/ethereum/assets/0x8bCF9012f4b0c1C3D359eDb7133C294f82f80790/info.json @@ -0,0 +1,24 @@ +{ + "name": "ServiceNow (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "NOWon is the Ondo Tokenized version of ServiceNow, giving tokenholders economic exposure similar to holding NOW and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x8bCF9012f4b0c1C3D359eDb7133C294f82f80790", + "type": "ERC20", + "symbol": "NOWon", + "decimals": 18, + "status": "active", + "id": "0x8bCF9012f4b0c1C3D359eDb7133C294f82f80790", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/servicenow-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8bCF9012f4b0c1C3D359eDb7133C294f82f80790/logo.png b/blockchains/ethereum/assets/0x8bCF9012f4b0c1C3D359eDb7133C294f82f80790/logo.png new file mode 100644 index 0000000000000..1ff72bcfdf22b Binary files /dev/null and b/blockchains/ethereum/assets/0x8bCF9012f4b0c1C3D359eDb7133C294f82f80790/logo.png differ diff --git a/blockchains/ethereum/assets/0x8cEFd49b703dE9C0486d9bf6Cb559F0895268Ee8/info.json b/blockchains/ethereum/assets/0x8cEFd49b703dE9C0486d9bf6Cb559F0895268Ee8/info.json new file mode 100644 index 0000000000000..801221b0f1384 --- /dev/null +++ b/blockchains/ethereum/assets/0x8cEFd49b703dE9C0486d9bf6Cb559F0895268Ee8/info.json @@ -0,0 +1,28 @@ +{ + "name": "iShares AAA CLO Active ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "CLOAon", + "decimals": 18, + "description": "CLOAon is the Ondo Tokenized version of the iShares AAA CLO Active ETF, giving tokenholders economic exposure similar to holding CLOA and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x8cEFd49b703dE9C0486d9bf6Cb559F0895268Ee8", + "status": "active", + "id": "0x8cEFd49b703dE9C0486d9bf6Cb559F0895268Ee8", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-aaa-clo-active-etf-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-aaa-clo-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8cEFd49b703dE9C0486d9bf6Cb559F0895268Ee8/logo.png b/blockchains/ethereum/assets/0x8cEFd49b703dE9C0486d9bf6Cb559F0895268Ee8/logo.png new file mode 100644 index 0000000000000..8c3d69ffb4bb3 Binary files /dev/null and b/blockchains/ethereum/assets/0x8cEFd49b703dE9C0486d9bf6Cb559F0895268Ee8/logo.png differ diff --git a/blockchains/ethereum/assets/0x8d05432C2786e3F93f1a9A62b9572DBf54f3ea06/info.json b/blockchains/ethereum/assets/0x8d05432C2786e3F93f1a9A62b9572DBf54f3ea06/info.json new file mode 100644 index 0000000000000..ca6876e670ded --- /dev/null +++ b/blockchains/ethereum/assets/0x8d05432C2786e3F93f1a9A62b9572DBf54f3ea06/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Russell 1000 Growth (Ondo)", + "website": "https://ondo.finance/", + "description": "IWFon is the Ondo Tokenized version of the iShares Russell 1000 Growth ETF, giving tokenholders economic exposure similar to holding IWF and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x8d05432C2786e3F93f1a9A62b9572DBf54f3ea06", + "type": "ERC20", + "symbol": "IWFon", + "decimals": 18, + "status": "active", + "id": "0x8d05432C2786e3F93f1a9A62b9572DBf54f3ea06", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-russell-1000-growth-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8d05432C2786e3F93f1a9A62b9572DBf54f3ea06/logo.png b/blockchains/ethereum/assets/0x8d05432C2786e3F93f1a9A62b9572DBf54f3ea06/logo.png new file mode 100644 index 0000000000000..8adf578853fa6 Binary files /dev/null and b/blockchains/ethereum/assets/0x8d05432C2786e3F93f1a9A62b9572DBf54f3ea06/logo.png differ diff --git a/blockchains/ethereum/assets/0x8d0D000Ee44948FC98c9B98A4FA4921476f08B0d/info.json b/blockchains/ethereum/assets/0x8d0D000Ee44948FC98c9B98A4FA4921476f08B0d/info.json new file mode 100644 index 0000000000000..643a52e8d67ac --- /dev/null +++ b/blockchains/ethereum/assets/0x8d0D000Ee44948FC98c9B98A4FA4921476f08B0d/info.json @@ -0,0 +1,20 @@ +{ + "name": "World Liberty Financial USD", + "type": "ERC20", + "symbol": "USD1", + "decimals": 18, + "description": "A stablecoin by World Liberty Financial, redeemable 1:1 for the U.S. dollar and backed by U.S. treasuries, dollar deposits, and other cash equivalents.", + "website": "https://www.worldlibertyfinancial.com/", + "explorer": "https://etherscan.io/token/0x8d0D000Ee44948FC98c9B98A4FA4921476f08B0d", + "status": "active", + "id": "0x8d0D000Ee44948FC98c9B98A4FA4921476f08B0d", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd1/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8d0D000Ee44948FC98c9B98A4FA4921476f08B0d/logo.png b/blockchains/ethereum/assets/0x8d0D000Ee44948FC98c9B98A4FA4921476f08B0d/logo.png new file mode 100644 index 0000000000000..444ccb6501eeb Binary files /dev/null and b/blockchains/ethereum/assets/0x8d0D000Ee44948FC98c9B98A4FA4921476f08B0d/logo.png differ diff --git a/blockchains/ethereum/assets/0x8d96B4ab6C741a4C8679AE323a100d74f085BA8F/info.json b/blockchains/ethereum/assets/0x8d96B4ab6C741a4C8679AE323a100d74f085BA8F/info.json index 50f25d4987d88..c887af523d7ae 100644 --- a/blockchains/ethereum/assets/0x8d96B4ab6C741a4C8679AE323a100d74f085BA8F/info.json +++ b/blockchains/ethereum/assets/0x8d96B4ab6C741a4C8679AE323a100d74f085BA8F/info.json @@ -10,8 +10,8 @@ "id": "0x8d96B4ab6C741a4C8679AE323a100d74f085BA8F", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Bazaars_project" + "name": "x", + "url": "https://x.com/Bazaars_project" }, { "name": "github", @@ -25,4 +25,4 @@ "tags": [ "governance" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8dAEBADE922dF735c38C80C7eBD708Af50815fAa/info.json b/blockchains/ethereum/assets/0x8dAEBADE922dF735c38C80C7eBD708Af50815fAa/info.json index 6601610e3da2e..f6b591486ab06 100644 --- a/blockchains/ethereum/assets/0x8dAEBADE922dF735c38C80C7eBD708Af50815fAa/info.json +++ b/blockchains/ethereum/assets/0x8dAEBADE922dF735c38C80C7eBD708Af50815fAa/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/keep-network/tbtc" }, { - "name": "twitter", - "url": "https://twitter.com/tBTC_project" + "name": "x", + "url": "https://x.com/tBTC_project" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0x8dc89F4716E027394Bba225b82328C1ea2Ea58Bf/info.json b/blockchains/ethereum/assets/0x8dc89F4716E027394Bba225b82328C1ea2Ea58Bf/info.json index 614bdbbdf0d69..4608ce73c0cf7 100644 --- a/blockchains/ethereum/assets/0x8dc89F4716E027394Bba225b82328C1ea2Ea58Bf/info.json +++ b/blockchains/ethereum/assets/0x8dc89F4716E027394Bba225b82328C1ea2Ea58Bf/info.json @@ -10,8 +10,8 @@ "id": "0x8dc89F4716E027394Bba225b82328C1ea2Ea58Bf", "links": [ { - "name": "twitter", - "url": "https://twitter.com/villainsgvc" + "name": "x", + "url": "https://x.com/villainsgvc" }, { "name": "coinmarketcap", @@ -37,4 +37,4 @@ "tags": [ "defi" ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8dfc8cc3201425669FaE803e1eB125cddd4189eC/info.json b/blockchains/ethereum/assets/0x8dfc8cc3201425669FaE803e1eB125cddd4189eC/info.json new file mode 100644 index 0000000000000..2a769e9e80c13 --- /dev/null +++ b/blockchains/ethereum/assets/0x8dfc8cc3201425669FaE803e1eB125cddd4189eC/info.json @@ -0,0 +1,24 @@ +{ + "name": "Okage Inu", + "symbol": "OKAGE", + "type": "ERC20", + "decimals": 18, + "description": "Okage Inu is a project seeking to change the way the world interacts with memecoins by creating an infinitely scalable, future-proof, and highly secure ecosystem that is engineered around positive feedback loops between DEX, Chain, and Swap.", + "website": "https://okageinu.com/", + "explorer": "https://etherscan.io/token/0x8dfc8cc3201425669fae803e1eb125cddd4189ec", + "status": "active", + "id": "0x8dfc8cc3201425669FaE803e1eB125cddd4189eC", + "links": [ + { + "name": "x", + "url": "https://x.com/okageerc" + }, + { + "name": "telegram", + "url": "https://t.me/OkageInu" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8dfc8cc3201425669FaE803e1eB125cddd4189eC/logo.png b/blockchains/ethereum/assets/0x8dfc8cc3201425669FaE803e1eB125cddd4189eC/logo.png new file mode 100644 index 0000000000000..c5a86e41753d2 Binary files /dev/null and b/blockchains/ethereum/assets/0x8dfc8cc3201425669FaE803e1eB125cddd4189eC/logo.png differ diff --git a/blockchains/ethereum/assets/0x8eD955a2b7d2C3a17a9d05dACa95E01818f8C11e/info.json b/blockchains/ethereum/assets/0x8eD955a2b7d2C3a17a9d05dACa95E01818f8C11e/info.json new file mode 100644 index 0000000000000..b4c6233b210af --- /dev/null +++ b/blockchains/ethereum/assets/0x8eD955a2b7d2C3a17a9d05dACa95E01818f8C11e/info.json @@ -0,0 +1,21 @@ +{ + "name": "APF", + "website": "https://apfdigitalagrifund.com/en/", + "description": "The APF DIGITAL AGRIFUND CR in cooperation with MIA INVESTMENTS GROUP aims to combine the benefits of digital assets with the benefits of real investments in agricultural land. Given the stable development of farmland prices in the country and market conditions, we offer clients a more conservative form of investment in crypto-assets.", + "explorer": "https://etherscan.io/token/0x8eD955a2b7d2C3a17a9d05dACa95E01818f8C11e", + "type": "ERC20", + "symbol": "APFC", + "decimals": 18, + "status": "active", + "id": "0x8eD955a2b7d2C3a17a9d05dACa95E01818f8C11e", + "links": [ + { + "name": "x", + "url": "https://x.com/APF_Digital" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/apf-coin/" + } + ] + } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8eD955a2b7d2C3a17a9d05dACa95E01818f8C11e/logo.png b/blockchains/ethereum/assets/0x8eD955a2b7d2C3a17a9d05dACa95E01818f8C11e/logo.png new file mode 100644 index 0000000000000..b35d620684ea4 Binary files /dev/null and b/blockchains/ethereum/assets/0x8eD955a2b7d2C3a17a9d05dACa95E01818f8C11e/logo.png differ diff --git a/blockchains/ethereum/assets/0x8eD97a637A790Be1feff5e888d43629dc05408F6/info.json b/blockchains/ethereum/assets/0x8eD97a637A790Be1feff5e888d43629dc05408F6/info.json new file mode 100644 index 0000000000000..7efb5ca9b38f8 --- /dev/null +++ b/blockchains/ethereum/assets/0x8eD97a637A790Be1feff5e888d43629dc05408F6/info.json @@ -0,0 +1,17 @@ +{ + "name": "Non-Playable Coin", + "type": "ERC20", + "symbol": "NPC", + "decimals": 18, + "website": "https://nonplayablecoin.io/", + "description": "A hive mind of unique and special individuals. $NPC is a meme fungible token (MFT) tradable on both Uniswap and NFT exchanges.", + "explorer": "https://etherscan.io/token/0x8ed97a637a790be1feff5e888d43629dc05408f6", + "status": "active", + "id": "0x8eD97a637A790Be1feff5e888d43629dc05408F6", + "links": [ + { + "name": "x", + "url": "https://x.com/NonPlayableCoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8eD97a637A790Be1feff5e888d43629dc05408F6/logo.png b/blockchains/ethereum/assets/0x8eD97a637A790Be1feff5e888d43629dc05408F6/logo.png new file mode 100644 index 0000000000000..4f52059c17609 Binary files /dev/null and b/blockchains/ethereum/assets/0x8eD97a637A790Be1feff5e888d43629dc05408F6/logo.png differ diff --git a/blockchains/ethereum/assets/0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19/info.json b/blockchains/ethereum/assets/0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19/info.json index 9154082a6393f..a4c45fa081ede 100644 --- a/blockchains/ethereum/assets/0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19/info.json +++ b/blockchains/ethereum/assets/0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19/info.json @@ -21,8 +21,8 @@ "url": "https://discord.com/invite/GCHkdY6fnF" }, { - "name": "twitter", - "url": "https://twitter.com/Pleasure_coin" + "name": "x", + "url": "https://x.com/Pleasure_coin" }, { "name": "coinmarketcap", @@ -33,4 +33,4 @@ "url": "https://coingecko.com/coins/pleasure-coin" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8f693ca8D21b157107184d29D398A8D082b38b76/info.json b/blockchains/ethereum/assets/0x8f693ca8D21b157107184d29D398A8D082b38b76/info.json index a8d019ce55401..5383f8e7f178d 100644 --- a/blockchains/ethereum/assets/0x8f693ca8D21b157107184d29D398A8D082b38b76/info.json +++ b/blockchains/ethereum/assets/0x8f693ca8D21b157107184d29D398A8D082b38b76/info.json @@ -10,8 +10,8 @@ "id": "0x8f693ca8D21b157107184d29D398A8D082b38b76", "links": [ { - "name": "twitter", - "url": "https://twitter.com/streamr" + "name": "x", + "url": "https://x.com/streamr" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0x8f8221aFbB33998d8584A2B05749bA73c37a938a/info.json b/blockchains/ethereum/assets/0x8f8221aFbB33998d8584A2B05749bA73c37a938a/info.json index 0d5f82e83fb22..5fe6390005567 100644 --- a/blockchains/ethereum/assets/0x8f8221aFbB33998d8584A2B05749bA73c37a938a/info.json +++ b/blockchains/ethereum/assets/0x8f8221aFbB33998d8584A2B05749bA73c37a938a/info.json @@ -1,5 +1,5 @@ { - "name": "Request Token", + "name": "Request", "symbol": "REQ", "type": "ERC20", "decimals": 18, diff --git a/blockchains/ethereum/assets/0x903bEF1736CDdf2A537176cf3C64579C3867A881/info.json b/blockchains/ethereum/assets/0x903bEF1736CDdf2A537176cf3C64579C3867A881/info.json index b509b87f7e49f..87794817abced 100644 --- a/blockchains/ethereum/assets/0x903bEF1736CDdf2A537176cf3C64579C3867A881/info.json +++ b/blockchains/ethereum/assets/0x903bEF1736CDdf2A537176cf3C64579C3867A881/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/ichifarm" }, { - "name": "twitter", - "url": "https://twitter.com/ichifoundation" + "name": "x", + "url": "https://x.com/ichifoundation" }, { "name": "telegram", @@ -29,4 +29,4 @@ "url": "https://medium.com/ichifarm" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x908266C1192628371Cff7AD2F5Eba4dE061a0ac5/info.json b/blockchains/ethereum/assets/0x908266C1192628371Cff7AD2F5Eba4dE061a0ac5/info.json new file mode 100644 index 0000000000000..32fc0711d0a94 --- /dev/null +++ b/blockchains/ethereum/assets/0x908266C1192628371Cff7AD2F5Eba4dE061a0ac5/info.json @@ -0,0 +1,24 @@ +{ + "name": "Shopify (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "SHOPon is the Ondo Tokenized version of Shopify, giving tokenholders economic exposure similar to holding SHOP and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x908266C1192628371Cff7AD2F5Eba4dE061a0ac5", + "type": "ERC20", + "symbol": "SHOPon", + "decimals": 18, + "status": "active", + "id": "0x908266C1192628371Cff7AD2F5Eba4dE061a0ac5", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shopify-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x908266C1192628371Cff7AD2F5Eba4dE061a0ac5/logo.png b/blockchains/ethereum/assets/0x908266C1192628371Cff7AD2F5Eba4dE061a0ac5/logo.png new file mode 100644 index 0000000000000..558374fa3dc01 Binary files /dev/null and b/blockchains/ethereum/assets/0x908266C1192628371Cff7AD2F5Eba4dE061a0ac5/logo.png differ diff --git a/blockchains/ethereum/assets/0x909E34d3f6124C324ac83DccA84b74398a6fa173/info.json b/blockchains/ethereum/assets/0x909E34d3f6124C324ac83DccA84b74398a6fa173/info.json index 27793d1c93f57..f197d71ee39db 100644 --- a/blockchains/ethereum/assets/0x909E34d3f6124C324ac83DccA84b74398a6fa173/info.json +++ b/blockchains/ethereum/assets/0x909E34d3f6124C324ac83DccA84b74398a6fa173/info.json @@ -54,8 +54,8 @@ "url": "https://t.me/pantherprotocolann" }, { - "name": "twitter", - "url": "https://twitter.com/ZkPanther" + "name": "x", + "url": "https://x.com/ZkPanther" }, { "name": "whitepaper", @@ -70,4 +70,4 @@ "privacy", "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48/info.json b/blockchains/ethereum/assets/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48/info.json new file mode 100644 index 0000000000000..401be3554d6bf --- /dev/null +++ b/blockchains/ethereum/assets/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48/info.json @@ -0,0 +1,24 @@ +{ + "name": "SP500 tokenized ETF (xStock)", + "website": "https://assets.backed.fi/products", + "description": "SP500 tokenized ETF (xStock) (SPYX) is a cryptocurrency and operates on the Solana platform. SP500 tokenized ETF (xStock) has a current supply of 15,999.19889527. The last known price of SP500 tokenized ETF (xStock) is 662.57535897 USD and is up 0.48 over the last 24 hours. It is currently trading on 29 active market(s) with $2,070,018.72 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/sp500-xstock.", + "explorer": "https://etherscan.io/token/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48", + "type": "ERC20", + "symbol": "SPYX", + "decimals": 18, + "status": "active", + "id": "0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sp500-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48/logo.png b/blockchains/ethereum/assets/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48/logo.png new file mode 100644 index 0000000000000..c4ee269a58492 Binary files /dev/null and b/blockchains/ethereum/assets/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48/logo.png differ diff --git a/blockchains/ethereum/assets/0x90D702f071d2af33032943137AD0aB4280705817/info.json b/blockchains/ethereum/assets/0x90D702f071d2af33032943137AD0aB4280705817/info.json index 6643f04586e1e..06f8d70d89bee 100644 --- a/blockchains/ethereum/assets/0x90D702f071d2af33032943137AD0aB4280705817/info.json +++ b/blockchains/ethereum/assets/0x90D702f071d2af33032943137AD0aB4280705817/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/yffsfinance" }, { - "name": "twitter", - "url": "https://twitter.com/yffsfinance" + "name": "x", + "url": "https://x.com/yffsfinance" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x90DE74265a416e1393A450752175AED98fe11517/info.json b/blockchains/ethereum/assets/0x90DE74265a416e1393A450752175AED98fe11517/info.json index b55274335887c..3c1fe526ab38d 100644 --- a/blockchains/ethereum/assets/0x90DE74265a416e1393A450752175AED98fe11517/info.json +++ b/blockchains/ethereum/assets/0x90DE74265a416e1393A450752175AED98fe11517/info.json @@ -10,8 +10,8 @@ "id": "0x90DE74265a416e1393A450752175AED98fe11517", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Unlock Protocol" + "name": "x", + "url": "https://x.com/Unlock Protocol" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x916c5DE09cF63f6602d1e1793FB41F6437814A62/info.json b/blockchains/ethereum/assets/0x916c5DE09cF63f6602d1e1793FB41F6437814A62/info.json index 507f4cf1e19c2..dad730c1f1d3a 100644 --- a/blockchains/ethereum/assets/0x916c5DE09cF63f6602d1e1793FB41F6437814A62/info.json +++ b/blockchains/ethereum/assets/0x916c5DE09cF63f6602d1e1793FB41F6437814A62/info.json @@ -10,8 +10,8 @@ "id": "0x916c5DE09cF63f6602d1e1793FB41F6437814A62", "links": [ { - "name": "twitter", - "url": "https://twitter.com/JacyToken" + "name": "x", + "url": "https://x.com/JacyToken" }, { "name": "telegram", @@ -41,4 +41,4 @@ "tags": [ "deflationary" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x91Af0fBB28ABA7E31403Cb457106Ce79397FD4E6/info.json b/blockchains/ethereum/assets/0x91Af0fBB28ABA7E31403Cb457106Ce79397FD4E6/info.json index cd66d08eba3a7..88cd1cd31c289 100644 --- a/blockchains/ethereum/assets/0x91Af0fBB28ABA7E31403Cb457106Ce79397FD4E6/info.json +++ b/blockchains/ethereum/assets/0x91Af0fBB28ABA7E31403Cb457106Ce79397FD4E6/info.json @@ -19,8 +19,8 @@ "url": "https://t.me/aergoannouncements" }, { - "name": "twitter", - "url": "https://twitter.com/AERGO_IO" + "name": "x", + "url": "https://x.com/AERGO_IO" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x91dFbEE3965baAEE32784c2d546B7a0C62F268c9/info.json b/blockchains/ethereum/assets/0x91dFbEE3965baAEE32784c2d546B7a0C62F268c9/info.json index 45928b768c674..8402d628bfedf 100644 --- a/blockchains/ethereum/assets/0x91dFbEE3965baAEE32784c2d546B7a0C62F268c9/info.json +++ b/blockchains/ethereum/assets/0x91dFbEE3965baAEE32784c2d546B7a0C62F268c9/info.json @@ -10,8 +10,8 @@ "id": "0x91dFbEE3965baAEE32784c2d546B7a0C62F268c9", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BondlyFinance" + "name": "x", + "url": "https://x.com/BondlyFinance" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x91fbB2503AC69702061f1AC6885759Fc853e6EaE/info.json b/blockchains/ethereum/assets/0x91fbB2503AC69702061f1AC6885759Fc853e6EaE/info.json new file mode 100644 index 0000000000000..29ef2bbe45f50 --- /dev/null +++ b/blockchains/ethereum/assets/0x91fbB2503AC69702061f1AC6885759Fc853e6EaE/info.json @@ -0,0 +1,34 @@ +{ + "name": "K9 Finance DAO", + "type": "ERC20", + "symbol": "KNINE", + "decimals": 18, + "website": "https://www.k9finance.com", + "description": "K9 Finance, a Shibarium-based LSD platform, offers core DeFi services and acts as an official validator. Rewarding $KNINE holders with $BONE for block validation, it aims to drive DeFi adoption via the 'Roundtable of Dogs' DAO, which governs treasury and roadmap decisions.", + "explorer": "https://etherscan.io/token/0x91fbb2503ac69702061f1ac6885759fc853e6eae", + "status": "active", + "id": "0x91fbB2503AC69702061f1AC6885759Fc853e6EaE", + "links": [ + { + "name": "x", + "url": "https://x.com/K9finance" + }, + { + "name": "telegram", + "url": "https://t.me/k9finance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/k9-finance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/k9-finance-dao" + } + ], + "tags": [ + "governance", + "staking", + "dapp" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x91fbB2503AC69702061f1AC6885759Fc853e6EaE/logo.png b/blockchains/ethereum/assets/0x91fbB2503AC69702061f1AC6885759Fc853e6EaE/logo.png new file mode 100644 index 0000000000000..b271f10d03819 Binary files /dev/null and b/blockchains/ethereum/assets/0x91fbB2503AC69702061f1AC6885759Fc853e6EaE/logo.png differ diff --git a/blockchains/ethereum/assets/0x92CfbEC26C206C90aeE3b7C66A9AE673754FaB7e/info.json b/blockchains/ethereum/assets/0x92CfbEC26C206C90aeE3b7C66A9AE673754FaB7e/info.json new file mode 100644 index 0000000000000..e48c312b57411 --- /dev/null +++ b/blockchains/ethereum/assets/0x92CfbEC26C206C90aeE3b7C66A9AE673754FaB7e/info.json @@ -0,0 +1,52 @@ +{ + "name": "Openleverage Token (Old)", + "website": "https://openleverage.finance/", + "description": "OpenLeverage is a permissionless money market protocol enabling decentralized lending, borrowing, and margin trading across a diverse range of cryptocurrency pairs, fostering an accessible and efficient DeFi ecosystem.", + "explorer": "https://etherscan.io/token/0x92CfbEC26C206C90aeE3b7C66A9AE673754FaB7e", + "type": "ERC20", + "symbol": "Old OLE", + "decimals": 18, + "status": "active", + "id": "0x92CfbEC26C206C90aeE3b7C66A9AE673754FaB7e", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/OpenLeverage" + }, + { + "name": "discord", + "url": "https://discord.com/invite/openleverage" + }, + { + "name": "medium", + "url": "https://openleverage.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/openleverage/" + }, + { + "name": "docs", + "url": "https://docs.openleverage.finance/main/" + }, + { + "name": "telegram", + "url": "https://t.me/openleverageofficial" + }, + { + "name": "github", + "url": "https://github.com/OpenLeverageDev/openleverage-contracts" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/openleverage" + }, + { + "name": "youtube", + "url": "https://youtube.com/@openleverageprotocol9047" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x92CfbEC26C206C90aeE3b7C66A9AE673754FaB7e/logo.png b/blockchains/ethereum/assets/0x92CfbEC26C206C90aeE3b7C66A9AE673754FaB7e/logo.png new file mode 100644 index 0000000000000..c43b83973316f Binary files /dev/null and b/blockchains/ethereum/assets/0x92CfbEC26C206C90aeE3b7C66A9AE673754FaB7e/logo.png differ diff --git a/blockchains/ethereum/assets/0x92D6C1e31e14520e676a687F0a93788B716BEff5/info.json b/blockchains/ethereum/assets/0x92D6C1e31e14520e676a687F0a93788B716BEff5/info.json index db6a2c35ade49..af8dd53ad4d4a 100644 --- a/blockchains/ethereum/assets/0x92D6C1e31e14520e676a687F0a93788B716BEff5/info.json +++ b/blockchains/ethereum/assets/0x92D6C1e31e14520e676a687F0a93788B716BEff5/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/dydxfoundation" + "name": "x", + "url": "https://x.com/dydxfoundation" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0x92Df9fFf2303E5aa603DAc2b5B603608855dC690/info.json b/blockchains/ethereum/assets/0x92Df9fFf2303E5aa603DAc2b5B603608855dC690/info.json new file mode 100644 index 0000000000000..273d3e70feef0 --- /dev/null +++ b/blockchains/ethereum/assets/0x92Df9fFf2303E5aa603DAc2b5B603608855dC690/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDT token", + "type": "ERC20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://etherscan.io/token/0x92Df9fFf2303E5aa603DAc2b5B603608855dC690", + "explorer": "https://etherscan.io/token/0x92Df9fFf2303E5aa603DAc2b5B603608855dC690", + "status": "spam", + "id": "0x92Df9fFf2303E5aa603DAc2b5B603608855dC690" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x936faCdf10c8c36294e7b9d28345255539d81bc7/info.json b/blockchains/ethereum/assets/0x936faCdf10c8c36294e7b9d28345255539d81bc7/info.json new file mode 100644 index 0000000000000..ba9031b24c11a --- /dev/null +++ b/blockchains/ethereum/assets/0x936faCdf10c8c36294e7b9d28345255539d81bc7/info.json @@ -0,0 +1,26 @@ +{ + "name": "RockSolid rETH Vault", + "type": "ERC20", + "symbol": "rock.rETH", + "decimals": 18, + "description": "Our rETH vault both monitors for the latest opportunities, monitors funding rates to ensure optimal allocations and negotiates with DeFi protocols for preferred terms for vault depositors.", + "website": "https://rocksolid.network", + "explorer": "https://etherscan.io/token/0x936faCdf10c8c36294e7b9d28345255539d81bc7", + "status": "active", + "id": "0x936faCdf10c8c36294e7b9d28345255539d81bc7", + "links": [ + { + "name": "x", + "url": "https://x.com/rocksolidHQ" + }, + { + "name": "docs", + "url": "https://docs.rocksolid.network" + }, + { + "name": "discord", + "url": "https://discord.com/invite/hKGEdPp9Ge" + } + ], + "tags": ["defi", "staking" ] +} diff --git a/blockchains/ethereum/assets/0x936faCdf10c8c36294e7b9d28345255539d81bc7/logo.png b/blockchains/ethereum/assets/0x936faCdf10c8c36294e7b9d28345255539d81bc7/logo.png new file mode 100644 index 0000000000000..ae06ab8ca82a4 Binary files /dev/null and b/blockchains/ethereum/assets/0x936faCdf10c8c36294e7b9d28345255539d81bc7/logo.png differ diff --git a/blockchains/ethereum/assets/0x93A62Ccfcf1EfCB5f60317981F71ed6Fb39F4BA2/info.json b/blockchains/ethereum/assets/0x93A62Ccfcf1EfCB5f60317981F71ed6Fb39F4BA2/info.json new file mode 100644 index 0000000000000..fec527abeeb07 --- /dev/null +++ b/blockchains/ethereum/assets/0x93A62Ccfcf1EfCB5f60317981F71ed6Fb39F4BA2/info.json @@ -0,0 +1,25 @@ +{ + "name": "Osmosis", + "type": "ERC20", + "symbol": "OSMO", + "decimals": 6, + "description": "Osmosis (OSMO) is a decentralized exchange (DEX) for Cosmos, an ecosystem of sovereign, interoperable blockchains all connected trustlessly over IBC, the Inter-Blockchain Communication Protocol. Osmosis also offers non-IBC assets bridged from the Ethereum and Polkadot ecosystems.", + "website": "https://osmosis.zone/", + "explorer": "https://etherscan.io/token/0x93A62Ccfcf1EfCB5f60317981F71ed6Fb39F4BA2", + "id": "0x93A62Ccfcf1EfCB5f60317981F71ed6Fb39F4BA2", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/osmosiszone" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/osmosis/" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x93A62Ccfcf1EfCB5f60317981F71ed6Fb39F4BA2/logo.png b/blockchains/ethereum/assets/0x93A62Ccfcf1EfCB5f60317981F71ed6Fb39F4BA2/logo.png new file mode 100644 index 0000000000000..f68aa41dd3f26 Binary files /dev/null and b/blockchains/ethereum/assets/0x93A62Ccfcf1EfCB5f60317981F71ed6Fb39F4BA2/logo.png differ diff --git a/blockchains/ethereum/assets/0x940a2dB1B7008B6C776d4faaCa729d6d4A4AA551/info.json b/blockchains/ethereum/assets/0x940a2dB1B7008B6C776d4faaCa729d6d4A4AA551/info.json index 639e11467f0e0..679f931d02493 100644 --- a/blockchains/ethereum/assets/0x940a2dB1B7008B6C776d4faaCa729d6d4A4AA551/info.json +++ b/blockchains/ethereum/assets/0x940a2dB1B7008B6C776d4faaCa729d6d4A4AA551/info.json @@ -1,5 +1,5 @@ { - "name": "Dusk Network", + "name": "Dusk", "symbol": "DUSK", "type": "ERC20", "decimals": 18, diff --git a/blockchains/ethereum/assets/0x944824290CC12F31ae18Ef51216A223Ba4063092/info.json b/blockchains/ethereum/assets/0x944824290CC12F31ae18Ef51216A223Ba4063092/info.json new file mode 100644 index 0000000000000..6847da4ed4eed --- /dev/null +++ b/blockchains/ethereum/assets/0x944824290CC12F31ae18Ef51216A223Ba4063092/info.json @@ -0,0 +1,21 @@ +{ + "name": "Masa", + "type": "ERC20", + "symbol": "MASA", + "decimals": 18, + "website": "https://www.masa.finance/", + "description": "Masa is the Decentralized AI Data and LLM Network. Own, share, and earn from your data and compute to power AI applications.", + "explorer": "https://etherscan.io/token/0x944824290CC12F31ae18Ef51216A223Ba4063092", + "status": "active", + "id": "0x944824290CC12F31ae18Ef51216A223Ba4063092", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/masa-network/" + }, + { + "name": "x", + "url": "https://x.com/getmasafi" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x944824290CC12F31ae18Ef51216A223Ba4063092/logo.png b/blockchains/ethereum/assets/0x944824290CC12F31ae18Ef51216A223Ba4063092/logo.png new file mode 100644 index 0000000000000..c822013e4bcb4 Binary files /dev/null and b/blockchains/ethereum/assets/0x944824290CC12F31ae18Ef51216A223Ba4063092/logo.png differ diff --git a/blockchains/ethereum/assets/0x949D48EcA67b17269629c7194F4b727d4Ef9E5d6/info.json b/blockchains/ethereum/assets/0x949D48EcA67b17269629c7194F4b727d4Ef9E5d6/info.json index 8c08a16d303ed..76b75aec39c8e 100644 --- a/blockchains/ethereum/assets/0x949D48EcA67b17269629c7194F4b727d4Ef9E5d6/info.json +++ b/blockchains/ethereum/assets/0x949D48EcA67b17269629c7194F4b727d4Ef9E5d6/info.json @@ -10,8 +10,8 @@ "id": "0x949D48EcA67b17269629c7194F4b727d4Ef9E5d6", "links": [ { - "name": "twitter", - "url": "https://twitter.com/meritcircle_io" + "name": "x", + "url": "https://x.com/meritcircle_io" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0x94DFd4E2210Fa5B752c3CD0f381edad9dA6640f8/info.json b/blockchains/ethereum/assets/0x94DFd4E2210Fa5B752c3CD0f381edad9dA6640f8/info.json index 886239b2ecd45..42f5e6630d9b1 100644 --- a/blockchains/ethereum/assets/0x94DFd4E2210Fa5B752c3CD0f381edad9dA6640f8/info.json +++ b/blockchains/ethereum/assets/0x94DFd4E2210Fa5B752c3CD0f381edad9dA6640f8/info.json @@ -29,12 +29,12 @@ "url": "https://medium.com/@sphynxeth" }, { - "name": "twitter", - "url": "https://twitter.com/sphynxeth" + "name": "x", + "url": "https://x.com/sphynxeth" }, { "name": "source_code", "url": "https://github.com/sphynxeth/sphynx-eth" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x94E0BAb2F6Ab1F19F4750E42d7349f2740513aD5/info.json b/blockchains/ethereum/assets/0x94E0BAb2F6Ab1F19F4750E42d7349f2740513aD5/info.json index 2ec94b1c768bb..5faecc091e1a8 100644 --- a/blockchains/ethereum/assets/0x94E0BAb2F6Ab1F19F4750E42d7349f2740513aD5/info.json +++ b/blockchains/ethereum/assets/0x94E0BAb2F6Ab1F19F4750E42d7349f2740513aD5/info.json @@ -10,8 +10,8 @@ "id": "0x94E0BAb2F6Ab1F19F4750E42d7349f2740513aD5", "links": [ { - "name": "twitter", - "url": "https://twitter.com/uniclyNFT" + "name": "x", + "url": "https://x.com/uniclyNFT" }, { "name": "medium", diff --git a/blockchains/ethereum/assets/0x94F31aC896c9823D81cf9C2C93feCEeD4923218f/info.json b/blockchains/ethereum/assets/0x94F31aC896c9823D81cf9C2C93feCEeD4923218f/info.json index 5391a4b6b196d..590f57a5781f5 100644 --- a/blockchains/ethereum/assets/0x94F31aC896c9823D81cf9C2C93feCEeD4923218f/info.json +++ b/blockchains/ethereum/assets/0x94F31aC896c9823D81cf9C2C93feCEeD4923218f/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/yftether" }, { - "name": "twitter", - "url": "https://twitter.com/yftether" + "name": "x", + "url": "https://x.com/yftether" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x94a7f270cd12545A277E656266Aef5e27dF3Eb28/info.json b/blockchains/ethereum/assets/0x94a7f270cd12545A277E656266Aef5e27dF3Eb28/info.json index 4f3e2c3be4462..b522cc7ae2038 100644 --- a/blockchains/ethereum/assets/0x94a7f270cd12545A277E656266Aef5e27dF3Eb28/info.json +++ b/blockchains/ethereum/assets/0x94a7f270cd12545A277E656266Aef5e27dF3Eb28/info.json @@ -10,8 +10,8 @@ "id": "0x94a7f270cd12545A277E656266Aef5e27dF3Eb28", "links": [ { - "name": "twitter", - "url": "https://twitter.com/streamcoin_strm" + "name": "x", + "url": "https://x.com/streamcoin_strm" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0x94a8b4EE5CD64C79D0Ee816f467EA73009f51aA0/info.json b/blockchains/ethereum/assets/0x94a8b4EE5CD64C79D0Ee816f467EA73009f51aA0/info.json new file mode 100644 index 0000000000000..8eff8f9cc22bf --- /dev/null +++ b/blockchains/ethereum/assets/0x94a8b4EE5CD64C79D0Ee816f467EA73009f51aA0/info.json @@ -0,0 +1,17 @@ +{ + "name": "Realio Network", + "website": "https://realio.network/", + "description": "End-to-end platform for compliant issuance, p2p trading and life-cycle management of digital assets.", + "explorer": "https://etherscan.io/token/0x94a8b4EE5CD64C79D0Ee816f467EA73009f51aA0", + "type": "ERC20", + "symbol": "RIO", + "decimals": 18, + "status": "active", + "id": "0x94a8b4EE5CD64C79D0Ee816f467EA73009f51aA0", + "links": [ + { + "name": "x", + "url": "https://x.com/realio_network" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x94a8b4EE5CD64C79D0Ee816f467EA73009f51aA0/logo.png b/blockchains/ethereum/assets/0x94a8b4EE5CD64C79D0Ee816f467EA73009f51aA0/logo.png new file mode 100644 index 0000000000000..630387157a4df Binary files /dev/null and b/blockchains/ethereum/assets/0x94a8b4EE5CD64C79D0Ee816f467EA73009f51aA0/logo.png differ diff --git a/blockchains/ethereum/assets/0x9506d37f70eB4C3d79C398d326C871aBBf10521d/info.json b/blockchains/ethereum/assets/0x9506d37f70eB4C3d79C398d326C871aBBf10521d/info.json new file mode 100644 index 0000000000000..9036082f8453b --- /dev/null +++ b/blockchains/ethereum/assets/0x9506d37f70eB4C3d79C398d326C871aBBf10521d/info.json @@ -0,0 +1,21 @@ +{ + "name": "Media Licensing Token", + "type": "ERC20", + "symbol": "MLT", + "decimals": 18, + "website": "https://www.milc.global/", + "description": "MILC - Media Industry Licensing Content. Global decentralized marketplace for professional content trading, licensing and production.", + "explorer": "https://etherscan.io/token/0x9506d37f70eB4C3d79C398d326C871aBBf10521d", + "status": "active", + "id": "0x9506d37f70eB4C3d79C398d326C871aBBf10521d", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/milc-platform/" + }, + { + "name": "x", + "url": "https://x.com/MILCplatform" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9506d37f70eB4C3d79C398d326C871aBBf10521d/logo.png b/blockchains/ethereum/assets/0x9506d37f70eB4C3d79C398d326C871aBBf10521d/logo.png new file mode 100644 index 0000000000000..a92c4598cf4fc Binary files /dev/null and b/blockchains/ethereum/assets/0x9506d37f70eB4C3d79C398d326C871aBBf10521d/logo.png differ diff --git a/blockchains/ethereum/assets/0x955d5c14C8D4944dA1Ea7836bd44D54a8eC35Ba1/info.json b/blockchains/ethereum/assets/0x955d5c14C8D4944dA1Ea7836bd44D54a8eC35Ba1/info.json index efa925d1c090c..22836e0ed514f 100644 --- a/blockchains/ethereum/assets/0x955d5c14C8D4944dA1Ea7836bd44D54a8eC35Ba1/info.json +++ b/blockchains/ethereum/assets/0x955d5c14C8D4944dA1Ea7836bd44D54a8eC35Ba1/info.json @@ -10,8 +10,8 @@ "id": "0x955d5c14C8D4944dA1Ea7836bd44D54a8eC35Ba1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/RefundCoinETH" + "name": "x", + "url": "https://x.com/RefundCoinETH" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x957c7fA189a408E78543113412f6Ae1a9b4022C4/info.json b/blockchains/ethereum/assets/0x957c7fA189a408E78543113412f6Ae1a9b4022C4/info.json new file mode 100644 index 0000000000000..0ea02db43355f --- /dev/null +++ b/blockchains/ethereum/assets/0x957c7fA189a408E78543113412f6Ae1a9b4022C4/info.json @@ -0,0 +1,17 @@ +{ + "name": "LF", + "type": "ERC20", + "symbol": "LF", + "decimals": 18, + "website": "https://lflabs.fund/", + "description": "As an emerging force in the Web3 space, LF Labs is dedicated to driving innovation and market growth.", + "explorer": "https://etherscan.io/token/0x957c7fa189a408e78543113412f6ae1a9b4022c4", + "status": "active", + "id": "0x957c7fA189a408E78543113412f6Ae1a9b4022C4", + "links": [ + { + "name": "x", + "url": "https://x.com/LF_LabsFund" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x957c7fA189a408E78543113412f6Ae1a9b4022C4/logo.png b/blockchains/ethereum/assets/0x957c7fA189a408E78543113412f6Ae1a9b4022C4/logo.png new file mode 100644 index 0000000000000..14edaf8bf9f85 Binary files /dev/null and b/blockchains/ethereum/assets/0x957c7fA189a408E78543113412f6Ae1a9b4022C4/logo.png differ diff --git a/blockchains/ethereum/assets/0x95aA5d2DbD3c16ee3fdea82D5C6EC3E38CE3314f/info.json b/blockchains/ethereum/assets/0x95aA5d2DbD3c16ee3fdea82D5C6EC3E38CE3314f/info.json index 02943154b3fbf..f3ffceb760c23 100644 --- a/blockchains/ethereum/assets/0x95aA5d2DbD3c16ee3fdea82D5C6EC3E38CE3314f/info.json +++ b/blockchains/ethereum/assets/0x95aA5d2DbD3c16ee3fdea82D5C6EC3E38CE3314f/info.json @@ -10,8 +10,8 @@ "id": "0x95aA5d2DbD3c16ee3fdea82D5C6EC3E38CE3314f", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PointPay1" + "name": "x", + "url": "https://x.com/PointPay1" }, { "name": "blog", @@ -33,4 +33,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x960b236A07cf122663c4303350609A66A7B288C0/info.json b/blockchains/ethereum/assets/0x960b236A07cf122663c4303350609A66A7B288C0/info.json index 5a3a1bdf230eb..ea2811d812735 100644 --- a/blockchains/ethereum/assets/0x960b236A07cf122663c4303350609A66A7B288C0/info.json +++ b/blockchains/ethereum/assets/0x960b236A07cf122663c4303350609A66A7B288C0/info.json @@ -11,8 +11,8 @@ "id": "0x960b236A07cf122663c4303350609A66A7B288C0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/aragonproject?lang=es" + "name": "x", + "url": "https://x.com/aragonproject?lang=es" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x960fCE8724aA127184B6d13Af41a711755236c77/info.json b/blockchains/ethereum/assets/0x960fCE8724aA127184B6d13Af41a711755236c77/info.json new file mode 100644 index 0000000000000..1f9839a988d6c --- /dev/null +++ b/blockchains/ethereum/assets/0x960fCE8724aA127184B6d13Af41a711755236c77/info.json @@ -0,0 +1,21 @@ +{ + "name": "henlo", + "type": "ERC20", + "symbol": "henlo", + "decimals": 9, + "website": "https://henlo.meme/", + "description": "Henlo DAO is a memecoin powered by decentralized governance and meme culture on Ethereum. With 210 trillion tokens, holders shape the future, vote on proposals, and drive the project forward. Join the meme-fueled DAO movement, where fun and fairness lead the way!", + "explorer": "https://etherscan.io/token/0x960fCE8724aA127184B6d13Af41a711755236c77", + "status": "active", + "id": "0x960fCE8724aA127184B6d13Af41a711755236c77", + "links": [ + { + "name": "x", + "url": "https://x.com/henlomeme" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/henlo/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x960fCE8724aA127184B6d13Af41a711755236c77/logo.png b/blockchains/ethereum/assets/0x960fCE8724aA127184B6d13Af41a711755236c77/logo.png new file mode 100644 index 0000000000000..24925a052c311 Binary files /dev/null and b/blockchains/ethereum/assets/0x960fCE8724aA127184B6d13Af41a711755236c77/logo.png differ diff --git a/blockchains/ethereum/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json b/blockchains/ethereum/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json index 9b99e9e5be214..a00ff02d21b1f 100644 --- a/blockchains/ethereum/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json +++ b/blockchains/ethereum/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json @@ -6,12 +6,12 @@ "website": "https://www.dypius.com/", "description": "Dypius is a powerful, decentralized ecosystem with a focus on scalability, security, and global adoption through next-gen infrastructure. We offer a variety of products and services that cater to both beginners and advanced users in the crypto space including DeFi solutions, analytical tools, NFTs, Metaverse and more!", "explorer": "https://etherscan.io/token/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", - "status": "active", + "status": "abandoned", "id": "0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", "links": [ { - "name": "twitter", - "url": "https://twitter.com/dypfinance" + "name": "x", + "url": "https://x.com/dypfinance" }, { "name": "github", @@ -41,7 +41,6 @@ "tags": [ "governance", "nft", - "defi", - "staking-native" + "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png b/blockchains/ethereum/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png deleted file mode 100644 index 129342cfae435..0000000000000 Binary files a/blockchains/ethereum/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x96610186F3ab8d73EBEe1CF950C750f3B1Fb79C2/info.json b/blockchains/ethereum/assets/0x96610186F3ab8d73EBEe1CF950C750f3B1Fb79C2/info.json index 89e1f49ce2f47..69451b0333280 100644 --- a/blockchains/ethereum/assets/0x96610186F3ab8d73EBEe1CF950C750f3B1Fb79C2/info.json +++ b/blockchains/ethereum/assets/0x96610186F3ab8d73EBEe1CF950C750f3B1Fb79C2/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/enjinstarter/enjinstarter-tge-contracts" }, { - "name": "twitter", - "url": "https://twitter.com/enjinstarter" + "name": "x", + "url": "https://x.com/enjinstarter" }, { "name": "telegram", @@ -38,4 +38,4 @@ "gamefi", "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x966dB065199A3edEa2228C6E5Eb6Ac49FF251AcC/info.json b/blockchains/ethereum/assets/0x966dB065199A3edEa2228C6E5Eb6Ac49FF251AcC/info.json new file mode 100644 index 0000000000000..444fcc814e45a --- /dev/null +++ b/blockchains/ethereum/assets/0x966dB065199A3edEa2228C6E5Eb6Ac49FF251AcC/info.json @@ -0,0 +1,28 @@ +{ + "name": "SoundHound AI (Ondo Tokenized)", + "type": "ERC20", + "symbol": "SOUNon", + "decimals": 18, + "description": "SOUNon is the Ondo Tokenized version of SoundHound AI, giving tokenholders economic exposure similar to holding SOUN and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x966dB065199A3edEa2228C6E5Eb6Ac49FF251AcC", + "status": "active", + "id": "0x966dB065199A3edEa2228C6E5Eb6Ac49FF251AcC", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/soundhound-ai-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/soundhound-ai-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x966dB065199A3edEa2228C6E5Eb6Ac49FF251AcC/logo.png b/blockchains/ethereum/assets/0x966dB065199A3edEa2228C6E5Eb6Ac49FF251AcC/logo.png new file mode 100644 index 0000000000000..0ce518ad9482c Binary files /dev/null and b/blockchains/ethereum/assets/0x966dB065199A3edEa2228C6E5Eb6Ac49FF251AcC/logo.png differ diff --git a/blockchains/ethereum/assets/0x96702be57Cd9777f835117a809C7124fe4ec989A/info.json b/blockchains/ethereum/assets/0x96702be57Cd9777f835117a809C7124fe4ec989A/info.json new file mode 100644 index 0000000000000..bfac2c7d0d1ca --- /dev/null +++ b/blockchains/ethereum/assets/0x96702be57Cd9777f835117a809C7124fe4ec989A/info.json @@ -0,0 +1,24 @@ +{ + "name": "Meta tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Meta tokenized stock (xStock) (METAX) is a cryptocurrency and operates on the Solana platform. Meta tokenized stock (xStock) has a current supply of 1,000. The last known price of Meta tokenized stock (xStock) is 769.51285738 USD and is up 1.36 over the last 24 hours. It is currently trading on 26 active market(s) with $3,617,932.72 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/meta-xstock.", + "explorer": "https://etherscan.io/token/0x96702be57Cd9777f835117a809C7124fe4ec989A", + "type": "ERC20", + "symbol": "METAX", + "decimals": 18, + "status": "active", + "id": "0x96702be57Cd9777f835117a809C7124fe4ec989A", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/meta-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x96702be57Cd9777f835117a809C7124fe4ec989A/logo.png b/blockchains/ethereum/assets/0x96702be57Cd9777f835117a809C7124fe4ec989A/logo.png new file mode 100644 index 0000000000000..bce8b3c7c676d Binary files /dev/null and b/blockchains/ethereum/assets/0x96702be57Cd9777f835117a809C7124fe4ec989A/logo.png differ diff --git a/blockchains/ethereum/assets/0x967da4048cD07aB37855c090aAF366e4ce1b9F48/info.json b/blockchains/ethereum/assets/0x967da4048cD07aB37855c090aAF366e4ce1b9F48/info.json index 34ed04353eee0..ac5f1cf11b41f 100644 --- a/blockchains/ethereum/assets/0x967da4048cD07aB37855c090aAF366e4ce1b9F48/info.json +++ b/blockchains/ethereum/assets/0x967da4048cD07aB37855c090aAF366e4ce1b9F48/info.json @@ -18,8 +18,8 @@ "url": "https://github.com/oceanprotocol" }, { - "name": "twitter", - "url": "https://twitter.com/oceanprotocol" + "name": "x", + "url": "https://x.com/oceanprotocol" }, { "name": "blog", diff --git a/blockchains/ethereum/assets/0x968F6f898a6Df937fC1859b323aC2F14643e3fED/info.json b/blockchains/ethereum/assets/0x968F6f898a6Df937fC1859b323aC2F14643e3fED/info.json index 467a0cd033f73..4db24f22055fc 100644 --- a/blockchains/ethereum/assets/0x968F6f898a6Df937fC1859b323aC2F14643e3fED/info.json +++ b/blockchains/ethereum/assets/0x968F6f898a6Df937fC1859b323aC2F14643e3fED/info.json @@ -11,8 +11,8 @@ "id": "0x968F6f898a6Df937fC1859b323aC2F14643e3fED", "links": [ { - "name": "twitter", - "url": "https://twitter.com/NwcPublic" + "name": "x", + "url": "https://x.com/NwcPublic" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x96F6eF951840721AdBF46Ac996b59E0235CB985C/info.json b/blockchains/ethereum/assets/0x96F6eF951840721AdBF46Ac996b59E0235CB985C/info.json new file mode 100644 index 0000000000000..91e24ac5ee0fb --- /dev/null +++ b/blockchains/ethereum/assets/0x96F6eF951840721AdBF46Ac996b59E0235CB985C/info.json @@ -0,0 +1,29 @@ +{ + "name": "Ondo U.S. Dollar Yield", + "type": "ERC20", + "symbol": "USDY", + "decimals": 18, + "description": "Ondo US Dollar Yield (USDY) is a decentralized lending protocol designed to honor transfer restrictions from permissioned tokens, thereby expanding the universe of assets it can support. This unique approach allows it to cater to a broader range of financial instruments, making it a versatile player in the blockchain ecosystem.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x96F6eF951840721AdBF46Ac996b59E0235CB985C", + "id": "0x96F6eF951840721AdBF46Ac996b59E0235CB985C", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ondo-us-dollar-yield/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ondo-us-dollar-yield" + } + ], + "tags": [ + "stablecoin" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x96F6eF951840721AdBF46Ac996b59E0235CB985C/logo.png b/blockchains/ethereum/assets/0x96F6eF951840721AdBF46Ac996b59E0235CB985C/logo.png new file mode 100644 index 0000000000000..18f94a8ea8225 Binary files /dev/null and b/blockchains/ethereum/assets/0x96F6eF951840721AdBF46Ac996b59E0235CB985C/logo.png differ diff --git a/blockchains/ethereum/assets/0x970B9bB2C0444F5E81e9d0eFb84C8ccdcdcAf84d/info.json b/blockchains/ethereum/assets/0x970B9bB2C0444F5E81e9d0eFb84C8ccdcdcAf84d/info.json index dbb0794df418a..d32ed4a908cd6 100644 --- a/blockchains/ethereum/assets/0x970B9bB2C0444F5E81e9d0eFb84C8ccdcdcAf84d/info.json +++ b/blockchains/ethereum/assets/0x970B9bB2C0444F5E81e9d0eFb84C8ccdcdcAf84d/info.json @@ -26,8 +26,8 @@ "url": "https://github.com/fuseio" }, { - "name": "twitter", - "url": "https://twitter.com/Fuse_network" + "name": "x", + "url": "https://x.com/Fuse_network" }, { "name": "coinmarketcap", diff --git a/blockchains/ethereum/assets/0x976a95786DA6f6eE1c0755cCFB9A22adac2BF7B2/info.json b/blockchains/ethereum/assets/0x976a95786DA6f6eE1c0755cCFB9A22adac2BF7B2/info.json index 8109433f6da7b..c0e7f359bcdbf 100644 --- a/blockchains/ethereum/assets/0x976a95786DA6f6eE1c0755cCFB9A22adac2BF7B2/info.json +++ b/blockchains/ethereum/assets/0x976a95786DA6f6eE1c0755cCFB9A22adac2BF7B2/info.json @@ -10,8 +10,8 @@ "id": "0x976a95786DA6f6eE1c0755cCFB9A22adac2BF7B2", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SingularityDao" + "name": "x", + "url": "https://x.com/SingularityDao" }, { "name": "telegram", @@ -53,4 +53,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x979838c9C16FD365C9fE028B0bEa49B1750d86e9/info.json b/blockchains/ethereum/assets/0x979838c9C16FD365C9fE028B0bEa49B1750d86e9/info.json deleted file mode 100644 index 183f57a1d9aa3..0000000000000 --- a/blockchains/ethereum/assets/0x979838c9C16FD365C9fE028B0bEa49B1750d86e9/info.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "name": "FEG Wrapped USDT", - "symbol": "fUSDT", - "type": "ERC20", - "decimals": 6, - "description": "FEG Wrapped USDT", - "website": "https://fegtoken.com", - "explorer": "https://etherscan.io/token/0x979838c9c16fd365c9fe028b0bea49b1750d86e9", - "status": "active", - "id": "0x979838c9C16FD365C9fE028B0bEa49B1750d86e9" -} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x979838c9C16FD365C9fE028B0bEa49B1750d86e9/logo.png b/blockchains/ethereum/assets/0x979838c9C16FD365C9fE028B0bEa49B1750d86e9/logo.png deleted file mode 100644 index 7df0f296f490f..0000000000000 Binary files a/blockchains/ethereum/assets/0x979838c9C16FD365C9fE028B0bEa49B1750d86e9/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x97e3C21f27182498382f81e32fbe0ea3A0e3D79b/info.json b/blockchains/ethereum/assets/0x97e3C21f27182498382f81e32fbe0ea3A0e3D79b/info.json new file mode 100644 index 0000000000000..fc777da4eca31 --- /dev/null +++ b/blockchains/ethereum/assets/0x97e3C21f27182498382f81e32fbe0ea3A0e3D79b/info.json @@ -0,0 +1,21 @@ +{ + "name": "Flipped Pepe", + "website": "https://epep.gg", + "description": "Flipped Pepe $EPEP. The most memeable memecoin in existence, FLIPPED.", + "explorer": "https://etherscan.io/token/0x97e3c21f27182498382f81e32fbe0ea3a0e3d79b", + "type": "ERC20", + "symbol": "EPEP", + "decimals": 9, + "status": "active", + "id": "0x97e3C21f27182498382f81e32fbe0ea3A0e3D79b", + "links": [ + { + "name": "telegram", + "url": "https://t.me/hteniocepeP" + }, + { + "name": "x", + "url": "https://x.com/FlippedPepe" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x97e3C21f27182498382f81e32fbe0ea3A0e3D79b/logo.png b/blockchains/ethereum/assets/0x97e3C21f27182498382f81e32fbe0ea3A0e3D79b/logo.png new file mode 100644 index 0000000000000..2f1a0dafec665 Binary files /dev/null and b/blockchains/ethereum/assets/0x97e3C21f27182498382f81e32fbe0ea3A0e3D79b/logo.png differ diff --git a/blockchains/ethereum/assets/0x980a1001ee94e54142b231f44C7CA7c9DF71FBe1/info.json b/blockchains/ethereum/assets/0x980a1001ee94e54142b231f44C7CA7c9DF71FBe1/info.json new file mode 100644 index 0000000000000..32487b4285517 --- /dev/null +++ b/blockchains/ethereum/assets/0x980a1001ee94e54142b231f44C7CA7c9DF71FBe1/info.json @@ -0,0 +1,24 @@ +{ + "name": "Cisco Systems (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "CSCOon is the Ondo Tokenized version of Cisco Systems, giving tokenholders economic exposure similar to holding CSCO and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x980a1001ee94e54142b231f44C7CA7c9DF71FBe1", + "type": "ERC20", + "symbol": "CSCOon", + "decimals": 18, + "status": "active", + "id": "0x980a1001ee94e54142b231f44C7CA7c9DF71FBe1", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cisco-systems-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x980a1001ee94e54142b231f44C7CA7c9DF71FBe1/logo.png b/blockchains/ethereum/assets/0x980a1001ee94e54142b231f44C7CA7c9DF71FBe1/logo.png new file mode 100644 index 0000000000000..3be5c6553fcb2 Binary files /dev/null and b/blockchains/ethereum/assets/0x980a1001ee94e54142b231f44C7CA7c9DF71FBe1/logo.png differ diff --git a/blockchains/ethereum/assets/0x9813037ee2218799597d83D4a5B6F3b6778218d9/info.json b/blockchains/ethereum/assets/0x9813037ee2218799597d83D4a5B6F3b6778218d9/info.json index 5f29df04b4d0f..130a6db83f229 100644 --- a/blockchains/ethereum/assets/0x9813037ee2218799597d83D4a5B6F3b6778218d9/info.json +++ b/blockchains/ethereum/assets/0x9813037ee2218799597d83D4a5B6F3b6778218d9/info.json @@ -10,8 +10,8 @@ "id": "0x9813037ee2218799597d83D4a5B6F3b6778218d9", "links": [ { - "name": "twitter", - "url": "https://twitter.com/shibtoken" + "name": "x", + "url": "https://x.com/shibtoken" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x98284FbC11eDD7540E29b896a49817Bbe52DdCBd/info.json b/blockchains/ethereum/assets/0x98284FbC11eDD7540E29b896a49817Bbe52DdCBd/info.json new file mode 100644 index 0000000000000..035a4818ad831 --- /dev/null +++ b/blockchains/ethereum/assets/0x98284FbC11eDD7540E29b896a49817Bbe52DdCBd/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Ethereum Trust (Ondo Tokenized)", + "type": "ERC20", + "symbol": "ETHAon", + "decimals": 18, + "description": "ETHAon is the Ondo Tokenized version of the iShares Ethereum Trust ETF, giving tokenholders economic exposure similar to holding ETHA and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x98284FbC11eDD7540E29b896a49817Bbe52DdCBd", + "status": "active", + "id": "0x98284FbC11eDD7540E29b896a49817Bbe52DdCBd", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-ethereum-trust-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x98284FbC11eDD7540E29b896a49817Bbe52DdCBd/logo.png b/blockchains/ethereum/assets/0x98284FbC11eDD7540E29b896a49817Bbe52DdCBd/logo.png new file mode 100644 index 0000000000000..d163a75f472b5 Binary files /dev/null and b/blockchains/ethereum/assets/0x98284FbC11eDD7540E29b896a49817Bbe52DdCBd/logo.png differ diff --git a/blockchains/ethereum/assets/0x992651BFeB9A0DCC4457610E284ba66D86489d4d/info.json b/blockchains/ethereum/assets/0x992651BFeB9A0DCC4457610E284ba66D86489d4d/info.json new file mode 100644 index 0000000000000..3829fb0686869 --- /dev/null +++ b/blockchains/ethereum/assets/0x992651BFeB9A0DCC4457610E284ba66D86489d4d/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares 20+ Year Treasury Bond (Ondo)", + "website": "https://ondo.finance/", + "description": "TLTon is the Ondo Tokenized version of the iShares 20+ Year Treasury Bond ETF, giving tokenholders economic exposure similar to holding TLT and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x992651BFeB9A0DCC4457610E284ba66D86489d4d", + "type": "ERC20", + "symbol": "TLTon", + "decimals": 18, + "status": "active", + "id": "0x992651BFeB9A0DCC4457610E284ba66D86489d4d", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-20-year-treasury-bond-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x992651BFeB9A0DCC4457610E284ba66D86489d4d/logo.png b/blockchains/ethereum/assets/0x992651BFeB9A0DCC4457610E284ba66D86489d4d/logo.png new file mode 100644 index 0000000000000..731ceba6a1840 Binary files /dev/null and b/blockchains/ethereum/assets/0x992651BFeB9A0DCC4457610E284ba66D86489d4d/logo.png differ diff --git a/blockchains/ethereum/assets/0x993864E43Caa7F7F12953AD6fEb1d1Ca635B875F/info.json b/blockchains/ethereum/assets/0x993864E43Caa7F7F12953AD6fEb1d1Ca635B875F/info.json index 661afc6a952b4..8c846986b2c71 100644 --- a/blockchains/ethereum/assets/0x993864E43Caa7F7F12953AD6fEb1d1Ca635B875F/info.json +++ b/blockchains/ethereum/assets/0x993864E43Caa7F7F12953AD6fEb1d1Ca635B875F/info.json @@ -10,8 +10,8 @@ "id": "0x993864E43Caa7F7F12953AD6fEb1d1Ca635B875F", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SingularityDao" + "name": "x", + "url": "https://x.com/SingularityDao" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x998f02A9E343EF6E3E6f28700d5A20F839fD74E6/info.json b/blockchains/ethereum/assets/0x998f02A9E343EF6E3E6f28700d5A20F839fD74E6/info.json new file mode 100644 index 0000000000000..213cf09d4666b --- /dev/null +++ b/blockchains/ethereum/assets/0x998f02A9E343EF6E3E6f28700d5A20F839fD74E6/info.json @@ -0,0 +1,24 @@ +{ + "name": "Robinhood Markets (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "HOODon is the Ondo Tokenized version of Robinhood Markets, giving tokenholders economic exposure similar to holding HOOD and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x998f02A9E343EF6E3E6f28700d5A20F839fD74E6", + "type": "ERC20", + "symbol": "HOODon", + "decimals": 18, + "status": "active", + "id": "0x998f02A9E343EF6E3E6f28700d5A20F839fD74E6", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/robinhood-markets-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x998f02A9E343EF6E3E6f28700d5A20F839fD74E6/logo.png b/blockchains/ethereum/assets/0x998f02A9E343EF6E3E6f28700d5A20F839fD74E6/logo.png new file mode 100644 index 0000000000000..e09da245e46e0 Binary files /dev/null and b/blockchains/ethereum/assets/0x998f02A9E343EF6E3E6f28700d5A20F839fD74E6/logo.png differ diff --git a/blockchains/ethereum/assets/0x99CD4Ec3f88A45940936F469E4bB72A2A701EEB9/info.json b/blockchains/ethereum/assets/0x99CD4Ec3f88A45940936F469E4bB72A2A701EEB9/info.json new file mode 100644 index 0000000000000..e2689ba382221 --- /dev/null +++ b/blockchains/ethereum/assets/0x99CD4Ec3f88A45940936F469E4bB72A2A701EEB9/info.json @@ -0,0 +1,24 @@ +{ + "name": "Staked USDS", + "type": "ERC20", + "symbol": "stUSDS", + "decimals": 18, + "website": "https://sky.money/", + "description": "The stUSDS tokens serve as a digital record of your USDS interaction with the stUSDS module and any change to the value of your position.", + "explorer": "https://etherscan.io/token/0x99CD4Ec3f88A45940936F469E4bB72A2A701EEB9", + "status": "active", + "id": "0x99CD4Ec3f88A45940936F469E4bB72A2A701EEB9", + "links": [ + { + "name": "x", + "url": "https://x.com/SkyEcosystem" + }, + { + "name": "discord", + "url": "https://discord.com/invite/skyecosystem" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x99CD4Ec3f88A45940936F469E4bB72A2A701EEB9/logo.png b/blockchains/ethereum/assets/0x99CD4Ec3f88A45940936F469E4bB72A2A701EEB9/logo.png new file mode 100644 index 0000000000000..180f8268573cd Binary files /dev/null and b/blockchains/ethereum/assets/0x99CD4Ec3f88A45940936F469E4bB72A2A701EEB9/logo.png differ diff --git a/blockchains/ethereum/assets/0x99D8a9C45b2ecA8864373A26D1459e3Dff1e17F3/info.json b/blockchains/ethereum/assets/0x99D8a9C45b2ecA8864373A26D1459e3Dff1e17F3/info.json index 2d57a9f25aa45..87226c79a5efd 100644 --- a/blockchains/ethereum/assets/0x99D8a9C45b2ecA8864373A26D1459e3Dff1e17F3/info.json +++ b/blockchains/ethereum/assets/0x99D8a9C45b2ecA8864373A26D1459e3Dff1e17F3/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/Abracadabra-money/magic-internet-money" }, { - "name": "twitter", - "url": "https://twitter.com/MIM_Spell" + "name": "x", + "url": "https://x.com/MIM_Spell" }, { "name": "coingecko", diff --git a/blockchains/ethereum/assets/0x99aA107e55250a9fE52bB4b5541A59239EB6D974/info.json b/blockchains/ethereum/assets/0x99aA107e55250a9fE52bB4b5541A59239EB6D974/info.json new file mode 100644 index 0000000000000..07d8d5803efa4 --- /dev/null +++ b/blockchains/ethereum/assets/0x99aA107e55250a9fE52bB4b5541A59239EB6D974/info.json @@ -0,0 +1,28 @@ +{ + "name": "Southern (Ondo Tokenized)", + "type": "ERC20", + "symbol": "SOon", + "decimals": 18, + "description": "SOon is the Ondo Tokenized version of Southern, giving tokenholders economic exposure similar to holding SO and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x99aA107e55250a9fE52bB4b5541A59239EB6D974", + "status": "active", + "id": "0x99aA107e55250a9fE52bB4b5541A59239EB6D974", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/southern-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/southern-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x99aA107e55250a9fE52bB4b5541A59239EB6D974/logo.png b/blockchains/ethereum/assets/0x99aA107e55250a9fE52bB4b5541A59239EB6D974/logo.png new file mode 100644 index 0000000000000..5fb20048817a0 Binary files /dev/null and b/blockchains/ethereum/assets/0x99aA107e55250a9fE52bB4b5541A59239EB6D974/logo.png differ diff --git a/blockchains/ethereum/assets/0x99cFB8cBA9c821B4a343c6a1Fc630465C9708DF5/info.json b/blockchains/ethereum/assets/0x99cFB8cBA9c821B4a343c6a1Fc630465C9708DF5/info.json index a33707aead88c..97d0e04d45013 100644 --- a/blockchains/ethereum/assets/0x99cFB8cBA9c821B4a343c6a1Fc630465C9708DF5/info.json +++ b/blockchains/ethereum/assets/0x99cFB8cBA9c821B4a343c6a1Fc630465C9708DF5/info.json @@ -10,8 +10,8 @@ "id": "0x99cFB8cBA9c821B4a343c6a1Fc630465C9708DF5", "links": [ { - "name": "twitter", - "url": "https://twitter.com/pepeinueth" + "name": "x", + "url": "https://x.com/pepeinueth" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x9A48BD0EC040ea4f1D3147C025cd4076A2e71e3e/info.json b/blockchains/ethereum/assets/0x9A48BD0EC040ea4f1D3147C025cd4076A2e71e3e/info.json index fb04fecde3ed2..dddb875184cf6 100644 --- a/blockchains/ethereum/assets/0x9A48BD0EC040ea4f1D3147C025cd4076A2e71e3e/info.json +++ b/blockchains/ethereum/assets/0x9A48BD0EC040ea4f1D3147C025cd4076A2e71e3e/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/pie-dao/pie-smart-pools" }, { - "name": "twitter", - "url": "https://twitter.com/PieDAO_DeFi" + "name": "x", + "url": "https://x.com/PieDAO_DeFi" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9AAb071B4129B083B01cB5A0Cb513Ce7ecA26fa5/info.json b/blockchains/ethereum/assets/0x9AAb071B4129B083B01cB5A0Cb513Ce7ecA26fa5/info.json index 62f5078e8b386..18cd8a7a3002a 100644 --- a/blockchains/ethereum/assets/0x9AAb071B4129B083B01cB5A0Cb513Ce7ecA26fa5/info.json +++ b/blockchains/ethereum/assets/0x9AAb071B4129B083B01cB5A0Cb513Ce7ecA26fa5/info.json @@ -1,5 +1,5 @@ { - "name": "HuntToken", + "name": "Hunt Town", "symbol": "HUNT", "type": "ERC20", "decimals": 18, diff --git a/blockchains/ethereum/assets/0x9AB7bb7FdC60f4357ECFef43986818A2A3569c62/info.json b/blockchains/ethereum/assets/0x9AB7bb7FdC60f4357ECFef43986818A2A3569c62/info.json new file mode 100644 index 0000000000000..2e22a86ccb9b0 --- /dev/null +++ b/blockchains/ethereum/assets/0x9AB7bb7FdC60f4357ECFef43986818A2A3569c62/info.json @@ -0,0 +1,21 @@ +{ + "name": "Guild of Guardians", + "symbol": "GOG", + "type": "ERC20", + "decimals": 18, + "description": "Guild of Guardians is a mobile RPG where players can turn their gaming passion into assets.", + "website": "https://www.guildofguardians.com/", + "explorer": "https://etherscan.io/token/0x9AB7bb7FdC60f4357ECFef43986818A2A3569c62", + "status": "active", + "id": "0x9AB7bb7FdC60f4357ECFef43986818A2A3569c62", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/guild-of-guardians/" + }, + { + "name": "x", + "url": "https://x.com/GuildOfGuardian" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9AB7bb7FdC60f4357ECFef43986818A2A3569c62/logo.png b/blockchains/ethereum/assets/0x9AB7bb7FdC60f4357ECFef43986818A2A3569c62/logo.png new file mode 100644 index 0000000000000..46f20b0bfcd20 Binary files /dev/null and b/blockchains/ethereum/assets/0x9AB7bb7FdC60f4357ECFef43986818A2A3569c62/logo.png differ diff --git a/blockchains/ethereum/assets/0x9B02dD390a603Add5c07f9fd9175b7DABE8D63B7/info.json b/blockchains/ethereum/assets/0x9B02dD390a603Add5c07f9fd9175b7DABE8D63B7/info.json index 666abab274dd2..6decffa6797b7 100755 --- a/blockchains/ethereum/assets/0x9B02dD390a603Add5c07f9fd9175b7DABE8D63B7/info.json +++ b/blockchains/ethereum/assets/0x9B02dD390a603Add5c07f9fd9175b7DABE8D63B7/info.json @@ -10,8 +10,8 @@ "id": "0x9B02dD390a603Add5c07f9fd9175b7DABE8D63B7", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Shoppin.io" + "name": "x", + "url": "https://x.com/Shoppin.io" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x9B3A8159e119eb09822115AE08Ee1526849e1116/info.json b/blockchains/ethereum/assets/0x9B3A8159e119eb09822115AE08Ee1526849e1116/info.json new file mode 100644 index 0000000000000..403f23f927939 --- /dev/null +++ b/blockchains/ethereum/assets/0x9B3A8159e119eb09822115AE08Ee1526849e1116/info.json @@ -0,0 +1,29 @@ +{ + "name": "Meme Alliance", + "website": "https://www.meme-alliance.com/", + "description": "Meme Alliance is a GameFI platform. The goal of Meme Alliance is to connect Meme communities trough gaming into one ecosystem.", + "explorer": "https://etherscan.io/token/0x9B3A8159e119eb09822115AE08Ee1526849e1116", + "type": "ERC20", + "symbol": "MMA", + "decimals": 9, + "status": "active", + "id": "0x9B3A8159e119eb09822115AE08Ee1526849e1116", + "links": [ + { + "name": "x", + "url": "https://x.com/memealliancefps" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/meme-alliance/" + }, + { + "name": "telegram", + "url": "https://t.me/RealElmoERC" + }, + { + "name": "discord", + "url": "https://discord.com/ZuUy9d5XRn" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9B3A8159e119eb09822115AE08Ee1526849e1116/logo.png b/blockchains/ethereum/assets/0x9B3A8159e119eb09822115AE08Ee1526849e1116/logo.png new file mode 100644 index 0000000000000..1035dc9aac237 Binary files /dev/null and b/blockchains/ethereum/assets/0x9B3A8159e119eb09822115AE08Ee1526849e1116/logo.png differ diff --git a/blockchains/ethereum/assets/0x9B85babc0cc89899cCd47e9226A0b1FaE577B19E/info.json b/blockchains/ethereum/assets/0x9B85babc0cc89899cCd47e9226A0b1FaE577B19E/info.json index ee7f948629f33..0affef4f44bd8 100644 --- a/blockchains/ethereum/assets/0x9B85babc0cc89899cCd47e9226A0b1FaE577B19E/info.json +++ b/blockchains/ethereum/assets/0x9B85babc0cc89899cCd47e9226A0b1FaE577B19E/info.json @@ -10,8 +10,8 @@ "id": "0x9B85babc0cc89899cCd47e9226A0b1FaE577B19E", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PPBank_Official" + "name": "x", + "url": "https://x.com/PPBank_Official" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x9B9647431632AF44be02ddd22477Ed94d14AacAa/info.json b/blockchains/ethereum/assets/0x9B9647431632AF44be02ddd22477Ed94d14AacAa/info.json index bfe9276531dac..30ac31d45dcaa 100644 --- a/blockchains/ethereum/assets/0x9B9647431632AF44be02ddd22477Ed94d14AacAa/info.json +++ b/blockchains/ethereum/assets/0x9B9647431632AF44be02ddd22477Ed94d14AacAa/info.json @@ -10,8 +10,8 @@ "id": "0x9B9647431632AF44be02ddd22477Ed94d14AacAa", "links": [ { - "name": "twitter", - "url": "https://twitter.com/KOK_CHAIN" + "name": "x", + "url": "https://x.com/KOK_CHAIN" }, { "name": "facebook", diff --git a/blockchains/ethereum/assets/0x9B99CcA871Be05119B2012fd4474731dd653FEBe/info.json b/blockchains/ethereum/assets/0x9B99CcA871Be05119B2012fd4474731dd653FEBe/info.json index 7d6b124e3df81..e5f64bade5123 100644 --- a/blockchains/ethereum/assets/0x9B99CcA871Be05119B2012fd4474731dd653FEBe/info.json +++ b/blockchains/ethereum/assets/0x9B99CcA871Be05119B2012fd4474731dd653FEBe/info.json @@ -10,8 +10,8 @@ "id": "0x9B99CcA871Be05119B2012fd4474731dd653FEBe", "links": [ { - "name": "twitter", - "url": "https://twitter.com/antimatterdefi" + "name": "x", + "url": "https://x.com/antimatterdefi" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x9C2dc0c3CC2BADdE84B0025Cf4df1c5aF288D835/info.json b/blockchains/ethereum/assets/0x9C2dc0c3CC2BADdE84B0025Cf4df1c5aF288D835/info.json index 7babc6a137cb4..9df67185ba6a2 100644 --- a/blockchains/ethereum/assets/0x9C2dc0c3CC2BADdE84B0025Cf4df1c5aF288D835/info.json +++ b/blockchains/ethereum/assets/0x9C2dc0c3CC2BADdE84B0025Cf4df1c5aF288D835/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/coreto-io" }, { - "name": "twitter", - "url": "https://twitter.com/Coretoio" + "name": "x", + "url": "https://x.com/Coretoio" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649/info.json b/blockchains/ethereum/assets/0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649/info.json new file mode 100644 index 0000000000000..ab6782392cb3f --- /dev/null +++ b/blockchains/ethereum/assets/0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649/info.json @@ -0,0 +1,21 @@ +{ + "name": "Gravity", + "type": "ERC20", + "symbol": "G", + "decimals": 18, + "website": "https://gravity.xyz/", + "description": "A decentralized finance protocol offering various financial services.", + "explorer": "https://etherscan.io/token/0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649", + "status": "active", + "id": "0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649", + "links": [ + { + "name": "x", + "url": "https://x.com/gravitychain" + }, + { + "name": "telegram", + "url": "https://t.me/Galxe" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649/logo.png b/blockchains/ethereum/assets/0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649/logo.png new file mode 100644 index 0000000000000..53857d38e2d2a Binary files /dev/null and b/blockchains/ethereum/assets/0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649/logo.png differ diff --git a/blockchains/ethereum/assets/0x9Ce84F6A69986a83d92C324df10bC8E64771030f/info.json b/blockchains/ethereum/assets/0x9Ce84F6A69986a83d92C324df10bC8E64771030f/info.json new file mode 100644 index 0000000000000..b21b63f08759c --- /dev/null +++ b/blockchains/ethereum/assets/0x9Ce84F6A69986a83d92C324df10bC8E64771030f/info.json @@ -0,0 +1,29 @@ +{ + "name": "Chintai", + "type": "ERC20", + "symbol": "CHEX", + "decimals": 18, + "description": "The CHEX token is the utility token of the Chintai Network. Its primary use is for resource handling on the network and for helping to increase liquidity on the platform through a variety of incentive methods.", + "website": "https://chintai.io/", + "explorer": "https://etherscan.io/token/0x9ce84f6a69986a83d92c324df10bc8e64771030f", + "id": "0x9Ce84F6A69986a83d92C324df10bC8E64771030f", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/ChintaiNexus" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chex-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/chex-token" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9Ce84F6A69986a83d92C324df10bC8E64771030f/logo.png b/blockchains/ethereum/assets/0x9Ce84F6A69986a83d92C324df10bC8E64771030f/logo.png new file mode 100644 index 0000000000000..5e2030470d659 Binary files /dev/null and b/blockchains/ethereum/assets/0x9Ce84F6A69986a83d92C324df10bC8E64771030f/logo.png differ diff --git a/blockchains/ethereum/assets/0x9Cf0ED013e67DB12cA3AF8e7506fE401aA14dAd6/info.json b/blockchains/ethereum/assets/0x9Cf0ED013e67DB12cA3AF8e7506fE401aA14dAd6/info.json new file mode 100644 index 0000000000000..be7c5d1a7b80d --- /dev/null +++ b/blockchains/ethereum/assets/0x9Cf0ED013e67DB12cA3AF8e7506fE401aA14dAd6/info.json @@ -0,0 +1,21 @@ +{ + "name": "SPECTRE AI", + "type": "ERC20", + "symbol": "SPECTRE", + "decimals": 18, + "website": "https://spectrebot.ai/", + "description": "In the world of cryptocurrency, market volatility can be a formidable challenge. Enter SPECTRE, an innovative AI-powered predictive learning tool designed to assist traders and investors. SPECTRE is your key to AI-based trading based on machine learning.", + "explorer": "https://etherscan.io/token/0x9cf0ed013e67db12ca3af8e7506fe401aa14dad6", + "status": "active", + "id": "0x9Cf0ED013e67DB12cA3AF8e7506fE401aA14dAd6", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spectre-ai/" + }, + { + "name": "x", + "url": "https://x.com/Spectre__AI" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9Cf0ED013e67DB12cA3AF8e7506fE401aA14dAd6/logo.png b/blockchains/ethereum/assets/0x9Cf0ED013e67DB12cA3AF8e7506fE401aA14dAd6/logo.png new file mode 100644 index 0000000000000..dc0fed10e12e4 Binary files /dev/null and b/blockchains/ethereum/assets/0x9Cf0ED013e67DB12cA3AF8e7506fE401aA14dAd6/logo.png differ diff --git a/blockchains/ethereum/assets/0x9D39A5DE30e57443BfF2A8307A4256c8797A3497/info.json b/blockchains/ethereum/assets/0x9D39A5DE30e57443BfF2A8307A4256c8797A3497/info.json new file mode 100644 index 0000000000000..43e84493c9382 --- /dev/null +++ b/blockchains/ethereum/assets/0x9D39A5DE30e57443BfF2A8307A4256c8797A3497/info.json @@ -0,0 +1,21 @@ +{ + "name": "Staked USDe", + "type": "ERC20", + "symbol": "sUSDe", + "decimals": 18, + "website": "https://www.ethena.fi/", + "description": "vEthena is a synthetic dollar protocol built on Ethereum that will provide a crypto-native solution for money not reliant on traditional banking system infrastructure, alongside a globally accessible dollar denominated savings instrument - the 'Internet Bond'.", + "explorer": "https://etherscan.io/token/0x9d39a5de30e57443bff2a8307a4256c8797a3497", + "status": "active", + "id": "0x9D39A5DE30e57443BfF2A8307A4256c8797A3497", + "links": [ + { + "name": "x", + "url": "https://x.com/ethena_labs" + }, + { + "name": "telegram", + "url": "https://t.me/ethena_labs" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9D39A5DE30e57443BfF2A8307A4256c8797A3497/logo.png b/blockchains/ethereum/assets/0x9D39A5DE30e57443BfF2A8307A4256c8797A3497/logo.png new file mode 100644 index 0000000000000..e1b7f5c1764ac Binary files /dev/null and b/blockchains/ethereum/assets/0x9D39A5DE30e57443BfF2A8307A4256c8797A3497/logo.png differ diff --git a/blockchains/ethereum/assets/0x9D47894f8BECB68B9cF3428d256311Affe8B068B/info.json b/blockchains/ethereum/assets/0x9D47894f8BECB68B9cF3428d256311Affe8B068B/info.json index eca8600e6327e..7d893216b9437 100644 --- a/blockchains/ethereum/assets/0x9D47894f8BECB68B9cF3428d256311Affe8B068B/info.json +++ b/blockchains/ethereum/assets/0x9D47894f8BECB68B9cF3428d256311Affe8B068B/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/dontbuyrope/" }, { - "name": "twitter", - "url": "https://twitter.com/dontbuyrope" + "name": "x", + "url": "https://x.com/dontbuyrope" }, { "name": "medium", diff --git a/blockchains/ethereum/assets/0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54/info.json b/blockchains/ethereum/assets/0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54/info.json new file mode 100644 index 0000000000000..3137e7ea526e6 --- /dev/null +++ b/blockchains/ethereum/assets/0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54/info.json @@ -0,0 +1,29 @@ +{ + "name": "SSV", + "website": "https://ssv.network/", + "description": "ssv. the network is a decentralized staking infrastructure that enables the distributed operation of an Ethereum validator. An open-source protocol for simple and scalable access to decentralized ETH staking for all.", + "explorer": "https://etherscan.io/token/0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54", + "type": "ERC20", + "symbol": "SSV", + "decimals": 18, + "status": "active", + "id": "0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54", + "links": [ + { + "name": "github", + "url": "https://github.com/bloxapp/ssv" + }, + { + "name": "x", + "url": "https://x.com/ssv_network" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ssv-network/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ssv-network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54/logo.png b/blockchains/ethereum/assets/0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54/logo.png new file mode 100644 index 0000000000000..429bf6b6fec32 Binary files /dev/null and b/blockchains/ethereum/assets/0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54/logo.png differ diff --git a/blockchains/ethereum/assets/0x9D95486E1B0E0Ea8A5361e853901F731B7f8e403/info.json b/blockchains/ethereum/assets/0x9D95486E1B0E0Ea8A5361e853901F731B7f8e403/info.json new file mode 100644 index 0000000000000..08490fc84efc0 --- /dev/null +++ b/blockchains/ethereum/assets/0x9D95486E1B0E0Ea8A5361e853901F731B7f8e403/info.json @@ -0,0 +1,25 @@ +{ + "name": "BORED PEPE VIP CLUB", + "website": "https://boredpepevipclub.com", + "description": "BPVC is a Coin named $BPVC and a collection of 10,000 Bored Pepe NFTs unique digital collectibles living on the Ethereum blockchain.", + "explorer": "https://etherscan.io/token/0x9d95486e1b0e0ea8a5361e853901f731b7f8e403", + "type": "ERC20", + "symbol": "BPVC", + "decimals": 18, + "status": "active", + "id": "0x9D95486E1B0E0Ea8A5361e853901F731B7f8e403", + "links": [ + { + "name": "x", + "url": "https://x.com/BoredPepeVC" + }, + { + "name": "telegram", + "url": "https://t.me/BoredPepeVC" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bored-pepe-vip-club/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9D95486E1B0E0Ea8A5361e853901F731B7f8e403/logo.png b/blockchains/ethereum/assets/0x9D95486E1B0E0Ea8A5361e853901F731B7f8e403/logo.png new file mode 100644 index 0000000000000..ffba09e350c7f Binary files /dev/null and b/blockchains/ethereum/assets/0x9D95486E1B0E0Ea8A5361e853901F731B7f8e403/logo.png differ diff --git a/blockchains/ethereum/assets/0x9DCAF532dBa85E565bF6B425f07377eC2bb6F46A/info.json b/blockchains/ethereum/assets/0x9DCAF532dBa85E565bF6B425f07377eC2bb6F46A/info.json new file mode 100644 index 0000000000000..93d6c7918881c --- /dev/null +++ b/blockchains/ethereum/assets/0x9DCAF532dBa85E565bF6B425f07377eC2bb6F46A/info.json @@ -0,0 +1,21 @@ +{ + "name": "Dragonball Z Tribu", + "type": "ERC20", + "symbol": "DBZ", + "decimals": 8, + "website": "http://dragonballztribute.com", + "description": "$DBZ A tribute to the legend, the mastermind behind the record-breaking Dragon Ball Franchise.", + "explorer": "https://etherscan.io/token/0x9dcaf532dba85e565bf6b425f07377ec2bb6f46a", + "status": "active", + "id": "0x9DCAF532dBa85E565bF6B425f07377eC2bb6F46A", + "links": [ + { + "name": "telegram", + "url": "https://t.me/dragonballztribute" + }, + { + "name": "x", + "url": "https://x.com/DBZ_tribute" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9DCAF532dBa85E565bF6B425f07377eC2bb6F46A/logo.png b/blockchains/ethereum/assets/0x9DCAF532dBa85E565bF6B425f07377eC2bb6F46A/logo.png new file mode 100644 index 0000000000000..f786e048c9412 Binary files /dev/null and b/blockchains/ethereum/assets/0x9DCAF532dBa85E565bF6B425f07377eC2bb6F46A/logo.png differ diff --git a/blockchains/ethereum/assets/0x9DCf7f739B8C0270E2FC0Cc8D0DaBe355a150dBa/info.json b/blockchains/ethereum/assets/0x9DCf7f739B8C0270E2FC0Cc8D0DaBe355a150dBa/info.json new file mode 100644 index 0000000000000..d66a6c5be461d --- /dev/null +++ b/blockchains/ethereum/assets/0x9DCf7f739B8C0270E2FC0Cc8D0DaBe355a150dBa/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Russell 2000 Value ETF (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "IWNon is the Ondo Tokenized version of the iShares Russell 2000 Value ETF, giving tokenholders economic exposure similar to holding IWN and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x9DCf7f739B8C0270E2FC0Cc8D0DaBe355a150dBa", + "type": "ERC20", + "symbol": "IWNon", + "decimals": 18, + "status": "active", + "id": "0x9DCf7f739B8C0270E2FC0Cc8D0DaBe355a150dBa", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-russell-2000-value-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9DCf7f739B8C0270E2FC0Cc8D0DaBe355a150dBa/logo.png b/blockchains/ethereum/assets/0x9DCf7f739B8C0270E2FC0Cc8D0DaBe355a150dBa/logo.png new file mode 100644 index 0000000000000..8adf578853fa6 Binary files /dev/null and b/blockchains/ethereum/assets/0x9DCf7f739B8C0270E2FC0Cc8D0DaBe355a150dBa/logo.png differ diff --git a/blockchains/ethereum/assets/0x9DFAD1b7102D46b1b197b90095B5c4E9f5845BBA/info.json b/blockchains/ethereum/assets/0x9DFAD1b7102D46b1b197b90095B5c4E9f5845BBA/info.json new file mode 100644 index 0000000000000..c8ba506ca3395 --- /dev/null +++ b/blockchains/ethereum/assets/0x9DFAD1b7102D46b1b197b90095B5c4E9f5845BBA/info.json @@ -0,0 +1,21 @@ +{ + "name": "Botto", + "symbol": "BOTTO", + "type": "ERC20", + "decimals": 18, + "description": "Botto is a decentralized autonomous artist that creates works of art based on collective feedback from the community. Our participation is what completes Botto as an artist.", + "website": "https://botto.com/", + "explorer": "https://etherscan.io/token/0x9dfad1b7102d46b1b197b90095b5c4e9f5845bba", + "status": "active", + "id": "0x9DFAD1b7102D46b1b197b90095B5c4E9f5845BBA", + "links": [ + { + "name": "x", + "url": "https://x.com/bottoproject" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/botto/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9DFAD1b7102D46b1b197b90095B5c4E9f5845BBA/logo.png b/blockchains/ethereum/assets/0x9DFAD1b7102D46b1b197b90095B5c4E9f5845BBA/logo.png new file mode 100644 index 0000000000000..c54aa8d6470f5 Binary files /dev/null and b/blockchains/ethereum/assets/0x9DFAD1b7102D46b1b197b90095B5c4E9f5845BBA/logo.png differ diff --git a/blockchains/ethereum/assets/0x9E8bfE46f9Af27c5Ea5C9C72b86D71bb86953A0c/info.json b/blockchains/ethereum/assets/0x9E8bfE46f9Af27c5Ea5C9C72b86D71bb86953A0c/info.json index 558697640d9bb..ab29e3b7bb028 100644 --- a/blockchains/ethereum/assets/0x9E8bfE46f9Af27c5Ea5C9C72b86D71bb86953A0c/info.json +++ b/blockchains/ethereum/assets/0x9E8bfE46f9Af27c5Ea5C9C72b86D71bb86953A0c/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/ezdex-service" }, { - "name": "twitter", - "url": "https://twitter.com/ExchangeEzdex" + "name": "x", + "url": "https://x.com/ExchangeEzdex" }, { "name": "facebook", diff --git a/blockchains/ethereum/assets/0x9E9FbDE7C7a83c43913BddC8779158F1368F0413/info.json b/blockchains/ethereum/assets/0x9E9FbDE7C7a83c43913BddC8779158F1368F0413/info.json new file mode 100644 index 0000000000000..287c53d9257ea --- /dev/null +++ b/blockchains/ethereum/assets/0x9E9FbDE7C7a83c43913BddC8779158F1368F0413/info.json @@ -0,0 +1,28 @@ + { + "name": "Pandora", + "website": "https://www.pandora.build", + "description": "Pandora is the first ERC404, an experimental mixed ERC20/ERC721 implementation with native liquidity and fractionalization for non-fungible tokens.", + "explorer": "https://etherscan.io/token/0x9e9fbde7c7a83c43913bddc8779158f1368f0413", + "type": "ERC20", + "symbol": "PANDORA", + "decimals": 18, + "status": "abandoned", + "id": "0x9E9FbDE7C7a83c43913BddC8779158F1368F0413", + "links": [ + { + "name": "github", + "url": "https://github.com/Pandora-Labs-Org" + }, + { + "name": "x", + "url": "https://x.com/Pandora_ERC404" + }, + { + "name": "telegram", + "url": "https://t.me/pandora_404" + } + ], + "tags": [ + "memes" + ] + } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9F284E1337A815fe77D2Ff4aE46544645B20c5ff/info.json b/blockchains/ethereum/assets/0x9F284E1337A815fe77D2Ff4aE46544645B20c5ff/info.json index bb0fb49f60482..9cec606e2b0b5 100644 --- a/blockchains/ethereum/assets/0x9F284E1337A815fe77D2Ff4aE46544645B20c5ff/info.json +++ b/blockchains/ethereum/assets/0x9F284E1337A815fe77D2Ff4aE46544645B20c5ff/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/darwinia-network" }, { - "name": "twitter", - "url": "https://twitter.com/DarwiniaNetwork" + "name": "x", + "url": "https://x.com/DarwiniaNetwork" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x9Fd9278f04f01c6a39a9d1c1CD79f7782C6ADe08/info.json b/blockchains/ethereum/assets/0x9Fd9278f04f01c6a39a9d1c1CD79f7782C6ADe08/info.json new file mode 100644 index 0000000000000..8791e09f1bf9e --- /dev/null +++ b/blockchains/ethereum/assets/0x9Fd9278f04f01c6a39a9d1c1CD79f7782C6ADe08/info.json @@ -0,0 +1,21 @@ +{ + "name": "Biaoqing", + "website": "https://biaoqing.live/", + "description": "Biaoqing ($BIAO) is a memecoin on the Ethereum blockchain, inspired by the famous Chinese meme representing facial expressions.", + "explorer": "https://etherscan.io/token/0x9Fd9278f04f01c6a39a9d1c1CD79f7782C6ADe08", + "type": "ERC20", + "symbol": "BIAO", + "decimals": 9, + "status": "active", + "id": "0x9Fd9278f04f01c6a39a9d1c1CD79f7782C6ADe08", + "links": [ + { + "name": "x", + "url": "https://x.com/biaoerc20" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/biaoqing/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9Fd9278f04f01c6a39a9d1c1CD79f7782C6ADe08/logo.png b/blockchains/ethereum/assets/0x9Fd9278f04f01c6a39a9d1c1CD79f7782C6ADe08/logo.png new file mode 100644 index 0000000000000..96147ad932f12 Binary files /dev/null and b/blockchains/ethereum/assets/0x9Fd9278f04f01c6a39a9d1c1CD79f7782C6ADe08/logo.png differ diff --git a/blockchains/ethereum/assets/0x9b53E429B0baDd98ef7F01F03702986c516a5715/info.json b/blockchains/ethereum/assets/0x9b53E429B0baDd98ef7F01F03702986c516a5715/info.json index 6acfad447faec..c2e85feb4141f 100644 --- a/blockchains/ethereum/assets/0x9b53E429B0baDd98ef7F01F03702986c516a5715/info.json +++ b/blockchains/ethereum/assets/0x9b53E429B0baDd98ef7F01F03702986c516a5715/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/hybrix-io" }, { - "name": "twitter", - "url": "https://twitter.com/@hybrix_io" + "name": "x", + "url": "https://x.com/@hybrix_io" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x9b56f5ED5A94Ae3266b7FF21953e6626F94008F1/info.json b/blockchains/ethereum/assets/0x9b56f5ED5A94Ae3266b7FF21953e6626F94008F1/info.json new file mode 100644 index 0000000000000..33520b1029398 --- /dev/null +++ b/blockchains/ethereum/assets/0x9b56f5ED5A94Ae3266b7FF21953e6626F94008F1/info.json @@ -0,0 +1,24 @@ +{ + "name": "Eaton (Ondo Tokenized)", + "type": "ERC20", + "symbol": "ETNon", + "decimals": 18, + "description": "ETNon is the Ondo Tokenized version of Eaton, giving tokenholders economic exposure similar to holding ETN and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x9b56f5ED5A94Ae3266b7FF21953e6626F94008F1", + "status": "active", + "id": "0x9b56f5ED5A94Ae3266b7FF21953e6626F94008F1", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/eaton-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9b56f5ED5A94Ae3266b7FF21953e6626F94008F1/logo.png b/blockchains/ethereum/assets/0x9b56f5ED5A94Ae3266b7FF21953e6626F94008F1/logo.png new file mode 100644 index 0000000000000..8439cf72d5498 Binary files /dev/null and b/blockchains/ethereum/assets/0x9b56f5ED5A94Ae3266b7FF21953e6626F94008F1/logo.png differ diff --git a/blockchains/ethereum/assets/0x9bf1D7D63dD7a4ce167CF4866388226EEefa702E/info.json b/blockchains/ethereum/assets/0x9bf1D7D63dD7a4ce167CF4866388226EEefa702E/info.json index b7a147c90ae35..2bcbbcd150297 100644 --- a/blockchains/ethereum/assets/0x9bf1D7D63dD7a4ce167CF4866388226EEefa702E/info.json +++ b/blockchains/ethereum/assets/0x9bf1D7D63dD7a4ce167CF4866388226EEefa702E/info.json @@ -3,20 +3,24 @@ "type": "ERC20", "symbol": "BEN", "decimals": 18, - "website": "https://bencoineth.com/", - "description": "Ben token aims to be another meme coin... or is it?", + "website": "https://joinbencoin.com/", + "description": "Empowering Retail Investors through Crypto Advocacy, Education, Transparency and Representation.", "explorer": "https://etherscan.io/token/0x9bf1d7d63dd7a4ce167cf4866388226eeefa702e", "status": "active", "id": "0x9bf1D7D63dD7a4ce167CF4866388226EEefa702E", "links": [ { - "name": "twitter", - "url": "https://twitter.com/bencoin_eth" + "name": "x", + "url": "https://x.com/joinbencoin" }, { "name": "telegram", "url": "https://t.me/bencoineth" }, + { + "name": "discord", + "url": "https://discord.com/invite/joinbencoin" + }, { "name": "coinmarketcap", "url": "https://coinmarketcap.com/currencies/ben/" @@ -27,6 +31,7 @@ } ], "tags": [ - "memes" + "governance", + "defi" ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9bf1D7D63dD7a4ce167CF4866388226EEefa702E/logo.png b/blockchains/ethereum/assets/0x9bf1D7D63dD7a4ce167CF4866388226EEefa702E/logo.png index 612926c50e78e..665e296697e89 100644 Binary files a/blockchains/ethereum/assets/0x9bf1D7D63dD7a4ce167CF4866388226EEefa702E/logo.png and b/blockchains/ethereum/assets/0x9bf1D7D63dD7a4ce167CF4866388226EEefa702E/logo.png differ diff --git a/blockchains/ethereum/assets/0x9cEB84f92A0561fa3Cc4132aB9c0b76A59787544/info.json b/blockchains/ethereum/assets/0x9cEB84f92A0561fa3Cc4132aB9c0b76A59787544/info.json index f8954c0a1869e..644248582b49e 100644 --- a/blockchains/ethereum/assets/0x9cEB84f92A0561fa3Cc4132aB9c0b76A59787544/info.json +++ b/blockchains/ethereum/assets/0x9cEB84f92A0561fa3Cc4132aB9c0b76A59787544/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/dokidokidefi" }, { - "name": "twitter", - "url": "https://twitter.com/dokidokifinance" + "name": "x", + "url": "https://x.com/dokidokifinance" }, { "name": "medium", diff --git a/blockchains/ethereum/assets/0x9cFA08002d606e638Fe91941bE725e1b970B84a6/info.json b/blockchains/ethereum/assets/0x9cFA08002d606e638Fe91941bE725e1b970B84a6/info.json new file mode 100644 index 0000000000000..22e3e666bc182 --- /dev/null +++ b/blockchains/ethereum/assets/0x9cFA08002d606e638Fe91941bE725e1b970B84a6/info.json @@ -0,0 +1,28 @@ +{ + "name": "Archer Aviation (Ondo Tokenized)", + "type": "ERC20", + "symbol": "ACHRon", + "decimals": 18, + "description": "ACHRon is the Ondo Tokenized version of Archer Aviation, giving tokenholders economic exposure similar to holding ACHR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x9cFA08002d606e638Fe91941bE725e1b970B84a6", + "status": "active", + "id": "0x9cFA08002d606e638Fe91941bE725e1b970B84a6", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/archer-aviation-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/archer-aviation-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9cFA08002d606e638Fe91941bE725e1b970B84a6/logo.png b/blockchains/ethereum/assets/0x9cFA08002d606e638Fe91941bE725e1b970B84a6/logo.png new file mode 100644 index 0000000000000..275ec766f80be Binary files /dev/null and b/blockchains/ethereum/assets/0x9cFA08002d606e638Fe91941bE725e1b970B84a6/logo.png differ diff --git a/blockchains/ethereum/assets/0x9cdf242Ef7975D8c68D5C1F5B6905801699b1940/info.json b/blockchains/ethereum/assets/0x9cdf242Ef7975D8c68D5C1F5B6905801699b1940/info.json new file mode 100644 index 0000000000000..93f36327a18bd --- /dev/null +++ b/blockchains/ethereum/assets/0x9cdf242Ef7975D8c68D5C1F5B6905801699b1940/info.json @@ -0,0 +1,21 @@ +{ + "name": "WhiteRock", + "type": "ERC20", + "symbol": "WHITE", + "decimals": 18, + "website": "https://whiterock.fi/", + "description": "Experience true financial freedom by trading shares of companies, properties, or bonds anytime, anywhere. Our platform breaks down the barriers of traditional markets, empowering you to trade beyond market hours - no longer is this only limited to the big players.", + "explorer": "https://etherscan.io/token/0x9cdf242ef7975d8c68d5c1f5b6905801699b1940", + "status": "active", + "id": "0x9cdf242Ef7975D8c68D5C1F5B6905801699b1940", + "links": [ + { + "name": "x", + "url": "https://x.com/WhiteRock_Fi" + }, + { + "name": "telegram", + "url": "https://t.me/whiterock_fi" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9cdf242Ef7975D8c68D5C1F5B6905801699b1940/logo.png b/blockchains/ethereum/assets/0x9cdf242Ef7975D8c68D5C1F5B6905801699b1940/logo.png new file mode 100644 index 0000000000000..c7c91ddaf6991 Binary files /dev/null and b/blockchains/ethereum/assets/0x9cdf242Ef7975D8c68D5C1F5B6905801699b1940/logo.png differ diff --git a/blockchains/ethereum/assets/0x9d1555d8cB3C846Bb4f7D5B1B1080872c3166676/info.json b/blockchains/ethereum/assets/0x9d1555d8cB3C846Bb4f7D5B1B1080872c3166676/info.json index 4d81d743237b3..f69605ff38992 100644 --- a/blockchains/ethereum/assets/0x9d1555d8cB3C846Bb4f7D5B1B1080872c3166676/info.json +++ b/blockchains/ethereum/assets/0x9d1555d8cB3C846Bb4f7D5B1B1080872c3166676/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/MirrorProtocol" + "name": "x", + "url": "https://x.com/MirrorProtocol" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x9d1A7A3191102e9F900Faa10540837ba84dCBAE7/info.json b/blockchains/ethereum/assets/0x9d1A7A3191102e9F900Faa10540837ba84dCBAE7/info.json new file mode 100644 index 0000000000000..3eed519fe355b --- /dev/null +++ b/blockchains/ethereum/assets/0x9d1A7A3191102e9F900Faa10540837ba84dCBAE7/info.json @@ -0,0 +1,21 @@ +{ + "name": "EURITE", + "type": "ERC20", + "symbol": "EURI", + "decimals": 18, + "website": "https://www.eurite.com/", + "description": "Eurite Euro Token (EURI) is issued by Banking Circle S.A (Banking Circle) and subject to regulatory requirements of Markets in Crypto-Assets Regulation (MiCA).", + "explorer": "https://etherscan.io/token/0x9d1a7a3191102e9f900faa10540837ba84dcbae7", + "status": "active", + "id": "0x9d1A7A3191102e9F900Faa10540837ba84dCBAE7", + "links": [ + { + "name": "x", + "url": "https://x.com/Eurite_BC" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/eurite" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9d1A7A3191102e9F900Faa10540837ba84dCBAE7/logo.png b/blockchains/ethereum/assets/0x9d1A7A3191102e9F900Faa10540837ba84dCBAE7/logo.png new file mode 100644 index 0000000000000..aa298592423d1 Binary files /dev/null and b/blockchains/ethereum/assets/0x9d1A7A3191102e9F900Faa10540837ba84dCBAE7/logo.png differ diff --git a/blockchains/ethereum/assets/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a/info.json b/blockchains/ethereum/assets/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a/info.json new file mode 100644 index 0000000000000..0f0b30c5e8cd7 --- /dev/null +++ b/blockchains/ethereum/assets/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a/info.json @@ -0,0 +1,24 @@ +{ + "name": "Apple tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Apple tokenized stock (xStock) (AAPLX) is a cryptocurrency and operates on the Arbitrum platform. Apple tokenized stock (xStock) has a current supply of 18,998.50133677 with 8,999.30716257 in circulation. The last known price of Apple tokenized stock (xStock) is 236.69155907 USD and is down -0.06 over the last 24 hours. It is currently trading on 39 active market(s) with $6,049,996.18 traded over the last 24 hours. More information can be found at https://xstocks.fi/.", + "explorer": "https://etherscan.io/token/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a", + "type": "ERC20", + "symbol": "AAPLX", + "decimals": 18, + "status": "active", + "id": "0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/apple-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a/logo.png b/blockchains/ethereum/assets/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a/logo.png new file mode 100644 index 0000000000000..2af9425e91160 Binary files /dev/null and b/blockchains/ethereum/assets/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a/logo.png differ diff --git a/blockchains/ethereum/assets/0x9d4C6AD12B55E4645b585209F90Cc26614061E91/info.json b/blockchains/ethereum/assets/0x9d4C6AD12B55E4645b585209F90Cc26614061E91/info.json new file mode 100644 index 0000000000000..21bf5f35afa24 --- /dev/null +++ b/blockchains/ethereum/assets/0x9d4C6AD12B55E4645b585209F90Cc26614061E91/info.json @@ -0,0 +1,24 @@ +{ + "name": "Baidu (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "BIDUon is the Ondo Tokenized version of Baidu, giving tokenholders economic exposure similar to holding BIDU and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0x9d4C6AD12B55E4645b585209F90Cc26614061E91", + "type": "ERC20", + "symbol": "BIDUon", + "decimals": 18, + "status": "active", + "id": "0x9d4C6AD12B55E4645b585209F90Cc26614061E91", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/baidu-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9d4C6AD12B55E4645b585209F90Cc26614061E91/logo.png b/blockchains/ethereum/assets/0x9d4C6AD12B55E4645b585209F90Cc26614061E91/logo.png new file mode 100644 index 0000000000000..c6fbb5707de4e Binary files /dev/null and b/blockchains/ethereum/assets/0x9d4C6AD12B55E4645b585209F90Cc26614061E91/logo.png differ diff --git a/blockchains/ethereum/assets/0x9d71CE49ab8A0E6D2a1e7BFB89374C9392FD6804/info.json b/blockchains/ethereum/assets/0x9d71CE49ab8A0E6D2a1e7BFB89374C9392FD6804/info.json index efbb829491e73..92817204e9ebb 100644 --- a/blockchains/ethereum/assets/0x9d71CE49ab8A0E6D2a1e7BFB89374C9392FD6804/info.json +++ b/blockchains/ethereum/assets/0x9d71CE49ab8A0E6D2a1e7BFB89374C9392FD6804/info.json @@ -26,8 +26,8 @@ "url": "https://nvirworld.io/" }, { - "name": "twitter", - "url": "https://twitter.com/NvirWorld" + "name": "x", + "url": "https://x.com/NvirWorld" }, { "name": "telegram", @@ -55,4 +55,4 @@ "nft", "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9ddb2524782684942FAD28b44E76552cB7f3F548/info.json b/blockchains/ethereum/assets/0x9ddb2524782684942FAD28b44E76552cB7f3F548/info.json new file mode 100644 index 0000000000000..88a76fc0cc62c --- /dev/null +++ b/blockchains/ethereum/assets/0x9ddb2524782684942FAD28b44E76552cB7f3F548/info.json @@ -0,0 +1,24 @@ +{ + "name": "US Brent Oil Fund (Ondo Tokenized)", + "type": "ERC20", + "symbol": "BNOon", + "decimals": 18, + "description": "BNOon is the Ondo Tokenized version of the US Brent Oil Fund, giving tokenholders economic exposure similar to holding BNO and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x9ddb2524782684942FAD28b44E76552cB7f3F548", + "status": "active", + "id": "0x9ddb2524782684942FAD28b44E76552cB7f3F548", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/us-brent-oil-fund-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9ddb2524782684942FAD28b44E76552cB7f3F548/logo.png b/blockchains/ethereum/assets/0x9ddb2524782684942FAD28b44E76552cB7f3F548/logo.png new file mode 100644 index 0000000000000..12335ab8ef272 Binary files /dev/null and b/blockchains/ethereum/assets/0x9ddb2524782684942FAD28b44E76552cB7f3F548/logo.png differ diff --git a/blockchains/ethereum/assets/0x9e18d5BAB2FA94a6A95F509Ecb38F8F68322AbD3/info.json b/blockchains/ethereum/assets/0x9e18d5BAB2FA94a6A95F509Ecb38F8F68322AbD3/info.json new file mode 100644 index 0000000000000..d57b38d1aed6d --- /dev/null +++ b/blockchains/ethereum/assets/0x9e18d5BAB2FA94a6A95F509Ecb38F8F68322AbD3/info.json @@ -0,0 +1,44 @@ +{ + "name": "AMATERASU OMIKAMI", + "type": "ERC20", + "symbol": "OMIKAMI", + "decimals": 9, + "website": "https://omikamitoken.com", + "description": "A decentralized token evolving into a vibrant ecosystem, revolutionizing DeFi, Web3, AI, Machine Learning, and the Metaverse.", + "explorer": "https://etherscan.io/token/0x9e18d5BAB2FA94a6A95F509Ecb38F8F68322AbD3", + "status": "active", + "id": "0x9e18d5BAB2FA94a6A95F509Ecb38F8F68322AbD3", + "links": [ + { + "name": "x", + "url": "https://x.com/Omikamitoken" + }, + { + "name": "telegram", + "url": "https://t.me/OmikamiPortal" + }, + { + "name": "whitepaper", + "url": "https://www.omikamitoken.com/download/omikami.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/@OmikamiOfficial" + }, + { + "name": "facebook", + "url": "https://facebook.com/OmikamiCrypto" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/amaterasu-omikami/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/amaterasu-omikami" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9e18d5BAB2FA94a6A95F509Ecb38F8F68322AbD3/logo.png b/blockchains/ethereum/assets/0x9e18d5BAB2FA94a6A95F509Ecb38F8F68322AbD3/logo.png new file mode 100644 index 0000000000000..7bb1769e1e105 Binary files /dev/null and b/blockchains/ethereum/assets/0x9e18d5BAB2FA94a6A95F509Ecb38F8F68322AbD3/logo.png differ diff --git a/blockchains/ethereum/assets/0x9e5BD9D9fAd182ff0A93bA8085b664bcab00fA68/info.json b/blockchains/ethereum/assets/0x9e5BD9D9fAd182ff0A93bA8085b664bcab00fA68/info.json index 1ade5de85d513..c9a362109125d 100644 --- a/blockchains/ethereum/assets/0x9e5BD9D9fAd182ff0A93bA8085b664bcab00fA68/info.json +++ b/blockchains/ethereum/assets/0x9e5BD9D9fAd182ff0A93bA8085b664bcab00fA68/info.json @@ -22,8 +22,8 @@ "url": "https://coingecko.com/en/coins/dinger-token" }, { - "name": "twitter", - "url": "https://twitter.com/dingertoken" + "name": "x", + "url": "https://x.com/dingertoken" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0x9ebd34d99Cc3a45B39CAFc14Ad7994263fa2Be56/info.json b/blockchains/ethereum/assets/0x9ebd34d99Cc3a45B39CAFc14Ad7994263fa2Be56/info.json new file mode 100644 index 0000000000000..1707fac4b8a60 --- /dev/null +++ b/blockchains/ethereum/assets/0x9ebd34d99Cc3a45B39CAFc14Ad7994263fa2Be56/info.json @@ -0,0 +1,28 @@ +{ + "name": "ProShares Short QQQ (Ondo Tokenized)", + "type": "ERC20", + "symbol": "PSQon", + "decimals": 18, + "description": "PSQon is the Ondo Tokenized version of the ProShares Short QQQ, giving tokenholders economic exposure similar to holding PSQ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x9ebd34d99Cc3a45B39CAFc14Ad7994263fa2Be56", + "status": "active", + "id": "0x9ebd34d99Cc3a45B39CAFc14Ad7994263fa2Be56", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/proshares-short-qqq-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/proshares-short-qqq-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9ebd34d99Cc3a45B39CAFc14Ad7994263fa2Be56/logo.png b/blockchains/ethereum/assets/0x9ebd34d99Cc3a45B39CAFc14Ad7994263fa2Be56/logo.png new file mode 100644 index 0000000000000..d28deab3711b4 Binary files /dev/null and b/blockchains/ethereum/assets/0x9ebd34d99Cc3a45B39CAFc14Ad7994263fa2Be56/logo.png differ diff --git a/blockchains/ethereum/assets/0x9f2e3EB0160117c56b07652Fe66a08a48b5bD7B5/info.json b/blockchains/ethereum/assets/0x9f2e3EB0160117c56b07652Fe66a08a48b5bD7B5/info.json new file mode 100644 index 0000000000000..88e3fdc4b9152 --- /dev/null +++ b/blockchains/ethereum/assets/0x9f2e3EB0160117c56b07652Fe66a08a48b5bD7B5/info.json @@ -0,0 +1,28 @@ +{ + "name": "SoFi Technologies (Ondo)", + "type": "ERC20", + "symbol": "SOFIon", + "decimals": 18, + "description": "SOFIon is the Ondo Tokenized version of SoFi Technologies, giving tokenholders economic exposure similar to holding SOFI and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0x9f2e3EB0160117c56b07652Fe66a08a48b5bD7B5", + "status": "active", + "id": "0x9f2e3EB0160117c56b07652Fe66a08a48b5bD7B5", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sofi-technologies-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sofi-technologies-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9f2e3EB0160117c56b07652Fe66a08a48b5bD7B5/logo.png b/blockchains/ethereum/assets/0x9f2e3EB0160117c56b07652Fe66a08a48b5bD7B5/logo.png new file mode 100644 index 0000000000000..dcd5cc8df6dbc Binary files /dev/null and b/blockchains/ethereum/assets/0x9f2e3EB0160117c56b07652Fe66a08a48b5bD7B5/logo.png differ diff --git a/blockchains/ethereum/assets/0x9f826324bb9BdcF7E7Eb274BEDc417BD45D74F39/info.json b/blockchains/ethereum/assets/0x9f826324bb9BdcF7E7Eb274BEDc417BD45D74F39/info.json index 99799d4fb56f5..a35bd718d3860 100644 --- a/blockchains/ethereum/assets/0x9f826324bb9BdcF7E7Eb274BEDc417BD45D74F39/info.json +++ b/blockchains/ethereum/assets/0x9f826324bb9BdcF7E7Eb274BEDc417BD45D74F39/info.json @@ -10,8 +10,8 @@ "id": "0x9f826324bb9BdcF7E7Eb274BEDc417BD45D74F39", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MilkAI_com" + "name": "x", + "url": "https://x.com/MilkAI_com" }, { "name": "telegram", @@ -29,4 +29,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9fa69536d1cda4A04cFB50688294de75B505a9aE/info.json b/blockchains/ethereum/assets/0x9fa69536d1cda4A04cFB50688294de75B505a9aE/info.json index 76cd7dfec8cb6..65fd9689300d7 100644 --- a/blockchains/ethereum/assets/0x9fa69536d1cda4A04cFB50688294de75B505a9aE/info.json +++ b/blockchains/ethereum/assets/0x9fa69536d1cda4A04cFB50688294de75B505a9aE/info.json @@ -14,8 +14,8 @@ "url": "https://derace.com" }, { - "name": "twitter", - "url": "https://twitter.com/deracenft" + "name": "x", + "url": "https://x.com/deracenft" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0x9fa69536d1cda4A04cFB50688294de75B505a9aE/logo.png b/blockchains/ethereum/assets/0x9fa69536d1cda4A04cFB50688294de75B505a9aE/logo.png index fce6b5ea004e8..e428af9216608 100644 Binary files a/blockchains/ethereum/assets/0x9fa69536d1cda4A04cFB50688294de75B505a9aE/logo.png and b/blockchains/ethereum/assets/0x9fa69536d1cda4A04cFB50688294de75B505a9aE/logo.png differ diff --git a/blockchains/ethereum/assets/0x9ff58067Bd8D239000010c154C6983A325Df138E/info.json b/blockchains/ethereum/assets/0x9ff58067Bd8D239000010c154C6983A325Df138E/info.json new file mode 100644 index 0000000000000..40f9f3df9b0ba --- /dev/null +++ b/blockchains/ethereum/assets/0x9ff58067Bd8D239000010c154C6983A325Df138E/info.json @@ -0,0 +1,38 @@ +{ + "name": "Propchain", + "type": "ERC20", + "symbol": "PROPC", + "decimals": 18, + "website": "https://www.propchain.com/", + "description": "Propchain is an innovative organization focusing on transforming the real estate sector through blockchain technology. Allowing for fractionalized investments in real estate strategies and assets. ", + "explorer": "https://etherscan.io/token/0x9ff58067Bd8D239000010c154C6983A325Df138E", + "status": "active", + "id": "0x9ff58067Bd8D239000010c154C6983A325Df138E", + "links": [ + { + "name": "x", + "url": "https://x.com/PropChainGlobal" + }, + { + "name": "telegram", + "url": "https://t.me/+XqBjcP4oAm01MWE0" + }, + { + "name": "whitepaper", + "url": "https://www.propchain.com/insights-category/whitepaper" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/propchain/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/propchain" + } + ], + "tags": [ + "defi", + "staking", + "dapp" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9ff58067Bd8D239000010c154C6983A325Df138E/logo.png b/blockchains/ethereum/assets/0x9ff58067Bd8D239000010c154C6983A325Df138E/logo.png new file mode 100644 index 0000000000000..41fc24e154016 Binary files /dev/null and b/blockchains/ethereum/assets/0x9ff58067Bd8D239000010c154C6983A325Df138E/logo.png differ diff --git a/blockchains/ethereum/assets/0xA01199c61841Fce3b3daFB83FeFC1899715c8756/info.json b/blockchains/ethereum/assets/0xA01199c61841Fce3b3daFB83FeFC1899715c8756/info.json new file mode 100644 index 0000000000000..69280d6ee4823 --- /dev/null +++ b/blockchains/ethereum/assets/0xA01199c61841Fce3b3daFB83FeFC1899715c8756/info.json @@ -0,0 +1,21 @@ +{ + "name": "Cirus", + "type": "ERC20", + "symbol": "CIRUS", + "decimals": 18, + "website": "https://cirusfoundation.com/", + "description": "The fluctuating protocol token that plays a role in stabilizing RSV and confers the cryptographic right to purchase excess Reserve tokens as the network grows.", + "explorer": "https://etherscan.io/token/0xa01199c61841fce3b3dafb83fefc1899715c8756", + "status": "active", + "id": "0xA01199c61841Fce3b3daFB83FeFC1899715c8756", + "links": [ + { + "name": "x", + "url": "https://x.com/CirusFoundation" + }, + { + "name": "telegram", + "url": "https://t.me/cirusfoundation" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA01199c61841Fce3b3daFB83FeFC1899715c8756/logo.png b/blockchains/ethereum/assets/0xA01199c61841Fce3b3daFB83FeFC1899715c8756/logo.png new file mode 100644 index 0000000000000..c471fa52c208e Binary files /dev/null and b/blockchains/ethereum/assets/0xA01199c61841Fce3b3daFB83FeFC1899715c8756/logo.png differ diff --git a/blockchains/ethereum/assets/0xA043FDc5A6E2E381e3532d5A97404b82fb7A0af8/info.json b/blockchains/ethereum/assets/0xA043FDc5A6E2E381e3532d5A97404b82fb7A0af8/info.json new file mode 100644 index 0000000000000..ff515a6ac89b2 --- /dev/null +++ b/blockchains/ethereum/assets/0xA043FDc5A6E2E381e3532d5A97404b82fb7A0af8/info.json @@ -0,0 +1,24 @@ +{ + "name": "GE Vernova (Ondo Tokenized)", + "type": "ERC20", + "symbol": "GEVon", + "decimals": 18, + "description": "GEVon is the Ondo Tokenized version of GE Vernova, giving tokenholders economic exposure similar to holding GEV and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xA043FDc5A6E2E381e3532d5A97404b82fb7A0af8", + "status": "active", + "id": "0xA043FDc5A6E2E381e3532d5A97404b82fb7A0af8", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ge-vernova-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA043FDc5A6E2E381e3532d5A97404b82fb7A0af8/logo.png b/blockchains/ethereum/assets/0xA043FDc5A6E2E381e3532d5A97404b82fb7A0af8/logo.png new file mode 100644 index 0000000000000..abf2400ac0358 Binary files /dev/null and b/blockchains/ethereum/assets/0xA043FDc5A6E2E381e3532d5A97404b82fb7A0af8/logo.png differ diff --git a/blockchains/ethereum/assets/0xA0Ef786Bf476fE0810408CaBA05E536aC800ff86/info.json b/blockchains/ethereum/assets/0xA0Ef786Bf476fE0810408CaBA05E536aC800ff86/info.json index b32ddea3fd77a..214ab311516ee 100644 --- a/blockchains/ethereum/assets/0xA0Ef786Bf476fE0810408CaBA05E536aC800ff86/info.json +++ b/blockchains/ethereum/assets/0xA0Ef786Bf476fE0810408CaBA05E536aC800ff86/info.json @@ -18,8 +18,8 @@ "url": "https://t.me/myriaofficialgroup" }, { - "name": "twitter", - "url": "https://twitter.com/myria" + "name": "x", + "url": "https://x.com/myria" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA0b73E1Ff0B80914AB6fe0444E65848C4C34450b/info.json b/blockchains/ethereum/assets/0xA0b73E1Ff0B80914AB6fe0444E65848C4C34450b/info.json index 5806bfaaca5d4..c13fd6f530d9b 100644 --- a/blockchains/ethereum/assets/0xA0b73E1Ff0B80914AB6fe0444E65848C4C34450b/info.json +++ b/blockchains/ethereum/assets/0xA0b73E1Ff0B80914AB6fe0444E65848C4C34450b/info.json @@ -1,5 +1,5 @@ { - "name": "Crypto.com Coin", + "name": "Cronos", "website": "https://crypto.com/en/chain", "description": "Crypto.com Chain will be a privacy preserving payment network that focuses on enabling crypto spending in the real world, powering the future of mobile money.", "explorer": "https://etherscan.io/token/0xA0b73E1Ff0B80914AB6fe0444E65848C4C34450b", @@ -14,8 +14,8 @@ "url": "https://medium.com/@crypto.com" }, { - "name": "twitter", - "url": "https://twitter.com/cryptocom" + "name": "x", + "url": "https://x.com/cryptocom" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48/info.json b/blockchains/ethereum/assets/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48/info.json index b310c04de8651..46585a3512062 100644 --- a/blockchains/ethereum/assets/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48/info.json +++ b/blockchains/ethereum/assets/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48/info.json @@ -1,5 +1,5 @@ { - "name": "USD Coin", + "name": "USDC", "website": "https://centre.io/usdc", "description": "USDC is a fully collateralized US dollar stablecoin, an Ethereum powered coin and is the brainchild of CENTRE, an open source project bootstrapped by contributions from Circle and Coinbase.", "explorer": "https://etherscan.io/token/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", diff --git a/blockchains/ethereum/assets/0xA2120b9e674d3fC3875f415A7DF52e382F141225/info.json b/blockchains/ethereum/assets/0xA2120b9e674d3fC3875f415A7DF52e382F141225/info.json index 5fe11d3e78bbc..50358730d1b66 100644 --- a/blockchains/ethereum/assets/0xA2120b9e674d3fC3875f415A7DF52e382F141225/info.json +++ b/blockchains/ethereum/assets/0xA2120b9e674d3fC3875f415A7DF52e382F141225/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/automata-network" }, { - "name": "twitter", - "url": "https://twitter.com/automatanetwork" + "name": "x", + "url": "https://x.com/automatanetwork" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xA29dC2102dfc2a0A4A5dCb84Af984315567c9858/info.json b/blockchains/ethereum/assets/0xA29dC2102dfc2a0A4A5dCb84Af984315567c9858/info.json new file mode 100644 index 0000000000000..30700dac5f861 --- /dev/null +++ b/blockchains/ethereum/assets/0xA29dC2102dfc2a0A4A5dCb84Af984315567c9858/info.json @@ -0,0 +1,24 @@ +{ + "name": "Mastercard (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "MAon is the Ondo Tokenized version of Mastercard, giving tokenholders economic exposure similar to holding MA and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xA29dC2102dfc2a0A4A5dCb84Af984315567c9858", + "type": "ERC20", + "symbol": "MAon", + "decimals": 18, + "status": "active", + "id": "0xA29dC2102dfc2a0A4A5dCb84Af984315567c9858", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mastercard-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA29dC2102dfc2a0A4A5dCb84Af984315567c9858/logo.png b/blockchains/ethereum/assets/0xA29dC2102dfc2a0A4A5dCb84Af984315567c9858/logo.png new file mode 100644 index 0000000000000..87120d139b3b2 Binary files /dev/null and b/blockchains/ethereum/assets/0xA29dC2102dfc2a0A4A5dCb84Af984315567c9858/logo.png differ diff --git a/blockchains/ethereum/assets/0xA2C1c0b4683a871187d4565Eb63ABF9AEF5947Ee/info.json b/blockchains/ethereum/assets/0xA2C1c0b4683a871187d4565Eb63ABF9AEF5947Ee/info.json new file mode 100644 index 0000000000000..f6b3439af52d1 --- /dev/null +++ b/blockchains/ethereum/assets/0xA2C1c0b4683a871187d4565Eb63ABF9AEF5947Ee/info.json @@ -0,0 +1,28 @@ +{ + "name": "Moderna (Ondo Tokenized)", + "type": "ERC20", + "symbol": "MRNAon", + "decimals": 18, + "description": "MRNAon is the Ondo Tokenized version of Moderna, giving tokenholders economic exposure similar to holding MRNA and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xA2C1c0b4683a871187d4565Eb63ABF9AEF5947Ee", + "status": "active", + "id": "0xA2C1c0b4683a871187d4565Eb63ABF9AEF5947Ee", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/moderna-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/moderna-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA2C1c0b4683a871187d4565Eb63ABF9AEF5947Ee/logo.png b/blockchains/ethereum/assets/0xA2C1c0b4683a871187d4565Eb63ABF9AEF5947Ee/logo.png new file mode 100644 index 0000000000000..1286f93f5591c Binary files /dev/null and b/blockchains/ethereum/assets/0xA2C1c0b4683a871187d4565Eb63ABF9AEF5947Ee/logo.png differ diff --git a/blockchains/ethereum/assets/0xA2cd3D43c775978A96BdBf12d733D5A1ED94fb18/info.json b/blockchains/ethereum/assets/0xA2cd3D43c775978A96BdBf12d733D5A1ED94fb18/info.json index 28fc1d944f622..cbd6528576fd3 100644 --- a/blockchains/ethereum/assets/0xA2cd3D43c775978A96BdBf12d733D5A1ED94fb18/info.json +++ b/blockchains/ethereum/assets/0xA2cd3D43c775978A96BdBf12d733D5A1ED94fb18/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Onyx-Protocol" }, { - "name": "twitter", - "url": "https://twitter.com/OnyxProtocol" + "name": "x", + "url": "https://x.com/OnyxProtocol" }, { "name": "blog", @@ -33,4 +33,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA2eC76139028F279A1C790d323c57Cc4158098d6/info.json b/blockchains/ethereum/assets/0xA2eC76139028F279A1C790d323c57Cc4158098d6/info.json new file mode 100644 index 0000000000000..18d3bf58dff2c --- /dev/null +++ b/blockchains/ethereum/assets/0xA2eC76139028F279A1C790d323c57Cc4158098d6/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares 7-10 Year Treasury Bond ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "IEFon", + "decimals": 18, + "description": "IEFon is the Ondo Tokenized version of the iShares 7-10 Year Treasury Bond ETF, giving tokenholders economic exposure similar to holding IEF and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xA2eC76139028F279A1C790d323c57Cc4158098d6", + "status": "active", + "id": "0xA2eC76139028F279A1C790d323c57Cc4158098d6", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-7-10-year-treasury-bond-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA2eC76139028F279A1C790d323c57Cc4158098d6/logo.png b/blockchains/ethereum/assets/0xA2eC76139028F279A1C790d323c57Cc4158098d6/logo.png new file mode 100644 index 0000000000000..6c93239492673 Binary files /dev/null and b/blockchains/ethereum/assets/0xA2eC76139028F279A1C790d323c57Cc4158098d6/logo.png differ diff --git a/blockchains/ethereum/assets/0xA35923162C49cF95e6BF26623385eb431ad920D3/info.json b/blockchains/ethereum/assets/0xA35923162C49cF95e6BF26623385eb431ad920D3/info.json index a5a2866d24c8d..0532e399f13df 100644 --- a/blockchains/ethereum/assets/0xA35923162C49cF95e6BF26623385eb431ad920D3/info.json +++ b/blockchains/ethereum/assets/0xA35923162C49cF95e6BF26623385eb431ad920D3/info.json @@ -14,8 +14,8 @@ "url": "https://discord.com/FYdKKmV3CU" }, { - "name": "twitter", - "url": "https://twitter.com/TurboToadToken" + "name": "x", + "url": "https://x.com/TurboToadToken" } ], "tags": [ diff --git a/blockchains/ethereum/assets/0xA392c35EC6900346aDEc720Abe50413F48Ee5143/info.json b/blockchains/ethereum/assets/0xA392c35EC6900346aDEc720Abe50413F48Ee5143/info.json index 83ac66042359c..954a59f9fc821 100644 --- a/blockchains/ethereum/assets/0xA392c35EC6900346aDEc720Abe50413F48Ee5143/info.json +++ b/blockchains/ethereum/assets/0xA392c35EC6900346aDEc720Abe50413F48Ee5143/info.json @@ -10,8 +10,8 @@ "id": "0xA392c35EC6900346aDEc720Abe50413F48Ee5143", "links": [ { - "name": "twitter", - "url": "https://twitter.com/LEAVINGRECORDS/" + "name": "x", + "url": "https://x.com/LEAVINGRECORDS/" }, { "name": "discord", @@ -21,4 +21,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA3cB87080e68AD54D00573983D935Fa85d168FDE/info.json b/blockchains/ethereum/assets/0xA3cB87080e68AD54D00573983D935Fa85d168FDE/info.json new file mode 100644 index 0000000000000..a687aa025f08a --- /dev/null +++ b/blockchains/ethereum/assets/0xA3cB87080e68AD54D00573983D935Fa85d168FDE/info.json @@ -0,0 +1,25 @@ +{ + "name": "InfinityBit Token", + "type": "ERC20", + "symbol": "IBIT", + "decimals": 8, + "website": "https://ibit.infinitybit.io/", + "description": "IBIT functions as the currency for InfinityBit, an on-chain CEX. It also provides access to an automated AI-powered trading system and the greater InfinityBit ecosystem.", + "explorer": "https://etherscan.io/token/0xA3cB87080e68AD54D00573983D935Fa85d168FDE", + "status": "active", + "id": "0xA3cB87080e68AD54D00573983D935Fa85d168FDE", + "links": [ + { + "name": "x", + "url": "https://x.com/infinitybit_io" + }, + { + "name": "telegram", + "url": "https://t.me/infinitybit_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/infinitybit-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA3cB87080e68AD54D00573983D935Fa85d168FDE/logo.png b/blockchains/ethereum/assets/0xA3cB87080e68AD54D00573983D935Fa85d168FDE/logo.png new file mode 100644 index 0000000000000..f668e19d090b7 Binary files /dev/null and b/blockchains/ethereum/assets/0xA3cB87080e68AD54D00573983D935Fa85d168FDE/logo.png differ diff --git a/blockchains/ethereum/assets/0xA4EED63db85311E22dF4473f87CcfC3DaDCFA3E3/info.json b/blockchains/ethereum/assets/0xA4EED63db85311E22dF4473f87CcfC3DaDCFA3E3/info.json index 414c7f9195747..868dc9ba17bdf 100644 --- a/blockchains/ethereum/assets/0xA4EED63db85311E22dF4473f87CcfC3DaDCFA3E3/info.json +++ b/blockchains/ethereum/assets/0xA4EED63db85311E22dF4473f87CcfC3DaDCFA3E3/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Cryptorubic/rubic_frontend" }, { - "name": "twitter", - "url": "https://twitter.com/Rubic" + "name": "x", + "url": "https://x.com/Rubic" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xA4Eb9C64eC359D093eAc7B65F51Ef933D6e5F7cd/info.json b/blockchains/ethereum/assets/0xA4Eb9C64eC359D093eAc7B65F51Ef933D6e5F7cd/info.json index 6e8285412ceff..c8a7a00f11b66 100644 --- a/blockchains/ethereum/assets/0xA4Eb9C64eC359D093eAc7B65F51Ef933D6e5F7cd/info.json +++ b/blockchains/ethereum/assets/0xA4Eb9C64eC359D093eAc7B65F51Ef933D6e5F7cd/info.json @@ -10,8 +10,8 @@ "id": "0xA4Eb9C64eC359D093eAc7B65F51Ef933D6e5F7cd", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Stablzone" + "name": "x", + "url": "https://x.com/Stablzone" }, { "name": "coinmarketcap", @@ -29,4 +29,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA54C67bd320Da4F9725a6f585b7635a0c09B122e/info.json b/blockchains/ethereum/assets/0xA54C67bd320Da4F9725a6f585b7635a0c09B122e/info.json index eea4d288339c6..a98ea4a0091ef 100644 --- a/blockchains/ethereum/assets/0xA54C67bd320Da4F9725a6f585b7635a0c09B122e/info.json +++ b/blockchains/ethereum/assets/0xA54C67bd320Da4F9725a6f585b7635a0c09B122e/info.json @@ -10,8 +10,8 @@ "id": "0xA54C67bd320Da4F9725a6f585b7635a0c09B122e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TimeMiner" + "name": "x", + "url": "https://x.com/TimeMiner" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xA67E9F021B9d208F7e3365B2A155E3C55B27de71/info.json b/blockchains/ethereum/assets/0xA67E9F021B9d208F7e3365B2A155E3C55B27de71/info.json index 83a9a3199153e..03874b5090f14 100644 --- a/blockchains/ethereum/assets/0xA67E9F021B9d208F7e3365B2A155E3C55B27de71/info.json +++ b/blockchains/ethereum/assets/0xA67E9F021B9d208F7e3365B2A155E3C55B27de71/info.json @@ -10,8 +10,8 @@ "id": "0xA67E9F021B9d208F7e3365B2A155E3C55B27de71", "links": [ { - "name": "twitter", - "url": "https://twitter.com/KleeKaiETH" + "name": "x", + "url": "https://x.com/KleeKaiETH" }, { "name": "telegram", @@ -33,4 +33,4 @@ "tags": [ "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA68Dd8cB83097765263AdAD881Af6eeD479c4a33/info.json b/blockchains/ethereum/assets/0xA68Dd8cB83097765263AdAD881Af6eeD479c4a33/info.json index df12def8b7452..1e7dfbc0807dd 100644 --- a/blockchains/ethereum/assets/0xA68Dd8cB83097765263AdAD881Af6eeD479c4a33/info.json +++ b/blockchains/ethereum/assets/0xA68Dd8cB83097765263AdAD881Af6eeD479c4a33/info.json @@ -13,12 +13,12 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/feeswtf" + "name": "x", + "url": "https://x.com/feeswtf" }, { "name": "coingecko", "url": "https://coingecko.com/coins/wtf-token" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961/info.json b/blockchains/ethereum/assets/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961/info.json new file mode 100644 index 0000000000000..c8fe22a0073fd --- /dev/null +++ b/blockchains/ethereum/assets/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961/info.json @@ -0,0 +1,24 @@ +{ + "name": "Netflix tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Netflix xStock (NFLXx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. NFLXx tracks the price of Netflix, Inc. (the underlying). NFLXx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Netflix, Inc., whilst maintaining the benefits of blockchain technology. Key Benefits Netflix is a media company that provides entertainment services, including streaming movies, TV shows, and games, through a subscription-based model. It also produces its own original content and licenses content from other companies.", + "explorer": "https://etherscan.io/token/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961", + "type": "ERC20", + "symbol": "NFLXX", + "decimals": 18, + "status": "active", + "id": "0xA6a65AC27E76cD53cB790473E4345c46e5eBf961", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/netflix-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961/logo.png b/blockchains/ethereum/assets/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961/logo.png new file mode 100644 index 0000000000000..7cb316a4557bb Binary files /dev/null and b/blockchains/ethereum/assets/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961/logo.png differ diff --git a/blockchains/ethereum/assets/0xA735A3AF76CC30791C61c10d585833829d36CBe0/info.json b/blockchains/ethereum/assets/0xA735A3AF76CC30791C61c10d585833829d36CBe0/info.json new file mode 100644 index 0000000000000..d2e46f1898936 --- /dev/null +++ b/blockchains/ethereum/assets/0xA735A3AF76CC30791C61c10d585833829d36CBe0/info.json @@ -0,0 +1,21 @@ +{ + "name": "imgnAI.com", + "website": "https://imgnai.com/", + "description": "$imgnAI is the creator token that powers the imgnAI platform - a suite of creative AI tools built for maximum fun, and maximum freedom.", + "explorer": "https://etherscan.io/token/0xA735A3AF76CC30791C61c10d585833829d36CBe0", + "symbol": "imgnAI", + "type": "ERC20", + "decimals": 9, + "status": "active", + "id": "0xA735A3AF76CC30791C61c10d585833829d36CBe0", + "links": [ + { + "name": "x", + "url": "https://x.com/imgn_ai" + }, + { + "name": "telegram", + "url": "https://t.me/imgnAI" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA735A3AF76CC30791C61c10d585833829d36CBe0/logo.png b/blockchains/ethereum/assets/0xA735A3AF76CC30791C61c10d585833829d36CBe0/logo.png new file mode 100644 index 0000000000000..f772ec237ee7e Binary files /dev/null and b/blockchains/ethereum/assets/0xA735A3AF76CC30791C61c10d585833829d36CBe0/logo.png differ diff --git a/blockchains/ethereum/assets/0xA74FD910a6dcC844bA42839108A7A72AA2EE2c24/info.json b/blockchains/ethereum/assets/0xA74FD910a6dcC844bA42839108A7A72AA2EE2c24/info.json new file mode 100644 index 0000000000000..235ca4302b44d --- /dev/null +++ b/blockchains/ethereum/assets/0xA74FD910a6dcC844bA42839108A7A72AA2EE2c24/info.json @@ -0,0 +1,29 @@ +{ + "name": "NeyroAI", + "type": "ERC20", + "symbol": "NAI", + "decimals": 18, + "website": "https://neyroai.org", + "description": "NeyroAI offers a unique opportunity to invest in cutting-edge blockchain technology. Our platform ensures transparency, security, and high profitability. By investing in NeyroAI, you are not only supporting innovations in digital technology but also gaining a chance for significant financial growth.", + "explorer": "https://etherscan.io/token/0xA74FD910a6dcC844bA42839108A7A72AA2EE2c24", + "status": "spam", + "id": "0xA74FD910a6dcC844bA42839108A7A72AA2EE2c24", + "links": [ + { + "name": "telegram", + "url": "https://t.me/neyroai_community" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/neyroai/" + }, + { + "name": "docs", + "url": "https://neyrowhitepaper.com/" + } + ], + "tags": [ + "defi", + "memes" + ] +} diff --git a/blockchains/ethereum/assets/0xA74FD910a6dcC844bA42839108A7A72AA2EE2c24/logo.png b/blockchains/ethereum/assets/0xA74FD910a6dcC844bA42839108A7A72AA2EE2c24/logo.png new file mode 100644 index 0000000000000..9cb9dacceb90a Binary files /dev/null and b/blockchains/ethereum/assets/0xA74FD910a6dcC844bA42839108A7A72AA2EE2c24/logo.png differ diff --git a/blockchains/ethereum/assets/0xA75AD62a1b6b78eEA6c54C22Eb697Ca0b125f97a/info.json b/blockchains/ethereum/assets/0xA75AD62a1b6b78eEA6c54C22Eb697Ca0b125f97a/info.json new file mode 100644 index 0000000000000..60b20f49d6f6d --- /dev/null +++ b/blockchains/ethereum/assets/0xA75AD62a1b6b78eEA6c54C22Eb697Ca0b125f97a/info.json @@ -0,0 +1,21 @@ +{ + "name": "meow", + "type": "ERC20", + "symbol": "MEOW", + "decimals": 18, + "website": "https://www.meowcoinerc.com/", + "description": "There was a time when cats ruled the Interweb. In recent times, dog coins have taken over, leaving us a near extinct species", + "explorer": "https://etherscan.io/token/0xa75ad62a1b6b78eea6c54c22eb697ca0b125f97a", + "status": "active", + "id": "0xA75AD62a1b6b78eEA6c54C22Eb697Ca0b125f97a", + "links": [ + { + "name": "x", + "url": "https://x.com/meowerc20" + }, + { + "name": "telegram", + "url": "https://t.me/meowerc20portal" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA75AD62a1b6b78eEA6c54C22Eb697Ca0b125f97a/logo.png b/blockchains/ethereum/assets/0xA75AD62a1b6b78eEA6c54C22Eb697Ca0b125f97a/logo.png new file mode 100644 index 0000000000000..402acb7f942a8 Binary files /dev/null and b/blockchains/ethereum/assets/0xA75AD62a1b6b78eEA6c54C22Eb697Ca0b125f97a/logo.png differ diff --git a/blockchains/ethereum/assets/0xA849EaaE994fb86Afa73382e9Bd88c2B6b18Dc71/info.json b/blockchains/ethereum/assets/0xA849EaaE994fb86Afa73382e9Bd88c2B6b18Dc71/info.json index 8a92be431c884..c1a4881dee941 100644 --- a/blockchains/ethereum/assets/0xA849EaaE994fb86Afa73382e9Bd88c2B6b18Dc71/info.json +++ b/blockchains/ethereum/assets/0xA849EaaE994fb86Afa73382e9Bd88c2B6b18Dc71/info.json @@ -1,5 +1,5 @@ { - "name": "Mass Vehicle Ledger Token", + "name": "MVL", "symbol": "MVL", "type": "ERC20", "decimals": 18, diff --git a/blockchains/ethereum/assets/0xA8580F3363684d76055bdC6660CaeFe8709744e1/info.json b/blockchains/ethereum/assets/0xA8580F3363684d76055bdC6660CaeFe8709744e1/info.json index 22f38d1b5ab43..9ceaeec3bbb89 100644 --- a/blockchains/ethereum/assets/0xA8580F3363684d76055bdC6660CaeFe8709744e1/info.json +++ b/blockchains/ethereum/assets/0xA8580F3363684d76055bdC6660CaeFe8709744e1/info.json @@ -10,8 +10,8 @@ "id": "0xA8580F3363684d76055bdC6660CaeFe8709744e1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/folderlabs" + "name": "x", + "url": "https://x.com/folderlabs" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xA866F0198208Eb07c83081d5136BE7f775c2399e/info.json b/blockchains/ethereum/assets/0xA866F0198208Eb07c83081d5136BE7f775c2399e/info.json index 80ad2643f4cc0..effa92cd21b22 100644 --- a/blockchains/ethereum/assets/0xA866F0198208Eb07c83081d5136BE7f775c2399e/info.json +++ b/blockchains/ethereum/assets/0xA866F0198208Eb07c83081d5136BE7f775c2399e/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/KORE-Vault" }, { - "name": "twitter", - "url": "https://twitter.com/kvault_finance" + "name": "x", + "url": "https://x.com/kvault_finance" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xA8b919680258d369114910511cc87595aec0be6D/info.json b/blockchains/ethereum/assets/0xA8b919680258d369114910511cc87595aec0be6D/info.json index 54b3c3dddbb7c..b38d3f933560e 100644 --- a/blockchains/ethereum/assets/0xA8b919680258d369114910511cc87595aec0be6D/info.json +++ b/blockchains/ethereum/assets/0xA8b919680258d369114910511cc87595aec0be6D/info.json @@ -10,8 +10,8 @@ "id": "0xA8b919680258d369114910511cc87595aec0be6D", "links": [ { - "name": "twitter", - "url": "https://twitter.com/lukso_io" + "name": "x", + "url": "https://x.com/lukso_io" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xA9431d354cFAD3c6B76E50f0e73b43D48Be80CD0/info.json b/blockchains/ethereum/assets/0xA9431d354cFAD3c6B76E50f0e73b43D48Be80CD0/info.json new file mode 100644 index 0000000000000..fcb2fdf5bd0cf --- /dev/null +++ b/blockchains/ethereum/assets/0xA9431d354cFAD3c6B76E50f0e73b43D48Be80CD0/info.json @@ -0,0 +1,24 @@ +{ + "name": "Reddit (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "RDDTon is the Ondo Tokenized version of Reddit, giving tokenholders economic exposure similar to holding RDDT and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xA9431d354cFAD3c6B76E50f0e73b43D48Be80CD0", + "type": "ERC20", + "symbol": "RDDTon", + "decimals": 18, + "status": "active", + "id": "0xA9431d354cFAD3c6B76E50f0e73b43D48Be80CD0", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/reddit-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA9431d354cFAD3c6B76E50f0e73b43D48Be80CD0/logo.png b/blockchains/ethereum/assets/0xA9431d354cFAD3c6B76E50f0e73b43D48Be80CD0/logo.png new file mode 100644 index 0000000000000..dc50857f81ba8 Binary files /dev/null and b/blockchains/ethereum/assets/0xA9431d354cFAD3c6B76E50f0e73b43D48Be80CD0/logo.png differ diff --git a/blockchains/ethereum/assets/0xA974c709cFb4566686553a20790685A47acEAA33/info.json b/blockchains/ethereum/assets/0xA974c709cFb4566686553a20790685A47acEAA33/info.json index ae831a70201cc..a25a5a07cb88a 100644 --- a/blockchains/ethereum/assets/0xA974c709cFb4566686553a20790685A47acEAA33/info.json +++ b/blockchains/ethereum/assets/0xA974c709cFb4566686553a20790685A47acEAA33/info.json @@ -3,9 +3,34 @@ "symbol": "XIN", "type": "ERC20", "decimals": 18, - "description": "A TEE powered BFT-DAG network, Mixin connects all existing blockchains with unlimited throughput.", + "description": "Mixin Network is a privacy layer for other blockchains.", "website": "https://mixin.one", "explorer": "https://etherscan.io/token/0xA974c709cFb4566686553a20790685A47acEAA33", "status": "active", - "id": "0xA974c709cFb4566686553a20790685A47acEAA33" -} \ No newline at end of file + "id": "0xA974c709cFb4566686553a20790685A47acEAA33", + "links": [ + { + "name": "x", + "url": "https://x.com/MixinKernel" + }, + { + "name": "github", + "url": "https://github.com/MixinNetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mixin" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/mixin" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/mixin" + } + ], + "tags": [ + "privacy" + ] +} diff --git a/blockchains/ethereum/assets/0xA974c709cFb4566686553a20790685A47acEAA33/logo.png b/blockchains/ethereum/assets/0xA974c709cFb4566686553a20790685A47acEAA33/logo.png index c452fd7c01ed7..89ef6d36959be 100644 Binary files a/blockchains/ethereum/assets/0xA974c709cFb4566686553a20790685A47acEAA33/logo.png and b/blockchains/ethereum/assets/0xA974c709cFb4566686553a20790685A47acEAA33/logo.png differ diff --git a/blockchains/ethereum/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/info.json b/blockchains/ethereum/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/info.json new file mode 100644 index 0000000000000..8fa8f8c440b66 --- /dev/null +++ b/blockchains/ethereum/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/info.json @@ -0,0 +1,25 @@ +{ + "name": "Bounce Token", + "website": "https://bounce.finance/", + "description": "Bounce is a decentralized auction platform, incorporating liquidity mining, decentralized governance and staking mechanisms. The first principle of Bounce is scarcity of resources, which creates a competitive swap environment.", + "explorer": "https://etherscan.io/token/0xa9b1eb5908cfc3cdf91f9b8b3a74108598009096", + "type": "ERC20", + "symbol": "Auction", + "decimals": 18, + "status": "active", + "id": "0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096", + "links": [ + { + "name": "x", + "url": "https://x.com/bounce_finance" + }, + { + "name": "telegram", + "url": "https://t.me/bounce_finance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bounce-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/logo.png b/blockchains/ethereum/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/logo.png new file mode 100644 index 0000000000000..c05d45d42e9c1 Binary files /dev/null and b/blockchains/ethereum/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/logo.png differ diff --git a/blockchains/ethereum/assets/0xA9E8aCf069C58aEc8825542845Fd754e41a9489A/info.json b/blockchains/ethereum/assets/0xA9E8aCf069C58aEc8825542845Fd754e41a9489A/info.json new file mode 100644 index 0000000000000..8bd2766a702e3 --- /dev/null +++ b/blockchains/ethereum/assets/0xA9E8aCf069C58aEc8825542845Fd754e41a9489A/info.json @@ -0,0 +1,25 @@ +{ + "name": "pepeCoin", + "website": "pepecoin.io", + "description": "$PEPECOIN Est. 2016, is building the first decentralized social wrapper for DeFi. Creating Open Source tooling for DeFi's very own decentralized town square.", + "explorer": "https://etherscan.io/token/0xA9E8aCf069C58aEc8825542845Fd754e41a9489A", + "type": "ERC20", + "symbol": "pepecoin", + "decimals": 18, + "status": "active", + "id": "0xA9E8aCf069C58aEc8825542845Fd754e41a9489A", + "links": [ + { + "name": "x", + "url": "https://x.com/pepecoins" + }, + { + "name": "telegram", + "url": "https://t.me/pepecoins" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pepecoin-/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA9E8aCf069C58aEc8825542845Fd754e41a9489A/logo.png b/blockchains/ethereum/assets/0xA9E8aCf069C58aEc8825542845Fd754e41a9489A/logo.png new file mode 100644 index 0000000000000..61184c3ac1af8 Binary files /dev/null and b/blockchains/ethereum/assets/0xA9E8aCf069C58aEc8825542845Fd754e41a9489A/logo.png differ diff --git a/blockchains/ethereum/assets/0xAA28cB97D7f7E172f54deE950743886D2d65447d/info.json b/blockchains/ethereum/assets/0xAA28cB97D7f7E172f54deE950743886D2d65447d/info.json new file mode 100644 index 0000000000000..31063de552382 --- /dev/null +++ b/blockchains/ethereum/assets/0xAA28cB97D7f7E172f54deE950743886D2d65447d/info.json @@ -0,0 +1,15 @@ +{ + "name": "S&P Small Cap xStock", + "type": "ERC20", + "symbol": "IJRx", + "decimals": 18, + "description": "S&P Small Cap xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://etherscan.io/token/0xAA28cB97D7f7E172f54deE950743886D2d65447d", + "status": "active", + "id": "0xAA28cB97D7f7E172f54deE950743886D2d65447d", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAA28cB97D7f7E172f54deE950743886D2d65447d/logo.png b/blockchains/ethereum/assets/0xAA28cB97D7f7E172f54deE950743886D2d65447d/logo.png new file mode 100644 index 0000000000000..d5c48229001bc Binary files /dev/null and b/blockchains/ethereum/assets/0xAA28cB97D7f7E172f54deE950743886D2d65447d/logo.png differ diff --git a/blockchains/ethereum/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/info.json b/blockchains/ethereum/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/info.json index 0b719980f1deb..eba26ec2f432b 100644 --- a/blockchains/ethereum/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/info.json +++ b/blockchains/ethereum/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/info.json @@ -6,7 +6,7 @@ "type": "ERC20", "symbol": "QANX", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa", "links": [ { @@ -18,8 +18,8 @@ "url": "https://t.me/QANplatform_ANN" }, { - "name": "twitter", - "url": "https://twitter.com/qanplatform" + "name": "x", + "url": "https://x.com/qanplatform" }, { "name": "discord", diff --git a/blockchains/ethereum/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/info.json b/blockchains/ethereum/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/info.json new file mode 100644 index 0000000000000..64578154d984b --- /dev/null +++ b/blockchains/ethereum/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/info.json @@ -0,0 +1,57 @@ +{ + "name": "QANplatform", + "website": "https://qanplatform.com", + "description": "QANX is the utility token of QAN Platform.", + "explorer": "https://etherscan.io/token/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA", + "type": "ERC20", + "symbol": "QANX", + "decimals": 18, + "status": "active", + "id": "0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA", + "links": [ + { + "name": "telegram", + "url": "https://t.me/QANplatform" + }, + { + "name": "telegram_news", + "url": "https://t.me/QANplatform_ANN" + }, + { + "name": "x", + "url": "https://x.com/qanplatform" + }, + { + "name": "discord", + "url": "https://discord.com/invite/bABaQeTPN7" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/qanplatform" + }, + { + "name": "medium", + "url": "https://medium.com/qanplatform" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/QANplatform" + }, + { + "name": "whitepaper", + "url": "https://assets.qanplatform.com/whitepaper.pdf" + }, + { + "name": "source_code", + "url": "https://github.com/QANplatform" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/qanplatform/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/qanplatform" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/logo.png b/blockchains/ethereum/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/logo.png similarity index 100% rename from blockchains/ethereum/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/logo.png rename to blockchains/ethereum/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/logo.png diff --git a/blockchains/ethereum/assets/0xABD4C63d2616A5201454168269031355f4764337/info.json b/blockchains/ethereum/assets/0xABD4C63d2616A5201454168269031355f4764337/info.json new file mode 100644 index 0000000000000..550758d454d00 --- /dev/null +++ b/blockchains/ethereum/assets/0xABD4C63d2616A5201454168269031355f4764337/info.json @@ -0,0 +1,14 @@ +{ + "name": "Orderly", + "type": "ERC20", + "symbol": "ORDER", + "decimals": 18, + "website": "https://orderly.network", + "description": "The Orderly-Chain: Powering DeFi with Cloud Liquidity", + "explorer": "https://etherscan.io/token/0xABD4C63d2616A5201454168269031355f4764337", + "status": "active", + "id": "0xABD4C63d2616A5201454168269031355f4764337", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xABD4C63d2616A5201454168269031355f4764337/logo.png b/blockchains/ethereum/assets/0xABD4C63d2616A5201454168269031355f4764337/logo.png new file mode 100644 index 0000000000000..0c4b0695197af Binary files /dev/null and b/blockchains/ethereum/assets/0xABD4C63d2616A5201454168269031355f4764337/logo.png differ diff --git a/blockchains/ethereum/assets/0xAC51066d7bEC65Dc4589368da368b212745d63E8/info.json b/blockchains/ethereum/assets/0xAC51066d7bEC65Dc4589368da368b212745d63E8/info.json index 81360bb303edf..c5e958bdc0bbd 100644 --- a/blockchains/ethereum/assets/0xAC51066d7bEC65Dc4589368da368b212745d63E8/info.json +++ b/blockchains/ethereum/assets/0xAC51066d7bEC65Dc4589368da368b212745d63E8/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/MyNeighborAlice" }, { - "name": "twitter", - "url": "https://twitter.com/MyNeighborAlice/" + "name": "x", + "url": "https://x.com/MyNeighborAlice/" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0xAC57De9C1A09FeC648E93EB98875B212DB0d460B/info.json b/blockchains/ethereum/assets/0xAC57De9C1A09FeC648E93EB98875B212DB0d460B/info.json new file mode 100644 index 0000000000000..db814d93dea3a --- /dev/null +++ b/blockchains/ethereum/assets/0xAC57De9C1A09FeC648E93EB98875B212DB0d460B/info.json @@ -0,0 +1,40 @@ +{ + "name": "Baby Doge Coin", + "type": "ERC20", + "symbol": "BabyDoge", + "decimals": 9, + "website": "https://babydoge.com/", + "description": "Baby Doge Coin has learned a few tricks and lessons from his meme father, Doge. A new crypto birthed by fans of the Doge Meme online community. He is Hyper-deflationary with static reflection that rewards holders, so more baby doge coins are being automatically added to your wallet each transaction. Simply Love, pet, and hold as 5% from each transaction is automatically redistributed to baby doge holders via smart contract.", + "explorer": "https://etherscan.io/token/0xac57de9c1a09fec648e93eb98875b212db0d460b", + "status": "active", + "id": "0xAC57De9C1A09FeC648E93EB98875B212DB0d460B", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/babydogecoin" + }, + { + "name": "telegram", + "url": "https://t.me/babydogecoin" + }, + { + "name": "discord", + "url": "https://discord.com/invite/babydogecoin" + }, + { + "name": "facebook", + "url": "https://facebook.com/babydogecoin" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/Baby_doge_coin" + }, + { + "name": "whitepaper", + "url": "https://cdn.filestackcontent.com/FNtpWVlfRGyCGhth5FMA" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAC57De9C1A09FeC648E93EB98875B212DB0d460B/logo.png b/blockchains/ethereum/assets/0xAC57De9C1A09FeC648E93EB98875B212DB0d460B/logo.png new file mode 100644 index 0000000000000..138b6528aad65 Binary files /dev/null and b/blockchains/ethereum/assets/0xAC57De9C1A09FeC648E93EB98875B212DB0d460B/logo.png differ diff --git a/blockchains/ethereum/assets/0xAC8E13ecC30Da7Ff04b842f21A62a1fb0f10eBd5/info.json b/blockchains/ethereum/assets/0xAC8E13ecC30Da7Ff04b842f21A62a1fb0f10eBd5/info.json index b5209936eca64..336b2c4d172d5 100644 --- a/blockchains/ethereum/assets/0xAC8E13ecC30Da7Ff04b842f21A62a1fb0f10eBd5/info.json +++ b/blockchains/ethereum/assets/0xAC8E13ecC30Da7Ff04b842f21A62a1fb0f10eBd5/info.json @@ -10,8 +10,8 @@ "id": "0xAC8E13ecC30Da7Ff04b842f21A62a1fb0f10eBd5", "links": [ { - "name": "twitter", - "url": "https://twitter.com/king_bdoge" + "name": "x", + "url": "https://x.com/king_bdoge" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0xADE00C28244d5CE17D72E40330B1c318cD12B7c3/info.json b/blockchains/ethereum/assets/0xADE00C28244d5CE17D72E40330B1c318cD12B7c3/info.json index d8234bc5ddd2d..c018f98e667b4 100644 --- a/blockchains/ethereum/assets/0xADE00C28244d5CE17D72E40330B1c318cD12B7c3/info.json +++ b/blockchains/ethereum/assets/0xADE00C28244d5CE17D72E40330B1c318cD12B7c3/info.json @@ -1,18 +1,31 @@ { - "name": "Ambire AdEx", - "website": "https://adex.network", - "description": "The AdEx Network aims to build a decentralized solution for digital advertising that reduces fraud, improves budgets, and protects user privacy.", + "name": "heyAura", + "website": "https://www.heyaura.com/", + "description": "heyAura is an AI Infrastructure company that’s working to build reliable AI frameworks for Web3 projects. heyAura’s flagship product is the very first Agentic copilot that can securely and privately research, plan, execute and orchestrate on-chain tasks.", "explorer": "https://etherscan.io/token/0xADE00C28244d5CE17D72E40330B1c318cD12B7c3", - "research": "https://research.binance.com/en/projects/adex-network", "type": "ERC20", "symbol": "ADX", "decimals": 18, "status": "active", "id": "0xADE00C28244d5CE17D72E40330B1c318cD12B7c3", + "tags": [ + "defi" + ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/AdExNetwork" + "name": "x", + "url": "https://x.com/heyaura" + }, + { "name": "github", + "url": "https://github.com/heyAuraDev/" + }, + { + "name": "blog", + "url": "https://blog.heyaura.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/adx-net/" } ] -} \ No newline at end of file +} diff --git a/blockchains/ethereum/assets/0xADE00C28244d5CE17D72E40330B1c318cD12B7c3/logo.png b/blockchains/ethereum/assets/0xADE00C28244d5CE17D72E40330B1c318cD12B7c3/logo.png index c219b24e34f30..0f6b84595dd04 100644 Binary files a/blockchains/ethereum/assets/0xADE00C28244d5CE17D72E40330B1c318cD12B7c3/logo.png and b/blockchains/ethereum/assets/0xADE00C28244d5CE17D72E40330B1c318cD12B7c3/logo.png differ diff --git a/blockchains/ethereum/assets/0xAE12C5930881c53715B369ceC7606B70d8EB229f/info.json b/blockchains/ethereum/assets/0xAE12C5930881c53715B369ceC7606B70d8EB229f/info.json index 6610052500a03..6ec2200564bd3 100644 --- a/blockchains/ethereum/assets/0xAE12C5930881c53715B369ceC7606B70d8EB229f/info.json +++ b/blockchains/ethereum/assets/0xAE12C5930881c53715B369ceC7606B70d8EB229f/info.json @@ -10,8 +10,8 @@ "id": "0xAE12C5930881c53715B369ceC7606B70d8EB229f", "links": [ { - "name": "twitter", - "url": "https://twitter.com/coin98_finance" + "name": "x", + "url": "https://x.com/coin98_finance" }, { "name": "coingecko", diff --git a/blockchains/ethereum/assets/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E/info.json b/blockchains/ethereum/assets/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E/info.json new file mode 100644 index 0000000000000..be3c3881de36e --- /dev/null +++ b/blockchains/ethereum/assets/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E/info.json @@ -0,0 +1,24 @@ +{ + "name": "MicroStrategy tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "MicroStrategy tokenized stock (xStock) (MSTRX) is a cryptocurrency and operates on the Solana platform. MicroStrategy tokenized stock (xStock) has a current supply of 19,499.52630505. The last known price of MicroStrategy tokenized stock (xStock) is 329.14757255 USD and is down -0.35 over the last 24 hours. It is currently trading on 28 active market(s) with $3,268,417.42 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/microstrategy-xstock.", + "explorer": "https://etherscan.io/token/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E", + "type": "ERC20", + "symbol": "MSTRX", + "decimals": 18, + "status": "active", + "id": "0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/microstrategy-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E/logo.png b/blockchains/ethereum/assets/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E/logo.png new file mode 100644 index 0000000000000..b6fb457e98469 Binary files /dev/null and b/blockchains/ethereum/assets/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E/logo.png differ diff --git a/blockchains/ethereum/assets/0xAF072F109A2C173D822a4fe9af311A1B18F83d19/info.json b/blockchains/ethereum/assets/0xAF072F109A2C173D822a4fe9af311A1B18F83d19/info.json new file mode 100644 index 0000000000000..2797b5a1b9e95 --- /dev/null +++ b/blockchains/ethereum/assets/0xAF072F109A2C173D822a4fe9af311A1B18F83d19/info.json @@ -0,0 +1,24 @@ +{ + "name": "Thermo Fisher tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Thermo Fisher xStock (TMOx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. TMOx tracks the price of Thermo Fisher Scientific Inc. (the underlying). TMOx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Thermo Fisher Scientific Inc., whilst maintaining the benefits of blockchain technology. Thermo Fisher is a global leader in serving science, with a mission to enable customers to make the world healthier, cleaner, and safer.", + "explorer": "https://etherscan.io/token/0xAF072F109A2C173D822a4fe9af311A1B18F83d19", + "type": "ERC20", + "symbol": "TMOX", + "decimals": 18, + "status": "active", + "id": "0xAF072F109A2C173D822a4fe9af311A1B18F83d19", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/thermo-fisher-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAF072F109A2C173D822a4fe9af311A1B18F83d19/logo.png b/blockchains/ethereum/assets/0xAF072F109A2C173D822a4fe9af311A1B18F83d19/logo.png new file mode 100644 index 0000000000000..472c951a6b913 Binary files /dev/null and b/blockchains/ethereum/assets/0xAF072F109A2C173D822a4fe9af311A1B18F83d19/logo.png differ diff --git a/blockchains/ethereum/assets/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9/info.json b/blockchains/ethereum/assets/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9/info.json new file mode 100644 index 0000000000000..871671956aa59 --- /dev/null +++ b/blockchains/ethereum/assets/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9/info.json @@ -0,0 +1,75 @@ +{ + "name": "Vita Inu", + "type": "ERC20", + "symbol": "VINU", + "decimals": 18, + "website": "https://vitainu.org", + "description": "Vita Inu is the world’s first fast and feeless dog coin with high TPS and native smart contracts. VINU is the powerful multi-chain currency and governance token of the Vinuverse. The VINU community believes cryptocurrencies should be moved around freely, securely, and efficiently.", + "explorer": "https://etherscan.io/token/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9", + "status": "active", + "id": "0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9", + "links": [ + { + "name": "x", + "url": "https://x.com/vitainucoin" + }, + { + "name": "github", + "url": "https://github.com/vita-inu" + }, + { + "name": "telegram", + "url": "https://t.me/vitainu" + }, + { + "name": "telegram_news", + "url": "https://t.me/vinu_news" + }, + { + "name": "medium", + "url": "https://medium.com/vitainu" + }, + { + "name": "discord", + "url": "https://discord.com/invite/vinu" + }, + { + "name": "whitepaper", + "url": "https://vitainu.org/whitepaper" + }, + { + "name": "facebook", + "url": "https://facebook.com/vitainucoin" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/vitainucoin" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/vitainu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vita-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vita-inu" + }, + { + "name": "source_code", + "url": "https://etherscan.io/address/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9#code" + } + ], + "tags": [ + "memes", + "defi", + "deflationary", + "gamefi", + "staking", + "nft", + "governance", + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9/logo.png b/blockchains/ethereum/assets/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9/logo.png new file mode 100644 index 0000000000000..281119d19c3d9 Binary files /dev/null and b/blockchains/ethereum/assets/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9/logo.png differ diff --git a/blockchains/ethereum/assets/0xAaAAAA20D9E0e2461697782ef11675f668207961/info.json b/blockchains/ethereum/assets/0xAaAAAA20D9E0e2461697782ef11675f668207961/info.json new file mode 100644 index 0000000000000..332a03d8926c5 --- /dev/null +++ b/blockchains/ethereum/assets/0xAaAAAA20D9E0e2461697782ef11675f668207961/info.json @@ -0,0 +1,28 @@ +{ + "name": "Aurora", + "website": "https://aurora.dev/", + "description": "AURORA token is a governance token to ensure proper upgrades to the protocol. Aurora is governed by AuroraDAO which includes representatives from different ecosystems and sectors of the blockchain industry.", + "explorer": "https://etherscan.io/token/0xAaAAAA20D9E0e2461697782ef11675f668207961", + "type": "ERC20", + "symbol": "AURORA", + "decimals": 18, + "status": "active", + "id": "0xAaAAAA20D9E0e2461697782ef11675f668207961", + "tags": [ + "governance" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/auroraisnear" + }, + { + "name": "github", + "url": "https://github.com/aurora-is-near" + }, + { + "name": "telegram", + "url": "https://t.me/auroraisnear" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAaAAAA20D9E0e2461697782ef11675f668207961/logo.png b/blockchains/ethereum/assets/0xAaAAAA20D9E0e2461697782ef11675f668207961/logo.png new file mode 100644 index 0000000000000..21df1e53ca4fe Binary files /dev/null and b/blockchains/ethereum/assets/0xAaAAAA20D9E0e2461697782ef11675f668207961/logo.png differ diff --git a/blockchains/ethereum/assets/0xAaEf88cEa01475125522e117BFe45cF32044E238/info.json b/blockchains/ethereum/assets/0xAaEf88cEa01475125522e117BFe45cF32044E238/info.json index a4e593cc6cdac..24accf17188e9 100644 --- a/blockchains/ethereum/assets/0xAaEf88cEa01475125522e117BFe45cF32044E238/info.json +++ b/blockchains/ethereum/assets/0xAaEf88cEa01475125522e117BFe45cF32044E238/info.json @@ -18,8 +18,8 @@ "url": "https://t.me/guildfi" }, { - "name": "twitter", - "url": "https://twitter.com/GuildFiGlobal" + "name": "x", + "url": "https://x.com/GuildFiGlobal" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAbA9Ae731Aad63335C604E5f6E6A5db2e05f549d/info.json b/blockchains/ethereum/assets/0xAbA9Ae731Aad63335C604E5f6E6A5db2e05f549d/info.json new file mode 100644 index 0000000000000..d0d0e666c699a --- /dev/null +++ b/blockchains/ethereum/assets/0xAbA9Ae731Aad63335C604E5f6E6A5db2e05f549d/info.json @@ -0,0 +1,24 @@ +{ + "name": "Accenture (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "ACNon is the Ondo Tokenized version of Accenture, giving tokenholders economic exposure similar to holding ACN and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xAbA9Ae731Aad63335C604E5f6E6A5db2e05f549d", + "type": "ERC20", + "symbol": "ACNon", + "decimals": 18, + "status": "active", + "id": "0xAbA9Ae731Aad63335C604E5f6E6A5db2e05f549d", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/accenture-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAbA9Ae731Aad63335C604E5f6E6A5db2e05f549d/logo.png b/blockchains/ethereum/assets/0xAbA9Ae731Aad63335C604E5f6E6A5db2e05f549d/logo.png new file mode 100644 index 0000000000000..9497e1e589460 Binary files /dev/null and b/blockchains/ethereum/assets/0xAbA9Ae731Aad63335C604E5f6E6A5db2e05f549d/logo.png differ diff --git a/blockchains/ethereum/assets/0xAcE8E719899F6E91831B18AE746C9A965c2119F1/info.json b/blockchains/ethereum/assets/0xAcE8E719899F6E91831B18AE746C9A965c2119F1/info.json new file mode 100644 index 0000000000000..7b6092f25bbaf --- /dev/null +++ b/blockchains/ethereum/assets/0xAcE8E719899F6E91831B18AE746C9A965c2119F1/info.json @@ -0,0 +1,20 @@ +{ + "name": "U.S. Dollar (Ondo)", + "website": "https://ondo.finance/", + "description": "USDon is a stablecoin backed 1:1 by a US dollar in one of Global Markets’ brokerage accounts. USDon is the stablecoin used to instantly buy or redeem Ondo tokenized stocks.", + "explorer": "https://etherscan.io/token/0xAcE8E719899F6E91831B18AE746C9A965c2119F1", + "type": "ERC20", + "symbol": "USDon", + "decimals": 18, + "status": "active", + "id": "0xAcE8E719899F6E91831B18AE746C9A965c2119F1", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAcE8E719899F6E91831B18AE746C9A965c2119F1/logo.png b/blockchains/ethereum/assets/0xAcE8E719899F6E91831B18AE746C9A965c2119F1/logo.png new file mode 100644 index 0000000000000..760bb83879e35 Binary files /dev/null and b/blockchains/ethereum/assets/0xAcE8E719899F6E91831B18AE746C9A965c2119F1/logo.png differ diff --git a/blockchains/ethereum/assets/0xAcd2c239012D17BEB128B0944D49015104113650/info.json b/blockchains/ethereum/assets/0xAcd2c239012D17BEB128B0944D49015104113650/info.json new file mode 100644 index 0000000000000..71e210155d1f9 --- /dev/null +++ b/blockchains/ethereum/assets/0xAcd2c239012D17BEB128B0944D49015104113650/info.json @@ -0,0 +1,21 @@ +{ + "name": "KarratCoin", + "type": "ERC20", + "symbol": "KARRAT", + "decimals": 18, + "website": "https://www.karratcoin.com/", + "description": "The KARRAT protocol is a decentralized gaming infrastructure layer, supported by $KARRAT and empowered by a truly decentralized community with a shared vision embracing gaming, entertainment and AI products catering for the new era.", + "explorer": "https://etherscan.io/token/0xAcd2c239012D17BEB128B0944D49015104113650", + "status": "active", + "id": "0xAcd2c239012D17BEB128B0944D49015104113650", + "links": [ + { + "name": "x", + "url": "https://x.com/karratcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/karrat/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAcd2c239012D17BEB128B0944D49015104113650/logo.png b/blockchains/ethereum/assets/0xAcd2c239012D17BEB128B0944D49015104113650/logo.png new file mode 100644 index 0000000000000..10effa6537e6b Binary files /dev/null and b/blockchains/ethereum/assets/0xAcd2c239012D17BEB128B0944D49015104113650/logo.png differ diff --git a/blockchains/ethereum/assets/0xAdF7C35560035944e805D98fF17d58CDe2449389/info.json b/blockchains/ethereum/assets/0xAdF7C35560035944e805D98fF17d58CDe2449389/info.json new file mode 100644 index 0000000000000..442728f5c4e11 --- /dev/null +++ b/blockchains/ethereum/assets/0xAdF7C35560035944e805D98fF17d58CDe2449389/info.json @@ -0,0 +1,17 @@ +{ + "name": "Spectral", + "type": "ERC20", + "symbol": "SPEC", + "decimals": 18, + "website": "https://www.spectrallabs.xyz/", + "description": "Spectral is simplifying the creation and deployment of decentralized applications through autonomous Onchain Agents", + "explorer": "https://etherscan.io/token/0xadf7c35560035944e805d98ff17d58cde2449389", + "status": "active", + "id": "0xAdF7C35560035944e805D98fF17d58CDe2449389", + "links": [ + { + "name": "x", + "url": "https://x.com/Spectral_Labs" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAdF7C35560035944e805D98fF17d58CDe2449389/logo.png b/blockchains/ethereum/assets/0xAdF7C35560035944e805D98fF17d58CDe2449389/logo.png new file mode 100644 index 0000000000000..32cb84e101401 Binary files /dev/null and b/blockchains/ethereum/assets/0xAdF7C35560035944e805D98fF17d58CDe2449389/logo.png differ diff --git a/blockchains/ethereum/assets/0xAf5191B0De278C7286d6C7CC6ab6BB8A73bA2Cd6/info.json b/blockchains/ethereum/assets/0xAf5191B0De278C7286d6C7CC6ab6BB8A73bA2Cd6/info.json index 9c0a82b3f1488..c6bf1e89651f2 100644 --- a/blockchains/ethereum/assets/0xAf5191B0De278C7286d6C7CC6ab6BB8A73bA2Cd6/info.json +++ b/blockchains/ethereum/assets/0xAf5191B0De278C7286d6C7CC6ab6BB8A73bA2Cd6/info.json @@ -1,5 +1,5 @@ { - "name": "StargateToken", + "name": "Stargate Finance", "website": "https://stargate.finance", "description": "Stargate is a fully composable liquidity transport protocol that lives at the heart of Omnichain DeFi.", "explorer": "https://etherscan.io/token/0xAf5191B0De278C7286d6C7CC6ab6BB8A73bA2Cd6", diff --git a/blockchains/ethereum/assets/0xB0BFB1E2F72511cF8b4D004852E2054d7b9a76e1/info.json b/blockchains/ethereum/assets/0xB0BFB1E2F72511cF8b4D004852E2054d7b9a76e1/info.json index a9bb09546b095..80c3826d090c7 100644 --- a/blockchains/ethereum/assets/0xB0BFB1E2F72511cF8b4D004852E2054d7b9a76e1/info.json +++ b/blockchains/ethereum/assets/0xB0BFB1E2F72511cF8b4D004852E2054d7b9a76e1/info.json @@ -10,8 +10,8 @@ "id": "0xB0BFB1E2F72511cF8b4D004852E2054d7b9a76e1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Streamixio" + "name": "x", + "url": "https://x.com/Streamixio" }, { "name": "whitepaper", diff --git a/blockchains/ethereum/assets/0xB0F85CD17d25b6518F0Ae1A0B80ac1D7Dd3a0B23/info.json b/blockchains/ethereum/assets/0xB0F85CD17d25b6518F0Ae1A0B80ac1D7Dd3a0B23/info.json new file mode 100644 index 0000000000000..1b2d7b07f9c53 --- /dev/null +++ b/blockchains/ethereum/assets/0xB0F85CD17d25b6518F0Ae1A0B80ac1D7Dd3a0B23/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT LILPEPE", + "type": "ERC20", + "symbol": "HONEYPOT Little Pepe", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://etherscan.io/token/0xB0F85CD17d25b6518F0Ae1A0B80ac1D7Dd3a0B23", + "explorer": "https://etherscan.io/token/0xB0F85CD17d25b6518F0Ae1A0B80ac1D7Dd3a0B23", + "status": "spam", + "id": "0xB0F85CD17d25b6518F0Ae1A0B80ac1D7Dd3a0B23" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB0c7a3Ba49C7a6EaBa6cD4a96C55a1391070Ac9A/info.json b/blockchains/ethereum/assets/0xB0c7a3Ba49C7a6EaBa6cD4a96C55a1391070Ac9A/info.json index 60d49c644b1a1..2e73b96b38515 100644 --- a/blockchains/ethereum/assets/0xB0c7a3Ba49C7a6EaBa6cD4a96C55a1391070Ac9A/info.json +++ b/blockchains/ethereum/assets/0xB0c7a3Ba49C7a6EaBa6cD4a96C55a1391070Ac9A/info.json @@ -10,8 +10,8 @@ "id": "0xB0c7a3Ba49C7a6EaBa6cD4a96C55a1391070Ac9A", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Treasure_NFT" + "name": "x", + "url": "https://x.com/Treasure_NFT" }, { "name": "medium", diff --git a/blockchains/ethereum/assets/0xB0e1fc65C1a741b4662B813eB787d369b8614Af1/info.json b/blockchains/ethereum/assets/0xB0e1fc65C1a741b4662B813eB787d369b8614Af1/info.json index ae9c97bd08c4d..0b7f6cdd30bd2 100644 --- a/blockchains/ethereum/assets/0xB0e1fc65C1a741b4662B813eB787d369b8614Af1/info.json +++ b/blockchains/ethereum/assets/0xB0e1fc65C1a741b4662B813eB787d369b8614Af1/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/impossiblefinance" }, { - "name": "twitter", - "url": "https://twitter.com/impossiblefi" + "name": "x", + "url": "https://x.com/impossiblefi" }, { "name": "blog", diff --git a/blockchains/ethereum/assets/0xB0fFa8000886e57F86dd5264b9582b2Ad87b2b91/info.json b/blockchains/ethereum/assets/0xB0fFa8000886e57F86dd5264b9582b2Ad87b2b91/info.json new file mode 100644 index 0000000000000..47e9ce243c628 --- /dev/null +++ b/blockchains/ethereum/assets/0xB0fFa8000886e57F86dd5264b9582b2Ad87b2b91/info.json @@ -0,0 +1,25 @@ +{ + "name": "Wormhole", + "type": "ERC20", + "symbol": "W", + "decimals": 18, + "description": "Wormhole is the leading interoperability platform that powers multichain applications and bridges at scale. Wormhole provides developers access to liquidity and users on over 30 of the leading blockchain networks, enabling use cases that span DeFi, NFTs, governance, and more.", + "website": "https://wormhole.com/", + "explorer": "https://etherscan.io/token/0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91", + "id": "0xB0fFa8000886e57F86dd5264b9582b2Ad87b2b91", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/wormhole" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wormhole/" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB0fFa8000886e57F86dd5264b9582b2Ad87b2b91/logo.png b/blockchains/ethereum/assets/0xB0fFa8000886e57F86dd5264b9582b2Ad87b2b91/logo.png new file mode 100644 index 0000000000000..a430895704479 Binary files /dev/null and b/blockchains/ethereum/assets/0xB0fFa8000886e57F86dd5264b9582b2Ad87b2b91/logo.png differ diff --git a/blockchains/ethereum/assets/0xB17548c7B510427baAc4e267BEa62e800b247173/info.json b/blockchains/ethereum/assets/0xB17548c7B510427baAc4e267BEa62e800b247173/info.json new file mode 100644 index 0000000000000..10636f74711cb --- /dev/null +++ b/blockchains/ethereum/assets/0xB17548c7B510427baAc4e267BEa62e800b247173/info.json @@ -0,0 +1,17 @@ +{ + "name": "Swarm Markets", + "website": "https://swarm.com/", + "description": "Swarm Markets is a licensed DeFi platform a unified exchange for securities and crypto. Swarm Markets makes it possible for institutional and retail investors to trade tokens based on all kinds of real-world assets, such as commodities and traditional market securities.", + "explorer": "https://etherscan.io/token/0xb17548c7b510427baac4e267bea62e800b247173", + "type": "ERC20", + "symbol": "SMT", + "decimals": 18, + "status": "active", + "id": "0xB17548c7B510427baAc4e267BEa62e800b247173", + "links": [ + { + "name": "x", + "url": "https://x.com/SwarmMarkets" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB17548c7B510427baAc4e267BEa62e800b247173/logo.png b/blockchains/ethereum/assets/0xB17548c7B510427baAc4e267BEa62e800b247173/logo.png new file mode 100644 index 0000000000000..dbe784745b117 Binary files /dev/null and b/blockchains/ethereum/assets/0xB17548c7B510427baAc4e267BEa62e800b247173/logo.png differ diff --git a/blockchains/ethereum/assets/0xB1f1F47061A7Be15C69f378CB3f69423bD58F2F8/info.json b/blockchains/ethereum/assets/0xB1f1F47061A7Be15C69f378CB3f69423bD58F2F8/info.json index 926187b37a220..a281bf24fe5c3 100644 --- a/blockchains/ethereum/assets/0xB1f1F47061A7Be15C69f378CB3f69423bD58F2F8/info.json +++ b/blockchains/ethereum/assets/0xB1f1F47061A7Be15C69f378CB3f69423bD58F2F8/info.json @@ -10,8 +10,8 @@ "id": "0xB1f1F47061A7Be15C69f378CB3f69423bD58F2F8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Flashstake" + "name": "x", + "url": "https://x.com/Flashstake" }, { "name": "docs", @@ -38,4 +38,4 @@ "defi", "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB22d83E228c4266075Ec75c32aCc3BC059B6f248/info.json b/blockchains/ethereum/assets/0xB22d83E228c4266075Ec75c32aCc3BC059B6f248/info.json new file mode 100644 index 0000000000000..a00e377d005c2 --- /dev/null +++ b/blockchains/ethereum/assets/0xB22d83E228c4266075Ec75c32aCc3BC059B6f248/info.json @@ -0,0 +1,28 @@ +{ + "name": "Opendoor Technologies (Ondo Tokenized)", + "type": "ERC20", + "symbol": "OPENon", + "decimals": 18, + "description": "OPENon is the Ondo Tokenized version of Opendoor Technologies, giving tokenholders economic exposure similar to holding OPEN and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xB22d83E228c4266075Ec75c32aCc3BC059B6f248", + "status": "active", + "id": "0xB22d83E228c4266075Ec75c32aCc3BC059B6f248", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/opendoor-technologies-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/opendoor-technologies-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB22d83E228c4266075Ec75c32aCc3BC059B6f248/logo.png b/blockchains/ethereum/assets/0xB22d83E228c4266075Ec75c32aCc3BC059B6f248/logo.png new file mode 100644 index 0000000000000..c1a48336c9237 Binary files /dev/null and b/blockchains/ethereum/assets/0xB22d83E228c4266075Ec75c32aCc3BC059B6f248/logo.png differ diff --git a/blockchains/ethereum/assets/0xB2924278cc92E60DB9b673d6A311d7a331dD703D/info.json b/blockchains/ethereum/assets/0xB2924278cc92E60DB9b673d6A311d7a331dD703D/info.json new file mode 100644 index 0000000000000..96f2c957cc6d0 --- /dev/null +++ b/blockchains/ethereum/assets/0xB2924278cc92E60DB9b673d6A311d7a331dD703D/info.json @@ -0,0 +1,28 @@ +{ + "name": "Snap (Ondo Tokenized)", + "type": "ERC20", + "symbol": "SNAPon", + "decimals": 18, + "description": "SNAPon is the Ondo Tokenized version of Snap, giving tokenholders economic exposure similar to holding SNAP and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xB2924278cc92E60DB9b673d6A311d7a331dD703D", + "status": "active", + "id": "0xB2924278cc92E60DB9b673d6A311d7a331dD703D", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/snap-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/snap-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB2924278cc92E60DB9b673d6A311d7a331dD703D/logo.png b/blockchains/ethereum/assets/0xB2924278cc92E60DB9b673d6A311d7a331dD703D/logo.png new file mode 100644 index 0000000000000..c10c4abc8d1d2 Binary files /dev/null and b/blockchains/ethereum/assets/0xB2924278cc92E60DB9b673d6A311d7a331dD703D/logo.png differ diff --git a/blockchains/ethereum/assets/0xB40aFd1d55eA61FC1A6fBe093B817B673C8E78D7/info.json b/blockchains/ethereum/assets/0xB40aFd1d55eA61FC1A6fBe093B817B673C8E78D7/info.json new file mode 100644 index 0000000000000..949be8025b733 --- /dev/null +++ b/blockchains/ethereum/assets/0xB40aFd1d55eA61FC1A6fBe093B817B673C8E78D7/info.json @@ -0,0 +1,28 @@ +{ + "name": "Opera (Ondo Tokenized)", + "type": "ERC20", + "symbol": "OPRAon", + "decimals": 18, + "description": "OPRAon is the Ondo Tokenized version of Opera, giving tokenholders economic exposure similar to holding OPRA and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xB40aFd1d55eA61FC1A6fBe093B817B673C8E78D7", + "status": "active", + "id": "0xB40aFd1d55eA61FC1A6fBe093B817B673C8E78D7", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/opera-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/opera-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB40aFd1d55eA61FC1A6fBe093B817B673C8E78D7/logo.png b/blockchains/ethereum/assets/0xB40aFd1d55eA61FC1A6fBe093B817B673C8E78D7/logo.png new file mode 100644 index 0000000000000..493195c54bef4 Binary files /dev/null and b/blockchains/ethereum/assets/0xB40aFd1d55eA61FC1A6fBe093B817B673C8E78D7/logo.png differ diff --git a/blockchains/ethereum/assets/0xB4467E8D621105312a914F1D42f10770C0Ffe3c8/info.json b/blockchains/ethereum/assets/0xB4467E8D621105312a914F1D42f10770C0Ffe3c8/info.json index 58760e503770d..73385e6f5f035 100644 --- a/blockchains/ethereum/assets/0xB4467E8D621105312a914F1D42f10770C0Ffe3c8/info.json +++ b/blockchains/ethereum/assets/0xB4467E8D621105312a914F1D42f10770C0Ffe3c8/info.json @@ -10,8 +10,8 @@ "id": "0xB4467E8D621105312a914F1D42f10770C0Ffe3c8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Flashstake" + "name": "x", + "url": "https://x.com/Flashstake" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB4A3B0Faf0Ab53df58001804DdA5Bfc6a3D59008/info.json b/blockchains/ethereum/assets/0xB4A3B0Faf0Ab53df58001804DdA5Bfc6a3D59008/info.json new file mode 100644 index 0000000000000..bf6c7366aa773 --- /dev/null +++ b/blockchains/ethereum/assets/0xB4A3B0Faf0Ab53df58001804DdA5Bfc6a3D59008/info.json @@ -0,0 +1,38 @@ +{ + "name": "Sperax ", + "type": "ERC20", + "symbol": "SPA", + "decimals": 18, + "website": "https://sperax.io", + "description": "Sperax is a programmable agent layer for DeFi, enabling autonomous capital execution, dynamic yield optimization, and onchain risk defense. SperaxOS. Your edge, automated. Smart agents for fast, low-noise trading across chains.", + "explorer": "https://etherscan.io/token/0xB4A3B0Faf0Ab53df58001804DdA5Bfc6a3D59008", + "status": "active", + "id": "0xB4A3B0Faf0Ab53df58001804DdA5Bfc6a3D59008", + "links": [ + { + "name": "x", + "url": "https://x.com/speraxusd" + }, + { + "name": "github", + "url": "https://github.com/sperax" + }, + { + "name": "telegram", + "url": "https://t.me/speraxusd" + }, + { + "name": "docs", + "url": "https://docs.sperax.io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sperax" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sperax" + } + ], + "tags": [] +} diff --git a/blockchains/ethereum/assets/0xB4A3B0Faf0Ab53df58001804DdA5Bfc6a3D59008/logo.png b/blockchains/ethereum/assets/0xB4A3B0Faf0Ab53df58001804DdA5Bfc6a3D59008/logo.png new file mode 100644 index 0000000000000..588d8d6a9581a Binary files /dev/null and b/blockchains/ethereum/assets/0xB4A3B0Faf0Ab53df58001804DdA5Bfc6a3D59008/logo.png differ diff --git a/blockchains/ethereum/assets/0xB4b9DC1C77bdbb135eA907fd5a08094d98883A35/info.json b/blockchains/ethereum/assets/0xB4b9DC1C77bdbb135eA907fd5a08094d98883A35/info.json index ff4941d421f31..44c4a20ac5f34 100644 --- a/blockchains/ethereum/assets/0xB4b9DC1C77bdbb135eA907fd5a08094d98883A35/info.json +++ b/blockchains/ethereum/assets/0xB4b9DC1C77bdbb135eA907fd5a08094d98883A35/info.json @@ -10,8 +10,8 @@ "id": "0xB4b9DC1C77bdbb135eA907fd5a08094d98883A35", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SweatEconomy" + "name": "x", + "url": "https://x.com/SweatEconomy" }, { "name": "whitepaper", @@ -29,4 +29,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB4d930279552397bbA2ee473229f89Ec245bc365/info.json b/blockchains/ethereum/assets/0xB4d930279552397bbA2ee473229f89Ec245bc365/info.json index bb32f2c7a486e..22b1e89368ce8 100644 --- a/blockchains/ethereum/assets/0xB4d930279552397bbA2ee473229f89Ec245bc365/info.json +++ b/blockchains/ethereum/assets/0xB4d930279552397bbA2ee473229f89Ec245bc365/info.json @@ -10,8 +10,8 @@ "id": "0xB4d930279552397bbA2ee473229f89Ec245bc365", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TheMahaDAO" + "name": "x", + "url": "https://x.com/TheMahaDAO" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xB50721BCf8d664c30412Cfbc6cf7a15145234ad1/info.json b/blockchains/ethereum/assets/0xB50721BCf8d664c30412Cfbc6cf7a15145234ad1/info.json index 201792a751975..7f4517c61fc87 100644 --- a/blockchains/ethereum/assets/0xB50721BCf8d664c30412Cfbc6cf7a15145234ad1/info.json +++ b/blockchains/ethereum/assets/0xB50721BCf8d664c30412Cfbc6cf7a15145234ad1/info.json @@ -10,8 +10,8 @@ "id": "0xB50721BCf8d664c30412Cfbc6cf7a15145234ad1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/arbitrum" + "name": "x", + "url": "https://x.com/arbitrum" }, { "name": "whitepaper", diff --git a/blockchains/ethereum/assets/0xB528edBef013aff855ac3c50b381f253aF13b997/info.json b/blockchains/ethereum/assets/0xB528edBef013aff855ac3c50b381f253aF13b997/info.json new file mode 100644 index 0000000000000..999e561254afc --- /dev/null +++ b/blockchains/ethereum/assets/0xB528edBef013aff855ac3c50b381f253aF13b997/info.json @@ -0,0 +1,21 @@ +{ + "name": "Aevo", + "type": "ERC20", + "symbol": "AEVO", + "decimals": 18, + "website": "https://www.aevo.xyz/", + "description": "Aevo is a next-generation options exchange.", + "explorer": "https://etherscan.io/token/0xB528edBef013aff855ac3c50b381f253aF13b997", + "status": "active", + "id": "0xB528edBef013aff855ac3c50b381f253aF13b997", + "links": [ + { + "name": "x", + "url": "https://x.com/aevoxyz" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/aevo/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB528edBef013aff855ac3c50b381f253aF13b997/logo.png b/blockchains/ethereum/assets/0xB528edBef013aff855ac3c50b381f253aF13b997/logo.png new file mode 100644 index 0000000000000..9fc4efab5bda5 Binary files /dev/null and b/blockchains/ethereum/assets/0xB528edBef013aff855ac3c50b381f253aF13b997/logo.png differ diff --git a/blockchains/ethereum/assets/0xB53894f82a6B2d3B7365f24932B5bDE1c5Fb51FF/info.json b/blockchains/ethereum/assets/0xB53894f82a6B2d3B7365f24932B5bDE1c5Fb51FF/info.json new file mode 100644 index 0000000000000..0bd53d24ff2b1 --- /dev/null +++ b/blockchains/ethereum/assets/0xB53894f82a6B2d3B7365f24932B5bDE1c5Fb51FF/info.json @@ -0,0 +1,24 @@ +{ + "name": "Seagate (Ondo Tokenized)", + "type": "ERC20", + "symbol": "STXon", + "decimals": 18, + "description": "STXon is the Ondo Tokenized version of Seagate, giving tokenholders economic exposure similar to holding STX and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xB53894f82a6B2d3B7365f24932B5bDE1c5Fb51FF", + "status": "active", + "id": "0xB53894f82a6B2d3B7365f24932B5bDE1c5Fb51FF", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/seagate-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB53894f82a6B2d3B7365f24932B5bDE1c5Fb51FF/logo.png b/blockchains/ethereum/assets/0xB53894f82a6B2d3B7365f24932B5bDE1c5Fb51FF/logo.png new file mode 100644 index 0000000000000..3cee526c5f442 Binary files /dev/null and b/blockchains/ethereum/assets/0xB53894f82a6B2d3B7365f24932B5bDE1c5Fb51FF/logo.png differ diff --git a/blockchains/ethereum/assets/0xB53e08B97724126Bda6d237B94F766c0b81C90fE/info.json b/blockchains/ethereum/assets/0xB53e08B97724126Bda6d237B94F766c0b81C90fE/info.json index b72b8b086f358..02b705d972980 100644 --- a/blockchains/ethereum/assets/0xB53e08B97724126Bda6d237B94F766c0b81C90fE/info.json +++ b/blockchains/ethereum/assets/0xB53e08B97724126Bda6d237B94F766c0b81C90fE/info.json @@ -10,8 +10,8 @@ "id": "0xB53e08B97724126Bda6d237B94F766c0b81C90fE", "links": [ { - "name": "twitter", - "url": "https://twitter.com/pixbytoken" + "name": "x", + "url": "https://x.com/pixbytoken" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB5FE099475d3030DDe498c3BB6F3854F762A48Ad/info.json b/blockchains/ethereum/assets/0xB5FE099475d3030DDe498c3BB6F3854F762A48Ad/info.json index ca02e9c435923..dbe9951a8776b 100644 --- a/blockchains/ethereum/assets/0xB5FE099475d3030DDe498c3BB6F3854F762A48Ad/info.json +++ b/blockchains/ethereum/assets/0xB5FE099475d3030DDe498c3BB6F3854F762A48Ad/info.json @@ -10,8 +10,8 @@ "id": "0xB5FE099475d3030DDe498c3BB6F3854F762A48Ad", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ethereum" + "name": "x", + "url": "https://x.com/ethereum" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xB62132e35a6c13ee1EE0f84dC5d40bad8d815206/info.json b/blockchains/ethereum/assets/0xB62132e35a6c13ee1EE0f84dC5d40bad8d815206/info.json index 0bd673f3ef671..9760ffc6a6e5a 100644 --- a/blockchains/ethereum/assets/0xB62132e35a6c13ee1EE0f84dC5d40bad8d815206/info.json +++ b/blockchains/ethereum/assets/0xB62132e35a6c13ee1EE0f84dC5d40bad8d815206/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/nexofinance/NEXO-Token/" }, { - "name": "twitter", - "url": "https://twitter.com/NexoFinance" + "name": "x", + "url": "https://x.com/NexoFinance" }, { "name": "blog", diff --git a/blockchains/ethereum/assets/0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf/info.json b/blockchains/ethereum/assets/0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf/info.json new file mode 100644 index 0000000000000..e874393b3d25b --- /dev/null +++ b/blockchains/ethereum/assets/0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf/info.json @@ -0,0 +1,40 @@ +{ + "name": "Wall Street Memes", + "type": "ERC20", + "symbol": "WSM", + "decimals": 18, + "website": "https://wallstmemes.com", + "description": "Wall Street Memes is born out of the infamous GameStop fiasco of 2021, and the legacy of those brave Wall Street Bets heroes still endures today. It is the ultimate expression of the internet’s triumph over rampant capitalism. The token raised over $25m USD in the presale and recorded over $55m trading volume in the first 24hrs with listings on multiple tier 1 exchanges. Whilst the project initially started as a meme coin with meme only utility, there are big things coming, with announcements due on project updates very soon. ", + "explorer": "https://etherscan.io/token/0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf", + "status": "active", + "id": "0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf", + "links": [ + { + "name": "x", + "url": "https://x.com/wallstmemes" + }, + { + "name": "discord", + "url": "https://discord.com/invite/4E538pzeGX" + }, + { + "name": "telegram", + "url": "https://t.me/wallst_memes" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wall-street-memes/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCi-M8QFGjDbBQRY5lnl3x-g" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wall-street-memes" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf/logo.png b/blockchains/ethereum/assets/0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf/logo.png new file mode 100644 index 0000000000000..f9069e357e65d Binary files /dev/null and b/blockchains/ethereum/assets/0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf/logo.png differ diff --git a/blockchains/ethereum/assets/0xB812837b81a3a6b81d7CD74CfB19A7f2784555E5/info.json b/blockchains/ethereum/assets/0xB812837b81a3a6b81d7CD74CfB19A7f2784555E5/info.json new file mode 100644 index 0000000000000..e0f908ed74f3f --- /dev/null +++ b/blockchains/ethereum/assets/0xB812837b81a3a6b81d7CD74CfB19A7f2784555E5/info.json @@ -0,0 +1,24 @@ +{ + "name": "Microsoft (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "MSFTon is the Ondo Tokenized version of Microsoft, giving tokenholders economic exposure similar to holding MSFT and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xB812837b81a3a6b81d7CD74CfB19A7f2784555E5", + "type": "ERC20", + "symbol": "MSFTon", + "decimals": 18, + "status": "active", + "id": "0xB812837b81a3a6b81d7CD74CfB19A7f2784555E5", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/microsoft-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB812837b81a3a6b81d7CD74CfB19A7f2784555E5/logo.png b/blockchains/ethereum/assets/0xB812837b81a3a6b81d7CD74CfB19A7f2784555E5/logo.png new file mode 100644 index 0000000000000..660cee02395e9 Binary files /dev/null and b/blockchains/ethereum/assets/0xB812837b81a3a6b81d7CD74CfB19A7f2784555E5/logo.png differ diff --git a/blockchains/ethereum/assets/0xB868Cca38a8E6348d8D299c9b3C80e63d45Abe4c/info.json b/blockchains/ethereum/assets/0xB868Cca38a8E6348d8D299c9b3C80e63d45Abe4c/info.json new file mode 100644 index 0000000000000..4053c53372f9d --- /dev/null +++ b/blockchains/ethereum/assets/0xB868Cca38a8E6348d8D299c9b3C80e63d45Abe4c/info.json @@ -0,0 +1,21 @@ +{ + "name": "Fusion AI", + "type": "ERC20", + "symbol": "FUSION", + "decimals": 9, + "website": "https://fusionxlab.io/", + "description": "Fusion is a cutting-edge no-code platform that turns your inputs into fully functional applications.", + "explorer": "https://etherscan.io/token/0xB868Cca38a8E6348d8D299c9b3C80e63d45Abe4c", + "status": "abandoned", + "id": "0xB868Cca38a8E6348d8D299c9b3C80e63d45Abe4c", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fusion-ai/" + }, + { + "name": "x", + "url": "https://x.com/Fusion_ERC20" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB893A8049f250b57eFA8C62D51527a22404D7c9A/info.json b/blockchains/ethereum/assets/0xB893A8049f250b57eFA8C62D51527a22404D7c9A/info.json index c71a1b6a4c35a..f460e745f097d 100644 --- a/blockchains/ethereum/assets/0xB893A8049f250b57eFA8C62D51527a22404D7c9A/info.json +++ b/blockchains/ethereum/assets/0xB893A8049f250b57eFA8C62D51527a22404D7c9A/info.json @@ -10,8 +10,8 @@ "id": "0xB893A8049f250b57eFA8C62D51527a22404D7c9A", "links": [ { - "name": "twitter", - "url": "https://twitter.com/USHIBAEcosystem?s=09" + "name": "x", + "url": "https://x.com/USHIBAEcosystem?s=09" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xB8E2e2101eD11e9138803cd3e06e16dd19910647/info.json b/blockchains/ethereum/assets/0xB8E2e2101eD11e9138803cd3e06e16dd19910647/info.json index ae5a81572af30..5851645e74d15 100644 --- a/blockchains/ethereum/assets/0xB8E2e2101eD11e9138803cd3e06e16dd19910647/info.json +++ b/blockchains/ethereum/assets/0xB8E2e2101eD11e9138803cd3e06e16dd19910647/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/ardcoin/" }, { - "name": "twitter", - "url": "https://twitter.com/ard_coin" + "name": "x", + "url": "https://x.com/ard_coin" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0xB90B2A35C65dBC466b04240097Ca756ad2005295/info.json b/blockchains/ethereum/assets/0xB90B2A35C65dBC466b04240097Ca756ad2005295/info.json new file mode 100644 index 0000000000000..0f2ed9730314c --- /dev/null +++ b/blockchains/ethereum/assets/0xB90B2A35C65dBC466b04240097Ca756ad2005295/info.json @@ -0,0 +1,21 @@ +{ + "name": "BOBO", + "website": "https://bobothebear.io/", + "description": "Bobo the Bear is a meme character associated with bear markets, and is often posted on 4chan's /biz/ board. It originated in 2018, and is commonly shared alongside Apu Apustaja and Pepe the Frog.", + "explorer": "https://etherscan.io/token/0xb90b2a35c65dbc466b04240097ca756ad2005295", + "type": "ERC20", + "symbol": "BOBO", + "decimals": 18, + "status": "active", + "id": "0xB90B2A35C65dBC466b04240097Ca756ad2005295", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bobo-coin/" + }, + { + "name": "x", + "url": "https://x.com/bobocoineth" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB90B2A35C65dBC466b04240097Ca756ad2005295/logo.png b/blockchains/ethereum/assets/0xB90B2A35C65dBC466b04240097Ca756ad2005295/logo.png new file mode 100644 index 0000000000000..25f2ffac7d746 Binary files /dev/null and b/blockchains/ethereum/assets/0xB90B2A35C65dBC466b04240097Ca756ad2005295/logo.png differ diff --git a/blockchains/ethereum/assets/0xB9464ef80880c5aeA54C7324c0b8Dd6ca6d05A90/info.json b/blockchains/ethereum/assets/0xB9464ef80880c5aeA54C7324c0b8Dd6ca6d05A90/info.json index 4728634515cc7..0322f3a279a41 100644 --- a/blockchains/ethereum/assets/0xB9464ef80880c5aeA54C7324c0b8Dd6ca6d05A90/info.json +++ b/blockchains/ethereum/assets/0xB9464ef80880c5aeA54C7324c0b8Dd6ca6d05A90/info.json @@ -11,8 +11,8 @@ "id": "0xB9464ef80880c5aeA54C7324c0b8Dd6ca6d05A90", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ethereum" + "name": "x", + "url": "https://x.com/ethereum" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0xB987D48Ed8f2C468D52D6405624EADBa5e76d723/info.json b/blockchains/ethereum/assets/0xB987D48Ed8f2C468D52D6405624EADBa5e76d723/info.json index 9de1f573a2a91..de8254da1832e 100644 --- a/blockchains/ethereum/assets/0xB987D48Ed8f2C468D52D6405624EADBa5e76d723/info.json +++ b/blockchains/ethereum/assets/0xB987D48Ed8f2C468D52D6405624EADBa5e76d723/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/stabilize-token/" }, { - "name": "twitter", - "url": "https://twitter.com/StabilizePro" + "name": "x", + "url": "https://x.com/StabilizePro" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xB9d99C33eA2d86EC5eC6b8A4dD816EBBA64404AF/info.json b/blockchains/ethereum/assets/0xB9d99C33eA2d86EC5eC6b8A4dD816EBBA64404AF/info.json index 7cb757ca4ca80..828ead7fbc094 100644 --- a/blockchains/ethereum/assets/0xB9d99C33eA2d86EC5eC6b8A4dD816EBBA64404AF/info.json +++ b/blockchains/ethereum/assets/0xB9d99C33eA2d86EC5eC6b8A4dD816EBBA64404AF/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/kanonart" }, { - "name": "twitter", - "url": "https://twitter.com/KanonDotArt" + "name": "x", + "url": "https://x.com/KanonDotArt" }, { "name": "discord", diff --git a/blockchains/ethereum/assets/0xB9daEEa12b791Da3CF3DC487C97F7b02735D1d8A/info.json b/blockchains/ethereum/assets/0xB9daEEa12b791Da3CF3DC487C97F7b02735D1d8A/info.json new file mode 100644 index 0000000000000..def3ec745fed9 --- /dev/null +++ b/blockchains/ethereum/assets/0xB9daEEa12b791Da3CF3DC487C97F7b02735D1d8A/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT MaxiDoge", + "type": "ERC20", + "symbol": "HONEYPOT MaxiDoge", + "decimals": 9, + "website": "https://etherscan.io/address/0xb9daeea12b791da3cf3dc487c97f7b02735d1d8a", + "description": "HONEYPOT MaxiDoge", + "explorer": "https://etherscan.io/token/0xB9daEEa12b791Da3CF3DC487C97F7b02735D1d8A", + "status": "spam", + "id": "0xB9daEEa12b791Da3CF3DC487C97F7b02735D1d8A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/info.json b/blockchains/ethereum/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/info.json index e700e1c908f04..08e4bed2da55c 100644 --- a/blockchains/ethereum/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/info.json +++ b/blockchains/ethereum/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/info.json @@ -1,5 +1,5 @@ { - "name": "Band Protocol", + "name": "Band", "website": "https://bandprotocol.com", "description": "Band Protocol is a cross-chain data oracle network that aggregates and connects real-world data and APIs to smart contracts.", "explorer": "https://etherscan.io/token/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55", diff --git a/blockchains/ethereum/assets/0xBA41Ddf06B7fFD89D1267b5A93BFeF2424eb2003/info.json b/blockchains/ethereum/assets/0xBA41Ddf06B7fFD89D1267b5A93BFeF2424eb2003/info.json new file mode 100644 index 0000000000000..d8ec18b836433 --- /dev/null +++ b/blockchains/ethereum/assets/0xBA41Ddf06B7fFD89D1267b5A93BFeF2424eb2003/info.json @@ -0,0 +1,21 @@ +{ + "name": "Mythos", + "website": "https://mythos.foundation/", + "description": "The Mythos token (MYTH) will be the interoperable utility token used in these decentralized efforts and provide opportunity for anyone to participate and contribute within the ecosystem - adding governance, and value to game developers, publishers, and content creators.", + "explorer": "https://etherscan.io/token/0xba41ddf06b7ffd89d1267b5a93bfef2424eb2003", + "type": "ERC20", + "symbol": "MYTH", + "decimals": 18, + "status": "active", + "id": "0xBA41Ddf06B7fFD89D1267b5A93BFeF2424eb2003", + "links": [ + { + "name": "x", + "url": "https://x.com/EnterTheMythos" + }, + { + "name": "telegram", + "url": "https://t.me/enterthemythos" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBA41Ddf06B7fFD89D1267b5A93BFeF2424eb2003/logo.png b/blockchains/ethereum/assets/0xBA41Ddf06B7fFD89D1267b5A93BFeF2424eb2003/logo.png new file mode 100644 index 0000000000000..22fc2177e4089 Binary files /dev/null and b/blockchains/ethereum/assets/0xBA41Ddf06B7fFD89D1267b5A93BFeF2424eb2003/logo.png differ diff --git a/blockchains/ethereum/assets/0xBBa39Fd2935d5769116ce38d46a71bde9cf03099/info.json b/blockchains/ethereum/assets/0xBBa39Fd2935d5769116ce38d46a71bde9cf03099/info.json new file mode 100644 index 0000000000000..5a69a689f0571 --- /dev/null +++ b/blockchains/ethereum/assets/0xBBa39Fd2935d5769116ce38d46a71bde9cf03099/info.json @@ -0,0 +1,21 @@ +{ + "name": "choise.com", + "type": "ERC20", + "symbol": "CHO", + "decimals": 18, + "website": "https://choise.com/", + "description": "Choise.com – the next step in Crypterium evolution.", + "explorer": "https://etherscan.io/token/0xBBa39Fd2935d5769116ce38d46a71bde9cf03099", + "status": "active", + "id": "0xBBa39Fd2935d5769116ce38d46a71bde9cf03099", + "links": [ + { + "name": "x", + "url": "https://x.com/choiseai" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/choise/" + } + ] +} diff --git a/blockchains/ethereum/assets/0xBBa39Fd2935d5769116ce38d46a71bde9cf03099/logo.png b/blockchains/ethereum/assets/0xBBa39Fd2935d5769116ce38d46a71bde9cf03099/logo.png new file mode 100644 index 0000000000000..42317bac1ba4c Binary files /dev/null and b/blockchains/ethereum/assets/0xBBa39Fd2935d5769116ce38d46a71bde9cf03099/logo.png differ diff --git a/blockchains/ethereum/assets/0xBBbbCA6A901c926F240b89EacB641d8Aec7AEafD/info.json b/blockchains/ethereum/assets/0xBBbbCA6A901c926F240b89EacB641d8Aec7AEafD/info.json index 347b65807b485..3dfc2e5291269 100644 --- a/blockchains/ethereum/assets/0xBBbbCA6A901c926F240b89EacB641d8Aec7AEafD/info.json +++ b/blockchains/ethereum/assets/0xBBbbCA6A901c926F240b89EacB641d8Aec7AEafD/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/Loopring" }, { - "name": "twitter", - "url": "https://twitter.com/loopringorg" + "name": "x", + "url": "https://x.com/loopringorg" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0xBBc2AE13b23d715c30720F079fcd9B4a74093505/info.json b/blockchains/ethereum/assets/0xBBc2AE13b23d715c30720F079fcd9B4a74093505/info.json index 1d47f05e28f8b..534345a7653f2 100644 --- a/blockchains/ethereum/assets/0xBBc2AE13b23d715c30720F079fcd9B4a74093505/info.json +++ b/blockchains/ethereum/assets/0xBBc2AE13b23d715c30720F079fcd9B4a74093505/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/joinchat/WKqxzZV7I14xItLT" }, { - "name": "twitter", - "url": "https://twitter.com/ethernitychain" + "name": "x", + "url": "https://x.com/ethernitychain" }, { "name": "coinmarketcap", diff --git a/blockchains/ethereum/assets/0xBBc2AE13b23d715c30720F079fcd9B4a74093505/logo.png b/blockchains/ethereum/assets/0xBBc2AE13b23d715c30720F079fcd9B4a74093505/logo.png index 04e20272b11b8..0a3ef5da30ed7 100644 Binary files a/blockchains/ethereum/assets/0xBBc2AE13b23d715c30720F079fcd9B4a74093505/logo.png and b/blockchains/ethereum/assets/0xBBc2AE13b23d715c30720F079fcd9B4a74093505/logo.png differ diff --git a/blockchains/ethereum/assets/0xBC7170a1280Be28513B4e940C681537EB25e39f4/info.json b/blockchains/ethereum/assets/0xBC7170a1280Be28513B4e940C681537EB25e39f4/info.json new file mode 100644 index 0000000000000..71aec7dd56e85 --- /dev/null +++ b/blockchains/ethereum/assets/0xBC7170a1280Be28513B4e940C681537EB25e39f4/info.json @@ -0,0 +1,24 @@ +{ + "name": "Comcast tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Comcast xStock (CMCSAx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. CMCSAx tracks the price of International Comcast Corporation Class A (the underlying). CMCSAx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Comcast Corporation Class A, whilst maintaining the benefits of blockchain technology. Comcast Corporation is a global media and tech company that provides connectivity, content, and entertainment to millions of customers worldwide.", + "explorer": "https://etherscan.io/token/0xBC7170a1280Be28513B4e940C681537EB25e39f4", + "type": "ERC20", + "symbol": "CMCSAX", + "decimals": 18, + "status": "active", + "id": "0xBC7170a1280Be28513B4e940C681537EB25e39f4", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/comcast-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBC7170a1280Be28513B4e940C681537EB25e39f4/logo.png b/blockchains/ethereum/assets/0xBC7170a1280Be28513B4e940C681537EB25e39f4/logo.png new file mode 100644 index 0000000000000..a3d18c9ae4e61 Binary files /dev/null and b/blockchains/ethereum/assets/0xBC7170a1280Be28513B4e940C681537EB25e39f4/logo.png differ diff --git a/blockchains/ethereum/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json b/blockchains/ethereum/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json index 3032d99ad23a3..0834e88bb3b02 100644 --- a/blockchains/ethereum/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json +++ b/blockchains/ethereum/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json @@ -10,8 +10,8 @@ "id": "0xBD100d061E120b2c67A24453CF6368E63f1Be056", "links": [ { - "name": "twitter", - "url": "https://twitter.com/dypfinance" + "name": "x", + "url": "https://x.com/dypfinance" }, { "name": "github", @@ -40,8 +40,6 @@ ], "tags": [ "governance", - "defi", - "staking-native" + "defi" ] -} - +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBE3F88E18BE3944FdDa830695228ADBB82fA125F/info.json b/blockchains/ethereum/assets/0xBE3F88E18BE3944FdDa830695228ADBB82fA125F/info.json index 1d7331501c002..1e816e5219c47 100644 --- a/blockchains/ethereum/assets/0xBE3F88E18BE3944FdDa830695228ADBB82fA125F/info.json +++ b/blockchains/ethereum/assets/0xBE3F88E18BE3944FdDa830695228ADBB82fA125F/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/ichifarm/ichi-oneToken" }, { - "name": "twitter", - "url": "https://twitter.com/ichifarm" + "name": "x", + "url": "https://x.com/ichifarm" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xBE8eb7b51a08f9d52Bb6C8c7EcA699f0f89BfC02/info.json b/blockchains/ethereum/assets/0xBE8eb7b51a08f9d52Bb6C8c7EcA699f0f89BfC02/info.json new file mode 100644 index 0000000000000..6ebc973bce9c6 --- /dev/null +++ b/blockchains/ethereum/assets/0xBE8eb7b51a08f9d52Bb6C8c7EcA699f0f89BfC02/info.json @@ -0,0 +1,28 @@ +{ + "name": "American Airlines Group (Ondo Tokenized)", + "type": "ERC20", + "symbol": "AALon", + "decimals": 18, + "description": "AALon is the Ondo Tokenized version of American Airlines Group, giving tokenholders economic exposure similar to holding AAL and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xBE8eb7b51a08f9d52Bb6C8c7EcA699f0f89BfC02", + "status": "active", + "id": "0xBE8eb7b51a08f9d52Bb6C8c7EcA699f0f89BfC02", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/american-airlines-group-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/american-airlines-group-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBE8eb7b51a08f9d52Bb6C8c7EcA699f0f89BfC02/logo.png b/blockchains/ethereum/assets/0xBE8eb7b51a08f9d52Bb6C8c7EcA699f0f89BfC02/logo.png new file mode 100644 index 0000000000000..c86f92e6e6a47 Binary files /dev/null and b/blockchains/ethereum/assets/0xBE8eb7b51a08f9d52Bb6C8c7EcA699f0f89BfC02/logo.png differ diff --git a/blockchains/ethereum/assets/0xBFe6e76A2FE099392064fbB3E868558C82bEb917/info.json b/blockchains/ethereum/assets/0xBFe6e76A2FE099392064fbB3E868558C82bEb917/info.json new file mode 100644 index 0000000000000..98357dd399795 --- /dev/null +++ b/blockchains/ethereum/assets/0xBFe6e76A2FE099392064fbB3E868558C82bEb917/info.json @@ -0,0 +1,24 @@ +{ + "name": "VinFast Auto (Ondo Tokenized)", + "type": "ERC20", + "symbol": "VFSon", + "decimals": 18, + "description": "VFSon is the Ondo Tokenized version of VinFast Auto, giving tokenholders economic exposure similar to holding VFS and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xBFe6e76A2FE099392064fbB3E868558C82bEb917", + "status": "active", + "id": "0xBFe6e76A2FE099392064fbB3E868558C82bEb917", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vinfast-auto-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBFe6e76A2FE099392064fbB3E868558C82bEb917/logo.png b/blockchains/ethereum/assets/0xBFe6e76A2FE099392064fbB3E868558C82bEb917/logo.png new file mode 100644 index 0000000000000..75d3501cc1374 Binary files /dev/null and b/blockchains/ethereum/assets/0xBFe6e76A2FE099392064fbB3E868558C82bEb917/logo.png differ diff --git a/blockchains/ethereum/assets/0xBa25B2281214300E4e649feAd9A6d6acD25f1c0a/info.json b/blockchains/ethereum/assets/0xBa25B2281214300E4e649feAd9A6d6acD25f1c0a/info.json new file mode 100644 index 0000000000000..5709480066267 --- /dev/null +++ b/blockchains/ethereum/assets/0xBa25B2281214300E4e649feAd9A6d6acD25f1c0a/info.json @@ -0,0 +1,17 @@ +{ + "name": "Tree", + "type": "ERC20", + "symbol": "TREE", + "decimals": 18, + "website": "https://news.treeofalpha.com/", + "description": "TREE is the token that powers everything around Tree News, the Crypto News aggregator", + "explorer": "https://etherscan.io/token/0xba25b2281214300e4e649fead9a6d6acd25f1c0a", + "status": "active", + "id": "0xBa25B2281214300E4e649feAd9A6d6acD25f1c0a", + "links": [ + { + "name": "x", + "url": "https://x.com/TreeNewsToken" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBa25B2281214300E4e649feAd9A6d6acD25f1c0a/logo.png b/blockchains/ethereum/assets/0xBa25B2281214300E4e649feAd9A6d6acD25f1c0a/logo.png new file mode 100644 index 0000000000000..43e9af9a1caa9 Binary files /dev/null and b/blockchains/ethereum/assets/0xBa25B2281214300E4e649feAd9A6d6acD25f1c0a/logo.png differ diff --git a/blockchains/ethereum/assets/0xBbcE03B2E7f53caDCA93251CA4c928aF01Db6404/info.json b/blockchains/ethereum/assets/0xBbcE03B2E7f53caDCA93251CA4c928aF01Db6404/info.json index 201081cf689bb..ee2f5a643c343 100644 --- a/blockchains/ethereum/assets/0xBbcE03B2E7f53caDCA93251CA4c928aF01Db6404/info.json +++ b/blockchains/ethereum/assets/0xBbcE03B2E7f53caDCA93251CA4c928aF01Db6404/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/ichifarm/ichi-oneToken" }, { - "name": "twitter", - "url": "https://twitter.com/ichifarm" + "name": "x", + "url": "https://x.com/ichifarm" }, { "name": "telegram", @@ -37,4 +37,4 @@ "url": "https://coingecko.com/en/coins/onefuse" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBc17729fDf562723f0267F79FF25aDE441056d87/info.json b/blockchains/ethereum/assets/0xBc17729fDf562723f0267F79FF25aDE441056d87/info.json index 5f52d64dcf855..d6e5aae5878b7 100644 --- a/blockchains/ethereum/assets/0xBc17729fDf562723f0267F79FF25aDE441056d87/info.json +++ b/blockchains/ethereum/assets/0xBc17729fDf562723f0267F79FF25aDE441056d87/info.json @@ -14,8 +14,8 @@ "url": "https://ksmstarter.com/wp-content/uploads/2021/09/ksm_starter.pdf" }, { - "name": "twitter", - "url": "https://twitter.com/KSMStarter" + "name": "x", + "url": "https://x.com/KSMStarter" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xBcA31049ab4782f0FfA9CfFCB2cF48e8D6dE4fb8/info.json b/blockchains/ethereum/assets/0xBcA31049ab4782f0FfA9CfFCB2cF48e8D6dE4fb8/info.json new file mode 100644 index 0000000000000..26af6027066c1 --- /dev/null +++ b/blockchains/ethereum/assets/0xBcA31049ab4782f0FfA9CfFCB2cF48e8D6dE4fb8/info.json @@ -0,0 +1,24 @@ +{ + "name": "VanEck Oil Services ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "OIHon", + "decimals": 18, + "description": "OIHon is the Ondo Tokenized version of the VanEck Oil Services ETF, giving tokenholders economic exposure similar to holding OIH and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xBcA31049ab4782f0FfA9CfFCB2cF48e8D6dE4fb8", + "status": "active", + "id": "0xBcA31049ab4782f0FfA9CfFCB2cF48e8D6dE4fb8", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vaneck-oil-services-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBcA31049ab4782f0FfA9CfFCB2cF48e8D6dE4fb8/logo.png b/blockchains/ethereum/assets/0xBcA31049ab4782f0FfA9CfFCB2cF48e8D6dE4fb8/logo.png new file mode 100644 index 0000000000000..3bdf99e20ccd1 Binary files /dev/null and b/blockchains/ethereum/assets/0xBcA31049ab4782f0FfA9CfFCB2cF48e8D6dE4fb8/logo.png differ diff --git a/blockchains/ethereum/assets/0xBcc66ed2aB491e9aE7Bf8386541Fb17421Fa9d35/info.json b/blockchains/ethereum/assets/0xBcc66ed2aB491e9aE7Bf8386541Fb17421Fa9d35/info.json index b5bd960860f70..b559a6245e0cc 100644 --- a/blockchains/ethereum/assets/0xBcc66ed2aB491e9aE7Bf8386541Fb17421Fa9d35/info.json +++ b/blockchains/ethereum/assets/0xBcc66ed2aB491e9aE7Bf8386541Fb17421Fa9d35/info.json @@ -10,8 +10,8 @@ "id": "0xBcc66ed2aB491e9aE7Bf8386541Fb17421Fa9d35", "links": [ { - "name": "twitter", - "url": "https://twitter.com/skeenee_art" + "name": "x", + "url": "https://x.com/skeenee_art" }, { "name": "discord", @@ -25,4 +25,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBd2949F67DcdC549c6Ebe98696449Fa79D988A9F/info.json b/blockchains/ethereum/assets/0xBd2949F67DcdC549c6Ebe98696449Fa79D988A9F/info.json index 6294616d93d08..60055fab666e2 100644 --- a/blockchains/ethereum/assets/0xBd2949F67DcdC549c6Ebe98696449Fa79D988A9F/info.json +++ b/blockchains/ethereum/assets/0xBd2949F67DcdC549c6Ebe98696449Fa79D988A9F/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/meterio" }, { - "name": "twitter", - "url": "https://twitter.com/Meter_IO" + "name": "x", + "url": "https://x.com/Meter_IO" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xBd356a39BFf2cAda8E9248532DD879147221Cf76/info.json b/blockchains/ethereum/assets/0xBd356a39BFf2cAda8E9248532DD879147221Cf76/info.json index e67b33bc0b352..507e46c31a632 100644 --- a/blockchains/ethereum/assets/0xBd356a39BFf2cAda8E9248532DD879147221Cf76/info.json +++ b/blockchains/ethereum/assets/0xBd356a39BFf2cAda8E9248532DD879147221Cf76/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/wom-protocol" }, { - "name": "twitter", - "url": "https://twitter.com/WOMProtocol" + "name": "x", + "url": "https://x.com/WOMProtocol" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xBe1a001FE942f96Eea22bA08783140B9Dcc09D28/info.json b/blockchains/ethereum/assets/0xBe1a001FE942f96Eea22bA08783140B9Dcc09D28/info.json new file mode 100644 index 0000000000000..5967142f356e2 --- /dev/null +++ b/blockchains/ethereum/assets/0xBe1a001FE942f96Eea22bA08783140B9Dcc09D28/info.json @@ -0,0 +1,21 @@ +{ + "name": "Beta", + "type": "ERC20", + "symbol": "BETA", + "decimals": 18, + "website": "https://betafinance.org/", + "description": "Beta Finance is a cross-chain permissionless money market protocol for lending, borrowing, and shorting crypto. Beta Finance has created an integrated “1-Click” Short Tool to initiate, manage, and close short positions, as well as allow anyone to create money markets for a token automatically.", + "explorer": "https://etherscan.io/token/0xbe1a001fe942f96eea22ba08783140b9dcc09d28", + "status": "active", + "id": "0xBe1a001FE942f96Eea22bA08783140B9Dcc09D28", + "links": [ + { + "name": "x", + "url": "https://x.com/beta_finance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/beta-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBe1a001FE942f96Eea22bA08783140B9Dcc09D28/logo.png b/blockchains/ethereum/assets/0xBe1a001FE942f96Eea22bA08783140B9Dcc09D28/logo.png new file mode 100644 index 0000000000000..fc7f222306751 Binary files /dev/null and b/blockchains/ethereum/assets/0xBe1a001FE942f96Eea22bA08783140B9Dcc09D28/logo.png differ diff --git a/blockchains/ethereum/assets/0xBe428c3867F05deA2A89Fc76a102b544eaC7f772/info.json b/blockchains/ethereum/assets/0xBe428c3867F05deA2A89Fc76a102b544eaC7f772/info.json index 1ada3598f9564..f96866f6e4474 100644 --- a/blockchains/ethereum/assets/0xBe428c3867F05deA2A89Fc76a102b544eaC7f772/info.json +++ b/blockchains/ethereum/assets/0xBe428c3867F05deA2A89Fc76a102b544eaC7f772/info.json @@ -10,8 +10,8 @@ "id": "0xBe428c3867F05deA2A89Fc76a102b544eaC7f772", "links": [ { - "name": "twitter", - "url": "https://twitter.com/CyberVeinGroup" + "name": "x", + "url": "https://x.com/CyberVeinGroup" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xBeE20B9Df360B8442534Ed8059f3e5bAEeB74EaF/info.json b/blockchains/ethereum/assets/0xBeE20B9Df360B8442534Ed8059f3e5bAEeB74EaF/info.json new file mode 100644 index 0000000000000..007f2f532bbf3 --- /dev/null +++ b/blockchains/ethereum/assets/0xBeE20B9Df360B8442534Ed8059f3e5bAEeB74EaF/info.json @@ -0,0 +1,21 @@ +{ + "name": "MOC", + "type": "ERC20", + "symbol": "WMOC", + "decimals": 18, + "website": "https://www.moss.land", + "description": "Mossland is a blockchain-based metaverse project that connects the real and the virtual world.", + "explorer": "https://etherscan.io/token/0xBeE20B9Df360B8442534Ed8059f3e5bAEeB74EaF", + "status": "active", + "id": "0xBeE20B9Df360B8442534Ed8059f3e5bAEeB74EaF", + "links": [ + { + "name": "x", + "url": "https://x.com/theMossland" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/moss-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBeE20B9Df360B8442534Ed8059f3e5bAEeB74EaF/logo.png b/blockchains/ethereum/assets/0xBeE20B9Df360B8442534Ed8059f3e5bAEeB74EaF/logo.png new file mode 100644 index 0000000000000..01afbfe7f01e0 Binary files /dev/null and b/blockchains/ethereum/assets/0xBeE20B9Df360B8442534Ed8059f3e5bAEeB74EaF/logo.png differ diff --git a/blockchains/ethereum/assets/0xBec4A69D6A5fbCb2303c13D24ea1A51a6F19bd12/info.json b/blockchains/ethereum/assets/0xBec4A69D6A5fbCb2303c13D24ea1A51a6F19bd12/info.json index 215ca7809d786..7ac9a1dccc99b 100644 --- a/blockchains/ethereum/assets/0xBec4A69D6A5fbCb2303c13D24ea1A51a6F19bd12/info.json +++ b/blockchains/ethereum/assets/0xBec4A69D6A5fbCb2303c13D24ea1A51a6F19bd12/info.json @@ -10,8 +10,8 @@ "id": "0xBec4A69D6A5fbCb2303c13D24ea1A51a6F19bd12", "links": [ { - "name": "twitter", - "url": "https://twitter.com/coinusdx" + "name": "x", + "url": "https://x.com/coinusdx" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBf54eb503bb350583D11f4348086DC3608FA245c/info.json b/blockchains/ethereum/assets/0xBf54eb503bb350583D11f4348086DC3608FA245c/info.json new file mode 100644 index 0000000000000..4b4b285784a0b --- /dev/null +++ b/blockchains/ethereum/assets/0xBf54eb503bb350583D11f4348086DC3608FA245c/info.json @@ -0,0 +1,28 @@ +{ + "name": "Sprott Nickel Miners ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "NIKLon", + "decimals": 18, + "description": "NIKLon is the Ondo Tokenized version of the Sprott Nickel Miners ETF, giving tokenholders economic exposure similar to holding NIKL and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xBf54eb503bb350583D11f4348086DC3608FA245c", + "status": "active", + "id": "0xBf54eb503bb350583D11f4348086DC3608FA245c", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sprott-nickel-miners-etf-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sprott-nickel-miners-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBf54eb503bb350583D11f4348086DC3608FA245c/logo.png b/blockchains/ethereum/assets/0xBf54eb503bb350583D11f4348086DC3608FA245c/logo.png new file mode 100644 index 0000000000000..07947479164c4 Binary files /dev/null and b/blockchains/ethereum/assets/0xBf54eb503bb350583D11f4348086DC3608FA245c/logo.png differ diff --git a/blockchains/ethereum/assets/0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F/info.json b/blockchains/ethereum/assets/0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F/info.json index 0e34c349c0698..c0635d0e1df2c 100644 --- a/blockchains/ethereum/assets/0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F/info.json +++ b/blockchains/ethereum/assets/0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F/info.json @@ -18,8 +18,8 @@ "url": "https://github.com/havven/havven" }, { - "name": "twitter", - "url": "https://twitter.com/synthetix_io" + "name": "x", + "url": "https://x.com/synthetix_io" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0xC017C622cd05698580E2decD0F97d4A17DaB70F9/info.json b/blockchains/ethereum/assets/0xC017C622cd05698580E2decD0F97d4A17DaB70F9/info.json new file mode 100644 index 0000000000000..1f1350d16bd1f --- /dev/null +++ b/blockchains/ethereum/assets/0xC017C622cd05698580E2decD0F97d4A17DaB70F9/info.json @@ -0,0 +1,28 @@ +{ + "name": "Pinterest (Ondo Tokenized)", + "type": "ERC20", + "symbol": "PINSon", + "decimals": 18, + "description": "PINSon is the Ondo Tokenized version of Pinterest, giving tokenholders economic exposure similar to holding PINS and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xC017C622cd05698580E2decD0F97d4A17DaB70F9", + "status": "active", + "id": "0xC017C622cd05698580E2decD0F97d4A17DaB70F9", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pinterest-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pinterest-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC017C622cd05698580E2decD0F97d4A17DaB70F9/logo.png b/blockchains/ethereum/assets/0xC017C622cd05698580E2decD0F97d4A17DaB70F9/logo.png new file mode 100644 index 0000000000000..af46617921fd0 Binary files /dev/null and b/blockchains/ethereum/assets/0xC017C622cd05698580E2decD0F97d4A17DaB70F9/logo.png differ diff --git a/blockchains/ethereum/assets/0xC08512927D12348F6620a698105e1BAac6EcD911/info.json b/blockchains/ethereum/assets/0xC08512927D12348F6620a698105e1BAac6EcD911/info.json index cac0fa274d967..bcb17475536c8 100644 --- a/blockchains/ethereum/assets/0xC08512927D12348F6620a698105e1BAac6EcD911/info.json +++ b/blockchains/ethereum/assets/0xC08512927D12348F6620a698105e1BAac6EcD911/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/trust-zcom/" }, { - "name": "twitter", - "url": "https://twitter.com/GMOTrust" + "name": "x", + "url": "https://x.com/GMOTrust" }, { "name": "medium", diff --git a/blockchains/ethereum/assets/0xC0E47007e084EEF3EE58eb33D777b3B4Ca98622f/info.json b/blockchains/ethereum/assets/0xC0E47007e084EEF3EE58eb33D777b3B4Ca98622f/info.json index 83638c13d101f..2fd2d49230767 100644 --- a/blockchains/ethereum/assets/0xC0E47007e084EEF3EE58eb33D777b3B4Ca98622f/info.json +++ b/blockchains/ethereum/assets/0xC0E47007e084EEF3EE58eb33D777b3B4Ca98622f/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/stardexio" }, { - "name": "twitter", - "url": "https://twitter.com/stardexio" + "name": "x", + "url": "https://x.com/stardexio" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xC0F9bD5Fa5698B6505F643900FFA515Ea5dF54A9/logo.png b/blockchains/ethereum/assets/0xC0F9bD5Fa5698B6505F643900FFA515Ea5dF54A9/logo.png index 461f447864c2f..ac9e70af82146 100644 Binary files a/blockchains/ethereum/assets/0xC0F9bD5Fa5698B6505F643900FFA515Ea5dF54A9/logo.png and b/blockchains/ethereum/assets/0xC0F9bD5Fa5698B6505F643900FFA515Ea5dF54A9/logo.png differ diff --git a/blockchains/ethereum/assets/0xC0bA369c8Db6eB3924965e5c4FD0b4C1B91e305F/info.json b/blockchains/ethereum/assets/0xC0bA369c8Db6eB3924965e5c4FD0b4C1B91e305F/info.json index 84f9bd4cd5e65..0c7a52b7fa18f 100644 --- a/blockchains/ethereum/assets/0xC0bA369c8Db6eB3924965e5c4FD0b4C1B91e305F/info.json +++ b/blockchains/ethereum/assets/0xC0bA369c8Db6eB3924965e5c4FD0b4C1B91e305F/info.json @@ -10,8 +10,8 @@ "id": "0xC0bA369c8Db6eB3924965e5c4FD0b4C1B91e305F", "links": [ { - "name": "twitter", - "url": "https://twitter.com/dao_duck" + "name": "x", + "url": "https://x.com/dao_duck" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xC0c293ce456fF0ED870ADd98a0828Dd4d2903DBF/info.json b/blockchains/ethereum/assets/0xC0c293ce456fF0ED870ADd98a0828Dd4d2903DBF/info.json index f47cfab2573f1..4ad585f918143 100644 --- a/blockchains/ethereum/assets/0xC0c293ce456fF0ED870ADd98a0828Dd4d2903DBF/info.json +++ b/blockchains/ethereum/assets/0xC0c293ce456fF0ED870ADd98a0828Dd4d2903DBF/info.json @@ -10,8 +10,8 @@ "id": "0xC0c293ce456fF0ED870ADd98a0828Dd4d2903DBF", "links": [ { - "name": "twitter", - "url": "https://twitter.com/AuraFinance" + "name": "x", + "url": "https://x.com/AuraFinance" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0xC12BbdD66DDDb8212Ffa05C7cA952ac628660B6E/info.json b/blockchains/ethereum/assets/0xC12BbdD66DDDb8212Ffa05C7cA952ac628660B6E/info.json new file mode 100644 index 0000000000000..885456087f7bf --- /dev/null +++ b/blockchains/ethereum/assets/0xC12BbdD66DDDb8212Ffa05C7cA952ac628660B6E/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tentum", + "type": "ERC20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://etherscan.io/token/0xC12BbdD66DDDb8212Ffa05C7cA952ac628660B6E", + "explorer": "https://etherscan.io/token/0xC12BbdD66DDDb8212Ffa05C7cA952ac628660B6E", + "status": "spam", + "id": "0xC12BbdD66DDDb8212Ffa05C7cA952ac628660B6E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC139190F447e929f090Edeb554D95AbB8b18aC1C/info.json b/blockchains/ethereum/assets/0xC139190F447e929f090Edeb554D95AbB8b18aC1C/info.json new file mode 100644 index 0000000000000..0a13c8950dfba --- /dev/null +++ b/blockchains/ethereum/assets/0xC139190F447e929f090Edeb554D95AbB8b18aC1C/info.json @@ -0,0 +1,17 @@ +{ + "name": "USDtb", + "website": "https://usdtb.money/", + "description": "Digital Dollars for the Internet Economy. Backed by institutional grade tokenized treasury funds and powered by Ethena Labs", + "explorer": "https://etherscan.io/token/0xC139190F447e929f090Edeb554D95AbB8b18aC1C", + "type": "ERC20", + "symbol": "USDtb", + "decimals": 18, + "status": "active", + "id": "0xC139190F447e929f090Edeb554D95AbB8b18aC1C", + "links": [ + { + "name": "x", + "url": "https://x.com/ethena_labs" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC139190F447e929f090Edeb554D95AbB8b18aC1C/logo.png b/blockchains/ethereum/assets/0xC139190F447e929f090Edeb554D95AbB8b18aC1C/logo.png new file mode 100644 index 0000000000000..3e747e34d96c4 Binary files /dev/null and b/blockchains/ethereum/assets/0xC139190F447e929f090Edeb554D95AbB8b18aC1C/logo.png differ diff --git a/blockchains/ethereum/assets/0xC146B7CdBaff065090077151d391f4c96Aa09e0C/info.json b/blockchains/ethereum/assets/0xC146B7CdBaff065090077151d391f4c96Aa09e0C/info.json index 89d6fe61cff51..54ea974437dd2 100644 --- a/blockchains/ethereum/assets/0xC146B7CdBaff065090077151d391f4c96Aa09e0C/info.json +++ b/blockchains/ethereum/assets/0xC146B7CdBaff065090077151d391f4c96Aa09e0C/info.json @@ -10,8 +10,8 @@ "id": "0xC146B7CdBaff065090077151d391f4c96Aa09e0C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MulChainCapital" + "name": "x", + "url": "https://x.com/MulChainCapital" }, { "name": "github", @@ -41,4 +41,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json b/blockchains/ethereum/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json index 8cb71b20ba08a..ab08a8cd628a4 100644 --- a/blockchains/ethereum/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json +++ b/blockchains/ethereum/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json @@ -18,8 +18,8 @@ "url": "https://coingecko.com/en/coins/everrise" }, { - "name": "twitter", - "url": "https://twitter.com/everrise" + "name": "x", + "url": "https://x.com/everrise" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xC18360217D8F7Ab5e7c516566761Ea12Ce7F9D72/info.json b/blockchains/ethereum/assets/0xC18360217D8F7Ab5e7c516566761Ea12Ce7F9D72/info.json index 72948ea6f7f94..924b51579633d 100644 --- a/blockchains/ethereum/assets/0xC18360217D8F7Ab5e7c516566761Ea12Ce7F9D72/info.json +++ b/blockchains/ethereum/assets/0xC18360217D8F7Ab5e7c516566761Ea12Ce7F9D72/info.json @@ -10,8 +10,8 @@ "id": "0xC18360217D8F7Ab5e7c516566761Ea12Ce7F9D72", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ensdomains" + "name": "x", + "url": "https://x.com/ensdomains" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0xC18c07a18198A6340cf4d94855fE5eb6DD33b46E/info.json b/blockchains/ethereum/assets/0xC18c07a18198A6340cf4d94855fE5eb6DD33b46E/info.json index 5bbd26740cf3c..6ba8284cc487e 100644 --- a/blockchains/ethereum/assets/0xC18c07a18198A6340cf4d94855fE5eb6DD33b46E/info.json +++ b/blockchains/ethereum/assets/0xC18c07a18198A6340cf4d94855fE5eb6DD33b46E/info.json @@ -10,8 +10,8 @@ "id": "0xC18c07a18198A6340cf4d94855fE5eb6DD33b46E", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Qlindoio" + "name": "x", + "url": "https://x.com/Qlindoio" }, { "name": "telegram", @@ -30,4 +30,4 @@ "defi", "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC18c07a18198A6340cf4d94855fE5eb6DD33b46E/logo.png b/blockchains/ethereum/assets/0xC18c07a18198A6340cf4d94855fE5eb6DD33b46E/logo.png index f04a7ed2bc073..b4ea83b05d468 100644 Binary files a/blockchains/ethereum/assets/0xC18c07a18198A6340cf4d94855fE5eb6DD33b46E/logo.png and b/blockchains/ethereum/assets/0xC18c07a18198A6340cf4d94855fE5eb6DD33b46E/logo.png differ diff --git a/blockchains/ethereum/assets/0xC210B2cB65ed3484892167F5e05F7ab496Ab0598/info.json b/blockchains/ethereum/assets/0xC210B2cB65ed3484892167F5e05F7ab496Ab0598/info.json new file mode 100644 index 0000000000000..a3e197f9a950f --- /dev/null +++ b/blockchains/ethereum/assets/0xC210B2cB65ed3484892167F5e05F7ab496Ab0598/info.json @@ -0,0 +1,57 @@ +{ + "name": "Bridged LUKSO (Hyperlane)", + "symbol": "LYX", + "type": "ERC20", + "decimals": 18, + "description": "LUKSO is the blockchain for the new digital lifestyle.", + "website": "https://lukso.network", + "explorer": "https://etherscan.io/token/0xC210B2cB65ed3484892167F5e05F7ab496Ab0598", + "status": "active", + "id": "0xC210B2cB65ed3484892167F5e05F7ab496Ab0598", + "links": [ + { + "name": "x", + "url": "https://x.com/lukso_io" + }, + { + "name": "github", + "url": "https://github.com/lukso-network" + }, + { + "name": "docs", + "url": "https://docs.lukso.tech/" + }, + { + "name": "whitepaper", + "url": "https://cdn.prod.website-files.com/672bdc274def2fecc6bbcf43/672bdc274def2fecc6bbd168_LUSKO-Whitepaper.pdf" + }, + { + "name": "telegram", + "url": "https://t.me/lukso" + }, + { + "name": "discord", + "url": "https://discord.com/invite/lukso" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/LUKSO" + }, + { + "name": "blog", + "url": "https://medium.com/lukso" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/lukso-token" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lukso-token" + } + ], + "tags": [ + "nft", + "defi" + ] +} diff --git a/blockchains/ethereum/assets/0xC210B2cB65ed3484892167F5e05F7ab496Ab0598/logo.png b/blockchains/ethereum/assets/0xC210B2cB65ed3484892167F5e05F7ab496Ab0598/logo.png new file mode 100644 index 0000000000000..c7691a2588886 Binary files /dev/null and b/blockchains/ethereum/assets/0xC210B2cB65ed3484892167F5e05F7ab496Ab0598/logo.png differ diff --git a/blockchains/ethereum/assets/0xC3dDb6Dab725afc0c35CCaDecF1FbdDfc1888888/info.json b/blockchains/ethereum/assets/0xC3dDb6Dab725afc0c35CCaDecF1FbdDfc1888888/info.json new file mode 100644 index 0000000000000..9e530346ee572 --- /dev/null +++ b/blockchains/ethereum/assets/0xC3dDb6Dab725afc0c35CCaDecF1FbdDfc1888888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDT", + "type": "ERC20", + "symbol": "FAKE USDT", + "decimals": 2, + "description": "This token is malicious do not interact", + "website": "https://etherscan.io/token/0xC3dDb6Dab725afc0c35CCaDecF1FbdDfc1888888", + "explorer": "https://etherscan.io/token/0xC3dDb6Dab725afc0c35CCaDecF1FbdDfc1888888", + "status": "spam", + "id": "0xC3dDb6Dab725afc0c35CCaDecF1FbdDfc1888888" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC40AF1E4fEcFA05Ce6BAb79DcD8B373d2E436c4E/info.json b/blockchains/ethereum/assets/0xC40AF1E4fEcFA05Ce6BAb79DcD8B373d2E436c4E/info.json index 3366bb921796f..7f3179494a87e 100644 --- a/blockchains/ethereum/assets/0xC40AF1E4fEcFA05Ce6BAb79DcD8B373d2E436c4E/info.json +++ b/blockchains/ethereum/assets/0xC40AF1E4fEcFA05Ce6BAb79DcD8B373d2E436c4E/info.json @@ -1,11 +1,44 @@ { "name": "Hokkaidu Inu", - "website": "https://hokk.finance/", - "description": "Leveraging community to build an inclusive financial ecosystem. We are Meme Utility", + "website": "https://hokkaiduinu.com/", + "description": "Hokkaidu Inu memecoin revival. Emerging from the abyss, forged by the community.", "explorer": "https://etherscan.io/token/0xC40AF1E4fEcFA05Ce6BAb79DcD8B373d2E436c4E", "type": "ERC20", "symbol": "HOKK", "decimals": 9, - "status": "abandoned", - "id": "0xC40AF1E4fEcFA05Ce6BAb79DcD8B373d2E436c4E" + "status": "active", + "id": "0xC40AF1E4fEcFA05Ce6BAb79DcD8B373d2E436c4E", + "tags": [ + "memes" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/HokkaInuEth" + }, + { + "name": "telegram", + "url": "https://t.me/HokkaiduInuOfficial" + }, + { + "name": "whitepaper", + "url": "https://hokkaidoinu.biz/HOKK_whitepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hokkaidu-inu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hokkaidu-inu/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/HokkaiduInutoken/" + }, + { + "name": "discord", + "url": "https://discord.com/x4G55weEME" + } + ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC40AF1E4fEcFA05Ce6BAb79DcD8B373d2E436c4E/logo.png b/blockchains/ethereum/assets/0xC40AF1E4fEcFA05Ce6BAb79DcD8B373d2E436c4E/logo.png new file mode 100644 index 0000000000000..c19ac5ed8a740 Binary files /dev/null and b/blockchains/ethereum/assets/0xC40AF1E4fEcFA05Ce6BAb79DcD8B373d2E436c4E/logo.png differ diff --git a/blockchains/ethereum/assets/0xC4441c2BE5d8fA8126822B9929CA0b81Ea0DE38E/info.json b/blockchains/ethereum/assets/0xC4441c2BE5d8fA8126822B9929CA0b81Ea0DE38E/info.json new file mode 100644 index 0000000000000..a449e2c97d5b1 --- /dev/null +++ b/blockchains/ethereum/assets/0xC4441c2BE5d8fA8126822B9929CA0b81Ea0DE38E/info.json @@ -0,0 +1,25 @@ +{ + "name": "USUAL", + "type": "ERC20", + "symbol": "USUAL", + "decimals": 18, + "description": "$USUAL is the governance token powering the Usual protocol. It gives users ownership and governance over the infrastructure and treasury. Uniquely designed with an intrinsic value tied directly to the protocol's revenue model, $USUAL drives the adoption and use of USD0, aligning incentives for contributors and fueling protocol growth.", + "website": "https://usual.money/", + "explorer": "https://etherscan.io/token/0xC4441c2BE5d8fA8126822B9929CA0b81Ea0DE38E", + "id": "0xC4441c2BE5d8fA8126822B9929CA0b81Ea0DE38E", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/usualmoney" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usual/" + } + ], + "tags": [ + "staking" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC4441c2BE5d8fA8126822B9929CA0b81Ea0DE38E/logo.png b/blockchains/ethereum/assets/0xC4441c2BE5d8fA8126822B9929CA0b81Ea0DE38E/logo.png new file mode 100644 index 0000000000000..7a6b0612eeb82 Binary files /dev/null and b/blockchains/ethereum/assets/0xC4441c2BE5d8fA8126822B9929CA0b81Ea0DE38E/logo.png differ diff --git a/blockchains/ethereum/assets/0xC46e7eF70d7Cf8C17863a6B0b9be2aF6a4C41aBe/info.json b/blockchains/ethereum/assets/0xC46e7eF70d7Cf8C17863a6B0b9be2aF6a4C41aBe/info.json new file mode 100644 index 0000000000000..97b1c0bd73d9c --- /dev/null +++ b/blockchains/ethereum/assets/0xC46e7eF70d7Cf8C17863a6B0b9be2aF6a4C41aBe/info.json @@ -0,0 +1,28 @@ +{ + "name": "Citigroup (Ondo Tokenized)", + "type": "ERC20", + "symbol": "Con", + "decimals": 18, + "description": "Con is the Ondo Tokenized version of Citigroup, giving tokenholders economic exposure similar to holding C and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xC46e7eF70d7Cf8C17863a6B0b9be2aF6a4C41aBe", + "status": "active", + "id": "0xC46e7eF70d7Cf8C17863a6B0b9be2aF6a4C41aBe", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/citigroup-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/citigroup-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC46e7eF70d7Cf8C17863a6B0b9be2aF6a4C41aBe/logo.png b/blockchains/ethereum/assets/0xC46e7eF70d7Cf8C17863a6B0b9be2aF6a4C41aBe/logo.png new file mode 100644 index 0000000000000..2cb3905797b56 Binary files /dev/null and b/blockchains/ethereum/assets/0xC46e7eF70d7Cf8C17863a6B0b9be2aF6a4C41aBe/logo.png differ diff --git a/blockchains/ethereum/assets/0xC4C2614E694cF534D407Ee49F8E44D125E4681c4/info.json b/blockchains/ethereum/assets/0xC4C2614E694cF534D407Ee49F8E44D125E4681c4/info.json index d0c7b9b6551ea..8207416c862b7 100644 --- a/blockchains/ethereum/assets/0xC4C2614E694cF534D407Ee49F8E44D125E4681c4/info.json +++ b/blockchains/ethereum/assets/0xC4C2614E694cF534D407Ee49F8E44D125E4681c4/info.json @@ -1,22 +1,44 @@ { "name": "Chain Games", - "website": "https://chaingames.io", - "description": "Chain Games is a blockchain integrated gaming platform that incorporates non-custodial decentralized smart contract based wagering on games of skill.", - "explorer": "https://etherscan.io/token/0xC4C2614E694cF534D407Ee49F8E44D125E4681c4", - "research": "https://chaingames.io", "type": "ERC20", "symbol": "CHAIN", "decimals": 18, + "website": "https://chaingames.io/", + "description": "Chain Games is a blockchain-integrated Web3 gaming network that allows for decentralized game of skills contests with real crypto payouts.", + "explorer": "https://etherscan.io/token/0xc4c2614e694cf534d407ee49f8e44d125e4681c4", "status": "active", "id": "0xC4C2614E694cF534D407Ee49F8E44D125E4681c4", "links": [ + { + "name": "x", + "url": "https://x.com/realchaingames" + }, + { + "name": "telegram", + "url": "https://t.me/chaingames" + }, { "name": "github", "url": "https://github.com/Chain-Games" }, { - "name": "whitepaper", - "url": "https://chaingames.io/wp-content/uploads/2020/08/Chain_Games-White-Paper-Aug-2020v4.pdf" + "name": "discord", + "url": "https://discord.com/invite/wAyMde8" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/chaingames/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC6HPAdSdpzTIn4DGryr315Q" + }, + { + "name": "facebook", + "url": "https://facebook.com/realchaingames/" } + ], + "tags": [ + "gamefi" ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC4C2614E694cF534D407Ee49F8E44D125E4681c4/logo.png b/blockchains/ethereum/assets/0xC4C2614E694cF534D407Ee49F8E44D125E4681c4/logo.png index b5a17306b591b..2d4eebd8e09c7 100644 Binary files a/blockchains/ethereum/assets/0xC4C2614E694cF534D407Ee49F8E44D125E4681c4/logo.png and b/blockchains/ethereum/assets/0xC4C2614E694cF534D407Ee49F8E44D125E4681c4/logo.png differ diff --git a/blockchains/ethereum/assets/0xC4f6E93AEDdc11dc22268488465bAbcAF09399aC/info.json b/blockchains/ethereum/assets/0xC4f6E93AEDdc11dc22268488465bAbcAF09399aC/info.json index 4d4cb2d4e97e1..16524fae6308b 100644 --- a/blockchains/ethereum/assets/0xC4f6E93AEDdc11dc22268488465bAbcAF09399aC/info.json +++ b/blockchains/ethereum/assets/0xC4f6E93AEDdc11dc22268488465bAbcAF09399aC/info.json @@ -10,8 +10,8 @@ "id": "0xC4f6E93AEDdc11dc22268488465bAbcAF09399aC", "links": [ { - "name": "twitter", - "url": "https://twitter.com/hi_com_official" + "name": "x", + "url": "https://x.com/hi_com_official" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0xC52C326331E9Ce41F04484d3B5E5648158028804/info.json b/blockchains/ethereum/assets/0xC52C326331E9Ce41F04484d3B5E5648158028804/info.json index 7ff931315b8d7..2971dad5111f4 100644 --- a/blockchains/ethereum/assets/0xC52C326331E9Ce41F04484d3B5E5648158028804/info.json +++ b/blockchains/ethereum/assets/0xC52C326331E9Ce41F04484d3B5E5648158028804/info.json @@ -1,12 +1,33 @@ { - "name": "ZEN Exchange Token", + "name": "Unizen", "website": "https://unizen.io", - "description": "Utility token to at Unizen Smart Exchange Ecosystem.", + "description": "Seamless omni-chain enabled swapping with industry leading rates and access to millions of digital assets, from the moment of their inception.", "explorer": "https://etherscan.io/token/0xC52C326331E9Ce41F04484d3B5E5648158028804", - "research": "https://unizen.io/docs/unizen-v1-litepaper-2021-04-23-22-02.pdf", - "type": "ERC20", + "research": "https://docs.unizen.io", "symbol": "ZCX", + "type": "ERC20", "decimals": 18, "status": "active", - "id": "0xC52C326331E9Ce41F04484d3B5E5648158028804" + "tags": [ + "staking-native" + ], + "id": "0xC52C326331E9Ce41F04484d3B5E5648158028804", + "links": [ + { + "name": "github", + "url": "https://github.com/unizen-io/" + }, + { + "name": "x", + "url": "https://x.com/unizen_io" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/unizen/" + }, + { + "name": "whitepaper", + "url": "https://docs.unizen.io" + } + ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC52C326331E9Ce41F04484d3B5E5648158028804/logo.png b/blockchains/ethereum/assets/0xC52C326331E9Ce41F04484d3B5E5648158028804/logo.png index c7a1369fb2712..4077cfed07720 100755 Binary files a/blockchains/ethereum/assets/0xC52C326331E9Ce41F04484d3B5E5648158028804/logo.png and b/blockchains/ethereum/assets/0xC52C326331E9Ce41F04484d3B5E5648158028804/logo.png differ diff --git a/blockchains/ethereum/assets/0xC53D2e7321aB83B28aF2360559Aa303676a23f98/info.json b/blockchains/ethereum/assets/0xC53D2e7321aB83B28aF2360559Aa303676a23f98/info.json new file mode 100644 index 0000000000000..dd17878d4828f --- /dev/null +++ b/blockchains/ethereum/assets/0xC53D2e7321aB83B28aF2360559Aa303676a23f98/info.json @@ -0,0 +1,24 @@ +{ + "name": "Franklin US Large Cap Multifactor Index ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "FLQLon", + "decimals": 18, + "description": "FLQLon is the Ondo Tokenized version of the Franklin US Large Cap Multifactor Index ETF, giving tokenholders economic exposure similar to holding FLQL and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xC53D2e7321aB83B28aF2360559Aa303676a23f98", + "status": "active", + "id": "0xC53D2e7321aB83B28aF2360559Aa303676a23f98", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/franklin-us-large-cap-multifactor-index-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC53D2e7321aB83B28aF2360559Aa303676a23f98/logo.png b/blockchains/ethereum/assets/0xC53D2e7321aB83B28aF2360559Aa303676a23f98/logo.png new file mode 100644 index 0000000000000..34299b5ba23f3 Binary files /dev/null and b/blockchains/ethereum/assets/0xC53D2e7321aB83B28aF2360559Aa303676a23f98/logo.png differ diff --git a/blockchains/ethereum/assets/0xC626e0619aC79AFEa9281c8eB9b1a9f9D3Fab532/info.json b/blockchains/ethereum/assets/0xC626e0619aC79AFEa9281c8eB9b1a9f9D3Fab532/info.json index 45b02a23f4eb7..ff71fbb7a88bc 100644 --- a/blockchains/ethereum/assets/0xC626e0619aC79AFEa9281c8eB9b1a9f9D3Fab532/info.json +++ b/blockchains/ethereum/assets/0xC626e0619aC79AFEa9281c8eB9b1a9f9D3Fab532/info.json @@ -16,8 +16,8 @@ "url": "https://github.com/Freedom-Reserve" }, { - "name": "twitter", - "url": "https://twitter.com/@freedomreserve1" + "name": "x", + "url": "https://x.com/@freedomreserve1" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xC631bE100F6Cf9A7012C23De5a6ccb990EAFC133/info.json b/blockchains/ethereum/assets/0xC631bE100F6Cf9A7012C23De5a6ccb990EAFC133/info.json index 7c1f8858c05e1..2bb419fe903fe 100644 --- a/blockchains/ethereum/assets/0xC631bE100F6Cf9A7012C23De5a6ccb990EAFC133/info.json +++ b/blockchains/ethereum/assets/0xC631bE100F6Cf9A7012C23De5a6ccb990EAFC133/info.json @@ -10,8 +10,8 @@ "id": "0xC631bE100F6Cf9A7012C23De5a6ccb990EAFC133", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BananaTFA" + "name": "x", + "url": "https://x.com/BananaTFA" }, { "name": "coinmarketcap", @@ -33,4 +33,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC669928185DbCE49d2230CC9B0979BE6DC797957/info.json b/blockchains/ethereum/assets/0xC669928185DbCE49d2230CC9B0979BE6DC797957/info.json index 902df7aa24105..7d3ac78b4a9ed 100644 --- a/blockchains/ethereum/assets/0xC669928185DbCE49d2230CC9B0979BE6DC797957/info.json +++ b/blockchains/ethereum/assets/0xC669928185DbCE49d2230CC9B0979BE6DC797957/info.json @@ -10,8 +10,8 @@ "id": "0xC669928185DbCE49d2230CC9B0979BE6DC797957", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BitTorrent" + "name": "x", + "url": "https://x.com/BitTorrent" }, { "name": "github", @@ -35,5 +35,4 @@ "staking", "defi" ] -} - +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC66eA802717bFb9833400264Dd12c2bCeAa34a6d/info.json b/blockchains/ethereum/assets/0xC66eA802717bFb9833400264Dd12c2bCeAa34a6d/info.json index 9c238bd8b41ec..49b38c5b6e078 100644 --- a/blockchains/ethereum/assets/0xC66eA802717bFb9833400264Dd12c2bCeAa34a6d/info.json +++ b/blockchains/ethereum/assets/0xC66eA802717bFb9833400264Dd12c2bCeAa34a6d/info.json @@ -6,6 +6,6 @@ "website": "", "description": "-", "explorer": "https://etherscan.io/token/0xc66ea802717bfb9833400264dd12c2bceaa34a6d", - "status": "active", + "status": "abandoned", "id": "0xC66eA802717bFb9833400264Dd12c2bCeAa34a6d" -} \ No newline at end of file +} diff --git a/blockchains/ethereum/assets/0xC6bDb96E29c38DC43f014Eed44dE4106A6A8eB5f/info.json b/blockchains/ethereum/assets/0xC6bDb96E29c38DC43f014Eed44dE4106A6A8eB5f/info.json new file mode 100644 index 0000000000000..48db0bc4582f7 --- /dev/null +++ b/blockchains/ethereum/assets/0xC6bDb96E29c38DC43f014Eed44dE4106A6A8eB5f/info.json @@ -0,0 +1,17 @@ +{ + "name": "Inu Inu", + "type": "ERC20", + "symbol": "INUINU", + "decimals": 18, + "website": "https://inuinu.co/", + "description": "$INUINU is a zero-tax meme token that was stealth-launched with anti-bot protection. INU INU is a memecoin with lifestyle.", + "explorer": "https://etherscan.io/token/0xc6bdb96e29c38dc43f014eed44de4106a6a8eb5f", + "status": "active", + "id": "0xC6bDb96E29c38DC43f014Eed44dE4106A6A8eB5f", + "links": [ + { + "name": "x", + "url": "https://inuinu.net/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC6bDb96E29c38DC43f014Eed44dE4106A6A8eB5f/logo.png b/blockchains/ethereum/assets/0xC6bDb96E29c38DC43f014Eed44dE4106A6A8eB5f/logo.png new file mode 100644 index 0000000000000..b72c4e79b8fa6 Binary files /dev/null and b/blockchains/ethereum/assets/0xC6bDb96E29c38DC43f014Eed44dE4106A6A8eB5f/logo.png differ diff --git a/blockchains/ethereum/assets/0xC71B5F631354BE6853eFe9C3Ab6b9590F8302e81/info.json b/blockchains/ethereum/assets/0xC71B5F631354BE6853eFe9C3Ab6b9590F8302e81/info.json new file mode 100644 index 0000000000000..e8f7bb5f25f6f --- /dev/null +++ b/blockchains/ethereum/assets/0xC71B5F631354BE6853eFe9C3Ab6b9590F8302e81/info.json @@ -0,0 +1,29 @@ +{ + "name": "Polyhedra Network", + "type": "ERC20", + "symbol": "ZK", + "decimals": 18, + "description": "At Polyhedra Network, the team is committed to transforming the digital landscape by unlocking exponential improvements to computational power and cross-platform interoperability within the vast blockchain ecosystem and the intersecting domains of Web2 and Web3.", + "website": "https://www.polyhedra.network/", + "explorer": "https://etherscan.io/token/0xC71B5F631354BE6853eFe9C3Ab6b9590F8302e81", + "id": "0xC71B5F631354BE6853eFe9C3Ab6b9590F8302e81", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/PolyhedraZK" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/polyhedra-network/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/polyhedra-network" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC71B5F631354BE6853eFe9C3Ab6b9590F8302e81/logo.png b/blockchains/ethereum/assets/0xC71B5F631354BE6853eFe9C3Ab6b9590F8302e81/logo.png new file mode 100644 index 0000000000000..74c4503382b1e Binary files /dev/null and b/blockchains/ethereum/assets/0xC71B5F631354BE6853eFe9C3Ab6b9590F8302e81/logo.png differ diff --git a/blockchains/ethereum/assets/0xC727f87871ee12Bbcedd2973746D1Deb7529aaD6/info.json b/blockchains/ethereum/assets/0xC727f87871ee12Bbcedd2973746D1Deb7529aaD6/info.json index ee06de6f1235b..d9cdd827453a7 100644 --- a/blockchains/ethereum/assets/0xC727f87871ee12Bbcedd2973746D1Deb7529aaD6/info.json +++ b/blockchains/ethereum/assets/0xC727f87871ee12Bbcedd2973746D1Deb7529aaD6/info.json @@ -10,8 +10,8 @@ "id": "0xC727f87871ee12Bbcedd2973746D1Deb7529aaD6", "links": [ { - "name": "twitter", - "url": "https://twitter.com/akashnet_" + "name": "x", + "url": "https://x.com/akashnet_" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xC76FB75950536d98FA62ea968E1D6B45ffea2A55/info.json b/blockchains/ethereum/assets/0xC76FB75950536d98FA62ea968E1D6B45ffea2A55/info.json index 9aa59526044e6..e8c2d641ad027 100644 --- a/blockchains/ethereum/assets/0xC76FB75950536d98FA62ea968E1D6B45ffea2A55/info.json +++ b/blockchains/ethereum/assets/0xC76FB75950536d98FA62ea968E1D6B45ffea2A55/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/unitprotocol" }, { - "name": "twitter", - "url": "https://twitter.com/unitprotocol" + "name": "x", + "url": "https://x.com/unitprotocol" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xC7a2572fA8FDB0f7E81d6D3c4e3CCF78FB0DC374/info.json b/blockchains/ethereum/assets/0xC7a2572fA8FDB0f7E81d6D3c4e3CCF78FB0DC374/info.json index 424ca411a0d50..f270ef2e61553 100644 --- a/blockchains/ethereum/assets/0xC7a2572fA8FDB0f7E81d6D3c4e3CCF78FB0DC374/info.json +++ b/blockchains/ethereum/assets/0xC7a2572fA8FDB0f7E81d6D3c4e3CCF78FB0DC374/info.json @@ -10,8 +10,8 @@ "id": "0xC7a2572fA8FDB0f7E81d6D3c4e3CCF78FB0DC374", "links": [ { - "name": "twitter", - "url": "https://twitter.com/FinaleCommunity" + "name": "x", + "url": "https://x.com/FinaleCommunity" }, { "name": "telegram", @@ -22,4 +22,4 @@ "url": "https://coinmarketcap.com/currencies/bens-finale/" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC82E3dB60A52CF7529253b4eC688f631aad9e7c2/info.json b/blockchains/ethereum/assets/0xC82E3dB60A52CF7529253b4eC688f631aad9e7c2/info.json new file mode 100644 index 0000000000000..20c95fce00d2a --- /dev/null +++ b/blockchains/ethereum/assets/0xC82E3dB60A52CF7529253b4eC688f631aad9e7c2/info.json @@ -0,0 +1,21 @@ +{ + "name": "ARC", + "symbol": "ARC", + "website": "https://www.arc.ai/", + "description": "$ARC is your all in one solution for Web3 and AI.", + "explorer": "https://etherscan.io/token/0xc82e3db60a52cf7529253b4ec688f631aad9e7c2", + "type": "ERC20", + "decimals": 18, + "status": "active", + "id": "0xC82E3dB60A52CF7529253b4eC688f631aad9e7c2", + "links": [ + { + "name": "x", + "url": "https://x.com/ARCreactorAI" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/arc/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC82E3dB60A52CF7529253b4eC688f631aad9e7c2/logo.png b/blockchains/ethereum/assets/0xC82E3dB60A52CF7529253b4eC688f631aad9e7c2/logo.png new file mode 100644 index 0000000000000..2db3b04370015 Binary files /dev/null and b/blockchains/ethereum/assets/0xC82E3dB60A52CF7529253b4eC688f631aad9e7c2/logo.png differ diff --git a/blockchains/ethereum/assets/0xC8CeED65E236F7d6fB378b8715f9e6912e486A54/info.json b/blockchains/ethereum/assets/0xC8CeED65E236F7d6fB378b8715f9e6912e486A54/info.json new file mode 100644 index 0000000000000..10bd5fd7cf415 --- /dev/null +++ b/blockchains/ethereum/assets/0xC8CeED65E236F7d6fB378b8715f9e6912e486A54/info.json @@ -0,0 +1,17 @@ +{ + "name": "WrappedXFI", + "type": "ERC20", + "symbol": "WXFI", + "decimals": 18, + "website": "https://crossfi.org", + "description": "The CrossFi App is a groundbreaking innovation in digital banking, revolutionizing the way traditional finance integrates with the cryptocurrency world.", + "explorer": "hhttps://etherscan.io/token/0xc8ceed65e236f7d6fb378b8715f9e6912e486a54", + "status": "active", + "id": "0xC8CeED65E236F7d6fB378b8715f9e6912e486A54", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crossfinance/" + } + ] +} diff --git a/blockchains/ethereum/assets/0xC8CeED65E236F7d6fB378b8715f9e6912e486A54/logo.png b/blockchains/ethereum/assets/0xC8CeED65E236F7d6fB378b8715f9e6912e486A54/logo.png new file mode 100644 index 0000000000000..f1805f8273c16 Binary files /dev/null and b/blockchains/ethereum/assets/0xC8CeED65E236F7d6fB378b8715f9e6912e486A54/logo.png differ diff --git a/blockchains/ethereum/assets/0xC8F74F8A2D6f8902F896085CdB84de9DCd9574Fa/info.json b/blockchains/ethereum/assets/0xC8F74F8A2D6f8902F896085CdB84de9DCd9574Fa/info.json new file mode 100644 index 0000000000000..77a3e96e16637 --- /dev/null +++ b/blockchains/ethereum/assets/0xC8F74F8A2D6f8902F896085CdB84de9DCd9574Fa/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tedra USD 2.0", + "type": "ERC20", + "symbol": "FAKE USD.T", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://etherscan.io/token/0xC8F74F8A2D6f8902F896085CdB84de9DCd9574Fa", + "explorer": "https://etherscan.io/token/0xC8F74F8A2D6f8902F896085CdB84de9DCd9574Fa", + "status": "spam", + "id": "0xC8F74F8A2D6f8902F896085CdB84de9DCd9574Fa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC8d674114bac90148d11D3C1d33C61835a0F9DCD/info.json b/blockchains/ethereum/assets/0xC8d674114bac90148d11D3C1d33C61835a0F9DCD/info.json index 6b592b6c193a9..d5b84e1ff7f56 100644 --- a/blockchains/ethereum/assets/0xC8d674114bac90148d11D3C1d33C61835a0F9DCD/info.json +++ b/blockchains/ethereum/assets/0xC8d674114bac90148d11D3C1d33C61835a0F9DCD/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/MirrorProtocol" + "name": "x", + "url": "https://x.com/MirrorProtocol" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xC9bCa88B04581699fAb5aa276CCafF7Df957cbbf/info.json b/blockchains/ethereum/assets/0xC9bCa88B04581699fAb5aa276CCafF7Df957cbbf/info.json new file mode 100644 index 0000000000000..a36ee8af86022 --- /dev/null +++ b/blockchains/ethereum/assets/0xC9bCa88B04581699fAb5aa276CCafF7Df957cbbf/info.json @@ -0,0 +1,17 @@ +{ + "name": "Ethervista", + "website": "https://ethervista.app/", + "description": "Ethervista is a value-compounding deflationary token, the native currency for the EthervistaDEX", + "explorer": "https://etherscan.io/token/0xc9bca88b04581699fab5aa276ccaff7df957cbbf", + "type": "ERC20", + "symbol": "VISTA", + "decimals": 18, + "status": "active", + "id": "0xC9bCa88B04581699fAb5aa276CCafF7Df957cbbf", + "links": [ + { + "name": "x", + "url": "https://x.com/ethervista" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC9bCa88B04581699fAb5aa276CCafF7Df957cbbf/logo.png b/blockchains/ethereum/assets/0xC9bCa88B04581699fAb5aa276CCafF7Df957cbbf/logo.png new file mode 100644 index 0000000000000..57553ee81c6c8 Binary files /dev/null and b/blockchains/ethereum/assets/0xC9bCa88B04581699fAb5aa276CCafF7Df957cbbf/logo.png differ diff --git a/blockchains/ethereum/assets/0xCBdE0453d4E7D748077c1b0Ac2216C011DD2f406/info.json b/blockchains/ethereum/assets/0xCBdE0453d4E7D748077c1b0Ac2216C011DD2f406/info.json new file mode 100644 index 0000000000000..bb688edaf1809 --- /dev/null +++ b/blockchains/ethereum/assets/0xCBdE0453d4E7D748077c1b0Ac2216C011DD2f406/info.json @@ -0,0 +1,14 @@ +{ + "name": "First City in Mars", + "type": "ERC20", + "symbol": "TERMINUS", + "decimals": 9, + "website": "https://terminus.meme/", + "description": "TeRminUs The FirSt CIty On MaRS", + "explorer": "https://etherscan.io/token/0xCBdE0453d4E7D748077c1b0Ac2216C011DD2f406", + "status": "active", + "id": "0xCBdE0453d4E7D748077c1b0Ac2216C011DD2f406", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCBdE0453d4E7D748077c1b0Ac2216C011DD2f406/logo.png b/blockchains/ethereum/assets/0xCBdE0453d4E7D748077c1b0Ac2216C011DD2f406/logo.png new file mode 100644 index 0000000000000..bd300b65d1543 Binary files /dev/null and b/blockchains/ethereum/assets/0xCBdE0453d4E7D748077c1b0Ac2216C011DD2f406/logo.png differ diff --git a/blockchains/ethereum/assets/0xCE3f08e664693ca792caCE4af1364D5e220827B2/info.json b/blockchains/ethereum/assets/0xCE3f08e664693ca792caCE4af1364D5e220827B2/info.json index f9c146eddfa7e..1eb461fb47f1f 100644 --- a/blockchains/ethereum/assets/0xCE3f08e664693ca792caCE4af1364D5e220827B2/info.json +++ b/blockchains/ethereum/assets/0xCE3f08e664693ca792caCE4af1364D5e220827B2/info.json @@ -6,7 +6,7 @@ "type": "ERC20", "symbol": "SAITAMA", "decimals": 9, - "status": "active", + "status": "abandoned", "id": "0xCE3f08e664693ca792caCE4af1364D5e220827B2", "tags": [ "memes" @@ -17,8 +17,8 @@ "url": "https://saitamatoken.com/SAITAMA_INU_WHITEPAPER_V1.pdf" }, { - "name": "twitter", - "url": "https://twitter.com/WeAreSaitama" + "name": "x", + "url": "https://x.com/WeAreSaitama" }, { "name": "telegram", @@ -41,4 +41,4 @@ "url": "https://coingecko.com/en/coins/saitama-inu/" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCE3f08e664693ca792caCE4af1364D5e220827B2/logo.png b/blockchains/ethereum/assets/0xCE3f08e664693ca792caCE4af1364D5e220827B2/logo.png deleted file mode 100644 index c9674e2f10734..0000000000000 Binary files a/blockchains/ethereum/assets/0xCE3f08e664693ca792caCE4af1364D5e220827B2/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0xCEBA2a8F6Ec221AEB5f3a7bcd15Cbc7e6a387bfb/info.json b/blockchains/ethereum/assets/0xCEBA2a8F6Ec221AEB5f3a7bcd15Cbc7e6a387bfb/info.json index 31633c3079c4a..dca2f72f9e6c8 100644 --- a/blockchains/ethereum/assets/0xCEBA2a8F6Ec221AEB5f3a7bcd15Cbc7e6a387bfb/info.json +++ b/blockchains/ethereum/assets/0xCEBA2a8F6Ec221AEB5f3a7bcd15Cbc7e6a387bfb/info.json @@ -10,8 +10,8 @@ "id": "0xCEBA2a8F6Ec221AEB5f3a7bcd15Cbc7e6a387bfb", "links": [ { - "name": "twitter", - "url": "https://twitter.com/peterpan_erc20" + "name": "x", + "url": "https://x.com/peterpan_erc20" }, { "name": "telegram", @@ -25,4 +25,4 @@ "tags": [ "memes" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCF078DA6e85389de507ceeDE0E3d217e457B9d49/info.json b/blockchains/ethereum/assets/0xCF078DA6e85389de507ceeDE0E3d217e457B9d49/info.json new file mode 100644 index 0000000000000..94eff8eb9f49d --- /dev/null +++ b/blockchains/ethereum/assets/0xCF078DA6e85389de507ceeDE0E3d217e457B9d49/info.json @@ -0,0 +1,21 @@ +{ + "name": "SkaiToken", + "symbol": "SKAI", + "type": "ERC20", + "decimals": 18, + "description": "Witness the transition from basic chatbots to advanced virtual assistants and tailor-made AI solutions. As the tech arena races forward, Skillful AI emerges as the gateway to harnessing the benefits of this revolution.", + "website": "https://www.skillfulai.io/", + "explorer": "https://etherscan.io/token/0xCF078DA6e85389de507ceeDE0E3d217e457B9d49", + "status": "active", + "id": "0xCF078DA6e85389de507ceeDE0E3d217e457B9d49", + "links": [ + { + "name": "x", + "url": "https://x.com/SkillfulAI" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/skillful-ai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCF078DA6e85389de507ceeDE0E3d217e457B9d49/logo.png b/blockchains/ethereum/assets/0xCF078DA6e85389de507ceeDE0E3d217e457B9d49/logo.png new file mode 100644 index 0000000000000..fd681a68ad36d Binary files /dev/null and b/blockchains/ethereum/assets/0xCF078DA6e85389de507ceeDE0E3d217e457B9d49/logo.png differ diff --git a/blockchains/ethereum/assets/0xCF67815ccE72E682Eb4429eCa46843bed81Ca739/info.json b/blockchains/ethereum/assets/0xCF67815ccE72E682Eb4429eCa46843bed81Ca739/info.json new file mode 100644 index 0000000000000..2602517aa7289 --- /dev/null +++ b/blockchains/ethereum/assets/0xCF67815ccE72E682Eb4429eCa46843bed81Ca739/info.json @@ -0,0 +1,21 @@ +{ + "name": "GAM3S.GG", + "type": "ERC20", + "symbol": "G3", + "decimals": 18, + "website": "https://gam3s.gg/", + "description": "GAM3S.GG is a web3 gaming superapp that curates and creates content to spotlight the top games and showcases reviews, guides, news, quests, annual awards, and more. Welcome to the home of web3 gaming.", + "explorer": "https://etherscan.io/token/0xcf67815cce72e682eb4429eca46843bed81ca739", + "status": "active", + "id": "0xCF67815ccE72E682Eb4429eCa46843bed81Ca739", + "links": [ + { + "name": "x", + "url": "https://x.com/gam3sgg_" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gam3s-gg/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCF67815ccE72E682Eb4429eCa46843bed81Ca739/logo.png b/blockchains/ethereum/assets/0xCF67815ccE72E682Eb4429eCa46843bed81Ca739/logo.png new file mode 100644 index 0000000000000..9255cb77787e3 Binary files /dev/null and b/blockchains/ethereum/assets/0xCF67815ccE72E682Eb4429eCa46843bed81Ca739/logo.png differ diff --git a/blockchains/ethereum/assets/0xCF67CEd76E8356366291246A9222169F4dBdBe64/info.json b/blockchains/ethereum/assets/0xCF67CEd76E8356366291246A9222169F4dBdBe64/info.json index 20bf5d8d349fa..02b95421547d5 100644 --- a/blockchains/ethereum/assets/0xCF67CEd76E8356366291246A9222169F4dBdBe64/info.json +++ b/blockchains/ethereum/assets/0xCF67CEd76E8356366291246A9222169F4dBdBe64/info.json @@ -10,8 +10,8 @@ "id": "0xCF67CEd76E8356366291246A9222169F4dBdBe64", "links": [ { - "name": "twitter", - "url": "https://twitter.com/DiceFinance" + "name": "x", + "url": "https://x.com/DiceFinance" }, { "name": "whitepaper", diff --git a/blockchains/ethereum/assets/0xCF8335727B776d190f9D15a54E6B9B9348439eEE/info.json b/blockchains/ethereum/assets/0xCF8335727B776d190f9D15a54E6B9B9348439eEE/info.json index b5c2780787149..ef4e73c397127 100644 --- a/blockchains/ethereum/assets/0xCF8335727B776d190f9D15a54E6B9B9348439eEE/info.json +++ b/blockchains/ethereum/assets/0xCF8335727B776d190f9D15a54E6B9B9348439eEE/info.json @@ -30,8 +30,8 @@ "url": "https://bitcointalk.org/index.php?topic=5351640" }, { - "name": "twitter", - "url": "https://twitter.com/TokenWhackd" + "name": "x", + "url": "https://x.com/TokenWhackd" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCF91b70017eABDE82c9671E30e5502D312eA6eb2/info.json b/blockchains/ethereum/assets/0xCF91b70017eABDE82c9671E30e5502D312eA6eb2/info.json new file mode 100644 index 0000000000000..e3e7ed4ad76d4 --- /dev/null +++ b/blockchains/ethereum/assets/0xCF91b70017eABDE82c9671E30e5502D312eA6eb2/info.json @@ -0,0 +1,17 @@ +{ + "name": "I love puppies", + "type": "ERC20", + "symbol": "PUPPIES", + "decimals": 9, + "website": "https://www.ilovepuppies.cc/", + "description": "In a world where dogs once ruled,a new era dawns- the Age of PUPPIES.Endorsed by Elon,Let the dogs rest. The $PUPPIES are taking over.", + "explorer": "https://etherscan.io/token/0xcf91b70017eabde82c9671e30e5502d312ea6eb2", + "status": "active", + "id": "0xCF91b70017eABDE82c9671E30e5502D312eA6eb2", + "links": [ + { + "name": "x", + "url": "https://x.com/puppies_cc" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCF91b70017eABDE82c9671E30e5502D312eA6eb2/logo.png b/blockchains/ethereum/assets/0xCF91b70017eABDE82c9671E30e5502D312eA6eb2/logo.png new file mode 100644 index 0000000000000..71c27883b981f Binary files /dev/null and b/blockchains/ethereum/assets/0xCF91b70017eABDE82c9671E30e5502D312eA6eb2/logo.png differ diff --git a/blockchains/ethereum/assets/0xCa14007Eff0dB1f8135f4C25B34De49AB0d42766/info.json b/blockchains/ethereum/assets/0xCa14007Eff0dB1f8135f4C25B34De49AB0d42766/info.json new file mode 100644 index 0000000000000..6370a73151b4b --- /dev/null +++ b/blockchains/ethereum/assets/0xCa14007Eff0dB1f8135f4C25B34De49AB0d42766/info.json @@ -0,0 +1,21 @@ +{ + "name": "Starknet", + "type": "ERC20", + "symbol": "STRK", + "decimals": 18, + "website": "https://starknet.io/", + "description": "StarkNet is a permissionless decentralized Validity-Rollup (also known as a “ZK-Rollup”). It operates as an L2 network over Ethereum, enabling any dApp to its computation – without compromising Ethereum’s composability and security, thanks to StarkNet’s cryptographic proof system – STARK.", + "explorer": "https://etherscan.io/token/0xCa14007Eff0dB1f8135f4C25B34De49AB0d42766", + "status": "active", + "id": "0xCa14007Eff0dB1f8135f4C25B34De49AB0d42766", + "links": [ + { + "name": "x", + "url": "https://x.com/StarkWareLtd" + }, + { + "name": "github", + "url": "https://github.com/orgs/starkware-libs/repositories" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCa14007Eff0dB1f8135f4C25B34De49AB0d42766/logo.png b/blockchains/ethereum/assets/0xCa14007Eff0dB1f8135f4C25B34De49AB0d42766/logo.png new file mode 100644 index 0000000000000..9817ae9b94349 Binary files /dev/null and b/blockchains/ethereum/assets/0xCa14007Eff0dB1f8135f4C25B34De49AB0d42766/logo.png differ diff --git a/blockchains/ethereum/assets/0xCa468554e5C0423Ee858fe3942c9568C51FcAa79/info.json b/blockchains/ethereum/assets/0xCa468554e5C0423Ee858fe3942c9568C51FcAa79/info.json new file mode 100644 index 0000000000000..b6542395211ad --- /dev/null +++ b/blockchains/ethereum/assets/0xCa468554e5C0423Ee858fe3942c9568C51FcAa79/info.json @@ -0,0 +1,24 @@ +{ + "name": "Hims & Hers Health (Ondo)", + "website": "https://ondo.finance/", + "description": "HIMSon is the Ondo Tokenized version of Hims & Hers Health, giving tokenholders economic exposure similar to holding HIMS and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xCa468554e5C0423Ee858fe3942c9568C51FcAa79", + "type": "ERC20", + "symbol": "HIMSon", + "decimals": 18, + "status": "active", + "id": "0xCa468554e5C0423Ee858fe3942c9568C51FcAa79", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hims-hers-health-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCa468554e5C0423Ee858fe3942c9568C51FcAa79/logo.png b/blockchains/ethereum/assets/0xCa468554e5C0423Ee858fe3942c9568C51FcAa79/logo.png new file mode 100644 index 0000000000000..48d6c641cc061 Binary files /dev/null and b/blockchains/ethereum/assets/0xCa468554e5C0423Ee858fe3942c9568C51FcAa79/logo.png differ diff --git a/blockchains/ethereum/assets/0xCaC9AAfb2cf51645Ae1ab4Fb1F35F07d42437f80/info.json b/blockchains/ethereum/assets/0xCaC9AAfb2cf51645Ae1ab4Fb1F35F07d42437f80/info.json new file mode 100644 index 0000000000000..6180d6464b9b2 --- /dev/null +++ b/blockchains/ethereum/assets/0xCaC9AAfb2cf51645Ae1ab4Fb1F35F07d42437f80/info.json @@ -0,0 +1,28 @@ +{ + "name": "CrowdStrike (Ondo Tokenized)", + "type": "ERC20", + "symbol": "CRWDon", + "decimals": 18, + "description": "CRWDon is the Ondo Tokenized version of CrowdStrike, giving tokenholders economic exposure similar to holding CRWD and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xCaC9AAfb2cf51645Ae1ab4Fb1F35F07d42437f80", + "status": "active", + "id": "0xCaC9AAfb2cf51645Ae1ab4Fb1F35F07d42437f80", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/crowdstrike-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crowdstrike-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCaC9AAfb2cf51645Ae1ab4Fb1F35F07d42437f80/logo.png b/blockchains/ethereum/assets/0xCaC9AAfb2cf51645Ae1ab4Fb1F35F07d42437f80/logo.png new file mode 100644 index 0000000000000..29bfd0c5324dc Binary files /dev/null and b/blockchains/ethereum/assets/0xCaC9AAfb2cf51645Ae1ab4Fb1F35F07d42437f80/logo.png differ diff --git a/blockchains/ethereum/assets/0xCabD955322dfbf94C084929ac5E9Eca3fEB5556F/info.json b/blockchains/ethereum/assets/0xCabD955322dfbf94C084929ac5E9Eca3fEB5556F/info.json new file mode 100644 index 0000000000000..082d242b9630b --- /dev/null +++ b/blockchains/ethereum/assets/0xCabD955322dfbf94C084929ac5E9Eca3fEB5556F/info.json @@ -0,0 +1,24 @@ +{ + "name": "MicroStrategy (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "MSTRon is the Ondo Tokenized version of MicroStrategy, giving tokenholders economic exposure similar to holding MSTR and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xCabD955322dfbf94C084929ac5E9Eca3fEB5556F", + "type": "ERC20", + "symbol": "MSTRon", + "decimals": 18, + "status": "active", + "id": "0xCabD955322dfbf94C084929ac5E9Eca3fEB5556F", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/microstrategy-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCabD955322dfbf94C084929ac5E9Eca3fEB5556F/logo.png b/blockchains/ethereum/assets/0xCabD955322dfbf94C084929ac5E9Eca3fEB5556F/logo.png new file mode 100644 index 0000000000000..1e8b0d3cfb17b Binary files /dev/null and b/blockchains/ethereum/assets/0xCabD955322dfbf94C084929ac5E9Eca3fEB5556F/logo.png differ diff --git a/blockchains/ethereum/assets/0xCb5f72d37685C3D5aD0bB5F982443BC8FcdF570E/info.json b/blockchains/ethereum/assets/0xCb5f72d37685C3D5aD0bB5F982443BC8FcdF570E/info.json index 34d5c59a86a30..38b9d3b3861c0 100644 --- a/blockchains/ethereum/assets/0xCb5f72d37685C3D5aD0bB5F982443BC8FcdF570E/info.json +++ b/blockchains/ethereum/assets/0xCb5f72d37685C3D5aD0bB5F982443BC8FcdF570E/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/RootkitFinance" }, { - "name": "twitter", - "url": "https://twitter.com/rootkitfinance" + "name": "x", + "url": "https://x.com/rootkitfinance" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xCb76314C2540199f4B844D4ebbC7998C604880cA/info.json b/blockchains/ethereum/assets/0xCb76314C2540199f4B844D4ebbC7998C604880cA/info.json new file mode 100644 index 0000000000000..64965de40af1a --- /dev/null +++ b/blockchains/ethereum/assets/0xCb76314C2540199f4B844D4ebbC7998C604880cA/info.json @@ -0,0 +1,21 @@ +{ + "name": "Strawberry AI", + "symbol": "BERRY", + "type": "ERC20", + "decimals": 18, + "description": "Strawberry AI is an advanced AI designed specifically for web3, enabling users to query web3, crypto, and blockchain topics with smart agent integration for a unique interaction experience", + "website": "https://usestrawberry.ai/", + "explorer": "https://etherscan.io/token/0xCb76314C2540199f4B844D4ebbC7998C604880cA", + "status": "active", + "id": "0xCb76314C2540199f4B844D4ebbC7998C604880cA", + "links": [ + { + "name": "x", + "url": "https://x.com/StrawberryAI_5" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/strawberry-ai" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCb76314C2540199f4B844D4ebbC7998C604880cA/logo.png b/blockchains/ethereum/assets/0xCb76314C2540199f4B844D4ebbC7998C604880cA/logo.png new file mode 100644 index 0000000000000..8b61f659db434 Binary files /dev/null and b/blockchains/ethereum/assets/0xCb76314C2540199f4B844D4ebbC7998C604880cA/logo.png differ diff --git a/blockchains/ethereum/assets/0xCd2828fc4D8E8a0eDe91bB38CF64B1a81De65Bf6/info.json b/blockchains/ethereum/assets/0xCd2828fc4D8E8a0eDe91bB38CF64B1a81De65Bf6/info.json index cbb1366514bf1..768a4750b2942 100644 --- a/blockchains/ethereum/assets/0xCd2828fc4D8E8a0eDe91bB38CF64B1a81De65Bf6/info.json +++ b/blockchains/ethereum/assets/0xCd2828fc4D8E8a0eDe91bB38CF64B1a81De65Bf6/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/oddz_fi_announcements" }, { - "name": "twitter", - "url": "https://twitter.com/oddz_finance" + "name": "x", + "url": "https://x.com/oddz_finance" }, { "name": "facebook", diff --git a/blockchains/ethereum/assets/0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee/info.json b/blockchains/ethereum/assets/0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee/info.json new file mode 100644 index 0000000000000..eeb5ca19f6860 --- /dev/null +++ b/blockchains/ethereum/assets/0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee/info.json @@ -0,0 +1,17 @@ +{ + "name": "Wrapped eETH", + "type": "ERC20", + "symbol": "weETH", + "decimals": 18, + "website": "https://www.ether.fi/", + "description": "ether.fi's weETH is a decentralized, non-custodial liquid staking token that earns staking rewards while maintaining full liquidity and control over their assets. weETH offers users a flexible and secure way to contribute to network validation and participate in the DeFi space.", + "explorer": "https://etherscan.io/token/0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee", + "status": "active", + "id": "0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee", + "links": [ + { + "name": "x", + "url": "https://x.com/ether_fi" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee/logo.png b/blockchains/ethereum/assets/0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee/logo.png new file mode 100644 index 0000000000000..4cf7b8f153203 Binary files /dev/null and b/blockchains/ethereum/assets/0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee/logo.png differ diff --git a/blockchains/ethereum/assets/0xCdF7028ceAB81fA0C6971208e83fa7872994beE5/info.json b/blockchains/ethereum/assets/0xCdF7028ceAB81fA0C6971208e83fa7872994beE5/info.json index 95459c411900c..42efea8c26a30 100644 --- a/blockchains/ethereum/assets/0xCdF7028ceAB81fA0C6971208e83fa7872994beE5/info.json +++ b/blockchains/ethereum/assets/0xCdF7028ceAB81fA0C6971208e83fa7872994beE5/info.json @@ -1,5 +1,5 @@ { - "name": "Threshold Network Token", + "name": "Threshold", "type": "ERC20", "symbol": "T", "decimals": 18, diff --git a/blockchains/ethereum/assets/0xCfb72ED3647cC8E7FA52E4F121eCdAbEfC305e7f/info.json b/blockchains/ethereum/assets/0xCfb72ED3647cC8E7FA52E4F121eCdAbEfC305e7f/info.json index c68b35b232824..76e47c3ef0806 100644 --- a/blockchains/ethereum/assets/0xCfb72ED3647cC8E7FA52E4F121eCdAbEfC305e7f/info.json +++ b/blockchains/ethereum/assets/0xCfb72ED3647cC8E7FA52E4F121eCdAbEfC305e7f/info.json @@ -10,8 +10,8 @@ "id": "0xCfb72ED3647cC8E7FA52E4F121eCdAbEfC305e7f", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Flapp" + "name": "x", + "url": "https://x.com/Flapp" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD01ef7C0A5d8c432fc2d1a85c66cF2327362E5C6/info.json b/blockchains/ethereum/assets/0xD01ef7C0A5d8c432fc2d1a85c66cF2327362E5C6/info.json index 1ca1df8581ddd..0961e6278014f 100644 --- a/blockchains/ethereum/assets/0xD01ef7C0A5d8c432fc2d1a85c66cF2327362E5C6/info.json +++ b/blockchains/ethereum/assets/0xD01ef7C0A5d8c432fc2d1a85c66cF2327362E5C6/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Ankr-network/stkr-smartcontract" }, { - "name": "twitter", - "url": "https://twitter.com/Ankr" + "name": "x", + "url": "https://x.com/Ankr" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xD057B63f5E69CF1B929b356b579Cba08D7688048/info.json b/blockchains/ethereum/assets/0xD057B63f5E69CF1B929b356b579Cba08D7688048/info.json index 0c774f8642f88..16ed639647e9c 100644 --- a/blockchains/ethereum/assets/0xD057B63f5E69CF1B929b356b579Cba08D7688048/info.json +++ b/blockchains/ethereum/assets/0xD057B63f5E69CF1B929b356b579Cba08D7688048/info.json @@ -12,17 +12,45 @@ "defi" ], "links": [ + { + "name": "x", + "url": "https://x.com/CoWSwap" + }, { "name": "github", - "url": "https://github.com/gnosis/cowswap" + "url": "https://github.com/cowprotocol" }, { - "name": "twitter", - "url": "https://twitter.com/MEVprotection" + "name": "github", + "url": "https://github.com/cowprotocol/token" }, { "name": "blog", - "url": "https://cow.fi" + "url": "https://blog.cow.fi" + }, + { + "name": "docs", + "url": "https://docs.cow.fi" + }, + { + "name": "discord", + "url": "https://discord.com/invite/cowprotocol" + }, + { + "name": "forum", + "url": "https://forum.cow.fi" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cow-protocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cow-protocol" + }, + { + "name": "youtube", + "url": "https://youtube.com/@CoWSwap" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD057B63f5E69CF1B929b356b579Cba08D7688048/logo.png b/blockchains/ethereum/assets/0xD057B63f5E69CF1B929b356b579Cba08D7688048/logo.png index 1dd63e79b0669..b9ef84f3b7923 100644 Binary files a/blockchains/ethereum/assets/0xD057B63f5E69CF1B929b356b579Cba08D7688048/logo.png and b/blockchains/ethereum/assets/0xD057B63f5E69CF1B929b356b579Cba08D7688048/logo.png differ diff --git a/blockchains/ethereum/assets/0xD08DDb436e731f32455Fe302723eE0FD2E9E8706/info.json b/blockchains/ethereum/assets/0xD08DDb436e731f32455Fe302723eE0FD2E9E8706/info.json new file mode 100644 index 0000000000000..66b1cd6770f35 --- /dev/null +++ b/blockchains/ethereum/assets/0xD08DDb436e731f32455Fe302723eE0FD2E9E8706/info.json @@ -0,0 +1,24 @@ +{ + "name": "Petrobras (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "PBRon is the Ondo Tokenized version of Petrobras, giving tokenholders economic exposure similar to holding PBR and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xD08DDb436e731f32455Fe302723eE0FD2E9E8706", + "type": "ERC20", + "symbol": "PBRon", + "decimals": 18, + "status": "active", + "id": "0xD08DDb436e731f32455Fe302723eE0FD2E9E8706", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/petrobras-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD08DDb436e731f32455Fe302723eE0FD2E9E8706/logo.png b/blockchains/ethereum/assets/0xD08DDb436e731f32455Fe302723eE0FD2E9E8706/logo.png new file mode 100644 index 0000000000000..32afb4710680c Binary files /dev/null and b/blockchains/ethereum/assets/0xD08DDb436e731f32455Fe302723eE0FD2E9E8706/logo.png differ diff --git a/blockchains/ethereum/assets/0xD0D42005e7B3c0812b1268F0e5FAF97Ff2423651/info.json b/blockchains/ethereum/assets/0xD0D42005e7B3c0812b1268F0e5FAF97Ff2423651/info.json index 87bac2844eb72..954bc590ab348 100644 --- a/blockchains/ethereum/assets/0xD0D42005e7B3c0812b1268F0e5FAF97Ff2423651/info.json +++ b/blockchains/ethereum/assets/0xD0D42005e7B3c0812b1268F0e5FAF97Ff2423651/info.json @@ -10,8 +10,8 @@ "id": "0xD0D42005e7B3c0812b1268F0e5FAF97Ff2423651", "links": [ { - "name": "twitter", - "url": "https://twitter.com/KoromaruInu" + "name": "x", + "url": "https://x.com/KoromaruInu" }, { "name": "coinmarketcap", diff --git a/blockchains/ethereum/assets/0xD0a265a32D0211a7f61F11de014B854F7ce716F8/info.json b/blockchains/ethereum/assets/0xD0a265a32D0211a7f61F11de014B854F7ce716F8/info.json new file mode 100644 index 0000000000000..e507be6b2a4a9 --- /dev/null +++ b/blockchains/ethereum/assets/0xD0a265a32D0211a7f61F11de014B854F7ce716F8/info.json @@ -0,0 +1,24 @@ +{ + "name": "abrdn Physical Precious Metals Basket Shares ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "GLTRon", + "decimals": 18, + "description": "GLTRon is the Ondo Tokenized version of the abrdn Physical Precious Metals Basket Shares ETF, giving tokenholders economic exposure similar to holding GLTR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xD0a265a32D0211a7f61F11de014B854F7ce716F8", + "status": "active", + "id": "0xD0a265a32D0211a7f61F11de014B854F7ce716F8", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/abrdn-physical-precious-metals-basket-shares-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD0a265a32D0211a7f61F11de014B854F7ce716F8/logo.png b/blockchains/ethereum/assets/0xD0a265a32D0211a7f61F11de014B854F7ce716F8/logo.png new file mode 100644 index 0000000000000..a22bc2999905d Binary files /dev/null and b/blockchains/ethereum/assets/0xD0a265a32D0211a7f61F11de014B854F7ce716F8/logo.png differ diff --git a/blockchains/ethereum/assets/0xD101dCC414F310268c37eEb4cD376CcFA507F571/info.json b/blockchains/ethereum/assets/0xD101dCC414F310268c37eEb4cD376CcFA507F571/info.json new file mode 100644 index 0000000000000..e86d8b86f0ea7 --- /dev/null +++ b/blockchains/ethereum/assets/0xD101dCC414F310268c37eEb4cD376CcFA507F571/info.json @@ -0,0 +1,17 @@ +{ + "name": "ResearchCoin", + "type": "ERC20", + "symbol": "RSC", + "decimals": 18, + "website": "https://www.researchhub.com/", + "description": "The project is aimed towards creating a community of open science, including discussions about papers & funding. Scientists post papers in a Reddit-like manner and can receive funding from any source. Users are rewarded with RSC upon contributing.", + "explorer": "https://etherscan.io/token/0xd101dcc414f310268c37eeb4cd376ccfa507f571", + "status": "active", + "id": "0xD101dCC414F310268c37eEb4cD376CcFA507F571", + "links": [ + { + "name": "x", + "url": "https://x.com/ResearchHub" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD101dCC414F310268c37eEb4cD376CcFA507F571/logo.png b/blockchains/ethereum/assets/0xD101dCC414F310268c37eEb4cD376CcFA507F571/logo.png new file mode 100644 index 0000000000000..2af891329f841 Binary files /dev/null and b/blockchains/ethereum/assets/0xD101dCC414F310268c37eEb4cD376CcFA507F571/logo.png differ diff --git a/blockchains/ethereum/assets/0xD13cfD3133239a3c73a9E535A5c4DadEE36b395c/info.json b/blockchains/ethereum/assets/0xD13cfD3133239a3c73a9E535A5c4DadEE36b395c/info.json index 716ab1606a54d..a6553032526f4 100644 --- a/blockchains/ethereum/assets/0xD13cfD3133239a3c73a9E535A5c4DadEE36b395c/info.json +++ b/blockchains/ethereum/assets/0xD13cfD3133239a3c73a9E535A5c4DadEE36b395c/info.json @@ -10,8 +10,8 @@ "id": "0xD13cfD3133239a3c73a9E535A5c4DadEE36b395c", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VAIOT_LTD" + "name": "x", + "url": "https://x.com/VAIOT_LTD" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xD1670Cb7c01987a8DdD6976C4894463460Eeb8a2/info.json b/blockchains/ethereum/assets/0xD1670Cb7c01987a8DdD6976C4894463460Eeb8a2/info.json index 6e4e53ddb6434..6a097bb7d524a 100644 --- a/blockchains/ethereum/assets/0xD1670Cb7c01987a8DdD6976C4894463460Eeb8a2/info.json +++ b/blockchains/ethereum/assets/0xD1670Cb7c01987a8DdD6976C4894463460Eeb8a2/info.json @@ -10,8 +10,8 @@ "id": "0xD1670Cb7c01987a8DdD6976C4894463460Eeb8a2", "links": [ { - "name": "twitter", - "url": "https://twitter.com/DMMDAO" + "name": "x", + "url": "https://x.com/DMMDAO" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0xD23Ac27148aF6A2f339BD82D0e3CFF380b5093de/info.json b/blockchains/ethereum/assets/0xD23Ac27148aF6A2f339BD82D0e3CFF380b5093de/info.json index e37bb66fceb2f..a40aa9ca6b6b3 100644 --- a/blockchains/ethereum/assets/0xD23Ac27148aF6A2f339BD82D0e3CFF380b5093de/info.json +++ b/blockchains/ethereum/assets/0xD23Ac27148aF6A2f339BD82D0e3CFF380b5093de/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/sirenmarkets/core" }, { - "name": "twitter", - "url": "https://twitter.com/sirenprotocol" + "name": "x", + "url": "https://x.com/sirenprotocol" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD29DA236dd4AAc627346e1bBa06A619E8c22d7C5/info.json b/blockchains/ethereum/assets/0xD29DA236dd4AAc627346e1bBa06A619E8c22d7C5/info.json new file mode 100644 index 0000000000000..f1a740fb86e2b --- /dev/null +++ b/blockchains/ethereum/assets/0xD29DA236dd4AAc627346e1bBa06A619E8c22d7C5/info.json @@ -0,0 +1,32 @@ +{ + "name": "MAGA", + "website": "https://maga-hat.vip/", + "description": "MAGA - TRUMP'S HAT. SUPPORT TRUMP SUPPORT MAGA", + "explorer": "https://etherscan.io/token/0xD29DA236dd4AAc627346e1bBa06A619E8c22d7C5", + "type": "ERC20", + "symbol": "MAGA", + "decimals": 9, + "status": "active", + "id": "0xD29DA236dd4AAc627346e1bBa06A619E8c22d7C5", + "tags": [ + "memes" + ], + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/maga-ethereum/" + }, + { + "name": "x", + "url": "https://x.com/MagaHAT_ETH" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/maga-hat" + }, + { + "name": "telegram", + "url": "https://t.me/MAGA_HAT" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD29DA236dd4AAc627346e1bBa06A619E8c22d7C5/logo.png b/blockchains/ethereum/assets/0xD29DA236dd4AAc627346e1bBa06A619E8c22d7C5/logo.png new file mode 100644 index 0000000000000..b6707618443b5 Binary files /dev/null and b/blockchains/ethereum/assets/0xD29DA236dd4AAc627346e1bBa06A619E8c22d7C5/logo.png differ diff --git a/blockchains/ethereum/assets/0xD33526068D116cE69F19A9ee46F0bd304F21A51f/info.json b/blockchains/ethereum/assets/0xD33526068D116cE69F19A9ee46F0bd304F21A51f/info.json index b1545720280be..20daf49df29f3 100755 --- a/blockchains/ethereum/assets/0xD33526068D116cE69F19A9ee46F0bd304F21A51f/info.json +++ b/blockchains/ethereum/assets/0xD33526068D116cE69F19A9ee46F0bd304F21A51f/info.json @@ -10,8 +10,8 @@ "id": "0xD33526068D116cE69F19A9ee46F0bd304F21A51f", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Rocket_Pool" + "name": "x", + "url": "https://x.com/Rocket_Pool" }, { "name": "github", @@ -30,4 +30,4 @@ "url": "https://medium.com/rocket-pool" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD39a2CeCBA2657e125Ba6a5c98ad2F6b6D7E83FD/info.json b/blockchains/ethereum/assets/0xD39a2CeCBA2657e125Ba6a5c98ad2F6b6D7E83FD/info.json index 2c41cecc1a05b..8402c71cefe45 100644 --- a/blockchains/ethereum/assets/0xD39a2CeCBA2657e125Ba6a5c98ad2F6b6D7E83FD/info.json +++ b/blockchains/ethereum/assets/0xD39a2CeCBA2657e125Ba6a5c98ad2F6b6D7E83FD/info.json @@ -10,8 +10,8 @@ "id": "0xD39a2CeCBA2657e125Ba6a5c98ad2F6b6D7E83FD", "links": [ { - "name": "twitter", - "url": "https://twitter.com/luxochain" + "name": "x", + "url": "https://x.com/luxochain" }, { "name": "facebook", diff --git a/blockchains/ethereum/assets/0xD4F4D0a10BcaE123bB6655E8Fe93a30d01eEbD04/info.json b/blockchains/ethereum/assets/0xD4F4D0a10BcaE123bB6655E8Fe93a30d01eEbD04/info.json new file mode 100644 index 0000000000000..ed923b28298fc --- /dev/null +++ b/blockchains/ethereum/assets/0xD4F4D0a10BcaE123bB6655E8Fe93a30d01eEbD04/info.json @@ -0,0 +1,25 @@ +{ + "name": "LinqAI", + "type": "ERC20", + "symbol": "LNQ", + "decimals": 18, + "website": "https://www.linqai.com/", + "description": "LinqAI is at the forefront of blending innovative technology with practical business solutions.", + "explorer": "https://etherscan.io/token/0xD4F4D0a10BcaE123bB6655E8Fe93a30d01eEbD04", + "status": "active", + "id": "0xD4F4D0a10BcaE123bB6655E8Fe93a30d01eEbD04", + "links": [ + { + "name": "x", + "url": "https://x.com/linq_ai" + }, + { + "name": "telegram", + "url": "https://t.me/LinqAI" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/linqai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD4F4D0a10BcaE123bB6655E8Fe93a30d01eEbD04/logo.png b/blockchains/ethereum/assets/0xD4F4D0a10BcaE123bB6655E8Fe93a30d01eEbD04/logo.png new file mode 100644 index 0000000000000..fa376eda9a98f Binary files /dev/null and b/blockchains/ethereum/assets/0xD4F4D0a10BcaE123bB6655E8Fe93a30d01eEbD04/logo.png differ diff --git a/blockchains/ethereum/assets/0xD4c6CCE0Cadf2fe4C0AF9eE6777989EFD8fB7670/info.json b/blockchains/ethereum/assets/0xD4c6CCE0Cadf2fe4C0AF9eE6777989EFD8fB7670/info.json new file mode 100644 index 0000000000000..36211b803b95d --- /dev/null +++ b/blockchains/ethereum/assets/0xD4c6CCE0Cadf2fe4C0AF9eE6777989EFD8fB7670/info.json @@ -0,0 +1,24 @@ +{ + "name": "Global X US Infrastructure Development ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "PAVEon", + "decimals": 18, + "description": "PAVEon is the Ondo Tokenized version of the Global X US Infrastructure Development ETF, giving tokenholders economic exposure similar to holding PAVE and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xD4c6CCE0Cadf2fe4C0AF9eE6777989EFD8fB7670", + "status": "active", + "id": "0xD4c6CCE0Cadf2fe4C0AF9eE6777989EFD8fB7670", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/global-x-us-infrastructure-development-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD4c6CCE0Cadf2fe4C0AF9eE6777989EFD8fB7670/logo.png b/blockchains/ethereum/assets/0xD4c6CCE0Cadf2fe4C0AF9eE6777989EFD8fB7670/logo.png new file mode 100644 index 0000000000000..6767ada84d412 Binary files /dev/null and b/blockchains/ethereum/assets/0xD4c6CCE0Cadf2fe4C0AF9eE6777989EFD8fB7670/logo.png differ diff --git a/blockchains/ethereum/assets/0xD533a949740bb3306d119CC777fa900bA034cd52/info.json b/blockchains/ethereum/assets/0xD533a949740bb3306d119CC777fa900bA034cd52/info.json index bca762e09c504..53f97610a839f 100644 --- a/blockchains/ethereum/assets/0xD533a949740bb3306d119CC777fa900bA034cd52/info.json +++ b/blockchains/ethereum/assets/0xD533a949740bb3306d119CC777fa900bA034cd52/info.json @@ -1,6 +1,6 @@ { "name": "Curve DAO Token", - "website": "https://curve.fi", + "website": "https://curve.finance", "description": "CRV is a governance token on the Curve platform with time-weighted voting and value accrual mechanisms.", "explorer": "https://etherscan.io/token/0xD533a949740bb3306d119CC777fa900bA034cd52", "research": "https://research.binance.com/en/projects/curve", @@ -19,8 +19,8 @@ "url": "https://github.com/curvefi/curve-contract" }, { - "name": "twitter", - "url": "https://twitter.com/CurveFinance" + "name": "x", + "url": "https://x.com/CurveFinance" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xD55210Bb6898C021a19de1F58d27b71f095921Ee/info.json b/blockchains/ethereum/assets/0xD55210Bb6898C021a19de1F58d27b71f095921Ee/info.json new file mode 100644 index 0000000000000..150e046015f75 --- /dev/null +++ b/blockchains/ethereum/assets/0xD55210Bb6898C021a19de1F58d27b71f095921Ee/info.json @@ -0,0 +1,32 @@ +{ + "name": "Chickencoin", + "type": "ERC20", + "symbol": "CHKN", + "decimals": 18, + "website": "https://www.chickencoin.com/", + "description": "Chickencoin is a meme coin launched on the Ethereum blockchain as a ERC-20 token and forked from the PEPE smart contract.", + "explorer": "https://etherscan.io/token/0xd55210bb6898c021a19de1f58d27b71f095921ee", + "status": "active", + "id": "0xD55210Bb6898C021a19de1F58d27b71f095921Ee", + "links": [ + { + "name": "x", + "url": "https://x.com/chickencoin_eth" + }, + { + "name": "github", + "url": "https://github.com/0xMeow404/Chickencoin" + }, + { + "name": "telegram", + "url": "https://t.me/chickencoin_eth" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chickencoin/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD55210Bb6898C021a19de1F58d27b71f095921Ee/logo.png b/blockchains/ethereum/assets/0xD55210Bb6898C021a19de1F58d27b71f095921Ee/logo.png new file mode 100644 index 0000000000000..17085576031ee Binary files /dev/null and b/blockchains/ethereum/assets/0xD55210Bb6898C021a19de1F58d27b71f095921Ee/logo.png differ diff --git a/blockchains/ethereum/assets/0xD5cd84D6f044AbE314Ee7E414d37cae8773ef9D3/info.json b/blockchains/ethereum/assets/0xD5cd84D6f044AbE314Ee7E414d37cae8773ef9D3/info.json index 7f4d4eced9fcb..babc07454d59e 100644 --- a/blockchains/ethereum/assets/0xD5cd84D6f044AbE314Ee7E414d37cae8773ef9D3/info.json +++ b/blockchains/ethereum/assets/0xD5cd84D6f044AbE314Ee7E414d37cae8773ef9D3/info.json @@ -10,8 +10,8 @@ "id": "0xD5cd84D6f044AbE314Ee7E414d37cae8773ef9D3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/harmonyprotocol" + "name": "x", + "url": "https://x.com/harmonyprotocol" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/info.json b/blockchains/ethereum/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/info.json new file mode 100644 index 0000000000000..035b312b6b9f0 --- /dev/null +++ b/blockchains/ethereum/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/info.json @@ -0,0 +1,24 @@ +{ + "name": "Brazilian Real", + "website": "https://www.ripio.com/es/criptos/stablecoins-locales", + "description": "wBRL is a fully collateralized stablecoin pegged 1:1 to the Brazilian Real (BRL). Issued and governed by a Ripio subsidiary, it brings BRL on-chain so users can transact, save, and build on decentralized networks in their local currency.", + "explorer": "https://etherscan.io/token/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0", + "type": "ERC20", + "symbol": "wBRL", + "decimals": 18, + "status": "active", + "id": "0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/RipioApp" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/brazilian-real" + } + ] +} diff --git a/blockchains/ethereum/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/logo.png b/blockchains/ethereum/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/logo.png new file mode 100644 index 0000000000000..6a9e9da279722 Binary files /dev/null and b/blockchains/ethereum/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/logo.png differ diff --git a/blockchains/ethereum/assets/0xD7EFB00d12C2c13131FD319336Fdf952525dA2af/info.json b/blockchains/ethereum/assets/0xD7EFB00d12C2c13131FD319336Fdf952525dA2af/info.json index 8a2c4c78c1ab6..d342479ce9e20 100644 --- a/blockchains/ethereum/assets/0xD7EFB00d12C2c13131FD319336Fdf952525dA2af/info.json +++ b/blockchains/ethereum/assets/0xD7EFB00d12C2c13131FD319336Fdf952525dA2af/info.json @@ -1,5 +1,5 @@ { - "name": "Proton", + "name": "XPR Network", "website": "https://protonchain.com", "description": "Proton is a new public blockchain and dApp platform designed for both consumer applications and P2P payments. It is built around a secure identity and financial settlements layer that allows users to directly link real identity and fiat accounts, pull funds and use crypto seamlessly.", "explorer": "https://etherscan.io/token/0xD7EFB00d12C2c13131FD319336Fdf952525dA2af", @@ -12,4 +12,4 @@ "defi", "governance" ] -} \ No newline at end of file +} diff --git a/blockchains/ethereum/assets/0xD8e26FcC879b30cB0a0B543925a2B3500f074D81/info.json b/blockchains/ethereum/assets/0xD8e26FcC879b30cB0a0B543925a2B3500f074D81/info.json new file mode 100644 index 0000000000000..fce3be5e20ab9 --- /dev/null +++ b/blockchains/ethereum/assets/0xD8e26FcC879b30cB0a0B543925a2B3500f074D81/info.json @@ -0,0 +1,24 @@ +{ + "name": "Nike (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "NKEon is the Ondo Tokenized version of Nike, giving tokenholders economic exposure similar to holding NKE and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xD8e26FcC879b30cB0a0B543925a2B3500f074D81", + "type": "ERC20", + "symbol": "NKEon", + "decimals": 18, + "status": "active", + "id": "0xD8e26FcC879b30cB0a0B543925a2B3500f074D81", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nike-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD8e26FcC879b30cB0a0B543925a2B3500f074D81/logo.png b/blockchains/ethereum/assets/0xD8e26FcC879b30cB0a0B543925a2B3500f074D81/logo.png new file mode 100644 index 0000000000000..840169bac80f1 Binary files /dev/null and b/blockchains/ethereum/assets/0xD8e26FcC879b30cB0a0B543925a2B3500f074D81/logo.png differ diff --git a/blockchains/ethereum/assets/0xD904bCf89B7CedF5c89f9Df7e829191D695F847E/info.json b/blockchains/ethereum/assets/0xD904bCf89B7CedF5c89f9Df7e829191D695F847E/info.json new file mode 100644 index 0000000000000..2a6362ceb9d5c --- /dev/null +++ b/blockchains/ethereum/assets/0xD904bCf89B7CedF5c89f9Df7e829191D695F847E/info.json @@ -0,0 +1,24 @@ +{ + "name": "General Electric (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "GEon is the Ondo Tokenized version of General Electric, giving tokenholders economic exposure similar to holding GE and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xD904bCf89B7CedF5c89f9Df7e829191D695F847E", + "type": "ERC20", + "symbol": "GEon", + "decimals": 18, + "status": "active", + "id": "0xD904bCf89B7CedF5c89f9Df7e829191D695F847E", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/general-electric-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD904bCf89B7CedF5c89f9Df7e829191D695F847E/logo.png b/blockchains/ethereum/assets/0xD904bCf89B7CedF5c89f9Df7e829191D695F847E/logo.png new file mode 100644 index 0000000000000..8ea1ca1d71fa7 Binary files /dev/null and b/blockchains/ethereum/assets/0xD904bCf89B7CedF5c89f9Df7e829191D695F847E/logo.png differ diff --git a/blockchains/ethereum/assets/0xD9343a049D5DBd89CD19DC6BcA8c48fB3a0a42a7/info.json b/blockchains/ethereum/assets/0xD9343a049D5DBd89CD19DC6BcA8c48fB3a0a42a7/info.json new file mode 100644 index 0000000000000..c3e8702db70dc --- /dev/null +++ b/blockchains/ethereum/assets/0xD9343a049D5DBd89CD19DC6BcA8c48fB3a0a42a7/info.json @@ -0,0 +1,21 @@ +{ + "name": "Lumia", + "type": "ERC20", + "symbol": "LUMIA", + "decimals": 18, + "website": "https://lumia.org/", + "description": "Lumia is the first next-generation blockchain that provides a comprehensive solution across the entire life cycle of RWAs, from asset tokenization to liquidity aggregation and connectivity to millions of traders in DeFi.", + "explorer": "https://etherscan.io/token/0xd9343a049d5dbd89cd19dc6bca8c48fb3a0a42a7", + "status": "active", + "id": "0xD9343a049D5DBd89CD19DC6BcA8c48fB3a0a42a7", + "links": [ + { + "name": "x", + "url": "https://x.com/BuildOnLumia" + }, + { + "name": "telegram", + "url": "https://t.me/lumia_community" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD9343a049D5DBd89CD19DC6BcA8c48fB3a0a42a7/logo.png b/blockchains/ethereum/assets/0xD9343a049D5DBd89CD19DC6BcA8c48fB3a0a42a7/logo.png new file mode 100644 index 0000000000000..21e6eae0bbbbb Binary files /dev/null and b/blockchains/ethereum/assets/0xD9343a049D5DBd89CD19DC6BcA8c48fB3a0a42a7/logo.png differ diff --git a/blockchains/ethereum/assets/0xD9A24485e71B9148e0Fd51F0162072099DF0dB67/info.json b/blockchains/ethereum/assets/0xD9A24485e71B9148e0Fd51F0162072099DF0dB67/info.json index d819167e3fd59..da8f567651269 100644 --- a/blockchains/ethereum/assets/0xD9A24485e71B9148e0Fd51F0162072099DF0dB67/info.json +++ b/blockchains/ethereum/assets/0xD9A24485e71B9148e0Fd51F0162072099DF0dB67/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/ichifarm/ichi-oneToken" }, { - "name": "twitter", - "url": "https://twitter.com/ichifarm" + "name": "x", + "url": "https://x.com/ichifarm" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xD9A442856C234a39a81a089C06451EBAa4306a72/info.json b/blockchains/ethereum/assets/0xD9A442856C234a39a81a089C06451EBAa4306a72/info.json new file mode 100644 index 0000000000000..0365cd77ec486 --- /dev/null +++ b/blockchains/ethereum/assets/0xD9A442856C234a39a81a089C06451EBAa4306a72/info.json @@ -0,0 +1,21 @@ +{ + "name": "pufETH", + "type": "ERC20", + "symbol": "pufETH", + "decimals": 18, + "website": "https://www.puffer.fi/", + "description": "Puffer is a decentralized native liquid restaking protocol (nLRP) built on Eigenlayer. It makes native restaking on Eigenlayer more accessible, allowing anyone to run an Ethereum Proof of Stake (PoS) validator earning extra revenue through EigenLayer AVSs.", + "explorer": "https://etherscan.io/token/0xd9a442856c234a39a81a089c06451ebaa4306a72", + "status": "active", + "id": "0xD9A442856C234a39a81a089C06451EBAa4306a72", + "links": [ + { + "name": "x", + "url": "https://x.com/puffer_finance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pufeth/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD9A442856C234a39a81a089C06451EBAa4306a72/logo.png b/blockchains/ethereum/assets/0xD9A442856C234a39a81a089C06451EBAa4306a72/logo.png new file mode 100644 index 0000000000000..66647a41873f8 Binary files /dev/null and b/blockchains/ethereum/assets/0xD9A442856C234a39a81a089C06451EBAa4306a72/logo.png differ diff --git a/blockchains/ethereum/assets/0xD9Ec3ff1f8be459Bb9369b4E79e9Ebcf7141C093/info.json b/blockchains/ethereum/assets/0xD9Ec3ff1f8be459Bb9369b4E79e9Ebcf7141C093/info.json index a0ec658b4262a..038196c44f639 100644 --- a/blockchains/ethereum/assets/0xD9Ec3ff1f8be459Bb9369b4E79e9Ebcf7141C093/info.json +++ b/blockchains/ethereum/assets/0xD9Ec3ff1f8be459Bb9369b4E79e9Ebcf7141C093/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/kardiachain" }, { - "name": "twitter", - "url": "https://twitter.com/KardiaChain" + "name": "x", + "url": "https://x.com/KardiaChain" }, { "name": "medium", diff --git a/blockchains/ethereum/assets/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A/info.json b/blockchains/ethereum/assets/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A/info.json new file mode 100644 index 0000000000000..d92241a3adb6d --- /dev/null +++ b/blockchains/ethereum/assets/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A/info.json @@ -0,0 +1,24 @@ +{ + "name": "JPMorgan Chase tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "JPMorgan Chase xStock (JPMx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. JPMx tracks the price of JPMorgan Chase & Co. (the underlying). JPMx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of JPMorgan Chase & Co., whilst maintaining the benefits of blockchain technology. JPMorgan Chase & Co. is a multinational financial services firm headquartered in New York City. It's a leading provider of financial services to individuals, businesses, and institutions worldwide.", + "explorer": "https://etherscan.io/token/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A", + "type": "ERC20", + "symbol": "JPMX", + "decimals": 18, + "status": "active", + "id": "0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jpmorgan-chase-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A/logo.png b/blockchains/ethereum/assets/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A/logo.png new file mode 100644 index 0000000000000..df73bbccf4085 Binary files /dev/null and b/blockchains/ethereum/assets/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A/logo.png differ diff --git a/blockchains/ethereum/assets/0xDA987c655ebC38C801DB64A8608bc1AA56Cd9a31/info.json b/blockchains/ethereum/assets/0xDA987c655ebC38C801DB64A8608bc1AA56Cd9a31/info.json new file mode 100644 index 0000000000000..1c2f9e7778697 --- /dev/null +++ b/blockchains/ethereum/assets/0xDA987c655ebC38C801DB64A8608bc1AA56Cd9a31/info.json @@ -0,0 +1,17 @@ +{ + "name": "Synternet", + "type": "ERC20", + "symbol": "SYNT", + "decimals": 18, + "website": "https://www.synternet.com", + "description": "Synternet is a blockchain that powers modular, interoperable data infrastructure across all major chains.", + "explorer": "https://etherscan.io/token/0xda987c655ebc38c801db64a8608bc1aa56cd9a31", + "status": "active", + "id": "0xDA987c655ebC38C801DB64A8608bc1AA56Cd9a31", + "links": [ + { + "name": "x", + "url": "https://x.com/Synternet_com" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDA987c655ebC38C801DB64A8608bc1AA56Cd9a31/logo.png b/blockchains/ethereum/assets/0xDA987c655ebC38C801DB64A8608bc1AA56Cd9a31/logo.png new file mode 100644 index 0000000000000..ea082196d998c Binary files /dev/null and b/blockchains/ethereum/assets/0xDA987c655ebC38C801DB64A8608bc1AA56Cd9a31/logo.png differ diff --git a/blockchains/ethereum/assets/0xDAe0faFD65385E7775Cf75b1398735155EF6aCD2/info.json b/blockchains/ethereum/assets/0xDAe0faFD65385E7775Cf75b1398735155EF6aCD2/info.json new file mode 100644 index 0000000000000..c24f2996e6515 --- /dev/null +++ b/blockchains/ethereum/assets/0xDAe0faFD65385E7775Cf75b1398735155EF6aCD2/info.json @@ -0,0 +1,30 @@ +{ + "name": "Truth", + "type": "ERC20", + "symbol": "TRU", + "decimals": 10, + "description": "Truth Network introduces the TRUTH token as the backbone of its revolutionary prediction market ecosystem, operating as an appchain on Aventus Network and secured by Polkadot’s infrastructure, with its token functionality rooted in Ethereum’s blockchain.", + "website": "https://truth-network.io/", + "explorer": "https://etherscan.io/token/0xDAe0faFD65385E7775Cf75b1398735155EF6aCD2", + "id": "0xDAe0faFD65385E7775Cf75b1398735155EF6aCD2", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/truth_network_" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/truth/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/truth" + } + + ], + "tags": [ + "governance" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDAe0faFD65385E7775Cf75b1398735155EF6aCD2/logo.png b/blockchains/ethereum/assets/0xDAe0faFD65385E7775Cf75b1398735155EF6aCD2/logo.png new file mode 100644 index 0000000000000..a89c5d15cbb42 Binary files /dev/null and b/blockchains/ethereum/assets/0xDAe0faFD65385E7775Cf75b1398735155EF6aCD2/logo.png differ diff --git a/blockchains/ethereum/assets/0xDB0238975Ce84f89212FFA56C64C0f2b47F8f153/info.json b/blockchains/ethereum/assets/0xDB0238975Ce84f89212FFA56C64C0f2b47F8f153/info.json new file mode 100644 index 0000000000000..4c5eca3edadfb --- /dev/null +++ b/blockchains/ethereum/assets/0xDB0238975Ce84f89212FFA56C64C0f2b47F8f153/info.json @@ -0,0 +1,21 @@ +{ + "name": "HeyFlork", + "type": "ERC20", + "symbol": "Flork", + "decimals": 18, + "website": "https://flork.io/", + "description": "FLORK - Bringing Webcomic Whimsy to Ethereum's Memecoin Realm.", + "explorer": "https://etherscan.io/token/0xdb0238975ce84f89212ffa56c64c0f2b47f8f153", + "status": "active", + "id": "0xDB0238975Ce84f89212FFA56C64C0f2b47F8f153", + "links": [ + { + "name": "x", + "url": "https://x.com/HeyFlork" + }, + { + "name": "telegram", + "url": "https://t.me/HeyFlork" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDB0238975Ce84f89212FFA56C64C0f2b47F8f153/logo.png b/blockchains/ethereum/assets/0xDB0238975Ce84f89212FFA56C64C0f2b47F8f153/logo.png new file mode 100644 index 0000000000000..ad2cf064c4a1d Binary files /dev/null and b/blockchains/ethereum/assets/0xDB0238975Ce84f89212FFA56C64C0f2b47F8f153/logo.png differ diff --git a/blockchains/ethereum/assets/0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7/info.json b/blockchains/ethereum/assets/0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7/info.json new file mode 100644 index 0000000000000..7495265761e5d --- /dev/null +++ b/blockchains/ethereum/assets/0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7/info.json @@ -0,0 +1,25 @@ +{ + "name": "WorldMobileToken", + "type": "ERC20", + "symbol": "WMTX", + "decimals": 6, + "description": "World Mobile Token (WMTX) is the utility token that powers the World Mobile network, a decentralized mobile network at the forefront of the DePIN space. World Mobile aims to connect the world by leveraging blockchain technology and a sharing economy.", + "website": "https://worldmobiletoken.com/", + "explorer": "https://etherscan.io/token/0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7", + "id": "0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/wmtoken?lang=en" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/world-mobile-token/" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7/logo.png b/blockchains/ethereum/assets/0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7/logo.png new file mode 100644 index 0000000000000..edce9e299ffe9 Binary files /dev/null and b/blockchains/ethereum/assets/0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7/logo.png differ diff --git a/blockchains/ethereum/assets/0xDD16eC0F66E54d453e6756713E533355989040E4/info.json b/blockchains/ethereum/assets/0xDD16eC0F66E54d453e6756713E533355989040E4/info.json index 92deb1c52e318..2c3463abeaabc 100644 --- a/blockchains/ethereum/assets/0xDD16eC0F66E54d453e6756713E533355989040E4/info.json +++ b/blockchains/ethereum/assets/0xDD16eC0F66E54d453e6756713E533355989040E4/info.json @@ -10,8 +10,8 @@ "id": "0xDD16eC0F66E54d453e6756713E533355989040E4", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Twitter" + "name": "x", + "url": "https://x.com/x" }, { "name": "facebook", diff --git a/blockchains/ethereum/assets/0xDDdddd4301A082e62E84e43F474f044423921918/info.json b/blockchains/ethereum/assets/0xDDdddd4301A082e62E84e43F474f044423921918/info.json index 67bd81c043d72..9a722b5e990af 100644 --- a/blockchains/ethereum/assets/0xDDdddd4301A082e62E84e43F474f044423921918/info.json +++ b/blockchains/ethereum/assets/0xDDdddd4301A082e62E84e43F474f044423921918/info.json @@ -10,8 +10,8 @@ "id": "0xDDdddd4301A082e62E84e43F474f044423921918", "links": [ { - "name": "twitter", - "url": "https://twitter.com/rhinofi" + "name": "x", + "url": "https://x.com/rhinofi" }, { "name": "discord", diff --git a/blockchains/ethereum/assets/0xDE075D9ADbD0240b4462F124af926452Ad0BAC91/info.json b/blockchains/ethereum/assets/0xDE075D9ADbD0240b4462F124af926452Ad0BAC91/info.json index 0f27ee1090870..fb65bc577b6df 100644 --- a/blockchains/ethereum/assets/0xDE075D9ADbD0240b4462F124af926452Ad0BAC91/info.json +++ b/blockchains/ethereum/assets/0xDE075D9ADbD0240b4462F124af926452Ad0BAC91/info.json @@ -10,8 +10,8 @@ "id": "0xDE075D9ADbD0240b4462F124af926452Ad0BAC91", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BubblefongGame" + "name": "x", + "url": "https://x.com/BubblefongGame" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xDE12c7959E1a72bbe8a5f7A1dc8f8EeF9Ab011B3/info.json b/blockchains/ethereum/assets/0xDE12c7959E1a72bbe8a5f7A1dc8f8EeF9Ab011B3/info.json index 88d3036001fe0..1f98645242b2f 100644 --- a/blockchains/ethereum/assets/0xDE12c7959E1a72bbe8a5f7A1dc8f8EeF9Ab011B3/info.json +++ b/blockchains/ethereum/assets/0xDE12c7959E1a72bbe8a5f7A1dc8f8EeF9Ab011B3/info.json @@ -10,8 +10,8 @@ "id": "0xDE12c7959E1a72bbe8a5f7A1dc8f8EeF9Ab011B3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/DeusDao" + "name": "x", + "url": "https://x.com/DeusDao" }, { "name": "telegram", @@ -22,4 +22,4 @@ "url": "https://medium.com/@deusfinance" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDE5ed76E7c05eC5e4572CfC88d1ACEA165109E44/info.json b/blockchains/ethereum/assets/0xDE5ed76E7c05eC5e4572CfC88d1ACEA165109E44/info.json index b7d0a7948c18b..f5b8fc06e98bc 100644 --- a/blockchains/ethereum/assets/0xDE5ed76E7c05eC5e4572CfC88d1ACEA165109E44/info.json +++ b/blockchains/ethereum/assets/0xDE5ed76E7c05eC5e4572CfC88d1ACEA165109E44/info.json @@ -10,8 +10,8 @@ "id": "0xDE5ed76E7c05eC5e4572CfC88d1ACEA165109E44", "links": [ { - "name": "twitter", - "url": "https://twitter.com/DeusDao" + "name": "x", + "url": "https://x.com/DeusDao" }, { "name": "telegram", @@ -22,4 +22,4 @@ "url": "https://medium.com/@deusfinance" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB/info.json b/blockchains/ethereum/assets/0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB/info.json index 9b78d035165a7..a8a3489251b11 100644 --- a/blockchains/ethereum/assets/0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB/info.json +++ b/blockchains/ethereum/assets/0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB/info.json @@ -1,5 +1,5 @@ { - "name": "COW", + "name": "CoW Protocol", "type": "ERC20", "symbol": "COW", "decimals": 18, @@ -10,16 +10,24 @@ "id": "0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MEVprotection" + "name": "x", + "url": "https://x.com/CoWSwap" }, { "name": "github", - "url": "https://github.com/gnosis/cow-token/" + "url": "https://github.com/cowprotocol" + }, + { + "name": "source_code", + "url": "https://github.com/cowprotocol/token" }, { "name": "blog", - "url": "https://medium.com/@cow-protocol" + "url": "https://blog.cow.fi" + }, + { + "name": "docs", + "url": "https://docs.cow.fi" }, { "name": "discord", @@ -28,6 +36,18 @@ { "name": "forum", "url": "https://forum.cow.fi" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cow-protocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cow-protocol" + }, + { + "name": "youtube", + "url": "https://youtube.com/@CoWSwap" } ], "tags": [ diff --git a/blockchains/ethereum/assets/0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB/logo.png b/blockchains/ethereum/assets/0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB/logo.png index 21fa17ac3330c..8df3f5b49a612 100644 Binary files a/blockchains/ethereum/assets/0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB/logo.png and b/blockchains/ethereum/assets/0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB/logo.png differ diff --git a/blockchains/ethereum/assets/0xDa49AF8773Cb162ca56f8431442c750896F8C87A/info.json b/blockchains/ethereum/assets/0xDa49AF8773Cb162ca56f8431442c750896F8C87A/info.json index 0387a6a2d9fee..81149ba020b36 100644 --- a/blockchains/ethereum/assets/0xDa49AF8773Cb162ca56f8431442c750896F8C87A/info.json +++ b/blockchains/ethereum/assets/0xDa49AF8773Cb162ca56f8431442c750896F8C87A/info.json @@ -10,8 +10,8 @@ "id": "0xDa49AF8773Cb162ca56f8431442c750896F8C87A", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SingularityDao" + "name": "x", + "url": "https://x.com/SingularityDao" }, { "name": "telegram", @@ -53,4 +53,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDaF8a0E12fc3b109A17ED5CbB943A8f3f86081f7/info.json b/blockchains/ethereum/assets/0xDaF8a0E12fc3b109A17ED5CbB943A8f3f86081f7/info.json index 5bfcc7710348d..6a4472bb6da92 100644 --- a/blockchains/ethereum/assets/0xDaF8a0E12fc3b109A17ED5CbB943A8f3f86081f7/info.json +++ b/blockchains/ethereum/assets/0xDaF8a0E12fc3b109A17ED5CbB943A8f3f86081f7/info.json @@ -10,8 +10,8 @@ "id": "0xDaF8a0E12fc3b109A17ED5CbB943A8f3f86081f7", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SBXtoken" + "name": "x", + "url": "https://x.com/SBXtoken" }, { "name": "discord", diff --git a/blockchains/ethereum/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json b/blockchains/ethereum/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json index 1c1abca266285..8c52c56a7d8d6 100644 --- a/blockchains/ethereum/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json +++ b/blockchains/ethereum/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json @@ -10,8 +10,8 @@ "id": "0xDbA7b24257fC6e397cB7368B4BC922E944072f1b", "links": [ { - "name": "twitter", - "url": "https://twitter.com/everrise" + "name": "x", + "url": "https://x.com/everrise" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xDc0327D50E6C73db2F8117760592C8BBf1CDCF38/info.json b/blockchains/ethereum/assets/0xDc0327D50E6C73db2F8117760592C8BBf1CDCF38/info.json index a3ee58f9e4b35..59c4e1ce443cd 100644 --- a/blockchains/ethereum/assets/0xDc0327D50E6C73db2F8117760592C8BBf1CDCF38/info.json +++ b/blockchains/ethereum/assets/0xDc0327D50E6C73db2F8117760592C8BBf1CDCF38/info.json @@ -10,8 +10,8 @@ "id": "0xDc0327D50E6C73db2F8117760592C8BBf1CDCF38", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Strongblock_io" + "name": "x", + "url": "https://x.com/Strongblock_io" }, { "name": "github", @@ -45,4 +45,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDc7AC5d5d4a9C3B5d8F3183058A92776Dc12f4f3/info.json b/blockchains/ethereum/assets/0xDc7AC5d5d4a9C3B5d8F3183058A92776Dc12f4f3/info.json new file mode 100644 index 0000000000000..675ed40bb6e5a --- /dev/null +++ b/blockchains/ethereum/assets/0xDc7AC5d5d4a9C3B5d8F3183058A92776Dc12f4f3/info.json @@ -0,0 +1,21 @@ +{ + "name": "Monkas", + "website": "https://monkas.top/", + "description": "In the vast and ever-expanding realm of cryptocurrencies, where innovation dances with imagination, emerges a unique digital asset - MonkaS Coin.", + "explorer": "https://etherscan.io/token/0xdc7ac5d5d4a9c3b5d8f3183058a92776dc12f4f3", + "type": "ERC20", + "symbol": "MONKAS", + "decimals": 9, + "status": "active", + "id": "0xDc7AC5d5d4a9C3B5d8F3183058A92776Dc12f4f3", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/monkas/" + }, + { + "name": "x", + "url": "https://x.com/monkaserc20" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDc7AC5d5d4a9C3B5d8F3183058A92776Dc12f4f3/logo.png b/blockchains/ethereum/assets/0xDc7AC5d5d4a9C3B5d8F3183058A92776Dc12f4f3/logo.png new file mode 100644 index 0000000000000..ed67a2c54678f Binary files /dev/null and b/blockchains/ethereum/assets/0xDc7AC5d5d4a9C3B5d8F3183058A92776Dc12f4f3/logo.png differ diff --git a/blockchains/ethereum/assets/0xDcB01cc464238396E213a6fDd933E36796eAfF9f/info.json b/blockchains/ethereum/assets/0xDcB01cc464238396E213a6fDd933E36796eAfF9f/info.json index 7e92b7c012c47..01ad1488e52c2 100644 --- a/blockchains/ethereum/assets/0xDcB01cc464238396E213a6fDd933E36796eAfF9f/info.json +++ b/blockchains/ethereum/assets/0xDcB01cc464238396E213a6fDd933E36796eAfF9f/info.json @@ -10,8 +10,8 @@ "id": "0xDcB01cc464238396E213a6fDd933E36796eAfF9f", "links": [ { - "name": "twitter", - "url": "https://twitter.com/YieldCredit" + "name": "x", + "url": "https://x.com/YieldCredit" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xDdbcDD8637d5CEDd15EeEe398108FCa05A71b32b/info.json b/blockchains/ethereum/assets/0xDdbcDD8637d5CEDd15EeEe398108FCa05A71b32b/info.json new file mode 100644 index 0000000000000..3a64d86774f9a --- /dev/null +++ b/blockchains/ethereum/assets/0xDdbcDD8637d5CEDd15EeEe398108FCa05A71b32b/info.json @@ -0,0 +1,21 @@ +{ + "name": "Cryptify AI", + "symbol": "CRAI", + "decimals": 18, + "type": "ERC20", + "website": "https://cryptify.ai/", + "description": "Discover more about us and become part of the transformative movement in influencer marketing", + "explorer": "https://etherscan.io/token/0xddbcdd8637d5cedd15eeee398108fca05a71b32b", + "status": "active", + "id": "0xDdbcDD8637d5CEDd15EeEe398108FCa05A71b32b", + "links": [ + { + "name": "x", + "url": "https://x.com/CryptifyAI" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cryptify-ai-ethereum/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDdbcDD8637d5CEDd15EeEe398108FCa05A71b32b/logo.png b/blockchains/ethereum/assets/0xDdbcDD8637d5CEDd15EeEe398108FCa05A71b32b/logo.png new file mode 100644 index 0000000000000..6e5162cd82bb1 Binary files /dev/null and b/blockchains/ethereum/assets/0xDdbcDD8637d5CEDd15EeEe398108FCa05A71b32b/logo.png differ diff --git a/blockchains/ethereum/assets/0xDe30da39c46104798bB5aA3fe8B9e0e1F348163F/info.json b/blockchains/ethereum/assets/0xDe30da39c46104798bB5aA3fe8B9e0e1F348163F/info.json index 659742625f2ae..67b0160f1f699 100644 --- a/blockchains/ethereum/assets/0xDe30da39c46104798bB5aA3fe8B9e0e1F348163F/info.json +++ b/blockchains/ethereum/assets/0xDe30da39c46104798bB5aA3fe8B9e0e1F348163F/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/gitcoinco" }, { - "name": "twitter", - "url": "https://twitter.com/gitcoin" + "name": "x", + "url": "https://x.com/gitcoin" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0xDf801468a808a32656D2eD2D2d80B72A129739f4/info.json b/blockchains/ethereum/assets/0xDf801468a808a32656D2eD2D2d80B72A129739f4/info.json index 12c6e4f8549f9..055eb9805bdac 100644 --- a/blockchains/ethereum/assets/0xDf801468a808a32656D2eD2D2d80B72A129739f4/info.json +++ b/blockchains/ethereum/assets/0xDf801468a808a32656D2eD2D2d80B72A129739f4/info.json @@ -10,8 +10,8 @@ "id": "0xDf801468a808a32656D2eD2D2d80B72A129739f4", "links": [ { - "name": "twitter", - "url": "https://twitter.com/somniumspace" + "name": "x", + "url": "https://x.com/somniumspace" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xE014d2A4da6E450f21b5050120D291e63c8940FD/info.json b/blockchains/ethereum/assets/0xE014d2A4da6E450f21b5050120D291e63c8940FD/info.json new file mode 100644 index 0000000000000..9a8e9b9c9a7a9 --- /dev/null +++ b/blockchains/ethereum/assets/0xE014d2A4da6E450f21b5050120D291e63c8940FD/info.json @@ -0,0 +1,56 @@ +{ + "name": "Sogni AI", + "type": "BASE", + "symbol": "SOGNI", + "decimals": 18, + "website": "https://sogni.ai/", + "description": "Sogni is a platform where your creativity takes center stage, powered by a revolutionary decentralized Supernet. Built on the collective contributions of real artists, creators, and visionaries, the Supernet combines cutting-edge technology with the unique touch of human imagination.", + "explorer": "https://basescan.org/token/0xE014d2A4da6E450f21b5050120D291e63c8940FD", + "status": "active", + "id": "0xE014d2A4da6E450f21b5050120D291e63c8940FD", + "links": [ + { + "name": "x", + "url": "https://x.com/sogni_protocol" + }, + { + "name": "discord", + "url": "https://discord.com/invite/2JjzA2zrrc" + }, + { + "name": "telegram", + "url": "https://t.me/sogniai" + }, + { + "name": "github", + "url": "https://github.com/Sogni-AI/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Sogni_Protocol/" + }, + { + "name": "youtube", + "url": "https://youtube.com/@SogniAI" + }, + { + "name": "medium", + "url": "https://medium.com/sogni" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sogni-ai/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sogni-ai" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.sogni.ai/" + } + ], + "tags": [ + "dapp" + ] +} diff --git a/blockchains/ethereum/assets/0xE014d2A4da6E450f21b5050120D291e63c8940FD/logo.png b/blockchains/ethereum/assets/0xE014d2A4da6E450f21b5050120D291e63c8940FD/logo.png new file mode 100644 index 0000000000000..49babb2f55209 Binary files /dev/null and b/blockchains/ethereum/assets/0xE014d2A4da6E450f21b5050120D291e63c8940FD/logo.png differ diff --git a/blockchains/ethereum/assets/0xE0f63A424a4439cBE457D80E4f4b51aD25b2c56C/info.json b/blockchains/ethereum/assets/0xE0f63A424a4439cBE457D80E4f4b51aD25b2c56C/info.json new file mode 100644 index 0000000000000..5abb32e2d6bb3 --- /dev/null +++ b/blockchains/ethereum/assets/0xE0f63A424a4439cBE457D80E4f4b51aD25b2c56C/info.json @@ -0,0 +1,21 @@ +{ + "name": "SPX6900", + "website": "https://www.spx6900.com/", + "description": "SPX6900 is an advanced blockchain cryptography token with limitless possibilities and scientific utilization.", + "explorer": "https://etherscan.io/token/0xe0f63a424a4439cbe457d80e4f4b51ad25b2c56c", + "type": "ERC20", + "symbol": "SPX", + "decimals": 8, + "status": "active", + "id": "0xE0f63A424a4439cBE457D80E4f4b51aD25b2c56C", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spx6900/" + }, + { + "name": "x", + "url": "https://x.com/spx6900" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE0f63A424a4439cBE457D80E4f4b51aD25b2c56C/logo.png b/blockchains/ethereum/assets/0xE0f63A424a4439cBE457D80E4f4b51aD25b2c56C/logo.png new file mode 100644 index 0000000000000..21b50fe934d46 Binary files /dev/null and b/blockchains/ethereum/assets/0xE0f63A424a4439cBE457D80E4f4b51aD25b2c56C/logo.png differ diff --git a/blockchains/ethereum/assets/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015/info.json b/blockchains/ethereum/assets/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015/info.json new file mode 100644 index 0000000000000..34decf4a56e86 --- /dev/null +++ b/blockchains/ethereum/assets/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015/info.json @@ -0,0 +1,24 @@ +{ + "name": "Robinhood tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Robinhood tokenized stock (xStock) (HOODX) is a cryptocurrency and operates on the Solana platform. Robinhood tokenized stock (xStock) has a current supply of 30,999.85114263. The last known price of Robinhood tokenized stock (xStock) is 115.00870956 USD and is down -0.48 over the last 24 hours. It is currently trading on 28 active market(s) with $10,711,891.70 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/robinhood-xstock.", + "explorer": "https://etherscan.io/token/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015", + "type": "ERC20", + "symbol": "HOODX", + "decimals": 18, + "status": "active", + "id": "0xE1385FDd5ffB10081Cd52C56584F25EFa9084015", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/robinhood-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015/logo.png b/blockchains/ethereum/assets/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015/logo.png new file mode 100644 index 0000000000000..41bfda5c82784 Binary files /dev/null and b/blockchains/ethereum/assets/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015/logo.png differ diff --git a/blockchains/ethereum/assets/0xE1bAD922F84b198A08292FB600319300ae32471b/info.json b/blockchains/ethereum/assets/0xE1bAD922F84b198A08292FB600319300ae32471b/info.json index a94fdda0d2031..663bf12f1dbf7 100644 --- a/blockchains/ethereum/assets/0xE1bAD922F84b198A08292FB600319300ae32471b/info.json +++ b/blockchains/ethereum/assets/0xE1bAD922F84b198A08292FB600319300ae32471b/info.json @@ -1,5 +1,5 @@ { - "name": "[FCT] FirmaChain Token", + "name": "FirmaChain", "symbol": "FCT", "type": "ERC20", "decimals": 18, diff --git a/blockchains/ethereum/assets/0xE22020F47B7378dfedcedd2C81d4137c22fE1152/info.json b/blockchains/ethereum/assets/0xE22020F47B7378dfedcedd2C81d4137c22fE1152/info.json index 3928f760d0240..5723ab7dde813 100644 --- a/blockchains/ethereum/assets/0xE22020F47B7378dfedcedd2C81d4137c22fE1152/info.json +++ b/blockchains/ethereum/assets/0xE22020F47B7378dfedcedd2C81d4137c22fE1152/info.json @@ -10,8 +10,8 @@ "id": "0xE22020F47B7378dfedcedd2C81d4137c22fE1152", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MyLiquidity_MLP" + "name": "x", + "url": "https://x.com/MyLiquidity_MLP" }, { "name": "medium", diff --git a/blockchains/ethereum/assets/0xE3419710c1f77D44B4DaB02316d3f048818C4E59/info.json b/blockchains/ethereum/assets/0xE3419710c1f77D44B4DaB02316d3f048818C4E59/info.json new file mode 100644 index 0000000000000..5f50f7305f066 --- /dev/null +++ b/blockchains/ethereum/assets/0xE3419710c1f77D44B4DaB02316d3f048818C4E59/info.json @@ -0,0 +1,24 @@ +{ + "name": "Qualcomm (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "QCOMon is the Ondo Tokenized version of Qualcomm, giving tokenholders economic exposure similar to holding QCOM and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xE3419710c1f77D44B4DaB02316d3f048818C4E59", + "type": "ERC20", + "symbol": "QCOMon", + "decimals": 18, + "status": "active", + "id": "0xE3419710c1f77D44B4DaB02316d3f048818C4E59", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/qualcomm-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE3419710c1f77D44B4DaB02316d3f048818C4E59/logo.png b/blockchains/ethereum/assets/0xE3419710c1f77D44B4DaB02316d3f048818C4E59/logo.png new file mode 100644 index 0000000000000..a5f2bede094de Binary files /dev/null and b/blockchains/ethereum/assets/0xE3419710c1f77D44B4DaB02316d3f048818C4E59/logo.png differ diff --git a/blockchains/ethereum/assets/0xE41d2489571d322189246DaFA5ebDe1F4699F498/info.json b/blockchains/ethereum/assets/0xE41d2489571d322189246DaFA5ebDe1F4699F498/info.json index 649df8bdd7a26..1078954518106 100644 --- a/blockchains/ethereum/assets/0xE41d2489571d322189246DaFA5ebDe1F4699F498/info.json +++ b/blockchains/ethereum/assets/0xE41d2489571d322189246DaFA5ebDe1F4699F498/info.json @@ -19,8 +19,8 @@ "url": "https://github.com/0xProject" }, { - "name": "twitter", - "url": "https://twitter.com/0xproject" + "name": "x", + "url": "https://x.com/0xproject" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0xE453C3409f8Ad2B1FE1ED08E189634d359705A5B/info.json b/blockchains/ethereum/assets/0xE453C3409f8Ad2B1FE1ED08E189634d359705A5B/info.json new file mode 100644 index 0000000000000..94d2480c8e7dc --- /dev/null +++ b/blockchains/ethereum/assets/0xE453C3409f8Ad2B1FE1ED08E189634d359705A5B/info.json @@ -0,0 +1,17 @@ +{ + "name": "DGI Game", + "website": "https://www.dgi.game/", + "description": "DGI - Decentralized Gaming Income Token, represents a pioneering venture within the realm of gaming guilds, offering you the most effective way to generate passive income from gaming.", + "explorer": "https://etherscan.io/token/0xe453c3409f8ad2b1fe1ed08e189634d359705a5b", + "type": "ERC20", + "symbol": "DGI", + "decimals": 18, + "status": "active", + "id": "0xE453C3409f8Ad2B1FE1ED08E189634d359705A5B", + "links": [ + { + "name": "x", + "url": "https://x.com/DgiGame" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE453C3409f8Ad2B1FE1ED08E189634d359705A5B/logo.png b/blockchains/ethereum/assets/0xE453C3409f8Ad2B1FE1ED08E189634d359705A5B/logo.png new file mode 100644 index 0000000000000..f7903bedd73fd Binary files /dev/null and b/blockchains/ethereum/assets/0xE453C3409f8Ad2B1FE1ED08E189634d359705A5B/logo.png differ diff --git a/blockchains/ethereum/assets/0xE4babaa960bA7D37860f3fe00D7b95D3868e8EDc/info.json b/blockchains/ethereum/assets/0xE4babaa960bA7D37860f3fe00D7b95D3868e8EDc/info.json new file mode 100644 index 0000000000000..925b646a2b361 --- /dev/null +++ b/blockchains/ethereum/assets/0xE4babaa960bA7D37860f3fe00D7b95D3868e8EDc/info.json @@ -0,0 +1,24 @@ +{ + "name": "Nebius Group (Ondo Tokenized)", + "type": "ERC20", + "symbol": "NBISon", + "decimals": 18, + "description": "NBISon is the Ondo Tokenized version of Nebius Group, giving tokenholders economic exposure similar to holding NBIS and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xE4babaa960bA7D37860f3fe00D7b95D3868e8EDc", + "status": "active", + "id": "0xE4babaa960bA7D37860f3fe00D7b95D3868e8EDc", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/nebius-group-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE4babaa960bA7D37860f3fe00D7b95D3868e8EDc/logo.png b/blockchains/ethereum/assets/0xE4babaa960bA7D37860f3fe00D7b95D3868e8EDc/logo.png new file mode 100644 index 0000000000000..c530871fade72 Binary files /dev/null and b/blockchains/ethereum/assets/0xE4babaa960bA7D37860f3fe00D7b95D3868e8EDc/logo.png differ diff --git a/blockchains/ethereum/assets/0xE51bA774ebF6392c45Bf1d9E6b334d07992460d3/info.json b/blockchains/ethereum/assets/0xE51bA774ebF6392c45Bf1d9E6b334d07992460d3/info.json new file mode 100644 index 0000000000000..2bc093ad198cc --- /dev/null +++ b/blockchains/ethereum/assets/0xE51bA774ebF6392c45Bf1d9E6b334d07992460d3/info.json @@ -0,0 +1,24 @@ +{ + "name": "ASML Holding NV (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "ASMLon is the Ondo Tokenized version of ASML Holding NV, giving tokenholders economic exposure similar to holding ASML and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xE51bA774ebF6392c45Bf1d9E6b334d07992460d3", + "type": "ERC20", + "symbol": "ASMLon", + "decimals": 18, + "status": "active", + "id": "0xE51bA774ebF6392c45Bf1d9E6b334d07992460d3", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/asml-holding-nv-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE51bA774ebF6392c45Bf1d9E6b334d07992460d3/logo.png b/blockchains/ethereum/assets/0xE51bA774ebF6392c45Bf1d9E6b334d07992460d3/logo.png new file mode 100644 index 0000000000000..5b23d9aa4a0a0 Binary files /dev/null and b/blockchains/ethereum/assets/0xE51bA774ebF6392c45Bf1d9E6b334d07992460d3/logo.png differ diff --git a/blockchains/ethereum/assets/0xE51f24B251430A6e615f66e0d3c3A97c442aB38C/info.json b/blockchains/ethereum/assets/0xE51f24B251430A6e615f66e0d3c3A97c442aB38C/info.json index 4512d2119b9fb..86dc808138204 100644 --- a/blockchains/ethereum/assets/0xE51f24B251430A6e615f66e0d3c3A97c442aB38C/info.json +++ b/blockchains/ethereum/assets/0xE51f24B251430A6e615f66e0d3c3A97c442aB38C/info.json @@ -10,8 +10,8 @@ "id": "0xE51f24B251430A6e615f66e0d3c3A97c442aB38C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/$ART" + "name": "x", + "url": "https://x.com/$ART" }, { "name": "discord", diff --git a/blockchains/ethereum/assets/0xE5dB5128935e3a8a8eAEABe4577Fac2b353aE9fA/info.json b/blockchains/ethereum/assets/0xE5dB5128935e3a8a8eAEABe4577Fac2b353aE9fA/info.json new file mode 100644 index 0000000000000..35bcd0fd24de2 --- /dev/null +++ b/blockchains/ethereum/assets/0xE5dB5128935e3a8a8eAEABe4577Fac2b353aE9fA/info.json @@ -0,0 +1,21 @@ +{ + "name": "Aurk AI", + "website": "https://aurk.org/", + "description": "AURK is the decentralized AI platform designed for everyone. Build, deploy, and monetize AI agents without writing a single line of code", + "explorer": "https://etherscan.io/token/0xE5dB5128935e3a8a8eAEABe4577Fac2b353aE9fA", + "type": "ERC20", + "symbol": "AURK", + "decimals": 18, + "status": "active", + "id": "0xE5dB5128935e3a8a8eAEABe4577Fac2b353aE9fA", + "links": [ + { + "name": "x", + "url": "https://x.com/aurk_ai" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/aurk-ai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE5dB5128935e3a8a8eAEABe4577Fac2b353aE9fA/logo.png b/blockchains/ethereum/assets/0xE5dB5128935e3a8a8eAEABe4577Fac2b353aE9fA/logo.png new file mode 100644 index 0000000000000..172de7af3afeb Binary files /dev/null and b/blockchains/ethereum/assets/0xE5dB5128935e3a8a8eAEABe4577Fac2b353aE9fA/logo.png differ diff --git a/blockchains/ethereum/assets/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d/info.json b/blockchains/ethereum/assets/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d/info.json new file mode 100644 index 0000000000000..05fd9e8fd9511 --- /dev/null +++ b/blockchains/ethereum/assets/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d/info.json @@ -0,0 +1,24 @@ +{ + "name": "Gamestop tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Gamestop tokenized stock (xStock) (GMEX) is a cryptocurrency and operates on the Solana platform. Gamestop tokenized stock (xStock) has a current supply of 23,600 with 6,000 in circulation. The last known price of Gamestop tokenized stock (xStock) is 27.48685055 USD and is up 0.00 over the last 24 hours. More information can be found at https://assets.backed.fi/products/gamestop-xstock.", + "explorer": "https://etherscan.io/token/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d", + "type": "ERC20", + "symbol": "GMEX", + "decimals": 18, + "status": "active", + "id": "0xE5f6d3b2405ABdfE6F660e63202B25D23763160d", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gamestop-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d/logo.png b/blockchains/ethereum/assets/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d/logo.png new file mode 100644 index 0000000000000..a0ca86f1f3793 Binary files /dev/null and b/blockchains/ethereum/assets/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d/logo.png differ diff --git a/blockchains/ethereum/assets/0xE66747a101bFF2dBA3697199DCcE5b743b454759/info.json b/blockchains/ethereum/assets/0xE66747a101bFF2dBA3697199DCcE5b743b454759/info.json index e0d21949c7de8..f9b25edfcf942 100644 --- a/blockchains/ethereum/assets/0xE66747a101bFF2dBA3697199DCcE5b743b454759/info.json +++ b/blockchains/ethereum/assets/0xE66747a101bFF2dBA3697199DCcE5b743b454759/info.json @@ -1,5 +1,5 @@ { - "name": "Gatechain Token", + "name": "GateToken", "website": "https://gatechain.io", "description": "GateChain is a public blockchain dedicated to blockchain asset safety even after private keys are compromised.", "explorer": "https://etherscan.io/token/0xE66747a101bFF2dBA3697199DCcE5b743b454759", @@ -14,8 +14,8 @@ "url": "https://github.com/gatechain" }, { - "name": "twitter", - "url": "https://twitter.com/gatechain_io/photo" + "name": "x", + "url": "https://x.com/gatechain_io/photo" }, { "name": "blog", diff --git a/blockchains/ethereum/assets/0xE668e08a6f5792CEF0e63E9D98524968fDB5882f/info.json b/blockchains/ethereum/assets/0xE668e08a6f5792CEF0e63E9D98524968fDB5882f/info.json new file mode 100644 index 0000000000000..5e81d2e55a05a --- /dev/null +++ b/blockchains/ethereum/assets/0xE668e08a6f5792CEF0e63E9D98524968fDB5882f/info.json @@ -0,0 +1,24 @@ +{ + "name": "Galaxy Digital (Ondo Tokenized)", + "type": "ERC20", + "symbol": "GLXYon", + "decimals": 18, + "description": "GLXYon is the Ondo Tokenized version of Galaxy Digital, giving tokenholders economic exposure similar to holding GLXY and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xE668e08a6f5792CEF0e63E9D98524968fDB5882f", + "status": "active", + "id": "0xE668e08a6f5792CEF0e63E9D98524968fDB5882f", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/galaxy-digital-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE668e08a6f5792CEF0e63E9D98524968fDB5882f/logo.png b/blockchains/ethereum/assets/0xE668e08a6f5792CEF0e63E9D98524968fDB5882f/logo.png new file mode 100644 index 0000000000000..4be71cd2de123 Binary files /dev/null and b/blockchains/ethereum/assets/0xE668e08a6f5792CEF0e63E9D98524968fDB5882f/logo.png differ diff --git a/blockchains/ethereum/assets/0xE66b3AA360bB78468c00Bebe163630269DB3324F/info.json b/blockchains/ethereum/assets/0xE66b3AA360bB78468c00Bebe163630269DB3324F/info.json index e4e787cf5bc87..b7a4fa89a3ca7 100644 --- a/blockchains/ethereum/assets/0xE66b3AA360bB78468c00Bebe163630269DB3324F/info.json +++ b/blockchains/ethereum/assets/0xE66b3AA360bB78468c00Bebe163630269DB3324F/info.json @@ -10,8 +10,8 @@ "id": "0xE66b3AA360bB78468c00Bebe163630269DB3324F", "links": [ { - "name": "twitter", - "url": "https://twitter.com/merchant_token" + "name": "x", + "url": "https://x.com/merchant_token" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0xE6F1966d04CfcB9cd1B1dC4E8256D8b501b11CbA/info.json b/blockchains/ethereum/assets/0xE6F1966d04CfcB9cd1B1dC4E8256D8b501b11CbA/info.json index e6a52d75a2116..b72db77a67a82 100644 --- a/blockchains/ethereum/assets/0xE6F1966d04CfcB9cd1B1dC4E8256D8b501b11CbA/info.json +++ b/blockchains/ethereum/assets/0xE6F1966d04CfcB9cd1B1dC4E8256D8b501b11CbA/info.json @@ -10,8 +10,8 @@ "id": "0xE6F1966d04CfcB9cd1B1dC4E8256D8b501b11CbA", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SafeEarthETH" + "name": "x", + "url": "https://x.com/SafeEarthETH" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xE7C6BF469e97eEB0bFB74C8dbFF5BD47D4C1C98a/info.json b/blockchains/ethereum/assets/0xE7C6BF469e97eEB0bFB74C8dbFF5BD47D4C1C98a/info.json new file mode 100644 index 0000000000000..e96577082d40a --- /dev/null +++ b/blockchains/ethereum/assets/0xE7C6BF469e97eEB0bFB74C8dbFF5BD47D4C1C98a/info.json @@ -0,0 +1,17 @@ +{ + "name": "HashKey Platform", + "website": "https://group.hashkey.com/hsk", + "description": "HSK has a total supply of 1 billion units, with 65% allocated for ecosystem growth. HSK will be utilized in various scenarios related to business growth activities within the HashKey Group. Additionally, HSK will offer robust support for on-chain users and assets on the HashKey Chain.", + "explorer": "https://etherscan.io/token/0xe7c6bf469e97eeb0bfb74c8dbff5bd47d4c1c98a", + "type": "ERC20", + "symbol": "HSK", + "decimals": 18, + "status": "active", + "id": "0xE7C6BF469e97eEB0bFB74C8dbFF5BD47D4C1C98a", + "links": [ + { + "name": "x", + "url": "https://x.com/hashkeyhsk" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE7C6BF469e97eEB0bFB74C8dbFF5BD47D4C1C98a/logo.png b/blockchains/ethereum/assets/0xE7C6BF469e97eEB0bFB74C8dbFF5BD47D4C1C98a/logo.png new file mode 100644 index 0000000000000..cf9faf0200225 Binary files /dev/null and b/blockchains/ethereum/assets/0xE7C6BF469e97eEB0bFB74C8dbFF5BD47D4C1C98a/logo.png differ diff --git a/blockchains/ethereum/assets/0xE820C06321E60d36257C666643Fa5436643445E3/info.json b/blockchains/ethereum/assets/0xE820C06321E60d36257C666643Fa5436643445E3/info.json new file mode 100644 index 0000000000000..6f4d5a0154125 --- /dev/null +++ b/blockchains/ethereum/assets/0xE820C06321E60d36257C666643Fa5436643445E3/info.json @@ -0,0 +1,36 @@ +{ + "name": "USDKG", + "type": "ERC20", + "symbol": "USDKG", + "decimals": 6, + "website": "https://www.usdkg.com", + "description": "USDKG is the world's first gold-collateralized stablecoin pegged 1:1 to the US Dollar, fully supported by the Ministry of Finance of the Kyrgyz Republic, and backed by physical gold reserves to ensure stability and transparency in digital transactions.", + "explorer": "https://etherscan.io/token/0xE820C06321E60d36257C666643Fa5436643445E3", + "status": "active", + "id": "0xE820C06321E60d36257C666643Fa5436643445E3", + "links": [ + { + "name": "x", + "url": "https://x.com/USDKG_Official" + }, + { + "name": "github", + "url": "https://github.com/USDkg/USDkg" + }, + { + "name": "whitepaper", + "url": "https://cdn.prod.website-files.com/675ee2248e357f63d8256c8d/6895fd6cc933876e216aa9f9_USDKG%20Whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usdkg/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/usdkg" + } + ], + "tags": [ + "stablecoin" + ] +} diff --git a/blockchains/ethereum/assets/0xE820C06321E60d36257C666643Fa5436643445E3/logo.png b/blockchains/ethereum/assets/0xE820C06321E60d36257C666643Fa5436643445E3/logo.png new file mode 100644 index 0000000000000..ef576b8fed16c Binary files /dev/null and b/blockchains/ethereum/assets/0xE820C06321E60d36257C666643Fa5436643445E3/logo.png differ diff --git a/blockchains/ethereum/assets/0xE8b251822d003a2b2466ee0E38391C2db2048739/info.json b/blockchains/ethereum/assets/0xE8b251822d003a2b2466ee0E38391C2db2048739/info.json index dc7a66d24e0a4..d1d990b3f798b 100644 --- a/blockchains/ethereum/assets/0xE8b251822d003a2b2466ee0E38391C2db2048739/info.json +++ b/blockchains/ethereum/assets/0xE8b251822d003a2b2466ee0E38391C2db2048739/info.json @@ -10,8 +10,8 @@ "id": "0xE8b251822d003a2b2466ee0E38391C2db2048739", "links": [ { - "name": "twitter", - "url": "https://twitter.com/DefiProphets" + "name": "x", + "url": "https://x.com/DefiProphets" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xE92344b4eDF545F3209094B192E46600A19E7C2D/info.json b/blockchains/ethereum/assets/0xE92344b4eDF545F3209094B192E46600A19E7C2D/info.json new file mode 100644 index 0000000000000..d02b2444584f0 --- /dev/null +++ b/blockchains/ethereum/assets/0xE92344b4eDF545F3209094B192E46600A19E7C2D/info.json @@ -0,0 +1,21 @@ +{ + "name": "zKML", + "symbol": "zKML", + "website": "https://zkml.systems/", + "description": "ZKML offer zKOS operating systems and Mobile-zKOS for secure communication on mobile devices.", + "explorer": "https://etherscan.io/token/0xe92344b4edf545f3209094b192e46600a19e7c2d", + "type": "ERC20", + "decimals": 18, + "status": "active", + "id": "0xE92344b4eDF545F3209094B192E46600A19E7C2D", + "links": [ + { + "name": "x", + "url": "https://x.com/zkmlsystems" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zkml/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE92344b4eDF545F3209094B192E46600A19E7C2D/logo.png b/blockchains/ethereum/assets/0xE92344b4eDF545F3209094B192E46600A19E7C2D/logo.png new file mode 100644 index 0000000000000..00f7e6f465c36 Binary files /dev/null and b/blockchains/ethereum/assets/0xE92344b4eDF545F3209094B192E46600A19E7C2D/logo.png differ diff --git a/blockchains/ethereum/assets/0xE95A203B1a91a908F9B9CE46459d101078c2c3cb/info.json b/blockchains/ethereum/assets/0xE95A203B1a91a908F9B9CE46459d101078c2c3cb/info.json index 16856792e4657..3445a2189481f 100644 --- a/blockchains/ethereum/assets/0xE95A203B1a91a908F9B9CE46459d101078c2c3cb/info.json +++ b/blockchains/ethereum/assets/0xE95A203B1a91a908F9B9CE46459d101078c2c3cb/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Ankr-network/stkr-smartcontract" }, { - "name": "twitter", - "url": "https://twitter.com/Ankr" + "name": "x", + "url": "https://x.com/Ankr" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xE95e4440493E5b96e79D63E8Dc43AB676Dd44E4C/info.json b/blockchains/ethereum/assets/0xE95e4440493E5b96e79D63E8Dc43AB676Dd44E4C/info.json index 68ae0c1de3eee..5b875776c9c09 100644 --- a/blockchains/ethereum/assets/0xE95e4440493E5b96e79D63E8Dc43AB676Dd44E4C/info.json +++ b/blockchains/ethereum/assets/0xE95e4440493E5b96e79D63E8Dc43AB676Dd44E4C/info.json @@ -10,8 +10,8 @@ "id": "0xE95e4440493E5b96e79D63E8Dc43AB676Dd44E4C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ANTISEAL1" + "name": "x", + "url": "https://x.com/ANTISEAL1" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xE9732d4b1E7d3789004fF029f032bA3034db059c/info.json b/blockchains/ethereum/assets/0xE9732d4b1E7d3789004fF029f032bA3034db059c/info.json new file mode 100644 index 0000000000000..42e899be33da4 --- /dev/null +++ b/blockchains/ethereum/assets/0xE9732d4b1E7d3789004fF029f032bA3034db059c/info.json @@ -0,0 +1,21 @@ +{ + "name": "Patriot", + "type": "ERC20", + "symbol": "PATRIOT", + "decimals": 18, + "website": "http://patriotoneth.org/", + "description": "$PATRIOT’s community is casting a 17FT bronze statue for Donald J Trump, commemorating his patriotic service to America.", + "explorer": "https://etherscan.io/token/0xE9732d4b1E7d3789004fF029f032bA3034db059c", + "status": "active", + "id": "0xE9732d4b1E7d3789004fF029f032bA3034db059c", + "links": [ + { + "name": "x", + "url": "https://x.com/patriot_erc20" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/patriot/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE9732d4b1E7d3789004fF029f032bA3034db059c/logo.png b/blockchains/ethereum/assets/0xE9732d4b1E7d3789004fF029f032bA3034db059c/logo.png new file mode 100644 index 0000000000000..bae630d494f74 Binary files /dev/null and b/blockchains/ethereum/assets/0xE9732d4b1E7d3789004fF029f032bA3034db059c/logo.png differ diff --git a/blockchains/ethereum/assets/0xEA26c4aC16D4a5A106820BC8AEE85fd0b7b2b664/info.json b/blockchains/ethereum/assets/0xEA26c4aC16D4a5A106820BC8AEE85fd0b7b2b664/info.json index d09ab8caa06c4..b88af878dfe68 100644 --- a/blockchains/ethereum/assets/0xEA26c4aC16D4a5A106820BC8AEE85fd0b7b2b664/info.json +++ b/blockchains/ethereum/assets/0xEA26c4aC16D4a5A106820BC8AEE85fd0b7b2b664/info.json @@ -1,5 +1,5 @@ { - "name": "QuarkChain Token", + "name": "QuarkChain", "symbol": "QKC", "type": "ERC20", "decimals": 18, diff --git a/blockchains/ethereum/assets/0xEB4C2781e4ebA804CE9a9803C67d0893436bB27D/info.json b/blockchains/ethereum/assets/0xEB4C2781e4ebA804CE9a9803C67d0893436bB27D/info.json index e014bcb371e04..4460152dc21d9 100644 --- a/blockchains/ethereum/assets/0xEB4C2781e4ebA804CE9a9803C67d0893436bB27D/info.json +++ b/blockchains/ethereum/assets/0xEB4C2781e4ebA804CE9a9803C67d0893436bB27D/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/renproject" }, { - "name": "twitter", - "url": "https://twitter.com/renprotocol" + "name": "x", + "url": "https://x.com/renprotocol" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0xEB58343b36C7528F23CAAe63a150240241310049/info.json b/blockchains/ethereum/assets/0xEB58343b36C7528F23CAAe63a150240241310049/info.json index 700782ba93c31..517c754d75205 100644 --- a/blockchains/ethereum/assets/0xEB58343b36C7528F23CAAe63a150240241310049/info.json +++ b/blockchains/ethereum/assets/0xEB58343b36C7528F23CAAe63a150240241310049/info.json @@ -10,8 +10,8 @@ "id": "0xEB58343b36C7528F23CAAe63a150240241310049", "links": [ { - "name": "twitter", - "url": "https://twitter.com/nmbplatform" + "name": "x", + "url": "https://x.com/nmbplatform" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xEE2a03Aa6Dacf51C18679C516ad5283d8E7C2637/info.json b/blockchains/ethereum/assets/0xEE2a03Aa6Dacf51C18679C516ad5283d8E7C2637/info.json new file mode 100644 index 0000000000000..f1d6c0835e0b3 --- /dev/null +++ b/blockchains/ethereum/assets/0xEE2a03Aa6Dacf51C18679C516ad5283d8E7C2637/info.json @@ -0,0 +1,26 @@ +{ + "name": "Neiro", + "type": "ERC20", + "symbol": "NEIRO", + "decimals": 9, + "website": "https://www.neirocoin.xyz", + "description": "$NEIRO is a new cryptocurrency with a total supply of 1 billion tokens, offering zero buy/sell tax and no team tokens, which suggests a community-driven approach. It promotes itself as the next big opportunity in the crypto space, drawing comparisons to Dogecoin's rise.", + "explorer": "https://etherscan.io/token/0xEE2a03Aa6Dacf51C18679C516ad5283d8E7C2637", + "status": "active", + "id": "0xEE2a03Aa6Dacf51C18679C516ad5283d8E7C2637", + "links": [ + { + "name": "x", + "url": "https://x.com/neiro_ethereum?mx=2" + }, + { + "name": "telegram", + "url": "https://t.me/neiro_ethereum" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/neiro-eth/" + } + ], + "tags": [] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEE2a03Aa6Dacf51C18679C516ad5283d8E7C2637/logo.png b/blockchains/ethereum/assets/0xEE2a03Aa6Dacf51C18679C516ad5283d8E7C2637/logo.png new file mode 100644 index 0000000000000..e12e7e999cad2 Binary files /dev/null and b/blockchains/ethereum/assets/0xEE2a03Aa6Dacf51C18679C516ad5283d8E7C2637/logo.png differ diff --git a/blockchains/ethereum/assets/0xEEAcC51Af745846DDf46012B46C6910ea9b12898/info.json b/blockchains/ethereum/assets/0xEEAcC51Af745846DDf46012B46C6910ea9b12898/info.json new file mode 100644 index 0000000000000..5e7a02682c8c5 --- /dev/null +++ b/blockchains/ethereum/assets/0xEEAcC51Af745846DDf46012B46C6910ea9b12898/info.json @@ -0,0 +1,21 @@ +{ + "name": "Dogc", + "website": "https://dogec.ai/", + "description": "Join DogeChaser, Lead The World!", + "explorer": "https://etherscan.io/token/0xeeacc51af745846ddf46012b46c6910ea9b12898", + "type": "ERC20", + "symbol": "DOGC", + "decimals": 18, + "status": "active", + "id": "0xEEAcC51Af745846DDf46012B46C6910ea9b12898", + "links": [ + { + "name": "x", + "url": "https://x.com/dogechasers" + }, + { + "name": "telegram", + "url": "https://t.me/DogeChaserCommunity" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEEAcC51Af745846DDf46012B46C6910ea9b12898/logo.png b/blockchains/ethereum/assets/0xEEAcC51Af745846DDf46012B46C6910ea9b12898/logo.png new file mode 100644 index 0000000000000..818563d9f6c9b Binary files /dev/null and b/blockchains/ethereum/assets/0xEEAcC51Af745846DDf46012B46C6910ea9b12898/logo.png differ diff --git a/blockchains/ethereum/assets/0xEEF9f339514298C6A857EfCfC1A762aF84438dEE/info.json b/blockchains/ethereum/assets/0xEEF9f339514298C6A857EfCfC1A762aF84438dEE/info.json index 7a883e9387175..921cc16ff4725 100644 --- a/blockchains/ethereum/assets/0xEEF9f339514298C6A857EfCfC1A762aF84438dEE/info.json +++ b/blockchains/ethereum/assets/0xEEF9f339514298C6A857EfCfC1A762aF84438dEE/info.json @@ -1,5 +1,5 @@ { - "name": "Hermez Network Token", + "name": "Hermez Network", "website": "https://hermez.io/", "description": "Hermez is a decentralized zk-rollup focused on scaling payments and token transfers on top of Ethereum.", "explorer": "https://etherscan.io/token/0xEEF9f339514298C6A857EfCfC1A762aF84438dEE", @@ -14,8 +14,8 @@ "url": "https://github.com/hermeznetwork" }, { - "name": "twitter", - "url": "https://twitter.com/hermez_network" + "name": "x", + "url": "https://x.com/hermez_network" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xEEdb0273c5Af792745180e9fF568cD01550fFA13/info.json b/blockchains/ethereum/assets/0xEEdb0273c5Af792745180e9fF568cD01550fFA13/info.json new file mode 100644 index 0000000000000..55cb4056f3d8e --- /dev/null +++ b/blockchains/ethereum/assets/0xEEdb0273c5Af792745180e9fF568cD01550fFA13/info.json @@ -0,0 +1,24 @@ +{ + "name": "Exxon Mobil tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Exxon Mobil xStock (XOMx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. XOMx tracks the price of Exxon Mobil Corporation (the underlying). XOMx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Exxon Mobil Corporation, whilst maintaining the benefits of blockchain technology. ExxonMobil is a multinational oil and gas corporation that operates in over 100 countries.", + "explorer": "https://etherscan.io/token/0xEEdb0273c5Af792745180e9fF568cD01550fFA13", + "type": "ERC20", + "symbol": "XOMX", + "decimals": 18, + "status": "active", + "id": "0xEEdb0273c5Af792745180e9fF568cD01550fFA13", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/exxon-mobil-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEEdb0273c5Af792745180e9fF568cD01550fFA13/logo.png b/blockchains/ethereum/assets/0xEEdb0273c5Af792745180e9fF568cD01550fFA13/logo.png new file mode 100644 index 0000000000000..7051dcb4d3e90 Binary files /dev/null and b/blockchains/ethereum/assets/0xEEdb0273c5Af792745180e9fF568cD01550fFA13/logo.png differ diff --git a/blockchains/ethereum/assets/0xEa319e87Cf06203DAe107Dd8E5672175e3Ee976c/info.json b/blockchains/ethereum/assets/0xEa319e87Cf06203DAe107Dd8E5672175e3Ee976c/info.json index cc0d65e46f1a4..b8625f47f3500 100644 --- a/blockchains/ethereum/assets/0xEa319e87Cf06203DAe107Dd8E5672175e3Ee976c/info.json +++ b/blockchains/ethereum/assets/0xEa319e87Cf06203DAe107Dd8E5672175e3Ee976c/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/SURF-Finance/contracts" }, { - "name": "twitter", - "url": "https://twitter.com/surf_defi" + "name": "x", + "url": "https://x.com/surf_defi" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xEaa2C985abF14Ac850F6614faebd6E4436BeA65f/info.json b/blockchains/ethereum/assets/0xEaa2C985abF14Ac850F6614faebd6E4436BeA65f/info.json index 0f20ee8a74a0c..99d2ddfea2ba5 100644 --- a/blockchains/ethereum/assets/0xEaa2C985abF14Ac850F6614faebd6E4436BeA65f/info.json +++ b/blockchains/ethereum/assets/0xEaa2C985abF14Ac850F6614faebd6E4436BeA65f/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/shibnobi/" }, { - "name": "twitter", - "url": "https://twitter.com/ShumoOfficial" + "name": "x", + "url": "https://x.com/ShumoOfficial" }, { "name": "telegram", @@ -29,4 +29,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEc169F9Ac2161723a2D4febd9748BB529D6C12B5/info.json b/blockchains/ethereum/assets/0xEc169F9Ac2161723a2D4febd9748BB529D6C12B5/info.json new file mode 100644 index 0000000000000..27c8965f98e12 --- /dev/null +++ b/blockchains/ethereum/assets/0xEc169F9Ac2161723a2D4febd9748BB529D6C12B5/info.json @@ -0,0 +1,24 @@ +{ + "name": "PIMCO 0-5 Year High Yield Corporate Bond Index ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "HYSon", + "decimals": 18, + "description": "HYSon is the Ondo Tokenized version of the PIMCO 0-5 Year High Yield Corporate Bond Index ETF, giving tokenholders economic exposure similar to holding HYS and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xEc169F9Ac2161723a2D4febd9748BB529D6C12B5", + "status": "active", + "id": "0xEc169F9Ac2161723a2D4febd9748BB529D6C12B5", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pimco-0-5-year-high-yield-corporate-bond-index-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEc169F9Ac2161723a2D4febd9748BB529D6C12B5/logo.png b/blockchains/ethereum/assets/0xEc169F9Ac2161723a2D4febd9748BB529D6C12B5/logo.png new file mode 100644 index 0000000000000..58564c02cf969 Binary files /dev/null and b/blockchains/ethereum/assets/0xEc169F9Ac2161723a2D4febd9748BB529D6C12B5/logo.png differ diff --git a/blockchains/ethereum/assets/0xEc4325F0518584F0774b483c215F65474EAbD27F/info.json b/blockchains/ethereum/assets/0xEc4325F0518584F0774b483c215F65474EAbD27F/info.json index ca80af01fbbb5..753c6561a745b 100644 --- a/blockchains/ethereum/assets/0xEc4325F0518584F0774b483c215F65474EAbD27F/info.json +++ b/blockchains/ethereum/assets/0xEc4325F0518584F0774b483c215F65474EAbD27F/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/ichifarm/ichi-oneToken" }, { - "name": "twitter", - "url": "https://twitter.com/ichifarm" + "name": "x", + "url": "https://x.com/ichifarm" }, { "name": "telegram", @@ -33,4 +33,4 @@ "url": "https://discord.com/invite/DvsYCfK8" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEd0439EACf4c4965AE4613D77a5C2Efe10e5f183/info.json b/blockchains/ethereum/assets/0xEd0439EACf4c4965AE4613D77a5C2Efe10e5f183/info.json index f55c0edbd2bc5..af621913a6706 100644 --- a/blockchains/ethereum/assets/0xEd0439EACf4c4965AE4613D77a5C2Efe10e5f183/info.json +++ b/blockchains/ethereum/assets/0xEd0439EACf4c4965AE4613D77a5C2Efe10e5f183/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/NiftyxProtocol" + "name": "x", + "url": "https://x.com/NiftyxProtocol" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xEdb0414627E6f1e3F082DE65cD4F9C693D78CCA9/info.json b/blockchains/ethereum/assets/0xEdb0414627E6f1e3F082DE65cD4F9C693D78CCA9/info.json index 39346e1c9c426..43bb021271c8b 100644 --- a/blockchains/ethereum/assets/0xEdb0414627E6f1e3F082DE65cD4F9C693D78CCA9/info.json +++ b/blockchains/ethereum/assets/0xEdb0414627E6f1e3F082DE65cD4F9C693D78CCA9/info.json @@ -10,8 +10,8 @@ "id": "0xEdb0414627E6f1e3F082DE65cD4F9C693D78CCA9", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MirrorProtocol" + "name": "x", + "url": "https://x.com/MirrorProtocol" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xEe2542F442a5ed8008e2fe3590e14F90DB69f70d/info.json b/blockchains/ethereum/assets/0xEe2542F442a5ed8008e2fe3590e14F90DB69f70d/info.json new file mode 100644 index 0000000000000..1a2908c8f2a86 --- /dev/null +++ b/blockchains/ethereum/assets/0xEe2542F442a5ed8008e2fe3590e14F90DB69f70d/info.json @@ -0,0 +1,28 @@ +{ + "name": "NIO (Ondo Tokenized)", + "type": "ERC20", + "symbol": "NIOon", + "decimals": 18, + "description": "NIOon is the Ondo Tokenized version of NIO, giving tokenholders economic exposure similar to holding NIO and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xEe2542F442a5ed8008e2fe3590e14F90DB69f70d", + "status": "active", + "id": "0xEe2542F442a5ed8008e2fe3590e14F90DB69f70d", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/nio-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nio-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEe2542F442a5ed8008e2fe3590e14F90DB69f70d/logo.png b/blockchains/ethereum/assets/0xEe2542F442a5ed8008e2fe3590e14F90DB69f70d/logo.png new file mode 100644 index 0000000000000..71fbf20164616 Binary files /dev/null and b/blockchains/ethereum/assets/0xEe2542F442a5ed8008e2fe3590e14F90DB69f70d/logo.png differ diff --git a/blockchains/ethereum/assets/0xEe7527841A932d2912224E20a405e1a1FF747084/info.json b/blockchains/ethereum/assets/0xEe7527841A932d2912224E20a405e1a1FF747084/info.json new file mode 100644 index 0000000000000..87765d7595410 --- /dev/null +++ b/blockchains/ethereum/assets/0xEe7527841A932d2912224E20a405e1a1FF747084/info.json @@ -0,0 +1,25 @@ +{ + "name": "Stronghold SHx", + "type": "ERC20", + "symbol": "SHX", + "decimals": 7, + "description": "Stronghold’s mission is to provide fast, secure, and accessible financial services for all. Through our developer APIs, we enable access to legacy and next-generation payments and financial services. SHx, Stronghold’s currency is used for real time settlement, discount in fees for business customers, rewards, and merchant cash advances through decentralized finance.", + "website": "https://stronghold.co/shx", + "explorer": "https://etherscan.io/token/0xee7527841a932d2912224e20a405e1a1ff747084", + "id": "0xEe7527841A932d2912224E20a405e1a1FF747084", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/strongholdpay" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/stronghold-token/" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEe7527841A932d2912224E20a405e1a1FF747084/logo.png b/blockchains/ethereum/assets/0xEe7527841A932d2912224E20a405e1a1FF747084/logo.png new file mode 100644 index 0000000000000..0c1a1852f6f4c Binary files /dev/null and b/blockchains/ethereum/assets/0xEe7527841A932d2912224E20a405e1a1FF747084/logo.png differ diff --git a/blockchains/ethereum/assets/0xEe9E7Bb7E55bBc86414047B61D65c9C0d91fFBd0/info.json b/blockchains/ethereum/assets/0xEe9E7Bb7E55bBc86414047B61D65c9C0d91fFBd0/info.json new file mode 100644 index 0000000000000..64afb4f39a090 --- /dev/null +++ b/blockchains/ethereum/assets/0xEe9E7Bb7E55bBc86414047B61D65c9C0d91fFBd0/info.json @@ -0,0 +1,17 @@ +{ + "name": "Fracton", + "type": "ERC20", + "symbol": "FT", + "decimals": 18, + "website": "https://www.fracton.cool/", + "description": "Fracton token (FT) is the governance token of Fracton Protocol, an infrastructure of the NFT ecosystem building a liquid NFT market.", + "explorer": "https://etherscan.io/token/0xEe9E7Bb7E55bBc86414047B61D65c9C0d91fFBd0", + "status": "active", + "id": "0xEe9E7Bb7E55bBc86414047B61D65c9C0d91fFBd0", + "links": [ + { + "name": "x", + "url": "https://x.com/FractonProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEe9E7Bb7E55bBc86414047B61D65c9C0d91fFBd0/logo.png b/blockchains/ethereum/assets/0xEe9E7Bb7E55bBc86414047B61D65c9C0d91fFBd0/logo.png new file mode 100644 index 0000000000000..44009dbbb7cf9 Binary files /dev/null and b/blockchains/ethereum/assets/0xEe9E7Bb7E55bBc86414047B61D65c9C0d91fFBd0/logo.png differ diff --git a/blockchains/ethereum/assets/0xEeB4d8400AEefafC1B2953e0094134A887C76Bd8/info.json b/blockchains/ethereum/assets/0xEeB4d8400AEefafC1B2953e0094134A887C76Bd8/info.json new file mode 100644 index 0000000000000..2e6c10827ef5d --- /dev/null +++ b/blockchains/ethereum/assets/0xEeB4d8400AEefafC1B2953e0094134A887C76Bd8/info.json @@ -0,0 +1,25 @@ +{ + "name": "Avail", + "type": "ERC20", + "symbol": "AVAIL", + "decimals": 18, + "description": "The permissionless environment of web3 has led to multiple groundbreaking technologies that power a thriving ecosystem. Faced with multiple challenges to overcome in reaching the scale required for mass adoption, the ecosystem has built incredible scaling technologies across the full breadth and depth of the Web3 tech stack.", + "website": "https://www.availproject.org", + "explorer": "https://etherscan.io/token/0xeeb4d8400aeefafc1b2953e0094134a887c76bd8", + "id": "0xEeB4d8400AEefafC1B2953e0094134A887C76Bd8", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/AvailProject" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/avail/" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEeB4d8400AEefafC1B2953e0094134A887C76Bd8/logo.png b/blockchains/ethereum/assets/0xEeB4d8400AEefafC1B2953e0094134A887C76Bd8/logo.png new file mode 100644 index 0000000000000..7efeb939cfaa8 Binary files /dev/null and b/blockchains/ethereum/assets/0xEeB4d8400AEefafC1B2953e0094134A887C76Bd8/logo.png differ diff --git a/blockchains/ethereum/assets/0xF0372e226553aF4F343b44111A789f87A9fa427A/info.json b/blockchains/ethereum/assets/0xF0372e226553aF4F343b44111A789f87A9fa427A/info.json new file mode 100644 index 0000000000000..55bbb517027ba --- /dev/null +++ b/blockchains/ethereum/assets/0xF0372e226553aF4F343b44111A789f87A9fa427A/info.json @@ -0,0 +1,28 @@ +{ + "name": "Oklo (Ondo Tokenized)", + "type": "ERC20", + "symbol": "OKLOon", + "decimals": 18, + "description": "OKLOon is the Ondo Tokenized version of Oklo, giving tokenholders economic exposure similar to holding OKLO and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xF0372e226553aF4F343b44111A789f87A9fa427A", + "status": "active", + "id": "0xF0372e226553aF4F343b44111A789f87A9fa427A", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/oklo-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/oklo-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF0372e226553aF4F343b44111A789f87A9fa427A/logo.png b/blockchains/ethereum/assets/0xF0372e226553aF4F343b44111A789f87A9fa427A/logo.png new file mode 100644 index 0000000000000..9bfe6ec7b0b65 Binary files /dev/null and b/blockchains/ethereum/assets/0xF0372e226553aF4F343b44111A789f87A9fa427A/logo.png differ diff --git a/blockchains/ethereum/assets/0xF042cfa86cf1D598a75Bdb55c3507a1F39f9493b/info.json b/blockchains/ethereum/assets/0xF042cfa86cf1D598a75Bdb55c3507a1F39f9493b/info.json new file mode 100644 index 0000000000000..8dc5953a63dab --- /dev/null +++ b/blockchains/ethereum/assets/0xF042cfa86cf1D598a75Bdb55c3507a1F39f9493b/info.json @@ -0,0 +1,24 @@ +{ + "name": "Coinbase (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "COINon is the Ondo Tokenized version of Coinbase, giving tokenholders economic exposure similar to holding COIN and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xF042cfa86cf1D598a75Bdb55c3507a1F39f9493b", + "type": "ERC20", + "symbol": "COINon", + "decimals": 18, + "status": "active", + "id": "0xF042cfa86cf1D598a75Bdb55c3507a1F39f9493b", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coinbase-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF042cfa86cf1D598a75Bdb55c3507a1F39f9493b/logo.png b/blockchains/ethereum/assets/0xF042cfa86cf1D598a75Bdb55c3507a1F39f9493b/logo.png new file mode 100644 index 0000000000000..f73aeccf8ed07 Binary files /dev/null and b/blockchains/ethereum/assets/0xF042cfa86cf1D598a75Bdb55c3507a1F39f9493b/logo.png differ diff --git a/blockchains/ethereum/assets/0xF05Ad9840924EA6f977EBccb3b1da87e31DcD0B4/info.json b/blockchains/ethereum/assets/0xF05Ad9840924EA6f977EBccb3b1da87e31DcD0B4/info.json new file mode 100644 index 0000000000000..2eb1161ab6868 --- /dev/null +++ b/blockchains/ethereum/assets/0xF05Ad9840924EA6f977EBccb3b1da87e31DcD0B4/info.json @@ -0,0 +1,28 @@ +{ + "name": "Exxon Mobil (Ondo Tokenized)", + "type": "ERC20", + "symbol": "XOMon", + "decimals": 18, + "description": "XOMon is the Ondo Tokenized version of Exxon Mobil, giving tokenholders economic exposure similar to holding XOM and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xF05Ad9840924EA6f977EBccb3b1da87e31DcD0B4", + "status": "active", + "id": "0xF05Ad9840924EA6f977EBccb3b1da87e31DcD0B4", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/exxon-mobil-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/exxon-mobil-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF05Ad9840924EA6f977EBccb3b1da87e31DcD0B4/logo.png b/blockchains/ethereum/assets/0xF05Ad9840924EA6f977EBccb3b1da87e31DcD0B4/logo.png new file mode 100644 index 0000000000000..c1d43656ce7fc Binary files /dev/null and b/blockchains/ethereum/assets/0xF05Ad9840924EA6f977EBccb3b1da87e31DcD0B4/logo.png differ diff --git a/blockchains/ethereum/assets/0xF063fE1aB7a291c5d06a86e14730b00BF24cB589/info.json b/blockchains/ethereum/assets/0xF063fE1aB7a291c5d06a86e14730b00BF24cB589/info.json index ddb152a86b9e0..bb53085ef28fd 100644 --- a/blockchains/ethereum/assets/0xF063fE1aB7a291c5d06a86e14730b00BF24cB589/info.json +++ b/blockchains/ethereum/assets/0xF063fE1aB7a291c5d06a86e14730b00BF24cB589/info.json @@ -10,8 +10,8 @@ "id": "0xF063fE1aB7a291c5d06a86e14730b00BF24cB589", "links": [ { - "name": "twitter", - "url": "https://twitter.com/dxsale" + "name": "x", + "url": "https://x.com/dxsale" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xF10c41cA085FC8d9326a65408D14Dae28A3E69a5/info.json b/blockchains/ethereum/assets/0xF10c41cA085FC8d9326a65408D14Dae28A3E69a5/info.json new file mode 100644 index 0000000000000..613c951c1d1ed --- /dev/null +++ b/blockchains/ethereum/assets/0xF10c41cA085FC8d9326a65408D14Dae28A3E69a5/info.json @@ -0,0 +1,17 @@ +{ + "name": "ISLM", + "type": "ERC20", + "symbol": "ISLM", + "decimals": 18, + "website": "https://islamiccoin.net/", + "description": "Islamic coin is the native currency of HAQQ, an ethics first, scalable and interoperable blockchain built on Proof-of-Stake with fast finality.", + "explorer": "https://etherscan.io/token/0xf10c41ca085fc8d9326a65408d14dae28a3e69a5", + "status": "active", + "id": "0xF10c41cA085FC8d9326a65408D14Dae28A3E69a5", + "links": [ + { + "name": "x", + "url": "https://x.com/Islamic_coin" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF10c41cA085FC8d9326a65408D14Dae28A3E69a5/logo.png b/blockchains/ethereum/assets/0xF10c41cA085FC8d9326a65408D14Dae28A3E69a5/logo.png new file mode 100644 index 0000000000000..a8677b4eafcd8 Binary files /dev/null and b/blockchains/ethereum/assets/0xF10c41cA085FC8d9326a65408D14Dae28A3E69a5/logo.png differ diff --git a/blockchains/ethereum/assets/0xF17e65822b568B3903685a7c9F496CF7656Cc6C2/info.json b/blockchains/ethereum/assets/0xF17e65822b568B3903685a7c9F496CF7656Cc6C2/info.json index 935dd847ec11e..173813b5d80c1 100644 --- a/blockchains/ethereum/assets/0xF17e65822b568B3903685a7c9F496CF7656Cc6C2/info.json +++ b/blockchains/ethereum/assets/0xF17e65822b568B3903685a7c9F496CF7656Cc6C2/info.json @@ -10,8 +10,8 @@ "id": "0xF17e65822b568B3903685a7c9F496CF7656Cc6C2", "links": [ { - "name": "twitter", - "url": "https://twitter.com/biconomy" + "name": "x", + "url": "https://x.com/biconomy" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xF19308F923582A6f7c465e5CE7a9Dc1BEC6665B1/info.json b/blockchains/ethereum/assets/0xF19308F923582A6f7c465e5CE7a9Dc1BEC6665B1/info.json new file mode 100644 index 0000000000000..f279da0e40534 --- /dev/null +++ b/blockchains/ethereum/assets/0xF19308F923582A6f7c465e5CE7a9Dc1BEC6665B1/info.json @@ -0,0 +1,21 @@ +{ + "name": "TITAN X", + "website": "https://app.titanx.win/mine", + "description": "TITAN X has first-of-its-kind tokenomics with 62%+ buy & burn, 28%+ ETH yield and is an application layer crypto that others can build on.", + "explorer": "https://etherscan.io/token/0xf19308f923582a6f7c465e5ce7a9dc1bec6665b1", + "type": "ERC20", + "symbol": "TITANX", + "decimals": 18, + "status": "active", + "id": "0xF19308F923582A6f7c465e5CE7a9Dc1BEC6665B1", + "links": [ + { + "name": "x", + "url": "https://x.com/TitanXCrypto" + }, + { + "name": "telegram", + "url": "https://t.me/TitanXCrypto" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF19308F923582A6f7c465e5CE7a9Dc1BEC6665B1/logo.png b/blockchains/ethereum/assets/0xF19308F923582A6f7c465e5CE7a9Dc1BEC6665B1/logo.png new file mode 100644 index 0000000000000..2cfc6ce01c6c0 Binary files /dev/null and b/blockchains/ethereum/assets/0xF19308F923582A6f7c465e5CE7a9Dc1BEC6665B1/logo.png differ diff --git a/blockchains/ethereum/assets/0xF1A7000000950C7ad8Aff13118Bb7aB561A448ee/info.json b/blockchains/ethereum/assets/0xF1A7000000950C7ad8Aff13118Bb7aB561A448ee/info.json new file mode 100644 index 0000000000000..5bb3d0d9a5a78 --- /dev/null +++ b/blockchains/ethereum/assets/0xF1A7000000950C7ad8Aff13118Bb7aB561A448ee/info.json @@ -0,0 +1,21 @@ +{ + "name": "Flayer", + "type": "ERC20", + "symbol": "FLAY", + "decimals": 18, + "website": "https://www.flayer.io", + "description": "In this white paper, we introduce the ƒlayer protocol: a novel solution for providing fungible liquidity to non-fungible token (NFT) collections", + "explorer": "https://etherscan.io/token/0xf1a7000000950c7ad8aff13118bb7ab561a448ee", + "status": "active", + "id": "0xF1A7000000950C7ad8Aff13118Bb7aB561A448ee", + "links": [ + { + "name": "x", + "url": "https://x.com/Flaunchgg" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/flayer" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF1A7000000950C7ad8Aff13118Bb7aB561A448ee/logo.png b/blockchains/ethereum/assets/0xF1A7000000950C7ad8Aff13118Bb7aB561A448ee/logo.png new file mode 100644 index 0000000000000..b87a5502da938 Binary files /dev/null and b/blockchains/ethereum/assets/0xF1A7000000950C7ad8Aff13118Bb7aB561A448ee/logo.png differ diff --git a/blockchains/ethereum/assets/0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A/info.json b/blockchains/ethereum/assets/0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A/info.json new file mode 100644 index 0000000000000..173fe9f74c27b --- /dev/null +++ b/blockchains/ethereum/assets/0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bitgert", + "type": "ERC20", + "symbol": "BRISE", + "decimals": 9, + "website": "https://bitgert.com/", + "description": "Bitgert is a revolutionary crypto engineering organization that aims to revolutionize the way people interact with digital assets. Through their numerous projects, Bitgert has created a comprehensive ecosystem of products that cover all aspects of digital asset ownership.", + "explorer": "https://etherscan.io/token/0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A", + "status": "active", + "id": "0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A", + "links": [ + { + "name": "x", + "url": "https://x.com/bitgertbrise" + }, + { + "name": "telegram", + "url": "https://t.me/bitgertbrise" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A/logo.png b/blockchains/ethereum/assets/0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A/logo.png new file mode 100644 index 0000000000000..4f1ec8dede0d1 Binary files /dev/null and b/blockchains/ethereum/assets/0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A/logo.png differ diff --git a/blockchains/ethereum/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/info.json b/blockchains/ethereum/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/info.json index b6bb98e07c2d1..de6eac44a8c0a 100644 --- a/blockchains/ethereum/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/info.json +++ b/blockchains/ethereum/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/info.json @@ -10,8 +10,8 @@ "id": "0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c", "links": [ { - "name": "twitter", - "url": "https://twitter.com/GroveToken" + "name": "x", + "url": "https://x.com/GroveToken" }, { "name": "facebook", @@ -21,4 +21,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF3A3023e6Dede84AD88a656A3269F2A36e83c9a9/info.json b/blockchains/ethereum/assets/0xF3A3023e6Dede84AD88a656A3269F2A36e83c9a9/info.json index bd427d97de14e..c4c63977046ee 100644 --- a/blockchains/ethereum/assets/0xF3A3023e6Dede84AD88a656A3269F2A36e83c9a9/info.json +++ b/blockchains/ethereum/assets/0xF3A3023e6Dede84AD88a656A3269F2A36e83c9a9/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/SharbiPortal" }, { - "name": "twitter", - "url": "https://twitter.com/SharbiToken" + "name": "x", + "url": "https://x.com/SharbiToken" } ], "tags": [ diff --git a/blockchains/ethereum/assets/0xF3e4872e6a4cF365888D93b6146a2bAA7348F1A4/info.json b/blockchains/ethereum/assets/0xF3e4872e6a4cF365888D93b6146a2bAA7348F1A4/info.json new file mode 100644 index 0000000000000..6ef9edaa1acde --- /dev/null +++ b/blockchains/ethereum/assets/0xF3e4872e6a4cF365888D93b6146a2bAA7348F1A4/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Silver Trust (Ondo)", + "website": "https://ondo.finance/", + "description": "SLVon is the Ondo Tokenized version of the iShares Silver Trust, giving tokenholders economic exposure similar to holding SLV and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xF3e4872e6a4cF365888D93b6146a2bAA7348F1A4", + "type": "ERC20", + "symbol": "SLVon", + "decimals": 18, + "status": "active", + "id": "0xF3e4872e6a4cF365888D93b6146a2bAA7348F1A4", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-silver-trust-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF3e4872e6a4cF365888D93b6146a2bAA7348F1A4/logo.png b/blockchains/ethereum/assets/0xF3e4872e6a4cF365888D93b6146a2bAA7348F1A4/logo.png new file mode 100644 index 0000000000000..140fda8b3582b Binary files /dev/null and b/blockchains/ethereum/assets/0xF3e4872e6a4cF365888D93b6146a2bAA7348F1A4/logo.png differ diff --git a/blockchains/ethereum/assets/0xF404E5f887dBd5508e16a1198fCDD5DE1A4296B8/info.json b/blockchains/ethereum/assets/0xF404E5f887dBd5508e16a1198fCDD5DE1A4296B8/info.json new file mode 100644 index 0000000000000..6b48a987202e4 --- /dev/null +++ b/blockchains/ethereum/assets/0xF404E5f887dBd5508e16a1198fCDD5DE1A4296B8/info.json @@ -0,0 +1,24 @@ +{ + "name": "Marvell Technology (Ondo)", + "website": "https://ondo.finance/", + "description": "MRVLon is the Ondo Tokenized version of Marvell Technology, giving tokenholders economic exposure similar to holding MRVL and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xF404E5f887dBd5508e16a1198fCDD5DE1A4296B8", + "type": "ERC20", + "symbol": "MRVLon", + "decimals": 18, + "status": "active", + "id": "0xF404E5f887dBd5508e16a1198fCDD5DE1A4296B8", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/marvell-technology-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF404E5f887dBd5508e16a1198fCDD5DE1A4296B8/logo.png b/blockchains/ethereum/assets/0xF404E5f887dBd5508e16a1198fCDD5DE1A4296B8/logo.png new file mode 100644 index 0000000000000..d5eb73f18951d Binary files /dev/null and b/blockchains/ethereum/assets/0xF404E5f887dBd5508e16a1198fCDD5DE1A4296B8/logo.png differ diff --git a/blockchains/ethereum/assets/0xF46BA88694cd7933Ca28Be84EE787Ad5732e856B/info.json b/blockchains/ethereum/assets/0xF46BA88694cd7933Ca28Be84EE787Ad5732e856B/info.json new file mode 100644 index 0000000000000..c26178246316d --- /dev/null +++ b/blockchains/ethereum/assets/0xF46BA88694cd7933Ca28Be84EE787Ad5732e856B/info.json @@ -0,0 +1,28 @@ +{ + "name": "NextEra Energy (Ondo Tokenized)", + "type": "ERC20", + "symbol": "NEEon", + "decimals": 18, + "description": "NEEon is the Ondo Tokenized version of NextEra Energy, giving tokenholders economic exposure similar to holding NEE and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xF46BA88694cd7933Ca28Be84EE787Ad5732e856B", + "status": "active", + "id": "0xF46BA88694cd7933Ca28Be84EE787Ad5732e856B", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/nextera-energy-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nextera-energy-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF46BA88694cd7933Ca28Be84EE787Ad5732e856B/logo.png b/blockchains/ethereum/assets/0xF46BA88694cd7933Ca28Be84EE787Ad5732e856B/logo.png new file mode 100644 index 0000000000000..99c8e900bc209 Binary files /dev/null and b/blockchains/ethereum/assets/0xF46BA88694cd7933Ca28Be84EE787Ad5732e856B/logo.png differ diff --git a/blockchains/ethereum/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/info.json b/blockchains/ethereum/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/info.json index 65d342e8410d4..9a955a44d116b 100644 --- a/blockchains/ethereum/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/info.json +++ b/blockchains/ethereum/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/info.json @@ -6,7 +6,7 @@ "type": "ERC20", "symbol": "BBANK", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xF4b5470523cCD314C6B9dA041076e7D79E0Df267", "links": [ { @@ -14,8 +14,8 @@ "url": "https://github.com/BlockBank-team/" }, { - "name": "twitter", - "url": "https://twitter.com/BLOCKBANKapp?s=09" + "name": "x", + "url": "https://x.com/BLOCKBANKapp?s=09" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/logo.png b/blockchains/ethereum/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/logo.png deleted file mode 100644 index d7ce5e9cec876..0000000000000 Binary files a/blockchains/ethereum/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0xF56bd63Ac2D14c397A754E0bdFcE020baa44f214/info.json b/blockchains/ethereum/assets/0xF56bd63Ac2D14c397A754E0bdFcE020baa44f214/info.json new file mode 100644 index 0000000000000..5cef37d390191 --- /dev/null +++ b/blockchains/ethereum/assets/0xF56bd63Ac2D14c397A754E0bdFcE020baa44f214/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tethor USD", + "type": "ERC20", + "symbol": "FAKE USDT.a", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://etherscan.io/token/0xf56bd63ac2d14c397a754e0bdfce020baa44f214", + "explorer": "https://etherscan.io/token/0xf56bd63ac2d14c397a754e0bdfce020baa44f214", + "status": "spam", + "id": "0xF56bd63Ac2D14c397A754E0bdFcE020baa44f214" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF57e7e7C23978C3cAEC3C3548E3D615c346e79fF/info.json b/blockchains/ethereum/assets/0xF57e7e7C23978C3cAEC3C3548E3D615c346e79fF/info.json index 4094292c31f62..36610dcde4d64 100644 --- a/blockchains/ethereum/assets/0xF57e7e7C23978C3cAEC3C3548E3D615c346e79fF/info.json +++ b/blockchains/ethereum/assets/0xF57e7e7C23978C3cAEC3C3548E3D615c346e79fF/info.json @@ -10,8 +10,8 @@ "id": "0xF57e7e7C23978C3cAEC3C3548E3D615c346e79fF", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Immutable" + "name": "x", + "url": "https://x.com/Immutable" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xF5D0FefAaB749d8B14C27F0De60cC6e9e7f848d1/info.json b/blockchains/ethereum/assets/0xF5D0FefAaB749d8B14C27F0De60cC6e9e7f848d1/info.json index b962bef2f5fb4..9545db4a2a8fe 100644 --- a/blockchains/ethereum/assets/0xF5D0FefAaB749d8B14C27F0De60cC6e9e7f848d1/info.json +++ b/blockchains/ethereum/assets/0xF5D0FefAaB749d8B14C27F0De60cC6e9e7f848d1/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/yffsfinance" }, { - "name": "twitter", - "url": "https://twitter.com/yffsfinance" + "name": "x", + "url": "https://x.com/yffsfinance" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c/info.json b/blockchains/ethereum/assets/0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c/info.json index c42905ba0541c..30b291124714e 100644 --- a/blockchains/ethereum/assets/0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c/info.json +++ b/blockchains/ethereum/assets/0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c/info.json @@ -18,8 +18,8 @@ "url": "https://github.com/enjin/contracts" }, { - "name": "twitter", - "url": "https://twitter.com/enjincs" + "name": "x", + "url": "https://x.com/enjincs" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0xF63E309818E4EA13782678CE6C31C1234fa61809/info.json b/blockchains/ethereum/assets/0xF63E309818E4EA13782678CE6C31C1234fa61809/info.json new file mode 100644 index 0000000000000..eab31bc527d07 --- /dev/null +++ b/blockchains/ethereum/assets/0xF63E309818E4EA13782678CE6C31C1234fa61809/info.json @@ -0,0 +1,21 @@ +{ + "name": "Janet", + "type": "ERC20", + "symbol": "JANET", + "decimals": 8, + "website": "https://janeteth.ai/", + "description": "Neural Janet ($JANET) is an Ethereum-based meme token that channels the charm of an AI NPC sharing random, witty thoughts online.", + "explorer": "https://etherscan.io/token/0xF63E309818E4EA13782678CE6C31C1234fa61809", + "status": "active", + "id": "0xF63E309818E4EA13782678CE6C31C1234fa61809", + "links": [ + { + "name": "x", + "url": "https://x.com/NeuralJanet" + }, + { + "name": "telegram", + "url": "https://t.me/janetethereum" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF63E309818E4EA13782678CE6C31C1234fa61809/logo.png b/blockchains/ethereum/assets/0xF63E309818E4EA13782678CE6C31C1234fa61809/logo.png new file mode 100644 index 0000000000000..a954175a779b7 Binary files /dev/null and b/blockchains/ethereum/assets/0xF63E309818E4EA13782678CE6C31C1234fa61809/logo.png differ diff --git a/blockchains/ethereum/assets/0xF6Ce4BE313EaD51511215F1874c898239A331E37/info.json b/blockchains/ethereum/assets/0xF6Ce4BE313EaD51511215F1874c898239A331E37/info.json new file mode 100644 index 0000000000000..006ece2afe594 --- /dev/null +++ b/blockchains/ethereum/assets/0xF6Ce4BE313EaD51511215F1874c898239A331E37/info.json @@ -0,0 +1,17 @@ +{ + "name": "Bird Dog", + "type": "ERC20", + "symbol": "BIRDDOG", + "decimals": 9, + "website": "https://birddogonerc.com", + "description": "BirdDog is going to usher a new wave of memetoken to last till the end of times", + "explorer": "https://etherscan.io/token/0xF6Ce4BE313EaD51511215F1874c898239A331E37", + "status": "active", + "id": "0xF6Ce4BE313EaD51511215F1874c898239A331E37", + "links": [ + { + "name": "x", + "url": "https://x.com/Birddog_base" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF6Ce4BE313EaD51511215F1874c898239A331E37/logo.png b/blockchains/ethereum/assets/0xF6Ce4BE313EaD51511215F1874c898239A331E37/logo.png new file mode 100644 index 0000000000000..07935d0e4a077 Binary files /dev/null and b/blockchains/ethereum/assets/0xF6Ce4BE313EaD51511215F1874c898239A331E37/logo.png differ diff --git a/blockchains/ethereum/assets/0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1/info.json b/blockchains/ethereum/assets/0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1/info.json new file mode 100644 index 0000000000000..a9a17a0b76939 --- /dev/null +++ b/blockchains/ethereum/assets/0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1/info.json @@ -0,0 +1,15 @@ +{ + "name": "Schwab International Equity xStock", + "type": "ERC20", + "symbol": "SCHFx", + "decimals": 18, + "description": "Schwab International Equity xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://etherscan.io/token/0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1", + "status": "active", + "id": "0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1/logo.png b/blockchains/ethereum/assets/0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1/logo.png new file mode 100644 index 0000000000000..d55ca6edb40ba Binary files /dev/null and b/blockchains/ethereum/assets/0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1/logo.png differ diff --git a/blockchains/ethereum/assets/0xF719b02079E0FaA5450392DA2D3e11a1e5b0EADB/info.json b/blockchains/ethereum/assets/0xF719b02079E0FaA5450392DA2D3e11a1e5b0EADB/info.json new file mode 100644 index 0000000000000..884787d4fa6a5 --- /dev/null +++ b/blockchains/ethereum/assets/0xF719b02079E0FaA5450392DA2D3e11a1e5b0EADB/info.json @@ -0,0 +1,28 @@ +{ + "name": "Caterpillar (Ondo Tokenized)", + "type": "ERC20", + "symbol": "CATon", + "decimals": 18, + "description": "CATon is the Ondo Tokenized version of Caterpillar, giving tokenholders economic exposure similar to holding CAT and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xF719b02079E0FaA5450392DA2D3e11a1e5b0EADB", + "status": "active", + "id": "0xF719b02079E0FaA5450392DA2D3e11a1e5b0EADB", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/caterpillar-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/caterpillar-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF719b02079E0FaA5450392DA2D3e11a1e5b0EADB/logo.png b/blockchains/ethereum/assets/0xF719b02079E0FaA5450392DA2D3e11a1e5b0EADB/logo.png new file mode 100644 index 0000000000000..935dd2c8bbe10 Binary files /dev/null and b/blockchains/ethereum/assets/0xF719b02079E0FaA5450392DA2D3e11a1e5b0EADB/logo.png differ diff --git a/blockchains/ethereum/assets/0xF83A665793A40695B98334CbC06FB525BE8d02c7/info.json b/blockchains/ethereum/assets/0xF83A665793A40695B98334CbC06FB525BE8d02c7/info.json new file mode 100644 index 0000000000000..a1a16ea4dedcd --- /dev/null +++ b/blockchains/ethereum/assets/0xF83A665793A40695B98334CbC06FB525BE8d02c7/info.json @@ -0,0 +1,22 @@ +{ + "name": "fija crvUSD CurveConvex FIFI", + "type": "ERC20", + "symbol": "fcrvUSD", + "decimals": 18, + "description": "fcrvUSD is a utility token that represents the crvUSD stablecoins deposited into the fija USD Yield Master strategy and the yields they generate. The token enables transparent access to the deposited assets and their returns. Within the strategy, liquidity is provided to Curve pools of crvUSD paired with USDT and USDC, where holders benefit from trading fees and CRV incentives. fcrvUSD simplifies this process into a single, easy-to-use token.", + "website": "https://www.fija.finance", + "explorer": "https://etherscan.io/token/0xF83A665793A40695B98334CbC06FB525BE8d02c7", + "status": "active", + "id": "0xF83A665793A40695B98334CbC06FB525BE8d02c7", + "links": [ + { + "name": "x", + "url": "https://x.com/fija_finance" + }, + { + "name": "docs", + "url": "https://fija.finance/docs" + } + ], + "tags": ["defi"] +} diff --git a/blockchains/ethereum/assets/0xF83A665793A40695B98334CbC06FB525BE8d02c7/logo.png b/blockchains/ethereum/assets/0xF83A665793A40695B98334CbC06FB525BE8d02c7/logo.png new file mode 100644 index 0000000000000..9ae7d3e005f85 Binary files /dev/null and b/blockchains/ethereum/assets/0xF83A665793A40695B98334CbC06FB525BE8d02c7/logo.png differ diff --git a/blockchains/ethereum/assets/0xF944e35f95E819E752f3cCB5Faf40957d311e8c5/info.json b/blockchains/ethereum/assets/0xF944e35f95E819E752f3cCB5Faf40957d311e8c5/info.json new file mode 100644 index 0000000000000..ac24899bf9046 --- /dev/null +++ b/blockchains/ethereum/assets/0xF944e35f95E819E752f3cCB5Faf40957d311e8c5/info.json @@ -0,0 +1,29 @@ +{ + "name": "Moca", + "type": "ERC20", + "symbol": "MOCA", + "decimals": 18, + "description": "Moca Network is building the chain-agnostic digital identity infrastructure for the open internet - one universal account for your assets, identity, and reputation across multiple ecosystems. Moca Network leverages Animoca Brands portfolio ecosystem of 540+ companies to tap into 700M+ addressable users.", + "website": "https://www.mocaverse.xyz/", + "explorer": "https://etherscan.io/token/0xf944e35f95e819e752f3ccb5faf40957d311e8c5", + "id": "0xF944e35f95E819E752f3cCB5Faf40957d311e8c5", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/MocaverseNFT" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mocaverse/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/moca-coin" + } + ], + "tags": [ + "nft" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF944e35f95E819E752f3cCB5Faf40957d311e8c5/logo.png b/blockchains/ethereum/assets/0xF944e35f95E819E752f3cCB5Faf40957d311e8c5/logo.png new file mode 100644 index 0000000000000..fc396f335284c Binary files /dev/null and b/blockchains/ethereum/assets/0xF944e35f95E819E752f3cCB5Faf40957d311e8c5/logo.png differ diff --git a/blockchains/ethereum/assets/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e/info.json b/blockchains/ethereum/assets/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e/info.json new file mode 100644 index 0000000000000..4b404fe849066 --- /dev/null +++ b/blockchains/ethereum/assets/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e/info.json @@ -0,0 +1,24 @@ +{ + "name": "Novo Nordisk tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Novo Nordisk xStock (NVOx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. NVOx tracks the price of Novo Nordisk A/S, (the underlying). NVOx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Novo Nordisk A/S, whilst maintaining the benefits of blockchain technology. Novo Nordisk is a leading global healthcare company, founded in 1923 and headquartered in Denmark.", + "explorer": "https://etherscan.io/token/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e", + "type": "ERC20", + "symbol": "NVOX", + "decimals": 18, + "status": "active", + "id": "0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/novo-nordisk-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e/logo.png b/blockchains/ethereum/assets/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e/logo.png new file mode 100644 index 0000000000000..c866fd6193ce8 Binary files /dev/null and b/blockchains/ethereum/assets/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e/logo.png differ diff --git a/blockchains/ethereum/assets/0xFA9f0Bf8baa9A3D5E0a8E5c0AeAF186ACaBef63D/info.json b/blockchains/ethereum/assets/0xFA9f0Bf8baa9A3D5E0a8E5c0AeAF186ACaBef63D/info.json new file mode 100644 index 0000000000000..0f4366043dc9b --- /dev/null +++ b/blockchains/ethereum/assets/0xFA9f0Bf8baa9A3D5E0a8E5c0AeAF186ACaBef63D/info.json @@ -0,0 +1,28 @@ +{ + "name": "Coupang (Ondo Tokenized)", + "type": "ERC20", + "symbol": "CPNGon", + "decimals": 18, + "description": "CPNGon is the Ondo Tokenized version of Coupang, giving tokenholders economic exposure similar to holding CPNG and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xFA9f0Bf8baa9A3D5E0a8E5c0AeAF186ACaBef63D", + "status": "active", + "id": "0xFA9f0Bf8baa9A3D5E0a8E5c0AeAF186ACaBef63D", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/coupang-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coupang-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFA9f0Bf8baa9A3D5E0a8E5c0AeAF186ACaBef63D/logo.png b/blockchains/ethereum/assets/0xFA9f0Bf8baa9A3D5E0a8E5c0AeAF186ACaBef63D/logo.png new file mode 100644 index 0000000000000..96cbf3b06fbf9 Binary files /dev/null and b/blockchains/ethereum/assets/0xFA9f0Bf8baa9A3D5E0a8E5c0AeAF186ACaBef63D/logo.png differ diff --git a/blockchains/ethereum/assets/0xFAD44249C2cd1F661BAc5f97C2Ff9f625ce27197/info.json b/blockchains/ethereum/assets/0xFAD44249C2cd1F661BAc5f97C2Ff9f625ce27197/info.json index 150ca0a75e00e..6b338cff93700 100644 --- a/blockchains/ethereum/assets/0xFAD44249C2cd1F661BAc5f97C2Ff9f625ce27197/info.json +++ b/blockchains/ethereum/assets/0xFAD44249C2cd1F661BAc5f97C2Ff9f625ce27197/info.json @@ -10,8 +10,8 @@ "id": "0xFAD44249C2cd1F661BAc5f97C2Ff9f625ce27197", "links": [ { - "name": "twitter", - "url": "https://twitter.com/GREY_____SUPPLY" + "name": "x", + "url": "https://x.com/GREY_____SUPPLY" }, { "name": "discord", @@ -21,4 +21,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFAe103DC9cf190eD75350761e95403b7b8aFa6c0/info.json b/blockchains/ethereum/assets/0xFAe103DC9cf190eD75350761e95403b7b8aFa6c0/info.json new file mode 100644 index 0000000000000..bd4f73176472c --- /dev/null +++ b/blockchains/ethereum/assets/0xFAe103DC9cf190eD75350761e95403b7b8aFa6c0/info.json @@ -0,0 +1,21 @@ +{ + "name": "rswETH", + "type": "ERC20", + "symbol": "rswETH", + "decimals": 18, + "website": "https://www.swellnetwork.io/", + "description": "Restaked Swell ETH (rswETH) is a LRT that unlocks liquidity for restaked LSTs", + "explorer": "https://etherscan.io/token/0xfae103dc9cf190ed75350761e95403b7b8afa6c0", + "status": "active", + "id": "0xFAe103DC9cf190eD75350761e95403b7b8aFa6c0", + "links": [ + { + "name": "x", + "url": "https://x.com/swellnetworkio" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/restaked-swell-ethereum/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFAe103DC9cf190eD75350761e95403b7b8aFa6c0/logo.png b/blockchains/ethereum/assets/0xFAe103DC9cf190eD75350761e95403b7b8aFa6c0/logo.png new file mode 100644 index 0000000000000..36082c9b9f48b Binary files /dev/null and b/blockchains/ethereum/assets/0xFAe103DC9cf190eD75350761e95403b7b8aFa6c0/logo.png differ diff --git a/blockchains/ethereum/assets/0xFB19C03a02a519a44542343803F3D42578CBc243/info.json b/blockchains/ethereum/assets/0xFB19C03a02a519a44542343803F3D42578CBc243/info.json index eaf5aaecf4fc7..c67aae4f5f164 100644 --- a/blockchains/ethereum/assets/0xFB19C03a02a519a44542343803F3D42578CBc243/info.json +++ b/blockchains/ethereum/assets/0xFB19C03a02a519a44542343803F3D42578CBc243/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/joinchat/4mPn7zVK0vgyYmQx" }, { - "name": "twitter", - "url": "https://twitter.com/crcointoken" + "name": "x", + "url": "https://x.com/crcointoken" }, { "name": "coingecko", diff --git a/blockchains/ethereum/assets/0xFC003a764a7B5054Cc6fDb6b511F35deC8022751/info.json b/blockchains/ethereum/assets/0xFC003a764a7B5054Cc6fDb6b511F35deC8022751/info.json new file mode 100644 index 0000000000000..e3446eb7503d6 --- /dev/null +++ b/blockchains/ethereum/assets/0xFC003a764a7B5054Cc6fDb6b511F35deC8022751/info.json @@ -0,0 +1,24 @@ +{ + "name": "Vertex Pharmaceuticals (Ondo Tokenized)", + "type": "ERC20", + "symbol": "VRTXon", + "decimals": 18, + "description": "VRTXon is the Ondo Tokenized version of Vertex Pharmaceuticals, giving tokenholders economic exposure similar to holding VRTX and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xFC003a764a7B5054Cc6fDb6b511F35deC8022751", + "status": "active", + "id": "0xFC003a764a7B5054Cc6fDb6b511F35deC8022751", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vertex-pharmaceuticals-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFC003a764a7B5054Cc6fDb6b511F35deC8022751/logo.png b/blockchains/ethereum/assets/0xFC003a764a7B5054Cc6fDb6b511F35deC8022751/logo.png new file mode 100644 index 0000000000000..312aef2864921 Binary files /dev/null and b/blockchains/ethereum/assets/0xFC003a764a7B5054Cc6fDb6b511F35deC8022751/logo.png differ diff --git a/blockchains/ethereum/assets/0xFD957F21bd95E723645C07C48a2d8ACB8Ffb3794/info.json b/blockchains/ethereum/assets/0xFD957F21bd95E723645C07C48a2d8ACB8Ffb3794/info.json index 93946fea60c7f..48c1e65cca502 100644 --- a/blockchains/ethereum/assets/0xFD957F21bd95E723645C07C48a2d8ACB8Ffb3794/info.json +++ b/blockchains/ethereum/assets/0xFD957F21bd95E723645C07C48a2d8ACB8Ffb3794/info.json @@ -6,12 +6,12 @@ "description": "Ethereum Meta addresses a major weakness in Ethereum: the lack of privacy. Ethereum Meta enables smart contracts where no friend, family, nor foe can see what you bought or for how much.", "website": "https://ethermeta.com", "explorer": "https://etherscan.io/token/0xFD957F21bd95E723645C07C48a2d8ACB8Ffb3794", - "status": "active", + "status": "abandoned", "id": "0xFD957F21bd95E723645C07C48a2d8ACB8Ffb3794", "links": [ { - "name": "twitter", - "url": "https://twitter.com/EthereumMeta" + "name": "x", + "url": "https://x.com/EthereumMeta" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xFD957F21bd95E723645C07C48a2d8ACB8Ffb3794/logo.png b/blockchains/ethereum/assets/0xFD957F21bd95E723645C07C48a2d8ACB8Ffb3794/logo.png deleted file mode 100644 index a997d8b7341c0..0000000000000 Binary files a/blockchains/ethereum/assets/0xFD957F21bd95E723645C07C48a2d8ACB8Ffb3794/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0xFE3E6a25e6b192A42a44ecDDCd13796471735ACf/info.json b/blockchains/ethereum/assets/0xFE3E6a25e6b192A42a44ecDDCd13796471735ACf/info.json index 9d70c15cbd451..a657e28dcc569 100644 --- a/blockchains/ethereum/assets/0xFE3E6a25e6b192A42a44ecDDCd13796471735ACf/info.json +++ b/blockchains/ethereum/assets/0xFE3E6a25e6b192A42a44ecDDCd13796471735ACf/info.json @@ -11,8 +11,8 @@ "id": "0xFE3E6a25e6b192A42a44ecDDCd13796471735ACf", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ReefDeFi" + "name": "x", + "url": "https://x.com/ReefDeFi" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xFEFf7a377A86462F5a2A872009722C154707F09e/info.json b/blockchains/ethereum/assets/0xFEFf7a377A86462F5a2A872009722C154707F09e/info.json new file mode 100644 index 0000000000000..f14b72a93bb33 --- /dev/null +++ b/blockchains/ethereum/assets/0xFEFf7a377A86462F5a2A872009722C154707F09e/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Core MSCI EAFE (Ondo)", + "website": "https://ondo.finance/", + "description": "IEFAon is the Ondo Tokenized version of the iShares Core MSCI EAFE ETF, giving tokenholders economic exposure similar to holding IEFA and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xFEFf7a377A86462F5a2A872009722C154707F09e", + "type": "ERC20", + "symbol": "IEFAon", + "decimals": 18, + "status": "active", + "id": "0xFEFf7a377A86462F5a2A872009722C154707F09e", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-core-msci-eafe-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFEFf7a377A86462F5a2A872009722C154707F09e/logo.png b/blockchains/ethereum/assets/0xFEFf7a377A86462F5a2A872009722C154707F09e/logo.png new file mode 100644 index 0000000000000..8adf578853fa6 Binary files /dev/null and b/blockchains/ethereum/assets/0xFEFf7a377A86462F5a2A872009722C154707F09e/logo.png differ diff --git a/blockchains/ethereum/assets/0xFEbc25f4c5fc3E90a7eFaE0b4d436A77c9e131B3/info.json b/blockchains/ethereum/assets/0xFEbc25f4c5fc3E90a7eFaE0b4d436A77c9e131B3/info.json index 87223e7db2df3..548206fb54e27 100644 --- a/blockchains/ethereum/assets/0xFEbc25f4c5fc3E90a7eFaE0b4d436A77c9e131B3/info.json +++ b/blockchains/ethereum/assets/0xFEbc25f4c5fc3E90a7eFaE0b4d436A77c9e131B3/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/cezo-os" }, { - "name": "twitter", - "url": "https://twitter.com/cezo_io" + "name": "x", + "url": "https://x.com/cezo_io" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/info.json b/blockchains/ethereum/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/info.json new file mode 100644 index 0000000000000..69ce15a32ee2d --- /dev/null +++ b/blockchains/ethereum/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/info.json @@ -0,0 +1,28 @@ +{ + "name": "Folks Finance", + "type": "ERC20", + "symbol": "FOLKS", + "decimals": 6, + "website": "https://folks.finance", + "description": "Folks Finance is a crosschain decentralized finance (DeFi) protocol that enables users to supply, borrow, and manage digital assets across multiple blockchains from a single platform.", + "explorer": "https://etherscan.io/token/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B", + "status": "active", + "id": "0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B", + "links": [ + { + "name": "x", + "url": "https://x.com/FolksFinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/folks-finance/" + }, + { + "name": "whitepaper", + "url": "https://docs.xapp.folks.finance/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/logo.png b/blockchains/ethereum/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/logo.png new file mode 100644 index 0000000000000..ea3dae362320d Binary files /dev/null and b/blockchains/ethereum/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/logo.png differ diff --git a/blockchains/ethereum/assets/0xFa2B947eEc368f42195f24F36d2aF29f7c24CeC2/info.json b/blockchains/ethereum/assets/0xFa2B947eEc368f42195f24F36d2aF29f7c24CeC2/info.json new file mode 100644 index 0000000000000..2ecb7d738f48b --- /dev/null +++ b/blockchains/ethereum/assets/0xFa2B947eEc368f42195f24F36d2aF29f7c24CeC2/info.json @@ -0,0 +1,17 @@ +{ + "name": "Falcon USD", + "type": "ERC20", + "symbol": "USDf", + "decimals": 18, + "website": "https://falcon.finance/", + "description": "Falcon Finance is a overcollaterized synthetic dollar protocol.", + "explorer": "https://etherscan.io/token/0xFa2B947eEc368f42195f24F36d2aF29f7c24CeC2", + "status": "active", + "id": "0xFa2B947eEc368f42195f24F36d2aF29f7c24CeC2", + "links": [ + { + "name": "x", + "url": "https://x.com/FalconStable" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFa2B947eEc368f42195f24F36d2aF29f7c24CeC2/logo.png b/blockchains/ethereum/assets/0xFa2B947eEc368f42195f24F36d2aF29f7c24CeC2/logo.png new file mode 100644 index 0000000000000..7c35419529700 Binary files /dev/null and b/blockchains/ethereum/assets/0xFa2B947eEc368f42195f24F36d2aF29f7c24CeC2/logo.png differ diff --git a/blockchains/ethereum/assets/0xFa30e62EEDcf80D47d42947fBCc034beeD5C09FE/info.json b/blockchains/ethereum/assets/0xFa30e62EEDcf80D47d42947fBCc034beeD5C09FE/info.json index 151b11b578370..5f976a10652f5 100644 --- a/blockchains/ethereum/assets/0xFa30e62EEDcf80D47d42947fBCc034beeD5C09FE/info.json +++ b/blockchains/ethereum/assets/0xFa30e62EEDcf80D47d42947fBCc034beeD5C09FE/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/loveearthcoin" }, { - "name": "twitter", - "url": "https://twitter.com/LoveEarthCoin" + "name": "x", + "url": "https://x.com/LoveEarthCoin" }, { "name": "whitepaper", diff --git a/blockchains/ethereum/assets/0xFb82561A955bF59B9263301126AF490D3799e231/info.json b/blockchains/ethereum/assets/0xFb82561A955bF59B9263301126AF490D3799e231/info.json new file mode 100644 index 0000000000000..f92fd47592c62 --- /dev/null +++ b/blockchains/ethereum/assets/0xFb82561A955bF59B9263301126AF490D3799e231/info.json @@ -0,0 +1,28 @@ +{ + "name": "WisdomTree Floating Rate Treasury Fund (Ondo Tokenized)", + "type": "ERC20", + "symbol": "USFRon", + "decimals": 18, + "description": "USFRon is the Ondo Tokenized version of the WisdomTree Floating Rate Treasury Fund, giving tokenholders economic exposure similar to holding USFR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xFb82561A955bF59B9263301126AF490D3799e231", + "status": "active", + "id": "0xFb82561A955bF59B9263301126AF490D3799e231", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wisdomtree-floating-rate-treasury-fund-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wisdomtree-floating-rate-treasury-tokenized-fund-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFb82561A955bF59B9263301126AF490D3799e231/logo.png b/blockchains/ethereum/assets/0xFb82561A955bF59B9263301126AF490D3799e231/logo.png new file mode 100644 index 0000000000000..572a5a584d796 Binary files /dev/null and b/blockchains/ethereum/assets/0xFb82561A955bF59B9263301126AF490D3799e231/logo.png differ diff --git a/blockchains/ethereum/assets/0xFbEEa1C75E4c4465CB2FCCc9c6d6afe984558E20/info.json b/blockchains/ethereum/assets/0xFbEEa1C75E4c4465CB2FCCc9c6d6afe984558E20/info.json index fd9d455171971..777a1911b8212 100644 --- a/blockchains/ethereum/assets/0xFbEEa1C75E4c4465CB2FCCc9c6d6afe984558E20/info.json +++ b/blockchains/ethereum/assets/0xFbEEa1C75E4c4465CB2FCCc9c6d6afe984558E20/info.json @@ -10,8 +10,8 @@ "id": "0xFbEEa1C75E4c4465CB2FCCc9c6d6afe984558E20", "links": [ { - "name": "twitter", - "url": "https://twitter.com/dao_duck" + "name": "x", + "url": "https://x.com/dao_duck" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xFd50Fc4E3686a8DA814c5C3D6121d8aB98a537F0/info.json b/blockchains/ethereum/assets/0xFd50Fc4E3686a8DA814c5C3D6121d8aB98a537F0/info.json new file mode 100644 index 0000000000000..7c67c9930c07f --- /dev/null +++ b/blockchains/ethereum/assets/0xFd50Fc4E3686a8DA814c5C3D6121d8aB98a537F0/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Core S&P MidCap ETF (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "IJHon is the Ondo Tokenized version of the iShares Core S&P MidCap ETF, giving tokenholders economic exposure similar to holding IJH and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xFd50Fc4E3686a8DA814c5C3D6121d8aB98a537F0", + "type": "ERC20", + "symbol": "IJHon", + "decimals": 18, + "status": "active", + "id": "0xFd50Fc4E3686a8DA814c5C3D6121d8aB98a537F0", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-core-sp-midcap-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFd50Fc4E3686a8DA814c5C3D6121d8aB98a537F0/logo.png b/blockchains/ethereum/assets/0xFd50Fc4E3686a8DA814c5C3D6121d8aB98a537F0/logo.png new file mode 100644 index 0000000000000..8adf578853fa6 Binary files /dev/null and b/blockchains/ethereum/assets/0xFd50Fc4E3686a8DA814c5C3D6121d8aB98a537F0/logo.png differ diff --git a/blockchains/ethereum/assets/0xFdA09936DbD717368De0835bA441d9E62069d36f/info.json b/blockchains/ethereum/assets/0xFdA09936DbD717368De0835bA441d9E62069d36f/info.json new file mode 100644 index 0000000000000..e0e384b2371bc --- /dev/null +++ b/blockchains/ethereum/assets/0xFdA09936DbD717368De0835bA441d9E62069d36f/info.json @@ -0,0 +1,24 @@ +{ + "name": "Intel (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "INTCon is the Ondo Tokenized version of Intel, giving tokenholders economic exposure similar to holding INTC and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xFdA09936DbD717368De0835bA441d9E62069d36f", + "type": "ERC20", + "symbol": "INTCon", + "decimals": 18, + "status": "active", + "id": "0xFdA09936DbD717368De0835bA441d9E62069d36f", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/intel-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFdA09936DbD717368De0835bA441d9E62069d36f/logo.png b/blockchains/ethereum/assets/0xFdA09936DbD717368De0835bA441d9E62069d36f/logo.png new file mode 100644 index 0000000000000..91dadf1975354 Binary files /dev/null and b/blockchains/ethereum/assets/0xFdA09936DbD717368De0835bA441d9E62069d36f/logo.png differ diff --git a/blockchains/ethereum/assets/0xFe0c30065B384F05761f15d0CC899D4F9F9Cc0eB/info.json b/blockchains/ethereum/assets/0xFe0c30065B384F05761f15d0CC899D4F9F9Cc0eB/info.json new file mode 100644 index 0000000000000..6fe40ffcd0f90 --- /dev/null +++ b/blockchains/ethereum/assets/0xFe0c30065B384F05761f15d0CC899D4F9F9Cc0eB/info.json @@ -0,0 +1,21 @@ +{ + "name": "ether.fi", + "type": "ERC20", + "symbol": "ETHFI", + "decimals": 18, + "website": "https://www.ether.fi/", + "description": "ether.fi is a liquid restaking protocol on ethereum. Their liquid restaking token, eETH, is the first native liquid restaking token on Ethereum.", + "explorer": "https://etherscan.io/token/0xFe0c30065B384F05761f15d0CC899D4F9F9Cc0eB", + "status": "active", + "id": "0xFe0c30065B384F05761f15d0CC899D4F9F9Cc0eB", + "links": [ + { + "name": "x", + "url": "https://x.com/ether_fi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ether-fi-ethfi/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFe0c30065B384F05761f15d0CC899D4F9F9Cc0eB/logo.png b/blockchains/ethereum/assets/0xFe0c30065B384F05761f15d0CC899D4F9F9Cc0eB/logo.png new file mode 100644 index 0000000000000..febeacece3533 Binary files /dev/null and b/blockchains/ethereum/assets/0xFe0c30065B384F05761f15d0CC899D4F9F9Cc0eB/logo.png differ diff --git a/blockchains/ethereum/assets/0xFe2e637202056d30016725477c5da089Ab0A043A/info.json b/blockchains/ethereum/assets/0xFe2e637202056d30016725477c5da089Ab0A043A/info.json index 5094ef814db76..31ebed70a92ab 100644 --- a/blockchains/ethereum/assets/0xFe2e637202056d30016725477c5da089Ab0A043A/info.json +++ b/blockchains/ethereum/assets/0xFe2e637202056d30016725477c5da089Ab0A043A/info.json @@ -10,8 +10,8 @@ "id": "0xFe2e637202056d30016725477c5da089Ab0A043A", "links": [ { - "name": "twitter", - "url": "https://twitter.com/stakewise_io" + "name": "x", + "url": "https://x.com/stakewise_io" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0xFe4eC50E0413148021d2f50d114CC44De6fFBF23/info.json b/blockchains/ethereum/assets/0xFe4eC50E0413148021d2f50d114CC44De6fFBF23/info.json new file mode 100644 index 0000000000000..51a58e22a0d94 --- /dev/null +++ b/blockchains/ethereum/assets/0xFe4eC50E0413148021d2f50d114CC44De6fFBF23/info.json @@ -0,0 +1,28 @@ +{ + "name": "Carvana (Ondo Tokenized)", + "type": "ERC20", + "symbol": "CVNAon", + "decimals": 18, + "description": "CVNAon is the Ondo Tokenized version of Carvana, giving tokenholders economic exposure similar to holding CVNA and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xFe4eC50E0413148021d2f50d114CC44De6fFBF23", + "status": "active", + "id": "0xFe4eC50E0413148021d2f50d114CC44De6fFBF23", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/carvana-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/carvana-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFe4eC50E0413148021d2f50d114CC44De6fFBF23/logo.png b/blockchains/ethereum/assets/0xFe4eC50E0413148021d2f50d114CC44De6fFBF23/logo.png new file mode 100644 index 0000000000000..c6fba3375339f Binary files /dev/null and b/blockchains/ethereum/assets/0xFe4eC50E0413148021d2f50d114CC44De6fFBF23/logo.png differ diff --git a/blockchains/ethereum/assets/0xFeAc2Eae96899709a43E252B6B92971D32F9C0F9/info.json b/blockchains/ethereum/assets/0xFeAc2Eae96899709a43E252B6B92971D32F9C0F9/info.json new file mode 100644 index 0000000000000..92b6b0843789f --- /dev/null +++ b/blockchains/ethereum/assets/0xFeAc2Eae96899709a43E252B6B92971D32F9C0F9/info.json @@ -0,0 +1,25 @@ +{ + "name": "ANyONe Protocol", + "type": "ERC20", + "symbol": "ANYONE", + "decimals": 18, + "description": "The Anyone Protocol enables any app to instantly and easily run on a decentralized privacy network. Universal privacy, powered by DePIN.", + "website": "https://www.anyone.io/", + "explorer": "https://etherscan.io/token/0xFeAc2Eae96899709a43E252B6B92971D32F9C0F9", + "id": "0xFeAc2Eae96899709a43E252B6B92971D32F9C0F9", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/AnyoneFDN" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/anyone-protocol/" + } + ], + "tags": [ + "privacy" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFeAc2Eae96899709a43E252B6B92971D32F9C0F9/logo.png b/blockchains/ethereum/assets/0xFeAc2Eae96899709a43E252B6B92971D32F9C0F9/logo.png new file mode 100644 index 0000000000000..62b4879636bc0 Binary files /dev/null and b/blockchains/ethereum/assets/0xFeAc2Eae96899709a43E252B6B92971D32F9C0F9/logo.png differ diff --git a/blockchains/ethereum/assets/0xFeDC5f4a6c38211c1338aa411018DFAf26612c08/info.json b/blockchains/ethereum/assets/0xFeDC5f4a6c38211c1338aa411018DFAf26612c08/info.json new file mode 100644 index 0000000000000..984cbed8562bc --- /dev/null +++ b/blockchains/ethereum/assets/0xFeDC5f4a6c38211c1338aa411018DFAf26612c08/info.json @@ -0,0 +1,24 @@ +{ + "name": "SPDR S&P 500 (Ondo)", + "website": "https://ondo.finance/", + "description": "SPYon is the Ondo Tokenized version of the SPDR S&P 500 ETF, giving tokenholders economic exposure similar to holding SPY and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xFeDC5f4a6c38211c1338aa411018DFAf26612c08", + "type": "ERC20", + "symbol": "SPYon", + "decimals": 18, + "status": "active", + "id": "0xFeDC5f4a6c38211c1338aa411018DFAf26612c08", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spdr-sp-500-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFeDC5f4a6c38211c1338aa411018DFAf26612c08/logo.png b/blockchains/ethereum/assets/0xFeDC5f4a6c38211c1338aa411018DFAf26612c08/logo.png new file mode 100644 index 0000000000000..8e3a7a030f642 Binary files /dev/null and b/blockchains/ethereum/assets/0xFeDC5f4a6c38211c1338aa411018DFAf26612c08/logo.png differ diff --git a/blockchains/ethereum/assets/0xa00453052A36D43A99Ac1ca145DFe4A952cA33B8/info.json b/blockchains/ethereum/assets/0xa00453052A36D43A99Ac1ca145DFe4A952cA33B8/info.json new file mode 100644 index 0000000000000..985d922368781 --- /dev/null +++ b/blockchains/ethereum/assets/0xa00453052A36D43A99Ac1ca145DFe4A952cA33B8/info.json @@ -0,0 +1,21 @@ +{ + "name": "Cate", + "website": "https://cateoneth.com/", + "description": "Claims to be part of the Dogeverse, born from @ownthedoge tweet. Based on Ethereum.", + "explorer": "https://etherscan.io/token/0xa00453052A36D43A99Ac1ca145DFe4A952cA33B8", + "symbol": "CATE", + "type": "ERC20", + "decimals": 9, + "status": "active", + "id": "0xa00453052A36D43A99Ac1ca145DFe4A952cA33B8", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cate/" + }, + { + "name": "x", + "url": "https://x.com/cateonethereum" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa00453052A36D43A99Ac1ca145DFe4A952cA33B8/logo.png b/blockchains/ethereum/assets/0xa00453052A36D43A99Ac1ca145DFe4A952cA33B8/logo.png new file mode 100644 index 0000000000000..519c930209fc7 Binary files /dev/null and b/blockchains/ethereum/assets/0xa00453052A36D43A99Ac1ca145DFe4A952cA33B8/logo.png differ diff --git a/blockchains/ethereum/assets/0xa00a4d5786a6E955e9539d01D78Bf68f3271C050/info.json b/blockchains/ethereum/assets/0xa00a4d5786a6E955e9539d01D78Bf68f3271C050/info.json new file mode 100644 index 0000000000000..d15a8759f2e11 --- /dev/null +++ b/blockchains/ethereum/assets/0xa00a4d5786a6E955e9539d01D78Bf68f3271C050/info.json @@ -0,0 +1,21 @@ +{ + "name": "Quiztok", + "symbol": "QTCON", + "type": "ERC20", + "decimals": 18, + "description": "'Quiztok' is a blockchain-based startup with a 'Quiz Content Service Platform' business It started in January 2017 and is currently providing Quiz talk service. It has established a local corporation in Japan and the Philippines to prepare for global service launch.", + "website": "https://quiztok.com/", + "explorer": "https://etherscan.io/token/0xa00a4d5786a6e955e9539d01d78bf68f3271c050", + "status": "active", + "id": "0xa00a4d5786a6E955e9539d01D78Bf68f3271C050", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/quiztok/" + }, + { + "name": "telegram", + "url": "https://t.me/qtcongroup" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa00a4d5786a6E955e9539d01D78Bf68f3271C050/logo.png b/blockchains/ethereum/assets/0xa00a4d5786a6E955e9539d01D78Bf68f3271C050/logo.png new file mode 100644 index 0000000000000..881db83747e8b Binary files /dev/null and b/blockchains/ethereum/assets/0xa00a4d5786a6E955e9539d01D78Bf68f3271C050/logo.png differ diff --git a/blockchains/ethereum/assets/0xa0385E7283C83e2871E9aF49EEC0966088421ddD/info.json b/blockchains/ethereum/assets/0xa0385E7283C83e2871E9aF49EEC0966088421ddD/info.json new file mode 100644 index 0000000000000..dc7fcba4b0df0 --- /dev/null +++ b/blockchains/ethereum/assets/0xa0385E7283C83e2871E9aF49EEC0966088421ddD/info.json @@ -0,0 +1,21 @@ +{ + "name": "Ape", + "type": "ERC20", + "symbol": "APE", + "decimals": 18, + "website": "https://www.apetoken.lol/", + "description": "Pur Ape Meme.", + "explorer": "https://etherscan.io/token/0xa0385E7283C83e2871E9aF49EEC0966088421ddD", + "status": "active", + "id": "0xa0385E7283C83e2871E9aF49EEC0966088421ddD", + "links": [ + { + "name": "x", + "url": "https://x.com/Ape_Coin_Erc20" + }, + { + "name": "telegram", + "url": "https://t.me/apecoinportal" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa0385E7283C83e2871E9aF49EEC0966088421ddD/logo.png b/blockchains/ethereum/assets/0xa0385E7283C83e2871E9aF49EEC0966088421ddD/logo.png new file mode 100644 index 0000000000000..3e031aebd0e82 Binary files /dev/null and b/blockchains/ethereum/assets/0xa0385E7283C83e2871E9aF49EEC0966088421ddD/logo.png differ diff --git a/blockchains/ethereum/assets/0xa0F0546Eb5E3eE7e8cfC5DA12e5949F3AE622675/info.json b/blockchains/ethereum/assets/0xa0F0546Eb5E3eE7e8cfC5DA12e5949F3AE622675/info.json index 4b481588892c7..67bce27f065ee 100644 --- a/blockchains/ethereum/assets/0xa0F0546Eb5E3eE7e8cfC5DA12e5949F3AE622675/info.json +++ b/blockchains/ethereum/assets/0xa0F0546Eb5E3eE7e8cfC5DA12e5949F3AE622675/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/tokoinofficial" }, { - "name": "twitter", - "url": "https://twitter.com/Tokoin" + "name": "x", + "url": "https://x.com/Tokoin" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xa0bEd124a09ac2Bd941b10349d8d224fe3c955eb/info.json b/blockchains/ethereum/assets/0xa0bEd124a09ac2Bd941b10349d8d224fe3c955eb/info.json index 0d190ce0df19e..466606bfbe7a9 100644 --- a/blockchains/ethereum/assets/0xa0bEd124a09ac2Bd941b10349d8d224fe3c955eb/info.json +++ b/blockchains/ethereum/assets/0xa0bEd124a09ac2Bd941b10349d8d224fe3c955eb/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/DePayFi" }, { - "name": "twitter", - "url": "https://twitter.com/DePayFi" + "name": "x", + "url": "https://x.com/DePayFi" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xa117ea1c0c85CEf648df2b6f40e50bb5475C228d/info.json b/blockchains/ethereum/assets/0xa117ea1c0c85CEf648df2b6f40e50bb5475C228d/info.json index 28ea7cf746434..f909375aec955 100644 --- a/blockchains/ethereum/assets/0xa117ea1c0c85CEf648df2b6f40e50bb5475C228d/info.json +++ b/blockchains/ethereum/assets/0xa117ea1c0c85CEf648df2b6f40e50bb5475C228d/info.json @@ -10,8 +10,8 @@ "id": "0xa117ea1c0c85CEf648df2b6f40e50bb5475C228d", "links": [ { - "name": "twitter", - "url": "https://twitter.com/DUCATO_DeFi" + "name": "x", + "url": "https://x.com/DUCATO_DeFi" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xa150Db9b1Fa65b44799d4dD949D922c0a33Ee606/info.json b/blockchains/ethereum/assets/0xa150Db9b1Fa65b44799d4dD949D922c0a33Ee606/info.json index 891756da1e916..48fe9cffc45f9 100644 --- a/blockchains/ethereum/assets/0xa150Db9b1Fa65b44799d4dD949D922c0a33Ee606/info.json +++ b/blockchains/ethereum/assets/0xa150Db9b1Fa65b44799d4dD949D922c0a33Ee606/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/digitalreserve/DRC" }, { - "name": "twitter", - "url": "https://twitter.com/DRCToken" + "name": "x", + "url": "https://x.com/DRCToken" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xa1EA9aA32CBba8c203DDC510a144aD1F439d436c/info.json b/blockchains/ethereum/assets/0xa1EA9aA32CBba8c203DDC510a144aD1F439d436c/info.json index a73538fa9e882..98f28f43522af 100644 --- a/blockchains/ethereum/assets/0xa1EA9aA32CBba8c203DDC510a144aD1F439d436c/info.json +++ b/blockchains/ethereum/assets/0xa1EA9aA32CBba8c203DDC510a144aD1F439d436c/info.json @@ -10,8 +10,8 @@ "id": "0xa1EA9aA32CBba8c203DDC510a144aD1F439d436c", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MetaportaI" + "name": "x", + "url": "https://x.com/MetaportaI" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0xa1d65E8fB6e87b60FECCBc582F7f97804B725521/info.json b/blockchains/ethereum/assets/0xa1d65E8fB6e87b60FECCBc582F7f97804B725521/info.json index a6e2367843b3d..48644a9a7a1cd 100644 --- a/blockchains/ethereum/assets/0xa1d65E8fB6e87b60FECCBc582F7f97804B725521/info.json +++ b/blockchains/ethereum/assets/0xa1d65E8fB6e87b60FECCBc582F7f97804B725521/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/levelkdev/BC-DAPP" }, { - "name": "twitter", - "url": "https://twitter.com/Dxdao_" + "name": "x", + "url": "https://x.com/Dxdao_" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xa1eD0364D53394209D61aE8bfdb8Ff50484D8c91/info.json b/blockchains/ethereum/assets/0xa1eD0364D53394209D61aE8bfdb8Ff50484D8c91/info.json index 6ad5d8786a44e..0338c11ac4340 100644 --- a/blockchains/ethereum/assets/0xa1eD0364D53394209D61aE8bfdb8Ff50484D8c91/info.json +++ b/blockchains/ethereum/assets/0xa1eD0364D53394209D61aE8bfdb8Ff50484D8c91/info.json @@ -10,8 +10,8 @@ "id": "0xa1eD0364D53394209D61aE8bfdb8Ff50484D8c91", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MyTeraBlock" + "name": "x", + "url": "https://x.com/MyTeraBlock" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xa1faa113cbE53436Df28FF0aEe54275c13B40975/info.json b/blockchains/ethereum/assets/0xa1faa113cbE53436Df28FF0aEe54275c13B40975/info.json index 22f28831f7b44..9b5e975b16582 100644 --- a/blockchains/ethereum/assets/0xa1faa113cbE53436Df28FF0aEe54275c13B40975/info.json +++ b/blockchains/ethereum/assets/0xa1faa113cbE53436Df28FF0aEe54275c13B40975/info.json @@ -18,8 +18,8 @@ "url": "https://github.com/AlphaFinanceLab" }, { - "name": "twitter", - "url": "https://twitter.com/alphafinancelab" + "name": "x", + "url": "https://x.com/alphafinancelab" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xa20f77B7ad5A88badC48800C56507B7274c06Fdc/info.json b/blockchains/ethereum/assets/0xa20f77B7ad5A88badC48800C56507B7274c06Fdc/info.json index 6da1d94e8d78f..c6f4f1ad93e3d 100644 --- a/blockchains/ethereum/assets/0xa20f77B7ad5A88badC48800C56507B7274c06Fdc/info.json +++ b/blockchains/ethereum/assets/0xa20f77B7ad5A88badC48800C56507B7274c06Fdc/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/cherrynetwork" }, { - "name": "twitter", - "url": "https://twitter.com/cherry_network" + "name": "x", + "url": "https://x.com/cherry_network" }, { "name": "telegram", @@ -31,7 +31,6 @@ } ], "tags": [ - "staking-native", "wrapped" ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa211F450Ce88deb31D3F12Ae3C1EBf6b0e55A5d9/info.json b/blockchains/ethereum/assets/0xa211F450Ce88deb31D3F12Ae3C1EBf6b0e55A5d9/info.json index b8da348b0f89f..90548de022791 100644 --- a/blockchains/ethereum/assets/0xa211F450Ce88deb31D3F12Ae3C1EBf6b0e55A5d9/info.json +++ b/blockchains/ethereum/assets/0xa211F450Ce88deb31D3F12Ae3C1EBf6b0e55A5d9/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/parsiq_group" }, { - "name": "twitter", - "url": "https://twitter.com/parsiq_net" + "name": "x", + "url": "https://x.com/parsiq_net" }, { "name": "facebook", diff --git a/blockchains/ethereum/assets/0xa21Af1050F7B26e0cfF45ee51548254C41ED6b5c/info.json b/blockchains/ethereum/assets/0xa21Af1050F7B26e0cfF45ee51548254C41ED6b5c/info.json new file mode 100644 index 0000000000000..7240898cfbff1 --- /dev/null +++ b/blockchains/ethereum/assets/0xa21Af1050F7B26e0cfF45ee51548254C41ED6b5c/info.json @@ -0,0 +1,25 @@ +{ + "name": "Osaka Protocol", + "type": "ERC20", + "symbol": "OSAK", + "decimals": 18, + "description": "A decentralized finance initiative that aims to create an environment of equality and shared responsibility, promoting the concept that ownership percentage equates to one's level of responsibility and influence. Each holder's power is proportionate to their ownership stake, It aims to cultivate a thriving ecosystem driven by community collaboration and true decentralization.", + "website": "https://osaka.win/", + "explorer": "https://etherscan.io/token/0xa21af1050f7b26e0cff45ee51548254c41ed6b5c", + "id": "0xa21Af1050F7B26e0cfF45ee51548254C41ED6b5c", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/osakaprotocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/osaka-protocol/" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa21Af1050F7B26e0cfF45ee51548254C41ED6b5c/logo.png b/blockchains/ethereum/assets/0xa21Af1050F7B26e0cfF45ee51548254C41ED6b5c/logo.png new file mode 100644 index 0000000000000..a2805538613db Binary files /dev/null and b/blockchains/ethereum/assets/0xa21Af1050F7B26e0cfF45ee51548254C41ED6b5c/logo.png differ diff --git a/blockchains/ethereum/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/info.json b/blockchains/ethereum/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/info.json new file mode 100644 index 0000000000000..da042e1613083 --- /dev/null +++ b/blockchains/ethereum/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Binance Beacon ETH", + "type": "ERC20", + "symbol": "wBETH", + "decimals": 18, + "website": "https://www.binance.com/en/wbeth", + "description": "wBETH is a reward-bearing ETH liquid staking token offered by Binance. Each wBETH represents 1 BETH (1:1 to staked ETH) plus all of its accrued ETH2.0 staking rewards starting from when wBETH's conversion rate was initialized at 1:1 on Apr 27th 2023 00:00 (UTC+0).", + "explorer": "https://etherscan.io/token/0xa2E3356610840701BDf5611a53974510Ae27E2e1", + "status": "active", + "id": "0xa2E3356610840701BDf5611a53974510Ae27E2e1", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-beacon-eth" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wrapped-beacon-eth" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/logo.png b/blockchains/ethereum/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/logo.png new file mode 100644 index 0000000000000..832596160ae8d Binary files /dev/null and b/blockchains/ethereum/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/logo.png differ diff --git a/blockchains/ethereum/assets/0xa3BeD4E1c75D00fa6f4E5E6922DB7261B5E9AcD2/info.json b/blockchains/ethereum/assets/0xa3BeD4E1c75D00fa6f4E5E6922DB7261B5E9AcD2/info.json index bbc95e0fc88a7..48c3a01d3e272 100644 --- a/blockchains/ethereum/assets/0xa3BeD4E1c75D00fa6f4E5E6922DB7261B5E9AcD2/info.json +++ b/blockchains/ethereum/assets/0xa3BeD4E1c75D00fa6f4E5E6922DB7261B5E9AcD2/info.json @@ -10,8 +10,8 @@ "id": "0xa3BeD4E1c75D00fa6f4E5E6922DB7261B5E9AcD2", "links": [ { - "name": "twitter", - "url": "https://twitter.com/mstable_" + "name": "x", + "url": "https://x.com/mstable_" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa3EE21C306A700E682AbCdfe9BaA6A08F3820419/info.json b/blockchains/ethereum/assets/0xa3EE21C306A700E682AbCdfe9BaA6A08F3820419/info.json index ef01fb0ac8b48..73bc13db3da14 100644 --- a/blockchains/ethereum/assets/0xa3EE21C306A700E682AbCdfe9BaA6A08F3820419/info.json +++ b/blockchains/ethereum/assets/0xa3EE21C306A700E682AbCdfe9BaA6A08F3820419/info.json @@ -1,5 +1,5 @@ { - "name": "Gluwa Creditcoin Vesting Token", + "name": "Creditcoin", "type": "ERC20", "symbol": "G-CRE", "decimals": 18, @@ -10,8 +10,8 @@ "id": "0xa3EE21C306A700E682AbCdfe9BaA6A08F3820419", "links": [ { - "name": "twitter", - "url": "https://twitter.com/creditcoin" + "name": "x", + "url": "https://x.com/creditcoin" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0xa3d4BEe77B05d4a0C943877558Ce21A763C4fa29/info.json b/blockchains/ethereum/assets/0xa3d4BEe77B05d4a0C943877558Ce21A763C4fa29/info.json new file mode 100644 index 0000000000000..1de788fa57634 --- /dev/null +++ b/blockchains/ethereum/assets/0xa3d4BEe77B05d4a0C943877558Ce21A763C4fa29/info.json @@ -0,0 +1,21 @@ +{ + "name": "The Root Network", + "type": "ERC20", + "symbol": "ROOT", + "decimals": 6, + "website": "https://www.therootnetwork.com/", + "description": "More than just a blockchain, The Root Network enables seamless user experience and asset interoperability across the open metaverse. The Root Network is a modular development toolkit prioritizing scalable, secure and interconnected experiences.", + "explorer": "https://etherscan.io/token/0xa3d4BEe77B05d4a0C943877558Ce21A763C4fa29", + "status": "active", + "id": "0xa3d4BEe77B05d4a0C943877558Ce21A763C4fa29", + "links": [ + { + "name": "x", + "url": "https://x.com/TheRootNetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/the-root-network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa3d4BEe77B05d4a0C943877558Ce21A763C4fa29/logo.png b/blockchains/ethereum/assets/0xa3d4BEe77B05d4a0C943877558Ce21A763C4fa29/logo.png new file mode 100644 index 0000000000000..8c0145c8ac4f7 Binary files /dev/null and b/blockchains/ethereum/assets/0xa3d4BEe77B05d4a0C943877558Ce21A763C4fa29/logo.png differ diff --git a/blockchains/ethereum/assets/0xa45cd7ac9865b9539166ebaf2aBc362Df4736580/info.json b/blockchains/ethereum/assets/0xa45cd7ac9865b9539166ebaf2aBc362Df4736580/info.json new file mode 100644 index 0000000000000..07fc56e35523b --- /dev/null +++ b/blockchains/ethereum/assets/0xa45cd7ac9865b9539166ebaf2aBc362Df4736580/info.json @@ -0,0 +1,28 @@ +{ + "name": "ProShares UltraPro QQQ (Ondo Tokenized)", + "type": "ERC20", + "symbol": "TQQQon", + "decimals": 18, + "description": "TQQQon is the Ondo Tokenized version of the ProShares UltraPro QQQ, giving tokenholders economic exposure similar to holding TQQQ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xa45cd7ac9865b9539166ebaf2aBc362Df4736580", + "status": "active", + "id": "0xa45cd7ac9865b9539166ebaf2aBc362Df4736580", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/proshares-ultrapro-qqq-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/proshares-ultrapro-qqq-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa45cd7ac9865b9539166ebaf2aBc362Df4736580/logo.png b/blockchains/ethereum/assets/0xa45cd7ac9865b9539166ebaf2aBc362Df4736580/logo.png new file mode 100644 index 0000000000000..d28deab3711b4 Binary files /dev/null and b/blockchains/ethereum/assets/0xa45cd7ac9865b9539166ebaf2aBc362Df4736580/logo.png differ diff --git a/blockchains/ethereum/assets/0xa47c8bf37f92aBed4A126BDA807A7b7498661acD/info.json b/blockchains/ethereum/assets/0xa47c8bf37f92aBed4A126BDA807A7b7498661acD/info.json index 047627baf4122..4542c54d0be9e 100644 --- a/blockchains/ethereum/assets/0xa47c8bf37f92aBed4A126BDA807A7b7498661acD/info.json +++ b/blockchains/ethereum/assets/0xa47c8bf37f92aBed4A126BDA807A7b7498661acD/info.json @@ -1,5 +1,5 @@ { - "name": "UST Token", + "name": "TerraClassicUSD", "website": "https://terra.money", "description": "TerraUSD is the first decentralized stablecoin that is scalable, yield bearing and interchain.", "explorer": "https://etherscan.io/token/0xa47c8bf37f92aBed4A126BDA807A7b7498661acD", @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/TerraMoney" + "name": "x", + "url": "https://x.com/TerraMoney" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xa52B2D6cA1CD9B1E8b931645428380c340cAEF9A/info.json b/blockchains/ethereum/assets/0xa52B2D6cA1CD9B1E8b931645428380c340cAEF9A/info.json new file mode 100644 index 0000000000000..800221ce0827c --- /dev/null +++ b/blockchains/ethereum/assets/0xa52B2D6cA1CD9B1E8b931645428380c340cAEF9A/info.json @@ -0,0 +1,28 @@ +{ + "name": "ON Semiconductor (Ondo Tokenized)", + "type": "ERC20", + "symbol": "ONon", + "decimals": 18, + "description": "ONon is the Ondo Tokenized version of ON Semiconductor, giving tokenholders economic exposure similar to holding ON and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xa52B2D6cA1CD9B1E8b931645428380c340cAEF9A", + "status": "active", + "id": "0xa52B2D6cA1CD9B1E8b931645428380c340cAEF9A", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/on-semiconductor-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/on-semiconductor-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa52B2D6cA1CD9B1E8b931645428380c340cAEF9A/logo.png b/blockchains/ethereum/assets/0xa52B2D6cA1CD9B1E8b931645428380c340cAEF9A/logo.png new file mode 100644 index 0000000000000..7692d40a5279f Binary files /dev/null and b/blockchains/ethereum/assets/0xa52B2D6cA1CD9B1E8b931645428380c340cAEF9A/logo.png differ diff --git a/blockchains/ethereum/assets/0xa58a4f5c4Bb043d2CC1E170613B74e767c94189B/info.json b/blockchains/ethereum/assets/0xa58a4f5c4Bb043d2CC1E170613B74e767c94189B/info.json index e34a5ca5018fb..9e06856f23c43 100644 --- a/blockchains/ethereum/assets/0xa58a4f5c4Bb043d2CC1E170613B74e767c94189B/info.json +++ b/blockchains/ethereum/assets/0xa58a4f5c4Bb043d2CC1E170613B74e767c94189B/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/utu-protocol/" }, { - "name": "twitter", - "url": "https://twitter.com/UTU_trust" + "name": "x", + "url": "https://x.com/UTU_trust" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xa5f2211B9b8170F694421f2046281775E8468044/info.json b/blockchains/ethereum/assets/0xa5f2211B9b8170F694421f2046281775E8468044/info.json index d6c485183a82f..e0dbdfee97a1a 100644 --- a/blockchains/ethereum/assets/0xa5f2211B9b8170F694421f2046281775E8468044/info.json +++ b/blockchains/ethereum/assets/0xa5f2211B9b8170F694421f2046281775E8468044/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/thorswap" }, { - "name": "twitter", - "url": "https://twitter.com/THORSwap" + "name": "x", + "url": "https://x.com/THORSwap" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xa62894D5196bC44e4C3978400Ad07E7b30352372/info.json b/blockchains/ethereum/assets/0xa62894D5196bC44e4C3978400Ad07E7b30352372/info.json new file mode 100644 index 0000000000000..09ce6e6942a5c --- /dev/null +++ b/blockchains/ethereum/assets/0xa62894D5196bC44e4C3978400Ad07E7b30352372/info.json @@ -0,0 +1,21 @@ +{ + "name": "X", + "website": "https://xerc20.pro", + "description": "$X Project is an Elon-inspired crypto, community-driven, X-Factor rewards, and deflationary mechanics. Join the X revolution now!", + "explorer": "https://etherscan.io/token/0xa62894d5196bc44e4c3978400ad07e7b30352372", + "type": "ERC20", + "symbol": "X", + "decimals": 9, + "status": "active", + "id": "0xa62894D5196bC44e4C3978400Ad07E7b30352372", + "links": [ + { + "name": "discord", + "url": "https://discord.com/YEJR2HN4" + }, + { + "name": "telegram", + "url": "https://t.me/Xerc20" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa62894D5196bC44e4C3978400Ad07E7b30352372/logo.png b/blockchains/ethereum/assets/0xa62894D5196bC44e4C3978400Ad07E7b30352372/logo.png new file mode 100644 index 0000000000000..c3c5fda4622af Binary files /dev/null and b/blockchains/ethereum/assets/0xa62894D5196bC44e4C3978400Ad07E7b30352372/logo.png differ diff --git a/blockchains/ethereum/assets/0xa62cc35625B0C8dc1fAEA39d33625Bb4C15bD71C/info.json b/blockchains/ethereum/assets/0xa62cc35625B0C8dc1fAEA39d33625Bb4C15bD71C/info.json new file mode 100644 index 0000000000000..224dc51d25d27 --- /dev/null +++ b/blockchains/ethereum/assets/0xa62cc35625B0C8dc1fAEA39d33625Bb4C15bD71C/info.json @@ -0,0 +1,25 @@ +{ + "name": "StormX", + "website": "https://stormx.io", + "description": "Earn crypto when you shop online.", + "explorer": "https://etherscan.io/token/0xa62cc35625b0c8dc1faea39d33625bb4c15bd71c", + "type": "ERC20", + "symbol": "STMX", + "decimals": 18, + "status": "active", + "id": "0xa62cc35625B0C8dc1fAEA39d33625Bb4C15bD71C", + "links": [ + { + "name": "x", + "url": "https://x.com/Stormxio" + }, + { + "name": "telegram", + "url": "https://t.me/stormxapp" + }, + { + "name": "reddit", + "url": "https://reddit.com/stormxio/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbE9375C6a420D2eEB258962efB95551A5b722803/logo.png b/blockchains/ethereum/assets/0xa62cc35625B0C8dc1fAEA39d33625Bb4C15bD71C/logo.png similarity index 100% rename from blockchains/ethereum/assets/0xbE9375C6a420D2eEB258962efB95551A5b722803/logo.png rename to blockchains/ethereum/assets/0xa62cc35625B0C8dc1fAEA39d33625Bb4C15bD71C/logo.png diff --git a/blockchains/ethereum/assets/0xa637ae510cB50E61236a89AC480B93B8c3bcCc46/info.json b/blockchains/ethereum/assets/0xa637ae510cB50E61236a89AC480B93B8c3bcCc46/info.json new file mode 100644 index 0000000000000..7701140c71932 --- /dev/null +++ b/blockchains/ethereum/assets/0xa637ae510cB50E61236a89AC480B93B8c3bcCc46/info.json @@ -0,0 +1,28 @@ +{ + "name": "KLA (Ondo Tokenized)", + "type": "ERC20", + "symbol": "KLACon", + "decimals": 18, + "description": "KLACon is the Ondo Tokenized version of KLA, giving tokenholders economic exposure similar to holding KLAC and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xa637ae510cB50E61236a89AC480B93B8c3bcCc46", + "status": "active", + "id": "0xa637ae510cB50E61236a89AC480B93B8c3bcCc46", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kla-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kla-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa637ae510cB50E61236a89AC480B93B8c3bcCc46/logo.png b/blockchains/ethereum/assets/0xa637ae510cB50E61236a89AC480B93B8c3bcCc46/logo.png new file mode 100644 index 0000000000000..484e882db5b2b Binary files /dev/null and b/blockchains/ethereum/assets/0xa637ae510cB50E61236a89AC480B93B8c3bcCc46/logo.png differ diff --git a/blockchains/ethereum/assets/0xa683ab3D0CCb5f236d9dF27F76FCf64cfD541b30/info.json b/blockchains/ethereum/assets/0xa683ab3D0CCb5f236d9dF27F76FCf64cfD541b30/info.json new file mode 100644 index 0000000000000..c785e1b001ad9 --- /dev/null +++ b/blockchains/ethereum/assets/0xa683ab3D0CCb5f236d9dF27F76FCf64cfD541b30/info.json @@ -0,0 +1,32 @@ +{ + "name": "NeutralAI", + "type": "ERC20", + "symbol": "USDN", + "decimals": 18, + "website": "https://neutralai.io/", + "description": "USDN operates on a decentralized and transparent smart contract infrastructure, ensuring stability, security, and efficiency. The smart contracts are deployed on multiple blockchain networks, supporting key functionalities.", + "explorer": "https://etherscan.io/token/0xa683ab3d0ccb5f236d9df27f76fcf64cfd541b30", + "status": "active", + "id": "0xa683ab3D0CCb5f236d9dF27F76FCf64cfD541b30", + "links": [ + { + "name": "x", + "url": "https://x.com/neutralai_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/neutral-ai/" + }, + { + "name": "github", + "url": "https://github.com/neutralai" + }, + { + "name": "telegram", + "url": "https://t.me/neutralai_io" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa683ab3D0CCb5f236d9dF27F76FCf64cfD541b30/logo.png b/blockchains/ethereum/assets/0xa683ab3D0CCb5f236d9dF27F76FCf64cfD541b30/logo.png new file mode 100644 index 0000000000000..39e71c884108b Binary files /dev/null and b/blockchains/ethereum/assets/0xa683ab3D0CCb5f236d9dF27F76FCf64cfD541b30/logo.png differ diff --git a/blockchains/ethereum/assets/0xa6C0c097741D55ECd9a3A7DeF3A8253fD022ceB9/info.json b/blockchains/ethereum/assets/0xa6C0c097741D55ECd9a3A7DeF3A8253fD022ceB9/info.json new file mode 100644 index 0000000000000..caf46758fd153 --- /dev/null +++ b/blockchains/ethereum/assets/0xa6C0c097741D55ECd9a3A7DeF3A8253fD022ceB9/info.json @@ -0,0 +1,29 @@ +{ + "name": "AVA (Travala)", + "website": "https://travala.com", + "description": "Travala.com claims to be the leading blockchain-based travel booking platform.", + "explorer": "https://etherscan.io/token/0xa6C0c097741D55ECd9a3A7DeF3A8253fD022ceB9", + "type": "ERC20", + "symbol": "AVA", + "decimals": 18, + "status": "active", + "id": "0xa6C0c097741D55ECd9a3A7DeF3A8253fD022ceB9", + "links": [ + { + "name": "x", + "url": "https://x.com/travalacom" + }, + { + "name": "github", + "url": "https://github.com/travala" + }, + { + "name": "telegram", + "url": "https://t.me/travala" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/travala/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa6C0c097741D55ECd9a3A7DeF3A8253fD022ceB9/logo.png b/blockchains/ethereum/assets/0xa6C0c097741D55ECd9a3A7DeF3A8253fD022ceB9/logo.png new file mode 100644 index 0000000000000..1b8b37e0f5b28 Binary files /dev/null and b/blockchains/ethereum/assets/0xa6C0c097741D55ECd9a3A7DeF3A8253fD022ceB9/logo.png differ diff --git a/blockchains/ethereum/assets/0xa6CdB19b22B03e03EA89e133A8a46aDc3017aa6d/info.json b/blockchains/ethereum/assets/0xa6CdB19b22B03e03EA89e133A8a46aDc3017aa6d/info.json new file mode 100644 index 0000000000000..cf2d688e15807 --- /dev/null +++ b/blockchains/ethereum/assets/0xa6CdB19b22B03e03EA89e133A8a46aDc3017aa6d/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares MSCI India ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "INDAon", + "decimals": 18, + "description": "INDAon is the Ondo Tokenized version of the iShares MSCI India ETF, giving tokenholders economic exposure similar to holding INDA and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xa6CdB19b22B03e03EA89e133A8a46aDc3017aa6d", + "status": "active", + "id": "0xa6CdB19b22B03e03EA89e133A8a46aDc3017aa6d", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-msci-india-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa6CdB19b22B03e03EA89e133A8a46aDc3017aa6d/logo.png b/blockchains/ethereum/assets/0xa6CdB19b22B03e03EA89e133A8a46aDc3017aa6d/logo.png new file mode 100644 index 0000000000000..2ce033b091a15 Binary files /dev/null and b/blockchains/ethereum/assets/0xa6CdB19b22B03e03EA89e133A8a46aDc3017aa6d/logo.png differ diff --git a/blockchains/ethereum/assets/0xa74476443119A942dE498590Fe1f2454d7D4aC0d/info.json b/blockchains/ethereum/assets/0xa74476443119A942dE498590Fe1f2454d7D4aC0d/info.json index 8b9a4ef293823..9606cc09bd02c 100644 --- a/blockchains/ethereum/assets/0xa74476443119A942dE498590Fe1f2454d7D4aC0d/info.json +++ b/blockchains/ethereum/assets/0xa74476443119A942dE498590Fe1f2454d7D4aC0d/info.json @@ -6,6 +6,6 @@ "type": "ERC20", "symbol": "GNT", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xa74476443119A942dE498590Fe1f2454d7D4aC0d" } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa74476443119A942dE498590Fe1f2454d7D4aC0d/logo.png b/blockchains/ethereum/assets/0xa74476443119A942dE498590Fe1f2454d7D4aC0d/logo.png deleted file mode 100644 index 46d9e24512b0f..0000000000000 Binary files a/blockchains/ethereum/assets/0xa74476443119A942dE498590Fe1f2454d7D4aC0d/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0xa753A7395cAe905Cd615Da0B82A53E0560f250af/info.json b/blockchains/ethereum/assets/0xa753A7395cAe905Cd615Da0B82A53E0560f250af/info.json new file mode 100644 index 0000000000000..1496f02005539 --- /dev/null +++ b/blockchains/ethereum/assets/0xa753A7395cAe905Cd615Da0B82A53E0560f250af/info.json @@ -0,0 +1,24 @@ +{ + "name": "Nasdaq tokenized ETF (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Nasdaq tokenized ETF (xStock) (QQQX) is a cryptocurrency and operates on the Solana platform. Nasdaq tokenized ETF (xStock) has a current supply of 5,999.92232021. The last known price of Nasdaq tokenized ETF (xStock) is 593.40939583 USD and is up 0.98 over the last 24 hours. It is currently trading on 15 active market(s) with $930,481.21 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/nasdaq-xstock.", + "explorer": "https://etherscan.io/token/0xa753A7395cAe905Cd615Da0B82A53E0560f250af", + "type": "ERC20", + "symbol": "QQQX", + "decimals": 18, + "status": "active", + "id": "0xa753A7395cAe905Cd615Da0B82A53E0560f250af", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nasdaq-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa753A7395cAe905Cd615Da0B82A53E0560f250af/logo.png b/blockchains/ethereum/assets/0xa753A7395cAe905Cd615Da0B82A53E0560f250af/logo.png new file mode 100644 index 0000000000000..7151d49b76d09 Binary files /dev/null and b/blockchains/ethereum/assets/0xa753A7395cAe905Cd615Da0B82A53E0560f250af/logo.png differ diff --git a/blockchains/ethereum/assets/0xa7ED29B253D8B4E3109ce07c80fc570f81B63696/info.json b/blockchains/ethereum/assets/0xa7ED29B253D8B4E3109ce07c80fc570f81B63696/info.json index 8585c8d360c4f..636bd4899a6bf 100644 --- a/blockchains/ethereum/assets/0xa7ED29B253D8B4E3109ce07c80fc570f81B63696/info.json +++ b/blockchains/ethereum/assets/0xa7ED29B253D8B4E3109ce07c80fc570f81B63696/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Basis-Cash" }, { - "name": "twitter", - "url": "https://twitter.com/Basis Cash" + "name": "x", + "url": "https://x.com/Basis Cash" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xa81c39d038Ee26D8443Fe6994cc1D51dc13D7658/info.json b/blockchains/ethereum/assets/0xa81c39d038Ee26D8443Fe6994cc1D51dc13D7658/info.json new file mode 100644 index 0000000000000..484d1f111779b --- /dev/null +++ b/blockchains/ethereum/assets/0xa81c39d038Ee26D8443Fe6994cc1D51dc13D7658/info.json @@ -0,0 +1,25 @@ +{ + "name": "Moses", + "website": "https://mosescoin.io", + "description": "WELCOME PEOPLE OF MOSES, GOD SENT MOSES BACK TO EGYPT TO DEMAND THE RELEASE OF THE ISRAELITES FROM SLAVERY. ​MOSES WAS BORN IN A TIME WHEN HIS PEOPLE, THE ISRAELITES, AN ENSLAVED MINORITY, WERE INCREASING IN POPULATION AND, AS A RESULT, THE EGYPTIAN PHARAOH WORRIED THAT THEY MIGHT ALLY THEMSELVES WITH EGYPT'S ENEMIES.", + "explorer": "https://etherscan.io/token/0xa81c39d038Ee26D8443Fe6994cc1D51dc13D7658", + "type": "ERC20", + "symbol": "MOSES", + "decimals": 18, + "status": "active", + "id": "0xa81c39d038Ee26D8443Fe6994cc1D51dc13D7658", + "links": [ + { + "name": "x", + "url": "https://x.com/moses_erc20" + }, + { + "name": "telegram", + "url": "https://t.me/mosescoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/moses-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa81c39d038Ee26D8443Fe6994cc1D51dc13D7658/logo.png b/blockchains/ethereum/assets/0xa81c39d038Ee26D8443Fe6994cc1D51dc13D7658/logo.png new file mode 100644 index 0000000000000..a78954eb8bc53 Binary files /dev/null and b/blockchains/ethereum/assets/0xa81c39d038Ee26D8443Fe6994cc1D51dc13D7658/logo.png differ diff --git a/blockchains/ethereum/assets/0xa90424D5D3E770e8644103AB503ed775dD1318FD/info.json b/blockchains/ethereum/assets/0xa90424D5D3E770e8644103AB503ed775dD1318FD/info.json new file mode 100644 index 0000000000000..3181d73d47157 --- /dev/null +++ b/blockchains/ethereum/assets/0xa90424D5D3E770e8644103AB503ed775dD1318FD/info.json @@ -0,0 +1,24 @@ +{ + "name": "Procter & Gamble tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Procter & Gamble xStock (PGx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. PGx tracks the price of The Procter & Gamble Company (the underlying). PGx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of The Procter & Gamble Company, whilst maintaining the benefits of blockchain technology. Procter & Gamble is a global consumer goods company, founded over 180 years ago. It's known for its vast portfolio of trusted brands and its commitment to innovation and ethical business practices.", + "explorer": "https://etherscan.io/token/0xa90424D5D3E770e8644103AB503ed775dD1318FD", + "type": "ERC20", + "symbol": "PGX", + "decimals": 18, + "status": "active", + "id": "0xa90424D5D3E770e8644103AB503ed775dD1318FD", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/procter-gamble-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa90424D5D3E770e8644103AB503ed775dD1318FD/logo.png b/blockchains/ethereum/assets/0xa90424D5D3E770e8644103AB503ed775dD1318FD/logo.png new file mode 100644 index 0000000000000..e79aa1665329d Binary files /dev/null and b/blockchains/ethereum/assets/0xa90424D5D3E770e8644103AB503ed775dD1318FD/logo.png differ diff --git a/blockchains/ethereum/assets/0xaA247c0D81B83812e1ABf8bAB078E4540D87e3fB/info.json b/blockchains/ethereum/assets/0xaA247c0D81B83812e1ABf8bAB078E4540D87e3fB/info.json new file mode 100644 index 0000000000000..4b09689cc8f21 --- /dev/null +++ b/blockchains/ethereum/assets/0xaA247c0D81B83812e1ABf8bAB078E4540D87e3fB/info.json @@ -0,0 +1,21 @@ +{ + "name": "meson.network", + "type": "ERC20", + "symbol": "MSN", + "decimals": 18, + "website": "https://www.meson.network/", + "description": "Meson network aims to offer pioneering AI + DePIN (Decentralized Physical Infrastructure Network) empowered by people.", + "explorer": "https://etherscan.io/token/0xaa247c0d81b83812e1abf8bab078e4540d87e3fb", + "status": "active", + "id": "0xaA247c0D81B83812e1ABf8bAB078E4540D87e3fB", + "links": [ + { + "name": "x", + "url": "https://x.com/NetworkMeson" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/meson-network" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaA247c0D81B83812e1ABf8bAB078E4540D87e3fB/logo.png b/blockchains/ethereum/assets/0xaA247c0D81B83812e1ABf8bAB078E4540D87e3fB/logo.png new file mode 100644 index 0000000000000..5fcf20808020d Binary files /dev/null and b/blockchains/ethereum/assets/0xaA247c0D81B83812e1ABf8bAB078E4540D87e3fB/logo.png differ diff --git a/blockchains/ethereum/assets/0xaA7a9CA87d3694B5755f213B5D04094b8d0F0A6F/info.json b/blockchains/ethereum/assets/0xaA7a9CA87d3694B5755f213B5D04094b8d0F0A6F/info.json index f577c9083e3a7..3f9aaf6efdd08 100644 --- a/blockchains/ethereum/assets/0xaA7a9CA87d3694B5755f213B5D04094b8d0F0A6F/info.json +++ b/blockchains/ethereum/assets/0xaA7a9CA87d3694B5755f213B5D04094b8d0F0A6F/info.json @@ -1,5 +1,5 @@ { - "name": "Trace Token", + "name": "OriginTrail", "symbol": "TRAC", "type": "ERC20", "decimals": 18, diff --git a/blockchains/ethereum/assets/0xaA8330FB2B4D5D07ABFE7A72262752a8505C6B37/info.json b/blockchains/ethereum/assets/0xaA8330FB2B4D5D07ABFE7A72262752a8505C6B37/info.json index 0d691efaf751b..5310d694e3540 100644 --- a/blockchains/ethereum/assets/0xaA8330FB2B4D5D07ABFE7A72262752a8505C6B37/info.json +++ b/blockchains/ethereum/assets/0xaA8330FB2B4D5D07ABFE7A72262752a8505C6B37/info.json @@ -10,8 +10,8 @@ "id": "0xaA8330FB2B4D5D07ABFE7A72262752a8505C6B37", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PolkaCity" + "name": "x", + "url": "https://x.com/PolkaCity" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xaB02fc332e9278eBCbbC6B4a8038050c01D15F69/info.json b/blockchains/ethereum/assets/0xaB02fc332e9278eBCbbC6B4a8038050c01D15F69/info.json new file mode 100644 index 0000000000000..91ccd847f2725 --- /dev/null +++ b/blockchains/ethereum/assets/0xaB02fc332e9278eBCbbC6B4a8038050c01D15F69/info.json @@ -0,0 +1,24 @@ +{ + "name": "Toyota (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "TMon is the Ondo Tokenized version of Toyota, giving tokenholders economic exposure similar to holding TM and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xaB02fc332e9278eBCbbC6B4a8038050c01D15F69", + "type": "ERC20", + "symbol": "TMon", + "decimals": 18, + "status": "active", + "id": "0xaB02fc332e9278eBCbbC6B4a8038050c01D15F69", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/toyota-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaB02fc332e9278eBCbbC6B4a8038050c01D15F69/logo.png b/blockchains/ethereum/assets/0xaB02fc332e9278eBCbbC6B4a8038050c01D15F69/logo.png new file mode 100644 index 0000000000000..a181e631d5609 Binary files /dev/null and b/blockchains/ethereum/assets/0xaB02fc332e9278eBCbbC6B4a8038050c01D15F69/logo.png differ diff --git a/blockchains/ethereum/assets/0xaC0104Cca91D167873B8601d2e71EB3D4D8c33e0/info.json b/blockchains/ethereum/assets/0xaC0104Cca91D167873B8601d2e71EB3D4D8c33e0/info.json index a727e966e4dca..4bc881a39f600 100644 --- a/blockchains/ethereum/assets/0xaC0104Cca91D167873B8601d2e71EB3D4D8c33e0/info.json +++ b/blockchains/ethereum/assets/0xaC0104Cca91D167873B8601d2e71EB3D4D8c33e0/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/blocklords/seascape-smartcontracts" }, { - "name": "twitter", - "url": "https://twitter.com/SeascapeNetwork" + "name": "x", + "url": "https://x.com/SeascapeNetwork" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xaC37c20C1d0E5285035e056101a64e263Ff94a41/info.json b/blockchains/ethereum/assets/0xaC37c20C1d0E5285035e056101a64e263Ff94a41/info.json new file mode 100644 index 0000000000000..92c8932b997ca --- /dev/null +++ b/blockchains/ethereum/assets/0xaC37c20C1d0E5285035e056101a64e263Ff94a41/info.json @@ -0,0 +1,24 @@ +{ + "name": "Visa (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "Von is the Ondo Tokenized version of Visa, giving tokenholders economic exposure similar to holding V and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xaC37c20C1d0E5285035e056101a64e263Ff94a41", + "type": "ERC20", + "symbol": "Von", + "decimals": 18, + "status": "active", + "id": "0xaC37c20C1d0E5285035e056101a64e263Ff94a41", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/visa-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaC37c20C1d0E5285035e056101a64e263Ff94a41/logo.png b/blockchains/ethereum/assets/0xaC37c20C1d0E5285035e056101a64e263Ff94a41/logo.png new file mode 100644 index 0000000000000..61b11abb4203f Binary files /dev/null and b/blockchains/ethereum/assets/0xaC37c20C1d0E5285035e056101a64e263Ff94a41/logo.png differ diff --git a/blockchains/ethereum/assets/0xaCf3FECAA787F268351A86409C3bD3b96Ef924fb/info.json b/blockchains/ethereum/assets/0xaCf3FECAA787F268351A86409C3bD3b96Ef924fb/info.json new file mode 100644 index 0000000000000..dcb7118e2c83a --- /dev/null +++ b/blockchains/ethereum/assets/0xaCf3FECAA787F268351A86409C3bD3b96Ef924fb/info.json @@ -0,0 +1,28 @@ +{ + "name": "First Trust Global Tactical Commodity Strategy Fund (Ondo Tokenized)", + "type": "ERC20", + "symbol": "FTGCon", + "decimals": 18, + "description": "FTGCon is the Ondo Tokenized version of the First Trust Global Tactical Commodity Strategy Fund, giving tokenholders economic exposure similar to holding FTGC and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xaCf3FECAA787F268351A86409C3bD3b96Ef924fb", + "status": "active", + "id": "0xaCf3FECAA787F268351A86409C3bD3b96Ef924fb", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/first-trust-global-tactical-commodity-strategy-fund-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/first-trust-global-commodity-tokenized-fund-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaCf3FECAA787F268351A86409C3bD3b96Ef924fb/logo.png b/blockchains/ethereum/assets/0xaCf3FECAA787F268351A86409C3bD3b96Ef924fb/logo.png new file mode 100644 index 0000000000000..2e8d3686761c8 Binary files /dev/null and b/blockchains/ethereum/assets/0xaCf3FECAA787F268351A86409C3bD3b96Ef924fb/logo.png differ diff --git a/blockchains/ethereum/assets/0xaD55aebc9b8c03FC43cd9f62260391c13c23e7c0/info.json b/blockchains/ethereum/assets/0xaD55aebc9b8c03FC43cd9f62260391c13c23e7c0/info.json new file mode 100644 index 0000000000000..47295c0316229 --- /dev/null +++ b/blockchains/ethereum/assets/0xaD55aebc9b8c03FC43cd9f62260391c13c23e7c0/info.json @@ -0,0 +1,17 @@ +{ + "name": "Compounding Open Dollar", + "symbol": "cUSDO", + "website": "https://openeden.com/", + "description": "The OpenEden CompoundingOpenDollar ('USDO') is a rebasing yield-bearing stablecoin issued by OpenEden Digital ('OED'), a Bermuda Monetary Authority ('BMA') licensed digital asset issuer. USDO is backed by high-quality, liquid reserves, primarily consisting of U.S. Treasury bills.", + "explorer": "https://etherscan.io/token/0xad55aebc9b8c03fc43cd9f62260391c13c23e7c0", + "type": "ERC20", + "decimals": 18, + "status": "active", + "id": "0xaD55aebc9b8c03FC43cd9f62260391c13c23e7c0", + "links": [ + { + "name": "x", + "url": "https://x.com/OpenEden_X" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaD55aebc9b8c03FC43cd9f62260391c13c23e7c0/logo.png b/blockchains/ethereum/assets/0xaD55aebc9b8c03FC43cd9f62260391c13c23e7c0/logo.png new file mode 100644 index 0000000000000..e2a52a1b6d4da Binary files /dev/null and b/blockchains/ethereum/assets/0xaD55aebc9b8c03FC43cd9f62260391c13c23e7c0/logo.png differ diff --git a/blockchains/ethereum/assets/0xaDB2437e6F65682B85F814fBc12FeC0508A7B1D0/info.json b/blockchains/ethereum/assets/0xaDB2437e6F65682B85F814fBc12FeC0508A7B1D0/info.json index 4f81fbb3af0b2..5eb3ac5ed797f 100644 --- a/blockchains/ethereum/assets/0xaDB2437e6F65682B85F814fBc12FeC0508A7B1D0/info.json +++ b/blockchains/ethereum/assets/0xaDB2437e6F65682B85F814fBc12FeC0508A7B1D0/info.json @@ -10,8 +10,8 @@ "id": "0xaDB2437e6F65682B85F814fBc12FeC0508A7B1D0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/UNCX_token" + "name": "x", + "url": "https://x.com/UNCX_token" }, { "name": "medium", diff --git a/blockchains/ethereum/assets/0xaDDfd192daA492b772EA5c180e79570dEC92fF5c/info.json b/blockchains/ethereum/assets/0xaDDfd192daA492b772EA5c180e79570dEC92fF5c/info.json new file mode 100644 index 0000000000000..ee41e95750d68 --- /dev/null +++ b/blockchains/ethereum/assets/0xaDDfd192daA492b772EA5c180e79570dEC92fF5c/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Europa Coin (europacoin.fun)", + "type": "ERC20", + "symbol": "FAKE EURC", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://etherscan.io/token/0xaDDfd192daA492b772EA5c180e79570dEC92fF5c", + "explorer": "https://etherscan.io/token/0xaDDfd192daA492b772EA5c180e79570dEC92fF5c", + "status": "spam", + "id": "0xaDDfd192daA492b772EA5c180e79570dEC92fF5c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaE0585a259A3BCAB258D6EE02FB583f7B33C2a12/info.json b/blockchains/ethereum/assets/0xaE0585a259A3BCAB258D6EE02FB583f7B33C2a12/info.json index 9190ee5e03a2a..da3968be02ab7 100644 --- a/blockchains/ethereum/assets/0xaE0585a259A3BCAB258D6EE02FB583f7B33C2a12/info.json +++ b/blockchains/ethereum/assets/0xaE0585a259A3BCAB258D6EE02FB583f7B33C2a12/info.json @@ -10,8 +10,8 @@ "id": "0xaE0585a259A3BCAB258D6EE02FB583f7B33C2a12", "links": [ { - "name": "twitter", - "url": "https://twitter.com/temdao_info?s=21&t=OuJAK-G0i4s64-_FgcZ6MQ" + "name": "x", + "url": "https://x.com/temdao_info?s=21&t=OuJAK-G0i4s64-_FgcZ6MQ" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xaE6e307c3Fe9E922E5674DBD7F830Ed49c014c6B/info.json b/blockchains/ethereum/assets/0xaE6e307c3Fe9E922E5674DBD7F830Ed49c014c6B/info.json new file mode 100644 index 0000000000000..f4c6b68fffad0 --- /dev/null +++ b/blockchains/ethereum/assets/0xaE6e307c3Fe9E922E5674DBD7F830Ed49c014c6B/info.json @@ -0,0 +1,21 @@ +{ + "name": "CREDI", + "website": "https://credefi.finance/", + "description": "Credefi connects crypto lenders with SME borrowers from the fiat economy. Their platform enables decentralized and secured lending to portfolios of businesses, protecting lenders while providing them fixed APY that is uncorrelated with crypto markets’ volatility.", + "explorer": "https://etherscan.io/token/0xaE6e307c3Fe9E922E5674DBD7F830Ed49c014c6B", + "type": "ERC20", + "symbol": "CREDI", + "decimals": 18, + "status": "active", + "id": "0xaE6e307c3Fe9E922E5674DBD7F830Ed49c014c6B", + "links": [ + { + "name": "x", + "url": "https://x.com/credefi_finance" + }, + { + "name": "telegram", + "url": "https://t.me/credefi" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaE6e307c3Fe9E922E5674DBD7F830Ed49c014c6B/logo.png b/blockchains/ethereum/assets/0xaE6e307c3Fe9E922E5674DBD7F830Ed49c014c6B/logo.png new file mode 100644 index 0000000000000..7054bba0e5bea Binary files /dev/null and b/blockchains/ethereum/assets/0xaE6e307c3Fe9E922E5674DBD7F830Ed49c014c6B/logo.png differ diff --git a/blockchains/ethereum/assets/0xaa95f26e30001251fb905d264Aa7b00eE9dF6C18/info.json b/blockchains/ethereum/assets/0xaa95f26e30001251fb905d264Aa7b00eE9dF6C18/info.json new file mode 100644 index 0000000000000..16153d16dca4b --- /dev/null +++ b/blockchains/ethereum/assets/0xaa95f26e30001251fb905d264Aa7b00eE9dF6C18/info.json @@ -0,0 +1,36 @@ +{ + "name": "Kendu Inu", + "type": "ERC20", + "symbol": "KENDU", + "decimals": 18, + "website": "https://kenduinu.com", + "description": "Uniting the six native Japanese dog breeds. Kendu is the keeper of peace, the preserver of life, and the protector of unity. Join the pack!", + "explorer": "https://etherscan.io/token/0xaa95f26e30001251fb905d264Aa7b00eE9dF6C18", + "status": "active", + "id": "0xaa95f26e30001251fb905d264Aa7b00eE9dF6C18", + "links": [ + { + "name": "x", + "url": "https://x.com/KenduInu" + }, + { + "name": "telegram", + "url": "https://t.me/KenduInu" + }, + { + "name": "reddit", + "url": "https://reddit.com/KenduInu_Ecosystem" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kendu-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kendu-inu" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaa95f26e30001251fb905d264Aa7b00eE9dF6C18/logo.png b/blockchains/ethereum/assets/0xaa95f26e30001251fb905d264Aa7b00eE9dF6C18/logo.png new file mode 100644 index 0000000000000..640d73c749b05 Binary files /dev/null and b/blockchains/ethereum/assets/0xaa95f26e30001251fb905d264Aa7b00eE9dF6C18/logo.png differ diff --git a/blockchains/ethereum/assets/0xaaAEBE6Fe48E54f431b0C390CfaF0b017d09D42d/info.json b/blockchains/ethereum/assets/0xaaAEBE6Fe48E54f431b0C390CfaF0b017d09D42d/info.json index e6a646633e133..5621464675497 100644 --- a/blockchains/ethereum/assets/0xaaAEBE6Fe48E54f431b0C390CfaF0b017d09D42d/info.json +++ b/blockchains/ethereum/assets/0xaaAEBE6Fe48E54f431b0C390CfaF0b017d09D42d/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/CelsiusNetwork" }, { - "name": "twitter", - "url": "https://twitter.com/celsiusnetwork" + "name": "x", + "url": "https://x.com/celsiusnetwork" }, { "name": "facebook", diff --git a/blockchains/ethereum/assets/0xaaeE1A9723aaDB7afA2810263653A34bA2C21C7a/info.json b/blockchains/ethereum/assets/0xaaeE1A9723aaDB7afA2810263653A34bA2C21C7a/info.json new file mode 100644 index 0000000000000..108fd870a1aca --- /dev/null +++ b/blockchains/ethereum/assets/0xaaeE1A9723aaDB7afA2810263653A34bA2C21C7a/info.json @@ -0,0 +1,24 @@ +{ + "name": "Mog Coin", + "website": "https://mogcoin.xyz/", + "description": "This coin Mogs all other coins.", + "explorer": "https://etherscan.io/token/0xaaee1a9723aadb7afa2810263653a34ba2c21c7a", + "type": "ERC20", + "symbol": "Mog", + "decimals": 18, + "status": "active", + "id": "0xaaeE1A9723aaDB7afA2810263653A34bA2C21C7a", + "tags": [ + "memes" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/MogCoinEth" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mog-coin" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaaeE1A9723aaDB7afA2810263653A34bA2C21C7a/logo.png b/blockchains/ethereum/assets/0xaaeE1A9723aaDB7afA2810263653A34bA2C21C7a/logo.png new file mode 100644 index 0000000000000..fb84f1e879624 Binary files /dev/null and b/blockchains/ethereum/assets/0xaaeE1A9723aaDB7afA2810263653A34bA2C21C7a/logo.png differ diff --git a/blockchains/ethereum/assets/0xab167E816E4d76089119900e941BEfdfA37d6b32/info.json b/blockchains/ethereum/assets/0xab167E816E4d76089119900e941BEfdfA37d6b32/info.json index 432761aba5520..82cad70698bce 100644 --- a/blockchains/ethereum/assets/0xab167E816E4d76089119900e941BEfdfA37d6b32/info.json +++ b/blockchains/ethereum/assets/0xab167E816E4d76089119900e941BEfdfA37d6b32/info.json @@ -10,8 +10,8 @@ "id": "0xab167E816E4d76089119900e941BEfdfA37d6b32", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Shib_nobi" + "name": "x", + "url": "https://x.com/Shib_nobi" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xac6DB8954b73EbF10e84278AC8b9B22a781615D9/info.json b/blockchains/ethereum/assets/0xac6DB8954b73EbF10e84278AC8b9B22a781615D9/info.json new file mode 100644 index 0000000000000..ced622a6bf61f --- /dev/null +++ b/blockchains/ethereum/assets/0xac6DB8954b73EbF10e84278AC8b9B22a781615D9/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bitget Wallet Token (Wormhole)", + "symbol": "BWB", + "type": "ERC20", + "decimals": 18, + "description": "As the foundational asset of the decentralized Bitget Wallet ecosystem, BWB empowers holders with exclusive benefits, including governance rights within our communities and eligibility for future rewards.", + "website": "https://web3.bitget.com/en?source=bitget", + "explorer": "https://etherscan.io/token/0xac6db8954b73ebf10e84278ac8b9b22a781615d9", + "status": "active", + "id": "0xac6DB8954b73EbF10e84278AC8b9B22a781615D9", + "links": [ + { + "name": "x", + "url": "https://x.com/BitgetWallet" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bitget-wallet-token" + } + ] + } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xac6DB8954b73EbF10e84278AC8b9B22a781615D9/logo.png b/blockchains/ethereum/assets/0xac6DB8954b73EbF10e84278AC8b9B22a781615D9/logo.png new file mode 100644 index 0000000000000..e35d5a3e8f0c6 Binary files /dev/null and b/blockchains/ethereum/assets/0xac6DB8954b73EbF10e84278AC8b9B22a781615D9/logo.png differ diff --git a/blockchains/ethereum/assets/0xad5cdc3340904285B8159089974A99a1A09EB4C0/info.json b/blockchains/ethereum/assets/0xad5cdc3340904285B8159089974A99a1A09EB4C0/info.json new file mode 100644 index 0000000000000..2f73fedbeb02c --- /dev/null +++ b/blockchains/ethereum/assets/0xad5cdc3340904285B8159089974A99a1A09EB4C0/info.json @@ -0,0 +1,24 @@ +{ + "name": "Chevron tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Chevron xStock (CVXx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. CVXx tracks the price of Chevron Corporation (the underlying). CVXx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Chevron Corporation, whilst maintaining the benefits of blockchain technology. Key Benefits Chevron Corporation is a major American multinational energy corporation, a leading global oil and gas company known for its vertically integrated operations, spanning exploration, production, refining, marketing, and transportation.", + "explorer": "https://etherscan.io/token/0xad5cdc3340904285B8159089974A99a1A09EB4C0", + "type": "ERC20", + "symbol": "CVXX", + "decimals": 18, + "status": "active", + "id": "0xad5cdc3340904285B8159089974A99a1A09EB4C0", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chevron-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xad5cdc3340904285B8159089974A99a1A09EB4C0/logo.png b/blockchains/ethereum/assets/0xad5cdc3340904285B8159089974A99a1A09EB4C0/logo.png new file mode 100644 index 0000000000000..6d22d110bd6b6 Binary files /dev/null and b/blockchains/ethereum/assets/0xad5cdc3340904285B8159089974A99a1A09EB4C0/logo.png differ diff --git a/blockchains/ethereum/assets/0xadd39272E83895E7d3f244f696B7a25635F34234/info.json b/blockchains/ethereum/assets/0xadd39272E83895E7d3f244f696B7a25635F34234/info.json new file mode 100644 index 0000000000000..29461a4fcef64 --- /dev/null +++ b/blockchains/ethereum/assets/0xadd39272E83895E7d3f244f696B7a25635F34234/info.json @@ -0,0 +1,21 @@ +{ + "name": "Pepe Unchained", + "website": "https://pepeunchained.com/", + "description": "Pepe Unchained The future of meme coins. A Layer 2 blockchain built for Speed, Security, Low Fees–and of course–Memes.", + "explorer": "https://etherscan.io/token/0xadd39272e83895e7d3f244f696b7a25635f34234", + "type": "ERC20", + "symbol": "PEPU", + "decimals": 18, + "status": "active", + "id": "0xadd39272E83895E7d3f244f696B7a25635F34234", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pepe-unchained" + }, + { + "name": "x", + "url": "https://x.com/pepe_unchained" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xadd39272E83895E7d3f244f696B7a25635F34234/logo.png b/blockchains/ethereum/assets/0xadd39272E83895E7d3f244f696B7a25635F34234/logo.png new file mode 100644 index 0000000000000..b0e3b0d0081b9 Binary files /dev/null and b/blockchains/ethereum/assets/0xadd39272E83895E7d3f244f696B7a25635F34234/logo.png differ diff --git a/blockchains/ethereum/assets/0xae41b275aaAF484b541A5881a2dDED9515184CCA/info.json b/blockchains/ethereum/assets/0xae41b275aaAF484b541A5881a2dDED9515184CCA/info.json new file mode 100644 index 0000000000000..7e7db901f9824 --- /dev/null +++ b/blockchains/ethereum/assets/0xae41b275aaAF484b541A5881a2dDED9515184CCA/info.json @@ -0,0 +1,21 @@ +{ + "name": "ChainSwap", + "website": "https://www.chain-swap.org/", + "description": "Transforming cryptocurrency transactions through innovative cross-chain swap and privacy solutions, built upon ground-breaking ChainLink CCIP (Cross Chain Interoperability Protocol) & CCTP (Cross Chain Transfer Protocol) technology", + "explorer": "https://etherscan.io/token/0xae41b275aaaf484b541a5881a2dded9515184cca", + "type": "ERC20", + "symbol": "CSWAP", + "decimals": 18, + "status": "active", + "id": "0xae41b275aaAF484b541A5881a2dDED9515184CCA", + "links": [ + { + "name": "x", + "url": "https://x.com/chainswaperc" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/chainswap-3/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xae41b275aaAF484b541A5881a2dDED9515184CCA/logo.png b/blockchains/ethereum/assets/0xae41b275aaAF484b541A5881a2dDED9515184CCA/logo.png new file mode 100644 index 0000000000000..a2e7afd0203e4 Binary files /dev/null and b/blockchains/ethereum/assets/0xae41b275aaAF484b541A5881a2dDED9515184CCA/logo.png differ diff --git a/blockchains/ethereum/assets/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED/info.json b/blockchains/ethereum/assets/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED/info.json new file mode 100644 index 0000000000000..3e38d8772a5e1 --- /dev/null +++ b/blockchains/ethereum/assets/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED/info.json @@ -0,0 +1,15 @@ +{ + "name": "Bitmine xStock", + "type": "ERC20", + "symbol": "BMNRx", + "decimals": 18, + "description": "Bitmine xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://etherscan.io/token/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED", + "status": "active", + "id": "0xaeB681B69E5094E04d11BCeF51A71358A374C3ED", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED/logo.png b/blockchains/ethereum/assets/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED/logo.png new file mode 100644 index 0000000000000..fb7784c71a3a4 Binary files /dev/null and b/blockchains/ethereum/assets/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED/logo.png differ diff --git a/blockchains/ethereum/assets/0xaeDf386B755465871fF874E3E37Af5976E247064/info.json b/blockchains/ethereum/assets/0xaeDf386B755465871fF874E3E37Af5976E247064/info.json new file mode 100644 index 0000000000000..547d60f89c1b4 --- /dev/null +++ b/blockchains/ethereum/assets/0xaeDf386B755465871fF874E3E37Af5976E247064/info.json @@ -0,0 +1,17 @@ +{ + "name": "Fasttoken", + "type": "ERC20", + "symbol": "FTN", + "decimals": 18, + "website": "https://www.fasttoken.com/", + "description": "Fasttoken is the cryptocurrency of Fastex ecosystem, SoftConstruct ecosystem, and future native coin of Fastex EVM-based blockchain solution.", + "explorer": "https://etherscan.io/token/0xaedf386b755465871ff874e3e37af5976e247064", + "status": "active", + "id": "0xaeDf386B755465871fF874E3E37Af5976E247064", + "links": [ + { + "name": "x", + "url": "https://x.com/fasttoken_com" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaeDf386B755465871fF874E3E37Af5976E247064/logo.png b/blockchains/ethereum/assets/0xaeDf386B755465871fF874E3E37Af5976E247064/logo.png new file mode 100644 index 0000000000000..50d2700731b51 Binary files /dev/null and b/blockchains/ethereum/assets/0xaeDf386B755465871fF874E3E37Af5976E247064/logo.png differ diff --git a/blockchains/ethereum/assets/0xaeE433ADeBe0FBB88dAa47eF0C1A513CaA52EF02/info.json b/blockchains/ethereum/assets/0xaeE433ADeBe0FBB88dAa47eF0C1A513CaA52EF02/info.json index a99ae6538d582..9e943e761678c 100644 --- a/blockchains/ethereum/assets/0xaeE433ADeBe0FBB88dAa47eF0C1A513CaA52EF02/info.json +++ b/blockchains/ethereum/assets/0xaeE433ADeBe0FBB88dAa47eF0C1A513CaA52EF02/info.json @@ -4,8 +4,8 @@ "description": "Cross-chain liquidity mirror protocol", "links": [ { - "name": "twitter", - "url": "https://twitter.com/pontoonfi/" + "name": "x", + "url": "https://x.com/pontoonfi/" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xaea46A60368A7bD060eec7DF8CBa43b7EF41Ad85/info.json b/blockchains/ethereum/assets/0xaea46A60368A7bD060eec7DF8CBa43b7EF41Ad85/info.json index 2142e874a573c..4da5d8625f574 100644 --- a/blockchains/ethereum/assets/0xaea46A60368A7bD060eec7DF8CBa43b7EF41Ad85/info.json +++ b/blockchains/ethereum/assets/0xaea46A60368A7bD060eec7DF8CBa43b7EF41Ad85/info.json @@ -1,5 +1,5 @@ { - "name": "Fetch.ai", + "name": "Artificial Superintelligence Alliance", "website": "https://fetch.ai", "description": "Fetch.ai aims to be at the forefront of accelerating research and the deployment of emerging technologies such as blockchain and AI.", "explorer": "https://etherscan.io/token/0xaea46A60368A7bD060eec7DF8CBa43b7EF41Ad85", diff --git a/blockchains/ethereum/assets/0xb035c3d5083bdc80074F380aeBc9Fcb68aBa0A28/info.json b/blockchains/ethereum/assets/0xb035c3d5083bdc80074F380aeBc9Fcb68aBa0A28/info.json new file mode 100644 index 0000000000000..25fb6cc398dc0 --- /dev/null +++ b/blockchains/ethereum/assets/0xb035c3d5083bdc80074F380aeBc9Fcb68aBa0A28/info.json @@ -0,0 +1,24 @@ +{ + "name": "Airbnb (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "ABNBon is the Ondo Tokenized version of Airbnb, giving tokenholders economic exposure similar to holding ABNB and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xb035c3d5083bdc80074F380aeBc9Fcb68aBa0A28", + "type": "ERC20", + "symbol": "ABNBon", + "decimals": 18, + "status": "active", + "id": "0xb035c3d5083bdc80074F380aeBc9Fcb68aBa0A28", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/airbnb-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb035c3d5083bdc80074F380aeBc9Fcb68aBa0A28/logo.png b/blockchains/ethereum/assets/0xb035c3d5083bdc80074F380aeBc9Fcb68aBa0A28/logo.png new file mode 100644 index 0000000000000..3537e046a248f Binary files /dev/null and b/blockchains/ethereum/assets/0xb035c3d5083bdc80074F380aeBc9Fcb68aBa0A28/logo.png differ diff --git a/blockchains/ethereum/assets/0xb0AC2b5a73da0e67A8e5489Ba922B3f8d582e058/info.json b/blockchains/ethereum/assets/0xb0AC2b5a73da0e67A8e5489Ba922B3f8d582e058/info.json new file mode 100644 index 0000000000000..07b3add7a569e --- /dev/null +++ b/blockchains/ethereum/assets/0xb0AC2b5a73da0e67A8e5489Ba922B3f8d582e058/info.json @@ -0,0 +1,21 @@ +{ + "name": "Shiro Neko", + "website": "https://www.shironeko.gg/", + "description": "Shiro Neko, the daring new cat on the blockchain, is ready to fulfil the cat prophecy and kick-start cat season. Join $SHIRO today!", + "explorer": "https://etherscan.io/token/0xb0AC2b5a73da0e67A8e5489Ba922B3f8d582e058", + "type": "ERC20", + "symbol": "SHIRO", + "decimals": 18, + "status": "active", + "id": "0xb0AC2b5a73da0e67A8e5489Ba922B3f8d582e058", + "links": [ + { + "name": "x", + "url": "https://x.com/shiro" + }, + { + "name": "telegram", + "url": "https://t.me/Shiro_Community" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb0AC2b5a73da0e67A8e5489Ba922B3f8d582e058/logo.png b/blockchains/ethereum/assets/0xb0AC2b5a73da0e67A8e5489Ba922B3f8d582e058/logo.png new file mode 100644 index 0000000000000..ced190b9b0f37 Binary files /dev/null and b/blockchains/ethereum/assets/0xb0AC2b5a73da0e67A8e5489Ba922B3f8d582e058/logo.png differ diff --git a/blockchains/ethereum/assets/0xb131f4A55907B10d1F0A50d8ab8FA09EC342cd74/info.json b/blockchains/ethereum/assets/0xb131f4A55907B10d1F0A50d8ab8FA09EC342cd74/info.json new file mode 100644 index 0000000000000..4c91e4a71f6e5 --- /dev/null +++ b/blockchains/ethereum/assets/0xb131f4A55907B10d1F0A50d8ab8FA09EC342cd74/info.json @@ -0,0 +1,36 @@ +{ + "name": "Memecoin", + "symbol": "MEME", + "type": "ERC20", + "decimals": 18, + "description": "Memecoin (MEME) is the native ecosystem token of Memeland. Memeland is the web3 venture studio by 9GAG, the globally popular meme platform.", + "website": "https://www.memecoin.org", + "explorer": "https://etherscan.io/token/0xb131f4a55907b10d1f0a50d8ab8fa09ec342cd74", + "status": "active", + "id": "0xb131f4A55907B10d1F0A50d8ab8FA09EC342cd74", + "tags": [ + "memes" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/memecoin" + }, + { + "name": "telegram", + "url": "https://t.me/memecoin" + }, + { + "name": "whitepaper", + "url": "https://www.memecoin.org/whitepaper" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/meme" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/memecoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb131f4A55907B10d1F0A50d8ab8FA09EC342cd74/logo.png b/blockchains/ethereum/assets/0xb131f4A55907B10d1F0A50d8ab8FA09EC342cd74/logo.png new file mode 100644 index 0000000000000..2db61d5fb9c56 Binary files /dev/null and b/blockchains/ethereum/assets/0xb131f4A55907B10d1F0A50d8ab8FA09EC342cd74/logo.png differ diff --git a/blockchains/ethereum/assets/0xb1c9bc94aCd2fAE6aABf4ffae4429B93512a81D2/info.json b/blockchains/ethereum/assets/0xb1c9bc94aCd2fAE6aABf4ffae4429B93512a81D2/info.json index 2b7a2422575f7..cc8998c84568e 100644 --- a/blockchains/ethereum/assets/0xb1c9bc94aCd2fAE6aABf4ffae4429B93512a81D2/info.json +++ b/blockchains/ethereum/assets/0xb1c9bc94aCd2fAE6aABf4ffae4429B93512a81D2/info.json @@ -14,8 +14,8 @@ "url": "https://medium.com/ariadne-project" }, { - "name": "twitter", - "url": "https://twitter.com/ariadne_finance" + "name": "x", + "url": "https://x.com/ariadne_finance" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xb2089A7069861C8D90c8dA3aaCAB8e9188C0C531/info.json b/blockchains/ethereum/assets/0xb2089A7069861C8D90c8dA3aaCAB8e9188C0C531/info.json index e9567afd0030f..9b6502d2ed464 100644 --- a/blockchains/ethereum/assets/0xb2089A7069861C8D90c8dA3aaCAB8e9188C0C531/info.json +++ b/blockchains/ethereum/assets/0xb2089A7069861C8D90c8dA3aaCAB8e9188C0C531/info.json @@ -10,8 +10,8 @@ "id": "0xb2089A7069861C8D90c8dA3aaCAB8e9188C0C531", "links": [ { - "name": "twitter", - "url": "https://twitter.com/setpowerfree" + "name": "x", + "url": "https://x.com/setpowerfree" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0xb23d80f5FefcDDaa212212F028021B41DEd428CF/info.json b/blockchains/ethereum/assets/0xb23d80f5FefcDDaa212212F028021B41DEd428CF/info.json new file mode 100644 index 0000000000000..7010c2f26236a --- /dev/null +++ b/blockchains/ethereum/assets/0xb23d80f5FefcDDaa212212F028021B41DEd428CF/info.json @@ -0,0 +1,21 @@ +{ + "name": "Prime", + "type": "ERC20", + "symbol": "PRIME", + "decimals": 18, + "website": "https://www.echelon.io/", + "description": "The Echelon Prime Foundation is a Web3 ecosystem advancing the next-gen of gaming. Echelon creates and distributes tools to encourage innovation in, and promote the growth of, games. These tools encompass smart contract libraries, communication infrastructure, governance frameworks and more.", + "explorer": "https://etherscan.io/token/0xb23d80f5fefcddaa212212f028021b41ded428cf", + "status": "active", + "id": "0xb23d80f5FefcDDaa212212F028021B41DEd428CF", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/echelon-prime/" + }, + { + "name": "x", + "url": "https://x.com/EchelonFND" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb23d80f5FefcDDaa212212F028021B41DEd428CF/logo.png b/blockchains/ethereum/assets/0xb23d80f5FefcDDaa212212F028021B41DEd428CF/logo.png new file mode 100644 index 0000000000000..1aea1924e8403 Binary files /dev/null and b/blockchains/ethereum/assets/0xb23d80f5FefcDDaa212212F028021B41DEd428CF/logo.png differ diff --git a/blockchains/ethereum/assets/0xb2617246d0c6c0087f18703d576831899ca94f01/info.json b/blockchains/ethereum/assets/0xb2617246d0c6c0087f18703d576831899ca94f01/info.json new file mode 100644 index 0000000000000..bc532a6dfc1d7 --- /dev/null +++ b/blockchains/ethereum/assets/0xb2617246d0c6c0087f18703d576831899ca94f01/info.json @@ -0,0 +1,52 @@ +{ + "name": "ZIGChain", + "type": "ERC20", + "symbol": "ZIG", + "decimals": 18, + "website": "https://zigchain.com", + "description": "ZIGChain is a Layer 1 blockchain focused on unlocking financial opportunities for everyone—regardless of income, location, or knowledge level", + "explorer": "https://etherscan.io/token/0xb2617246d0c6c0087f18703d576831899ca94f01", + "status": "active", + "id": "0xb2617246d0c6c0087f18703d576831899ca94f01", + "links": [ + { + "name": "x", + "url": "https://x.com/ZIGChain" + }, + { + "name": "github", + "url": "https://github.com/ZIGChain" + }, + { + "name": "telegram_news", + "url": "https://t.me/ZIGChainAnnouncements" + }, + { + "name": "docs", + "url": "https://docs.zigchain.com/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/h84923jeT" + }, + { + "name": "whitepaper", + "url": "https://cdn.prod.website-files.com/68343fb616fa6ee830ca7b09/68ded001e86b6cdb57358749_30-09-25%20MiCA.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zigcoin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/zigchain" + } + ], + "tags": [ + "governance", + "defi", + "staking", + "staking-native", + "dapp" + ] +} diff --git a/blockchains/ethereum/assets/0xb2617246d0c6c0087f18703d576831899ca94f01/logo.png b/blockchains/ethereum/assets/0xb2617246d0c6c0087f18703d576831899ca94f01/logo.png new file mode 100644 index 0000000000000..f5410d7401f0d Binary files /dev/null and b/blockchains/ethereum/assets/0xb2617246d0c6c0087f18703d576831899ca94f01/logo.png differ diff --git a/blockchains/ethereum/assets/0xb32aC3C79A94aC1eb258f3C830bBDbc676483c93/info.json b/blockchains/ethereum/assets/0xb32aC3C79A94aC1eb258f3C830bBDbc676483c93/info.json index 2ff3abaf4e118..ef1e8ea5dfb77 100644 --- a/blockchains/ethereum/assets/0xb32aC3C79A94aC1eb258f3C830bBDbc676483c93/info.json +++ b/blockchains/ethereum/assets/0xb32aC3C79A94aC1eb258f3C830bBDbc676483c93/info.json @@ -10,8 +10,8 @@ "id": "0xb32aC3C79A94aC1eb258f3C830bBDbc676483c93", "links": [ { - "name": "twitter", - "url": "https://twitter.com/openswapdex" + "name": "x", + "url": "https://x.com/openswapdex" }, { "name": "blog", diff --git a/blockchains/ethereum/assets/0xb33D999469a7e6b9EbC25A3a05248287b855eD46/info.json b/blockchains/ethereum/assets/0xb33D999469a7e6b9EbC25A3a05248287b855eD46/info.json new file mode 100644 index 0000000000000..8112fad344992 --- /dev/null +++ b/blockchains/ethereum/assets/0xb33D999469a7e6b9EbC25A3a05248287b855eD46/info.json @@ -0,0 +1,21 @@ +{ + "name": "Flockerz", + "symbol": "FLOCK", + "type": "ERC20", + "decimals": 18, + "description": "The future of decentralization has arrived. In the chaotic PVP world of meme coins, where every key decision is made by a single leader, FLOCKERZ empowers its community—known as 'The Flock'—to guide the project to the promised land", + "website": "https://flockerz.com", + "explorer": "https://etherscan.io/token/0xb33d999469a7e6b9ebc25a3a05248287b855ed46", + "status": "active", + "id": "0xb33D999469a7e6b9EbC25A3a05248287b855eD46", + "links": [ + { + "name": "x", + "url": "https://x.com/FlockerzToken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/flock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb33D999469a7e6b9EbC25A3a05248287b855eD46/logo.png b/blockchains/ethereum/assets/0xb33D999469a7e6b9EbC25A3a05248287b855eD46/logo.png new file mode 100644 index 0000000000000..ea95524134277 Binary files /dev/null and b/blockchains/ethereum/assets/0xb33D999469a7e6b9EbC25A3a05248287b855eD46/logo.png differ diff --git a/blockchains/ethereum/assets/0xb365Cd2588065F522D379AD19e903304f6B622C6/info.json b/blockchains/ethereum/assets/0xb365Cd2588065F522D379AD19e903304f6B622C6/info.json new file mode 100644 index 0000000000000..8f699788b22f8 --- /dev/null +++ b/blockchains/ethereum/assets/0xb365Cd2588065F522D379AD19e903304f6B622C6/info.json @@ -0,0 +1,24 @@ +{ + "name": "Mastercard tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Mastercard xStock (MAx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. MAx tracks the price of Mastercard Inc. (the underlying). MAx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Mastercard Inc., whilst maintaining the benefits of blockchain technology. Mastercard Inc. is a global payments and technology company that facilitates electronic payments by connecting consumers, financial institutions, merchants, governments, and businesses worldwide.", + "explorer": "https://etherscan.io/token/0xb365Cd2588065F522D379AD19e903304f6B622C6", + "type": "ERC20", + "symbol": "MAX", + "decimals": 18, + "status": "active", + "id": "0xb365Cd2588065F522D379AD19e903304f6B622C6", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mastercard-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb365Cd2588065F522D379AD19e903304f6B622C6/logo.png b/blockchains/ethereum/assets/0xb365Cd2588065F522D379AD19e903304f6B622C6/logo.png new file mode 100644 index 0000000000000..85dccc98f3df9 Binary files /dev/null and b/blockchains/ethereum/assets/0xb365Cd2588065F522D379AD19e903304f6B622C6/logo.png differ diff --git a/blockchains/ethereum/assets/0xb3999F658C0391d94A37f7FF328F3feC942BcADC/info.json b/blockchains/ethereum/assets/0xb3999F658C0391d94A37f7FF328F3feC942BcADC/info.json new file mode 100644 index 0000000000000..ea5bfc471bb0c --- /dev/null +++ b/blockchains/ethereum/assets/0xb3999F658C0391d94A37f7FF328F3feC942BcADC/info.json @@ -0,0 +1,28 @@ +{ + "name": "Hashflow", + "type": "ERC20", + "symbol": "HFT", + "decimals": 18, + "website": "https://www.hashflow.com", + "description": "Hashflow is a decentralized exchange designed for interoperability, zero slippage, and MEV-protected trades.", + "explorer": "https://etherscan.io/token/0xb3999F658C0391d94A37f7FF328F3feC942BcADC", + "status": "active", + "id": "0xb3999F658C0391d94A37f7FF328F3feC942BcADC", + "links": [ + { + "name": "x", + "url": "https://x.com/hashflow" + }, + { + "name": "blog", + "url": "https://blog.hashflow.com/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Hashflow" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb3999F658C0391d94A37f7FF328F3feC942BcADC/logo.png b/blockchains/ethereum/assets/0xb3999F658C0391d94A37f7FF328F3feC942BcADC/logo.png new file mode 100644 index 0000000000000..47cb1e7b4ed9e Binary files /dev/null and b/blockchains/ethereum/assets/0xb3999F658C0391d94A37f7FF328F3feC942BcADC/logo.png differ diff --git a/blockchains/ethereum/assets/0xb51b3DC407D8722FEAecA9229D42EAdf5fCcdcEC/info.json b/blockchains/ethereum/assets/0xb51b3DC407D8722FEAecA9229D42EAdf5fCcdcEC/info.json new file mode 100644 index 0000000000000..afa3889f1f738 --- /dev/null +++ b/blockchains/ethereum/assets/0xb51b3DC407D8722FEAecA9229D42EAdf5fCcdcEC/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDC.a", + "type": "ERC20", + "symbol": "FAKE USDC.a", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://etherscan.io/token/0xb51b3DC407D8722FEAecA9229D42EAdf5fCcdcEC", + "explorer": "https://etherscan.io/token/0xb51b3DC407D8722FEAecA9229D42EAdf5fCcdcEC", + "status": "spam", + "id": "0xb51b3DC407D8722FEAecA9229D42EAdf5fCcdcEC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb51db25c920C16F2865C37011c3Eec91Db946B07/info.json b/blockchains/ethereum/assets/0xb51db25c920C16F2865C37011c3Eec91Db946B07/info.json new file mode 100644 index 0000000000000..6f45efda80b01 --- /dev/null +++ b/blockchains/ethereum/assets/0xb51db25c920C16F2865C37011c3Eec91Db946B07/info.json @@ -0,0 +1,28 @@ +{ + "name": "Gemini Space Station (Ondo Tokenized)", + "type": "ERC20", + "symbol": "GEMIon", + "decimals": 18, + "description": "GEMIon is the Ondo Tokenized version of Gemini Space Station, giving tokenholders economic exposure similar to holding GEMI and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xb51db25c920C16F2865C37011c3Eec91Db946B07", + "status": "active", + "id": "0xb51db25c920C16F2865C37011c3Eec91Db946B07", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gemini-space-station-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gemini-space-station-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb51db25c920C16F2865C37011c3Eec91Db946B07/logo.png b/blockchains/ethereum/assets/0xb51db25c920C16F2865C37011c3Eec91Db946B07/logo.png new file mode 100644 index 0000000000000..50198ae8b3c65 Binary files /dev/null and b/blockchains/ethereum/assets/0xb51db25c920C16F2865C37011c3Eec91Db946B07/logo.png differ diff --git a/blockchains/ethereum/assets/0xb526FD41360c98929006f3bDcBd16d55dE4b0069/info.json b/blockchains/ethereum/assets/0xb526FD41360c98929006f3bDcBd16d55dE4b0069/info.json index 5ca12e772dc90..d2223d65cd0fc 100644 --- a/blockchains/ethereum/assets/0xb526FD41360c98929006f3bDcBd16d55dE4b0069/info.json +++ b/blockchains/ethereum/assets/0xb526FD41360c98929006f3bDcBd16d55dE4b0069/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/thirmtoken" }, { - "name": "twitter", - "url": "https://twitter.com/thirmprotocol" + "name": "x", + "url": "https://x.com/thirmprotocol" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb59490aB09A0f526Cc7305822aC65f2Ab12f9723/info.json b/blockchains/ethereum/assets/0xb59490aB09A0f526Cc7305822aC65f2Ab12f9723/info.json index be58f5902b739..88086f3112bc4 100644 --- a/blockchains/ethereum/assets/0xb59490aB09A0f526Cc7305822aC65f2Ab12f9723/info.json +++ b/blockchains/ethereum/assets/0xb59490aB09A0f526Cc7305822aC65f2Ab12f9723/info.json @@ -10,8 +10,8 @@ "id": "0xb59490aB09A0f526Cc7305822aC65f2Ab12f9723", "links": [ { - "name": "twitter", - "url": "https://twitter.com/litentry" + "name": "x", + "url": "https://x.com/litentry" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0xb612bFC5cE2FB1337Bd29F5Af24ca85DbB181cE2/info.json b/blockchains/ethereum/assets/0xb612bFC5cE2FB1337Bd29F5Af24ca85DbB181cE2/info.json new file mode 100644 index 0000000000000..342d368f6bf62 --- /dev/null +++ b/blockchains/ethereum/assets/0xb612bFC5cE2FB1337Bd29F5Af24ca85DbB181cE2/info.json @@ -0,0 +1,21 @@ +{ + "name": "Klaus", + "type": "ERC20", + "symbol": "KLAUS", + "decimals": 9, + "website": "https://www.klausoneth.com/", + "description": "$KLAUS - little fish, big dream -riding the wave into the next generation of meme tokens.", + "explorer": "https://etherscan.io/token/0xb612bFC5cE2FB1337Bd29F5Af24ca85DbB181cE2", + "status": "active", + "id": "0xb612bFC5cE2FB1337Bd29F5Af24ca85DbB181cE2", + "links": [ + { + "name": "x", + "url": "https://x.com/KlausOnEth" + }, + { + "name": "telegram", + "url": "https://t.me/klausoneth" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb612bFC5cE2FB1337Bd29F5Af24ca85DbB181cE2/logo.png b/blockchains/ethereum/assets/0xb612bFC5cE2FB1337Bd29F5Af24ca85DbB181cE2/logo.png new file mode 100644 index 0000000000000..cfd787a674464 Binary files /dev/null and b/blockchains/ethereum/assets/0xb612bFC5cE2FB1337Bd29F5Af24ca85DbB181cE2/logo.png differ diff --git a/blockchains/ethereum/assets/0xb65722e0fbD75aAF5Be39022510Ed9b018FC1FaC/info.json b/blockchains/ethereum/assets/0xb65722e0fbD75aAF5Be39022510Ed9b018FC1FaC/info.json index f5315fe95fff2..972a13786c1d8 100644 --- a/blockchains/ethereum/assets/0xb65722e0fbD75aAF5Be39022510Ed9b018FC1FaC/info.json +++ b/blockchains/ethereum/assets/0xb65722e0fbD75aAF5Be39022510Ed9b018FC1FaC/info.json @@ -10,11 +10,11 @@ "id": "0xb65722e0fbD75aAF5Be39022510Ed9b018FC1FaC", "links": [ { - "name": "twitter", - "url": "https://twitter.com/NFTHearts" + "name": "x", + "url": "https://x.com/NFTHearts" } ], "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb6C53431608E626AC81a9776ac3e999c5556717c/info.json b/blockchains/ethereum/assets/0xb6C53431608E626AC81a9776ac3e999c5556717c/info.json index 62b86039cfd7f..c23e2740b1c92 100644 --- a/blockchains/ethereum/assets/0xb6C53431608E626AC81a9776ac3e999c5556717c/info.json +++ b/blockchains/ethereum/assets/0xb6C53431608E626AC81a9776ac3e999c5556717c/info.json @@ -10,8 +10,8 @@ "id": "0xb6C53431608E626AC81a9776ac3e999c5556717c", "links": [ { - "name": "twitter", - "url": "https://twitter.com/pNetworkDeFi" + "name": "x", + "url": "https://x.com/pNetworkDeFi" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0xb6E362a39db703f0F7cF582C9fc043A51624e53d/info.json b/blockchains/ethereum/assets/0xb6E362a39db703f0F7cF582C9fc043A51624e53d/info.json new file mode 100644 index 0000000000000..eabf1d35ded34 --- /dev/null +++ b/blockchains/ethereum/assets/0xb6E362a39db703f0F7cF582C9fc043A51624e53d/info.json @@ -0,0 +1,28 @@ +{ + "name": "Li Auto (Ondo Tokenized)", + "type": "ERC20", + "symbol": "LIon", + "decimals": 18, + "description": "LIon is the Ondo Tokenized version of Li Auto, giving tokenholders economic exposure similar to holding LI and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xb6E362a39db703f0F7cF582C9fc043A51624e53d", + "status": "active", + "id": "0xb6E362a39db703f0F7cF582C9fc043A51624e53d", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/li-auto-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/li-auto-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb6E362a39db703f0F7cF582C9fc043A51624e53d/logo.png b/blockchains/ethereum/assets/0xb6E362a39db703f0F7cF582C9fc043A51624e53d/logo.png new file mode 100644 index 0000000000000..b1097ce82bb59 Binary files /dev/null and b/blockchains/ethereum/assets/0xb6E362a39db703f0F7cF582C9fc043A51624e53d/logo.png differ diff --git a/blockchains/ethereum/assets/0xb72E76cCf005313868DB7b48070901a44629da98/info.json b/blockchains/ethereum/assets/0xb72E76cCf005313868DB7b48070901a44629da98/info.json new file mode 100644 index 0000000000000..99794d541472b --- /dev/null +++ b/blockchains/ethereum/assets/0xb72E76cCf005313868DB7b48070901a44629da98/info.json @@ -0,0 +1,26 @@ +{ + "name": "SquidGrow", + "type": "ERC20", + "symbol": "SQGROW", + "decimals": 9, + "website": "https://squidgrow.wtf", + "description": "SquidGrow, established on June 18, 2022, under the leadership of Shibtoshi, a notable Shiba Inu whale, is a multifaceted project that seamlessly integrates utility with meme culture. Its native token, SquidGrow, serves as the primary asset, benefiting from a variety of revenue streams.", + "explorer": "https://etherscan.io/token/0xb72E76cCf005313868DB7b48070901a44629da98", + "status": "active", + "id": "0xb72E76cCf005313868DB7b48070901a44629da98", + "links": [ + { + "name": "x", + "url": "https://x.com/Squid_Grow" + }, + { + "name": "telegram", + "url": "https://t.me/squidgrowportalentry" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/squid-grow/" + } + ], + "tags": [] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb72E76cCf005313868DB7b48070901a44629da98/logo.png b/blockchains/ethereum/assets/0xb72E76cCf005313868DB7b48070901a44629da98/logo.png new file mode 100644 index 0000000000000..d59e742fbedc6 Binary files /dev/null and b/blockchains/ethereum/assets/0xb72E76cCf005313868DB7b48070901a44629da98/logo.png differ diff --git a/blockchains/ethereum/assets/0xb753428af26E81097e7fD17f40c88aaA3E04902c/info.json b/blockchains/ethereum/assets/0xb753428af26E81097e7fD17f40c88aaA3E04902c/info.json index 78fa508405637..286b79f031a3e 100644 --- a/blockchains/ethereum/assets/0xb753428af26E81097e7fD17f40c88aaA3E04902c/info.json +++ b/blockchains/ethereum/assets/0xb753428af26E81097e7fD17f40c88aaA3E04902c/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/saffron-finance/saffron" }, { - "name": "twitter", - "url": "https://twitter.com/saffron.finance" + "name": "x", + "url": "https://x.com/saffron.finance" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xb7ba8461664dE526A3ae44189727DFC768625902/info.json b/blockchains/ethereum/assets/0xb7ba8461664dE526A3ae44189727DFC768625902/info.json index 27c6358131f6f..163242df006fc 100644 --- a/blockchains/ethereum/assets/0xb7ba8461664dE526A3ae44189727DFC768625902/info.json +++ b/blockchains/ethereum/assets/0xb7ba8461664dE526A3ae44189727DFC768625902/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/ympl-protocol" }, { - "name": "twitter", - "url": "https://twitter.com/ymplofficial" + "name": "x", + "url": "https://x.com/ymplofficial" }, { "name": "medium", diff --git a/blockchains/ethereum/assets/0xb93746dc7A8bf5E381FFB278085B1F62bd0A1fC8/info.json b/blockchains/ethereum/assets/0xb93746dc7A8bf5E381FFB278085B1F62bd0A1fC8/info.json new file mode 100644 index 0000000000000..f96f38847ef47 --- /dev/null +++ b/blockchains/ethereum/assets/0xb93746dc7A8bf5E381FFB278085B1F62bd0A1fC8/info.json @@ -0,0 +1,17 @@ +{ + "name": "Sendex AI", + "type": "ERC20", + "symbol": "SENDEX", + "decimals": 9, + "website": "https://sendex.ai/", + "description": "Sendex AI is a complete Cryptocurrency Fintech Ecosystem containing a anonymous tool that can help users to request payments and send cryptocurrencies in a full privacy process without sender's or receiver's wallet being traceable to anyone", + "explorer": "https://etherscan.io/token/0xb93746dc7a8bf5e381ffb278085b1f62bd0a1fc8", + "status": "active", + "id": "0xb93746dc7A8bf5E381FFB278085B1F62bd0A1fC8", + "links": [ + { + "name": "x", + "url": "https://x.com/sendexai" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb93746dc7A8bf5E381FFB278085B1F62bd0A1fC8/logo.png b/blockchains/ethereum/assets/0xb93746dc7A8bf5E381FFB278085B1F62bd0A1fC8/logo.png new file mode 100644 index 0000000000000..5ae86e1630013 Binary files /dev/null and b/blockchains/ethereum/assets/0xb93746dc7A8bf5E381FFB278085B1F62bd0A1fC8/logo.png differ diff --git a/blockchains/ethereum/assets/0xb9C0c6852EeDa726cC8563900b0D66f8dB3ED199/info.json b/blockchains/ethereum/assets/0xb9C0c6852EeDa726cC8563900b0D66f8dB3ED199/info.json new file mode 100644 index 0000000000000..d779254a076eb --- /dev/null +++ b/blockchains/ethereum/assets/0xb9C0c6852EeDa726cC8563900b0D66f8dB3ED199/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT XPL", + "type": "ERC20", + "symbol": "HONEYPOT XPL", + "decimals": 18, + "website": "https://etherscan.io/token/0xb9c0c6852eeda726cc8563900b0d66f8db3ed199", + "description": "HONEYPOT XPL", + "explorer": "https://etherscan.io/token/0xb9C0c6852EeDa726cC8563900b0D66f8dB3ED199", + "status": "spam", + "id": "0xb9C0c6852EeDa726cC8563900b0D66f8dB3ED199" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb9f599ce614Feb2e1BBe58F180F370D05b39344E/info.json b/blockchains/ethereum/assets/0xb9f599ce614Feb2e1BBe58F180F370D05b39344E/info.json new file mode 100644 index 0000000000000..7226d14e1051b --- /dev/null +++ b/blockchains/ethereum/assets/0xb9f599ce614Feb2e1BBe58F180F370D05b39344E/info.json @@ -0,0 +1,21 @@ +{ + "name": "PepeFork", + "website": "https://porkcoin.com/", + "description": "$PORK, a pepe-fork created by @Pauly0x.", + "explorer": "https://etherscan.io/token/0xb9f599ce614Feb2e1BBe58F180F370D05b39344E", + "type": "ERC20", + "symbol": "PORK", + "decimals": 18, + "status": "active", + "id": "0xb9f599ce614Feb2e1BBe58F180F370D05b39344E", + "links": [ + { + "name": "x", + "url": "https://x.com/Pork0x" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pepefork/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb9f599ce614Feb2e1BBe58F180F370D05b39344E/logo.png b/blockchains/ethereum/assets/0xb9f599ce614Feb2e1BBe58F180F370D05b39344E/logo.png new file mode 100644 index 0000000000000..0837fd2a40e36 Binary files /dev/null and b/blockchains/ethereum/assets/0xb9f599ce614Feb2e1BBe58F180F370D05b39344E/logo.png differ diff --git a/blockchains/ethereum/assets/0xbA47214eDd2bb43099611b208f75E4b42FDcfEDc/info.json b/blockchains/ethereum/assets/0xbA47214eDd2bb43099611b208f75E4b42FDcfEDc/info.json new file mode 100644 index 0000000000000..12557d179aa5a --- /dev/null +++ b/blockchains/ethereum/assets/0xbA47214eDd2bb43099611b208f75E4b42FDcfEDc/info.json @@ -0,0 +1,24 @@ +{ + "name": "Alphabet Class A (Ondo)", + "website": "https://ondo.finance/", + "description": "GOOGLon is the Ondo Tokenized version of Alphabet Class A, giving tokenholders economic exposure similar to holding GOOGL and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xbA47214eDd2bb43099611b208f75E4b42FDcfEDc", + "type": "ERC20", + "symbol": "GOOGLon", + "decimals": 18, + "status": "active", + "id": "0xbA47214eDd2bb43099611b208f75E4b42FDcfEDc", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/alphabet-class-a-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbA47214eDd2bb43099611b208f75E4b42FDcfEDc/logo.png b/blockchains/ethereum/assets/0xbA47214eDd2bb43099611b208f75E4b42FDcfEDc/logo.png new file mode 100644 index 0000000000000..3badc16724c8f Binary files /dev/null and b/blockchains/ethereum/assets/0xbA47214eDd2bb43099611b208f75E4b42FDcfEDc/logo.png differ diff --git a/blockchains/ethereum/assets/0xbA745513ACEbcBb977497C569D4F7d340f2A936B/info.json b/blockchains/ethereum/assets/0xbA745513ACEbcBb977497C569D4F7d340f2A936B/info.json index 85dbb6afe3b5a..3b1c9849d6a5a 100644 --- a/blockchains/ethereum/assets/0xbA745513ACEbcBb977497C569D4F7d340f2A936B/info.json +++ b/blockchains/ethereum/assets/0xbA745513ACEbcBb977497C569D4F7d340f2A936B/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/CyberFM/" }, { - "name": "twitter", - "url": "https://twitter.com/Mainstream For The Underground" + "name": "x", + "url": "https://x.com/Mainstream For The Underground" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C/info.json b/blockchains/ethereum/assets/0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C/info.json index a2bf4d1a9f3c0..91985bc1df22a 100644 --- a/blockchains/ethereum/assets/0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C/info.json +++ b/blockchains/ethereum/assets/0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C/info.json @@ -6,6 +6,6 @@ "website": "https://zedxion.io", "description": "Zedxion offers a comprehensive solution to the major problems faced by the traditional, fiat-driven monetary system. Building a crypto powered ecosystem comprising Zedxion Token.", "explorer": "https://etherscan.io/token/0xbafdabadcf19d0cfbbe0ab9c69cf050d86ff888c", - "status": "active", + "status": "abandoned", "id": "0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C" } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C/logo.png b/blockchains/ethereum/assets/0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C/logo.png deleted file mode 100644 index f8a3cf70f8f50..0000000000000 Binary files a/blockchains/ethereum/assets/0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json b/blockchains/ethereum/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json index bc5f571d45c7a..d74bf2184d671 100644 --- a/blockchains/ethereum/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json +++ b/blockchains/ethereum/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json @@ -10,8 +10,8 @@ "id": "0xbBD7B847C6d0d0B5691518a363194D71426475F1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/everrise" + "name": "x", + "url": "https://x.com/everrise" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xbBbfa5d0Bfd30B9ebce64b06E3E9Fc85E7f0F396/info.json b/blockchains/ethereum/assets/0xbBbfa5d0Bfd30B9ebce64b06E3E9Fc85E7f0F396/info.json index 16f0cf4ce385e..f723d21b6f01e 100644 --- a/blockchains/ethereum/assets/0xbBbfa5d0Bfd30B9ebce64b06E3E9Fc85E7f0F396/info.json +++ b/blockchains/ethereum/assets/0xbBbfa5d0Bfd30B9ebce64b06E3E9Fc85E7f0F396/info.json @@ -10,8 +10,8 @@ "id": "0xbBbfa5d0Bfd30B9ebce64b06E3E9Fc85E7f0F396", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SingularityDao" + "name": "x", + "url": "https://x.com/SingularityDao" }, { "name": "telegram", @@ -53,4 +53,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbD03BD923c7D51019Fd84571D84e4eBcf7213509/info.json b/blockchains/ethereum/assets/0xbD03BD923c7D51019Fd84571D84e4eBcf7213509/info.json index d439e9bdb638f..add84a79689fb 100644 --- a/blockchains/ethereum/assets/0xbD03BD923c7D51019Fd84571D84e4eBcf7213509/info.json +++ b/blockchains/ethereum/assets/0xbD03BD923c7D51019Fd84571D84e4eBcf7213509/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/XenoTrades/rockettoken" }, { - "name": "twitter", - "url": "https://twitter.com/RocketToken" + "name": "x", + "url": "https://x.com/RocketToken" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777/info.json b/blockchains/ethereum/assets/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777/info.json new file mode 100644 index 0000000000000..92357773be0c3 --- /dev/null +++ b/blockchains/ethereum/assets/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777/info.json @@ -0,0 +1,24 @@ +{ + "name": "Vanguard tokenized ETF (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Vanguard xStock (VTIx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. VTIx tracks the price of Vanguard Total Stock Market Index Fund ETF (the underlying). VTIx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the ETF price of Vanguard Total Stock Market Index Fund ETF, whilst maintaining the benefits of blockchain technology. Vanguard Total Stock Market Index Fund ETF (VTI) is an exchange-traded fund that seeks to track the performance of the CRSP U.S. Total Market Index, covering nearly all publicly traded U.S. companies.", + "explorer": "https://etherscan.io/token/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777", + "type": "ERC20", + "symbol": "VTIX", + "decimals": 18, + "status": "active", + "id": "0xbD730E618bcD88C82dDeE52e10275CF2f88A4777", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vanguard-tokenized-etf-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777/logo.png b/blockchains/ethereum/assets/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777/logo.png new file mode 100644 index 0000000000000..ec248062ccc2c Binary files /dev/null and b/blockchains/ethereum/assets/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777/logo.png differ diff --git a/blockchains/ethereum/assets/0xbE9375C6a420D2eEB258962efB95551A5b722803/info.json b/blockchains/ethereum/assets/0xbE9375C6a420D2eEB258962efB95551A5b722803/info.json index e988ffd7c33de..723128ac54ae9 100644 --- a/blockchains/ethereum/assets/0xbE9375C6a420D2eEB258962efB95551A5b722803/info.json +++ b/blockchains/ethereum/assets/0xbE9375C6a420D2eEB258962efB95551A5b722803/info.json @@ -6,12 +6,12 @@ "type": "ERC20", "symbol": "STMX", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xbE9375C6a420D2eEB258962efB95551A5b722803", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Stormxio" + "name": "x", + "url": "https://x.com/Stormxio" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xbEa98c05eEAe2f3bC8c3565Db7551Eb738c8CCAb/info.json b/blockchains/ethereum/assets/0xbEa98c05eEAe2f3bC8c3565Db7551Eb738c8CCAb/info.json index ed118544618e2..1a4e1d66e0b45 100644 --- a/blockchains/ethereum/assets/0xbEa98c05eEAe2f3bC8c3565Db7551Eb738c8CCAb/info.json +++ b/blockchains/ethereum/assets/0xbEa98c05eEAe2f3bC8c3565Db7551Eb738c8CCAb/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/gysr-io" }, { - "name": "twitter", - "url": "https://twitter.com/gysr_io" + "name": "x", + "url": "https://x.com/gysr_io" }, { "name": "telegram", @@ -49,4 +49,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbEe6b69345F376598Fe16AbD5592c6F844825E66/info.json b/blockchains/ethereum/assets/0xbEe6b69345F376598Fe16AbD5592c6F844825E66/info.json new file mode 100644 index 0000000000000..7a36a0d50bc17 --- /dev/null +++ b/blockchains/ethereum/assets/0xbEe6b69345F376598Fe16AbD5592c6F844825E66/info.json @@ -0,0 +1,24 @@ +{ + "name": "OPEN tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://etherscan.io/token/0xbEe6b69345F376598Fe16AbD5592c6F844825E66", + "type": "ERC20", + "symbol": "OPENX", + "decimals": 18, + "status": "active", + "id": "0xbEe6b69345F376598Fe16AbD5592c6F844825E66", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/open-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbEe6b69345F376598Fe16AbD5592c6F844825E66/logo.png b/blockchains/ethereum/assets/0xbEe6b69345F376598Fe16AbD5592c6F844825E66/logo.png new file mode 100644 index 0000000000000..ce91cfbfef91d Binary files /dev/null and b/blockchains/ethereum/assets/0xbEe6b69345F376598Fe16AbD5592c6F844825E66/logo.png differ diff --git a/blockchains/ethereum/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/info.json b/blockchains/ethereum/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/info.json new file mode 100644 index 0000000000000..fcaea46f36924 --- /dev/null +++ b/blockchains/ethereum/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/info.json @@ -0,0 +1,17 @@ +{ + "name": "OX", + "type": "ERC20", + "symbol": "OX", + "decimals": 18, + "website": "https://ox.fun/", + "description": "OX.FUN is a derivatives exchange that allows users to trade perps with their OX tokens.", + "explorer": "https://etherscan.io/token/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea", + "status": "active", + "id": "0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea", + "links": [ + { + "name": "x", + "url": "https://x.com/OXFUNHQ" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/logo.png b/blockchains/ethereum/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/logo.png new file mode 100644 index 0000000000000..d66f3d33ef432 Binary files /dev/null and b/blockchains/ethereum/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/logo.png differ diff --git a/blockchains/ethereum/assets/0xba386A4Ca26B85FD057ab1Ef86e3DC7BdeB5ce70/info.json b/blockchains/ethereum/assets/0xba386A4Ca26B85FD057ab1Ef86e3DC7BdeB5ce70/info.json new file mode 100644 index 0000000000000..6b6f178c4d91c --- /dev/null +++ b/blockchains/ethereum/assets/0xba386A4Ca26B85FD057ab1Ef86e3DC7BdeB5ce70/info.json @@ -0,0 +1,48 @@ +{ + "name": "Jesus Coin", + "type": "ERC20", + "symbol": "JESUS", + "decimals": 18, + "website": "https://www.jesuscoin.xyz", + "description": "Jesus Coin was created to encourage generosity, foster community, and transform charitable giving. ", + "explorer": "https://etherscan.io/token/0xba386A4Ca26B85FD057ab1Ef86e3DC7BdeB5ce70", + "status": "active", + "id": "0xba386A4Ca26B85FD057ab1Ef86e3DC7BdeB5ce70", + "links": [ + { + "name": "x", + "url": "https://x.com/jesustokens" + }, + { + "name": "github", + "url": "https://github.com/makerlee0x/Jesus-Coin" + }, + { + "name": "telegram", + "url": "https://t.me/JesusCoinERC" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/jesus-coin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jesus-toys/" + }, + { + "name": "whitepaper", + "url": "https://jesus.toys/_files/ugd/8460b5_557962e456ef4642aafc512aff19e929.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/@jesustokens" + }, + { + "name": "medium", + "url": "https://medium.com/@JesuscoinDAO" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xba386A4Ca26B85FD057ab1Ef86e3DC7BdeB5ce70/logo.png b/blockchains/ethereum/assets/0xba386A4Ca26B85FD057ab1Ef86e3DC7BdeB5ce70/logo.png new file mode 100644 index 0000000000000..c14967e272dde Binary files /dev/null and b/blockchains/ethereum/assets/0xba386A4Ca26B85FD057ab1Ef86e3DC7BdeB5ce70/logo.png differ diff --git a/blockchains/ethereum/assets/0xba5BDe662c17e2aDFF1075610382B9B691296350/info.json b/blockchains/ethereum/assets/0xba5BDe662c17e2aDFF1075610382B9B691296350/info.json index 11f57130939cc..055827652e45e 100644 --- a/blockchains/ethereum/assets/0xba5BDe662c17e2aDFF1075610382B9B691296350/info.json +++ b/blockchains/ethereum/assets/0xba5BDe662c17e2aDFF1075610382B9B691296350/info.json @@ -10,8 +10,8 @@ "id": "0xba5BDe662c17e2aDFF1075610382B9B691296350", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SuperRare" + "name": "x", + "url": "https://x.com/SuperRare" }, { "name": "coingecko", diff --git a/blockchains/ethereum/assets/0xba83b5ed3f12Bfa44f066f03eE0433419B74f469/info.json b/blockchains/ethereum/assets/0xba83b5ed3f12Bfa44f066f03eE0433419B74f469/info.json new file mode 100644 index 0000000000000..a7b2f5469a90f --- /dev/null +++ b/blockchains/ethereum/assets/0xba83b5ed3f12Bfa44f066f03eE0433419B74f469/info.json @@ -0,0 +1,24 @@ +{ + "name": "Best Wallet Token", + "type": "ERC20", + "symbol": "BEST", + "decimals": 18, + "website": "https://bestwallet.com", + "description": "Best Wallet is a non-custodial multi-chain crypto wallet that enables users to store, manage, swap, and transfer digital assets across supported networks. The platform integrates wallet management, asset tools, and presale discovery features.", + "explorer": "https://etherscan.io/token/0xba83b5ed3f12Bfa44f066f03eE0433419B74f469", + "status": "active", + "id": "0xba83b5ed3f12Bfa44f066f03eE0433419B74f469", + "links": [ + { + "name": "docs", + "url": "https://bestwallet.com/en/" + }, + { + "name": "x", + "url": "https://x.com/BestWalletHQ" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xba83b5ed3f12Bfa44f066f03eE0433419B74f469/logo.png b/blockchains/ethereum/assets/0xba83b5ed3f12Bfa44f066f03eE0433419B74f469/logo.png new file mode 100644 index 0000000000000..363019da31ea1 Binary files /dev/null and b/blockchains/ethereum/assets/0xba83b5ed3f12Bfa44f066f03eE0433419B74f469/logo.png differ diff --git a/blockchains/ethereum/assets/0xba9d4199faB4f26eFE3551D490E3821486f135Ba/info.json b/blockchains/ethereum/assets/0xba9d4199faB4f26eFE3551D490E3821486f135Ba/info.json index fa9ae473cc3c3..6436cab6bac8e 100644 --- a/blockchains/ethereum/assets/0xba9d4199faB4f26eFE3551D490E3821486f135Ba/info.json +++ b/blockchains/ethereum/assets/0xba9d4199faB4f26eFE3551D490E3821486f135Ba/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/SwissBorg" }, { - "name": "twitter", - "url": "https://twitter.com/swissborg" + "name": "x", + "url": "https://x.com/swissborg" }, { "name": "blog", diff --git a/blockchains/ethereum/assets/0xbb8774FB97436d23d74C1b882E8E9A69322cFD31/info.json b/blockchains/ethereum/assets/0xbb8774FB97436d23d74C1b882E8E9A69322cFD31/info.json new file mode 100644 index 0000000000000..799a95e0e918b --- /dev/null +++ b/blockchains/ethereum/assets/0xbb8774FB97436d23d74C1b882E8E9A69322cFD31/info.json @@ -0,0 +1,24 @@ +{ + "name": "Amazon (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "AMZNon is the Ondo Tokenized version of Amazon, giving tokenholders economic exposure similar to holding AMZN and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xbb8774FB97436d23d74C1b882E8E9A69322cFD31", + "type": "ERC20", + "symbol": "AMZNon", + "decimals": 18, + "status": "active", + "id": "0xbb8774FB97436d23d74C1b882E8E9A69322cFD31", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/amazon-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbb8774FB97436d23d74C1b882E8E9A69322cFD31/logo.png b/blockchains/ethereum/assets/0xbb8774FB97436d23d74C1b882E8E9A69322cFD31/logo.png new file mode 100644 index 0000000000000..958a37b04dfa9 Binary files /dev/null and b/blockchains/ethereum/assets/0xbb8774FB97436d23d74C1b882E8E9A69322cFD31/logo.png differ diff --git a/blockchains/ethereum/assets/0xbbEE07B3e8121227AfCFe1E2B82772246226128e/info.json b/blockchains/ethereum/assets/0xbbEE07B3e8121227AfCFe1E2B82772246226128e/info.json new file mode 100644 index 0000000000000..9d7cd5ffbd49f --- /dev/null +++ b/blockchains/ethereum/assets/0xbbEE07B3e8121227AfCFe1E2B82772246226128e/info.json @@ -0,0 +1,21 @@ +{ + "name": "Vertex", + "type": "ERC20", + "symbol": "VRTX", + "decimals": 18, + "website": "https://vertexprotocol.com/", + "description": "Vertex Protocol is a orderbook DEX offering spot, perpetuals, and money markets with universal cross-margin accounts, industry-leading low fees, and lightning-fast order execution.", + "explorer": "https://etherscan.io/token/0xbbEE07B3e8121227AfCFe1E2B82772246226128e", + "status": "active", + "id": "0xbbEE07B3e8121227AfCFe1E2B82772246226128e", + "links": [ + { + "name": "x", + "url": "https://x.com/vertex_protocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vertex-protocol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbbEE07B3e8121227AfCFe1E2B82772246226128e/logo.png b/blockchains/ethereum/assets/0xbbEE07B3e8121227AfCFe1E2B82772246226128e/logo.png new file mode 100644 index 0000000000000..c0f06e255302b Binary files /dev/null and b/blockchains/ethereum/assets/0xbbEE07B3e8121227AfCFe1E2B82772246226128e/logo.png differ diff --git a/blockchains/ethereum/assets/0xbc4171f45EF0EF66E76F979dF021a34B46DCc81d/info.json b/blockchains/ethereum/assets/0xbc4171f45EF0EF66E76F979dF021a34B46DCc81d/info.json index 151718fe62939..a4fe032cc5032 100644 --- a/blockchains/ethereum/assets/0xbc4171f45EF0EF66E76F979dF021a34B46DCc81d/info.json +++ b/blockchains/ethereum/assets/0xbc4171f45EF0EF66E76F979dF021a34B46DCc81d/info.json @@ -10,8 +10,8 @@ "id": "0xbc4171f45EF0EF66E76F979dF021a34B46DCc81d", "links": [ { - "name": "twitter", - "url": "https://twitter.com/DoraFactory" + "name": "x", + "url": "https://x.com/DoraFactory" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xbc843b147DB4C7E00721d76037b8b92e13AfE13f/info.json b/blockchains/ethereum/assets/0xbc843b147DB4C7E00721d76037b8b92e13AfE13f/info.json new file mode 100644 index 0000000000000..7f8c4fba04b6b --- /dev/null +++ b/blockchains/ethereum/assets/0xbc843b147DB4C7E00721d76037b8b92e13AfE13f/info.json @@ -0,0 +1,24 @@ +{ + "name": "S&P Global (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "SPGIon is the Ondo Tokenized version of S&P Global, giving tokenholders economic exposure similar to holding SPGI and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xbc843b147DB4C7E00721d76037b8b92e13AfE13f", + "type": "ERC20", + "symbol": "SPGIon", + "decimals": 18, + "status": "active", + "id": "0xbc843b147DB4C7E00721d76037b8b92e13AfE13f", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sp-global-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbc843b147DB4C7E00721d76037b8b92e13AfE13f/logo.png b/blockchains/ethereum/assets/0xbc843b147DB4C7E00721d76037b8b92e13AfE13f/logo.png new file mode 100644 index 0000000000000..b9eb124a99f2d Binary files /dev/null and b/blockchains/ethereum/assets/0xbc843b147DB4C7E00721d76037b8b92e13AfE13f/logo.png differ diff --git a/blockchains/ethereum/assets/0xbd31EA8212119f94A611FA969881CBa3EA06Fa3d/info.json b/blockchains/ethereum/assets/0xbd31EA8212119f94A611FA969881CBa3EA06Fa3d/info.json index 598173bcf58dc..12946b1b25ce1 100644 --- a/blockchains/ethereum/assets/0xbd31EA8212119f94A611FA969881CBa3EA06Fa3d/info.json +++ b/blockchains/ethereum/assets/0xbd31EA8212119f94A611FA969881CBa3EA06Fa3d/info.json @@ -1,5 +1,5 @@ { - "name": "LUNA (Portal)", + "name": "Terra Classic (Portal)", "type": "ERC20", "symbol": "LUNA", "decimals": 6, diff --git a/blockchains/ethereum/assets/0xbd660e96D45e7C175512d1ed0cCc119Cb980b81a/info.json b/blockchains/ethereum/assets/0xbd660e96D45e7C175512d1ed0cCc119Cb980b81a/info.json new file mode 100644 index 0000000000000..eb353a8d47ceb --- /dev/null +++ b/blockchains/ethereum/assets/0xbd660e96D45e7C175512d1ed0cCc119Cb980b81a/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares MSCI South Korea ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "EWYon", + "decimals": 18, + "description": "EWYon is the Ondo Tokenized version of the iShares MSCI South Korea ETF, giving tokenholders economic exposure similar to holding EWY and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xbd660e96D45e7C175512d1ed0cCc119Cb980b81a", + "status": "active", + "id": "0xbd660e96D45e7C175512d1ed0cCc119Cb980b81a", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-msci-south-korea-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbd660e96D45e7C175512d1ed0cCc119Cb980b81a/logo.png b/blockchains/ethereum/assets/0xbd660e96D45e7C175512d1ed0cCc119Cb980b81a/logo.png new file mode 100644 index 0000000000000..2ce033b091a15 Binary files /dev/null and b/blockchains/ethereum/assets/0xbd660e96D45e7C175512d1ed0cCc119Cb980b81a/logo.png differ diff --git a/blockchains/ethereum/assets/0xbdC7c08592Ee4aa51D06C27Ee23D5087D65aDbcD/info.json b/blockchains/ethereum/assets/0xbdC7c08592Ee4aa51D06C27Ee23D5087D65aDbcD/info.json new file mode 100644 index 0000000000000..e0275212904d6 --- /dev/null +++ b/blockchains/ethereum/assets/0xbdC7c08592Ee4aa51D06C27Ee23D5087D65aDbcD/info.json @@ -0,0 +1,25 @@ +{ + "name": "Lift Dollar", + "type": "ERC20", + "symbol": "USDL", + "decimals": 18, + "description": "A regulated, US dollar-backed stablecoin that distributes yield from its cash and cash equivalent reserves to eligible wallets holding it every day. USDL is issued by Paxos International, an affiliate company of Paxos, that is regulated in the Abu Dhabi Global Market (ADGM) by the Financial Services Regulatory Authority (FSRA).", + "website": "https://liftdollar.com/", + "explorer": "https://etherscan.io/token/0xbdC7c08592Ee4aa51D06C27Ee23D5087D65aDbcD", + "id": "0xbdC7c08592Ee4aa51D06C27Ee23D5087D65aDbcD", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/LiftDollar_USDL" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lift-dollar/" + } + ], + "tags": [ + "stablecoin" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbdC7c08592Ee4aa51D06C27Ee23D5087D65aDbcD/logo.png b/blockchains/ethereum/assets/0xbdC7c08592Ee4aa51D06C27Ee23D5087D65aDbcD/logo.png new file mode 100644 index 0000000000000..8dcaf8e6f9e66 Binary files /dev/null and b/blockchains/ethereum/assets/0xbdC7c08592Ee4aa51D06C27Ee23D5087D65aDbcD/logo.png differ diff --git a/blockchains/ethereum/assets/0xbe0Ed4138121EcFC5c0E56B40517da27E6c5226B/info.json b/blockchains/ethereum/assets/0xbe0Ed4138121EcFC5c0E56B40517da27E6c5226B/info.json new file mode 100644 index 0000000000000..623dfbba76de4 --- /dev/null +++ b/blockchains/ethereum/assets/0xbe0Ed4138121EcFC5c0E56B40517da27E6c5226B/info.json @@ -0,0 +1,21 @@ +{ + "name": "Aethir", + "type": "ERC20", + "symbol": "ATH", + "website": "https://www.aethir.com/", + "explorer": "https://etherscan.io/token/0xbe0ed4138121ecfc5c0e56b40517da27e6c5226b", + "decimals": 18, + "description": "Aethir builds distributed GPU-based compute infrastructure for dynamic, enterprise use cases. It aims to make it easier for GPU infrastructure providers to scale, and simpler for buyers to access GPU worldwide.", + "status": "active", + "id": "0xbe0Ed4138121EcFC5c0E56B40517da27E6c5226B", + "links": [ + { + "name": "telegram", + "url": "https://t.me/aethir_cloud" + }, + { + "name": "x", + "url": "https://x.com/AethirCloud" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbe0Ed4138121EcFC5c0E56B40517da27E6c5226B/logo.png b/blockchains/ethereum/assets/0xbe0Ed4138121EcFC5c0E56B40517da27E6c5226B/logo.png new file mode 100644 index 0000000000000..e5efd01ed606f Binary files /dev/null and b/blockchains/ethereum/assets/0xbe0Ed4138121EcFC5c0E56B40517da27E6c5226B/logo.png differ diff --git a/blockchains/ethereum/assets/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11/info.json b/blockchains/ethereum/assets/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11/info.json index 26ce415bb493e..d89cfee4040ff 100644 --- a/blockchains/ethereum/assets/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11/info.json +++ b/blockchains/ethereum/assets/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/fegtoken-v2/" }, { - "name": "twitter", - "url": "https://twitter.com/FEGtoken" + "name": "x", + "url": "https://x.com/FEGtoken" }, { "name": "telegram", @@ -29,4 +29,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbf5495Efe5DB9ce00f80364C8B423567e58d2110/info.json b/blockchains/ethereum/assets/0xbf5495Efe5DB9ce00f80364C8B423567e58d2110/info.json new file mode 100644 index 0000000000000..7ee82852125ab --- /dev/null +++ b/blockchains/ethereum/assets/0xbf5495Efe5DB9ce00f80364C8B423567e58d2110/info.json @@ -0,0 +1,21 @@ +{ + "name": "ezETH", + "website": "https://www.renzoprotocol.com/", + "description": "Renzo is a Liquid Restaking Token (LRT) and Strategy Manager for EigenLayer. It is the interface to the EigenLayer ecosystem securing Actively Validated Services (AVSs).", + "explorer": "https://etherscan.io/token/0xbf5495efe5db9ce00f80364c8b423567e58d2110", + "type": "ERC20", + "symbol": "Renzo Restaked ETH", + "decimals": 18, + "status": "active", + "id": "0xbf5495Efe5DB9ce00f80364C8B423567e58d2110", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/renzo-restaked-eth/" + }, + { + "name": "x", + "url": "https://x.com/RenzoProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbf5495Efe5DB9ce00f80364C8B423567e58d2110/logo.png b/blockchains/ethereum/assets/0xbf5495Efe5DB9ce00f80364C8B423567e58d2110/logo.png new file mode 100644 index 0000000000000..48e5c5ace795d Binary files /dev/null and b/blockchains/ethereum/assets/0xbf5495Efe5DB9ce00f80364C8B423567e58d2110/logo.png differ diff --git a/blockchains/ethereum/assets/0xc00e94Cb662C3520282E6f5717214004A7f26888/info.json b/blockchains/ethereum/assets/0xc00e94Cb662C3520282E6f5717214004A7f26888/info.json index 82b6623baa03f..50f6fee691ef4 100644 --- a/blockchains/ethereum/assets/0xc00e94Cb662C3520282E6f5717214004A7f26888/info.json +++ b/blockchains/ethereum/assets/0xc00e94Cb662C3520282E6f5717214004A7f26888/info.json @@ -18,8 +18,8 @@ "url": "https://medium.com/compound-finance" }, { - "name": "twitter", - "url": "https://twitter.com/compoundfinance" + "name": "x", + "url": "https://x.com/compoundfinance" }, { "name": "coingecko", diff --git a/blockchains/ethereum/assets/0xc03fBF20A586fa89C2a5f6F941458E1Fbc40c661/info.json b/blockchains/ethereum/assets/0xc03fBF20A586fa89C2a5f6F941458E1Fbc40c661/info.json new file mode 100644 index 0000000000000..14b9e0b2c2463 --- /dev/null +++ b/blockchains/ethereum/assets/0xc03fBF20A586fa89C2a5f6F941458E1Fbc40c661/info.json @@ -0,0 +1,21 @@ +{ + "name": "Combo", + "type": "ERC20", + "symbol": "COMBO", + "decimals": 18, + "website": "https://combonetwork.io/", + "description": "COMBO is a leading provider of scaling solutions for Web3 game development. By leveraging the world's top game engine, COMBO is building an open-source, decentralized, game-oriented Layer2 that is accessible to everyone.", + "explorer": "https://etherscan.io/token/0xc03fbf20a586fa89c2a5f6f941458e1fbc40c661", + "status": "active", + "id": "0xc03fBF20A586fa89C2a5f6F941458E1Fbc40c661", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/combo-network/" + }, + { + "name": "x", + "url": "https://x.com/combonetworkio" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc03fBF20A586fa89C2a5f6F941458E1Fbc40c661/logo.png b/blockchains/ethereum/assets/0xc03fBF20A586fa89C2a5f6F941458E1Fbc40c661/logo.png new file mode 100644 index 0000000000000..e63fc80b8dd45 Binary files /dev/null and b/blockchains/ethereum/assets/0xc03fBF20A586fa89C2a5f6F941458E1Fbc40c661/logo.png differ diff --git a/blockchains/ethereum/assets/0xc07A150ECAdF2cc352f5586396e344A6b17625EB/info.json b/blockchains/ethereum/assets/0xc07A150ECAdF2cc352f5586396e344A6b17625EB/info.json new file mode 100644 index 0000000000000..1d45e45bc78bc --- /dev/null +++ b/blockchains/ethereum/assets/0xc07A150ECAdF2cc352f5586396e344A6b17625EB/info.json @@ -0,0 +1,21 @@ +{ + "name": "BioPassport", + "symbol": "BIOT", + "type": "ERC20", + "decimals": 9, + "description": "BioPassport is committed to help make healthcare a personal component of our daily lives. This starts with a 'health passport' platform that houses a patient's DPHR, or decentralized personal health record built around DID (decentralized identity) technology", + "website": "https://biopassport.io/", + "explorer": "https://etherscan.io/token/0xc07A150ECAdF2cc352f5586396e344A6b17625EB", + "status": "active", + "id": "0xc07A150ECAdF2cc352f5586396e344A6b17625EB", + "links": [ + { + "name": "x", + "url": "https://x.com/Biopassport1" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/biopassport-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc07A150ECAdF2cc352f5586396e344A6b17625EB/logo.png b/blockchains/ethereum/assets/0xc07A150ECAdF2cc352f5586396e344A6b17625EB/logo.png new file mode 100644 index 0000000000000..c8656855e903f Binary files /dev/null and b/blockchains/ethereum/assets/0xc07A150ECAdF2cc352f5586396e344A6b17625EB/logo.png differ diff --git a/blockchains/ethereum/assets/0xc08Cd26474722cE93F4D0c34D16201461c10AA8C/info.json b/blockchains/ethereum/assets/0xc08Cd26474722cE93F4D0c34D16201461c10AA8C/info.json new file mode 100644 index 0000000000000..0d4ca9c83b631 --- /dev/null +++ b/blockchains/ethereum/assets/0xc08Cd26474722cE93F4D0c34D16201461c10AA8C/info.json @@ -0,0 +1,21 @@ +{ + "name": "CARV", + "type": "ERC20", + "symbol": "CARV", + "decimals": 18, + "website": "https://carv.io/", + "description": "The CARV Protocol is a modular data layer that facilitates data exchange and value distribution across gaming, AI and ∞. It encompasses end-to-end data flow processes, including data verification, identity authentication, storage, processing, model training, and value distribution.", + "explorer": "https://etherscan.io/token/0xc08Cd26474722cE93F4D0c34D16201461c10AA8C", + "status": "active", + "id": "0xc08Cd26474722cE93F4D0c34D16201461c10AA8C", + "links": [ + { + "name": "x", + "url": "https://x.com/carv_official" + }, + { + "name": "telegram", + "url": "https://t.me/carv_official_global" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc08Cd26474722cE93F4D0c34D16201461c10AA8C/logo.png b/blockchains/ethereum/assets/0xc08Cd26474722cE93F4D0c34D16201461c10AA8C/logo.png new file mode 100644 index 0000000000000..3700a2b1073eb Binary files /dev/null and b/blockchains/ethereum/assets/0xc08Cd26474722cE93F4D0c34D16201461c10AA8C/logo.png differ diff --git a/blockchains/ethereum/assets/0xc0dB17Bc219C5ca8746C29ee47862ee3Ad742F4a/info.json b/blockchains/ethereum/assets/0xc0dB17Bc219C5ca8746C29ee47862ee3Ad742F4a/info.json new file mode 100644 index 0000000000000..2c31ddbdca5a7 --- /dev/null +++ b/blockchains/ethereum/assets/0xc0dB17Bc219C5ca8746C29ee47862ee3Ad742F4a/info.json @@ -0,0 +1,17 @@ +{ + "name": "Scotty AI", + "website": "https://scottytheai.com/en", + "description": "Scotty AI is an innovative crypto project centered around AI. It combines advanced artificial intelligence with a deep understanding of blockchain technology to serve as a guardian and protector of the secrets within the crypto universe.", + "explorer": "https://etherscan.io/token/0xc0dB17Bc219C5ca8746C29ee47862ee3Ad742F4a", + "type": "ERC20", + "symbol": "SCOTTY", + "decimals": 18, + "status": "active", + "id": "0xc0dB17Bc219C5ca8746C29ee47862ee3Ad742F4a", + "links": [ + { + "name": "x", + "url": "https://x.com/ScottyThe_Ai" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc0dB17Bc219C5ca8746C29ee47862ee3Ad742F4a/logo.png b/blockchains/ethereum/assets/0xc0dB17Bc219C5ca8746C29ee47862ee3Ad742F4a/logo.png new file mode 100644 index 0000000000000..5265de65c0d9e Binary files /dev/null and b/blockchains/ethereum/assets/0xc0dB17Bc219C5ca8746C29ee47862ee3Ad742F4a/logo.png differ diff --git a/blockchains/ethereum/assets/0xc221b7E65FfC80DE234bbB6667aBDd46593D34F0/info.json b/blockchains/ethereum/assets/0xc221b7E65FfC80DE234bbB6667aBDd46593D34F0/info.json index 69be58b41709b..7793897ca761f 100644 --- a/blockchains/ethereum/assets/0xc221b7E65FfC80DE234bbB6667aBDd46593D34F0/info.json +++ b/blockchains/ethereum/assets/0xc221b7E65FfC80DE234bbB6667aBDd46593D34F0/info.json @@ -1,21 +1,17 @@ { "name": "Wrapped Centrifuge", "type": "ERC20", - "symbol": "wCFG", + "symbol": "WCFG", "decimals": 18, "website": "https://centrifuge.io/", - "description": "The Centrifuge Token (CFG) guides the development of Centrifuge using an on-chain governance mechanism.", + "description": "Wrapped Centrifuge (WCFG) serves as a bridge between real-world assets and the decentralized finance (DeFi) ecosystem. This cryptocurrency token represents Centrifuge on the Ethereum blockchain, enabling users to engage with Centrifuge's offerings within Ethereum's extensive network.", "explorer": "https://etherscan.io/token/0xc221b7e65ffc80de234bbb6667abdd46593d34f0", - "status": "active", + "status": "abandoned", "id": "0xc221b7E65FfC80DE234bbB6667aBDd46593D34F0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/centrifuge" - }, - { - "name": "telegram", - "url": "https://t.me/centrifuge_chat" + "name": "x", + "url": "https://x.com/centrifuge" }, { "name": "github", @@ -23,10 +19,14 @@ }, { "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/wrapped-centrifuge/" + "url": "https://coinmarketcap.com/currencies/centrifuge/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/centrifuge" } ], "tags": [ - "wrapped" + "defi" ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc221b7E65FfC80DE234bbB6667aBDd46593D34F0/logo.png b/blockchains/ethereum/assets/0xc221b7E65FfC80DE234bbB6667aBDd46593D34F0/logo.png deleted file mode 100644 index d50f76fa47596..0000000000000 Binary files a/blockchains/ethereum/assets/0xc221b7E65FfC80DE234bbB6667aBDd46593D34F0/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0xc24d52E3d3a36e9481AF0715180E530CBe4667CA/info.json b/blockchains/ethereum/assets/0xc24d52E3d3a36e9481AF0715180E530CBe4667CA/info.json new file mode 100644 index 0000000000000..5ef43ea13131a --- /dev/null +++ b/blockchains/ethereum/assets/0xc24d52E3d3a36e9481AF0715180E530CBe4667CA/info.json @@ -0,0 +1,26 @@ +{ + "name": "HU LE ZHI", + "type": "ERC20", + "symbol": "HULEZHI", + "decimals": 9, + "description": "Hu Lezhi, a programmer and entrepreneur, has become the inspiration for $HULEZHI, a cryptocurrency memecoin that pays tribute to his unique and compelling story.", + "website": "https://hulezhi.com/", + "explorer": "https://etherscan.io/token/0xc24d52E3d3a36e9481AF0715180E530CBe4667CA", + "id": "0xc24d52E3d3a36e9481AF0715180E530CBe4667CA", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/hulezhieth" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hu-le-zhi/" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc24d52E3d3a36e9481AF0715180E530CBe4667CA/logo.png b/blockchains/ethereum/assets/0xc24d52E3d3a36e9481AF0715180E530CBe4667CA/logo.png new file mode 100644 index 0000000000000..ee2fb686fb69b Binary files /dev/null and b/blockchains/ethereum/assets/0xc24d52E3d3a36e9481AF0715180E530CBe4667CA/logo.png differ diff --git a/blockchains/ethereum/assets/0xc2dBFE026f17e7BbC17a9e41F9b8D69531887d47/info.json b/blockchains/ethereum/assets/0xc2dBFE026f17e7BbC17a9e41F9b8D69531887d47/info.json new file mode 100644 index 0000000000000..f0cfdc9879735 --- /dev/null +++ b/blockchains/ethereum/assets/0xc2dBFE026f17e7BbC17a9e41F9b8D69531887d47/info.json @@ -0,0 +1,28 @@ +{ + "name": "Figure Technology Solutions (Ondo Tokenized)", + "type": "ERC20", + "symbol": "FIGRon", + "decimals": 18, + "description": "FIGRon is the Ondo Tokenized version of Figure Technology Solutions, giving tokenholders economic exposure similar to holding FIGR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xc2dBFE026f17e7BbC17a9e41F9b8D69531887d47", + "status": "active", + "id": "0xc2dBFE026f17e7BbC17a9e41F9b8D69531887d47", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/figure-technology-solutions-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/figure-technology-solutions-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc2dBFE026f17e7BbC17a9e41F9b8D69531887d47/logo.png b/blockchains/ethereum/assets/0xc2dBFE026f17e7BbC17a9e41F9b8D69531887d47/logo.png new file mode 100644 index 0000000000000..f54067fe22fa8 Binary files /dev/null and b/blockchains/ethereum/assets/0xc2dBFE026f17e7BbC17a9e41F9b8D69531887d47/logo.png differ diff --git a/blockchains/ethereum/assets/0xc314b0E758D5FF74f63e307A86EbfE183C95767b/info.json b/blockchains/ethereum/assets/0xc314b0E758D5FF74f63e307A86EbfE183C95767b/info.json index a3596fee84dd8..c996ed1110cf6 100644 --- a/blockchains/ethereum/assets/0xc314b0E758D5FF74f63e307A86EbfE183C95767b/info.json +++ b/blockchains/ethereum/assets/0xc314b0E758D5FF74f63e307A86EbfE183C95767b/info.json @@ -10,8 +10,8 @@ "id": "0xc314b0E758D5FF74f63e307A86EbfE183C95767b", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Adappter_io" + "name": "x", + "url": "https://x.com/Adappter_io" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xc328a59E7321747aEBBc49FD28d1b32C1af8d3b2/info.json b/blockchains/ethereum/assets/0xc328a59E7321747aEBBc49FD28d1b32C1af8d3b2/info.json new file mode 100644 index 0000000000000..8c35ada14c392 --- /dev/null +++ b/blockchains/ethereum/assets/0xc328a59E7321747aEBBc49FD28d1b32C1af8d3b2/info.json @@ -0,0 +1,21 @@ +{ + "name": "Philtoken", + "type": "ERC20", + "symbol": "PHIL", + "decimals": 18, + "website": "https://www.philtoken.com/", + "description": "PHIL Token ($PHIL) is a community focused meme coin with a vision to unite meme coins for real world good.", + "explorer": "https://etherscan.io/token/0xc328a59e7321747aebbc49fd28d1b32c1af8d3b2", + "status": "active", + "id": "0xc328a59E7321747aEBBc49FD28d1b32C1af8d3b2", + "links": [ + { + "name": "x", + "url": "https://x.com/PhilTokenEth" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/philtoken/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc328a59E7321747aEBBc49FD28d1b32C1af8d3b2/logo.png b/blockchains/ethereum/assets/0xc328a59E7321747aEBBc49FD28d1b32C1af8d3b2/logo.png new file mode 100644 index 0000000000000..124966d96b544 Binary files /dev/null and b/blockchains/ethereum/assets/0xc328a59E7321747aEBBc49FD28d1b32C1af8d3b2/logo.png differ diff --git a/blockchains/ethereum/assets/0xc3761EB917CD790B30dAD99f6Cc5b4Ff93C4F9eA/info.json b/blockchains/ethereum/assets/0xc3761EB917CD790B30dAD99f6Cc5b4Ff93C4F9eA/info.json index e480e8f1298c8..8d55d520f222f 100644 --- a/blockchains/ethereum/assets/0xc3761EB917CD790B30dAD99f6Cc5b4Ff93C4F9eA/info.json +++ b/blockchains/ethereum/assets/0xc3761EB917CD790B30dAD99f6Cc5b4Ff93C4F9eA/info.json @@ -6,7 +6,7 @@ "description": "ERC20 is an innovative NFT Collectible token and a new kind of DeFi.", "website": "https://erc20.tech", "explorer": "https://etherscan.io/token/0xc3761EB917CD790B30dAD99f6Cc5b4Ff93C4F9eA", - "status": "active", + "status": "abandoned", "id": "0xc3761EB917CD790B30dAD99f6Cc5b4Ff93C4F9eA", "tags": [ "deflationary" diff --git a/blockchains/ethereum/assets/0xc3761EB917CD790B30dAD99f6Cc5b4Ff93C4F9eA/logo.png b/blockchains/ethereum/assets/0xc3761EB917CD790B30dAD99f6Cc5b4Ff93C4F9eA/logo.png deleted file mode 100644 index 452cbe83aebf9..0000000000000 Binary files a/blockchains/ethereum/assets/0xc3761EB917CD790B30dAD99f6Cc5b4Ff93C4F9eA/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0xc3771d47E2Ab5A519E2917E61e23078d0C05Ed7f/info.json b/blockchains/ethereum/assets/0xc3771d47E2Ab5A519E2917E61e23078d0C05Ed7f/info.json index a714986328e96..1c78931eae31d 100644 --- a/blockchains/ethereum/assets/0xc3771d47E2Ab5A519E2917E61e23078d0C05Ed7f/info.json +++ b/blockchains/ethereum/assets/0xc3771d47E2Ab5A519E2917E61e23078d0C05Ed7f/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/Gather_Network" + "name": "x", + "url": "https://x.com/Gather_Network" }, { "name": "reddit", @@ -31,6 +31,6 @@ ], "migrate": { "asset_id": "c60_t0xeb986DA994E4a118d5956b02d8b7c3C7CE373674", - "url": "https://twitter.com/Gather_Network/status/1479180753967915008" + "url": "https://x.com/Gather_Network/status/1479180753967915008" } -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc3D93B45249E8E06cfeB01d25A96337E8893265d/info.json b/blockchains/ethereum/assets/0xc3D93B45249E8E06cfeB01d25A96337E8893265d/info.json new file mode 100644 index 0000000000000..5bf2b9b56681b --- /dev/null +++ b/blockchains/ethereum/assets/0xc3D93B45249E8E06cfeB01d25A96337E8893265d/info.json @@ -0,0 +1,24 @@ +{ + "name": "Disney (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "DISon is the Ondo Tokenized version of Disney, giving tokenholders economic exposure similar to holding DIS and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xc3D93B45249E8E06cfeB01d25A96337E8893265d", + "type": "ERC20", + "symbol": "DISon", + "decimals": 18, + "status": "active", + "id": "0xc3D93B45249E8E06cfeB01d25A96337E8893265d", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/disney-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc3D93B45249E8E06cfeB01d25A96337E8893265d/logo.png b/blockchains/ethereum/assets/0xc3D93B45249E8E06cfeB01d25A96337E8893265d/logo.png new file mode 100644 index 0000000000000..99e55b45de95b Binary files /dev/null and b/blockchains/ethereum/assets/0xc3D93B45249E8E06cfeB01d25A96337E8893265d/logo.png differ diff --git a/blockchains/ethereum/assets/0xc43C6bfeDA065fE2c4c11765Bf838789bd0BB5dE/info.json b/blockchains/ethereum/assets/0xc43C6bfeDA065fE2c4c11765Bf838789bd0BB5dE/info.json new file mode 100644 index 0000000000000..2866123d0050c --- /dev/null +++ b/blockchains/ethereum/assets/0xc43C6bfeDA065fE2c4c11765Bf838789bd0BB5dE/info.json @@ -0,0 +1,17 @@ +{ + "name": "Redstone", + "type": "ERC20", + "symbol": "RED", + "decimals": 18, + "website": "https://www.redstone.finance/", + "description": "Available on 70+ chains, trusted by 130+ clients, supporting 1,250+ assets", + "explorer": "https://etherscan.io/token/0xc43c6bfeda065fe2c4c11765bf838789bd0bb5de", + "status": "active", + "id": "0xc43C6bfeDA065fE2c4c11765Bf838789bd0BB5dE", + "links": [ + { + "name": "x", + "url": "https://x.com/redstone_defi" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc43C6bfeDA065fE2c4c11765Bf838789bd0BB5dE/logo.png b/blockchains/ethereum/assets/0xc43C6bfeDA065fE2c4c11765Bf838789bd0BB5dE/logo.png new file mode 100644 index 0000000000000..94d5300113efd Binary files /dev/null and b/blockchains/ethereum/assets/0xc43C6bfeDA065fE2c4c11765Bf838789bd0BB5dE/logo.png differ diff --git a/blockchains/ethereum/assets/0xc4e6E80295154D3968519851F73f8Dc1a227286F/info.json b/blockchains/ethereum/assets/0xc4e6E80295154D3968519851F73f8Dc1a227286F/info.json new file mode 100644 index 0000000000000..6e570c31d4a24 --- /dev/null +++ b/blockchains/ethereum/assets/0xc4e6E80295154D3968519851F73f8Dc1a227286F/info.json @@ -0,0 +1,24 @@ +{ + "name": "Enlivex Therapeutics (Ondo Tokenized)", + "type": "ERC20", + "symbol": "ENLVon", + "decimals": 18, + "description": "ENLVon is the Ondo Tokenized version of Enlivex Therapeutics, giving tokenholders economic exposure similar to holding ENLV and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xc4e6E80295154D3968519851F73f8Dc1a227286F", + "status": "active", + "id": "0xc4e6E80295154D3968519851F73f8Dc1a227286F", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/enlivex-therapeutics-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc4e6E80295154D3968519851F73f8Dc1a227286F/logo.png b/blockchains/ethereum/assets/0xc4e6E80295154D3968519851F73f8Dc1a227286F/logo.png new file mode 100644 index 0000000000000..138c9f7d869f6 Binary files /dev/null and b/blockchains/ethereum/assets/0xc4e6E80295154D3968519851F73f8Dc1a227286F/logo.png differ diff --git a/blockchains/ethereum/assets/0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC/info.json b/blockchains/ethereum/assets/0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC/info.json index 071cacaec35f1..dab6aea0f9841 100644 --- a/blockchains/ethereum/assets/0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC/info.json +++ b/blockchains/ethereum/assets/0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC/info.json @@ -10,8 +10,8 @@ "id": "0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC", "links": [ { - "name": "twitter", - "url": "https://twitter.com/HopProtocol" + "name": "x", + "url": "https://x.com/HopProtocol" }, { "name": "github", @@ -37,4 +37,4 @@ "tags": [ "governance" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc56C7A0eAA804f854B536A5F3D5f49D2EC4B12b8/info.json b/blockchains/ethereum/assets/0xc56C7A0eAA804f854B536A5F3D5f49D2EC4B12b8/info.json new file mode 100644 index 0000000000000..f197f4c489e39 --- /dev/null +++ b/blockchains/ethereum/assets/0xc56C7A0eAA804f854B536A5F3D5f49D2EC4B12b8/info.json @@ -0,0 +1,21 @@ +{ + "name": "GameStop", + "website": "https://gamestop-coin.vip/", + "description": "The $GME on Ethereum For The People", + "explorer": "https://etherscan.io/token/0xc56c7a0eaa804f854b536a5f3d5f49d2ec4b12b8", + "type": "ERC20", + "symbol": "GME", + "decimals": 9, + "status": "active", + "id": "0xc56C7A0eAA804f854B536A5F3D5f49D2EC4B12b8", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gamestop/" + }, + { + "name": "x", + "url": "https://x.com/GMEonETH_" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc56C7A0eAA804f854B536A5F3D5f49D2EC4B12b8/logo.png b/blockchains/ethereum/assets/0xc56C7A0eAA804f854B536A5F3D5f49D2EC4B12b8/logo.png new file mode 100644 index 0000000000000..4b8ecb0fc9566 Binary files /dev/null and b/blockchains/ethereum/assets/0xc56C7A0eAA804f854B536A5F3D5f49D2EC4B12b8/logo.png differ diff --git a/blockchains/ethereum/assets/0xc575BD129848Ce06A460A19466c30E1D0328F52C/info.json b/blockchains/ethereum/assets/0xc575BD129848Ce06A460A19466c30E1D0328F52C/info.json new file mode 100644 index 0000000000000..eb459a3c444e5 --- /dev/null +++ b/blockchains/ethereum/assets/0xc575BD129848Ce06A460A19466c30E1D0328F52C/info.json @@ -0,0 +1,21 @@ +{ + "name": "Reploy", + "symbol": "RAI", + "type": "ERC20", + "decimals": 18, + "description": "Reploy empowers anyone to create, deploy, and scale powerful web3 projects with AI assistance. Build secure smart contracts and scale your blockchain applications across 700+ compatible chains.", + "website": "https://reploy.ai/", + "explorer": "https://etherscan.io/token/0xc575BD129848Ce06A460A19466c30E1D0328F52C", + "status": "active", + "id": "0xc575BD129848Ce06A460A19466c30E1D0328F52C", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/reploy/" + }, + { + "name": "x", + "url": "https://x.com/reployai" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc575BD129848Ce06A460A19466c30E1D0328F52C/logo.png b/blockchains/ethereum/assets/0xc575BD129848Ce06A460A19466c30E1D0328F52C/logo.png new file mode 100644 index 0000000000000..9d18db166bfff Binary files /dev/null and b/blockchains/ethereum/assets/0xc575BD129848Ce06A460A19466c30E1D0328F52C/logo.png differ diff --git a/blockchains/ethereum/assets/0xc5e19Fd321B9bc49b41d9a3a5ad71bcc21CC3c54/info.json b/blockchains/ethereum/assets/0xc5e19Fd321B9bc49b41d9a3a5ad71bcc21CC3c54/info.json index 7c8f6c079bc62..7e9528d767c21 100644 --- a/blockchains/ethereum/assets/0xc5e19Fd321B9bc49b41d9a3a5ad71bcc21CC3c54/info.json +++ b/blockchains/ethereum/assets/0xc5e19Fd321B9bc49b41d9a3a5ad71bcc21CC3c54/info.json @@ -10,8 +10,8 @@ "id": "0xc5e19Fd321B9bc49b41d9a3a5ad71bcc21CC3c54", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TradePowerToken" + "name": "x", + "url": "https://x.com/TradePowerToken" }, { "name": "discord", diff --git a/blockchains/ethereum/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/info.json b/blockchains/ethereum/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/info.json new file mode 100644 index 0000000000000..1c510cacfb04d --- /dev/null +++ b/blockchains/ethereum/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/info.json @@ -0,0 +1,28 @@ +{ + "name": "First Digital USD", + "type": "ERC20", + "symbol": "FDUSD", + "decimals": 18, + "website": "https://firstdigitallabs.com", + "description": "FDUSD (First Digital USD) is a 1:1 USD-backed Stablecoin. FDUSD revolutionizes global finance with a cutting-edge digital stablecoin, providing businesses and builders with security, speed, and innovation worldwide.", + "explorer": "https://etherscan.io/token/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409", + "status": "active", + "id": "0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409", + "links": [ + { + "name": "x", + "url": "https://x.com/FDLabsHQ" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/first-digital-usd" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/first-digital-usd" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/logo.png b/blockchains/ethereum/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/logo.png new file mode 100644 index 0000000000000..5d54b8a4dba01 Binary files /dev/null and b/blockchains/ethereum/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/logo.png differ diff --git a/blockchains/ethereum/assets/0xc5fB36dd2fb59d3B98dEfF88425a3F425Ee469eD/info.json b/blockchains/ethereum/assets/0xc5fB36dd2fb59d3B98dEfF88425a3F425Ee469eD/info.json index 060043df1bb79..1ed00a9ca1056 100644 --- a/blockchains/ethereum/assets/0xc5fB36dd2fb59d3B98dEfF88425a3F425Ee469eD/info.json +++ b/blockchains/ethereum/assets/0xc5fB36dd2fb59d3B98dEfF88425a3F425Ee469eD/info.json @@ -10,8 +10,8 @@ "id": "0xc5fB36dd2fb59d3B98dEfF88425a3F425Ee469eD", "links": [ { - "name": "twitter", - "url": "https://twitter.com/dejitaru_tsuka" + "name": "x", + "url": "https://x.com/dejitaru_tsuka" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xc78B628b060258300218740B1A7a5b3c82b3bd9f/info.json b/blockchains/ethereum/assets/0xc78B628b060258300218740B1A7a5b3c82b3bd9f/info.json new file mode 100644 index 0000000000000..db62182817346 --- /dev/null +++ b/blockchains/ethereum/assets/0xc78B628b060258300218740B1A7a5b3c82b3bd9f/info.json @@ -0,0 +1,21 @@ +{ + "name": "Commune AI", + "type": "ERC20", + "symbol": "wCOMAI", + "decimals": 18, + "website": "https://www.communeai.org/", + "description": "Protocol and Market System for Incentive-driven Coordination of Decentralized AI. Fully community driven, no bureaucracy, no team, no pre-mine. Only code and contributors.", + "explorer": "https://etherscan.io/token/0xc78B628b060258300218740B1A7a5b3c82b3bd9f", + "status": "active", + "id": "0xc78B628b060258300218740B1A7a5b3c82b3bd9f", + "links": [ + { + "name": "x", + "url": "https://x.com/communeaidotorg" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/commune-ai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc78B628b060258300218740B1A7a5b3c82b3bd9f/logo.png b/blockchains/ethereum/assets/0xc78B628b060258300218740B1A7a5b3c82b3bd9f/logo.png new file mode 100644 index 0000000000000..fb82b17552825 Binary files /dev/null and b/blockchains/ethereum/assets/0xc78B628b060258300218740B1A7a5b3c82b3bd9f/logo.png differ diff --git a/blockchains/ethereum/assets/0xc80C91BC6215E1333eA98314b8671d6e26c58470/info.json b/blockchains/ethereum/assets/0xc80C91BC6215E1333eA98314b8671d6e26c58470/info.json new file mode 100644 index 0000000000000..c30f4101b2388 --- /dev/null +++ b/blockchains/ethereum/assets/0xc80C91BC6215E1333eA98314b8671d6e26c58470/info.json @@ -0,0 +1,28 @@ +{ + "name": "Talen Energy (Ondo Tokenized)", + "type": "ERC20", + "symbol": "TLNon", + "decimals": 18, + "description": "TLNon is the Ondo Tokenized version of Talen Energy, giving tokenholders economic exposure similar to holding TLN and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xc80C91BC6215E1333eA98314b8671d6e26c58470", + "status": "active", + "id": "0xc80C91BC6215E1333eA98314b8671d6e26c58470", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/talen-energy-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/talen-energy-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc80C91BC6215E1333eA98314b8671d6e26c58470/logo.png b/blockchains/ethereum/assets/0xc80C91BC6215E1333eA98314b8671d6e26c58470/logo.png new file mode 100644 index 0000000000000..4da818828af48 Binary files /dev/null and b/blockchains/ethereum/assets/0xc80C91BC6215E1333eA98314b8671d6e26c58470/logo.png differ diff --git a/blockchains/ethereum/assets/0xc845b2894dBddd03858fd2D643B4eF725fE0849d/info.json b/blockchains/ethereum/assets/0xc845b2894dBddd03858fd2D643B4eF725fE0849d/info.json new file mode 100644 index 0000000000000..ea2dab55c0f67 --- /dev/null +++ b/blockchains/ethereum/assets/0xc845b2894dBddd03858fd2D643B4eF725fE0849d/info.json @@ -0,0 +1,24 @@ +{ + "name": "NVIDIA tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "NVIDIA tokenized stock (xStock) (NVDAX) is a cryptocurrency and operates on the Solana platform. NVIDIA tokenized stock (xStock) has a current supply of 48,653.72471846 with 7,655.63423039 in circulation. The last known price of NVIDIA tokenized stock (xStock) is 177.44432253 USD and is up 1.21 over the last 24 hours. It is currently trading on 44 active market(s) with $7,676,418.12 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/nvidia-xstock.", + "explorer": "https://etherscan.io/token/0xc845b2894dBddd03858fd2D643B4eF725fE0849d", + "type": "ERC20", + "symbol": "NVDAX", + "decimals": 18, + "status": "active", + "id": "0xc845b2894dBddd03858fd2D643B4eF725fE0849d", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nvidia-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc845b2894dBddd03858fd2D643B4eF725fE0849d/logo.png b/blockchains/ethereum/assets/0xc845b2894dBddd03858fd2D643B4eF725fE0849d/logo.png new file mode 100644 index 0000000000000..b79453063db00 Binary files /dev/null and b/blockchains/ethereum/assets/0xc845b2894dBddd03858fd2D643B4eF725fE0849d/logo.png differ diff --git a/blockchains/ethereum/assets/0xc8A34E86C187830922f841985E376f412eE0088A/info.json b/blockchains/ethereum/assets/0xc8A34E86C187830922f841985E376f412eE0088A/info.json new file mode 100644 index 0000000000000..f0acf6fc3e925 --- /dev/null +++ b/blockchains/ethereum/assets/0xc8A34E86C187830922f841985E376f412eE0088A/info.json @@ -0,0 +1,48 @@ +{ + "name": "DRAC Network (DRAC)", + "type": "ERC20", + "symbol": "DRAC", + "decimals": 18, + "website": "https://drac.io", + "description": "Decentralized Rewarding Autonomous Chain.", + "explorer": "https://etherscan.io/token/0xc8a34e86c187830922f841985e376f412ee0088a", + "status": "active", + "id": "0xc8A34E86C187830922f841985E376f412eE0088A", + "links": [ + { + "name": "x", + "url": "https://x.com/DRAC_Network" + }, + { + "name": "github", + "url": "https://github.com/DRAC-Network-Admin" + }, + { + "name": "telegram", + "url": "https://t.me/DRAC_English" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/drac-token" + }, + { + "name": "whitepaper", + "url": "https://drac.io/whitepaper.pdf" + }, + { + "name": "medium", + "url": "https://dracnetwork.medium.com" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCcD7AsRqhU92IfqTh4SY0kQ" + }, + { + "name": "discord", + "url": "https://discord.com/invite/9DyPCHsk" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc8A34E86C187830922f841985E376f412eE0088A/logo.png b/blockchains/ethereum/assets/0xc8A34E86C187830922f841985E376f412eE0088A/logo.png new file mode 100644 index 0000000000000..e49a73ebb5521 Binary files /dev/null and b/blockchains/ethereum/assets/0xc8A34E86C187830922f841985E376f412eE0088A/logo.png differ diff --git a/blockchains/ethereum/assets/0xc8De43Bfe33FF496Fa14c270D9CB29Bda196B9B5/info.json b/blockchains/ethereum/assets/0xc8De43Bfe33FF496Fa14c270D9CB29Bda196B9B5/info.json new file mode 100644 index 0000000000000..7c6ba19290634 --- /dev/null +++ b/blockchains/ethereum/assets/0xc8De43Bfe33FF496Fa14c270D9CB29Bda196B9B5/info.json @@ -0,0 +1,33 @@ +{ + "name": "Big Eyes", + "type": "ERC20", + "symbol": "$BIG", + "decimals": 18, + "website": "https://bigeyes.space", + "description": "Big Eyes’ is a full-on community token with the express goal of shifting wealth into the defi ecosystem and protecting an important part of the world’s ecosystem. We are creating the BIG Casino and 20+ P2E games all utilizing $BIG to play. This is the beginning of the $BIG-gest ecosystem in Crypto.", + "explorer": "https://etherscan.io/token/0xc8De43Bfe33FF496Fa14c270D9CB29Bda196B9B5", + "status": "active", + "id": "0xc8De43Bfe33FF496Fa14c270D9CB29Bda196B9B5", + "links": [ + { + "name": "x", + "url": "https://x.com/BigEyesCoin" + }, + { + "name": "telegram", + "url": "https://t.me/BIGEYESOFFICIAL" + }, + { + "name": "whitepaper", + "url": "https://bigeyes.space/documents/Whitepaper.pdf" + }, + { + "name": "docs", + "url": "https://solidity.finance/audits/BigEyes" + } + ], + "tags": [ + "memes", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc8De43Bfe33FF496Fa14c270D9CB29Bda196B9B5/logo.png b/blockchains/ethereum/assets/0xc8De43Bfe33FF496Fa14c270D9CB29Bda196B9B5/logo.png new file mode 100644 index 0000000000000..a9db922bc0cd0 Binary files /dev/null and b/blockchains/ethereum/assets/0xc8De43Bfe33FF496Fa14c270D9CB29Bda196B9B5/logo.png differ diff --git a/blockchains/ethereum/assets/0xc944E90C64B2c07662A292be6244BDf05Cda44a7/info.json b/blockchains/ethereum/assets/0xc944E90C64B2c07662A292be6244BDf05Cda44a7/info.json index 035933c66d2bf..c69f8d58bc1c2 100644 --- a/blockchains/ethereum/assets/0xc944E90C64B2c07662A292be6244BDf05Cda44a7/info.json +++ b/blockchains/ethereum/assets/0xc944E90C64B2c07662A292be6244BDf05Cda44a7/info.json @@ -18,8 +18,8 @@ "url": "https://github.com/graphprotocol/graph-node" }, { - "name": "twitter", - "url": "https://twitter.com/graphprotocol" + "name": "x", + "url": "https://x.com/graphprotocol" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0xc95c9e3fA311664b5e744B3C2716547BEc2Ba7dA/info.json b/blockchains/ethereum/assets/0xc95c9e3fA311664b5e744B3C2716547BEc2Ba7dA/info.json new file mode 100644 index 0000000000000..27ae9eeeb5a5f --- /dev/null +++ b/blockchains/ethereum/assets/0xc95c9e3fA311664b5e744B3C2716547BEc2Ba7dA/info.json @@ -0,0 +1,24 @@ +{ + "name": "Quantum Computing (Ondo Tokenized)", + "type": "ERC20", + "symbol": "QUBTon", + "decimals": 18, + "description": "QUBTon is the Ondo Tokenized version of Quantum Computing, giving tokenholders economic exposure similar to holding QUBT and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xc95c9e3fA311664b5e744B3C2716547BEc2Ba7dA", + "status": "active", + "id": "0xc95c9e3fA311664b5e744B3C2716547BEc2Ba7dA", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/quantum-computing-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc95c9e3fA311664b5e744B3C2716547BEc2Ba7dA/logo.png b/blockchains/ethereum/assets/0xc95c9e3fA311664b5e744B3C2716547BEc2Ba7dA/logo.png new file mode 100644 index 0000000000000..ba8cb66e12b1d Binary files /dev/null and b/blockchains/ethereum/assets/0xc95c9e3fA311664b5e744B3C2716547BEc2Ba7dA/logo.png differ diff --git a/blockchains/ethereum/assets/0xc98D64DA73a6616c42117b582e832812e7B8D57F/info.json b/blockchains/ethereum/assets/0xc98D64DA73a6616c42117b582e832812e7B8D57F/info.json new file mode 100644 index 0000000000000..5f411a7bd1e2f --- /dev/null +++ b/blockchains/ethereum/assets/0xc98D64DA73a6616c42117b582e832812e7B8D57F/info.json @@ -0,0 +1,21 @@ +{ + "name": "RSS3", + "type": "ERC20", + "symbol": "RSS3", + "decimals": 18, + "website": "https://rss3.io/", + "description": "RSS3 is a next-generation feed standard that aims to support efficient and decentralized information distribution.", + "explorer": "https://etherscan.io/token/0xc98d64da73a6616c42117b582e832812e7b8d57f", + "status": "active", + "id": "0xc98D64DA73a6616c42117b582e832812e7B8D57F", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rss3/" + }, + { + "name": "x", + "url": "https://x.com/rss3_" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc98D64DA73a6616c42117b582e832812e7B8D57F/logo.png b/blockchains/ethereum/assets/0xc98D64DA73a6616c42117b582e832812e7B8D57F/logo.png new file mode 100644 index 0000000000000..d5ce5c664a27b Binary files /dev/null and b/blockchains/ethereum/assets/0xc98D64DA73a6616c42117b582e832812e7B8D57F/logo.png differ diff --git a/blockchains/ethereum/assets/0xc9eef266834730340A55B6CC24621B31BAF55581/info.json b/blockchains/ethereum/assets/0xc9eef266834730340A55B6CC24621B31BAF55581/info.json new file mode 100644 index 0000000000000..927917b056587 --- /dev/null +++ b/blockchains/ethereum/assets/0xc9eef266834730340A55B6CC24621B31BAF55581/info.json @@ -0,0 +1,24 @@ +{ + "name": "SpaceX (Ondo Tokenized)", + "type": "ERC20", + "symbol": "SPCXon", + "decimals": 18, + "website": "https://app.ondo.finance/", + "description": "SPCXon is the Ondo Tokenized version of SpaceX, giving tokenholders economic exposure similar to holding SPCX and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply", + "explorer": "https://etherscan.io/token/0xc9eef266834730340A55B6CC24621B31BAF55581", + "status": "active", + "id": "0xc9eef266834730340A55B6CC24621B31BAF55581", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spacex-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc9eef266834730340A55B6CC24621B31BAF55581/logo.png b/blockchains/ethereum/assets/0xc9eef266834730340A55B6CC24621B31BAF55581/logo.png new file mode 100644 index 0000000000000..eaa561f8f3efa Binary files /dev/null and b/blockchains/ethereum/assets/0xc9eef266834730340A55B6CC24621B31BAF55581/logo.png differ diff --git a/blockchains/ethereum/assets/0xcA37530E7c5968627BE470081d1C993eb1dEaf90/info.json b/blockchains/ethereum/assets/0xcA37530E7c5968627BE470081d1C993eb1dEaf90/info.json index cfa46e4923973..3f43750f286ff 100644 --- a/blockchains/ethereum/assets/0xcA37530E7c5968627BE470081d1C993eb1dEaf90/info.json +++ b/blockchains/ethereum/assets/0xcA37530E7c5968627BE470081d1C993eb1dEaf90/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/ichifarm/ichi-oneToken" }, { - "name": "twitter", - "url": "https://twitter.com/ichifarm" + "name": "x", + "url": "https://x.com/ichifarm" }, { "name": "telegram", @@ -33,4 +33,4 @@ "url": "https://discord.com/invite/DvsYCfK8" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5/info.json b/blockchains/ethereum/assets/0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5/info.json index 8cebaec1467be..e9329c77442e2 100644 --- a/blockchains/ethereum/assets/0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5/info.json +++ b/blockchains/ethereum/assets/0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5/info.json @@ -10,8 +10,8 @@ "id": "0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5", "links": [ { - "name": "twitter", - "url": "https://twitter.com/paraswap" + "name": "x", + "url": "https://x.com/paraswap" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xcBB8f1BDA10b9696c57E13BC128Fe674769DCEc0/info.json b/blockchains/ethereum/assets/0xcBB8f1BDA10b9696c57E13BC128Fe674769DCEc0/info.json new file mode 100644 index 0000000000000..b8248c625f295 --- /dev/null +++ b/blockchains/ethereum/assets/0xcBB8f1BDA10b9696c57E13BC128Fe674769DCEc0/info.json @@ -0,0 +1,17 @@ +{ + "name": "MOR", + "type": "ERC20", + "symbol": "MOR", + "decimals": 18, + "website": "https://mor.org/", + "description": "The first peer-to-peer network for general purpose AI, powered by MOR", + "explorer": "https://etherscan.io/token/0xcBB8f1BDA10b9696c57E13BC128Fe674769DCEc0", + "status": "active", + "id": "0xcBB8f1BDA10b9696c57E13BC128Fe674769DCEc0", + "links": [ + { + "name": "x", + "url": "https://x.com/MorpheusAIs" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcBB8f1BDA10b9696c57E13BC128Fe674769DCEc0/logo.png b/blockchains/ethereum/assets/0xcBB8f1BDA10b9696c57E13BC128Fe674769DCEc0/logo.png new file mode 100644 index 0000000000000..20c7da55796e5 Binary files /dev/null and b/blockchains/ethereum/assets/0xcBB8f1BDA10b9696c57E13BC128Fe674769DCEc0/logo.png differ diff --git a/blockchains/ethereum/assets/0xcBeD554Ad21B9dce19BDa9A57C3b62C9d3fF72e2/info.json b/blockchains/ethereum/assets/0xcBeD554Ad21B9dce19BDa9A57C3b62C9d3fF72e2/info.json index 59ee5c8414a0f..33380592743e2 100644 --- a/blockchains/ethereum/assets/0xcBeD554Ad21B9dce19BDa9A57C3b62C9d3fF72e2/info.json +++ b/blockchains/ethereum/assets/0xcBeD554Ad21B9dce19BDa9A57C3b62C9d3fF72e2/info.json @@ -1,5 +1,5 @@ { - "name": "Curve.fi yDAI/yUSDC/yUSDT/yTUSD ", + "name": "Curve.finance yDAI/yUSDC/yUSDT/yTUSD ", "symbol": "yDAI+yUSDC+yUSDT+yTUSD", "type": "ERC20", "decimals": 18, diff --git a/blockchains/ethereum/assets/0xcC40965d3621362C3EE1dD946bA98d6A708ea86B/info.json b/blockchains/ethereum/assets/0xcC40965d3621362C3EE1dD946bA98d6A708ea86B/info.json new file mode 100644 index 0000000000000..bdaeb1ead1b65 --- /dev/null +++ b/blockchains/ethereum/assets/0xcC40965d3621362C3EE1dD946bA98d6A708ea86B/info.json @@ -0,0 +1,28 @@ +{ + "name": "PDD Holdings (Ondo Tokenized)", + "type": "ERC20", + "symbol": "PDDon", + "decimals": 18, + "description": "PDDon is the Ondo Tokenized version of PDD Holdings, giving tokenholders economic exposure similar to holding PDD and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xcC40965d3621362C3EE1dD946bA98d6A708ea86B", + "status": "active", + "id": "0xcC40965d3621362C3EE1dD946bA98d6A708ea86B", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pdd-holdings-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pdd-holdings-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcC40965d3621362C3EE1dD946bA98d6A708ea86B/logo.png b/blockchains/ethereum/assets/0xcC40965d3621362C3EE1dD946bA98d6A708ea86B/logo.png new file mode 100644 index 0000000000000..7bde4f2c9b3cf Binary files /dev/null and b/blockchains/ethereum/assets/0xcC40965d3621362C3EE1dD946bA98d6A708ea86B/logo.png differ diff --git a/blockchains/ethereum/assets/0xcCAe8843E26259278C200C6506F6E5A3bdD524cd/info.json b/blockchains/ethereum/assets/0xcCAe8843E26259278C200C6506F6E5A3bdD524cd/info.json new file mode 100644 index 0000000000000..89ea42dee6197 --- /dev/null +++ b/blockchains/ethereum/assets/0xcCAe8843E26259278C200C6506F6E5A3bdD524cd/info.json @@ -0,0 +1,24 @@ +{ + "name": "Vanguard Real Estate ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "VNQon", + "decimals": 18, + "description": "VNQon is the Ondo Tokenized version of the Vanguard Real Estate ETF, giving tokenholders economic exposure similar to holding VNQ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xcCAe8843E26259278C200C6506F6E5A3bdD524cd", + "status": "active", + "id": "0xcCAe8843E26259278C200C6506F6E5A3bdD524cd", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vanguard-real-estate-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcCAe8843E26259278C200C6506F6E5A3bdD524cd/logo.png b/blockchains/ethereum/assets/0xcCAe8843E26259278C200C6506F6E5A3bdD524cd/logo.png new file mode 100644 index 0000000000000..0ccfbac790bc2 Binary files /dev/null and b/blockchains/ethereum/assets/0xcCAe8843E26259278C200C6506F6E5A3bdD524cd/logo.png differ diff --git a/blockchains/ethereum/assets/0xcDD60D15125bf3362b6838D2506b0Fa33bc1a515/info.json b/blockchains/ethereum/assets/0xcDD60D15125bf3362b6838D2506b0Fa33bc1a515/info.json new file mode 100644 index 0000000000000..beae2efbe2bc1 --- /dev/null +++ b/blockchains/ethereum/assets/0xcDD60D15125bf3362b6838D2506b0Fa33bc1a515/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Core MSCI Emerging Markets (Ondo)", + "website": "https://ondo.finance/", + "description": "IEMGon is the Ondo Tokenized version of the iShares Core MSCI Emerging Markets ETF, giving tokenholders economic exposure similar to holding IEMG and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xcDD60D15125bf3362b6838D2506b0Fa33bc1a515", + "type": "ERC20", + "symbol": "IEMGon", + "decimals": 18, + "status": "active", + "id": "0xcDD60D15125bf3362b6838D2506b0Fa33bc1a515", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-core-msci-emerging-markets-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcDD60D15125bf3362b6838D2506b0Fa33bc1a515/logo.png b/blockchains/ethereum/assets/0xcDD60D15125bf3362b6838D2506b0Fa33bc1a515/logo.png new file mode 100644 index 0000000000000..8adf578853fa6 Binary files /dev/null and b/blockchains/ethereum/assets/0xcDD60D15125bf3362b6838D2506b0Fa33bc1a515/logo.png differ diff --git a/blockchains/ethereum/assets/0xcF78C7dD70d6F30F6E3609e905e78305Da98c863/info.json b/blockchains/ethereum/assets/0xcF78C7dD70d6F30F6E3609e905e78305Da98c863/info.json index 09389aa700e98..ebc41f53b3d2b 100644 --- a/blockchains/ethereum/assets/0xcF78C7dD70d6F30F6E3609e905e78305Da98c863/info.json +++ b/blockchains/ethereum/assets/0xcF78C7dD70d6F30F6E3609e905e78305Da98c863/info.json @@ -10,8 +10,8 @@ "id": "0xcF78C7dD70d6F30F6E3609e905e78305Da98c863", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Ownix_nft" + "name": "x", + "url": "https://x.com/Ownix_nft" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xcFEB09C3c5F0f78aD72166D55f9e6E9A60e96eEC/info.json b/blockchains/ethereum/assets/0xcFEB09C3c5F0f78aD72166D55f9e6E9A60e96eEC/info.json index e2c44478effa1..e51a783be7daa 100644 --- a/blockchains/ethereum/assets/0xcFEB09C3c5F0f78aD72166D55f9e6E9A60e96eEC/info.json +++ b/blockchains/ethereum/assets/0xcFEB09C3c5F0f78aD72166D55f9e6E9A60e96eEC/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/vempire-ddao/" }, { - "name": "twitter", - "url": "https://twitter.com/vEmpiredigital" + "name": "x", + "url": "https://x.com/vEmpiredigital" }, { "name": "telegram", @@ -41,4 +41,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xca1207647Ff814039530D7d35df0e1Dd2e91Fa84/info.json b/blockchains/ethereum/assets/0xca1207647Ff814039530D7d35df0e1Dd2e91Fa84/info.json index 356f93d6067ff..48f5c4dde8a9a 100644 --- a/blockchains/ethereum/assets/0xca1207647Ff814039530D7d35df0e1Dd2e91Fa84/info.json +++ b/blockchains/ethereum/assets/0xca1207647Ff814039530D7d35df0e1Dd2e91Fa84/info.json @@ -10,8 +10,8 @@ "id": "0xca1207647Ff814039530D7d35df0e1Dd2e91Fa84", "links": [ { - "name": "twitter", - "url": "https://twitter.com/dHedgeOrg" + "name": "x", + "url": "https://x.com/dHedgeOrg" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0xcb1592591996765Ec0eFc1f92599A19767ee5ffA/info.json b/blockchains/ethereum/assets/0xcb1592591996765Ec0eFc1f92599A19767ee5ffA/info.json new file mode 100644 index 0000000000000..916a9db5e635b --- /dev/null +++ b/blockchains/ethereum/assets/0xcb1592591996765Ec0eFc1f92599A19767ee5ffA/info.json @@ -0,0 +1,29 @@ +{ + "name": "BIO", + "type": "ERC20", + "symbol": "BIO", + "decimals": 18, + "description": "BIO Protocol enables global communities of scientists, patients, and investors to collectively fund, develop, and co-own new drugs and therapeutics through its network of Biotech Decentralized Autonomous Organizations (BioDAOs).", + "website": "https://www.bio.xyz/", + "explorer": "https://etherscan.io/token/0xcb1592591996765ec0efc1f92599a19767ee5ffa", + "id": "0xcb1592591996765Ec0eFc1f92599A19767ee5ffA", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/bioprotocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bio/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bio-protocol" + } + ], + "tags": [ + "governance" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcb1592591996765Ec0eFc1f92599A19767ee5ffA/logo.png b/blockchains/ethereum/assets/0xcb1592591996765Ec0eFc1f92599A19767ee5ffA/logo.png new file mode 100644 index 0000000000000..872b92a53f5a1 Binary files /dev/null and b/blockchains/ethereum/assets/0xcb1592591996765Ec0eFc1f92599A19767ee5ffA/logo.png differ diff --git a/blockchains/ethereum/assets/0xcb46C550539ac3DB72dc7aF7c89B11c306C727c2/info.json b/blockchains/ethereum/assets/0xcb46C550539ac3DB72dc7aF7c89B11c306C727c2/info.json index 6b559ad1324f4..8904556add31b 100644 --- a/blockchains/ethereum/assets/0xcb46C550539ac3DB72dc7aF7c89B11c306C727c2/info.json +++ b/blockchains/ethereum/assets/0xcb46C550539ac3DB72dc7aF7c89B11c306C727c2/info.json @@ -1,5 +1,5 @@ { - "name": "Poly Ontology Token", + "name": "Ontology", "website": "https://ont.io", "description": "Poly Ontology Token (ONT ERC20) is a token issued by Binance on Smart Chain; its price is pegged to Ontology Token (ONT) at a ratio of 1:1.", "explorer": "https://etherscan.io/token/0xcb46C550539ac3DB72dc7aF7c89B11c306C727c2", diff --git a/blockchains/ethereum/assets/0xcbE771323587EA16dACB6016e269D7F08A7ACC4E/info.json b/blockchains/ethereum/assets/0xcbE771323587EA16dACB6016e269D7F08A7ACC4E/info.json index 2c228a4a0a23f..54666a507d9c2 100644 --- a/blockchains/ethereum/assets/0xcbE771323587EA16dACB6016e269D7F08A7ACC4E/info.json +++ b/blockchains/ethereum/assets/0xcbE771323587EA16dACB6016e269D7F08A7ACC4E/info.json @@ -10,8 +10,8 @@ "id": "0xcbE771323587EA16dACB6016e269D7F08A7ACC4E", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Spores_Network" + "name": "x", + "url": "https://x.com/Spores_Network" }, { "name": "medium", diff --git a/blockchains/ethereum/assets/0xcbd55D4fFc43467142761A764763652b48b969ff/info.json b/blockchains/ethereum/assets/0xcbd55D4fFc43467142761A764763652b48b969ff/info.json index b645259b96d42..780035993c7c2 100644 --- a/blockchains/ethereum/assets/0xcbd55D4fFc43467142761A764763652b48b969ff/info.json +++ b/blockchains/ethereum/assets/0xcbd55D4fFc43467142761A764763652b48b969ff/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/astrotoolsio" }, { - "name": "twitter", - "url": "https://twitter.com/Astro_Tools" + "name": "x", + "url": "https://x.com/Astro_Tools" }, { "name": "coinmarketcap", diff --git a/blockchains/ethereum/assets/0xccB365D2e11aE4D6d74715c680f56cf58bF4bF10/info.json b/blockchains/ethereum/assets/0xccB365D2e11aE4D6d74715c680f56cf58bF4bF10/info.json new file mode 100644 index 0000000000000..4b3e9468159af --- /dev/null +++ b/blockchains/ethereum/assets/0xccB365D2e11aE4D6d74715c680f56cf58bF4bF10/info.json @@ -0,0 +1,17 @@ +{ + "name": "Wall Street Pepe", + "symbol": "WEPE", + "website": "https://wallstreetpepe.com", + "description": "Wall Street Pepe ($WEPE) is a meme coin on the Ethereum blockchain that merges meme culture with real trading utilities", + "explorer": "https://etherscan.io/token/0xccb365d2e11ae4d6d74715c680f56cf58bf4bf10", + "decimals": 18, + "status": "active", + "id": "0xccB365D2e11aE4D6d74715c680f56cf58bF4bF10", + "type": "ERC20", + "links": [ + { + "name": "x", + "url": "https://x.com/wepetoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xccB365D2e11aE4D6d74715c680f56cf58bF4bF10/logo.png b/blockchains/ethereum/assets/0xccB365D2e11aE4D6d74715c680f56cf58bF4bF10/logo.png new file mode 100644 index 0000000000000..12b6fc91bb9f1 Binary files /dev/null and b/blockchains/ethereum/assets/0xccB365D2e11aE4D6d74715c680f56cf58bF4bF10/logo.png differ diff --git a/blockchains/ethereum/assets/0xccC8cb5229B0ac8069C51fd58367Fd1e622aFD97/info.json b/blockchains/ethereum/assets/0xccC8cb5229B0ac8069C51fd58367Fd1e622aFD97/info.json index 2a89b18b36d03..b7322ca7ea8e4 100644 --- a/blockchains/ethereum/assets/0xccC8cb5229B0ac8069C51fd58367Fd1e622aFD97/info.json +++ b/blockchains/ethereum/assets/0xccC8cb5229B0ac8069C51fd58367Fd1e622aFD97/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/GodsUnchained" + "name": "x", + "url": "https://x.com/GodsUnchained" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0xcf0C122c6b73ff809C693DB761e7BaeBe62b6a2E/info.json b/blockchains/ethereum/assets/0xcf0C122c6b73ff809C693DB761e7BaeBe62b6a2E/info.json index adc0f5bcc6649..81d10f0e5d6ca 100644 --- a/blockchains/ethereum/assets/0xcf0C122c6b73ff809C693DB761e7BaeBe62b6a2E/info.json +++ b/blockchains/ethereum/assets/0xcf0C122c6b73ff809C693DB761e7BaeBe62b6a2E/info.json @@ -17,8 +17,8 @@ "url": "https://t.me/FlokiInuToken" }, { - "name": "twitter", - "url": "https://twitter.com/realflokiinu" + "name": "x", + "url": "https://x.com/realflokiinu" }, { "name": "coinmarketcap", diff --git a/blockchains/ethereum/assets/0xd01409314aCb3b245CEa9500eCE3F6Fd4d70ea30/info.json b/blockchains/ethereum/assets/0xd01409314aCb3b245CEa9500eCE3F6Fd4d70ea30/info.json index d74d4c88a9b9f..9011b1705d945 100644 --- a/blockchains/ethereum/assets/0xd01409314aCb3b245CEa9500eCE3F6Fd4d70ea30/info.json +++ b/blockchains/ethereum/assets/0xd01409314aCb3b245CEa9500eCE3F6Fd4d70ea30/info.json @@ -10,8 +10,8 @@ "id": "0xd01409314aCb3b245CEa9500eCE3F6Fd4d70ea30", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TheLTONetwork" + "name": "x", + "url": "https://x.com/TheLTONetwork" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0xd084B83C305daFD76AE3E1b4E1F1fe2eCcCb3988/info.json b/blockchains/ethereum/assets/0xd084B83C305daFD76AE3E1b4E1F1fe2eCcCb3988/info.json index e0f9e9be62440..6975e9f0b993d 100644 --- a/blockchains/ethereum/assets/0xd084B83C305daFD76AE3E1b4E1F1fe2eCcCb3988/info.json +++ b/blockchains/ethereum/assets/0xd084B83C305daFD76AE3E1b4E1F1fe2eCcCb3988/info.json @@ -15,8 +15,8 @@ "url": "https://coinmarketcap.com/currencies/terra-virtua-kolect/" }, { - "name": "twitter", - "url": "https://twitter.com/terra_virtua" + "name": "x", + "url": "https://x.com/terra_virtua" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xd12A99dbC40036CEc6f1b776dccd2d36f5953B94/info.json b/blockchains/ethereum/assets/0xd12A99dbC40036CEc6f1b776dccd2d36f5953B94/info.json new file mode 100644 index 0000000000000..06ed6366b2b57 --- /dev/null +++ b/blockchains/ethereum/assets/0xd12A99dbC40036CEc6f1b776dccd2d36f5953B94/info.json @@ -0,0 +1,21 @@ +{ + "name": "Draggy", + "type": "ERC20", + "symbol": "DRAGGY", + "decimals": 9, + "website": "https://draggy.co/", + "description": "Draggy is an epic dragon character based on `The Night Riders` book, a famous comic book by artist and illustrator Matt Furie.", + "explorer": "https://etherscan.io/token/0xd12a99dbc40036cec6f1b776dccd2d36f5953b94", + "status": "active", + "id": "0xd12A99dbC40036CEc6f1b776dccd2d36f5953B94", + "links": [ + { + "name": "x", + "url": "https://x.com/DraggyCTO" + }, + { + "name": "telegram", + "url": "https://t.me/DraggyOfficialCTO" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd12A99dbC40036CEc6f1b776dccd2d36f5953B94/logo.png b/blockchains/ethereum/assets/0xd12A99dbC40036CEc6f1b776dccd2d36f5953B94/logo.png new file mode 100644 index 0000000000000..5f93e39cfc423 Binary files /dev/null and b/blockchains/ethereum/assets/0xd12A99dbC40036CEc6f1b776dccd2d36f5953B94/logo.png differ diff --git a/blockchains/ethereum/assets/0xd1d2Eb1B1e90B638588728b4130137D262C87cae/info.json b/blockchains/ethereum/assets/0xd1d2Eb1B1e90B638588728b4130137D262C87cae/info.json index 4ad6347443e4a..d7b4a47481760 100644 --- a/blockchains/ethereum/assets/0xd1d2Eb1B1e90B638588728b4130137D262C87cae/info.json +++ b/blockchains/ethereum/assets/0xd1d2Eb1B1e90B638588728b4130137D262C87cae/info.json @@ -14,8 +14,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/GoGalaGames" + "name": "x", + "url": "https://x.com/GoGalaGames" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xd1e0e39bD1758ABe0865d5289895A9197C6Cd549/info.json b/blockchains/ethereum/assets/0xd1e0e39bD1758ABe0865d5289895A9197C6Cd549/info.json new file mode 100644 index 0000000000000..4382a2edf8b70 --- /dev/null +++ b/blockchains/ethereum/assets/0xd1e0e39bD1758ABe0865d5289895A9197C6Cd549/info.json @@ -0,0 +1,32 @@ +{ + "name": "UAHg", + "type": "ERC20", + "symbol": "UAHg", + "decimals": 6, + "website": "https://uahg.io/en", + "description": "A digital asset denominated in hryvnia and backed by a basket of top stablecoins.", + "explorer": "https://etherscan.io/token/0xd1e0e39bd1758abe0865d5289895a9197c6cd549", + "status": "active", + "id": "0xd1e0e39bD1758ABe0865d5289895A9197C6Cd549", + "links": [ + { + "name": "x", + "url": "https://x.com/uahg_to" + }, + { + "name": "telegram", + "url": "https://t.me/uahg_to" + }, + { + "name": "whitepaper", + "url": "https://api.uahg.io/storage/uploads/file/variables/ca/au/en_whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/uahg/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd1e0e39bD1758ABe0865d5289895A9197C6Cd549/logo.png b/blockchains/ethereum/assets/0xd1e0e39bD1758ABe0865d5289895A9197C6Cd549/logo.png new file mode 100644 index 0000000000000..22f0254137a88 Binary files /dev/null and b/blockchains/ethereum/assets/0xd1e0e39bD1758ABe0865d5289895A9197C6Cd549/logo.png differ diff --git a/blockchains/ethereum/assets/0xd1e2d5085b39B80C9948AeB1b9aA83AF6756bcc5/info.json b/blockchains/ethereum/assets/0xd1e2d5085b39B80C9948AeB1b9aA83AF6756bcc5/info.json index 465bf63118e0c..c7a3551209a34 100644 --- a/blockchains/ethereum/assets/0xd1e2d5085b39B80C9948AeB1b9aA83AF6756bcc5/info.json +++ b/blockchains/ethereum/assets/0xd1e2d5085b39B80C9948AeB1b9aA83AF6756bcc5/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/oxen-io/oxen-core" }, { - "name": "twitter", - "url": "https://twitter.com/Oxen_io" + "name": "x", + "url": "https://x.com/Oxen_io" }, { "name": "whitepaper", diff --git a/blockchains/ethereum/assets/0xd26114cd6EE289AccF82350c8d8487fedB8A0C07/info.json b/blockchains/ethereum/assets/0xd26114cd6EE289AccF82350c8d8487fedB8A0C07/info.json index 62f6bef92dc77..cfcc117a29f78 100644 --- a/blockchains/ethereum/assets/0xd26114cd6EE289AccF82350c8d8487fedB8A0C07/info.json +++ b/blockchains/ethereum/assets/0xd26114cd6EE289AccF82350c8d8487fedB8A0C07/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/omgnetwork" }, { - "name": "twitter", - "url": "https://twitter.com/omgnetworkhq" + "name": "x", + "url": "https://x.com/omgnetworkhq" }, { "name": "blog", diff --git a/blockchains/ethereum/assets/0xd26a9C3437f7D121098c8C05C7413F5Cc70BB070/info.json b/blockchains/ethereum/assets/0xd26a9C3437f7D121098c8C05C7413F5Cc70BB070/info.json index e6cfd46cb96a0..8c16034806465 100644 --- a/blockchains/ethereum/assets/0xd26a9C3437f7D121098c8C05C7413F5Cc70BB070/info.json +++ b/blockchains/ethereum/assets/0xd26a9C3437f7D121098c8C05C7413F5Cc70BB070/info.json @@ -10,8 +10,8 @@ "id": "0xd26a9C3437f7D121098c8C05C7413F5Cc70BB070", "links": [ { - "name": "twitter", - "url": "https://twitter.com/GamesAzuma" + "name": "x", + "url": "https://x.com/GamesAzuma" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xd2877702675e6cEb975b4A1dFf9fb7BAF4C91ea9/info.json b/blockchains/ethereum/assets/0xd2877702675e6cEb975b4A1dFf9fb7BAF4C91ea9/info.json index 36352113cddac..4fb2b24e20e6a 100644 --- a/blockchains/ethereum/assets/0xd2877702675e6cEb975b4A1dFf9fb7BAF4C91ea9/info.json +++ b/blockchains/ethereum/assets/0xd2877702675e6cEb975b4A1dFf9fb7BAF4C91ea9/info.json @@ -10,8 +10,8 @@ "id": "0xd2877702675e6cEb975b4A1dFf9fb7BAF4C91ea9", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TerraMoney" + "name": "x", + "url": "https://x.com/TerraMoney" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xd2b274CfBf9534f56b59aD0FB7e645e0354f4941/info.json b/blockchains/ethereum/assets/0xd2b274CfBf9534f56b59aD0FB7e645e0354f4941/info.json new file mode 100644 index 0000000000000..4c25d1cb0838e --- /dev/null +++ b/blockchains/ethereum/assets/0xd2b274CfBf9534f56b59aD0FB7e645e0354f4941/info.json @@ -0,0 +1,25 @@ +{ + "name": "XDOGE", + "website": "https://x-doge.vip", + "description": "Embracing Financial Freedom through Elon Musk’s X-Factor In the world of cryptocurrencies, where innovation and imagination converge, the $X Project stands out as a promising opportunity for crypto investors seeking to achieve financial freedom.", + "explorer": "https://etherscan.io/token/0xd2b274cfbf9534f56b59ad0fb7e645e0354f4941", + "type": "ERC20", + "symbol": "XDOGE", + "decimals": 8, + "status": "active", + "id": "0xd2b274CfBf9534f56b59aD0FB7e645e0354f4941", + "links": [ + { + "name": "x", + "url": "https://x.com/XDogeErc20" + }, + { + "name": "telegram", + "url": "https://t.me/xdogeerc2" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/xdoge-vip/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd2b274CfBf9534f56b59aD0FB7e645e0354f4941/logo.png b/blockchains/ethereum/assets/0xd2b274CfBf9534f56b59aD0FB7e645e0354f4941/logo.png new file mode 100644 index 0000000000000..63be5587cb375 Binary files /dev/null and b/blockchains/ethereum/assets/0xd2b274CfBf9534f56b59aD0FB7e645e0354f4941/logo.png differ diff --git a/blockchains/ethereum/assets/0xd2bA23dE8a19316A638dc1e7a9ADdA1d74233368/info.json b/blockchains/ethereum/assets/0xd2bA23dE8a19316A638dc1e7a9ADdA1d74233368/info.json new file mode 100644 index 0000000000000..8d6b61e790200 --- /dev/null +++ b/blockchains/ethereum/assets/0xd2bA23dE8a19316A638dc1e7a9ADdA1d74233368/info.json @@ -0,0 +1,29 @@ +{ + "name": "QuickSwap", + "website": "https://quickswap.exchange/", + "description": "Next-gen Layer 2 DEX. Trade at lightning-fast speeds with near-zero gas fees, Powered by Polygon", + "explorer": "https://etherscan.io/token/0xd2bA23dE8a19316A638dc1e7a9ADdA1d74233368", + "type": "ERC20", + "symbol": "QUICK", + "decimals": 18, + "status": "active", + "id": "0xd2bA23dE8a19316A638dc1e7a9ADdA1d74233368", + "links": [ + { + "name": "github", + "url": "https://github.com/QuickSwap" + }, + { + "name": "x", + "url": "https://x.com/QuickswapDEX" + }, + { + "name": "telegram", + "url": "https://t.me/QuickSwapDEX" + }, + { + "name": "medium", + "url": "https://quickswap-layer2.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6c28AeF8977c9B773996d0e8376d2EE379446F2f/logo.png b/blockchains/ethereum/assets/0xd2bA23dE8a19316A638dc1e7a9ADdA1d74233368/logo.png similarity index 100% rename from blockchains/ethereum/assets/0x6c28AeF8977c9B773996d0e8376d2EE379446F2f/logo.png rename to blockchains/ethereum/assets/0xd2bA23dE8a19316A638dc1e7a9ADdA1d74233368/logo.png diff --git a/blockchains/ethereum/assets/0xd36932143F6eBDEDD872D5Fb0651f4B72Fd15a84/info.json b/blockchains/ethereum/assets/0xd36932143F6eBDEDD872D5Fb0651f4B72Fd15a84/info.json index c2114de496673..ce820668bd744 100644 --- a/blockchains/ethereum/assets/0xd36932143F6eBDEDD872D5Fb0651f4B72Fd15a84/info.json +++ b/blockchains/ethereum/assets/0xd36932143F6eBDEDD872D5Fb0651f4B72Fd15a84/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/MirrorProtocol" + "name": "x", + "url": "https://x.com/MirrorProtocol" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xd38BB40815d2B0c2d2c866e0c72c5728ffC76dd9/info.json b/blockchains/ethereum/assets/0xd38BB40815d2B0c2d2c866e0c72c5728ffC76dd9/info.json index 0d0bdb813cdd9..99b9ad864ead4 100644 --- a/blockchains/ethereum/assets/0xd38BB40815d2B0c2d2c866e0c72c5728ffC76dd9/info.json +++ b/blockchains/ethereum/assets/0xd38BB40815d2B0c2d2c866e0c72c5728ffC76dd9/info.json @@ -10,8 +10,8 @@ "id": "0xd38BB40815d2B0c2d2c866e0c72c5728ffC76dd9", "links": [ { - "name": "twitter", - "url": "https://twitter.com/symbiosis_fi" + "name": "x", + "url": "https://x.com/symbiosis_fi" }, { "name": "github", @@ -29,4 +29,4 @@ "tags": [ "stablecoin" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json b/blockchains/ethereum/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json index b55c899f532a5..a844e61f617b8 100644 --- a/blockchains/ethereum/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json +++ b/blockchains/ethereum/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json @@ -10,8 +10,8 @@ "id": "0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189", "links": [ { - "name": "twitter", - "url": "https://twitter.com/OkcashCrypto" + "name": "x", + "url": "https://x.com/OkcashCrypto" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0xd3CC9d8f3689B83c91b7B59cAB4946B063EB894A/info.json b/blockchains/ethereum/assets/0xd3CC9d8f3689B83c91b7B59cAB4946B063EB894A/info.json new file mode 100644 index 0000000000000..a381e60c16389 --- /dev/null +++ b/blockchains/ethereum/assets/0xd3CC9d8f3689B83c91b7B59cAB4946B063EB894A/info.json @@ -0,0 +1,21 @@ +{ + "name": "Venus XVS", + "type": "ERC20", + "symbol": "XVS", + "decimals": 18, + "website": "https://venus.io/", + "description": "Venus is a community-driven multichain decentralized protocol delivering best-in-class functionality for crypto money markets.", + "explorer": "https://etherscan.io/token/0xd3CC9d8f3689B83c91b7B59cAB4946B063EB894A", + "status": "active", + "id": "0xd3CC9d8f3689B83c91b7B59cAB4946B063EB894A", + "links": [ + { + "name": "x", + "url": "https://x.com/VenusProtocol/" + }, + { + "name": "telegram", + "url": "https://t.me/venusprotocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd3CC9d8f3689B83c91b7B59cAB4946B063EB894A/logo.png b/blockchains/ethereum/assets/0xd3CC9d8f3689B83c91b7B59cAB4946B063EB894A/logo.png new file mode 100644 index 0000000000000..283ae45bfb6ea Binary files /dev/null and b/blockchains/ethereum/assets/0xd3CC9d8f3689B83c91b7B59cAB4946B063EB894A/logo.png differ diff --git a/blockchains/ethereum/assets/0xd3E4Ba569045546D09CF021ECC5dFe42b1d7f6E4/info.json b/blockchains/ethereum/assets/0xd3E4Ba569045546D09CF021ECC5dFe42b1d7f6E4/info.json index 029160cb28b3f..5ced21946dbb8 100644 --- a/blockchains/ethereum/assets/0xd3E4Ba569045546D09CF021ECC5dFe42b1d7f6E4/info.json +++ b/blockchains/ethereum/assets/0xd3E4Ba569045546D09CF021ECC5dFe42b1d7f6E4/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/morpheus-network/" }, { - "name": "twitter", - "url": "https://twitter.com/MNWSupplyChain" + "name": "x", + "url": "https://x.com/MNWSupplyChain" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xd3E8695d2Bef061EAb38B5EF526c0f714108119C/info.json b/blockchains/ethereum/assets/0xd3E8695d2Bef061EAb38B5EF526c0f714108119C/info.json index 97310a43461cd..5a9443c6da0d2 100644 --- a/blockchains/ethereum/assets/0xd3E8695d2Bef061EAb38B5EF526c0f714108119C/info.json +++ b/blockchains/ethereum/assets/0xd3E8695d2Bef061EAb38B5EF526c0f714108119C/info.json @@ -10,8 +10,8 @@ "id": "0xd3E8695d2Bef061EAb38B5EF526c0f714108119C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/YFIVEfinance" + "name": "x", + "url": "https://x.com/YFIVEfinance" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd459ECeddafcc1d876a3be7290A2E16e801073a3/info.json b/blockchains/ethereum/assets/0xd459ECeddafcc1d876a3be7290A2E16e801073a3/info.json new file mode 100644 index 0000000000000..06d30316b146a --- /dev/null +++ b/blockchains/ethereum/assets/0xd459ECeddafcc1d876a3be7290A2E16e801073a3/info.json @@ -0,0 +1,25 @@ +{ + "name": "BounceBit", + "type": "ERC20", + "symbol": "BB", + "decimals": 18, + "description": "BounceBit pioneers CeDeFi infrastructure, offering institutional-grade yield products, restaking use cases, Real World Asset (RWA) integration, and CeDeFi as a service, making high-yield opportunities accessible to all.", + "website": "https://www.bouncebit.io/", + "explorer": "https://etherscan.io/token/0xd459eceddafcc1d876a3be7290a2e16e801073a3", + "id": "0xd459ECeddafcc1d876a3be7290A2E16e801073a3", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/bounce_bit" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bouncebit/" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd459ECeddafcc1d876a3be7290A2E16e801073a3/logo.png b/blockchains/ethereum/assets/0xd459ECeddafcc1d876a3be7290A2E16e801073a3/logo.png new file mode 100644 index 0000000000000..a6aa6c5b36b1e Binary files /dev/null and b/blockchains/ethereum/assets/0xd459ECeddafcc1d876a3be7290A2E16e801073a3/logo.png differ diff --git a/blockchains/ethereum/assets/0xd555498a524612c67f286dF0e0a9a64a73a7Cdc7/info.json b/blockchains/ethereum/assets/0xd555498a524612c67f286dF0e0a9a64a73a7Cdc7/info.json new file mode 100644 index 0000000000000..0b74c7092b7a6 --- /dev/null +++ b/blockchains/ethereum/assets/0xd555498a524612c67f286dF0e0a9a64a73a7Cdc7/info.json @@ -0,0 +1,24 @@ +{ + "name": "DeFrogs", + "website": "https://defrogs.com", + "description": "A collection of 10000 DeFrogs enabled by erc404, an experimental token standard on Ethereum. The 1st ERC404 PFP.", + "explorer": "https://etherscan.io/token/0xd555498a524612c67f286df0e0a9a64a73a7cdc7", + "type": "ERC20", + "symbol": "DEFROGS", + "decimals": 18, + "status": "abandoned", + "id": "0xd555498a524612c67f286dF0e0a9a64a73a7Cdc7", + "links": [ + { + "name": "x", + "url": "https://x.com/DeFrogsToken" + }, + { + "name": "telegram", + "url": "https://t.me/DeFrogs" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd55BD2C12B30075b325Bc35aEf0B46363B3818f8/info.json b/blockchains/ethereum/assets/0xd55BD2C12B30075b325Bc35aEf0B46363B3818f8/info.json index 481d6b3b45ab3..4a572dbc123f6 100644 --- a/blockchains/ethereum/assets/0xd55BD2C12B30075b325Bc35aEf0B46363B3818f8/info.json +++ b/blockchains/ethereum/assets/0xd55BD2C12B30075b325Bc35aEf0B46363B3818f8/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/zombie-finance/zombie-protocol" }, { - "name": "twitter", - "url": "https://twitter.com/Zombie.Finance" + "name": "x", + "url": "https://x.com/Zombie.Finance" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd5C5B2883735Fa9B658Dd52e2FCC8d7c0f1A42Ce/info.json b/blockchains/ethereum/assets/0xd5C5B2883735Fa9B658Dd52e2FCC8d7c0f1A42Ce/info.json new file mode 100644 index 0000000000000..bed654ad89e21 --- /dev/null +++ b/blockchains/ethereum/assets/0xd5C5B2883735Fa9B658Dd52e2FCC8d7c0f1A42Ce/info.json @@ -0,0 +1,24 @@ +{ + "name": "AppLovin (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "APPon is the Ondo Tokenized version of AppLovin, giving tokenholders economic exposure similar to holding APP and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xd5C5B2883735Fa9B658Dd52e2FCC8d7c0f1A42Ce", + "type": "ERC20", + "symbol": "APPon", + "decimals": 18, + "status": "active", + "id": "0xd5C5B2883735Fa9B658Dd52e2FCC8d7c0f1A42Ce", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/applovin-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd5C5B2883735Fa9B658Dd52e2FCC8d7c0f1A42Ce/logo.png b/blockchains/ethereum/assets/0xd5C5B2883735Fa9B658Dd52e2FCC8d7c0f1A42Ce/logo.png new file mode 100644 index 0000000000000..4a67b3a06dcb5 Binary files /dev/null and b/blockchains/ethereum/assets/0xd5C5B2883735Fa9B658Dd52e2FCC8d7c0f1A42Ce/logo.png differ diff --git a/blockchains/ethereum/assets/0xd6203889C22D9fe5e938a9200f50FDFFE9dD8e02/info.json b/blockchains/ethereum/assets/0xd6203889C22D9fe5e938a9200f50FDFFE9dD8e02/info.json new file mode 100644 index 0000000000000..28a0f0b153ae0 --- /dev/null +++ b/blockchains/ethereum/assets/0xd6203889C22D9fe5e938a9200f50FDFFE9dD8e02/info.json @@ -0,0 +1,21 @@ +{ + "name": "STRATEGIC BITCOIN RESERVE", + "symbol": "SBR", + "decimals": 18, + "type": "ERC20", + "website": "https://strategicbitcoinreserve.cc/", + "description": "Strategic Bitcoin Reserve ($SBR) represents a new paradigm in cryptocurrency investment strategy. Built on the Ethereum network, SBR combines traditional reserve principles with modern blockchain technology.", + "explorer": "https://etherscan.io/token/0xd6203889c22d9fe5e938a9200f50fdffe9dd8e02", + "status": "active", + "id": "0xd6203889C22D9fe5e938a9200f50FDFFE9dD8e02", + "links": [ + { + "name": "x", + "url": "https://x.com/sbr_coin" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/strategic-bitcoin-reserve" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd6203889C22D9fe5e938a9200f50FDFFE9dD8e02/logo.png b/blockchains/ethereum/assets/0xd6203889C22D9fe5e938a9200f50FDFFE9dD8e02/logo.png new file mode 100644 index 0000000000000..f3a58bfa17681 Binary files /dev/null and b/blockchains/ethereum/assets/0xd6203889C22D9fe5e938a9200f50FDFFE9dD8e02/logo.png differ diff --git a/blockchains/ethereum/assets/0xd6B48CCF41a62EB3891e58D0F006B19B01d50cCa/info.json b/blockchains/ethereum/assets/0xd6B48CCF41a62EB3891e58D0F006B19B01d50cCa/info.json new file mode 100644 index 0000000000000..e888a5f7abd26 --- /dev/null +++ b/blockchains/ethereum/assets/0xd6B48CCF41a62EB3891e58D0F006B19B01d50cCa/info.json @@ -0,0 +1,17 @@ +{ + "name": "SERAPH", + "website": "https://weroam.xyz/", + "description": "Revolutionizing Global Connectivity by Leveraging DePIN, OpenRoaming and User Incentives.", + "explorer": "https://etherscan.io/token/0xd6B48CCF41a62EB3891e58D0F006B19B01d50cCa", + "type": "ERC20", + "symbol": "SERAPH", + "decimals": 18, + "status": "active", + "id": "0xd6B48CCF41a62EB3891e58D0F006B19B01d50cCa", + "links": [ + { + "name": "x", + "url": "https://x.com/Seraph_global" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd6B48CCF41a62EB3891e58D0F006B19B01d50cCa/logo.png b/blockchains/ethereum/assets/0xd6B48CCF41a62EB3891e58D0F006B19B01d50cCa/logo.png new file mode 100644 index 0000000000000..918d5d94a54d9 Binary files /dev/null and b/blockchains/ethereum/assets/0xd6B48CCF41a62EB3891e58D0F006B19B01d50cCa/logo.png differ diff --git a/blockchains/ethereum/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/info.json b/blockchains/ethereum/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/info.json index 77bf380acabde..a13238e30ed8a 100644 --- a/blockchains/ethereum/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/info.json +++ b/blockchains/ethereum/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/info.json @@ -6,12 +6,12 @@ "website": "https://squidgrow.wtf", "description": "SquidGrow was conceptualized by anonymous crypto billionaire “Shibtoshi” and is pushing boundaries and setting precedents for a growing meme-utility token.", "explorer": "https://etherscan.io/token/0xd8fa690304d2b2824d918c0c7376e2823704557a", - "status": "active", + "status": "abandoned", "id": "0xd8Fa690304D2B2824D918C0c7376e2823704557A", "links": [ { - "name": "twitter", - "url": "https://twitter.com/squid_grow" + "name": "x", + "url": "https://x.com/squid_grow" }, { "name": "telegram", @@ -33,4 +33,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd98F75b1A3261dab9eEd4956c93F33749027a964/info.json b/blockchains/ethereum/assets/0xd98F75b1A3261dab9eEd4956c93F33749027a964/info.json index 29a924a7bc679..33f6874698533 100644 --- a/blockchains/ethereum/assets/0xd98F75b1A3261dab9eEd4956c93F33749027a964/info.json +++ b/blockchains/ethereum/assets/0xd98F75b1A3261dab9eEd4956c93F33749027a964/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/ShareRing" }, { - "name": "twitter", - "url": "https://twitter.com/shareringglobal" + "name": "x", + "url": "https://x.com/shareringglobal" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xd9913208647671Fe0F48F7F260076B2C6F310Aac/info.json b/blockchains/ethereum/assets/0xd9913208647671Fe0F48F7F260076B2C6F310Aac/info.json new file mode 100644 index 0000000000000..6c5bd522fff55 --- /dev/null +++ b/blockchains/ethereum/assets/0xd9913208647671Fe0F48F7F260076B2C6F310Aac/info.json @@ -0,0 +1,24 @@ +{ + "name": "International Business Machines tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "International Business Machines xStock (IBMx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. IBMx tracks the price of International Business Machines Corporation (the underlying). IBMx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of International Business Machines Corporation, whilst maintaining the benefits of blockchain technology. International Business Machines Corporation is an American multinational technology corporation headquartered in Armonk, New York.", + "explorer": "https://etherscan.io/token/0xd9913208647671Fe0F48F7F260076B2C6F310Aac", + "type": "ERC20", + "symbol": "IBMX", + "decimals": 18, + "status": "active", + "id": "0xd9913208647671Fe0F48F7F260076B2C6F310Aac", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/international-business-machines-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd9913208647671Fe0F48F7F260076B2C6F310Aac/logo.png b/blockchains/ethereum/assets/0xd9913208647671Fe0F48F7F260076B2C6F310Aac/logo.png new file mode 100644 index 0000000000000..c4974d79ee7a7 Binary files /dev/null and b/blockchains/ethereum/assets/0xd9913208647671Fe0F48F7F260076B2C6F310Aac/logo.png differ diff --git a/blockchains/ethereum/assets/0xd9Fcd98c322942075A5C3860693e9f4f03AAE07b/info.json b/blockchains/ethereum/assets/0xd9Fcd98c322942075A5C3860693e9f4f03AAE07b/info.json index 3b52996cfb7cf..45ba6bf3dc1c7 100644 --- a/blockchains/ethereum/assets/0xd9Fcd98c322942075A5C3860693e9f4f03AAE07b/info.json +++ b/blockchains/ethereum/assets/0xd9Fcd98c322942075A5C3860693e9f4f03AAE07b/info.json @@ -10,8 +10,8 @@ "id": "0xd9Fcd98c322942075A5C3860693e9f4f03AAE07b", "links": [ { - "name": "twitter", - "url": "https://twitter.com/eulerfinance" + "name": "x", + "url": "https://x.com/eulerfinance" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xd9ebbC7970e26B4eCeD7323b9331763E8272D011/info.json b/blockchains/ethereum/assets/0xd9ebbC7970e26B4eCeD7323b9331763E8272D011/info.json new file mode 100644 index 0000000000000..ffc9dfca1aa41 --- /dev/null +++ b/blockchains/ethereum/assets/0xd9ebbC7970e26B4eCeD7323b9331763E8272D011/info.json @@ -0,0 +1,17 @@ +{ + "name": "TYBENG", + "type": "ERC20", + "symbol": "TYBENG", + "decimals": 18, + "website": "https://benjibananas.com", + "description": "Log in now to join Tournament and win cool gifts, or play mobile game and hold Benji Pass to earn $TYBENG", + "explorer": "https://etherscan.io/token/0xd9ebbc7970e26b4eced7323b9331763e8272d011", + "status": "active", + "id": "0xd9ebbC7970e26B4eCeD7323b9331763E8272D011", + "links": [ + { + "name": "x", + "url": "https://x.com/TybengToken" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd9ebbC7970e26B4eCeD7323b9331763E8272D011/logo.png b/blockchains/ethereum/assets/0xd9ebbC7970e26B4eCeD7323b9331763E8272D011/logo.png new file mode 100644 index 0000000000000..d1ecd77bf96ce Binary files /dev/null and b/blockchains/ethereum/assets/0xd9ebbC7970e26B4eCeD7323b9331763E8272D011/logo.png differ diff --git a/blockchains/ethereum/assets/0xdA1E53E088023Fe4D1DC5a418581748f52CBd1b8/info.json b/blockchains/ethereum/assets/0xdA1E53E088023Fe4D1DC5a418581748f52CBd1b8/info.json index 9edbb2c23ede8..91c3986c9ffbe 100644 --- a/blockchains/ethereum/assets/0xdA1E53E088023Fe4D1DC5a418581748f52CBd1b8/info.json +++ b/blockchains/ethereum/assets/0xdA1E53E088023Fe4D1DC5a418581748f52CBd1b8/info.json @@ -10,8 +10,8 @@ "id": "0xdA1E53E088023Fe4D1DC5a418581748f52CBd1b8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/AidiToken" + "name": "x", + "url": "https://x.com/AidiToken" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0xdA30f261a962d5AAe94C9ecd170544600d193766/info.json b/blockchains/ethereum/assets/0xdA30f261a962d5AAe94C9ecd170544600d193766/info.json new file mode 100644 index 0000000000000..fbc50fee13946 --- /dev/null +++ b/blockchains/ethereum/assets/0xdA30f261a962d5AAe94C9ecd170544600d193766/info.json @@ -0,0 +1,21 @@ +{ + "name": "Orbler", + "type": "ERC20", + "symbol": "ORBR", + "decimals": 18, + "website": "https://orbler.io/", + "description": "Orbler is a dynamic Web3 marketing platform bridging Web2 audiences, offering missions, staking, and community-driven growth strategies.", + "explorer": "https://etherscan.io/token/0xdA30f261a962d5AAe94C9ecd170544600d193766", + "status": "active", + "id": "0xdA30f261a962d5AAe94C9ecd170544600d193766", + "links": [ + { + "name": "x", + "url": "https://x.com/Orbler1" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/orbler/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdA30f261a962d5AAe94C9ecd170544600d193766/logo.png b/blockchains/ethereum/assets/0xdA30f261a962d5AAe94C9ecd170544600d193766/logo.png new file mode 100644 index 0000000000000..9e725803a84a8 Binary files /dev/null and b/blockchains/ethereum/assets/0xdA30f261a962d5AAe94C9ecd170544600d193766/logo.png differ diff --git a/blockchains/ethereum/assets/0xdA5e1988097297dCdc1f90D4dFE7909e847CBeF6/info.json b/blockchains/ethereum/assets/0xdA5e1988097297dCdc1f90D4dFE7909e847CBeF6/info.json new file mode 100644 index 0000000000000..7b5207d8505db --- /dev/null +++ b/blockchains/ethereum/assets/0xdA5e1988097297dCdc1f90D4dFE7909e847CBeF6/info.json @@ -0,0 +1,21 @@ +{ + "name": "World Liberty Financial", + "symbol": "WLFI", + "decimals": 18, + "type": "ERC20", + "website": "https://www.worldlibertyfinancial.com/", + "description": "The WLFi protocol aims to become the one-stop-shop for DeFi across the globe. It is being designed and built by leading pioneers in the crypto industry.", + "explorer": "https://etherscan.io/token/0xda5e1988097297dcdc1f90d4dfe7909e847cbef6", + "status": "active", + "id": "0xdA5e1988097297dCdc1f90D4dFE7909e847CBeF6", + "links": [ + { + "name": "x", + "url": "https://x.com/worldlibertyfi" + }, + { + "name": "telegram", + "url": "https://t.me/defiant1s" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdA5e1988097297dCdc1f90D4dFE7909e847CBeF6/logo.png b/blockchains/ethereum/assets/0xdA5e1988097297dCdc1f90D4dFE7909e847CBeF6/logo.png new file mode 100644 index 0000000000000..c2366d352f3d3 Binary files /dev/null and b/blockchains/ethereum/assets/0xdA5e1988097297dCdc1f90D4dFE7909e847CBeF6/logo.png differ diff --git a/blockchains/ethereum/assets/0xdA81DA76070a7377eAEEB2978F0E13C5d57FaDb7/info.json b/blockchains/ethereum/assets/0xdA81DA76070a7377eAEEB2978F0E13C5d57FaDb7/info.json new file mode 100644 index 0000000000000..81144aa3b1796 --- /dev/null +++ b/blockchains/ethereum/assets/0xdA81DA76070a7377eAEEB2978F0E13C5d57FaDb7/info.json @@ -0,0 +1,24 @@ +{ + "name": "Southern Copper (Ondo Tokenized)", + "type": "ERC20", + "symbol": "SCCOon", + "decimals": 18, + "description": "SCCOon is the Ondo Tokenized version of Southern Copper, giving tokenholders economic exposure similar to holding SCCO and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xdA81DA76070a7377eAEEB2978F0E13C5d57FaDb7", + "status": "active", + "id": "0xdA81DA76070a7377eAEEB2978F0E13C5d57FaDb7", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/southern-copper-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdA81DA76070a7377eAEEB2978F0E13C5d57FaDb7/logo.png b/blockchains/ethereum/assets/0xdA81DA76070a7377eAEEB2978F0E13C5d57FaDb7/logo.png new file mode 100644 index 0000000000000..1535705347ac4 Binary files /dev/null and b/blockchains/ethereum/assets/0xdA81DA76070a7377eAEEB2978F0E13C5d57FaDb7/logo.png differ diff --git a/blockchains/ethereum/assets/0xdAC17F958D2ee523a2206206994597C13D831ec7/info.json b/blockchains/ethereum/assets/0xdAC17F958D2ee523a2206206994597C13D831ec7/info.json index c2e74d3ef886b..6f43639b7d7d3 100644 --- a/blockchains/ethereum/assets/0xdAC17F958D2ee523a2206206994597C13D831ec7/info.json +++ b/blockchains/ethereum/assets/0xdAC17F958D2ee523a2206206994597C13D831ec7/info.json @@ -17,8 +17,8 @@ "url": "https://facebook.com/tether.to/" }, { - "name": "twitter", - "url": "https://twitter.com/Tether_to/" + "name": "x", + "url": "https://x.com/Tether_to/" }, { "name": "coinmarketcap", diff --git a/blockchains/ethereum/assets/0xdB57d9C14e357Fc01E49035a808779Df41E9B4e2/info.json b/blockchains/ethereum/assets/0xdB57d9C14e357Fc01E49035a808779Df41E9B4e2/info.json new file mode 100644 index 0000000000000..51979d93075ef --- /dev/null +++ b/blockchains/ethereum/assets/0xdB57d9C14e357Fc01E49035a808779Df41E9B4e2/info.json @@ -0,0 +1,24 @@ +{ + "name": "Goldman Sachs (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "GSon is the Ondo Tokenized version of Goldman Sachs, giving tokenholders economic exposure similar to holding GS and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xdB57d9C14e357Fc01E49035a808779Df41E9B4e2", + "type": "ERC20", + "symbol": "GSon", + "decimals": 18, + "status": "active", + "id": "0xdB57d9C14e357Fc01E49035a808779Df41E9B4e2", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/goldman-sachs-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdB57d9C14e357Fc01E49035a808779Df41E9B4e2/logo.png b/blockchains/ethereum/assets/0xdB57d9C14e357Fc01E49035a808779Df41E9B4e2/logo.png new file mode 100644 index 0000000000000..6f961b66ab8e7 Binary files /dev/null and b/blockchains/ethereum/assets/0xdB57d9C14e357Fc01E49035a808779Df41E9B4e2/logo.png differ diff --git a/blockchains/ethereum/assets/0xdBB7a34Bf10169d6d2D0d02A6cbb436cF4381BFa/info.json b/blockchains/ethereum/assets/0xdBB7a34Bf10169d6d2D0d02A6cbb436cF4381BFa/info.json new file mode 100644 index 0000000000000..157b6812e7d51 --- /dev/null +++ b/blockchains/ethereum/assets/0xdBB7a34Bf10169d6d2D0d02A6cbb436cF4381BFa/info.json @@ -0,0 +1,21 @@ +{ + "name": "Zentry", + "website": "https://zentry.com/", + "description": "Zentry, - the Gaming Superlayer that brings the MMORPG experience to real life, ushering the world’s three billion gamers into a unified Play Economy across digital and physical realms.", + "explorer": "https://etherscan.io/token/0xdbb7a34bf10169d6d2d0d02a6cbb436cf4381bfa", + "type": "ERC20", + "symbol": "ZENT", + "decimals": 18, + "status": "active", + "id": "0xdBB7a34Bf10169d6d2D0d02A6cbb436cF4381BFa", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zentry/" + }, + { + "name": "x", + "url": "https://x.com/ZentryHQ" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdBB7a34Bf10169d6d2D0d02A6cbb436cF4381BFa/logo.png b/blockchains/ethereum/assets/0xdBB7a34Bf10169d6d2D0d02A6cbb436cF4381BFa/logo.png new file mode 100644 index 0000000000000..69d770fb0f310 Binary files /dev/null and b/blockchains/ethereum/assets/0xdBB7a34Bf10169d6d2D0d02A6cbb436cF4381BFa/logo.png differ diff --git a/blockchains/ethereum/assets/0xdBDE08d475bd50E2D1A6af34c7b10DD430D8396e/info.json b/blockchains/ethereum/assets/0xdBDE08d475bd50E2D1A6af34c7b10DD430D8396e/info.json new file mode 100644 index 0000000000000..34c2a3508abea --- /dev/null +++ b/blockchains/ethereum/assets/0xdBDE08d475bd50E2D1A6af34c7b10DD430D8396e/info.json @@ -0,0 +1,30 @@ +{ + "name": "Forkast", + "type": "ERC20", + "symbol": "CGX", + "decimals": 18, + "description": "Forkast is a prediction market built for gaming and internet culture. Users can create and participate in prediction markets based on trending topics in gaming, memes, streamers, breaking news, and Web3 assets.", + "website": "https://www.communitygaming.io/", + "explorer": "https://etherscan.io/token/0xdbde08d475bd50e2d1a6af34c7b10dd430d8396e", + "id": "0xdBDE08d475bd50E2D1A6af34c7b10DD430D8396e", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/CommunityGaming" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/forkast/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/forkast" + } + + ], + "tags": [ + "gamefi" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdBDE08d475bd50E2D1A6af34c7b10DD430D8396e/logo.png b/blockchains/ethereum/assets/0xdBDE08d475bd50E2D1A6af34c7b10DD430D8396e/logo.png new file mode 100644 index 0000000000000..1ba3899bd18c4 Binary files /dev/null and b/blockchains/ethereum/assets/0xdBDE08d475bd50E2D1A6af34c7b10DD430D8396e/logo.png differ diff --git a/blockchains/ethereum/assets/0xdC035D45d973E3EC169d2276DDab16f1e407384F/info.json b/blockchains/ethereum/assets/0xdC035D45d973E3EC169d2276DDab16f1e407384F/info.json new file mode 100644 index 0000000000000..bafb50bdaed2a --- /dev/null +++ b/blockchains/ethereum/assets/0xdC035D45d973E3EC169d2276DDab16f1e407384F/info.json @@ -0,0 +1,25 @@ +{ + "name": "USDS", + "type": "ERC20", + "symbol": "USDS", + "decimals": 18, + "website": "https://sky.money", + "description": "USDS is an upgraded version of the DAI token. Upgrading is optional. It is an ERC-20 token with permit functionality and EIP-1271 signature validation. The USDS token also enables two-way conversions between DAI and USDS tokens, using the mint and burn functions of both tokens. The conversion rate of the stablecoin is 1 DAI to 1 USDS.", + "explorer": "https://etherscan.io/token/0xdC035D45d973E3EC169d2276DDab16f1e407384F", + "status": "active", + "id": "0xdC035D45d973E3EC169d2276DDab16f1e407384F", + "links": [ + { + "name": "x", + "url": "https://x.com/SkyEcosystem" + }, + { + "name": "github", + "url": "https://github.com/makerdao/" + } + ], + "tags": [ + "stablecoin", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdC035D45d973E3EC169d2276DDab16f1e407384F/logo.png b/blockchains/ethereum/assets/0xdC035D45d973E3EC169d2276DDab16f1e407384F/logo.png new file mode 100644 index 0000000000000..69d96d6685e66 Binary files /dev/null and b/blockchains/ethereum/assets/0xdC035D45d973E3EC169d2276DDab16f1e407384F/logo.png differ diff --git a/blockchains/ethereum/assets/0xdCC1a2699441079dA889B1F49e12B69cC791129b/info.json b/blockchains/ethereum/assets/0xdCC1a2699441079dA889B1F49e12B69cC791129b/info.json new file mode 100644 index 0000000000000..8a5b762e52828 --- /dev/null +++ b/blockchains/ethereum/assets/0xdCC1a2699441079dA889B1F49e12B69cC791129b/info.json @@ -0,0 +1,24 @@ +{ + "name": "Coca-Cola tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Coca-Cola xStock (KOx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. KOx tracks the price of The Coca-Cola Company (the underlying). KOx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of The Coca-Cola Company, whilst maintaining the benefits of blockchain technology. The Coca-Cola Company is a multinational corporation that primarily manufactures, sells, and markets non-alcoholic beverages. It is known for its iconic Coca-Cola brand, but its portfolio extends to numerous other beverages like Sprite and Fanta.", + "explorer": "https://etherscan.io/token/0xdCC1a2699441079dA889B1F49e12B69cC791129b", + "type": "ERC20", + "symbol": "KOX", + "decimals": 18, + "status": "active", + "id": "0xdCC1a2699441079dA889B1F49e12B69cC791129b", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coca-cola-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdCC1a2699441079dA889B1F49e12B69cC791129b/logo.png b/blockchains/ethereum/assets/0xdCC1a2699441079dA889B1F49e12B69cC791129b/logo.png new file mode 100644 index 0000000000000..448e726662b94 Binary files /dev/null and b/blockchains/ethereum/assets/0xdCC1a2699441079dA889B1F49e12B69cC791129b/logo.png differ diff --git a/blockchains/ethereum/assets/0xdEb3C23f93349229823A006657CfE1a6552B6340/info.json b/blockchains/ethereum/assets/0xdEb3C23f93349229823A006657CfE1a6552B6340/info.json new file mode 100644 index 0000000000000..3458e61709dae --- /dev/null +++ b/blockchains/ethereum/assets/0xdEb3C23f93349229823A006657CfE1a6552B6340/info.json @@ -0,0 +1,28 @@ +{ + "name": "T-Mobile US (Ondo Tokenized)", + "type": "ERC20", + "symbol": "TMUSon", + "decimals": 18, + "description": "TMUSon is the Ondo Tokenized version of T-Mobile US, giving tokenholders economic exposure similar to holding TMUS and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xdEb3C23f93349229823A006657CfE1a6552B6340", + "status": "active", + "id": "0xdEb3C23f93349229823A006657CfE1a6552B6340", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/t-mobile-us-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/t-mobile-us-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdEb3C23f93349229823A006657CfE1a6552B6340/logo.png b/blockchains/ethereum/assets/0xdEb3C23f93349229823A006657CfE1a6552B6340/logo.png new file mode 100644 index 0000000000000..b9a1bc9b46a87 Binary files /dev/null and b/blockchains/ethereum/assets/0xdEb3C23f93349229823A006657CfE1a6552B6340/logo.png differ diff --git a/blockchains/ethereum/assets/0xdF574c24545E5FfEcb9a659c229253D4111d87e1/info.json b/blockchains/ethereum/assets/0xdF574c24545E5FfEcb9a659c229253D4111d87e1/info.json index 8007d9a626a39..60552696352d2 100644 --- a/blockchains/ethereum/assets/0xdF574c24545E5FfEcb9a659c229253D4111d87e1/info.json +++ b/blockchains/ethereum/assets/0xdF574c24545E5FfEcb9a659c229253D4111d87e1/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/stcoins/HUSD" }, { - "name": "twitter", - "url": "https://twitter.com/Stablecoin_HUSD" + "name": "x", + "url": "https://x.com/Stablecoin_HUSD" }, { "name": "blog", diff --git a/blockchains/ethereum/assets/0xdab396cCF3d84Cf2D07C4454e10C8A6F5b008D2b/info.json b/blockchains/ethereum/assets/0xdab396cCF3d84Cf2D07C4454e10C8A6F5b008D2b/info.json index 1695400eecce7..47e03e5d70582 100644 --- a/blockchains/ethereum/assets/0xdab396cCF3d84Cf2D07C4454e10C8A6F5b008D2b/info.json +++ b/blockchains/ethereum/assets/0xdab396cCF3d84Cf2D07C4454e10C8A6F5b008D2b/info.json @@ -10,8 +10,8 @@ "id": "0xdab396cCF3d84Cf2D07C4454e10C8A6F5b008D2b", "links": [ { - "name": "twitter", - "url": "https://twitter.com/goldfinch_fi" + "name": "x", + "url": "https://x.com/goldfinch_fi" }, { "name": "github", @@ -25,4 +25,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdadfb355c6110eda0908740d52c834d6C2BCDDc7/info.json b/blockchains/ethereum/assets/0xdadfb355c6110eda0908740d52c834d6C2BCDDc7/info.json new file mode 100644 index 0000000000000..756ce5228415d --- /dev/null +++ b/blockchains/ethereum/assets/0xdadfb355c6110eda0908740d52c834d6C2BCDDc7/info.json @@ -0,0 +1,15 @@ +{ + "name": "Russell 2000 xStock", + "type": "ERC20", + "symbol": "IWMx", + "decimals": 18, + "description": "Russell 2000 xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://etherscan.io/token/0xdadfb355c6110eda0908740d52c834d6C2BCDDc7", + "status": "active", + "id": "0xdadfb355c6110eda0908740d52c834d6C2BCDDc7", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdadfb355c6110eda0908740d52c834d6C2BCDDc7/logo.png b/blockchains/ethereum/assets/0xdadfb355c6110eda0908740d52c834d6C2BCDDc7/logo.png new file mode 100644 index 0000000000000..857fe69020c3c Binary files /dev/null and b/blockchains/ethereum/assets/0xdadfb355c6110eda0908740d52c834d6C2BCDDc7/logo.png differ diff --git a/blockchains/ethereum/assets/0xdb0482cfaD4789798623E64b15eebA01b16e917C/info.json b/blockchains/ethereum/assets/0xdb0482cfaD4789798623E64b15eebA01b16e917C/info.json new file mode 100644 index 0000000000000..183abc96a3c8a --- /dev/null +++ b/blockchains/ethereum/assets/0xdb0482cfaD4789798623E64b15eebA01b16e917C/info.json @@ -0,0 +1,24 @@ +{ + "name": "Johnson & Johnson tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Johnson & Johnson xStock (JNJx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. JNJx tracks the price of Johnson & Johnson (the underlying). JNJx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Johnson & Johnson, whilst maintaining the benefits of blockchain technology. Johnson & Johnson (J&J) is a global healthcare company focused on research, development, manufacturing, and sale of pharmaceuticals, medical devices, and consumer products.", + "explorer": "https://etherscan.io/token/0xdb0482cfaD4789798623E64b15eebA01b16e917C", + "type": "ERC20", + "symbol": "JNJX", + "decimals": 18, + "status": "active", + "id": "0xdb0482cfaD4789798623E64b15eebA01b16e917C", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/johnson-johnson-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdb0482cfaD4789798623E64b15eebA01b16e917C/logo.png b/blockchains/ethereum/assets/0xdb0482cfaD4789798623E64b15eebA01b16e917C/logo.png new file mode 100644 index 0000000000000..179b22a7c4aaf Binary files /dev/null and b/blockchains/ethereum/assets/0xdb0482cfaD4789798623E64b15eebA01b16e917C/logo.png differ diff --git a/blockchains/ethereum/assets/0xdb4D1099D53e92593430e33483Db41c63525f55F/info.json b/blockchains/ethereum/assets/0xdb4D1099D53e92593430e33483Db41c63525f55F/info.json index 1118380481667..07429abb2daa9 100644 --- a/blockchains/ethereum/assets/0xdb4D1099D53e92593430e33483Db41c63525f55F/info.json +++ b/blockchains/ethereum/assets/0xdb4D1099D53e92593430e33483Db41c63525f55F/info.json @@ -10,8 +10,8 @@ "id": "0xdb4D1099D53e92593430e33483Db41c63525f55F", "links": [ { - "name": "twitter", - "url": "https://twitter.com/joystickpros" + "name": "x", + "url": "https://x.com/joystickpros" }, { "name": "telegram", @@ -34,4 +34,4 @@ "defi", "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdb85f6685950E285b1E611037BEBe5B34e2B7d78/info.json b/blockchains/ethereum/assets/0xdb85f6685950E285b1E611037BEBe5B34e2B7d78/info.json new file mode 100644 index 0000000000000..ed8d4c1a71b69 --- /dev/null +++ b/blockchains/ethereum/assets/0xdb85f6685950E285b1E611037BEBe5B34e2B7d78/info.json @@ -0,0 +1,25 @@ +{ + "name": "Wrapped Zano", + "symbol": "WZANO", + "type": "ERC20", + "decimals": 18, + "description": "Wrapped version of Zano native coin. Zano is the development of a scalable and secure coin, designed for use in e-commerce. The technology behind our blockchain provides reliability, security, and flexibility — a perfect option for P2P transactions.", + "website": "https://zano.org/", + "explorer": "https://etherscan.io/token/0xdb85f6685950e285b1e611037bebe5b34e2b7d78", + "status": "active", + "id": "0xdb85f6685950E285b1E611037BEBe5B34e2B7d78", + "links": [ + { + "name": "telegram", + "url": "https://t.me/zanocoin" + }, + { + "name": "x", + "url": "https://x.com/zano_project" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zano/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdb85f6685950E285b1E611037BEBe5B34e2B7d78/logo.png b/blockchains/ethereum/assets/0xdb85f6685950E285b1E611037BEBe5B34e2B7d78/logo.png new file mode 100644 index 0000000000000..d022e8f2b8ec6 Binary files /dev/null and b/blockchains/ethereum/assets/0xdb85f6685950E285b1E611037BEBe5B34e2B7d78/logo.png differ diff --git a/blockchains/ethereum/assets/0xdbA228936F4079DaF9Aa906fd48a87f2300405F4/info.json b/blockchains/ethereum/assets/0xdbA228936F4079DaF9Aa906fd48a87f2300405F4/info.json new file mode 100644 index 0000000000000..269076b1baa07 --- /dev/null +++ b/blockchains/ethereum/assets/0xdbA228936F4079DaF9Aa906fd48a87f2300405F4/info.json @@ -0,0 +1,24 @@ +{ + "name": "Danaher tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Danaher xStock (DHRx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. DHRx tracks the price of Danaher Corporation (the underlying). DHRx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Danaher Corporation, whilst maintaining the benefits of blockchain technology. Danaher Corporation is a global science and technology innovator operating in biotechnology, life sciences, and diagnostics. It focuses on accelerating the power of science and technology to improve human health.", + "explorer": "https://etherscan.io/token/0xdbA228936F4079DaF9Aa906fd48a87f2300405F4", + "type": "ERC20", + "symbol": "DHRX", + "decimals": 18, + "status": "active", + "id": "0xdbA228936F4079DaF9Aa906fd48a87f2300405F4", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/danaher-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdbA228936F4079DaF9Aa906fd48a87f2300405F4/logo.png b/blockchains/ethereum/assets/0xdbA228936F4079DaF9Aa906fd48a87f2300405F4/logo.png new file mode 100644 index 0000000000000..3b7a5c57e6b9e Binary files /dev/null and b/blockchains/ethereum/assets/0xdbA228936F4079DaF9Aa906fd48a87f2300405F4/logo.png differ diff --git a/blockchains/ethereum/assets/0xdc8a7Db05EA704227D56F5D4a4b77A2d1bbA29c0/info.json b/blockchains/ethereum/assets/0xdc8a7Db05EA704227D56F5D4a4b77A2d1bbA29c0/info.json new file mode 100644 index 0000000000000..57e8f8e96db0e --- /dev/null +++ b/blockchains/ethereum/assets/0xdc8a7Db05EA704227D56F5D4a4b77A2d1bbA29c0/info.json @@ -0,0 +1,28 @@ +{ + "name": "Merck (Ondo Tokenized)", + "type": "ERC20", + "symbol": "MRKon", + "decimals": 18, + "description": "MRKon is the Ondo Tokenized version of Merck, giving tokenholders economic exposure similar to holding MRK and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xdc8a7Db05EA704227D56F5D4a4b77A2d1bbA29c0", + "status": "active", + "id": "0xdc8a7Db05EA704227D56F5D4a4b77A2d1bbA29c0", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/merck-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/merck-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdc8a7Db05EA704227D56F5D4a4b77A2d1bbA29c0/logo.png b/blockchains/ethereum/assets/0xdc8a7Db05EA704227D56F5D4a4b77A2d1bbA29c0/logo.png new file mode 100644 index 0000000000000..4aa234d329f05 Binary files /dev/null and b/blockchains/ethereum/assets/0xdc8a7Db05EA704227D56F5D4a4b77A2d1bbA29c0/logo.png differ diff --git a/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/info.json b/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/info.json index cbe60a42db60e..e3c714a07bc7c 100644 --- a/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/info.json +++ b/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/info.json @@ -1,5 +1,5 @@ { - "name": "Utrust", + "name": "xMoney", "website": "https://utrust.com", "description": "The Utrust platform allows merchants to accept digital currencies as a means of payment.", "explorer": "https://etherscan.io/token/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c", diff --git a/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/logo.png b/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/logo.png old mode 100755 new mode 100644 index 532f258606ffb..c42fa10089b0e Binary files a/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/logo.png and b/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/logo.png differ diff --git a/blockchains/ethereum/assets/0xdd0E1e6162666a210905fFE8d368661B313c00e9/info.json b/blockchains/ethereum/assets/0xdd0E1e6162666a210905fFE8d368661B313c00e9/info.json new file mode 100644 index 0000000000000..b9fc36a34a3a8 --- /dev/null +++ b/blockchains/ethereum/assets/0xdd0E1e6162666a210905fFE8d368661B313c00e9/info.json @@ -0,0 +1,28 @@ +{ + "name": "Johnson & Johnson (Ondo Tokenized)", + "type": "ERC20", + "symbol": "JNJon", + "decimals": 18, + "description": "JNJon is the Ondo Tokenized version of Johnson & Johnson, giving tokenholders economic exposure similar to holding JNJ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xdd0E1e6162666a210905fFE8d368661B313c00e9", + "status": "active", + "id": "0xdd0E1e6162666a210905fFE8d368661B313c00e9", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/johnson-johnson-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/johnson-johnson-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdd0E1e6162666a210905fFE8d368661B313c00e9/logo.png b/blockchains/ethereum/assets/0xdd0E1e6162666a210905fFE8d368661B313c00e9/logo.png new file mode 100644 index 0000000000000..d57bb66b61232 Binary files /dev/null and b/blockchains/ethereum/assets/0xdd0E1e6162666a210905fFE8d368661B313c00e9/logo.png differ diff --git a/blockchains/ethereum/assets/0xdd22e6099AED95717f4a39456949668677FB10eD/info.json b/blockchains/ethereum/assets/0xdd22e6099AED95717f4a39456949668677FB10eD/info.json new file mode 100644 index 0000000000000..76540a33c63eb --- /dev/null +++ b/blockchains/ethereum/assets/0xdd22e6099AED95717f4a39456949668677FB10eD/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether USD (Bridge TC10)", + "type": "ERC20", + "symbol": "FAKE USDT.C", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://etherscan.io/token/0xdd22e6099AED95717f4a39456949668677FB10eD", + "explorer": "https://etherscan.io/token/0xdd22e6099AED95717f4a39456949668677FB10eD", + "status": "spam", + "id": "0xdd22e6099AED95717f4a39456949668677FB10eD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdd690D8824c00C84d64606FFb12640e932C1AF56/info.json b/blockchains/ethereum/assets/0xdd690D8824c00C84d64606FFb12640e932C1AF56/info.json index 6830671a17497..56ee3e96dbecd 100644 --- a/blockchains/ethereum/assets/0xdd690D8824c00C84d64606FFb12640e932C1AF56/info.json +++ b/blockchains/ethereum/assets/0xdd690D8824c00C84d64606FFb12640e932C1AF56/info.json @@ -1,7 +1,7 @@ { "name": "Tavittcoin", "website": "https://tavitt.co.jp", - "twitter": "https://twitter.com/tavitt_coltd", + "x": "https://x.com/tavitt_coltd", "telegram": "https://t.me/tavitt_official", "facebook": "https://www.facebook.com/TavittThailand", "description": "Tavitt builds a platform that allows travelers as Travel Providers to earn income while traveling.", diff --git a/blockchains/ethereum/assets/0xdd974D5C2e2928deA5F71b9825b8b646686BD200/info.json b/blockchains/ethereum/assets/0xdd974D5C2e2928deA5F71b9825b8b646686BD200/info.json index 7044c7bccf661..f61c75b1b6f8f 100644 --- a/blockchains/ethereum/assets/0xdd974D5C2e2928deA5F71b9825b8b646686BD200/info.json +++ b/blockchains/ethereum/assets/0xdd974D5C2e2928deA5F71b9825b8b646686BD200/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/KyberNetwork" }, { - "name": "twitter", - "url": "https://twitter.com/KyberNetwork" + "name": "x", + "url": "https://x.com/KyberNetwork" }, { "name": "blog", diff --git a/blockchains/ethereum/assets/0xde4EE8057785A7e8e800Db58F9784845A5C2Cbd6/info.json b/blockchains/ethereum/assets/0xde4EE8057785A7e8e800Db58F9784845A5C2Cbd6/info.json index 7401512a5ff4c..1d7427cb2f8bc 100644 --- a/blockchains/ethereum/assets/0xde4EE8057785A7e8e800Db58F9784845A5C2Cbd6/info.json +++ b/blockchains/ethereum/assets/0xde4EE8057785A7e8e800Db58F9784845A5C2Cbd6/info.json @@ -1,17 +1,37 @@ { - "name": "DEXE", + "name": "DeXe", "type": "ERC20", "symbol": "DEXE", "decimals": 18, "website": "https://dexe.network/", - "description": "Dexe.network or Dexe (Decentralized Social Trading Platform) – an online, decentralized and autonomous cryptocurrency assets portfolio environment which operates via autonomous smart contracts, that includes tools for virtual currency allocation, automatic rebalancing and eliminates the risks of transferring digital wallet details such as private keys and API or any virtual currency data to a third party.", + "description": "DeXe Protocol is a decentralized suite of permissionless tools for managing assets, products, and communities governed by $DEXE holders within DeXe Protocol DAO. It offers a no-code environment on blockchain for launching DAOs, tokens, and fundraises; AI-powered automation for decision-making; on/off-chain in a seamless space; account abstraction acting as a DAO, multi-sig or single party with numerous features for managing assets and payouts, and(or) communities.", "explorer": "https://etherscan.io/token/0xde4EE8057785A7e8e800Db58F9784845A5C2Cbd6", "id": "0xde4EE8057785A7e8e800Db58F9784845A5C2Cbd6", "status": "active", "links": [ { "name": "github", - "url": "https://github.com/dexe-network/dexe" + "url": "https://github.com/dexe-network/DeXe-Protocol" + }, + { + "name": "x", + "url": "https://x.com/DexeNetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dexe/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dexe" + }, + { + "name": "telegram", + "url": "https://t.me/dexe_network_official_chat" } + ], + "tags": [ + "governance", + "defi" ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xde4EE8057785A7e8e800Db58F9784845A5C2Cbd6/logo.png b/blockchains/ethereum/assets/0xde4EE8057785A7e8e800Db58F9784845A5C2Cbd6/logo.png index 0ca575a8134dc..9b717a971bca4 100644 Binary files a/blockchains/ethereum/assets/0xde4EE8057785A7e8e800Db58F9784845A5C2Cbd6/logo.png and b/blockchains/ethereum/assets/0xde4EE8057785A7e8e800Db58F9784845A5C2Cbd6/logo.png differ diff --git a/blockchains/ethereum/assets/0xde67d97b8770dC98C746A3FC0093c538666eB493/info.json b/blockchains/ethereum/assets/0xde67d97b8770dC98C746A3FC0093c538666eB493/info.json new file mode 100644 index 0000000000000..c1b473e51aee7 --- /dev/null +++ b/blockchains/ethereum/assets/0xde67d97b8770dC98C746A3FC0093c538666eB493/info.json @@ -0,0 +1,25 @@ +{ + "name": "Bitrock", + "type": "ERC20", + "symbol": "BITROCK", + "decimals": 9, + "website": "https://bit-rock.io", + "description": "Bitrock is an Ethereum sidechain IBFT 2.0 Proof of Authority (PoA) blockchain with near-zero native gas fees.", + "explorer": "https://etherscan.io/token/0xde67d97b8770dc98c746a3fc0093c538666eb493", + "status": "active", + "id": "0xde67d97b8770dC98C746A3FC0093c538666eB493", + "links": [ + { + "name": "x", + "url": "https://x.com/BitRockChain" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bitrock/" + }, + { + "name": "telegram", + "url": "https://t.me/Bitrockchain" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xde67d97b8770dC98C746A3FC0093c538666eB493/logo.png b/blockchains/ethereum/assets/0xde67d97b8770dC98C746A3FC0093c538666eB493/logo.png new file mode 100644 index 0000000000000..c0d1e5fc04f8e Binary files /dev/null and b/blockchains/ethereum/assets/0xde67d97b8770dC98C746A3FC0093c538666eB493/logo.png differ diff --git a/blockchains/ethereum/assets/0xde6AcEAF7F2dCEB3d425643C5F85351f2B38FcdE/info.json b/blockchains/ethereum/assets/0xde6AcEAF7F2dCEB3d425643C5F85351f2B38FcdE/info.json new file mode 100644 index 0000000000000..314cd28f40389 --- /dev/null +++ b/blockchains/ethereum/assets/0xde6AcEAF7F2dCEB3d425643C5F85351f2B38FcdE/info.json @@ -0,0 +1,29 @@ +{ + "name": "Metaverse HQ", + "type": "ERC20", + "symbol": "HQ", + "decimals": 18, + "description": "Metaverse HQ (MVHQ) is an AI enhanced Questing protocol for Gaming, De-Fi, Protocols, Creators, NFT/Memecoin communities, and Decentralized Ecosystems. MVHQ has distributed millions of dollars in value to users as it becomes the universal nexus for on and off-chain rewards.", + "website": "https://app.mvhq.io/", + "explorer": "https://etherscan.io/token/0xde6AcEAF7F2dCEB3d425643C5F85351f2B38FcdE", + "id": "0xde6AcEAF7F2dCEB3d425643C5F85351f2B38FcdE", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/metaverse_hq?s=11&t=ZGzrL8B9N7GpbA3YLFvU9A" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/metaverse-hq/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hq" + } + ], + "tags": [ + "gamefi" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xde6AcEAF7F2dCEB3d425643C5F85351f2B38FcdE/logo.png b/blockchains/ethereum/assets/0xde6AcEAF7F2dCEB3d425643C5F85351f2B38FcdE/logo.png new file mode 100644 index 0000000000000..e4717c4478eb5 Binary files /dev/null and b/blockchains/ethereum/assets/0xde6AcEAF7F2dCEB3d425643C5F85351f2B38FcdE/logo.png differ diff --git a/blockchains/ethereum/assets/0xdeB6B89088cA9B7d7756087c8a0F7C6DF46f319C/info.json b/blockchains/ethereum/assets/0xdeB6B89088cA9B7d7756087c8a0F7C6DF46f319C/info.json new file mode 100644 index 0000000000000..8c53804f17603 --- /dev/null +++ b/blockchains/ethereum/assets/0xdeB6B89088cA9B7d7756087c8a0F7C6DF46f319C/info.json @@ -0,0 +1,24 @@ +{ + "name": "JD.com (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "JDon is the Ondo Tokenized version of JD.com, giving tokenholders economic exposure similar to holding JD and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xdeB6B89088cA9B7d7756087c8a0F7C6DF46f319C", + "type": "ERC20", + "symbol": "JDon", + "decimals": 18, + "status": "active", + "id": "0xdeB6B89088cA9B7d7756087c8a0F7C6DF46f319C", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jdcom-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdeB6B89088cA9B7d7756087c8a0F7C6DF46f319C/logo.png b/blockchains/ethereum/assets/0xdeB6B89088cA9B7d7756087c8a0F7C6DF46f319C/logo.png new file mode 100644 index 0000000000000..85171c990a02f Binary files /dev/null and b/blockchains/ethereum/assets/0xdeB6B89088cA9B7d7756087c8a0F7C6DF46f319C/logo.png differ diff --git a/blockchains/ethereum/assets/0xdebe620609674F21B1089042527F420372eA98A5/info.json b/blockchains/ethereum/assets/0xdebe620609674F21B1089042527F420372eA98A5/info.json index 3d42741d5c7ce..eb6084d58bc4a 100644 --- a/blockchains/ethereum/assets/0xdebe620609674F21B1089042527F420372eA98A5/info.json +++ b/blockchains/ethereum/assets/0xdebe620609674F21B1089042527F420372eA98A5/info.json @@ -10,8 +10,8 @@ "id": "0xdebe620609674F21B1089042527F420372eA98A5", "links": [ { - "name": "twitter", - "url": "https://twitter.com/altavagroup" + "name": "x", + "url": "https://x.com/altavagroup" }, { "name": "medium", diff --git a/blockchains/ethereum/assets/0xdf09a216Fac5ADC3e640Db418C0b956076509503/info.json b/blockchains/ethereum/assets/0xdf09a216Fac5ADC3e640Db418C0b956076509503/info.json index 1291b64afc28b..04b1894384ad4 100644 --- a/blockchains/ethereum/assets/0xdf09a216Fac5ADC3e640Db418C0b956076509503/info.json +++ b/blockchains/ethereum/assets/0xdf09a216Fac5ADC3e640Db418C0b956076509503/info.json @@ -10,8 +10,8 @@ "id": "0xdf09a216Fac5ADC3e640Db418C0b956076509503", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PokmiHQ" + "name": "x", + "url": "https://x.com/PokmiHQ" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A/info.json b/blockchains/ethereum/assets/0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A/info.json new file mode 100644 index 0000000000000..5416bc92065c6 --- /dev/null +++ b/blockchains/ethereum/assets/0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A/info.json @@ -0,0 +1,17 @@ +{ + "name": "Gyro Dollar", + "website": "https://gyro.finance/", + "description": "Revolution in resilience: put stablecoin risk control on autopilot.", + "explorer": "https://etherscan.io/token/0xe07f9d810a48ab5c3c914ba3ca53af14e4491e8a", + "type": "ERC20", + "symbol": "GYD", + "decimals": 18, + "status": "active", + "id": "0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A", + "links": [ + { + "name": "x", + "url": "https://x.com/gyrostable" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A/logo.png b/blockchains/ethereum/assets/0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A/logo.png new file mode 100644 index 0000000000000..47291c61f97e4 Binary files /dev/null and b/blockchains/ethereum/assets/0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A/logo.png differ diff --git a/blockchains/ethereum/assets/0xe1030B48b2033314979143766d7dC1F40ef8CE11/info.json b/blockchains/ethereum/assets/0xe1030B48b2033314979143766d7dC1F40ef8CE11/info.json index b93f9ca62b925..c6557677e8fda 100644 --- a/blockchains/ethereum/assets/0xe1030B48b2033314979143766d7dC1F40ef8CE11/info.json +++ b/blockchains/ethereum/assets/0xe1030B48b2033314979143766d7dC1F40ef8CE11/info.json @@ -14,8 +14,8 @@ "url": "https://facebook.com/groups/thepeoplescoin/" }, { - "name": "twitter", - "url": "https://twitter.com/ThePeoples_Coin" + "name": "x", + "url": "https://x.com/ThePeoples_Coin" }, { "name": "reddit", @@ -26,4 +26,4 @@ "url": "https://t.me/ThePeoplesCoinOfficial" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe28b3B32B6c345A34Ff64674606124Dd5Aceca30/logo.png b/blockchains/ethereum/assets/0xe28b3B32B6c345A34Ff64674606124Dd5Aceca30/logo.png index f3a521dc1391a..e9a2fe6b9a9cb 100644 Binary files a/blockchains/ethereum/assets/0xe28b3B32B6c345A34Ff64674606124Dd5Aceca30/logo.png and b/blockchains/ethereum/assets/0xe28b3B32B6c345A34Ff64674606124Dd5Aceca30/logo.png differ diff --git a/blockchains/ethereum/assets/0xe2f2a5C287993345a840Db3B0845fbC70f5935a5/info.json b/blockchains/ethereum/assets/0xe2f2a5C287993345a840Db3B0845fbC70f5935a5/info.json index 8461198423665..409515d525f84 100644 --- a/blockchains/ethereum/assets/0xe2f2a5C287993345a840Db3B0845fbC70f5935a5/info.json +++ b/blockchains/ethereum/assets/0xe2f2a5C287993345a840Db3B0845fbC70f5935a5/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/mstable_" + "name": "x", + "url": "https://x.com/mstable_" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe343167631d89B6Ffc58B88d6b7fB0228795491D/info.json b/blockchains/ethereum/assets/0xe343167631d89B6Ffc58B88d6b7fB0228795491D/info.json new file mode 100644 index 0000000000000..8a0a750dc6ed2 --- /dev/null +++ b/blockchains/ethereum/assets/0xe343167631d89B6Ffc58B88d6b7fB0228795491D/info.json @@ -0,0 +1,18 @@ +{ + "name": "Global Dollar", + "type": "ERC20", + "symbol": "USDG", + "decimals": 6, + "description": "Global Dollar (USDG) is a single-currency stablecoin pegged to the US dollar, issued by Paxos Digital Singapore Pte. Ltd. and is compliant with the Monetary Authority of Singapore's (MAS) forthcoming stablecoin framework. USDG is redeemable from Paxos on a one-to-one basis for US dollars.", + "website": "https://globaldollar.com/", + "explorer": "https://etherscan.io/token/0xe343167631d89B6Ffc58B88d6b7fB0228795491D", + "id": "0xe343167631d89B6Ffc58B88d6b7fB0228795491D", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + } + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe343167631d89B6Ffc58B88d6b7fB0228795491D/logo.png b/blockchains/ethereum/assets/0xe343167631d89B6Ffc58B88d6b7fB0228795491D/logo.png new file mode 100644 index 0000000000000..0650c14a4c93e Binary files /dev/null and b/blockchains/ethereum/assets/0xe343167631d89B6Ffc58B88d6b7fB0228795491D/logo.png differ diff --git a/blockchains/ethereum/assets/0xe3c408BD53c31C085a1746AF401A4042954ff740/info.json b/blockchains/ethereum/assets/0xe3c408BD53c31C085a1746AF401A4042954ff740/info.json new file mode 100644 index 0000000000000..6b87a19996bdc --- /dev/null +++ b/blockchains/ethereum/assets/0xe3c408BD53c31C085a1746AF401A4042954ff740/info.json @@ -0,0 +1,25 @@ +{ + "name": "GMT", + "type": "ERC20", + "symbol": "GMT", + "decimals": 8, + "description": "GMT is the native token of the FSL ecosystem, with a fixed supply of 6 billion tokens. GMT is well used in all FSL ecosystem products to be burned, used to unlock various functions and perks.", + "website": "https://www.stepn.com/", + "explorer": "https://etherscan.io/token/0xe3c408bd53c31c085a1746af401a4042954ff740", + "id": "0xe3c408BD53c31C085a1746AF401A4042954ff740", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/fslweb3" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/green-metaverse-token/" + } + ], + "tags": [ + "nft" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe3c408BD53c31C085a1746AF401A4042954ff740/logo.png b/blockchains/ethereum/assets/0xe3c408BD53c31C085a1746AF401A4042954ff740/logo.png new file mode 100644 index 0000000000000..9037e29dd8f36 Binary files /dev/null and b/blockchains/ethereum/assets/0xe3c408BD53c31C085a1746AF401A4042954ff740/logo.png differ diff --git a/blockchains/ethereum/assets/0xe5018913F2fdf33971864804dDB5fcA25C539032/info.json b/blockchains/ethereum/assets/0xe5018913F2fdf33971864804dDB5fcA25C539032/info.json new file mode 100644 index 0000000000000..6fb5b77d167c0 --- /dev/null +++ b/blockchains/ethereum/assets/0xe5018913F2fdf33971864804dDB5fcA25C539032/info.json @@ -0,0 +1,21 @@ +{ + "name": "OpenLM RevShare", + "website": "https://www.ora.io/", + "description": "Ethereum's Trustless AI.", + "explorer": "https://etherscan.io/token/0xe5018913f2fdf33971864804ddb5fca25c539032", + "type": "ERC20", + "symbol": "OLM", + "decimals": 18, + "status": "active", + "id": "0xe5018913F2fdf33971864804dDB5fcA25C539032", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/openlm-revshare-token" + }, + { + "name": "x", + "url": "https://x.com/OraProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe5018913F2fdf33971864804dDB5fcA25C539032/logo.png b/blockchains/ethereum/assets/0xe5018913F2fdf33971864804dDB5fcA25C539032/logo.png new file mode 100644 index 0000000000000..6a274d6d8f15d Binary files /dev/null and b/blockchains/ethereum/assets/0xe5018913F2fdf33971864804dDB5fcA25C539032/logo.png differ diff --git a/blockchains/ethereum/assets/0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55/info.json b/blockchains/ethereum/assets/0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55/info.json index e001c9d99e92a..4a59066115641 100644 --- a/blockchains/ethereum/assets/0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55/info.json +++ b/blockchains/ethereum/assets/0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55/info.json @@ -1,29 +1,34 @@ { - "name": "SuperFarm", - "symbol": "SUPER", - "type": "ERC20", - "decimals": 18, - "description": "SuperFarm is a cross-chain DeFi protocol that allows users to deploy crypto and NFT farms with no code required!", - "website": "https://www.superfarm.io/", - "explorer": "https://etherscan.io/token/0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55", - "status": "active", - "id": "0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55", - "links": [ - { - "name": "telegram", - "url": "https://t.me/SuperFarmDAO" - }, - { - "name": "twitter", - "url": "https://twitter.com/SuperFarmDAO" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/superfarm/" - }, - { - "name": "coingecko", - "url": "https://coingecko.com/en/coins/superfarm/" - } - ] + "name": "SuperVerse", + "symbol": "SUPER", + "type": "ERC20", + "decimals": 18, + "description": "SuperVerse is a cross-chain DeFi protocol that allows users to deploy crypto and NFT farms with no code required!", + "website": "https://www.superverse.co", + "explorer": "https://etherscan.io/token/0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55", + "status": "active", + "id": "0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55", + "links": [ + { + "name": "telegram", + "url": "https://t.me/SuperVerseDAO" + }, + { + "name": "x", + "url": "https://x.com/SuperVerseDAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/superfarm/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/superfarm/" + } + ], + "tags": [ + "gamefi", + "staking", + "governance" + ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55/logo.png b/blockchains/ethereum/assets/0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55/logo.png index 9aab6fd544730..c154830ec5739 100644 Binary files a/blockchains/ethereum/assets/0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55/logo.png and b/blockchains/ethereum/assets/0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55/logo.png differ diff --git a/blockchains/ethereum/assets/0xe574c0c33A7A67d9b09F9F0AdDBB3dCA71A8F3E0/info.json b/blockchains/ethereum/assets/0xe574c0c33A7A67d9b09F9F0AdDBB3dCA71A8F3E0/info.json new file mode 100644 index 0000000000000..0d8546b7f8f27 --- /dev/null +++ b/blockchains/ethereum/assets/0xe574c0c33A7A67d9b09F9F0AdDBB3dCA71A8F3E0/info.json @@ -0,0 +1,21 @@ +{ + "name": "SafeMoon", + "type": "ERC20", + "symbol": "SFM", + "decimals": 9, + "website": "https://safemoon.net/", + "description": "Safemoon protocol aims to create a self-regenerating automatic liquidity providing protocol that would pay out static rewards to holders and penalize sellers.", + "explorer": "https://etherscan.io/token/0xe574c0c33A7A67d9b09F9F0AdDBB3dCA71A8F3E0", + "status": "active", + "id": "0xe574c0c33A7A67d9b09F9F0AdDBB3dCA71A8F3E0", + "links": [ + { + "name": "x", + "url": "https://x.com/safemoon" + }, + { + "name": "telegram", + "url": "https://t.me/SafeMoonv2" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe574c0c33A7A67d9b09F9F0AdDBB3dCA71A8F3E0/logo.png b/blockchains/ethereum/assets/0xe574c0c33A7A67d9b09F9F0AdDBB3dCA71A8F3E0/logo.png new file mode 100644 index 0000000000000..cd7eb2888d8b9 Binary files /dev/null and b/blockchains/ethereum/assets/0xe574c0c33A7A67d9b09F9F0AdDBB3dCA71A8F3E0/logo.png differ diff --git a/blockchains/ethereum/assets/0xe580074A10360404AF3ABfe2d524D5806D993ea3/info.json b/blockchains/ethereum/assets/0xe580074A10360404AF3ABfe2d524D5806D993ea3/info.json index 85df512710d45..7ed6e9aa738f5 100644 --- a/blockchains/ethereum/assets/0xe580074A10360404AF3ABfe2d524D5806D993ea3/info.json +++ b/blockchains/ethereum/assets/0xe580074A10360404AF3ABfe2d524D5806D993ea3/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/PayBolt" }, { - "name": "twitter", - "url": "https://twitter.com/PayBoltofficial" + "name": "x", + "url": "https://x.com/PayBoltofficial" }, { "name": "youtube", diff --git a/blockchains/ethereum/assets/0xe5b26BA77E6a4d79a7c54a5296d81254269D9700/info.json b/blockchains/ethereum/assets/0xe5b26BA77E6a4d79a7c54a5296d81254269D9700/info.json new file mode 100644 index 0000000000000..0796055e530e6 --- /dev/null +++ b/blockchains/ethereum/assets/0xe5b26BA77E6a4d79a7c54a5296d81254269D9700/info.json @@ -0,0 +1,28 @@ +{ + "name": "Grindr (Ondo Tokenized)", + "type": "ERC20", + "symbol": "GRNDon", + "decimals": 18, + "description": "GRNDon is the Ondo Tokenized version of Grindr, giving tokenholders economic exposure similar to holding GRND and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xe5b26BA77E6a4d79a7c54a5296d81254269D9700", + "status": "active", + "id": "0xe5b26BA77E6a4d79a7c54a5296d81254269D9700", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/grindr-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/grindr-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe5b26BA77E6a4d79a7c54a5296d81254269D9700/logo.png b/blockchains/ethereum/assets/0xe5b26BA77E6a4d79a7c54a5296d81254269D9700/logo.png new file mode 100644 index 0000000000000..cc372823561d3 Binary files /dev/null and b/blockchains/ethereum/assets/0xe5b26BA77E6a4d79a7c54a5296d81254269D9700/logo.png differ diff --git a/blockchains/ethereum/assets/0xe6179bB571D2d69837bE731da88C76e377ec4738/info.json b/blockchains/ethereum/assets/0xe6179bB571D2d69837bE731da88C76e377ec4738/info.json index 8521dd7775028..35219cfadc500 100644 --- a/blockchains/ethereum/assets/0xe6179bB571D2d69837bE731da88C76e377ec4738/info.json +++ b/blockchains/ethereum/assets/0xe6179bB571D2d69837bE731da88C76e377ec4738/info.json @@ -10,8 +10,8 @@ "id": "0xe6179bB571D2d69837bE731da88C76e377ec4738", "links": [ { - "name": "twitter", - "url": "https://twitter.com/wormhole_group" + "name": "x", + "url": "https://x.com/wormhole_group" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe61eECfDBa2aD1669cee138f1919D08cEd070B83/info.json b/blockchains/ethereum/assets/0xe61eECfDBa2aD1669cee138f1919D08cEd070B83/info.json index 0871ef7a03c6e..e5425aefd7cb6 100644 --- a/blockchains/ethereum/assets/0xe61eECfDBa2aD1669cee138f1919D08cEd070B83/info.json +++ b/blockchains/ethereum/assets/0xe61eECfDBa2aD1669cee138f1919D08cEd070B83/info.json @@ -10,8 +10,8 @@ "id": "0xe61eECfDBa2aD1669cee138f1919D08cEd070B83", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VideoGamesToken" + "name": "x", + "url": "https://x.com/VideoGamesToken" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xe6410569602124506658Ff992F258616Ea2D4A3D/info.json b/blockchains/ethereum/assets/0xe6410569602124506658Ff992F258616Ea2D4A3D/info.json index e7277cfd1bfc4..8a3b9a829e928 100644 --- a/blockchains/ethereum/assets/0xe6410569602124506658Ff992F258616Ea2D4A3D/info.json +++ b/blockchains/ethereum/assets/0xe6410569602124506658Ff992F258616Ea2D4A3D/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/katanafinance" }, { - "name": "twitter", - "url": "https://twitter.com/katanafinance" + "name": "x", + "url": "https://x.com/katanafinance" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xe6fd75ff38Adca4B97FBCD938c86b98772431867/info.json b/blockchains/ethereum/assets/0xe6fd75ff38Adca4B97FBCD938c86b98772431867/info.json index f11c868d52d02..17e5132f21ad4 100644 --- a/blockchains/ethereum/assets/0xe6fd75ff38Adca4B97FBCD938c86b98772431867/info.json +++ b/blockchains/ethereum/assets/0xe6fd75ff38Adca4B97FBCD938c86b98772431867/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/elastos" }, { - "name": "twitter", - "url": "https://twitter.com/ElastosInfo" + "name": "x", + "url": "https://x.com/ElastosInfo" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xe737f948bDFe3bEAe9423292853EC0579173cebB/info.json b/blockchains/ethereum/assets/0xe737f948bDFe3bEAe9423292853EC0579173cebB/info.json new file mode 100644 index 0000000000000..47896fa4511c3 --- /dev/null +++ b/blockchains/ethereum/assets/0xe737f948bDFe3bEAe9423292853EC0579173cebB/info.json @@ -0,0 +1,28 @@ +{ + "name": "Charles Schwab (Ondo Tokenized)", + "type": "ERC20", + "symbol": "SCHWon", + "decimals": 18, + "description": "SCHWon is the Ondo Tokenized version of Charles Schwab, giving tokenholders economic exposure similar to holding SCHW and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xe737f948bDFe3bEAe9423292853EC0579173cebB", + "status": "active", + "id": "0xe737f948bDFe3bEAe9423292853EC0579173cebB", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/charles-schwab-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/charles-schwab-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe737f948bDFe3bEAe9423292853EC0579173cebB/logo.png b/blockchains/ethereum/assets/0xe737f948bDFe3bEAe9423292853EC0579173cebB/logo.png new file mode 100644 index 0000000000000..4fac0bdae8c74 Binary files /dev/null and b/blockchains/ethereum/assets/0xe737f948bDFe3bEAe9423292853EC0579173cebB/logo.png differ diff --git a/blockchains/ethereum/assets/0xe76C6c83af64e4C60245D8C7dE953DF673a7A33D/info.json b/blockchains/ethereum/assets/0xe76C6c83af64e4C60245D8C7dE953DF673a7A33D/info.json new file mode 100644 index 0000000000000..86cf7f87180fa --- /dev/null +++ b/blockchains/ethereum/assets/0xe76C6c83af64e4C60245D8C7dE953DF673a7A33D/info.json @@ -0,0 +1,21 @@ +{ + "name": "Rail", + "website": "https://railgun.ch", + "description": "RAILGUN can generate a verifiable report of actions and balances (for an auditor or compliance officer, for example), with a privacy preserving Zero Knowledge method.", + "explorer": "https://etherscan.io/token/0xe76c6c83af64e4c60245d8c7de953df673a7a33d", + "type": "ERC20", + "symbol": "RAIL", + "decimals": 18, + "status": "active", + "id": "0xe76C6c83af64e4C60245D8C7dE953DF673a7A33D", + "links": [ + { + "name": "x", + "url": "https://x.com/railgun_project" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/railgun/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe76C6c83af64e4C60245D8C7dE953DF673a7A33D/logo.png b/blockchains/ethereum/assets/0xe76C6c83af64e4C60245D8C7dE953DF673a7A33D/logo.png new file mode 100644 index 0000000000000..41b1d4f3f6cdd Binary files /dev/null and b/blockchains/ethereum/assets/0xe76C6c83af64e4C60245D8C7dE953DF673a7A33D/logo.png differ diff --git a/blockchains/ethereum/assets/0xe77f6aCD24185e149e329C1C0F479201b9Ec2f4B/info.json b/blockchains/ethereum/assets/0xe77f6aCD24185e149e329C1C0F479201b9Ec2f4B/info.json new file mode 100644 index 0000000000000..9950565d1b295 --- /dev/null +++ b/blockchains/ethereum/assets/0xe77f6aCD24185e149e329C1C0F479201b9Ec2f4B/info.json @@ -0,0 +1,29 @@ +{ + "name": "ZEEBU", + "type": "ERC20", + "symbol": "ZBU", + "decimals": 18, + "description": "Zeebu is a Web3 payment and settlement platform specifically built for the telecom carrier industry. The platform empowers telecom businesses with instant, efficient, and transparent payments while reducing costs. With the launch of the Zeebu Protocol, the platform is evolving into a decentralized liquidity engine, built to decentralize and scale B2B settlements.", + "website": "https://www.zeebu.com/", + "explorer": "https://etherscan.io/token/0xe77f6aCD24185e149e329C1C0F479201b9Ec2f4B", + "id": "0xe77f6aCD24185e149e329C1C0F479201b9Ec2f4B", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/zeebuofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zeebu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/zeebu" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe77f6aCD24185e149e329C1C0F479201b9Ec2f4B/logo.png b/blockchains/ethereum/assets/0xe77f6aCD24185e149e329C1C0F479201b9Ec2f4B/logo.png new file mode 100644 index 0000000000000..50437376cafea Binary files /dev/null and b/blockchains/ethereum/assets/0xe77f6aCD24185e149e329C1C0F479201b9Ec2f4B/logo.png differ diff --git a/blockchains/ethereum/assets/0xe7aE6D0C56CACaf007b7e4d312f9af686a9E9a04/info.json b/blockchains/ethereum/assets/0xe7aE6D0C56CACaf007b7e4d312f9af686a9E9a04/info.json index 2dc0e100f2fa3..9649ba6c10673 100644 --- a/blockchains/ethereum/assets/0xe7aE6D0C56CACaf007b7e4d312f9af686a9E9a04/info.json +++ b/blockchains/ethereum/assets/0xe7aE6D0C56CACaf007b7e4d312f9af686a9E9a04/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/vabble" }, { - "name": "twitter", - "url": "https://twitter.com/VabbleApp" + "name": "x", + "url": "https://x.com/VabbleApp" }, { "name": "reddit", diff --git a/blockchains/ethereum/assets/0xe7ee911172bDD557B9Ab6Be7701F86BBc8FD772E/info.json b/blockchains/ethereum/assets/0xe7ee911172bDD557B9Ab6Be7701F86BBc8FD772E/info.json new file mode 100644 index 0000000000000..0c92e6571880a --- /dev/null +++ b/blockchains/ethereum/assets/0xe7ee911172bDD557B9Ab6Be7701F86BBc8FD772E/info.json @@ -0,0 +1,28 @@ +{ + "name": "Plug Power (Ondo Tokenized)", + "type": "ERC20", + "symbol": "PLUGon", + "decimals": 18, + "description": "PLUGon is the Ondo Tokenized version of Plug Power, giving tokenholders economic exposure similar to holding PLUG and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xe7ee911172bDD557B9Ab6Be7701F86BBc8FD772E", + "status": "active", + "id": "0xe7ee911172bDD557B9Ab6Be7701F86BBc8FD772E", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/plug-power-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/plug-power-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe7ee911172bDD557B9Ab6Be7701F86BBc8FD772E/logo.png b/blockchains/ethereum/assets/0xe7ee911172bDD557B9Ab6Be7701F86BBc8FD772E/logo.png new file mode 100644 index 0000000000000..d56552e01117f Binary files /dev/null and b/blockchains/ethereum/assets/0xe7ee911172bDD557B9Ab6Be7701F86BBc8FD772E/logo.png differ diff --git a/blockchains/ethereum/assets/0xe803178b48A0e560C2b19F3b3d4e504f79D229ce/info.json b/blockchains/ethereum/assets/0xe803178b48A0e560C2b19F3b3d4e504f79D229ce/info.json index fcb9f95f3847a..f150085f04fc8 100644 --- a/blockchains/ethereum/assets/0xe803178b48A0e560C2b19F3b3d4e504f79D229ce/info.json +++ b/blockchains/ethereum/assets/0xe803178b48A0e560C2b19F3b3d4e504f79D229ce/info.json @@ -10,8 +10,8 @@ "id": "0xe803178b48A0e560C2b19F3b3d4e504f79D229ce", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BobEcoOfficial" + "name": "x", + "url": "https://x.com/BobEcoOfficial" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json b/blockchains/ethereum/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json new file mode 100644 index 0000000000000..42b22014fbd2a --- /dev/null +++ b/blockchains/ethereum/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json @@ -0,0 +1,25 @@ +{ + "name": "Wrapped ABBC", + "type": "ERC20", + "symbol": "WABBC", + "decimals": 8, + "website": "https://abbcswap.com/", + "description": "ABBC Swap is a platform that allows users to seamlessly swap their ABBC from the ABBC mainnet using Aladdin Wallet and Aladdin Pro wallet apps into Polygon ABBC pegged.", + "explorer": "https://etherscan.io/token/0xe83ce6bfb580583bd6a62b4be7b34fc25f02910d", + "status": "active", + "id": "0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D", + "links": [ + { + "name": "telegram", + "url": "https://t.me/abbcfoundation" + }, + { + "name": "x", + "url": "https://x.com/abbcfoundation" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abbc-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png b/blockchains/ethereum/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png new file mode 100644 index 0000000000000..9259df4c30a91 Binary files /dev/null and b/blockchains/ethereum/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png differ diff --git a/blockchains/ethereum/assets/0xe87e15B9c7d989474Cb6d8c56b3DB4eFAD5b21E8/info.json b/blockchains/ethereum/assets/0xe87e15B9c7d989474Cb6d8c56b3DB4eFAD5b21E8/info.json index 98de5c1640c32..237fe4829a29e 100644 --- a/blockchains/ethereum/assets/0xe87e15B9c7d989474Cb6d8c56b3DB4eFAD5b21E8/info.json +++ b/blockchains/ethereum/assets/0xe87e15B9c7d989474Cb6d8c56b3DB4eFAD5b21E8/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/HokkaidoInu" }, { - "name": "twitter", - "url": "https://twitter.com/hokkaiduinu" + "name": "x", + "url": "https://x.com/hokkaiduinu" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe8B09e8175AEcB35A171Fa059647434fE47F114c/info.json b/blockchains/ethereum/assets/0xe8B09e8175AEcB35A171Fa059647434fE47F114c/info.json new file mode 100644 index 0000000000000..a6f00a3620fae --- /dev/null +++ b/blockchains/ethereum/assets/0xe8B09e8175AEcB35A171Fa059647434fE47F114c/info.json @@ -0,0 +1,28 @@ +{ + "name": "VanEck CLO ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "CLOIon", + "decimals": 18, + "description": "CLOIon is the Ondo Tokenized version of the VanEck CLO ETF, giving tokenholders economic exposure similar to holding CLOI and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xe8B09e8175AEcB35A171Fa059647434fE47F114c", + "status": "active", + "id": "0xe8B09e8175AEcB35A171Fa059647434fE47F114c", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vaneck-clo-etf-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vaneck-clo-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe8B09e8175AEcB35A171Fa059647434fE47F114c/logo.png b/blockchains/ethereum/assets/0xe8B09e8175AEcB35A171Fa059647434fE47F114c/logo.png new file mode 100644 index 0000000000000..f88c3aa82c649 Binary files /dev/null and b/blockchains/ethereum/assets/0xe8B09e8175AEcB35A171Fa059647434fE47F114c/logo.png differ diff --git a/blockchains/ethereum/assets/0xe91598331A36A78f7fEfe277cE7C1915DA0AfB93/info.json b/blockchains/ethereum/assets/0xe91598331A36A78f7fEfe277cE7C1915DA0AfB93/info.json new file mode 100644 index 0000000000000..360cd867ea275 --- /dev/null +++ b/blockchains/ethereum/assets/0xe91598331A36A78f7fEfe277cE7C1915DA0AfB93/info.json @@ -0,0 +1,21 @@ +{ + "name": "RunesBridge", + "website": "https://runesbridge.xyz/", + "description": "RunesBridge is at the forefront of blockchain interoperability, pioneering the creation of bridges that connect different networks (EVM) to the Bitcoin network through the innovative Runes Protocol.", + "explorer": "https://etherscan.io/token/0xe91598331a36a78f7fefe277ce7c1915da0afb93", + "type": "ERC20", + "symbol": "RB", + "decimals": 18, + "status": "active", + "id": "0xe91598331A36A78f7fEfe277cE7C1915DA0AfB93", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/runesbridge/" + }, + { + "name": "x", + "url": "https://x.com/RunesBridge" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe91598331A36A78f7fEfe277cE7C1915DA0AfB93/logo.png b/blockchains/ethereum/assets/0xe91598331A36A78f7fEfe277cE7C1915DA0AfB93/logo.png new file mode 100644 index 0000000000000..95859ef3d1673 Binary files /dev/null and b/blockchains/ethereum/assets/0xe91598331A36A78f7fEfe277cE7C1915DA0AfB93/logo.png differ diff --git a/blockchains/ethereum/assets/0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F/info.json b/blockchains/ethereum/assets/0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F/info.json new file mode 100644 index 0000000000000..3000f73d91a33 --- /dev/null +++ b/blockchains/ethereum/assets/0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F/info.json @@ -0,0 +1,24 @@ +{ + "name": "Alphabet tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Alphabet tokenized stock (xStock) (GOOGLX) is a cryptocurrency and operates on the Solana platform. Alphabet tokenized stock (xStock) has a current supply of 20,999.24547712. The last known price of Alphabet tokenized stock (xStock) is 254.51926743 USD and is up 4.55 over the last 24 hours. It is currently trading on 34 active market(s) with $4,238,360.30 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/alphabet-xstock.", + "explorer": "https://etherscan.io/token/0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F", + "type": "ERC20", + "symbol": "GOOGLX", + "decimals": 18, + "status": "active", + "id": "0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/alphabet-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F/logo.png b/blockchains/ethereum/assets/0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F/logo.png new file mode 100644 index 0000000000000..6d98541975eed Binary files /dev/null and b/blockchains/ethereum/assets/0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F/logo.png differ diff --git a/blockchains/ethereum/assets/0xe95ab205e333443D7970336D5fD827eF9eD97608/info.json b/blockchains/ethereum/assets/0xe95ab205e333443D7970336D5fD827eF9eD97608/info.json new file mode 100644 index 0000000000000..0d8fc42e1be26 --- /dev/null +++ b/blockchains/ethereum/assets/0xe95ab205e333443D7970336D5fD827eF9eD97608/info.json @@ -0,0 +1,15 @@ +{ + "name": "TON xStock", + "type": "ERC20", + "symbol": "TONXx", + "decimals": 18, + "description": "TON xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://etherscan.io/token/0xe95ab205e333443D7970336D5fD827eF9eD97608", + "status": "active", + "id": "0xe95ab205e333443D7970336D5fD827eF9eD97608", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe95ab205e333443D7970336D5fD827eF9eD97608/logo.png b/blockchains/ethereum/assets/0xe95ab205e333443D7970336D5fD827eF9eD97608/logo.png new file mode 100644 index 0000000000000..0c6d1b728e68f Binary files /dev/null and b/blockchains/ethereum/assets/0xe95ab205e333443D7970336D5fD827eF9eD97608/logo.png differ diff --git a/blockchains/ethereum/assets/0xeAA2287290544eD9F481012aa348619A4D2F9e51/info.json b/blockchains/ethereum/assets/0xeAA2287290544eD9F481012aa348619A4D2F9e51/info.json new file mode 100644 index 0000000000000..fd12608cd1f81 --- /dev/null +++ b/blockchains/ethereum/assets/0xeAA2287290544eD9F481012aa348619A4D2F9e51/info.json @@ -0,0 +1,24 @@ +{ + "name": "KraneShares CSI China Internet ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "KWEBon", + "decimals": 18, + "description": "KWEBon is the Ondo Tokenized version of the KraneShares CSI China Internet ETF, giving tokenholders economic exposure similar to holding KWEB and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xeAA2287290544eD9F481012aa348619A4D2F9e51", + "status": "active", + "id": "0xeAA2287290544eD9F481012aa348619A4D2F9e51", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kraneshares-csi-china-internet-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeAA2287290544eD9F481012aa348619A4D2F9e51/logo.png b/blockchains/ethereum/assets/0xeAA2287290544eD9F481012aa348619A4D2F9e51/logo.png new file mode 100644 index 0000000000000..69cee97e8fefc Binary files /dev/null and b/blockchains/ethereum/assets/0xeAA2287290544eD9F481012aa348619A4D2F9e51/logo.png differ diff --git a/blockchains/ethereum/assets/0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88/info.json b/blockchains/ethereum/assets/0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88/info.json new file mode 100644 index 0000000000000..928b39a2be100 --- /dev/null +++ b/blockchains/ethereum/assets/0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88/info.json @@ -0,0 +1,24 @@ +{ + "name": "Marvell tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Marvell xStock (MRVLx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. MRVLx tracks the price of Marvell Technology, Inc. (the underlying). MRVLx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Marvell Technology, Inc., whilst maintaining the benefits of blockchain technology. Marvell Technology, Inc. is an American semiconductor company that designs and develops integrated circuits, primarily focused on data infrastructure.", + "explorer": "https://etherscan.io/token/0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88", + "type": "ERC20", + "symbol": "MRVLX", + "decimals": 18, + "status": "active", + "id": "0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/marvell-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88/logo.png b/blockchains/ethereum/assets/0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88/logo.png new file mode 100644 index 0000000000000..4ca5efce9f7b2 Binary files /dev/null and b/blockchains/ethereum/assets/0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88/logo.png differ diff --git a/blockchains/ethereum/assets/0xeBb66a88cEdd12bfE3a289df6DFEe377F2963F12/info.json b/blockchains/ethereum/assets/0xeBb66a88cEdd12bfE3a289df6DFEe377F2963F12/info.json new file mode 100644 index 0000000000000..bd7b1a3af57b5 --- /dev/null +++ b/blockchains/ethereum/assets/0xeBb66a88cEdd12bfE3a289df6DFEe377F2963F12/info.json @@ -0,0 +1,21 @@ +{ + "name": "Oscar", + "type": "ERC20", + "symbol": "OSCAR", + "decimals": 9, + "website": "https://www.oscarshibatoken.com/", + "description": "Oscar is a famous meme featuring a Shiba on a trampoline that went viral on the internet.", + "explorer": "https://etherscan.io/token/0xebb66a88cedd12bfe3a289df6dfee377f2963f12", + "status": "active", + "id": "0xeBb66a88cEdd12bfE3a289df6DFEe377F2963F12", + "links": [ + { + "name": "x", + "url": "https://x.com/oscar_shibainu" + }, + { + "name": "telegram", + "url": "https://t.me/oscarshib" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeBb66a88cEdd12bfE3a289df6DFEe377F2963F12/logo.png b/blockchains/ethereum/assets/0xeBb66a88cEdd12bfE3a289df6DFEe377F2963F12/logo.png new file mode 100644 index 0000000000000..115b632af42e7 Binary files /dev/null and b/blockchains/ethereum/assets/0xeBb66a88cEdd12bfE3a289df6DFEe377F2963F12/logo.png differ diff --git a/blockchains/ethereum/assets/0xeC21890967a8CEb3e55a3F79dAc4E90673ba3C2E/info.json b/blockchains/ethereum/assets/0xeC21890967a8CEb3e55a3F79dAc4E90673ba3C2E/info.json new file mode 100644 index 0000000000000..a822e6fd98da3 --- /dev/null +++ b/blockchains/ethereum/assets/0xeC21890967a8CEb3e55a3F79dAc4E90673ba3C2E/info.json @@ -0,0 +1,21 @@ +{ + "name": "BEBE", + "website": "https://www.bebeeth.com/", + "description": "the most memeable memecoin in existence. The dogs have had their day, it’s time for BEBE to take reign.", + "explorer": "https://etherscan.io/token/0xec21890967a8ceb3e55a3f79dac4e90673ba3c2e", + "type": "ERC20", + "symbol": "BEBE", + "decimals": 8, + "status": "active", + "id": "0xeC21890967a8CEb3e55a3F79dAc4E90673ba3C2E", + "links": [ + { + "name": "telegram", + "url": "https://t.me/BEBE_Officiall" + }, + { + "name": "x", + "url": "https://x.com/xbebe_artist?s=21" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeC21890967a8CEb3e55a3F79dAc4E90673ba3C2E/logo.png b/blockchains/ethereum/assets/0xeC21890967a8CEb3e55a3F79dAc4E90673ba3C2E/logo.png new file mode 100644 index 0000000000000..aa5c8ae2847d8 Binary files /dev/null and b/blockchains/ethereum/assets/0xeC21890967a8CEb3e55a3F79dAc4E90673ba3C2E/logo.png differ diff --git a/blockchains/ethereum/assets/0xeD35af169aF46a02eE13b9d79Eb57d6D68C1749e/info.json b/blockchains/ethereum/assets/0xeD35af169aF46a02eE13b9d79Eb57d6D68C1749e/info.json index c92794e4f34a0..1a091c0535840 100644 --- a/blockchains/ethereum/assets/0xeD35af169aF46a02eE13b9d79Eb57d6D68C1749e/info.json +++ b/blockchains/ethereum/assets/0xeD35af169aF46a02eE13b9d79Eb57d6D68C1749e/info.json @@ -1,5 +1,5 @@ { - "name": "OMI Token", + "name": "ECOMI", "type": "ERC20", "symbol": "OMI", "decimals": 18, diff --git a/blockchains/ethereum/assets/0xeD3618Bb8778F8eBBe2f241Da532227591771D04/info.json b/blockchains/ethereum/assets/0xeD3618Bb8778F8eBBe2f241Da532227591771D04/info.json new file mode 100644 index 0000000000000..c3220834d422a --- /dev/null +++ b/blockchains/ethereum/assets/0xeD3618Bb8778F8eBBe2f241Da532227591771D04/info.json @@ -0,0 +1,24 @@ +{ + "name": "iBoxx $ High Yield Corporate Bond ETF (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "HYGon is the Ondo Tokenized version of the iBoxx $ High Yield Corporate Bond ETF, giving tokenholders economic exposure similar to holding HYG and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xeD3618Bb8778F8eBBe2f241Da532227591771D04", + "type": "ERC20", + "symbol": "HYGon", + "decimals": 18, + "status": "active", + "id": "0xeD3618Bb8778F8eBBe2f241Da532227591771D04", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/iboxx-high-yield-corporate-bond-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeD3618Bb8778F8eBBe2f241Da532227591771D04/logo.png b/blockchains/ethereum/assets/0xeD3618Bb8778F8eBBe2f241Da532227591771D04/logo.png new file mode 100644 index 0000000000000..731ceba6a1840 Binary files /dev/null and b/blockchains/ethereum/assets/0xeD3618Bb8778F8eBBe2f241Da532227591771D04/logo.png differ diff --git a/blockchains/ethereum/assets/0xeF4461891DfB3AC8572cCf7C794664A8DD927945/info.json b/blockchains/ethereum/assets/0xeF4461891DfB3AC8572cCf7C794664A8DD927945/info.json new file mode 100644 index 0000000000000..85766a736558d --- /dev/null +++ b/blockchains/ethereum/assets/0xeF4461891DfB3AC8572cCf7C794664A8DD927945/info.json @@ -0,0 +1,21 @@ +{ + "name": "WalletConnect", + "type": "ERC20", + "symbol": "WCT", + "decimals": 18, + "website": "https://walletconnect.network/", + "description": "WCT is the native token of the WalletConnect Network that secures the network via staking, rewards, fees, and governance.", + "explorer": "https://etherscan.io/token/0xeF4461891DfB3AC8572cCf7C794664A8DD927945", + "status": "active", + "id": "0xeF4461891DfB3AC8572cCf7C794664A8DD927945", + "links": [ + { + "name": "x", + "url": "https://x.com/WalletConnect" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/walletconnect-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeF4461891DfB3AC8572cCf7C794664A8DD927945/logo.png b/blockchains/ethereum/assets/0xeF4461891DfB3AC8572cCf7C794664A8DD927945/logo.png new file mode 100644 index 0000000000000..dd09bc1db69b2 Binary files /dev/null and b/blockchains/ethereum/assets/0xeF4461891DfB3AC8572cCf7C794664A8DD927945/logo.png differ diff --git a/blockchains/ethereum/assets/0xea004e8FA3701B8E58E41b78D50996e0f7176CbD/info.json b/blockchains/ethereum/assets/0xea004e8FA3701B8E58E41b78D50996e0f7176CbD/info.json index 9555796b6024e..63c5d10656fbf 100644 --- a/blockchains/ethereum/assets/0xea004e8FA3701B8E58E41b78D50996e0f7176CbD/info.json +++ b/blockchains/ethereum/assets/0xea004e8FA3701B8E58E41b78D50996e0f7176CbD/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/yffcfinance" }, { - "name": "twitter", - "url": "https://twitter.com/yffc_finance" + "name": "x", + "url": "https://x.com/yffc_finance" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xea17Df5Cf6D172224892B5477A16ACb111182478/info.json b/blockchains/ethereum/assets/0xea17Df5Cf6D172224892B5477A16ACb111182478/info.json new file mode 100644 index 0000000000000..fa7debf7a0f36 --- /dev/null +++ b/blockchains/ethereum/assets/0xea17Df5Cf6D172224892B5477A16ACb111182478/info.json @@ -0,0 +1,58 @@ +{ + "name": "elizaOS", + "symbol": "elizaOS", + "type": "ERC20", + "decimals": 9, + "description": "-", + "website": "https://elizaos.ai/", + "explorer": "https://etherscan.io/token/0xea17Df5Cf6D172224892B5477A16ACb111182478", + "status": "active", + "id": "0xea17Df5Cf6D172224892B5477A16ACb111182478", + "links": [ + { + "name": "github", + "url": "https://github.com/elizaos/" + }, + { + "name": "x", + "url": "https://x.com/elizaecofund" + }, + { + "name": "whitepaper", + "url": "https://arxiv.org/abs/2501.06781" + }, + { + "name": "telegram_news", + "url": "https://t.me/official_elizaos" + }, + { + "name": "blog", + "url": "https://paragraph.com/@elizaos" + }, + { + "name": "discord", + "url": "https://discord.com/invite/tgCCVF9vEa" + }, + { + "name": "youtube", + "url": "https://youtube.com/@elizaOSDeveloper" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elizaos" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/elizaos" + }, + { + "name": "docs", + "url": "https://docs.elizaos.ai/" + }, + { + "name": "source_code", + "url": "https://github.com/elizaos/eliza" + } + ], + "tags": ["gamefi"] +} diff --git a/blockchains/ethereum/assets/0xea17Df5Cf6D172224892B5477A16ACb111182478/logo.png b/blockchains/ethereum/assets/0xea17Df5Cf6D172224892B5477A16ACb111182478/logo.png new file mode 100644 index 0000000000000..446373cefbca2 Binary files /dev/null and b/blockchains/ethereum/assets/0xea17Df5Cf6D172224892B5477A16ACb111182478/logo.png differ diff --git a/blockchains/ethereum/assets/0xeb08d539Be0f6a6C90eA24276196E348f5688A02/info.json b/blockchains/ethereum/assets/0xeb08d539Be0f6a6C90eA24276196E348f5688A02/info.json new file mode 100644 index 0000000000000..f134670f369e3 --- /dev/null +++ b/blockchains/ethereum/assets/0xeb08d539Be0f6a6C90eA24276196E348f5688A02/info.json @@ -0,0 +1,24 @@ +{ + "name": "Freeport-McMoRan (Ondo Tokenized)", + "type": "ERC20", + "symbol": "FCXon", + "decimals": 18, + "description": "FCXon is the Ondo Tokenized version of Freeport-McMoRan, giving tokenholders economic exposure similar to holding FCX and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xeb08d539Be0f6a6C90eA24276196E348f5688A02", + "status": "active", + "id": "0xeb08d539Be0f6a6C90eA24276196E348f5688A02", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/freeport-mcmoran-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeb08d539Be0f6a6C90eA24276196E348f5688A02/logo.png b/blockchains/ethereum/assets/0xeb08d539Be0f6a6C90eA24276196E348f5688A02/logo.png new file mode 100644 index 0000000000000..1e2bfeca37367 Binary files /dev/null and b/blockchains/ethereum/assets/0xeb08d539Be0f6a6C90eA24276196E348f5688A02/logo.png differ diff --git a/blockchains/ethereum/assets/0xeb986DA994E4a118d5956b02d8b7c3C7CE373674/info.json b/blockchains/ethereum/assets/0xeb986DA994E4a118d5956b02d8b7c3C7CE373674/info.json index c6c7e7df53a2e..33ff9280e0eea 100644 --- a/blockchains/ethereum/assets/0xeb986DA994E4a118d5956b02d8b7c3C7CE373674/info.json +++ b/blockchains/ethereum/assets/0xeb986DA994E4a118d5956b02d8b7c3C7CE373674/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/Gather_Network" + "name": "x", + "url": "https://x.com/Gather_Network" }, { "name": "reddit", @@ -29,4 +29,4 @@ "url": "https://gather.network/whitepaper.html" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xec53bF9167f50cDEB3Ae105f56099aaaB9061F83/info.json b/blockchains/ethereum/assets/0xec53bF9167f50cDEB3Ae105f56099aaaB9061F83/info.json new file mode 100644 index 0000000000000..d154ec6c59b13 --- /dev/null +++ b/blockchains/ethereum/assets/0xec53bF9167f50cDEB3Ae105f56099aaaB9061F83/info.json @@ -0,0 +1,21 @@ +{ + "name": "Eigen", + "website": "https://www.eigenlayer.xyz/", + "description": "EigenLayer is a protocol built on Ethereum that introduces restaking, a new primitive in cryptoeconomic security. This primitive enables the reuse of ETH on the consensus layer.", + "explorer": "https://etherscan.io/token/0xec53bF9167f50cDEB3Ae105f56099aaaB9061F83", + "type": "ERC20", + "symbol": "EIGEN", + "decimals": 18, + "status": "active", + "id": "0xec53bF9167f50cDEB3Ae105f56099aaaB9061F83", + "links": [ + { + "name": "x", + "url": "https://x.com/eigenlayer" + }, + { + "name": "github", + "url": "https://github.com/Layr-Labs/eigenlayer-contracts" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xec53bF9167f50cDEB3Ae105f56099aaaB9061F83/logo.png b/blockchains/ethereum/assets/0xec53bF9167f50cDEB3Ae105f56099aaaB9061F83/logo.png new file mode 100644 index 0000000000000..cf339719a257e Binary files /dev/null and b/blockchains/ethereum/assets/0xec53bF9167f50cDEB3Ae105f56099aaaB9061F83/logo.png differ diff --git a/blockchains/ethereum/assets/0xed328E9C1179a30ddC1E7595E036AEd8760C22aF/info.json b/blockchains/ethereum/assets/0xed328E9C1179a30ddC1E7595E036AEd8760C22aF/info.json new file mode 100644 index 0000000000000..b1e15f6714e7d --- /dev/null +++ b/blockchains/ethereum/assets/0xed328E9C1179a30ddC1E7595E036AEd8760C22aF/info.json @@ -0,0 +1,37 @@ +{ + "name": "Metacade (MCADE)", + "type": "ERC20", + "symbol": "MCADE", + "decimals": 18, + "website": "https://metacade.co/", + "description": "At Metacade our vision is to become the premier gaming platform that empowers developers and players, providing unparalleled opportunities for growth and collaboration. Through creativity and innovation we aim to create a fun first community that offers a rewarding and enjoyable experience, while delivering a revenue driven platform that gives value to $MCADE token holders.", + "explorer": "https://etherscan.io/token/0xed328e9c1179a30ddc1e7595e036aed8760c22af", + "status": "active", + "id": "0xed328E9C1179a30ddC1E7595E036AEd8760C22aF", + "links": [ + { + "name": "x", + "url": "https://x.com/Metacade_" + }, + { + "name": "discord", + "url": "https://discord.com/invite/7XG39NuEKQ" + }, + { + "name": "telegram", + "url": "https://t.me/metacade_official/" + }, + { + "name": "youtube", + "url": "https://youtube.com/@metacade9370" + }, + { + "name": "medium", + "url": "https://medium.com/@metacade" + } + ], + "tags": [ + "gamefi", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xed328E9C1179a30ddC1E7595E036AEd8760C22aF/logo.png b/blockchains/ethereum/assets/0xed328E9C1179a30ddC1E7595E036AEd8760C22aF/logo.png new file mode 100644 index 0000000000000..c7e167fa35581 Binary files /dev/null and b/blockchains/ethereum/assets/0xed328E9C1179a30ddC1E7595E036AEd8760C22aF/logo.png differ diff --git a/blockchains/ethereum/assets/0xeedC48205852E9D83Ea5cA92fa8656597788601f/info.json b/blockchains/ethereum/assets/0xeedC48205852E9D83Ea5cA92fa8656597788601f/info.json new file mode 100644 index 0000000000000..0740a1dfedf03 --- /dev/null +++ b/blockchains/ethereum/assets/0xeedC48205852E9D83Ea5cA92fa8656597788601f/info.json @@ -0,0 +1,28 @@ +{ + "name": "Occidental Petroleum (Ondo Tokenized)", + "type": "ERC20", + "symbol": "OXYon", + "decimals": 18, + "description": "OXYon is the Ondo Tokenized version of Occidental Petroleum, giving tokenholders economic exposure similar to holding OXY and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xeedC48205852E9D83Ea5cA92fa8656597788601f", + "status": "active", + "id": "0xeedC48205852E9D83Ea5cA92fa8656597788601f", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/occidental-petroleum-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/occidental-petroleum-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeedC48205852E9D83Ea5cA92fa8656597788601f/logo.png b/blockchains/ethereum/assets/0xeedC48205852E9D83Ea5cA92fa8656597788601f/logo.png new file mode 100644 index 0000000000000..a552db34196ff Binary files /dev/null and b/blockchains/ethereum/assets/0xeedC48205852E9D83Ea5cA92fa8656597788601f/logo.png differ diff --git a/blockchains/ethereum/assets/0xef3A930e1FfFFAcd2fc13434aC81bD278B0ecC8d/info.json b/blockchains/ethereum/assets/0xef3A930e1FfFFAcd2fc13434aC81bD278B0ecC8d/info.json index 2e6efce6eb53f..7843af01c2cbc 100644 --- a/blockchains/ethereum/assets/0xef3A930e1FfFFAcd2fc13434aC81bD278B0ecC8d/info.json +++ b/blockchains/ethereum/assets/0xef3A930e1FfFFAcd2fc13434aC81bD278B0ecC8d/info.json @@ -10,8 +10,8 @@ "id": "0xef3A930e1FfFFAcd2fc13434aC81bD278B0ecC8d", "links": [ { - "name": "twitter", - "url": "https://twitter.com/StaFi_Protocol" + "name": "x", + "url": "https://x.com/StaFi_Protocol" }, { "name": "medium", diff --git a/blockchains/ethereum/assets/0xf091867EC603A6628eD83D274E835539D82e9cc8/info.json b/blockchains/ethereum/assets/0xf091867EC603A6628eD83D274E835539D82e9cc8/info.json new file mode 100644 index 0000000000000..98117792de837 --- /dev/null +++ b/blockchains/ethereum/assets/0xf091867EC603A6628eD83D274E835539D82e9cc8/info.json @@ -0,0 +1,21 @@ +{ + "name": "Zeta", + "type": "ERC20", + "symbol": "ZETA", + "decimals": 18, + "website": "https://www.zetachain.com/", + "description": "ZetaChain is a public, decentralized blockchain and smart contract platform that enables message passing and value transfer between any blockchain.", + "explorer": "https://etherscan.io/token/0xf091867EC603A6628eD83D274E835539D82e9cc8", + "status": "active", + "id": "0xf091867EC603A6628eD83D274E835539D82e9cc8", + "links": [ + { + "name": "x", + "url": "https://x.com/zetablockchain" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zetachain/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf091867EC603A6628eD83D274E835539D82e9cc8/logo.png b/blockchains/ethereum/assets/0xf091867EC603A6628eD83D274E835539D82e9cc8/logo.png new file mode 100644 index 0000000000000..b1372629fb38d Binary files /dev/null and b/blockchains/ethereum/assets/0xf091867EC603A6628eD83D274E835539D82e9cc8/logo.png differ diff --git a/blockchains/ethereum/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/info.json b/blockchains/ethereum/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/info.json index 974362b0804ef..018118523e930 100644 --- a/blockchains/ethereum/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/info.json +++ b/blockchains/ethereum/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/info.json @@ -10,8 +10,8 @@ "id": "0xf0f9D895aCa5c8678f706FB8216fa22957685A13", "links": [ { - "name": "twitter", - "url": "https://twitter.com/wearecultdao" + "name": "x", + "url": "https://x.com/wearecultdao" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0xf151980E7A781481709e8195744bF2399FB3Cba4/info.json b/blockchains/ethereum/assets/0xf151980E7A781481709e8195744bF2399FB3Cba4/info.json index cfa61695b4380..31b53410f24cf 100644 --- a/blockchains/ethereum/assets/0xf151980E7A781481709e8195744bF2399FB3Cba4/info.json +++ b/blockchains/ethereum/assets/0xf151980E7A781481709e8195744bF2399FB3Cba4/info.json @@ -6,6 +6,6 @@ "description": "Freeway Tokens (FWT) are the native utility tokens for AuBit Freeway — a ground-breaking new asset management platform built for greater total returns on the world’s top investment products with no additional risk.", "website": "https://aubit.io/", "explorer": "https://etherscan.io/token/0xf151980E7A781481709e8195744bF2399FB3Cba4", - "status": "active", + "status": "abandoned", "id": "0xf151980E7A781481709e8195744bF2399FB3Cba4" } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf1573EdDDB75BF7Ce165f142A17Ed6b5E7f5aA13/info.json b/blockchains/ethereum/assets/0xf1573EdDDB75BF7Ce165f142A17Ed6b5E7f5aA13/info.json new file mode 100644 index 0000000000000..91e8d5ca12937 --- /dev/null +++ b/blockchains/ethereum/assets/0xf1573EdDDB75BF7Ce165f142A17Ed6b5E7f5aA13/info.json @@ -0,0 +1,28 @@ +{ + "name": "Vistra (Ondo Tokenized)", + "type": "ERC20", + "symbol": "VSTon", + "decimals": 18, + "description": "VSTon is the Ondo Tokenized version of Vistra, giving tokenholders economic exposure similar to holding VST and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xf1573EdDDB75BF7Ce165f142A17Ed6b5E7f5aA13", + "status": "active", + "id": "0xf1573EdDDB75BF7Ce165f142A17Ed6b5E7f5aA13", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vistra-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vistra-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf1573EdDDB75BF7Ce165f142A17Ed6b5E7f5aA13/logo.png b/blockchains/ethereum/assets/0xf1573EdDDB75BF7Ce165f142A17Ed6b5E7f5aA13/logo.png new file mode 100644 index 0000000000000..c9f474e3e0262 Binary files /dev/null and b/blockchains/ethereum/assets/0xf1573EdDDB75BF7Ce165f142A17Ed6b5E7f5aA13/logo.png differ diff --git a/blockchains/ethereum/assets/0xf15FbC1349ab99ABAd63db3f9A510BF413bE3BeF/info.json b/blockchains/ethereum/assets/0xf15FbC1349ab99ABAd63db3f9A510BF413bE3BeF/info.json new file mode 100644 index 0000000000000..d780bf6ed24bf --- /dev/null +++ b/blockchains/ethereum/assets/0xf15FbC1349ab99ABAd63db3f9A510BF413bE3BeF/info.json @@ -0,0 +1,24 @@ +{ + "name": "Starbucks (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "SBUXon is the Ondo Tokenized version of Starbucks, giving tokenholders economic exposure similar to holding SBUX and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xf15FbC1349ab99ABAd63db3f9A510BF413bE3BeF", + "type": "ERC20", + "symbol": "SBUXon", + "decimals": 18, + "status": "active", + "id": "0xf15FbC1349ab99ABAd63db3f9A510BF413bE3BeF", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/starbucks-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf15FbC1349ab99ABAd63db3f9A510BF413bE3BeF/logo.png b/blockchains/ethereum/assets/0xf15FbC1349ab99ABAd63db3f9A510BF413bE3BeF/logo.png new file mode 100644 index 0000000000000..c249183922d8d Binary files /dev/null and b/blockchains/ethereum/assets/0xf15FbC1349ab99ABAd63db3f9A510BF413bE3BeF/logo.png differ diff --git a/blockchains/ethereum/assets/0xf1883461Ec7BD883A3668749c5CF5f351080d059/info.json b/blockchains/ethereum/assets/0xf1883461Ec7BD883A3668749c5CF5f351080d059/info.json new file mode 100644 index 0000000000000..f5ee5d8c01d1d --- /dev/null +++ b/blockchains/ethereum/assets/0xf1883461Ec7BD883A3668749c5CF5f351080d059/info.json @@ -0,0 +1,24 @@ +{ + "name": "abrdn Physical Platinum Shares ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "PPLTon", + "decimals": 18, + "description": "PPLTon is the Ondo Tokenized version of the abrdn Physical Platinum Shares ETF, giving tokenholders economic exposure similar to holding PPLT and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xf1883461Ec7BD883A3668749c5CF5f351080d059", + "status": "active", + "id": "0xf1883461Ec7BD883A3668749c5CF5f351080d059", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/abrdn-physical-platinum-shares-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf1883461Ec7BD883A3668749c5CF5f351080d059/logo.png b/blockchains/ethereum/assets/0xf1883461Ec7BD883A3668749c5CF5f351080d059/logo.png new file mode 100644 index 0000000000000..a22bc2999905d Binary files /dev/null and b/blockchains/ethereum/assets/0xf1883461Ec7BD883A3668749c5CF5f351080d059/logo.png differ diff --git a/blockchains/ethereum/assets/0xf192957AE52dB3eb088654403CC2eDeD014ae556/info.json b/blockchains/ethereum/assets/0xf192957AE52dB3eb088654403CC2eDeD014ae556/info.json new file mode 100644 index 0000000000000..4c26e850dfb0e --- /dev/null +++ b/blockchains/ethereum/assets/0xf192957AE52dB3eb088654403CC2eDeD014ae556/info.json @@ -0,0 +1,24 @@ +{ + "name": "Eli Lilly (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "LLYon is the Ondo Tokenized version of Eli Lilly, giving tokenholders economic exposure similar to holding LLY and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xf192957AE52dB3eb088654403CC2eDeD014ae556", + "type": "ERC20", + "symbol": "LLYon", + "decimals": 18, + "status": "active", + "id": "0xf192957AE52dB3eb088654403CC2eDeD014ae556", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/eli-lilly-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf192957AE52dB3eb088654403CC2eDeD014ae556/logo.png b/blockchains/ethereum/assets/0xf192957AE52dB3eb088654403CC2eDeD014ae556/logo.png new file mode 100644 index 0000000000000..0e4defd01b563 Binary files /dev/null and b/blockchains/ethereum/assets/0xf192957AE52dB3eb088654403CC2eDeD014ae556/logo.png differ diff --git a/blockchains/ethereum/assets/0xf1BB41F9eD87e6c7E1F70e921b7B4bee1Df7Ae9c/info.json b/blockchains/ethereum/assets/0xf1BB41F9eD87e6c7E1F70e921b7B4bee1Df7Ae9c/info.json new file mode 100644 index 0000000000000..52bb1aad22809 --- /dev/null +++ b/blockchains/ethereum/assets/0xf1BB41F9eD87e6c7E1F70e921b7B4bee1Df7Ae9c/info.json @@ -0,0 +1,21 @@ +{ + "name": "Dogcoin", + "symbol": "DCOIN", + "type": "ERC20", + "decimals": 18, + "description": "Dogcoin is not just another token; it’s a revolutionary, pure, and honest project in the crypto space", + "website": "https://dogcoin.pet", + "explorer": "https://etherscan.io/token/0xf1BB41F9eD87e6c7E1F70e921b7B4bee1Df7Ae9c", + "status": "active", + "id": "0xf1BB41F9eD87e6c7E1F70e921b7B4bee1Df7Ae9c", + "links": [ + { + "name": "x", + "url": "https://x.com/DogcoinEthereum" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dogcoin-pet/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf1BB41F9eD87e6c7E1F70e921b7B4bee1Df7Ae9c/logo.png b/blockchains/ethereum/assets/0xf1BB41F9eD87e6c7E1F70e921b7B4bee1Df7Ae9c/logo.png new file mode 100644 index 0000000000000..e7bb97dfcaa1a Binary files /dev/null and b/blockchains/ethereum/assets/0xf1BB41F9eD87e6c7E1F70e921b7B4bee1Df7Ae9c/logo.png differ diff --git a/blockchains/ethereum/assets/0xf1df7305E4BAB3885caB5B1e4dFC338452a67891/info.json b/blockchains/ethereum/assets/0xf1df7305E4BAB3885caB5B1e4dFC338452a67891/info.json new file mode 100644 index 0000000000000..82e50d1df3810 --- /dev/null +++ b/blockchains/ethereum/assets/0xf1df7305E4BAB3885caB5B1e4dFC338452a67891/info.json @@ -0,0 +1,21 @@ +{ + "name": "PaLM AI", + "website": "https://palmai.tech/", + "description": "$PALM is a multi-platform PaLM AI chatbot with Google AI tech for conversation, coding, image gen; focuses on accessible AI and revenue sharing.", + "explorer": "https://etherscan.io/token/0xf1df7305E4BAB3885caB5B1e4dFC338452a67891", + "symbol": "PALM", + "type": "ERC20", + "decimals": 9, + "status": "active", + "id": "0xf1df7305E4BAB3885caB5B1e4dFC338452a67891", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/palm-ai/" + }, + { + "name": "x", + "url": "https://x.com/palmaierc" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf1df7305E4BAB3885caB5B1e4dFC338452a67891/logo.png b/blockchains/ethereum/assets/0xf1df7305E4BAB3885caB5B1e4dFC338452a67891/logo.png new file mode 100644 index 0000000000000..49a7f7fb3fe09 Binary files /dev/null and b/blockchains/ethereum/assets/0xf1df7305E4BAB3885caB5B1e4dFC338452a67891/logo.png differ diff --git a/blockchains/ethereum/assets/0xf21661D0D1d76d3ECb8e1B9F1c923DBfffAe4097/info.json b/blockchains/ethereum/assets/0xf21661D0D1d76d3ECb8e1B9F1c923DBfffAe4097/info.json index 49c34ca4dc1e5..4dd1e8296fd52 100644 --- a/blockchains/ethereum/assets/0xf21661D0D1d76d3ECb8e1B9F1c923DBfffAe4097/info.json +++ b/blockchains/ethereum/assets/0xf21661D0D1d76d3ECb8e1B9F1c923DBfffAe4097/info.json @@ -6,12 +6,15 @@ "type": "ERC20", "symbol": "RIO", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xf21661D0D1d76d3ECb8e1B9F1c923DBfffAe4097", "links": [ { "name": "whitepaper", "url": "https://realio.fund/static/assets/downloads/realio-wp.pdf" } + ], + "tags": [ + "defi" ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf21661D0D1d76d3ECb8e1B9F1c923DBfffAe4097/logo.png b/blockchains/ethereum/assets/0xf21661D0D1d76d3ECb8e1B9F1c923DBfffAe4097/logo.png deleted file mode 100644 index 3102104b493b0..0000000000000 Binary files a/blockchains/ethereum/assets/0xf21661D0D1d76d3ECb8e1B9F1c923DBfffAe4097/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0xf230b790E05390FC8295F4d3F60332c93BEd42e2/info.json b/blockchains/ethereum/assets/0xf230b790E05390FC8295F4d3F60332c93BEd42e2/info.json index e578a9b93cb55..55361fc8dc16b 100644 --- a/blockchains/ethereum/assets/0xf230b790E05390FC8295F4d3F60332c93BEd42e2/info.json +++ b/blockchains/ethereum/assets/0xf230b790E05390FC8295F4d3F60332c93BEd42e2/info.json @@ -10,8 +10,8 @@ "id": "0xf230b790E05390FC8295F4d3F60332c93BEd42e2", "links": [ { - "name": "twitter", - "url": "https://twitter.com/trondao" + "name": "x", + "url": "https://x.com/trondao" }, { "name": "github", @@ -33,4 +33,4 @@ "tags": [ "governance" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf280B16EF293D8e534e370794ef26bF312694126/info.json b/blockchains/ethereum/assets/0xf280B16EF293D8e534e370794ef26bF312694126/info.json new file mode 100644 index 0000000000000..77921342fae7d --- /dev/null +++ b/blockchains/ethereum/assets/0xf280B16EF293D8e534e370794ef26bF312694126/info.json @@ -0,0 +1,21 @@ +{ + "name": "Asteroid Shiba", + "website": "https://asteroidshiba-erc.com/", + "description": "$Asteroid is a crypto meme coin that's bringing the adorable spirit of Asteroid, the Shiba Inu floating with the Polaris Dawn crew, into the digital currency realm.", + "explorer": "https://etherscan.io/token/0xf280b16ef293d8e534e370794ef26bf312694126", + "type": "ERC20", + "symbol": "ASTEROID", + "decimals": 9, + "status": "active", + "id": "0xf280B16EF293D8e534e370794ef26bF312694126", + "links": [ + { + "name": "x", + "url": "https://x.com/ashiba_eth?s=21" + }, + { + "name": "telegram", + "url": "https://t.me/AsteroidShibaCTO" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf280B16EF293D8e534e370794ef26bF312694126/logo.png b/blockchains/ethereum/assets/0xf280B16EF293D8e534e370794ef26bF312694126/logo.png new file mode 100644 index 0000000000000..835ea8a38a782 Binary files /dev/null and b/blockchains/ethereum/assets/0xf280B16EF293D8e534e370794ef26bF312694126/logo.png differ diff --git a/blockchains/ethereum/assets/0xf293d23BF2CDc05411Ca0edDD588eb1977e8dcd4/info.json b/blockchains/ethereum/assets/0xf293d23BF2CDc05411Ca0edDD588eb1977e8dcd4/info.json new file mode 100644 index 0000000000000..f552e4f037e51 --- /dev/null +++ b/blockchains/ethereum/assets/0xf293d23BF2CDc05411Ca0edDD588eb1977e8dcd4/info.json @@ -0,0 +1,17 @@ +{ + "name": "Sylo", + "type": "ERC20", + "symbol": "SYLO", + "decimals": 18, + "website": "https://www.sylo.io/", + "description": "Sylo is a decentralised communication and smart-money platform powered by layer 2 micropayments and the $SYLO token.", + "explorer": "https://etherscan.io/token/0xf293d23bf2cdc05411ca0eddd588eb1977e8dcd4", + "status": "active", + "id": "0xf293d23BF2CDc05411Ca0edDD588eb1977e8dcd4", + "links": [ + { + "name": "x", + "url": "https://x.com/sylo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf293d23BF2CDc05411Ca0edDD588eb1977e8dcd4/logo.png b/blockchains/ethereum/assets/0xf293d23BF2CDc05411Ca0edDD588eb1977e8dcd4/logo.png new file mode 100644 index 0000000000000..a78e43cf78d3d Binary files /dev/null and b/blockchains/ethereum/assets/0xf293d23BF2CDc05411Ca0edDD588eb1977e8dcd4/logo.png differ diff --git a/blockchains/ethereum/assets/0xf2c88757f8d03634671208935974B60a2a28Bdb3/info.json b/blockchains/ethereum/assets/0xf2c88757f8d03634671208935974B60a2a28Bdb3/info.json new file mode 100644 index 0000000000000..7a954e91c8f9e --- /dev/null +++ b/blockchains/ethereum/assets/0xf2c88757f8d03634671208935974B60a2a28Bdb3/info.json @@ -0,0 +1,30 @@ +{ + "name": "MyShell Token", + "type": "ERC20", + "symbol": "SHELL", + "decimals": 18, + "description": "MyShell is an AI consumer layer for everyone to build, share, and own AI agents. The team bridges AI and Blockchain through Agentic Frameworks, open-source models, and AI creator community. MyShell also provides users with AI-powered entertainment and utility while offering them shared ownership.", + "website": "https://myshell.ai/", + "explorer": "https://etherscan.io/token/0xf2c88757f8d03634671208935974B60a2a28Bdb3", + "id": "0xf2c88757f8d03634671208935974B60a2a28Bdb3", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/myshell_ai" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/myshell/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/myshell" + } + + ], + "tags": [ + "gamefi" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf2c88757f8d03634671208935974B60a2a28Bdb3/logo.png b/blockchains/ethereum/assets/0xf2c88757f8d03634671208935974B60a2a28Bdb3/logo.png new file mode 100644 index 0000000000000..9112038ef264d Binary files /dev/null and b/blockchains/ethereum/assets/0xf2c88757f8d03634671208935974B60a2a28Bdb3/logo.png differ diff --git a/blockchains/ethereum/assets/0xf34960d9d60be18cC1D5Afc1A6F012A723a28811/info.json b/blockchains/ethereum/assets/0xf34960d9d60be18cC1D5Afc1A6F012A723a28811/info.json index 18636707afff2..097032f4b751e 100644 --- a/blockchains/ethereum/assets/0xf34960d9d60be18cC1D5Afc1A6F012A723a28811/info.json +++ b/blockchains/ethereum/assets/0xf34960d9d60be18cC1D5Afc1A6F012A723a28811/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Kucoin" }, { - "name": "twitter", - "url": "https://twitter.com/KuCoinCom" + "name": "x", + "url": "https://x.com/KuCoinCom" }, { "name": "facebook", diff --git a/blockchains/ethereum/assets/0xf3b9569F82B18aEf890De263B84189bd33EBe452/info.json b/blockchains/ethereum/assets/0xf3b9569F82B18aEf890De263B84189bd33EBe452/info.json new file mode 100644 index 0000000000000..602852f7aac17 --- /dev/null +++ b/blockchains/ethereum/assets/0xf3b9569F82B18aEf890De263B84189bd33EBe452/info.json @@ -0,0 +1,17 @@ +{ + "name": "A Hunters Dream", + "type": "ERC20", + "symbol": "CAW", + "decimals": 18, + "website": "https://caw.is/", + "description": "A Decentralized Social Clearing House ...(AKA) CAW A protocol made up of many on-chain smart contracts for sending messages publically or p2p with a max character limit of 420.", + "explorer": "https://etherscan.io/token/0xf3b9569F82B18aEf890De263B84189bd33EBe452", + "status": "active", + "id": "0xf3b9569F82B18aEf890De263B84189bd33EBe452", + "links": [ + { + "name": "x", + "url": "https://x.com/CommunityCaw" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf3b9569F82B18aEf890De263B84189bd33EBe452/logo.png b/blockchains/ethereum/assets/0xf3b9569F82B18aEf890De263B84189bd33EBe452/logo.png new file mode 100644 index 0000000000000..a292833a41d9b Binary files /dev/null and b/blockchains/ethereum/assets/0xf3b9569F82B18aEf890De263B84189bd33EBe452/logo.png differ diff --git a/blockchains/ethereum/assets/0xf477AC7719e2e659001455cDDA0cc8f3aD10b604/info.json b/blockchains/ethereum/assets/0xf477AC7719e2e659001455cDDA0cc8f3aD10b604/info.json new file mode 100644 index 0000000000000..5c4406d826ee1 --- /dev/null +++ b/blockchains/ethereum/assets/0xf477AC7719e2e659001455cDDA0cc8f3aD10b604/info.json @@ -0,0 +1,21 @@ +{ + "name": "CryptoAutos", + "symbol": "AUTOS", + "type": "ERC20", + "decimals": 18, + "description": "Revolutionizing the car-buying experience, CryptoAutos marketplace empowers car dealers to showcase their vehicles to a global audience while enabling customers to seamlessly purchase cars using digital assets.", + "website": "https://www.cryptoautos.com/", + "explorer": "https://etherscan.io/token/0xf477AC7719e2e659001455cDDA0cc8f3aD10b604", + "status": "active", + "id": "0xf477AC7719e2e659001455cDDA0cc8f3aD10b604", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cryptoautos/" + }, + { + "name": "telegram", + "url": "https://t.me/CryptoAutosOfficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf477AC7719e2e659001455cDDA0cc8f3aD10b604/logo.png b/blockchains/ethereum/assets/0xf477AC7719e2e659001455cDDA0cc8f3aD10b604/logo.png new file mode 100644 index 0000000000000..c1404d119b8c8 Binary files /dev/null and b/blockchains/ethereum/assets/0xf477AC7719e2e659001455cDDA0cc8f3aD10b604/logo.png differ diff --git a/blockchains/ethereum/assets/0xf4922496163E8176CeD096ED80c67ca8ea2168D6/info.json b/blockchains/ethereum/assets/0xf4922496163E8176CeD096ED80c67ca8ea2168D6/info.json index 529491aa6432a..958e140c1df77 100644 --- a/blockchains/ethereum/assets/0xf4922496163E8176CeD096ED80c67ca8ea2168D6/info.json +++ b/blockchains/ethereum/assets/0xf4922496163E8176CeD096ED80c67ca8ea2168D6/info.json @@ -10,8 +10,8 @@ "id": "0xf4922496163E8176CeD096ED80c67ca8ea2168D6", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Collections_NFT" + "name": "x", + "url": "https://x.com/Collections_NFT" }, { "name": "discord", @@ -21,4 +21,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf4CCcfDA0781ae019a9D4e1853DCd3E288Daaa89/info.json b/blockchains/ethereum/assets/0xf4CCcfDA0781ae019a9D4e1853DCd3E288Daaa89/info.json new file mode 100644 index 0000000000000..b22f6d33e303a --- /dev/null +++ b/blockchains/ethereum/assets/0xf4CCcfDA0781ae019a9D4e1853DCd3E288Daaa89/info.json @@ -0,0 +1,25 @@ +{ + "name": "Da Pinchi", + "symbol": "PINCHI", + "type": "ERC20", + "decimals": 9, + "description": "Da Pinchi is a cryptocurrency project developed on the Ethereum blockchain. It distinguishes itself through a dual focus on digital currency utility and social impact, primarily aimed at supporting local fishermen via the Da Pinchi Foundation.", + "website": "https://dapinchi.com", + "explorer": "https://etherscan.io/token/0xf4cccfda0781ae019a9d4e1853dcd3e288daaa89", + "status": "active", + "id": "0xf4CCcfDA0781ae019a9D4e1853DCd3E288Daaa89", + "links": [ + { + "name": "x", + "url": "https://x.com/da_pinchi_eth" + }, + { + "name": "telegram", + "url": "https://t.me/da_pinchi_eth" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/da-pinchi/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf4CCcfDA0781ae019a9D4e1853DCd3E288Daaa89/logo.png b/blockchains/ethereum/assets/0xf4CCcfDA0781ae019a9D4e1853DCd3E288Daaa89/logo.png new file mode 100644 index 0000000000000..a4f85e8cddacd Binary files /dev/null and b/blockchains/ethereum/assets/0xf4CCcfDA0781ae019a9D4e1853DCd3E288Daaa89/logo.png differ diff --git a/blockchains/ethereum/assets/0xf4CD3d3Fda8d7Fd6C5a500203e38640A70Bf9577/info.json b/blockchains/ethereum/assets/0xf4CD3d3Fda8d7Fd6C5a500203e38640A70Bf9577/info.json index 39c0e63df3d9e..21c52f978da2a 100644 --- a/blockchains/ethereum/assets/0xf4CD3d3Fda8d7Fd6C5a500203e38640A70Bf9577/info.json +++ b/blockchains/ethereum/assets/0xf4CD3d3Fda8d7Fd6C5a500203e38640A70Bf9577/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/YfdaiF" + "name": "x", + "url": "https://x.com/YfdaiF" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf4d2888d29D722226FafA5d9B24F9164c092421E/info.json b/blockchains/ethereum/assets/0xf4d2888d29D722226FafA5d9B24F9164c092421E/info.json index acdafac570e89..394b813a9e78d 100644 --- a/blockchains/ethereum/assets/0xf4d2888d29D722226FafA5d9B24F9164c092421E/info.json +++ b/blockchains/ethereum/assets/0xf4d2888d29D722226FafA5d9B24F9164c092421E/info.json @@ -14,8 +14,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/LooksRareNFT" + "name": "x", + "url": "https://x.com/LooksRareNFT" }, { "name": "github", diff --git a/blockchains/ethereum/assets/0xf5b1Fd29d23e98Db2D9EBb8435E1082e3B38FB65/info.json b/blockchains/ethereum/assets/0xf5b1Fd29d23e98Db2D9EBb8435E1082e3B38FB65/info.json index 4ffdb232e909c..01ec30f029917 100644 --- a/blockchains/ethereum/assets/0xf5b1Fd29d23e98Db2D9EBb8435E1082e3B38FB65/info.json +++ b/blockchains/ethereum/assets/0xf5b1Fd29d23e98Db2D9EBb8435E1082e3B38FB65/info.json @@ -10,8 +10,8 @@ "id": "0xf5b1Fd29d23e98Db2D9EBb8435E1082e3B38FB65", "links": [ { - "name": "twitter", - "url": "https://twitter.com/KishimotoInu" + "name": "x", + "url": "https://x.com/KishimotoInu" }, { "name": "telegram", @@ -21,4 +21,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json b/blockchains/ethereum/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json new file mode 100644 index 0000000000000..50ff782049a72 --- /dev/null +++ b/blockchains/ethereum/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json @@ -0,0 +1,21 @@ +{ + "name": "Lorenzo stBTC", + "type": "ERC20", + "symbol": "stBTC", + "decimals": 18, + "website": "https://www.lorenzo-protocol.xyz/", + "description": "To be the premier Bitcoin platform for yield-bearing token issuance, trading, and settlement.", + "explorer": "https://etherscan.io/token/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3", + "status": "active", + "id": "0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3", + "links": [ + { + "name": "x", + "url": "https://x.com/LorenzoProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/lorenzoprotocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png b/blockchains/ethereum/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png new file mode 100644 index 0000000000000..d0c4e5f85eb2b Binary files /dev/null and b/blockchains/ethereum/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png differ diff --git a/blockchains/ethereum/assets/0xf680429328caaaCabee69b7A9FdB21a71419c063/info.json b/blockchains/ethereum/assets/0xf680429328caaaCabee69b7A9FdB21a71419c063/info.json index 0a8c99f053a21..0f45a5bd73d30 100644 --- a/blockchains/ethereum/assets/0xf680429328caaaCabee69b7A9FdB21a71419c063/info.json +++ b/blockchains/ethereum/assets/0xf680429328caaaCabee69b7A9FdB21a71419c063/info.json @@ -10,8 +10,8 @@ "id": "0xf680429328caaaCabee69b7A9FdB21a71419c063", "links": [ { - "name": "twitter", - "url": "https://twitter.com/butterflyproto" + "name": "x", + "url": "https://x.com/butterflyproto" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/info.json b/blockchains/ethereum/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/info.json index a97ee6021aac9..b87fc0b0f8c32 100644 --- a/blockchains/ethereum/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/info.json +++ b/blockchains/ethereum/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/c0inhub" }, { - "name": "twitter", - "url": "https://twitter.com/coinhubchb" + "name": "x", + "url": "https://x.com/coinhubchb" }, { "name": "facebook", @@ -25,4 +25,4 @@ "tags": [ "staking-native" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf6b1117ec07684D3958caD8BEb1b302bfD21103f/info.json b/blockchains/ethereum/assets/0xf6b1117ec07684D3958caD8BEb1b302bfD21103f/info.json new file mode 100644 index 0000000000000..1acecfe536343 --- /dev/null +++ b/blockchains/ethereum/assets/0xf6b1117ec07684D3958caD8BEb1b302bfD21103f/info.json @@ -0,0 +1,24 @@ +{ + "name": "Tesla (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "TSLAon is the Ondo Tokenized version of Tesla, giving tokenholders economic exposure similar to holding TSLA and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xf6b1117ec07684D3958caD8BEb1b302bfD21103f", + "type": "ERC20", + "symbol": "TSLAon", + "decimals": 18, + "status": "active", + "id": "0xf6b1117ec07684D3958caD8BEb1b302bfD21103f", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tesla-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf6b1117ec07684D3958caD8BEb1b302bfD21103f/logo.png b/blockchains/ethereum/assets/0xf6b1117ec07684D3958caD8BEb1b302bfD21103f/logo.png new file mode 100644 index 0000000000000..26fbf04bf9260 Binary files /dev/null and b/blockchains/ethereum/assets/0xf6b1117ec07684D3958caD8BEb1b302bfD21103f/logo.png differ diff --git a/blockchains/ethereum/assets/0xf7168c8AbB0ff80116413a8d95396BBdC318A3fF/info.json b/blockchains/ethereum/assets/0xf7168c8AbB0ff80116413a8d95396BBdC318A3fF/info.json index 53389e83ce0a3..a8f5599d1d538 100644 --- a/blockchains/ethereum/assets/0xf7168c8AbB0ff80116413a8d95396BBdC318A3fF/info.json +++ b/blockchains/ethereum/assets/0xf7168c8AbB0ff80116413a8d95396BBdC318A3fF/info.json @@ -10,8 +10,8 @@ "id": "0xf7168c8AbB0ff80116413a8d95396BBdC318A3fF", "links": [ { - "name": "twitter", - "url": "https://twitter.com/kingdomofkek" + "name": "x", + "url": "https://x.com/kingdomofkek" }, { "name": "telegram", @@ -25,4 +25,4 @@ "tags": [ "memes" ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf72936FA8afC808c99eb76E620A98DDC6a7A53d1/info.json b/blockchains/ethereum/assets/0xf72936FA8afC808c99eb76E620A98DDC6a7A53d1/info.json new file mode 100644 index 0000000000000..cd611b8c98964 --- /dev/null +++ b/blockchains/ethereum/assets/0xf72936FA8afC808c99eb76E620A98DDC6a7A53d1/info.json @@ -0,0 +1,28 @@ +{ + "name": "Ford Motor (Ondo Tokenized)", + "type": "ERC20", + "symbol": "Fon", + "decimals": 18, + "description": "Fon is the Ondo Tokenized version of Ford Motor, giving tokenholders economic exposure similar to holding F and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xf72936FA8afC808c99eb76E620A98DDC6a7A53d1", + "status": "active", + "id": "0xf72936FA8afC808c99eb76E620A98DDC6a7A53d1", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ford-motor-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ford-motor-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf72936FA8afC808c99eb76E620A98DDC6a7A53d1/logo.png b/blockchains/ethereum/assets/0xf72936FA8afC808c99eb76E620A98DDC6a7A53d1/logo.png new file mode 100644 index 0000000000000..32e8069f94a24 Binary files /dev/null and b/blockchains/ethereum/assets/0xf72936FA8afC808c99eb76E620A98DDC6a7A53d1/logo.png differ diff --git a/blockchains/ethereum/assets/0xf72FCd9DCF0190923Fadd44811E240Ef4533fc86/info.json b/blockchains/ethereum/assets/0xf72FCd9DCF0190923Fadd44811E240Ef4533fc86/info.json index a8d9cb935c778..fc3f3f3c6f05c 100644 --- a/blockchains/ethereum/assets/0xf72FCd9DCF0190923Fadd44811E240Ef4533fc86/info.json +++ b/blockchains/ethereum/assets/0xf72FCd9DCF0190923Fadd44811E240Ef4533fc86/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/MirrorProtocol" + "name": "x", + "url": "https://x.com/MirrorProtocol" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xf8173a39c56a554837C4C7f104153A005D284D11/info.json b/blockchains/ethereum/assets/0xf8173a39c56a554837C4C7f104153A005D284D11/info.json new file mode 100644 index 0000000000000..a33c089fbf19a --- /dev/null +++ b/blockchains/ethereum/assets/0xf8173a39c56a554837C4C7f104153A005D284D11/info.json @@ -0,0 +1,25 @@ +{ + "name": "Open Campus", + "type": "ERC20", + "symbol": "EDU", + "decimals": 18, + "description": "The Open Campus Protocol is a decentralized solution for educators, content creators, parents, students, and co-publishers designed to address the major challenges in education today. Despite the critical role of educators in shaping the future generation, they are often undervalued and underpaid. Additionally, parents frequently lack control over their children's educational content.", + "website": "https://www.opencampus.xyz/", + "explorer": "https://etherscan.io/token/0xf8173a39c56a554837c4c7f104153a005d284d11", + "id": "0xf8173a39c56a554837C4C7f104153A005D284D11", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/opencampus_xyz" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/open-campus/" + } + ], + "tags": [ + "governance" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf8173a39c56a554837C4C7f104153A005D284D11/logo.png b/blockchains/ethereum/assets/0xf8173a39c56a554837C4C7f104153A005D284D11/logo.png new file mode 100644 index 0000000000000..27489a3b5fb38 Binary files /dev/null and b/blockchains/ethereum/assets/0xf8173a39c56a554837C4C7f104153A005D284D11/logo.png differ diff --git a/blockchains/ethereum/assets/0xf8428A5a99cb452Ea50B6Ea70b052DaA3dF4934F/info.json b/blockchains/ethereum/assets/0xf8428A5a99cb452Ea50B6Ea70b052DaA3dF4934F/info.json new file mode 100644 index 0000000000000..7f80d823b3a74 --- /dev/null +++ b/blockchains/ethereum/assets/0xf8428A5a99cb452Ea50B6Ea70b052DaA3dF4934F/info.json @@ -0,0 +1,28 @@ +{ + "name": "zkRace", + "website": "https://zkrace.com/", + "description": "zkRace is a complete NFT horse racing ecosystem where you can participate in horse races, breed NFT horses with unique characteristics, build your own NFT hippodrome", + "explorer": "https://etherscan.io/token/0xf8428A5a99cb452Ea50B6Ea70b052DaA3dF4934F", + "type": "ERC20", + "symbol": "ZERC", + "decimals": 18, + "status": "active", + "id": "0xf8428A5a99cb452Ea50B6Ea70b052DaA3dF4934F", + "links": [ + { + "name": "x", + "url": "https://x.com/zk_race" + }, + { + "name": "telegram", + "url": "https://t.me/zk_Race" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/derace/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf8428A5a99cb452Ea50B6Ea70b052DaA3dF4934F/logo.png b/blockchains/ethereum/assets/0xf8428A5a99cb452Ea50B6Ea70b052DaA3dF4934F/logo.png new file mode 100644 index 0000000000000..e428af9216608 Binary files /dev/null and b/blockchains/ethereum/assets/0xf8428A5a99cb452Ea50B6Ea70b052DaA3dF4934F/logo.png differ diff --git a/blockchains/ethereum/assets/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8/info.json b/blockchains/ethereum/assets/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8/info.json new file mode 100644 index 0000000000000..a764a63633241 --- /dev/null +++ b/blockchains/ethereum/assets/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8/info.json @@ -0,0 +1,24 @@ +{ + "name": "Intel tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Intel xStock (INTCx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. INTCx tracks the price of Intel Corporation (the underlying). INTCx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Intel Corporation, whilst maintaining the benefits of blockchain technology. Intel Corporation is a multinational technology company primarily focused on designing, manufacturing, and selling computer components like CPUs and related products. They are a major player in the semiconductor industry.", + "explorer": "https://etherscan.io/token/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8", + "type": "ERC20", + "symbol": "INTCX", + "decimals": 18, + "status": "active", + "id": "0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/intel-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8/logo.png b/blockchains/ethereum/assets/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8/logo.png new file mode 100644 index 0000000000000..c1902f7a0f2ba Binary files /dev/null and b/blockchains/ethereum/assets/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8/logo.png differ diff --git a/blockchains/ethereum/assets/0xf8C3527CC04340b208C854E985240c02F7B7793f/info.json b/blockchains/ethereum/assets/0xf8C3527CC04340b208C854E985240c02F7B7793f/info.json index 37e67e0232984..7eaff637de0d1 100644 --- a/blockchains/ethereum/assets/0xf8C3527CC04340b208C854E985240c02F7B7793f/info.json +++ b/blockchains/ethereum/assets/0xf8C3527CC04340b208C854E985240c02F7B7793f/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/frontierwallet" }, { - "name": "twitter", - "url": "https://twitter.com/FrontierDotXYZ" + "name": "x", + "url": "https://x.com/FrontierDotXYZ" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xf8E9F10c22840b613cdA05A0c5Fdb59A4d6cd7eF/info.json b/blockchains/ethereum/assets/0xf8E9F10c22840b613cdA05A0c5Fdb59A4d6cd7eF/info.json index 00fb00f590024..3e7c8a10cc5c7 100644 --- a/blockchains/ethereum/assets/0xf8E9F10c22840b613cdA05A0c5Fdb59A4d6cd7eF/info.json +++ b/blockchains/ethereum/assets/0xf8E9F10c22840b613cdA05A0c5Fdb59A4d6cd7eF/info.json @@ -10,8 +10,8 @@ "id": "0xf8E9F10c22840b613cdA05A0c5Fdb59A4d6cd7eF", "links": [ { - "name": "twitter", - "url": "https://twitter.com/dogsofelon" + "name": "x", + "url": "https://x.com/dogsofelon" }, { "name": "github", @@ -49,4 +49,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf8ebf4849F1Fa4FaF0DFF2106A173D3A6CB2eB3A/info.json b/blockchains/ethereum/assets/0xf8ebf4849F1Fa4FaF0DFF2106A173D3A6CB2eB3A/info.json new file mode 100644 index 0000000000000..a64b98356a0e4 --- /dev/null +++ b/blockchains/ethereum/assets/0xf8ebf4849F1Fa4FaF0DFF2106A173D3A6CB2eB3A/info.json @@ -0,0 +1,25 @@ +{ + "name": "TROLL", + "website": "https://www.trollface.vip", + "description": "Your fave childhood meme reborn, 100% safe & pure fun. Get ready 2 troll on! Renounced contract, LP burned", + "explorer": "https://etherscan.io/token/0xf8ebf4849F1Fa4FaF0DFF2106A173D3A6CB2eB3A", + "type": "ERC20", + "symbol": "TROLL", + "decimals": 18, + "status": "active", + "id": "0xf8ebf4849F1Fa4FaF0DFF2106A173D3A6CB2eB3A", + "links": [ + { + "name": "x", + "url": "https://x.com/trollerc20" + }, + { + "name": "telegram", + "url": "https://t.me/TrollETH" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/troll-new/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf8ebf4849F1Fa4FaF0DFF2106A173D3A6CB2eB3A/logo.png b/blockchains/ethereum/assets/0xf8ebf4849F1Fa4FaF0DFF2106A173D3A6CB2eB3A/logo.png new file mode 100644 index 0000000000000..09b734f709b67 Binary files /dev/null and b/blockchains/ethereum/assets/0xf8ebf4849F1Fa4FaF0DFF2106A173D3A6CB2eB3A/logo.png differ diff --git a/blockchains/ethereum/assets/0xf911a7ec46a2c6fa49193212fe4a2a9B95851c27/info.json b/blockchains/ethereum/assets/0xf911a7ec46a2c6fa49193212fe4a2a9B95851c27/info.json index 363412d3d4803..5df937867c684 100644 --- a/blockchains/ethereum/assets/0xf911a7ec46a2c6fa49193212fe4a2a9B95851c27/info.json +++ b/blockchains/ethereum/assets/0xf911a7ec46a2c6fa49193212fe4a2a9B95851c27/info.json @@ -30,7 +30,7 @@ "reddit": "", "slack": "", "telegram": "https://t.me/antiample_official", - "twitter": "https://twitter.com/burn_the_state", + "x": "https://x.com/burn_the_state", "youtube": "" }, "status": "active", diff --git a/blockchains/ethereum/assets/0xf920e4F3FBEF5B3aD0A25017514B769bDc4Ac135/info.json b/blockchains/ethereum/assets/0xf920e4F3FBEF5B3aD0A25017514B769bDc4Ac135/info.json index 543d6e381ecbe..8d546d55ee927 100644 --- a/blockchains/ethereum/assets/0xf920e4F3FBEF5B3aD0A25017514B769bDc4Ac135/info.json +++ b/blockchains/ethereum/assets/0xf920e4F3FBEF5B3aD0A25017514B769bDc4Ac135/info.json @@ -17,8 +17,8 @@ "url": "https://getbabb.com/wp-content/uploads/2021/03/BABB-Whitepaper.pdf" }, { - "name": "twitter", - "url": "https://twitter.com/getbabb" + "name": "x", + "url": "https://x.com/getbabb" }, { "name": "facebook", @@ -45,4 +45,4 @@ "url": "https://coingecko.com/en/coins/babb" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf939E0A03FB07F59A73314E73794Be0E57ac1b4E/info.json b/blockchains/ethereum/assets/0xf939E0A03FB07F59A73314E73794Be0E57ac1b4E/info.json new file mode 100644 index 0000000000000..f2a110df9b661 --- /dev/null +++ b/blockchains/ethereum/assets/0xf939E0A03FB07F59A73314E73794Be0E57ac1b4E/info.json @@ -0,0 +1,21 @@ +{ + "name": "Curve.Finance USD Stablecoin", + "website": "https://www.curve.finance/", + "description": "crvUSD is a collateralized-debt-position (CDP) stablecoin pegged to the US Dollar", + "explorer": "https://etherscan.io/token/0xf939e0a03fb07f59a73314e73794be0e57ac1b4e", + "type": "ERC20", + "symbol": "crvUSD", + "decimals": 18, + "status": "active", + "id": "0xf939E0A03FB07F59A73314E73794Be0E57ac1b4E", + "links": [ + { + "name": "telegram", + "url": "https://t.me/curvefi" + }, + { + "name": "x", + "url": "https://x.com/CurveFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf939E0A03FB07F59A73314E73794Be0E57ac1b4E/logo.png b/blockchains/ethereum/assets/0xf939E0A03FB07F59A73314E73794Be0E57ac1b4E/logo.png new file mode 100644 index 0000000000000..6e72a6aebbe6c Binary files /dev/null and b/blockchains/ethereum/assets/0xf939E0A03FB07F59A73314E73794Be0E57ac1b4E/logo.png differ diff --git a/blockchains/ethereum/assets/0xf94e7d0710709388bCe3161C32B4eEA56d3f91CC/info.json b/blockchains/ethereum/assets/0xf94e7d0710709388bCe3161C32B4eEA56d3f91CC/info.json new file mode 100644 index 0000000000000..4d5ac5230ea7e --- /dev/null +++ b/blockchains/ethereum/assets/0xf94e7d0710709388bCe3161C32B4eEA56d3f91CC/info.json @@ -0,0 +1,21 @@ +{ + "name": "Destra Network", + "type": "ERC20", + "symbol": "DSync", + "decimals": 18, + "website": "https://www.destra.network/", + "description": "Destra Network offers a one-step solution for all your DePIN and AI computing needs.", + "explorer": "https://etherscan.io/token/0xf94e7d0710709388bce3161c32b4eea56d3f91cc", + "status": "active", + "id": "0xf94e7d0710709388bCe3161C32B4eEA56d3f91CC", + "links": [ + { + "name": "x", + "url": "https://x.com/destranetwork" + }, + { + "name": "telegram", + "url": "https://t.me/DestraNetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf94e7d0710709388bCe3161C32B4eEA56d3f91CC/logo.png b/blockchains/ethereum/assets/0xf94e7d0710709388bCe3161C32B4eEA56d3f91CC/logo.png new file mode 100644 index 0000000000000..afd4e597da027 Binary files /dev/null and b/blockchains/ethereum/assets/0xf94e7d0710709388bCe3161C32B4eEA56d3f91CC/logo.png differ diff --git a/blockchains/ethereum/assets/0xf951E335afb289353dc249e82926178EaC7DEd78/info.json b/blockchains/ethereum/assets/0xf951E335afb289353dc249e82926178EaC7DEd78/info.json new file mode 100644 index 0000000000000..99b8396ad4bf5 --- /dev/null +++ b/blockchains/ethereum/assets/0xf951E335afb289353dc249e82926178EaC7DEd78/info.json @@ -0,0 +1,25 @@ +{ + "name": "swETH", + "website": "https://www.swellnetwork.io/", + "description": "swETH is a decentralized and non-custodial liquid staking token that provides users with the opportunity to earn staking rewards while retaining liquidity over their Ethereum holdings.", + "explorer": "https://etherscan.io/token/0xf951e335afb289353dc249e82926178eac7ded78", + "type": "ERC20", + "symbol": "swETH", + "decimals": 18, + "status": "active", + "id": "0xf951E335afb289353dc249e82926178EaC7DEd78", + "links": [ + { + "name": "x", + "url": "https://x.com/swellnetworkio?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor" + }, + { + "name": "github", + "url": "https://github.com/SwellNetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/swell-sweth/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf951E335afb289353dc249e82926178EaC7DEd78/logo.png b/blockchains/ethereum/assets/0xf951E335afb289353dc249e82926178EaC7DEd78/logo.png new file mode 100644 index 0000000000000..9dd2b11b04eff Binary files /dev/null and b/blockchains/ethereum/assets/0xf951E335afb289353dc249e82926178EaC7DEd78/logo.png differ diff --git a/blockchains/ethereum/assets/0xf98Ec282300892b3518B5cB996012b18d9B7D435/info.json b/blockchains/ethereum/assets/0xf98Ec282300892b3518B5cB996012b18d9B7D435/info.json new file mode 100644 index 0000000000000..994784667c8dd --- /dev/null +++ b/blockchains/ethereum/assets/0xf98Ec282300892b3518B5cB996012b18d9B7D435/info.json @@ -0,0 +1,24 @@ +{ + "name": "Global X Uranium ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "URAon", + "decimals": 18, + "description": "URAon is the Ondo Tokenized version of the Global X Uranium ETF, giving tokenholders economic exposure similar to holding URA and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xf98Ec282300892b3518B5cB996012b18d9B7D435", + "status": "active", + "id": "0xf98Ec282300892b3518B5cB996012b18d9B7D435", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/global-x-uranium-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf98Ec282300892b3518B5cB996012b18d9B7D435/logo.png b/blockchains/ethereum/assets/0xf98Ec282300892b3518B5cB996012b18d9B7D435/logo.png new file mode 100644 index 0000000000000..c9a98e6a6f34c Binary files /dev/null and b/blockchains/ethereum/assets/0xf98Ec282300892b3518B5cB996012b18d9B7D435/logo.png differ diff --git a/blockchains/ethereum/assets/0xf9FBE825BFB2bF3E387af0Dc18caC8d87F29DEa8/info.json b/blockchains/ethereum/assets/0xf9FBE825BFB2bF3E387af0Dc18caC8d87F29DEa8/info.json index 61f2c4eb559c2..f60d9b36608f4 100644 --- a/blockchains/ethereum/assets/0xf9FBE825BFB2bF3E387af0Dc18caC8d87F29DEa8/info.json +++ b/blockchains/ethereum/assets/0xf9FBE825BFB2bF3E387af0Dc18caC8d87F29DEa8/info.json @@ -16,8 +16,8 @@ "url": "https://github.com/BotOcean" }, { - "name": "twitter", - "url": "https://twitter.com/botoceaninc" + "name": "x", + "url": "https://x.com/botoceaninc" }, { "name": "whitepaper", diff --git a/blockchains/ethereum/assets/0xfA5047c9c78B8877af97BDcb85Db743fD7313d4a/info.json b/blockchains/ethereum/assets/0xfA5047c9c78B8877af97BDcb85Db743fD7313d4a/info.json index 01d40fe0f19ac..363c956efcd16 100644 --- a/blockchains/ethereum/assets/0xfA5047c9c78B8877af97BDcb85Db743fD7313d4a/info.json +++ b/blockchains/ethereum/assets/0xfA5047c9c78B8877af97BDcb85Db743fD7313d4a/info.json @@ -10,8 +10,8 @@ "id": "0xfA5047c9c78B8877af97BDcb85Db743fD7313d4a", "links": [ { - "name": "twitter", - "url": "https://twitter.com/rook" + "name": "x", + "url": "https://x.com/rook" }, { "name": "discord", @@ -29,4 +29,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfA690b2B6f6b4dA518035F1d0aa8B968c23341bb/info.json b/blockchains/ethereum/assets/0xfA690b2B6f6b4dA518035F1d0aa8B968c23341bb/info.json new file mode 100644 index 0000000000000..dc4fbc5802f5b --- /dev/null +++ b/blockchains/ethereum/assets/0xfA690b2B6f6b4dA518035F1d0aa8B968c23341bb/info.json @@ -0,0 +1,24 @@ +{ + "name": "Franklin Income Equity Focus ETF (Ondo Tokenized)", + "type": "ERC20", + "symbol": "INCEon", + "decimals": 18, + "description": "INCEon is the Ondo Tokenized version of the Franklin Income Equity Focus ETF, giving tokenholders economic exposure similar to holding INCE and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xfA690b2B6f6b4dA518035F1d0aa8B968c23341bb", + "status": "active", + "id": "0xfA690b2B6f6b4dA518035F1d0aa8B968c23341bb", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/franklin-income-equity-focus-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfA690b2B6f6b4dA518035F1d0aa8B968c23341bb/logo.png b/blockchains/ethereum/assets/0xfA690b2B6f6b4dA518035F1d0aa8B968c23341bb/logo.png new file mode 100644 index 0000000000000..34299b5ba23f3 Binary files /dev/null and b/blockchains/ethereum/assets/0xfA690b2B6f6b4dA518035F1d0aa8B968c23341bb/logo.png differ diff --git a/blockchains/ethereum/assets/0xfA704148D516b209D52C2D75f239274C8f8EAF1A/info.json b/blockchains/ethereum/assets/0xfA704148D516b209D52C2D75f239274C8f8EAF1A/info.json new file mode 100644 index 0000000000000..8036730ef3c97 --- /dev/null +++ b/blockchains/ethereum/assets/0xfA704148D516b209D52C2D75f239274C8f8EAF1A/info.json @@ -0,0 +1,21 @@ +{ + "name": "wOCTA", + "type": "ERC20", + "symbol": "wOCTA", + "decimals": 18, + "website": "https://octa.space/", + "description": "OctaSpace is a distributed computing project, offering a cutting-edge platform with a range of services, as well as ready-to-launch bespoke solutions such as lightning-fast rendering, decentralized VPN, AI training tools, and decentralized computing services.", + "explorer": "https://etherscan.io/token/0xfA704148D516b209D52C2D75f239274C8f8EAF1A", + "status": "active", + "id": "0xfA704148D516b209D52C2D75f239274C8f8EAF1A", + "links": [ + { + "name": "x", + "url": "https://x.com/octa_space" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/octaspace/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfA704148D516b209D52C2D75f239274C8f8EAF1A/logo.png b/blockchains/ethereum/assets/0xfA704148D516b209D52C2D75f239274C8f8EAF1A/logo.png new file mode 100644 index 0000000000000..f5ab2960250ea Binary files /dev/null and b/blockchains/ethereum/assets/0xfA704148D516b209D52C2D75f239274C8f8EAF1A/logo.png differ diff --git a/blockchains/ethereum/assets/0xfAbA6f8e4a5E8Ab82F62fe7C39859FA577269BE3/info.json b/blockchains/ethereum/assets/0xfAbA6f8e4a5E8Ab82F62fe7C39859FA577269BE3/info.json new file mode 100644 index 0000000000000..855ec8941773f --- /dev/null +++ b/blockchains/ethereum/assets/0xfAbA6f8e4a5E8Ab82F62fe7C39859FA577269BE3/info.json @@ -0,0 +1,25 @@ +{ + "name": "Ondo", + "website": "https://ondo.finance/", + "description": "Ondo Finance is a decentralized investment banking protocol consisting of on-chain financial products that connect investors with capital demand broadening access, improving transparency, and reducing cost versus the status quo. The ONDO token will govern the Ondo Finance protocol.", + "explorer": "https://etherscan.io/token/0xfAbA6f8e4a5E8Ab82F62fe7C39859FA577269BE3", + "type": "ERC20", + "symbol": "ONDO", + "decimals": 18, + "status": "active", + "id": "0xfAbA6f8e4a5E8Ab82F62fe7C39859FA577269BE3", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "telegram", + "url": "https://t.me/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ondo-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfAbA6f8e4a5E8Ab82F62fe7C39859FA577269BE3/logo.png b/blockchains/ethereum/assets/0xfAbA6f8e4a5E8Ab82F62fe7C39859FA577269BE3/logo.png new file mode 100644 index 0000000000000..1aaa5815d4ee1 Binary files /dev/null and b/blockchains/ethereum/assets/0xfAbA6f8e4a5E8Ab82F62fe7C39859FA577269BE3/logo.png differ diff --git a/blockchains/ethereum/assets/0xfAd45E47083e4607302aa43c65fB3106F1cd7607/info.json b/blockchains/ethereum/assets/0xfAd45E47083e4607302aa43c65fB3106F1cd7607/info.json index b62fb964084c3..09cbecaa1dc54 100644 --- a/blockchains/ethereum/assets/0xfAd45E47083e4607302aa43c65fB3106F1cd7607/info.json +++ b/blockchains/ethereum/assets/0xfAd45E47083e4607302aa43c65fB3106F1cd7607/info.json @@ -21,8 +21,8 @@ "url": "https://discord.com/invite/hoge" }, { - "name": "twitter", - "url": "https://twitter.com/hogefinance" + "name": "x", + "url": "https://x.com/hogefinance" }, { "name": "telegram", diff --git a/blockchains/ethereum/assets/0xfB7B4564402E5500dB5bB6d63Ae671302777C75a/info.json b/blockchains/ethereum/assets/0xfB7B4564402E5500dB5bB6d63Ae671302777C75a/info.json index 29889d29c40a0..6240d8277d78c 100644 --- a/blockchains/ethereum/assets/0xfB7B4564402E5500dB5bB6d63Ae671302777C75a/info.json +++ b/blockchains/ethereum/assets/0xfB7B4564402E5500dB5bB6d63Ae671302777C75a/info.json @@ -10,8 +10,8 @@ "id": "0xfB7B4564402E5500dB5bB6d63Ae671302777C75a", "links": [ { - "name": "twitter", - "url": "https://twitter.com/DexToolsapp" + "name": "x", + "url": "https://x.com/DexToolsapp" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A/info.json b/blockchains/ethereum/assets/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A/info.json new file mode 100644 index 0000000000000..2d7343c25ad22 --- /dev/null +++ b/blockchains/ethereum/assets/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A/info.json @@ -0,0 +1,24 @@ +{ + "name": "AbbVie tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "AbbVie xStock (ABBVx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. ABBVx tracks the price of AbbVie Inc. (the underlying). ABBVx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of AbbVie Inc., whilst maintaining the benefits of blockchain technology. AbbVie Inc. (ABBV) is a global biopharmaceutical company focused on developing and delivering innovative therapies in areas such as immunology, oncology, neuroscience, and eye care.", + "explorer": "https://etherscan.io/token/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A", + "type": "ERC20", + "symbol": "ABBVX", + "decimals": 18, + "status": "active", + "id": "0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abbvie-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A/logo.png b/blockchains/ethereum/assets/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A/logo.png new file mode 100644 index 0000000000000..ab73b87a6dd53 Binary files /dev/null and b/blockchains/ethereum/assets/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A/logo.png differ diff --git a/blockchains/ethereum/assets/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86/info.json b/blockchains/ethereum/assets/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86/info.json new file mode 100644 index 0000000000000..73eb8ea4daefb --- /dev/null +++ b/blockchains/ethereum/assets/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86/info.json @@ -0,0 +1,24 @@ +{ + "name": "TQQQ tokenized ETF (xStock)", + "website": "https://assets.backed.fi/products", + "description": "TQQQ xStock (TQQQx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. TQQQx tracks the price of ProShares UltraPro QQQ (the underlying). TQQQx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the ETF price of ProShares UltraPro QQQ, whilst maintaining the benefits of blockchain technology. ProShares UltraPro QQQ (TQQQ) is a leveraged exchange-traded fund designed to deliver three times the daily performance of the Nasdaq-100 Index.", + "explorer": "https://etherscan.io/token/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86", + "type": "ERC20", + "symbol": "TQQQX", + "decimals": 18, + "status": "active", + "id": "0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tqqq-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86/logo.png b/blockchains/ethereum/assets/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86/logo.png new file mode 100644 index 0000000000000..38cc90156e20e Binary files /dev/null and b/blockchains/ethereum/assets/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86/logo.png differ diff --git a/blockchains/ethereum/assets/0xfDFDf5db2F4A72cb754FfA8896EA012dC2cc0F5e/info.json b/blockchains/ethereum/assets/0xfDFDf5db2F4A72cb754FfA8896EA012dC2cc0F5e/info.json new file mode 100644 index 0000000000000..b0ed79919d8ae --- /dev/null +++ b/blockchains/ethereum/assets/0xfDFDf5db2F4A72cb754FfA8896EA012dC2cc0F5e/info.json @@ -0,0 +1,28 @@ +{ + "name": "Rigetti Computing (Ondo Tokenized)", + "type": "ERC20", + "symbol": "RGTIon", + "decimals": 18, + "description": "RGTIon is the Ondo Tokenized version of Rigetti Computing, giving tokenholders economic exposure similar to holding RGTI and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://etherscan.io/token/0xfDFDf5db2F4A72cb754FfA8896EA012dC2cc0F5e", + "status": "active", + "id": "0xfDFDf5db2F4A72cb754FfA8896EA012dC2cc0F5e", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/rigetti-computing-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rigetti-computing-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfDFDf5db2F4A72cb754FfA8896EA012dC2cc0F5e/logo.png b/blockchains/ethereum/assets/0xfDFDf5db2F4A72cb754FfA8896EA012dC2cc0F5e/logo.png new file mode 100644 index 0000000000000..c9ccc6c6c8245 Binary files /dev/null and b/blockchains/ethereum/assets/0xfDFDf5db2F4A72cb754FfA8896EA012dC2cc0F5e/logo.png differ diff --git a/blockchains/ethereum/assets/0xfDb46864A7C476F0914c5E82CdED3364a9F56F8a/info.json b/blockchains/ethereum/assets/0xfDb46864A7C476F0914c5E82CdED3364a9F56F8a/info.json new file mode 100644 index 0000000000000..fcc68eb7f0a49 --- /dev/null +++ b/blockchains/ethereum/assets/0xfDb46864A7C476F0914c5E82CdED3364a9F56F8a/info.json @@ -0,0 +1,24 @@ +{ + "name": "SharpLink Gaming (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "SBETon is the Ondo Tokenized version of SharpLink Gaming, Inc, giving tokenholders economic exposure similar to holding SBET and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xfDb46864A7C476F0914c5E82CdED3364a9F56F8a", + "type": "ERC20", + "symbol": "SBETon", + "decimals": 18, + "status": "active", + "id": "0xfDb46864A7C476F0914c5E82CdED3364a9F56F8a", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sharplink-gaming-inc-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfDb46864A7C476F0914c5E82CdED3364a9F56F8a/logo.png b/blockchains/ethereum/assets/0xfDb46864A7C476F0914c5E82CdED3364a9F56F8a/logo.png new file mode 100644 index 0000000000000..0d5ffdea8fb12 Binary files /dev/null and b/blockchains/ethereum/assets/0xfDb46864A7C476F0914c5E82CdED3364a9F56F8a/logo.png differ diff --git a/blockchains/ethereum/assets/0xfE3690FD78D9418FF6D381Ec0A61EDa4b0446c35/info.json b/blockchains/ethereum/assets/0xfE3690FD78D9418FF6D381Ec0A61EDa4b0446c35/info.json new file mode 100644 index 0000000000000..aee1d6eb087d8 --- /dev/null +++ b/blockchains/ethereum/assets/0xfE3690FD78D9418FF6D381Ec0A61EDa4b0446c35/info.json @@ -0,0 +1,21 @@ +{ + "name": "MosesCoin", + "type": "ERC20", + "symbol": "Moses", + "decimals": 18, + "website": "https://mosescoin.vip", + "description": "We are a community driven coin with biblical attributes. This will be a journey to “Part the Seas” of the SEC and overreaching government and to create a safe haven from the future dollar collapse. $Mosescoin will be used as a platform to take back our God given rights, to pursue crypto ventures, and to create protection for those who have faith in taking the journey with Moses.", + "explorer": "https://etherscan.io/token/0xfe3690fd78d9418ff6d381ec0a61eda4b0446c35", + "status": "active", + "id": "0xfE3690FD78D9418FF6D381Ec0A61EDa4b0446c35", + "links": [ + { + "name": "telegram", + "url": "https://t.me/+BogQo4kR1jk2MGY5" + }, + { + "name": "x", + "url": "https://x.com/MosesCoin777" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfE3690FD78D9418FF6D381Ec0A61EDa4b0446c35/logo.png b/blockchains/ethereum/assets/0xfE3690FD78D9418FF6D381Ec0A61EDa4b0446c35/logo.png new file mode 100644 index 0000000000000..f7ee1d61e88a9 Binary files /dev/null and b/blockchains/ethereum/assets/0xfE3690FD78D9418FF6D381Ec0A61EDa4b0446c35/logo.png differ diff --git a/blockchains/ethereum/assets/0xfE39C384D702914127a005523f9915ADDB9bd59b/info.json b/blockchains/ethereum/assets/0xfE39C384D702914127a005523f9915ADDB9bd59b/info.json new file mode 100644 index 0000000000000..7b9883e699d4c --- /dev/null +++ b/blockchains/ethereum/assets/0xfE39C384D702914127a005523f9915ADDB9bd59b/info.json @@ -0,0 +1,33 @@ +{ + "name": "Hippocrat", + "website": "https://hippocrat.io/", + "description": "Hippocrat is pursuing to aggregate global health data and build data economy upon decentralized governance and open cooperation. Hippocrat token is an incentive for data provider and utilized to build and maintain Hippocrat DAO and protocol in a way the project can be permanently sustainable.", + "explorer": "https://etherscan.io/token/0xfE39C384D702914127a005523f9915ADDB9bd59b", + "type": "ERC20", + "symbol": "HPO", + "decimals": 18, + "status": "active", + "id": "0xfE39C384D702914127a005523f9915ADDB9bd59b", + "links": [ + { + "name": "github", + "url": "https://github.com/hippocrat-dao" + }, + { + "name": "x", + "url": "https://x.com/Hippocrat_io" + }, + { + "name": "telegram", + "url": "https://t.me/nexofinance" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.hippocrat.io/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hippocrat/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfE39C384D702914127a005523f9915ADDB9bd59b/logo.png b/blockchains/ethereum/assets/0xfE39C384D702914127a005523f9915ADDB9bd59b/logo.png new file mode 100644 index 0000000000000..bc67c8628bee5 Binary files /dev/null and b/blockchains/ethereum/assets/0xfE39C384D702914127a005523f9915ADDB9bd59b/logo.png differ diff --git a/blockchains/ethereum/assets/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB/info.json b/blockchains/ethereum/assets/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB/info.json new file mode 100644 index 0000000000000..b2255621faba7 --- /dev/null +++ b/blockchains/ethereum/assets/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB/info.json @@ -0,0 +1,24 @@ +{ + "name": "Circle tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Circle tokenized stock (xStock) (CRCLX) is a cryptocurrency and operates on the Solana platform. Circle tokenized stock (xStock) has a current supply of 49,998.60984587. The last known price of Circle tokenized stock (xStock) is 134.16292538 USD and is up 4.96 over the last 24 hours. It is currently trading on 44 active market(s) with $8,141,888.27 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/circle-xstock.", + "explorer": "https://etherscan.io/token/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB", + "type": "ERC20", + "symbol": "CRCLX", + "decimals": 18, + "status": "active", + "id": "0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/circle-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB/logo.png b/blockchains/ethereum/assets/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB/logo.png new file mode 100644 index 0000000000000..984236e985ff3 Binary files /dev/null and b/blockchains/ethereum/assets/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB/logo.png differ diff --git a/blockchains/ethereum/assets/0xfF20817765cB7f73d4bde2e66e067E58D11095C2/info.json b/blockchains/ethereum/assets/0xfF20817765cB7f73d4bde2e66e067E58D11095C2/info.json index 5dc2194f4f7b3..12ad98e9d897b 100644 --- a/blockchains/ethereum/assets/0xfF20817765cB7f73d4bde2e66e067E58D11095C2/info.json +++ b/blockchains/ethereum/assets/0xfF20817765cB7f73d4bde2e66e067E58D11095C2/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/amptoken" }, { - "name": "twitter", - "url": "https://twitter.com/amptoken" + "name": "x", + "url": "https://x.com/amptoken" }, { "name": "blog", diff --git a/blockchains/ethereum/assets/0xfF7CF16aA2fFc463b996DB2f7B7cf0130336899D/info.json b/blockchains/ethereum/assets/0xfF7CF16aA2fFc463b996DB2f7B7cf0130336899D/info.json new file mode 100644 index 0000000000000..6d9ab02b3dda4 --- /dev/null +++ b/blockchains/ethereum/assets/0xfF7CF16aA2fFc463b996DB2f7B7cf0130336899D/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Core US Aggregate Bond (Ondo)", + "website": "https://ondo.finance/", + "description": "AGGon is the Ondo Tokenized version of the iShares Core US Aggregate Bond ETF, giving tokenholders economic exposure similar to holding AGG and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://etherscan.io/token/0xfF7CF16aA2fFc463b996DB2f7B7cf0130336899D", + "type": "ERC20", + "symbol": "AGGon", + "decimals": 18, + "status": "active", + "id": "0xfF7CF16aA2fFc463b996DB2f7B7cf0130336899D", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-core-us-aggregate-bond-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfF7CF16aA2fFc463b996DB2f7B7cf0130336899D/logo.png b/blockchains/ethereum/assets/0xfF7CF16aA2fFc463b996DB2f7B7cf0130336899D/logo.png new file mode 100644 index 0000000000000..731ceba6a1840 Binary files /dev/null and b/blockchains/ethereum/assets/0xfF7CF16aA2fFc463b996DB2f7B7cf0130336899D/logo.png differ diff --git a/blockchains/ethereum/assets/0xfF836A5821E69066c87E268bC51b849FaB94240C/info.json b/blockchains/ethereum/assets/0xfF836A5821E69066c87E268bC51b849FaB94240C/info.json new file mode 100644 index 0000000000000..50c280010c1b6 --- /dev/null +++ b/blockchains/ethereum/assets/0xfF836A5821E69066c87E268bC51b849FaB94240C/info.json @@ -0,0 +1,24 @@ +{ + "name": "Real Smurf Cat", + "type": "ERC20", + "symbol": "SMURFCAT", + "decimals": 18, + "website": "https://smurfcat.eth.limo", + "description": "SMURFCAT is a memecoin launched on the ethereum blockchain. he is so cute! this little guy is just going on his jolly way! The token was created as a tribute to the smurf cat internet meme originally created by Nate Hallinan, and newly popularized by tiktok.", + "explorer": "https://etherscan.io/token/0xff836a5821e69066c87e268bc51b849fab94240c", + "status": "active", + "id": "0xfF836A5821E69066c87E268bC51b849FaB94240C", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/real-smurf-cat-eth/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/real-smurf-cat" + } + ], + "tags": [ + "memes" + ] +} diff --git a/blockchains/ethereum/assets/0xfF836A5821E69066c87E268bC51b849FaB94240C/logo.png b/blockchains/ethereum/assets/0xfF836A5821E69066c87E268bC51b849FaB94240C/logo.png new file mode 100644 index 0000000000000..977f628ac496b Binary files /dev/null and b/blockchains/ethereum/assets/0xfF836A5821E69066c87E268bC51b849FaB94240C/logo.png differ diff --git a/blockchains/ethereum/assets/0xfb130d93E49DcA13264344966A611dc79a456Bc5/info.json b/blockchains/ethereum/assets/0xfb130d93E49DcA13264344966A611dc79a456Bc5/info.json index 2e1fccc75b41b..9ac11d076aeda 100644 --- a/blockchains/ethereum/assets/0xfb130d93E49DcA13264344966A611dc79a456Bc5/info.json +++ b/blockchains/ethereum/assets/0xfb130d93E49DcA13264344966A611dc79a456Bc5/info.json @@ -1,7 +1,7 @@ { "name": "DogeGF", "website": "https://www.dogegf.com/", - "description": "DogeGF is a peer-to-peer community governed by reciprocity.", + "description": "Warm-hearted community fuelled by the magic of reciprocity.", "explorer": "https://etherscan.io/token/0xfb130d93E49DcA13264344966A611dc79a456Bc5", "type": "ERC20", "symbol": "DOGEGF", @@ -18,8 +18,8 @@ "url": "https://reddit.com/r/dogegf/" }, { - "name": "twitter", - "url": "https://twitter.com/dogegftoken" + "name": "x", + "url": "https://x.com/dogegftoken" }, { "name": "telegram", @@ -27,7 +27,7 @@ }, { "name": "discord", - "url": "https://discord.com/invite/Tjr8AvFBTP" + "url": "https://discord.com/invite/EwKuFDCA5V" } ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfb130d93E49DcA13264344966A611dc79a456Bc5/logo.png b/blockchains/ethereum/assets/0xfb130d93E49DcA13264344966A611dc79a456Bc5/logo.png index 4cbe25b44d1da..994caabe77f87 100644 Binary files a/blockchains/ethereum/assets/0xfb130d93E49DcA13264344966A611dc79a456Bc5/logo.png and b/blockchains/ethereum/assets/0xfb130d93E49DcA13264344966A611dc79a456Bc5/logo.png differ diff --git a/blockchains/ethereum/assets/0xfb66321D7C674995dFcC2cb67A30bC978dc862AD/info.json b/blockchains/ethereum/assets/0xfb66321D7C674995dFcC2cb67A30bC978dc862AD/info.json new file mode 100644 index 0000000000000..a479cc11dbd28 --- /dev/null +++ b/blockchains/ethereum/assets/0xfb66321D7C674995dFcC2cb67A30bC978dc862AD/info.json @@ -0,0 +1,40 @@ +{ + "name": "Pepe 2.0", + "type": "ERC20", + "symbol": "PEPE2.0", + "decimals": 18, + "website": "https://pepe20.vip", + "description": "Learning from past token mistakes, blacklisting some investors. Pepe 2.0 wants to make things right and redo his billion-dollar run.", + "explorer": "https://etherscan.io/token/0xfb66321D7C674995dFcC2cb67A30bC978dc862AD", + "status": "abandoned", + "id": "0xfb66321D7C674995dFcC2cb67A30bC978dc862AD", + "links": [ + { + "name": "x", + "url": "https://x.com/pepe2coineth" + }, + { + "name": "telegram", + "url": "https://t.me/Pepe2Portal" + }, + { + "name": "github", + "url": "https://github.com/pepe2coineth" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pepe-2-0" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pepe-2-0" + }, + { + "name": "source_code", + "url": "https://github.com/pepe2coineth/SmartContract/blob/main/Ethereum_PEPE20_CA.sol" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfc82bb4ba86045Af6F327323a46E80412b91b27d/info.json b/blockchains/ethereum/assets/0xfc82bb4ba86045Af6F327323a46E80412b91b27d/info.json index 24bfd33f68dbf..c9be50cad8b11 100644 --- a/blockchains/ethereum/assets/0xfc82bb4ba86045Af6F327323a46E80412b91b27d/info.json +++ b/blockchains/ethereum/assets/0xfc82bb4ba86045Af6F327323a46E80412b91b27d/info.json @@ -10,8 +10,8 @@ "id": "0xfc82bb4ba86045Af6F327323a46E80412b91b27d", "links": [ { - "name": "twitter", - "url": "https://twitter.com/prom_io" + "name": "x", + "url": "https://x.com/prom_io" }, { "name": "telegram", @@ -51,4 +51,4 @@ "nft", "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfc8a7f70aF5B19fe96088DC91A7971340d26B414/info.json b/blockchains/ethereum/assets/0xfc8a7f70aF5B19fe96088DC91A7971340d26B414/info.json new file mode 100644 index 0000000000000..9a5da4652d439 --- /dev/null +++ b/blockchains/ethereum/assets/0xfc8a7f70aF5B19fe96088DC91A7971340d26B414/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tedra USD 2.0", + "type": "ERC20", + "symbol": "FAKE USD.T", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xfc8a7f70aF5B19fe96088DC91A7971340d26B414", + "explorer": "https://bscscan.com/token/0xfc8a7f70aF5B19fe96088DC91A7971340d26B414", + "status": "spam", + "id": "0xfc8a7f70aF5B19fe96088DC91A7971340d26B414" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfd418e42783382E86Ae91e445406600Ba144D162/info.json b/blockchains/ethereum/assets/0xfd418e42783382E86Ae91e445406600Ba144D162/info.json new file mode 100644 index 0000000000000..ed31d962f4ed3 --- /dev/null +++ b/blockchains/ethereum/assets/0xfd418e42783382E86Ae91e445406600Ba144D162/info.json @@ -0,0 +1,25 @@ +{ + "name": "Zircuit", + "type": "ERC20", + "symbol": "ZRC", + "decimals": 18, + "description": "Experience the safest chain for DeFi and staking. Zircuit is the fastest growing L2 with $2 Billion TVL. Where innovation meets security, designed for everyone. Zircuit offers developers powerful features while giving users peace of mind. Designed by a team of web3 security veterans and PhDs, Zircuit combines high performance with unmatched security.", + "website": "https://www.zircuit.com/", + "explorer": "https://etherscan.io/token/0xfd418e42783382e86ae91e445406600ba144d162", + "id": "0xfd418e42783382E86Ae91e445406600Ba144D162", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/ZircuitL2" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zircuit/" + } + ], + "tags": [ + "staking" + ] +} + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfd418e42783382E86Ae91e445406600Ba144D162/logo.png b/blockchains/ethereum/assets/0xfd418e42783382E86Ae91e445406600Ba144D162/logo.png new file mode 100644 index 0000000000000..90a9548f4d4b2 Binary files /dev/null and b/blockchains/ethereum/assets/0xfd418e42783382E86Ae91e445406600Ba144D162/logo.png differ diff --git a/blockchains/ethereum/assets/0xff8C479134A18918059493243943150776cF8CF2/info.json b/blockchains/ethereum/assets/0xff8C479134A18918059493243943150776cF8CF2/info.json index c07f3326de1f5..742fa336c87c0 100644 --- a/blockchains/ethereum/assets/0xff8C479134A18918059493243943150776cF8CF2/info.json +++ b/blockchains/ethereum/assets/0xff8C479134A18918059493243943150776cF8CF2/info.json @@ -10,8 +10,8 @@ "id": "0xff8C479134A18918059493243943150776cF8CF2", "links": [ { - "name": "twitter", - "url": "https://twitter.com/RenQ_Finance" + "name": "x", + "url": "https://x.com/RenQ_Finance" }, { "name": "telegram", diff --git a/blockchains/ethereum/chainlist.json b/blockchains/ethereum/chainlist.json index 122f6f5943b6d..80ea9fd7ea139 100644 --- a/blockchains/ethereum/chainlist.json +++ b/blockchains/ethereum/chainlist.json @@ -30,7 +30,7 @@ }, { "chain": "8217", - "coinId": "klaytn" + "coinId": "kaia" }, { "chain": "42262", @@ -68,10 +68,6 @@ "chain": "43114", "coinId": "avalanche" }, - { - "chain": "32659", - "coinId": "fusion" - }, { "chain": "42220", "coinId": "celo" @@ -139,6 +135,26 @@ { "chain": "5601", "coinId": "gbnb" + }, + { + "chain": "5611", + "coinId": "opbnb" + }, + { + "chain": "32659", + "coinId": "fusion" + }, + { + "chain": "7700", + "coinId": "canto" + }, + { + "chain": "295", + "coinId": "hedera" + }, + { + "chain": "30", + "coinId": "rootstock" } ] -} \ No newline at end of file +} diff --git a/blockchains/ethereum/info/info.json b/blockchains/ethereum/info/info.json index 1c18235d81bd6..f64738f0b60b6 100644 --- a/blockchains/ethereum/info/info.json +++ b/blockchains/ethereum/info/info.json @@ -8,14 +8,18 @@ "type": "coin", "decimals": 18, "status": "active", + "tags": [ + "dapp", + "staking-native" + ], "links": [ { "name": "github", "url": "https://github.com/ethereum" }, { - "name": "twitter", - "url": "https://twitter.com/ethereum" + "name": "x", + "url": "https://x.com/ethereum" }, { "name": "reddit", diff --git a/blockchains/ethereum/info/square_logo.png b/blockchains/ethereum/info/square_logo.png new file mode 100644 index 0000000000000..e97cd99b01a8f Binary files /dev/null and b/blockchains/ethereum/info/square_logo.png differ diff --git a/blockchains/ethereum/tokenlist-extended.json b/blockchains/ethereum/tokenlist-extended.json index f7ea909fa731b..0d17738e9d7f7 100644 --- a/blockchains/ethereum/tokenlist-extended.json +++ b/blockchains/ethereum/tokenlist-extended.json @@ -16,7 +16,7 @@ "asset": "c60_t0xa47c8bf37f92aBed4A126BDA807A7b7498661acD", "type": "ERC20", "address": "0xa47c8bf37f92aBed4A126BDA807A7b7498661acD", - "name": "UST Token", + "name": "TerraClassicUSD", "symbol": "UST", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xa47c8bf37f92aBed4A126BDA807A7b7498661acD/logo.png" diff --git a/blockchains/ethereum/tokenlist.json b/blockchains/ethereum/tokenlist.json index 5fbbe1589e23a..6cd85d2c1acad 100644 --- a/blockchains/ethereum/tokenlist.json +++ b/blockchains/ethereum/tokenlist.json @@ -124,9 +124,6 @@ { "base": "c60_t0x2b591e99afE9f32eAA6214f7B7629768c40Eeb39" }, - { - "base": "c60_t0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6" - }, { "base": "c60_t0x3383c5a8969Dc413bfdDc9656Eb80A1408E4bA20" }, @@ -262,18 +259,12 @@ { "base": "c60_t0x88ACDd2a6425c3FaAE4Bc9650Fd7E27e0Bebb7aB" }, - { - "base": "c60_t0x88EF27e69108B2633F8E1C184CC37940A075cC02" - }, { "base": "c60_t0x8a40c222996f9F3431f63Bf80244C36822060f12" }, { "base": "c60_t0x8a854288a5976036A725879164Ca3e91d30c6A1B" }, - { - "base": "c60_t0xCE3f08e664693ca792caCE4af1364D5e220827B2" - }, { "base": "c60_t0x8CE9137d39326AD0cD6491fb5CC0CbA0e089b6A9" }, @@ -502,9 +493,6 @@ { "base": "c60_t0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96" }, - { - "base": "c60_t0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C" - }, { "base": "c60_t0xB0c7a3Ba49C7a6EaBa6cD4a96C55a1391070Ac9A" }, @@ -538,7 +526,7 @@ "asset": "c60_t0x00c83aeCC790e8a4453e5dD3B0B4b3680501a7A7", "type": "ERC20", "address": "0x00c83aeCC790e8a4453e5dD3B0B4b3680501a7A7", - "name": "SKALE Network", + "name": "SKALE", "symbol": "SKL", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x00c83aeCC790e8a4453e5dD3B0B4b3680501a7A7/logo.png", @@ -660,7 +648,7 @@ "asset": "c60_t0x0bc529c00C6401aEF6D220BE8C6Ea1667F6Ad93e", "type": "ERC20", "address": "0x0bc529c00C6401aEF6D220BE8C6Ea1667F6Ad93e", - "name": "yearn.finance", + "name": "Yearn", "symbol": "YFI", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0bc529c00C6401aEF6D220BE8C6Ea1667F6Ad93e/logo.png", @@ -773,7 +761,7 @@ "asset": "c60_t0x111111111117dC0aa78b770fA6A738034120C302", "type": "ERC20", "address": "0x111111111117dC0aa78b770fA6A738034120C302", - "name": "1INCH Token", + "name": "1inch", "symbol": "1INCH", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x111111111117dC0aa78b770fA6A738034120C302/logo.png", @@ -1135,26 +1123,6 @@ "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x30f271C9E86D2B7d00a6376Cd96A1cFBD5F0b9b3/logo.png", "pairs": [] }, - { - "asset": "c60_t0x3155BA85D5F96b2d030a4966AF206230e46849cb", - "type": "ERC20", - "address": "0x3155BA85D5F96b2d030a4966AF206230e46849cb", - "name": "THORChain ETH.RUNE", - "symbol": "RUNE", - "decimals": 18, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x3155BA85D5F96b2d030a4966AF206230e46849cb/logo.png", - "pairs": [] - }, - { - "asset": "c60_t0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6", - "type": "ERC20", - "address": "0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6", - "name": "Akita Inu", - "symbol": "AKITA", - "decimals": 18, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6/logo.png", - "pairs": [] - }, { "asset": "c60_t0x3383c5a8969Dc413bfdDc9656Eb80A1408E4bA20", "type": "ERC20", @@ -1179,7 +1147,7 @@ "asset": "c60_t0x3593D125a4f7849a1B059E64F4517A86Dd60c95d", "type": "ERC20", "address": "0x3593D125a4f7849a1B059E64F4517A86Dd60c95d", - "name": "MANTRA DAO", + "name": "MANTRA", "symbol": "OM", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d/logo.png", @@ -1331,7 +1299,7 @@ "asset": "c60_t0x4691937a7508860F876c9c0a2a617E7d9E945D4B", "type": "ERC20", "address": "0x4691937a7508860F876c9c0a2a617E7d9E945D4B", - "name": "WOO Network", + "name": "WOO", "symbol": "WOO", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x4691937a7508860F876c9c0a2a617E7d9E945D4B/logo.png", @@ -1651,16 +1619,6 @@ "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x69692D3345010a207b759a7D1af6fc7F38b35c5E/logo.png", "pairs": [] }, - { - "asset": "c60_t0x69A95185ee2a045CDC4bCd1b1Df10710395e4e23", - "type": "ERC20", - "address": "0x69A95185ee2a045CDC4bCd1b1Df10710395e4e23", - "name": "Poolz Finance", - "symbol": "POOLZ", - "decimals": 18, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x69A95185ee2a045CDC4bCd1b1Df10710395e4e23/logo.png", - "pairs": [] - }, { "asset": "c60_t0x69af81e73A73B40adF4f3d4223Cd9b1ECE623074", "type": "ERC20", @@ -1997,16 +1955,6 @@ "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x88ACDd2a6425c3FaAE4Bc9650Fd7E27e0Bebb7aB/logo.png", "pairs": [] }, - { - "asset": "c60_t0x88EF27e69108B2633F8E1C184CC37940A075cC02", - "type": "ERC20", - "address": "0x88EF27e69108B2633F8E1C184CC37940A075cC02", - "name": "Dego Finance", - "symbol": "DEGO", - "decimals": 18, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x88EF27e69108B2633F8E1C184CC37940A075cC02/logo.png", - "pairs": [] - }, { "asset": "c60_t0x89Ab32156e46F46D02ade3FEcbe5Fc4243B9AAeD", "type": "ERC20", @@ -2037,16 +1985,6 @@ "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x8a854288a5976036A725879164Ca3e91d30c6A1B/logo.png", "pairs": [] }, - { - "asset": "c60_t0xCE3f08e664693ca792caCE4af1364D5e220827B2", - "type": "ERC20", - "address": "0xCE3f08e664693ca792caCE4af1364D5e220827B2", - "name": "SAITAMA", - "symbol": "SAITAMA", - "decimals": 9, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xCE3f08e664693ca792caCE4af1364D5e220827B2/logo.png", - "pairs": [] - }, { "asset": "c60_t0x8B39B70E39Aa811b69365398e0aACe9bee238AEb", "type": "ERC20", @@ -2102,7 +2040,7 @@ "asset": "c60_t0x8f8221aFbB33998d8584A2B05749bA73c37a938a", "type": "ERC20", "address": "0x8f8221aFbB33998d8584A2B05749bA73c37a938a", - "name": "Request Token", + "name": "Request", "symbol": "REQ", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x8f8221aFbB33998d8584A2B05749bA73c37a938a/logo.png", @@ -2178,16 +2116,6 @@ "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE/logo.png", "pairs": [] }, - { - "asset": "c60_t0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", - "type": "ERC20", - "address": "0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", - "name": "Dypius", - "symbol": "DYP", - "decimals": 18, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png", - "pairs": [] - }, { "chainId": 1, "asset": "c60_t0x967da4048cD07aB37855c090aAF366e4ce1b9F48", @@ -2315,7 +2243,7 @@ "asset": "c60_t0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", "type": "ERC20", "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", - "name": "USD Coin", + "name": "USDC", "symbol": "USDC", "decimals": 6, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48/logo.png", @@ -2415,7 +2343,7 @@ "asset": "c60_t0xaA7a9CA87d3694B5755f213B5D04094b8d0F0A6F", "type": "ERC20", "address": "0xaA7a9CA87d3694B5755f213B5D04094b8d0F0A6F", - "name": "Trace Token", + "name": "OriginTrail", "symbol": "TRAC", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xaA7a9CA87d3694B5755f213B5D04094b8d0F0A6F/logo.png", @@ -2476,7 +2404,7 @@ "asset": "c60_t0xADE00C28244d5CE17D72E40330B1c318cD12B7c3", "type": "ERC20", "address": "0xADE00C28244d5CE17D72E40330B1c318cD12B7c3", - "name": "Ambire AdEx", + "name": "heyAura", "symbol": "ADX", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xADE00C28244d5CE17D72E40330B1c318cD12B7c3/logo.png", @@ -2618,7 +2546,7 @@ "asset": "c60_t0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55", "type": "ERC20", "address": "0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55", - "name": "Band Protocol", + "name": "Band", "symbol": "BAND", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/logo.png", @@ -2664,16 +2592,6 @@ "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xbC396689893D065F41bc2C6EcbeE5e0085233447/logo.png", "pairs": [] }, - { - "asset": "c60_t0xbE9375C6a420D2eEB258962efB95551A5b722803", - "type": "ERC20", - "address": "0xbE9375C6a420D2eEB258962efB95551A5b722803", - "name": "StormX", - "symbol": "STMX", - "decimals": 18, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xbE9375C6a420D2eEB258962efB95551A5b722803/logo.png", - "pairs": [] - }, { "asset": "c60_t0xbEa98c05eEAe2f3bC8c3565Db7551Eb738c8CCAb", "type": "ERC20", @@ -2750,7 +2668,7 @@ "asset": "c60_t0xC52C326331E9Ce41F04484d3B5E5648158028804", "type": "ERC20", "address": "0xC52C326331E9Ce41F04484d3B5E5648158028804", - "name": "ZEN Exchange Token", + "name": "Unizen", "symbol": "ZCX", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xC52C326331E9Ce41F04484d3B5E5648158028804/logo.png", @@ -3044,7 +2962,7 @@ "asset": "c60_t0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55", "type": "ERC20", "address": "0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55", - "name": "SuperFarm", + "name": "SuperVerse", "symbol": "SUPER", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55/logo.png", @@ -3164,7 +3082,7 @@ "asset": "c60_t0xEEF9f339514298C6A857EfCfC1A762aF84438dEE", "type": "ERC20", "address": "0xEEF9f339514298C6A857EfCfC1A762aF84438dEE", - "name": "Hermez Network Token", + "name": "Hermez Network", "symbol": "HEZ", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xEEF9f339514298C6A857EfCfC1A762aF84438dEE/logo.png", @@ -3190,16 +3108,6 @@ "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xf1f955016EcbCd7321c7266BccFB96c68ea5E49b/logo.png", "pairs": [] }, - { - "asset": "c60_t0xf21661D0D1d76d3ECb8e1B9F1c923DBfffAe4097", - "type": "ERC20", - "address": "0xf21661D0D1d76d3ECb8e1B9F1c923DBfffAe4097", - "name": "Realio Network", - "symbol": "RIO", - "decimals": 18, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xf21661D0D1d76d3ECb8e1B9F1c923DBfffAe4097/logo.png", - "pairs": [] - }, { "asset": "c60_t0xF411903cbC70a74d22900a5DE66A2dda66507255", "type": "ERC20", @@ -3385,7 +3293,7 @@ "asset": "c60_t0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B", "type": "ERC20", "address": "0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B", - "name": "Convex Token", + "name": "Convex Finance", "symbol": "CVX", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B/logo.png", @@ -3475,7 +3383,7 @@ "asset": "c60_t0xAf5191B0De278C7286d6C7CC6ab6BB8A73bA2Cd6", "type": "ERC20", "address": "0xAf5191B0De278C7286d6C7CC6ab6BB8A73bA2Cd6", - "name": "StargateToken", + "name": "Stargate Finance", "symbol": "STG", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xAf5191B0De278C7286d6C7CC6ab6BB8A73bA2Cd6/logo.png", @@ -3491,16 +3399,6 @@ "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96/logo.png", "pairs": [] }, - { - "asset": "c60_t0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C", - "type": "ERC20", - "address": "0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C", - "name": "ZEDXION", - "symbol": "ZEDXION", - "decimals": 18, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C/logo.png", - "pairs": [] - }, { "asset": "c60_t0xB0c7a3Ba49C7a6EaBa6cD4a96C55a1391070Ac9A", "type": "ERC20", diff --git a/blockchains/ethereum/validators/assets/0x2401c39d7ba9E283668a53fcC7B8F5FD9e716fdf/logo.png b/blockchains/ethereum/validators/assets/0x2401c39d7ba9E283668a53fcC7B8F5FD9e716fdf/logo.png new file mode 100644 index 0000000000000..f5f3ada9451c6 Binary files /dev/null and b/blockchains/ethereum/validators/assets/0x2401c39d7ba9E283668a53fcC7B8F5FD9e716fdf/logo.png differ diff --git a/blockchains/ethereum/validators/list.json b/blockchains/ethereum/validators/list.json new file mode 100644 index 0000000000000..2e116f2b59557 --- /dev/null +++ b/blockchains/ethereum/validators/list.json @@ -0,0 +1,8 @@ +[ + { + "id": "0x2401c39d7ba9E283668a53fcC7B8F5FD9e716fdf", + "name": "Trust Nodes", + "description": "Trust Nodes is Ethereum 2.0 staking service.", + "website": "https://www.kiln.fi" + } +] \ No newline at end of file diff --git a/blockchains/ethereumpow/info/info.json b/blockchains/ethereumpow/info/info.json index 79e2161076890..d878ecb10346e 100644 --- a/blockchains/ethereumpow/info/info.json +++ b/blockchains/ethereumpow/info/info.json @@ -10,8 +10,8 @@ "rpc_url": "https://mainnet.ethereumpow.org", "links": [ { - "name": "twitter", - "url": "https://twitter.com/EthereumPoW" + "name": "x", + "url": "https://x.com/EthereumPoW" }, { "name": "telegram_news", @@ -21,4 +21,4 @@ "tags": [ "pow" ] -} +} \ No newline at end of file diff --git a/blockchains/ethereumpow/info/square_logo.png b/blockchains/ethereumpow/info/square_logo.png new file mode 100644 index 0000000000000..6e74af09c2f01 Binary files /dev/null and b/blockchains/ethereumpow/info/square_logo.png differ diff --git a/blockchains/everscale/info/info.json b/blockchains/everscale/info/info.json index dc37652490575..b022b5f58215d 100644 --- a/blockchains/everscale/info/info.json +++ b/blockchains/everscale/info/info.json @@ -1,7 +1,7 @@ { "name": "Everscale", "website": "https://everscale.network", - "description": "Everscale is a layer-1 blockchain, providing linear scalability while maintaining a high level of security and decentralization.", + "description": "Everscale is a highly scalable blockchain network that aims to power a range of applications that require fast, secure and scalable transactions.", "explorer": "https://everscan.io", "research": "https://research.cointelegraph.com/reports/detail/everscale-report", "symbol": "EVER", @@ -11,19 +11,27 @@ "links": [ { "name": "github", - "url": "https://github.com/tonlabs" + "url": "https://github.com/everscale-org" }, { - "name": "twitter", - "url": "https://twitter.com/Everscale_net" + "name": "x", + "url": "https://x.com/Everscale_net" }, { - "name": "reddit", - "url": "https://reddit.com/r/Everscale/" + "name": "telegram", + "url": "https://t.me/everscale" }, { - "name": "whitepaper", - "url": "https://everscale.network/docs/everscale-whitepaper.pdf" + "name": "discord", + "url": "https://discord.com/invite/everscale" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/community/profile/Everscale/" + }, + { + "name": "blog", + "url": "https://blog.everscale.network/" } ] -} +} \ No newline at end of file diff --git a/blockchains/everscale/info/square_logo.png b/blockchains/everscale/info/square_logo.png new file mode 100644 index 0000000000000..f7cd028708958 Binary files /dev/null and b/blockchains/everscale/info/square_logo.png differ diff --git a/blockchains/evmos/info/info.json b/blockchains/evmos/info/info.json index 3732094ef3a77..1ffc9eb174015 100644 --- a/blockchains/evmos/info/info.json +++ b/blockchains/evmos/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/tharsis/evmos" }, { - "name": "twitter", - "url": "https://twitter.com/EvmosOrg" + "name": "x", + "url": "https://x.com/EvmosOrg" }, { "name": "discord", diff --git a/blockchains/evmos/info/square_logo.png b/blockchains/evmos/info/square_logo.png new file mode 100644 index 0000000000000..259a5423c7191 Binary files /dev/null and b/blockchains/evmos/info/square_logo.png differ diff --git a/blockchains/fantom/assets/0x0615Dbba33Fe61a31c7eD131BDA6655Ed76748B1/info.json b/blockchains/fantom/assets/0x0615Dbba33Fe61a31c7eD131BDA6655Ed76748B1/info.json index c1af9779cbbff..bc08adfa0332c 100644 --- a/blockchains/fantom/assets/0x0615Dbba33Fe61a31c7eD131BDA6655Ed76748B1/info.json +++ b/blockchains/fantom/assets/0x0615Dbba33Fe61a31c7eD131BDA6655Ed76748B1/info.json @@ -10,8 +10,8 @@ "id": "0x0615Dbba33Fe61a31c7eD131BDA6655Ed76748B1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ankr" + "name": "x", + "url": "https://x.com/ankr" }, { "name": "github", diff --git a/blockchains/fantom/assets/0x0E1694483eBB3b74d3054E383840C6cf011e518e/info.json b/blockchains/fantom/assets/0x0E1694483eBB3b74d3054E383840C6cf011e518e/info.json new file mode 100644 index 0000000000000..1bde944f6da56 --- /dev/null +++ b/blockchains/fantom/assets/0x0E1694483eBB3b74d3054E383840C6cf011e518e/info.json @@ -0,0 +1,37 @@ +{ + "name": "sUSD", + "website": "https://synthetix.io", + "description": "sUSD is an ERC-20 token made by the Synthetix team which tracks the price of USD.", + "explorer": "https://ftmscan.com/token/0x0E1694483eBB3b74d3054E383840C6cf011e518e", + "type": "FANTOM", + "symbol": "sUSD", + "decimals": 18, + "status": "active", + "id": "0x0E1694483eBB3b74d3054E383840C6cf011e518e", + "tags": [ + "defi", + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/Synthetixio" + }, + { + "name": "x", + "url": "https://x.com/synthetix_io" + }, + { + "name": "blog", + "url": "https://blog.synthetix.io/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/susd/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/nusd/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x0E1694483eBB3b74d3054E383840C6cf011e518e/logo.png b/blockchains/fantom/assets/0x0E1694483eBB3b74d3054E383840C6cf011e518e/logo.png new file mode 100644 index 0000000000000..b26b625a22abd Binary files /dev/null and b/blockchains/fantom/assets/0x0E1694483eBB3b74d3054E383840C6cf011e518e/logo.png differ diff --git a/blockchains/fantom/assets/0x1B6382DBDEa11d97f24495C9A90b7c88469134a4/info.json b/blockchains/fantom/assets/0x1B6382DBDEa11d97f24495C9A90b7c88469134a4/info.json index 1cb95586a6e67..3114d4d9e16ac 100644 --- a/blockchains/fantom/assets/0x1B6382DBDEa11d97f24495C9A90b7c88469134a4/info.json +++ b/blockchains/fantom/assets/0x1B6382DBDEa11d97f24495C9A90b7c88469134a4/info.json @@ -10,8 +10,8 @@ "id": "0x1B6382DBDEa11d97f24495C9A90b7c88469134a4", "links": [ { - "name": "twitter", - "url": "https://twitter.com/axelarcore" + "name": "x", + "url": "https://x.com/axelarcore" }, { "name": "github", @@ -66,4 +66,4 @@ "stablecoin", "wrapped" ] -} +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x1E4F97b9f9F913c46F1632781732927B9019C68b/info.json b/blockchains/fantom/assets/0x1E4F97b9f9F913c46F1632781732927B9019C68b/info.json index 1d205a89e0f85..17bf4b9b34c34 100644 --- a/blockchains/fantom/assets/0x1E4F97b9f9F913c46F1632781732927B9019C68b/info.json +++ b/blockchains/fantom/assets/0x1E4F97b9f9F913c46F1632781732927B9019C68b/info.json @@ -1,12 +1,12 @@ { "name": "Curve DAO", - "website": "https://www.curve.fi/", + "website": "https://www.curve.finance/", "description": "Curve is an exchange liquidity pool on Ethereum (like Uniswap) designed for (1) extremely efficient stablecoin trading (2) low risk, supplemental fee income for liquidity providers, without an opportunity cost.", "explorer": "https://ftmscan.com/token/0x1E4F97b9f9F913c46F1632781732927B9019C68b", "type": "FANTOM", "symbol": "CRV", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x1E4F97b9f9F913c46F1632781732927B9019C68b", "tags": [ "defi" @@ -17,8 +17,8 @@ "url": "https://github.com/curvefi" }, { - "name": "twitter", - "url": "https://twitter.com/CurveFinance" + "name": "x", + "url": "https://x.com/CurveFinance" }, { "name": "coinmarketcap", @@ -26,7 +26,7 @@ }, { "name": "whitepaper", - "url": "https://curve.fi/whitepaper" + "url": "https://curve.finance/whitepaper" } ] } \ No newline at end of file diff --git a/blockchains/fantom/assets/0x21Ada0D2aC28C3A5Fa3cD2eE30882dA8812279B6/info.json b/blockchains/fantom/assets/0x21Ada0D2aC28C3A5Fa3cD2eE30882dA8812279B6/info.json index 2a50b820228f3..c6bb37a5c2d4d 100644 --- a/blockchains/fantom/assets/0x21Ada0D2aC28C3A5Fa3cD2eE30882dA8812279B6/info.json +++ b/blockchains/fantom/assets/0x21Ada0D2aC28C3A5Fa3cD2eE30882dA8812279B6/info.json @@ -17,8 +17,8 @@ "url": "https://coinmarketcap.com/currencies/oath/" }, { - "name": "twitter", - "url": "https://twitter.com/ByteMasons" + "name": "x", + "url": "https://x.com/ByteMasons" }, { "name": "medium", diff --git a/blockchains/fantom/assets/0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83/info.json b/blockchains/fantom/assets/0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83/info.json index bfbdb5bae4fdc..a08a9706be635 100644 --- a/blockchains/fantom/assets/0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83/info.json +++ b/blockchains/fantom/assets/0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/Fantom_English" }, { - "name": "twitter", - "url": "https://twitter.com/FantomFDN" + "name": "x", + "url": "https://x.com/FantomFDN" }, { "name": "medium", @@ -30,4 +30,4 @@ "defi", "wrapped" ] -} +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json b/blockchains/fantom/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json index a6d589bbc1471..51108257d08fd 100644 --- a/blockchains/fantom/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json +++ b/blockchains/fantom/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json @@ -10,8 +10,8 @@ "id": "0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/everrise" + "name": "x", + "url": "https://x.com/everrise" }, { "name": "telegram", diff --git a/blockchains/fantom/assets/0x29b0Da86e484E1C0029B56e817912d778aC0EC69/info.json b/blockchains/fantom/assets/0x29b0Da86e484E1C0029B56e817912d778aC0EC69/info.json index 1e9402201745a..841f610b8a645 100644 --- a/blockchains/fantom/assets/0x29b0Da86e484E1C0029B56e817912d778aC0EC69/info.json +++ b/blockchains/fantom/assets/0x29b0Da86e484E1C0029B56e817912d778aC0EC69/info.json @@ -1,5 +1,5 @@ { - "name": "yearn.finance", + "name": "Yearn", "website": "https://yearn.finance/", "description": "YFI is the governance token for Yearn.Finance, a site that performs a variety of functions for DeFi users, moving their assets in and out of different liquidity pools in order to find the best yields.", "explorer": "https://ftmscan.com/token/0x29b0Da86e484E1C0029B56e817912d778aC0EC69", @@ -18,8 +18,8 @@ "url": "https://github.com/iearn-finance" }, { - "name": "twitter", - "url": "https://twitter.com/iearnfinance" + "name": "x", + "url": "https://x.com/iearnfinance" }, { "name": "coinmarketcap", diff --git a/blockchains/fantom/assets/0x2A5062D22adCFaAfbd5C541d4dA82E4B450d4212/info.json b/blockchains/fantom/assets/0x2A5062D22adCFaAfbd5C541d4dA82E4B450d4212/info.json new file mode 100644 index 0000000000000..86458150dc906 --- /dev/null +++ b/blockchains/fantom/assets/0x2A5062D22adCFaAfbd5C541d4dA82E4B450d4212/info.json @@ -0,0 +1,22 @@ +{ + "name": "Keep3rV1", + "website": "https://keep3r.network", + "description": "Keep3rV1 is a decentralized job-matching platform for connecting external DevOps with projects that need help for completing various tasks.", + "explorer": "https://ftmscan.com/token/0x2A5062D22adCFaAfbd5C541d4dA82E4B450d4212", + "research": "https://research.binance.com/en/projects/keep3rv1", + "type": "FANTOM", + "symbol": "KP3R", + "decimals": 18, + "status": "active", + "id": "0x2A5062D22adCFaAfbd5C541d4dA82E4B450d4212", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/keep3rv1/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/keep3rv1/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x2A5062D22adCFaAfbd5C541d4dA82E4B450d4212/logo.png b/blockchains/fantom/assets/0x2A5062D22adCFaAfbd5C541d4dA82E4B450d4212/logo.png new file mode 100644 index 0000000000000..067502d91f1d5 Binary files /dev/null and b/blockchains/fantom/assets/0x2A5062D22adCFaAfbd5C541d4dA82E4B450d4212/logo.png differ diff --git a/blockchains/fantom/assets/0x2E64747523Fb2Bd079f7cAa3Af904cC15886916F/info.json b/blockchains/fantom/assets/0x2E64747523Fb2Bd079f7cAa3Af904cC15886916F/info.json new file mode 100644 index 0000000000000..4c9be5811f015 --- /dev/null +++ b/blockchains/fantom/assets/0x2E64747523Fb2Bd079f7cAa3Af904cC15886916F/info.json @@ -0,0 +1,41 @@ +{ + "name": "DOVU", + "website": "https://dovu.earth/", + "description": "DOVU is a technology infrastructure provider, powering trusted environmental and carbon digital markets by providing market integrity. The DOVU token serves as the protocol’s utility token, enabling holders to participate and create their own environmental audit trail ecosystems. Token holders can stake their DOVU to earn multiplier rewards, aligning long-term incentives with the protocol’s mission of building reliable carbon markets.", + "explorer": "https://ftmscan.com/token/0x2E64747523Fb2Bd079f7cAa3Af904cC15886916F", + "type": "FANTOM", + "symbol": "DOVU", + "decimals": 8, + "status": "active", + "id": "0x2E64747523Fb2Bd079f7cAa3Af904cC15886916F", + "tags": [ + "wrapped", + "staking" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/dovuofficial/" + }, + { + "name": "x", + "url": "https://x.com/dovuofficial" + }, + { + "name": "blog", + "url": "https://dovu.earth/en/news/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dovu-earth/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dovu" + }, + { + "name": "youtube", + "url": "https://youtube.com/@DOVUearth" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x2E64747523Fb2Bd079f7cAa3Af904cC15886916F/logo.png b/blockchains/fantom/assets/0x2E64747523Fb2Bd079f7cAa3Af904cC15886916F/logo.png new file mode 100644 index 0000000000000..cb6c490323d55 Binary files /dev/null and b/blockchains/fantom/assets/0x2E64747523Fb2Bd079f7cAa3Af904cC15886916F/logo.png differ diff --git a/blockchains/fantom/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/info.json b/blockchains/fantom/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/info.json new file mode 100644 index 0000000000000..d8b12068d312a --- /dev/null +++ b/blockchains/fantom/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/info.json @@ -0,0 +1,28 @@ +{ + "name": "Stargate Finance", + "website": "https://stargate.finance", + "description": "Stargate is a fully composable liquidity transport protocol that lives at the heart of Omnichain DeFi.", + "explorer": "https://ftmscan.com/token/0x2f6f07cdcf3588944bf4c42ac74ff24bf56e7590", + "type": "FANTOM", + "symbol": "STG", + "decimals": 18, + "status": "active", + "id": "0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590", + "links": [ + { + "name": "medium", + "url": "https://medium.com/stargate-official" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/LEM0ELklmO1kODdh" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/stargate-finance/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/logo.png b/blockchains/fantom/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/logo.png new file mode 100644 index 0000000000000..f983849d90c4f Binary files /dev/null and b/blockchains/fantom/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/logo.png differ diff --git a/blockchains/fantom/assets/0x408e41876cCCDC0F92210600ef50372656052a38/info.json b/blockchains/fantom/assets/0x408e41876cCCDC0F92210600ef50372656052a38/info.json new file mode 100644 index 0000000000000..3bf5387e6472d --- /dev/null +++ b/blockchains/fantom/assets/0x408e41876cCCDC0F92210600ef50372656052a38/info.json @@ -0,0 +1,48 @@ +{ + "name": "Ren", + "website": "https://renproject.io/", + "description": "Ren is an open protocol meant to enable the permissionless and private transfer of value between any blockchain.", + "explorer": "https://ftmscan.com/token/0x408e41876cccdc0f92210600ef50372656052a38", + "type": "FANTOM", + "symbol": "REN", + "decimals": 18, + "status": "active", + "id": "0x408e41876cCCDC0F92210600ef50372656052a38", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/renproject" + }, + { + "name": "x", + "url": "https://x.com/renprotocol" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/RenProject" + }, + { + "name": "blog", + "url": "https://medium.com/renproject" + }, + { + "name": "facebook", + "url": "https://facebook.com/RenProject/" + }, + { + "name": "telegram", + "url": "https://t.me/renproject" + }, + { + "name": "whitepaper", + "url": "https://renproject.io/litepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/republic-protocol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x408e41876cCCDC0F92210600ef50372656052a38/logo.png b/blockchains/fantom/assets/0x408e41876cCCDC0F92210600ef50372656052a38/logo.png new file mode 100644 index 0000000000000..8a5543ceefa01 Binary files /dev/null and b/blockchains/fantom/assets/0x408e41876cCCDC0F92210600ef50372656052a38/logo.png differ diff --git a/blockchains/fantom/assets/0x444444443B0fcB2733b93F23C910580FBa52FFFA/info.json b/blockchains/fantom/assets/0x444444443B0fcB2733b93F23C910580FBa52FFFA/info.json new file mode 100644 index 0000000000000..8e35a084d46dc --- /dev/null +++ b/blockchains/fantom/assets/0x444444443B0fcB2733b93F23C910580FBa52FFFA/info.json @@ -0,0 +1,21 @@ +{ + "name": "XY", + "website": "https://xy.finance/", + "description": "XY Finance Ecosystem incorporates products (X Swap & Y Pool) to do with Web3, DeFi and GameFi, with XY Token ($XY as the ticker) being the heart of XY DAO and the protocol.", + "explorer": "https://ftmscan.com/token/0x444444443B0fcB2733b93F23C910580FBa52FFFA", + "type": "FANTOM", + "symbol": "XY", + "decimals": 18, + "status": "active", + "id": "0x444444443B0fcB2733b93F23C910580FBa52FFFA", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/xy-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/xy-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x444444443B0fcB2733b93F23C910580FBa52FFFA/logo.png b/blockchains/fantom/assets/0x444444443B0fcB2733b93F23C910580FBa52FFFA/logo.png new file mode 100644 index 0000000000000..6f22734f68ea5 Binary files /dev/null and b/blockchains/fantom/assets/0x444444443B0fcB2733b93F23C910580FBa52FFFA/logo.png differ diff --git a/blockchains/fantom/assets/0x44B26E839eB3572c5E959F994804A5De66600349/info.json b/blockchains/fantom/assets/0x44B26E839eB3572c5E959F994804A5De66600349/info.json new file mode 100644 index 0000000000000..b743e0c77cd5c --- /dev/null +++ b/blockchains/fantom/assets/0x44B26E839eB3572c5E959F994804A5De66600349/info.json @@ -0,0 +1,18 @@ +{ + "name": "Hegic", + "website": "https://hegic.co/", + "description": "Hegic is an on-chain, non-custodial peer-to-pool options trading protocol built on Ethereum. Currently Hegic supports options trading in for Bitcoin (wBTC) and Ether (ETH).", + "explorer": "https://ftmscan.com/token/0x44B26E839eB3572c5E959F994804A5De66600349", + "research": "", + "type": "FANTOM", + "symbol": "HEGIC", + "decimals": 18, + "status": "active", + "id": "0x44B26E839eB3572c5E959F994804A5De66600349", + "links": [ + { + "name": "github", + "url": "https://github.com/hegic" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x44B26E839eB3572c5E959F994804A5De66600349/logo.png b/blockchains/fantom/assets/0x44B26E839eB3572c5E959F994804A5De66600349/logo.png new file mode 100644 index 0000000000000..44c118daf7b4e Binary files /dev/null and b/blockchains/fantom/assets/0x44B26E839eB3572c5E959F994804A5De66600349/logo.png differ diff --git a/blockchains/fantom/assets/0x468003B688943977e6130F4F68F23aad939a1040/info.json b/blockchains/fantom/assets/0x468003B688943977e6130F4F68F23aad939a1040/info.json index 117138cf60cdb..f37930d93a161 100644 --- a/blockchains/fantom/assets/0x468003B688943977e6130F4F68F23aad939a1040/info.json +++ b/blockchains/fantom/assets/0x468003B688943977e6130F4F68F23aad939a1040/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/MIM_Spell" + "name": "x", + "url": "https://x.com/MIM_Spell" }, { "name": "medium", diff --git a/blockchains/fantom/assets/0x46E7628E8b4350b2716ab470eE0bA1fa9e76c6C5/info.json b/blockchains/fantom/assets/0x46E7628E8b4350b2716ab470eE0bA1fa9e76c6C5/info.json index b3323b4c87b66..991c47f29e023 100644 --- a/blockchains/fantom/assets/0x46E7628E8b4350b2716ab470eE0bA1fa9e76c6C5/info.json +++ b/blockchains/fantom/assets/0x46E7628E8b4350b2716ab470eE0bA1fa9e76c6C5/info.json @@ -1,5 +1,5 @@ { - "name": "Band Protocol", + "name": "Band", "website": "https://bandprotocol.com", "description": "Band Protocol is a cross-chain data oracle network that aggregates and connects real-world data and APIs to smart contracts.", "explorer": "https://ftmscan.com/token/0x46E7628E8b4350b2716ab470eE0bA1fa9e76c6C5", @@ -14,8 +14,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/BandProtocol" + "name": "x", + "url": "https://x.com/BandProtocol" }, { "name": "telegram", diff --git a/blockchains/fantom/assets/0x477a9D5dF9bedA06F6b021136a2efe7BE242fCC9/info.json b/blockchains/fantom/assets/0x477a9D5dF9bedA06F6b021136a2efe7BE242fCC9/info.json new file mode 100644 index 0000000000000..5b1d206b71604 --- /dev/null +++ b/blockchains/fantom/assets/0x477a9D5dF9bedA06F6b021136a2efe7BE242fCC9/info.json @@ -0,0 +1,21 @@ +{ + "name": "TravaFinance", + "website": "https://trava.finance/", + "description": "TRAVA is a decentralized marketplace for cross-chain lending that relies on an innovative model of multiple lending pools created by users.", + "explorer": "https://ftmscan.com/token/0x477a9d5df9beda06f6b021136a2efe7be242fcc9", + "type": "FANTOM", + "symbol": "TRAVA", + "decimals": 18, + "status": "active", + "id": "0x477a9D5dF9bedA06F6b021136a2efe7BE242fCC9", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/trava-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/trava-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x477a9D5dF9bedA06F6b021136a2efe7BE242fCC9/logo.png b/blockchains/fantom/assets/0x477a9D5dF9bedA06F6b021136a2efe7BE242fCC9/logo.png new file mode 100644 index 0000000000000..5bee9eeec3600 Binary files /dev/null and b/blockchains/fantom/assets/0x477a9D5dF9bedA06F6b021136a2efe7BE242fCC9/logo.png differ diff --git a/blockchains/fantom/assets/0x4cdF39285D7Ca8eB3f090fDA0C069ba5F4145B37/info.json b/blockchains/fantom/assets/0x4cdF39285D7Ca8eB3f090fDA0C069ba5F4145B37/info.json index d620864fcf11c..147c2914a925d 100644 --- a/blockchains/fantom/assets/0x4cdF39285D7Ca8eB3f090fDA0C069ba5F4145B37/info.json +++ b/blockchains/fantom/assets/0x4cdF39285D7Ca8eB3f090fDA0C069ba5F4145B37/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/tombfinance" + "name": "x", + "url": "https://x.com/tombfinance" }, { "name": "telegram", diff --git a/blockchains/fantom/assets/0x56ee926bD8c72B2d5fa1aF4d9E4Cbb515a1E3Adc/info.json b/blockchains/fantom/assets/0x56ee926bD8c72B2d5fa1aF4d9E4Cbb515a1E3Adc/info.json index a0d03491f451d..fd67123a98e84 100644 --- a/blockchains/fantom/assets/0x56ee926bD8c72B2d5fa1aF4d9E4Cbb515a1E3Adc/info.json +++ b/blockchains/fantom/assets/0x56ee926bD8c72B2d5fa1aF4d9E4Cbb515a1E3Adc/info.json @@ -1,5 +1,5 @@ { - "name": "Synthetix Network", + "name": "Synthetix", "website": "https://www.synthetix.io/", "description": "The Synthetix Network Token (SNX) is the native token of Synthetix, a synthetic asset (Synth) issuance protocol built on Ethereum. The SNX token is used as collateral to issue Synths, ERC-20 tokens that track the price of assets like Gold, Silver, Oil and Bitcoin.", "explorer": "https://ftmscan.com/token/0x56ee926bD8c72B2d5fa1aF4d9E4Cbb515a1E3Adc", @@ -17,8 +17,8 @@ "url": "https://github.com/synthetixio" }, { - "name": "twitter", - "url": "https://twitter.com/synthetix_io" + "name": "x", + "url": "https://x.com/synthetix_io" }, { "name": "coinmarketcap", diff --git a/blockchains/fantom/assets/0x5C4FDfc5233f935f20D2aDbA572F770c2E377Ab0/info.json b/blockchains/fantom/assets/0x5C4FDfc5233f935f20D2aDbA572F770c2E377Ab0/info.json index 2fb97003b9f5d..f95a98b1690e0 100644 --- a/blockchains/fantom/assets/0x5C4FDfc5233f935f20D2aDbA572F770c2E377Ab0/info.json +++ b/blockchains/fantom/assets/0x5C4FDfc5233f935f20D2aDbA572F770c2E377Ab0/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/HectorDAO_HEC" + "name": "x", + "url": "https://x.com/HectorDAO_HEC" }, { "name": "medium", @@ -45,4 +45,4 @@ "url": "https://coingecko.com/en/coins/hector-finance" } ] -} +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x5Cc61A78F164885776AA610fb0FE1257df78E59B/info.json b/blockchains/fantom/assets/0x5Cc61A78F164885776AA610fb0FE1257df78E59B/info.json new file mode 100644 index 0000000000000..ee319b9268b07 --- /dev/null +++ b/blockchains/fantom/assets/0x5Cc61A78F164885776AA610fb0FE1257df78E59B/info.json @@ -0,0 +1,21 @@ +{ + "name": "SpiritSwap", + "website": "https://www.spiritswap.finance/", + "description": "The SpiritSwap protocol adds incentives for Fantom network participants by introducing revenue sharing through the classic AMM model.", + "explorer": "https://ftmscan.com/token/0x5cc61a78f164885776aa610fb0fe1257df78e59b", + "type": "FANTOM", + "symbol": "SPIRIT", + "decimals": 18, + "status": "active", + "id": "0x5Cc61A78F164885776AA610fb0FE1257df78E59B", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spiritswap/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/spiritswap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x5Cc61A78F164885776AA610fb0FE1257df78E59B/logo.png b/blockchains/fantom/assets/0x5Cc61A78F164885776AA610fb0FE1257df78E59B/logo.png new file mode 100644 index 0000000000000..4d44d7f8b7771 Binary files /dev/null and b/blockchains/fantom/assets/0x5Cc61A78F164885776AA610fb0FE1257df78E59B/logo.png differ diff --git a/blockchains/fantom/assets/0x657A1861c15A3deD9AF0B6799a195a249ebdCbc6/info.json b/blockchains/fantom/assets/0x657A1861c15A3deD9AF0B6799a195a249ebdCbc6/info.json new file mode 100644 index 0000000000000..60aea8c49e602 --- /dev/null +++ b/blockchains/fantom/assets/0x657A1861c15A3deD9AF0B6799a195a249ebdCbc6/info.json @@ -0,0 +1,21 @@ +{ + "name": "CREAM", + "website": "https://cream.finance", + "description": "Cream - Crypto Rules Everything Around Me", + "explorer": "https://ftmscan.com/token/0x657A1861c15A3deD9AF0B6799a195a249ebdCbc6", + "type": "FANTOM", + "symbol": "CREAM", + "decimals": 18, + "status": "active", + "id": "0x657A1861c15A3deD9AF0B6799a195a249ebdCbc6", + "links": [ + { + "name": "telegram", + "url": "https://t.me/CreamdotFinance" + }, + { + "name": "x", + "url": "https://x.com/CreamdotFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x657A1861c15A3deD9AF0B6799a195a249ebdCbc6/logo.png b/blockchains/fantom/assets/0x657A1861c15A3deD9AF0B6799a195a249ebdCbc6/logo.png new file mode 100644 index 0000000000000..1baed04d24379 Binary files /dev/null and b/blockchains/fantom/assets/0x657A1861c15A3deD9AF0B6799a195a249ebdCbc6/logo.png differ diff --git a/blockchains/fantom/assets/0x658b0c7613e890EE50B8C4BC6A3f41ef411208aD/info.json b/blockchains/fantom/assets/0x658b0c7613e890EE50B8C4BC6A3f41ef411208aD/info.json index fede1a02adb69..0cdf90da42a85 100644 --- a/blockchains/fantom/assets/0x658b0c7613e890EE50B8C4BC6A3f41ef411208aD/info.json +++ b/blockchains/fantom/assets/0x658b0c7613e890EE50B8C4BC6A3f41ef411208aD/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/Fantom_English" }, { - "name": "twitter", - "url": "https://twitter.com/FantomFDN" + "name": "x", + "url": "https://x.com/FantomFDN" }, { "name": "medium", diff --git a/blockchains/fantom/assets/0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a/info.json b/blockchains/fantom/assets/0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a/info.json new file mode 100644 index 0000000000000..734cfda57ef00 --- /dev/null +++ b/blockchains/fantom/assets/0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a/info.json @@ -0,0 +1,36 @@ +{ + "name": "Wootrade Network", + "type": "FANTOM", + "symbol": "WOO", + "decimals": 18, + "website": "https://woo.network", + "description": "Wootrade aims to provide deep liquidity and superior order execution at the lowest cost for traders, exchanges, institutions, and DeFi platforms. Its flagship, WOO X, is a professional trading platform featuring customizable modules, and zero-fees with deep liquidity across spot and margin. Wootrade was founded by Kronos Research, a quantitative trading firm generating $10-15B in daily volume, with the goal of democratizing access to deep liquidity and yield strategies through various products.", + "explorer": "https://ftmscan.com/token/0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a", + "status": "active", + "id": "0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a", + "tags": [ + "defi" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/wootrade" + }, + { + "name": "blog", + "url": "https://medium.com/@wootrade" + }, + { + "name": "facebook", + "url": "https://facebook.com/Wootrade" + }, + { + "name": "whitepaper", + "url": "https://woo.network/Litepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wootrade-network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a/logo.png b/blockchains/fantom/assets/0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a/logo.png new file mode 100644 index 0000000000000..5cd7c39954306 Binary files /dev/null and b/blockchains/fantom/assets/0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a/logo.png differ diff --git a/blockchains/fantom/assets/0x662B3d319e693aA578EDd4BD8a5c9395BC49e9F4/info.json b/blockchains/fantom/assets/0x662B3d319e693aA578EDd4BD8a5c9395BC49e9F4/info.json new file mode 100644 index 0000000000000..454a04f1c3e1f --- /dev/null +++ b/blockchains/fantom/assets/0x662B3d319e693aA578EDd4BD8a5c9395BC49e9F4/info.json @@ -0,0 +1,25 @@ +{ + "name": "GOGGLES", + "website": "https://goglz.io/", + "description": "SONIC FAST BOI. THEY STAY ON.", + "explorer": "https://ftmscan.com/token/0x662b3d319e693aa578edd4bd8a5c9395bc49e9f4", + "type": "FANTOM", + "symbol": "GOGLZ", + "decimals": 18, + "status": "active", + "id": "0x662B3d319e693aA578EDd4BD8a5c9395BC49e9F4", + "links": [ + { + "name": "x", + "url": "https://x.com/goggles_sonic" + }, + { + "name": "telegram", + "url": "https://t.me/GogglesSonic" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/goggles/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x662B3d319e693aA578EDd4BD8a5c9395BC49e9F4/logo.png b/blockchains/fantom/assets/0x662B3d319e693aA578EDd4BD8a5c9395BC49e9F4/logo.png new file mode 100644 index 0000000000000..1f750ac926792 Binary files /dev/null and b/blockchains/fantom/assets/0x662B3d319e693aA578EDd4BD8a5c9395BC49e9F4/logo.png differ diff --git a/blockchains/fantom/assets/0x69c744D3444202d35a2783929a0F930f2FBB05ad/info.json b/blockchains/fantom/assets/0x69c744D3444202d35a2783929a0F930f2FBB05ad/info.json index 184bb1cb5dccb..8730bb6821529 100644 --- a/blockchains/fantom/assets/0x69c744D3444202d35a2783929a0F930f2FBB05ad/info.json +++ b/blockchains/fantom/assets/0x69c744D3444202d35a2783929a0F930f2FBB05ad/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/Fantom_English" }, { - "name": "twitter", - "url": "https://twitter.com/FantomFDN" + "name": "x", + "url": "https://x.com/FantomFDN" }, { "name": "medium", diff --git a/blockchains/fantom/assets/0x6a07A792ab2965C72a5B8088d3a069A7aC3a993B/info.json b/blockchains/fantom/assets/0x6a07A792ab2965C72a5B8088d3a069A7aC3a993B/info.json index 5ec4c6bb7b969..7d0e6f965b504 100644 --- a/blockchains/fantom/assets/0x6a07A792ab2965C72a5B8088d3a069A7aC3a993B/info.json +++ b/blockchains/fantom/assets/0x6a07A792ab2965C72a5B8088d3a069A7aC3a993B/info.json @@ -1,15 +1,18 @@ + { "name": "Aave", - "website": "https://aave.com/", - "description": "Aave is an Open Source and Non-Custodial protocol to earn interest on deposits & borrow assets. It also features access to highly innovative flash loans, which let developers borrow instantly and easily; no collateral needed.", + "website": "https://aave.com", + "description": "Aave Protocol is a decentralised liquidity protocol where people can lend and borrow digital assets. The AAVE token is the governance token of the protocol, so AAVE holders can vote on proposals for updates. AAVE holders can also stake their AAVE in the protocol Safety Module and earn Safety Incentives for securing the protocol", "explorer": "https://ftmscan.com/token/0x6a07A792ab2965C72a5B8088d3a069A7aC3a993B", + "research": "https://research.binance.com/en/projects/aave-protocol", "type": "FANTOM", "symbol": "AAVE", "decimals": 18, "status": "active", "id": "0x6a07A792ab2965C72a5B8088d3a069A7aC3a993B", "tags": [ - "defi" + "defi", + "governance" ], "links": [ { @@ -17,16 +20,32 @@ "url": "https://github.com/aave/aave-protocol" }, { - "name": "twitter", - "url": "https://twitter.com/aaveaave" + "name": "x", + "url": "https://x.com/aave" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Aave_Official" + }, + { + "name": "blog", + "url": "https://medium.com/aave" + }, + { + "name": "facebook", + "url": "https://facebook.com/AaveCom" + }, + { + "name": "whitepaper", + "url": "https://github.com/aave/aave-protocol/blob/master/docs/Aave_Protocol_Whitepaper_v1_0.pdf/" }, { "name": "coinmarketcap", "url": "https://coinmarketcap.com/currencies/aave/" }, { - "name": "whitepaper", - "url": "https://github.com/aave/protocol-v2/blob/master/aave-v2-whitepaper.pdf" + "name": "coingecko", + "url": "https://coingecko.com/en/coins/aave/" } ] } \ No newline at end of file diff --git a/blockchains/fantom/assets/0x6a07A792ab2965C72a5B8088d3a069A7aC3a993B/logo.png b/blockchains/fantom/assets/0x6a07A792ab2965C72a5B8088d3a069A7aC3a993B/logo.png index 1e7cef36a8aaa..d53b11427e965 100644 Binary files a/blockchains/fantom/assets/0x6a07A792ab2965C72a5B8088d3a069A7aC3a993B/logo.png and b/blockchains/fantom/assets/0x6a07A792ab2965C72a5B8088d3a069A7aC3a993B/logo.png differ diff --git a/blockchains/fantom/assets/0x74E23dF9110Aa9eA0b6ff2fAEE01e740CA1c642e/info.json b/blockchains/fantom/assets/0x74E23dF9110Aa9eA0b6ff2fAEE01e740CA1c642e/info.json index cad900f0362a0..340c0c45e44f2 100644 --- a/blockchains/fantom/assets/0x74E23dF9110Aa9eA0b6ff2fAEE01e740CA1c642e/info.json +++ b/blockchains/fantom/assets/0x74E23dF9110Aa9eA0b6ff2fAEE01e740CA1c642e/info.json @@ -14,8 +14,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/HectorDAO_HEC" + "name": "x", + "url": "https://x.com/HectorDAO_HEC" }, { "name": "medium", @@ -46,4 +46,4 @@ "url": "https://coingecko.com/en/coins/tor" } ] -} +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x75bdeF24285013387A47775828bEC90b91Ca9a5F/info.json b/blockchains/fantom/assets/0x75bdeF24285013387A47775828bEC90b91Ca9a5F/info.json index 176d94b1d980d..176d62b04d523 100644 --- a/blockchains/fantom/assets/0x75bdeF24285013387A47775828bEC90b91Ca9a5F/info.json +++ b/blockchains/fantom/assets/0x75bdeF24285013387A47775828bEC90b91Ca9a5F/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/HectorDAO_HEC" + "name": "x", + "url": "https://x.com/HectorDAO_HEC" }, { "name": "medium", @@ -37,4 +37,4 @@ "url": "https://github.com/Hector-DAO" } ] -} +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x7d016eec9c25232b01F23EF992D98ca97fc2AF5a/info.json b/blockchains/fantom/assets/0x7d016eec9c25232b01F23EF992D98ca97fc2AF5a/info.json index a7d03e2024144..bbe80ca0619a7 100644 --- a/blockchains/fantom/assets/0x7d016eec9c25232b01F23EF992D98ca97fc2AF5a/info.json +++ b/blockchains/fantom/assets/0x7d016eec9c25232b01F23EF992D98ca97fc2AF5a/info.json @@ -18,8 +18,8 @@ "url": "https://github.com/fraxfinance/frax-solidity" }, { - "name": "twitter", - "url": "https://twitter.com/fraxfinance" + "name": "x", + "url": "https://x.com/fraxfinance" }, { "name": "coinmarketcap", diff --git a/blockchains/fantom/assets/0x82f0B8B456c1A451378467398982d4834b6829c1/info.json b/blockchains/fantom/assets/0x82f0B8B456c1A451378467398982d4834b6829c1/info.json index 26c31b3362c5e..a0cfeac842bee 100644 --- a/blockchains/fantom/assets/0x82f0B8B456c1A451378467398982d4834b6829c1/info.json +++ b/blockchains/fantom/assets/0x82f0B8B456c1A451378467398982d4834b6829c1/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Abracadabra-money/magic-internet-money" }, { - "name": "twitter", - "url": "https://twitter.com/MIM_Spell" + "name": "x", + "url": "https://x.com/MIM_Spell" }, { "name": "medium", diff --git a/blockchains/fantom/assets/0x841FAD6EAe12c286d1Fd18d1d525DFfA75C7EFFE/info.json b/blockchains/fantom/assets/0x841FAD6EAe12c286d1Fd18d1d525DFfA75C7EFFE/info.json new file mode 100644 index 0000000000000..26a78bcc243e2 --- /dev/null +++ b/blockchains/fantom/assets/0x841FAD6EAe12c286d1Fd18d1d525DFfA75C7EFFE/info.json @@ -0,0 +1,21 @@ +{ + "name": "Spooky", + "type": "FANTOM", + "symbol": "BOO", + "decimals": 18, + "website": "https://spookyswap.finance/", + "description": "SpookySwap is an automated market-making (AMM) decentralized exchange (DEX) for the Fantom Opera network.", + "explorer": "https://ftmscan.com/token/0x841fad6eae12c286d1fd18d1d525dffa75c7effe", + "status": "active", + "id": "0x841FAD6EAe12c286d1Fd18d1d525DFfA75C7EFFE", + "links": [ + { + "name": "x", + "url": "https://x.com/spookyswap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spookyswap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x841FAD6EAe12c286d1Fd18d1d525DFfA75C7EFFE/logo.png b/blockchains/fantom/assets/0x841FAD6EAe12c286d1Fd18d1d525DFfA75C7EFFE/logo.png new file mode 100644 index 0000000000000..ef7cade406b22 Binary files /dev/null and b/blockchains/fantom/assets/0x841FAD6EAe12c286d1Fd18d1d525DFfA75C7EFFE/logo.png differ diff --git a/blockchains/fantom/assets/0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E/info.json b/blockchains/fantom/assets/0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E/info.json index eacf6e074f7b0..25727a7658f29 100644 --- a/blockchains/fantom/assets/0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E/info.json +++ b/blockchains/fantom/assets/0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E/info.json @@ -15,8 +15,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/MakerDAO" + "name": "x", + "url": "https://x.com/MakerDAO" }, { "name": "reddit", diff --git a/blockchains/fantom/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/info.json b/blockchains/fantom/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/info.json index 1cd4aebadc99b..1aeacafc19b16 100644 --- a/blockchains/fantom/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/info.json +++ b/blockchains/fantom/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/info.json @@ -10,8 +10,8 @@ "id": "0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65", "links": [ { - "name": "twitter", - "url": "https://twitter.com/axelarcore" + "name": "x", + "url": "https://x.com/axelarcore" }, { "name": "github", @@ -65,4 +65,4 @@ "tags": [ "wrapped" ] -} +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x94CcF60f700146BeA8eF7832820800E2dFa92EdA/info.json b/blockchains/fantom/assets/0x94CcF60f700146BeA8eF7832820800E2dFa92EdA/info.json index 19c16917fff93..e0ff441184bba 100644 --- a/blockchains/fantom/assets/0x94CcF60f700146BeA8eF7832820800E2dFa92EdA/info.json +++ b/blockchains/fantom/assets/0x94CcF60f700146BeA8eF7832820800E2dFa92EdA/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/HectorDAO_HEC" + "name": "x", + "url": "https://x.com/HectorDAO_HEC" }, { "name": "medium", @@ -45,4 +45,4 @@ "url": "https://coingecko.com/en/coins/wrapped-hec" } ] -} +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x9564fBfD3B3819D6Fb2DbC88C75E112400bE8F0C/info.json b/blockchains/fantom/assets/0x9564fBfD3B3819D6Fb2DbC88C75E112400bE8F0C/info.json index 1a4b4f4ec6a79..ebe0af840bc4a 100644 --- a/blockchains/fantom/assets/0x9564fBfD3B3819D6Fb2DbC88C75E112400bE8F0C/info.json +++ b/blockchains/fantom/assets/0x9564fBfD3B3819D6Fb2DbC88C75E112400bE8F0C/info.json @@ -14,8 +14,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/OWLDAOio" + "name": "x", + "url": "https://x.com/OWLDAOio" }, { "name": "telegram", diff --git a/blockchains/fantom/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json b/blockchains/fantom/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json index 6c424cdaa65e5..b55660ba2e0c3 100644 --- a/blockchains/fantom/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json +++ b/blockchains/fantom/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json @@ -10,8 +10,8 @@ "id": "0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/multichainorg" + "name": "x", + "url": "https://x.com/multichainorg" }, { "name": "github", diff --git a/blockchains/fantom/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/info.json b/blockchains/fantom/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/info.json index 3b5041641290f..00d9c6ddf6afc 100644 --- a/blockchains/fantom/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/info.json +++ b/blockchains/fantom/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/bandprotocol" }, { - "name": "twitter", - "url": "https://twitter.com/BandProtocol" + "name": "x", + "url": "https://x.com/BandProtocol" }, { "name": "coinmarketcap", diff --git a/blockchains/fantom/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json b/blockchains/fantom/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json index 98cdabb74f594..1d7b0aedc4428 100644 --- a/blockchains/fantom/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json +++ b/blockchains/fantom/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json @@ -18,8 +18,8 @@ "url": "https://coingecko.com/en/coins/everrise" }, { - "name": "twitter", - "url": "https://twitter.com/everrise" + "name": "x", + "url": "https://x.com/everrise" }, { "name": "telegram", diff --git a/blockchains/fantom/assets/0xC758295Cd1A564cdb020a78a681a838CF8e0627D/info.json b/blockchains/fantom/assets/0xC758295Cd1A564cdb020a78a681a838CF8e0627D/info.json new file mode 100644 index 0000000000000..d6282a2d73316 --- /dev/null +++ b/blockchains/fantom/assets/0xC758295Cd1A564cdb020a78a681a838CF8e0627D/info.json @@ -0,0 +1,21 @@ +{ + "name": "FantomStarter", + "website": "https://fantomstarter.io/", + "description": "The FantomStarter launchpad provides logistics on more than one chain. It supports Fantom (FTM), Binance Smart Chain (BSC), Ethereum (ETH), and Polygon (Matic) and many others.", + "explorer": "https://ftmscan.com/token/0xC758295Cd1A564cdb020a78a681a838CF8e0627D", + "type": "FANTOM", + "symbol": "FS", + "decimals": 18, + "status": "active", + "id": "0xC758295Cd1A564cdb020a78a681a838CF8e0627D", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fantomstarter/" + }, + { + "name": "x", + "url": "https://x.com/fantomstarter" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0xC758295Cd1A564cdb020a78a681a838CF8e0627D/logo.png b/blockchains/fantom/assets/0xC758295Cd1A564cdb020a78a681a838CF8e0627D/logo.png new file mode 100644 index 0000000000000..10b1a03371c23 Binary files /dev/null and b/blockchains/fantom/assets/0xC758295Cd1A564cdb020a78a681a838CF8e0627D/logo.png differ diff --git a/blockchains/fantom/assets/0xCfC785741Dc0e98ad4c9F6394Bb9d43Cd1eF5179/info.json b/blockchains/fantom/assets/0xCfC785741Dc0e98ad4c9F6394Bb9d43Cd1eF5179/info.json index cbe6cc027c77e..573b2fad2a0be 100644 --- a/blockchains/fantom/assets/0xCfC785741Dc0e98ad4c9F6394Bb9d43Cd1eF5179/info.json +++ b/blockchains/fantom/assets/0xCfC785741Dc0e98ad4c9F6394Bb9d43Cd1eF5179/info.json @@ -10,8 +10,8 @@ "id": "0xCfC785741Dc0e98ad4c9F6394Bb9d43Cd1eF5179", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ankr" + "name": "x", + "url": "https://x.com/ankr" }, { "name": "github", @@ -53,4 +53,4 @@ "tags": [ "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0xD3c325848D7c6E29b574Cb0789998b2ff901f17E/info.json b/blockchains/fantom/assets/0xD3c325848D7c6E29b574Cb0789998b2ff901f17E/info.json new file mode 100644 index 0000000000000..17ea5cb6eb9b7 --- /dev/null +++ b/blockchains/fantom/assets/0xD3c325848D7c6E29b574Cb0789998b2ff901f17E/info.json @@ -0,0 +1,21 @@ +{ + "name": "ArtWallet", + "website": "https://www.oneart.digital/", + "description": "OneArt is building a scalable ecosystem of NFT related products connecting blockchains together in one place.", + "explorer": "https://ftmscan.com/token/0xD3c325848D7c6E29b574Cb0789998b2ff901f17E", + "type": "FANTOM", + "symbol": "1ART", + "decimals": 18, + "status": "active", + "id": "0xD3c325848D7c6E29b574Cb0789998b2ff901f17E", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/artwallet/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/1art/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0xD3c325848D7c6E29b574Cb0789998b2ff901f17E/logo.png b/blockchains/fantom/assets/0xD3c325848D7c6E29b574Cb0789998b2ff901f17E/logo.png new file mode 100644 index 0000000000000..6ef5918f1f402 Binary files /dev/null and b/blockchains/fantom/assets/0xD3c325848D7c6E29b574Cb0789998b2ff901f17E/logo.png differ diff --git a/blockchains/fantom/assets/0xDBf31dF14B66535aF65AaC99C32e9eA844e14501/info.json b/blockchains/fantom/assets/0xDBf31dF14B66535aF65AaC99C32e9eA844e14501/info.json new file mode 100644 index 0000000000000..e2c31cb7528ce --- /dev/null +++ b/blockchains/fantom/assets/0xDBf31dF14B66535aF65AaC99C32e9eA844e14501/info.json @@ -0,0 +1,44 @@ +{ + "name": "renBTC", + "symbol": "renBTC", + "type": "FANTOM", + "decimals": 8, + "description": "RenBTC is a token built by RenVM team to expose bitcoin-backed assets to the benefits of Ethereum's various decentralized finance (DeFi) platforms.", + "website": "https://renproject.io", + "explorer": "https://ftmscan.com/token/0xDBf31dF14B66535aF65AaC99C32e9eA844e14501", + "status": "active", + "id": "0xDBf31dF14B66535aF65AaC99C32e9eA844e14501", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/renproject" + }, + { + "name": "x", + "url": "https://x.com/renprotocol" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/RenProject/" + }, + { + "name": "blog", + "url": "https://medium.com/renproject" + }, + { + "name": "telegram", + "url": "https://t.me/renproject" + }, + { + "name": "whitepaper", + "url": "https://github.com/renproject/ren/wiki/Introduction" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/renbtc/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0xDBf31dF14B66535aF65AaC99C32e9eA844e14501/logo.png b/blockchains/fantom/assets/0xDBf31dF14B66535aF65AaC99C32e9eA844e14501/logo.png new file mode 100644 index 0000000000000..fd77fd180552c Binary files /dev/null and b/blockchains/fantom/assets/0xDBf31dF14B66535aF65AaC99C32e9eA844e14501/logo.png differ diff --git a/blockchains/fantom/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json b/blockchains/fantom/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json index efe1b33182434..edb89dfe5f850 100644 --- a/blockchains/fantom/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json +++ b/blockchains/fantom/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json @@ -10,8 +10,8 @@ "id": "0xDbA7b24257fC6e397cB7368B4BC922E944072f1b", "links": [ { - "name": "twitter", - "url": "https://twitter.com/everrise" + "name": "x", + "url": "https://x.com/everrise" }, { "name": "telegram", diff --git a/blockchains/fantom/assets/0xE55e19Fb4F2D85af758950957714292DAC1e25B2/info.json b/blockchains/fantom/assets/0xE55e19Fb4F2D85af758950957714292DAC1e25B2/info.json index af10640c24680..51734fa836a83 100644 --- a/blockchains/fantom/assets/0xE55e19Fb4F2D85af758950957714292DAC1e25B2/info.json +++ b/blockchains/fantom/assets/0xE55e19Fb4F2D85af758950957714292DAC1e25B2/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/synapseprotocol" + "name": "x", + "url": "https://x.com/synapseprotocol" }, { "name": "telegram", diff --git a/blockchains/fantom/assets/0xE6c259bc0FCE25b71fE95A00361D3878E16232C3/info.json b/blockchains/fantom/assets/0xE6c259bc0FCE25b71fE95A00361D3878E16232C3/info.json new file mode 100644 index 0000000000000..21e7db65bd3ab --- /dev/null +++ b/blockchains/fantom/assets/0xE6c259bc0FCE25b71fE95A00361D3878E16232C3/info.json @@ -0,0 +1,32 @@ +{ + "name": "Curve DAO", + "website": "https://www.curve.finance/", + "description": "Curve is an exchange liquidity pool on Ethereum (like Uniswap) designed for (1) extremely efficient stablecoin trading (2) low risk, supplemental fee income for liquidity providers, without an opportunity cost.", + "explorer": "https://ftmscan.com/token/0xe6c259bc0fce25b71fe95a00361d3878e16232c3", + "type": "FANTOM", + "symbol": "CRV", + "decimals": 18, + "status": "active", + "id": "0xE6c259bc0FCE25b71fE95A00361D3878E16232C3", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/curvefi" + }, + { + "name": "x", + "url": "https://x.com/CurveFinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/curve-dao-token//" + }, + { + "name": "whitepaper", + "url": "https://curve.finance/whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0xE6c259bc0FCE25b71fE95A00361D3878E16232C3/logo.png b/blockchains/fantom/assets/0xE6c259bc0FCE25b71fE95A00361D3878E16232C3/logo.png new file mode 100644 index 0000000000000..b820f250c2d3b Binary files /dev/null and b/blockchains/fantom/assets/0xE6c259bc0FCE25b71fE95A00361D3878E16232C3/logo.png differ diff --git a/blockchains/fantom/assets/0xaD996A45fd2373ed0B10Efa4A8eCB9de445A4302/info.json b/blockchains/fantom/assets/0xaD996A45fd2373ed0B10Efa4A8eCB9de445A4302/info.json new file mode 100644 index 0000000000000..83369873b67d1 --- /dev/null +++ b/blockchains/fantom/assets/0xaD996A45fd2373ed0B10Efa4A8eCB9de445A4302/info.json @@ -0,0 +1,21 @@ +{ + "name": "ALPACA", + "website": "https://www.alpacafinance.org", + "description": "ALPACA is the token that powers Alpaca Finance, the 1st leveraged yield farming protocol on Binance Smart Chain.", + "explorer": "https://ftmscan.com/token/0xad996a45fd2373ed0b10efa4a8ecb9de445a4302", + "type": "FANTOM", + "symbol": "ALPACA", + "decimals": 18, + "status": "active", + "id": "0xaD996A45fd2373ed0B10Efa4A8eCB9de445A4302", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/alpaca-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/alpaca-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0xaD996A45fd2373ed0B10Efa4A8eCB9de445A4302/logo.png b/blockchains/fantom/assets/0xaD996A45fd2373ed0B10Efa4A8eCB9de445A4302/logo.png new file mode 100644 index 0000000000000..9644ff85a6a7b Binary files /dev/null and b/blockchains/fantom/assets/0xaD996A45fd2373ed0B10Efa4A8eCB9de445A4302/logo.png differ diff --git a/blockchains/fantom/assets/0xae75A438b2E0cB8Bb01Ec1E1e376De11D44477CC/info.json b/blockchains/fantom/assets/0xae75A438b2E0cB8Bb01Ec1E1e376De11D44477CC/info.json index febbe3c22a506..2c9868df9122e 100644 --- a/blockchains/fantom/assets/0xae75A438b2E0cB8Bb01Ec1E1e376De11D44477CC/info.json +++ b/blockchains/fantom/assets/0xae75A438b2E0cB8Bb01Ec1E1e376De11D44477CC/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/sushiswap" }, { - "name": "twitter", - "url": "https://twitter.com/sushiswap" + "name": "x", + "url": "https://x.com/sushiswap" }, { "name": "coinmarketcap", diff --git a/blockchains/fantom/assets/0xb3654dc3D10Ea7645f8319668E8F54d2574FBdC8/info.json b/blockchains/fantom/assets/0xb3654dc3D10Ea7645f8319668E8F54d2574FBdC8/info.json index 08f3149e48f82..e8649991932da 100644 --- a/blockchains/fantom/assets/0xb3654dc3D10Ea7645f8319668E8F54d2574FBdC8/info.json +++ b/blockchains/fantom/assets/0xb3654dc3D10Ea7645f8319668E8F54d2574FBdC8/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/chainlinkofficial" }, { - "name": "twitter", - "url": "https://twitter.com/chainlink" + "name": "x", + "url": "https://x.com/chainlink" }, { "name": "blog", diff --git a/blockchains/fantom/assets/0xb7C2ddB1EBAc1056231ef22c1b0A13988537a274/info.json b/blockchains/fantom/assets/0xb7C2ddB1EBAc1056231ef22c1b0A13988537a274/info.json new file mode 100644 index 0000000000000..3fbe69a5c42ec --- /dev/null +++ b/blockchains/fantom/assets/0xb7C2ddB1EBAc1056231ef22c1b0A13988537a274/info.json @@ -0,0 +1,21 @@ +{ + "name": "Tarot", + "website": "https://www.tarot.to/", + "description": "ALPACA is the token that powers Alpaca Finance, the 1st leveraged yield farming protocol on Binance Smart Chain.", + "explorer": "https://ftmscan.com/token/0xb7C2ddB1EBAc1056231ef22c1b0A13988537a274", + "type": "FANTOM", + "symbol": "TAROT", + "decimals": 18, + "status": "active", + "id": "0xb7C2ddB1EBAc1056231ef22c1b0A13988537a274", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tarot/" + }, + { + "name": "x", + "url": "https://x.com/tarotfinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0xb7C2ddB1EBAc1056231ef22c1b0A13988537a274/logo.png b/blockchains/fantom/assets/0xb7C2ddB1EBAc1056231ef22c1b0A13988537a274/logo.png new file mode 100644 index 0000000000000..daa8df266ce9a Binary files /dev/null and b/blockchains/fantom/assets/0xb7C2ddB1EBAc1056231ef22c1b0A13988537a274/logo.png differ diff --git a/blockchains/fantom/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json b/blockchains/fantom/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json index 32552ec9cd1aa..653f4d2f184db 100644 --- a/blockchains/fantom/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json +++ b/blockchains/fantom/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json @@ -10,8 +10,8 @@ "id": "0xbBD7B847C6d0d0B5691518a363194D71426475F1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/everrise" + "name": "x", + "url": "https://x.com/everrise" }, { "name": "telegram", diff --git a/blockchains/fantom/assets/0xc60D7067dfBc6f2caf30523a064f416A5Af52963/info.json b/blockchains/fantom/assets/0xc60D7067dfBc6f2caf30523a064f416A5Af52963/info.json new file mode 100644 index 0000000000000..215a4cfea6c14 --- /dev/null +++ b/blockchains/fantom/assets/0xc60D7067dfBc6f2caf30523a064f416A5Af52963/info.json @@ -0,0 +1,21 @@ +{ + "name": "Treeb", + "website": "https://retreeb.io/", + "description": "Retreeb is a distributed payment solution that shares one third of its network fees to funding social and solidarity projects.", + "explorer": "https://ftmscan.com/token/0xc60d7067dfbc6f2caf30523a064f416a5af52963", + "type": "FANTOM", + "symbol": "TREEB", + "decimals": 18, + "status": "active", + "id": "0xc60D7067dfBc6f2caf30523a064f416A5Af52963", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/retreeb/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/treeb/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0xc60D7067dfBc6f2caf30523a064f416A5Af52963/logo.png b/blockchains/fantom/assets/0xc60D7067dfBc6f2caf30523a064f416A5Af52963/logo.png new file mode 100644 index 0000000000000..99c075fe888d4 Binary files /dev/null and b/blockchains/fantom/assets/0xc60D7067dfBc6f2caf30523a064f416A5Af52963/logo.png differ diff --git a/blockchains/fantom/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json b/blockchains/fantom/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json index a4b2d624c588f..d17d0135768e9 100644 --- a/blockchains/fantom/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json +++ b/blockchains/fantom/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json @@ -10,8 +10,8 @@ "id": "0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189", "links": [ { - "name": "twitter", - "url": "https://twitter.com/OkcashCrypto" + "name": "x", + "url": "https://x.com/OkcashCrypto" }, { "name": "github", @@ -33,4 +33,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0xd6070ae98b8069de6B494332d1A1a81B6179D960/info.json b/blockchains/fantom/assets/0xd6070ae98b8069de6B494332d1A1a81B6179D960/info.json index ae74aac4f8967..62760ab86db00 100644 --- a/blockchains/fantom/assets/0xd6070ae98b8069de6B494332d1A1a81B6179D960/info.json +++ b/blockchains/fantom/assets/0xd6070ae98b8069de6B494332d1A1a81B6179D960/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/beefyfinance" }, { - "name": "twitter", - "url": "https://twitter.com/beefyfinance" + "name": "x", + "url": "https://x.com/beefyfinance" }, { "name": "telegram", diff --git a/blockchains/fantom/assets/0xdc301622e621166BD8E82f2cA0A26c13Ad0BE355/info.json b/blockchains/fantom/assets/0xdc301622e621166BD8E82f2cA0A26c13Ad0BE355/info.json index e288c7dcb07d8..0fea4af5d3b63 100644 --- a/blockchains/fantom/assets/0xdc301622e621166BD8E82f2cA0A26c13Ad0BE355/info.json +++ b/blockchains/fantom/assets/0xdc301622e621166BD8E82f2cA0A26c13Ad0BE355/info.json @@ -18,8 +18,8 @@ "url": "https://github.com/fraxfinance/frax-solidity" }, { - "name": "twitter", - "url": "https://twitter.com/fraxfinance" + "name": "x", + "url": "https://x.com/fraxfinance" }, { "name": "coinmarketcap", diff --git a/blockchains/fantom/assets/0xe1146b9AC456fCbB60644c36Fd3F868A9072fc6E/info.json b/blockchains/fantom/assets/0xe1146b9AC456fCbB60644c36Fd3F868A9072fc6E/info.json index e329fd4dabab9..95ad5388328de 100644 --- a/blockchains/fantom/assets/0xe1146b9AC456fCbB60644c36Fd3F868A9072fc6E/info.json +++ b/blockchains/fantom/assets/0xe1146b9AC456fCbB60644c36Fd3F868A9072fc6E/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/Fantom_English" }, { - "name": "twitter", - "url": "https://twitter.com/FantomFDN" + "name": "x", + "url": "https://x.com/FantomFDN" }, { "name": "medium", diff --git a/blockchains/fantom/assets/0xe64B9fd040D1F9D4715C645e0D567EF69958D3D9/info.json b/blockchains/fantom/assets/0xe64B9fd040D1F9D4715C645e0D567EF69958D3D9/info.json new file mode 100644 index 0000000000000..a9bc00d133329 --- /dev/null +++ b/blockchains/fantom/assets/0xe64B9fd040D1F9D4715C645e0D567EF69958D3D9/info.json @@ -0,0 +1,22 @@ +{ + "name": "Modefi", + "website": "https://modefi.io/", + "description": "Decentralized Oracle Solutions. Building the foundation for real world adoption of Oracles and DeFi", + "explorer": "https://ftmscan.com/token/0xe64b9fd040d1f9d4715c645e0d567ef69958d3d9", + "research": "https://cryptoguerrillas.com/modefi-oracle-defi/", + "type": "FANTOM", + "symbol": "MOD", + "decimals": 18, + "status": "active", + "id": "0xe64B9fd040D1F9D4715C645e0D567EF69958D3D9", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/modefi/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/modefi/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0xe64B9fd040D1F9D4715C645e0D567EF69958D3D9/logo.png b/blockchains/fantom/assets/0xe64B9fd040D1F9D4715C645e0D567EF69958D3D9/logo.png new file mode 100644 index 0000000000000..e18dfb5f133b9 Binary files /dev/null and b/blockchains/fantom/assets/0xe64B9fd040D1F9D4715C645e0D567EF69958D3D9/logo.png differ diff --git a/blockchains/fantom/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json b/blockchains/fantom/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json new file mode 100644 index 0000000000000..c2e3448ffdcac --- /dev/null +++ b/blockchains/fantom/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json @@ -0,0 +1,25 @@ +{ + "name": "Fantom ABBC", + "type": "FANTOM", + "symbol": "FABBC", + "decimals": 8, + "website": "https://abbcswap.com/", + "description": "ABBC Swap is a platform that allows users to seamlessly swap their ABBC from the ABBC mainnet using Aladdin Wallet and Aladdin Pro wallet apps into Polygon ABBC pegged.", + "explorer": "https://ftmscan.com/token/0xe83ce6bfb580583bd6a62b4be7b34fc25f02910d", + "status": "active", + "id": "0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D", + "links": [ + { + "name": "telegram", + "url": "https://t.me/abbcfoundation" + }, + { + "name": "x", + "url": "https://x.com/abbcfoundation" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abbc-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png b/blockchains/fantom/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png new file mode 100644 index 0000000000000..9259df4c30a91 Binary files /dev/null and b/blockchains/fantom/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png differ diff --git a/blockchains/fantom/info/info.json b/blockchains/fantom/info/info.json index 1afc1aa119dc9..132a3987368d7 100644 --- a/blockchains/fantom/info/info.json +++ b/blockchains/fantom/info/info.json @@ -9,14 +9,17 @@ "decimals": 18, "rpc_url": "https://rpc.ftm.tools", "status": "active", + "tags": [ + "dapp" + ], "links": [ { "name": "discord", "url": "https://discord.com/invite/zS4Ek4WByA/" }, { - "name": "twitter", - "url": "https://twitter.com/FantomFDN" + "name": "x", + "url": "https://x.com/FantomFDN" }, { "name": "telegram", diff --git a/blockchains/fantom/info/square_logo.png b/blockchains/fantom/info/square_logo.png new file mode 100644 index 0000000000000..7f2cd23f01e36 Binary files /dev/null and b/blockchains/fantom/info/square_logo.png differ diff --git a/blockchains/fantom/tokenlist.json b/blockchains/fantom/tokenlist.json index bc2c70da3ca48..d106639550416 100644 --- a/blockchains/fantom/tokenlist.json +++ b/blockchains/fantom/tokenlist.json @@ -13,16 +13,6 @@ "logoURI": "https://assets-cdn.trustwallet.com/blockchains/fantom/assets/0x6a07A792ab2965C72a5B8088d3a069A7aC3a993B/logo.png", "pairs": [] }, - { - "asset": "c10000250_t0x1E4F97b9f9F913c46F1632781732927B9019C68b", - "type": "FANTOM", - "address": "0x1E4F97b9f9F913c46F1632781732927B9019C68b", - "name": "Curve DAO", - "symbol": "CRV", - "decimals": 18, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/fantom/assets/0x1E4F97b9f9F913c46F1632781732927B9019C68b/logo.png", - "pairs": [] - }, { "asset": "c10000250_t0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E", "type": "FANTOM", @@ -47,7 +37,7 @@ "asset": "c10000250_t0x56ee926bD8c72B2d5fa1aF4d9E4Cbb515a1E3Adc", "type": "FANTOM", "address": "0x56ee926bD8c72B2d5fa1aF4d9E4Cbb515a1E3Adc", - "name": "Synthetix Network", + "name": "Synthetix", "symbol": "SNX", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/fantom/assets/0x56ee926bD8c72B2d5fa1aF4d9E4Cbb515a1E3Adc/logo.png", @@ -97,7 +87,7 @@ "asset": "c10000250_t0x29b0Da86e484E1C0029B56e817912d778aC0EC69", "type": "FANTOM", "address": "0x29b0Da86e484E1C0029B56e817912d778aC0EC69", - "name": "yearn.finance", + "name": "Yearn", "symbol": "YFI", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/fantom/assets/0x29b0Da86e484E1C0029B56e817912d778aC0EC69/logo.png", diff --git a/blockchains/fetch/info/info.json b/blockchains/fetch/info/info.json index 07ddf4ce66ac8..7621b52c5f910 100644 --- a/blockchains/fetch/info/info.json +++ b/blockchains/fetch/info/info.json @@ -22,8 +22,8 @@ "url": "https://coinmarketcap.com/currencies/fetch/" }, { - "name": "twitter", - "url": "https://twitter.com/fetch_ai" + "name": "x", + "url": "https://x.com/fetch_ai" } ] } \ No newline at end of file diff --git a/blockchains/fetch/info/square_logo.png b/blockchains/fetch/info/square_logo.png new file mode 100644 index 0000000000000..01a932688a664 Binary files /dev/null and b/blockchains/fetch/info/square_logo.png differ diff --git a/blockchains/fetch/validators/assets/fetchvaloper14gtl0dgam6cqvjkuh6kfcnszchwzk0ghumdmhw/logo.png b/blockchains/fetch/validators/assets/fetchvaloper14gtl0dgam6cqvjkuh6kfcnszchwzk0ghumdmhw/logo.png new file mode 100644 index 0000000000000..e117817071239 Binary files /dev/null and b/blockchains/fetch/validators/assets/fetchvaloper14gtl0dgam6cqvjkuh6kfcnszchwzk0ghumdmhw/logo.png differ diff --git a/blockchains/fetch/validators/assets/fetchvaloper1kfvx47a85ylex0x3c398mzzd2drxt9x4lwh4sa/logo.png b/blockchains/fetch/validators/assets/fetchvaloper1kfvx47a85ylex0x3c398mzzd2drxt9x4lwh4sa/logo.png new file mode 100644 index 0000000000000..1020527149890 Binary files /dev/null and b/blockchains/fetch/validators/assets/fetchvaloper1kfvx47a85ylex0x3c398mzzd2drxt9x4lwh4sa/logo.png differ diff --git a/blockchains/fetch/validators/assets/fetchvaloper1mr8tqsr3cjp4vh30j8h32uluh5nhnjnh8lkef0/logo.png b/blockchains/fetch/validators/assets/fetchvaloper1mr8tqsr3cjp4vh30j8h32uluh5nhnjnh8lkef0/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/fetch/validators/assets/fetchvaloper1mr8tqsr3cjp4vh30j8h32uluh5nhnjnh8lkef0/logo.png differ diff --git a/blockchains/fetch/validators/assets/fetchvaloper1ph02ux2dujl7uv4lzv6vy2y6vjstd4eplfznuw/logo.png b/blockchains/fetch/validators/assets/fetchvaloper1ph02ux2dujl7uv4lzv6vy2y6vjstd4eplfznuw/logo.png new file mode 100644 index 0000000000000..c2cb86a42efe3 Binary files /dev/null and b/blockchains/fetch/validators/assets/fetchvaloper1ph02ux2dujl7uv4lzv6vy2y6vjstd4eplfznuw/logo.png differ diff --git a/blockchains/fetch/validators/assets/fetchvaloper1zntja9step52hq3a262fd9ee4n9w7mjutru8rc/logo.png b/blockchains/fetch/validators/assets/fetchvaloper1zntja9step52hq3a262fd9ee4n9w7mjutru8rc/logo.png new file mode 100644 index 0000000000000..bed0251921f16 Binary files /dev/null and b/blockchains/fetch/validators/assets/fetchvaloper1zntja9step52hq3a262fd9ee4n9w7mjutru8rc/logo.png differ diff --git a/blockchains/fetch/validators/list.json b/blockchains/fetch/validators/list.json new file mode 100644 index 0000000000000..90f963fec4d97 --- /dev/null +++ b/blockchains/fetch/validators/list.json @@ -0,0 +1,32 @@ +[ + { + "id": "fetchvaloper1mr8tqsr3cjp4vh30j8h32uluh5nhnjnh8lkef0", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "fetchvaloper1ph02ux2dujl7uv4lzv6vy2y6vjstd4eplfznuw", + "name": "AutoStake 🛡️ Slash Protected", + "description": "BareMetal - Decentralised - Reliable infrastructure run by the industry leader - AutoStake - Connect with us at: https://linktr.ee/autostake", + "website": "https://autostake.com" + }, + { + "id": "fetchvaloper14gtl0dgam6cqvjkuh6kfcnszchwzk0ghumdmhw", + "name": "w3coins", + "description": "w3coins is a Professional Validator and web3 Venture Capital. Stake Your Cryptocurrency with us to Maximize Your Earnings.", + "website": "https://www.w3coins.io" + }, + { + "id": "fetchvaloper1zntja9step52hq3a262fd9ee4n9w7mjutru8rc", + "name": "Meria", + "description": "Meria is an institutional-grade staking service provider running blockchain infrastructure on more than +35 networks.", + "website": "https://stake.meria.com/" + }, + { + "id": "fetchvaloper1kfvx47a85ylex0x3c398mzzd2drxt9x4lwh4sa", + "name": "Allnodes", + "description": "Reliable non-custodial Validator run by the industry leader - Allnodes. Monitor your rewards through the Allnodes portfolio page.", + "website": "https://www.allnodes.com/fet/staking" + } +] diff --git a/blockchains/filecoin/info/square_logo.png b/blockchains/filecoin/info/square_logo.png new file mode 100644 index 0000000000000..ffd628737b0fa Binary files /dev/null and b/blockchains/filecoin/info/square_logo.png differ diff --git a/blockchains/fio/info/square_logo.png b/blockchains/fio/info/square_logo.png new file mode 100644 index 0000000000000..3f9d080c90468 Binary files /dev/null and b/blockchains/fio/info/square_logo.png differ diff --git a/blockchains/firo/info/info.json b/blockchains/firo/info/info.json index 0ceb70c845da7..4b7db23e21e33 100644 --- a/blockchains/firo/info/info.json +++ b/blockchains/firo/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/firoorg/firo" }, { - "name": "twitter", - "url": "https://twitter.com/firoorg" + "name": "x", + "url": "https://x.com/firoorg" }, { "name": "reddit", diff --git a/blockchains/firo/info/square_logo.png b/blockchains/firo/info/square_logo.png new file mode 100644 index 0000000000000..6f9e5d23db113 Binary files /dev/null and b/blockchains/firo/info/square_logo.png differ diff --git a/blockchains/fusion/info/info.json b/blockchains/fusion/info/info.json index 2c0a4ffec84ed..152f1dbebd447 100644 --- a/blockchains/fusion/info/info.json +++ b/blockchains/fusion/info/info.json @@ -11,8 +11,8 @@ "status": "active", "links": [ { - "name": "twitter", - "url": "https://twitter.com/FUSIONProtocol" + "name": "x", + "url": "https://x.com/FUSIONProtocol" }, { "name": "facebook", @@ -30,4 +30,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/fusion/info/square_logo.png b/blockchains/fusion/info/square_logo.png new file mode 100644 index 0000000000000..41009b1fcd897 Binary files /dev/null and b/blockchains/fusion/info/square_logo.png differ diff --git a/blockchains/gbnb/info/square_logo.png b/blockchains/gbnb/info/square_logo.png new file mode 100644 index 0000000000000..793f7b4a3944e Binary files /dev/null and b/blockchains/gbnb/info/square_logo.png differ diff --git a/blockchains/gochain/info/info.json b/blockchains/gochain/info/info.json index 161a58cff167e..bbd27ca61dbad 100644 --- a/blockchains/gochain/info/info.json +++ b/blockchains/gochain/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/gochain" }, { - "name": "twitter", - "url": "https://twitter.com/go_chain" + "name": "x", + "url": "https://x.com/go_chain" }, { "name": "reddit", diff --git a/blockchains/gochain/info/square_logo.png b/blockchains/gochain/info/square_logo.png new file mode 100644 index 0000000000000..a9c6a1af984ca Binary files /dev/null and b/blockchains/gochain/info/square_logo.png differ diff --git a/blockchains/goerlitestnet/info/info.json b/blockchains/goerlitestnet/info/info.json index b3ac4b5d706d7..7ca880a6b237f 100644 --- a/blockchains/goerlitestnet/info/info.json +++ b/blockchains/goerlitestnet/info/info.json @@ -4,8 +4,8 @@ "description": "The Alchemy Goerli faucet is free, fast, and does not require authentication, though you can optionally login to Alchemy to get an increased drip.", "explorer": "https://goerli.etherscan.io", "research": "https://goerli.net/#about", - "symbol": "ETH", - "rpc_url": "https://rpc.goerli.mudit.blog", + "symbol": "tETH", + "rpc_url": "https://eth-goerli.public.blastapi.io", "type": "coin", "decimals": 18, "status": "active", diff --git a/blockchains/goerlitestnet/info/square_logo.png b/blockchains/goerlitestnet/info/square_logo.png new file mode 100644 index 0000000000000..793f7b4a3944e Binary files /dev/null and b/blockchains/goerlitestnet/info/square_logo.png differ diff --git a/blockchains/greenfield/info/info.json b/blockchains/greenfield/info/info.json new file mode 100644 index 0000000000000..7d7d0e258161f --- /dev/null +++ b/blockchains/greenfield/info/info.json @@ -0,0 +1,11 @@ +{ + "name": "BNB Greenfield", + "website": "https://greenfield.bnbchain.org/en", + "description": "The goal of the BNB Greenfield is to unleash the power of decentralized blockchain and storage technology on data ownership and data economy.", + "explorer": "https://greenfieldscan.com", + "symbol": "BNB", + "rpc_url": "https://greenfield-chain-us.bnbchain.org", + "type": "coin", + "decimals": 18, + "status": "active" +} \ No newline at end of file diff --git a/blockchains/greenfield/info/logo.png b/blockchains/greenfield/info/logo.png new file mode 100644 index 0000000000000..0fad6635d8d41 Binary files /dev/null and b/blockchains/greenfield/info/logo.png differ diff --git a/blockchains/greenfield/info/square_logo.png b/blockchains/greenfield/info/square_logo.png new file mode 100644 index 0000000000000..eadcabdc30c4e Binary files /dev/null and b/blockchains/greenfield/info/square_logo.png differ diff --git a/blockchains/groestlcoin/info/info.json b/blockchains/groestlcoin/info/info.json index 7d82f6631b926..de0c12474ebac 100644 --- a/blockchains/groestlcoin/info/info.json +++ b/blockchains/groestlcoin/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Groestlcoin" }, { - "name": "twitter", - "url": "https://twitter.com/GroestlcoinTeam" + "name": "x", + "url": "https://x.com/GroestlcoinTeam" }, { "name": "reddit", diff --git a/blockchains/groestlcoin/info/square_logo.png b/blockchains/groestlcoin/info/square_logo.png new file mode 100644 index 0000000000000..b81493273cfea Binary files /dev/null and b/blockchains/groestlcoin/info/square_logo.png differ diff --git a/blockchains/harmony/info/info.json b/blockchains/harmony/info/info.json index 6734473b1ecab..5f68ccc99a24b 100644 --- a/blockchains/harmony/info/info.json +++ b/blockchains/harmony/info/info.json @@ -10,14 +10,17 @@ "type": "coin", "decimals": 18, "status": "active", + "tags": [ + "dapp" + ], "links": [ { "name": "github", "url": "https://github.com/harmony-one" }, { - "name": "twitter", - "url": "https://twitter.com/harmonyprotocol" + "name": "x", + "url": "https://x.com/harmonyprotocol" }, { "name": "reddit", diff --git a/blockchains/harmony/info/square_logo.png b/blockchains/harmony/info/square_logo.png new file mode 100644 index 0000000000000..dfab5ab76ec32 Binary files /dev/null and b/blockchains/harmony/info/square_logo.png differ diff --git a/blockchains/harmony/validators/assets/one1na6669ra9r99wsz39440fxdf6d29vhmz8mkdha/logo.png b/blockchains/harmony/validators/assets/one1na6669ra9r99wsz39440fxdf6d29vhmz8mkdha/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/harmony/validators/assets/one1na6669ra9r99wsz39440fxdf6d29vhmz8mkdha/logo.png differ diff --git a/blockchains/harmony/validators/list.json b/blockchains/harmony/validators/list.json index df91a5caf71cc..4edb242c1b684 100644 --- a/blockchains/harmony/validators/list.json +++ b/blockchains/harmony/validators/list.json @@ -23,6 +23,12 @@ "description": "24h node support, managing slots and shards to get the maximum APR with a 100% uptime. Help descentralization, delegate with us", "website": "harmony.com" }, + { + "id": "one1na6669ra9r99wsz39440fxdf6d29vhmz8mkdha", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn higher yields with AutoStake.com", + "website": "https://autostake.com" + }, { "id": "one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6", "name": "StakingTeam", @@ -81,7 +87,7 @@ "id": "one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3", "name": "OgreNode", "description": "This is run by a community member, OgreAbroad. Always glad to help, feel free to find me in Telegram and ask any questions you might have about Harmony, Sesameseed, or crypto in general.", - "website": "https://twitter.com/LtcYeti" + "website": "https://x.com/LtcYeti" }, { "id": "one1f5yhhwn42qnxkj2n6xucrl5plqgy03082xuw25", @@ -149,4 +155,4 @@ "description": "We bring you the latest news on Harmony. We’re proud to be validating since open staking launch!", "website": "HarmonyNews.one" } -] +] \ No newline at end of file diff --git a/blockchains/heco/assets/0x202b4936fE1a82A4965220860aE46d7d3939Bb25/info.json b/blockchains/heco/assets/0x202b4936fE1a82A4965220860aE46d7d3939Bb25/info.json index bb311ae9882ed..1530c77e93e14 100644 --- a/blockchains/heco/assets/0x202b4936fE1a82A4965220860aE46d7d3939Bb25/info.json +++ b/blockchains/heco/assets/0x202b4936fE1a82A4965220860aE46d7d3939Bb25/info.json @@ -1,5 +1,5 @@ { - "name": "Heco-Peg AAVE Token", + "name": "Aave", "type": "HRC20", "symbol": "AAVE", "decimals": 18, diff --git a/blockchains/heco/assets/0x22C54cE8321A4015740eE1109D9cBc25815C46E6/info.json b/blockchains/heco/assets/0x22C54cE8321A4015740eE1109D9cBc25815C46E6/info.json index 1db377a6a977e..958dc44e0573a 100644 --- a/blockchains/heco/assets/0x22C54cE8321A4015740eE1109D9cBc25815C46E6/info.json +++ b/blockchains/heco/assets/0x22C54cE8321A4015740eE1109D9cBc25815C46E6/info.json @@ -1,5 +1,5 @@ { - "name": "Heco-Peg UNI Token", + "name": "Uniswap", "type": "HRC20", "symbol": "UNI", "decimals": 18, diff --git a/blockchains/heco/assets/0x25D2e80cB6B86881Fd7e07dd263Fb79f4AbE033c/info.json b/blockchains/heco/assets/0x25D2e80cB6B86881Fd7e07dd263Fb79f4AbE033c/info.json new file mode 100644 index 0000000000000..fc681c589d2bb --- /dev/null +++ b/blockchains/heco/assets/0x25D2e80cB6B86881Fd7e07dd263Fb79f4AbE033c/info.json @@ -0,0 +1,28 @@ +{ + "name": "MDX Token", + "symbol": "MDX", + "type": "HRC20", + "decimals": 18, + "description": "MDEX integrates the advantages of multiple chains to create a high-performance composite DEX ecosystem, to maximize the rewards of participants with the 'dual mining incentives' of liquid mining and transaction mining.", + "website": "https://bsc.mdex.com/", + "explorer": "https://hecoinfo.com/token/0x25D2e80cB6B86881Fd7e07dd263Fb79f4AbE033c", + "status": "active", + "id": "0x25D2e80cB6B86881Fd7e07dd263Fb79f4AbE033c", + "links": [ + { + "name": "x", + "url": "https://x.com/Mdextech" + }, + { + "name": "github", + "url": "https://github.com/mdexSwap" + }, + { + "name": "telegram", + "url": "https://t.me/MixDex" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/heco/assets/0x25D2e80cB6B86881Fd7e07dd263Fb79f4AbE033c/logo.png b/blockchains/heco/assets/0x25D2e80cB6B86881Fd7e07dd263Fb79f4AbE033c/logo.png new file mode 100644 index 0000000000000..484410a92769f Binary files /dev/null and b/blockchains/heco/assets/0x25D2e80cB6B86881Fd7e07dd263Fb79f4AbE033c/logo.png differ diff --git a/blockchains/heco/assets/0x5eE41aB6edd38cDfB9f6B4e6Cf7F75c87E170d98/info.json b/blockchains/heco/assets/0x5eE41aB6edd38cDfB9f6B4e6Cf7F75c87E170d98/info.json index 496d270857700..2c5901336de44 100644 --- a/blockchains/heco/assets/0x5eE41aB6edd38cDfB9f6B4e6Cf7F75c87E170d98/info.json +++ b/blockchains/heco/assets/0x5eE41aB6edd38cDfB9f6B4e6Cf7F75c87E170d98/info.json @@ -14,8 +14,8 @@ "url": "https://coingecko.com/coins/true-usd/" }, { - "name": "twitter", - "url": "https://twitter.com/tusd_official" + "name": "x", + "url": "https://x.com/tusd_official" }, { "name": "telegram", @@ -30,4 +30,4 @@ "stablecoin", "heco-tag" ] -} +} \ No newline at end of file diff --git a/blockchains/heco/assets/0x66a79D23E58475D2738179Ca52cd0b41d73f0BEa/info.json b/blockchains/heco/assets/0x66a79D23E58475D2738179Ca52cd0b41d73f0BEa/info.json index 55c396b9c7b7f..76bcbd6c74f80 100644 --- a/blockchains/heco/assets/0x66a79D23E58475D2738179Ca52cd0b41d73f0BEa/info.json +++ b/blockchains/heco/assets/0x66a79D23E58475D2738179Ca52cd0b41d73f0BEa/info.json @@ -14,8 +14,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/HBTC_Official" + "name": "x", + "url": "https://x.com/HBTC_Official" }, { "name": "coinmarketcap", @@ -26,4 +26,4 @@ "url": "https://coingecko.com/coins/bitcoin/" } ] -} +} \ No newline at end of file diff --git a/blockchains/heco/assets/0x765277EebeCA2e31912C9946eAe1021199B39C61/info.json b/blockchains/heco/assets/0x765277EebeCA2e31912C9946eAe1021199B39C61/info.json index 2bcf009b46f2f..06d88ccc4a232 100644 --- a/blockchains/heco/assets/0x765277EebeCA2e31912C9946eAe1021199B39C61/info.json +++ b/blockchains/heco/assets/0x765277EebeCA2e31912C9946eAe1021199B39C61/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/beefyfinance" }, { - "name": "twitter", - "url": "https://twitter.com/beefyfinance" + "name": "x", + "url": "https://x.com/beefyfinance" }, { "name": "telegram", diff --git a/blockchains/heco/info/info.json b/blockchains/heco/info/info.json index 20da693b852b2..2fae149d6f556 100644 --- a/blockchains/heco/info/info.json +++ b/blockchains/heco/info/info.json @@ -10,8 +10,8 @@ "status": "active", "links": [ { - "name": "twitter", - "url": "https://twitter.com/HECO_Chain" + "name": "x", + "url": "https://x.com/HECO_Chain" }, { "name": "telegram", diff --git a/blockchains/heco/info/square_logo.png b/blockchains/heco/info/square_logo.png new file mode 100644 index 0000000000000..b408c093b19f2 Binary files /dev/null and b/blockchains/heco/info/square_logo.png differ diff --git a/blockchains/hedera/assets/0x000000000000000000000000000000000038b3db/info.json b/blockchains/hedera/assets/0x000000000000000000000000000000000038b3db/info.json new file mode 100644 index 0000000000000..cc3fc0aa77b97 --- /dev/null +++ b/blockchains/hedera/assets/0x000000000000000000000000000000000038b3db/info.json @@ -0,0 +1,41 @@ +{ + "name": "DOVU", + "website": "https://dovu.earth/", + "description": "DOVU is a technology infrastructure provider, powering trusted environmental and carbon digital markets by providing market integrity. The DOVU token serves as the protocol’s utility token, enabling holders to participate and create their own environmental audit trail ecosystems. Token holders can stake their DOVU to earn multiplier rewards, aligning long-term incentives with the protocol’s mission of building reliable carbon markets.", + "explorer": "https://hashscan.io/mainnet/token/0x000000000000000000000000000000000038b3db", + "type": "HEDERA", + "symbol": "DOVU", + "decimals": 8, + "status": "active", + "id": "0x000000000000000000000000000000000038b3db", + "tags": [ + "governance", + "staking" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/dovuofficial/" + }, + { + "name": "x", + "url": "https://x.com/dovuofficial" + }, + { + "name": "blog", + "url": "https://dovu.earth/en/news/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dovu-earth/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dovu" + }, + { + "name": "youtube", + "url": "https://youtube.com/@DOVUearth" + } + ] +} \ No newline at end of file diff --git a/blockchains/hedera/assets/0x000000000000000000000000000000000038b3db/logo.png b/blockchains/hedera/assets/0x000000000000000000000000000000000038b3db/logo.png new file mode 100644 index 0000000000000..cb6c490323d55 Binary files /dev/null and b/blockchains/hedera/assets/0x000000000000000000000000000000000038b3db/logo.png differ diff --git a/blockchains/hedera/info/info.json b/blockchains/hedera/info/info.json index b0200e8a208b8..3ffc1e0f5e0fe 100644 --- a/blockchains/hedera/info/info.json +++ b/blockchains/hedera/info/info.json @@ -12,8 +12,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/hedera" + "name": "x", + "url": "https://x.com/hedera" }, { "name": "github", @@ -28,4 +28,4 @@ "url": "https://coinmarketcap.com/currencies/hedera/" } ] -} +} \ No newline at end of file diff --git a/blockchains/hedera/info/square_logo.png b/blockchains/hedera/info/square_logo.png new file mode 100644 index 0000000000000..6dde96e738b4f Binary files /dev/null and b/blockchains/hedera/info/square_logo.png differ diff --git a/blockchains/hoo/info/info.json b/blockchains/hoo/info/info.json index abe69b08158e1..91c54ae33680d 100644 --- a/blockchains/hoo/info/info.json +++ b/blockchains/hoo/info/info.json @@ -11,8 +11,8 @@ "status": "active", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Hoo_exchange" + "name": "x", + "url": "https://x.com/Hoo_exchange" }, { "name": "facebook", @@ -30,4 +30,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/hoo/info/square_logo.png b/blockchains/hoo/info/square_logo.png new file mode 100644 index 0000000000000..793f7b4a3944e Binary files /dev/null and b/blockchains/hoo/info/square_logo.png differ diff --git a/blockchains/hypeevm/info/info.json b/blockchains/hypeevm/info/info.json new file mode 100644 index 0000000000000..e513481b7ffbb --- /dev/null +++ b/blockchains/hypeevm/info/info.json @@ -0,0 +1,33 @@ +{ + "name": "HyperEVM", + "website": "https://hyperliquid.xyz/", + "description": "HyperEVM is an EVM-compatible execution layer secured by the same HyperBFT consensus as HyperCore, Hyperliquid's native blockchain. Rather than operating as a separate chain, it enables direct interaction with HyperCore's spot and perpetual order books, allowing developers to build applications that leverage deep onchain liquidity. Builders can deploy smart contracts using standard EVM tooling and create tokenized assets that trade on unified order books without bridging risk or permission requirements.", + "explorer": "https://hyperevmscan.io/", + "symbol": "HYPE", + "rpc_url": "https://rpc.hyperliquid.xyz/evm", + "coin_type": 10000999, + "type": "coin", + "decimals": 18, + "status": "active", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/HyperliquidX" + }, + { + "name": "docs", + "url": "https://hyperliquid.gitbook.io/hyperliquid-docs" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hyperliquid/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/hyperliquid" + } + ] +} diff --git a/blockchains/hypeevm/info/logo.png b/blockchains/hypeevm/info/logo.png new file mode 100644 index 0000000000000..9c7550c487f8b Binary files /dev/null and b/blockchains/hypeevm/info/logo.png differ diff --git a/blockchains/hypeevm/info/square_logo.png b/blockchains/hypeevm/info/square_logo.png new file mode 100644 index 0000000000000..850dec878120d Binary files /dev/null and b/blockchains/hypeevm/info/square_logo.png differ diff --git a/blockchains/hyperevm/info/info.json b/blockchains/hyperevm/info/info.json new file mode 100644 index 0000000000000..e513481b7ffbb --- /dev/null +++ b/blockchains/hyperevm/info/info.json @@ -0,0 +1,33 @@ +{ + "name": "HyperEVM", + "website": "https://hyperliquid.xyz/", + "description": "HyperEVM is an EVM-compatible execution layer secured by the same HyperBFT consensus as HyperCore, Hyperliquid's native blockchain. Rather than operating as a separate chain, it enables direct interaction with HyperCore's spot and perpetual order books, allowing developers to build applications that leverage deep onchain liquidity. Builders can deploy smart contracts using standard EVM tooling and create tokenized assets that trade on unified order books without bridging risk or permission requirements.", + "explorer": "https://hyperevmscan.io/", + "symbol": "HYPE", + "rpc_url": "https://rpc.hyperliquid.xyz/evm", + "coin_type": 10000999, + "type": "coin", + "decimals": 18, + "status": "active", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/HyperliquidX" + }, + { + "name": "docs", + "url": "https://hyperliquid.gitbook.io/hyperliquid-docs" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hyperliquid/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/hyperliquid" + } + ] +} diff --git a/blockchains/hyperevm/info/logo.png b/blockchains/hyperevm/info/logo.png new file mode 100644 index 0000000000000..9c7550c487f8b Binary files /dev/null and b/blockchains/hyperevm/info/logo.png differ diff --git a/blockchains/hyperevm/info/square_logo.png b/blockchains/hyperevm/info/square_logo.png new file mode 100644 index 0000000000000..850dec878120d Binary files /dev/null and b/blockchains/hyperevm/info/square_logo.png differ diff --git a/blockchains/icon/info/info.json b/blockchains/icon/info/info.json index cab05a9dec3b5..e4a8e2f31e6c7 100644 --- a/blockchains/icon/info/info.json +++ b/blockchains/icon/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/icon-project" }, { - "name": "twitter", - "url": "https://twitter.com/helloiconworld" + "name": "x", + "url": "https://x.com/helloiconworld" }, { "name": "reddit", diff --git a/blockchains/icon/info/square_logo.png b/blockchains/icon/info/square_logo.png new file mode 100644 index 0000000000000..3c082ce6bddff Binary files /dev/null and b/blockchains/icon/info/square_logo.png differ diff --git a/blockchains/info.json b/blockchains/info.json deleted file mode 100644 index 88662092fc533..0000000000000 --- a/blockchains/info.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "name": "Blockton", - "website": "https://blocktoncoin.com", - "short_description": "Blockton is a fast, high-throughput open-source Scalable, fast, and secure blockchain ecosystem.", - "description": "Blockton is a fast, high-throughput open-source Scalable, fast, and secure blockchain ecosystem.", - "explorer": "https://blocktonscan.com/", - "research": "https://docs.blocktonscan.com", - "type": "coin", - "symbol": "BTON", - "rpc_url": "https://rpc.blocktonscan.com/", - "decimals": 18, - "status": "active", - "links": [ - { - "name": "github", - "url": "https://github.com/blocktoncoin" - }, - { - "name": "whitepaper", - "url": "https://blocktoncoin.com/whitepaper.pdf" - } - ] -} - diff --git a/blockchains/injective/info/info.json b/blockchains/injective/info/info.json deleted file mode 100644 index b743c1cc7a677..0000000000000 --- a/blockchains/injective/info/info.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "name": "Injective", - "website": "https://injective.com", - "description": "Injective is an open, interoperable layer-one blockchain for building powerful DeFi applications.", - "explorer": "https://explorer.injective.network", - "research": "https://research.binance.com/en/projects/injective", - "symbol": "INJ", - "type": "coin", - "decimals": 18, - "status": "active", - "links": [ - { - "name": "github", - "url": "https://github.com/InjectiveLabs" - }, - { - "name": "twitter", - "url": "https://twitter.com/Injective_" - } - ] -} \ No newline at end of file diff --git a/blockchains/injective/info/logo.png b/blockchains/injective/info/logo.png deleted file mode 100644 index 6a4ed4e02e8ea..0000000000000 Binary files a/blockchains/injective/info/logo.png and /dev/null differ diff --git a/blockchains/internet_computer/info/info.json b/blockchains/internet_computer/info/info.json new file mode 100644 index 0000000000000..58a1ac286c81d --- /dev/null +++ b/blockchains/internet_computer/info/info.json @@ -0,0 +1,39 @@ +{ + "name": "Internet Computer", + "website": "https://internetcomputer.org", + "description": "World Computer blockchain that reimagines the internet as an infinite smart contract platform", + "explorer": "https://dashboard.internetcomputer.org", + "symbol": "ICP", + "type": "coin", + "decimals": 8, + "status": "active", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/dfinity" + }, + { + "name": "github", + "url": "https://github.com/dfinity/ic" + }, + { + "name": "discord", + "url": "https://discord.com/invite/JJWatWr4qG" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/internet-computer/" + }, + { + "name": "whitepaper", + "url": "https://internetcomputer.org/whitepaper.pdf" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/dfinity" + } + ] +} \ No newline at end of file diff --git a/blockchains/internet_computer/info/logo.png b/blockchains/internet_computer/info/logo.png new file mode 100644 index 0000000000000..07b0d6c66c371 Binary files /dev/null and b/blockchains/internet_computer/info/logo.png differ diff --git a/blockchains/internet_computer/info/square_logo.png b/blockchains/internet_computer/info/square_logo.png new file mode 100644 index 0000000000000..05fe0c4d872dc Binary files /dev/null and b/blockchains/internet_computer/info/square_logo.png differ diff --git a/blockchains/iost/info/info.json b/blockchains/iost/info/info.json index 7a09bd8d2ad7b..2c267ab4d9a06 100644 --- a/blockchains/iost/info/info.json +++ b/blockchains/iost/info/info.json @@ -2,20 +2,20 @@ "name": "IOST", "website": "http://iost.io", "description": "The IOS (Internet of Services) offers a solid infrastructure for online service providers. Features a high TPS, scalable and secure blockchain, with privacy protection.", - "explorer": "https://www.iostabc.com/", + "explorer": "https://explorer.iost.io", "research": "https://research.binance.com/en/projects/iost", "symbol": "IOST", "type": "coin", - "decimals": 8, - "status": "abandoned", + "decimals": 2, + "status": "active", "links": [ { "name": "github", "url": "https://github.com/iost-official/go-iost" }, { - "name": "twitter", - "url": "https://twitter.com/iostoken" + "name": "x", + "url": "https://x.com/IOST_Official" }, { "name": "reddit", diff --git a/blockchains/iost/info/square_logo.png b/blockchains/iost/info/square_logo.png new file mode 100644 index 0000000000000..e75172dacbbfd Binary files /dev/null and b/blockchains/iost/info/square_logo.png differ diff --git a/blockchains/iotex/info/info.json b/blockchains/iotex/info/info.json index 9462014f59d0a..202d81d2f3dbd 100644 --- a/blockchains/iotex/info/info.json +++ b/blockchains/iotex/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/iotexproject" }, { - "name": "twitter", - "url": "https://twitter.com/iotex_io" + "name": "x", + "url": "https://x.com/iotex_io" }, { "name": "reddit", diff --git a/blockchains/iotex/info/square_logo.png b/blockchains/iotex/info/square_logo.png new file mode 100644 index 0000000000000..cea4699b20eca Binary files /dev/null and b/blockchains/iotex/info/square_logo.png differ diff --git a/blockchains/iotex/validators/list.json b/blockchains/iotex/validators/list.json index eef03845cb320..bcdb9160cb0e2 100644 --- a/blockchains/iotex/validators/list.json +++ b/blockchains/iotex/validators/list.json @@ -15,13 +15,13 @@ "id": "iotexcore", "name": "IoTeX Core", "description": "", - "website": "https://twitter.com/iotexcore" + "website": "https://x.com/iotexcore" }, { "id": "royalland", "name": "Royal Land", "description": "", - "website": "https://twitter.com/RoyalLand4" + "website": "https://x.com/RoyalLand4" }, { "id": "iotexlab", @@ -33,7 +33,7 @@ "id": "iosg", "name": "IOSG", "description": "", - "website": "https://twitter.com/IOSGVC" + "website": "https://x.com/IOSGVC" }, { "id": "laomao", @@ -45,13 +45,13 @@ "id": "cpc", "name": "Stanford", "description": "", - "website": "https://twitter.com/cardinalpitch" + "website": "https://x.com/cardinalpitch" }, { "id": "infstones", "name": "Infinity Stones", "description": "", - "website": "https://twitter.com/infstones" + "website": "https://x.com/infstones" }, { "id": "pnp", @@ -63,13 +63,13 @@ "id": "hashbuy", "name": "Hashbuy", "description": "", - "website": "https://twitter.com/hashbuy_iotex" + "website": "https://x.com/hashbuy_iotex" }, { "id": "gamefantasy#", "name": "GameFantasy", "description": "", - "website": "https://twitter.com/wqwqwq219" + "website": "https://x.com/wqwqwq219" }, { "id": "airfoil", @@ -81,7 +81,7 @@ "id": "link", "name": "Link", "description": "", - "website": "https://twitter.com/chainlink" + "website": "https://x.com/chainlink" }, { "id": "metanyx", @@ -93,13 +93,13 @@ "id": "ducapital", "name": "DU Capital", "description": "", - "website": "https://twitter.com/DuCapital_SG" + "website": "https://x.com/DuCapital_SG" }, { "id": "yvalidator", "name": "Youbi Validator", "description": "", - "website": "https://twitter.com/yvalidator" + "website": "https://x.com/yvalidator" }, { "id": "iotexteam", @@ -111,7 +111,7 @@ "id": "rockx", "name": "RockX", "description": "", - "website": "https://twitter.com/rockx_official" + "website": "https://x.com/rockx_official" }, { "id": "snzholding", @@ -123,13 +123,13 @@ "id": "coingecko", "name": "CoinGecko", "description": "", - "website": "https://twitter.com/coingecko" + "website": "https://x.com/coingecko" }, { "id": "draperdragon", "name": "Homotopic & DraperDragon", "description": "", - "website": "https://twitter.com/IotexH" + "website": "https://x.com/IotexH" }, { "id": "hotbit", @@ -141,19 +141,19 @@ "id": "iotxplorerio", "name": "iotxplorer", "description": "", - "website": "https://twitter.com/iotxplorer" + "website": "https://x.com/iotxplorer" }, { "id": "pubxpayments", "name": "Public Payments", "description": "", - "website": "https://twitter.com/publicpayments" + "website": "https://x.com/publicpayments" }, { "id": "blockboost", "name": "BlockBoost", "description": "", - "website": "https://twitter.com/UGotHQ" + "website": "https://x.com/UGotHQ" }, { "id": "elitex", @@ -165,55 +165,55 @@ "id": "whales", "name": "Whales Capital", "description": "", - "website": "https://twitter.com/whalescapital" + "website": "https://x.com/whalescapital" }, { "id": "preangel", "name": "PreAngel", "description": "", - "website": "https://twitter.com/FundPreangel" + "website": "https://x.com/FundPreangel" }, { "id": "tgb", "name": "The Giving Block", "description": "", - "website": "https://twitter.com/TheGivingBlock/" + "website": "https://x.com/TheGivingBlock/" }, { "id": "enlightiv", "name": "EnlightiVision", "description": "", - "website": "https://twitter.com/enlightivision" + "website": "https://x.com/enlightivision" }, { "id": "hofancrypto", "name": "Hofan Crypto Capital", "description": "", - "website": "https://twitter.com/hofan_crypto" + "website": "https://x.com/hofan_crypto" }, { "id": "blockfolio", "name": "Blockfolio", "description": "", - "website": "https://twitter.com/Blockfolio" + "website": "https://x.com/Blockfolio" }, { "id": "hashquark", "name": "HashQuark", "description": "", - "website": "https://twitter.com/HashQuark" + "website": "https://x.com/HashQuark" }, { "id": "satoshi", "name": "Real Satoshi & IOSG", "description": "", - "website": "https://twitter.com/IOSGVC" + "website": "https://x.com/IOSGVC" }, { "id": "iotexgeeks", "name": "IoTeX Geeks", "description": "", - "website": "https://twitter.com/iotexgeeks" + "website": "https://x.com/iotexgeeks" }, { "id": "ratels", @@ -225,7 +225,7 @@ "id": "huobiwallet", "name": "Huobi Wallet", "description": "", - "website": "https://twitter.com/HuobiWallet" + "website": "https://x.com/HuobiWallet" }, { "id": "capitmu", @@ -237,13 +237,13 @@ "id": "cobo", "name": "IoTeX Cobo Node", "description": "", - "website": "https://twitter.com/Cobo_Wallet" + "website": "https://x.com/Cobo_Wallet" }, { "id": "zhcapital", "name": "ZH Capital", "description": "", - "website": "https://twitter.com/CapitalZh" + "website": "https://x.com/CapitalZh" }, { "id": "iotask", @@ -255,49 +255,49 @@ "id": "coredev", "name": "Core-Dev", "description": "", - "website": "https://twitter.com/iotex_io" + "website": "https://x.com/iotex_io" }, { "id": "wannodes", "name": "WanNodes", "description": "", - "website": "https://twitter.com/Wannodes" + "website": "https://x.com/Wannodes" }, { "id": "everstake", "name": "Everstake", "description": "", - "website": "https://twitter.com/everstake_pool" + "website": "https://x.com/everstake_pool" }, { "id": "slowmist", "name": "SlowMistZone", "description": "", - "website": "https://twitter.com/@slowmist_team" + "website": "https://x.com/@slowmist_team" }, { "id": "thebottoken#", "name": "TheBotToken", "description": "", - "website": "https://twitter.com/thebottoken" + "website": "https://x.com/thebottoken" }, { "id": "wetez", "name": "Wetez", "description": "", - "website": "https://twitter.com/wetez_wallet?lang=en" + "website": "https://x.com/wetez_wallet?lang=en" }, { "id": "citex2018", "name": "CITEX", "description": "", - "website": "https://twitter.com/Citexofficial" + "website": "https://x.com/Citexofficial" }, { "id": "mrtrump", "name": "MrTrump", "description": "", - "website": "https://twitter.com/realDonaldTrump" + "website": "https://x.com/realDonaldTrump" }, { "id": "iotexunion", @@ -309,7 +309,7 @@ "id": "consensusnet", "name": "Consensus Networks", "description": "", - "website": "https://twitter.com/ConsensusNet" + "website": "https://x.com/ConsensusNet" }, { "id": "iotexicu", @@ -345,25 +345,25 @@ "id": "piexgo", "name": "PIEXGO", "description": "", - "website": "https://twitter.com/piexgocom" + "website": "https://x.com/piexgocom" }, { "id": "iotexhub", "name": "iotexhub", "description": "", - "website": "https://twitter.com/iotexhub" + "website": "https://x.com/iotexhub" }, { "id": "alphacoin", "name": "AlphaCoin Fund", "description": "", - "website": "https://twitter.com/AlphaCoinFund" + "website": "https://x.com/AlphaCoinFund" }, { "id": "blackpool", "name": "BlackPool", "description": "", - "website": "https://twitter.com/BlackPo17368543" + "website": "https://x.com/BlackPo17368543" }, { "id": "raketat8", @@ -381,25 +381,25 @@ "id": "lanhu", "name": "Lanhu IoT (蓝狐IoT)", "description": "", - "website": "https://twitter.com/lanhu_IoT" + "website": "https://x.com/lanhu_IoT" }, { "id": "eon", "name": "EON", "description": "", - "website": "https://twitter.com/eon_staking" + "website": "https://x.com/eon_staking" }, { "id": "iotexbgogo", "name": "iotex bgogo", "description": "", - "website": "https://twitter.com/BgogoExchange" + "website": "https://x.com/BgogoExchange" }, { "id": "meter", "name": "Meter", "description": "", - "website": "https://twitter.com/meter_IO" + "website": "https://x.com/meter_IO" }, { "id": "bitwires", @@ -411,7 +411,7 @@ "id": "elink", "name": "Elink", "description": "", - "website": "https://twitter.com/iotex_io" + "website": "https://x.com/iotex_io" }, { "id": "smartstake", diff --git a/blockchains/iotexevm/info/info.json b/blockchains/iotexevm/info/info.json index 4a681740d5222..7b933719bc896 100644 --- a/blockchains/iotexevm/info/info.json +++ b/blockchains/iotexevm/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/iotexproject" }, { - "name": "twitter", - "url": "https://twitter.com/iotex_io" + "name": "x", + "url": "https://x.com/iotex_io" } ] } \ No newline at end of file diff --git a/blockchains/iotexevm/info/square_logo.png b/blockchains/iotexevm/info/square_logo.png new file mode 100644 index 0000000000000..cea4699b20eca Binary files /dev/null and b/blockchains/iotexevm/info/square_logo.png differ diff --git a/blockchains/iris/info/info.json b/blockchains/iris/info/info.json index 7d2b2d8b34798..e98cc00e88510 100644 --- a/blockchains/iris/info/info.json +++ b/blockchains/iris/info/info.json @@ -7,9 +7,9 @@ "description": "Built with Cosmos-SDK, IRIS Hub enables cross-chain interoperability through a unified service model, while providing a variety of modules to support DeFi applications.", "explorer": "https://www.mintscan.io/iris", "status": "active", - "rpc_url": "https://rpc-irisnet-ia.cosmosia.notional.ventures/", + "rpc_url": "https://rpc-irisnet-01.stakeflow.io", "denom": "uiris", - "lcd_url": "https://api-irisnet-ia.cosmosia.notional.ventures/", + "lcd_url": "https://api-irisnet-01.stakeflow.io", "hrp": "iaa", "fee_rate": "0.025", "links": [ @@ -22,8 +22,8 @@ "url": "https://coinmarketcap.com/currencies/irisnet/" }, { - "name": "twitter", - "url": "https://twitter.com/irisnetwork" + "name": "x", + "url": "https://x.com/irisnetwork" } ] } \ No newline at end of file diff --git a/blockchains/iris/info/square_logo.png b/blockchains/iris/info/square_logo.png new file mode 100644 index 0000000000000..7156574b62f53 Binary files /dev/null and b/blockchains/iris/info/square_logo.png differ diff --git a/blockchains/iris/validators/assets/iva1aj6frfd5g0a5d88j6mjpvy0ql5afd5crt90uqx/logo.png b/blockchains/iris/validators/assets/iva1aj6frfd5g0a5d88j6mjpvy0ql5afd5crt90uqx/logo.png new file mode 100644 index 0000000000000..4b09813738a9d Binary files /dev/null and b/blockchains/iris/validators/assets/iva1aj6frfd5g0a5d88j6mjpvy0ql5afd5crt90uqx/logo.png differ diff --git a/blockchains/iris/validators/assets/iva1d3z30ndxuqas8vr3mrc7028ykvfaukal0tnj0p/logo.png b/blockchains/iris/validators/assets/iva1d3z30ndxuqas8vr3mrc7028ykvfaukal0tnj0p/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/iris/validators/assets/iva1d3z30ndxuqas8vr3mrc7028ykvfaukal0tnj0p/logo.png differ diff --git a/blockchains/iris/validators/assets/iva1muxh5wllk627klssx2w305lz8mdar5ne4ve9dc/logo.png b/blockchains/iris/validators/assets/iva1muxh5wllk627klssx2w305lz8mdar5ne4ve9dc/logo.png new file mode 100644 index 0000000000000..1020527149890 Binary files /dev/null and b/blockchains/iris/validators/assets/iva1muxh5wllk627klssx2w305lz8mdar5ne4ve9dc/logo.png differ diff --git a/blockchains/iris/validators/assets/iva1n3hnhva22tykxxekrdq6zup4qcznsr9qc00fp6/logo.png b/blockchains/iris/validators/assets/iva1n3hnhva22tykxxekrdq6zup4qcznsr9qc00fp6/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/iris/validators/assets/iva1n3hnhva22tykxxekrdq6zup4qcznsr9qc00fp6/logo.png differ diff --git a/blockchains/iris/validators/list.json b/blockchains/iris/validators/list.json new file mode 100644 index 0000000000000..90f3f1b91b528 --- /dev/null +++ b/blockchains/iris/validators/list.json @@ -0,0 +1,26 @@ +[ + { + "id": "iva1d3z30ndxuqas8vr3mrc7028ykvfaukal0tnj0p", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "iva1n3hnhva22tykxxekrdq6zup4qcznsr9qc00fp6", + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" + }, + { + "id": "iva1aj6frfd5g0a5d88j6mjpvy0ql5afd5crt90uqx", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com/" + }, + { + "id": "iva1muxh5wllk627klssx2w305lz8mdar5ne4ve9dc", + "name": "Allnodes", + "description": "Reliable non-custodial Validator run by the industry leader - Allnodes. Monitor your rewards through the Allnodes portfolio page.", + "website": "https://www.allnodes.com/iris/staking" + } +] diff --git a/blockchains/juno/info/info.json b/blockchains/juno/info/info.json index 3df5fdda85756..2df556593b23b 100644 --- a/blockchains/juno/info/info.json +++ b/blockchains/juno/info/info.json @@ -12,6 +12,9 @@ "lcd_url": "https://lcd-juno.itastakers.com", "hrp": "juno", "fee_rate": "0.04", + "tags": [ + "staking-native" + ], "links": [ { "name": "github", @@ -22,8 +25,8 @@ "url": "https://coinmarketcap.com/ru/currencies/juno/" }, { - "name": "twitter", - "url": "https://twitter.com/JunoNetwork" + "name": "x", + "url": "https://x.com/JunoNetwork" } ] -} +} \ No newline at end of file diff --git a/blockchains/juno/info/logo.png b/blockchains/juno/info/logo.png index d521db46a3a26..dd6c870c1dd22 100644 Binary files a/blockchains/juno/info/logo.png and b/blockchains/juno/info/logo.png differ diff --git a/blockchains/juno/info/square_logo.png b/blockchains/juno/info/square_logo.png new file mode 100644 index 0000000000000..22e631e02fd15 Binary files /dev/null and b/blockchains/juno/info/square_logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper15yuuev6n8sfvvkqx2m4rqvrnu8vyuzvmkku3fm/logo.png b/blockchains/juno/validators/assets/junovaloper15yuuev6n8sfvvkqx2m4rqvrnu8vyuzvmkku3fm/logo.png new file mode 100644 index 0000000000000..c2cb86a42efe3 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper15yuuev6n8sfvvkqx2m4rqvrnu8vyuzvmkku3fm/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper185hgkqs8q8ysnc8cvkgd8j2knnq2m0ah6ae73gntv9ampgwpmrxqlfzywn/logo.png b/blockchains/juno/validators/assets/junovaloper185hgkqs8q8ysnc8cvkgd8j2knnq2m0ah6ae73gntv9ampgwpmrxqlfzywn/logo.png new file mode 100644 index 0000000000000..c3f41f6b4206b Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper185hgkqs8q8ysnc8cvkgd8j2knnq2m0ah6ae73gntv9ampgwpmrxqlfzywn/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper196ax4vc0lwpxndu9dyhvca7jhxp70rmcqcnylw/logo.png b/blockchains/juno/validators/assets/junovaloper196ax4vc0lwpxndu9dyhvca7jhxp70rmcqcnylw/logo.png new file mode 100644 index 0000000000000..5f2434df2bfdd Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper196ax4vc0lwpxndu9dyhvca7jhxp70rmcqcnylw/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1afhtjur8js4589xymu346ca7a5y5293x7p64ca/logo.png b/blockchains/juno/validators/assets/junovaloper1afhtjur8js4589xymu346ca7a5y5293x7p64ca/logo.png new file mode 100644 index 0000000000000..9a688eab883cb Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1afhtjur8js4589xymu346ca7a5y5293x7p64ca/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1hx9yj7qgnp8zhkrqfanvz74mcsg9d8eyskvsxg/logo.png b/blockchains/juno/validators/assets/junovaloper1hx9yj7qgnp8zhkrqfanvz74mcsg9d8eyskvsxg/logo.png new file mode 100644 index 0000000000000..0f6305d87f6e5 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1hx9yj7qgnp8zhkrqfanvz74mcsg9d8eyskvsxg/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1ka8v934kgrw6679fs9cuu0kesyl0ljjy2kdtrl/logo.png b/blockchains/juno/validators/assets/junovaloper1ka8v934kgrw6679fs9cuu0kesyl0ljjy2kdtrl/logo.png new file mode 100644 index 0000000000000..ba2f64c9b4f19 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1ka8v934kgrw6679fs9cuu0kesyl0ljjy2kdtrl/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1la7th9kc3gdltl53cedxxqpkyk5runudrzwx55/logo.png b/blockchains/juno/validators/assets/junovaloper1la7th9kc3gdltl53cedxxqpkyk5runudrzwx55/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1la7th9kc3gdltl53cedxxqpkyk5runudrzwx55/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1sjllsnramtg3ewxqwwrwjxfgc4n4ef9uxyejze/logo.png b/blockchains/juno/validators/assets/junovaloper1sjllsnramtg3ewxqwwrwjxfgc4n4ef9uxyejze/logo.png new file mode 100644 index 0000000000000..bcdec563b9539 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1sjllsnramtg3ewxqwwrwjxfgc4n4ef9uxyejze/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1ssmt2aveqpc7e0ncgxt0tpj83ur623dvk7uvng/logo.png b/blockchains/juno/validators/assets/junovaloper1ssmt2aveqpc7e0ncgxt0tpj83ur623dvk7uvng/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1ssmt2aveqpc7e0ncgxt0tpj83ur623dvk7uvng/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1t8ehvswxjfn3ejzkjtntcyrqwvmvuknzmvtaaa/logo.png b/blockchains/juno/validators/assets/junovaloper1t8ehvswxjfn3ejzkjtntcyrqwvmvuknzmvtaaa/logo.png new file mode 100644 index 0000000000000..70c64d1b880b9 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1t8ehvswxjfn3ejzkjtntcyrqwvmvuknzmvtaaa/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1wd02ktcvpananlvd9u6jm3x3ap3vmw59jv9vez/logo.png b/blockchains/juno/validators/assets/junovaloper1wd02ktcvpananlvd9u6jm3x3ap3vmw59jv9vez/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1wd02ktcvpananlvd9u6jm3x3ap3vmw59jv9vez/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1xdywquvz5g6r5wv6tpkj6chad0fkk459gf9ny6/logo.png b/blockchains/juno/validators/assets/junovaloper1xdywquvz5g6r5wv6tpkj6chad0fkk459gf9ny6/logo.png new file mode 100644 index 0000000000000..eaf66cb5cbb1f Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1xdywquvz5g6r5wv6tpkj6chad0fkk459gf9ny6/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww2wsdcwk/logo.png b/blockchains/juno/validators/assets/junovaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww2wsdcwk/logo.png new file mode 100644 index 0000000000000..b39ad7ed7ff85 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww2wsdcwk/logo.png differ diff --git a/blockchains/juno/validators/list.json b/blockchains/juno/validators/list.json new file mode 100644 index 0000000000000..4ceb06b2d1cff --- /dev/null +++ b/blockchains/juno/validators/list.json @@ -0,0 +1,80 @@ +[ + { + "id": "junovaloper1la7th9kc3gdltl53cedxxqpkyk5runudrzwx55", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "junovaloper1t8ehvswxjfn3ejzkjtntcyrqwvmvuknzmvtaaa", + "name": "Cosmostation", + "description": "Cosmostation validator node. Delegate your tokens and Start Earning Staking Rewards", + "website": "https://www.cosmostation.io/" + }, + { + "id": "junovaloper196ax4vc0lwpxndu9dyhvca7jhxp70rmcqcnylw", + "name": "SG-1", + "description": "SG-1 - your favorite validator on Juno. We offer 100% Soft Slash protection.", + "website": "https://sg-1.online/" + }, + { + "id": "junovaloper185hgkqs8q8ysnc8cvkgd8j2knnq2m0ah6ae73gntv9ampgwpmrxqlfzywn", + "name": "DAO DAO", + "description": "A validator run by a DAO.", + "website": "https://daodao.zone/" + }, + { + "id": "junovaloper15yuuev6n8sfvvkqx2m4rqvrnu8vyuzvmkku3fm", + "name": "AutoStake 🛡️ Slash Protected", + "description": "BareMetal - Decentralised - Reliable infrastructure run by the industry leader - AutoStake - Connect with us at: https://linktr.ee/autostake", + "website": "https://autostake.com" + }, + { + "id": "junovaloper1sjllsnramtg3ewxqwwrwjxfgc4n4ef9uxyejze", + "name": "stakefish", + "description": "We are the leading staking service provider for blockchain projects. Join our community to help secure networks and earn rewards. We know staking.", + "website": "https://stake.fish/" + }, + { + "id": "junovaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww2wsdcwk", + "name": "Swiss Staking", + "description": "Never jailed. Perfect uptime. Airdrop eligibility. IBC relayer. Community contributor. Backing app-chains. High security approach.", + "website": "https://swiss-staking.ch/" + }, + { + "id": "junovaloper1afhtjur8js4589xymu346ca7a5y5293x7p64ca", + "name": "OmniFlix Network", + "description": "OmniFlix is a p2p network for creators, curators and their sovereign communities to mint, manage and monetize assets. Developed Cosmic Compass, winner of the Best Custom Zone category in Cosmos (GOZ) and run nodes on networks that share our vision.", + "website": "https://omniflix.network/" + }, + { + "id": "junovaloper1ka8v934kgrw6679fs9cuu0kesyl0ljjy2kdtrl", + "name": "PUPMØS", + "description": "wen witepupper?", + "website": "https://www.pupmos.zone" + }, + { + "id": "junovaloper1xdywquvz5g6r5wv6tpkj6chad0fkk459gf9ny6", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com" + }, + { + "id": "junovaloper1ssmt2aveqpc7e0ncgxt0tpj83ur623dvk7uvng", + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" + }, + { + "id": "junovaloper1wd02ktcvpananlvd9u6jm3x3ap3vmw59jv9vez", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + }, + { + "id": "junovaloper1hx9yj7qgnp8zhkrqfanvz74mcsg9d8eyskvsxg", + "name": "Stakely.io", + "description": "🔥 Professional validator highly experienced in PoS 🔥 Slashing protection & Eligible for airdrops | Learn with our staking guides, video tutorials and FAQs | Part of the commission of our nodes will go to our Multicoin Faucet funds and other tools 🌱 Carbon Neutral 🌱", + "website": "https://stakely.io" + } +] diff --git a/blockchains/kava/assets/busd/info.json b/blockchains/kava/assets/busd/info.json index 66d65002c370e..314d74e5db0e7 100644 --- a/blockchains/kava/assets/busd/info.json +++ b/blockchains/kava/assets/busd/info.json @@ -13,12 +13,12 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/kava_platform" + "name": "x", + "url": "https://x.com/kava_platform" }, { "name": "telegram", "url": "https://t.me/kavalabs" } ] -} +} \ No newline at end of file diff --git a/blockchains/kava/assets/swp/info.json b/blockchains/kava/assets/swp/info.json index fa2fb18e09432..d16fcc3847489 100644 --- a/blockchains/kava/assets/swp/info.json +++ b/blockchains/kava/assets/swp/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Kava-Labs" }, { - "name": "twitter", - "url": "https://twitter.com/Kava_Swap" + "name": "x", + "url": "https://x.com/Kava_Swap" }, { "name": "reddit", diff --git a/blockchains/kava/assets/usdt/info.json b/blockchains/kava/assets/usdt/info.json new file mode 100644 index 0000000000000..11f2c5b41d12f --- /dev/null +++ b/blockchains/kava/assets/usdt/info.json @@ -0,0 +1,28 @@ +{ + "name": "Tether", + "website": "https://tether.to", + "description": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar.", + "explorer": "https://www.mintscan.io/kava", + "type": "KAVA", + "symbol": "USDT", + "decimals": 8, + "status": "active", + "id": "usdt", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/tether.to/" + }, + { + "name": "x", + "url": "https://x.com/Tether_to/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/tether/" + } + ] +} \ No newline at end of file diff --git a/blockchains/kava/assets/usdt/logo.png b/blockchains/kava/assets/usdt/logo.png new file mode 100644 index 0000000000000..f8ba68a56c9a8 Binary files /dev/null and b/blockchains/kava/assets/usdt/logo.png differ diff --git a/blockchains/kava/info/info.json b/blockchains/kava/info/info.json index 42e86d601aa49..a04f25b68f839 100644 --- a/blockchains/kava/info/info.json +++ b/blockchains/kava/info/info.json @@ -17,12 +17,12 @@ "url": "https://github.com/kava-labs" }, { - "name": "twitter", - "url": "https://twitter.com/kava_labs" + "name": "x", + "url": "https://x.com/kava_labs" }, { "name": "whitepaper", "url": "https://docsend.com/view/gwbwpc3" } ] -} +} \ No newline at end of file diff --git a/blockchains/kava/info/square_logo.png b/blockchains/kava/info/square_logo.png new file mode 100644 index 0000000000000..0ee58da6dda98 Binary files /dev/null and b/blockchains/kava/info/square_logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper16l4cn6tzqm8ll7t3t8zkwd0ut3lny7dttrk0dk/logo.png b/blockchains/kava/validators/assets/kavavaloper16l4cn6tzqm8ll7t3t8zkwd0ut3lny7dttrk0dk/logo.png new file mode 100644 index 0000000000000..bed0251921f16 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper16l4cn6tzqm8ll7t3t8zkwd0ut3lny7dttrk0dk/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper173l244hzxae6552769k2s3lfy4ue7whxwtkyq4/logo.png b/blockchains/kava/validators/assets/kavavaloper173l244hzxae6552769k2s3lfy4ue7whxwtkyq4/logo.png index cc1171d08453c..e247fab1b4a51 100644 Binary files a/blockchains/kava/validators/assets/kavavaloper173l244hzxae6552769k2s3lfy4ue7whxwtkyq4/logo.png and b/blockchains/kava/validators/assets/kavavaloper173l244hzxae6552769k2s3lfy4ue7whxwtkyq4/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper173l244hzxae6552769k2s3lfy4ue7whxwtkyq4/test.txt b/blockchains/kava/validators/assets/kavavaloper173l244hzxae6552769k2s3lfy4ue7whxwtkyq4/test.txt new file mode 100644 index 0000000000000..8b137891791fe --- /dev/null +++ b/blockchains/kava/validators/assets/kavavaloper173l244hzxae6552769k2s3lfy4ue7whxwtkyq4/test.txt @@ -0,0 +1 @@ + diff --git a/blockchains/kava/validators/assets/kavavaloper18qaqcev8m7vgkktw256hp74c87mq7mxzje3zkw/logo.png b/blockchains/kava/validators/assets/kavavaloper18qaqcev8m7vgkktw256hp74c87mq7mxzje3zkw/logo.png new file mode 100644 index 0000000000000..c53de0659fd41 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper18qaqcev8m7vgkktw256hp74c87mq7mxzje3zkw/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1gd5hf545caremavv28apr9mzf7f7ns395c27mq/logo.png b/blockchains/kava/validators/assets/kavavaloper1gd5hf545caremavv28apr9mzf7f7ns395c27mq/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1gd5hf545caremavv28apr9mzf7f7ns395c27mq/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1hztgl202pvetspxch0pcchaqzrduw4qq64q08u/logo.png b/blockchains/kava/validators/assets/kavavaloper1hztgl202pvetspxch0pcchaqzrduw4qq64q08u/logo.png new file mode 100644 index 0000000000000..c2cb86a42efe3 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1hztgl202pvetspxch0pcchaqzrduw4qq64q08u/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1nlmz3fnsj7668dyttrn0rpmdu5t5ld8g8ta9a9/logo.png b/blockchains/kava/validators/assets/kavavaloper1nlmz3fnsj7668dyttrn0rpmdu5t5ld8g8ta9a9/logo.png new file mode 100644 index 0000000000000..e117817071239 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1nlmz3fnsj7668dyttrn0rpmdu5t5ld8g8ta9a9/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1t787gjxtyswnncltluwaefg0dfgvwrm87d3g9d/logo.png b/blockchains/kava/validators/assets/kavavaloper1t787gjxtyswnncltluwaefg0dfgvwrm87d3g9d/logo.png new file mode 100644 index 0000000000000..f5f3ada9451c6 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1t787gjxtyswnncltluwaefg0dfgvwrm87d3g9d/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1ue3kw4yz0cyqdshxx3zcpnpl6xhles4eg8kuf9/logo.png b/blockchains/kava/validators/assets/kavavaloper1ue3kw4yz0cyqdshxx3zcpnpl6xhles4eg8kuf9/logo.png new file mode 100644 index 0000000000000..e247fab1b4a51 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1ue3kw4yz0cyqdshxx3zcpnpl6xhles4eg8kuf9/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1uvz0vus7ktxt47cermscwe3k9gs7h9ag05sh6g/logo.png b/blockchains/kava/validators/assets/kavavaloper1uvz0vus7ktxt47cermscwe3k9gs7h9ag05sh6g/logo.png index 3c29ee005d51c..0888af01c5da5 100644 Binary files a/blockchains/kava/validators/assets/kavavaloper1uvz0vus7ktxt47cermscwe3k9gs7h9ag05sh6g/logo.png and b/blockchains/kava/validators/assets/kavavaloper1uvz0vus7ktxt47cermscwe3k9gs7h9ag05sh6g/logo.png differ diff --git a/blockchains/kava/validators/list.json b/blockchains/kava/validators/list.json index 5fc6dfe71e781..19950471d6c37 100644 --- a/blockchains/kava/validators/list.json +++ b/blockchains/kava/validators/list.json @@ -1,4 +1,16 @@ [ + { + "id": "kavavaloper1t787gjxtyswnncltluwaefg0dfgvwrm87d3g9d", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com" + }, + { + "id": "kavavaloper1gd5hf545caremavv28apr9mzf7f7ns395c27mq", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, { "id": "kavavaloper196w5nuha6u2ucwr65cqwnqrzxuemsyhv2c0lq8", "name": "Sunflower 🌻", @@ -23,9 +35,15 @@ "description": "Atomic Nodes is a multi chain staking operator, trusted by over 200,000 delegators since 2019.", "website": "https://atomicnodes.com" }, + { + "id": "kavavaloper1hztgl202pvetspxch0pcchaqzrduw4qq64q08u", + "name": "AutoStake 🛡️ Slash Protected", + "description": "BareMetal - Decentralised - Reliable infrastructure run by the industry leader - AutoStake - Connect with us at: https://linktr.ee/autostake", + "website": "https://autostake.com" + }, { "id": "kavavaloper1xfyyvg9v66yef6cea5ruw8kaqw5a84kjd86r75", - "name": "0% Best APR ❤️ NodesByGirls", + "name": "NodesByGirls", "description": "We are a professional team with many years of experience in the crypto industry. Stake with us to get the best APR!", "website": "https://nodesbygirls.com" }, @@ -62,7 +80,7 @@ { "id": "kavavaloper1dede4flaq24j2g9u8f83vkqrqxe6cwzrxt5zsu", "name": "Stakin", - "description": "Your Trusted Crypto Rewards", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", "website": "https://stakin.com/" }, { @@ -139,9 +157,9 @@ }, { "id": "kavavaloper1uvz0vus7ktxt47cermscwe3k9gs7h9ag05sh6g", - "name": "Genesis Lab", - "description": "Genesis Lab is a validation nodes operator in PoS networks and blockchain-focused software development company", - "website": "https://genesislab.net" + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" }, { "id": "kavavaloper1ppj7c8tqt2e3rzqtmztsmd6ea6u3nz6qggcp5e", @@ -161,12 +179,6 @@ "description": "Stake with us to earn more. High reliability. Low commission. We are an experienced team of staking node operators.", "website": "https://earnstash.com" }, - { - "id": "kavavaloper173l244hzxae6552769k2s3lfy4ue7whxwtkyq4", - "name": "Blocks United", - "description": "100% refund on downtime slashing - Running on best-in-class, 24/7 monitored, bare metal infrastructure", - "website": "https://blocksunited.com" - }, { "id": "kavavaloper1ua2yqfjck23vsmynltcgrvvg5rhfkm4cy78vmq", "name": "Atlas Staking", @@ -187,7 +199,7 @@ }, { "id": "kavavaloper14vk3997r4ea4m7eej7ugmr503ru768fxwynsmq", - "name": "Allnodes.com ⚡️ 0% fee", + "name": "Allnodes", "description": "Reliable non-custodial Validator run by the industry leader - Allnodes. Monitor your rewards through the Allnodes portfolio page.", "website": "https://www.allnodes.com/kava/staking" }, @@ -196,5 +208,35 @@ "name": "Stakewolle", "description": "🚀 Professional validator 🔁Auto-compound with REStakeapp 🛡100% Slashing protection 🎁 All & Special Airdrops for our delegators http://linktr.ee/stakewolle", "website": "https://stakewolle.com/" + }, + { + "id": "kavavaloper1nlmz3fnsj7668dyttrn0rpmdu5t5ld8g8ta9a9", + "name": "w3coins", + "description": "w3coins is a Professional Validator and web3 Venture Capital. Stake Your Cryptocurrency with us to Maximize Your Earnings.", + "website": "https://www.w3coins.io" + }, + { + "id": "kavavaloper16l4cn6tzqm8ll7t3t8zkwd0ut3lny7dttrk0dk", + "name": "Meria", + "description": "Meria is an institutional-grade staking service provider running blockchain infrastructure on more than +35 networks.", + "website": "https://stake.meria.com/" + }, + { + "id": "kavavaloper18qaqcev8m7vgkktw256hp74c87mq7mxzje3zkw", + "name": "Coinage x DAIC", + "description": "The official validator node from Coinage (Coinage.Media) and DAIC (https://daic.capital/telegram)", + "website": "https://daic.capital/" + }, + { + "id": "kavavaloper173l244hzxae6552769k2s3lfy4ue7whxwtkyq4", + "name": "Blocks United", + "description": "100% refund on downtime slashing - Running on best-in-class, 24/7 monitored, bare metal infrastructure", + "website": "https://blocksunited.com" + }, + { + "id": "kavavaloper1ue3kw4yz0cyqdshxx3zcpnpl6xhles4eg8kuf9", + "name": "Blocks United", + "description": "Elevate your staking experience with autocompounding rewards, exclusive airdrop eligibility, and low commissions for maximized returns.", + "website": "https://blocksunited.com" } ] diff --git a/blockchains/kavaevm/assets/0x919C1c267BC06a7039e03fcc2eF738525769109c/info.json b/blockchains/kavaevm/assets/0x919C1c267BC06a7039e03fcc2eF738525769109c/info.json new file mode 100644 index 0000000000000..736b46b818af7 --- /dev/null +++ b/blockchains/kavaevm/assets/0x919C1c267BC06a7039e03fcc2eF738525769109c/info.json @@ -0,0 +1,28 @@ +{ + "name": "Tether", + "symbol": "USDT", + "type": "KAVAEVM", + "decimals": 6, + "description": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar.", + "website": "https://tether.to", + "explorer": "https://explorer.kava.io/token/0x919C1c267BC06a7039e03fcc2eF738525769109c", + "status": "active", + "id": "0x919C1c267BC06a7039e03fcc2eF738525769109c", + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/tether.to/" + }, + { + "name": "x", + "url": "https://x.com/Tether_to/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/tether/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/kavaevm/assets/0x919C1c267BC06a7039e03fcc2eF738525769109c/logo.png b/blockchains/kavaevm/assets/0x919C1c267BC06a7039e03fcc2eF738525769109c/logo.png new file mode 100644 index 0000000000000..0a265affb2c8a Binary files /dev/null and b/blockchains/kavaevm/assets/0x919C1c267BC06a7039e03fcc2eF738525769109c/logo.png differ diff --git a/blockchains/kavaevm/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json b/blockchains/kavaevm/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json new file mode 100644 index 0000000000000..28287f8e042c8 --- /dev/null +++ b/blockchains/kavaevm/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json @@ -0,0 +1,69 @@ +{ + "name": "Axelar Wrapped USDC", + "type": "KAVAEVM", + "symbol": "axlUSDC", + "decimals": 6, + "website": "https://axelar.network/", + "description": "Axelar delivers secure cross-chain communication for Web3. Our infrastructure enables dApp users to interact with any asset or application, on any chain, with one click.", + "explorer": "https://explorer.kava.io/token/0xEB466342C4d449BC9f53A865D5Cb90586f405215", + "status": "active", + "id": "0xEB466342C4d449BC9f53A865D5Cb90586f405215", + "links": [ + { + "name": "x", + "url": "https://x.com/axelarcore" + }, + { + "name": "github", + "url": "https://github.com/axelarnetwork" + }, + { + "name": "telegram", + "url": "https://t.me/axelarcommunity" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/axelar-usdc" + }, + { + "name": "docs", + "url": "https://docs.axelar.dev/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/aRZ3Ra6f7D" + }, + { + "name": "forum", + "url": "https://community.axelar.network/" + }, + { + "name": "whitepaper", + "url": "https://axelar.network/axelar_whitepaper.pdf" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/axelar" + }, + { + "name": "medium", + "url": "https://medium.com/@axelar-foundation" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/axlusdc/" + }, + { + "name": "blog", + "url": "https://axelar.network/blog" + }, + { + "name": "youtube", + "url": "https://youtube.com/@Axelarcore" + } + ], + "tags": [ + "stablecoin", + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/kavaevm/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png b/blockchains/kavaevm/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png new file mode 100644 index 0000000000000..69911caea54fb Binary files /dev/null and b/blockchains/kavaevm/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png differ diff --git a/blockchains/kavaevm/info/info.json b/blockchains/kavaevm/info/info.json index 1020e1d2e7df7..41a3010bd45fe 100644 --- a/blockchains/kavaevm/info/info.json +++ b/blockchains/kavaevm/info/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/kava-labs" }, { - "name": "twitter", - "url": "https://twitter.com/kava_labs" + "name": "x", + "url": "https://x.com/kava_labs" }, { "name": "whitepaper", @@ -40,6 +40,7 @@ } ], "tags": [ - "defi" + "defi", + "dapp" ] -} +} \ No newline at end of file diff --git a/blockchains/kavaevm/info/square_logo.png b/blockchains/kavaevm/info/square_logo.png new file mode 100644 index 0000000000000..0ee58da6dda98 Binary files /dev/null and b/blockchains/kavaevm/info/square_logo.png differ diff --git a/blockchains/kcc/assets/0x0039f574eE5cC39bdD162E9A88e3EB1f111bAF48/info.json b/blockchains/kcc/assets/0x0039f574eE5cC39bdD162E9A88e3EB1f111bAF48/info.json index d173bc3976833..5aff94dfaafe1 100644 --- a/blockchains/kcc/assets/0x0039f574eE5cC39bdD162E9A88e3EB1f111bAF48/info.json +++ b/blockchains/kcc/assets/0x0039f574eE5cC39bdD162E9A88e3EB1f111bAF48/info.json @@ -1,5 +1,5 @@ { - "name": "KCC-Peg Tether USD", + "name": "Tether", "website": "https://tether.to/en/", "description": "USDT is a stablecoin (stable-value cryptocurrency) that mirrors the price of the U.S. dollar, issued by a Hong Kong-based company Tether. The token’s peg to the USD is achieved via maintaining a sum of commercial paper, fiduciary deposits, cash, reserve repo notes, and treasury bills in reserves that is equal in USD value to the number of USDT in circulation.", "explorer": "https://explorer.kcc.io/token/0x0039f574eE5cC39bdD162E9A88e3EB1f111bAF48", @@ -10,12 +10,15 @@ "id": "0x0039f574eE5cC39bdD162E9A88e3EB1f111bAF48", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Tether_to" + "name": "x", + "url": "https://x.com/Tether_to" }, { "name": "whitepaper", "url": "https://tether.to/en/transparency/" } + ], + "tags": [ + "stablecoin" ] -} +} \ No newline at end of file diff --git a/blockchains/kcc/assets/0x1B8e27ABA297466fc6765Ce55BD12A8E216759da/info.json b/blockchains/kcc/assets/0x1B8e27ABA297466fc6765Ce55BD12A8E216759da/info.json index c11b7b396bcac..ca3a9959946ab 100644 --- a/blockchains/kcc/assets/0x1B8e27ABA297466fc6765Ce55BD12A8E216759da/info.json +++ b/blockchains/kcc/assets/0x1B8e27ABA297466fc6765Ce55BD12A8E216759da/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/polygonofficial" }, { - "name": "twitter", - "url": "https://twitter.com/0xPolygon" + "name": "x", + "url": "https://x.com/0xPolygon" } ] } \ No newline at end of file diff --git a/blockchains/kcc/assets/0x2cA48b4eeA5A731c2B54e7C3944DBDB87c0CFB6F/info.json b/blockchains/kcc/assets/0x2cA48b4eeA5A731c2B54e7C3944DBDB87c0CFB6F/info.json index e37b31431b859..f0589f55f6fc3 100644 --- a/blockchains/kcc/assets/0x2cA48b4eeA5A731c2B54e7C3944DBDB87c0CFB6F/info.json +++ b/blockchains/kcc/assets/0x2cA48b4eeA5A731c2B54e7C3944DBDB87c0CFB6F/info.json @@ -14,12 +14,12 @@ "url": "https://t.me/MojitoFinance" }, { - "name": "twitter", - "url": "https://twitter.com/MojitoSwap" + "name": "x", + "url": "https://x.com/MojitoSwap" }, { "name": "github", "url": "https://github.com/MojitoFinance" } ] -} +} \ No newline at end of file diff --git a/blockchains/kcc/assets/0x4446Fc4eb47f2f6586f9fAAb68B3498F86C07521/info.json b/blockchains/kcc/assets/0x4446Fc4eb47f2f6586f9fAAb68B3498F86C07521/info.json index 74c2afc337f8b..764b8d981b9b1 100644 --- a/blockchains/kcc/assets/0x4446Fc4eb47f2f6586f9fAAb68B3498F86C07521/info.json +++ b/blockchains/kcc/assets/0x4446Fc4eb47f2f6586f9fAAb68B3498F86C07521/info.json @@ -15,8 +15,8 @@ "url": "https://t.me/KCCOfficialEnglishCommunity" }, { - "name": "twitter", - "url": "https://twitter.com/KCCOfficialTW" + "name": "x", + "url": "https://x.com/KCCOfficialTW" }, { "name": "discord", @@ -31,4 +31,4 @@ "url": "https://github.com/kcc-community" } ] -} +} \ No newline at end of file diff --git a/blockchains/kcc/assets/0x652D253b7Ca91810A4a05ACFc39729387c5090C0/info.json b/blockchains/kcc/assets/0x652D253b7Ca91810A4a05ACFc39729387c5090C0/info.json index fc0450994dedf..6c878ce4dd1da 100644 --- a/blockchains/kcc/assets/0x652D253b7Ca91810A4a05ACFc39729387c5090C0/info.json +++ b/blockchains/kcc/assets/0x652D253b7Ca91810A4a05ACFc39729387c5090C0/info.json @@ -14,8 +14,8 @@ "url": "https://medium.com/@crypto.com" }, { - "name": "twitter", - "url": "https://twitter.com/cryptocom" + "name": "x", + "url": "https://x.com/cryptocom" }, { "name": "reddit", diff --git a/blockchains/kcc/assets/0x791630C11c7159A748d8c2267a66780B3DDC40a7/info.json b/blockchains/kcc/assets/0x791630C11c7159A748d8c2267a66780B3DDC40a7/info.json index 25a9f18e81356..41c1ab6b8285f 100644 --- a/blockchains/kcc/assets/0x791630C11c7159A748d8c2267a66780B3DDC40a7/info.json +++ b/blockchains/kcc/assets/0x791630C11c7159A748d8c2267a66780B3DDC40a7/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/quant/" }, { - "name": "twitter", - "url": "https://twitter.com/quant_network" + "name": "x", + "url": "https://x.com/quant_network" }, { "name": "telegram", diff --git a/blockchains/kcc/assets/0x980a5AfEf3D17aD98635F6C5aebCBAedEd3c3430/info.json b/blockchains/kcc/assets/0x980a5AfEf3D17aD98635F6C5aebCBAedEd3c3430/info.json index fdd81eac0fa2d..db9850f04ebfc 100644 --- a/blockchains/kcc/assets/0x980a5AfEf3D17aD98635F6C5aebCBAedEd3c3430/info.json +++ b/blockchains/kcc/assets/0x980a5AfEf3D17aD98635F6C5aebCBAedEd3c3430/info.json @@ -1,5 +1,5 @@ { - "name": "KCC-Peg USD Coin", + "name": "USDC", "website": "https://www.centre.io/usdc", "description": "USD Coin (known by its ticker USDC) is a stablecoin that is pegged to the U.S. dollar on a 1:1 basis. Every unit of this cryptocurrency in circulation is backed up by $1 that is held in reserve, in a mix of cash and short-term U.S. Treasury bonds. The Centre consortium, which is behind this asset, says USDC is issued by regulated financial institutions.", "explorer": "https://explorer.kcc.io/token/0x980a5AfEf3D17aD98635F6C5aebCBAedEd3c3430", @@ -17,5 +17,8 @@ "name": "whitepaper", "url": "https://f.hubspotusercontent30.net/hubfs/9304636/PDF/centre-whitepaper.pdf" } + ], + "tags": [ + "stablecoin" ] } diff --git a/blockchains/kcc/assets/0xC19a5caCC2bb68Ff09f2Fcc695F31493A039Fa5e/info.json b/blockchains/kcc/assets/0xC19a5caCC2bb68Ff09f2Fcc695F31493A039Fa5e/info.json index 07ce6a65f6a4e..5ce0728f1238e 100644 --- a/blockchains/kcc/assets/0xC19a5caCC2bb68Ff09f2Fcc695F31493A039Fa5e/info.json +++ b/blockchains/kcc/assets/0xC19a5caCC2bb68Ff09f2Fcc695F31493A039Fa5e/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/decentraland/" }, { - "name": "twitter", - "url": "https://twitter.com/decentraland" + "name": "x", + "url": "https://x.com/decentraland" }, { "name": "github", diff --git a/blockchains/kcc/assets/0xE76e97C157658004eE22e01C03a5e21A4655A2Fd/info.json b/blockchains/kcc/assets/0xE76e97C157658004eE22e01C03a5e21A4655A2Fd/info.json index be328b6262156..26b3815c32668 100644 --- a/blockchains/kcc/assets/0xE76e97C157658004eE22e01C03a5e21A4655A2Fd/info.json +++ b/blockchains/kcc/assets/0xE76e97C157658004eE22e01C03a5e21A4655A2Fd/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/aave/aave-protocol" }, { - "name": "twitter", - "url": "https://twitter.com/AaveAave" + "name": "x", + "url": "https://x.com/AaveAave" }, { "name": "reddit", diff --git a/blockchains/kcc/assets/0xf55aF137A98607F7ED2eFEfA4cd2DfE70E4253b1/info.json b/blockchains/kcc/assets/0xf55aF137A98607F7ED2eFEfA4cd2DfE70E4253b1/info.json index 5807dc1625b5f..25101b8455dab 100644 --- a/blockchains/kcc/assets/0xf55aF137A98607F7ED2eFEfA4cd2DfE70E4253b1/info.json +++ b/blockchains/kcc/assets/0xf55aF137A98607F7ED2eFEfA4cd2DfE70E4253b1/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/ethereum/ethereum-org-website" }, { - "name": "twitter", - "url": "https://twitter.com/ethdotorg" + "name": "x", + "url": "https://x.com/ethdotorg" }, { "name": "youtube", diff --git a/blockchains/kcc/info/info.json b/blockchains/kcc/info/info.json index c8d0354e4cad1..76f1a945c42c7 100644 --- a/blockchains/kcc/info/info.json +++ b/blockchains/kcc/info/info.json @@ -16,8 +16,8 @@ "url": "https://t.me/KCCOfficialEnglishCommunity" }, { - "name": "twitter", - "url": "https://twitter.com/KCCOfficialTW" + "name": "x", + "url": "https://x.com/KCCOfficialTW" }, { "name": "discord", @@ -32,4 +32,4 @@ "url": "https://github.com/kcc-community" } ] -} +} \ No newline at end of file diff --git a/blockchains/kcc/info/square_logo.png b/blockchains/kcc/info/square_logo.png new file mode 100644 index 0000000000000..97e3d90d1b181 Binary files /dev/null and b/blockchains/kcc/info/square_logo.png differ diff --git a/blockchains/kin/info/info.json b/blockchains/kin/info/info.json index 8b68a10519a1e..7d797ec9ff5b1 100644 --- a/blockchains/kin/info/info.json +++ b/blockchains/kin/info/info.json @@ -13,8 +13,8 @@ "url": "https://github.com/kinecosystem" }, { - "name": "twitter", - "url": "https://twitter.com/kin_foundation" + "name": "x", + "url": "https://x.com/kin_foundation" }, { "name": "reddit", diff --git a/blockchains/kin/info/square_logo.png b/blockchains/kin/info/square_logo.png new file mode 100644 index 0000000000000..3a8014e6cc1c5 Binary files /dev/null and b/blockchains/kin/info/square_logo.png differ diff --git a/blockchains/klaytn/assets/0x5c74070FDeA071359b86082bd9f9b3dEaafbe32b/info.json b/blockchains/klaytn/assets/0x5c74070FDeA071359b86082bd9f9b3dEaafbe32b/info.json new file mode 100644 index 0000000000000..a159e3c06f3f5 --- /dev/null +++ b/blockchains/klaytn/assets/0x5c74070FDeA071359b86082bd9f9b3dEaafbe32b/info.json @@ -0,0 +1,42 @@ +{ + "name": "Klaytn Dai", + "website": "http://makerdao.com", + "description": "Dai is a stable cryptocurrency supported by Maker (MKR). To ensure price stability, Dai minimizes the price volatility against the US dollar, through an incentive structure for its participants.", + "explorer": "https://kaiascan.io/token/0x5c74070fdea071359b86082bd9f9b3deaafbe32b", + "research": "https://research.binance.com/en/projects/dai", + "type": "KAIA", + "symbol": "KDAI", + "decimals": 18, + "status": "active", + "id": "0x5c74070FDeA071359b86082bd9f9b3dEaafbe32b", + "tags": [ + "defi", + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/MakerDAO" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MakerDAO/" + }, + { + "name": "blog", + "url": "https://blog.makerdao.com/" + }, + { + "name": "whitepaper", + "url": "https://makerdao.com/whitepaper/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/multi-collateral-dai/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/klaytn/assets/0x5c74070FDeA071359b86082bd9f9b3dEaafbe32b/logo.png b/blockchains/klaytn/assets/0x5c74070FDeA071359b86082bd9f9b3dEaafbe32b/logo.png new file mode 100644 index 0000000000000..f62e11387ebef Binary files /dev/null and b/blockchains/klaytn/assets/0x5c74070FDeA071359b86082bd9f9b3dEaafbe32b/logo.png differ diff --git a/blockchains/klaytn/assets/0x6270B58BE569a7c0b8f47594F191631Ae5b2C86C/info.json b/blockchains/klaytn/assets/0x6270B58BE569a7c0b8f47594F191631Ae5b2C86C/info.json new file mode 100644 index 0000000000000..6c97ee40e2752 --- /dev/null +++ b/blockchains/klaytn/assets/0x6270B58BE569a7c0b8f47594F191631Ae5b2C86C/info.json @@ -0,0 +1,36 @@ +{ + "name": "USD Coin", + "website": "https://centre.io/usdc", + "description": "USDC is a fully collateralized US dollar stablecoin, an Ethereum powered coin and is the brainchild of CENTRE, an open source project bootstrapped by contributions from Circle and Coinbase.", + "explorer": "https://kaiascan.io/token/0x6270b58be569a7c0b8f47594f191631ae5b2c86c", + "type": "KAIA", + "symbol": "USDC", + "decimals": 6, + "status": "active", + "id": "0x6270B58BE569a7c0b8f47594F191631Ae5b2C86C", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/klaytn/assets/0x6270B58BE569a7c0b8f47594F191631Ae5b2C86C/logo.png b/blockchains/klaytn/assets/0x6270B58BE569a7c0b8f47594F191631Ae5b2C86C/logo.png new file mode 100644 index 0000000000000..2191b105edec5 Binary files /dev/null and b/blockchains/klaytn/assets/0x6270B58BE569a7c0b8f47594F191631Ae5b2C86C/logo.png differ diff --git a/blockchains/klaytn/assets/0x8755D2e532b1559454689Bf0E8964Bd78b187Ff6/info.json b/blockchains/klaytn/assets/0x8755D2e532b1559454689Bf0E8964Bd78b187Ff6/info.json new file mode 100644 index 0000000000000..bf372673b3a71 --- /dev/null +++ b/blockchains/klaytn/assets/0x8755D2e532b1559454689Bf0E8964Bd78b187Ff6/info.json @@ -0,0 +1,28 @@ +{ + "name": "Elderglade", + "website": "https://elderglade.com/", + "description": "Elderglade is a next-generation Web3 fantasy game ecosystem that combines two of gaming's most successful genres: casual mobile games and MMORPGs, powered by ELDE token.", + "explorer": "https://kaiascan.io/token/0x8755D2e532b1559454689Bf0E8964Bd78b187Ff6", + "type": "KAIA", + "symbol": "ELDE", + "decimals": 18, + "status": "active", + "id": "0x8755D2e532b1559454689Bf0E8964Bd78b187Ff6", + "links": [ + { + "name": "x", + "url": "https://x.com/Elderglade" + }, + { + "name": "telegram", + "url": "https://t.me/elderglade" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elderglade/" + } + ], + "tags": [ + "gamefi" + ] +} diff --git a/blockchains/klaytn/assets/0x8755D2e532b1559454689Bf0E8964Bd78b187Ff6/logo.png b/blockchains/klaytn/assets/0x8755D2e532b1559454689Bf0E8964Bd78b187Ff6/logo.png new file mode 100644 index 0000000000000..247241297b5d6 Binary files /dev/null and b/blockchains/klaytn/assets/0x8755D2e532b1559454689Bf0E8964Bd78b187Ff6/logo.png differ diff --git a/blockchains/klaytn/assets/0xd077A400968890Eacc75cdc901F0356c943e4fDb/info.json b/blockchains/klaytn/assets/0xd077A400968890Eacc75cdc901F0356c943e4fDb/info.json new file mode 100644 index 0000000000000..79ab76bac3528 --- /dev/null +++ b/blockchains/klaytn/assets/0xd077A400968890Eacc75cdc901F0356c943e4fDb/info.json @@ -0,0 +1,28 @@ +{ + "name": "Tether USD", + "type": "KAIA", + "symbol": "USD₮", + "decimals": 6, + "website": "https://tether.to", + "description": "Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.", + "explorer": "https://kaiascan.io/token/0xd077A400968890Eacc75cdc901F0356c943e4fDb", + "status": "active", + "id": "0xd077A400968890Eacc75cdc901F0356c943e4fDb", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tether/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tether/" + }, + { + "name": "x", + "url": "https://x.com/tether" + } + ], + "tags": [ + "stablecoin" + ] +} diff --git a/blockchains/klaytn/assets/0xd077A400968890Eacc75cdc901F0356c943e4fDb/logo.png b/blockchains/klaytn/assets/0xd077A400968890Eacc75cdc901F0356c943e4fDb/logo.png new file mode 100644 index 0000000000000..7f05d00928424 Binary files /dev/null and b/blockchains/klaytn/assets/0xd077A400968890Eacc75cdc901F0356c943e4fDb/logo.png differ diff --git a/blockchains/klaytn/info/info.json b/blockchains/klaytn/info/info.json index b583f923bdff2..5e487c4fe6bed 100644 --- a/blockchains/klaytn/info/info.json +++ b/blockchains/klaytn/info/info.json @@ -1,18 +1,21 @@ { - "name": "klaytn", - "website": "https://klaytn.foundation", - "description": "Klaytn is an open-source public blockchain for all who wish to build, work, or play in the metaverse.", - "explorer": "https://scope.klaytn.com", + "name": "kaia", + "website": "https://kaia.io", + "description": "Kaia is an EVM Layer 1 public blockchain designed to bring Web3 to millions of users across Asia.", + "explorer": "https://kaiascan.io", "research": "", - "symbol": "KLAY", + "symbol": "KAIA", "type": "coin", "decimals": 18, - "rpc_url": "https://public-node-api.klaytnapi.com/v1/cypress", + "rpc_url": "https://public-en.node.kaia.io", "status": "active", + "tags": [ + "dapp" + ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/klaytn_official" + "name": "x", + "url": "https://x.com/kaiachain" } ] -} +} \ No newline at end of file diff --git a/blockchains/klaytn/info/logo.png b/blockchains/klaytn/info/logo.png index 091f89c31c5f4..5462c404320ec 100644 Binary files a/blockchains/klaytn/info/logo.png and b/blockchains/klaytn/info/logo.png differ diff --git a/blockchains/klaytn/info/square_logo.png b/blockchains/klaytn/info/square_logo.png new file mode 100644 index 0000000000000..d790ce8392039 Binary files /dev/null and b/blockchains/klaytn/info/square_logo.png differ diff --git a/blockchains/komodo/info/info.json b/blockchains/komodo/info/info.json new file mode 100644 index 0000000000000..7b8d4b1f5bbd2 --- /dev/null +++ b/blockchains/komodo/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "Komodo", + "website": "https://komodoplatform.com", + "description": "Komodo is an open-source blockchain technology provider. We are a community of innovators changing the world.", + "explorer": "https://kmdexplorer.io/", + "symbol": "KMD", + "type": "coin", + "decimals": 8, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/KomodoPlatform/komodo" + }, + { + "name": "x", + "url": "https://x.com/KomodoPlatform" + } + ] +} \ No newline at end of file diff --git a/blockchains/komodo/info/logo.png b/blockchains/komodo/info/logo.png new file mode 100644 index 0000000000000..2584dcde87a0d Binary files /dev/null and b/blockchains/komodo/info/logo.png differ diff --git a/blockchains/komodo/info/square_logo.png b/blockchains/komodo/info/square_logo.png new file mode 100644 index 0000000000000..8ccb1b84b60fe Binary files /dev/null and b/blockchains/komodo/info/square_logo.png differ diff --git a/blockchains/kujira/info/info.json b/blockchains/kujira/info/info.json index 1ee2750c56143..dd123b02e150a 100644 --- a/blockchains/kujira/info/info.json +++ b/blockchains/kujira/info/info.json @@ -21,8 +21,8 @@ "url": "https://t.me/+5SbXzcoRmWQ3OWE8" }, { - "name": "twitter", - "url": "https://twitter.com/TeamKujira" + "name": "x", + "url": "https://x.com/TeamKujira" } ] } \ No newline at end of file diff --git a/blockchains/kujira/info/square_logo.png b/blockchains/kujira/info/square_logo.png new file mode 100644 index 0000000000000..fd977f0beece0 Binary files /dev/null and b/blockchains/kujira/info/square_logo.png differ diff --git a/blockchains/kujira/validators/assets/kujiravaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z6yz0hy/logo.png b/blockchains/kujira/validators/assets/kujiravaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z6yz0hy/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/kujira/validators/assets/kujiravaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z6yz0hy/logo.png differ diff --git a/blockchains/kujira/validators/assets/kujiravaloper1esj2mkumg8q9l7wunkqzu85jvz7zrrcykeeka7/logo.png b/blockchains/kujira/validators/assets/kujiravaloper1esj2mkumg8q9l7wunkqzu85jvz7zrrcykeeka7/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/kujira/validators/assets/kujiravaloper1esj2mkumg8q9l7wunkqzu85jvz7zrrcykeeka7/logo.png differ diff --git a/blockchains/kujira/validators/assets/kujiravaloper1qkk2nwpq0k6aq02le5g2hmsmts8um3cx44usvy/logo.png b/blockchains/kujira/validators/assets/kujiravaloper1qkk2nwpq0k6aq02le5g2hmsmts8um3cx44usvy/logo.png new file mode 100644 index 0000000000000..c53de0659fd41 Binary files /dev/null and b/blockchains/kujira/validators/assets/kujiravaloper1qkk2nwpq0k6aq02le5g2hmsmts8um3cx44usvy/logo.png differ diff --git a/blockchains/kujira/validators/assets/kujiravaloper1rc2h9eg3wul70a8yruadmn9vf947nhcdzcjyg0/logo.png b/blockchains/kujira/validators/assets/kujiravaloper1rc2h9eg3wul70a8yruadmn9vf947nhcdzcjyg0/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/kujira/validators/assets/kujiravaloper1rc2h9eg3wul70a8yruadmn9vf947nhcdzcjyg0/logo.png differ diff --git a/blockchains/kujira/validators/list.json b/blockchains/kujira/validators/list.json new file mode 100644 index 0000000000000..da52afb96e5d2 --- /dev/null +++ b/blockchains/kujira/validators/list.json @@ -0,0 +1,26 @@ +[ + { + "id": "kujiravaloper1esj2mkumg8q9l7wunkqzu85jvz7zrrcykeeka7", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "kujiravaloper1rc2h9eg3wul70a8yruadmn9vf947nhcdzcjyg0", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + }, + { + "id": "kujiravaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z6yz0hy", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + }, + { + "id": "kujiravaloper1qkk2nwpq0k6aq02le5g2hmsmts8um3cx44usvy", + "name": "Coinage x DAIC", + "description": "The official validator node from Coinage (Coinage.Media) and DAIC (https://daic.capital/telegram)", + "website": "https://daic.capital/" + } +] \ No newline at end of file diff --git a/blockchains/kusama/info/info.json b/blockchains/kusama/info/info.json index e3f084473e307..a2503a95f9581 100644 --- a/blockchains/kusama/info/info.json +++ b/blockchains/kusama/info/info.json @@ -2,7 +2,7 @@ "name": "Kusama", "website": "https://kusama.network", "description": "Kusama is described as a canary-net: It is an early, highly experimental version of Polkadot presenting real economic conditions.", - "explorer": "https://polkascan.io/pre/kusama-cc3", + "explorer": "https://assethub-kusama.subscan.io/", "symbol": "KSM", "type": "coin", "decimals": 12, @@ -13,12 +13,15 @@ "url": "https://github.com/kusamanetwork" }, { - "name": "twitter", - "url": "https://twitter.com/kusamanetwork" + "name": "x", + "url": "https://x.com/kusamanetwork" }, { "name": "reddit", "url": "https://reddit.com/r/Kusama" } + ], + "tags": [ + "staking-native" ] } \ No newline at end of file diff --git a/blockchains/kusama/info/square_logo.png b/blockchains/kusama/info/square_logo.png new file mode 100644 index 0000000000000..50587c310d791 Binary files /dev/null and b/blockchains/kusama/info/square_logo.png differ diff --git a/blockchains/kusama/validators/assets/CmjHFdR59QAZMuyjDF5Sn4mwTgGbKMH2cErUFuf6UT51UwS/logo.png b/blockchains/kusama/validators/assets/CmjHFdR59QAZMuyjDF5Sn4mwTgGbKMH2cErUFuf6UT51UwS/logo.png new file mode 100644 index 0000000000000..8a1a37b8cc02a Binary files /dev/null and b/blockchains/kusama/validators/assets/CmjHFdR59QAZMuyjDF5Sn4mwTgGbKMH2cErUFuf6UT51UwS/logo.png differ diff --git a/blockchains/kusama/validators/assets/DPc3YPyWts9LjqBUy7hhLDwN4iHPXU6vicURDMYAMqnW5gi/logo.png b/blockchains/kusama/validators/assets/DPc3YPyWts9LjqBUy7hhLDwN4iHPXU6vicURDMYAMqnW5gi/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/kusama/validators/assets/DPc3YPyWts9LjqBUy7hhLDwN4iHPXU6vicURDMYAMqnW5gi/logo.png differ diff --git a/blockchains/kusama/validators/assets/DteShXKaQQy2un2VizKwwhViN5e7F47UrkAZDkxgK22LdBv/logo.png b/blockchains/kusama/validators/assets/DteShXKaQQy2un2VizKwwhViN5e7F47UrkAZDkxgK22LdBv/logo.png new file mode 100644 index 0000000000000..33273a1e37b6d Binary files /dev/null and b/blockchains/kusama/validators/assets/DteShXKaQQy2un2VizKwwhViN5e7F47UrkAZDkxgK22LdBv/logo.png differ diff --git a/blockchains/kusama/validators/assets/DuRV4MSm54UoX3MpFe3P7rxjBFLfnKRThxG66s4n3yF8qbJ/logo.png b/blockchains/kusama/validators/assets/DuRV4MSm54UoX3MpFe3P7rxjBFLfnKRThxG66s4n3yF8qbJ/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/kusama/validators/assets/DuRV4MSm54UoX3MpFe3P7rxjBFLfnKRThxG66s4n3yF8qbJ/logo.png differ diff --git a/blockchains/kusama/validators/assets/EDEVriQd4TpEHHyWnLbQHDYjY9avxxkWhNmBou4SHKixgt1/logo.png b/blockchains/kusama/validators/assets/EDEVriQd4TpEHHyWnLbQHDYjY9avxxkWhNmBou4SHKixgt1/logo.png new file mode 100644 index 0000000000000..33273a1e37b6d Binary files /dev/null and b/blockchains/kusama/validators/assets/EDEVriQd4TpEHHyWnLbQHDYjY9avxxkWhNmBou4SHKixgt1/logo.png differ diff --git a/blockchains/kusama/validators/assets/ESRBbWstgpPV1pVBsqjMo717rA8HLrtQvEUVwAGeFZyKcia/logo.png b/blockchains/kusama/validators/assets/ESRBbWstgpPV1pVBsqjMo717rA8HLrtQvEUVwAGeFZyKcia/logo.png new file mode 100644 index 0000000000000..63b99724ea40c Binary files /dev/null and b/blockchains/kusama/validators/assets/ESRBbWstgpPV1pVBsqjMo717rA8HLrtQvEUVwAGeFZyKcia/logo.png differ diff --git a/blockchains/kusama/validators/assets/EfcQCKZJaNu2vcrpnJDCoh1ub4mGWcHVzeU8ghUH7Co9rui/logo.png b/blockchains/kusama/validators/assets/EfcQCKZJaNu2vcrpnJDCoh1ub4mGWcHVzeU8ghUH7Co9rui/logo.png new file mode 100644 index 0000000000000..0f6305d87f6e5 Binary files /dev/null and b/blockchains/kusama/validators/assets/EfcQCKZJaNu2vcrpnJDCoh1ub4mGWcHVzeU8ghUH7Co9rui/logo.png differ diff --git a/blockchains/kusama/validators/assets/F2VckTExmProzJnwNaN3YVqDoBPS1LyNVmyG8HUAygtDV3T/logo.png b/blockchains/kusama/validators/assets/F2VckTExmProzJnwNaN3YVqDoBPS1LyNVmyG8HUAygtDV3T/logo.png new file mode 100644 index 0000000000000..33273a1e37b6d Binary files /dev/null and b/blockchains/kusama/validators/assets/F2VckTExmProzJnwNaN3YVqDoBPS1LyNVmyG8HUAygtDV3T/logo.png differ diff --git a/blockchains/kusama/validators/list.json b/blockchains/kusama/validators/list.json new file mode 100644 index 0000000000000..f2baf32d4dcab --- /dev/null +++ b/blockchains/kusama/validators/list.json @@ -0,0 +1,50 @@ +[ + { + "id": "DteShXKaQQy2un2VizKwwhViN5e7F47UrkAZDkxgK22LdBv", + "name": "P2P.ORG/29", + "description": "P2P helps investors compound their cryptocurrency investments through non-custodial staking.", + "website": "https://p2p.org" + }, + { + "id": "EDEVriQd4TpEHHyWnLbQHDYjY9avxxkWhNmBou4SHKixgt1", + "name": "P2P.ORG/37", + "description": "P2P helps investors compound their cryptocurrency investments through non-custodial staking.", + "website": "https://p2p.org" + }, + { + "id": "F2VckTExmProzJnwNaN3YVqDoBPS1LyNVmyG8HUAygtDV3T", + "name": "P2P.ORG/38", + "description": "P2P helps investors compound their cryptocurrency investments through non-custodial staking.", + "website": "https://p2p.org" + }, + { + "id": "ESRBbWstgpPV1pVBsqjMo717rA8HLrtQvEUVwAGeFZyKcia", + "name": "Everstake", + "description": "Everstake is a staking-as-a-service company. We help institutional investors and regular token holders to profit off their crypto assets. Choose the most promising projects, delegate with Everstake, and make a stable passive income.", + "website": "https://everstake.one/" + }, + { + "id": "CmjHFdR59QAZMuyjDF5Sn4mwTgGbKMH2cErUFuf6UT51UwS", + "name": "COSMOON", + "description": "Cosmoon brings to cryptocurrency investors the best staking system with low fees.", + "website": "https://cosmoon.org" + }, + { + "id": "DuRV4MSm54UoX3MpFe3P7rxjBFLfnKRThxG66s4n3yF8qbJ", + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" + }, + { + "id": "DPc3YPyWts9LjqBUy7hhLDwN4iHPXU6vicURDMYAMqnW5gi", + "name": "Stakeflow/2", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" + }, + { + "id": "EfcQCKZJaNu2vcrpnJDCoh1ub4mGWcHVzeU8ghUH7Co9rui", + "name": "Stakely.io", + "description": "🔥 Professional validator highly experienced in PoS 🔥 Slashing protection | Learn with our staking guides, video tutorials and FAQs | Part of the commission of our nodes will go to our Multicoin Faucet funds and other tools 🌱 Carbon Neutral 🌱", + "website": "https://stakely.io" + } +] \ No newline at end of file diff --git a/blockchains/linea/assets/0x176211869cA2b568f2A7D4EE941E073a821EE1ff/info.json b/blockchains/linea/assets/0x176211869cA2b568f2A7D4EE941E073a821EE1ff/info.json new file mode 100644 index 0000000000000..ab374bbf81239 --- /dev/null +++ b/blockchains/linea/assets/0x176211869cA2b568f2A7D4EE941E073a821EE1ff/info.json @@ -0,0 +1,24 @@ +{ + "name": "USDC", + "type": "LINEA", + "symbol": "USDC", + "decimals": 6, + "website": "https://www.circle.com/usdc", + "description": "USDC is a stablecoin that is pegged to the U.S. dollar on a 1:1 basis. Every unit of this cryptocurrency in circulation is backed up by $1 that is held in reserve, in a mix of cash and short-term U.S. Treasury bonds.", + "explorer": "https://lineascan.build/address/0x176211869ca2b568f2a7d4ee941e073a821ee1ff", + "status": "active", + "id": "0x176211869cA2b568f2A7D4EE941E073a821EE1ff", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "x", + "url": "https://x.com/circle" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/linea/assets/0x176211869cA2b568f2A7D4EE941E073a821EE1ff/logo.png b/blockchains/linea/assets/0x176211869cA2b568f2A7D4EE941E073a821EE1ff/logo.png new file mode 100644 index 0000000000000..eafbaac194aa7 Binary files /dev/null and b/blockchains/linea/assets/0x176211869cA2b568f2A7D4EE941E073a821EE1ff/logo.png differ diff --git a/blockchains/linea/assets/0x1789e0043623282D5DCc7F213d703C6D8BAfBB04/info.json b/blockchains/linea/assets/0x1789e0043623282D5DCc7F213d703C6D8BAfBB04/info.json new file mode 100644 index 0000000000000..b5496c752b985 --- /dev/null +++ b/blockchains/linea/assets/0x1789e0043623282D5DCc7F213d703C6D8BAfBB04/info.json @@ -0,0 +1,24 @@ +{ + "name": "Linea", + "type": "LINEA", + "symbol": "LINEA", + "decimals": 18, + "website": "https://linea.build", + "description": "Linea is the Layer 2 built from first principles to strengthen Ethereum and the entire ETH economy. Every aspect of its design—from its productive ETH burn mechanics, and capital efficient native yield, to its underlying Ethereum-equivalent zk tech—amplifies the value and utility of Ethereum Mainnet.", + "explorer": "https://lineascan.build/token/0x1789e0043623282d5dcc7f213d703c6d8bafbb04", + "status": "active", + "id": "0x1789e0043623282D5DCc7F213d703C6D8BAfBB04", + "links": [ + { + "name": "x", + "url": "https://x.com/LineaAssoc" + }, + { + "name": "whitepaper", + "url": "https://linea.build/blog/linea-tokenomics" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/linea/assets/0x1789e0043623282D5DCc7F213d703C6D8BAfBB04/logo.png b/blockchains/linea/assets/0x1789e0043623282D5DCc7F213d703C6D8BAfBB04/logo.png new file mode 100644 index 0000000000000..2fa4612fcfa41 Binary files /dev/null and b/blockchains/linea/assets/0x1789e0043623282D5DCc7F213d703C6D8BAfBB04/logo.png differ diff --git a/blockchains/linea/assets/0x1a51b19CE03dbE0Cb44C1528E34a7EDD7771E9Af/info.json b/blockchains/linea/assets/0x1a51b19CE03dbE0Cb44C1528E34a7EDD7771E9Af/info.json new file mode 100644 index 0000000000000..75a046ac3e08b --- /dev/null +++ b/blockchains/linea/assets/0x1a51b19CE03dbE0Cb44C1528E34a7EDD7771E9Af/info.json @@ -0,0 +1,25 @@ +{ + "name": "Lynex", + "type": "LINEA", + "symbol": "LYNX", + "decimals": 18, + "website": "https://www.lynex.fi/", + "description": "Lynex stands as a cutting-edge decentralized exchange (DEX), liquidity layer, and ALM aggregator on the Linea blockchain. This robust platform revolutionizes DeFi activities by offering token swapping, seamless liquidity provision, and governance through the innovative veLYNX voting mechanism.", + "explorer": "https://lineascan.build/token/0x1a51b19CE03dbE0Cb44C1528E34a7EDD7771E9Af", + "status": "active", + "id": "0x1a51b19CE03dbE0Cb44C1528E34a7EDD7771E9Af", + "links": [ + { + "name": "x", + "url": "https://x.com/LynexFi" + }, + { + "name": "telegram", + "url": "https://t.me/lynexfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lynex/" + } + ] +} \ No newline at end of file diff --git a/blockchains/linea/assets/0x1a51b19CE03dbE0Cb44C1528E34a7EDD7771E9Af/logo.png b/blockchains/linea/assets/0x1a51b19CE03dbE0Cb44C1528E34a7EDD7771E9Af/logo.png new file mode 100644 index 0000000000000..dc8baab6eb7e3 Binary files /dev/null and b/blockchains/linea/assets/0x1a51b19CE03dbE0Cb44C1528E34a7EDD7771E9Af/logo.png differ diff --git a/blockchains/linea/assets/0x265B25e22bcd7f10a5bD6E6410F10537Cc7567e8/info.json b/blockchains/linea/assets/0x265B25e22bcd7f10a5bD6E6410F10537Cc7567e8/info.json new file mode 100644 index 0000000000000..0cf8ffc69ec57 --- /dev/null +++ b/blockchains/linea/assets/0x265B25e22bcd7f10a5bD6E6410F10537Cc7567e8/info.json @@ -0,0 +1,25 @@ +{ + "name": "Wrapped MATIC", + "type": "LINEA", + "symbol": "WMATIC", + "decimals": 18, + "website": "https://polygon.technology", + "description": "Wrapped MATIC", + "explorer": "https://lineascan.build/token/0x265b25e22bcd7f10a5bd6e6410f10537cc7567e8", + "status": "active", + "id": "0x265B25e22bcd7f10a5bD6E6410F10537Cc7567e8", + "links": [ + { + "name": "x", + "url": "https://x.com/0xPolygon" + }, + { + "name": "telegram", + "url": "https://t.me/polygonofficial" + }, + { + "name": "github", + "url": "https://github.com/maticnetwork/" + } + ] +} \ No newline at end of file diff --git a/blockchains/linea/assets/0x265B25e22bcd7f10a5bD6E6410F10537Cc7567e8/logo.png b/blockchains/linea/assets/0x265B25e22bcd7f10a5bD6E6410F10537Cc7567e8/logo.png new file mode 100644 index 0000000000000..1809c477de968 Binary files /dev/null and b/blockchains/linea/assets/0x265B25e22bcd7f10a5bD6E6410F10537Cc7567e8/logo.png differ diff --git a/blockchains/linea/assets/0x2b1D36f5B61AdDAf7DA7ebbd11B35FD8cfb0DE31/info.json b/blockchains/linea/assets/0x2b1D36f5B61AdDAf7DA7ebbd11B35FD8cfb0DE31/info.json new file mode 100644 index 0000000000000..9d725dfddb504 --- /dev/null +++ b/blockchains/linea/assets/0x2b1D36f5B61AdDAf7DA7ebbd11B35FD8cfb0DE31/info.json @@ -0,0 +1,25 @@ +{ + "name": "Interport Token", + "type": "LINEA", + "symbol": "ITP", + "decimals": 18, + "website": "https://interport.fi/", + "description": "Pushing cross-chain boundaries for seamless DeFi operations. We empower traders with fast cross-chain swaps at the best rates powered by meta DEX aggregation and cross-chain messaging.", + "explorer": "https://lineascan.build/token/0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31", + "status": "active", + "id": "0x2b1D36f5B61AdDAf7DA7ebbd11B35FD8cfb0DE31", + "links": [ + { + "name": "x", + "url": "https://x.com/interportfi" + }, + { + "name": "telegram", + "url": "https://t.me/interport_fi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/interport-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/linea/assets/0x2b1D36f5B61AdDAf7DA7ebbd11B35FD8cfb0DE31/logo.png b/blockchains/linea/assets/0x2b1D36f5B61AdDAf7DA7ebbd11B35FD8cfb0DE31/logo.png new file mode 100644 index 0000000000000..e599ee2796187 Binary files /dev/null and b/blockchains/linea/assets/0x2b1D36f5B61AdDAf7DA7ebbd11B35FD8cfb0DE31/logo.png differ diff --git a/blockchains/linea/assets/0x5471ea8f739dd37E9B81Be9c5c77754D8AA953E4/info.json b/blockchains/linea/assets/0x5471ea8f739dd37E9B81Be9c5c77754D8AA953E4/info.json new file mode 100644 index 0000000000000..df63ee8b93e67 --- /dev/null +++ b/blockchains/linea/assets/0x5471ea8f739dd37E9B81Be9c5c77754D8AA953E4/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wrapped AVAX", + "website": "http://avax.network", + "description": "Avalanche is an open-source platform for launching Decentralized Finance (DeFi) applications and enterprise blockchain deployments in an interoperable, highly scalable ecosystem.", + "explorer": "https://lineascan.build/token/0x5471ea8f739dd37e9b81be9c5c77754d8aa953e4", + "symbol": "AVAX", + "type": "LINEA", + "decimals": 18, + "status": "active", + "id": "0x5471ea8f739dd37E9B81Be9c5c77754D8AA953E4", + "links": [ + { + "name": "github", + "url": "https://github.com/ava-labs" + }, + { + "name": "whitepaper", + "url": "https://www.avalabs.org/whitepapers" + } + ] +} \ No newline at end of file diff --git a/blockchains/linea/assets/0x5471ea8f739dd37E9B81Be9c5c77754D8AA953E4/logo.png b/blockchains/linea/assets/0x5471ea8f739dd37E9B81Be9c5c77754D8AA953E4/logo.png new file mode 100644 index 0000000000000..8abb12b9c0aeb Binary files /dev/null and b/blockchains/linea/assets/0x5471ea8f739dd37E9B81Be9c5c77754D8AA953E4/logo.png differ diff --git a/blockchains/linea/assets/0x5FBDF89403270a1846F5ae7D113A989F850d1566/info.json b/blockchains/linea/assets/0x5FBDF89403270a1846F5ae7D113A989F850d1566/info.json new file mode 100644 index 0000000000000..6fcaf8928d5d4 --- /dev/null +++ b/blockchains/linea/assets/0x5FBDF89403270a1846F5ae7D113A989F850d1566/info.json @@ -0,0 +1,25 @@ +{ + "name": "Foxy", + "type": "LINEA", + "symbol": "FOXY", + "decimals": 18, + "website": "https://www.welikethefox.io/", + "description": "Foxy is a mascot token for the Linea blockchain. Foxy is a culture coin, a meme token for the users of the Linea blockchain to rally behind, and help build a sense of community.", + "explorer": "https://lineascan.build/token/0x5FBDF89403270a1846F5ae7D113A989F850d1566", + "status": "active", + "id": "0x5FBDF89403270a1846F5ae7D113A989F850d1566", + "links": [ + { + "name": "x", + "url": "https://x.com/foxylinea" + }, + { + "name": "telegram", + "url": "https://t.me/coinmarketcap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/foxy/" + } + ] +} \ No newline at end of file diff --git a/blockchains/linea/assets/0x5FBDF89403270a1846F5ae7D113A989F850d1566/logo.png b/blockchains/linea/assets/0x5FBDF89403270a1846F5ae7D113A989F850d1566/logo.png new file mode 100644 index 0000000000000..cf3cf9c5d81a5 Binary files /dev/null and b/blockchains/linea/assets/0x5FBDF89403270a1846F5ae7D113A989F850d1566/logo.png differ diff --git a/blockchains/linea/assets/0x7d43AABC515C356145049227CeE54B608342c0ad/info.json b/blockchains/linea/assets/0x7d43AABC515C356145049227CeE54B608342c0ad/info.json new file mode 100644 index 0000000000000..d11f83fbf12da --- /dev/null +++ b/blockchains/linea/assets/0x7d43AABC515C356145049227CeE54B608342c0ad/info.json @@ -0,0 +1,41 @@ +{ + "name": "BUSD", + "website": "https://paxos.com/busd", + "description": "BUSD is a token issued by Binance on Smart Chain; its price is pegged to BUSD (BUSD LINEA) at a ratio of 1:1.", + "explorer": "https://lineascan.build/token/0x7d43AABC515C356145049227CeE54B608342c0ad", + "research": "https://research.binance.com/en/projects/binance-usd", + "type": "LINEA", + "symbol": "BUSD", + "decimals": 18, + "status": "active", + "id": "0x7d43AABC515C356145049227CeE54B608342c0ad", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/binance-chain/" + }, + { + "name": "x", + "url": "https://x.com/binance_dex" + }, + { + "name": "blog", + "url": "https://binance.org/en/blog/" + }, + { + "name": "telegram", + "url": "https://t.me/BinanceDEXchange" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/binance-usd/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/binance-usd/" + } + ] +} \ No newline at end of file diff --git a/blockchains/linea/assets/0x7d43AABC515C356145049227CeE54B608342c0ad/logo.png b/blockchains/linea/assets/0x7d43AABC515C356145049227CeE54B608342c0ad/logo.png new file mode 100644 index 0000000000000..76d02e370b6d6 Binary files /dev/null and b/blockchains/linea/assets/0x7d43AABC515C356145049227CeE54B608342c0ad/logo.png differ diff --git a/blockchains/linea/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json b/blockchains/linea/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json new file mode 100644 index 0000000000000..979b11535823d --- /dev/null +++ b/blockchains/linea/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json @@ -0,0 +1,69 @@ +{ + "name": "Axelar Wrapped USDC", + "symbol": "axlUSDC", + "type": "LINEA", + "decimals": 6, + "description": "Axelar delivers secure cross-chain communication for Web3. Our infrastructure enables dApp users to interact with any asset or application, on any chain, with one click.", + "website": "https://axelar.network/", + "explorer": "https://explorer.linea.build/token/0xEB466342C4d449BC9f53A865D5Cb90586f405215", + "status": "active", + "id": "0xEB466342C4d449BC9f53A865D5Cb90586f405215", + "links": [ + { + "name": "x", + "url": "https://x.com/axelarcore" + }, + { + "name": "github", + "url": "https://github.com/axelarnetwork" + }, + { + "name": "telegram", + "url": "https://t.me/axelarcommunity" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/axelar-usdc" + }, + { + "name": "docs", + "url": "https://docs.axelar.dev/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/aRZ3Ra6f7D" + }, + { + "name": "forum", + "url": "https://community.axelar.network/" + }, + { + "name": "whitepaper", + "url": "https://axelar.network/axelar_whitepaper.pdf" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/axelar" + }, + { + "name": "medium", + "url": "https://medium.com/@axelar-foundation" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/axlusdc/" + }, + { + "name": "blog", + "url": "https://axelar.network/blog" + }, + { + "name": "youtube", + "url": "https://youtube.com/@Axelarcore" + } + ], + "tags": [ + "stablecoin", + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/linea/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png b/blockchains/linea/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png new file mode 100644 index 0000000000000..69911caea54fb Binary files /dev/null and b/blockchains/linea/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png differ diff --git a/blockchains/linea/assets/0xe5D7C2a44FfDDf6b295A15c148167daaAf5Cf34f/info.json b/blockchains/linea/assets/0xe5D7C2a44FfDDf6b295A15c148167daaAf5Cf34f/info.json new file mode 100644 index 0000000000000..87d1cb128eae3 --- /dev/null +++ b/blockchains/linea/assets/0xe5D7C2a44FfDDf6b295A15c148167daaAf5Cf34f/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wrapped Ether", + "type": "LINEA", + "symbol": "WETH", + "decimals": 18, + "website": "https://weth.io/", + "description": "wETH is wrapped ETH", + "explorer": "https://lineascan.build/token/0xe5d7c2a44ffddf6b295a15c148167daaaf5cf34f", + "status": "active", + "id": "0xe5D7C2a44FfDDf6b295A15c148167daaAf5Cf34f", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/weth/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/weth/" + } + ] +} \ No newline at end of file diff --git a/blockchains/linea/assets/0xe5D7C2a44FfDDf6b295A15c148167daaAf5Cf34f/logo.png b/blockchains/linea/assets/0xe5D7C2a44FfDDf6b295A15c148167daaAf5Cf34f/logo.png new file mode 100644 index 0000000000000..5ebf2888adba2 Binary files /dev/null and b/blockchains/linea/assets/0xe5D7C2a44FfDDf6b295A15c148167daaAf5Cf34f/logo.png differ diff --git a/blockchains/linea/info/info.json b/blockchains/linea/info/info.json new file mode 100644 index 0000000000000..eb74acaf0c803 --- /dev/null +++ b/blockchains/linea/info/info.json @@ -0,0 +1,27 @@ +{ + "name": "Linea", + "website": "https://linea.build", + "description": "Linea is a network that scales the experience of Ethereum.", + "explorer": "https://explorer.linea.build", + "symbol": "ETH", + "type": "coin", + "decimals": 18, + "status": "active", + "tags": [ + "dapp" + ], + "links": [ + { + "name": "discord", + "url": "https://discord.com/invite/consensys" + }, + { + "name": "x", + "url": "https://x.com/LineaBuild" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/linea/" + } + ] +} \ No newline at end of file diff --git a/blockchains/linea/info/logo.png b/blockchains/linea/info/logo.png new file mode 100644 index 0000000000000..a94dca4ae17b8 Binary files /dev/null and b/blockchains/linea/info/logo.png differ diff --git a/blockchains/linea/info/square_logo.png b/blockchains/linea/info/square_logo.png new file mode 100644 index 0000000000000..d7553e0ee6221 Binary files /dev/null and b/blockchains/linea/info/square_logo.png differ diff --git a/blockchains/linea/tokenlist.json b/blockchains/linea/tokenlist.json new file mode 100644 index 0000000000000..f847aa0be3d38 --- /dev/null +++ b/blockchains/linea/tokenlist.json @@ -0,0 +1,23 @@ +{ + "name": "Trust Wallet: Linea List", + "logoURI": "https://trustwallet.com/assets/images/favicon.png", + "timestamp": "2024-03-18T14:33:26.183301", + "tokens": [ + { + "asset": "c59144_t0xEB466342C4d449BC9f53A865D5Cb90586f405215", + "type": "LINEA", + "address": "0xEB466342C4d449BC9f53A865D5Cb90586f405215", + "name": "Axelar Wrapped USDC", + "symbol": "axlUSDC", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/linea/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png", + "pairs": [] + } + + ], + "version": { + "major": 1, + "minor": 0, + "patch": 0 + } +} diff --git a/blockchains/litecoin/info/info.json b/blockchains/litecoin/info/info.json index 03eb5ddbcdbb6..a44ef1f27baf1 100644 --- a/blockchains/litecoin/info/info.json +++ b/blockchains/litecoin/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/litecoin-project/litecoin" }, { - "name": "twitter", - "url": "https://twitter.com/LitecoinProject" + "name": "x", + "url": "https://x.com/LitecoinProject" }, { "name": "reddit", diff --git a/blockchains/litecoin/info/square_logo.png b/blockchains/litecoin/info/square_logo.png new file mode 100644 index 0000000000000..2d3fb3903ad00 Binary files /dev/null and b/blockchains/litecoin/info/square_logo.png differ diff --git a/blockchains/logo.png b/blockchains/logo.png deleted file mode 100644 index 9592cd25373f8..0000000000000 Binary files a/blockchains/logo.png and /dev/null differ diff --git a/blockchains/loom/info/info.json b/blockchains/loom/info/info.json index 1f7a7de0154c2..a5c27c0cfe380 100644 --- a/blockchains/loom/info/info.json +++ b/blockchains/loom/info/info.json @@ -13,8 +13,8 @@ "url": "https://github.com/loomnetwork" }, { - "name": "twitter", - "url": "https://twitter.com/loomnetwork" + "name": "x", + "url": "https://x.com/loomnetwork" }, { "name": "reddit", diff --git a/blockchains/loom/info/square_logo.png b/blockchains/loom/info/square_logo.png new file mode 100644 index 0000000000000..20d55af90edd0 Binary files /dev/null and b/blockchains/loom/info/square_logo.png differ diff --git a/blockchains/manta/assets/0x95CeF13441Be50d20cA4558CC0a27B601aC544E5/info.json b/blockchains/manta/assets/0x95CeF13441Be50d20cA4558CC0a27B601aC544E5/info.json new file mode 100644 index 0000000000000..b01c7dd75f802 --- /dev/null +++ b/blockchains/manta/assets/0x95CeF13441Be50d20cA4558CC0a27B601aC544E5/info.json @@ -0,0 +1,21 @@ +{ + "name": "Manta", + "type": "MANTA", + "symbol": "MANTA", + "decimals": 18, + "website": "https://manta.network", + "description": "Manta Pacific is the first EVM-equivalent ZK-application platform that is scalable and secure through Celestia DA and Polygon zkEVM.", + "explorer": "https://pacific-explorer.manta.network/token/0x95CeF13441Be50d20cA4558CC0a27B601aC544E5", + "status": "active", + "id": "0x95CeF13441Be50d20cA4558CC0a27B601aC544E5", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/manta-network/" + }, + { + "name": "x", + "url": "https://x.com/MantaNetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/manta/assets/0x95CeF13441Be50d20cA4558CC0a27B601aC544E5/logo.png b/blockchains/manta/assets/0x95CeF13441Be50d20cA4558CC0a27B601aC544E5/logo.png new file mode 100644 index 0000000000000..cde76e4178a79 Binary files /dev/null and b/blockchains/manta/assets/0x95CeF13441Be50d20cA4558CC0a27B601aC544E5/logo.png differ diff --git a/blockchains/manta/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json b/blockchains/manta/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json new file mode 100644 index 0000000000000..0332da49eb025 --- /dev/null +++ b/blockchains/manta/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json @@ -0,0 +1,21 @@ +{ + "name": "Lorenzo stBTC", + "type": "MANTA", + "symbol": "stBTC", + "decimals": 18, + "website": "https://www.lorenzo-protocol.xyz/", + "description": "To be the premier Bitcoin platform for yield-bearing token issuance, trading, and settlement.", + "explorer": "https://manta.socialscan.io/token/0xf6718b2701d4a6498ef77d7c152b2137ab28b8a3", + "status": "active", + "id": "0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3", + "links": [ + { + "name": "x", + "url": "https://x.com/LorenzoProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/lorenzoprotocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/manta/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png b/blockchains/manta/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png new file mode 100644 index 0000000000000..d0c4e5f85eb2b Binary files /dev/null and b/blockchains/manta/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png differ diff --git a/blockchains/manta/info/info.json b/blockchains/manta/info/info.json new file mode 100644 index 0000000000000..62857b70d230a --- /dev/null +++ b/blockchains/manta/info/info.json @@ -0,0 +1,24 @@ +{ + "name": "Manta Pacific", + "website": "https://pacific.manta.network", + "description": "The first EVM-native modular execution layer for wide ZK applications adoption, with Manta’s universal circuit and zk interface.", + "explorer": "https://pacific-explorer.manta.network", + "symbol": "ETH", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "telegram", + "url": "https://t.me/mantanetworkofficial" + }, + { + "name": "x", + "url": "https://x.com/mantanetwork" + }, + { + "name": "github", + "url": "https://github.com/manta-network" + } + ] +} \ No newline at end of file diff --git a/blockchains/manta/info/logo.png b/blockchains/manta/info/logo.png new file mode 100644 index 0000000000000..cde76e4178a79 Binary files /dev/null and b/blockchains/manta/info/logo.png differ diff --git a/blockchains/manta/info/square_logo.png b/blockchains/manta/info/square_logo.png new file mode 100644 index 0000000000000..97b100d5223c7 Binary files /dev/null and b/blockchains/manta/info/square_logo.png differ diff --git a/blockchains/mantle/assets/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9/info.json b/blockchains/mantle/assets/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9/info.json new file mode 100644 index 0000000000000..213fdb1b4b72c --- /dev/null +++ b/blockchains/mantle/assets/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9/info.json @@ -0,0 +1,20 @@ +{ + "name": "Philip Morris xStock", + "type": "MANTLE", + "symbol": "PMx", + "decimals": 18, + "description": "Philip Morris xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9", + "status": "active", + "id": "0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/philip-morris-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9/logo.png b/blockchains/mantle/assets/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9/logo.png new file mode 100644 index 0000000000000..2b243463c9216 Binary files /dev/null and b/blockchains/mantle/assets/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9/logo.png differ diff --git a/blockchains/mantle/assets/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB/info.json b/blockchains/mantle/assets/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB/info.json new file mode 100644 index 0000000000000..e723311964cea --- /dev/null +++ b/blockchains/mantle/assets/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB/info.json @@ -0,0 +1,20 @@ +{ + "name": "Accenture xStock", + "type": "MANTLE", + "symbol": "ACNx", + "decimals": 18, + "description": "Accenture xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB", + "status": "active", + "id": "0x03183Ce31b1656B72A55fa6056e287f50C35BbEB", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/accenture-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB/logo.png b/blockchains/mantle/assets/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB/logo.png new file mode 100644 index 0000000000000..97a609cb0436a Binary files /dev/null and b/blockchains/mantle/assets/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB/logo.png differ diff --git a/blockchains/mantle/assets/0x053C784cD87B74f42e0c089f98643E79c1A3ff16/info.json b/blockchains/mantle/assets/0x053C784cD87B74f42e0c089f98643E79c1A3ff16/info.json new file mode 100644 index 0000000000000..9637c85a049aa --- /dev/null +++ b/blockchains/mantle/assets/0x053C784cD87B74f42e0c089f98643E79c1A3ff16/info.json @@ -0,0 +1,20 @@ +{ + "name": "Cisco xStock", + "type": "MANTLE", + "symbol": "CSCOx", + "decimals": 18, + "description": "Cisco xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x053C784cD87B74f42e0c089f98643E79c1A3ff16", + "status": "active", + "id": "0x053C784cD87B74f42e0c089f98643E79c1A3ff16", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cisco-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x053C784cD87B74f42e0c089f98643E79c1A3ff16/logo.png b/blockchains/mantle/assets/0x053C784cD87B74f42e0c089f98643E79c1A3ff16/logo.png new file mode 100644 index 0000000000000..2ac7a8d071b42 Binary files /dev/null and b/blockchains/mantle/assets/0x053C784cD87B74f42e0c089f98643E79c1A3ff16/logo.png differ diff --git a/blockchains/mantle/assets/0x0588e851ec0418d660BeE81230d6c678dAF21d46/info.json b/blockchains/mantle/assets/0x0588e851ec0418d660BeE81230d6c678dAF21d46/info.json new file mode 100644 index 0000000000000..5f10aa9d963af --- /dev/null +++ b/blockchains/mantle/assets/0x0588e851ec0418d660BeE81230d6c678dAF21d46/info.json @@ -0,0 +1,20 @@ +{ + "name": "Medtronic xStock", + "type": "MANTLE", + "symbol": "MDTx", + "decimals": 18, + "description": "Medtronic xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x0588e851ec0418d660BeE81230d6c678dAF21d46", + "status": "active", + "id": "0x0588e851ec0418d660BeE81230d6c678dAF21d46", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/medtronic-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x0588e851ec0418d660BeE81230d6c678dAF21d46/logo.png b/blockchains/mantle/assets/0x0588e851ec0418d660BeE81230d6c678dAF21d46/logo.png new file mode 100644 index 0000000000000..caac6aa5ef103 Binary files /dev/null and b/blockchains/mantle/assets/0x0588e851ec0418d660BeE81230d6c678dAF21d46/logo.png differ diff --git a/blockchains/mantle/assets/0x12992613fDd35aBe95DEc5a4964331b1ee23B50d/info.json b/blockchains/mantle/assets/0x12992613fDd35aBe95DEc5a4964331b1ee23B50d/info.json new file mode 100644 index 0000000000000..c31f59e7786eb --- /dev/null +++ b/blockchains/mantle/assets/0x12992613fDd35aBe95DEc5a4964331b1ee23B50d/info.json @@ -0,0 +1,20 @@ +{ + "name": "Berkshire Hathaway xStock", + "type": "MANTLE", + "symbol": "BRK.Bx", + "decimals": 18, + "description": "Berkshire Hathaway xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x12992613fDd35aBe95DEc5a4964331b1ee23B50d", + "status": "active", + "id": "0x12992613fDd35aBe95DEc5a4964331b1ee23B50d", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/berkshire-hathaway-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x12992613fDd35aBe95DEc5a4964331b1ee23B50d/logo.png b/blockchains/mantle/assets/0x12992613fDd35aBe95DEc5a4964331b1ee23B50d/logo.png new file mode 100644 index 0000000000000..bc33814d3547f Binary files /dev/null and b/blockchains/mantle/assets/0x12992613fDd35aBe95DEc5a4964331b1ee23B50d/logo.png differ diff --git a/blockchains/mantle/assets/0x15059c599C16Fd8f70B633Ade165502D6402CD49/info.json b/blockchains/mantle/assets/0x15059c599C16Fd8f70B633Ade165502D6402CD49/info.json new file mode 100644 index 0000000000000..e6329fd343caf --- /dev/null +++ b/blockchains/mantle/assets/0x15059c599C16Fd8f70B633Ade165502D6402CD49/info.json @@ -0,0 +1,20 @@ +{ + "name": "Linde xStock", + "type": "MANTLE", + "symbol": "LINx", + "decimals": 18, + "description": "Linde xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x15059c599C16Fd8f70B633Ade165502D6402CD49", + "status": "active", + "id": "0x15059c599C16Fd8f70B633Ade165502D6402CD49", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/linde-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x15059c599C16Fd8f70B633Ade165502D6402CD49/logo.png b/blockchains/mantle/assets/0x15059c599C16Fd8f70B633Ade165502D6402CD49/logo.png new file mode 100644 index 0000000000000..d89712cd06f90 Binary files /dev/null and b/blockchains/mantle/assets/0x15059c599C16Fd8f70B633Ade165502D6402CD49/logo.png differ diff --git a/blockchains/mantle/assets/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048/info.json b/blockchains/mantle/assets/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048/info.json new file mode 100644 index 0000000000000..721d1305c800e --- /dev/null +++ b/blockchains/mantle/assets/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048/info.json @@ -0,0 +1,20 @@ +{ + "name": "UnitedHealth xStock", + "type": "MANTLE", + "symbol": "UNHx", + "decimals": 18, + "description": "UnitedHealth xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048", + "status": "active", + "id": "0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/unitedhealth-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048/logo.png b/blockchains/mantle/assets/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048/logo.png new file mode 100644 index 0000000000000..4b5abed43499d Binary files /dev/null and b/blockchains/mantle/assets/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048/logo.png differ diff --git a/blockchains/mantle/assets/0x17D8186Ed8F68059124190D147174D0f6697dc40/info.json b/blockchains/mantle/assets/0x17D8186Ed8F68059124190D147174D0f6697dc40/info.json new file mode 100644 index 0000000000000..0435e80ffdccb --- /dev/null +++ b/blockchains/mantle/assets/0x17D8186Ed8F68059124190D147174D0f6697dc40/info.json @@ -0,0 +1,20 @@ +{ + "name": "Merck xStock", + "type": "MANTLE", + "symbol": "MRKx", + "decimals": 18, + "description": "Merck xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x17D8186Ed8F68059124190D147174D0f6697dc40", + "status": "active", + "id": "0x17D8186Ed8F68059124190D147174D0f6697dc40", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/merck-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x17D8186Ed8F68059124190D147174D0f6697dc40/logo.png b/blockchains/mantle/assets/0x17D8186Ed8F68059124190D147174D0f6697dc40/logo.png new file mode 100644 index 0000000000000..d985b220afff3 Binary files /dev/null and b/blockchains/mantle/assets/0x17D8186Ed8F68059124190D147174D0f6697dc40/logo.png differ diff --git a/blockchains/mantle/assets/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4/info.json b/blockchains/mantle/assets/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4/info.json new file mode 100644 index 0000000000000..f38e23af1e8f7 --- /dev/null +++ b/blockchains/mantle/assets/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4/info.json @@ -0,0 +1,20 @@ +{ + "name": "Eli Lilly xStock", + "type": "MANTLE", + "symbol": "LLYx", + "decimals": 18, + "description": "Eli Lilly xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4", + "status": "active", + "id": "0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/eli-lilly-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4/logo.png b/blockchains/mantle/assets/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4/logo.png new file mode 100644 index 0000000000000..9c631d1eeeb00 Binary files /dev/null and b/blockchains/mantle/assets/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4/logo.png differ diff --git a/blockchains/mantle/assets/0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3/info.json b/blockchains/mantle/assets/0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3/info.json new file mode 100644 index 0000000000000..7d0b7c7eb69b4 --- /dev/null +++ b/blockchains/mantle/assets/0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3/info.json @@ -0,0 +1,15 @@ +{ + "name": "Strategy PP Variable xStock", + "type": "MANTLE", + "symbol": "STRCx", + "decimals": 18, + "description": "Strategy PP Variable xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3", + "status": "active", + "id": "0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3/logo.png b/blockchains/mantle/assets/0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3/logo.png new file mode 100644 index 0000000000000..1407faeca0e8c Binary files /dev/null and b/blockchains/mantle/assets/0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3/logo.png differ diff --git a/blockchains/mantle/assets/0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e/info.json b/blockchains/mantle/assets/0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e/info.json new file mode 100644 index 0000000000000..519c3483a9ab6 --- /dev/null +++ b/blockchains/mantle/assets/0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e/info.json @@ -0,0 +1,20 @@ +{ + "name": "Pfizer xStock", + "type": "MANTLE", + "symbol": "PFEx", + "decimals": 18, + "description": "Pfizer xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e", + "status": "active", + "id": "0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pfizer-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e/logo.png b/blockchains/mantle/assets/0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e/logo.png new file mode 100644 index 0000000000000..4b4b3feccd32c Binary files /dev/null and b/blockchains/mantle/assets/0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e/logo.png differ diff --git a/blockchains/mantle/assets/0x201EBa5CC46D216Ce6DC03F6a759e8E766e956aE/info.json b/blockchains/mantle/assets/0x201EBa5CC46D216Ce6DC03F6a759e8E766e956aE/info.json new file mode 100644 index 0000000000000..4e8c42284c75a --- /dev/null +++ b/blockchains/mantle/assets/0x201EBa5CC46D216Ce6DC03F6a759e8E766e956aE/info.json @@ -0,0 +1,24 @@ +{ + "name": "Tether USD", + "website": "https://bridge.mantle.xyz/", + "description": "Tether USD - Mantle Bridged (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar.", + "explorer": "https://explorer.mantle.xyz/address/0x201EBa5CC46D216Ce6DC03F6a759e8E766e956aE", + "type": "MANTLE", + "symbol": "USDT", + "decimals": 6, + "status": "active", + "id": "0x201EBa5CC46D216Ce6DC03F6a759e8E766e956aE", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mantle-bridged-usdt-mantle" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tether/" + } + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x201EBa5CC46D216Ce6DC03F6a759e8E766e956aE/logo.png b/blockchains/mantle/assets/0x201EBa5CC46D216Ce6DC03F6a759e8E766e956aE/logo.png new file mode 100644 index 0000000000000..4b3027306a91c Binary files /dev/null and b/blockchains/mantle/assets/0x201EBa5CC46D216Ce6DC03F6a759e8E766e956aE/logo.png differ diff --git a/blockchains/mantle/assets/0x214151022C2a5E380aB80CdaC31f23Ae554a7345/info.json b/blockchains/mantle/assets/0x214151022C2a5E380aB80CdaC31f23Ae554a7345/info.json new file mode 100644 index 0000000000000..1b86a1ea2104b --- /dev/null +++ b/blockchains/mantle/assets/0x214151022C2a5E380aB80CdaC31f23Ae554a7345/info.json @@ -0,0 +1,20 @@ +{ + "name": "CrowdStrike xStock", + "type": "MANTLE", + "symbol": "CRWDx", + "decimals": 18, + "description": "CrowdStrike xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x214151022C2a5E380aB80CdaC31f23Ae554a7345", + "status": "active", + "id": "0x214151022C2a5E380aB80CdaC31f23Ae554a7345", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crowdstrike-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x214151022C2a5E380aB80CdaC31f23Ae554a7345/logo.png b/blockchains/mantle/assets/0x214151022C2a5E380aB80CdaC31f23Ae554a7345/logo.png new file mode 100644 index 0000000000000..b76bd9c264826 Binary files /dev/null and b/blockchains/mantle/assets/0x214151022C2a5E380aB80CdaC31f23Ae554a7345/logo.png differ diff --git a/blockchains/mantle/assets/0x22E1991e5f82736A2a990322a46aac0e95826c5B/info.json b/blockchains/mantle/assets/0x22E1991e5f82736A2a990322a46aac0e95826c5B/info.json new file mode 100644 index 0000000000000..76e57a227c06c --- /dev/null +++ b/blockchains/mantle/assets/0x22E1991e5f82736A2a990322a46aac0e95826c5B/info.json @@ -0,0 +1,15 @@ +{ + "name": "Bit Digital xStock", + "type": "MANTLE", + "symbol": "BTBTx", + "decimals": 18, + "description": "Bit Digital xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x22E1991e5f82736A2a990322a46aac0e95826c5B", + "status": "active", + "id": "0x22E1991e5f82736A2a990322a46aac0e95826c5B", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x22E1991e5f82736A2a990322a46aac0e95826c5B/logo.png b/blockchains/mantle/assets/0x22E1991e5f82736A2a990322a46aac0e95826c5B/logo.png new file mode 100644 index 0000000000000..30817f4fdb226 Binary files /dev/null and b/blockchains/mantle/assets/0x22E1991e5f82736A2a990322a46aac0e95826c5B/logo.png differ diff --git a/blockchains/mantle/assets/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293/info.json b/blockchains/mantle/assets/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293/info.json new file mode 100644 index 0000000000000..62cfdc0414223 --- /dev/null +++ b/blockchains/mantle/assets/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293/info.json @@ -0,0 +1,20 @@ +{ + "name": "Visa xStock", + "type": "MANTLE", + "symbol": "Vx", + "decimals": 18, + "description": "Visa xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293", + "status": "active", + "id": "0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/visa-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293/logo.png b/blockchains/mantle/assets/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293/logo.png new file mode 100644 index 0000000000000..21269313bbbbb Binary files /dev/null and b/blockchains/mantle/assets/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293/logo.png differ diff --git a/blockchains/mantle/assets/0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9/info.json b/blockchains/mantle/assets/0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9/info.json new file mode 100644 index 0000000000000..a4a450433a19a --- /dev/null +++ b/blockchains/mantle/assets/0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9/info.json @@ -0,0 +1,20 @@ +{ + "name": "Gold xStock", + "type": "MANTLE", + "symbol": "GLDx", + "decimals": 18, + "description": "Gold xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9", + "status": "active", + "id": "0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gold-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9/logo.png b/blockchains/mantle/assets/0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9/logo.png new file mode 100644 index 0000000000000..52e6642bf56f0 Binary files /dev/null and b/blockchains/mantle/assets/0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9/logo.png differ diff --git a/blockchains/mantle/assets/0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763/info.json b/blockchains/mantle/assets/0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763/info.json new file mode 100644 index 0000000000000..3b6ec46ab62dd --- /dev/null +++ b/blockchains/mantle/assets/0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763/info.json @@ -0,0 +1,20 @@ +{ + "name": "Amber xStock", + "type": "MANTLE", + "symbol": "AMBRx", + "decimals": 18, + "description": "Amber xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763", + "status": "active", + "id": "0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/amber-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763/logo.png b/blockchains/mantle/assets/0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763/logo.png new file mode 100644 index 0000000000000..86fe45a844256 Binary files /dev/null and b/blockchains/mantle/assets/0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763/logo.png differ diff --git a/blockchains/mantle/assets/0x314938c596F5ce31C3f75307d2979338C346D7F2/info.json b/blockchains/mantle/assets/0x314938c596F5ce31C3f75307d2979338C346D7F2/info.json new file mode 100644 index 0000000000000..2b0b664898f94 --- /dev/null +++ b/blockchains/mantle/assets/0x314938c596F5ce31C3f75307d2979338C346D7F2/info.json @@ -0,0 +1,20 @@ +{ + "name": "Bank of America xStock", + "type": "MANTLE", + "symbol": "BACx", + "decimals": 18, + "description": "Bank of America xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x314938c596F5ce31C3f75307d2979338C346D7F2", + "status": "active", + "id": "0x314938c596F5ce31C3f75307d2979338C346D7F2", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bank-of-america-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x314938c596F5ce31C3f75307d2979338C346D7F2/logo.png b/blockchains/mantle/assets/0x314938c596F5ce31C3f75307d2979338C346D7F2/logo.png new file mode 100644 index 0000000000000..6f48f28bf287c Binary files /dev/null and b/blockchains/mantle/assets/0x314938c596F5ce31C3f75307d2979338C346D7F2/logo.png differ diff --git a/blockchains/mantle/assets/0x3522513E5F146a2006e2901b05f16B2821485E19/info.json b/blockchains/mantle/assets/0x3522513E5F146a2006e2901b05f16B2821485E19/info.json new file mode 100644 index 0000000000000..e3afe00d19200 --- /dev/null +++ b/blockchains/mantle/assets/0x3522513E5F146a2006e2901b05f16B2821485E19/info.json @@ -0,0 +1,15 @@ +{ + "name": "AMD xStock", + "type": "MANTLE", + "symbol": "AMDx", + "decimals": 18, + "description": "AMD xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x3522513E5F146a2006e2901b05f16B2821485E19", + "status": "active", + "id": "0x3522513E5F146a2006e2901b05f16B2821485E19", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x3522513E5F146a2006e2901b05f16B2821485E19/logo.png b/blockchains/mantle/assets/0x3522513E5F146a2006e2901b05f16B2821485E19/logo.png new file mode 100644 index 0000000000000..4e802b8335682 Binary files /dev/null and b/blockchains/mantle/assets/0x3522513E5F146a2006e2901b05f16B2821485E19/logo.png differ diff --git a/blockchains/mantle/assets/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081/info.json b/blockchains/mantle/assets/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081/info.json new file mode 100644 index 0000000000000..fbf02e0050509 --- /dev/null +++ b/blockchains/mantle/assets/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081/info.json @@ -0,0 +1,20 @@ +{ + "name": "Amazon.com xStock", + "type": "MANTLE", + "symbol": "AMZNx", + "decimals": 18, + "description": "Amazon.com xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081", + "status": "active", + "id": "0x3557Ba345B01EFa20A1bdDC61F573BFD87195081", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/amazon-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081/logo.png b/blockchains/mantle/assets/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081/logo.png new file mode 100644 index 0000000000000..8a519a3597972 Binary files /dev/null and b/blockchains/mantle/assets/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081/logo.png differ diff --git a/blockchains/mantle/assets/0x364f210f430eC2448Fc68A49203040F6124096F0/info.json b/blockchains/mantle/assets/0x364f210f430eC2448Fc68A49203040F6124096F0/info.json new file mode 100644 index 0000000000000..7bb8c36d818f7 --- /dev/null +++ b/blockchains/mantle/assets/0x364f210f430eC2448Fc68A49203040F6124096F0/info.json @@ -0,0 +1,20 @@ +{ + "name": "Coinbase xStock", + "type": "MANTLE", + "symbol": "COINx", + "decimals": 18, + "description": "Coinbase xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x364f210f430eC2448Fc68A49203040F6124096F0", + "status": "active", + "id": "0x364f210f430eC2448Fc68A49203040F6124096F0", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coinbase-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x364f210f430eC2448Fc68A49203040F6124096F0/logo.png b/blockchains/mantle/assets/0x364f210f430eC2448Fc68A49203040F6124096F0/logo.png new file mode 100644 index 0000000000000..3ff644e16ddd5 Binary files /dev/null and b/blockchains/mantle/assets/0x364f210f430eC2448Fc68A49203040F6124096F0/logo.png differ diff --git a/blockchains/mantle/assets/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e/info.json b/blockchains/mantle/assets/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e/info.json new file mode 100644 index 0000000000000..36ac4b3b58648 --- /dev/null +++ b/blockchains/mantle/assets/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e/info.json @@ -0,0 +1,20 @@ +{ + "name": "PepsiCo xStock", + "type": "MANTLE", + "symbol": "PEPx", + "decimals": 18, + "description": "PepsiCo xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e", + "status": "active", + "id": "0x36c424a6EC0e264b1616102Ad63eD2aD7857413e", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pepsico-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e/logo.png b/blockchains/mantle/assets/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e/logo.png new file mode 100644 index 0000000000000..9cb31687ff5c9 Binary files /dev/null and b/blockchains/mantle/assets/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e/logo.png differ diff --git a/blockchains/mantle/assets/0x38BAC69cbBd28156796e4163B2B6dcb81E336565/info.json b/blockchains/mantle/assets/0x38BAC69cbBd28156796e4163B2B6dcb81E336565/info.json new file mode 100644 index 0000000000000..30c613bb6984d --- /dev/null +++ b/blockchains/mantle/assets/0x38BAC69cbBd28156796e4163B2B6dcb81E336565/info.json @@ -0,0 +1,20 @@ +{ + "name": "Broadcom xStock", + "type": "MANTLE", + "symbol": "AVGOx", + "decimals": 18, + "description": "Broadcom xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x38BAC69cbBd28156796e4163B2B6dcb81E336565", + "status": "active", + "id": "0x38BAC69cbBd28156796e4163B2B6dcb81E336565", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/broadcom-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x38BAC69cbBd28156796e4163B2B6dcb81E336565/logo.png b/blockchains/mantle/assets/0x38BAC69cbBd28156796e4163B2B6dcb81E336565/logo.png new file mode 100644 index 0000000000000..311e62f37d912 Binary files /dev/null and b/blockchains/mantle/assets/0x38BAC69cbBd28156796e4163B2B6dcb81E336565/logo.png differ diff --git a/blockchains/mantle/assets/0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6/info.json b/blockchains/mantle/assets/0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6/info.json new file mode 100644 index 0000000000000..d8fd60241223b --- /dev/null +++ b/blockchains/mantle/assets/0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6/info.json @@ -0,0 +1,15 @@ +{ + "name": "Strategy PP Fixed xStock", + "type": "MANTLE", + "symbol": "STRKx", + "decimals": 18, + "description": "Strategy PP Fixed xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6", + "status": "active", + "id": "0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6/logo.png b/blockchains/mantle/assets/0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6/logo.png new file mode 100644 index 0000000000000..1407faeca0e8c Binary files /dev/null and b/blockchains/mantle/assets/0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6/logo.png differ diff --git a/blockchains/mantle/assets/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149/info.json b/blockchains/mantle/assets/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149/info.json new file mode 100644 index 0000000000000..67a28236e576e --- /dev/null +++ b/blockchains/mantle/assets/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149/info.json @@ -0,0 +1,20 @@ +{ + "name": "Goldman Sachs xStock", + "type": "MANTLE", + "symbol": "GSx", + "decimals": 18, + "description": "Goldman Sachs xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149", + "status": "active", + "id": "0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/goldman-sachs-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149/logo.png b/blockchains/mantle/assets/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149/logo.png new file mode 100644 index 0000000000000..bfb353875f93b Binary files /dev/null and b/blockchains/mantle/assets/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149/logo.png differ diff --git a/blockchains/mantle/assets/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2/info.json b/blockchains/mantle/assets/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2/info.json new file mode 100644 index 0000000000000..0dfdfecaf7ccc --- /dev/null +++ b/blockchains/mantle/assets/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2/info.json @@ -0,0 +1,20 @@ +{ + "name": "Salesforce xStock", + "type": "MANTLE", + "symbol": "CRMx", + "decimals": 18, + "description": "Salesforce xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2", + "status": "active", + "id": "0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/salesforce-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2/logo.png b/blockchains/mantle/assets/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2/logo.png new file mode 100644 index 0000000000000..d6ac8110a38b7 Binary files /dev/null and b/blockchains/mantle/assets/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2/logo.png differ diff --git a/blockchains/mantle/assets/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b/info.json b/blockchains/mantle/assets/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b/info.json new file mode 100644 index 0000000000000..6960ded93b27d --- /dev/null +++ b/blockchains/mantle/assets/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b/info.json @@ -0,0 +1,20 @@ +{ + "name": "TBLL xStock", + "type": "MANTLE", + "symbol": "TBLLx", + "decimals": 18, + "description": "TBLL xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b", + "status": "active", + "id": "0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tbll-tokenized-etf-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b/logo.png b/blockchains/mantle/assets/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b/logo.png new file mode 100644 index 0000000000000..303bb2ae64ebc Binary files /dev/null and b/blockchains/mantle/assets/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b/logo.png differ diff --git a/blockchains/mantle/assets/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1/info.json b/blockchains/mantle/assets/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1/info.json new file mode 100644 index 0000000000000..144baa5188d20 --- /dev/null +++ b/blockchains/mantle/assets/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1/info.json @@ -0,0 +1,20 @@ +{ + "name": "AppLovin xStock", + "type": "MANTLE", + "symbol": "APPx", + "decimals": 18, + "description": "AppLovin xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1", + "status": "active", + "id": "0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/applovin-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1/logo.png b/blockchains/mantle/assets/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1/logo.png new file mode 100644 index 0000000000000..81e69fc904522 Binary files /dev/null and b/blockchains/mantle/assets/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1/logo.png differ diff --git a/blockchains/mantle/assets/0x521860bB5dF5468358875266B89BFE90d990C6e7/info.json b/blockchains/mantle/assets/0x521860bB5dF5468358875266B89BFE90d990C6e7/info.json new file mode 100644 index 0000000000000..cd013454d66c9 --- /dev/null +++ b/blockchains/mantle/assets/0x521860bB5dF5468358875266B89BFE90d990C6e7/info.json @@ -0,0 +1,20 @@ +{ + "name": "DFDV xStock", + "type": "MANTLE", + "symbol": "DFDVx", + "decimals": 18, + "description": "DFDV xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x521860bB5dF5468358875266B89BFE90d990C6e7", + "status": "active", + "id": "0x521860bB5dF5468358875266B89BFE90d990C6e7", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dfdv-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x521860bB5dF5468358875266B89BFE90d990C6e7/logo.png b/blockchains/mantle/assets/0x521860bB5dF5468358875266B89BFE90d990C6e7/logo.png new file mode 100644 index 0000000000000..0e599ca631772 Binary files /dev/null and b/blockchains/mantle/assets/0x521860bB5dF5468358875266B89BFE90d990C6e7/logo.png differ diff --git a/blockchains/mantle/assets/0x548308E91ec9F285C7bFf05295baDBD56a6e4971/info.json b/blockchains/mantle/assets/0x548308E91ec9F285C7bFf05295baDBD56a6e4971/info.json new file mode 100644 index 0000000000000..25efdc25e25ef --- /dev/null +++ b/blockchains/mantle/assets/0x548308E91ec9F285C7bFf05295baDBD56a6e4971/info.json @@ -0,0 +1,20 @@ +{ + "name": "Oracle xStock", + "type": "MANTLE", + "symbol": "ORCLx", + "decimals": 18, + "description": "Oracle xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x548308E91ec9F285C7bFf05295baDBD56a6e4971", + "status": "active", + "id": "0x548308E91ec9F285C7bFf05295baDBD56a6e4971", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/oracle-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x548308E91ec9F285C7bFf05295baDBD56a6e4971/logo.png b/blockchains/mantle/assets/0x548308E91ec9F285C7bFf05295baDBD56a6e4971/logo.png new file mode 100644 index 0000000000000..78ee2944b3c3e Binary files /dev/null and b/blockchains/mantle/assets/0x548308E91ec9F285C7bFf05295baDBD56a6e4971/logo.png differ diff --git a/blockchains/mantle/assets/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35/info.json b/blockchains/mantle/assets/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35/info.json new file mode 100644 index 0000000000000..45859210ff163 --- /dev/null +++ b/blockchains/mantle/assets/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35/info.json @@ -0,0 +1,20 @@ +{ + "name": "Microsoft xStock", + "type": "MANTLE", + "symbol": "MSFTx", + "decimals": 18, + "description": "Microsoft xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35", + "status": "active", + "id": "0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/microsoft-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35/logo.png b/blockchains/mantle/assets/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35/logo.png new file mode 100644 index 0000000000000..ea955b964bb0e Binary files /dev/null and b/blockchains/mantle/assets/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35/logo.png differ diff --git a/blockchains/mantle/assets/0x5D642505FE1a28897eb3BaBA665F454755D8daA2/info.json b/blockchains/mantle/assets/0x5D642505FE1a28897eb3BaBA665F454755D8daA2/info.json new file mode 100644 index 0000000000000..fcb1fc7075705 --- /dev/null +++ b/blockchains/mantle/assets/0x5D642505FE1a28897eb3BaBA665F454755D8daA2/info.json @@ -0,0 +1,20 @@ +{ + "name": "AstraZeneca xStock", + "type": "MANTLE", + "symbol": "AZNx", + "decimals": 18, + "description": "AstraZeneca xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x5D642505FE1a28897eb3BaBA665F454755D8daA2", + "status": "active", + "id": "0x5D642505FE1a28897eb3BaBA665F454755D8daA2", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/astrazeneca-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x5D642505FE1a28897eb3BaBA665F454755D8daA2/logo.png b/blockchains/mantle/assets/0x5D642505FE1a28897eb3BaBA665F454755D8daA2/logo.png new file mode 100644 index 0000000000000..876ac4cb38386 Binary files /dev/null and b/blockchains/mantle/assets/0x5D642505FE1a28897eb3BaBA665F454755D8daA2/logo.png differ diff --git a/blockchains/mantle/assets/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B/info.json b/blockchains/mantle/assets/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B/info.json new file mode 100644 index 0000000000000..14d94b21f0406 --- /dev/null +++ b/blockchains/mantle/assets/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B/info.json @@ -0,0 +1,20 @@ +{ + "name": "Honeywell xStock", + "type": "MANTLE", + "symbol": "HONx", + "decimals": 18, + "description": "Honeywell xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B", + "status": "active", + "id": "0x62a48560861B0b451654bFffdb5be6E47aa8ff1B", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/honeywell-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B/logo.png b/blockchains/mantle/assets/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B/logo.png new file mode 100644 index 0000000000000..f5edd54dd6bd5 Binary files /dev/null and b/blockchains/mantle/assets/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B/logo.png differ diff --git a/blockchains/mantle/assets/0x6a668332825450ACD2e449372057d31b3de16a1E/info.json b/blockchains/mantle/assets/0x6a668332825450ACD2e449372057d31b3de16a1E/info.json new file mode 100644 index 0000000000000..bc69201c54c72 --- /dev/null +++ b/blockchains/mantle/assets/0x6a668332825450ACD2e449372057d31b3de16a1E/info.json @@ -0,0 +1,15 @@ +{ + "name": "Core MSCI Emerging Markets xStock", + "type": "MANTLE", + "symbol": "IEMGx", + "decimals": 18, + "description": "Core MSCI Emerging Markets xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x6a668332825450ACD2e449372057d31b3de16a1E", + "status": "active", + "id": "0x6a668332825450ACD2e449372057d31b3de16a1E", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x6a668332825450ACD2e449372057d31b3de16a1E/logo.png b/blockchains/mantle/assets/0x6a668332825450ACD2e449372057d31b3de16a1E/logo.png new file mode 100644 index 0000000000000..857fe69020c3c Binary files /dev/null and b/blockchains/mantle/assets/0x6a668332825450ACD2e449372057d31b3de16a1E/logo.png differ diff --git a/blockchains/mantle/assets/0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2/info.json b/blockchains/mantle/assets/0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2/info.json new file mode 100644 index 0000000000000..750b33fef2af0 --- /dev/null +++ b/blockchains/mantle/assets/0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2/info.json @@ -0,0 +1,20 @@ +{ + "name": "Palantir xStock", + "type": "MANTLE", + "symbol": "PLTRx", + "decimals": 18, + "description": "Palantir xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2", + "status": "active", + "id": "0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/palantir-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2/logo.png b/blockchains/mantle/assets/0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2/logo.png new file mode 100644 index 0000000000000..20a4cb2ad5a99 Binary files /dev/null and b/blockchains/mantle/assets/0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2/logo.png differ diff --git a/blockchains/mantle/assets/0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C/info.json b/blockchains/mantle/assets/0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C/info.json new file mode 100644 index 0000000000000..7a39f1f66df0a --- /dev/null +++ b/blockchains/mantle/assets/0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C/info.json @@ -0,0 +1,15 @@ +{ + "name": "Vanguard Total World xStock", + "type": "MANTLE", + "symbol": "VTx", + "decimals": 18, + "description": "Vanguard Total World xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C", + "status": "active", + "id": "0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C/logo.png b/blockchains/mantle/assets/0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C/logo.png new file mode 100644 index 0000000000000..5968d83be9311 Binary files /dev/null and b/blockchains/mantle/assets/0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C/logo.png differ diff --git a/blockchains/mantle/assets/0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9/info.json b/blockchains/mantle/assets/0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9/info.json new file mode 100644 index 0000000000000..76bf0ec50c0c2 --- /dev/null +++ b/blockchains/mantle/assets/0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9/info.json @@ -0,0 +1,20 @@ +{ + "name": "Home Depot xStock", + "type": "MANTLE", + "symbol": "HDx", + "decimals": 18, + "description": "Home Depot xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9", + "status": "active", + "id": "0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/home-depot-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9/logo.png b/blockchains/mantle/assets/0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9/logo.png new file mode 100644 index 0000000000000..1351af57506ae Binary files /dev/null and b/blockchains/mantle/assets/0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9/logo.png differ diff --git a/blockchains/mantle/assets/0x7AEfc9965699fBea943e03264d96e50CD4A97b21/info.json b/blockchains/mantle/assets/0x7AEfc9965699fBea943e03264d96e50CD4A97b21/info.json new file mode 100644 index 0000000000000..b8d0df5726c4f --- /dev/null +++ b/blockchains/mantle/assets/0x7AEfc9965699fBea943e03264d96e50CD4A97b21/info.json @@ -0,0 +1,20 @@ +{ + "name": "Walmart xStock", + "type": "MANTLE", + "symbol": "WMTx", + "decimals": 18, + "description": "Walmart xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x7AEfc9965699fBea943e03264d96e50CD4A97b21", + "status": "active", + "id": "0x7AEfc9965699fBea943e03264d96e50CD4A97b21", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/walmart-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x7AEfc9965699fBea943e03264d96e50CD4A97b21/logo.png b/blockchains/mantle/assets/0x7AEfc9965699fBea943e03264d96e50CD4A97b21/logo.png new file mode 100644 index 0000000000000..d63f90439c0a3 Binary files /dev/null and b/blockchains/mantle/assets/0x7AEfc9965699fBea943e03264d96e50CD4A97b21/logo.png differ diff --git a/blockchains/mantle/assets/0x80A77a372c1e12AcCdA84299492f404902E2DA67/info.json b/blockchains/mantle/assets/0x80A77a372c1e12AcCdA84299492f404902E2DA67/info.json new file mode 100644 index 0000000000000..71330473a59c1 --- /dev/null +++ b/blockchains/mantle/assets/0x80A77a372c1e12AcCdA84299492f404902E2DA67/info.json @@ -0,0 +1,20 @@ +{ + "name": "McDonald's xStock", + "type": "MANTLE", + "symbol": "MCDx", + "decimals": 18, + "description": "McDonald's xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x80A77a372c1e12AcCdA84299492f404902E2DA67", + "status": "active", + "id": "0x80A77a372c1e12AcCdA84299492f404902E2DA67", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mcdonald-s-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x80A77a372c1e12AcCdA84299492f404902E2DA67/logo.png b/blockchains/mantle/assets/0x80A77a372c1e12AcCdA84299492f404902E2DA67/logo.png new file mode 100644 index 0000000000000..23943fce25ada Binary files /dev/null and b/blockchains/mantle/assets/0x80A77a372c1e12AcCdA84299492f404902E2DA67/logo.png differ diff --git a/blockchains/mantle/assets/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e/info.json b/blockchains/mantle/assets/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e/info.json new file mode 100644 index 0000000000000..bbc4a0e276c7f --- /dev/null +++ b/blockchains/mantle/assets/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e/info.json @@ -0,0 +1,20 @@ +{ + "name": "Abbott xStock", + "type": "MANTLE", + "symbol": "ABTx", + "decimals": 18, + "description": "Abbott xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e", + "status": "active", + "id": "0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abbott-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e/logo.png b/blockchains/mantle/assets/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e/logo.png new file mode 100644 index 0000000000000..b376283072c21 Binary files /dev/null and b/blockchains/mantle/assets/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e/logo.png differ diff --git a/blockchains/mantle/assets/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0/info.json b/blockchains/mantle/assets/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0/info.json new file mode 100644 index 0000000000000..2961bca84a78a --- /dev/null +++ b/blockchains/mantle/assets/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0/info.json @@ -0,0 +1,20 @@ +{ + "name": "Tesla xStock", + "type": "MANTLE", + "symbol": "TSLAx", + "decimals": 18, + "description": "Tesla xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0", + "status": "active", + "id": "0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tesla-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0/logo.png b/blockchains/mantle/assets/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0/logo.png new file mode 100644 index 0000000000000..8bbfdce0a2368 Binary files /dev/null and b/blockchains/mantle/assets/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0/logo.png differ diff --git a/blockchains/mantle/assets/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48/info.json b/blockchains/mantle/assets/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48/info.json new file mode 100644 index 0000000000000..04ae0eca1ba96 --- /dev/null +++ b/blockchains/mantle/assets/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48/info.json @@ -0,0 +1,20 @@ +{ + "name": "SP500 xStock", + "type": "MANTLE", + "symbol": "SPYx", + "decimals": 18, + "description": "SP500 xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48", + "status": "active", + "id": "0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sp500-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48/logo.png b/blockchains/mantle/assets/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48/logo.png new file mode 100644 index 0000000000000..9ae5b5a7a1bf1 Binary files /dev/null and b/blockchains/mantle/assets/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48/logo.png differ diff --git a/blockchains/mantle/assets/0x96702be57Cd9777f835117a809C7124fe4ec989A/info.json b/blockchains/mantle/assets/0x96702be57Cd9777f835117a809C7124fe4ec989A/info.json new file mode 100644 index 0000000000000..b717afaf573a4 --- /dev/null +++ b/blockchains/mantle/assets/0x96702be57Cd9777f835117a809C7124fe4ec989A/info.json @@ -0,0 +1,20 @@ +{ + "name": "Meta xStock", + "type": "MANTLE", + "symbol": "METAx", + "decimals": 18, + "description": "Meta xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x96702be57Cd9777f835117a809C7124fe4ec989A", + "status": "active", + "id": "0x96702be57Cd9777f835117a809C7124fe4ec989A", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/meta-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x96702be57Cd9777f835117a809C7124fe4ec989A/logo.png b/blockchains/mantle/assets/0x96702be57Cd9777f835117a809C7124fe4ec989A/logo.png new file mode 100644 index 0000000000000..e5513d1462429 Binary files /dev/null and b/blockchains/mantle/assets/0x96702be57Cd9777f835117a809C7124fe4ec989A/logo.png differ diff --git a/blockchains/mantle/assets/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a/info.json b/blockchains/mantle/assets/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a/info.json new file mode 100644 index 0000000000000..14eefdec52fbb --- /dev/null +++ b/blockchains/mantle/assets/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a/info.json @@ -0,0 +1,20 @@ +{ + "name": "Apple xStock", + "type": "MANTLE", + "symbol": "AAPLx", + "decimals": 18, + "description": "Apple xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a", + "status": "active", + "id": "0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/apple-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a/logo.png b/blockchains/mantle/assets/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a/logo.png new file mode 100644 index 0000000000000..bf515810b9e31 Binary files /dev/null and b/blockchains/mantle/assets/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a/logo.png differ diff --git a/blockchains/mantle/assets/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961/info.json b/blockchains/mantle/assets/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961/info.json new file mode 100644 index 0000000000000..281a7778d560c --- /dev/null +++ b/blockchains/mantle/assets/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961/info.json @@ -0,0 +1,20 @@ +{ + "name": "Netflix xStock", + "type": "MANTLE", + "symbol": "NFLXx", + "decimals": 18, + "description": "Netflix xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961", + "status": "active", + "id": "0xA6a65AC27E76cD53cB790473E4345c46e5eBf961", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/netflix-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961/logo.png b/blockchains/mantle/assets/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961/logo.png new file mode 100644 index 0000000000000..903b2efea48b1 Binary files /dev/null and b/blockchains/mantle/assets/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961/logo.png differ diff --git a/blockchains/mantle/assets/0xAA28cB97D7f7E172f54deE950743886D2d65447d/info.json b/blockchains/mantle/assets/0xAA28cB97D7f7E172f54deE950743886D2d65447d/info.json new file mode 100644 index 0000000000000..6a2e8553684fb --- /dev/null +++ b/blockchains/mantle/assets/0xAA28cB97D7f7E172f54deE950743886D2d65447d/info.json @@ -0,0 +1,15 @@ +{ + "name": "S&P Small Cap xStock", + "type": "MANTLE", + "symbol": "IJRx", + "decimals": 18, + "description": "S&P Small Cap xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0xAA28cB97D7f7E172f54deE950743886D2d65447d", + "status": "active", + "id": "0xAA28cB97D7f7E172f54deE950743886D2d65447d", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xAA28cB97D7f7E172f54deE950743886D2d65447d/logo.png b/blockchains/mantle/assets/0xAA28cB97D7f7E172f54deE950743886D2d65447d/logo.png new file mode 100644 index 0000000000000..d5c48229001bc Binary files /dev/null and b/blockchains/mantle/assets/0xAA28cB97D7f7E172f54deE950743886D2d65447d/logo.png differ diff --git a/blockchains/mantle/assets/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E/info.json b/blockchains/mantle/assets/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E/info.json new file mode 100644 index 0000000000000..d6bcc31deefff --- /dev/null +++ b/blockchains/mantle/assets/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E/info.json @@ -0,0 +1,20 @@ +{ + "name": "MicroStrategy xStock", + "type": "MANTLE", + "symbol": "MSTRx", + "decimals": 18, + "description": "MicroStrategy xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E", + "status": "active", + "id": "0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/microstrategy-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E/logo.png b/blockchains/mantle/assets/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E/logo.png new file mode 100644 index 0000000000000..53c67cfef7929 Binary files /dev/null and b/blockchains/mantle/assets/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E/logo.png differ diff --git a/blockchains/mantle/assets/0xAF072F109A2C173D822a4fe9af311A1B18F83d19/info.json b/blockchains/mantle/assets/0xAF072F109A2C173D822a4fe9af311A1B18F83d19/info.json new file mode 100644 index 0000000000000..7cc7c9f9b4a1b --- /dev/null +++ b/blockchains/mantle/assets/0xAF072F109A2C173D822a4fe9af311A1B18F83d19/info.json @@ -0,0 +1,20 @@ +{ + "name": "Thermo Fisher xStock", + "type": "MANTLE", + "symbol": "TMOx", + "decimals": 18, + "description": "Thermo Fisher xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0xAF072F109A2C173D822a4fe9af311A1B18F83d19", + "status": "active", + "id": "0xAF072F109A2C173D822a4fe9af311A1B18F83d19", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/thermo-fisher-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xAF072F109A2C173D822a4fe9af311A1B18F83d19/logo.png b/blockchains/mantle/assets/0xAF072F109A2C173D822a4fe9af311A1B18F83d19/logo.png new file mode 100644 index 0000000000000..1951f3b4c8100 Binary files /dev/null and b/blockchains/mantle/assets/0xAF072F109A2C173D822a4fe9af311A1B18F83d19/logo.png differ diff --git a/blockchains/mantle/assets/0xBC7170a1280Be28513B4e940C681537EB25e39f4/info.json b/blockchains/mantle/assets/0xBC7170a1280Be28513B4e940C681537EB25e39f4/info.json new file mode 100644 index 0000000000000..278a177874bb6 --- /dev/null +++ b/blockchains/mantle/assets/0xBC7170a1280Be28513B4e940C681537EB25e39f4/info.json @@ -0,0 +1,20 @@ +{ + "name": "Comcast xStock", + "type": "MANTLE", + "symbol": "CMCSAx", + "decimals": 18, + "description": "Comcast xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0xBC7170a1280Be28513B4e940C681537EB25e39f4", + "status": "active", + "id": "0xBC7170a1280Be28513B4e940C681537EB25e39f4", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/comcast-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xBC7170a1280Be28513B4e940C681537EB25e39f4/logo.png b/blockchains/mantle/assets/0xBC7170a1280Be28513B4e940C681537EB25e39f4/logo.png new file mode 100644 index 0000000000000..24a17931df1cd Binary files /dev/null and b/blockchains/mantle/assets/0xBC7170a1280Be28513B4e940C681537EB25e39f4/logo.png differ diff --git a/blockchains/mantle/assets/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A/info.json b/blockchains/mantle/assets/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A/info.json new file mode 100644 index 0000000000000..56d5cc78f6d13 --- /dev/null +++ b/blockchains/mantle/assets/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A/info.json @@ -0,0 +1,20 @@ +{ + "name": "JPMorgan Chase xStock", + "type": "MANTLE", + "symbol": "JPMx", + "decimals": 18, + "description": "JPMorgan Chase xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A", + "status": "active", + "id": "0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jpmorgan-chase-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A/logo.png b/blockchains/mantle/assets/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A/logo.png new file mode 100644 index 0000000000000..408eeb7537f04 Binary files /dev/null and b/blockchains/mantle/assets/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A/logo.png differ diff --git a/blockchains/mantle/assets/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015/info.json b/blockchains/mantle/assets/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015/info.json new file mode 100644 index 0000000000000..16844778c6205 --- /dev/null +++ b/blockchains/mantle/assets/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015/info.json @@ -0,0 +1,20 @@ +{ + "name": "Robinhood xStock", + "type": "MANTLE", + "symbol": "HOODx", + "decimals": 18, + "description": "Robinhood xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015", + "status": "active", + "id": "0xE1385FDd5ffB10081Cd52C56584F25EFa9084015", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/robinhood-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015/logo.png b/blockchains/mantle/assets/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015/logo.png new file mode 100644 index 0000000000000..499d05ab3c8af Binary files /dev/null and b/blockchains/mantle/assets/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015/logo.png differ diff --git a/blockchains/mantle/assets/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d/info.json b/blockchains/mantle/assets/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d/info.json new file mode 100644 index 0000000000000..fb405fb998d3a --- /dev/null +++ b/blockchains/mantle/assets/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d/info.json @@ -0,0 +1,20 @@ +{ + "name": "Gamestop xStock", + "type": "MANTLE", + "symbol": "GMEx", + "decimals": 18, + "description": "Gamestop xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d", + "status": "active", + "id": "0xE5f6d3b2405ABdfE6F660e63202B25D23763160d", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gamestop-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d/logo.png b/blockchains/mantle/assets/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d/logo.png new file mode 100644 index 0000000000000..37200bdc25ac3 Binary files /dev/null and b/blockchains/mantle/assets/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d/logo.png differ diff --git a/blockchains/mantle/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json b/blockchains/mantle/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json new file mode 100644 index 0000000000000..926cc4d0a893f --- /dev/null +++ b/blockchains/mantle/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json @@ -0,0 +1,21 @@ +{ + "name": "Axelar Wrapped USDC", + "symbol": "axlUSDC", + "type": "MANTLE", + "decimals": 6, + "description": "Axelar Wrapped USDC (axlUSDC) is a cryptocurrency and operates on the BNB Smart Chain (BEP20) platform.", + "website": "https://axelar.network/", + "explorer": "https://explorer.mantle.xyz/address/0xEB466342C4d449BC9f53A865D5Cb90586f405215", + "status": "active", + "id": "0xEB466342C4d449BC9f53A865D5Cb90586f405215", + "links": [ + { + "name": "x", + "url": "https://x.com/axelarcore" + }, + { + "name": "discord", + "url": "https://discord.com/invite/aRZ3Ra6f7D" + } + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png b/blockchains/mantle/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png new file mode 100644 index 0000000000000..69911caea54fb Binary files /dev/null and b/blockchains/mantle/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png differ diff --git a/blockchains/mantle/assets/0xEEdb0273c5Af792745180e9fF568cD01550fFA13/info.json b/blockchains/mantle/assets/0xEEdb0273c5Af792745180e9fF568cD01550fFA13/info.json new file mode 100644 index 0000000000000..311b843a35493 --- /dev/null +++ b/blockchains/mantle/assets/0xEEdb0273c5Af792745180e9fF568cD01550fFA13/info.json @@ -0,0 +1,20 @@ +{ + "name": "Exxon Mobil xStock", + "type": "MANTLE", + "symbol": "XOMx", + "decimals": 18, + "description": "Exxon Mobil xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0xEEdb0273c5Af792745180e9fF568cD01550fFA13", + "status": "active", + "id": "0xEEdb0273c5Af792745180e9fF568cD01550fFA13", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/exxon-mobil-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xEEdb0273c5Af792745180e9fF568cD01550fFA13/logo.png b/blockchains/mantle/assets/0xEEdb0273c5Af792745180e9fF568cD01550fFA13/logo.png new file mode 100644 index 0000000000000..21ed72e7b5ad6 Binary files /dev/null and b/blockchains/mantle/assets/0xEEdb0273c5Af792745180e9fF568cD01550fFA13/logo.png differ diff --git a/blockchains/mantle/assets/0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1/info.json b/blockchains/mantle/assets/0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1/info.json new file mode 100644 index 0000000000000..16685aa5e2c42 --- /dev/null +++ b/blockchains/mantle/assets/0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1/info.json @@ -0,0 +1,15 @@ +{ + "name": "Schwab International Equity xStock", + "type": "MANTLE", + "symbol": "SCHFx", + "decimals": 18, + "description": "Schwab International Equity xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1", + "status": "active", + "id": "0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1/logo.png b/blockchains/mantle/assets/0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1/logo.png new file mode 100644 index 0000000000000..d55ca6edb40ba Binary files /dev/null and b/blockchains/mantle/assets/0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1/logo.png differ diff --git a/blockchains/mantle/assets/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e/info.json b/blockchains/mantle/assets/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e/info.json new file mode 100644 index 0000000000000..41c1881a66930 --- /dev/null +++ b/blockchains/mantle/assets/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e/info.json @@ -0,0 +1,20 @@ +{ + "name": "Novo Nordisk xStock", + "type": "MANTLE", + "symbol": "NVOx", + "decimals": 18, + "description": "Novo Nordisk xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e", + "status": "active", + "id": "0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/novo-nordisk-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e/logo.png b/blockchains/mantle/assets/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e/logo.png new file mode 100644 index 0000000000000..93fd95bb0fbaf Binary files /dev/null and b/blockchains/mantle/assets/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e/logo.png differ diff --git a/blockchains/mantle/assets/0xa753A7395cAe905Cd615Da0B82A53E0560f250af/info.json b/blockchains/mantle/assets/0xa753A7395cAe905Cd615Da0B82A53E0560f250af/info.json new file mode 100644 index 0000000000000..019c4e038418b --- /dev/null +++ b/blockchains/mantle/assets/0xa753A7395cAe905Cd615Da0B82A53E0560f250af/info.json @@ -0,0 +1,20 @@ +{ + "name": "Nasdaq xStock", + "type": "MANTLE", + "symbol": "QQQx", + "decimals": 18, + "description": "Nasdaq xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0xa753A7395cAe905Cd615Da0B82A53E0560f250af", + "status": "active", + "id": "0xa753A7395cAe905Cd615Da0B82A53E0560f250af", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nasdaq-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xa753A7395cAe905Cd615Da0B82A53E0560f250af/logo.png b/blockchains/mantle/assets/0xa753A7395cAe905Cd615Da0B82A53E0560f250af/logo.png new file mode 100644 index 0000000000000..0be7e154785ec Binary files /dev/null and b/blockchains/mantle/assets/0xa753A7395cAe905Cd615Da0B82A53E0560f250af/logo.png differ diff --git a/blockchains/mantle/assets/0xa90424D5D3E770e8644103AB503ed775dD1318FD/info.json b/blockchains/mantle/assets/0xa90424D5D3E770e8644103AB503ed775dD1318FD/info.json new file mode 100644 index 0000000000000..1cb5c10c890f5 --- /dev/null +++ b/blockchains/mantle/assets/0xa90424D5D3E770e8644103AB503ed775dD1318FD/info.json @@ -0,0 +1,20 @@ +{ + "name": "Procter & Gamble xStock", + "type": "MANTLE", + "symbol": "PGx", + "decimals": 18, + "description": "Procter & Gamble xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0xa90424D5D3E770e8644103AB503ed775dD1318FD", + "status": "active", + "id": "0xa90424D5D3E770e8644103AB503ed775dD1318FD", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/procter-gamble-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xa90424D5D3E770e8644103AB503ed775dD1318FD/logo.png b/blockchains/mantle/assets/0xa90424D5D3E770e8644103AB503ed775dD1318FD/logo.png new file mode 100644 index 0000000000000..91c8cff43e5c5 Binary files /dev/null and b/blockchains/mantle/assets/0xa90424D5D3E770e8644103AB503ed775dD1318FD/logo.png differ diff --git a/blockchains/mantle/assets/0xad5cdc3340904285B8159089974A99a1A09EB4C0/info.json b/blockchains/mantle/assets/0xad5cdc3340904285B8159089974A99a1A09EB4C0/info.json new file mode 100644 index 0000000000000..ad62d49e38ee5 --- /dev/null +++ b/blockchains/mantle/assets/0xad5cdc3340904285B8159089974A99a1A09EB4C0/info.json @@ -0,0 +1,20 @@ +{ + "name": "Chevron xStock", + "type": "MANTLE", + "symbol": "CVXx", + "decimals": 18, + "description": "Chevron xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0xad5cdc3340904285B8159089974A99a1A09EB4C0", + "status": "active", + "id": "0xad5cdc3340904285B8159089974A99a1A09EB4C0", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chevron-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xad5cdc3340904285B8159089974A99a1A09EB4C0/logo.png b/blockchains/mantle/assets/0xad5cdc3340904285B8159089974A99a1A09EB4C0/logo.png new file mode 100644 index 0000000000000..74a17d83bcf88 Binary files /dev/null and b/blockchains/mantle/assets/0xad5cdc3340904285B8159089974A99a1A09EB4C0/logo.png differ diff --git a/blockchains/mantle/assets/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED/info.json b/blockchains/mantle/assets/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED/info.json new file mode 100644 index 0000000000000..11ccd7b08f243 --- /dev/null +++ b/blockchains/mantle/assets/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED/info.json @@ -0,0 +1,15 @@ +{ + "name": "Bitmine xStock", + "type": "MANTLE", + "symbol": "BMNRx", + "decimals": 18, + "description": "Bitmine xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED", + "status": "active", + "id": "0xaeB681B69E5094E04d11BCeF51A71358A374C3ED", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED/logo.png b/blockchains/mantle/assets/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED/logo.png new file mode 100644 index 0000000000000..fb7784c71a3a4 Binary files /dev/null and b/blockchains/mantle/assets/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED/logo.png differ diff --git a/blockchains/mantle/assets/0xb365Cd2588065F522D379AD19e903304f6B622C6/info.json b/blockchains/mantle/assets/0xb365Cd2588065F522D379AD19e903304f6B622C6/info.json new file mode 100644 index 0000000000000..88cead81821d2 --- /dev/null +++ b/blockchains/mantle/assets/0xb365Cd2588065F522D379AD19e903304f6B622C6/info.json @@ -0,0 +1,20 @@ +{ + "name": "Mastercard xStock", + "type": "MANTLE", + "symbol": "MAx", + "decimals": 18, + "description": "Mastercard xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0xb365Cd2588065F522D379AD19e903304f6B622C6", + "status": "active", + "id": "0xb365Cd2588065F522D379AD19e903304f6B622C6", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mastercard-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xb365Cd2588065F522D379AD19e903304f6B622C6/logo.png b/blockchains/mantle/assets/0xb365Cd2588065F522D379AD19e903304f6B622C6/logo.png new file mode 100644 index 0000000000000..02c91d1fc42cb Binary files /dev/null and b/blockchains/mantle/assets/0xb365Cd2588065F522D379AD19e903304f6B622C6/logo.png differ diff --git a/blockchains/mantle/assets/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777/info.json b/blockchains/mantle/assets/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777/info.json new file mode 100644 index 0000000000000..b6215dc4b000a --- /dev/null +++ b/blockchains/mantle/assets/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777/info.json @@ -0,0 +1,20 @@ +{ + "name": "Vanguard xStock", + "type": "MANTLE", + "symbol": "VTIx", + "decimals": 18, + "description": "Vanguard xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777", + "status": "active", + "id": "0xbD730E618bcD88C82dDeE52e10275CF2f88A4777", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vanguard-tokenized-etf-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777/logo.png b/blockchains/mantle/assets/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777/logo.png new file mode 100644 index 0000000000000..ea385e42145a9 Binary files /dev/null and b/blockchains/mantle/assets/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777/logo.png differ diff --git a/blockchains/mantle/assets/0xbEe6b69345F376598Fe16AbD5592c6F844825E66/info.json b/blockchains/mantle/assets/0xbEe6b69345F376598Fe16AbD5592c6F844825E66/info.json new file mode 100644 index 0000000000000..00715b3e31d04 --- /dev/null +++ b/blockchains/mantle/assets/0xbEe6b69345F376598Fe16AbD5592c6F844825E66/info.json @@ -0,0 +1,20 @@ +{ + "name": "OPEN xStock", + "type": "MANTLE", + "symbol": "OPENx", + "decimals": 18, + "description": "OPEN xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0xbEe6b69345F376598Fe16AbD5592c6F844825E66", + "status": "active", + "id": "0xbEe6b69345F376598Fe16AbD5592c6F844825E66", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/open-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xbEe6b69345F376598Fe16AbD5592c6F844825E66/logo.png b/blockchains/mantle/assets/0xbEe6b69345F376598Fe16AbD5592c6F844825E66/logo.png new file mode 100644 index 0000000000000..4ddb0ca11f860 Binary files /dev/null and b/blockchains/mantle/assets/0xbEe6b69345F376598Fe16AbD5592c6F844825E66/logo.png differ diff --git a/blockchains/mantle/assets/0xc845b2894dBddd03858fd2D643B4eF725fE0849d/info.json b/blockchains/mantle/assets/0xc845b2894dBddd03858fd2D643B4eF725fE0849d/info.json new file mode 100644 index 0000000000000..02734281da8b9 --- /dev/null +++ b/blockchains/mantle/assets/0xc845b2894dBddd03858fd2D643B4eF725fE0849d/info.json @@ -0,0 +1,20 @@ +{ + "name": "NVIDIA xStock", + "type": "MANTLE", + "symbol": "NVDAx", + "decimals": 18, + "description": "NVIDIA xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0xc845b2894dBddd03858fd2D643B4eF725fE0849d", + "status": "active", + "id": "0xc845b2894dBddd03858fd2D643B4eF725fE0849d", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nvidia-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xc845b2894dBddd03858fd2D643B4eF725fE0849d/logo.png b/blockchains/mantle/assets/0xc845b2894dBddd03858fd2D643B4eF725fE0849d/logo.png new file mode 100644 index 0000000000000..5846ce5c5859d Binary files /dev/null and b/blockchains/mantle/assets/0xc845b2894dBddd03858fd2D643B4eF725fE0849d/logo.png differ diff --git a/blockchains/mantle/assets/0xd9913208647671Fe0F48F7F260076B2C6F310Aac/info.json b/blockchains/mantle/assets/0xd9913208647671Fe0F48F7F260076B2C6F310Aac/info.json new file mode 100644 index 0000000000000..73d034cd8bab4 --- /dev/null +++ b/blockchains/mantle/assets/0xd9913208647671Fe0F48F7F260076B2C6F310Aac/info.json @@ -0,0 +1,20 @@ +{ + "name": "International Business Machines xStock", + "type": "MANTLE", + "symbol": "IBMx", + "decimals": 18, + "description": "International Business Machines xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0xd9913208647671Fe0F48F7F260076B2C6F310Aac", + "status": "active", + "id": "0xd9913208647671Fe0F48F7F260076B2C6F310Aac", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/international-business-machines-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xd9913208647671Fe0F48F7F260076B2C6F310Aac/logo.png b/blockchains/mantle/assets/0xd9913208647671Fe0F48F7F260076B2C6F310Aac/logo.png new file mode 100644 index 0000000000000..e6a2aff6e6a2d Binary files /dev/null and b/blockchains/mantle/assets/0xd9913208647671Fe0F48F7F260076B2C6F310Aac/logo.png differ diff --git a/blockchains/mantle/assets/0xdCC1a2699441079dA889B1F49e12B69cC791129b/info.json b/blockchains/mantle/assets/0xdCC1a2699441079dA889B1F49e12B69cC791129b/info.json new file mode 100644 index 0000000000000..7c66135b1987e --- /dev/null +++ b/blockchains/mantle/assets/0xdCC1a2699441079dA889B1F49e12B69cC791129b/info.json @@ -0,0 +1,20 @@ +{ + "name": "Coca-Cola xStock", + "type": "MANTLE", + "symbol": "KOx", + "decimals": 18, + "description": "Coca-Cola xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0xdCC1a2699441079dA889B1F49e12B69cC791129b", + "status": "active", + "id": "0xdCC1a2699441079dA889B1F49e12B69cC791129b", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coca-cola-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xdCC1a2699441079dA889B1F49e12B69cC791129b/logo.png b/blockchains/mantle/assets/0xdCC1a2699441079dA889B1F49e12B69cC791129b/logo.png new file mode 100644 index 0000000000000..1cd980d96e379 Binary files /dev/null and b/blockchains/mantle/assets/0xdCC1a2699441079dA889B1F49e12B69cC791129b/logo.png differ diff --git a/blockchains/mantle/assets/0xdadfb355c6110eda0908740d52c834d6C2BCDDc7/info.json b/blockchains/mantle/assets/0xdadfb355c6110eda0908740d52c834d6C2BCDDc7/info.json new file mode 100644 index 0000000000000..badb859af3e99 --- /dev/null +++ b/blockchains/mantle/assets/0xdadfb355c6110eda0908740d52c834d6C2BCDDc7/info.json @@ -0,0 +1,15 @@ +{ + "name": "Russell 2000 xStock", + "type": "MANTLE", + "symbol": "IWMx", + "decimals": 18, + "description": "Russell 2000 xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0xdadfb355c6110eda0908740d52c834d6C2BCDDc7", + "status": "active", + "id": "0xdadfb355c6110eda0908740d52c834d6C2BCDDc7", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xdadfb355c6110eda0908740d52c834d6C2BCDDc7/logo.png b/blockchains/mantle/assets/0xdadfb355c6110eda0908740d52c834d6C2BCDDc7/logo.png new file mode 100644 index 0000000000000..857fe69020c3c Binary files /dev/null and b/blockchains/mantle/assets/0xdadfb355c6110eda0908740d52c834d6C2BCDDc7/logo.png differ diff --git a/blockchains/mantle/assets/0xdb0482cfaD4789798623E64b15eebA01b16e917C/info.json b/blockchains/mantle/assets/0xdb0482cfaD4789798623E64b15eebA01b16e917C/info.json new file mode 100644 index 0000000000000..870c6f2ba4ac5 --- /dev/null +++ b/blockchains/mantle/assets/0xdb0482cfaD4789798623E64b15eebA01b16e917C/info.json @@ -0,0 +1,20 @@ +{ + "name": "Johnson & Johnson xStock", + "type": "MANTLE", + "symbol": "JNJx", + "decimals": 18, + "description": "Johnson & Johnson xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0xdb0482cfaD4789798623E64b15eebA01b16e917C", + "status": "active", + "id": "0xdb0482cfaD4789798623E64b15eebA01b16e917C", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/johnson-johnson-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xdb0482cfaD4789798623E64b15eebA01b16e917C/logo.png b/blockchains/mantle/assets/0xdb0482cfaD4789798623E64b15eebA01b16e917C/logo.png new file mode 100644 index 0000000000000..67bdfefec03ca Binary files /dev/null and b/blockchains/mantle/assets/0xdb0482cfaD4789798623E64b15eebA01b16e917C/logo.png differ diff --git a/blockchains/mantle/assets/0xdbA228936F4079DaF9Aa906fd48a87f2300405F4/info.json b/blockchains/mantle/assets/0xdbA228936F4079DaF9Aa906fd48a87f2300405F4/info.json new file mode 100644 index 0000000000000..9f529f528acd8 --- /dev/null +++ b/blockchains/mantle/assets/0xdbA228936F4079DaF9Aa906fd48a87f2300405F4/info.json @@ -0,0 +1,20 @@ +{ + "name": "Danaher xStock", + "type": "MANTLE", + "symbol": "DHRx", + "decimals": 18, + "description": "Danaher xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0xdbA228936F4079DaF9Aa906fd48a87f2300405F4", + "status": "active", + "id": "0xdbA228936F4079DaF9Aa906fd48a87f2300405F4", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/danaher-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xdbA228936F4079DaF9Aa906fd48a87f2300405F4/logo.png b/blockchains/mantle/assets/0xdbA228936F4079DaF9Aa906fd48a87f2300405F4/logo.png new file mode 100644 index 0000000000000..86532032c2284 Binary files /dev/null and b/blockchains/mantle/assets/0xdbA228936F4079DaF9Aa906fd48a87f2300405F4/logo.png differ diff --git a/blockchains/mantle/assets/0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F/info.json b/blockchains/mantle/assets/0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F/info.json new file mode 100644 index 0000000000000..85f338ac9a4e4 --- /dev/null +++ b/blockchains/mantle/assets/0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F/info.json @@ -0,0 +1,20 @@ +{ + "name": "Alphabet xStock", + "type": "MANTLE", + "symbol": "GOOGLx", + "decimals": 18, + "description": "Alphabet xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F", + "status": "active", + "id": "0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/alphabet-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F/logo.png b/blockchains/mantle/assets/0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F/logo.png new file mode 100644 index 0000000000000..74e8233d60b12 Binary files /dev/null and b/blockchains/mantle/assets/0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F/logo.png differ diff --git a/blockchains/mantle/assets/0xe95ab205e333443D7970336D5fD827eF9eD97608/info.json b/blockchains/mantle/assets/0xe95ab205e333443D7970336D5fD827eF9eD97608/info.json new file mode 100644 index 0000000000000..72d09aaa0bdae --- /dev/null +++ b/blockchains/mantle/assets/0xe95ab205e333443D7970336D5fD827eF9eD97608/info.json @@ -0,0 +1,15 @@ +{ + "name": "TON xStock", + "type": "MANTLE", + "symbol": "TONXx", + "decimals": 18, + "description": "TON xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0xe95ab205e333443D7970336D5fD827eF9eD97608", + "status": "active", + "id": "0xe95ab205e333443D7970336D5fD827eF9eD97608", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xe95ab205e333443D7970336D5fD827eF9eD97608/logo.png b/blockchains/mantle/assets/0xe95ab205e333443D7970336D5fD827eF9eD97608/logo.png new file mode 100644 index 0000000000000..0c6d1b728e68f Binary files /dev/null and b/blockchains/mantle/assets/0xe95ab205e333443D7970336D5fD827eF9eD97608/logo.png differ diff --git a/blockchains/mantle/assets/0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88/info.json b/blockchains/mantle/assets/0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88/info.json new file mode 100644 index 0000000000000..ed3b7a81ab4dc --- /dev/null +++ b/blockchains/mantle/assets/0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88/info.json @@ -0,0 +1,20 @@ +{ + "name": "Marvell xStock", + "type": "MANTLE", + "symbol": "MRVLx", + "decimals": 18, + "description": "Marvell xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88", + "status": "active", + "id": "0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/marvell-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88/logo.png b/blockchains/mantle/assets/0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88/logo.png new file mode 100644 index 0000000000000..5a63b3624464b Binary files /dev/null and b/blockchains/mantle/assets/0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88/logo.png differ diff --git a/blockchains/mantle/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json b/blockchains/mantle/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json new file mode 100644 index 0000000000000..5165af473d975 --- /dev/null +++ b/blockchains/mantle/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json @@ -0,0 +1,21 @@ +{ + "name": "Lorenzo stBTC", + "type": "MANTLE", + "symbol": "stBTC", + "decimals": 18, + "website": "https://www.lorenzo-protocol.xyz/", + "description": "To be the premier Bitcoin platform for yield-bearing token issuance, trading, and settlement.", + "explorer": "https://explorer.mantle.xyz/token/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3", + "status": "active", + "id": "0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3", + "links": [ + { + "name": "x", + "url": "https://x.com/LorenzoProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/lorenzoprotocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png b/blockchains/mantle/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png new file mode 100644 index 0000000000000..d0c4e5f85eb2b Binary files /dev/null and b/blockchains/mantle/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png differ diff --git a/blockchains/mantle/assets/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8/info.json b/blockchains/mantle/assets/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8/info.json new file mode 100644 index 0000000000000..b651d823a2f24 --- /dev/null +++ b/blockchains/mantle/assets/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8/info.json @@ -0,0 +1,20 @@ +{ + "name": "Intel xStock", + "type": "MANTLE", + "symbol": "INTCx", + "decimals": 18, + "description": "Intel xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8", + "status": "active", + "id": "0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/intel-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8/logo.png b/blockchains/mantle/assets/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8/logo.png new file mode 100644 index 0000000000000..fa5ae9732bb1d Binary files /dev/null and b/blockchains/mantle/assets/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8/logo.png differ diff --git a/blockchains/mantle/assets/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A/info.json b/blockchains/mantle/assets/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A/info.json new file mode 100644 index 0000000000000..5ce2df853ce6b --- /dev/null +++ b/blockchains/mantle/assets/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A/info.json @@ -0,0 +1,20 @@ +{ + "name": "AbbVie xStock", + "type": "MANTLE", + "symbol": "ABBVx", + "decimals": 18, + "description": "AbbVie xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A", + "status": "active", + "id": "0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abbvie-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A/logo.png b/blockchains/mantle/assets/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A/logo.png new file mode 100644 index 0000000000000..a6ab744f4369f Binary files /dev/null and b/blockchains/mantle/assets/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A/logo.png differ diff --git a/blockchains/mantle/assets/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86/info.json b/blockchains/mantle/assets/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86/info.json new file mode 100644 index 0000000000000..b8641b52d0a95 --- /dev/null +++ b/blockchains/mantle/assets/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86/info.json @@ -0,0 +1,20 @@ +{ + "name": "TQQQ xStock", + "type": "MANTLE", + "symbol": "TQQQx", + "decimals": 18, + "description": "TQQQ xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86", + "status": "active", + "id": "0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tqqq-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86/logo.png b/blockchains/mantle/assets/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86/logo.png new file mode 100644 index 0000000000000..09666400c7428 Binary files /dev/null and b/blockchains/mantle/assets/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86/logo.png differ diff --git a/blockchains/mantle/assets/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB/info.json b/blockchains/mantle/assets/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB/info.json new file mode 100644 index 0000000000000..748e2f72b2286 --- /dev/null +++ b/blockchains/mantle/assets/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB/info.json @@ -0,0 +1,20 @@ +{ + "name": "Circle xStock", + "type": "MANTLE", + "symbol": "CRCLx", + "decimals": 18, + "description": "Circle xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://mantlescan.xyz/token/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB", + "status": "active", + "id": "0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/amber-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB/logo.png b/blockchains/mantle/assets/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB/logo.png new file mode 100644 index 0000000000000..5d99d96eeea49 Binary files /dev/null and b/blockchains/mantle/assets/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB/logo.png differ diff --git a/blockchains/mantle/info/info.json b/blockchains/mantle/info/info.json new file mode 100644 index 0000000000000..e3f36c6d417b1 --- /dev/null +++ b/blockchains/mantle/info/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mantle Chain", + "website": "https://www.mantle.xyz", + "description": "Mantle Network is a technology stack for scaling Ethereum, and we strive to be EVM-compatible while doing so.", + "explorer": "https://explorer.mantle.xyz/blocks", + "symbol": "MNT", + "rpc_url": "https://rpc.mantle.xyz", + "type": "coin", + "decimals": 18, + "status": "active" +} \ No newline at end of file diff --git a/blockchains/mantle/info/logo.png b/blockchains/mantle/info/logo.png new file mode 100644 index 0000000000000..a6393b66b7a5e Binary files /dev/null and b/blockchains/mantle/info/logo.png differ diff --git a/blockchains/mantle/info/square_logo.png b/blockchains/mantle/info/square_logo.png new file mode 100644 index 0000000000000..ed471de667956 Binary files /dev/null and b/blockchains/mantle/info/square_logo.png differ diff --git a/blockchains/mars/info/info.json b/blockchains/mars/info/info.json index 06a3a228ebca0..5b802076fdd16 100644 --- a/blockchains/mars/info/info.json +++ b/blockchains/mars/info/info.json @@ -21,8 +21,8 @@ "url": "https://docs.marsprotocol.io/mars-protocol/" }, { - "name": "twitter", - "url": "https://twitter.com/mars_protocol" + "name": "x", + "url": "https://x.com/mars_protocol" } ] } \ No newline at end of file diff --git a/blockchains/mars/info/square_logo.png b/blockchains/mars/info/square_logo.png new file mode 100644 index 0000000000000..793f7b4a3944e Binary files /dev/null and b/blockchains/mars/info/square_logo.png differ diff --git a/blockchains/mars/validators/assets/marsvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z9gkghl/logo.png b/blockchains/mars/validators/assets/marsvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z9gkghl/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/mars/validators/assets/marsvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z9gkghl/logo.png differ diff --git a/blockchains/mars/validators/assets/marsvaloper1956ywsyr2uxhgy65425lkgu3fqr6lysmw26dl2/logo.png b/blockchains/mars/validators/assets/marsvaloper1956ywsyr2uxhgy65425lkgu3fqr6lysmw26dl2/logo.png new file mode 100644 index 0000000000000..b9144cc5256cc Binary files /dev/null and b/blockchains/mars/validators/assets/marsvaloper1956ywsyr2uxhgy65425lkgu3fqr6lysmw26dl2/logo.png differ diff --git a/blockchains/mars/validators/assets/marsvaloper1c4r6mndnmrvr9455e88nad7lg09zd89f3c0xpq/logo.png b/blockchains/mars/validators/assets/marsvaloper1c4r6mndnmrvr9455e88nad7lg09zd89f3c0xpq/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/mars/validators/assets/marsvaloper1c4r6mndnmrvr9455e88nad7lg09zd89f3c0xpq/logo.png differ diff --git a/blockchains/mars/validators/assets/marsvaloper1e36a686lnwutfuu2mlk4eusjqq3sd78zhykrfh/logo.png b/blockchains/mars/validators/assets/marsvaloper1e36a686lnwutfuu2mlk4eusjqq3sd78zhykrfh/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/mars/validators/assets/marsvaloper1e36a686lnwutfuu2mlk4eusjqq3sd78zhykrfh/logo.png differ diff --git a/blockchains/mars/validators/assets/marsvaloper1km3nehyxu92vu2whjqhuqkmljvcd4nwv827jqw/logo.png b/blockchains/mars/validators/assets/marsvaloper1km3nehyxu92vu2whjqhuqkmljvcd4nwv827jqw/logo.png new file mode 100644 index 0000000000000..e3d5db9dd90c8 Binary files /dev/null and b/blockchains/mars/validators/assets/marsvaloper1km3nehyxu92vu2whjqhuqkmljvcd4nwv827jqw/logo.png differ diff --git a/blockchains/mars/validators/assets/marsvaloper1trvtq89lkes7qjqhm5cyqltgvdu3jpej9ytn6e/logo.png b/blockchains/mars/validators/assets/marsvaloper1trvtq89lkes7qjqhm5cyqltgvdu3jpej9ytn6e/logo.png new file mode 100644 index 0000000000000..7d46ea7269f9e Binary files /dev/null and b/blockchains/mars/validators/assets/marsvaloper1trvtq89lkes7qjqhm5cyqltgvdu3jpej9ytn6e/logo.png differ diff --git a/blockchains/mars/validators/list.json b/blockchains/mars/validators/list.json new file mode 100644 index 0000000000000..a95df352375f0 --- /dev/null +++ b/blockchains/mars/validators/list.json @@ -0,0 +1,38 @@ +[ + { + "id": "marsvaloper1e36a686lnwutfuu2mlk4eusjqq3sd78zhykrfh", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "marsvaloper1trvtq89lkes7qjqhm5cyqltgvdu3jpej9ytn6e", + "name": "Smart Stake 📈📊 Analytics Hub", + "description": "Your hub for validator, network, decentralization, and relayer analytics. Support @ t.me/SmartStake. Like our services? Delegate on any of the networks listed @ smartstake.io", + "website": "https://mars.smartstake.io/" + }, + { + "id": "marsvaloper1km3nehyxu92vu2whjqhuqkmljvcd4nwv827jqw", + "name": "Larry Engineer", + "description": "validating with bare metal server from the comfort of home", + "website": "https://larry.engineer/" + }, + { + "id": "marsvaloper1c4r6mndnmrvr9455e88nad7lg09zd89f3c0xpq", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + }, + { + "id": "marsvaloper1956ywsyr2uxhgy65425lkgu3fqr6lysmw26dl2", + "name": "polkachu.com", + "description": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at hello@polkachu.com", + "website": "https://polkachu.com/" + }, + { + "id": "marsvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z9gkghl", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + } +] \ No newline at end of file diff --git a/blockchains/megaeth/assets/0x28B7E77f82B25B95953825F1E3eA0E36c1c29861/info.json b/blockchains/megaeth/assets/0x28B7E77f82B25B95953825F1E3eA0E36c1c29861/info.json new file mode 100644 index 0000000000000..5cb2230dc81bd --- /dev/null +++ b/blockchains/megaeth/assets/0x28B7E77f82B25B95953825F1E3eA0E36c1c29861/info.json @@ -0,0 +1,40 @@ +{ + "name": "MEGA", + "type": "MEGAETH", + "symbol": "MEGA", + "decimals": 18, + "description": "MEGA Governance token", + "website": "https://www.megaeth.com", + "explorer": "https://megaeth.blockscout.com/token/0x28B7E77f82B25B95953825F1E3eA0E36c1c29861", + "status": "active", + "id": "0x28B7E77f82B25B95953825F1E3eA0E36c1c29861", + "links": [ + { + "name": "x", + "url": "https://x.com/megaborrowfi" + }, + { + "name": "telegram", + "url": "https://t.me/MegaETH_Official" + }, + { + "name": "discord", + "url": "https://discord.com/megaeth" + }, + { + "name": "github", + "url": "https://github.com/megaeth-labs" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/megaeth/" + }, + { + "name": "docs", + "url": "https://docs.megaeth.com" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/megaeth/assets/0x28B7E77f82B25B95953825F1E3eA0E36c1c29861/logo.png b/blockchains/megaeth/assets/0x28B7E77f82B25B95953825F1E3eA0E36c1c29861/logo.png new file mode 100644 index 0000000000000..999129680a693 Binary files /dev/null and b/blockchains/megaeth/assets/0x28B7E77f82B25B95953825F1E3eA0E36c1c29861/logo.png differ diff --git a/blockchains/megaeth/assets/0x4200000000000000000000000000000000000006/info.json b/blockchains/megaeth/assets/0x4200000000000000000000000000000000000006/info.json new file mode 100644 index 0000000000000..1835e7a103335 --- /dev/null +++ b/blockchains/megaeth/assets/0x4200000000000000000000000000000000000006/info.json @@ -0,0 +1,36 @@ +{ + "name": "Wrapped Ether", + "type": "MEGAETH", + "symbol": "WETH", + "decimals": 18, + "description": "Wrapped Ether on MegaETH", + "website": "https://www.megaeth.com", + "explorer": "https://megaeth.blockscout.com/token/0x4200000000000000000000000000000000000006", + "status": "active", + "id": "0x4200000000000000000000000000000000000006", + "links": [ + { + "name": "x", + "url": "https://x.com/megaborrowfi" + }, + { + "name": "telegram", + "url": "https://t.me/MegaETH_Official" + }, + { + "name": "discord", + "url": "https://discord.com/megaeth" + }, + { + "name": "github", + "url": "https://github.com/megaeth-labs" + }, + { + "name": "docs", + "url": "https://docs.megaeth.com" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/megaeth/assets/0x4200000000000000000000000000000000000006/logo.png b/blockchains/megaeth/assets/0x4200000000000000000000000000000000000006/logo.png new file mode 100644 index 0000000000000..9cbb47d8df2f5 Binary files /dev/null and b/blockchains/megaeth/assets/0x4200000000000000000000000000000000000006/logo.png differ diff --git a/blockchains/megaeth/assets/0x88887bE419578051FF9F4eb6C858A951921D8888/info.json b/blockchains/megaeth/assets/0x88887bE419578051FF9F4eb6C858A951921D8888/info.json new file mode 100644 index 0000000000000..8cb03e48ff7d9 --- /dev/null +++ b/blockchains/megaeth/assets/0x88887bE419578051FF9F4eb6C858A951921D8888/info.json @@ -0,0 +1,24 @@ +{ + "name": "Staked Cap USD", + "type": "MEGAETH", + "symbol": "stcUSD", + "decimals": 18, + "website": "https://cap.app/", + "description": "stcUSD is a savings product issued by staking cUSD. Any cUSD holder has open access to stcUSD. Yield is generated via an autonomous layer of operators, who self-select in and out based on the current hurdle rate of the protocol. The risk of yield generation is covered, meaning users have full downside protection that is verifiable by code.", + "explorer": "https://megaeth.blockscout.com/token/0x88887bE419578051FF9F4eb6C858A951921D8888", + "status": "active", + "id": "0x88887bE419578051FF9F4eb6C858A951921D8888", + "links": [ + { + "name": "x", + "url": "https://x.com/capmoney_" + }, + { + "name": "whitepaper", + "url": "https://docs.cap.app/" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/megaeth/assets/0x88887bE419578051FF9F4eb6C858A951921D8888/logo.png b/blockchains/megaeth/assets/0x88887bE419578051FF9F4eb6C858A951921D8888/logo.png new file mode 100644 index 0000000000000..ee71d6b2287b9 Binary files /dev/null and b/blockchains/megaeth/assets/0x88887bE419578051FF9F4eb6C858A951921D8888/logo.png differ diff --git a/blockchains/megaeth/assets/0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072/info.json b/blockchains/megaeth/assets/0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072/info.json new file mode 100644 index 0000000000000..092c5dd3fc03e --- /dev/null +++ b/blockchains/megaeth/assets/0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072/info.json @@ -0,0 +1,24 @@ +{ + "name": "Bitcoin", + "type": "MEGAETH", + "symbol": "BTC.b", + "decimals": 8, + "description": "BTC.b transforms passive Bitcoin holdings into productive capital without sacrificing security or custody. Bridge once, access everything - from simple swaps to complex DeFi strategies. Your Bitcoin shouldn't sit idle. Make it work for you.", + "website": "https://www.lombard.finance/katana/", + "explorer": "https://megaeth.blockscout.com/token/0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", + "status": "active", + "id": "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", + "links": [ + { + "name": "x", + "url": "https://x.com/Lombard_Finance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bitcoin-on-katana" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/megaeth/assets/0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072/logo.png b/blockchains/megaeth/assets/0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072/logo.png new file mode 100644 index 0000000000000..74acdde904ca9 Binary files /dev/null and b/blockchains/megaeth/assets/0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072/logo.png differ diff --git a/blockchains/megaeth/assets/0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb/info.json b/blockchains/megaeth/assets/0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb/info.json new file mode 100644 index 0000000000000..1f217196cb185 --- /dev/null +++ b/blockchains/megaeth/assets/0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb/info.json @@ -0,0 +1,24 @@ +{ + "name": "USDT0", + "type": "MEGAETH", + "symbol": "USDT0", + "decimals": 6, + "description": "USDT0 is how USDT gets to new chains, such as Ink, Berachain, MegaETH, and Plasma. USDT0 is secure and omnichain.", + "website": "https://usdt0.to/", + "explorer": "https://megaeth.blockscout.com/token/0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", + "status": "active", + "id": "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", + "links": [ + { + "name": "x", + "url": "https://x.com/usdt0_to" + }, + { + "name": "whitepaper", + "url": "https://docs.usdt0.to/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/megaeth/assets/0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb/logo.png b/blockchains/megaeth/assets/0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb/logo.png new file mode 100644 index 0000000000000..5f0fd4f848a10 Binary files /dev/null and b/blockchains/megaeth/assets/0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb/logo.png differ diff --git a/blockchains/megaeth/assets/0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7/info.json b/blockchains/megaeth/assets/0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7/info.json new file mode 100644 index 0000000000000..82c89218983a5 --- /dev/null +++ b/blockchains/megaeth/assets/0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7/info.json @@ -0,0 +1,36 @@ +{ + "name": "MegaUSD", + "type": "MEGAETH", + "symbol": "USDM", + "decimals": 18, + "description": "MegaUSD stablecoin on MegaETH", + "website": "https://www.megaeth.com", + "explorer": "https://megaeth.blockscout.com/token/0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7", + "status": "active", + "id": "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7", + "links": [ + { + "name": "x", + "url": "https://x.com/megaborrowfi" + }, + { + "name": "telegram", + "url": "https://t.me/MegaETH_Official" + }, + { + "name": "discord", + "url": "https://discord.com/megaeth" + }, + { + "name": "github", + "url": "https://github.com/megaeth-labs" + }, + { + "name": "docs", + "url": "https://docs.megaeth.com" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/megaeth/assets/0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7/logo.png b/blockchains/megaeth/assets/0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7/logo.png new file mode 100644 index 0000000000000..c6810d0dbf772 Binary files /dev/null and b/blockchains/megaeth/assets/0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7/logo.png differ diff --git a/blockchains/megaeth/assets/0xcCcc62962d17b8914c62D74FfB843d73B2a3cccC/info.json b/blockchains/megaeth/assets/0xcCcc62962d17b8914c62D74FfB843d73B2a3cccC/info.json new file mode 100644 index 0000000000000..0286b6a49da9d --- /dev/null +++ b/blockchains/megaeth/assets/0xcCcc62962d17b8914c62D74FfB843d73B2a3cccC/info.json @@ -0,0 +1,24 @@ +{ + "name": "Cap USD", + "type": "MEGAETH", + "symbol": "cUSD", + "decimals": 18, + "website": "https://cap.app/", + "description": "cUSD is a digital dollar issued on the Ethereum blockchain that can be used on any network. cUSD's reserve is backed by blue chip stablecoins such as USDC, USDT, pyUSD, BUIDL, and BENJI, i.e. issued by regulated institutions with transparent attestations. It is 1:1 redeemable for any of the available reserve assets.", + "explorer": "https://megaeth.blockscout.com/token/0xcCcc62962d17b8914c62D74FfB843d73B2a3cccC", + "status": "active", + "id": "0xcCcc62962d17b8914c62D74FfB843d73B2a3cccC", + "links": [ + { + "name": "x", + "url": "https://x.com/capmoney_" + }, + { + "name": "whitepaper", + "url": "https://docs.cap.app/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/megaeth/assets/0xcCcc62962d17b8914c62D74FfB843d73B2a3cccC/logo.png b/blockchains/megaeth/assets/0xcCcc62962d17b8914c62D74FfB843d73B2a3cccC/logo.png new file mode 100644 index 0000000000000..456ea47d40780 Binary files /dev/null and b/blockchains/megaeth/assets/0xcCcc62962d17b8914c62D74FfB843d73B2a3cccC/logo.png differ diff --git a/blockchains/megaeth/info/info.json b/blockchains/megaeth/info/info.json new file mode 100644 index 0000000000000..a23caecb626e4 --- /dev/null +++ b/blockchains/megaeth/info/info.json @@ -0,0 +1,27 @@ +{ + "name": "MegaETH", + "website": "https://www.megaeth.com/", + "description": "MegaETH is the first real-time blockchain, where crypto applications leverage extreme performance to reach their full potential. MegaETH is secured by Ethereum and powered by a hyper-optimized execution environment with a heterogeneous architecture. It delivers streaming throughput with 10 millisecond latency and up to 100,000 TPS. Developers scale apps with real-time state streaming, and users get instant transactions all while preserving full Ethereum composability.", + "explorer": "https://megaeth.blockscout.com/", + "symbol": "ETH", + "type": "coin", + "decimals": 18, + "status": "active", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/megaeth" + }, + { + "name": "whitepaper", + "url": "https://www.megaeth.com/research" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/megaeth/" + } + ] +} \ No newline at end of file diff --git a/blockchains/megaeth/info/logo.png b/blockchains/megaeth/info/logo.png new file mode 100644 index 0000000000000..999129680a693 Binary files /dev/null and b/blockchains/megaeth/info/logo.png differ diff --git a/blockchains/megaeth/info/square_logo.png b/blockchains/megaeth/info/square_logo.png new file mode 100644 index 0000000000000..986ff07877748 Binary files /dev/null and b/blockchains/megaeth/info/square_logo.png differ diff --git a/blockchains/merlin/assets/0x0726523Eba12EdaD467c55a962842Ef358865559/info.json b/blockchains/merlin/assets/0x0726523Eba12EdaD467c55a962842Ef358865559/info.json new file mode 100644 index 0000000000000..9e7629cd36c3f --- /dev/null +++ b/blockchains/merlin/assets/0x0726523Eba12EdaD467c55a962842Ef358865559/info.json @@ -0,0 +1,11 @@ +{ + "name": "Merlin's Seal ordi", + "type": "MERLIN", + "symbol": "M-ordi", + "decimals": 18, + "website": "https://merlinchain.io/bridge", + "description": "Merlin's Seal ordi", + "explorer": "https://scan.merlinchain.io/address/0x0726523eba12edad467c55a962842ef358865559", + "status": "active", + "id": "0x0726523Eba12EdaD467c55a962842Ef358865559" +} \ No newline at end of file diff --git a/blockchains/merlin/assets/0x0726523Eba12EdaD467c55a962842Ef358865559/logo.png b/blockchains/merlin/assets/0x0726523Eba12EdaD467c55a962842Ef358865559/logo.png new file mode 100644 index 0000000000000..9aeaaf304b3c7 Binary files /dev/null and b/blockchains/merlin/assets/0x0726523Eba12EdaD467c55a962842Ef358865559/logo.png differ diff --git a/blockchains/merlin/assets/0x07884346a65F95276C2b0E56b17165b191ab2C49/info.json b/blockchains/merlin/assets/0x07884346a65F95276C2b0E56b17165b191ab2C49/info.json new file mode 100644 index 0000000000000..dd142bb00da88 --- /dev/null +++ b/blockchains/merlin/assets/0x07884346a65F95276C2b0E56b17165b191ab2C49/info.json @@ -0,0 +1,21 @@ +{ + "name": "Influpia", + "type": "MERLIN", + "symbol": "ING", + "decimals": 18, + "website": "https://www.influpia.com/", + "description": "Influpia is the premier ERC404 SocialFi application on MerlinChain, designed to offer a unique platform where users can earn tangible rewards through their social influence.", + "explorer": "https://scan.merlinchain.io/address/0x07884346a65f95276c2b0e56b17165b191ab2c49", + "status": "active", + "id": "0x07884346a65F95276C2b0E56b17165b191ab2C49", + "links": [ + { + "name": "x", + "url": "https://x.com/influpia" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/influpia" + } + ] +} \ No newline at end of file diff --git a/blockchains/merlin/assets/0x07884346a65F95276C2b0E56b17165b191ab2C49/logo.png b/blockchains/merlin/assets/0x07884346a65F95276C2b0E56b17165b191ab2C49/logo.png new file mode 100644 index 0000000000000..7e1a9f33a20fc Binary files /dev/null and b/blockchains/merlin/assets/0x07884346a65F95276C2b0E56b17165b191ab2C49/logo.png differ diff --git a/blockchains/merlin/assets/0x0A3BB08b3a15A19b4De82F8AcFc862606FB69A2D/info.json b/blockchains/merlin/assets/0x0A3BB08b3a15A19b4De82F8AcFc862606FB69A2D/info.json new file mode 100644 index 0000000000000..5bfdcf89694f8 --- /dev/null +++ b/blockchains/merlin/assets/0x0A3BB08b3a15A19b4De82F8AcFc862606FB69A2D/info.json @@ -0,0 +1,21 @@ +{ + "name": "iZUMi Bond USD", + "type": "MERLIN", + "symbol": "IUSD", + "decimals": 18, + "website": "https://izumi.finance/", + "description": "iUSD, in its full name, iZUMi Bond USD, is 100% backed by iZUMi’s collaterals and future revenues. iUSD is 1:1 pegged to USD, issued by iZUMi Finance and sold to private investors as a bond to raise funds for future development of iZUMi’s ecosystem.", + "explorer": "https://scan.merlinchain.io/address/0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d", + "status": "active", + "id": "0x0A3BB08b3a15A19b4De82F8AcFc862606FB69A2D", + "links": [ + { + "name": "x", + "url": "https://x.com/izumi_Finance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/izumi-bond-usd" + } + ] +} \ No newline at end of file diff --git a/blockchains/merlin/assets/0x0A3BB08b3a15A19b4De82F8AcFc862606FB69A2D/logo.png b/blockchains/merlin/assets/0x0A3BB08b3a15A19b4De82F8AcFc862606FB69A2D/logo.png new file mode 100644 index 0000000000000..0a94cd1cff0d0 Binary files /dev/null and b/blockchains/merlin/assets/0x0A3BB08b3a15A19b4De82F8AcFc862606FB69A2D/logo.png differ diff --git a/blockchains/merlin/assets/0x41D9036454BE47d3745A823C4aaCD0e29cFB0f71/info.json b/blockchains/merlin/assets/0x41D9036454BE47d3745A823C4aaCD0e29cFB0f71/info.json new file mode 100644 index 0000000000000..d069ce6146bab --- /dev/null +++ b/blockchains/merlin/assets/0x41D9036454BE47d3745A823C4aaCD0e29cFB0f71/info.json @@ -0,0 +1,25 @@ +{ + "name": "Solv BTC", + "website": "https://app.solv.finance/solvbtc", + "description": "Earn BTC Yield and Secure Solv Points", + "explorer": "https://scan.merlinchain.io/address/0x41d9036454be47d3745a823c4aacd0e29cfb0f71", + "type": "MERLIN", + "symbol": "SolvBTC", + "decimals": 18, + "status": "active", + "id": "0x41D9036454BE47d3745A823C4aaCD0e29cFB0f71", + "links": [ + { + "name": "telegram", + "url": "https://t.me/SolvProtocol" + }, + { + "name": "x", + "url": "https://x.com/SolvProtocol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/solv-btc" + } + ] +} \ No newline at end of file diff --git a/blockchains/merlin/assets/0x41D9036454BE47d3745A823C4aaCD0e29cFB0f71/logo.png b/blockchains/merlin/assets/0x41D9036454BE47d3745A823C4aaCD0e29cFB0f71/logo.png new file mode 100644 index 0000000000000..c928cf09b3263 Binary files /dev/null and b/blockchains/merlin/assets/0x41D9036454BE47d3745A823C4aaCD0e29cFB0f71/logo.png differ diff --git a/blockchains/merlin/assets/0x480E158395cC5b41e5584347c495584cA2cAf78d/info.json b/blockchains/merlin/assets/0x480E158395cC5b41e5584347c495584cA2cAf78d/info.json new file mode 100644 index 0000000000000..5a6010ef78dae --- /dev/null +++ b/blockchains/merlin/assets/0x480E158395cC5b41e5584347c495584cA2cAf78d/info.json @@ -0,0 +1,21 @@ +{ + "name": "Merlin Chain Bridged VOYA (Merlin)", + "type": "MERLIN", + "symbol": "VOYA", + "decimals": 18, + "website": "https://merlinchain.io/bridge", + "description": "Merlin Chain Bridged VOYA (Merlin)", + "explorer": "https://scan.merlinchain.io/address/0x480E158395cC5b41e5584347c495584cA2cAf78d", + "status": "active", + "id": "0x480E158395cC5b41e5584347c495584cA2cAf78d", + "links": [ + { + "name": "x", + "url": "https://x.com/MerlinLayer2" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/merlin-chain-bridged-voya-merlin" + } + ] +} \ No newline at end of file diff --git a/blockchains/merlin/assets/0x480E158395cC5b41e5584347c495584cA2cAf78d/logo.png b/blockchains/merlin/assets/0x480E158395cC5b41e5584347c495584cA2cAf78d/logo.png new file mode 100644 index 0000000000000..de7be1d33b290 Binary files /dev/null and b/blockchains/merlin/assets/0x480E158395cC5b41e5584347c495584cA2cAf78d/logo.png differ diff --git a/blockchains/merlin/assets/0x5c46bFF4B38dc1EAE09C5BAc65872a1D8bc87378/info.json b/blockchains/merlin/assets/0x5c46bFF4B38dc1EAE09C5BAc65872a1D8bc87378/info.json new file mode 100644 index 0000000000000..4f27c98206600 --- /dev/null +++ b/blockchains/merlin/assets/0x5c46bFF4B38dc1EAE09C5BAc65872a1D8bc87378/info.json @@ -0,0 +1,21 @@ +{ + "name": "MERL", + "type": "MERLIN", + "symbol": "MERL", + "decimals": 18, + "website": "https://merlinchain.io/", + "description": "Merlin Chain serves as a Layer 2 solution for Bitcoin, incorporating essential components like ZK-Rollup networks, decentralized oracle networks, and fraud proofs within the Bitcoin chain. Its primary objective is to empower the native assets, protocols, and application ecosystem of Bitcoin Layer 1, facilitating ongoing innovation and maximizing asset potential on Layer 2 networks.", + "explorer": "https://scan.merlinchain.io/address/0x5c46bFF4B38dc1EAE09C5BAc65872a1D8bc87378", + "status": "active", + "id": "0x5c46bFF4B38dc1EAE09C5BAc65872a1D8bc87378", + "links": [ + { + "name": "x", + "url": "https://x.com/MerlinLayer2" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/merlin-chain/" + } + ] +} \ No newline at end of file diff --git a/blockchains/merlin/assets/0x5c46bFF4B38dc1EAE09C5BAc65872a1D8bc87378/logo.png b/blockchains/merlin/assets/0x5c46bFF4B38dc1EAE09C5BAc65872a1D8bc87378/logo.png new file mode 100644 index 0000000000000..f0725e93ccbfb Binary files /dev/null and b/blockchains/merlin/assets/0x5c46bFF4B38dc1EAE09C5BAc65872a1D8bc87378/logo.png differ diff --git a/blockchains/merlin/assets/0x62e99191071Fc1C5947CF1e21Aa95708dcc51AdB/info.json b/blockchains/merlin/assets/0x62e99191071Fc1C5947CF1e21Aa95708dcc51AdB/info.json new file mode 100644 index 0000000000000..9b2ffd31f7d10 --- /dev/null +++ b/blockchains/merlin/assets/0x62e99191071Fc1C5947CF1e21Aa95708dcc51AdB/info.json @@ -0,0 +1,21 @@ +{ + "name": "Owl", + "type": "MERLIN", + "symbol": "OWL", + "decimals": 18, + "website": "https://owldinal.xyz/", + "description": "The 1st native NFT gaming protocol on @MerlinLayer2", + "explorer": "https://scan.merlinchain.io/address/0x62e99191071fc1c5947cf1e21aa95708dcc51adb", + "status": "active", + "id": "0x62e99191071Fc1C5947CF1e21Aa95708dcc51AdB", + "links": [ + { + "name": "x", + "url": "https://x.com/Owldinal" + }, + { + "name": "telegram", + "url": "https://t.me/owldinals" + } + ] +} \ No newline at end of file diff --git a/blockchains/merlin/assets/0x62e99191071Fc1C5947CF1e21Aa95708dcc51AdB/logo.png b/blockchains/merlin/assets/0x62e99191071Fc1C5947CF1e21Aa95708dcc51AdB/logo.png new file mode 100644 index 0000000000000..c8c843e06e112 Binary files /dev/null and b/blockchains/merlin/assets/0x62e99191071Fc1C5947CF1e21Aa95708dcc51AdB/logo.png differ diff --git a/blockchains/merlin/assets/0x761b016E08A434daceF0f43C1e73b988c1bc3Cc1/info.json b/blockchains/merlin/assets/0x761b016E08A434daceF0f43C1e73b988c1bc3Cc1/info.json new file mode 100644 index 0000000000000..e1d9d84df68d9 --- /dev/null +++ b/blockchains/merlin/assets/0x761b016E08A434daceF0f43C1e73b988c1bc3Cc1/info.json @@ -0,0 +1,21 @@ +{ + "name": "BitGenie", + "website": "https://www.bitgenie.io/home", + "description": "BitGenie is a one-stop shop for Ordinals, Runes, and other Bitcoin DeFi tools.", + "explorer": "https://scan.merlinchain.io/address/0x761b016E08A434daceF0f43C1e73b988c1bc3Cc1", + "type": "MERLIN", + "symbol": "WISH", + "decimals": 18, + "status": "active", + "id": "0x761b016E08A434daceF0f43C1e73b988c1bc3Cc1", + "links": [ + { + "name": "x", + "url": "https://x.com/BitGenie_io" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bitgenie" + } + ] +} \ No newline at end of file diff --git a/blockchains/merlin/assets/0x761b016E08A434daceF0f43C1e73b988c1bc3Cc1/logo.png b/blockchains/merlin/assets/0x761b016E08A434daceF0f43C1e73b988c1bc3Cc1/logo.png new file mode 100644 index 0000000000000..f58a7dac576f2 Binary files /dev/null and b/blockchains/merlin/assets/0x761b016E08A434daceF0f43C1e73b988c1bc3Cc1/logo.png differ diff --git a/blockchains/merlin/assets/0x7a677e59dC2C8a42d6aF3a62748c5595034A008b/info.json b/blockchains/merlin/assets/0x7a677e59dC2C8a42d6aF3a62748c5595034A008b/info.json new file mode 100644 index 0000000000000..1e94ff3964969 --- /dev/null +++ b/blockchains/merlin/assets/0x7a677e59dC2C8a42d6aF3a62748c5595034A008b/info.json @@ -0,0 +1,21 @@ +{ + "name": "Huhu Cat", + "type": "MERLIN", + "symbol": "HUHU", + "decimals": 18, + "website": "https://huhucat.com/", + "description": "IN THE VIBRANT WORLD OF MERLINCHAIN, AMIDST THE GROUNDBREAKING INNOVATIONS OF BTC'S L2 SOLUTIONS, A UNIQUE DIGITAL SPIRIT WAS BORN – THE HUHU CAT. THIS ENIGMATIC ENTITY EMERGED AT THE INTERSECTION OF ADVANCED BLOCKCHAIN TECHNOLOGY AND DECENTRALIZED DREAMS, EMBODYING THE TRUE ESSENCE OF BTC'S TRANSFORMATIVE POTENTIAL.", + "explorer": "https://scan.merlinchain.io/token/0x7a677e59dC2C8a42d6aF3a62748c5595034A008b", + "status": "active", + "id": "0x7a677e59dC2C8a42d6aF3a62748c5595034A008b", + "links": [ + { + "name": "x", + "url": "https://x.com/HuhuCommunity" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/huhu-cat?utm_source=geckoterminal&utm_medium=referral&utm_campaign=badge&asset_platform_api_symbol=merlin-chain" + } + ] +} \ No newline at end of file diff --git a/blockchains/merlin/assets/0x7a677e59dC2C8a42d6aF3a62748c5595034A008b/logo.png b/blockchains/merlin/assets/0x7a677e59dC2C8a42d6aF3a62748c5595034A008b/logo.png new file mode 100644 index 0000000000000..c72ce9645b333 Binary files /dev/null and b/blockchains/merlin/assets/0x7a677e59dC2C8a42d6aF3a62748c5595034A008b/logo.png differ diff --git a/blockchains/merlin/assets/0x967aEC3276b63c5E2262da9641DB9dbeBB07dC0d/info.json b/blockchains/merlin/assets/0x967aEC3276b63c5E2262da9641DB9dbeBB07dC0d/info.json new file mode 100644 index 0000000000000..e26ec65492b04 --- /dev/null +++ b/blockchains/merlin/assets/0x967aEC3276b63c5E2262da9641DB9dbeBB07dC0d/info.json @@ -0,0 +1,28 @@ +{ + "name": "Merlin's Seal USDT (M-USDT)", + "website": "https://tether.to", + "description": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar.", + "explorer": "https://scan.merlinchain.io/address/0x967aec3276b63c5e2262da9641db9dbebb07dc0d", + "type": "MERLIN", + "symbol": "M-USDT", + "decimals": 6, + "status": "active", + "id": "0x967aEC3276b63c5E2262da9641DB9dbeBB07dC0d", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/tether.to/" + }, + { + "name": "x", + "url": "https://x.com/Tether_to/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/tether/" + } + ] +} \ No newline at end of file diff --git a/blockchains/merlin/assets/0x967aEC3276b63c5E2262da9641DB9dbeBB07dC0d/logo.png b/blockchains/merlin/assets/0x967aEC3276b63c5E2262da9641DB9dbeBB07dC0d/logo.png new file mode 100644 index 0000000000000..358f752fb4923 Binary files /dev/null and b/blockchains/merlin/assets/0x967aEC3276b63c5E2262da9641DB9dbeBB07dC0d/logo.png differ diff --git a/blockchains/merlin/assets/0xB880fd278198bd590252621d4CD071b1842E9Bcd/info.json b/blockchains/merlin/assets/0xB880fd278198bd590252621d4CD071b1842E9Bcd/info.json new file mode 100644 index 0000000000000..a53164dc9a970 --- /dev/null +++ b/blockchains/merlin/assets/0xB880fd278198bd590252621d4CD071b1842E9Bcd/info.json @@ -0,0 +1,21 @@ +{ + "name": "Merlin's Seal BTC", + "website": "https://merlinchain.io/", + "description": "Merlin's Seal BTC is the first MERLIN token backed 1:1 with Bitcoin.", + "explorer": "https://scan.merlinchain.io/address/0xb880fd278198bd590252621d4cd071b1842e9bcd", + "type": "MERLIN", + "symbol": "M-BTC", + "decimals": 18, + "status": "active", + "id": "0xB880fd278198bd590252621d4CD071b1842E9Bcd", + "links": [ + { + "name": "x", + "url": "https://x.com/MerlinLayer2" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/merlin-s-seal-btc" + } + ] +} \ No newline at end of file diff --git a/blockchains/merlin/assets/0xB880fd278198bd590252621d4CD071b1842E9Bcd/logo.png b/blockchains/merlin/assets/0xB880fd278198bd590252621d4CD071b1842E9Bcd/logo.png new file mode 100644 index 0000000000000..71f639d11f796 Binary files /dev/null and b/blockchains/merlin/assets/0xB880fd278198bd590252621d4CD071b1842E9Bcd/logo.png differ diff --git a/blockchains/merlin/assets/0xF6D226f9Dc15d9bB51182815b320D3fBE324e1bA/info.json b/blockchains/merlin/assets/0xF6D226f9Dc15d9bB51182815b320D3fBE324e1bA/info.json new file mode 100644 index 0000000000000..0c7ff7c6d1589 --- /dev/null +++ b/blockchains/merlin/assets/0xF6D226f9Dc15d9bB51182815b320D3fBE324e1bA/info.json @@ -0,0 +1,29 @@ +{ + "name": "Wrapped Bitcoin", + "website": "https://wbtc.network", + "description": "Wrapped Bitcoin (WBTC) is the first MERLIN token backed 1:1 with Bitcoin.", + "explorer": "https://scan.merlinchain.io/address/0xf6d226f9dc15d9bb51182815b320d3fbe324e1ba", + "type": "MERLIN", + "symbol": "WBTC", + "decimals": 18, + "status": "active", + "id": "0xF6D226f9Dc15d9bB51182815b320D3fBE324e1bA", + "tags": [ + "defi", + "wrapped" + ], + "links": [ + { + "name": "whitepaper", + "url": "https://wbtc.network/assets/wrapped-tokens-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-bitcoin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wrapped-bitcoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/merlin/assets/0xF6D226f9Dc15d9bB51182815b320D3fBE324e1bA/logo.png b/blockchains/merlin/assets/0xF6D226f9Dc15d9bB51182815b320D3fBE324e1bA/logo.png new file mode 100644 index 0000000000000..702d64a2e040a Binary files /dev/null and b/blockchains/merlin/assets/0xF6D226f9Dc15d9bB51182815b320D3fBE324e1bA/logo.png differ diff --git a/blockchains/merlin/assets/0xbd40c74cb5cf9f9252B3298230Cb916d80430bBa/info.json b/blockchains/merlin/assets/0xbd40c74cb5cf9f9252B3298230Cb916d80430bBa/info.json new file mode 100644 index 0000000000000..d698cd0a5e0c0 --- /dev/null +++ b/blockchains/merlin/assets/0xbd40c74cb5cf9f9252B3298230Cb916d80430bBa/info.json @@ -0,0 +1,21 @@ +{ + "name": "MerlinSwap", + "website": "https://merlinswap.org/home", + "description": "MerlinSwap is an innovative and highly capital efficient DEX built to support the Merlin ecosystem", + "explorer": "https://scan.merlinchain.io/address/0xbd40c74cb5cf9f9252b3298230cb916d80430bba", + "type": "MERLIN", + "symbol": "MP", + "decimals": 18, + "status": "active", + "id": "0xbd40c74cb5cf9f9252B3298230Cb916d80430bBa", + "links": [ + { + "name": "x", + "url": "https://x.com/MerlinSwap" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/merlinswap" + } + ] +} \ No newline at end of file diff --git a/blockchains/merlin/assets/0xbd40c74cb5cf9f9252B3298230Cb916d80430bBa/logo.png b/blockchains/merlin/assets/0xbd40c74cb5cf9f9252B3298230Cb916d80430bBa/logo.png new file mode 100644 index 0000000000000..75e8189238b86 Binary files /dev/null and b/blockchains/merlin/assets/0xbd40c74cb5cf9f9252B3298230Cb916d80430bBa/logo.png differ diff --git a/blockchains/merlin/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json b/blockchains/merlin/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json new file mode 100644 index 0000000000000..fe2c8b4dfffc3 --- /dev/null +++ b/blockchains/merlin/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json @@ -0,0 +1,21 @@ +{ + "name": "Lorenzo stBTC", + "type": "MANTLE", + "symbol": "stBTC", + "decimals": 18, + "website": "https://www.lorenzo-protocol.xyz/", + "description": "To be the premier Bitcoin platform for yield-bearing token issuance, trading, and settlement.", + "explorer": "https://scan.merlinchain.io/token/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3", + "status": "active", + "id": "0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3", + "links": [ + { + "name": "x", + "url": "https://x.com/LorenzoProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/lorenzoprotocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/merlin/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png b/blockchains/merlin/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png new file mode 100644 index 0000000000000..d0c4e5f85eb2b Binary files /dev/null and b/blockchains/merlin/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png differ diff --git a/blockchains/merlin/info/info.json b/blockchains/merlin/info/info.json new file mode 100644 index 0000000000000..d195e8d1abfb7 --- /dev/null +++ b/blockchains/merlin/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "Merlin Mainnet", + "website": "https://merlinchain.iov", + "description": "Merlin Chain is a Bitcoin Layer 2 that integrates the ZK-Rollup network, decentralized oracle network, Data Availability, and on-chain BTC fraud proof modules.", + "explorer": "https://scan.merlinchain.io", + "symbol": "BTC", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "discord", + "url": "https://discord.com/invite/JYqDYMu76e" + }, + { + "name": "x", + "url": "https://x.com/MerlinLayer2" + } + ] +} \ No newline at end of file diff --git a/blockchains/merlin/info/logo.png b/blockchains/merlin/info/logo.png new file mode 100644 index 0000000000000..38692ef6a6207 Binary files /dev/null and b/blockchains/merlin/info/logo.png differ diff --git a/blockchains/merlin/info/square_logo.png b/blockchains/merlin/info/square_logo.png new file mode 100644 index 0000000000000..786a9c963676b Binary files /dev/null and b/blockchains/merlin/info/square_logo.png differ diff --git a/blockchains/meter/assets/0x5Fa41671c48e3C951AfC30816947126CCC8C162e/info.json b/blockchains/meter/assets/0x5Fa41671c48e3C951AfC30816947126CCC8C162e/info.json index 3a9356c32401f..93b4e76a92ce1 100644 --- a/blockchains/meter/assets/0x5Fa41671c48e3C951AfC30816947126CCC8C162e/info.json +++ b/blockchains/meter/assets/0x5Fa41671c48e3C951AfC30816947126CCC8C162e/info.json @@ -1,5 +1,5 @@ { - "name": "USDT from Ethereum on Meter", + "name": "Tether", "symbol": "USDT.eth", "type": "METER", "decimals": 6, diff --git a/blockchains/meter/assets/0xD86e243FC0007e6226B07c9A50C9d70D78299EB5/info.json b/blockchains/meter/assets/0xD86e243FC0007e6226B07c9A50C9d70D78299EB5/info.json index 943e3e580aba6..60f23f65ff2bf 100644 --- a/blockchains/meter/assets/0xD86e243FC0007e6226B07c9A50C9d70D78299EB5/info.json +++ b/blockchains/meter/assets/0xD86e243FC0007e6226B07c9A50C9d70D78299EB5/info.json @@ -1,5 +1,5 @@ { - "name": "USDC from Ethereum on Meter", + "name": "USDC", "symbol": "USDC.eth", "type": "METER", "decimals": 6, diff --git a/blockchains/meter/info/info.json b/blockchains/meter/info/info.json index d4034a871c6c8..2f9ff437873e2 100644 --- a/blockchains/meter/info/info.json +++ b/blockchains/meter/info/info.json @@ -16,8 +16,8 @@ "url": "https://github.com/meterio" }, { - "name": "twitter", - "url": "https://twitter.com/Meter_IO" + "name": "x", + "url": "https://x.com/Meter_IO" }, { "name": "whitepaper", @@ -43,4 +43,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/meter/info/square_logo.png b/blockchains/meter/info/square_logo.png new file mode 100644 index 0000000000000..772b68c2ce319 Binary files /dev/null and b/blockchains/meter/info/square_logo.png differ diff --git a/blockchains/meter/tokenlist.json b/blockchains/meter/tokenlist.json index 02d4665d38185..5c0f754e3fcc5 100644 --- a/blockchains/meter/tokenlist.json +++ b/blockchains/meter/tokenlist.json @@ -70,7 +70,7 @@ "asset": "c18000_t0xD86e243FC0007e6226B07c9A50C9d70D78299EB5", "type": "METER", "address": "0xD86e243FC0007e6226B07c9A50C9d70D78299EB5", - "name": "USDC from Ethereum on Meter", + "name": "USDC", "symbol": "USDC.eth", "decimals": 6, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/metter/assets/0xD86e243FC0007e6226B07c9A50C9d70D78299EB5/logo.png" @@ -79,7 +79,7 @@ "asset": "c18000_t0x5Fa41671c48e3C951AfC30816947126CCC8C162e", "type": "METER", "address": "0x5Fa41671c48e3C951AfC30816947126CCC8C162e", - "name": "USDT from Ethereum on Meter", + "name": "Tether", "symbol": "USDT.eth", "decimals": 6, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/metter/assets/0x5Fa41671c48e3C951AfC30816947126CCC8C162e/logo.png" diff --git a/blockchains/metis/info/info.json b/blockchains/metis/info/info.json index d1827512132a8..2f228734df611 100644 --- a/blockchains/metis/info/info.json +++ b/blockchains/metis/info/info.json @@ -10,10 +10,13 @@ "rpc_url": "https://andromeda.metis.io/?owner=1088", "decimals": 18, "status": "active", + "tags": [ + "dapp" + ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/metisdao" + "name": "x", + "url": "https://x.com/metisdao" } ] -} +} \ No newline at end of file diff --git a/blockchains/metis/info/square_logo.png b/blockchains/metis/info/square_logo.png new file mode 100644 index 0000000000000..84f6de3beaf60 Binary files /dev/null and b/blockchains/metis/info/square_logo.png differ diff --git a/blockchains/monad/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/info.json b/blockchains/monad/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/info.json new file mode 100644 index 0000000000000..f56cd5eef5eab --- /dev/null +++ b/blockchains/monad/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/info.json @@ -0,0 +1,24 @@ +{ + "name": "AUSD", + "website": "https://www.agora.finance/", + "description": "AUSD, a digital dollar minted 1:1 with USD fiat. AUSD is designed to be a secure digital currency, utilizing one of the world’s largest custodian banks to safeguard assets.", + "explorer": "https://monadvision.com/token/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a", + "type": "MONAD", + "symbol": "AUSD", + "decimals": 6, + "status": "active", + "id": "0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/agora-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/agora-dollar" + } + ] +} \ No newline at end of file diff --git a/blockchains/monad/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/logo.png b/blockchains/monad/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/logo.png new file mode 100644 index 0000000000000..43529877065ec Binary files /dev/null and b/blockchains/monad/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/logo.png differ diff --git a/blockchains/monad/assets/0x01bFF41798a0BcF287b996046Ca68b395DbC1071/info.json b/blockchains/monad/assets/0x01bFF41798a0BcF287b996046Ca68b395DbC1071/info.json new file mode 100644 index 0000000000000..8a7fa8fee2092 --- /dev/null +++ b/blockchains/monad/assets/0x01bFF41798a0BcF287b996046Ca68b395DbC1071/info.json @@ -0,0 +1,24 @@ +{ + "name": "XAUt0", + "website": "https://gold.usdt0.to/", + "description": "XAUt0 is the omnichain version of Tether Gold, with each token representing one troy ounce of real, physical gold stored in a Swiss vault and verified under ISAE 3000 standards. And unlike most other gold investments, XAUt0 gives you full digital mobility and physical redeemability. You can hold it, trade it, lend it, or move it across chains while your asset remains physically backed and digitally composable. Beyond tokenized gold, XAUt0 is programmable, liquid gold built for the digital economy.", + "explorer": "https://monadvision.com/token/0x01bFF41798a0BcF287b996046Ca68b395DbC1071", + "type": "MONAD", + "symbol": "XAUt0", + "decimals": 6, + "status": "active", + "id": "0x01bFF41798a0BcF287b996046Ca68b395DbC1071", + "tags": [ + "defi" + ], + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tether-gold-tokens" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tether-gold-tokens/" + } + ] +} \ No newline at end of file diff --git a/blockchains/monad/assets/0x01bFF41798a0BcF287b996046Ca68b395DbC1071/logo.png b/blockchains/monad/assets/0x01bFF41798a0BcF287b996046Ca68b395DbC1071/logo.png new file mode 100644 index 0000000000000..d82a023ee9430 Binary files /dev/null and b/blockchains/monad/assets/0x01bFF41798a0BcF287b996046Ca68b395DbC1071/logo.png differ diff --git a/blockchains/monad/assets/0x04f8c38AE80BcF690B947f60F62BdA18145c3D67/info.json b/blockchains/monad/assets/0x04f8c38AE80BcF690B947f60F62BdA18145c3D67/info.json new file mode 100644 index 0000000000000..f0084609ea48a --- /dev/null +++ b/blockchains/monad/assets/0x04f8c38AE80BcF690B947f60F62BdA18145c3D67/info.json @@ -0,0 +1,20 @@ +{ + "name": "Monad Vault", + "website": "https://app.mellow.finance/vaults/monad-vault", + "description": "MVT is the shared token of Monad Vault. The Monad Vault provides diversified exposure to the ecosystem's core collateral, money markets, and stable liquidity venues to support ecosystem expansion through incentives and conservative risk management.", + "explorer": "https://monadvision.com/token/0x04f8c38AE80BcF690B947f60F62BdA18145c3D67", + "type": "MONAD", + "symbol": "MVT", + "decimals": 18, + "status": "active", + "id": "0x04f8c38AE80BcF690B947f60F62BdA18145c3D67", + "tags": [ + "staking" + ], + "links": [ + { + "name": "whitepaper", + "url": "https://docs.mellow.finance/mellow-vaults-overview" + } + ] +} \ No newline at end of file diff --git a/blockchains/monad/assets/0x04f8c38AE80BcF690B947f60F62BdA18145c3D67/logo.png b/blockchains/monad/assets/0x04f8c38AE80BcF690B947f60F62BdA18145c3D67/logo.png new file mode 100644 index 0000000000000..5c5fa99743cbd Binary files /dev/null and b/blockchains/monad/assets/0x04f8c38AE80BcF690B947f60F62BdA18145c3D67/logo.png differ diff --git a/blockchains/monad/assets/0x0555E30da8f98308EdB960aa94C0Db47230d2B9c/info.json b/blockchains/monad/assets/0x0555E30da8f98308EdB960aa94C0Db47230d2B9c/info.json new file mode 100644 index 0000000000000..6d5ecdb4b04ba --- /dev/null +++ b/blockchains/monad/assets/0x0555E30da8f98308EdB960aa94C0Db47230d2B9c/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped BTC", + "website": "https://wbtc.network/", + "description": "WBTC — first and largest tokenized Bitcoin, 1:1 with BTC across multiple chains. Wrapped Bitcoin is a tokenized version of Bitcoin (BTC) that runs on the Ethereum (ETH) blockchain.", + "explorer": "https://monadvision.com/token/0x0555E30da8f98308EdB960aa94C0Db47230d2B9c", + "type": "MONAD", + "symbol": "WBTC", + "decimals": 8, + "status": "active", + "id": "0x0555E30da8f98308EdB960aa94C0Db47230d2B9c", + "tags": [ + "wrapped" + ], + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wrapped-bitcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-bitcoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/monad/assets/0x0555E30da8f98308EdB960aa94C0Db47230d2B9c/logo.png b/blockchains/monad/assets/0x0555E30da8f98308EdB960aa94C0Db47230d2B9c/logo.png new file mode 100644 index 0000000000000..fb329c4dbc571 Binary files /dev/null and b/blockchains/monad/assets/0x0555E30da8f98308EdB960aa94C0Db47230d2B9c/logo.png differ diff --git a/blockchains/monad/assets/0x0c65A0BC65a5D819235B71F554D210D3F80E0852/info.json b/blockchains/monad/assets/0x0c65A0BC65a5D819235B71F554D210D3F80E0852/info.json new file mode 100644 index 0000000000000..c881f1a0ce5cd --- /dev/null +++ b/blockchains/monad/assets/0x0c65A0BC65a5D819235B71F554D210D3F80E0852/info.json @@ -0,0 +1,20 @@ +{ + "name": "aPriori Monad LST", + "website": "https://www.apr.io/", + "description": "aPriori empowers staking on the Monad blockchain by unlocking staked liquidity and enhancing yield with MEV rewards", + "explorer": "https://monadvision.com/token/0x0c65A0BC65a5D819235B71F554D210D3F80E0852", + "type": "MONAD", + "symbol": "aprMON", + "decimals": 18, + "status": "active", + "id": "0x0c65A0BC65a5D819235B71F554D210D3F80E0852", + "tags": [ + "staking" + ], + "links": [ + { + "name": "whitepaper", + "url": "https://apriori-docs.gitbook.io/apriori-docs/aprmon/aprmon-basics" + } + ] +} \ No newline at end of file diff --git a/blockchains/monad/assets/0x0c65A0BC65a5D819235B71F554D210D3F80E0852/logo.png b/blockchains/monad/assets/0x0c65A0BC65a5D819235B71F554D210D3F80E0852/logo.png new file mode 100644 index 0000000000000..f22d76e6e2f0a Binary files /dev/null and b/blockchains/monad/assets/0x0c65A0BC65a5D819235B71F554D210D3F80E0852/logo.png differ diff --git a/blockchains/monad/assets/0x103222f020e98Bba0AD9809A011FDF8e6F067496/info.json b/blockchains/monad/assets/0x103222f020e98Bba0AD9809A011FDF8e6F067496/info.json new file mode 100644 index 0000000000000..2d77274fcbcd7 --- /dev/null +++ b/blockchains/monad/assets/0x103222f020e98Bba0AD9809A011FDF8e6F067496/info.json @@ -0,0 +1,20 @@ +{ + "name": "earnAUSD", + "website": "https://www.upshift.finance/", + "description": "earnAUSD is the anchor liquid yield token on Monad, and part of the Liquid Earn campaign designed to distribute yield to stablecoin holders across the ecosystem.", + "explorer": "https://monadvision.com/token/0x103222f020e98Bba0AD9809A011FDF8e6F067496", + "type": "MONAD", + "symbol": "earnAUSD", + "decimals": 6, + "status": "active", + "id": "0x103222f020e98Bba0AD9809A011FDF8e6F067496", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/upshift_fi" + } + ] +} \ No newline at end of file diff --git a/blockchains/monad/assets/0x103222f020e98Bba0AD9809A011FDF8e6F067496/logo.png b/blockchains/monad/assets/0x103222f020e98Bba0AD9809A011FDF8e6F067496/logo.png new file mode 100644 index 0000000000000..6053d35430fb8 Binary files /dev/null and b/blockchains/monad/assets/0x103222f020e98Bba0AD9809A011FDF8e6F067496/logo.png differ diff --git a/blockchains/monad/assets/0x10Aeaf63194db8d453d4D85a06E5eFE1dd0b5417/info.json b/blockchains/monad/assets/0x10Aeaf63194db8d453d4D85a06E5eFE1dd0b5417/info.json new file mode 100644 index 0000000000000..3f8e015890e53 --- /dev/null +++ b/blockchains/monad/assets/0x10Aeaf63194db8d453d4D85a06E5eFE1dd0b5417/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wrapped liquid staked Ether 2.0", + "website": "https://lido.fi/", + "description": "Ethereum's leading liquid staking token, with best-in-class security, deepest liquidity and competitive rewards", + "explorer": "https://monadvision.com/token/0x10Aeaf63194db8d453d4D85a06E5eFE1dd0b5417", + "type": "MONAD", + "symbol": "wstETH", + "decimals": 18, + "status": "active", + "id": "0x10Aeaf63194db8d453d4D85a06E5eFE1dd0b5417", + "tags": [ + "wrapped", + "staking" + ], + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wrapped-steth" + } + ] +} \ No newline at end of file diff --git a/blockchains/monad/assets/0x10Aeaf63194db8d453d4D85a06E5eFE1dd0b5417/logo.png b/blockchains/monad/assets/0x10Aeaf63194db8d453d4D85a06E5eFE1dd0b5417/logo.png new file mode 100644 index 0000000000000..3842d2f93b54b Binary files /dev/null and b/blockchains/monad/assets/0x10Aeaf63194db8d453d4D85a06E5eFE1dd0b5417/logo.png differ diff --git a/blockchains/monad/assets/0x111111d2bf19e43C34263401e0CAd979eD1cdb61/info.json b/blockchains/monad/assets/0x111111d2bf19e43C34263401e0CAd979eD1cdb61/info.json new file mode 100644 index 0000000000000..069b9363222bc --- /dev/null +++ b/blockchains/monad/assets/0x111111d2bf19e43C34263401e0CAd979eD1cdb61/info.json @@ -0,0 +1,24 @@ +{ + "name": "USD1", + "website": "https://worldlibertyfinancial.com/", + "description": "USD1 is a fiat-backed digital asset, designed to maintain a 1:1 equivalence with the U.S. dollar. ", + "explorer": "https://monadvision.com/token/0x111111d2bf19e43C34263401e0CAd979eD1cdb61", + "type": "MONAD", + "symbol": "USD1", + "decimals": 6, + "status": "active", + "id": "0x111111d2bf19e43C34263401e0CAd979eD1cdb61", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd1/" + }, + { + "name": "whitepaper", + "url": "https://static.worldlibertyfinancial.com/docs/gold-paper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/monad/assets/0x111111d2bf19e43C34263401e0CAd979eD1cdb61/logo.png b/blockchains/monad/assets/0x111111d2bf19e43C34263401e0CAd979eD1cdb61/logo.png new file mode 100644 index 0000000000000..9d339a573efde Binary files /dev/null and b/blockchains/monad/assets/0x111111d2bf19e43C34263401e0CAd979eD1cdb61/logo.png differ diff --git a/blockchains/monad/assets/0x1B68626dCa36c7fE922fD2d55E4f631d962dE19c/info.json b/blockchains/monad/assets/0x1B68626dCa36c7fE922fD2d55E4f631d962dE19c/info.json new file mode 100644 index 0000000000000..4417dd46b339a --- /dev/null +++ b/blockchains/monad/assets/0x1B68626dCa36c7fE922fD2d55E4f631d962dE19c/info.json @@ -0,0 +1,20 @@ +{ + "name": "ShMonad", + "website": "https://shmonad.xyz/", + "description": "shMONAD is the first Super Holistic liquid staking protocol built exclusively on Monad, designed by FastLane Labs to enhance security and maximize yield through App-Specific Sequencing and Productive MEV strategies.", + "explorer": "https://monadvision.com/token/0x1B68626dCa36c7fE922fD2d55E4f631d962dE19c", + "type": "MONAD", + "symbol": "shMON", + "decimals": 18, + "status": "active", + "id": "0x1B68626dCa36c7fE922fD2d55E4f631d962dE19c", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/0xFastLane" + } + ] +} \ No newline at end of file diff --git a/blockchains/monad/assets/0x1B68626dCa36c7fE922fD2d55E4f631d962dE19c/logo.png b/blockchains/monad/assets/0x1B68626dCa36c7fE922fD2d55E4f631d962dE19c/logo.png new file mode 100644 index 0000000000000..55f99bb2a6d22 Binary files /dev/null and b/blockchains/monad/assets/0x1B68626dCa36c7fE922fD2d55E4f631d962dE19c/logo.png differ diff --git a/blockchains/monad/assets/0x1D4795A4670033f47f572b910553be0295077b51/info.json b/blockchains/monad/assets/0x1D4795A4670033f47f572b910553be0295077b51/info.json new file mode 100644 index 0000000000000..99c601518b665 --- /dev/null +++ b/blockchains/monad/assets/0x1D4795A4670033f47f572b910553be0295077b51/info.json @@ -0,0 +1,24 @@ +{ + "name": "mcMON", + "website": "https://moonmace.ai/", + "description": "mcMON is Moonmace's non-rebasing liquid staking token (LST).", + "explorer": "https://monadvision.com/token/0x1D4795A4670033f47f572b910553be0295077b51", + "type": "MONAD", + "symbol": "mcMON", + "decimals": 18, + "status": "active", + "id": "0x1D4795A4670033f47f572b910553be0295077b51", + "tags": [ + "staking" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/MoonMace_ai" + }, + { + "name": "whitepaper", + "url": "https://moonmace.gitbook.io/moonmace-docs/introduction" + } + ] +} \ No newline at end of file diff --git a/blockchains/monad/assets/0x1D4795A4670033f47f572b910553be0295077b51/logo.png b/blockchains/monad/assets/0x1D4795A4670033f47f572b910553be0295077b51/logo.png new file mode 100644 index 0000000000000..cd5d5d2a97cee Binary files /dev/null and b/blockchains/monad/assets/0x1D4795A4670033f47f572b910553be0295077b51/logo.png differ diff --git a/blockchains/monad/assets/0x1c22531AA9747d76fFF8F0A43b37954ca67d28e0/info.json b/blockchains/monad/assets/0x1c22531AA9747d76fFF8F0A43b37954ca67d28e0/info.json new file mode 100644 index 0000000000000..4830515810c57 --- /dev/null +++ b/blockchains/monad/assets/0x1c22531AA9747d76fFF8F0A43b37954ca67d28e0/info.json @@ -0,0 +1,24 @@ +{ + "name": "Sumerian ETH", + "website": "https://sumer.money/", + "description": "suETH is a multichain fungible synthetic asset by Sumer.Money pegged to ETH and representing same security characteristics and collateral backing across all supported networks.", + "explorer": "https://monadvision.com/token/0x1c22531AA9747d76fFF8F0A43b37954ca67d28e0", + "type": "MONAD", + "symbol": "suETH", + "decimals": 18, + "status": "active", + "id": "0x1c22531AA9747d76fFF8F0A43b37954ca67d28e0", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/SumerMoney" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sumer-money-sueth" + } + ] +} \ No newline at end of file diff --git a/blockchains/monad/assets/0x1c22531AA9747d76fFF8F0A43b37954ca67d28e0/logo.png b/blockchains/monad/assets/0x1c22531AA9747d76fFF8F0A43b37954ca67d28e0/logo.png new file mode 100644 index 0000000000000..c59eae1c1ecbd Binary files /dev/null and b/blockchains/monad/assets/0x1c22531AA9747d76fFF8F0A43b37954ca67d28e0/logo.png differ diff --git a/blockchains/monad/assets/0x336D414754967C6682B5A665C7DAF6F1409E63e8/info.json b/blockchains/monad/assets/0x336D414754967C6682B5A665C7DAF6F1409E63e8/info.json new file mode 100644 index 0000000000000..d294bf21cb817 --- /dev/null +++ b/blockchains/monad/assets/0x336D414754967C6682B5A665C7DAF6F1409E63e8/info.json @@ -0,0 +1,24 @@ +{ + "name": "mu Bond", + "website": "https://mudigital.net/", + "description": "Mu Digital is an access gateway to the premier investment opportunities in Asia. ", + "explorer": "https://monadvision.com/token/0x336D414754967C6682B5A665C7DAF6F1409E63e8", + "type": "MONAD", + "symbol": "muBOND", + "decimals": 18, + "status": "active", + "id": "0x336D414754967C6682B5A665C7DAF6F1409E63e8", + "tags": [ + "defi" + ], + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mu-digital-mubond" + }, + { + "name": "whitepaper", + "url": "https://docs.mudigital.net/" + } + ] +} \ No newline at end of file diff --git a/blockchains/monad/assets/0x336D414754967C6682B5A665C7DAF6F1409E63e8/logo.png b/blockchains/monad/assets/0x336D414754967C6682B5A665C7DAF6F1409E63e8/logo.png new file mode 100644 index 0000000000000..946d91b316903 Binary files /dev/null and b/blockchains/monad/assets/0x336D414754967C6682B5A665C7DAF6F1409E63e8/logo.png differ diff --git a/blockchains/monad/assets/0x37D6382B6889cCeF8d6871A8b60E667115eDDBcF/info.json b/blockchains/monad/assets/0x37D6382B6889cCeF8d6871A8b60E667115eDDBcF/info.json new file mode 100644 index 0000000000000..66ca9ccc3be31 --- /dev/null +++ b/blockchains/monad/assets/0x37D6382B6889cCeF8d6871A8b60E667115eDDBcF/info.json @@ -0,0 +1,24 @@ +{ + "name": "pufETH", + "website": "https://www.puffer.fi/", + "description": "Puffer is a decentralized native liquid restaking protocol (nLRP) built on Eigenlayer.", + "explorer": "https://monadvision.com/token/0x37D6382B6889cCeF8d6871A8b60E667115eDDBcF", + "type": "MONAD", + "symbol": "pufETH", + "decimals": 18, + "status": "active", + "id": "0x37D6382B6889cCeF8d6871A8b60E667115eDDBcF", + "tags": [ + "defi" + ], + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pufeth/" + }, + { + "name": "x", + "url": "https://x.com/puffer_finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/monad/assets/0x37D6382B6889cCeF8d6871A8b60E667115eDDBcF/logo.png b/blockchains/monad/assets/0x37D6382B6889cCeF8d6871A8b60E667115eDDBcF/logo.png new file mode 100644 index 0000000000000..f1d6c7ab3c50d Binary files /dev/null and b/blockchains/monad/assets/0x37D6382B6889cCeF8d6871A8b60E667115eDDBcF/logo.png differ diff --git a/blockchains/monad/assets/0x3bd359C1119dA7Da1D913D1C4D2B7c461115433A/info.json b/blockchains/monad/assets/0x3bd359C1119dA7Da1D913D1C4D2B7c461115433A/info.json new file mode 100644 index 0000000000000..d556f885825d1 --- /dev/null +++ b/blockchains/monad/assets/0x3bd359C1119dA7Da1D913D1C4D2B7c461115433A/info.json @@ -0,0 +1,32 @@ +{ + "name": "Wrapped MON", + "website": "https://www.monad.xyz/", + "description": "Monad is a high-performance Layer 1 blockchain that is 100% EVM-compatible. It processes 10,000 transactions per second with near-zero fees and sub-second finality. MON is the native token of the Monad blockchain, used for gas fees and network operations.", + "explorer": "https://monadvision.com/token/0x3bd359C1119dA7Da1D913D1C4D2B7c461115433A", + "type": "MONAD", + "symbol": "WMON", + "decimals": 18, + "status": "active", + "id": "0x3bd359C1119dA7Da1D913D1C4D2B7c461115433A", + "tags": [ + "wrapped" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/monad" + }, + { + "name": "whitepaper", + "url": "https://docs.monad.xyz/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/monad/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/monad" + } + ] +} \ No newline at end of file diff --git a/blockchains/monad/assets/0x3bd359C1119dA7Da1D913D1C4D2B7c461115433A/logo.png b/blockchains/monad/assets/0x3bd359C1119dA7Da1D913D1C4D2B7c461115433A/logo.png new file mode 100644 index 0000000000000..cf48163185e29 Binary files /dev/null and b/blockchains/monad/assets/0x3bd359C1119dA7Da1D913D1C4D2B7c461115433A/logo.png differ diff --git a/blockchains/monad/assets/0x4917a5ec9fCb5e10f47CBB197aBe6aB63be81fE8/info.json b/blockchains/monad/assets/0x4917a5ec9fCb5e10f47CBB197aBe6aB63be81fE8/info.json new file mode 100644 index 0000000000000..a77ac4aec7d96 --- /dev/null +++ b/blockchains/monad/assets/0x4917a5ec9fCb5e10f47CBB197aBe6aB63be81fE8/info.json @@ -0,0 +1,20 @@ +{ + "name": "Asian Dollar", + "website": "https://mudigital.net/", + "description": "Mu Digital is a protocol focused on bringing Asia based fixed income assets onchain through tokenization. ZND (Asia Dollar) represents the senior, yield bearing tranche backed by underlying credit assets.", + "explorer": "https://monadvision.com/token/0x4917a5ec9fCb5e10f47CBB197aBe6aB63be81fE8", + "type": "MONAD", + "symbol": "AZND", + "decimals": 18, + "status": "active", + "id": "0x4917a5ec9fCb5e10f47CBB197aBe6aB63be81fE8", + "tags": [ + "defi" + ], + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mu-digital-aznd" + } + ] +} \ No newline at end of file diff --git a/blockchains/monad/assets/0x4917a5ec9fCb5e10f47CBB197aBe6aB63be81fE8/logo.png b/blockchains/monad/assets/0x4917a5ec9fCb5e10f47CBB197aBe6aB63be81fE8/logo.png new file mode 100644 index 0000000000000..1dbd64d0db690 Binary files /dev/null and b/blockchains/monad/assets/0x4917a5ec9fCb5e10f47CBB197aBe6aB63be81fE8/logo.png differ diff --git a/blockchains/monad/assets/0x754704Bc059F8C67012fEd69BC8A327a5aafb603/info.json b/blockchains/monad/assets/0x754704Bc059F8C67012fEd69BC8A327a5aafb603/info.json new file mode 100644 index 0000000000000..be6883d4a3a14 --- /dev/null +++ b/blockchains/monad/assets/0x754704Bc059F8C67012fEd69BC8A327a5aafb603/info.json @@ -0,0 +1,24 @@ +{ + "name": "USDC", + "website": "https://www.circle.com/", + "description": "USDC is a stablecoin that is pegged to the U.S. dollar on a 1:1 basis. Every unit of this cryptocurrency in circulation is backed up by $1 that is held in reserve, in a mix of cash and short-term U.S. Treasury bonds.", + "explorer": "https://monadvision.com/token/0x754704Bc059F8C67012fEd69BC8A327a5aafb603", + "type": "MONAD", + "symbol": "USDC", + "decimals": 6, + "status": "active", + "id": "0x754704Bc059F8C67012fEd69BC8A327a5aafb603", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/circle" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin" + } + ] +} \ No newline at end of file diff --git a/blockchains/monad/assets/0x754704Bc059F8C67012fEd69BC8A327a5aafb603/logo.png b/blockchains/monad/assets/0x754704Bc059F8C67012fEd69BC8A327a5aafb603/logo.png new file mode 100644 index 0000000000000..4bd3fd91d7770 Binary files /dev/null and b/blockchains/monad/assets/0x754704Bc059F8C67012fEd69BC8A327a5aafb603/logo.png differ diff --git a/blockchains/monad/assets/0x8498312A6B3CbD158bf0c93AbdCF29E6e4F55081/info.json b/blockchains/monad/assets/0x8498312A6B3CbD158bf0c93AbdCF29E6e4F55081/info.json new file mode 100644 index 0000000000000..9d0bbeafb3eff --- /dev/null +++ b/blockchains/monad/assets/0x8498312A6B3CbD158bf0c93AbdCF29E6e4F55081/info.json @@ -0,0 +1,28 @@ +{ + "name": "gMON", + "website": "https://www.magmastaking.xyz/", + "description": "Magma's staking pool allows users to stake their Monad tokens in exchange for liquid staked Monad tokens (gMON). Magma Staked Monad (gMON) represents users MON tokens that are 'staked' or deposited into Magma. gMON can be used to earn staking rewards, or participate in various DeFi platforms, such as providing collateral to take out a loan.", + "explorer": "https://monadvision.com/token/0x8498312A6B3CbD158bf0c93AbdCF29E6e4F55081", + "type": "MONAD", + "symbol": "gMON", + "decimals": 18, + "status": "active", + "id": "0x8498312A6B3CbD158bf0c93AbdCF29E6e4F55081", + "tags": [ + "staking" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/magmastaking" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/magma-staked-monad" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/magma/" + } + ] +} \ No newline at end of file diff --git a/blockchains/monad/assets/0x8498312A6B3CbD158bf0c93AbdCF29E6e4F55081/logo.png b/blockchains/monad/assets/0x8498312A6B3CbD158bf0c93AbdCF29E6e4F55081/logo.png new file mode 100644 index 0000000000000..9ecce14dd6eee Binary files /dev/null and b/blockchains/monad/assets/0x8498312A6B3CbD158bf0c93AbdCF29E6e4F55081/logo.png differ diff --git a/blockchains/monad/assets/0x8BF591Eae535f93a242D5A954d3Cde648b48A5A8/info.json b/blockchains/monad/assets/0x8BF591Eae535f93a242D5A954d3Cde648b48A5A8/info.json new file mode 100644 index 0000000000000..67b0f83f9013c --- /dev/null +++ b/blockchains/monad/assets/0x8BF591Eae535f93a242D5A954d3Cde648b48A5A8/info.json @@ -0,0 +1,20 @@ +{ + "name": "Sumerian USD", + "website": "https://sumer.money/", + "description": "suUSD is a multichain fungible synthetic asset by Sumer.Money pegged to USD and representing the same security characteristics and collateral backing across all supported networks.", + "explorer": "https://monadvision.com/token/0x8BF591Eae535f93a242D5A954d3Cde648b48A5A8", + "type": "MONAD", + "symbol": "suUSD", + "decimals": 18, + "status": "active", + "id": "0x8BF591Eae535f93a242D5A954d3Cde648b48A5A8", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sumer-money-suusd" + } + ] +} \ No newline at end of file diff --git a/blockchains/monad/assets/0x8BF591Eae535f93a242D5A954d3Cde648b48A5A8/logo.png b/blockchains/monad/assets/0x8BF591Eae535f93a242D5A954d3Cde648b48A5A8/logo.png new file mode 100644 index 0000000000000..cdfe8db44aa5c Binary files /dev/null and b/blockchains/monad/assets/0x8BF591Eae535f93a242D5A954d3Cde648b48A5A8/logo.png differ diff --git a/blockchains/monad/assets/0x91b81bfbe3A747230F0529Aa28d8b2Bc898E6D56/info.json b/blockchains/monad/assets/0x91b81bfbe3A747230F0529Aa28d8b2Bc898E6D56/info.json new file mode 100644 index 0000000000000..98ec352f40960 --- /dev/null +++ b/blockchains/monad/assets/0x91b81bfbe3A747230F0529Aa28d8b2Bc898E6D56/info.json @@ -0,0 +1,20 @@ +{ + "name": "LeverUp MON", + "website": "https://leverup.xyz/", + "description": "LeverUp is an LP-Free perpetuals exchange delivering uncapped open interest, 100% fee redistribution to traders, and leverage up to 1001x", + "explorer": "https://monadvision.com/token/0x91b81bfbe3A747230F0529Aa28d8b2Bc898E6D56", + "type": "MONAD", + "symbol": "LVMON", + "decimals": 18, + "status": "active", + "id": "0x91b81bfbe3A747230F0529Aa28d8b2Bc898E6D56", + "tags": [ + "defi" + ], + "links": [ + { + "name": "whitepaper", + "url": "https://leverup.gitbook.io/docs/" + } + ] +} \ No newline at end of file diff --git a/blockchains/monad/assets/0x91b81bfbe3A747230F0529Aa28d8b2Bc898E6D56/logo.png b/blockchains/monad/assets/0x91b81bfbe3A747230F0529Aa28d8b2Bc898E6D56/logo.png new file mode 100644 index 0000000000000..44bd83eee9bee Binary files /dev/null and b/blockchains/monad/assets/0x91b81bfbe3A747230F0529Aa28d8b2Bc898E6D56/logo.png differ diff --git a/blockchains/monad/assets/0xA3227C5969757783154C60bF0bC1944180ed81B9/info.json b/blockchains/monad/assets/0xA3227C5969757783154C60bF0bC1944180ed81B9/info.json new file mode 100644 index 0000000000000..b3bf28456fff0 --- /dev/null +++ b/blockchains/monad/assets/0xA3227C5969757783154C60bF0bC1944180ed81B9/info.json @@ -0,0 +1,24 @@ +{ + "name": "Kintsu Staked Monad", + "website": "https://kintsu.xyz/", + "description": "The Kintsu Liquid Staking protocol automates the process by which users can pool their MON tokens together for network staking via non-custodial smart contracts. Kintsu creates sMON, a liquid version of the core MON gas token.", + "explorer": "https://monadvision.com/token/0xA3227C5969757783154C60bF0bC1944180ed81B9", + "type": "MONAD", + "symbol": "sMON", + "decimals": 18, + "status": "active", + "id": "0xA3227C5969757783154C60bF0bC1944180ed81B9", + "tags": [ + "staking" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/Kintsu" + }, + { + "name": "whitepaper", + "url": "https://docs.kintsu.xyz/supported-blockchains/kintsu-on-monad" + } + ] +} \ No newline at end of file diff --git a/blockchains/monad/assets/0xA3227C5969757783154C60bF0bC1944180ed81B9/logo.png b/blockchains/monad/assets/0xA3227C5969757783154C60bF0bC1944180ed81B9/logo.png new file mode 100644 index 0000000000000..7c5739c47c3fc Binary files /dev/null and b/blockchains/monad/assets/0xA3227C5969757783154C60bF0bC1944180ed81B9/logo.png differ diff --git a/blockchains/monad/assets/0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072/info.json b/blockchains/monad/assets/0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072/info.json new file mode 100644 index 0000000000000..a2c9a66606d94 --- /dev/null +++ b/blockchains/monad/assets/0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072/info.json @@ -0,0 +1,24 @@ +{ + "name": "Bitcoin", + "website": "https://www.lombard.finance/katana/", + "description": "BTC.b transforms passive Bitcoin holdings into productive capital without sacrificing security or custody. Bridge once, access everything—from simple swaps to complex DeFi strategies. Your Bitcoin shouldn't sit idle. Make it work for you.", + "explorer": "https://monadvision.com/token/0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", + "type": "MONAD", + "symbol": "BTC.b", + "decimals": 8, + "status": "active", + "id": "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/Lombard_Finance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bitcoin-on-katana" + } + ] +} \ No newline at end of file diff --git a/blockchains/monad/assets/0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072/logo.png b/blockchains/monad/assets/0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072/logo.png new file mode 100644 index 0000000000000..75278db75a5f0 Binary files /dev/null and b/blockchains/monad/assets/0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072/logo.png differ diff --git a/blockchains/monad/assets/0xEE8c0E9f1BFFb4Eb878d8f15f368A02a35481242/info.json b/blockchains/monad/assets/0xEE8c0E9f1BFFb4Eb878d8f15f368A02a35481242/info.json new file mode 100644 index 0000000000000..f3beb741886d8 --- /dev/null +++ b/blockchains/monad/assets/0xEE8c0E9f1BFFb4Eb878d8f15f368A02a35481242/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Ether", + "website": "https://gemwallet.com/weth/", + "description": "WETH (Wrapped Ethereum) is a tokenized version of Ethereum (ETH).", + "explorer": "https://monadvision.com/token/0xEE8c0E9f1BFFb4Eb878d8f15f368A02a35481242", + "type": "MONAD", + "symbol": "WETH", + "decimals": 18, + "status": "active", + "id": "0xEE8c0E9f1BFFb4Eb878d8f15f368A02a35481242", + "tags": [ + "wrapped" + ], + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/weth" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/weth/" + } + ] +} \ No newline at end of file diff --git a/blockchains/monad/assets/0xEE8c0E9f1BFFb4Eb878d8f15f368A02a35481242/logo.png b/blockchains/monad/assets/0xEE8c0E9f1BFFb4Eb878d8f15f368A02a35481242/logo.png new file mode 100644 index 0000000000000..a4d89b6489cb0 Binary files /dev/null and b/blockchains/monad/assets/0xEE8c0E9f1BFFb4Eb878d8f15f368A02a35481242/logo.png differ diff --git a/blockchains/monad/assets/0xFD44B35139Ae53FFF7d8F2A9869c503D987f00d1/info.json b/blockchains/monad/assets/0xFD44B35139Ae53FFF7d8F2A9869c503D987f00d1/info.json new file mode 100644 index 0000000000000..83fabe3891870 --- /dev/null +++ b/blockchains/monad/assets/0xFD44B35139Ae53FFF7d8F2A9869c503D987f00d1/info.json @@ -0,0 +1,20 @@ +{ + "name": "LeverUp USD", + "website": "https://leverup.xyz/", + "description": "LeverUp is an LP-Free perpetuals exchange delivering uncapped open interest, 100% fee redistribution to traders, and leverage up to 1001x", + "explorer": "https://monadvision.com/token/0xFD44B35139Ae53FFF7d8F2A9869c503D987f00d1", + "type": "MONAD", + "symbol": "LVUSD", + "decimals": 18, + "status": "active", + "id": "0xFD44B35139Ae53FFF7d8F2A9869c503D987f00d1", + "tags": [ + "defi" + ], + "links": [ + { + "name": "whitepaper", + "url": "https://leverup.gitbook.io/docs/" + } + ] +} \ No newline at end of file diff --git a/blockchains/monad/assets/0xFD44B35139Ae53FFF7d8F2A9869c503D987f00d1/logo.png b/blockchains/monad/assets/0xFD44B35139Ae53FFF7d8F2A9869c503D987f00d1/logo.png new file mode 100644 index 0000000000000..6ddb0e8d38ca7 Binary files /dev/null and b/blockchains/monad/assets/0xFD44B35139Ae53FFF7d8F2A9869c503D987f00d1/logo.png differ diff --git a/blockchains/monad/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/info.json b/blockchains/monad/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/info.json new file mode 100644 index 0000000000000..04ccdb74234e3 --- /dev/null +++ b/blockchains/monad/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/info.json @@ -0,0 +1,28 @@ +{ + "name": "Folks Finance", + "website": "https://folks.finance/", + "description": "Folks Finance is a crosschain decentralized finance (DeFi) protocol that enables users to supply, borrow, and manage digital assets across multiple blockchains from a single platform.", + "explorer": "https://monadvision.com/token/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B", + "type": "MONAD", + "symbol": "FOLKS", + "decimals": 6, + "status": "active", + "id": "0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B", + "tags": [ + "defi" + ], + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/folks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/folks-finance/" + }, + { + "name": "x", + "url": "https://x.com/FolksFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/monad/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/logo.png b/blockchains/monad/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/logo.png new file mode 100644 index 0000000000000..1943086d80ab7 Binary files /dev/null and b/blockchains/monad/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/logo.png differ diff --git a/blockchains/monad/assets/0xe7cd86e13AC4309349F30B3435a9d337750fC82D/info.json b/blockchains/monad/assets/0xe7cd86e13AC4309349F30B3435a9d337750fC82D/info.json new file mode 100644 index 0000000000000..5f392faf77136 --- /dev/null +++ b/blockchains/monad/assets/0xe7cd86e13AC4309349F30B3435a9d337750fC82D/info.json @@ -0,0 +1,32 @@ +{ + "name": "USDT0", + "website": "https://usdt0.to/", + "description": "USDT0 is how USDT gets to new chains, such as Ink, Berachain, MegaETH, and Plasma. USDT0 is secure and omnichain.", + "explorer": "https://monadvision.com/token/0xe7cd86e13AC4309349F30B3435a9d337750fC82D", + "type": "MONAD", + "symbol": "USDT0", + "decimals": 6, + "status": "active", + "id": "0xe7cd86e13AC4309349F30B3435a9d337750fC82D", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usdt0" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usdt0/" + }, + { + "name": "whitepaper", + "url": "https://docs.usdt0.to/" + }, + { + "name": "x", + "url": "https://x.com/usdt0_to" + } + ] +} \ No newline at end of file diff --git a/blockchains/monad/assets/0xe7cd86e13AC4309349F30B3435a9d337750fC82D/logo.png b/blockchains/monad/assets/0xe7cd86e13AC4309349F30B3435a9d337750fC82D/logo.png new file mode 100644 index 0000000000000..dabf2def457bf Binary files /dev/null and b/blockchains/monad/assets/0xe7cd86e13AC4309349F30B3435a9d337750fC82D/logo.png differ diff --git a/blockchains/monad/assets/0xe85411C030fB32A9D8b14Bbbc6CB19417391F711/info.json b/blockchains/monad/assets/0xe85411C030fB32A9D8b14Bbbc6CB19417391F711/info.json new file mode 100644 index 0000000000000..11987f47806a4 --- /dev/null +++ b/blockchains/monad/assets/0xe85411C030fB32A9D8b14Bbbc6CB19417391F711/info.json @@ -0,0 +1,20 @@ +{ + "name": "Sumerian BTC", + "website": "https://sumer.money/", + "description": "Synthetic asset under sumer.money", + "explorer": "https://monadvision.com/token/0xe85411C030fB32A9D8b14Bbbc6CB19417391F711", + "type": "MONAD", + "symbol": "suBTC", + "decimals": 18, + "status": "active", + "id": "0xe85411C030fB32A9D8b14Bbbc6CB19417391F711", + "tags": [ + "defi" + ], + "links": [ + { + "name": "whitepaper", + "url": "https://docs.sumer.money/frequently-asked-questions/minting-synthetic-assets-sutokens" + } + ] +} \ No newline at end of file diff --git a/blockchains/monad/assets/0xe85411C030fB32A9D8b14Bbbc6CB19417391F711/logo.png b/blockchains/monad/assets/0xe85411C030fB32A9D8b14Bbbc6CB19417391F711/logo.png new file mode 100644 index 0000000000000..be993900e9211 Binary files /dev/null and b/blockchains/monad/assets/0xe85411C030fB32A9D8b14Bbbc6CB19417391F711/logo.png differ diff --git a/blockchains/monad/assets/0xea17E5a9efEBf1477dB45082d67010E2245217f1/info.json b/blockchains/monad/assets/0xea17E5a9efEBf1477dB45082d67010E2245217f1/info.json new file mode 100644 index 0000000000000..c7b91bdcd188f --- /dev/null +++ b/blockchains/monad/assets/0xea17E5a9efEBf1477dB45082d67010E2245217f1/info.json @@ -0,0 +1,28 @@ +{ + "name": "Wrapped SOL", + "website": "https://solana.com/", + "description": "Wrapped Solana (SOL) is a cryptocurrency token and operates on the Solana platform.", + "explorer": "https://monadvision.com/token/0xea17E5a9efEBf1477dB45082d67010E2245217f1", + "type": "MONAD", + "symbol": "SOL", + "decimals": 9, + "status": "active", + "id": "0xea17E5a9efEBf1477dB45082d67010E2245217f1", + "tags": [ + "defi" + ], + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wrapped-solana" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-solana/" + }, + { + "name": "x", + "url": "https://x.com/solana" + } + ] +} \ No newline at end of file diff --git a/blockchains/monad/assets/0xea17E5a9efEBf1477dB45082d67010E2245217f1/logo.png b/blockchains/monad/assets/0xea17E5a9efEBf1477dB45082d67010E2245217f1/logo.png new file mode 100644 index 0000000000000..e89409c893b3f Binary files /dev/null and b/blockchains/monad/assets/0xea17E5a9efEBf1477dB45082d67010E2245217f1/logo.png differ diff --git a/blockchains/monad/assets/0xecAc9C5F704e954931349Da37F60E39f515c11c1/info.json b/blockchains/monad/assets/0xecAc9C5F704e954931349Da37F60E39f515c11c1/info.json new file mode 100644 index 0000000000000..be00c8085442f --- /dev/null +++ b/blockchains/monad/assets/0xecAc9C5F704e954931349Da37F60E39f515c11c1/info.json @@ -0,0 +1,24 @@ +{ + "name": "Lombard Staked Bitcoin", + "website": "https://www.lombard.finance/", + "description": "Lombard unlocks Bitcoin's potential as a dynamic financial tool by connecting it to the world of decentralized finance (DeFi).", + "explorer": "https://monadvision.com/token/0xecAc9C5F704e954931349Da37F60E39f515c11c1", + "type": "MONAD", + "symbol": "LBTC", + "decimals": 8, + "status": "active", + "id": "0xecAc9C5F704e954931349Da37F60E39f515c11c1", + "tags": [ + "defi" + ], + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/lombard-staked-btc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lombard-staked-btc/" + } + ] +} \ No newline at end of file diff --git a/blockchains/monad/assets/0xecAc9C5F704e954931349Da37F60E39f515c11c1/logo.png b/blockchains/monad/assets/0xecAc9C5F704e954931349Da37F60E39f515c11c1/logo.png new file mode 100644 index 0000000000000..4a1c81261f710 Binary files /dev/null and b/blockchains/monad/assets/0xecAc9C5F704e954931349Da37F60E39f515c11c1/logo.png differ diff --git a/blockchains/monad/info/info.json b/blockchains/monad/info/info.json new file mode 100644 index 0000000000000..84048935f5ffc --- /dev/null +++ b/blockchains/monad/info/info.json @@ -0,0 +1,31 @@ +{ + "name": "Monad", + "website": "https://www.monad.xyz/", + "description": "Monad is a high-performance Layer 1 blockchain that is 100% EVM-compatible. It processes 10,000 transactions per second with near-zero fees and sub-second finality. MON is the native token of the Monad blockchain, used for gas fees and network operations.", + "explorer": "https://monvision.io/", + "symbol": "MON", + "type": "coin", + "decimals": 18, + "status": "active", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/monad" + }, + { + "name": "whitepaper", + "url": "https://docs.monad.xyz/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/monad/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/monad" + } + ] +} diff --git a/blockchains/monad/info/logo.png b/blockchains/monad/info/logo.png new file mode 100644 index 0000000000000..85d26b3a34d03 Binary files /dev/null and b/blockchains/monad/info/logo.png differ diff --git a/blockchains/monad/info/square_logo.png b/blockchains/monad/info/square_logo.png new file mode 100644 index 0000000000000..37c7606140011 Binary files /dev/null and b/blockchains/monad/info/square_logo.png differ diff --git a/blockchains/moonbasealpha/info/info.json b/blockchains/moonbasealpha/info/info.json index dae6a33e15cf1..78489c9fd5e1f 100644 --- a/blockchains/moonbasealpha/info/info.json +++ b/blockchains/moonbasealpha/info/info.json @@ -1,11 +1,11 @@ { - "name": "Moonbase Alpha Testnet", - "website": "https://moon.based.money", - "description": "The first Moonbeam TestNet, named Moonbase Alpha, aims to provide developers with a place to start experimenting and building on Moonbeam in a shared environment.", - "explorer": "https://moonbase-blockscout.testnet.moonbeam.network/", - "symbol": "DEV", - "rpc_url": "https://rpc.api.moonbase.moonbeam.network", - "type": "coin", - "decimals": 18, - "status": "active" -} \ No newline at end of file + "name": "Moonbase Alpha Testnet", + "website": "https://moonbeam.network", + "description": "The first Moonbeam TestNet, named Moonbase Alpha, aims to provide developers with a place to start experimenting and building on Moonbeam in a shared environment.", + "explorer": "https://moonbase.moonscan.io", + "symbol": "DEV", + "rpc_url": "https://rpc.api.moonbase.moonbeam.network", + "type": "coin", + "decimals": 18, + "status": "active" +} diff --git a/blockchains/moonbasealpha/info/logo.png b/blockchains/moonbasealpha/info/logo.png index a66722e6a4b01..23a56362e3300 100644 Binary files a/blockchains/moonbasealpha/info/logo.png and b/blockchains/moonbasealpha/info/logo.png differ diff --git a/blockchains/moonbasealpha/info/square_logo.png b/blockchains/moonbasealpha/info/square_logo.png new file mode 100644 index 0000000000000..793f7b4a3944e Binary files /dev/null and b/blockchains/moonbasealpha/info/square_logo.png differ diff --git a/blockchains/moonbeam/assets/0x467719aD09025FcC6cF6F8311755809d45a5E5f3/info.json b/blockchains/moonbeam/assets/0x467719aD09025FcC6cF6F8311755809d45a5E5f3/info.json index df6afbf862b9f..8b23a5c343d3e 100644 --- a/blockchains/moonbeam/assets/0x467719aD09025FcC6cF6F8311755809d45a5E5f3/info.json +++ b/blockchains/moonbeam/assets/0x467719aD09025FcC6cF6F8311755809d45a5E5f3/info.json @@ -10,8 +10,8 @@ "id": "0x467719aD09025FcC6cF6F8311755809d45a5E5f3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/axelarcore" + "name": "x", + "url": "https://x.com/axelarcore" }, { "name": "github", @@ -65,4 +65,4 @@ "tags": [ "wrapped" ] -} +} \ No newline at end of file diff --git a/blockchains/moonbeam/assets/0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F/info.json b/blockchains/moonbeam/assets/0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F/info.json new file mode 100644 index 0000000000000..4a5954fef006d --- /dev/null +++ b/blockchains/moonbeam/assets/0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F/info.json @@ -0,0 +1,41 @@ +{ + "name": "BNB pegged BUSD", + "website": "https://paxos.com/busd", + "description": "BNB pegged BUSD is a token issued by Binance on Smart Chain; its price is pegged to BUSD (BUSD ERC20) at a ratio of 1:1.", + "explorer": "https://moonscan.io/token/0xa649325aa7c5093d12d6f98eb4378deae68ce23f", + "research": "https://research.binance.com/en/projects/binance-usd", + "type": "MOONBEAM", + "symbol": "BUSD", + "decimals": 18, + "status": "active", + "id": "0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F", + "tags": [ + "binance-peg" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/binance-chain/" + }, + { + "name": "x", + "url": "https://x.com/binance_dex" + }, + { + "name": "blog", + "url": "https://binance.org/en/blog/" + }, + { + "name": "telegram", + "url": "https://t.me/BinanceDEXchange" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/binance-usd/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/binance-usd/" + } + ] +} \ No newline at end of file diff --git a/blockchains/moonbeam/assets/0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F/logo.png b/blockchains/moonbeam/assets/0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F/logo.png new file mode 100644 index 0000000000000..76d02e370b6d6 Binary files /dev/null and b/blockchains/moonbeam/assets/0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F/logo.png differ diff --git a/blockchains/moonbeam/assets/0xCa01a1D0993565291051daFF390892518ACfAD3A/info.json b/blockchains/moonbeam/assets/0xCa01a1D0993565291051daFF390892518ACfAD3A/info.json index 11889a180ed52..59927aa1795c5 100644 --- a/blockchains/moonbeam/assets/0xCa01a1D0993565291051daFF390892518ACfAD3A/info.json +++ b/blockchains/moonbeam/assets/0xCa01a1D0993565291051daFF390892518ACfAD3A/info.json @@ -10,8 +10,8 @@ "id": "0xCa01a1D0993565291051daFF390892518ACfAD3A", "links": [ { - "name": "twitter", - "url": "https://twitter.com/axelarcore" + "name": "x", + "url": "https://x.com/axelarcore" }, { "name": "github", @@ -66,4 +66,4 @@ "stablecoin", "wrapped" ] -} +} \ No newline at end of file diff --git a/blockchains/moonbeam/assets/0xe32C01d807C2290fEe75625CdEde876a0a1c8eC0/info.json b/blockchains/moonbeam/assets/0xe32C01d807C2290fEe75625CdEde876a0a1c8eC0/info.json new file mode 100644 index 0000000000000..5d59780ed7a13 --- /dev/null +++ b/blockchains/moonbeam/assets/0xe32C01d807C2290fEe75625CdEde876a0a1c8eC0/info.json @@ -0,0 +1,41 @@ +{ + "name": "DOVU", + "website": "https://dovu.earth/", + "description": "DOVU is a technology infrastructure provider, powering trusted environmental and carbon digital markets by providing market integrity. The DOVU token serves as the protocol’s utility token, enabling holders to participate and create their own environmental audit trail ecosystems. Token holders can stake their DOVU to earn multiplier rewards, aligning long-term incentives with the protocol’s mission of building reliable carbon markets.", + "explorer": "https://moonscan.io/token/0xe32C01d807C2290fEe75625CdEde876a0a1c8eC0", + "type": "MOONBEAM", + "symbol": "DOVU", + "decimals": 8, + "status": "active", + "id": "0xe32C01d807C2290fEe75625CdEde876a0a1c8eC0", + "tags": [ + "wrapped", + "staking" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/dovuofficial/" + }, + { + "name": "x", + "url": "https://x.com/dovuofficial" + }, + { + "name": "blog", + "url": "https://dovu.earth/en/news/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dovu-earth/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dovu" + }, + { + "name": "youtube", + "url": "https://youtube.com/@DOVUearth" + } + ] +} \ No newline at end of file diff --git a/blockchains/moonbeam/assets/0xe32C01d807C2290fEe75625CdEde876a0a1c8eC0/logo.png b/blockchains/moonbeam/assets/0xe32C01d807C2290fEe75625CdEde876a0a1c8eC0/logo.png new file mode 100644 index 0000000000000..cb6c490323d55 Binary files /dev/null and b/blockchains/moonbeam/assets/0xe32C01d807C2290fEe75625CdEde876a0a1c8eC0/logo.png differ diff --git a/blockchains/moonbeam/info/info.json b/blockchains/moonbeam/info/info.json index 9120b9f950f41..3b993174436cb 100644 --- a/blockchains/moonbeam/info/info.json +++ b/blockchains/moonbeam/info/info.json @@ -7,13 +7,16 @@ "symbol": "GLMR", "type": "coin", "coin_type": 1284, - "rpc_url": "https://moonbeam.public.blastapi.io", + "rpc_url": "https://rpc.api.moonbeam.network", "decimals": 18, "status": "active", + "tags": [ + "dapp" + ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/moonbeamnetwork" + "name": "x", + "url": "https://x.com/moonbeamnetwork" } ] -} +} \ No newline at end of file diff --git a/blockchains/moonbeam/info/logo.png b/blockchains/moonbeam/info/logo.png index 356442914c3ce..b71e0edbe4f6e 100644 Binary files a/blockchains/moonbeam/info/logo.png and b/blockchains/moonbeam/info/logo.png differ diff --git a/blockchains/moonbeam/info/square_logo.png b/blockchains/moonbeam/info/square_logo.png new file mode 100644 index 0000000000000..72529e3311256 Binary files /dev/null and b/blockchains/moonbeam/info/square_logo.png differ diff --git a/blockchains/moonriver/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/info.json b/blockchains/moonriver/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/info.json new file mode 100644 index 0000000000000..2fed8cc66c550 --- /dev/null +++ b/blockchains/moonriver/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/info.json @@ -0,0 +1,28 @@ +{ + "name": "Tether", + "website": "https://tether.to", + "description": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar.", + "explorer": "https://moonriver.moonscan.io/token/0xb44a9b6905af7c801311e8f4e76932ee959c663c", + "type": "MOONRIVER", + "symbol": "USDT", + "decimals": 18, + "status": "active", + "id": "0xB44a9B6905aF7c801311e8F4E76932ee959c663C", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/tether.to/" + }, + { + "name": "x", + "url": "https://x.com/Tether_to/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/tether/" + } + ] +} \ No newline at end of file diff --git a/blockchains/moonriver/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/logo.png b/blockchains/moonriver/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/logo.png new file mode 100644 index 0000000000000..f4c1f1e7ecba0 Binary files /dev/null and b/blockchains/moonriver/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/logo.png differ diff --git a/blockchains/moonriver/assets/0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D/info.json b/blockchains/moonriver/assets/0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D/info.json new file mode 100644 index 0000000000000..9f1275650b1a0 --- /dev/null +++ b/blockchains/moonriver/assets/0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D/info.json @@ -0,0 +1,36 @@ +{ + "name": "USDC", + "website": "https://centre.io/usdc", + "description": "USDC is a fully collateralized US dollar stablecoin, an Ethereum powered coin and is the brainchild of CENTRE, an open source project bootstrapped by contributions from Circle and Coinbase.", + "explorer": "https://moonriver.moonscan.io/token/0xe3f5a90f9cb311505cd691a46596599aa1a0ad7d", + "type": "MOONRIVER", + "symbol": "USDC", + "decimals": 6, + "status": "active", + "id": "0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/moonriver/assets/0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D/logo.png b/blockchains/moonriver/assets/0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D/logo.png new file mode 100644 index 0000000000000..c4def0472868c Binary files /dev/null and b/blockchains/moonriver/assets/0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D/logo.png differ diff --git a/blockchains/moonriver/info/info.json b/blockchains/moonriver/info/info.json index ea8bdb2701f85..f1c3e5f8f8bac 100644 --- a/blockchains/moonriver/info/info.json +++ b/blockchains/moonriver/info/info.json @@ -7,13 +7,13 @@ "symbol": "MOVR", "type": "coin", "coin_type": 1285, - "rpc_url": "https://moonriver.public.blastapi.io", + "rpc_url": "https://rpc.api.moonriver.moonbeam.network", "decimals": 18, "status": "active", "links": [ { - "name": "twitter", - "url": "https://twitter.com/moonrivernw" + "name": "x", + "url": "https://x.com/moonrivernw" } ] -} +} \ No newline at end of file diff --git a/blockchains/moonriver/info/logo.png b/blockchains/moonriver/info/logo.png index 45376ce23b7cf..5baff2abc589a 100644 Binary files a/blockchains/moonriver/info/logo.png and b/blockchains/moonriver/info/logo.png differ diff --git a/blockchains/moonriver/info/square_logo.png b/blockchains/moonriver/info/square_logo.png new file mode 100644 index 0000000000000..42b229a80b12a Binary files /dev/null and b/blockchains/moonriver/info/square_logo.png differ diff --git a/blockchains/nano/info/info.json b/blockchains/nano/info/info.json index 8d730d1ec3c05..5388047053b63 100644 --- a/blockchains/nano/info/info.json +++ b/blockchains/nano/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/nanocurrency" }, { - "name": "twitter", - "url": "https://twitter.com/nano" + "name": "x", + "url": "https://x.com/nano" }, { "name": "reddit", diff --git a/blockchains/nano/info/square_logo.png b/blockchains/nano/info/square_logo.png new file mode 100644 index 0000000000000..67ee0d0cf623d Binary files /dev/null and b/blockchains/nano/info/square_logo.png differ diff --git a/blockchains/nativecanto/info/info.json b/blockchains/nativecanto/info/info.json index 6fc6743c7d3e0..f203c8875063f 100644 --- a/blockchains/nativecanto/info/info.json +++ b/blockchains/nativecanto/info/info.json @@ -21,8 +21,8 @@ "url": "https://github.com/Canto-Network" }, { - "name": "twitter", - "url": "https://twitter.com/cantopublic" + "name": "x", + "url": "https://x.com/cantopublic" } ], "tags": [ diff --git a/blockchains/nativecanto/info/square_logo.png b/blockchains/nativecanto/info/square_logo.png new file mode 100644 index 0000000000000..87647676d68eb Binary files /dev/null and b/blockchains/nativecanto/info/square_logo.png differ diff --git a/blockchains/nativecanto/validators/assets/cantovaloper1ctc7cuvzkwhdnfg87u0fp8746cg5d95zyjcr9u/logo.png b/blockchains/nativecanto/validators/assets/cantovaloper1ctc7cuvzkwhdnfg87u0fp8746cg5d95zyjcr9u/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/nativecanto/validators/assets/cantovaloper1ctc7cuvzkwhdnfg87u0fp8746cg5d95zyjcr9u/logo.png differ diff --git a/blockchains/nativecanto/validators/assets/cantovaloper1z2gk5exs2ysh24cwg57eg99wy03y95khjl2qyz/logo.png b/blockchains/nativecanto/validators/assets/cantovaloper1z2gk5exs2ysh24cwg57eg99wy03y95khjl2qyz/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/nativecanto/validators/assets/cantovaloper1z2gk5exs2ysh24cwg57eg99wy03y95khjl2qyz/logo.png differ diff --git a/blockchains/nativecanto/validators/list.json b/blockchains/nativecanto/validators/list.json new file mode 100644 index 0000000000000..43f038c1a44b6 --- /dev/null +++ b/blockchains/nativecanto/validators/list.json @@ -0,0 +1,14 @@ +[ + { + "id": "cantovaloper1ctc7cuvzkwhdnfg87u0fp8746cg5d95zyjcr9u", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "cantovaloper1z2gk5exs2ysh24cwg57eg99wy03y95khjl2qyz", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + } +] \ No newline at end of file diff --git a/blockchains/nativeevmos/info/info.json b/blockchains/nativeevmos/info/info.json index 5678059500be7..62ce8b48987e0 100644 --- a/blockchains/nativeevmos/info/info.json +++ b/blockchains/nativeevmos/info/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/tharsis/evmos" }, { - "name": "twitter", - "url": "https://twitter.com/EvmosOrg" + "name": "x", + "url": "https://x.com/EvmosOrg" }, { "name": "discord", @@ -29,4 +29,4 @@ "url": "https://t.me/EvmosOrg" } ] -} +} \ No newline at end of file diff --git a/blockchains/nativeevmos/info/square_logo.png b/blockchains/nativeevmos/info/square_logo.png new file mode 100644 index 0000000000000..259a5423c7191 Binary files /dev/null and b/blockchains/nativeevmos/info/square_logo.png differ diff --git a/blockchains/nativeevmos/validators/assets/evmosvaloper155yk4wfn0xqye80exlsr6hu4qdfsvsgw63w87l/logo.png b/blockchains/nativeevmos/validators/assets/evmosvaloper155yk4wfn0xqye80exlsr6hu4qdfsvsgw63w87l/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/nativeevmos/validators/assets/evmosvaloper155yk4wfn0xqye80exlsr6hu4qdfsvsgw63w87l/logo.png differ diff --git a/blockchains/nativeevmos/validators/assets/evmosvaloper1f6m9d94lkenw9fy5wmytatt76l849kx6ugdz70/logo.png b/blockchains/nativeevmos/validators/assets/evmosvaloper1f6m9d94lkenw9fy5wmytatt76l849kx6ugdz70/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/nativeevmos/validators/assets/evmosvaloper1f6m9d94lkenw9fy5wmytatt76l849kx6ugdz70/logo.png differ diff --git a/blockchains/nativeevmos/validators/assets/evmosvaloper1hn8u6x03mklzdy69r9khsd9q4yft7gmrkz8qkj/logo.png b/blockchains/nativeevmos/validators/assets/evmosvaloper1hn8u6x03mklzdy69r9khsd9q4yft7gmrkz8qkj/logo.png new file mode 100644 index 0000000000000..bed0251921f16 Binary files /dev/null and b/blockchains/nativeevmos/validators/assets/evmosvaloper1hn8u6x03mklzdy69r9khsd9q4yft7gmrkz8qkj/logo.png differ diff --git a/blockchains/nativeevmos/validators/assets/evmosvaloper1shvcjzhcxau6qtlz9w82a646ecwp4hq7ayqt0w/logo.png b/blockchains/nativeevmos/validators/assets/evmosvaloper1shvcjzhcxau6qtlz9w82a646ecwp4hq7ayqt0w/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/nativeevmos/validators/assets/evmosvaloper1shvcjzhcxau6qtlz9w82a646ecwp4hq7ayqt0w/logo.png differ diff --git a/blockchains/nativeevmos/validators/list.json b/blockchains/nativeevmos/validators/list.json index 2f4fa32cc7604..111e451c153b8 100644 --- a/blockchains/nativeevmos/validators/list.json +++ b/blockchains/nativeevmos/validators/list.json @@ -1,4 +1,16 @@ [ + { + "id": "evmosvaloper1k875gxzhegt59na74z5a8ejhen2thhvejk4r2e", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com" + }, + { + "id": "evmosvaloper1f6m9d94lkenw9fy5wmytatt76l849kx6ugdz70", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, { "id": "evmosvaloper1q3aejvmwj9dxturgk00jv7hkwxld7ny7642tr8", "name": "heisenbug", @@ -23,6 +35,12 @@ "description": "The PoS Validator for SmartContract chains", "website": "http://disperze.network/" }, + { + "id": "evmosvaloper1shvcjzhcxau6qtlz9w82a646ecwp4hq7ayqt0w", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + }, { "id": "evmosvaloper1f35jtt5m68zlxkpxn75403vv82cchahqvfsrup", "name": "Cosmostation", @@ -44,7 +62,7 @@ { "id": "evmosvaloper1sq9ggymzx02vcp7kf6yyar83scfm4r22swu673", "name": "Stakin", - "description": "Your Trusted Crypto Rewards", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", "website": "https://stakin.com/" }, { @@ -64,5 +82,23 @@ "name": "Allnodes.com⚡️", "description": "Reliable non-custodial Validator run by the industry leader - Allnodes. Monitor your rewards through the Allnodes portfolio page.", "website": "https://www.allnodes.com/evmos/staking" + }, + { + "id": "evmosvaloper1mh2lvhy0clzlx645yet4340ra0p5hh2zjyptj9", + "name": "w3coins", + "description": "w3coins is a Professional Validator and web3 Venture Capital. Stake Your Cryptocurrency with us to Maximize Your Earnings.", + "website": "https://www.w3coins.io" + }, + { + "id": "evmosvaloper155yk4wfn0xqye80exlsr6hu4qdfsvsgw63w87l", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + }, + { + "id": "evmosvaloper1hn8u6x03mklzdy69r9khsd9q4yft7gmrkz8qkj", + "name": "Meria", + "description": "Meria is an institutional-grade staking service provider running blockchain infrastructure on more than +35 networks.", + "website": "https://stake.meria.com/" } ] diff --git a/blockchains/nativeinjective/assets/inj1d5vz0uzwlpfvgwrwulxg6syy82axa58y4fuszd/info.json b/blockchains/nativeinjective/assets/inj1d5vz0uzwlpfvgwrwulxg6syy82axa58y4fuszd/info.json new file mode 100644 index 0000000000000..a69d07613d274 --- /dev/null +++ b/blockchains/nativeinjective/assets/inj1d5vz0uzwlpfvgwrwulxg6syy82axa58y4fuszd/info.json @@ -0,0 +1,29 @@ +{ + "name": "Arbitrum", + "type": "INJECTIVE", + "symbol": "ARB", + "decimals": 8, + "website": "https://arbitrum.foundation/", + "description": "$ARB tokens can be used to vote on Arbitrum DAO governance proposals, allowing $ARB holders to collectively shape the future of Arbitrum protocols and chains. Token holders can also delegate their voting power to delegates.", + "explorer": "https://explorer.injective.network/asset/?tokenType=tokenFactory&denom=factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1d5vz0uzwlpfvgwrwulxg6syy82axa58y4fuszd", + "status": "active", + "id": "inj1d5vz0uzwlpfvgwrwulxg6syy82axa58y4fuszd", + "links": [ + { + "name": "x", + "url": "https://x.com/arbitrum" + }, + { + "name": "whitepaper", + "url": "https://docs.arbitrum.foundation/deployment-addresses" + }, + { + "name": "discord", + "url": "https://discord.com/arbitrum" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/arbitrum-iou/" + } + ] +} \ No newline at end of file diff --git a/blockchains/nativeinjective/assets/inj1d5vz0uzwlpfvgwrwulxg6syy82axa58y4fuszd/logo.png b/blockchains/nativeinjective/assets/inj1d5vz0uzwlpfvgwrwulxg6syy82axa58y4fuszd/logo.png new file mode 100644 index 0000000000000..5402ed6bc17ad Binary files /dev/null and b/blockchains/nativeinjective/assets/inj1d5vz0uzwlpfvgwrwulxg6syy82axa58y4fuszd/logo.png differ diff --git a/blockchains/nativeinjective/assets/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/info.json b/blockchains/nativeinjective/assets/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/info.json new file mode 100644 index 0000000000000..0f2780c067158 --- /dev/null +++ b/blockchains/nativeinjective/assets/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/info.json @@ -0,0 +1,21 @@ +{ + "name": "Talis", + "website": "https://injective.talis.art", + "description": "In the dynamic landscape of NFTs and cryptocurrency, platforms that offer innovative solutions and tools play a crucial role in shaping the ecosystem.", + "explorer": "https://explorer.injective.network/asset/?tokenType=tokenFactory&denom=factory/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/Talis", + "type": "INJECTIVE", + "symbol": "TALIS", + "decimals": 6, + "status": "active", + "id": "inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3", + "links": [ + { + "name": "x", + "url": "https://x.com/ProtocolTalis" + }, + { + "name": "telegram", + "url": "https://t.me/talisprotocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/nativeinjective/assets/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/logo.png b/blockchains/nativeinjective/assets/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/logo.png new file mode 100644 index 0000000000000..4dc87c4c30ad2 Binary files /dev/null and b/blockchains/nativeinjective/assets/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/logo.png differ diff --git a/blockchains/nativeinjective/assets/inj1q6kpxy6ar5lkxqudjvryarrrttmakwsvzkvcyh/info.json b/blockchains/nativeinjective/assets/inj1q6kpxy6ar5lkxqudjvryarrrttmakwsvzkvcyh/info.json new file mode 100644 index 0000000000000..23266af0bec6c --- /dev/null +++ b/blockchains/nativeinjective/assets/inj1q6kpxy6ar5lkxqudjvryarrrttmakwsvzkvcyh/info.json @@ -0,0 +1,40 @@ +{ + "name": "Chiliz", + "website": "https://chiliz.com", + "description": "Chiliz, powering Socios.com, aims to give sports and esports fans the ability to crowd-manage their favorite teams, games, leagues, and events.", + "explorer": "https://explorer.injective.network/asset/?tokenType=tokenFactory&denom=factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1q6kpxy6ar5lkxqudjvryarrrttmakwsvzkvcyh", + "type": "INJECTIVE", + "symbol": "CHZ", + "decimals": 8, + "status": "active", + "id": "inj1q6kpxy6ar5lkxqudjvryarrrttmakwsvzkvcyh", + "tags": [ + "nft" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/chiliz_io" + }, + { + "name": "x", + "url": "https://x.com/chiliZ/" + }, + { + "name": "facebook", + "url": "https://facebook.com/chiliZdotcom/" + }, + { + "name": "blog", + "url": "https://medium.com/chiliz" + }, + { + "name": "whitepaper", + "url": "https://chiliz.com/docs/CHZ_whitepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/chiliz/" + } + ] +} \ No newline at end of file diff --git a/blockchains/nativeinjective/assets/inj1q6kpxy6ar5lkxqudjvryarrrttmakwsvzkvcyh/logo.png b/blockchains/nativeinjective/assets/inj1q6kpxy6ar5lkxqudjvryarrrttmakwsvzkvcyh/logo.png new file mode 100644 index 0000000000000..7db7a4585f7d5 Binary files /dev/null and b/blockchains/nativeinjective/assets/inj1q6kpxy6ar5lkxqudjvryarrrttmakwsvzkvcyh/logo.png differ diff --git a/blockchains/nativeinjective/assets/inj1q6zlut7gtkzknkk773jecujwsdkgq882akqksk/info.json b/blockchains/nativeinjective/assets/inj1q6zlut7gtkzknkk773jecujwsdkgq882akqksk/info.json new file mode 100644 index 0000000000000..5c36e623c4a32 --- /dev/null +++ b/blockchains/nativeinjective/assets/inj1q6zlut7gtkzknkk773jecujwsdkgq882akqksk/info.json @@ -0,0 +1,37 @@ +{ + "name": "USD Coin", + "website": "https://centre.io/usdc", + "description": "USDC is a fully collateralized US dollar stablecoin, an Ethereum powered coin and is the brainchild of CENTRE, an open source project bootstrapped by contributions from Circle and Coinbase.", + "explorer": "https://explorer.injective.network/asset/?tokenType=tokenFactory&denom=factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1q6zlut7gtkzknkk773jecujwsdkgq882akqksk", + "type": "INJECTIVE", + "symbol": "USDCET", + "decimals": 6, + "status": "active", + "id": "inj1q6zlut7gtkzknkk773jecujwsdkgq882akqksk", + "tags": [ + "defi", + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/nativeinjective/assets/inj1q6zlut7gtkzknkk773jecujwsdkgq882akqksk/logo.png b/blockchains/nativeinjective/assets/inj1q6zlut7gtkzknkk773jecujwsdkgq882akqksk/logo.png new file mode 100644 index 0000000000000..c4def0472868c Binary files /dev/null and b/blockchains/nativeinjective/assets/inj1q6zlut7gtkzknkk773jecujwsdkgq882akqksk/logo.png differ diff --git a/blockchains/nativeinjective/assets/inj1sthrn5ep8ls5vzz8f9gp89khhmedahhdkqa8z3/info.json b/blockchains/nativeinjective/assets/inj1sthrn5ep8ls5vzz8f9gp89khhmedahhdkqa8z3/info.json new file mode 100644 index 0000000000000..2776c8099f9f9 --- /dev/null +++ b/blockchains/nativeinjective/assets/inj1sthrn5ep8ls5vzz8f9gp89khhmedahhdkqa8z3/info.json @@ -0,0 +1,32 @@ +{ + "name": "Solana", + "website": "https://solana.com/", + "description": "Solana is the worlds most performant blockchain in the world at 710k transactions per second. 710k TPS is achieved by encoding the passage of time as data.", + "explorer": "https://explorer.injective.network/asset/?tokenType=tokenFactory&denom=factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1sthrn5ep8ls5vzz8f9gp89khhmedahhdkqa8z3", + "symbol": "SOL", + "type": "INJECTIVE", + "decimals": 8, + "status": "active", + "id": "inj1sthrn5ep8ls5vzz8f9gp89khhmedahhdkqa8z3", + "tags": [ + "staking-native" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/solana-labs" + }, + { + "name": "x", + "url": "https://x.com/solana" + }, + { + "name": "reddit", + "url": "https://reddit.com/solana" + }, + { + "name": "whitepaper", + "url": "https://github.com/solana-labs/whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/nativeinjective/assets/inj1sthrn5ep8ls5vzz8f9gp89khhmedahhdkqa8z3/logo.png b/blockchains/nativeinjective/assets/inj1sthrn5ep8ls5vzz8f9gp89khhmedahhdkqa8z3/logo.png new file mode 100644 index 0000000000000..1d045ec77ef4d Binary files /dev/null and b/blockchains/nativeinjective/assets/inj1sthrn5ep8ls5vzz8f9gp89khhmedahhdkqa8z3/logo.png differ diff --git a/blockchains/nativeinjective/info/info.json b/blockchains/nativeinjective/info/info.json new file mode 100644 index 0000000000000..f06ec7b362d1f --- /dev/null +++ b/blockchains/nativeinjective/info/info.json @@ -0,0 +1,24 @@ +{ + "name": "NativeInjective", + "website": "https://injective.com", + "description": "Injective is an open, interoperable layer-one blockchain for building powerful DeFi applications.", + "explorer": "https://explorer.injective.network", + "research": "https://research.binance.com/en/projects/injective", + "symbol": "INJ", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/InjectiveLabs" + }, + { + "name": "x", + "url": "https://x.com/Injective_" + } + ], + "tags": [ + "staking-native" + ] +} \ No newline at end of file diff --git a/blockchains/nativeinjective/info/logo.png b/blockchains/nativeinjective/info/logo.png new file mode 100644 index 0000000000000..e9a2fe6b9a9cb Binary files /dev/null and b/blockchains/nativeinjective/info/logo.png differ diff --git a/blockchains/nativeinjective/info/square_logo.png b/blockchains/nativeinjective/info/square_logo.png new file mode 100644 index 0000000000000..1475369df773c Binary files /dev/null and b/blockchains/nativeinjective/info/square_logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper125fkz3mq6qxxpkmphdl3ep92t0d3y9695mhclt/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper125fkz3mq6qxxpkmphdl3ep92t0d3y9695mhclt/logo.png new file mode 100644 index 0000000000000..60b018002cdc2 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper125fkz3mq6qxxpkmphdl3ep92t0d3y9695mhclt/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper134dct56cq5v7uerxcy2cn4m06mqf4dxrlgpp24/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper134dct56cq5v7uerxcy2cn4m06mqf4dxrlgpp24/logo.png new file mode 100644 index 0000000000000..1288b5884311a Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper134dct56cq5v7uerxcy2cn4m06mqf4dxrlgpp24/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper14w4qu60azpz5zkw5yrcvmaxqh6xg5sny7qm6rm/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper14w4qu60azpz5zkw5yrcvmaxqh6xg5sny7qm6rm/logo.png new file mode 100644 index 0000000000000..1020527149890 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper14w4qu60azpz5zkw5yrcvmaxqh6xg5sny7qm6rm/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper155yk4wfn0xqye80exlsr6hu4qdfsvsgwg3jckk/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper155yk4wfn0xqye80exlsr6hu4qdfsvsgwg3jckk/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper155yk4wfn0xqye80exlsr6hu4qdfsvsgwg3jckk/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1acgud5qpn3frwzjrayqcdsdr9vkl3p6hrz34ts/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1acgud5qpn3frwzjrayqcdsdr9vkl3p6hrz34ts/logo.png new file mode 100644 index 0000000000000..c2cb86a42efe3 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1acgud5qpn3frwzjrayqcdsdr9vkl3p6hrz34ts/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1dyntafvjynns5zyltwgyktej0y5zt84y3npkt4/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1dyntafvjynns5zyltwgyktej0y5zt84y3npkt4/logo.png new file mode 100644 index 0000000000000..f5f3ada9451c6 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1dyntafvjynns5zyltwgyktej0y5zt84y3npkt4/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1esud09zs5754g5nlkmrgxsfdj276xm64cgmd3w/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1esud09zs5754g5nlkmrgxsfdj276xm64cgmd3w/logo.png new file mode 100644 index 0000000000000..ab27231ce5952 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1esud09zs5754g5nlkmrgxsfdj276xm64cgmd3w/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1ffsdugrhfzdyxltjve8v68n6aazyc6p97uhfn0/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1ffsdugrhfzdyxltjve8v68n6aazyc6p97uhfn0/logo.png new file mode 100644 index 0000000000000..ee70539329ea5 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1ffsdugrhfzdyxltjve8v68n6aazyc6p97uhfn0/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1g4d6dmvnpg7w7yugy6kplndp7jpfmf3krtschp/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1g4d6dmvnpg7w7yugy6kplndp7jpfmf3krtschp/logo.png new file mode 100644 index 0000000000000..e9622798cec65 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1g4d6dmvnpg7w7yugy6kplndp7jpfmf3krtschp/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1h4t5dqenq86znza06thc64pzyxtme7zltyeg8k/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1h4t5dqenq86znza06thc64pzyxtme7zltyeg8k/logo.png new file mode 100644 index 0000000000000..a542ccaa22d50 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1h4t5dqenq86znza06thc64pzyxtme7zltyeg8k/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1hsxaln75wjs033t3spd8a0gawl4jvxawn6v849/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1hsxaln75wjs033t3spd8a0gawl4jvxawn6v849/logo.png new file mode 100644 index 0000000000000..b8e77f1c07be9 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1hsxaln75wjs033t3spd8a0gawl4jvxawn6v849/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1kpfxtqt5cmlew46dem32fqlk5g6k4wyueh4szu/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1kpfxtqt5cmlew46dem32fqlk5g6k4wyueh4szu/logo.png new file mode 100644 index 0000000000000..fd2f07798958f Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1kpfxtqt5cmlew46dem32fqlk5g6k4wyueh4szu/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1lsuqpgm8kgwpq96ewyew26xnfwyn3lh3ncrkrk/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1lsuqpgm8kgwpq96ewyew26xnfwyn3lh3ncrkrk/logo.png new file mode 100644 index 0000000000000..5d160d301f69f Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1lsuqpgm8kgwpq96ewyew26xnfwyn3lh3ncrkrk/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1mwerm24kce7dcl59t6n0caw7c8zxgkrjj9svwj/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1mwerm24kce7dcl59t6n0caw7c8zxgkrjj9svwj/logo.png new file mode 100644 index 0000000000000..0f6305d87f6e5 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1mwerm24kce7dcl59t6n0caw7c8zxgkrjj9svwj/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1qkwpk4pf6txgazfs8lnjzj75pc47z9g26lww7r/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1qkwpk4pf6txgazfs8lnjzj75pc47z9g26lww7r/logo.png new file mode 100644 index 0000000000000..9dff7bbedfbee Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1qkwpk4pf6txgazfs8lnjzj75pc47z9g26lww7r/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1r3lgsyq49zvl36cnevjx3q6u2ep897rws9hauk/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1r3lgsyq49zvl36cnevjx3q6u2ep897rws9hauk/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1r3lgsyq49zvl36cnevjx3q6u2ep897rws9hauk/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1tly62qxj2t8wz2zw4d7p37jcysvgasqa0zjtlk/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1tly62qxj2t8wz2zw4d7p37jcysvgasqa0zjtlk/logo.png new file mode 100644 index 0000000000000..e117817071239 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1tly62qxj2t8wz2zw4d7p37jcysvgasqa0zjtlk/logo.png differ diff --git a/blockchains/nativeinjective/validators/list.json b/blockchains/nativeinjective/validators/list.json new file mode 100644 index 0000000000000..9dea531ff9be9 --- /dev/null +++ b/blockchains/nativeinjective/validators/list.json @@ -0,0 +1,104 @@ +[ + { + "id": "injvaloper1dyntafvjynns5zyltwgyktej0y5zt84y3npkt4", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com" + }, + { + "id": "injvaloper1r3lgsyq49zvl36cnevjx3q6u2ep897rws9hauk", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "injvaloper1acgud5qpn3frwzjrayqcdsdr9vkl3p6hrz34ts", + "name": "AutoStake 🛡️ Slash Protected", + "description": "BareMetal - Decentralised - Reliable infrastructure run by the industry leader - AutoStake - Connect with us at: https://linktr.ee/autostake", + "website": "https://autostake.com/" + }, + { + "id": "injvaloper1hsxaln75wjs033t3spd8a0gawl4jvxawn6v849", + "name": "Citadel.one", + "description": "Citadel.one is a multi-asset non-custodial staking platform that lets anyone become a part of decentralized infrastructure and earn passive income. Stake with our nodes or any other validator across multiple networks in a few clicks", + "website": "https://citadel.one/" + }, + { + "id": "injvaloper1lsuqpgm8kgwpq96ewyew26xnfwyn3lh3ncrkrk", + "name": "Binance Staking", + "description": "Simple & Secure. Search popular coins and start earning.", + "website": "https://www.binance.com/en/earn" + }, + { + "id": "injvaloper125fkz3mq6qxxpkmphdl3ep92t0d3y9695mhclt", + "name": "polkachu.com", + "description": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at hello@polkachu.com", + "website": "https://polkachu.com/" + }, + { + "id": "injvaloper134dct56cq5v7uerxcy2cn4m06mqf4dxrlgpp24", + "name": "Everstake", + "description": "Everstake is a staking-as-a-service company. We help institutional investors and regular token holders to profit off their crypto assets. Choose the most promising projects, delegate with Everstake, and make a stable passive income.", + "website": "https://everstake.one/" + }, + { + "id": "injvaloper1ffsdugrhfzdyxltjve8v68n6aazyc6p97uhfn0", + "name": "Helios Staking", + "description": "Helios Staking is a Staking-as-a-Service provider strictly dedicated to the growth of Proof of Stake (PoS) blockchain networks.", + "website": "https://heliosstaking.com/" + }, + { + "id": "injvaloper1esud09zs5754g5nlkmrgxsfdj276xm64cgmd3w", + "name": "Imperator.co", + "description": "100% refund on downtime slashing -- Professional Delegated Proof-of-Stake Network Validator", + "website": "https://imperator.co/" + }, + { + "id": "injvaloper1g4d6dmvnpg7w7yugy6kplndp7jpfmf3krtschp", + "name": "Figment", + "description": "The complete staking solution for 250+ institutional clients including asset managers, custodians, exchanges, foundations, and wallets to earn rewards on their digital assets.", + "website": "https://figment.io/" + }, + { + "id": "injvaloper1kpfxtqt5cmlew46dem32fqlk5g6k4wyueh4szu", + "name": "Stakewolle.com | Auto-compound", + "description": "🚀 Professional Cosmos Validator & Engineer 🔁Auto-compound with REStakeapp 🛡Slash insurance 🎁 All Airdrops for delegators 🔗 x, Telegram and Youtube | Stakewolle.com", + "website": "https://stakewolle.com/" + }, + { + "id": "injvaloper1h4t5dqenq86znza06thc64pzyxtme7zltyeg8k", + "name": "Ubik Capital", + "description": "Ubik Capital secures major proof of stake networks and is a trusted staking provider with years of industry experience. By delegating to us, you agree to the Terms of Service at: https://ubik.capital", + "website": "https://ubik.capital/" + }, + { + "id": "injvaloper1tly62qxj2t8wz2zw4d7p37jcysvgasqa0zjtlk", + "name": "w3coins", + "description": "w3coins is a Professional Validator and web3 Venture Capital. Stake Your Cryptocurrency with us to Maximize Your Earnings.", + "website": "https://www.w3coins.io" + }, + { + "id": "injvaloper155yk4wfn0xqye80exlsr6hu4qdfsvsgwg3jckk", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + }, + { + "id": "injvaloper1mwerm24kce7dcl59t6n0caw7c8zxgkrjj9svwj", + "name": "Stakely.io", + "description": "🔥 Professional validator highly experienced in PoS 🔥 Slashing protection & Eligible for airdrops | Learn with our staking guides, video tutorials and FAQs | Part of the commission of our nodes will go to our Multicoin Faucet funds and other tools 🌱 Carbon Neutral 🌱", + "website": "https://stakely.io" + }, + { + "id": "injvaloper1qkwpk4pf6txgazfs8lnjzj75pc47z9g26lww7r", + "name": "Kahuna", + "description": "Kahuna is a tech-focused investment firm dedicated to Blockchain Infrastructure, DeFi, and Gaming startups. Follow us on https://x.com/kahunahq", + "website": "https://www.kahuna.network/" + }, + { + "id": "injvaloper14w4qu60azpz5zkw5yrcvmaxqh6xg5sny7qm6rm", + "name": "Allnodes", + "description": "Reliable non-custodial Validator run by the industry leader - Allnodes. Monitor your rewards through the Allnodes portfolio page.", + "website": "https://www.allnodes.com/inj/staking" + } +] diff --git a/blockchains/near/info/info.json b/blockchains/near/info/info.json index c11741e51773b..866fe3f970ac2 100644 --- a/blockchains/near/info/info.json +++ b/blockchains/near/info/info.json @@ -8,14 +8,17 @@ "type": "coin", "decimals": 24, "status": "active", + "tags": [ + "staking-native" + ], "links": [ { "name": "github", "url": "https://github.com/nearprotocol/nearcore" }, { - "name": "twitter", - "url": "https://twitter.com/nearprotocol" + "name": "x", + "url": "https://x.com/nearprotocol" }, { "name": "reddit", diff --git a/blockchains/near/info/square_logo.png b/blockchains/near/info/square_logo.png new file mode 100644 index 0000000000000..2ff05784cfcc2 Binary files /dev/null and b/blockchains/near/info/square_logo.png differ diff --git a/blockchains/near/validators/assets/allnodes.poolv1.near/logo.png b/blockchains/near/validators/assets/allnodes.poolv1.near/logo.png new file mode 100644 index 0000000000000..1020527149890 Binary files /dev/null and b/blockchains/near/validators/assets/allnodes.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/astro-stakers.poolv1.near/logo.png b/blockchains/near/validators/assets/astro-stakers.poolv1.near/logo.png new file mode 100644 index 0000000000000..571f2711a0835 Binary files /dev/null and b/blockchains/near/validators/assets/astro-stakers.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/autostake.poolv1.near/logo.png b/blockchains/near/validators/assets/autostake.poolv1.near/logo.png new file mode 100644 index 0000000000000..c2cb86a42efe3 Binary files /dev/null and b/blockchains/near/validators/assets/autostake.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/epic.poolv1.near/logo.png b/blockchains/near/validators/assets/epic.poolv1.near/logo.png new file mode 100644 index 0000000000000..6d612781cc3df Binary files /dev/null and b/blockchains/near/validators/assets/epic.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/everstake.poolv1.near/logo.png b/blockchains/near/validators/assets/everstake.poolv1.near/logo.png new file mode 100644 index 0000000000000..02edac54f305a Binary files /dev/null and b/blockchains/near/validators/assets/everstake.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/lavenderfive.poolv1.near/logo.png b/blockchains/near/validators/assets/lavenderfive.poolv1.near/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/near/validators/assets/lavenderfive.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/meria-staking.poolv1.near/logo.png b/blockchains/near/validators/assets/meria-staking.poolv1.near/logo.png new file mode 100644 index 0000000000000..bed0251921f16 Binary files /dev/null and b/blockchains/near/validators/assets/meria-staking.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/p2p-org.poolv1.near/logo.png b/blockchains/near/validators/assets/p2p-org.poolv1.near/logo.png new file mode 100644 index 0000000000000..a0c10f645691b Binary files /dev/null and b/blockchains/near/validators/assets/p2p-org.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/staked.poolv1.near/logo.png b/blockchains/near/validators/assets/staked.poolv1.near/logo.png new file mode 100644 index 0000000000000..74be06fa8dfe2 Binary files /dev/null and b/blockchains/near/validators/assets/staked.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/stakeflow.poolv1.near/logo.png b/blockchains/near/validators/assets/stakeflow.poolv1.near/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/near/validators/assets/stakeflow.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/stakely_io.poolv1.near/logo.png b/blockchains/near/validators/assets/stakely_io.poolv1.near/logo.png new file mode 100644 index 0000000000000..0f6305d87f6e5 Binary files /dev/null and b/blockchains/near/validators/assets/stakely_io.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/stakin.poolv1.near/logo.png b/blockchains/near/validators/assets/stakin.poolv1.near/logo.png new file mode 100644 index 0000000000000..eaf66cb5cbb1f Binary files /dev/null and b/blockchains/near/validators/assets/stakin.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/trust-nodes.poolv1.near/logo.png b/blockchains/near/validators/assets/trust-nodes.poolv1.near/logo.png new file mode 100644 index 0000000000000..f5f3ada9451c6 Binary files /dev/null and b/blockchains/near/validators/assets/trust-nodes.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/w3coins.poolv1.near/logo.png b/blockchains/near/validators/assets/w3coins.poolv1.near/logo.png new file mode 100644 index 0000000000000..e407be374c08f Binary files /dev/null and b/blockchains/near/validators/assets/w3coins.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/zavodil.poolv1.near/logo.png b/blockchains/near/validators/assets/zavodil.poolv1.near/logo.png new file mode 100644 index 0000000000000..4cc089433a7ea Binary files /dev/null and b/blockchains/near/validators/assets/zavodil.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/list.json b/blockchains/near/validators/list.json new file mode 100644 index 0000000000000..1096a236165c3 --- /dev/null +++ b/blockchains/near/validators/list.json @@ -0,0 +1,92 @@ +[ + { + "id": "trust-nodes.poolv1.near", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com" + }, + { + "id": "staked.poolv1.near", + "name": "staked", + "description": "staked.poolv1.near is a trusted Proof-of-Stake infrastructure provider and validator to comfortably stake your coins and earn rewards.", + "website": "https://www.stakingrewards.com/savings/stakedpoolv1near/" + }, + { + "id": "astro-stakers.poolv1.near", + "name": "astro-stakers", + "description": "We're a team of silicon valley engineers committed to providing low-fee staking services for the NEAR community.", + "website": "https://astrostakers.com" + }, + { + "id": "zavodil.poolv1.near", + "name": "zavodil", + "description": "Permanent 1% fee from community-friendly node zavodil.poolv1.near launched by early NEAR adopter, who made popular NEAR toolings and dapps.", + "website": "https://zavodil.ru/" + }, + { + "id": "autostake.poolv1.near", + "name": "AutoStake ⚡️ 0% fee", + "description": "BareMetal - Decentralised - Reliable infrastructure run by the industry leader - AutoStake - Connect with us at: https://linktr.ee/autostake", + "website": "https://autostake.com" + }, + { + "id": "epic.poolv1.near", + "name": "epic", + "description": "epic.poolv1.near is a trusted Proof-of-Stake infrastructure provider and validator to comfortably stake your coins and earn rewards with NEAR Protocol.", + "website": "https://www.stakingrewards.com/savings/epicpoolv1near/" + }, + { + "id": "everstake.poolv1.near", + "name": "everstake", + "description": "The NEAR Protocol stands out as a user-friendly, efficient, and scalable Proof-of-Stake blockchain that enables the efficient development of decentralized applications. Its unique design simplifies the lifecycle of dApp development and management, thereby promoting community-led innovation on a global scale.", + "website": "https://everstake.one/staking/near" + }, + { + "id": "p2p-org.poolv1.near", + "name": "p2p-org", + "description": "P2P Validator helps investors compound their cryptocurrency investments by participating in staking. We offer secure, non-custodial staking services across a range of top-tier networks with over $3.2 billion in total assets staked.", + "website": "https://p2p.org/networks/near" + }, + { + "id": "stakin.poolv1.near", + "name": "Stakin", + "description": "NEAR staking services by an experienced enterprise validator trusted by institutions and the communities", + "website": "https://stakin.com" + }, + { + "id": "stakeflow.poolv1.near", + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" + }, + { + "id": "lavenderfive.poolv1.near", + "name": "Lavender.Five Nodes 🐝 | 1% Commission", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + }, + { + "id": "w3coins.poolv1.near", + "name": "w3coins", + "description": "Stake Your Cryptocurrency with us to Maximize Your Earnings", + "website": "https://www.w3coins.io/" + }, + { + "id": "stakely_io.poolv1.near", + "name": "Stakely.io", + "description": "🔥 Professional validator highly experienced in PoS 🔥 Slashing protection | Learn with our staking guides, video tutorials and FAQs | Part of the commission of our nodes will go to our Multicoin Faucet funds and other tools 🌱 Carbon Neutral 🌱", + "website": "https://stakely.io" + }, + { + "id": "meria-staking.poolv1.near", + "name": "Meria", + "description": "Meria is an institutional-grade staking service provider running blockchain infrastructure on more than +35 networks.", + "website": "https://stake.meria.com/" + }, + { + "id": "allnodes.poolv1.near", + "name": "Allnodes", + "description": "Reliable non-custodial Validator run by the industry leader - Allnodes. Monitor your rewards through the Allnodes portfolio page.", + "website": "https://www.allnodes.com/near/staking" + } +] diff --git a/blockchains/neblio/info/info.json b/blockchains/neblio/info/info.json new file mode 100644 index 0000000000000..16c1d6d819790 --- /dev/null +++ b/blockchains/neblio/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "Neblio", + "website": "https://nebl.io", + "description": "The Neblio Platform aims to provide fully open-source APIs, tools, and services for enterprises to deploy dApps.", + "explorer": "https://explorer.nebl.io", + "symbol": "NEBL", + "type": "coin", + "decimals": 8, + "status": "active", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/neblio/" + }, + { + "name": "x", + "url": "https://x.com/NeblioTeam" + } + ] +} \ No newline at end of file diff --git a/blockchains/neblio/info/logo.png b/blockchains/neblio/info/logo.png new file mode 100644 index 0000000000000..13f01d403a2aa Binary files /dev/null and b/blockchains/neblio/info/logo.png differ diff --git a/blockchains/neblio/info/square_logo.png b/blockchains/neblio/info/square_logo.png new file mode 100644 index 0000000000000..5bfd74cb16b28 Binary files /dev/null and b/blockchains/neblio/info/square_logo.png differ diff --git a/blockchains/nebulas/info/info.json b/blockchains/nebulas/info/info.json index 65a1be07db321..3c472c4899f60 100644 --- a/blockchains/nebulas/info/info.json +++ b/blockchains/nebulas/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/nebulasio" }, { - "name": "twitter", - "url": "https://twitter.com/nebulasio" + "name": "x", + "url": "https://x.com/nebulasio" }, { "name": "reddit", diff --git a/blockchains/nebulas/info/square_logo.png b/blockchains/nebulas/info/square_logo.png new file mode 100644 index 0000000000000..203f7cf754279 Binary files /dev/null and b/blockchains/nebulas/info/square_logo.png differ diff --git a/blockchains/neo/info/info.json b/blockchains/neo/info/info.json index 7102cc528899c..b3d344527961f 100644 --- a/blockchains/neo/info/info.json +++ b/blockchains/neo/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/neo-project" }, { - "name": "twitter", - "url": "https://twitter.com/neo_blockchain" + "name": "x", + "url": "https://x.com/neo_blockchain" }, { "name": "reddit", diff --git a/blockchains/neo/info/square_logo.png b/blockchains/neo/info/square_logo.png new file mode 100644 index 0000000000000..9d4fb2b88b79c Binary files /dev/null and b/blockchains/neo/info/square_logo.png differ diff --git a/blockchains/neon/info/info.json b/blockchains/neon/info/info.json new file mode 100644 index 0000000000000..fc545726c2a62 --- /dev/null +++ b/blockchains/neon/info/info.json @@ -0,0 +1,24 @@ +{ + "name": "Neon EVM", + "website": "https://neonevm.org", + "description": "Neon EVM is a smart contract on Solana. Solana is a fast-growing blockchain, which uses a proof-of-history consensus mechanism.", + "explorer": "https://neonscan.org", + "symbol": "NEON", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/neonlabsorg/neon-evm" + }, + { + "name": "x", + "url": "https://x.com/Neon_EVM" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/neon/" + } + ] +} \ No newline at end of file diff --git a/blockchains/neon/info/logo.png b/blockchains/neon/info/logo.png new file mode 100644 index 0000000000000..8368ca2e5eccd Binary files /dev/null and b/blockchains/neon/info/logo.png differ diff --git a/blockchains/neon/info/square_logo.png b/blockchains/neon/info/square_logo.png new file mode 100644 index 0000000000000..949535c464c89 Binary files /dev/null and b/blockchains/neon/info/square_logo.png differ diff --git a/blockchains/nervos/info/info.json b/blockchains/nervos/info/info.json index b0b7147614164..a8fdca535c089 100644 --- a/blockchains/nervos/info/info.json +++ b/blockchains/nervos/info/info.json @@ -13,8 +13,8 @@ "url": "https://github.com/nervosnetwork" }, { - "name": "twitter", - "url": "https://twitter.com/nervosnetwork" + "name": "x", + "url": "https://x.com/nervosnetwork" }, { "name": "reddit", diff --git a/blockchains/nervos/info/square_logo.png b/blockchains/nervos/info/square_logo.png new file mode 100644 index 0000000000000..793f7b4a3944e Binary files /dev/null and b/blockchains/nervos/info/square_logo.png differ diff --git a/blockchains/neutron/info/info.json b/blockchains/neutron/info/info.json index 154030e2b0fa1..c2ec91b43138f 100644 --- a/blockchains/neutron/info/info.json +++ b/blockchains/neutron/info/info.json @@ -13,8 +13,8 @@ "hrp": "neutron", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Neutron_org" + "name": "x", + "url": "https://x.com/Neutron_org" }, { "name": "github", diff --git a/blockchains/neutron/info/logo.png b/blockchains/neutron/info/logo.png index a7089aa514db8..b09d390df17f7 100644 Binary files a/blockchains/neutron/info/logo.png and b/blockchains/neutron/info/logo.png differ diff --git a/blockchains/neutron/info/square_logo.png b/blockchains/neutron/info/square_logo.png new file mode 100644 index 0000000000000..8ec5d9acfcaaa Binary files /dev/null and b/blockchains/neutron/info/square_logo.png differ diff --git a/blockchains/neutrontestnet/info/info.json b/blockchains/neutrontestnet/info/info.json index 90db8baa046c6..e362c64593fd8 100644 --- a/blockchains/neutrontestnet/info/info.json +++ b/blockchains/neutrontestnet/info/info.json @@ -1,7 +1,7 @@ { "name": "Neutron Testnet", "type": "coin", - "symbol": "NTRN", + "symbol": "tNTRN", "decimals": 6, "website": "https://neutron.org/", "description": "The most secure CosmWasm platform in Cosmos, Neutron lets smart-contracts leverage bleeding-edge Interchain technology with minimal overhead.", @@ -17,8 +17,8 @@ "url": "https://github.com/neutron-org" }, { - "name": "twitter", - "url": "https://twitter.com/Neutron_org" + "name": "x", + "url": "https://x.com/Neutron_org" } ] } \ No newline at end of file diff --git a/blockchains/neutrontestnet/info/square_logo.png b/blockchains/neutrontestnet/info/square_logo.png new file mode 100644 index 0000000000000..8ec5d9acfcaaa Binary files /dev/null and b/blockchains/neutrontestnet/info/square_logo.png differ diff --git a/blockchains/nimiq/info/info.json b/blockchains/nimiq/info/info.json index 1726829037fe1..bc2218e14fc10 100644 --- a/blockchains/nimiq/info/info.json +++ b/blockchains/nimiq/info/info.json @@ -13,8 +13,8 @@ "url": "https://github.com/nimiq" }, { - "name": "twitter", - "url": "https://twitter.com/nimiq" + "name": "x", + "url": "https://x.com/nimiq" }, { "name": "reddit", diff --git a/blockchains/nimiq/info/square_logo.png b/blockchains/nimiq/info/square_logo.png new file mode 100644 index 0000000000000..a513356a64f9b Binary files /dev/null and b/blockchains/nimiq/info/square_logo.png differ diff --git a/blockchains/noble/info/info.json b/blockchains/noble/info/info.json index 0f088e99ae30e..19debc28166fc 100644 --- a/blockchains/noble/info/info.json +++ b/blockchains/noble/info/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/strangelove-ventures/noble" }, { - "name": "twitter", - "url": "https://twitter.com/noble_xyz" + "name": "x", + "url": "https://x.com/noble_xyz" } ] } \ No newline at end of file diff --git a/blockchains/noble/info/square_logo.png b/blockchains/noble/info/square_logo.png new file mode 100644 index 0000000000000..793f7b4a3944e Binary files /dev/null and b/blockchains/noble/info/square_logo.png differ diff --git a/blockchains/nuls/info/info.json b/blockchains/nuls/info/info.json index 04c6a9541fee0..bf5ae9fdf36ee 100644 --- a/blockchains/nuls/info/info.json +++ b/blockchains/nuls/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/nuls-io/nuls" }, { - "name": "twitter", - "url": "https://twitter.com/nuls" + "name": "x", + "url": "https://x.com/nuls" }, { "name": "reddit", diff --git a/blockchains/nuls/info/square_logo.png b/blockchains/nuls/info/square_logo.png new file mode 100644 index 0000000000000..23317f9f65d56 Binary files /dev/null and b/blockchains/nuls/info/square_logo.png differ diff --git a/blockchains/oasis/assets/0xa1E73c01E0cF7930F5e91CB291031739FE5Ad6C2/info.json b/blockchains/oasis/assets/0xa1E73c01E0cF7930F5e91CB291031739FE5Ad6C2/info.json index f10431331b0e5..515a7e73db845 100644 --- a/blockchains/oasis/assets/0xa1E73c01E0cF7930F5e91CB291031739FE5Ad6C2/info.json +++ b/blockchains/oasis/assets/0xa1E73c01E0cF7930F5e91CB291031739FE5Ad6C2/info.json @@ -1,5 +1,5 @@ { - "name": "UST (Portal)", + "name": "TerraClassicUSD (Portal)", "type": "OASIS", "symbol": "UST", "decimals": 6, diff --git a/blockchains/oasis/assets/0xdC19A122e268128B5eE20366299fc7b5b199C8e3/info.json b/blockchains/oasis/assets/0xdC19A122e268128B5eE20366299fc7b5b199C8e3/info.json index 377c0f141b766..02004b21ec097 100644 --- a/blockchains/oasis/assets/0xdC19A122e268128B5eE20366299fc7b5b199C8e3/info.json +++ b/blockchains/oasis/assets/0xdC19A122e268128B5eE20366299fc7b5b199C8e3/info.json @@ -1,11 +1,11 @@ { - "name": "Tether USD (Portal from Ethereum)", + "name": "Tether (Portal)", "type": "OASIS", "symbol": "USDTet", "decimals": 6, "description": "Cross Chain Portal Bridged Token", "website": "https://tether.to/", - "explorer": "https://explorer.oasis.updev.si/token/0xdC19A122e268128B5eE20366299fc7b5b199C8e3", + "explorer": "https://explorer.oasis.io/mainnet/emerald/address/0xdC19A122e268128B5eE20366299fc7b5b199C8e3", "status": "active", "id": "0xdC19A122e268128B5eE20366299fc7b5b199C8e3", "tags": [ diff --git a/blockchains/oasis/info/info.json b/blockchains/oasis/info/info.json index c7100c48f04db..1d4655db95e26 100644 --- a/blockchains/oasis/info/info.json +++ b/blockchains/oasis/info/info.json @@ -16,8 +16,8 @@ "url": "https://github.com/oasisprotocol/" }, { - "name": "twitter", - "url": "https://twitter.com/oasisprotocol" + "name": "x", + "url": "https://x.com/oasisprotocol" }, { "name": "telegram", @@ -32,4 +32,4 @@ "url": "https://oasisprotocol.org/papers" } ] -} +} \ No newline at end of file diff --git a/blockchains/oasis/info/square_logo.png b/blockchains/oasis/info/square_logo.png new file mode 100644 index 0000000000000..71a480ee2b166 Binary files /dev/null and b/blockchains/oasis/info/square_logo.png differ diff --git a/blockchains/okc/info/info.json b/blockchains/okc/info/info.json index 40bae2a64e759..826fa04a4e532 100644 --- a/blockchains/okc/info/info.json +++ b/blockchains/okc/info/info.json @@ -14,12 +14,12 @@ "url": "https://github.com/okex/exchain" }, { - "name": "twitter", - "url": "https://twitter.com/OKCnetwork" + "name": "x", + "url": "https://x.com/OKCnetwork" }, { "name": "discord", "url": "https://discord.com/invite/2rynEUqJxP" } ] -} +} \ No newline at end of file diff --git a/blockchains/okc/info/square_logo.png b/blockchains/okc/info/square_logo.png new file mode 100644 index 0000000000000..18b78600f0a8f Binary files /dev/null and b/blockchains/okc/info/square_logo.png differ diff --git a/blockchains/okx/info/square_logo.png b/blockchains/okx/info/square_logo.png new file mode 100644 index 0000000000000..94004fd7db6b5 Binary files /dev/null and b/blockchains/okx/info/square_logo.png differ diff --git a/blockchains/okxchain/info/info.json b/blockchains/okxchain/info/info.json index 7ed615b4216ba..62b3795c60af1 100644 --- a/blockchains/okxchain/info/info.json +++ b/blockchains/okxchain/info/info.json @@ -11,8 +11,8 @@ "status": "active", "links": [ { - "name": "twitter", - "url": "https://twitter.com/OKCNetwork" + "name": "x", + "url": "https://x.com/OKCNetwork" }, { "name": "telegram", @@ -26,4 +26,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/okxchain/info/square_logo.png b/blockchains/okxchain/info/square_logo.png new file mode 100644 index 0000000000000..18b78600f0a8f Binary files /dev/null and b/blockchains/okxchain/info/square_logo.png differ diff --git a/blockchains/ontology/info/info.json b/blockchains/ontology/info/info.json index 1881b9948d24c..0be0a3ecdbb75 100644 --- a/blockchains/ontology/info/info.json +++ b/blockchains/ontology/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/ontio" }, { - "name": "twitter", - "url": "https://twitter.com/OntologyNetwork" + "name": "x", + "url": "https://x.com/OntologyNetwork" }, { "name": "reddit", diff --git a/blockchains/ontology/info/square_logo.png b/blockchains/ontology/info/square_logo.png new file mode 100644 index 0000000000000..276ae0c56044c Binary files /dev/null and b/blockchains/ontology/info/square_logo.png differ diff --git a/blockchains/opbnb/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/info.json b/blockchains/opbnb/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/info.json new file mode 100644 index 0000000000000..60c3310749058 --- /dev/null +++ b/blockchains/opbnb/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/info.json @@ -0,0 +1,24 @@ +{ + "name": "First Digital USD", + "symbol": "FDUSD", + "type": "OPBNB", + "decimals": 18, + "description": "FDUSD provides users with a stable digital currency that is backed by fiat currency, which can help to reduce the volatility in the cryptocurrency market.", + "website": "https://firstdigitallabs.com", + "explorer": "https://opbnbscan.com/token/0x50c5725949a6f0c72e6c4a641f24049a917db0cb", + "status": "active", + "id": "0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb", + "links": [ + { + "name": "x", + "url": "https://x.com/FDLabsHQ" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/first-digital-usd/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/opbnb/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/logo.png b/blockchains/opbnb/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/logo.png new file mode 100644 index 0000000000000..1a880b8aef6b5 Binary files /dev/null and b/blockchains/opbnb/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/logo.png differ diff --git a/blockchains/opbnb/assets/0x9e5AAC1Ba1a2e6aEd6b32689DFcF62A509Ca96f3/info.json b/blockchains/opbnb/assets/0x9e5AAC1Ba1a2e6aEd6b32689DFcF62A509Ca96f3/info.json new file mode 100644 index 0000000000000..0a98f67c7273a --- /dev/null +++ b/blockchains/opbnb/assets/0x9e5AAC1Ba1a2e6aEd6b32689DFcF62A509Ca96f3/info.json @@ -0,0 +1,28 @@ +{ + "name": "Tether USD", + "symbol": "USDT", + "type": "OPBNB", + "decimals": 18, + "description": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar.", + "website": "https://tether.to", + "explorer": "https://opbnbscan.com/token/0x9e5aac1ba1a2e6aed6b32689dfcf62a509ca96f3", + "status": "active", + "id": "0x9e5AAC1Ba1a2e6aEd6b32689DFcF62A509Ca96f3", + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/tether.to/" + }, + { + "name": "x", + "url": "https://x.com/Tether_to/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/tether/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/opbnb/assets/0x9e5AAC1Ba1a2e6aEd6b32689DFcF62A509Ca96f3/logo.png b/blockchains/opbnb/assets/0x9e5AAC1Ba1a2e6aEd6b32689DFcF62A509Ca96f3/logo.png new file mode 100644 index 0000000000000..a70aad962615f Binary files /dev/null and b/blockchains/opbnb/assets/0x9e5AAC1Ba1a2e6aEd6b32689DFcF62A509Ca96f3/logo.png differ diff --git a/blockchains/opbnb/assets/0xB01D49C26416a352fac4Fbb3D555d5F2543E3247/info.json b/blockchains/opbnb/assets/0xB01D49C26416a352fac4Fbb3D555d5F2543E3247/info.json new file mode 100644 index 0000000000000..908b4323e9615 --- /dev/null +++ b/blockchains/opbnb/assets/0xB01D49C26416a352fac4Fbb3D555d5F2543E3247/info.json @@ -0,0 +1,11 @@ +{ + "name": "CUBISWAP", + "symbol": "CUBI", + "type": "OPBNB", + "decimals": 18, + "description": "CUBISwap is a Decentralized Autonomous Organization (DAO) that offers a full suite of tools to explore and engage with decentralized finance opportunities.", + "website": "https://www.cubiswap.finance/", + "explorer": "https://opbnbscan.com/token/0xb01d49c26416a352fac4fbb3d555d5f2543e3247", + "status": "active", + "id": "0xB01D49C26416a352fac4Fbb3D555d5F2543E3247" +} \ No newline at end of file diff --git a/blockchains/opbnb/assets/0xB01D49C26416a352fac4Fbb3D555d5F2543E3247/logo.png b/blockchains/opbnb/assets/0xB01D49C26416a352fac4Fbb3D555d5F2543E3247/logo.png new file mode 100644 index 0000000000000..3d004e499b387 Binary files /dev/null and b/blockchains/opbnb/assets/0xB01D49C26416a352fac4Fbb3D555d5F2543E3247/logo.png differ diff --git a/blockchains/opbnb/assets/0xb97fe5f3e5bf1DDAC8Ea1D2Fa77f0a45CDb1DcEC/info.json b/blockchains/opbnb/assets/0xb97fe5f3e5bf1DDAC8Ea1D2Fa77f0a45CDb1DcEC/info.json new file mode 100644 index 0000000000000..43e4c4da1fecd --- /dev/null +++ b/blockchains/opbnb/assets/0xb97fe5f3e5bf1DDAC8Ea1D2Fa77f0a45CDb1DcEC/info.json @@ -0,0 +1,15 @@ +{ + "name": "Wrapped BNB", + "symbol": "WBNB", + "type": "OPBNB", + "decimals": 18, + "description": "As the native coin of Binance Chain, BNB has multiple use cases: fueling transactions on the Chain, paying for transaction fees on Binance Exchange, making in-store payments, and many more.", + "website": "https://binance.org", + "explorer": "https://opbnbscan.com/token/0xb97fe5f3e5bf1ddac8ea1d2fa77f0a45cdb1dcec", + "research": "https://research.binance.com/en/projects/bnb", + "status": "active", + "id": "0xb97fe5f3e5bf1DDAC8Ea1D2Fa77f0a45CDb1DcEC", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/opbnb/assets/0xb97fe5f3e5bf1DDAC8Ea1D2Fa77f0a45CDb1DcEC/logo.png b/blockchains/opbnb/assets/0xb97fe5f3e5bf1DDAC8Ea1D2Fa77f0a45CDb1DcEC/logo.png new file mode 100644 index 0000000000000..418a0d0271e67 Binary files /dev/null and b/blockchains/opbnb/assets/0xb97fe5f3e5bf1DDAC8Ea1D2Fa77f0a45CDb1DcEC/logo.png differ diff --git a/blockchains/opbnb/info/info.json b/blockchains/opbnb/info/info.json new file mode 100644 index 0000000000000..4f5c3a65867e2 --- /dev/null +++ b/blockchains/opbnb/info/info.json @@ -0,0 +1,23 @@ +{ + "name": "opBNB", + "website": "https://opbnb.bnbchain.org/en", + "description": "An Optimized Layer-2 Solution That Delivers Lower Fees And Higher Throughput To Unlock The Full Potential Of The BNB Chain.", + "explorer": "https://opbnbscan.com/", + "type": "coin", + "symbol": "BNB", + "decimals": 18, + "status": "active", + "tags": [ + "dapp" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/BNBChainDevs" + }, + { + "name": "discord", + "url": "https://discord.com/invite/bnbchain" + } + ] +} \ No newline at end of file diff --git a/blockchains/opbnb/info/logo.png b/blockchains/opbnb/info/logo.png new file mode 100644 index 0000000000000..840d4766aff82 Binary files /dev/null and b/blockchains/opbnb/info/logo.png differ diff --git a/blockchains/opbnb/info/square_logo.png b/blockchains/opbnb/info/square_logo.png new file mode 100644 index 0000000000000..74c6adceac3ed Binary files /dev/null and b/blockchains/opbnb/info/square_logo.png differ diff --git a/blockchains/optimism/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json b/blockchains/optimism/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json new file mode 100644 index 0000000000000..b49ffae42fd8e --- /dev/null +++ b/blockchains/optimism/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json @@ -0,0 +1,37 @@ +{ + "name": "USDA", + "website": "https://www.angle.money/", + "description": "USDA is an over-collateralized and decentralized USD stablecoin by the Angle Protocol.", + "explorer": "https://optimistic.etherscan.io/token/0x0000206329b97DB379d5E1Bf586BbDB969C63274", + "type": "OPTIMISM", + "symbol": "USDA", + "decimals": 18, + "status": "active", + "tags": [ + "defi", + "stablecoin" + ], + "id": "0x0000206329b97DB379d5E1Bf586BbDB969C63274", + "links": [ + { + "name": "github", + "url": "https://github.com/AngleProtocol" + }, + { + "name": "x", + "url": "https://x.com/AngleProtocol" + }, + { + "name": "docs", + "url": "https://docs.angle.money" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/angle-usd" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZheVAnFt6h" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/logo.png b/blockchains/optimism/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/logo.png new file mode 100644 index 0000000000000..759db2e96cc84 Binary files /dev/null and b/blockchains/optimism/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/logo.png differ diff --git a/blockchains/optimism/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/info.json b/blockchains/optimism/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/info.json new file mode 100644 index 0000000000000..6fb535adfffc1 --- /dev/null +++ b/blockchains/optimism/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/info.json @@ -0,0 +1,37 @@ +{ + "name": "Staked USDA", + "website": "https://www.angle.money/", + "description": "stUSD is a USD savings solution built on top of USDA by the Angle Protocol", + "explorer": "https://optimistic.etherscan.io/token/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776", + "type": "OPTIMISM", + "symbol": "stUSD", + "decimals": 18, + "status": "active", + "tags": [ + "defi", + "stablecoin" + ], + "id": "0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776", + "links": [ + { + "name": "github", + "url": "https://github.com/AngleProtocol" + }, + { + "name": "x", + "url": "https://x.com/AngleProtocol" + }, + { + "name": "docs", + "url": "https://docs.angle.money" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/angle-staked-agusd" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZheVAnFt6h" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/logo.png b/blockchains/optimism/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/logo.png new file mode 100644 index 0000000000000..a0fd0bd217403 Binary files /dev/null and b/blockchains/optimism/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/logo.png differ diff --git a/blockchains/optimism/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/info.json b/blockchains/optimism/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/info.json new file mode 100644 index 0000000000000..10335214f9b1c --- /dev/null +++ b/blockchains/optimism/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/info.json @@ -0,0 +1,37 @@ +{ + "name": "Staked EURA", + "website": "https://www.angle.money/", + "description": "stEUR is a Euro savings solution built on top of EURA by the Angle Protocol.", + "explorer": "https://optimistic.etherscan.io/token/0x004626A008B1aCdC4c74ab51644093b155e59A23", + "type": "OPTIMISM", + "symbol": "stEUR", + "decimals": 18, + "status": "active", + "tags": [ + "defi", + "stablecoin" + ], + "id": "0x004626A008B1aCdC4c74ab51644093b155e59A23", + "links": [ + { + "name": "github", + "url": "https://github.com/AngleProtocol" + }, + { + "name": "x", + "url": "https://x.com/AngleProtocol" + }, + { + "name": "docs", + "url": "https://docs.angle.money" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/staked-ageur" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZheVAnFt6h" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/logo.png b/blockchains/optimism/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/logo.png new file mode 100644 index 0000000000000..dbf1b94234fc1 Binary files /dev/null and b/blockchains/optimism/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/logo.png differ diff --git a/blockchains/optimism/assets/0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85/info.json b/blockchains/optimism/assets/0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85/info.json new file mode 100644 index 0000000000000..fc45bba2a3520 --- /dev/null +++ b/blockchains/optimism/assets/0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85/info.json @@ -0,0 +1,28 @@ +{ + "name": "USDC", + "type": "OPTIMISM", + "symbol": "USDC", + "decimals": 6, + "website": "https://www.centre.io/", + "description": "USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.", + "explorer": "https://optimistic.etherscan.io/token/0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85", + "status": "active", + "id": "0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + }, + { + "name": "github", + "url": "https://github.com/centrehq" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85/logo.png b/blockchains/optimism/assets/0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85/logo.png new file mode 100644 index 0000000000000..b6f150d8a7d46 Binary files /dev/null and b/blockchains/optimism/assets/0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85/logo.png differ diff --git a/blockchains/optimism/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json b/blockchains/optimism/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json new file mode 100644 index 0000000000000..28ba84787c13c --- /dev/null +++ b/blockchains/optimism/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json @@ -0,0 +1,25 @@ +{ + "name": "CyberConnect", + "type": "OPTIMISM", + "symbol": "CYBER", + "decimals": 18, + "website": "https://cyberconnect.me/", + "description": "CyberConnect is a Web3 social network that enables developers to create social applications empowering users to own their digital identity, content, connections, and interactions.", + "explorer": "https://optimistic.etherscan.io/token/0x14778860e937f509e651192a90589de711fb88a9", + "status": "active", + "id": "0x14778860E937f509e651192a90589dE711Fb88a9", + "links": [ + { + "name": "x", + "url": "https://x.com/CyberConnectHQ" + }, + { + "name": "github", + "url": "https://github.com/cyberconnecthq" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cyberconnect/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png b/blockchains/optimism/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png new file mode 100644 index 0000000000000..b26b7b808fb16 Binary files /dev/null and b/blockchains/optimism/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png differ diff --git a/blockchains/optimism/assets/0x1DB2466d9F5e10D7090E7152B68d62703a2245F0/info.json b/blockchains/optimism/assets/0x1DB2466d9F5e10D7090E7152B68d62703a2245F0/info.json new file mode 100644 index 0000000000000..66b7588289435 --- /dev/null +++ b/blockchains/optimism/assets/0x1DB2466d9F5e10D7090E7152B68d62703a2245F0/info.json @@ -0,0 +1,21 @@ +{ + "name": "Sonne", + "website": "https://sonne.finance/", + "description": "Sonne Finance is the first native decentralized lending protocol for individuals, institutions and protocols to access financial services on Optimism. Users can deposit their assets, use them as collateral and borrow against them.", + "explorer": "https://optimistic.etherscan.io/token/0x1db2466d9f5e10d7090e7152b68d62703a2245f0", + "type": "OPTIMISM", + "symbol": "SONNE", + "decimals": 18, + "status": "active", + "id": "0x1DB2466d9F5e10D7090E7152B68d62703a2245F0", + "links": [ + { + "name": "x", + "url": "https://x.com/SonneFinance" + }, + { + "name": "telegram", + "url": "https://t.me/SonneFin" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x1DB2466d9F5e10D7090E7152B68d62703a2245F0/logo.png b/blockchains/optimism/assets/0x1DB2466d9F5e10D7090E7152B68d62703a2245F0/logo.png new file mode 100644 index 0000000000000..41b99fe6a3acc Binary files /dev/null and b/blockchains/optimism/assets/0x1DB2466d9F5e10D7090E7152B68d62703a2245F0/logo.png differ diff --git a/blockchains/optimism/assets/0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb/info.json b/blockchains/optimism/assets/0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb/info.json new file mode 100644 index 0000000000000..3e374cef6f3d6 --- /dev/null +++ b/blockchains/optimism/assets/0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wrapped liquid staked Ether 2.0", + "website": "https://lido.fi/", + "description": "Lido is a liquid staking solution for Ethereum. Lido lets users stake their ETH - with no minimum deposits or maintaining of infrastructure - whilst participating in on-chain activities, e.g. lending, to compound returns. LDO is an ERC20 token granting governance rights in the Lido DAO.", + "explorer": "https://optimistic.etherscan.io/token/0x1f32b1c2345538c0c6f582fcb022739c4a194ebb", + "type": "OPTIMISM", + "symbol": "wstETH", + "decimals": 18, + "status": "active", + "id": "0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb", + "links": [ + { + "name": "x", + "url": "https://x.com/LidoFinance" + }, + { + "name": "telegram", + "url": "https://t.me/lidofinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb/logo.png b/blockchains/optimism/assets/0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb/logo.png new file mode 100644 index 0000000000000..89a553cdf6f4a Binary files /dev/null and b/blockchains/optimism/assets/0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb/logo.png differ diff --git a/blockchains/optimism/assets/0x1F514A61bcde34F94Bc39731235690ab9da737F7/info.json b/blockchains/optimism/assets/0x1F514A61bcde34F94Bc39731235690ab9da737F7/info.json new file mode 100644 index 0000000000000..73a7337c8b71d --- /dev/null +++ b/blockchains/optimism/assets/0x1F514A61bcde34F94Bc39731235690ab9da737F7/info.json @@ -0,0 +1,21 @@ +{ + "name": "Tarot", + "website": "https://www.tarot.to/", + "description": "Tarot is a multi-chain, decentralized lending protocol where users can participate as lenders or borrowers in isolated lending pools.", + "explorer": "https://optimistic.etherscan.io/token/0x1F514A61bcde34F94Bc39731235690ab9da737F7", + "type": "OPTIMISM", + "symbol": "TAROT", + "decimals": 18, + "status": "active", + "id": "0x1F514A61bcde34F94Bc39731235690ab9da737F7", + "links": [ + { + "name": "x", + "url": "https://x.com/tarotfinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tarot/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x1F514A61bcde34F94Bc39731235690ab9da737F7/logo.png b/blockchains/optimism/assets/0x1F514A61bcde34F94Bc39731235690ab9da737F7/logo.png new file mode 100644 index 0000000000000..37cfe739d8f9c Binary files /dev/null and b/blockchains/optimism/assets/0x1F514A61bcde34F94Bc39731235690ab9da737F7/logo.png differ diff --git a/blockchains/optimism/assets/0x1f444e9fb735B2438beE3B841EfEa060d235ABf1/info.json b/blockchains/optimism/assets/0x1f444e9fb735B2438beE3B841EfEa060d235ABf1/info.json new file mode 100644 index 0000000000000..a50045bbc0bfa --- /dev/null +++ b/blockchains/optimism/assets/0x1f444e9fb735B2438beE3B841EfEa060d235ABf1/info.json @@ -0,0 +1,21 @@ +{ + "name": "Opulous", + "type": "OPTIMISM", + "symbol": "OPUL", + "website": "https://opulous.org/", + "decimals": 18, + "description": "Opulous Token believe in a future where musicians keep control of the music they create and forge even deeper connections with their fans.", + "explorer": "https://optimistic.etherscan.io/token/0x1f444e9fb735b2438bee3b841efea060d235abf1", + "status": "active", + "id": "0x1f444e9fb735B2438beE3B841EfEa060d235ABf1", + "links": [ + { + "name": "telegram", + "url": "https://t.me/opulousapp" + }, + { + "name": "x", + "url": "https://x.com/opulousapp" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x1f444e9fb735B2438beE3B841EfEa060d235ABf1/logo.png b/blockchains/optimism/assets/0x1f444e9fb735B2438beE3B841EfEa060d235ABf1/logo.png new file mode 100644 index 0000000000000..afa7fedd2bd39 Binary files /dev/null and b/blockchains/optimism/assets/0x1f444e9fb735B2438beE3B841EfEa060d235ABf1/logo.png differ diff --git a/blockchains/optimism/assets/0x217D47011b23BB961eB6D93cA9945B7501a5BB11/info.json b/blockchains/optimism/assets/0x217D47011b23BB961eB6D93cA9945B7501a5BB11/info.json new file mode 100644 index 0000000000000..39d9da183a22b --- /dev/null +++ b/blockchains/optimism/assets/0x217D47011b23BB961eB6D93cA9945B7501a5BB11/info.json @@ -0,0 +1,21 @@ +{ + "name": "Thales DAO", + "website": "https://thalesmarket.io/", + "description": "Thales is an Ethereum protocol that allows the creation of peer-to-peer parimutuel markets that anyone can join. This building block is the foundation of novel on-chain initiatives, from a platform for AMM-based positional markets to immersive gamified experiences, and much more.", + "explorer": "https://optimistic.etherscan.io/token/0x217d47011b23bb961eb6d93ca9945b7501a5bb11", + "type": "OPTIMISM", + "symbol": "THALES", + "decimals": 18, + "status": "active", + "id": "0x217D47011b23BB961eB6D93cA9945B7501a5BB11", + "links": [ + { + "name": "x", + "url": "https://x.com/thalesmarket" + }, + { + "name": "telegram", + "url": "https://t.me/thalesprotocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x217D47011b23BB961eB6D93cA9945B7501a5BB11/logo.png b/blockchains/optimism/assets/0x217D47011b23BB961eB6D93cA9945B7501a5BB11/logo.png new file mode 100644 index 0000000000000..5df04ac0aa8c2 Binary files /dev/null and b/blockchains/optimism/assets/0x217D47011b23BB961eB6D93cA9945B7501a5BB11/logo.png differ diff --git a/blockchains/optimism/assets/0x2513486f18eeE1498D7b6281f668B955181Dd0D9/info.json b/blockchains/optimism/assets/0x2513486f18eeE1498D7b6281f668B955181Dd0D9/info.json new file mode 100644 index 0000000000000..af9041272ee85 --- /dev/null +++ b/blockchains/optimism/assets/0x2513486f18eeE1498D7b6281f668B955181Dd0D9/info.json @@ -0,0 +1,21 @@ +{ + "name": "OpenXSwap Gov", + "website": "https://app.openxswap.exchange/", + "description": "xOpenX is the Governance Token of the OpenX Project. Users who purchase an OpenxReserve NFT will be given the option of locking xOpenX to create a vexOpenX value for governance.", + "explorer": "https://optimistic.etherscan.io/token/0x2513486f18eee1498d7b6281f668b955181dd0d9", + "type": "OPTIMISM", + "symbol": "xOpenX", + "decimals": 18, + "status": "active", + "id": "0x2513486f18eeE1498D7b6281f668B955181Dd0D9", + "links": [ + { + "name": "x", + "url": "https://x.com/OpenXSwap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/openxswap-gov-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x2513486f18eeE1498D7b6281f668B955181Dd0D9/logo.png b/blockchains/optimism/assets/0x2513486f18eeE1498D7b6281f668B955181Dd0D9/logo.png new file mode 100644 index 0000000000000..fd73d285d1587 Binary files /dev/null and b/blockchains/optimism/assets/0x2513486f18eeE1498D7b6281f668B955181Dd0D9/logo.png differ diff --git a/blockchains/optimism/assets/0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6/info.json b/blockchains/optimism/assets/0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6/info.json index 3e12eaef72924..26f599dead01a 100644 --- a/blockchains/optimism/assets/0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6/info.json +++ b/blockchains/optimism/assets/0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6/info.json @@ -10,8 +10,8 @@ "id": "0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6", "links": [ { - "name": "twitter", - "url": "https://twitter.com/chainlink" + "name": "x", + "url": "https://x.com/chainlink" }, { "name": "coingecko", diff --git a/blockchains/optimism/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json b/blockchains/optimism/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json new file mode 100644 index 0000000000000..e7867e97f472d --- /dev/null +++ b/blockchains/optimism/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json @@ -0,0 +1,33 @@ +{ + "name": "Nya", + "type": "OPTIMISM", + "symbol": "NYA", + "decimals": 18, + "website": "https://www.nya.vip", + "description": "Explore the cultural phenomenon of Nya - the playful cat sound that's become a symbol of joy and connection. Discover how this simple word unites fans worldwide.", + "explorer": "https://optimistic.etherscan.io/token/0x38F9bf9dCe51833Ec7f03C9dC218197999999999", + "status": "active", + "id": "0x38F9bf9dCe51833Ec7f03C9dC218197999999999", + "links": [ + { + "name": "x", + "url": "https://x.com/NyaOnEarth" + }, + { + "name": "telegram", + "url": "https://t.me/NyaOnEarth" + }, + { + "name": "discord", + "url": "https://discord.com/invite/3V8gZFP5kb" + }, + { + "name": "docs", + "url": "https://wiki.nya.vip" + } + ], + "tags": [ + "memes", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png b/blockchains/optimism/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png new file mode 100644 index 0000000000000..c34f31c6b2335 Binary files /dev/null and b/blockchains/optimism/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png differ diff --git a/blockchains/optimism/assets/0x39FdE572a18448F8139b7788099F0a0740f51205/info.json b/blockchains/optimism/assets/0x39FdE572a18448F8139b7788099F0a0740f51205/info.json new file mode 100644 index 0000000000000..f9798a2899235 --- /dev/null +++ b/blockchains/optimism/assets/0x39FdE572a18448F8139b7788099F0a0740f51205/info.json @@ -0,0 +1,21 @@ +{ + "name": "Oath", + "type": "OPTIMISM", + "symbol": "OATH", + "decimals": 18, + "website": "https://www.bytemasons.com/", + "description": "Byte Masons empower communities with Web3 & DeFi tools to provide financial opportunities for all.", + "explorer": "https://optimistic.etherscan.io/token/0x39FdE572a18448F8139b7788099F0a0740f51205", + "status": "active", + "id": "0x39FdE572a18448F8139b7788099F0a0740f51205", + "links": [ + { + "name": "x", + "url": "https://x.com/ByteMasons" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/oath/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x39FdE572a18448F8139b7788099F0a0740f51205/logo.png b/blockchains/optimism/assets/0x39FdE572a18448F8139b7788099F0a0740f51205/logo.png new file mode 100644 index 0000000000000..52c36ce36525c Binary files /dev/null and b/blockchains/optimism/assets/0x39FdE572a18448F8139b7788099F0a0740f51205/logo.png differ diff --git a/blockchains/optimism/assets/0x3Ed9AcAac7Bd974eB83a8eA6432a239e3C829D5D/info.json b/blockchains/optimism/assets/0x3Ed9AcAac7Bd974eB83a8eA6432a239e3C829D5D/info.json new file mode 100644 index 0000000000000..839c4cc6c1298 --- /dev/null +++ b/blockchains/optimism/assets/0x3Ed9AcAac7Bd974eB83a8eA6432a239e3C829D5D/info.json @@ -0,0 +1,21 @@ +{ + "name": "LERNITAS", + "type": "OPTIMISM", + "symbol": "2192", + "decimals": 18, + "website": "https://www.kenglernitas.wtf/", + "description": "keng uv enchen spartir. derfindor of sinfetiks. 2192.", + "explorer": "https://optimistic.etherscan.io/token/0x3ed9acaac7bd974eb83a8ea6432a239e3c829d5d", + "status": "active", + "id": "0x3Ed9AcAac7Bd974eB83a8eA6432a239e3C829D5D", + "links": [ + { + "name": "x", + "url": "https://x.com/KengLernitas" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lernitas/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x3Ed9AcAac7Bd974eB83a8eA6432a239e3C829D5D/logo.png b/blockchains/optimism/assets/0x3Ed9AcAac7Bd974eB83a8eA6432a239e3C829D5D/logo.png new file mode 100644 index 0000000000000..46bc03e1cf82f Binary files /dev/null and b/blockchains/optimism/assets/0x3Ed9AcAac7Bd974eB83a8eA6432a239e3C829D5D/logo.png differ diff --git a/blockchains/optimism/assets/0x4200000000000000000000000000000000000042/info.json b/blockchains/optimism/assets/0x4200000000000000000000000000000000000042/info.json index a4e1cde25abf8..cc08d7a98c38d 100644 --- a/blockchains/optimism/assets/0x4200000000000000000000000000000000000042/info.json +++ b/blockchains/optimism/assets/0x4200000000000000000000000000000000000042/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/optimism-ethereum/" }, { - "name": "twitter", - "url": "https://twitter.com/optimismPBC" + "name": "x", + "url": "https://x.com/optimismPBC" }, { "name": "github", diff --git a/blockchains/optimism/assets/0x422812fC000E831b5ff13C181d85F34dd71380b3/info.json b/blockchains/optimism/assets/0x422812fC000E831b5ff13C181d85F34dd71380b3/info.json new file mode 100644 index 0000000000000..695d7d2288226 --- /dev/null +++ b/blockchains/optimism/assets/0x422812fC000E831b5ff13C181d85F34dd71380b3/info.json @@ -0,0 +1,21 @@ +{ + "name": "Miracleplay", + "type": "OPTIMISM", + "symbol": "MPT", + "decimals": 18, + "website": "https://miracleplay.gg/", + "description": "Miracleplay is a revolutionary platform offering profitable tournament gaming, committed to creating a democratic, transparent, and secure environment for players.", + "explorer": "hhttps://snowtrace.io/token/0x422812fC000E831b5ff13C181d85F34dd71380b3", + "status": "active", + "id": "0x422812fC000E831b5ff13C181d85F34dd71380b3", + "links": [ + { + "name": "x", + "url": "https://x.com/miracleplaygg" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/miracle-play/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x422812fC000E831b5ff13C181d85F34dd71380b3/logo.png b/blockchains/optimism/assets/0x422812fC000E831b5ff13C181d85F34dd71380b3/logo.png new file mode 100644 index 0000000000000..8d017f494222d Binary files /dev/null and b/blockchains/optimism/assets/0x422812fC000E831b5ff13C181d85F34dd71380b3/logo.png differ diff --git a/blockchains/optimism/assets/0x46f21fDa29F1339e0aB543763FF683D399e393eC/info.json b/blockchains/optimism/assets/0x46f21fDa29F1339e0aB543763FF683D399e393eC/info.json new file mode 100644 index 0000000000000..d6bb0b79d0f20 --- /dev/null +++ b/blockchains/optimism/assets/0x46f21fDa29F1339e0aB543763FF683D399e393eC/info.json @@ -0,0 +1,21 @@ +{ + "name": "Perpetually Bonded Velo", + "website": "https://app.openxswap.exchange/PerpetualBonds", + "description": "opxveVELO is an algorithmic synthetic currency pegged to the price of VELO that tokenizes the value of our veVELO position. It is the receipt-token issued for perpetually bonded VELO.", + "explorer": "https://optimistic.etherscan.io/token/0x46f21fda29f1339e0ab543763ff683d399e393ec", + "type": "OPTIMISM", + "symbol": "opxveVELO", + "decimals": 18, + "status": "active", + "id": "0x46f21fDa29F1339e0aB543763FF683D399e393eC", + "links": [ + { + "name": "x", + "url": "https://x.com/OpenXSwap" + }, + { + "name": "telegram", + "url": "https://t.me/OpenXSwap" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x46f21fDa29F1339e0aB543763FF683D399e393eC/logo.png b/blockchains/optimism/assets/0x46f21fDa29F1339e0aB543763FF683D399e393eC/logo.png new file mode 100644 index 0000000000000..6b7d4f51b597c Binary files /dev/null and b/blockchains/optimism/assets/0x46f21fDa29F1339e0aB543763FF683D399e393eC/logo.png differ diff --git a/blockchains/optimism/assets/0x5029C236320b8f15eF0a657054B84d90bfBEDED3/info.json b/blockchains/optimism/assets/0x5029C236320b8f15eF0a657054B84d90bfBEDED3/info.json index 5cfef792c3767..d4fd73a2f4db6 100644 --- a/blockchains/optimism/assets/0x5029C236320b8f15eF0a657054B84d90bfBEDED3/info.json +++ b/blockchains/optimism/assets/0x5029C236320b8f15eF0a657054B84d90bfBEDED3/info.json @@ -10,8 +10,8 @@ "id": "0x5029C236320b8f15eF0a657054B84d90bfBEDED3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SatoshiNJunior" + "name": "x", + "url": "https://x.com/SatoshiNJunior" }, { "name": "medium", diff --git a/blockchains/optimism/assets/0x50Bce64397C75488465253c0A034b8097FeA6578/info.json b/blockchains/optimism/assets/0x50Bce64397C75488465253c0A034b8097FeA6578/info.json index ca8001de331a4..a3a347c0aca4e 100644 --- a/blockchains/optimism/assets/0x50Bce64397C75488465253c0A034b8097FeA6578/info.json +++ b/blockchains/optimism/assets/0x50Bce64397C75488465253c0A034b8097FeA6578/info.json @@ -10,8 +10,8 @@ "id": "0x50Bce64397C75488465253c0A034b8097FeA6578", "links": [ { - "name": "twitter", - "url": "https://twitter.com/HanIdentity" + "name": "x", + "url": "https://x.com/HanIdentity" }, { "name": "telegram", @@ -30,4 +30,4 @@ "url": "https://coingecko.com/en/coins/hanchain/" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/info.json b/blockchains/optimism/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/info.json index 84dc215664bb6..a0f0eaf2a4fd0 100644 --- a/blockchains/optimism/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/info.json +++ b/blockchains/optimism/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/info.json @@ -10,8 +10,8 @@ "id": "0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb", "links": [ { - "name": "twitter", - "url": "https://twitter.com/lyrafinance" + "name": "x", + "url": "https://x.com/lyrafinance" }, { "name": "coingecko", diff --git a/blockchains/optimism/assets/0x5A5fFf6F753d7C11A56A52FE47a177a87e431655/info.json b/blockchains/optimism/assets/0x5A5fFf6F753d7C11A56A52FE47a177a87e431655/info.json new file mode 100644 index 0000000000000..bb0441e6d71e3 --- /dev/null +++ b/blockchains/optimism/assets/0x5A5fFf6F753d7C11A56A52FE47a177a87e431655/info.json @@ -0,0 +1,28 @@ +{ + "name": "Synapse", + "website": "https://synapseprotocol.com/", + "description": "Synapse is a cross-chain layer ∞ protocol powering interoperability between blockchains.", + "explorer": "https://optimistic.etherscan.io/token/0x5A5fFf6F753d7C11A56A52FE47a177a87e431655", + "type": "OPTIMISM", + "symbol": "SYN", + "decimals": 18, + "status": "active", + "id": "0x5A5fFf6F753d7C11A56A52FE47a177a87e431655", + "tags": [ + "nft" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/synapseprotocol" + }, + { + "name": "telegram", + "url": "https://t.me/synapseprotocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/synapse-2/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x5A5fFf6F753d7C11A56A52FE47a177a87e431655/logo.png b/blockchains/optimism/assets/0x5A5fFf6F753d7C11A56A52FE47a177a87e431655/logo.png new file mode 100644 index 0000000000000..577673c43c6a4 Binary files /dev/null and b/blockchains/optimism/assets/0x5A5fFf6F753d7C11A56A52FE47a177a87e431655/logo.png differ diff --git a/blockchains/optimism/assets/0x66E535e8D2ebf13F49F3D49e5c50395a97C137b1/info.json b/blockchains/optimism/assets/0x66E535e8D2ebf13F49F3D49e5c50395a97C137b1/info.json new file mode 100644 index 0000000000000..3ffcec6b358ae --- /dev/null +++ b/blockchains/optimism/assets/0x66E535e8D2ebf13F49F3D49e5c50395a97C137b1/info.json @@ -0,0 +1,21 @@ +{ + "name": "Molten", + "type": "OPTIMISM", + "symbol": "MOLTEN", + "decimals": 18, + "website": "https://www.unidex.exchange/", + "description": "Molten is the native gas token for the Molten Layer 2 scaling solution.", + "explorer": "https://optimistic.etherscan.io/token/0x66E535e8D2ebf13F49F3D49e5c50395a97C137b1", + "status": "active", + "id": "0x66E535e8D2ebf13F49F3D49e5c50395a97C137b1", + "links": [ + { + "name": "x", + "url": "https://x.com/MoltenL2" + }, + { + "name": "telegram", + "url": "https://t.me/moltennetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x66E535e8D2ebf13F49F3D49e5c50395a97C137b1/logo.png b/blockchains/optimism/assets/0x66E535e8D2ebf13F49F3D49e5c50395a97C137b1/logo.png new file mode 100644 index 0000000000000..ee393a33feb22 Binary files /dev/null and b/blockchains/optimism/assets/0x66E535e8D2ebf13F49F3D49e5c50395a97C137b1/logo.png differ diff --git a/blockchains/optimism/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json b/blockchains/optimism/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json new file mode 100644 index 0000000000000..f4b4c4a11cbe5 --- /dev/null +++ b/blockchains/optimism/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json @@ -0,0 +1,21 @@ +{ + "name": "LayerZero", + "website": "https://layerzero.network/", + "description": "LayerZero is a technology that enables applications to move data across blockchains, uniquely supporting censorship-resistant messages and permissionless development through immutable smart contracts", + "explorer": "https://optimistic.etherscan.io/token/0x6985884c4392d348587b19cb9eaaf157f13271cd", + "type": "OPTIMISM", + "symbol": "ZRO", + "decimals": 18, + "status": "active", + "id": "0x6985884C4392D348587B19cb9eAAf157F13271cd", + "links": [ + { + "name": "x", + "url": "https://x.com/LayerZero_Labs" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/VcqxYkStIDsyN2Rh" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png b/blockchains/optimism/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png new file mode 100644 index 0000000000000..203a846cfdf6b Binary files /dev/null and b/blockchains/optimism/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png differ diff --git a/blockchains/optimism/assets/0x6F0fecBC276de8fC69257065fE47C5a03d986394/info.json b/blockchains/optimism/assets/0x6F0fecBC276de8fC69257065fE47C5a03d986394/info.json new file mode 100644 index 0000000000000..b3e3ce8bf80c6 --- /dev/null +++ b/blockchains/optimism/assets/0x6F0fecBC276de8fC69257065fE47C5a03d986394/info.json @@ -0,0 +1,21 @@ +{ + "name": "Popcorn", + "website": "https://www.popcorn.network/", + "description": "Popcorn is a regenerative yield optimizing protocol with soul. Decentralized technology drives the future towards a more inclusive and transparent financial system.", + "explorer": "https://optimistic.etherscan.io/token/0x6F0fecBC276de8fC69257065fE47C5a03d986394", + "type": "OPTIMISM", + "symbol": "POP", + "decimals": 18, + "status": "active", + "id": "0x6F0fecBC276de8fC69257065fE47C5a03d986394", + "links": [ + { + "name": "x", + "url": "https://x.com/Popcorn_DAO" + }, + { + "name": "telegram", + "url": "https://t.me/popcorndaochat" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x6F0fecBC276de8fC69257065fE47C5a03d986394/logo.png b/blockchains/optimism/assets/0x6F0fecBC276de8fC69257065fE47C5a03d986394/logo.png new file mode 100644 index 0000000000000..d990417da7e58 Binary files /dev/null and b/blockchains/optimism/assets/0x6F0fecBC276de8fC69257065fE47C5a03d986394/logo.png differ diff --git a/blockchains/optimism/assets/0x73cb180bf0521828d8849bc8CF2B920918e23032/info.json b/blockchains/optimism/assets/0x73cb180bf0521828d8849bc8CF2B920918e23032/info.json new file mode 100644 index 0000000000000..615d30c92a38e --- /dev/null +++ b/blockchains/optimism/assets/0x73cb180bf0521828d8849bc8CF2B920918e23032/info.json @@ -0,0 +1,21 @@ +{ + "name": "USD+", + "website": "https://lido.fi/", + "description": "USD+ is a yield-generating stablecoin yielding 8-12% pa, via daily rebase. It is fully backed by a portfolio of liquid, yield generating, low risk DeFi assets .", + "explorer": "https://optimistic.etherscan.io/token/0x73cb180bf0521828d8849bc8CF2B920918e23032", + "type": "OPTIMISM", + "symbol": "USD+", + "decimals": 6, + "status": "active", + "id": "0x73cb180bf0521828d8849bc8CF2B920918e23032", + "links": [ + { + "name": "x", + "url": "https://x.com/overnight_fi" + }, + { + "name": "telegram", + "url": "https://t.me/overnight_fi" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x73cb180bf0521828d8849bc8CF2B920918e23032/logo.png b/blockchains/optimism/assets/0x73cb180bf0521828d8849bc8CF2B920918e23032/logo.png new file mode 100644 index 0000000000000..ba8cca27a175c Binary files /dev/null and b/blockchains/optimism/assets/0x73cb180bf0521828d8849bc8CF2B920918e23032/logo.png differ diff --git a/blockchains/optimism/assets/0x7F5c764cBc14f9669B88837ca1490cCa17c31607/info.json b/blockchains/optimism/assets/0x7F5c764cBc14f9669B88837ca1490cCa17c31607/info.json index 7edfa12b88d80..cd4da59762e8c 100644 --- a/blockchains/optimism/assets/0x7F5c764cBc14f9669B88837ca1490cCa17c31607/info.json +++ b/blockchains/optimism/assets/0x7F5c764cBc14f9669B88837ca1490cCa17c31607/info.json @@ -1,7 +1,7 @@ { - "name": "USD Coin", + "name": "USD Coin (Bridged from Ethereum)", "type": "OPTIMISM", - "symbol": "USDC", + "symbol": "USDC.e", "decimals": 6, "website": "https://www.centre.io/", "description": "USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.", diff --git a/blockchains/optimism/assets/0x8700dAec35aF8Ff88c16BdF0418774CB3D7599B4/info.json b/blockchains/optimism/assets/0x8700dAec35aF8Ff88c16BdF0418774CB3D7599B4/info.json index 723f7547281a8..e8442114f39f4 100644 --- a/blockchains/optimism/assets/0x8700dAec35aF8Ff88c16BdF0418774CB3D7599B4/info.json +++ b/blockchains/optimism/assets/0x8700dAec35aF8Ff88c16BdF0418774CB3D7599B4/info.json @@ -1,5 +1,5 @@ { - "name": "Synthetix Network", + "name": "Synthetix", "symbol": "SNX", "type": "OPTIMISM", "decimals": 18, @@ -15,8 +15,8 @@ "url": "https://github.com/havven/havven" }, { - "name": "twitter", - "url": "https://twitter.com/synthetix_io" + "name": "x", + "url": "https://x.com/synthetix_io" }, { "name": "reddit", diff --git a/blockchains/optimism/assets/0x8B21e9b7dAF2c4325bf3D18c1BeB79A347fE902A/info.json b/blockchains/optimism/assets/0x8B21e9b7dAF2c4325bf3D18c1BeB79A347fE902A/info.json new file mode 100644 index 0000000000000..155002b806fa1 --- /dev/null +++ b/blockchains/optimism/assets/0x8B21e9b7dAF2c4325bf3D18c1BeB79A347fE902A/info.json @@ -0,0 +1,21 @@ +{ + "name": "Collab.Land", + "type": "OPTIMISM", + "symbol": "COLLAB", + "decimals": 18, + "website": "https://www.collab.land/", + "description": "Collab.Land is an automated community management tool that curates membership based on token ownership.", + "explorer": "https://optimistic.etherscan.io/token/0x8B21e9b7dAF2c4325bf3D18c1BeB79A347fE902A", + "status": "active", + "id": "0x8B21e9b7dAF2c4325bf3D18c1BeB79A347fE902A", + "links": [ + { + "name": "x", + "url": "https://x.com/Collab_Land_" + }, + { + "name": "telegram", + "url": "https://t.me/collablandbot" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x8B21e9b7dAF2c4325bf3D18c1BeB79A347fE902A/logo.png b/blockchains/optimism/assets/0x8B21e9b7dAF2c4325bf3D18c1BeB79A347fE902A/logo.png new file mode 100644 index 0000000000000..0fe956307dd2c Binary files /dev/null and b/blockchains/optimism/assets/0x8B21e9b7dAF2c4325bf3D18c1BeB79A347fE902A/logo.png differ diff --git a/blockchains/optimism/assets/0x8aE125E8653821E851F12A49F7765db9a9ce7384/info.json b/blockchains/optimism/assets/0x8aE125E8653821E851F12A49F7765db9a9ce7384/info.json new file mode 100644 index 0000000000000..82d29a7c66fac --- /dev/null +++ b/blockchains/optimism/assets/0x8aE125E8653821E851F12A49F7765db9a9ce7384/info.json @@ -0,0 +1,21 @@ +{ + "name": "Dola USD Stablecoin", + "website": "https://www.inverse.finance/", + "description": "Dola is a debt and asset backed, capital-efficient, decentralized stablecoin from Inverse Finance", + "explorer": "https://optimistic.etherscan.io/token/0x8aE125E8653821E851F12A49F7765db9a9ce7384", + "type": "OPTIMISM", + "symbol": "DOLA", + "decimals": 18, + "status": "active", + "id": "0x8aE125E8653821E851F12A49F7765db9a9ce7384", + "links": [ + { + "name": "x", + "url": "https://x.com/InverseFinance" + }, + { + "name": "telegram", + "url": "https://t.me/InverseFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x8aE125E8653821E851F12A49F7765db9a9ce7384/logo.png b/blockchains/optimism/assets/0x8aE125E8653821E851F12A49F7765db9a9ce7384/logo.png new file mode 100644 index 0000000000000..fa34a23f16a0b Binary files /dev/null and b/blockchains/optimism/assets/0x8aE125E8653821E851F12A49F7765db9a9ce7384/logo.png differ diff --git a/blockchains/optimism/assets/0x9046D36440290FfDE54FE0DD84Db8b1CfEE9107B/info.json b/blockchains/optimism/assets/0x9046D36440290FfDE54FE0DD84Db8b1CfEE9107B/info.json new file mode 100644 index 0000000000000..0476a494258b5 --- /dev/null +++ b/blockchains/optimism/assets/0x9046D36440290FfDE54FE0DD84Db8b1CfEE9107B/info.json @@ -0,0 +1,42 @@ +{ + "name": "yearn.finance", + "website": "https://yearn.finance/", + "description": "YFI is the governance token for Yearn.Finance, a site that performs a variety of functions for DeFi users, moving their assets in and out of different liquidity pools in order to find the best yields.", + "explorer": "https://optimistic.etherscan.io/token/0x9046d36440290ffde54fe0dd84db8b1cfee9107b", + "research": "https://research.binance.com/en/projects/yearnfinance", + "type": "OPTIMISM", + "symbol": "YFI", + "decimals": 18, + "status": "active", + "id": "0x9046D36440290FfDE54FE0DD84Db8b1CfEE9107B", + "tags": [ + "defi", + "governance" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/iearn-finance" + }, + { + "name": "x", + "url": "https://x.com/iearnfinance" + }, + { + "name": "blog", + "url": "https://medium.com/iearn" + }, + { + "name": "telegram", + "url": "https://t.me/iearnfinance" + }, + { + "name": "whitepaper", + "url": "https://docs.yearn.finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/yearn-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x9046D36440290FfDE54FE0DD84Db8b1CfEE9107B/logo.png b/blockchains/optimism/assets/0x9046D36440290FfDE54FE0DD84Db8b1CfEE9107B/logo.png new file mode 100644 index 0000000000000..9c225f4b6c000 Binary files /dev/null and b/blockchains/optimism/assets/0x9046D36440290FfDE54FE0DD84Db8b1CfEE9107B/logo.png differ diff --git a/blockchains/optimism/assets/0x920Cf626a271321C151D027030D5d08aF699456b/info.json b/blockchains/optimism/assets/0x920Cf626a271321C151D027030D5d08aF699456b/info.json new file mode 100644 index 0000000000000..d1257d45e2094 --- /dev/null +++ b/blockchains/optimism/assets/0x920Cf626a271321C151D027030D5d08aF699456b/info.json @@ -0,0 +1,21 @@ +{ + "name": "Kwenta", + "website": "https://kwenta.eth.limo/", + "description": "Kwenta is a decentralized derivatives trading platform built on the Ethereum network.", + "explorer": "https://optimistic.etherscan.io/token/0x920Cf626a271321C151D027030D5d08aF699456b", + "type": "OPTIMISM", + "symbol": "KWENTA", + "decimals": 18, + "status": "active", + "id": "0x920Cf626a271321C151D027030D5d08aF699456b", + "links": [ + { + "name": "x", + "url": "https://x.com/kwenta_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kwenta/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x920Cf626a271321C151D027030D5d08aF699456b/logo.png b/blockchains/optimism/assets/0x920Cf626a271321C151D027030D5d08aF699456b/logo.png new file mode 100644 index 0000000000000..29d48c73d8342 Binary files /dev/null and b/blockchains/optimism/assets/0x920Cf626a271321C151D027030D5d08aF699456b/logo.png differ diff --git a/blockchains/optimism/assets/0x9485aca5bbBE1667AD97c7fE7C4531a624C8b1ED/info.json b/blockchains/optimism/assets/0x9485aca5bbBE1667AD97c7fE7C4531a624C8b1ED/info.json new file mode 100644 index 0000000000000..8e381c7642de2 --- /dev/null +++ b/blockchains/optimism/assets/0x9485aca5bbBE1667AD97c7fE7C4531a624C8b1ED/info.json @@ -0,0 +1,37 @@ +{ + "name": "EURA", + "website": "https://www.angle.money/", + "description": "EURA is an over-collateralized and decentralized Euro stablecoin by the Angle Protocol.", + "explorer": "https://optimistic.etherscan.io/token/0x9485aca5bbBE1667AD97c7fE7C4531a624C8b1ED", + "type": "OPTIMISM", + "symbol": "EURA", + "decimals": 18, + "status": "active", + "tags": [ + "defi", + "stablecoin" + ], + "id": "0x9485aca5bbBE1667AD97c7fE7C4531a624C8b1ED", + "links": [ + { + "name": "github", + "url": "https://github.com/AngleProtocol" + }, + { + "name": "x", + "url": "https://x.com/AngleProtocol" + }, + { + "name": "docs", + "url": "https://docs.angle.money" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ageur" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZheVAnFt6h" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x9485aca5bbBE1667AD97c7fE7C4531a624C8b1ED/logo.png b/blockchains/optimism/assets/0x9485aca5bbBE1667AD97c7fE7C4531a624C8b1ED/logo.png new file mode 100644 index 0000000000000..b80f4f7f9341b Binary files /dev/null and b/blockchains/optimism/assets/0x9485aca5bbBE1667AD97c7fE7C4531a624C8b1ED/logo.png differ diff --git a/blockchains/optimism/assets/0x94b008aA00579c1307B0EF2c499aD98a8ce58e58/info.json b/blockchains/optimism/assets/0x94b008aA00579c1307B0EF2c499aD98a8ce58e58/info.json index b83bee073d245..ca4da810ecf56 100644 --- a/blockchains/optimism/assets/0x94b008aA00579c1307B0EF2c499aD98a8ce58e58/info.json +++ b/blockchains/optimism/assets/0x94b008aA00579c1307B0EF2c499aD98a8ce58e58/info.json @@ -18,11 +18,11 @@ "url": "https://coingecko.com/en/coins/tether/" }, { - "name": "twitter", - "url": "https://twitter.com/Tether_to" + "name": "x", + "url": "https://x.com/Tether_to" } ], "tags": [ "stablecoin" ] -} +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x9560e827aF36c94D2Ac33a39bCE1Fe78631088Db/info.json b/blockchains/optimism/assets/0x9560e827aF36c94D2Ac33a39bCE1Fe78631088Db/info.json new file mode 100644 index 0000000000000..1b459330afcc1 --- /dev/null +++ b/blockchains/optimism/assets/0x9560e827aF36c94D2Ac33a39bCE1Fe78631088Db/info.json @@ -0,0 +1,21 @@ +{ + "name": "VelodromeV2", + "website": "https://www.velodrome.finance/", + "description": "Velodrome Finance, at its core, is a solution for protocols on Optimism to properly incentivize liquidity for their own use cases. Building on top of the groundwork laid out by Solidly, our team has addressed that first iteration's core issues to realize its full potential.", + "explorer": "https://optimistic.etherscan.io/token/0x9560e827af36c94d2ac33a39bce1fe78631088db", + "type": "OPTIMISM", + "symbol": "VELO", + "decimals": 18, + "status": "active", + "id": "0x9560e827aF36c94D2Ac33a39bCE1Fe78631088Db", + "links": [ + { + "name": "x", + "url": "https://x.com/VelodromeFi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/velodrome-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x9560e827aF36c94D2Ac33a39bCE1Fe78631088Db/logo.png b/blockchains/optimism/assets/0x9560e827aF36c94D2Ac33a39bCE1Fe78631088Db/logo.png new file mode 100644 index 0000000000000..a2b9dc42255e6 Binary files /dev/null and b/blockchains/optimism/assets/0x9560e827aF36c94D2Ac33a39bCE1Fe78631088Db/logo.png differ diff --git a/blockchains/optimism/assets/0x9Bcef72be871e61ED4fBbc7630889beE758eb81D/info.json b/blockchains/optimism/assets/0x9Bcef72be871e61ED4fBbc7630889beE758eb81D/info.json index 6de40a11a9887..7cd2676283ae6 100644 --- a/blockchains/optimism/assets/0x9Bcef72be871e61ED4fBbc7630889beE758eb81D/info.json +++ b/blockchains/optimism/assets/0x9Bcef72be871e61ED4fBbc7630889beE758eb81D/info.json @@ -10,8 +10,8 @@ "id": "0x9Bcef72be871e61ED4fBbc7630889beE758eb81D", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Rocket_Pool" + "name": "x", + "url": "https://x.com/Rocket_Pool" }, { "name": "medium", diff --git a/blockchains/optimism/assets/0x9e1028F5F1D5eDE59748FFceE5532509976840E0/info.json b/blockchains/optimism/assets/0x9e1028F5F1D5eDE59748FFceE5532509976840E0/info.json index 5da7f1a416c2e..270dbbef477e7 100644 --- a/blockchains/optimism/assets/0x9e1028F5F1D5eDE59748FFceE5532509976840E0/info.json +++ b/blockchains/optimism/assets/0x9e1028F5F1D5eDE59748FFceE5532509976840E0/info.json @@ -10,8 +10,8 @@ "id": "0x9e1028F5F1D5eDE59748FFceE5532509976840E0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/perpprotocol" + "name": "x", + "url": "https://x.com/perpprotocol" }, { "name": "coingecko", diff --git a/blockchains/optimism/assets/0xAF9fE3B5cCDAe78188B1F8b9a49Da7ae9510F151/info.json b/blockchains/optimism/assets/0xAF9fE3B5cCDAe78188B1F8b9a49Da7ae9510F151/info.json new file mode 100644 index 0000000000000..6ddbd6e5fcdef --- /dev/null +++ b/blockchains/optimism/assets/0xAF9fE3B5cCDAe78188B1F8b9a49Da7ae9510F151/info.json @@ -0,0 +1,65 @@ +{ + "name": "dHEDGE DAO Token", + "website": "https://dhedge.org", + "description": "Decentralized asset management protocol connecting the world’s best investment managers with investors in a permissionless, trustless fashion.", + "explorer": "https://optimistic.etherscan.io/token/0xAF9fE3B5cCDAe78188B1F8b9a49Da7ae9510F151", + "type": "OPTIMISM", + "symbol": "DHT", + "decimals": 18, + "status": "active", + "id": "0xAF9fE3B5cCDAe78188B1F8b9a49Da7ae9510F151", + "links": [ + { + "name": "x", + "url": "https://x.com/dHedgeOrg" + }, + { + "name": "github", + "url": "https://github.com/dhedge" + }, + { + "name": "telegram", + "url": "https://t.me/dhedge" + }, + { + "name": "telegram_news", + "url": "https://t.me/dhedge" + }, + { + "name": "blog", + "url": "https://dhedge.ghost.io/" + }, + { + "name": "docs", + "url": "https://docs.dhedge.org/" + }, + { + "name": "forum", + "url": "https://forum.dhedge.org/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/BAWTbRA" + }, + { + "name": "medium", + "url": "https://medium.com/dhedge-org" + }, + { + "name": "youtube", + "url": "https://youtube.com/watch?v=OODm7tJspqk" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dhedge-dao/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dhedge-dao" + } + ], + "tags": [ + "governance", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xAF9fE3B5cCDAe78188B1F8b9a49Da7ae9510F151/logo.png b/blockchains/optimism/assets/0xAF9fE3B5cCDAe78188B1F8b9a49Da7ae9510F151/logo.png new file mode 100644 index 0000000000000..d00b1adee2bf1 Binary files /dev/null and b/blockchains/optimism/assets/0xAF9fE3B5cCDAe78188B1F8b9a49Da7ae9510F151/logo.png differ diff --git a/blockchains/optimism/assets/0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B/info.json b/blockchains/optimism/assets/0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B/info.json new file mode 100644 index 0000000000000..f7e792d2ddc07 --- /dev/null +++ b/blockchains/optimism/assets/0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B/info.json @@ -0,0 +1,40 @@ +{ + "name": "BOB", + "type": "OPTIMISM", + "symbol": "BOB", + "decimals": 18, + "website": "https://www.zkbob.com/", + "description": "BOB is a stable token optimized for the zkBob protocol.", + "explorer": "https://optimistic.etherscan.io/token/0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B", + "status": "active", + "id": "0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B", + "links": [ + { + "name": "x", + "url": "https://x.com/zkBob_" + }, + { + "name": "telegram_news", + "url": "https://t.me/zkbob_news" + }, + { + "name": "telegram", + "url": "https://t.me/zkbobcommunity" + }, + { + "name": "docs", + "url": "https://docs.zkbob.com/" + }, + { + "name": "github", + "url": "https://github.com/zkbob" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/bob" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B/logo.png b/blockchains/optimism/assets/0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B/logo.png new file mode 100644 index 0000000000000..6dd3119873769 Binary files /dev/null and b/blockchains/optimism/assets/0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B/logo.png differ diff --git a/blockchains/optimism/assets/0xCA7661Ba64A7667E3006c421C181502d545D1911/info.json b/blockchains/optimism/assets/0xCA7661Ba64A7667E3006c421C181502d545D1911/info.json index 5771daa465335..2a60a13c5aaab 100644 --- a/blockchains/optimism/assets/0xCA7661Ba64A7667E3006c421C181502d545D1911/info.json +++ b/blockchains/optimism/assets/0xCA7661Ba64A7667E3006c421C181502d545D1911/info.json @@ -6,20 +6,20 @@ "description": "ARAW is the Decentralised Payment for E-Commerce Ecosystem, aiming to be at the forefront of the Blockchain User Adoption globally with the intuitive integration of E-Commerce with the Decentralised Payment.", "website": "https://arawtoken.io/", "explorer": "https://optimistic.etherscan.io/token/0xCA7661Ba64A7667E3006c421C181502d545D1911", - "status": "active", + "status": "abandoned", "id": "0xCA7661Ba64A7667E3006c421C181502d545D1911", "links": [ { - "name": "twitter", - "url": "https://twitter.com/arawtoken" - }, - { - "name": "telegram", - "url": "https://t.me/ArawTokenOfficial" + "name": "x", + "url": "https://x.com/arawtoken" }, { "name": "coinmarketcap", "url": "https://coinmarketcap.com/currencies/araw/" + }, + { + "name": "telegram", + "url": "https://t.me/ArawTokenOfficial" } ], "tags": [ diff --git a/blockchains/optimism/assets/0xCA7661Ba64A7667E3006c421C181502d545D1911/logo.png b/blockchains/optimism/assets/0xCA7661Ba64A7667E3006c421C181502d545D1911/logo.png deleted file mode 100644 index 7c76f51d11485..0000000000000 Binary files a/blockchains/optimism/assets/0xCA7661Ba64A7667E3006c421C181502d545D1911/logo.png and /dev/null differ diff --git a/blockchains/optimism/assets/0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1/info.json b/blockchains/optimism/assets/0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1/info.json new file mode 100644 index 0000000000000..a157044691ed6 --- /dev/null +++ b/blockchains/optimism/assets/0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1/info.json @@ -0,0 +1,42 @@ +{ + "name": "Dai", + "website": "http://makerdao.com", + "description": "Dai is a stable cryptocurrency supported by Maker (MKR). To ensure price stability, Dai minimizes the price volatility against the US dollar, through an incentive structure for its participants.", + "explorer": "https://optimistic.etherscan.io/token/0xda10009cbd5d07dd0cecc66161fc93d7c9000da1", + "research": "https://research.binance.com/en/projects/dai", + "type": "OPTIMISM", + "symbol": "DAI", + "decimals": 18, + "status": "active", + "id": "0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1", + "tags": [ + "defi", + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/MakerDAO" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MakerDAO/" + }, + { + "name": "blog", + "url": "https://blog.makerdao.com/" + }, + { + "name": "whitepaper", + "url": "https://makerdao.com/whitepaper/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/multi-collateral-dai/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1/logo.png b/blockchains/optimism/assets/0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1/logo.png new file mode 100644 index 0000000000000..6195582c5fa28 Binary files /dev/null and b/blockchains/optimism/assets/0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1/logo.png differ diff --git a/blockchains/optimism/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json b/blockchains/optimism/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json new file mode 100644 index 0000000000000..47f6691842dc0 --- /dev/null +++ b/blockchains/optimism/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json @@ -0,0 +1,69 @@ +{ + "name": "Axelar Wrapped USDC", + "type": "OPTIMISM", + "symbol": "axlUSDC", + "decimals": 6, + "website": "https://axelar.network/", + "description": "Axelar delivers secure cross-chain communication for Web3. Our infrastructure enables dApp users to interact with any asset or application, on any chain, with one click.", + "explorer": "https://optimistic.etherscan.io/token/0xeb466342c4d449bc9f53a865d5cb90586f405215", + "status": "active", + "id": "0xEB466342C4d449BC9f53A865D5Cb90586f405215", + "links": [ + { + "name": "x", + "url": "https://x.com/axelarcore" + }, + { + "name": "github", + "url": "https://github.com/axelarnetwork" + }, + { + "name": "telegram", + "url": "https://t.me/axelarcommunity" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/axelar-usdc" + }, + { + "name": "docs", + "url": "https://docs.axelar.dev/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/aRZ3Ra6f7D" + }, + { + "name": "forum", + "url": "https://community.axelar.network/" + }, + { + "name": "whitepaper", + "url": "https://axelar.network/axelar_whitepaper.pdf" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/axelar" + }, + { + "name": "medium", + "url": "https://medium.com/@axelar-foundation" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/axlusdc/" + }, + { + "name": "blog", + "url": "https://axelar.network/blog" + }, + { + "name": "youtube", + "url": "https://youtube.com/@Axelarcore" + } + ], + "tags": [ + "stablecoin", + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png b/blockchains/optimism/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png new file mode 100644 index 0000000000000..69911caea54fb Binary files /dev/null and b/blockchains/optimism/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png differ diff --git a/blockchains/optimism/assets/0xEc6adef5E1006bb305bB1975333e8fc4071295bf/info.json b/blockchains/optimism/assets/0xEc6adef5E1006bb305bB1975333e8fc4071295bf/info.json new file mode 100644 index 0000000000000..d7e06042d5597 --- /dev/null +++ b/blockchains/optimism/assets/0xEc6adef5E1006bb305bB1975333e8fc4071295bf/info.json @@ -0,0 +1,21 @@ +{ + "name": "Cartesi", + "symbol": "CTSI", + "type": "OPTIMISM", + "description": "Cartesi Rollups is a modular execution layer that elevates simple smart contracts to decentralized Linux runtime.", + "decimals": 18, + "website": "https://cartesi.io", + "explorer": "https://optimistic.etherscan.io/token/0xEc6adef5E1006bb305bB1975333e8fc4071295bf", + "status": "active", + "id": "0xEc6adef5E1006bb305bB1975333e8fc4071295bf", + "links": [ + { + "name": "x", + "url": "https://x.com/cartesiproject" + }, + { + "name": "telegram", + "url": "https://t.me/cartesiproject" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xEc6adef5E1006bb305bB1975333e8fc4071295bf/logo.png b/blockchains/optimism/assets/0xEc6adef5E1006bb305bB1975333e8fc4071295bf/logo.png new file mode 100644 index 0000000000000..68d0328b0951a Binary files /dev/null and b/blockchains/optimism/assets/0xEc6adef5E1006bb305bB1975333e8fc4071295bf/logo.png differ diff --git a/blockchains/optimism/assets/0xEe9801669C6138E84bD50dEB500827b776777d28/info.json b/blockchains/optimism/assets/0xEe9801669C6138E84bD50dEB500827b776777d28/info.json new file mode 100644 index 0000000000000..b0bb1b83060e2 --- /dev/null +++ b/blockchains/optimism/assets/0xEe9801669C6138E84bD50dEB500827b776777d28/info.json @@ -0,0 +1,11 @@ +{ + "name": "O3 Swap", + "type": "OPTIMISM", + "symbol": "O3", + "decimals": 18, + "website": "https://o3swap.com", + "description": "O3 Swap Token (O3) is a governance token issued by O3 Swap. It is an important mediator to promote the development of the O3 Swap network. All participants and developers are encouraged to participate in the maintenance of the overall ecological network by staking, voting, etc. we are committed to providing a one-stop aggregation & exchange platform for users and offering developers access to an open, distributed, friendly, and secure trading environment.", + "explorer": "https://optimistic.etherscan.io/token/0xEe9801669C6138E84bD50dEB500827b776777d28", + "status": "active", + "id": "0xEe9801669C6138E84bD50dEB500827b776777d28" +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xEe9801669C6138E84bD50dEB500827b776777d28/logo.png b/blockchains/optimism/assets/0xEe9801669C6138E84bD50dEB500827b776777d28/logo.png new file mode 100644 index 0000000000000..8327b516fef6e Binary files /dev/null and b/blockchains/optimism/assets/0xEe9801669C6138E84bD50dEB500827b776777d28/logo.png differ diff --git a/blockchains/optimism/assets/0xF1a0DA3367BC7aa04F8D94BA57B862ff37CeD174/info.json b/blockchains/optimism/assets/0xF1a0DA3367BC7aa04F8D94BA57B862ff37CeD174/info.json new file mode 100644 index 0000000000000..40c1cddfe459a --- /dev/null +++ b/blockchains/optimism/assets/0xF1a0DA3367BC7aa04F8D94BA57B862ff37CeD174/info.json @@ -0,0 +1,25 @@ +{ + "name": "Shapeshift FOX", + "symbol": "FOX", + "type": "OPTIMISM", + "decimals": 18, + "description": "FOX is ShapeShift’s official loyalty token. Holders of FOX enjoy zero-commission trading and win ongoing USDC crypto payments from Rainfall (payments increase in proportion to your FOX holdings). ", + "website": "https://shapeshift.com/fox-token", + "explorer": "https://optimistic.etherscan.io/token/0xF1a0DA3367BC7aa04F8D94BA57B862ff37CeD174", + "status": "active", + "id": "0xF1a0DA3367BC7aa04F8D94BA57B862ff37CeD174", + "links": [ + { + "name": "x", + "url": "https://x.com/shapeshift_io" + }, + { + "name": "telegram", + "url": "https://t.me/shapeshiftofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fox-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xF1a0DA3367BC7aa04F8D94BA57B862ff37CeD174/logo.png b/blockchains/optimism/assets/0xF1a0DA3367BC7aa04F8D94BA57B862ff37CeD174/logo.png new file mode 100644 index 0000000000000..d565ce6e440a9 Binary files /dev/null and b/blockchains/optimism/assets/0xF1a0DA3367BC7aa04F8D94BA57B862ff37CeD174/logo.png differ diff --git a/blockchains/optimism/assets/0xF98dCd95217E15E05d8638da4c91125E59590B07/info.json b/blockchains/optimism/assets/0xF98dCd95217E15E05d8638da4c91125E59590B07/info.json index 49a9aff795d08..faed348cf6eb4 100644 --- a/blockchains/optimism/assets/0xF98dCd95217E15E05d8638da4c91125E59590B07/info.json +++ b/blockchains/optimism/assets/0xF98dCd95217E15E05d8638da4c91125E59590B07/info.json @@ -10,8 +10,8 @@ "id": "0xF98dCd95217E15E05d8638da4c91125E59590B07", "links": [ { - "name": "twitter", - "url": "https://twitter.com/KromatikaFi" + "name": "x", + "url": "https://x.com/KromatikaFi" }, { "name": "coinmarketcap", diff --git a/blockchains/optimism/assets/0xFA436399d0458Dbe8aB890c3441256E3E09022a8/info.json b/blockchains/optimism/assets/0xFA436399d0458Dbe8aB890c3441256E3E09022a8/info.json new file mode 100644 index 0000000000000..d5036a53970a6 --- /dev/null +++ b/blockchains/optimism/assets/0xFA436399d0458Dbe8aB890c3441256E3E09022a8/info.json @@ -0,0 +1,21 @@ +{ + "name": "Zip Token", + "website": "https://zipswap.fi/", + "description": "ZIP is the governance token for ZipSwap. ZipSwap is a gas efficient decentralized exchange deployed to the Optimistic Ethereum blockchain based on a modified UniswapV2 codebase.", + "explorer": "https://optimistic.etherscan.io/token/0xFA436399d0458Dbe8aB890c3441256E3E09022a8", + "type": "OPTIMISM", + "symbol": "ZIP", + "decimals": 18, + "status": "active", + "id": "0xFA436399d0458Dbe8aB890c3441256E3E09022a8", + "links": [ + { + "name": "x", + "url": "https://x.com/Zip_swap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zipswap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xFA436399d0458Dbe8aB890c3441256E3E09022a8/logo.png b/blockchains/optimism/assets/0xFA436399d0458Dbe8aB890c3441256E3E09022a8/logo.png new file mode 100644 index 0000000000000..2f5519f0aac02 Binary files /dev/null and b/blockchains/optimism/assets/0xFA436399d0458Dbe8aB890c3441256E3E09022a8/logo.png differ diff --git a/blockchains/optimism/assets/0xFC2E6e6BCbd49ccf3A5f029c79984372DcBFE527/info.json b/blockchains/optimism/assets/0xFC2E6e6BCbd49ccf3A5f029c79984372DcBFE527/info.json new file mode 100644 index 0000000000000..7661555098c62 --- /dev/null +++ b/blockchains/optimism/assets/0xFC2E6e6BCbd49ccf3A5f029c79984372DcBFE527/info.json @@ -0,0 +1,21 @@ +{ + "name": "Autonolas", + "type": "OPTIMISM", + "symbol": "OLAS", + "decimals": 18, + "website": "https://olas.network/", + "description": "A unified network of off-chain services – like automation, oracles, and co-owned AI. Autonolas offers a composable stack for building these services, and a protocol for incentivizing their creation. Autonolas enables operating these services in a co-owned and decentralized way.", + "explorer": "https://optimistic.etherscan.io/token/0xfc2e6e6bcbd49ccf3a5f029c79984372dcbfe527", + "status": "active", + "id": "0xFC2E6e6BCbd49ccf3A5f029c79984372DcBFE527", + "links": [ + { + "name": "x", + "url": "https://x.com/autonolas" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/autonolas/" + } + ] +} diff --git a/blockchains/optimism/assets/0xFC2E6e6BCbd49ccf3A5f029c79984372DcBFE527/logo.png b/blockchains/optimism/assets/0xFC2E6e6BCbd49ccf3A5f029c79984372DcBFE527/logo.png new file mode 100644 index 0000000000000..d18680cfc276b Binary files /dev/null and b/blockchains/optimism/assets/0xFC2E6e6BCbd49ccf3A5f029c79984372DcBFE527/logo.png differ diff --git a/blockchains/optimism/assets/0xFE8B128bA8C78aabC59d4c64cEE7fF28e9379921/info.json b/blockchains/optimism/assets/0xFE8B128bA8C78aabC59d4c64cEE7fF28e9379921/info.json index fc193eeb7e823..acb6d70aba1ed 100644 --- a/blockchains/optimism/assets/0xFE8B128bA8C78aabC59d4c64cEE7fF28e9379921/info.json +++ b/blockchains/optimism/assets/0xFE8B128bA8C78aabC59d4c64cEE7fF28e9379921/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/balancer-labs" }, { - "name": "twitter", - "url": "https://twitter.com/BalancerLabs" + "name": "x", + "url": "https://x.com/BalancerLabs" }, { "name": "coinmarketcap", diff --git a/blockchains/optimism/assets/0xa00E3A3511aAC35cA78530c85007AFCd31753819/info.json b/blockchains/optimism/assets/0xa00E3A3511aAC35cA78530c85007AFCd31753819/info.json new file mode 100644 index 0000000000000..3689f285f4357 --- /dev/null +++ b/blockchains/optimism/assets/0xa00E3A3511aAC35cA78530c85007AFCd31753819/info.json @@ -0,0 +1,15 @@ +{ + "name": "Kyber Network", + "website": "https://kyber.network", + "description": "Kyber Network’s on-chain liquidity protocol allows decentralized token swaps to be integrated into any application, enabling value exchange to be performed seamlessly between all parties in the ecosystem.", + "explorer": "https://optimistic.etherscan.io/token/0xa00E3A3511aAC35cA78530c85007AFCd31753819", + "type": "OPTIMISM", + "symbol": "KNC", + "decimals": 18, + "status": "active", + "id": "0xa00E3A3511aAC35cA78530c85007AFCd31753819", + "tags": [ + "defi", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xa00E3A3511aAC35cA78530c85007AFCd31753819/logo.png b/blockchains/optimism/assets/0xa00E3A3511aAC35cA78530c85007AFCd31753819/logo.png new file mode 100644 index 0000000000000..8f845a1c6bb79 Binary files /dev/null and b/blockchains/optimism/assets/0xa00E3A3511aAC35cA78530c85007AFCd31753819/logo.png differ diff --git a/blockchains/optimism/assets/0xaf8cA653Fa2772d58f4368B0a71980e9E3cEB888/info.json b/blockchains/optimism/assets/0xaf8cA653Fa2772d58f4368B0a71980e9E3cEB888/info.json new file mode 100644 index 0000000000000..759880106a255 --- /dev/null +++ b/blockchains/optimism/assets/0xaf8cA653Fa2772d58f4368B0a71980e9E3cEB888/info.json @@ -0,0 +1,29 @@ +{ + "name": "Tellor", + "website": "https://tellor.io", + "description": "Tellor (a decentralized oracle) aims to address the Oracle problem on Ethereum.", + "explorer": "https://optimistic.etherscan.io/token/0xaf8cA653Fa2772d58f4368B0a71980e9E3cEB888", + "type": "OPTIMISM", + "symbol": "TRB", + "decimals": 18, + "status": "active", + "id": "0xaf8cA653Fa2772d58f4368B0a71980e9E3cEB888", + "links": [ + { + "name": "x", + "url": "https://x.com/WeAreTellor" + }, + { + "name": "telegram", + "url": "https://t.me/tellor" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tellor/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tellor/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xaf8cA653Fa2772d58f4368B0a71980e9E3cEB888/logo.png b/blockchains/optimism/assets/0xaf8cA653Fa2772d58f4368B0a71980e9E3cEB888/logo.png new file mode 100644 index 0000000000000..f1295da4329a3 Binary files /dev/null and b/blockchains/optimism/assets/0xaf8cA653Fa2772d58f4368B0a71980e9E3cEB888/logo.png differ diff --git a/blockchains/optimism/assets/0xc3864f98f2a61A7cAeb95b039D031b4E2f55e0e9/info.json b/blockchains/optimism/assets/0xc3864f98f2a61A7cAeb95b039D031b4E2f55e0e9/info.json new file mode 100644 index 0000000000000..3b8f05680bd8c --- /dev/null +++ b/blockchains/optimism/assets/0xc3864f98f2a61A7cAeb95b039D031b4E2f55e0e9/info.json @@ -0,0 +1,21 @@ +{ + "name": "OpenX Optimism", + "type": "OPTIMISM", + "symbol": "OpenX", + "decimals": 18, + "website": "https://app.openxswap.exchange/info", + "description": "OpenXSwap’s native token, OpenX, provides the foundation for the exchange. Liquidity Providers receive it in exchange for participating in Active Yield Generating Pools. These pools are intended to generate transaction fees then used to buy back and burn OpenX, offsetting its emissions.", + "explorer": "https://optimistic.etherscan.io/token/0xc3864f98f2a61a7caeb95b039d031b4e2f55e0e9", + "status": "active", + "id": "0xc3864f98f2a61A7cAeb95b039D031b4E2f55e0e9", + "links": [ + { + "name": "x", + "url": "https://x.com/OpenXSwap" + }, + { + "name": "telegram", + "url": "https://t.me/OpenXSwap" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xc3864f98f2a61A7cAeb95b039D031b4E2f55e0e9/logo.png b/blockchains/optimism/assets/0xc3864f98f2a61A7cAeb95b039D031b4E2f55e0e9/logo.png new file mode 100644 index 0000000000000..2973d314f87b4 Binary files /dev/null and b/blockchains/optimism/assets/0xc3864f98f2a61A7cAeb95b039D031b4E2f55e0e9/logo.png differ diff --git a/blockchains/optimism/assets/0xcdB4bB51801A1F399d4402c61bC098a72c382E65/info.json b/blockchains/optimism/assets/0xcdB4bB51801A1F399d4402c61bC098a72c382E65/info.json new file mode 100644 index 0000000000000..12788063f42b8 --- /dev/null +++ b/blockchains/optimism/assets/0xcdB4bB51801A1F399d4402c61bC098a72c382E65/info.json @@ -0,0 +1,21 @@ +{ + "name": "OPX", + "website": "https://www.opx.finance/", + "description": "OPX (Decentralized Spot & Perpetual Exchange) - the next DEX generation in optimizing investment efficiency & Leverage Trading.", + "explorer": "https://optimistic.etherscan.io/token/0xcdb4bb51801a1f399d4402c61bc098a72c382e65", + "type": "OPTIMISM", + "symbol": "OPX", + "decimals": 18, + "status": "active", + "id": "0xcdB4bB51801A1F399d4402c61bC098a72c382E65", + "links": [ + { + "name": "x", + "url": "https://x.com/opxfinance" + }, + { + "name": "telegram", + "url": "https://t.me/opxfinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xcdB4bB51801A1F399d4402c61bC098a72c382E65/logo.png b/blockchains/optimism/assets/0xcdB4bB51801A1F399d4402c61bC098a72c382E65/logo.png new file mode 100644 index 0000000000000..43697be485a7b Binary files /dev/null and b/blockchains/optimism/assets/0xcdB4bB51801A1F399d4402c61bC098a72c382E65/logo.png differ diff --git a/blockchains/optimism/assets/0xd3594E879B358F430E20F82bea61e83562d49D48/info.json b/blockchains/optimism/assets/0xd3594E879B358F430E20F82bea61e83562d49D48/info.json new file mode 100644 index 0000000000000..0e1abfc5b05be --- /dev/null +++ b/blockchains/optimism/assets/0xd3594E879B358F430E20F82bea61e83562d49D48/info.json @@ -0,0 +1,28 @@ +{ + "name": "ParaSwap", + "type": "OPTIMISTIC", + "symbol": "PSP", + "decimals": 18, + "website": "https://paraswap.io/", + "description": "ParaSwap aggregates decentralized exchanges and other DeFi services in one comprehensive interface to streamline and facilitate users' interactions with decentralized finance on Ethereum and EVM-compatible chains Polygon, Avalanche, BSC & more to come.", + "explorer": "https://optimistic.etherscan.io/token/0xd3594E879B358F430E20F82bea61e83562d49D48", + "status": "active", + "id": "0xd3594E879B358F430E20F82bea61e83562d49D48", + "links": [ + { + "name": "x", + "url": "https://x.com/paraswap" + }, + { + "name": "telegram", + "url": "https://t.me/paraswap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/paraswap/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xd3594E879B358F430E20F82bea61e83562d49D48/logo.png b/blockchains/optimism/assets/0xd3594E879B358F430E20F82bea61e83562d49D48/logo.png new file mode 100644 index 0000000000000..6a8b61f41102c Binary files /dev/null and b/blockchains/optimism/assets/0xd3594E879B358F430E20F82bea61e83562d49D48/logo.png differ diff --git a/blockchains/optimism/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json b/blockchains/optimism/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json index 140c38f8b690f..ac9a4f2c940b4 100644 --- a/blockchains/optimism/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json +++ b/blockchains/optimism/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json @@ -10,8 +10,8 @@ "id": "0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189", "links": [ { - "name": "twitter", - "url": "https://twitter.com/OkcashCrypto" + "name": "x", + "url": "https://x.com/OkcashCrypto" }, { "name": "github", @@ -33,4 +33,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xd52f94DF742a6F4B4C8b033369fE13A41782Bf44/info.json b/blockchains/optimism/assets/0xd52f94DF742a6F4B4C8b033369fE13A41782Bf44/info.json new file mode 100644 index 0000000000000..591b7f49d41e9 --- /dev/null +++ b/blockchains/optimism/assets/0xd52f94DF742a6F4B4C8b033369fE13A41782Bf44/info.json @@ -0,0 +1,21 @@ +{ + "name": "Layer2DAO", + "type": "OPTIMISM", + "symbol": "L2DAO", + "decimals": 18, + "website": "https://www.layer2dao.org/", + "description": "Layer2DAO is expanding the Ethereum L2 ecosystem and investing in L2 ecosystem projects.", + "explorer": "https://optimistic.etherscan.io/token/0xd52f94DF742a6F4B4C8b033369fE13A41782Bf44", + "status": "active", + "id": "0xd52f94DF742a6F4B4C8b033369fE13A41782Bf44", + "links": [ + { + "name": "x", + "url": "https://x.com/TheLayer2DAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/layer2dao/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xd52f94DF742a6F4B4C8b033369fE13A41782Bf44/logo.png b/blockchains/optimism/assets/0xd52f94DF742a6F4B4C8b033369fE13A41782Bf44/logo.png new file mode 100644 index 0000000000000..14dff9165b3cf Binary files /dev/null and b/blockchains/optimism/assets/0xd52f94DF742a6F4B4C8b033369fE13A41782Bf44/logo.png differ diff --git a/blockchains/optimism/assets/0xd91fF310DF12FBb9D4C77A55BeDa0367e2244Ca6/info.json b/blockchains/optimism/assets/0xd91fF310DF12FBb9D4C77A55BeDa0367e2244Ca6/info.json new file mode 100644 index 0000000000000..58ce3ddaf4308 --- /dev/null +++ b/blockchains/optimism/assets/0xd91fF310DF12FBb9D4C77A55BeDa0367e2244Ca6/info.json @@ -0,0 +1,41 @@ +{ + "name": "DOVU", + "website": "https://dovu.earth/", + "description": "DOVU is a technology infrastructure provider, powering trusted environmental and carbon digital markets by providing market integrity. The DOVU token serves as the protocol’s utility token, enabling holders to participate and create their own environmental audit trail ecosystems. Token holders can stake their DOVU to earn multiplier rewards, aligning long-term incentives with the protocol’s mission of building reliable carbon markets.", + "explorer": "https://optimistic.etherscan.io/token/0xd91fF310DF12FBb9D4C77A55BeDa0367e2244Ca6", + "type": "OPTIMISM", + "symbol": "DOVU", + "decimals": 8, + "status": "active", + "id": "0xd91fF310DF12FBb9D4C77A55BeDa0367e2244Ca6", + "tags": [ + "wrapped", + "staking" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/dovuofficial/" + }, + { + "name": "x", + "url": "https://x.com/dovuofficial" + }, + { + "name": "blog", + "url": "https://dovu.earth/en/news/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dovu-earth/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dovu" + }, + { + "name": "youtube", + "url": "https://youtube.com/@DOVUearth" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xd91fF310DF12FBb9D4C77A55BeDa0367e2244Ca6/logo.png b/blockchains/optimism/assets/0xd91fF310DF12FBb9D4C77A55BeDa0367e2244Ca6/logo.png new file mode 100644 index 0000000000000..cb6c490323d55 Binary files /dev/null and b/blockchains/optimism/assets/0xd91fF310DF12FBb9D4C77A55BeDa0367e2244Ca6/logo.png differ diff --git a/blockchains/optimism/assets/0xdC6fF44d5d932Cbd77B52E5612Ba0529DC6226F1/info.json b/blockchains/optimism/assets/0xdC6fF44d5d932Cbd77B52E5612Ba0529DC6226F1/info.json new file mode 100644 index 0000000000000..2c5ee8036fedc --- /dev/null +++ b/blockchains/optimism/assets/0xdC6fF44d5d932Cbd77B52E5612Ba0529DC6226F1/info.json @@ -0,0 +1,25 @@ +{ + "name": "Worldcoin", + "website": "https://worldcoin.org/", + "description": "The Worldcoin system revolves around World ID, a privacy-preserving global identity network. World ID enables users to verify their humanness online (`Proof of Personhood`) while maintaining their privacy through zero-knowledge proofs.", + "explorer": "https://optimistic.etherscan.io/token/0xdc6ff44d5d932cbd77b52e5612ba0529dc6226f1", + "type": "OPTIMISM", + "symbol": "WLD", + "decimals": 18, + "status": "active", + "id": "0xdC6fF44d5d932Cbd77B52E5612Ba0529DC6226F1", + "links": [ + { + "name": "x", + "url": "https://x.com/worldcoin" + }, + { + "name": "telegram", + "url": "https://t.me/worldcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/worldcoin-org/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xdC6fF44d5d932Cbd77B52E5612Ba0529DC6226F1/logo.png b/blockchains/optimism/assets/0xdC6fF44d5d932Cbd77B52E5612Ba0529DC6226F1/logo.png new file mode 100644 index 0000000000000..cb7f6e3935a81 Binary files /dev/null and b/blockchains/optimism/assets/0xdC6fF44d5d932Cbd77B52E5612Ba0529DC6226F1/logo.png differ diff --git a/blockchains/optimism/assets/0xdFA46478F9e5EA86d57387849598dbFB2e964b02/info.json b/blockchains/optimism/assets/0xdFA46478F9e5EA86d57387849598dbFB2e964b02/info.json new file mode 100644 index 0000000000000..858e577d72a36 --- /dev/null +++ b/blockchains/optimism/assets/0xdFA46478F9e5EA86d57387849598dbFB2e964b02/info.json @@ -0,0 +1,21 @@ +{ + "name": "Mai Stablecoin", + "website": "https://www.mai.finance/", + "description": "miMatic is an algorithmic stablecoin that is collateralized with Matic tokens", + "explorer": "https://optimistic.etherscan.io/token/0xdFA46478F9e5EA86d57387849598dbFB2e964b02", + "type": "OPTIMISM", + "symbol": "MAI", + "decimals": 18, + "status": "active", + "id": "0xdFA46478F9e5EA86d57387849598dbFB2e964b02", + "links": [ + { + "name": "x", + "url": "https://x.com/0xLaoZi" + }, + { + "name": "telegram", + "url": "https://t.me/QiDaoProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xdFA46478F9e5EA86d57387849598dbFB2e964b02/logo.png b/blockchains/optimism/assets/0xdFA46478F9e5EA86d57387849598dbFB2e964b02/logo.png new file mode 100644 index 0000000000000..52dc3ec3f6f15 Binary files /dev/null and b/blockchains/optimism/assets/0xdFA46478F9e5EA86d57387849598dbFB2e964b02/logo.png differ diff --git a/blockchains/optimism/assets/0xe4dE4B87345815C71aa843ea4841bCdc682637bb/info.json b/blockchains/optimism/assets/0xe4dE4B87345815C71aa843ea4841bCdc682637bb/info.json new file mode 100644 index 0000000000000..f99e2d4b7165f --- /dev/null +++ b/blockchains/optimism/assets/0xe4dE4B87345815C71aa843ea4841bCdc682637bb/info.json @@ -0,0 +1,21 @@ +{ + "name": "Build ", + "type": "OPTIMISM", + "symbol": "BUILD", + "decimals": 18, + "website": "https://app.radioshack.org/swap", + "description": "RadioShack is positioned to bridge the gap and 'cross the chasm' of mainstream usage for Cryptocurrency.", + "explorer": "https://optimistic.etherscan.io/token/0xe4dE4B87345815C71aa843ea4841bCdc682637bb", + "status": "active", + "id": "0xe4dE4B87345815C71aa843ea4841bCdc682637bb", + "links": [ + { + "name": "x", + "url": "https://x.com/radioshack" + }, + { + "name": "telegram", + "url": "https://t.me/radioshackswap" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xe4dE4B87345815C71aa843ea4841bCdc682637bb/logo.png b/blockchains/optimism/assets/0xe4dE4B87345815C71aa843ea4841bCdc682637bb/logo.png new file mode 100644 index 0000000000000..7cdf4a0fd8c48 Binary files /dev/null and b/blockchains/optimism/assets/0xe4dE4B87345815C71aa843ea4841bCdc682637bb/logo.png differ diff --git a/blockchains/optimism/assets/0xeEeEEb57642040bE42185f49C52F7E9B38f8eeeE/info.json b/blockchains/optimism/assets/0xeEeEEb57642040bE42185f49C52F7E9B38f8eeeE/info.json new file mode 100644 index 0000000000000..60a5af98ac33e --- /dev/null +++ b/blockchains/optimism/assets/0xeEeEEb57642040bE42185f49C52F7E9B38f8eeeE/info.json @@ -0,0 +1,21 @@ +{ + "name": "Elk ", + "type": "OPTIMISM", + "symbol": "ELK", + "decimals": 18, + "website": "https://elk.finance/", + "description": "Elk Finance is building a peer-to-peer network for cross-chain value transfers and blockchain interoperability.", + "explorer": "https://optimistic.etherscan.io/token/0xeEeEEb57642040bE42185f49C52F7E9B38f8eeeE", + "status": "active", + "id": "0xeEeEEb57642040bE42185f49C52F7E9B38f8eeeE", + "links": [ + { + "name": "x", + "url": "https://x.com/elk_finance" + }, + { + "name": "telegram", + "url": "https://t.me/elk_finance_chat" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xeEeEEb57642040bE42185f49C52F7E9B38f8eeeE/logo.png b/blockchains/optimism/assets/0xeEeEEb57642040bE42185f49C52F7E9B38f8eeeE/logo.png new file mode 100644 index 0000000000000..7ec7570e274f7 Binary files /dev/null and b/blockchains/optimism/assets/0xeEeEEb57642040bE42185f49C52F7E9B38f8eeeE/logo.png differ diff --git a/blockchains/optimism/assets/0xeF4461891DfB3AC8572cCf7C794664A8DD927945/info.json b/blockchains/optimism/assets/0xeF4461891DfB3AC8572cCf7C794664A8DD927945/info.json new file mode 100644 index 0000000000000..e30e152b66638 --- /dev/null +++ b/blockchains/optimism/assets/0xeF4461891DfB3AC8572cCf7C794664A8DD927945/info.json @@ -0,0 +1,21 @@ +{ + "name": "WalletConnect", + "type": "OPTIMISM", + "symbol": "WCT", + "decimals": 18, + "website": "https://walletconnect.network/", + "description": "WCT is the native token of the WalletConnect Network that secures the network via staking, rewards, fees, and governance.", + "explorer": "https://optimistic.etherscan.io/token/0xeF4461891DfB3AC8572cCf7C794664A8DD927945", + "status": "active", + "id": "0xeF4461891DfB3AC8572cCf7C794664A8DD927945", + "links": [ + { + "name": "x", + "url": "https://x.com/WalletConnect" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/walletconnect-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xeF4461891DfB3AC8572cCf7C794664A8DD927945/logo.png b/blockchains/optimism/assets/0xeF4461891DfB3AC8572cCf7C794664A8DD927945/logo.png new file mode 100644 index 0000000000000..dd09bc1db69b2 Binary files /dev/null and b/blockchains/optimism/assets/0xeF4461891DfB3AC8572cCf7C794664A8DD927945/logo.png differ diff --git a/blockchains/optimism/assets/0xf899e3909B4492859d44260E1de41A9E663e70F5/info.json b/blockchains/optimism/assets/0xf899e3909B4492859d44260E1de41A9E663e70F5/info.json new file mode 100644 index 0000000000000..614db00c9689d --- /dev/null +++ b/blockchains/optimism/assets/0xf899e3909B4492859d44260E1de41A9E663e70F5/info.json @@ -0,0 +1,21 @@ +{ + "name": "RadioShack", + "type": "OPTIMISM", + "symbol": "RADIO", + "decimals": 18, + "website": "https://www.radioshack.org/", + "description": "RadioShack is a 100 year old brand embedded into the global consciousness, now on a mission to be the first protocol to bridge the gap to mainstream usage of blockchain and cryptocurrencies.", + "explorer": "https://optimistic.etherscan.io/token/0xf899e3909B4492859d44260E1de41A9E663e70F5", + "status": "active", + "id": "0xf899e3909B4492859d44260E1de41A9E663e70F5", + "links": [ + { + "name": "x", + "url": "https://x.com/radioshack" + }, + { + "name": "telegram", + "url": "https://t.me/radioshackfairlaunch" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xf899e3909B4492859d44260E1de41A9E663e70F5/logo.png b/blockchains/optimism/assets/0xf899e3909B4492859d44260E1de41A9E663e70F5/logo.png new file mode 100644 index 0000000000000..a429e36123a94 Binary files /dev/null and b/blockchains/optimism/assets/0xf899e3909B4492859d44260E1de41A9E663e70F5/logo.png differ diff --git a/blockchains/optimism/assets/0xffD27b572246f35c992EfB28DD8cB730b93Ed301/info.json b/blockchains/optimism/assets/0xffD27b572246f35c992EfB28DD8cB730b93Ed301/info.json index f1af8058a69e6..89f559834f466 100644 --- a/blockchains/optimism/assets/0xffD27b572246f35c992EfB28DD8cB730b93Ed301/info.json +++ b/blockchains/optimism/assets/0xffD27b572246f35c992EfB28DD8cB730b93Ed301/info.json @@ -10,8 +10,8 @@ "id": "0xffD27b572246f35c992EfB28DD8cB730b93Ed301", "links": [ { - "name": "twitter", - "url": "https://twitter.com/rubicondefi" + "name": "x", + "url": "https://x.com/rubicondefi" }, { "name": "telegram", diff --git a/blockchains/optimism/info/info.json b/blockchains/optimism/info/info.json index 8bb2e265b6f5b..64c91b39ca005 100644 --- a/blockchains/optimism/info/info.json +++ b/blockchains/optimism/info/info.json @@ -10,5 +10,8 @@ "decimals": 18, "status": "active", "rpc_url": "https://mainnet.optimism.io", - "links": [] + "links": [], + "tags": [ + "dapp" + ] } diff --git a/blockchains/optimism/info/square_logo.png b/blockchains/optimism/info/square_logo.png new file mode 100644 index 0000000000000..ca9037b893f1f Binary files /dev/null and b/blockchains/optimism/info/square_logo.png differ diff --git a/blockchains/optimism/tokenlist.json b/blockchains/optimism/tokenlist.json index decf3204fa9ea..5e43996915613 100644 --- a/blockchains/optimism/tokenlist.json +++ b/blockchains/optimism/tokenlist.json @@ -17,7 +17,7 @@ "asset": "c10000070_t0x8700dAec35aF8Ff88c16BdF0418774CB3D7599B4", "type": "OPTIMISM", "address": "0x8700dAec35aF8Ff88c16BdF0418774CB3D7599B4", - "name": "Synthetix Network", + "name": "Synthetix", "symbol": "SNX", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/optimism/assets/0x8700dAec35aF8Ff88c16BdF0418774CB3D7599B4/logo.png", diff --git a/blockchains/optimismgoerli/info/info.json b/blockchains/optimismgoerli/info/info.json index 08fefa115e415..5f25772ca779a 100644 --- a/blockchains/optimismgoerli/info/info.json +++ b/blockchains/optimismgoerli/info/info.json @@ -5,7 +5,7 @@ "explorer": "https://blockscout.com/optimism/goerli/", "research": "https://goerli.net/#about", "symbol": "ETH", - "rpc_url": "https://goerli.optimism.io", + "rpc_url": "https://optimism-goerli.public.blastapi.io", "type": "coin", "decimals": 18, "status": "active", diff --git a/blockchains/optimismgoerli/info/square_logo.png b/blockchains/optimismgoerli/info/square_logo.png new file mode 100644 index 0000000000000..793f7b4a3944e Binary files /dev/null and b/blockchains/optimismgoerli/info/square_logo.png differ diff --git a/blockchains/osmosis/info/square_logo.png b/blockchains/osmosis/info/square_logo.png new file mode 100644 index 0000000000000..58114f3a06c3d Binary files /dev/null and b/blockchains/osmosis/info/square_logo.png differ diff --git a/blockchains/osmosis/validators/assets/evmosvaloper1k875gxzhegt59na74z5a8ejhen2thhvejk4r2e/logo.png b/blockchains/osmosis/validators/assets/evmosvaloper1k875gxzhegt59na74z5a8ejhen2thhvejk4r2e/logo.png new file mode 100644 index 0000000000000..f5f3ada9451c6 Binary files /dev/null and b/blockchains/osmosis/validators/assets/evmosvaloper1k875gxzhegt59na74z5a8ejhen2thhvejk4r2e/logo.png differ diff --git a/blockchains/osmosis/validators/assets/evmosvaloper1mh2lvhy0clzlx645yet4340ra0p5hh2zjyptj9/logo.png b/blockchains/osmosis/validators/assets/evmosvaloper1mh2lvhy0clzlx645yet4340ra0p5hh2zjyptj9/logo.png new file mode 100644 index 0000000000000..e117817071239 Binary files /dev/null and b/blockchains/osmosis/validators/assets/evmosvaloper1mh2lvhy0clzlx645yet4340ra0p5hh2zjyptj9/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper10pt2rk73ksua9nee7c2x5le4yxqnczuefgae62/logo.png b/blockchains/osmosis/validators/assets/osmovaloper10pt2rk73ksua9nee7c2x5le4yxqnczuefgae62/logo.png new file mode 100644 index 0000000000000..e247fab1b4a51 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper10pt2rk73ksua9nee7c2x5le4yxqnczuefgae62/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper16q8xd335y38xk2ul67mjg27vdnrcnklt4wx6kt/logo.png b/blockchains/osmosis/validators/assets/osmovaloper16q8xd335y38xk2ul67mjg27vdnrcnklt4wx6kt/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper16q8xd335y38xk2ul67mjg27vdnrcnklt4wx6kt/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98gfer6u/logo.png b/blockchains/osmosis/validators/assets/osmovaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98gfer6u/logo.png new file mode 100644 index 0000000000000..9dff7bbedfbee Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98gfer6u/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1cwurrzatev9lfkn3ak6hh59t6yc0zy00rzp8yd/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1cwurrzatev9lfkn3ak6hh59t6yc0zy00rzp8yd/logo.png index 434f53ccac24a..c53de0659fd41 100644 Binary files a/blockchains/osmosis/validators/assets/osmovaloper1cwurrzatev9lfkn3ak6hh59t6yc0zy00rzp8yd/logo.png and b/blockchains/osmosis/validators/assets/osmovaloper1cwurrzatev9lfkn3ak6hh59t6yc0zy00rzp8yd/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1f7jtv9sd3g9jay64zrydfqh7l3eqdzgs289m8u/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1f7jtv9sd3g9jay64zrydfqh7l3eqdzgs289m8u/logo.png new file mode 100644 index 0000000000000..f5f3ada9451c6 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1f7jtv9sd3g9jay64zrydfqh7l3eqdzgs289m8u/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1glmy88g0uf6vmw29pyxu3yq0pxpjqtzqr5e57n/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1glmy88g0uf6vmw29pyxu3yq0pxpjqtzqr5e57n/logo.png index 1d1512c79d718..9b28ec000f281 100644 Binary files a/blockchains/osmosis/validators/assets/osmovaloper1glmy88g0uf6vmw29pyxu3yq0pxpjqtzqr5e57n/logo.png and b/blockchains/osmosis/validators/assets/osmovaloper1glmy88g0uf6vmw29pyxu3yq0pxpjqtzqr5e57n/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1pxphtfhqnx9ny27d53z4052e3r76e7qq495ehm/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1pxphtfhqnx9ny27d53z4052e3r76e7qq495ehm/logo.png new file mode 100644 index 0000000000000..c2cb86a42efe3 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1pxphtfhqnx9ny27d53z4052e3r76e7qq495ehm/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1q5xvvmf03dx8amz66ku6z0x4u39f0aphqf42wc/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1q5xvvmf03dx8amz66ku6z0x4u39f0aphqf42wc/logo.png new file mode 100644 index 0000000000000..bed0251921f16 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1q5xvvmf03dx8amz66ku6z0x4u39f0aphqf42wc/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1rcp29q3hpd246n6qak7jluqep4v006cd8q9sme/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1rcp29q3hpd246n6qak7jluqep4v006cd8q9sme/logo.png new file mode 100644 index 0000000000000..194e9693e1011 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1rcp29q3hpd246n6qak7jluqep4v006cd8q9sme/logo.png differ diff --git a/blockchains/osmosis/validators/list.json b/blockchains/osmosis/validators/list.json index 5202586d7c096..11ab3adb2fdb4 100644 --- a/blockchains/osmosis/validators/list.json +++ b/blockchains/osmosis/validators/list.json @@ -1,16 +1,28 @@ [ { - "id": "osmovaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww24nrlnx", - "name": "Swiss Staking", - "description": "Experienced validator based in Switzerland. We offer a highly secure and stable staking infrastructure.", - "website": "https://swiss-staking.ch" + "id": "osmovaloper1f7jtv9sd3g9jay64zrydfqh7l3eqdzgs289m8u", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com" + }, + { + "id": "osmovaloper16q8xd335y38xk2ul67mjg27vdnrcnklt4wx6kt", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" }, { "id": "osmovaloper1cm83xqns9sqhv9a8vd6fggt6mvuu8mmzszknae", - "name": "Best APR ❤️ NodesByGirls", + "name": "NodesByGirls", "description": "We are a professional team with many years of experience in the crypto industry. Stake with us to get the best APR!", "website": "https://nodesbygirls.com/" }, + { + "id": "osmovaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww24nrlnx", + "name": "Swiss Staking", + "description": "Experienced validator based in Switzerland. We offer a highly secure and stable staking infrastructure.", + "website": "https://swiss-staking.ch" + }, { "id": "osmovaloper1x2e2pnenh0mmc99cnp7sukngnt8lc4saljavr3", "name": "Atomic Nodes", @@ -50,8 +62,8 @@ { "id": "osmovaloper1glmy88g0uf6vmw29pyxu3yq0pxpjqtzqr5e57n", "name": "Lavender.Five Nodes 🐝", - "description": "Lavender.Five Nodes is committed to providing world class validator services to make your life easy, including 100% slash protection. Come say hi! https://twitter.com/lavender_five", - "website": "https://www.lavenderfive.com/" + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" }, { "id": "osmovaloper1xgqr7pn80g6w398wzdmye3lu6wsgk32sw670ec", @@ -71,6 +83,12 @@ "description": "Transparent & professional staking validator with automated monitoring tools.", "website": "https://smartstake.io" }, + { + "id": "osmovaloper1pxphtfhqnx9ny27d53z4052e3r76e7qq495ehm", + "name": "AutoStake 🛡️ Slash Protected", + "description": "BareMetal - Decentralised - Reliable infrastructure run by the industry leader - AutoStake - Connect with us at: https://linktr.ee/autostake", + "website": "https://autostake.com" + }, { "id": "osmovaloper1xwazl8ftks4gn00y5x3c47auquc62ssuh8af89", "name": "jabbey", @@ -87,7 +105,7 @@ "id": "osmovaloper16n0t7lmy4wnhjytzkncjdkxrsu9yfjm3ex7hxr", "name": "Golden Ratio Staking", "description": "Powered by most beautiful number in Cosmos.", - "website": "https://twitter.com/GoldenStaking" + "website": "https://x.com/GoldenStaking" }, { "id": "osmovaloper1nskmzc8cqf8m9vwrxvnggtw4vw9cwx54jtfmuj", @@ -109,7 +127,7 @@ }, { "id": "osmovaloper1e9ucjn5fjmetky5wezzcsccp7hqcwzrrdulz7n", - "name": "Allnodes.com⚡️", + "name": "Allnodes", "description": "Reliable non-custodial Validator run by the industry leader - Allnodes. Monitor your rewards through the Allnodes portfolio page.", "website": "https://www.allnodes.com/osmo/staking" }, @@ -121,8 +139,32 @@ }, { "id": "osmovaloper1cwurrzatev9lfkn3ak6hh59t6yc0zy00rzp8yd", - "name": "danku_zone w/ DAIC", - "description": "The official validator node from danku_r (YouTube, Twitter, Medium) run by DAIC (https://t.me/validator_danku_DAIC)", - "website": "https://daic.capital/danku_zone" + "name": "Coinage x DAIC", + "description": "The official validator node from Coinage (Coinage.Media) and DAIC (https://daic.capital/telegram)", + "website": "https://daic.capital/" + }, + { + "id": "osmovaloper1rcp29q3hpd246n6qak7jluqep4v006cd8q9sme", + "name": "in3s.com", + "description": "Cosmos ecosystem contributor since 2017 running on bare metal servers with incredible uptime, even during the Osmosis epoch. Never slashed. Always low commmission.", + "website": "https://in3s.com" + }, + { + "id": "osmovaloper1q5xvvmf03dx8amz66ku6z0x4u39f0aphqf42wc", + "name": "Meria", + "description": "Meria is an institutional-grade staking service provider running blockchain infrastructure on more than +35 networks.", + "website": "https://stake.meria.com/" + }, + { + "id": "osmovaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98gfer6u", + "name": "Kahuna", + "description": "Kahuna is a tech-focused investment firm dedicated to Blockchain Infrastructure, DeFi, and Gaming startups. Follow us on https://x.com/kahunahq", + "website": "https://www.kahuna.network/" + }, + { + "id": "osmovaloper10pt2rk73ksua9nee7c2x5le4yxqnczuefgae62", + "name": "Blocks United", + "description": "Elevate your staking experience with autocompounding rewards, exclusive airdrop eligibility, and low commissions for maximized returns.", + "website": "https://blocksunited.com" } ] diff --git a/blockchains/pactus/info/info.json b/blockchains/pactus/info/info.json new file mode 100644 index 0000000000000..3b2a225fd3b49 --- /dev/null +++ b/blockchains/pactus/info/info.json @@ -0,0 +1,44 @@ +{ + "name": "Pactus", + "website": "https://pactus.org", + "description": "Pactus is an open source, layer-1 blockchain technology with a revolutionary, secure, Solid State Proof of Stake Consensus.", + "explorer": "https://pacviewer.com/", + "symbol": "PAC", + "type": "coin", + "decimals": 9, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/pactus-project" + }, + { + "name": "x", + "url": "https://x.com/pactuschain/" + }, + { + "name": "telegram", + "url": "https://t.me/pactuschat" + }, + { + "name": "telegram_news", + "url": "https://t.me/pactusblockchain" + }, + { + "name": "facebook", + "url": "https://facebook.com/PactusChain" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pactus" + }, + { + "name": "source_code", + "url": "https://github.com/pactus-project/pactus" + }, + { + "name": "whitepaper", + "url": "https://github.com/pactus-project/Whitepaper/releases/latest/download/pactus_whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/pactus/info/logo.png b/blockchains/pactus/info/logo.png new file mode 100644 index 0000000000000..115f93d5d3d62 Binary files /dev/null and b/blockchains/pactus/info/logo.png differ diff --git a/blockchains/pactus/info/square_logo.png b/blockchains/pactus/info/square_logo.png new file mode 100644 index 0000000000000..51715a7e09ad2 Binary files /dev/null and b/blockchains/pactus/info/square_logo.png differ diff --git a/blockchains/persistence/info/info.json b/blockchains/persistence/info/info.json index 16cce87bd170b..11475c2701eae 100644 --- a/blockchains/persistence/info/info.json +++ b/blockchains/persistence/info/info.json @@ -21,8 +21,8 @@ "url": "https://blog.persistence.one/" }, { - "name": "twitter", - "url": "https://twitter.com/PersistenceOne" + "name": "x", + "url": "https://x.com/PersistenceOne" } ] } \ No newline at end of file diff --git a/blockchains/persistence/info/square_logo.png b/blockchains/persistence/info/square_logo.png new file mode 100644 index 0000000000000..ecbb4ad2ad590 Binary files /dev/null and b/blockchains/persistence/info/square_logo.png differ diff --git a/blockchains/persistence/validators/assets/persistencevaloper16jd664rd04j5lyckykjedt7vrha7k822vlkxty/logo.png b/blockchains/persistence/validators/assets/persistencevaloper16jd664rd04j5lyckykjedt7vrha7k822vlkxty/logo.png new file mode 100644 index 0000000000000..c2cb86a42efe3 Binary files /dev/null and b/blockchains/persistence/validators/assets/persistencevaloper16jd664rd04j5lyckykjedt7vrha7k822vlkxty/logo.png differ diff --git a/blockchains/persistence/validators/assets/persistencevaloper1cp4rjdsuyhzhgvrkswsay44tt8207s487jcu59/logo.png b/blockchains/persistence/validators/assets/persistencevaloper1cp4rjdsuyhzhgvrkswsay44tt8207s487jcu59/logo.png new file mode 100644 index 0000000000000..bed0251921f16 Binary files /dev/null and b/blockchains/persistence/validators/assets/persistencevaloper1cp4rjdsuyhzhgvrkswsay44tt8207s487jcu59/logo.png differ diff --git a/blockchains/persistence/validators/assets/persistencevaloper1hmugz9ge5kmfvfaf3ljjzz4phl0rd3mks00v9z/logo.png b/blockchains/persistence/validators/assets/persistencevaloper1hmugz9ge5kmfvfaf3ljjzz4phl0rd3mks00v9z/logo.png new file mode 100644 index 0000000000000..0f6305d87f6e5 Binary files /dev/null and b/blockchains/persistence/validators/assets/persistencevaloper1hmugz9ge5kmfvfaf3ljjzz4phl0rd3mks00v9z/logo.png differ diff --git a/blockchains/persistence/validators/assets/persistencevaloper1r7gdc8ag4ktmrvhed2xp09n3klrjuznwdzsru2/logo.png b/blockchains/persistence/validators/assets/persistencevaloper1r7gdc8ag4ktmrvhed2xp09n3klrjuznwdzsru2/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/persistence/validators/assets/persistencevaloper1r7gdc8ag4ktmrvhed2xp09n3klrjuznwdzsru2/logo.png differ diff --git a/blockchains/persistence/validators/assets/persistencevaloper1t9evdw09hgt8p4z5at5325scwdhszka92vafvr/logo.png b/blockchains/persistence/validators/assets/persistencevaloper1t9evdw09hgt8p4z5at5325scwdhszka92vafvr/logo.png new file mode 100644 index 0000000000000..1020527149890 Binary files /dev/null and b/blockchains/persistence/validators/assets/persistencevaloper1t9evdw09hgt8p4z5at5325scwdhszka92vafvr/logo.png differ diff --git a/blockchains/persistence/validators/assets/persistencevaloper1x3ecxjgg6mlq34g3pm7dyuz8n4jz2exxx7eh0n/logo.png b/blockchains/persistence/validators/assets/persistencevaloper1x3ecxjgg6mlq34g3pm7dyuz8n4jz2exxx7eh0n/logo.png new file mode 100644 index 0000000000000..c53de0659fd41 Binary files /dev/null and b/blockchains/persistence/validators/assets/persistencevaloper1x3ecxjgg6mlq34g3pm7dyuz8n4jz2exxx7eh0n/logo.png differ diff --git a/blockchains/persistence/validators/assets/persistencevaloper1xykmyvzk88qrlqh3wuw4jckewleyygupsumyj5/logo.png b/blockchains/persistence/validators/assets/persistencevaloper1xykmyvzk88qrlqh3wuw4jckewleyygupsumyj5/logo.png new file mode 100644 index 0000000000000..4b09813738a9d Binary files /dev/null and b/blockchains/persistence/validators/assets/persistencevaloper1xykmyvzk88qrlqh3wuw4jckewleyygupsumyj5/logo.png differ diff --git a/blockchains/persistence/validators/assets/persistencevaloper1y9h20gplhj55agqe3ntgch666yjx4qy0yr3mhu/logo.png b/blockchains/persistence/validators/assets/persistencevaloper1y9h20gplhj55agqe3ntgch666yjx4qy0yr3mhu/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/persistence/validators/assets/persistencevaloper1y9h20gplhj55agqe3ntgch666yjx4qy0yr3mhu/logo.png differ diff --git a/blockchains/persistence/validators/list.json b/blockchains/persistence/validators/list.json new file mode 100644 index 0000000000000..ad650775b75ca --- /dev/null +++ b/blockchains/persistence/validators/list.json @@ -0,0 +1,50 @@ +[ + { + "id": "persistencevaloper1r7gdc8ag4ktmrvhed2xp09n3klrjuznwdzsru2", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "persistencevaloper16jd664rd04j5lyckykjedt7vrha7k822vlkxty", + "name": "AutoStake 🛡️ Slash Protected", + "description": "BareMetal - Decentralised - Reliable infrastructure run by the industry leader - AutoStake - Connect with us at: https://linktr.ee/autostake", + "website": "https://autostake.com" + }, + { + "id": "persistencevaloper1y9h20gplhj55agqe3ntgch666yjx4qy0yr3mhu", + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" + }, + { + "id": "persistencevaloper1xykmyvzk88qrlqh3wuw4jckewleyygupsumyj5", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com/" + }, + { + "id": "persistencevaloper1hmugz9ge5kmfvfaf3ljjzz4phl0rd3mks00v9z", + "name": "Stakely.io", + "description": "🔥 Professional validator highly experienced in PoS 🔥 Slashing protection | Learn with our staking guides, video tutorials and FAQs | Part of the commission of our nodes will go to our Multicoin Faucet funds and other tools 🌱 Carbon Neutral 🌱", + "website": "https://stakely.io" + }, + { + "id": "persistencevaloper1cp4rjdsuyhzhgvrkswsay44tt8207s487jcu59", + "name": "Meria", + "description": "Meria is an institutional-grade staking service provider running blockchain infrastructure on more than +35 networks.", + "website": "https://stake.meria.com/" + }, + { + "id": "persistencevaloper1x3ecxjgg6mlq34g3pm7dyuz8n4jz2exxx7eh0n", + "name": "Coinage x DAIC", + "description": "The official validator node from Coinage (Coinage.Media) and DAIC (https://daic.capital/telegram)", + "website": "https://daic.capital/" + }, + { + "id": "persistencevaloper1t9evdw09hgt8p4z5at5325scwdhszka92vafvr", + "name": "Allnodes", + "description": "Reliable non-custodial Validator run by the industry leader - Allnodes. Monitor your rewards through the Allnodes portfolio page.", + "website": "https://www.allnodes.com/xprt/staking" + } +] diff --git a/blockchains/pivx/info/info.json b/blockchains/pivx/info/info.json new file mode 100644 index 0000000000000..e02277c40c55d --- /dev/null +++ b/blockchains/pivx/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "PIVX", + "website": "https://pivx.org", + "description": "Protected Instant Verified Transaction (or eXchange) (PIVX), launched January 30th, 2016, is a decentralized, MIT licensed open-source, fair-launch blockchain/cryptocurrency project managed, developed, governed, and stewarded by a community driven decentralized autonomous organization (DAO). It has been designed, engineered, and tested using advanced cryptography protocols to provide, first and foremost, user Financial Data Protection.", + "explorer": "https://chainz.cryptoid.info/pivx/", + "symbol": "PIVX", + "type": "coin", + "decimals": 8, + "status": "active", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pivx/" + }, + { + "name": "x", + "url": "https://x.com/_pivx" + } + ] +} \ No newline at end of file diff --git a/blockchains/pivx/info/logo.png b/blockchains/pivx/info/logo.png new file mode 100644 index 0000000000000..03f851d6cb284 Binary files /dev/null and b/blockchains/pivx/info/logo.png differ diff --git a/blockchains/pivx/info/square_logo.png b/blockchains/pivx/info/square_logo.png new file mode 100644 index 0000000000000..cb27361638ff5 Binary files /dev/null and b/blockchains/pivx/info/square_logo.png differ diff --git a/blockchains/plasma/assets/0x0A1a1A107E45b7Ced86833863f482BC5f4ed82EF/info.json b/blockchains/plasma/assets/0x0A1a1A107E45b7Ced86833863f482BC5f4ed82EF/info.json new file mode 100644 index 0000000000000..852eff3c1843c --- /dev/null +++ b/blockchains/plasma/assets/0x0A1a1A107E45b7Ced86833863f482BC5f4ed82EF/info.json @@ -0,0 +1,24 @@ +{ + "name": "USDai", + "type": "PLASMA", + "symbol": "USDai", + "decimals": 18, + "website": "https://usd.ai/", + "description": "USDai is a low risk, fully-backed synthetic dollar, which allows it to be redeemed instantly at all times. USDai does not pass yield through to holders, instead providing users with deep secondary market liquidity across DeFi and CeFi.", + "explorer": "https://plasmascan.to/token/0x0A1a1A107E45b7Ced86833863f482BC5f4ed82EF", + "status": "active", + "id": "0x0A1a1A107E45b7Ced86833863f482BC5f4ed82EF", + "links": [ + { + "name": "x", + "url": "https://x.com/USDai_Official" + }, + { + "name": "whitepaper", + "url": "https://docs.usd.ai/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/plasma/assets/0x0A1a1A107E45b7Ced86833863f482BC5f4ed82EF/logo.png b/blockchains/plasma/assets/0x0A1a1A107E45b7Ced86833863f482BC5f4ed82EF/logo.png new file mode 100644 index 0000000000000..74c513c0c1396 Binary files /dev/null and b/blockchains/plasma/assets/0x0A1a1A107E45b7Ced86833863f482BC5f4ed82EF/logo.png differ diff --git a/blockchains/plasma/assets/0x0B2b2B2076d95dda7817e785989fE353fe955ef9/info.json b/blockchains/plasma/assets/0x0B2b2B2076d95dda7817e785989fE353fe955ef9/info.json new file mode 100644 index 0000000000000..be5be42483f46 --- /dev/null +++ b/blockchains/plasma/assets/0x0B2b2B2076d95dda7817e785989fE353fe955ef9/info.json @@ -0,0 +1,25 @@ +{ + "name": "Staked USDai", + "type": "PLASMA", + "symbol": "sUSDai", + "decimals": 18, + "website": "https://usd.ai/", + "description": "sUSDai is the yield-bearing token backed by income-generating Compute or other infrastructure assets. These assets are inherently less liquid than stablecoins, so holders accrue yield for the added risk and are also subject to redemption periods.", + "explorer": "https://plasmascan.to/token/0x0B2b2B2076d95dda7817e785989fE353fe955ef9", + "status": "active", + "id": "0x0B2b2B2076d95dda7817e785989fE353fe955ef9", + "links": [ + { + "name": "x", + "url": "https://x.com/USDai_Official" + }, + { + "name": "whitepaper", + "url": "https://docs.usd.ai/" + } + ], + "tags": [ + "staking", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/plasma/assets/0x0B2b2B2076d95dda7817e785989fE353fe955ef9/logo.png b/blockchains/plasma/assets/0x0B2b2B2076d95dda7817e785989fE353fe955ef9/logo.png new file mode 100644 index 0000000000000..aa0a5809878fb Binary files /dev/null and b/blockchains/plasma/assets/0x0B2b2B2076d95dda7817e785989fE353fe955ef9/logo.png differ diff --git a/blockchains/plasma/assets/0x1B64B9025EEbb9A6239575dF9Ea4b9Ac46D4d193/info.json b/blockchains/plasma/assets/0x1B64B9025EEbb9A6239575dF9Ea4b9Ac46D4d193/info.json new file mode 100644 index 0000000000000..a60980f580c58 --- /dev/null +++ b/blockchains/plasma/assets/0x1B64B9025EEbb9A6239575dF9Ea4b9Ac46D4d193/info.json @@ -0,0 +1,20 @@ +{ + "name": "Tether Gold", + "type": "PLASMA", + "symbol": "XAUT0", + "decimals": 6, + "website": "https://gold.usdt0.to/", + "description": "XAUt0 is the omnichain version of Tether Gold, with each token representing one troy ounce of real, physical gold stored in a Swiss vault and verified under ISAE 3000 standards. And unlike most other gold investments, XAUt0 gives you full digital mobility and physical redeemability. You can hold it, trade it, lend it, or move it across chains while your asset remains physically backed and digitally composable. Beyond tokenized gold, XAUt0 is programmable, liquid gold built for the digital economy.", + "explorer": "https://plasmascan.to/token/0x1B64B9025EEbb9A6239575dF9Ea4b9Ac46D4d193", + "status": "active", + "id": "0x1B64B9025EEbb9A6239575dF9Ea4b9Ac46D4d193", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tether-gold-tokens/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/plasma/assets/0x1B64B9025EEbb9A6239575dF9Ea4b9Ac46D4d193/logo.png b/blockchains/plasma/assets/0x1B64B9025EEbb9A6239575dF9Ea4b9Ac46D4d193/logo.png new file mode 100644 index 0000000000000..6b33ee17fdc8f Binary files /dev/null and b/blockchains/plasma/assets/0x1B64B9025EEbb9A6239575dF9Ea4b9Ac46D4d193/logo.png differ diff --git a/blockchains/plasma/assets/0x211Cc4DD073734dA055fbF44a2b4667d5E5fE5d2/info.json b/blockchains/plasma/assets/0x211Cc4DD073734dA055fbF44a2b4667d5E5fE5d2/info.json new file mode 100644 index 0000000000000..b2642ed3be9c8 --- /dev/null +++ b/blockchains/plasma/assets/0x211Cc4DD073734dA055fbF44a2b4667d5E5fE5d2/info.json @@ -0,0 +1,24 @@ +{ + "name": "Staked USDe", + "type": "PLASMA", + "symbol": "sUSDe", + "decimals": 18, + "website": "https://ethena.fi/", + "description": "vEthena is a synthetic dollar protocol built on Ethereum that will provide a crypto-native solution for money not reliant on traditional banking system infrastructure, alongside a globally accessible dollar denominated savings instrument - the 'Internet Bond'.", + "explorer": "https://plasmascan.to/token/0x211Cc4DD073734dA055fbF44a2b4667d5E5fE5d2", + "status": "active", + "id": "0x211Cc4DD073734dA055fbF44a2b4667d5E5fE5d2", + "links": [ + { + "name": "x", + "url": "https://x.com/ethena_labs" + }, + { + "name": "whitepaper", + "url": "https://docs.ethena.fi/ena" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/plasma/assets/0x211Cc4DD073734dA055fbF44a2b4667d5E5fE5d2/logo.png b/blockchains/plasma/assets/0x211Cc4DD073734dA055fbF44a2b4667d5E5fE5d2/logo.png new file mode 100644 index 0000000000000..e1b7f5c1764ac Binary files /dev/null and b/blockchains/plasma/assets/0x211Cc4DD073734dA055fbF44a2b4667d5E5fE5d2/logo.png differ diff --git a/blockchains/plasma/assets/0x58538e6A46E07434d7E7375Bc268D3cb839C0133/info.json b/blockchains/plasma/assets/0x58538e6A46E07434d7E7375Bc268D3cb839C0133/info.json new file mode 100644 index 0000000000000..a97f671ee780c --- /dev/null +++ b/blockchains/plasma/assets/0x58538e6A46E07434d7E7375Bc268D3cb839C0133/info.json @@ -0,0 +1,26 @@ +{ + "name": "Ethena", + "type": "PLASMA", + "symbol": "ENA", + "decimals": 18, + "website": "https://ethena.fi/", + "description": "ENA is first and foremost a governance token, governing the Ethena protocol and its critical decisions. ENA holders can vote bi-annually to elect members to a Risk Committee, and in the future additional committees performing critical roles within the ecosystem.", + "explorer": "https://plasmascan.to/token/0x58538e6A46E07434d7E7375Bc268D3cb839C0133", + "status": "active", + "id": "0x58538e6A46E07434d7E7375Bc268D3cb839C0133", + "links": [ + { + "name": "x", + "url": "https://x.com/ethena_labs" + }, + { + "name": "whitepaper", + "url": "https://docs.ethena.fi/ena" + } + ], + "tags": [ + "governance", + "defi", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/plasma/assets/0x58538e6A46E07434d7E7375Bc268D3cb839C0133/logo.png b/blockchains/plasma/assets/0x58538e6A46E07434d7E7375Bc268D3cb839C0133/logo.png new file mode 100644 index 0000000000000..69ecb3a317648 Binary files /dev/null and b/blockchains/plasma/assets/0x58538e6A46E07434d7E7375Bc268D3cb839C0133/logo.png differ diff --git a/blockchains/plasma/assets/0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34/info.json b/blockchains/plasma/assets/0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34/info.json new file mode 100644 index 0000000000000..4bfc913eecf9f --- /dev/null +++ b/blockchains/plasma/assets/0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34/info.json @@ -0,0 +1,25 @@ +{ + "name": "USDe", + "type": "PLASMA", + "symbol": "USDe", + "decimals": 18, + "website": "https://ethena.fi/", + "description": "Ethena is a synthetic dollar protocol built on Ethereum that will provide a crypto-native solution for money not reliant on traditional banking system infrastructure, alongside a globally accessible dollar denominated savings instrument - the 'Internet Bond'.", + "explorer": "https://plasmascan.to/token/0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34", + "status": "active", + "id": "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34", + "links": [ + { + "name": "x", + "url": "https://x.com/ethena_labs" + }, + { + "name": "whitepaper", + "url": "https://docs.ethena.fi/ena" + } + ], + "tags": [ + "stablecoin", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/plasma/assets/0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34/logo.png b/blockchains/plasma/assets/0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34/logo.png new file mode 100644 index 0000000000000..4aaa7e372831b Binary files /dev/null and b/blockchains/plasma/assets/0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34/logo.png differ diff --git a/blockchains/plasma/assets/0x6100E367285b01F48D07953803A2d8dCA5D19873/info.json b/blockchains/plasma/assets/0x6100E367285b01F48D07953803A2d8dCA5D19873/info.json new file mode 100644 index 0000000000000..b7ce9a4533263 --- /dev/null +++ b/blockchains/plasma/assets/0x6100E367285b01F48D07953803A2d8dCA5D19873/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Plasma", + "type": "PLASMA", + "symbol": "WXPL", + "decimals": 18, + "website": "https://www.plasma.to/", + "description": "This is a wrapped version of XPL, the native token of the Plasma blockchain, which will be used to facilitate and be used in transactions as well as rewarding those who provide network support by validating transactions.", + "explorer": "https://plasmascan.to/token/0x6100E367285b01F48D07953803A2d8dCA5D19873", + "status": "active", + "id": "0x6100E367285b01F48D07953803A2d8dCA5D19873", + "links": [ + { + "name": "x", + "url": "https://x.com/PlasmaFDN" + }, + { + "name": "whitepaper", + "url": "https://docs.plasma.to/docs/get-started/introduction/start-here" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/plasma/assets/0x6100E367285b01F48D07953803A2d8dCA5D19873/logo.png b/blockchains/plasma/assets/0x6100E367285b01F48D07953803A2d8dCA5D19873/logo.png new file mode 100644 index 0000000000000..7cf7aae0ea1dc Binary files /dev/null and b/blockchains/plasma/assets/0x6100E367285b01F48D07953803A2d8dCA5D19873/logo.png differ diff --git a/blockchains/plasma/assets/0x9895D81bB462A195b4922ED7De0e3ACD007c32CB/info.json b/blockchains/plasma/assets/0x9895D81bB462A195b4922ED7De0e3ACD007c32CB/info.json new file mode 100644 index 0000000000000..c04f2e319fade --- /dev/null +++ b/blockchains/plasma/assets/0x9895D81bB462A195b4922ED7De0e3ACD007c32CB/info.json @@ -0,0 +1,20 @@ +{ + "name": "Wrapped Ether", + "type": "PLASMA", + "symbol": "WETH", + "decimals": 18, + "website": "https://plasmascan.to/address/0x9895D81bB462A195b4922ED7De0e3ACD007c32CB", + "description": "Wrapped Ether (WETH) on Plasma", + "explorer": "https://plasmascan.to/token/0x9895D81bB462A195b4922ED7De0e3ACD007c32CB", + "status": "active", + "id": "0x9895D81bB462A195b4922ED7De0e3ACD007c32CB", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/weth/" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/plasma/assets/0x9895D81bB462A195b4922ED7De0e3ACD007c32CB/logo.png b/blockchains/plasma/assets/0x9895D81bB462A195b4922ED7De0e3ACD007c32CB/logo.png new file mode 100644 index 0000000000000..bf957d38c766d Binary files /dev/null and b/blockchains/plasma/assets/0x9895D81bB462A195b4922ED7De0e3ACD007c32CB/logo.png differ diff --git a/blockchains/plasma/assets/0xA3D68b74bF0528fdD07263c60d6488749044914b/info.json b/blockchains/plasma/assets/0xA3D68b74bF0528fdD07263c60d6488749044914b/info.json new file mode 100644 index 0000000000000..ddada9cf67320 --- /dev/null +++ b/blockchains/plasma/assets/0xA3D68b74bF0528fdD07263c60d6488749044914b/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped eETH", + "type": "PLASMA", + "symbol": "weETH", + "decimals": 18, + "website": "https://www.ether.fi/", + "description": "This is the wrapped version of eETH, the first native liquid restaking token on Ethereum. Stakers can mint eETH on ether.fi. When a user does this, ether.fi will then stake and restake the ETH, allowing users to maximize rewards.", + "explorer": "https://plasmascan.to/token/0xA3D68b74bF0528fdD07263c60d6488749044914b", + "status": "active", + "id": "0xA3D68b74bF0528fdD07263c60d6488749044914b", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-eeth/" + }, + { + "name": "x", + "url": "https://x.com/ether_fi" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/plasma/assets/0xA3D68b74bF0528fdD07263c60d6488749044914b/logo.png b/blockchains/plasma/assets/0xA3D68b74bF0528fdD07263c60d6488749044914b/logo.png new file mode 100644 index 0000000000000..4cf7b8f153203 Binary files /dev/null and b/blockchains/plasma/assets/0xA3D68b74bF0528fdD07263c60d6488749044914b/logo.png differ diff --git a/blockchains/plasma/assets/0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb/info.json b/blockchains/plasma/assets/0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb/info.json new file mode 100644 index 0000000000000..e5f0f34b8bbd2 --- /dev/null +++ b/blockchains/plasma/assets/0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb/info.json @@ -0,0 +1,24 @@ +{ + "name": "USDT0", + "type": "PLASMA", + "symbol": "USDT0", + "decimals": 6, + "website": "https://usdt0.to/", + "description": "USDT0 is how USDT gets to new chains, such as Ink, Berachain, MegaETH, and Plasma. USDT0 is secure and omnichain.", + "explorer": "https://plasmascan.to/token/0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", + "status": "active", + "id": "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb", + "links": [ + { + "name": "whitepaper", + "url": "https://docs.usdt0.to/" + }, + { + "name": "x", + "url": "https://x.com/usdt0_to" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/plasma/assets/0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb/logo.png b/blockchains/plasma/assets/0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb/logo.png new file mode 100644 index 0000000000000..c07fe1a836d2a Binary files /dev/null and b/blockchains/plasma/assets/0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb/logo.png differ diff --git a/blockchains/plasma/info/info.json b/blockchains/plasma/info/info.json new file mode 100644 index 0000000000000..df80489fc61f4 --- /dev/null +++ b/blockchains/plasma/info/info.json @@ -0,0 +1,27 @@ +{ + "name": "Plasma", + "website": "https://www.plasma.to/", + "description": "Plasma is a high performance Layer 1 blockchain that is purpose built for global stablecoin payments. XPL is the native token of the Plasma blockchain, which will be used to facilitate and be used in transactions as well as rewarding those who provide network support by validating transactions.", + "explorer": "https://plasmascan.to/", + "symbol": "XPL", + "type": "coin", + "decimals": 18, + "status": "active", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/PlasmaFDN" + }, + { + "name": "whitepaper", + "url": "https://docs.plasma.to/docs/get-started/introduction/start-here" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/plasma-xpl/" + } + ] +} \ No newline at end of file diff --git a/blockchains/plasma/info/logo.png b/blockchains/plasma/info/logo.png new file mode 100644 index 0000000000000..7cf7aae0ea1dc Binary files /dev/null and b/blockchains/plasma/info/logo.png differ diff --git a/blockchains/plasma/info/square_logo.png b/blockchains/plasma/info/square_logo.png new file mode 100644 index 0000000000000..ff6f130a2e247 Binary files /dev/null and b/blockchains/plasma/info/square_logo.png differ diff --git a/blockchains/platon/info/info.json b/blockchains/platon/info/info.json index 3d134b59de76e..ae50ce06f5704 100644 --- a/blockchains/platon/info/info.json +++ b/blockchains/platon/info/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/PlatONNetwork" }, { - "name": "twitter", - "url": "https://twitter.com/PlatON_Network" + "name": "x", + "url": "https://x.com/PlatON_Network" }, { "name": "reddit", diff --git a/blockchains/platon/info/square_logo.png b/blockchains/platon/info/square_logo.png new file mode 100644 index 0000000000000..693adfff19b9b Binary files /dev/null and b/blockchains/platon/info/square_logo.png differ diff --git a/blockchains/poa/info/info.json b/blockchains/poa/info/info.json index 8eff1ab63dfad..88522e9733d13 100644 --- a/blockchains/poa/info/info.json +++ b/blockchains/poa/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/poanetwork" }, { - "name": "twitter", - "url": "https://twitter.com/poanetwork" + "name": "x", + "url": "https://x.com/poanetwork" }, { "name": "reddit", diff --git a/blockchains/poa/info/square_logo.png b/blockchains/poa/info/square_logo.png new file mode 100644 index 0000000000000..5f83a8d712944 Binary files /dev/null and b/blockchains/poa/info/square_logo.png differ diff --git a/blockchains/polkadot/info/info.json b/blockchains/polkadot/info/info.json index f982b35e96f2a..a4545313ea334 100644 --- a/blockchains/polkadot/info/info.json +++ b/blockchains/polkadot/info/info.json @@ -1,8 +1,8 @@ { "name": "Polkadot", - "website": "https://polkadot.network", + "website": "https://polkadot.com", "description": "Polkadot is a blockchain project that aims to connect blockchains, to enable the transfer of value and logic across chains. DOT is the native coin of the network.", - "explorer": "http://polkascan.io", + "explorer": "https://assethub-polkadot.subscan.io/", "research": "https://research.binance.com/en/projects/polkadot", "symbol": "DOT", "type": "coin", @@ -17,8 +17,8 @@ "url": "https://github.com/w3f" }, { - "name": "twitter", - "url": "https://twitter.com/polkadotnetwork" + "name": "x", + "url": "https://x.com/polkadotnetwork" }, { "name": "reddit", @@ -29,4 +29,4 @@ "url": "https://polkadot.network/PolkaDotPaper.pdf" } ] -} \ No newline at end of file +} diff --git a/blockchains/polkadot/info/square_logo.png b/blockchains/polkadot/info/square_logo.png new file mode 100644 index 0000000000000..ba6fc8dc3157b Binary files /dev/null and b/blockchains/polkadot/info/square_logo.png differ diff --git a/blockchains/polkadot/validators/assets/13K6QTYBPMUFTbhZzqToKcfCiWbt4wDPHr3rUPyUessiPR61/logo.png b/blockchains/polkadot/validators/assets/13K6QTYBPMUFTbhZzqToKcfCiWbt4wDPHr3rUPyUessiPR61/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/polkadot/validators/assets/13K6QTYBPMUFTbhZzqToKcfCiWbt4wDPHr3rUPyUessiPR61/logo.png differ diff --git a/blockchains/polkadot/validators/assets/14GrUvsPq8TXbwY1CE4piCbVcqBtm5wZKvecY7hTGfmh6mGb/logo.png b/blockchains/polkadot/validators/assets/14GrUvsPq8TXbwY1CE4piCbVcqBtm5wZKvecY7hTGfmh6mGb/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/polkadot/validators/assets/14GrUvsPq8TXbwY1CE4piCbVcqBtm5wZKvecY7hTGfmh6mGb/logo.png differ diff --git a/blockchains/polkadot/validators/assets/16cDjCXSYGRDpEett39taTgMAN7LKnyaafa5MgfbUmpsERW8/logo.png b/blockchains/polkadot/validators/assets/16cDjCXSYGRDpEett39taTgMAN7LKnyaafa5MgfbUmpsERW8/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/polkadot/validators/assets/16cDjCXSYGRDpEett39taTgMAN7LKnyaafa5MgfbUmpsERW8/logo.png differ diff --git a/blockchains/polkadot/validators/list.json b/blockchains/polkadot/validators/list.json index b3513e877e8bb..32b1377544304 100644 --- a/blockchains/polkadot/validators/list.json +++ b/blockchains/polkadot/validators/list.json @@ -148,5 +148,23 @@ "name": "Allnodes.com ⚡️ 0% fee", "description": "Reliable non-custodial Validator run by the industry leader - Allnodes.", "website": "https://wwww.allnodes.com/dot/staking" + }, + { + "id": "13K6QTYBPMUFTbhZzqToKcfCiWbt4wDPHr3rUPyUessiPR61", + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" + }, + { + "id": "14GrUvsPq8TXbwY1CE4piCbVcqBtm5wZKvecY7hTGfmh6mGb", + "name": "Stakeflow/2", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" + }, + { + "id": "16cDjCXSYGRDpEett39taTgMAN7LKnyaafa5MgfbUmpsERW8", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" } ] \ No newline at end of file diff --git a/blockchains/polygon/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/info.json b/blockchains/polygon/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/info.json new file mode 100644 index 0000000000000..d6d3514fa5f29 --- /dev/null +++ b/blockchains/polygon/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/info.json @@ -0,0 +1,14 @@ +{ + "name": "AUSD", + "type": "POLYGON", + "symbol": "AUSD", + "decimals": 6, + "website": "https://www.agora.finance/", + "description": "AUSD is a safe, secure asset that enables billions of dollars of transfers and is used globally.", + "explorer": "https://polygonscan.com/token/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a", + "status": "active", + "id": "0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a", + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/logo.png b/blockchains/polygon/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/logo.png new file mode 100644 index 0000000000000..b41ffbfbb87a1 Binary files /dev/null and b/blockchains/polygon/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/logo.png differ diff --git a/blockchains/polygon/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json b/blockchains/polygon/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json new file mode 100644 index 0000000000000..3ef726a3c00d3 --- /dev/null +++ b/blockchains/polygon/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json @@ -0,0 +1,37 @@ +{ + "name": "USDA", + "website": "https://www.angle.money/", + "description": "USDA is an over-collateralized and decentralized USD stablecoin by the Angle Protocol.", + "explorer": "https://polygonscan.com/token/0x0000206329b97DB379d5E1Bf586BbDB969C63274", + "type": "POLYGON", + "symbol": "USDA", + "decimals": 18, + "status": "active", + "tags": [ + "defi", + "stablecoin" + ], + "id": "0x0000206329b97DB379d5E1Bf586BbDB969C63274", + "links": [ + { + "name": "github", + "url": "https://github.com/AngleProtocol" + }, + { + "name": "x", + "url": "https://x.com/AngleProtocol" + }, + { + "name": "docs", + "url": "https://docs.angle.money" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/angle-usd" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZheVAnFt6h" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/logo.png b/blockchains/polygon/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/logo.png new file mode 100644 index 0000000000000..759db2e96cc84 Binary files /dev/null and b/blockchains/polygon/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/logo.png differ diff --git a/blockchains/polygon/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/info.json b/blockchains/polygon/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/info.json new file mode 100644 index 0000000000000..64727da41b9ce --- /dev/null +++ b/blockchains/polygon/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/info.json @@ -0,0 +1,37 @@ +{ + "name": "Staked USDA", + "website": "https://www.angle.money/", + "description": "stUSD is a USD savings solution built on top of USDA by the Angle Protocol", + "explorer": "https://polygonscan.com/token/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776", + "type": "POLYGON", + "symbol": "stUSD", + "decimals": 18, + "status": "active", + "tags": [ + "defi", + "stablecoin" + ], + "id": "0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776", + "links": [ + { + "name": "github", + "url": "https://github.com/AngleProtocol" + }, + { + "name": "x", + "url": "https://x.com/AngleProtocol" + }, + { + "name": "docs", + "url": "https://docs.angle.money" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/angle-staked-agusd" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZheVAnFt6h" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/logo.png b/blockchains/polygon/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/logo.png new file mode 100644 index 0000000000000..a0fd0bd217403 Binary files /dev/null and b/blockchains/polygon/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/logo.png differ diff --git a/blockchains/polygon/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/info.json b/blockchains/polygon/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/info.json new file mode 100644 index 0000000000000..1ae121b6680f2 --- /dev/null +++ b/blockchains/polygon/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/info.json @@ -0,0 +1,37 @@ +{ + "name": "Staked EURA", + "website": "https://www.angle.money/", + "description": "stEUR is a Euro savings solution built on top of EURA by the Angle Protocol.", + "explorer": "https://polygonscan.com/token/0x004626A008B1aCdC4c74ab51644093b155e59A23", + "type": "POLYGON", + "symbol": "stEUR", + "decimals": 18, + "status": "active", + "tags": [ + "defi", + "stablecoin" + ], + "id": "0x004626A008B1aCdC4c74ab51644093b155e59A23", + "links": [ + { + "name": "github", + "url": "https://github.com/AngleProtocol" + }, + { + "name": "x", + "url": "https://x.com/AngleProtocol" + }, + { + "name": "docs", + "url": "https://docs.angle.money" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/staked-ageur" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZheVAnFt6h" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/logo.png b/blockchains/polygon/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/logo.png new file mode 100644 index 0000000000000..dbf1b94234fc1 Binary files /dev/null and b/blockchains/polygon/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/logo.png differ diff --git a/blockchains/polygon/assets/0x05089C9EBFFa4F0AcA269e32056b1b36B37ED71b/info.json b/blockchains/polygon/assets/0x05089C9EBFFa4F0AcA269e32056b1b36B37ED71b/info.json index c43c5c7083e6b..35c4fae2f91a7 100644 --- a/blockchains/polygon/assets/0x05089C9EBFFa4F0AcA269e32056b1b36B37ED71b/info.json +++ b/blockchains/polygon/assets/0x05089C9EBFFa4F0AcA269e32056b1b36B37ED71b/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/polywhalefarm/contracts" }, { - "name": "twitter", - "url": "https://twitter.com/polywhalefi" + "name": "x", + "url": "https://x.com/polywhalefi" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf/info.json b/blockchains/polygon/assets/0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf/info.json new file mode 100644 index 0000000000000..8e1e366f8f0fc --- /dev/null +++ b/blockchains/polygon/assets/0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf/info.json @@ -0,0 +1,25 @@ +{ + "name": "Golem", + "website": "https://golem.network", + "description": "Golem is a peer-to-peer decentralized marketplace for computing power. The project aims to be an alternative to centralized cloud service providers with its lower price point and open-source community of developers.", + "explorer": "https://polygonscan.com/token/0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf", + "type": "POLYGON", + "symbol": "GLM", + "decimals": 18, + "status": "active", + "id": "0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf", + "links": [ + { + "name": "x", + "url": "https://x.com/golemproject" + }, + { + "name": "github", + "url": "https://github.com/golemfactory/golem" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/golem-network-tokens/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf/logo.png b/blockchains/polygon/assets/0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf/logo.png new file mode 100644 index 0000000000000..644070628b3d6 Binary files /dev/null and b/blockchains/polygon/assets/0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf/logo.png differ diff --git a/blockchains/polygon/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/info.json b/blockchains/polygon/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/info.json new file mode 100644 index 0000000000000..41f81b0aed653 --- /dev/null +++ b/blockchains/polygon/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/info.json @@ -0,0 +1,27 @@ +{ + "name": "Unagi Token (UNA)", + "type": "POLYGON", + "symbol": "UNA", + "decimals": 18, + "website": "https://unagi.games/", + "description": "UNA token is Unagi's web3 gaming ecosystem token. It is your universal ticket to the entire range of Unagi games, offering a seamless experience across various genres and platforms including Ultimate Champions, Persona and more to come! We’re creating a cohesive, interconnected gaming environment.", + "explorer": "https://polygonscan.com/token/0x0b6f3ea2814f3fff804ba5d5c237aebbc364fba9", + "status": "active", + "id": "0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9", + "links": [ + { + "name": "medium", + "url": "https://ultimatechampions.medium.com/" + }, + { + "name": "x", + "url": "https://x.com/Unagi_studio" + } + ], + "tags": [ + "gamefi", + "deflationary", + "staking", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/logo.png b/blockchains/polygon/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/logo.png new file mode 100644 index 0000000000000..5dd9cbe12c479 Binary files /dev/null and b/blockchains/polygon/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/logo.png differ diff --git a/blockchains/polygon/assets/0x0CfC9a713A5C17Bc8a5fF0379467f6558bAcD0e0/info.json b/blockchains/polygon/assets/0x0CfC9a713A5C17Bc8a5fF0379467f6558bAcD0e0/info.json new file mode 100644 index 0000000000000..ff25eb8d7db5c --- /dev/null +++ b/blockchains/polygon/assets/0x0CfC9a713A5C17Bc8a5fF0379467f6558bAcD0e0/info.json @@ -0,0 +1,25 @@ + { + "name": "GraphLinq (PoS)", + "symbol": "GLQ", + "type": "POLYGON", + "decimals": 18, + "description": "The automation of decentralized DeFi data monitorization and external executions over multi-chain applications.", + "website": "https://graphlinq.io/", + "explorer": "https://polygonscan.com/token/0x0cfc9a713a5c17bc8a5ff0379467f6558bacd0e0", + "status": "active", + "id": "0x0CfC9a713A5C17Bc8a5fF0379467f6558bAcD0e0", + "links": [ + { + "name": "x", + "url": "https://x.com/graphlinq_proto" + }, + { + "name": "telegram", + "url": "https://t.me/graphlinq" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/graphlinq-protocol/" + } + ] + } \ No newline at end of file diff --git a/blockchains/polygon/assets/0x0CfC9a713A5C17Bc8a5fF0379467f6558bAcD0e0/logo.png b/blockchains/polygon/assets/0x0CfC9a713A5C17Bc8a5fF0379467f6558bAcD0e0/logo.png new file mode 100644 index 0000000000000..65f79b0b67d8e Binary files /dev/null and b/blockchains/polygon/assets/0x0CfC9a713A5C17Bc8a5fF0379467f6558bAcD0e0/logo.png differ diff --git a/blockchains/polygon/assets/0x0D6ae2a429df13e44A07Cd2969E085e4833f64A0/info.json b/blockchains/polygon/assets/0x0D6ae2a429df13e44A07Cd2969E085e4833f64A0/info.json new file mode 100644 index 0000000000000..1bc93452720ee --- /dev/null +++ b/blockchains/polygon/assets/0x0D6ae2a429df13e44A07Cd2969E085e4833f64A0/info.json @@ -0,0 +1,17 @@ +{ + "name": "PolkaBridge", + "type": "POLYGON", + "symbol": "PBR", + "decimals": 18, + "description": "PolkaBridge is a decentralized all-in-one financial application platform. The PolkaBridge ecosystem is expected to include Multichain & Cross-Chain AMM, Farming, Lending, Launchpad, P2P Exchange, INO NFT, and more.", + "website": "https://polkabridge.org/", + "explorer": "https://polygonscan.com/token/0x0d6ae2a429df13e44a07cd2969e085e4833f64a0", + "id": "0x0D6ae2a429df13e44A07Cd2969E085e4833f64A0", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/realpolkabridge" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x0D6ae2a429df13e44A07Cd2969E085e4833f64A0/logo.png b/blockchains/polygon/assets/0x0D6ae2a429df13e44A07Cd2969E085e4833f64A0/logo.png new file mode 100644 index 0000000000000..fbb99790d2976 Binary files /dev/null and b/blockchains/polygon/assets/0x0D6ae2a429df13e44A07Cd2969E085e4833f64A0/logo.png differ diff --git a/blockchains/polygon/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/info.json b/blockchains/polygon/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/info.json new file mode 100644 index 0000000000000..0190808cfb0b4 --- /dev/null +++ b/blockchains/polygon/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/info.json @@ -0,0 +1,24 @@ +{ + "name": "Argentine Peso", + "website": "https://www.ripio.com/es/criptos/stablecoins-locales", + "description": "wARS is a fully collateralized stablecoin pegged 1:1 to the Argentine Peso (ARS). Issued and governed by a Ripio subsidiary, it brings ARS on-chain so Argentines and global users can transact, save, and build on decentralized networks in their local currency.", + "explorer": "https://polygonscan.com/token/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D", + "type": "POLYGON", + "symbol": "wARS", + "decimals": 18, + "status": "active", + "id": "0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/RipioApp" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/argentine-peso" + } + ] +} diff --git a/blockchains/polygon/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/logo.png b/blockchains/polygon/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/logo.png new file mode 100644 index 0000000000000..be1b6bf25885f Binary files /dev/null and b/blockchains/polygon/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/logo.png differ diff --git a/blockchains/polygon/assets/0x0E50BEA95Fe001A370A4F1C220C49AEdCB982DeC/info.json b/blockchains/polygon/assets/0x0E50BEA95Fe001A370A4F1C220C49AEdCB982DeC/info.json new file mode 100644 index 0000000000000..33945a4ce9412 --- /dev/null +++ b/blockchains/polygon/assets/0x0E50BEA95Fe001A370A4F1C220C49AEdCB982DeC/info.json @@ -0,0 +1,25 @@ +{ + "name": "Ethernity Chain", + "type": "POLYGON", + "symbol": "ERN", + "decimals": 18, + "website": "https://ethernity.io", + "description": "What is Ethernity Chain? Ethernity is the groundbreaking authenticated NFT project which auctions verified artwork featuring the top artists and stars from music, film, sports and entertainment. Each of these digital artworks is represented as a non-fungible token (NFT). The pieces feature well-known public figures and a portion of all funds raised from the endeavor will be donated to charitable causes.", + "explorer": "https://polygonscan.com/token/0x0e50bea95fe001a370a4f1c220c49aedcb982dec", + "status": "active", + "id": "0x0E50BEA95Fe001A370A4F1C220C49AEdCB982DeC", + "links": [ + { + "name": "telegram", + "url": "https://t.me/joinchat/WKqxzZV7I14xItLT" + }, + { + "name": "x", + "url": "https://x.com/ethernitychain" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ethernity-chain/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x0E50BEA95Fe001A370A4F1C220C49AEdCB982DeC/logo.png b/blockchains/polygon/assets/0x0E50BEA95Fe001A370A4F1C220C49AEdCB982DeC/logo.png new file mode 100644 index 0000000000000..0a3ef5da30ed7 Binary files /dev/null and b/blockchains/polygon/assets/0x0E50BEA95Fe001A370A4F1C220C49AEdCB982DeC/logo.png differ diff --git a/blockchains/polygon/assets/0x0E9b89007eEE9c958c0EDA24eF70723C2C93dD58/info.json b/blockchains/polygon/assets/0x0E9b89007eEE9c958c0EDA24eF70723C2C93dD58/info.json index 3446cfd6e4f40..c85fa9fa1cbda 100644 --- a/blockchains/polygon/assets/0x0E9b89007eEE9c958c0EDA24eF70723C2C93dD58/info.json +++ b/blockchains/polygon/assets/0x0E9b89007eEE9c958c0EDA24eF70723C2C93dD58/info.json @@ -10,8 +10,8 @@ "id": "0x0E9b89007eEE9c958c0EDA24eF70723C2C93dD58", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ankr" + "name": "x", + "url": "https://x.com/ankr" }, { "name": "github", diff --git a/blockchains/polygon/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/info.json b/blockchains/polygon/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/info.json index 180e0f764dceb..c1452527aad19 100644 --- a/blockchains/polygon/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/info.json +++ b/blockchains/polygon/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/impossiblefinance" }, { - "name": "twitter", - "url": "https://twitter.com/impossiblefi" + "name": "x", + "url": "https://x.com/impossiblefi" }, { "name": "blog", diff --git a/blockchains/polygon/assets/0x0b3F868E0BE5597D5DB7fEB59E1CADBb0fdDa50a/info.json b/blockchains/polygon/assets/0x0b3F868E0BE5597D5DB7fEB59E1CADBb0fdDa50a/info.json index e0034be457b19..2d9498258e8ec 100644 --- a/blockchains/polygon/assets/0x0b3F868E0BE5597D5DB7fEB59E1CADBb0fdDa50a/info.json +++ b/blockchains/polygon/assets/0x0b3F868E0BE5597D5DB7fEB59E1CADBb0fdDa50a/info.json @@ -1,5 +1,5 @@ { - "name": "SushiToken (PoS)", + "name": "SushiSwap", "website": "https://sushi.com/", "description": "Sushi is the home of DeFi. Our community is building a comprehensive, decentralized trading platform for the future of finance.", "explorer": "https://polygonscan.com/token/0x0b3f868e0be5597d5db7feb59e1cadbb0fdda50a", @@ -14,8 +14,8 @@ "url": "https://github.com/sushiswap" }, { - "name": "twitter", - "url": "https://twitter.com/sushiswap" + "name": "x", + "url": "https://x.com/sushiswap" }, { "name": "coinmarketcap", diff --git a/blockchains/polygon/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/info.json b/blockchains/polygon/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/info.json index c7a3dc227a728..3d2ae1b89d97c 100644 --- a/blockchains/polygon/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/info.json +++ b/blockchains/polygon/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/info.json @@ -18,8 +18,8 @@ "url": "https://coingecko.com/en/coins/everrise" }, { - "name": "twitter", - "url": "https://twitter.com/everrise" + "name": "x", + "url": "https://x.com/everrise" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270/info.json b/blockchains/polygon/assets/0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270/info.json index abc464e6da3a2..e6b07418f4b55 100644 --- a/blockchains/polygon/assets/0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270/info.json +++ b/blockchains/polygon/assets/0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270/info.json @@ -10,8 +10,8 @@ "id": "0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270", "links": [ { - "name": "twitter", - "url": "https://twitter.com/0xPolygon" + "name": "x", + "url": "https://x.com/0xPolygon" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0x101A023270368c0D50BFfb62780F4aFd4ea79C35/info.json b/blockchains/polygon/assets/0x101A023270368c0D50BFfb62780F4aFd4ea79C35/info.json index 5d30f3e6fa826..5164a6a673471 100644 --- a/blockchains/polygon/assets/0x101A023270368c0D50BFfb62780F4aFd4ea79C35/info.json +++ b/blockchains/polygon/assets/0x101A023270368c0D50BFfb62780F4aFd4ea79C35/info.json @@ -1,5 +1,5 @@ { - "name": "Ankr Network", + "name": "Ankr", "type": "POLYGON", "symbol": "ANKR", "decimals": 18, @@ -10,8 +10,8 @@ "id": "0x101A023270368c0D50BFfb62780F4aFd4ea79C35", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ankr" + "name": "x", + "url": "https://x.com/ankr" }, { "name": "github", diff --git a/blockchains/polygon/assets/0x1132f58810Ee9fF13E97aECCd8DDa688Cc5eb8F4/info.json b/blockchains/polygon/assets/0x1132f58810Ee9fF13E97aECCd8DDa688Cc5eb8F4/info.json index 38d09fdd2f742..c52c2c216e06a 100644 --- a/blockchains/polygon/assets/0x1132f58810Ee9fF13E97aECCd8DDa688Cc5eb8F4/info.json +++ b/blockchains/polygon/assets/0x1132f58810Ee9fF13E97aECCd8DDa688Cc5eb8F4/info.json @@ -14,8 +14,8 @@ "url": "https://discord.com/YcdXESeMzK" }, { - "name": "twitter", - "url": "https://twitter.com/spaceratmatic" + "name": "x", + "url": "https://x.com/spaceratmatic" }, { "name": "coingecko", diff --git a/blockchains/polygon/assets/0x1379E8886A944d2D9d440b3d88DF536Aea08d9F3/info.json b/blockchains/polygon/assets/0x1379E8886A944d2D9d440b3d88DF536Aea08d9F3/info.json index 2cca5088f2760..be34c2d633084 100644 --- a/blockchains/polygon/assets/0x1379E8886A944d2D9d440b3d88DF536Aea08d9F3/info.json +++ b/blockchains/polygon/assets/0x1379E8886A944d2D9d440b3d88DF536Aea08d9F3/info.json @@ -10,8 +10,8 @@ "id": "0x1379E8886A944d2D9d440b3d88DF536Aea08d9F3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MysteriumNet" + "name": "x", + "url": "https://x.com/MysteriumNet" }, { "name": "telegram", @@ -37,4 +37,4 @@ "tags": [ "privacy" ] -} +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x137Ee749f0F8c2eD34cA00dE33BB59E3dafA494A/info.json b/blockchains/polygon/assets/0x137Ee749f0F8c2eD34cA00dE33BB59E3dafA494A/info.json index 781b8e853b459..4977afa3f7f40 100644 --- a/blockchains/polygon/assets/0x137Ee749f0F8c2eD34cA00dE33BB59E3dafA494A/info.json +++ b/blockchains/polygon/assets/0x137Ee749f0F8c2eD34cA00dE33BB59E3dafA494A/info.json @@ -18,8 +18,8 @@ "url": "https://t.me/concealnetworkusers" }, { - "name": "twitter", - "url": "https://twitter.com/ConcealNetwork" + "name": "x", + "url": "https://x.com/ConcealNetwork" }, { "name": "github", diff --git a/blockchains/polygon/assets/0x155AB9Cd3655Aa6174E1e743a6DA1E208762b03d/info.json b/blockchains/polygon/assets/0x155AB9Cd3655Aa6174E1e743a6DA1E208762b03d/info.json index 4d5119d23e088..22017fc6a797a 100644 --- a/blockchains/polygon/assets/0x155AB9Cd3655Aa6174E1e743a6DA1E208762b03d/info.json +++ b/blockchains/polygon/assets/0x155AB9Cd3655Aa6174E1e743a6DA1E208762b03d/info.json @@ -10,8 +10,8 @@ "id": "0x155AB9Cd3655Aa6174E1e743a6DA1E208762b03d", "links": [ { - "name": "twitter", - "url": "https://twitter.com/cleverminu" + "name": "x", + "url": "https://x.com/cleverminu" }, { "name": "github", @@ -33,4 +33,4 @@ "tags": [ "memes" ] -} +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x15b7c0c907e4C6b9AdaAaabC300C08991D6CEA05/info.json b/blockchains/polygon/assets/0x15b7c0c907e4C6b9AdaAaabC300C08991D6CEA05/info.json new file mode 100644 index 0000000000000..cd1ec4d412549 --- /dev/null +++ b/blockchains/polygon/assets/0x15b7c0c907e4C6b9AdaAaabC300C08991D6CEA05/info.json @@ -0,0 +1,17 @@ +{ + "name": "Gelato Network", + "type": "POLYGON", + "symbol": "GEL", + "decimals": 18, + "website": "https://www.gelato.network/", + "description": "Automated smart contract executions on Ethereum.", + "explorer": "https://polygonscan.com/token/0x15b7c0c907e4c6b9adaaaabc300c08991d6cea05", + "status": "active", + "id": "0x15b7c0c907e4C6b9AdaAaabC300C08991D6CEA05", + "links": [ + { + "name": "x", + "url": "https://x.com/gelatonetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x15b7c0c907e4C6b9AdaAaabC300C08991D6CEA05/logo.png b/blockchains/polygon/assets/0x15b7c0c907e4C6b9AdaAaabC300C08991D6CEA05/logo.png new file mode 100644 index 0000000000000..78f54c928c637 Binary files /dev/null and b/blockchains/polygon/assets/0x15b7c0c907e4C6b9AdaAaabC300C08991D6CEA05/logo.png differ diff --git a/blockchains/polygon/assets/0x1631244689EC1fEcbDD22fb5916E920dFC9b8D30/info.json b/blockchains/polygon/assets/0x1631244689EC1fEcbDD22fb5916E920dFC9b8D30/info.json index 7bfdede5e51a1..28239a4fa5d92 100644 --- a/blockchains/polygon/assets/0x1631244689EC1fEcbDD22fb5916E920dFC9b8D30/info.json +++ b/blockchains/polygon/assets/0x1631244689EC1fEcbDD22fb5916E920dFC9b8D30/info.json @@ -1,44 +1,44 @@ { - "name": "OVR", - "symbol": "OVR", - "type": "POLYGON", - "decimals": 18, - "description": "OVR is the decentralized infrastructure for the metaverse, merging physical and virtual world through Augmented Reality", - "website": "https://www.ovr.ai/", - "explorer": "https://polygonscan.com/token/0x1631244689EC1fEcbDD22fb5916E920dFC9b8D30", - "status": "active", - "id": "0x1631244689EC1fEcbDD22fb5916E920dFC9b8D30", - "tags": [ - "nft" - ], - "links": [ - { - "name": "telegram", - "url": "https://t.me/OVRtheReality" - }, - { - "name": "twitter", - "url": "https://twitter.com/OVRtheReality" - }, - { - "name": "facebook", - "url": "https://facebook.com/OVRmetaverse/" - }, - { - "name": "telegram_news", - "url": "https://t.me/ovrannouncements" - }, - { - "name": "medium", - "url": "https://medium.com/ovrthereality" - }, - { - "name": "coingecko", - "url": "https://coingecko.com/en/coins/ovr" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/ovr/" - } - ] -} + "name": "OVR", + "symbol": "OVR", + "type": "POLYGON", + "decimals": 18, + "description": "OVR is the decentralized infrastructure for the metaverse, merging physical and virtual world through Augmented Reality", + "website": "https://www.overthereality.ai/", + "explorer": "https://polygonscan.com/token/0x1631244689EC1fEcbDD22fb5916E920dFC9b8D30", + "status": "active", + "id": "0x1631244689EC1fEcbDD22fb5916E920dFC9b8D30", + "tags": [ + "nft" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/OVRtheReality" + }, + { + "name": "x", + "url": "https://x.com/OVRtheReality" + }, + { + "name": "facebook", + "url": "https://facebook.com/Overmetaverse" + }, + { + "name": "telegram_news", + "url": "https://t.me/ovrannouncements" + }, + { + "name": "medium", + "url": "https://medium.com/ovrthereality" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ovr" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ovr/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x1631244689EC1fEcbDD22fb5916E920dFC9b8D30/logo.png b/blockchains/polygon/assets/0x1631244689EC1fEcbDD22fb5916E920dFC9b8D30/logo.png index c3045348fbd1c..5bc8414cd2469 100644 Binary files a/blockchains/polygon/assets/0x1631244689EC1fEcbDD22fb5916E920dFC9b8D30/logo.png and b/blockchains/polygon/assets/0x1631244689EC1fEcbDD22fb5916E920dFC9b8D30/logo.png differ diff --git a/blockchains/polygon/assets/0x1659fFb2d40DfB1671Ac226A0D9Dcc95A774521A/info.json b/blockchains/polygon/assets/0x1659fFb2d40DfB1671Ac226A0D9Dcc95A774521A/info.json index d522e66fa1d9c..621fb4f7a7d75 100644 --- a/blockchains/polygon/assets/0x1659fFb2d40DfB1671Ac226A0D9Dcc95A774521A/info.json +++ b/blockchains/polygon/assets/0x1659fFb2d40DfB1671Ac226A0D9Dcc95A774521A/info.json @@ -10,8 +10,8 @@ "id": "0x1659fFb2d40DfB1671Ac226A0D9Dcc95A774521A", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MiDailyWallet" + "name": "x", + "url": "https://x.com/MiDailyWallet" }, { "name": "github", @@ -33,4 +33,4 @@ "tags": [ "stablecoin" ] -} +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x16E72fd009E6c4B99EA8E2b08dD1Af4Ba3a23787/info.json b/blockchains/polygon/assets/0x16E72fd009E6c4B99EA8E2b08dD1Af4Ba3a23787/info.json new file mode 100644 index 0000000000000..3a2862e9257e9 --- /dev/null +++ b/blockchains/polygon/assets/0x16E72fd009E6c4B99EA8E2b08dD1Af4Ba3a23787/info.json @@ -0,0 +1,25 @@ +{ + "name": "Nabox Token", + "website": "https://nabox.io/", + "description": "Nabox aims to allow users to utilize their digital assets across chains at the click of a button.", + "explorer": "https://polygonscan.com/token/0x16e72fd009e6c4b99ea8e2b08dd1af4ba3a23787", + "type": "POLYGON", + "symbol": "NABOX", + "decimals": 18, + "status": "active", + "id": "0x16E72fd009E6c4B99EA8E2b08dD1Af4Ba3a23787", + "links": [ + { + "name": "telegram", + "url": "https://t.me/naboxcommunity" + }, + { + "name": "x", + "url": "https://x.com/naboxwallet" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nabox/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x16E72fd009E6c4B99EA8E2b08dD1Af4Ba3a23787/logo.png b/blockchains/polygon/assets/0x16E72fd009E6c4B99EA8E2b08dD1Af4Ba3a23787/logo.png new file mode 100644 index 0000000000000..ee3475dce8027 Binary files /dev/null and b/blockchains/polygon/assets/0x16E72fd009E6c4B99EA8E2b08dD1Af4Ba3a23787/logo.png differ diff --git a/blockchains/polygon/assets/0x16ECCfDbb4eE1A85A33f3A9B21175Cd7Ae753dB4/info.json b/blockchains/polygon/assets/0x16ECCfDbb4eE1A85A33f3A9B21175Cd7Ae753dB4/info.json index 5f5ac031e0f73..d3b4a70174b16 100644 --- a/blockchains/polygon/assets/0x16ECCfDbb4eE1A85A33f3A9B21175Cd7Ae753dB4/info.json +++ b/blockchains/polygon/assets/0x16ECCfDbb4eE1A85A33f3A9B21175Cd7Ae753dB4/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/router-protocol" }, { - "name": "twitter", - "url": "https://twitter.com/routerprotocol" + "name": "x", + "url": "https://x.com/routerprotocol" }, { "name": "coingecko", diff --git a/blockchains/polygon/assets/0x172370d5Cd63279eFa6d502DAB29171933a610AF/info.json b/blockchains/polygon/assets/0x172370d5Cd63279eFa6d502DAB29171933a610AF/info.json index 1e909f28d5d71..d09da2a34213f 100644 --- a/blockchains/polygon/assets/0x172370d5Cd63279eFa6d502DAB29171933a610AF/info.json +++ b/blockchains/polygon/assets/0x172370d5Cd63279eFa6d502DAB29171933a610AF/info.json @@ -1,6 +1,6 @@ { - "name": "CRV (PoS)", - "website": "https://www.curve.fi/", + "name": "Curve DAO Token", + "website": "https://www.curve.finance/", "description": "The main purposes of the Curve DAO token are to incentivise liquidity providers on the Curve Finance platform as well as getting as many users involved as possible in the governance of the protocol.", "explorer": "https://polygonscan.com/token/0x172370d5cd63279efa6d502dab29171933a610af", "type": "POLYGON", @@ -14,8 +14,8 @@ "url": "https://github.com/curvefi/curve-contract" }, { - "name": "twitter", - "url": "https://twitter.com/CurveFinance" + "name": "x", + "url": "https://x.com/CurveFinance" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0x1A49E59aB7101D6a66D6B2Fa6d09932079cC80EC/info.json b/blockchains/polygon/assets/0x1A49E59aB7101D6a66D6B2Fa6d09932079cC80EC/info.json new file mode 100644 index 0000000000000..802cc141b0921 --- /dev/null +++ b/blockchains/polygon/assets/0x1A49E59aB7101D6a66D6B2Fa6d09932079cC80EC/info.json @@ -0,0 +1,32 @@ +{ + "name": "WinsToken", + "type": "POLYGON", + "symbol": "WINS", + "decimals": 18, + "website": "https://www.playtrophy.com/", + "description": "$WINS is a gaming rewards token designed to be sustainable and deflationary in order to address problems from the last generation of \"play-to-earn\" web3 games.", + "explorer": "https://polygonscan.com/token/0x1a49e59ab7101d6a66d6b2fa6d09932079cc80ec", + "status": "active", + "id": "0x1A49E59aB7101D6a66D6B2Fa6d09932079cC80EC", + "links": [ + { + "name": "x", + "url": "https://x.com/playtrophy" + }, + { + "name": "discord", + "url": "https://discord.com/invite/k2D8M95yMc" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wins" + }, + { + "name": "whitepaper", + "url": "https://litepaper.playtrophy.com/usdwins-token/usdwins-token" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x1A49E59aB7101D6a66D6B2Fa6d09932079cC80EC/logo.png b/blockchains/polygon/assets/0x1A49E59aB7101D6a66D6B2Fa6d09932079cC80EC/logo.png new file mode 100644 index 0000000000000..6c8acd08e00bb Binary files /dev/null and b/blockchains/polygon/assets/0x1A49E59aB7101D6a66D6B2Fa6d09932079cC80EC/logo.png differ diff --git a/blockchains/polygon/assets/0x1B815d120B3eF02039Ee11dC2d33DE7aA4a8C603/info.json b/blockchains/polygon/assets/0x1B815d120B3eF02039Ee11dC2d33DE7aA4a8C603/info.json index 4218dfd813c2e..9f9a66664a65a 100644 --- a/blockchains/polygon/assets/0x1B815d120B3eF02039Ee11dC2d33DE7aA4a8C603/info.json +++ b/blockchains/polygon/assets/0x1B815d120B3eF02039Ee11dC2d33DE7aA4a8C603/info.json @@ -1,5 +1,5 @@ { - "name": "WOO Network", + "name": "WOO", "type": "POLYGON", "symbol": "WOO", "decimals": 18, diff --git a/blockchains/polygon/assets/0x1BA17C639BdaeCd8DC4AAc37df062d17ee43a1b8/info.json b/blockchains/polygon/assets/0x1BA17C639BdaeCd8DC4AAc37df062d17ee43a1b8/info.json new file mode 100644 index 0000000000000..fff704ce6bcbe --- /dev/null +++ b/blockchains/polygon/assets/0x1BA17C639BdaeCd8DC4AAc37df062d17ee43a1b8/info.json @@ -0,0 +1,21 @@ +{ + "name": "IXS", + "website": "https://ixswap.io/", + "description": "IX Swap is the “Uniswap” for security tokens (STO) and tokenized stocks (TSO). IX Swap will be the FIRST platform to provide liquidity pools and automated market making functions for the security token (STO) & tokenized stock industry (TSO).", + "explorer": "https://polygonscan.com/token/0x1ba17c639bdaecd8dc4aac37df062d17ee43a1b8", + "type": "POLYGON", + "symbol": "WIXS", + "decimals": 18, + "status": "active", + "id": "0x1BA17C639BdaeCd8DC4AAc37df062d17ee43a1b8", + "links": [ + { + "name": "github", + "url": "https://github.com/IX-Swap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ix-swap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x1BA17C639BdaeCd8DC4AAc37df062d17ee43a1b8/logo.png b/blockchains/polygon/assets/0x1BA17C639BdaeCd8DC4AAc37df062d17ee43a1b8/logo.png new file mode 100644 index 0000000000000..cd5ca43626308 Binary files /dev/null and b/blockchains/polygon/assets/0x1BA17C639BdaeCd8DC4AAc37df062d17ee43a1b8/logo.png differ diff --git a/blockchains/polygon/assets/0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6/info.json b/blockchains/polygon/assets/0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6/info.json new file mode 100644 index 0000000000000..c54e571a1a0b9 --- /dev/null +++ b/blockchains/polygon/assets/0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6/info.json @@ -0,0 +1,28 @@ +{ + "name": "(PoS) Wrapped BTC", + "type": "POLYGON", + "symbol": "WBTC", + "decimals": 8, + "website": "https://wbtc.network/", + "description": "Wrapped Bitcoin (WBTC) is the first ERC20 token backed 1:1 with Bitcoin.", + "explorer": "https://polygonscan.com/token/0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6", + "status": "active", + "id": "0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6", + "links": [ + { + "name": "whitepaper", + "url": "https://wbtc.network/assets/wrapped-tokens-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-bitcoin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wrapped-bitcoin/" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6/logo.png b/blockchains/polygon/assets/0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6/logo.png new file mode 100644 index 0000000000000..702d64a2e040a Binary files /dev/null and b/blockchains/polygon/assets/0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6/logo.png differ diff --git a/blockchains/polygon/assets/0x1C954E8fe737F99f68Fa1CCda3e51ebDB291948C/info.json b/blockchains/polygon/assets/0x1C954E8fe737F99f68Fa1CCda3e51ebDB291948C/info.json new file mode 100644 index 0000000000000..d60fd8667c875 --- /dev/null +++ b/blockchains/polygon/assets/0x1C954E8fe737F99f68Fa1CCda3e51ebDB291948C/info.json @@ -0,0 +1,15 @@ +{ + "name": "Kyber Network", + "website": "https://kyber.network", + "description": "Kyber Network’s on-chain liquidity protocol allows decentralized token swaps to be integrated into any application, enabling value exchange to be performed seamlessly between all parties in the ecosystem.", + "explorer": "https://polygonscan.com/token/0x1c954e8fe737f99f68fa1ccda3e51ebdb291948c", + "type": "POLYGON", + "symbol": "KNC", + "decimals": 18, + "status": "active", + "id": "0x1C954E8fe737F99f68Fa1CCda3e51ebDB291948C", + "tags": [ + "defi", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x1C954E8fe737F99f68Fa1CCda3e51ebDB291948C/logo.png b/blockchains/polygon/assets/0x1C954E8fe737F99f68Fa1CCda3e51ebDB291948C/logo.png new file mode 100644 index 0000000000000..dcd42863ce231 Binary files /dev/null and b/blockchains/polygon/assets/0x1C954E8fe737F99f68Fa1CCda3e51ebDB291948C/logo.png differ diff --git a/blockchains/polygon/assets/0x1f194578e7510A350fb517a9ce63C40Fa1899427/info.json b/blockchains/polygon/assets/0x1f194578e7510A350fb517a9ce63C40Fa1899427/info.json index 464577fe763ca..32f33a91c9b2e 100644 --- a/blockchains/polygon/assets/0x1f194578e7510A350fb517a9ce63C40Fa1899427/info.json +++ b/blockchains/polygon/assets/0x1f194578e7510A350fb517a9ce63C40Fa1899427/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/ichifarm/ichi-oneToken" }, { - "name": "twitter", - "url": "https://twitter.com/ichifoundation" + "name": "x", + "url": "https://x.com/ichifoundation" }, { "name": "telegram", @@ -29,4 +29,4 @@ "url": "https://medium.com/ichifarm" } ] -} +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x229b1b6C23ff8953D663C4cBB519717e323a0a84/info.json b/blockchains/polygon/assets/0x229b1b6C23ff8953D663C4cBB519717e323a0a84/info.json index 1eed1776ea6c7..8d64550fedee5 100644 --- a/blockchains/polygon/assets/0x229b1b6C23ff8953D663C4cBB519717e323a0a84/info.json +++ b/blockchains/polygon/assets/0x229b1b6C23ff8953D663C4cBB519717e323a0a84/info.json @@ -14,12 +14,12 @@ "url": "https://t.me/BloktopiaChat" }, { - "name": "twitter", - "url": "https://twitter.com/bloktopia" + "name": "x", + "url": "https://x.com/bloktopia" }, { "name": "coinmarketcap", "url": "https://coinmarketcap.com/currencies/bloktopia/" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x235737dBb56e8517391473f7c964DB31fA6ef280/info.json b/blockchains/polygon/assets/0x235737dBb56e8517391473f7c964DB31fA6ef280/info.json index ecae340765feb..9cb74ea3ceee4 100644 --- a/blockchains/polygon/assets/0x235737dBb56e8517391473f7c964DB31fA6ef280/info.json +++ b/blockchains/polygon/assets/0x235737dBb56e8517391473f7c964DB31fA6ef280/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/kasta-io" }, { - "name": "twitter", - "url": "https://twitter.com/kasta_app" + "name": "x", + "url": "https://x.com/kasta_app" }, { "name": "coinmarketcap", diff --git a/blockchains/polygon/assets/0x23D29D30e35C5e8D321e1dc9A8a61BFD846D4C5C/info.json b/blockchains/polygon/assets/0x23D29D30e35C5e8D321e1dc9A8a61BFD846D4C5C/info.json index 57f6305e10d36..16d078365b28c 100644 --- a/blockchains/polygon/assets/0x23D29D30e35C5e8D321e1dc9A8a61BFD846D4C5C/info.json +++ b/blockchains/polygon/assets/0x23D29D30e35C5e8D321e1dc9A8a61BFD846D4C5C/info.json @@ -10,8 +10,8 @@ "id": "0x23D29D30e35C5e8D321e1dc9A8a61BFD846D4C5C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/HEXcrypto" + "name": "x", + "url": "https://x.com/HEXcrypto" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json b/blockchains/polygon/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json index c0d3a8c115e90..d9070f78d3a3e 100644 --- a/blockchains/polygon/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json +++ b/blockchains/polygon/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json @@ -10,8 +10,8 @@ "id": "0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/everrise" + "name": "x", + "url": "https://x.com/everrise" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0x2727Ab1c2D22170ABc9b595177B2D5C6E1Ab7B7B/info.json b/blockchains/polygon/assets/0x2727Ab1c2D22170ABc9b595177B2D5C6E1Ab7B7B/info.json index 20c927b426a0f..55675fff09dda 100644 --- a/blockchains/polygon/assets/0x2727Ab1c2D22170ABc9b595177B2D5C6E1Ab7B7B/info.json +++ b/blockchains/polygon/assets/0x2727Ab1c2D22170ABc9b595177B2D5C6E1Ab7B7B/info.json @@ -1,5 +1,5 @@ { - "name": "Cartesi Token (PoS)", + "name": "Cartesi", "website": "https://cartesi.io", "description": "Cartesi is the first Blockchain OS. It allows developers to build decentralized logic with Linux and standard programming environments preserving the decentralization and security of blockchains.", "explorer": "https://polygonscan.com/token/0x2727Ab1c2D22170ABc9b595177B2D5C6E1Ab7B7B", @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/cartesiproject" + "name": "x", + "url": "https://x.com/cartesiproject" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174/info.json b/blockchains/polygon/assets/0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174/info.json index 7b74faeb1e238..392763cae7f41 100644 --- a/blockchains/polygon/assets/0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174/info.json +++ b/blockchains/polygon/assets/0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174/info.json @@ -1,10 +1,10 @@ { - "name": "USD Coin (PoS)", + "name": "Bridged USD Coin (PoS)", "website": "https://centre.io/usdc", "description": "USDC is a fully collateralized US dollar stablecoin, an Ethereum powered coin and is the brainchild of CENTRE, an open source project bootstrapped by contributions from Circle and Coinbase.", "explorer": "https://polygonscan.com/token/0x2791bca1f2de4661ed88a30c99a7a9449aa84174", "type": "POLYGON", - "symbol": "USDC", + "symbol": "USDC.e", "decimals": 6, "status": "active", "id": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174", diff --git a/blockchains/polygon/assets/0x28C388FB1F4fa9F9eB445f0579666849EE5eeb42/info.json b/blockchains/polygon/assets/0x28C388FB1F4fa9F9eB445f0579666849EE5eeb42/info.json index c578c4e946ebe..11c72ea594bf3 100644 --- a/blockchains/polygon/assets/0x28C388FB1F4fa9F9eB445f0579666849EE5eeb42/info.json +++ b/blockchains/polygon/assets/0x28C388FB1F4fa9F9eB445f0579666849EE5eeb42/info.json @@ -10,8 +10,8 @@ "id": "0x28C388FB1F4fa9F9eB445f0579666849EE5eeb42", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BellaProtocol" + "name": "x", + "url": "https://x.com/BellaProtocol" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0x2AB0e9e4eE70FFf1fB9D67031E44F6410170d00e/info.json b/blockchains/polygon/assets/0x2AB0e9e4eE70FFf1fB9D67031E44F6410170d00e/info.json index 0f1c4eada2b59..cf365064e3ca7 100644 --- a/blockchains/polygon/assets/0x2AB0e9e4eE70FFf1fB9D67031E44F6410170d00e/info.json +++ b/blockchains/polygon/assets/0x2AB0e9e4eE70FFf1fB9D67031E44F6410170d00e/info.json @@ -10,8 +10,8 @@ "id": "0x2AB0e9e4eE70FFf1fB9D67031E44F6410170d00e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/XEN_Crypto" + "name": "x", + "url": "https://x.com/XEN_Crypto" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0x2B9E7ccDF0F4e5B24757c1E1a80e311E34Cb10c7/info.json b/blockchains/polygon/assets/0x2B9E7ccDF0F4e5B24757c1E1a80e311E34Cb10c7/info.json index 4a770a55459cf..0421b65ba2d4b 100644 --- a/blockchains/polygon/assets/0x2B9E7ccDF0F4e5B24757c1E1a80e311E34Cb10c7/info.json +++ b/blockchains/polygon/assets/0x2B9E7ccDF0F4e5B24757c1E1a80e311E34Cb10c7/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/DimensionDev/Maskbook" }, { - "name": "twitter", - "url": "https://twitter.com/realmaskbook" + "name": "x", + "url": "https://x.com/realmaskbook" }, { "name": "facebook", diff --git a/blockchains/polygon/assets/0x2F3E306d9F02ee8e8850F9040404918d0b345207/info.json b/blockchains/polygon/assets/0x2F3E306d9F02ee8e8850F9040404918d0b345207/info.json new file mode 100644 index 0000000000000..e06176657f6fd --- /dev/null +++ b/blockchains/polygon/assets/0x2F3E306d9F02ee8e8850F9040404918d0b345207/info.json @@ -0,0 +1,48 @@ +{ + "name": " DOGAMI", + "type": "POLYGON", + "symbol": "DOGA", + "decimals": 5, + "website": "https://dogami.com", + "description": "Launched in 2021, DOGAMÍ is an entertainment company that develops web3 games centered around the Dogamí, mystical 3D dog avatars imbued with spiritual powers. DOGAMÍ users can experience different interactive experiences in an immersive universe. $DOGA is the primary currency of the DOGAMÍ universe, a multichain-utility token limited to 1B tokens with multiple use cases.", + "explorer": "https://polygonscan.com/token/0x2F3E306d9F02ee8e8850F9040404918d0b345207", + "status": "active", + "id": "0x2F3E306d9F02ee8e8850F9040404918d0b345207", + "links": [ + { + "name": "x", + "url": "https://x.com/dogami" + }, + { + "name": "github", + "url": "https://github.com/dogami-code/Smart-Contracts-EVM" + }, + { + "name": "telegram", + "url": "https://t.me/DogamiAnnouncement" + }, + { + "name": "discord", + "url": "https://discord.com/invite/dogamiofficial" + }, + { + "name": "medium", + "url": "https://dogami.medium.com" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.dogami.com" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dogami/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x2F3E306d9F02ee8e8850F9040404918d0b345207/logo.png b/blockchains/polygon/assets/0x2F3E306d9F02ee8e8850F9040404918d0b345207/logo.png new file mode 100644 index 0000000000000..a995169b7f600 Binary files /dev/null and b/blockchains/polygon/assets/0x2F3E306d9F02ee8e8850F9040404918d0b345207/logo.png differ diff --git a/blockchains/polygon/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/info.json b/blockchains/polygon/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/info.json index 1210f13e09d44..fb6dc9c06dffb 100644 --- a/blockchains/polygon/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/info.json +++ b/blockchains/polygon/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/info.json @@ -1,5 +1,5 @@ { - "name": "StargateToken", + "name": "Stargate Finance", "website": "https://stargate.finance", "description": "Stargate is a fully composable liquidity transport protocol that lives at the heart of Omnichain DeFi.", "explorer": "https://polygonscan.com/token/0x2f6f07cdcf3588944bf4c42ac74ff24bf56e7590", diff --git a/blockchains/polygon/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/info.json b/blockchains/polygon/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/info.json new file mode 100644 index 0000000000000..3cea4764df346 --- /dev/null +++ b/blockchains/polygon/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/info.json @@ -0,0 +1,24 @@ +{ + "name": "Mexican Peso", + "website": "https://www.ripio.com/es/criptos/stablecoins-locales", + "description": "wMXN is a fully collateralized stablecoin pegged 1:1 to the Mexican Peso (MXN). Issued and governed by a Ripio subsidiary, it brings MXN on-chain so users can transact, save, and build on decentralized networks in their local currency.", + "explorer": "https://polygonscan.com/token/0x337E7456B420bD3481e7FA61fA9850343d610d34", + "type": "POLYGON", + "symbol": "wMXN", + "decimals": 18, + "status": "active", + "id": "0x337E7456B420bD3481e7FA61fA9850343d610d34", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/RipioApp" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mexican-peso" + } + ] +} diff --git a/blockchains/polygon/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/logo.png b/blockchains/polygon/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/logo.png new file mode 100644 index 0000000000000..854c9b59f6ab8 Binary files /dev/null and b/blockchains/polygon/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/logo.png differ diff --git a/blockchains/polygon/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json b/blockchains/polygon/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json new file mode 100644 index 0000000000000..49bedd04fac8a --- /dev/null +++ b/blockchains/polygon/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json @@ -0,0 +1,33 @@ +{ + "name": "Nya", + "type": "POLYGON", + "symbol": "NYA", + "decimals": 18, + "website": "https://www.nya.vip", + "description": "Explore the cultural phenomenon of Nya - the playful cat sound that's become a symbol of joy and connection. Discover how this simple word unites fans worldwide.", + "explorer": "https://polygonscan.com/token/0x38F9bf9dCe51833Ec7f03C9dC218197999999999", + "status": "active", + "id": "0x38F9bf9dCe51833Ec7f03C9dC218197999999999", + "links": [ + { + "name": "x", + "url": "https://x.com/NyaOnEarth" + }, + { + "name": "telegram", + "url": "https://t.me/NyaOnEarth" + }, + { + "name": "discord", + "url": "https://discord.com/invite/3V8gZFP5kb" + }, + { + "name": "docs", + "url": "https://wiki.nya.vip" + } + ], + "tags": [ + "memes", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png b/blockchains/polygon/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png new file mode 100644 index 0000000000000..c34f31c6b2335 Binary files /dev/null and b/blockchains/polygon/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png differ diff --git a/blockchains/polygon/assets/0x3B9E9100Db1389c518d47c635D80a90ad4C4f41b/info.json b/blockchains/polygon/assets/0x3B9E9100Db1389c518d47c635D80a90ad4C4f41b/info.json new file mode 100644 index 0000000000000..7c0ea052b2cea --- /dev/null +++ b/blockchains/polygon/assets/0x3B9E9100Db1389c518d47c635D80a90ad4C4f41b/info.json @@ -0,0 +1,37 @@ +{ + "name": "Film.io", + "type": "POLYGON", + "symbol": "FAN", + "decimals": 8, + "website": "https://film.io", + "description": "Film.io is a decentralized filmmaking ecosystem, placing Hollywood decision-making into the hands of creators and fans. Film.io leverages blockchain technology and fan collaboration to provide filmmakers with an end-to-end solution for creating, funding and distributing their projects.", + "explorer": "https://polygonscan.com/token/0x3B9E9100Db1389c518d47c635D80a90ad4C4f41b", + "status": "active", + "id": "0x3B9E9100Db1389c518d47c635D80a90ad4C4f41b", + "links": [ + { + "name": "x", + "url": "https://x.com/Filmio_Official" + }, + { + "name": "telegram", + "url": "https://t.me/officialfilmio" + }, + { + "name": "facebook", + "url": "https://facebook.com/filmioofficial" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/filmio" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/filmio/" + } + ], + "tags": [ + "dapp", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x3B9E9100Db1389c518d47c635D80a90ad4C4f41b/logo.png b/blockchains/polygon/assets/0x3B9E9100Db1389c518d47c635D80a90ad4C4f41b/logo.png new file mode 100644 index 0000000000000..592e27dccbb6a Binary files /dev/null and b/blockchains/polygon/assets/0x3B9E9100Db1389c518d47c635D80a90ad4C4f41b/logo.png differ diff --git a/blockchains/polygon/assets/0x3a3Df212b7AA91Aa0402B9035b098891d276572B/info.json b/blockchains/polygon/assets/0x3a3Df212b7AA91Aa0402B9035b098891d276572B/info.json index 2efa607612958..ee19fc28575a6 100644 --- a/blockchains/polygon/assets/0x3a3Df212b7AA91Aa0402B9035b098891d276572B/info.json +++ b/blockchains/polygon/assets/0x3a3Df212b7AA91Aa0402B9035b098891d276572B/info.json @@ -10,8 +10,8 @@ "id": "0x3a3Df212b7AA91Aa0402B9035b098891d276572B", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PolycatFinance" + "name": "x", + "url": "https://x.com/PolycatFinance" }, { "name": "github", diff --git a/blockchains/polygon/assets/0x3a9A81d576d83FF21f26f325066054540720fC34/info.json b/blockchains/polygon/assets/0x3a9A81d576d83FF21f26f325066054540720fC34/info.json index f8336fabc0219..897d09f1de5f4 100644 --- a/blockchains/polygon/assets/0x3a9A81d576d83FF21f26f325066054540720fC34/info.json +++ b/blockchains/polygon/assets/0x3a9A81d576d83FF21f26f325066054540720fC34/info.json @@ -10,8 +10,8 @@ "id": "0x3a9A81d576d83FF21f26f325066054540720fC34", "links": [ { - "name": "twitter", - "url": "https://twitter.com/streamr" + "name": "x", + "url": "https://x.com/streamr" }, { "name": "github", diff --git a/blockchains/polygon/assets/0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359/info.json b/blockchains/polygon/assets/0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359/info.json new file mode 100644 index 0000000000000..b18b69d48074e --- /dev/null +++ b/blockchains/polygon/assets/0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359/info.json @@ -0,0 +1,36 @@ +{ + "name": "USDC", + "website": "https://centre.io/usdc", + "description": "USDC is a fully collateralized US dollar stablecoin, an Ethereum powered coin and is the brainchild of CENTRE, an open source project bootstrapped by contributions from Circle and Coinbase.", + "explorer": "https://polygonscan.com/token/0x3c499c542cef5e3811e1192ce70d8cc03d5c3359", + "type": "POLYGON", + "symbol": "USDC", + "decimals": 6, + "status": "active", + "id": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359", + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + } + ], + "tags": [ + "stablecoin" + ] +} diff --git a/blockchains/polygon/assets/0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359/logo.png b/blockchains/polygon/assets/0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359/logo.png new file mode 100644 index 0000000000000..2460919c3efbe Binary files /dev/null and b/blockchains/polygon/assets/0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359/logo.png differ diff --git a/blockchains/polygon/assets/0x3ce1327867077B551ae9A6987bF10C9fd08edCE1/info.json b/blockchains/polygon/assets/0x3ce1327867077B551ae9A6987bF10C9fd08edCE1/info.json new file mode 100644 index 0000000000000..1fc99f5e9116e --- /dev/null +++ b/blockchains/polygon/assets/0x3ce1327867077B551ae9A6987bF10C9fd08edCE1/info.json @@ -0,0 +1,25 @@ +{ + "name": " SwissCheese", + "website": "https://swisscheese.finance/", + "description": "$SWCH is the native token of Swisscheese, the world's first decentralized exchange dedicated to trading tokenized stocks. Standing at the forefront of the DeFi revolution, Swisscheese merges the realms of traditional stock trading and blockchain. With $SWCH at its core, the platform offers users unparalleled opportunities to trade, stake, and experience finance like never before, marking a true evolution in the DeFi space. Now available on Trust Wallet, users can easily trade and manage their $SWCH holdings in one of the most trusted and user-friendly crypto wallets in the industry.", + "explorer": "https://polygonscan.com/token/0x3ce1327867077b551ae9a6987bf10c9fd08edce1", + "type": "POLYGON", + "symbol": "SWCH", + "decimals": 18, + "status": "active", + "id": "0x3ce1327867077B551ae9A6987bF10C9fd08edCE1", + "links": [ + { + "name": "x", + "url": "https://x.com/Swisscheese_fn" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/swisscheese/" + }, + { + "name": "telegram", + "url": "https://t.me/swisscheesegroup" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x3ce1327867077B551ae9A6987bF10C9fd08edCE1/logo.png b/blockchains/polygon/assets/0x3ce1327867077B551ae9A6987bF10C9fd08edCE1/logo.png new file mode 100644 index 0000000000000..2cb920697bf85 Binary files /dev/null and b/blockchains/polygon/assets/0x3ce1327867077B551ae9A6987bF10C9fd08edCE1/logo.png differ diff --git a/blockchains/polygon/assets/0x3f6b3595ecF70735D3f48D69b09C4E4506DB3F47/info.json b/blockchains/polygon/assets/0x3f6b3595ecF70735D3f48D69b09C4E4506DB3F47/info.json index e073ea42a0729..4a8b6343254f0 100644 --- a/blockchains/polygon/assets/0x3f6b3595ecF70735D3f48D69b09C4E4506DB3F47/info.json +++ b/blockchains/polygon/assets/0x3f6b3595ecF70735D3f48D69b09C4E4506DB3F47/info.json @@ -10,8 +10,8 @@ "id": "0x3f6b3595ecF70735D3f48D69b09C4E4506DB3F47", "links": [ { - "name": "twitter", - "url": "https://twitter.com/gamestationio" + "name": "x", + "url": "https://x.com/gamestationio" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0x42d61D766B85431666B39B89C43011f24451bFf6/info.json b/blockchains/polygon/assets/0x42d61D766B85431666B39B89C43011f24451bFf6/info.json new file mode 100644 index 0000000000000..57ebe41d4cabe --- /dev/null +++ b/blockchains/polygon/assets/0x42d61D766B85431666B39B89C43011f24451bFf6/info.json @@ -0,0 +1,28 @@ +{ + "name": "ParaSwap", + "type": "POLYGON", + "symbol": "PSP", + "decimals": 18, + "website": "https://paraswap.io/", + "description": "ParaSwap aggregates decentralized exchanges and other DeFi services in one comprehensive interface to streamline and facilitate users' interactions with decentralized finance on Ethereum and EVM-compatible chains Polygon, Avalanche, BSC & more to come.", + "explorer": "https://polygonscan.com/token/0x42d61d766b85431666b39b89c43011f24451bff6", + "status": "active", + "id": "0x42d61D766B85431666B39B89C43011f24451bFf6", + "links": [ + { + "name": "x", + "url": "https://x.com/paraswap" + }, + { + "name": "telegram", + "url": "https://t.me/paraswap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/paraswap/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x42d61D766B85431666B39B89C43011f24451bFf6/logo.png b/blockchains/polygon/assets/0x42d61D766B85431666B39B89C43011f24451bFf6/logo.png new file mode 100644 index 0000000000000..6a8b61f41102c Binary files /dev/null and b/blockchains/polygon/assets/0x42d61D766B85431666B39B89C43011f24451bFf6/logo.png differ diff --git a/blockchains/polygon/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/info.json b/blockchains/polygon/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/info.json index aaab7a61b8f28..d47aa6c85ad33 100644 --- a/blockchains/polygon/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/info.json +++ b/blockchains/polygon/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/info.json @@ -10,8 +10,8 @@ "id": "0x430EF9263E76DAE63c84292C3409D61c598E9682", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VulcanForged" + "name": "x", + "url": "https://x.com/VulcanForged" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0x431CD3C9AC9Fc73644BF68bF5691f4B83F9E104f/info.json b/blockchains/polygon/assets/0x431CD3C9AC9Fc73644BF68bF5691f4B83F9E104f/info.json new file mode 100644 index 0000000000000..69f07e456c238 --- /dev/null +++ b/blockchains/polygon/assets/0x431CD3C9AC9Fc73644BF68bF5691f4B83F9E104f/info.json @@ -0,0 +1,21 @@ +{ + "name": "Rainbow Token", + "type": "POLYGON", + "symbol": "RBW", + "decimals": 18, + "website": "https://www.cryptounicorns.fun/", + "description": "Crypto Unicorns is a new blockchain-based game centered around awesomely unique Unicorn NFTs which players can use in a fun farming simulation and in a variety of exciting battle loops. Rainbow Tokens are the primary value and governance token of the Unicorn multiverse.", + "explorer": "https://polygonscan.com/token/0x431cd3c9ac9fc73644bf68bf5691f4b83f9e104f", + "status": "active", + "id": "0x431CD3C9AC9Fc73644BF68bF5691f4B83F9E104f", + "links": [ + { + "name": "x", + "url": "https://x.com/crypto_unicorns" + }, + { + "name": "telegram", + "url": "https://t.me/crypto_unicorns" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x431CD3C9AC9Fc73644BF68bF5691f4B83F9E104f/logo.png b/blockchains/polygon/assets/0x431CD3C9AC9Fc73644BF68bF5691f4B83F9E104f/logo.png new file mode 100644 index 0000000000000..34190371893af Binary files /dev/null and b/blockchains/polygon/assets/0x431CD3C9AC9Fc73644BF68bF5691f4B83F9E104f/logo.png differ diff --git a/blockchains/polygon/assets/0x433E39CE74aEF8F409182541269e417AD9B56011/info.json b/blockchains/polygon/assets/0x433E39CE74aEF8F409182541269e417AD9B56011/info.json new file mode 100644 index 0000000000000..367a1c248bbe4 --- /dev/null +++ b/blockchains/polygon/assets/0x433E39CE74aEF8F409182541269e417AD9B56011/info.json @@ -0,0 +1,32 @@ +{ + "name": "FlickerPro", + "type": "POLYGON", + "symbol": "FKRPRO", + "decimals": 18, + "website": "https://flickertechnology.com/", + "description": "FlickerPro where we introduce an innovative crypto token designed to revolutionize finance, real estate, e-commerce, and the traveling & hospitality sectors. offering high-speed transactions and low fees. This whitepaper outlines the key aspects of FlickerPro including its token overview, project details, future plans, staking program, tokenomics, roadmap, and the profiles of its creators.", + "explorer": "https://polygonscan.com/token/0x433e39ce74aef8f409182541269e417ad9b56011", + "status": "spam", + "id": "0x433E39CE74aEF8F409182541269e417AD9B56011", + "links": [ + { + "name": "telegram", + "url": "https://t.me/FlickerProOfficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/flickerpro/" + }, + { + "name": "facebook", + "url": "https://facebook.com/flickertechnology" + }, + { + "name": "whitepaper", + "url": "https://flickertechnology.com/flicker/uploads/whitepaper.pdf" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/polygon/assets/0x43Df9c0a1156c96cEa98737b511ac89D0e2A1F46/info.json b/blockchains/polygon/assets/0x43Df9c0a1156c96cEa98737b511ac89D0e2A1F46/info.json index fb819ef941082..5e5f5bb9d355d 100644 --- a/blockchains/polygon/assets/0x43Df9c0a1156c96cEa98737b511ac89D0e2A1F46/info.json +++ b/blockchains/polygon/assets/0x43Df9c0a1156c96cEa98737b511ac89D0e2A1F46/info.json @@ -10,8 +10,8 @@ "id": "0x43Df9c0a1156c96cEa98737b511ac89D0e2A1F46", "links": [ { - "name": "twitter", - "url": "https://twitter.com/official_cvi" + "name": "x", + "url": "https://x.com/official_cvi" }, { "name": "github", diff --git a/blockchains/polygon/assets/0x4597c8A59Ab28B36840B82B3A674994A279593D0/info.json b/blockchains/polygon/assets/0x4597c8A59Ab28B36840B82B3A674994A279593D0/info.json new file mode 100644 index 0000000000000..b938fb92dd3cd --- /dev/null +++ b/blockchains/polygon/assets/0x4597c8A59Ab28B36840B82B3A674994A279593D0/info.json @@ -0,0 +1,21 @@ +{ + "name": "CircuitsOfValue", + "symbol": "Coval", + "type": "POLYGON", + "decimals": 8, + "description": "Combine different blockchain tokens into a single token. Tradable DeFi Pools. Make any token a privacy token. Make Tradable Portfolios. ", + "website": "https://circuitsofvalue.com/", + "explorer": "https://polygonscan.com/token/0x4597c8a59ab28b36840b82b3a674994a279593d0", + "status": "active", + "id": "0x4597c8A59Ab28B36840B82B3A674994A279593D0", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/circuits-of-value/" + }, + { + "name": "x", + "url": "https://x.com/circuitsofvalue" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x4597c8A59Ab28B36840B82B3A674994A279593D0/logo.png b/blockchains/polygon/assets/0x4597c8A59Ab28B36840B82B3A674994A279593D0/logo.png new file mode 100644 index 0000000000000..fa6dfaeca5218 Binary files /dev/null and b/blockchains/polygon/assets/0x4597c8A59Ab28B36840B82B3A674994A279593D0/logo.png differ diff --git a/blockchains/polygon/assets/0x46D502Fac9aEA7c5bC7B13C8Ec9D02378C33D36F/info.json b/blockchains/polygon/assets/0x46D502Fac9aEA7c5bC7B13C8Ec9D02378C33D36F/info.json index 3960f997e6e51..7bfd8024e854a 100644 --- a/blockchains/polygon/assets/0x46D502Fac9aEA7c5bC7B13C8Ec9D02378C33D36F/info.json +++ b/blockchains/polygon/assets/0x46D502Fac9aEA7c5bC7B13C8Ec9D02378C33D36F/info.json @@ -10,8 +10,8 @@ "id": "0x46D502Fac9aEA7c5bC7B13C8Ec9D02378C33D36F", "links": [ { - "name": "twitter", - "url": "https://twitter.com/robowolf8" + "name": "x", + "url": "https://x.com/robowolf8" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0x486FFAf06A681bf22B5209e9fFCE722662A60E8C/info.json b/blockchains/polygon/assets/0x486FFAf06A681bf22B5209e9fFCE722662A60E8C/info.json index a96aef3385c41..b37d696534530 100644 --- a/blockchains/polygon/assets/0x486FFAf06A681bf22B5209e9fFCE722662A60E8C/info.json +++ b/blockchains/polygon/assets/0x486FFAf06A681bf22B5209e9fFCE722662A60E8C/info.json @@ -10,8 +10,8 @@ "id": "0x486FFAf06A681bf22B5209e9fFCE722662A60E8C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/FlycoinOfficial" + "name": "x", + "url": "https://x.com/FlycoinOfficial" }, { "name": "telegram", @@ -29,4 +29,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x48cBc913dE09317dF2365e6827Df50dA083701D5/info.json b/blockchains/polygon/assets/0x48cBc913dE09317dF2365e6827Df50dA083701D5/info.json index 25ff48b39dfdc..40ad5c5a4ac06 100644 --- a/blockchains/polygon/assets/0x48cBc913dE09317dF2365e6827Df50dA083701D5/info.json +++ b/blockchains/polygon/assets/0x48cBc913dE09317dF2365e6827Df50dA083701D5/info.json @@ -1,7 +1,7 @@ { "name": "The 4th Pillar Token", - "website": "https://4thtech.io/", - "description": "FOUR is 4thTech ecosystem utility token used as the primary means to enable services such as data file and instant messages wallet to wallet exchange.", + "website": "https://the4thpillar.io/", + "description": "FOUR token is a technical and incentive component dedicated to; (1) RTA (i.e. right-to-access), and; (2) MTO (i.e. multiple-transfer option) models in the ecosystem of Web3 communication.", "explorer": "https://polygonscan.com/token/0x48cBc913dE09317dF2365e6827Df50dA083701D5", "type": "POLYGON", "symbol": "FOUR", @@ -10,32 +10,16 @@ "id": "0x48cBc913dE09317dF2365e6827Df50dA083701D5", "links": [ { - "name": "twitter", - "url": "https://twitter.com/4thtechProject" + "name": "x", + "url": "https://x.com/4pfour" }, { "name": "coingecko", "url": "https://coingecko.com/en/coins/the-4th-pillar" - }, - { - "name": "medium", - "url": "https://medium.com/the4thpillar" - }, - { - "name": "telegram", - "url": "https://t.me/the4thpillarofficial" - }, - { - "name": "youtube", - "url": "https://youtube.com/c/4thpillartechnologies" - }, - { - "name": "whitepaper", - "url": "https://github.com/4thtech/static-assets/raw/main/pdf/whitepaper.pdf" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/4thpillar-technologies/" } + ], + "tags": [ + "governance", + "staking" ] } \ No newline at end of file diff --git a/blockchains/polygon/assets/0x48cBc913dE09317dF2365e6827Df50dA083701D5/logo.png b/blockchains/polygon/assets/0x48cBc913dE09317dF2365e6827Df50dA083701D5/logo.png index 4275e858c1910..b0d3e287349fe 100644 Binary files a/blockchains/polygon/assets/0x48cBc913dE09317dF2365e6827Df50dA083701D5/logo.png and b/blockchains/polygon/assets/0x48cBc913dE09317dF2365e6827Df50dA083701D5/logo.png differ diff --git a/blockchains/polygon/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/info.json b/blockchains/polygon/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/info.json new file mode 100644 index 0000000000000..458fd97ce373b --- /dev/null +++ b/blockchains/polygon/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/info.json @@ -0,0 +1,24 @@ +{ + "name": "Peruvian Sol", + "website": "https://www.ripio.com/es/criptos/stablecoins-locales", + "description": "wPEN is a fully collateralized stablecoin pegged 1:1 to the Peruvian Sol (PEN). Issued and governed by a Ripio subsidiary, it brings PEN on-chain so Peruvians and global users can transact, save, and build on decentralized networks in their local currency.", + "explorer": "https://polygonscan.com/token/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE", + "type": "POLYGON", + "symbol": "wPEN", + "decimals": 18, + "status": "active", + "id": "0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/RipioApp" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/peruvian-sol" + } + ] +} diff --git a/blockchains/polygon/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/logo.png b/blockchains/polygon/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/logo.png new file mode 100644 index 0000000000000..bb0e72932d120 Binary files /dev/null and b/blockchains/polygon/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/logo.png differ diff --git a/blockchains/polygon/assets/0x4c4BF319237D98a30A929A96112EfFa8DA3510EB/info.json b/blockchains/polygon/assets/0x4c4BF319237D98a30A929A96112EfFa8DA3510EB/info.json index 5b8c03de59194..8deff1cffd8bd 100644 --- a/blockchains/polygon/assets/0x4c4BF319237D98a30A929A96112EfFa8DA3510EB/info.json +++ b/blockchains/polygon/assets/0x4c4BF319237D98a30A929A96112EfFa8DA3510EB/info.json @@ -10,8 +10,8 @@ "id": "0x4c4BF319237D98a30A929A96112EfFa8DA3510EB", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Wault_Finance" + "name": "x", + "url": "https://x.com/Wault_Finance" }, { "name": "github", diff --git a/blockchains/polygon/assets/0x4e830F67Ec499E69930867f9017AEb5B3f629c73/info.json b/blockchains/polygon/assets/0x4e830F67Ec499E69930867f9017AEb5B3f629c73/info.json index f84fe618235ac..28789e43b5b9d 100644 --- a/blockchains/polygon/assets/0x4e830F67Ec499E69930867f9017AEb5B3f629c73/info.json +++ b/blockchains/polygon/assets/0x4e830F67Ec499E69930867f9017AEb5B3f629c73/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/oddz_fi_announcements" }, { - "name": "twitter", - "url": "https://twitter.com/oddz_finance" + "name": "x", + "url": "https://x.com/oddz_finance" }, { "name": "facebook", diff --git a/blockchains/polygon/assets/0x50B728D8D964fd00C2d0AAD81718b71311feF68a/info.json b/blockchains/polygon/assets/0x50B728D8D964fd00C2d0AAD81718b71311feF68a/info.json index a21bbcafc3d3a..fc00240048560 100644 --- a/blockchains/polygon/assets/0x50B728D8D964fd00C2d0AAD81718b71311feF68a/info.json +++ b/blockchains/polygon/assets/0x50B728D8D964fd00C2d0AAD81718b71311feF68a/info.json @@ -18,8 +18,8 @@ "url": "https://github.com/havven/havven" }, { - "name": "twitter", - "url": "https://twitter.com/synthetix_io" + "name": "x", + "url": "https://x.com/synthetix_io" }, { "name": "reddit", diff --git a/blockchains/polygon/assets/0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39/info.json b/blockchains/polygon/assets/0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39/info.json index 560415fda7db2..65e776e57ed42 100644 --- a/blockchains/polygon/assets/0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39/info.json +++ b/blockchains/polygon/assets/0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39/info.json @@ -1,5 +1,5 @@ { - "name": "ChainLink Token", + "name": "Chainlink", "website": "https://chain.link/", "description": "A blockchain-based middleware, acting as a bridge between cryptocurrency smart contracts, data feeds, APIs and traditional bank account payments.", "explorer": "https://polygonscan.com/token/0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39", @@ -14,8 +14,8 @@ "url": "https://link.smartcontract.com/whitepaper" }, { - "name": "twitter", - "url": "https://twitter.com/chainlink" + "name": "x", + "url": "https://x.com/chainlink" }, { "name": "coinmarketcap", diff --git a/blockchains/polygon/assets/0x553d3D295e0f695B9228246232eDF400ed3560B5/info.json b/blockchains/polygon/assets/0x553d3D295e0f695B9228246232eDF400ed3560B5/info.json index c2e324f0b1ec5..77a84c167359d 100644 --- a/blockchains/polygon/assets/0x553d3D295e0f695B9228246232eDF400ed3560B5/info.json +++ b/blockchains/polygon/assets/0x553d3D295e0f695B9228246232eDF400ed3560B5/info.json @@ -10,8 +10,8 @@ "id": "0x553d3D295e0f695B9228246232eDF400ed3560B5", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PaxosGlobal" + "name": "x", + "url": "https://x.com/PaxosGlobal" }, { "name": "facebook", diff --git a/blockchains/polygon/assets/0x5647Fe4281F8F6F01E84BCE775AD4b828A7b8927/info.json b/blockchains/polygon/assets/0x5647Fe4281F8F6F01E84BCE775AD4b828A7b8927/info.json index ebb2000245b8a..4641eba1ad1eb 100644 --- a/blockchains/polygon/assets/0x5647Fe4281F8F6F01E84BCE775AD4b828A7b8927/info.json +++ b/blockchains/polygon/assets/0x5647Fe4281F8F6F01E84BCE775AD4b828A7b8927/info.json @@ -22,8 +22,8 @@ "url": "https://reddit.com/r/milliontoken/" }, { - "name": "twitter", - "url": "https://twitter.com/Million__Token" + "name": "x", + "url": "https://x.com/Million__Token" }, { "name": "facebook", diff --git a/blockchains/polygon/assets/0x564906ec1DF8399F00e4ad32c0eCAC0404a27A1c/info.json b/blockchains/polygon/assets/0x564906ec1DF8399F00e4ad32c0eCAC0404a27A1c/info.json index 400aa609d0ae4..2674cfbd74675 100644 --- a/blockchains/polygon/assets/0x564906ec1DF8399F00e4ad32c0eCAC0404a27A1c/info.json +++ b/blockchains/polygon/assets/0x564906ec1DF8399F00e4ad32c0eCAC0404a27A1c/info.json @@ -19,8 +19,8 @@ "url": "https://github.com/AmbireTech/wallet" }, { - "name": "twitter", - "url": "https://twitter.com/AmbireWallet" + "name": "x", + "url": "https://x.com/AmbireWallet" }, { "name": "blog", @@ -30,17 +30,13 @@ "name": "telegram", "url": "https://t.me/AmbireOfficial" }, - { - "name": "discord", - "url": "https://discord.com/invite/nMBGJsb" - }, { "name": "facebook", "url": "https://facebook.com/AmbireAdEx" }, { "name": "whitepaper", - "url": "https://ambire.notion.site/ambire/Ambire-Wallet-Whitepaper-d502e54caf584fe7a67f9b0a018cd10f" + "url": "https://ambire.com/whitepaper" }, { "name": "coinmarketcap", @@ -51,4 +47,4 @@ "url": "https://coingecko.com/coins/ambire-wallet" } ] -} +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x580A84C73811E1839F75d86d75d88cCa0c241fF4/info.json b/blockchains/polygon/assets/0x580A84C73811E1839F75d86d75d88cCa0c241fF4/info.json index 797e57dc6e84d..e450b5ac4a2c0 100644 --- a/blockchains/polygon/assets/0x580A84C73811E1839F75d86d75d88cCa0c241fF4/info.json +++ b/blockchains/polygon/assets/0x580A84C73811E1839F75d86d75d88cCa0c241fF4/info.json @@ -14,8 +14,8 @@ "url": "https://discord.com/invite/mQq55j65xJ" }, { - "name": "twitter", - "url": "https://twitter.com/0xLaoZi" + "name": "x", + "url": "https://x.com/0xLaoZi" }, { "name": "coingecko", diff --git a/blockchains/polygon/assets/0x58c1BBb508e96CfEC1787Acf6Afe1C7008A5B064/info.json b/blockchains/polygon/assets/0x58c1BBb508e96CfEC1787Acf6Afe1C7008A5B064/info.json index 202eeca696f21..932fa619d58fb 100644 --- a/blockchains/polygon/assets/0x58c1BBb508e96CfEC1787Acf6Afe1C7008A5B064/info.json +++ b/blockchains/polygon/assets/0x58c1BBb508e96CfEC1787Acf6Afe1C7008A5B064/info.json @@ -18,8 +18,8 @@ "url": "https://discord.com/invite/hoge" }, { - "name": "twitter", - "url": "https://twitter.com/hogefinance" + "name": "x", + "url": "https://x.com/hogefinance" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0x5F32AbeeBD3c2fac1E7459A27e1AE9f1C16ccccA/info.json b/blockchains/polygon/assets/0x5F32AbeeBD3c2fac1E7459A27e1AE9f1C16ccccA/info.json new file mode 100644 index 0000000000000..d091d565dc968 --- /dev/null +++ b/blockchains/polygon/assets/0x5F32AbeeBD3c2fac1E7459A27e1AE9f1C16ccccA/info.json @@ -0,0 +1,24 @@ +{ + "name": "Farcana", + "type": "POLYGON", + "symbol": "FAR", + "decimals": 18, + "website": "https://www.farcana.com/", + "description": "The FAR token is the utility token for the Farcana ecosystem. Farcana is a multiplayer arena hero shooter powered by a Web3 economy", + "explorer": "https://polygonscan.com/token/0x5F32AbeeBD3c2fac1E7459A27e1AE9f1C16ccccA", + "status": "active", + "id": "0x5F32AbeeBD3c2fac1E7459A27e1AE9f1C16ccccA", + "links": [ + { + "name": "x", + "url": "https://x.com/FarcanaOfficial" + }, + { + "name": "youtube", + "url": "https://youtube.com/@Farcana" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x5F32AbeeBD3c2fac1E7459A27e1AE9f1C16ccccA/logo.png b/blockchains/polygon/assets/0x5F32AbeeBD3c2fac1E7459A27e1AE9f1C16ccccA/logo.png new file mode 100644 index 0000000000000..96bef9f206cd5 Binary files /dev/null and b/blockchains/polygon/assets/0x5F32AbeeBD3c2fac1E7459A27e1AE9f1C16ccccA/logo.png differ diff --git a/blockchains/polygon/assets/0x5a3064CbDCCF428ae907796cF6aD5a664CD7F3d8/info.json b/blockchains/polygon/assets/0x5a3064CbDCCF428ae907796cF6aD5a664CD7F3d8/info.json index 08fda0e50781b..81f6587b6b1ab 100644 --- a/blockchains/polygon/assets/0x5a3064CbDCCF428ae907796cF6aD5a664CD7F3d8/info.json +++ b/blockchains/polygon/assets/0x5a3064CbDCCF428ae907796cF6aD5a664CD7F3d8/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/PolyQuity/contracts" }, { - "name": "twitter", - "url": "https://twitter.com/polyquity_org" + "name": "x", + "url": "https://x.com/polyquity_org" }, { "name": "coingecko", diff --git a/blockchains/polygon/assets/0x5d47bAbA0d66083C52009271faF3F50DCc01023C/info.json b/blockchains/polygon/assets/0x5d47bAbA0d66083C52009271faF3F50DCc01023C/info.json index 0170fb3312498..71de7999fc840 100644 --- a/blockchains/polygon/assets/0x5d47bAbA0d66083C52009271faF3F50DCc01023C/info.json +++ b/blockchains/polygon/assets/0x5d47bAbA0d66083C52009271faF3F50DCc01023C/info.json @@ -18,8 +18,8 @@ "url": "https://apeswap.gitbook.io/apeswap-finance/" }, { - "name": "twitter", - "url": "https://twitter.com/ape_swap" + "name": "x", + "url": "https://x.com/ape_swap" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0x5fe2B58c013d7601147DcdD68C143A77499f5531/info.json b/blockchains/polygon/assets/0x5fe2B58c013d7601147DcdD68C143A77499f5531/info.json new file mode 100644 index 0000000000000..c36b185997770 --- /dev/null +++ b/blockchains/polygon/assets/0x5fe2B58c013d7601147DcdD68C143A77499f5531/info.json @@ -0,0 +1,37 @@ +{ + "name": "Graph Token (PoS)", + "website": "https://thegraph.com", + "description": "The Graph is an indexing protocol and global API for organizing blockchain data and making it easily accessible with GraphQL. Developers can use Graph Explorer to search, find, and publish all the public data they need to build decentralized applications. The Graph Network makes it possible to build serverless dApps that run entirely on public infrastructure.", + "explorer": "https://polygonscan.com/token/0x5fe2B58c013d7601147DcdD68C143A77499f5531", + "research": "https://github.com/graphprotocol/research", + "type": "POLYGON", + "symbol": "GRT", + "decimals": 18, + "status": "active", + "id": "0x5fe2B58c013d7601147DcdD68C143A77499f5531", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/graphprotocol/graph-node" + }, + { + "name": "x", + "url": "https://x.com/graphprotocol" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/thegraph" + }, + { + "name": "telegram", + "url": "https://t.me/graphprotocol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/the-graph/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x5fe2B58c013d7601147DcdD68C143A77499f5531/logo.png b/blockchains/polygon/assets/0x5fe2B58c013d7601147DcdD68C143A77499f5531/logo.png new file mode 100644 index 0000000000000..9cbb487ce1294 Binary files /dev/null and b/blockchains/polygon/assets/0x5fe2B58c013d7601147DcdD68C143A77499f5531/logo.png differ diff --git a/blockchains/polygon/assets/0x6109cB051c5C64093830121ed76272aB04bBDD7C/info.json b/blockchains/polygon/assets/0x6109cB051c5C64093830121ed76272aB04bBDD7C/info.json index 695366f34a733..64604d05e207b 100644 --- a/blockchains/polygon/assets/0x6109cB051c5C64093830121ed76272aB04bBDD7C/info.json +++ b/blockchains/polygon/assets/0x6109cB051c5C64093830121ed76272aB04bBDD7C/info.json @@ -10,8 +10,8 @@ "id": "0x6109cB051c5C64093830121ed76272aB04bBDD7C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Prosperpredict" + "name": "x", + "url": "https://x.com/Prosperpredict" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0x61299774020dA444Af134c82fa83E3810b309991/info.json b/blockchains/polygon/assets/0x61299774020dA444Af134c82fa83E3810b309991/info.json index 082b12df8e607..84e142b878542 100644 --- a/blockchains/polygon/assets/0x61299774020dA444Af134c82fa83E3810b309991/info.json +++ b/blockchains/polygon/assets/0x61299774020dA444Af134c82fa83E3810b309991/info.json @@ -10,8 +10,8 @@ "id": "0x61299774020dA444Af134c82fa83E3810b309991", "links": [ { - "name": "twitter", - "url": "https://twitter.com/rendertoken" + "name": "x", + "url": "https://x.com/rendertoken" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0x614389EaAE0A6821DC49062D56BDA3d9d45Fa2ff/info.json b/blockchains/polygon/assets/0x614389EaAE0A6821DC49062D56BDA3d9d45Fa2ff/info.json new file mode 100644 index 0000000000000..053fb7dbd0030 --- /dev/null +++ b/blockchains/polygon/assets/0x614389EaAE0A6821DC49062D56BDA3d9d45Fa2ff/info.json @@ -0,0 +1,25 @@ +{ + "name": "Orbs", + "website": "https://orbs.com", + "description": "Orbs is a blockchain infrastructure-as-a-service built for large scale consumer applications to meet their business and technological requirements.", + "explorer": "https://polygonscan.com/token/0x614389eaae0a6821dc49062d56bda3d9d45fa2ff", + "type": "POLYGON", + "symbol": "ORBS", + "decimals": 18, + "status": "active", + "id": "0x614389EaAE0A6821DC49062D56BDA3d9d45Fa2ff", + "links": [ + { + "name": "x", + "url": "https://x.com/orbs_network" + }, + { + "name": "github", + "url": "https://github.com/orbs-network" + }, + { + "name": "telegram", + "url": "https://t.me/orbs_network" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x614389EaAE0A6821DC49062D56BDA3d9d45Fa2ff/logo.png b/blockchains/polygon/assets/0x614389EaAE0A6821DC49062D56BDA3d9d45Fa2ff/logo.png new file mode 100644 index 0000000000000..ba89f2dd8dd05 Binary files /dev/null and b/blockchains/polygon/assets/0x614389EaAE0A6821DC49062D56BDA3d9d45Fa2ff/logo.png differ diff --git a/blockchains/polygon/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/info.json b/blockchains/polygon/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/info.json new file mode 100644 index 0000000000000..e61cdcec0146d --- /dev/null +++ b/blockchains/polygon/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/info.json @@ -0,0 +1,24 @@ +{ + "name": "Chilean Peso", + "website": "https://www.ripio.com/es/criptos/stablecoins-locales", + "description": "wCLP is a fully collateralized stablecoin pegged 1:1 to the Chilean Peso (CLP). Issued and governed by a Ripio subsidiary, it brings CLP on-chain so users can transact, save, and build on decentralized networks in their local currency.", + "explorer": "https://polygonscan.com/token/0x61D450a098b6a7f69fC4b98CE68198fe59768651", + "type": "POLYGON", + "symbol": "wCLP", + "decimals": 18, + "status": "active", + "id": "0x61D450a098b6a7f69fC4b98CE68198fe59768651", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/RipioApp" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/chilean-peso" + } + ] +} diff --git a/blockchains/polygon/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/logo.png b/blockchains/polygon/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/logo.png new file mode 100644 index 0000000000000..08570c22038ef Binary files /dev/null and b/blockchains/polygon/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/logo.png differ diff --git a/blockchains/polygon/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/info.json b/blockchains/polygon/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/info.json new file mode 100644 index 0000000000000..2db15863906a6 --- /dev/null +++ b/blockchains/polygon/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/info.json @@ -0,0 +1,45 @@ +{ + "id": "0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC", + "name": "IDRX", + "type": "POLYGON", + "symbol": "IDRX", + "decimals": 0, + "website": "https://idrx.co/", + "description": "IDRX is a stable token pegged to the value of the Indonesian Rupiah (IDR). As a cryptocurrency, IDRX offers users the benefits of blockchain technology, including security, transparency, and decentralized control. At the same time, as a stable token, IDRX offers price stability by maintaining a fixed exchange rate with the IDR, which is the national currency of Indonesia.", + "explorer": "https://polygonscan.com/token/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC", + "status": "active", + "tags": [ + "stablecoin", + "staking" + ], + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/idrx/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/idrx/" + }, + { + "name": "github", + "url": "https://github.com/idrx-co/" + }, + { + "name": "docs", + "url": "https://docs.idrx.co/" + }, + { + "name": "whitepaper", + "url": "https://idrx.co/docs/Whitepaper%20IDRX.pdf" + }, + { + "name": "telegram", + "url": "https://t.me/officialidrx" + }, + { + "name": "medium", + "url": "https://idrx.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/logo.png b/blockchains/polygon/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/logo.png new file mode 100644 index 0000000000000..7af71346b78e9 Binary files /dev/null and b/blockchains/polygon/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/logo.png differ diff --git a/blockchains/polygon/assets/0x65A05DB8322701724c197AF82C9CaE41195B0aA8/info.json b/blockchains/polygon/assets/0x65A05DB8322701724c197AF82C9CaE41195B0aA8/info.json new file mode 100644 index 0000000000000..4cf29d018f99d --- /dev/null +++ b/blockchains/polygon/assets/0x65A05DB8322701724c197AF82C9CaE41195B0aA8/info.json @@ -0,0 +1,25 @@ +{ + "name": "Shapeshift FOX", + "symbol": "FOX", + "type": "POLYGON", + "decimals": 18, + "description": "FOX is ShapeShift’s official loyalty token. Holders of FOX enjoy zero-commission trading and win ongoing USDC crypto payments from Rainfall (payments increase in proportion to your FOX holdings). ", + "website": "https://shapeshift.com/fox-token", + "explorer": "https://polygonscan.com/token/0x65A05DB8322701724c197AF82C9CaE41195B0aA8", + "status": "active", + "id": "0x65A05DB8322701724c197AF82C9CaE41195B0aA8", + "links": [ + { + "name": "x", + "url": "https://x.com/shapeshift_io" + }, + { + "name": "telegram", + "url": "https://t.me/shapeshiftofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fox-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x65A05DB8322701724c197AF82C9CaE41195B0aA8/logo.png b/blockchains/polygon/assets/0x65A05DB8322701724c197AF82C9CaE41195B0aA8/logo.png new file mode 100644 index 0000000000000..d565ce6e440a9 Binary files /dev/null and b/blockchains/polygon/assets/0x65A05DB8322701724c197AF82C9CaE41195B0aA8/logo.png differ diff --git a/blockchains/polygon/assets/0x65C9e3289e5949134759119DBc9F862E8d6F2fBE/info.json b/blockchains/polygon/assets/0x65C9e3289e5949134759119DBc9F862E8d6F2fBE/info.json index 20d1990ecd667..845fb2244c447 100644 --- a/blockchains/polygon/assets/0x65C9e3289e5949134759119DBc9F862E8d6F2fBE/info.json +++ b/blockchains/polygon/assets/0x65C9e3289e5949134759119DBc9F862E8d6F2fBE/info.json @@ -10,8 +10,8 @@ "id": "0x65C9e3289e5949134759119DBc9F862E8d6F2fBE", "links": [ { - "name": "twitter", - "url": "https://twitter.com/morpher_io" + "name": "x", + "url": "https://x.com/morpher_io" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0x6899fAcE15c14348E1759371049ab64A3a06bFA6/info.json b/blockchains/polygon/assets/0x6899fAcE15c14348E1759371049ab64A3a06bFA6/info.json new file mode 100644 index 0000000000000..c2cb4a6107b0e --- /dev/null +++ b/blockchains/polygon/assets/0x6899fAcE15c14348E1759371049ab64A3a06bFA6/info.json @@ -0,0 +1,24 @@ +{ + "name": "SmarDex Token", + "type": "POLYGON", + "symbol": "SDEX", + "decimals": 18, + "description": "SmarDex introduces USDN, a synthetic dollar that is set to replace traditional, centralized synthetic dollars like Ethena, which are becoming obsolete. USDN operates as a fully decentralized, on-chain solution designed to provide stability and reliability in the fast-paced crypto environment.", + "website": "https://smardex.io/", + "explorer": "https://polygonscan.com/token/0x6899face15c14348e1759371049ab64a3a06bfa6", + "id": "0x6899fAcE15c14348E1759371049ab64A3a06bFA6", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/SmarDex" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/smardex/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x6899fAcE15c14348E1759371049ab64A3a06bFA6/logo.png b/blockchains/polygon/assets/0x6899fAcE15c14348E1759371049ab64A3a06bFA6/logo.png new file mode 100644 index 0000000000000..d193ae876d17c Binary files /dev/null and b/blockchains/polygon/assets/0x6899fAcE15c14348E1759371049ab64A3a06bFA6/logo.png differ diff --git a/blockchains/polygon/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json b/blockchains/polygon/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json new file mode 100644 index 0000000000000..8dd99efe67326 --- /dev/null +++ b/blockchains/polygon/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json @@ -0,0 +1,21 @@ +{ + "name": "LayerZero", + "website": "https://layerzero.network/", + "description": "LayerZero is a technology that enables applications to move data across blockchains, uniquely supporting censorship-resistant messages and permissionless development through immutable smart contracts", + "explorer": "https://polygonscan.com/token/0x6985884c4392d348587b19cb9eaaf157f13271cd", + "type": "POLYGON", + "symbol": "ZRO", + "decimals": 18, + "status": "active", + "id": "0x6985884C4392D348587B19cb9eAAf157F13271cd", + "links": [ + { + "name": "x", + "url": "https://x.com/LayerZero_Labs" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/VcqxYkStIDsyN2Rh" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png b/blockchains/polygon/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png new file mode 100644 index 0000000000000..203a846cfdf6b Binary files /dev/null and b/blockchains/polygon/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png differ diff --git a/blockchains/polygon/assets/0x6A8Ec2d9BfBDD20A7F5A4E89D640F7E7cebA4499/info.json b/blockchains/polygon/assets/0x6A8Ec2d9BfBDD20A7F5A4E89D640F7E7cebA4499/info.json new file mode 100644 index 0000000000000..f61517f3d2114 --- /dev/null +++ b/blockchains/polygon/assets/0x6A8Ec2d9BfBDD20A7F5A4E89D640F7E7cebA4499/info.json @@ -0,0 +1,41 @@ +{ + "name": "MSQUARE", + "type": "POLYGON", + "symbol": "MSQ", + "decimals": 18, + "description": "MSQUARE develops and operates a real economy platform directly, lowering global entry barriers with a blockchain payment system, and strives to increase the value of MSQUARE.", + "website": "https://globalmsq.com/", + "explorer": "https://polygonscan.com/token/0x6a8ec2d9bfbdd20a7f5a4e89d640f7e7ceba4499", + "status": "active", + "id": "0x6A8Ec2d9BfBDD20A7F5A4E89D640F7E7cebA4499", + "links": [ + { + "name": "whitepaper", + "url": "https://cdn.msq.market/assets/whitepapers/MSQUARE-WHITEPAPER-ENG.pdf" + }, + { + "name": "medium", + "url": "https://medium.com/@GlobalMSQ" + }, + { + "name": "github", + "url": "https://github.com/globalmsq" + }, + { + "name": "telegram", + "url": "https://t.me/msquareglobal" + }, + { + "name": "x", + "url": "https://x.com/GLOBAL_MSQ" + }, + { + "name": "facebook", + "url": "https://facebook.com/profile.php?id=100084207751256" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/msquare-global/" + } + ] +} diff --git a/blockchains/polygon/assets/0x6A8Ec2d9BfBDD20A7F5A4E89D640F7E7cebA4499/logo.png b/blockchains/polygon/assets/0x6A8Ec2d9BfBDD20A7F5A4E89D640F7E7cebA4499/logo.png new file mode 100644 index 0000000000000..f95b77a509115 Binary files /dev/null and b/blockchains/polygon/assets/0x6A8Ec2d9BfBDD20A7F5A4E89D640F7E7cebA4499/logo.png differ diff --git a/blockchains/polygon/assets/0x6e4E624106Cb12E168E6533F8ec7c82263358940/info.json b/blockchains/polygon/assets/0x6e4E624106Cb12E168E6533F8ec7c82263358940/info.json index cc5a32f0f9083..9e7283e3008bc 100644 --- a/blockchains/polygon/assets/0x6e4E624106Cb12E168E6533F8ec7c82263358940/info.json +++ b/blockchains/polygon/assets/0x6e4E624106Cb12E168E6533F8ec7c82263358940/info.json @@ -10,8 +10,8 @@ "id": "0x6e4E624106Cb12E168E6533F8ec7c82263358940", "links": [ { - "name": "twitter", - "url": "https://twitter.com/axelarcore" + "name": "x", + "url": "https://x.com/axelarcore" }, { "name": "github", @@ -65,4 +65,4 @@ "tags": [ "wrapped" ] -} +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x71B821aa52a49F32EEd535fCA6Eb5aa130085978/info.json b/blockchains/polygon/assets/0x71B821aa52a49F32EEd535fCA6Eb5aa130085978/info.json index dfca1a8d3fe20..32e01bc51210d 100644 --- a/blockchains/polygon/assets/0x71B821aa52a49F32EEd535fCA6Eb5aa130085978/info.json +++ b/blockchains/polygon/assets/0x71B821aa52a49F32EEd535fCA6Eb5aa130085978/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/0xbitcoin" }, { - "name": "twitter", - "url": "https://twitter.com/0xbitcoin_ERC20" + "name": "x", + "url": "https://x.com/0xbitcoin_ERC20" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0x750e4C4984a9e0f12978eA6742Bc1c5D248f40ed/info.json b/blockchains/polygon/assets/0x750e4C4984a9e0f12978eA6742Bc1c5D248f40ed/info.json index 712a9587bc2fc..00ab810d04662 100644 --- a/blockchains/polygon/assets/0x750e4C4984a9e0f12978eA6742Bc1c5D248f40ed/info.json +++ b/blockchains/polygon/assets/0x750e4C4984a9e0f12978eA6742Bc1c5D248f40ed/info.json @@ -10,8 +10,8 @@ "id": "0x750e4C4984a9e0f12978eA6742Bc1c5D248f40ed", "links": [ { - "name": "twitter", - "url": "https://twitter.com/axelarcore" + "name": "x", + "url": "https://x.com/axelarcore" }, { "name": "github", @@ -66,4 +66,4 @@ "stablecoin", "wrapped" ] -} +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x76e63a3E7Ba1e2E61D3DA86a87479f983dE89a7E/info.json b/blockchains/polygon/assets/0x76e63a3E7Ba1e2E61D3DA86a87479f983dE89a7E/info.json index b0dec4f23dd69..e0f42495d3a84 100644 --- a/blockchains/polygon/assets/0x76e63a3E7Ba1e2E61D3DA86a87479f983dE89a7E/info.json +++ b/blockchains/polygon/assets/0x76e63a3E7Ba1e2E61D3DA86a87479f983dE89a7E/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/augury-finance/core" }, { - "name": "twitter", - "url": "https://twitter.com/AuguryFinance" + "name": "x", + "url": "https://x.com/AuguryFinance" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0x77A6f2e9A9E44fd5D5C3F9bE9E52831fC1C3C0A0/info.json b/blockchains/polygon/assets/0x77A6f2e9A9E44fd5D5C3F9bE9E52831fC1C3C0A0/info.json new file mode 100644 index 0000000000000..4dfab7684aa08 --- /dev/null +++ b/blockchains/polygon/assets/0x77A6f2e9A9E44fd5D5C3F9bE9E52831fC1C3C0A0/info.json @@ -0,0 +1,32 @@ +{ + "name": "World$tateCoin", + "type": "POLYGON", + "symbol": "W$C", + "decimals": 18, + "website": "https://wsc.theworldstate.io/", + "description": "Official crypto currency of The World State", + "explorer": "https://polygonscan.com/token/0x77A6f2e9A9E44fd5D5C3F9bE9E52831fC1C3C0A0", + "status": "active", + "id": "0x77A6f2e9A9E44fd5D5C3F9bE9E52831fC1C3C0A0", + "links": [ + { + "name": "x", + "url": "https://x.com/theworldstateio" + }, + { + "name": "telegram", + "url": "https://t.me/TheWorldState" + }, + { + "name": "youtube", + "url": "https://youtube.com/@the_world_state" + }, + { + "name": "discord", + "url": "https://discord.com/invite/theworldstate" + } + ], + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x77A6f2e9A9E44fd5D5C3F9bE9E52831fC1C3C0A0/logo.png b/blockchains/polygon/assets/0x77A6f2e9A9E44fd5D5C3F9bE9E52831fC1C3C0A0/logo.png new file mode 100644 index 0000000000000..b4844cb34fce0 Binary files /dev/null and b/blockchains/polygon/assets/0x77A6f2e9A9E44fd5D5C3F9bE9E52831fC1C3C0A0/logo.png differ diff --git a/blockchains/polygon/assets/0x77f56cf9365955486B12C4816992388eE8606f0E/info.json b/blockchains/polygon/assets/0x77f56cf9365955486B12C4816992388eE8606f0E/info.json new file mode 100644 index 0000000000000..f33cf3de7bcaf --- /dev/null +++ b/blockchains/polygon/assets/0x77f56cf9365955486B12C4816992388eE8606f0E/info.json @@ -0,0 +1,33 @@ +{ + "name": "Coin98", + "website": "https://coin98.com/", + "description": "Coin98 enables value transfer as easily as using the Internet by the innovation of Multi-chain Engine, Fully Automatic Liquidity and Space Gate, all in one Super Liquidity Aggregator.", + "explorer": "https://polygonscan.com/token/0x77f56cf9365955486b12c4816992388ee8606f0e", + "type": "POLYGON", + "symbol": "C98", + "decimals": 18, + "status": "active", + "id": "0x77f56cf9365955486B12C4816992388eE8606f0E", + "links": [ + { + "name": "x", + "url": "https://x.com/coin98_finance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/coin98/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coin98/" + }, + { + "name": "github", + "url": "https://github.com/coin98" + }, + { + "name": "telegram", + "url": "https://t.me/StackerVentures" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x77f56cf9365955486B12C4816992388eE8606f0E/logo.png b/blockchains/polygon/assets/0x77f56cf9365955486B12C4816992388eE8606f0E/logo.png new file mode 100644 index 0000000000000..adc079763a7c5 Binary files /dev/null and b/blockchains/polygon/assets/0x77f56cf9365955486B12C4816992388eE8606f0E/logo.png differ diff --git a/blockchains/polygon/assets/0x7Bb11E7f8b10E9e571E5d8Eace04735fDFB2358a/info.json b/blockchains/polygon/assets/0x7Bb11E7f8b10E9e571E5d8Eace04735fDFB2358a/info.json index 995db8d7c44f1..50a998db027ae 100644 --- a/blockchains/polygon/assets/0x7Bb11E7f8b10E9e571E5d8Eace04735fDFB2358a/info.json +++ b/blockchains/polygon/assets/0x7Bb11E7f8b10E9e571E5d8Eace04735fDFB2358a/info.json @@ -1,10 +1,10 @@ { - "name": "AVAX (Portal)", + "name": "Wrapped AVAX (Wormhole)", "type": "POLYGON", - "symbol": "AVAX", + "symbol": "WAVAX", "decimals": 18, "description": "Cross Chain Portal Bridged Token", - "website": "https://www.avax.network/", + "website": "https://portalbridge.com/", "explorer": "https://polygonscan.com/token/0x7Bb11E7f8b10E9e571E5d8Eace04735fDFB2358a", "status": "active", "id": "0x7Bb11E7f8b10E9e571E5d8Eace04735fDFB2358a", diff --git a/blockchains/polygon/assets/0x7BeBd226154E865954A87650FAefA8F485d36081/info.json b/blockchains/polygon/assets/0x7BeBd226154E865954A87650FAefA8F485d36081/info.json new file mode 100644 index 0000000000000..e6d20b43dda03 --- /dev/null +++ b/blockchains/polygon/assets/0x7BeBd226154E865954A87650FAefA8F485d36081/info.json @@ -0,0 +1,21 @@ +{ + "name": "ZIGChain", + "type": "POLYGON", + "symbol": "ZIG", + "decimals": 18, + "website": "https://zignaly.com/", + "description": "Zignaly is a social investment platform where users can follow winning strategies and participate in their returns.", + "explorer": "https://polygonscan.com/token/0x7bebd226154e865954a87650faefa8f485d36081", + "status": "active", + "id": "0x7BeBd226154E865954A87650FAefA8F485d36081", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zigcoin/" + }, + { + "name": "x", + "url": "https://x.com/zignaly" + } + ] +} diff --git a/blockchains/polygon/assets/0x7BeBd226154E865954A87650FAefA8F485d36081/logo.png b/blockchains/polygon/assets/0x7BeBd226154E865954A87650FAefA8F485d36081/logo.png new file mode 100644 index 0000000000000..e400b359e33b2 Binary files /dev/null and b/blockchains/polygon/assets/0x7BeBd226154E865954A87650FAefA8F485d36081/logo.png differ diff --git a/blockchains/polygon/assets/0x7FBc10850caE055B27039aF31bD258430e714c62/info.json b/blockchains/polygon/assets/0x7FBc10850caE055B27039aF31bD258430e714c62/info.json new file mode 100644 index 0000000000000..21843efa6126c --- /dev/null +++ b/blockchains/polygon/assets/0x7FBc10850caE055B27039aF31bD258430e714c62/info.json @@ -0,0 +1,25 @@ +{ + "name": "Unibright", + "website": "https://unibright.io", + "description": "Unibright offers a unified framework that aims to bring blockchain technology and smart contracts to mainstream usage.", + "explorer": "https://polygonscan.com/token/0x7fbc10850cae055b27039af31bd258430e714c62", + "type": "POLYGON", + "symbol": "UBT", + "decimals": 8, + "status": "active", + "id": "0x7FBc10850caE055B27039aF31bD258430e714c62", + "links": [ + { + "name": "x", + "url": "https://x.com/unibrightio" + }, + { + "name": "telegram", + "url": "https://t.me/unibright_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/unibright/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x7FBc10850caE055B27039aF31bD258430e714c62/logo.png b/blockchains/polygon/assets/0x7FBc10850caE055B27039aF31bD258430e714c62/logo.png new file mode 100644 index 0000000000000..e1b39b392b94b Binary files /dev/null and b/blockchains/polygon/assets/0x7FBc10850caE055B27039aF31bD258430e714c62/logo.png differ diff --git a/blockchains/polygon/assets/0x7c28F627eA3aEc8B882b51eb1935f66e5b875714/info.json b/blockchains/polygon/assets/0x7c28F627eA3aEc8B882b51eb1935f66e5b875714/info.json index 9632c1ed8d420..da7a9e6eb67e3 100644 --- a/blockchains/polygon/assets/0x7c28F627eA3aEc8B882b51eb1935f66e5b875714/info.json +++ b/blockchains/polygon/assets/0x7c28F627eA3aEc8B882b51eb1935f66e5b875714/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/murall-art" }, { - "name": "twitter", - "url": "https://twitter.com/MurAll_art" + "name": "x", + "url": "https://x.com/MurAll_art" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0x7e1AE068Ac4e0ffD7a84750c2FB093A0EAE9aEa2/info.json b/blockchains/polygon/assets/0x7e1AE068Ac4e0ffD7a84750c2FB093A0EAE9aEa2/info.json new file mode 100644 index 0000000000000..7ee48a6bd4f92 --- /dev/null +++ b/blockchains/polygon/assets/0x7e1AE068Ac4e0ffD7a84750c2FB093A0EAE9aEa2/info.json @@ -0,0 +1,24 @@ +{ + "name": "THE BULLS ARMY", + "type": "POLYGON", + "symbol": "TBA", + "decimals": 18, + "website": "https://thebullsarmy.com/", + "description": "The Bulls Army is a meme coin with no utility or inherent value, built on Polygon's Matic Network. Its purpose is to showcase the speed and affordability of the Matic blockchain to crypto users. Despite its lack of functionality, it serves as a playful representation of the bullish sentiment in the crypto market.", + "explorer": "https://polygonscan.com/token/0x7e1ae068ac4e0ffd7a84750c2fb093a0eae9aea2", + "status": "active", + "id": "0x7e1AE068Ac4e0ffD7a84750c2FB093A0EAE9aEa2", + "links": [ + { + "name": "x", + "url": "https://x.com/thebullsarmy1" + }, + { + "name": "telegram", + "url": "https://t.me/thebullsarmy1" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x7e1AE068Ac4e0ffD7a84750c2FB093A0EAE9aEa2/logo.png b/blockchains/polygon/assets/0x7e1AE068Ac4e0ffD7a84750c2FB093A0EAE9aEa2/logo.png new file mode 100644 index 0000000000000..2b38fde17d54e Binary files /dev/null and b/blockchains/polygon/assets/0x7e1AE068Ac4e0ffD7a84750c2FB093A0EAE9aEa2/logo.png differ diff --git a/blockchains/polygon/assets/0x7f67639Ffc8C93dD558d452b8920b28815638c44/info.json b/blockchains/polygon/assets/0x7f67639Ffc8C93dD558d452b8920b28815638c44/info.json new file mode 100644 index 0000000000000..3df39e5474455 --- /dev/null +++ b/blockchains/polygon/assets/0x7f67639Ffc8C93dD558d452b8920b28815638c44/info.json @@ -0,0 +1,40 @@ +{ + "name": "iMe Lab", + "type": "POLYGON", + "symbol": "LIME", + "decimals": 18, + "website": "https://imem.app/", + "description": "iMe is an all-in-one app with the Telegram-based messenger, non-custodial Crypto Wallet (Polygon, BNB Chain, Ethereum, more to come), DeFi tools, its own native utility token $LIME. The app allows sending crypto in a few clicks right on Telegram, using Binance functionality, tipping Telegram resources with crypto, having access to NFT / Web 3.0, and more. iMe is available on Google Play and App Store. iMe is on a mission to make DeFi more accessible to a wider population.", + "explorer": "https://polygonscan.com/token/0x7f67639ffc8c93dd558d452b8920b28815638c44", + "status": "active", + "id": "0x7f67639Ffc8C93dD558d452b8920b28815638c44", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ime-lab/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/ime-lab" + }, + { + "name": "x", + "url": "https://x.com/ImePlatform" + }, + { + "name": "facebook", + "url": "https://facebook.com/imeplatform" + }, + { + "name": "discord", + "url": "https://discord.com/GrYcwSADxy" + }, + { + "name": "telegram", + "url": "https://t.me/iMeLime" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x7f67639Ffc8C93dD558d452b8920b28815638c44/logo.png b/blockchains/polygon/assets/0x7f67639Ffc8C93dD558d452b8920b28815638c44/logo.png new file mode 100644 index 0000000000000..533446f22fc9b Binary files /dev/null and b/blockchains/polygon/assets/0x7f67639Ffc8C93dD558d452b8920b28815638c44/logo.png differ diff --git a/blockchains/polygon/assets/0x82617aA52dddf5Ed9Bb7B370ED777b3182A30fd1/info.json b/blockchains/polygon/assets/0x82617aA52dddf5Ed9Bb7B370ED777b3182A30fd1/info.json index f40132e33bb08..760dc9ccf5536 100644 --- a/blockchains/polygon/assets/0x82617aA52dddf5Ed9Bb7B370ED777b3182A30fd1/info.json +++ b/blockchains/polygon/assets/0x82617aA52dddf5Ed9Bb7B370ED777b3182A30fd1/info.json @@ -1,5 +1,5 @@ { - "name": "Yield Guild Games (PoS)", + "name": "Yield Guild Games", "website": "https://yieldguild.io/", "description": "Yield Guild Games (YGG) is a decentralized autonomous organization (DAO) for investing in non fungible tokens (NFTs) used in virtual worlds and blockchain-based games. The organization’s mission is to create the biggest virtual world economy, optimizing its community-owned assets for maximum utility and sharing its profits with its token holders.", "explorer": "https://polygonscan.com/token/0x82617aA52dddf5Ed9Bb7B370ED777b3182A30fd1", @@ -22,8 +22,8 @@ "url": "https://youtube.com/yieldguildgames" }, { - "name": "twitter", - "url": "https://twitter.com/YieldGuild" + "name": "x", + "url": "https://x.com/YieldGuild" }, { "name": "facebook", diff --git a/blockchains/polygon/assets/0x831753DD7087CaC61aB5644b308642cc1c33Dc13/info.json b/blockchains/polygon/assets/0x831753DD7087CaC61aB5644b308642cc1c33Dc13/info.json index ecbfd4e0514a5..c7b637b6631f0 100644 --- a/blockchains/polygon/assets/0x831753DD7087CaC61aB5644b308642cc1c33Dc13/info.json +++ b/blockchains/polygon/assets/0x831753DD7087CaC61aB5644b308642cc1c33Dc13/info.json @@ -6,7 +6,7 @@ "type": "POLYGON", "symbol": "QUICK", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x831753DD7087CaC61aB5644b308642cc1c33Dc13", "links": [ { @@ -14,8 +14,8 @@ "url": "https://github.com/QuickSwap" }, { - "name": "twitter", - "url": "https://twitter.com/QuickswapDEX" + "name": "x", + "url": "https://x.com/QuickswapDEX" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0x838C9634dE6590B96aEadC4Bc6DB5c28Fd17E3C2/info.json b/blockchains/polygon/assets/0x838C9634dE6590B96aEadC4Bc6DB5c28Fd17E3C2/info.json new file mode 100644 index 0000000000000..216f9bf64ad8a --- /dev/null +++ b/blockchains/polygon/assets/0x838C9634dE6590B96aEadC4Bc6DB5c28Fd17E3C2/info.json @@ -0,0 +1,17 @@ +{ + "name": "Matr1x Fire", + "type": "POLYGON", + "symbol": "FIRE", + "decimals": 18, + "website": "https://matr1x.io", + "description": "Matri1x is a global Web3 entertainment platform that aims to blend multi-episode games, NFT art, Esports, online literature, and community engagement", + "explorer": "https://polygonscan.com/token/0x838C9634dE6590B96aEadC4Bc6DB5c28Fd17E3C2", + "status": "active", + "id": "0x838C9634dE6590B96aEadC4Bc6DB5c28Fd17E3C2", + "links": [ + { + "name": "x", + "url": "https://x.com/Matr1xOfficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x838C9634dE6590B96aEadC4Bc6DB5c28Fd17E3C2/logo.png b/blockchains/polygon/assets/0x838C9634dE6590B96aEadC4Bc6DB5c28Fd17E3C2/logo.png new file mode 100644 index 0000000000000..0fc151d66b5c2 Binary files /dev/null and b/blockchains/polygon/assets/0x838C9634dE6590B96aEadC4Bc6DB5c28Fd17E3C2/logo.png differ diff --git a/blockchains/polygon/assets/0x874e178A2f3f3F9d34db862453Cd756E7eAb0381/info.json b/blockchains/polygon/assets/0x874e178A2f3f3F9d34db862453Cd756E7eAb0381/info.json index cadd42c7a9745..3dac8d7f690e2 100644 --- a/blockchains/polygon/assets/0x874e178A2f3f3F9d34db862453Cd756E7eAb0381/info.json +++ b/blockchains/polygon/assets/0x874e178A2f3f3F9d34db862453Cd756E7eAb0381/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/gravity-finance/" }, { - "name": "twitter", - "url": "https://twitter.com/Gravity_Finance" + "name": "x", + "url": "https://x.com/Gravity_Finance" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0x87d6F8eDECcbCcA766D2880D19b2C3777D322C22/info.json b/blockchains/polygon/assets/0x87d6F8eDECcbCcA766D2880D19b2C3777D322C22/info.json new file mode 100644 index 0000000000000..313596436c148 --- /dev/null +++ b/blockchains/polygon/assets/0x87d6F8eDECcbCcA766D2880D19b2C3777D322C22/info.json @@ -0,0 +1,21 @@ +{ + "name": "Miracleplay", + "type": "POLYGON", + "symbol": "MPT", + "decimals": 18, + "website": "https://miracleplay.gg/", + "description": "Miracleplay is a revolutionary platform offering profitable tournament gaming, committed to creating a democratic, transparent, and secure environment for players.", + "explorer": "https://polygonscan.com/token/0x87d6F8eDECcbCcA766D2880D19b2C3777D322C22", + "status": "active", + "id": "0x87d6F8eDECcbCcA766D2880D19b2C3777D322C22", + "links": [ + { + "name": "x", + "url": "https://x.com/miracleplaygg" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/miracle-play/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x87d6F8eDECcbCcA766D2880D19b2C3777D322C22/logo.png b/blockchains/polygon/assets/0x87d6F8eDECcbCcA766D2880D19b2C3777D322C22/logo.png new file mode 100644 index 0000000000000..94b0d0601e0b9 Binary files /dev/null and b/blockchains/polygon/assets/0x87d6F8eDECcbCcA766D2880D19b2C3777D322C22/logo.png differ diff --git a/blockchains/polygon/assets/0x8A953CfE442c5E8855cc6c61b1293FA648BAE472/info.json b/blockchains/polygon/assets/0x8A953CfE442c5E8855cc6c61b1293FA648BAE472/info.json index 4f8bf61daaba2..2eb7e8e6372b0 100644 --- a/blockchains/polygon/assets/0x8A953CfE442c5E8855cc6c61b1293FA648BAE472/info.json +++ b/blockchains/polygon/assets/0x8A953CfE442c5E8855cc6c61b1293FA648BAE472/info.json @@ -10,8 +10,8 @@ "id": "0x8A953CfE442c5E8855cc6c61b1293FA648BAE472", "links": [ { - "name": "twitter", - "url": "https://twitter.com/polydoge" + "name": "x", + "url": "https://x.com/polydoge" }, { "name": "github", diff --git a/blockchains/polygon/assets/0x8B4caE9Af23EB752515A88497e678e9aDff1753d/info.json b/blockchains/polygon/assets/0x8B4caE9Af23EB752515A88497e678e9aDff1753d/info.json new file mode 100644 index 0000000000000..efe8f171db9ae --- /dev/null +++ b/blockchains/polygon/assets/0x8B4caE9Af23EB752515A88497e678e9aDff1753d/info.json @@ -0,0 +1,41 @@ +{ + "name": "DOVU", + "website": "https://dovu.earth/", + "description": "DOVU is a technology infrastructure provider, powering trusted environmental and carbon digital markets by providing market integrity. The DOVU token serves as the protocol’s utility token, enabling holders to participate and create their own environmental audit trail ecosystems. Token holders can stake their DOVU to earn multiplier rewards, aligning long-term incentives with the protocol’s mission of building reliable carbon markets.", + "explorer": "https://polygonscan.com/token/0x8B4caE9Af23EB752515A88497e678e9aDff1753d", + "type": "POLYGON", + "symbol": "DOVU", + "decimals": 8, + "status": "active", + "id": "0x8B4caE9Af23EB752515A88497e678e9aDff1753d", + "tags": [ + "wrapped", + "staking" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/dovuofficial/" + }, + { + "name": "x", + "url": "https://x.com/dovuofficial" + }, + { + "name": "blog", + "url": "https://dovu.earth/en/news/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dovu-earth/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dovu" + }, + { + "name": "youtube", + "url": "https://youtube.com/@DOVUearth" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x8B4caE9Af23EB752515A88497e678e9aDff1753d/logo.png b/blockchains/polygon/assets/0x8B4caE9Af23EB752515A88497e678e9aDff1753d/logo.png new file mode 100644 index 0000000000000..cb6c490323d55 Binary files /dev/null and b/blockchains/polygon/assets/0x8B4caE9Af23EB752515A88497e678e9aDff1753d/logo.png differ diff --git a/blockchains/polygon/assets/0x8C92e38eCA8210f4fcBf17F0951b198Dd7668292/info.json b/blockchains/polygon/assets/0x8C92e38eCA8210f4fcBf17F0951b198Dd7668292/info.json index 5e43c129bd5eb..3236532d0929f 100644 --- a/blockchains/polygon/assets/0x8C92e38eCA8210f4fcBf17F0951b198Dd7668292/info.json +++ b/blockchains/polygon/assets/0x8C92e38eCA8210f4fcBf17F0951b198Dd7668292/info.json @@ -10,8 +10,8 @@ "id": "0x8C92e38eCA8210f4fcBf17F0951b198Dd7668292", "links": [ { - "name": "twitter", - "url": "https://twitter.com/dHedgeOrg" + "name": "x", + "url": "https://x.com/dHedgeOrg" }, { "name": "github", diff --git a/blockchains/polygon/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/info.json b/blockchains/polygon/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/info.json new file mode 100644 index 0000000000000..ddbf6648de0e0 --- /dev/null +++ b/blockchains/polygon/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/info.json @@ -0,0 +1,21 @@ +{ + "name": "VANRY", + "symbol": "VANRY", + "type": "POLYGON", + "decimals": 18, + "description": "VANRY is the official token of the VANAR blockchain. Vanar offers a carbon-neutral, high-speed and low-cost L1 chain designed for entertainment and mainstream.", + "website": "https://vanarchain.com/", + "explorer": "https://polygonscan.com/token/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624", + "status": "active", + "id": "0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624", + "links": [ + { + "name": "x", + "url": "https://x.com/vanarchain" + }, + { + "name": "telegram", + "url": "https://t.me/vanarchain" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/logo.png b/blockchains/polygon/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/logo.png new file mode 100644 index 0000000000000..e1b3a7d15902c Binary files /dev/null and b/blockchains/polygon/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/logo.png differ diff --git a/blockchains/polygon/assets/0x8EB187a55B701F8990539bF219b7921d5D3BdadD/info.json b/blockchains/polygon/assets/0x8EB187a55B701F8990539bF219b7921d5D3BdadD/info.json new file mode 100644 index 0000000000000..f81eaf3f93134 --- /dev/null +++ b/blockchains/polygon/assets/0x8EB187a55B701F8990539bF219b7921d5D3BdadD/info.json @@ -0,0 +1,21 @@ +{ + "name": "Realm ID", + "type": "POLYGON", + "symbol": "RID", + "decimals": 18, + "website": "https://www.mocaverse.xyz/moca-id", + "description": "Moca ID is an on-chain DID (decentralized identity) that gives you the identity to travel among the meta layer of Animoca Brands' network of and beyond 400+ portfolio companies, alongside our ever-growing partner ecosystem.", + "explorer": "https://polygonscan.com/token/0x8eb187a55b701f8990539bf219b7921d5d3bdadd", + "status": "active", + "id": "0x8EB187a55B701F8990539bF219b7921d5D3BdadD", + "links": [ + { + "name": "x", + "url": "https://x.com/MocaverseNFT" + }, + { + "name": "discord", + "url": "https://discord.com/invite/MocaverseNFT" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x8EB187a55B701F8990539bF219b7921d5D3BdadD/logo.png b/blockchains/polygon/assets/0x8EB187a55B701F8990539bF219b7921d5D3BdadD/logo.png new file mode 100644 index 0000000000000..f951984996419 Binary files /dev/null and b/blockchains/polygon/assets/0x8EB187a55B701F8990539bF219b7921d5D3BdadD/logo.png differ diff --git a/blockchains/polygon/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/info.json b/blockchains/polygon/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/info.json new file mode 100644 index 0000000000000..af707892487d1 --- /dev/null +++ b/blockchains/polygon/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/info.json @@ -0,0 +1,24 @@ +{ + "name": "Colombian Peso", + "website": "https://www.ripio.com/es/criptos/stablecoins-locales", + "description": "wCOP is a fully collateralized stablecoin pegged 1:1 to the Colombian Peso (COP). Issued and governed by a Ripio subsidiary, it brings COP on-chain so Colombians and global users can transact, save, and build on decentralized networks in their local currency.", + "explorer": "https://polygonscan.com/token/0x8a1D45e102e886510e891d2Ec656a708991e2D76", + "type": "POLYGON", + "symbol": "wCOP", + "decimals": 18, + "status": "active", + "id": "0x8a1D45e102e886510e891d2Ec656a708991e2D76", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/RipioApp" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/colombian-peso" + } + ] +} diff --git a/blockchains/polygon/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/logo.png b/blockchains/polygon/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/logo.png new file mode 100644 index 0000000000000..c7f511bbf443a Binary files /dev/null and b/blockchains/polygon/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/logo.png differ diff --git a/blockchains/polygon/assets/0x8bdC1239840D4a0DB234F2E7D65dF83164D18e49/info.json b/blockchains/polygon/assets/0x8bdC1239840D4a0DB234F2E7D65dF83164D18e49/info.json new file mode 100644 index 0000000000000..7fefb24488aff --- /dev/null +++ b/blockchains/polygon/assets/0x8bdC1239840D4a0DB234F2E7D65dF83164D18e49/info.json @@ -0,0 +1,17 @@ +{ + "name": "HARD", + "type": "POLYGON", + "symbol": "HARD", + "decimals": 6, + "website": "https://app.kava.io", + "description": "Kava Lend is a decentralized money market built on the Kava Platform that enables the lending and borrowing of cross-chain assets", + "explorer": "https://polygonscan.com/token/0x8bdC1239840D4a0DB234F2E7D65dF83164D18e49", + "status": "active", + "id": "0x8bdC1239840D4a0DB234F2E7D65dF83164D18e49", + "links": [ + { + "name": "x", + "url": "https://x.com/hard_protocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x8bdC1239840D4a0DB234F2E7D65dF83164D18e49/logo.png b/blockchains/polygon/assets/0x8bdC1239840D4a0DB234F2E7D65dF83164D18e49/logo.png new file mode 100644 index 0000000000000..918d274f22dfe Binary files /dev/null and b/blockchains/polygon/assets/0x8bdC1239840D4a0DB234F2E7D65dF83164D18e49/logo.png differ diff --git a/blockchains/polygon/assets/0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19/info.json b/blockchains/polygon/assets/0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19/info.json index d92c74c22e7d8..76f1b1892d750 100644 --- a/blockchains/polygon/assets/0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19/info.json +++ b/blockchains/polygon/assets/0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19/info.json @@ -21,8 +21,8 @@ "url": "https://discord.com/invite/GCHkdY6fnF" }, { - "name": "twitter", - "url": "https://twitter.com/Pleasure_coin" + "name": "x", + "url": "https://x.com/Pleasure_coin" }, { "name": "coinmarketcap", @@ -33,4 +33,4 @@ "url": "https://coingecko.com/coins/pleasure-coin" } ] -} +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x8f18dC399594b451EdA8c5da02d0563c0b2d0f16/info.json b/blockchains/polygon/assets/0x8f18dC399594b451EdA8c5da02d0563c0b2d0f16/info.json index 381c4ccfa41b2..5de7bd2140443 100644 --- a/blockchains/polygon/assets/0x8f18dC399594b451EdA8c5da02d0563c0b2d0f16/info.json +++ b/blockchains/polygon/assets/0x8f18dC399594b451EdA8c5da02d0563c0b2d0f16/info.json @@ -17,8 +17,8 @@ "url": "https://coingecko.com/en/coins/moonwolf-io/" }, { - "name": "twitter", - "url": "https://twitter.com/moonwolf_io" + "name": "x", + "url": "https://x.com/moonwolf_io" }, { "name": "reddit", diff --git a/blockchains/polygon/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/info.json b/blockchains/polygon/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/info.json index 34f4e1f6962aa..e954d6d12bfaf 100644 --- a/blockchains/polygon/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/info.json +++ b/blockchains/polygon/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/cherrynetwork" }, { - "name": "twitter", - "url": "https://twitter.com/cherry_network" + "name": "x", + "url": "https://x.com/cherry_network" }, { "name": "telegram", @@ -31,7 +31,6 @@ } ], "tags": [ - "staking-native", "wrapped" ] -} +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063/info.json b/blockchains/polygon/assets/0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063/info.json index 9e680956309ad..baf4a97733b41 100644 --- a/blockchains/polygon/assets/0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063/info.json +++ b/blockchains/polygon/assets/0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063/info.json @@ -1,5 +1,5 @@ { - "name": "(PoS) Dai Stablecoin", + "name": "Dai", "website": "http://makerdao.com", "description": "Dai is a stable cryptocurrency supported by Maker (MKR). To ensure price stability, Dai minimizes the price volatility against the US dollar, through an incentive structure for its participants.", "explorer": "https://polygonscan.com/token/0x8f3cf7ad23cd3cadbd9735aff958023239c6a063", @@ -11,8 +11,8 @@ "id": "0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MakerDAO" + "name": "x", + "url": "https://x.com/MakerDAO" }, { "name": "reddit", diff --git a/blockchains/polygon/assets/0x9085B4d52c3e0B8B6F9AF6213E85A433c7D76f19/info.json b/blockchains/polygon/assets/0x9085B4d52c3e0B8B6F9AF6213E85A433c7D76f19/info.json index aa8d5e748b7d3..be8580a04c693 100644 --- a/blockchains/polygon/assets/0x9085B4d52c3e0B8B6F9AF6213E85A433c7D76f19/info.json +++ b/blockchains/polygon/assets/0x9085B4d52c3e0B8B6F9AF6213E85A433c7D76f19/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/OWLDAOio" + "name": "x", + "url": "https://x.com/OWLDAOio" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0x9719d867A500Ef117cC201206B8ab51e794d3F82/info.json b/blockchains/polygon/assets/0x9719d867A500Ef117cC201206B8ab51e794d3F82/info.json index 0edd7d272aa63..70a66d994340b 100644 --- a/blockchains/polygon/assets/0x9719d867A500Ef117cC201206B8ab51e794d3F82/info.json +++ b/blockchains/polygon/assets/0x9719d867A500Ef117cC201206B8ab51e794d3F82/info.json @@ -14,8 +14,8 @@ "url": "https://discord.com/invite/NPwnWB6" }, { - "name": "twitter", - "url": "https://twitter.com/aavegotchi" + "name": "x", + "url": "https://x.com/aavegotchi" }, { "name": "coingecko", diff --git a/blockchains/polygon/assets/0x98965474EcBeC2F532F1f780ee37b0b05F77Ca55/info.json b/blockchains/polygon/assets/0x98965474EcBeC2F532F1f780ee37b0b05F77Ca55/info.json new file mode 100644 index 0000000000000..d6c5f9d8c0156 --- /dev/null +++ b/blockchains/polygon/assets/0x98965474EcBeC2F532F1f780ee37b0b05F77Ca55/info.json @@ -0,0 +1,37 @@ +{ + "name": "SUPER TRUST", + "type": "POLYGON", + "symbol": "SUT", + "decimals": 18, + "description": "We aim to increase the global user base of SUPERTRUST's real economy platform ecosystem and expand the real-world fixed purchase tax of SUT as a payment method.", + "website": "https://supertrust.club", + "explorer": "https://polygonscan.com/token/0x98965474ecbec2f532f1f780ee37b0b05f77ca55", + "status": "active", + "id": "0x98965474EcBeC2F532F1f780ee37b0b05F77Ca55", + "links": [ + { + "name": "whitepaper", + "url": "https://cdn.supertrust.club/assets/whitepapers/SUPERTRUST-WHITEPAPER-ENG.pdf" + }, + { + "name": "medium", + "url": "https://medium.com/@supertrust_official" + }, + { + "name": "github", + "url": "https://github.com/supertrust" + }, + { + "name": "telegram", + "url": "https://t.me/supertrust_official" + }, + { + "name": "x", + "url": "https://x.com/SuperTrust_SUT" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/supertrust/" + } + ] +} diff --git a/blockchains/polygon/assets/0x98965474EcBeC2F532F1f780ee37b0b05F77Ca55/logo.png b/blockchains/polygon/assets/0x98965474EcBeC2F532F1f780ee37b0b05F77Ca55/logo.png new file mode 100644 index 0000000000000..7e4c1606821f8 Binary files /dev/null and b/blockchains/polygon/assets/0x98965474EcBeC2F532F1f780ee37b0b05F77Ca55/logo.png differ diff --git a/blockchains/polygon/assets/0x9A06Db14D639796B25A6ceC6A1bf614fd98815EC/info.json b/blockchains/polygon/assets/0x9A06Db14D639796B25A6ceC6A1bf614fd98815EC/info.json index a32407426cbd7..acc4eefbc09ff 100644 --- a/blockchains/polygon/assets/0x9A06Db14D639796B25A6ceC6A1bf614fd98815EC/info.json +++ b/blockchains/polygon/assets/0x9A06Db14D639796B25A6ceC6A1bf614fd98815EC/info.json @@ -54,8 +54,8 @@ "url": "https://t.me/pantherprotocolann" }, { - "name": "twitter", - "url": "https://twitter.com/ZkPanther" + "name": "x", + "url": "https://x.com/ZkPanther" }, { "name": "whitepaper", @@ -66,4 +66,4 @@ "privacy", "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/info.json b/blockchains/polygon/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/info.json new file mode 100644 index 0000000000000..8b0cedede5bef --- /dev/null +++ b/blockchains/polygon/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/info.json @@ -0,0 +1,41 @@ +{ + "name": "BUSD", + "website": "https://paxos.com/busd", + "description": "BNB pegged BUSD is a token issued by Binance on Smart Chain; its price is pegged to BUSD (BUSD ERC20) at a ratio of 1:1.", + "explorer": "https://polygonscan.com/token/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39", + "research": "https://research.binance.com/en/projects/binance-usd", + "type": "POLYGON", + "symbol": "BUSD", + "decimals": 18, + "status": "active", + "id": "0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39", + "tags": [ + "binance-peg" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/binance-chain/" + }, + { + "name": "x", + "url": "https://x.com/binance_dex" + }, + { + "name": "blog", + "url": "https://binance.org/en/blog/" + }, + { + "name": "telegram", + "url": "https://t.me/BinanceDEXchange" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/binance-usd/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/binance-usd/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/logo.png b/blockchains/polygon/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/logo.png new file mode 100644 index 0000000000000..76d02e370b6d6 Binary files /dev/null and b/blockchains/polygon/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/logo.png differ diff --git a/blockchains/polygon/assets/0x9EECD634c7a934F752aF0EB90DdA9Ecc262F199F/info.json b/blockchains/polygon/assets/0x9EECD634c7a934F752aF0EB90DdA9Ecc262F199F/info.json index 480bc7e02380b..b493a74514f98 100644 --- a/blockchains/polygon/assets/0x9EECD634c7a934F752aF0EB90DdA9Ecc262F199F/info.json +++ b/blockchains/polygon/assets/0x9EECD634c7a934F752aF0EB90DdA9Ecc262F199F/info.json @@ -10,8 +10,8 @@ "id": "0x9EECD634c7a934F752aF0EB90DdA9Ecc262F199F", "links": [ { - "name": "twitter", - "url": "https://twitter.com/UNCX_token" + "name": "x", + "url": "https://x.com/UNCX_token" }, { "name": "medium", diff --git a/blockchains/polygon/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json b/blockchains/polygon/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json index 6d7953dda1d18..f96e28493f983 100644 --- a/blockchains/polygon/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json +++ b/blockchains/polygon/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json @@ -10,8 +10,8 @@ "id": "0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/multichainorg" + "name": "x", + "url": "https://x.com/multichainorg" }, { "name": "github", diff --git a/blockchains/polygon/assets/0x9a71012B13CA4d3D0Cdc72A177DF3ef03b0E76A3/info.json b/blockchains/polygon/assets/0x9a71012B13CA4d3D0Cdc72A177DF3ef03b0E76A3/info.json index 242d971175c46..df21414b8370c 100644 --- a/blockchains/polygon/assets/0x9a71012B13CA4d3D0Cdc72A177DF3ef03b0E76A3/info.json +++ b/blockchains/polygon/assets/0x9a71012B13CA4d3D0Cdc72A177DF3ef03b0E76A3/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/BalancerLabs" + "name": "x", + "url": "https://x.com/BalancerLabs" }, { "name": "github", diff --git a/blockchains/polygon/assets/0x9aF3b7DC29D3C4B1A5731408B6A9656fA7aC3b72/info.json b/blockchains/polygon/assets/0x9aF3b7DC29D3C4B1A5731408B6A9656fA7aC3b72/info.json index 3e532d14313b2..3cffd61598fef 100644 --- a/blockchains/polygon/assets/0x9aF3b7DC29D3C4B1A5731408B6A9656fA7aC3b72/info.json +++ b/blockchains/polygon/assets/0x9aF3b7DC29D3C4B1A5731408B6A9656fA7aC3b72/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/PolyQuity/contracts" }, { - "name": "twitter", - "url": "https://twitter.com/polyquity_org" + "name": "x", + "url": "https://x.com/polyquity_org" }, { "name": "coingecko", diff --git a/blockchains/polygon/assets/0x9c891326Fd8b1a713974f73bb604677E1E63396D/info.json b/blockchains/polygon/assets/0x9c891326Fd8b1a713974f73bb604677E1E63396D/info.json index 4871e845d9167..f00149de33424 100644 --- a/blockchains/polygon/assets/0x9c891326Fd8b1a713974f73bb604677E1E63396D/info.json +++ b/blockchains/polygon/assets/0x9c891326Fd8b1a713974f73bb604677E1E63396D/info.json @@ -10,8 +10,8 @@ "id": "0x9c891326Fd8b1a713974f73bb604677E1E63396D", "links": [ { - "name": "twitter", - "url": "https://twitter.com/islamicoin" + "name": "x", + "url": "https://x.com/islamicoin" }, { "name": "github", diff --git a/blockchains/polygon/assets/0x9cd6746665D9557e1B9a775819625711d0693439/info.json b/blockchains/polygon/assets/0x9cd6746665D9557e1B9a775819625711d0693439/info.json index 4b4db2ea997b5..190a6c0ced772 100644 --- a/blockchains/polygon/assets/0x9cd6746665D9557e1B9a775819625711d0693439/info.json +++ b/blockchains/polygon/assets/0x9cd6746665D9557e1B9a775819625711d0693439/info.json @@ -1,5 +1,5 @@ { - "name": "LUNA (Portal)", + "name": "Terra Classic (Portal)", "type": "POLYGON", "symbol": "LUNA", "decimals": 6, diff --git a/blockchains/polygon/assets/0xA2bb7A68c46b53f6BbF6cC91C865Ae247A82E99B/info.json b/blockchains/polygon/assets/0xA2bb7A68c46b53f6BbF6cC91C865Ae247A82E99B/info.json new file mode 100644 index 0000000000000..52e8ed29473a9 --- /dev/null +++ b/blockchains/polygon/assets/0xA2bb7A68c46b53f6BbF6cC91C865Ae247A82E99B/info.json @@ -0,0 +1,40 @@ +{ + "name": "Flux", + "type": "POLYGON", + "symbol": "FLUX", + "decimals": 8, + "website": "https://runonflux.io/", + "description": "Flux is the cryptocurrency powering the Flux Ecosystem, including a massive decentralized computational network. Flux gives users both institutional and private control over their cloud infrastructure in a decentralized manner.", + "explorer": "https://polygonscan.com/token/0xA2bb7A68c46b53f6BbF6cC91C865Ae247A82E99B", + "status": "active", + "id": "0xA2bb7A68c46b53f6BbF6cC91C865Ae247A82E99B", + "links": [ + { + "name": "x", + "url": "https://x.com/RunOnFlux" + }, + { + "name": "github", + "url": "https://github.com/runonflux" + }, + { + "name": "facebook", + "url": "https://facebook.com/ruonflux" + }, + { + "name": "telegram", + "url": "https://t.me/runonflux" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zel/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/zelcash/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xA2bb7A68c46b53f6BbF6cC91C865Ae247A82E99B/logo.png b/blockchains/polygon/assets/0xA2bb7A68c46b53f6BbF6cC91C865Ae247A82E99B/logo.png new file mode 100644 index 0000000000000..9d7b0435acaac Binary files /dev/null and b/blockchains/polygon/assets/0xA2bb7A68c46b53f6BbF6cC91C865Ae247A82E99B/logo.png differ diff --git a/blockchains/polygon/assets/0xA3c322Ad15218fBFAEd26bA7f616249f7705D945/info.json b/blockchains/polygon/assets/0xA3c322Ad15218fBFAEd26bA7f616249f7705D945/info.json index 74f8ac08b6c77..574e653420476 100644 --- a/blockchains/polygon/assets/0xA3c322Ad15218fBFAEd26bA7f616249f7705D945/info.json +++ b/blockchains/polygon/assets/0xA3c322Ad15218fBFAEd26bA7f616249f7705D945/info.json @@ -10,8 +10,8 @@ "id": "0xA3c322Ad15218fBFAEd26bA7f616249f7705D945", "links": [ { - "name": "twitter", - "url": "https://twitter.com/genso_meta" + "name": "x", + "url": "https://x.com/genso_meta" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0xA3f751662e282E83EC3cBc387d225Ca56dD63D3A/info.json b/blockchains/polygon/assets/0xA3f751662e282E83EC3cBc387d225Ca56dD63D3A/info.json new file mode 100644 index 0000000000000..564251dbf2abd --- /dev/null +++ b/blockchains/polygon/assets/0xA3f751662e282E83EC3cBc387d225Ca56dD63D3A/info.json @@ -0,0 +1,44 @@ +{ + "name": "Ape and Pepe", + "type": "POLYGON", + "symbol": "APEPE", + "decimals": 18, + "website": "https://apepe.lol/", + "description": "A new meme that combines APE and PEPE to symbolize small investors. The APEPE community aims to bring together small investors and become a force to be reckoned with. APEPE's symbol, the community, is worth noting.", + "explorer": "https://polygonscan.com/token/0xA3f751662e282E83EC3cBc387d225Ca56dD63D3A", + "status": "active", + "id": "0xA3f751662e282E83EC3cBc387d225Ca56dD63D3A", + "links": [ + { + "name": "x", + "url": "https://x.com/APEPE_MEME" + }, + { + "name": "github", + "url": "https://github.com/" + }, + { + "name": "telegram", + "url": "https://t.me/APEPE_Official" + }, + { + "name": "telegram_news", + "url": "https://t.me/apeandpepe" + }, + { + "name": "whitepaper", + "url": "https://apepe.gitbook.io/ape-and-pepe" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ape-and-pepe/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xA3f751662e282E83EC3cBc387d225Ca56dD63D3A/logo.png b/blockchains/polygon/assets/0xA3f751662e282E83EC3cBc387d225Ca56dD63D3A/logo.png new file mode 100644 index 0000000000000..7f1a87d215926 Binary files /dev/null and b/blockchains/polygon/assets/0xA3f751662e282E83EC3cBc387d225Ca56dD63D3A/logo.png differ diff --git a/blockchains/polygon/assets/0xA3fB72CBF2e07dC1b34AEA569Ed40755fd978BD8/info.json b/blockchains/polygon/assets/0xA3fB72CBF2e07dC1b34AEA569Ed40755fd978BD8/info.json new file mode 100644 index 0000000000000..ad94971c83966 --- /dev/null +++ b/blockchains/polygon/assets/0xA3fB72CBF2e07dC1b34AEA569Ed40755fd978BD8/info.json @@ -0,0 +1,36 @@ +{ + "name": "Opex", + "type": "POLYGON", + "symbol": "OPX", + "decimals": 6, + "website": "https://opxtoken.com", + "description": "Opex OPX is a stablecoin, a digital asset pegged to the Kyrgyz som (KGS), and is designed to facilitate payment transactions, as well as to protect against the volatility common to many other cryptocurrencies. ", + "explorer": "https://polygonscan.com/token/0xa3fb72cbf2e07dc1b34aea569ed40755fd978bd8", + "status": "active", + "id": "0xA3fB72CBF2e07dC1b34AEA569Ed40755fd978BD8", + "links": [ + { + "name": "x", + "url": "https://x.com/Opxtoken" + }, + { + "name": "telegram", + "url": "https://t.me/opextokencom" + }, + { + "name": "github", + "url": "https://github.com/OPXToken/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/opex/" + }, + { + "name": "medium", + "url": "https://medium.com/@opxtoken" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xA3fB72CBF2e07dC1b34AEA569Ed40755fd978BD8/logo.png b/blockchains/polygon/assets/0xA3fB72CBF2e07dC1b34AEA569Ed40755fd978BD8/logo.png new file mode 100644 index 0000000000000..1797500b83217 Binary files /dev/null and b/blockchains/polygon/assets/0xA3fB72CBF2e07dC1b34AEA569Ed40755fd978BD8/logo.png differ diff --git a/blockchains/polygon/assets/0xACe7eb41D6BAd44907cdA84A122F052c74cB7826/info.json b/blockchains/polygon/assets/0xACe7eb41D6BAd44907cdA84A122F052c74cB7826/info.json new file mode 100644 index 0000000000000..b2c2f2b8721b5 --- /dev/null +++ b/blockchains/polygon/assets/0xACe7eb41D6BAd44907cdA84A122F052c74cB7826/info.json @@ -0,0 +1,17 @@ +{ + "name": "GoldPro", + "type": "POLYGON", + "symbol": "GPRO", + "decimals": 18, + "website": "https://www.ipmb.com/", + "description": "IPMB is transforming gold ownership through tokenization, bringing the lowest-cost access to gold globally", + "explorer": "https://polygonscan.com/token/0xace7eb41d6bad44907cda84a122f052c74cb7826", + "status": "active", + "id": "0xACe7eb41D6BAd44907cdA84A122F052c74cB7826", + "links": [ + { + "name": "x", + "url": "https://x.com/IpmbOfficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xACe7eb41D6BAd44907cdA84A122F052c74cB7826/logo.png b/blockchains/polygon/assets/0xACe7eb41D6BAd44907cdA84A122F052c74cB7826/logo.png new file mode 100644 index 0000000000000..306714a97b0c1 Binary files /dev/null and b/blockchains/polygon/assets/0xACe7eb41D6BAd44907cdA84A122F052c74cB7826/logo.png differ diff --git a/blockchains/polygon/assets/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9/info.json b/blockchains/polygon/assets/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9/info.json new file mode 100644 index 0000000000000..207e0a6eda616 --- /dev/null +++ b/blockchains/polygon/assets/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9/info.json @@ -0,0 +1,75 @@ +{ + "name": "Vita Inu", + "type": "POLYGON", + "symbol": "VINU", + "decimals": 18, + "website": "https://vitainu.org", + "description": "Vita Inu is the world’s first fast and feeless dog coin with high TPS and native smart contracts. VINU is the powerful multi-chain currency and governance token of the Vinuverse. The VINU community believes cryptocurrencies should be moved around freely, securely, and efficiently.", + "explorer": "https://polygonscan.com/token/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9", + "status": "active", + "id": "0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9", + "links": [ + { + "name": "x", + "url": "https://x.com/vitainucoin" + }, + { + "name": "github", + "url": "https://github.com/vita-inu" + }, + { + "name": "telegram", + "url": "https://t.me/vitainu" + }, + { + "name": "telegram_news", + "url": "https://t.me/vinu_news" + }, + { + "name": "medium", + "url": "https://medium.com/vitainu" + }, + { + "name": "discord", + "url": "https://discord.com/invite/vinu" + }, + { + "name": "whitepaper", + "url": "https://vitainu.org/whitepaper" + }, + { + "name": "facebook", + "url": "https://facebook.com/vitainucoin" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/vitainucoin" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/vitainu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vita-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vita-inu" + }, + { + "name": "source_code", + "url": "https://polygonscan.com/address/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9#code" + } + ], + "tags": [ + "memes", + "defi", + "deflationary", + "gamefi", + "staking", + "nft", + "governance", + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9/logo.png b/blockchains/polygon/assets/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9/logo.png new file mode 100644 index 0000000000000..281119d19c3d9 Binary files /dev/null and b/blockchains/polygon/assets/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9/logo.png differ diff --git a/blockchains/polygon/assets/0xAdA58DF0F643D959C2A47c9D4d4c1a4deFe3F11C/info.json b/blockchains/polygon/assets/0xAdA58DF0F643D959C2A47c9D4d4c1a4deFe3F11C/info.json index f50bbb920ca1a..49823c2d1f514 100644 --- a/blockchains/polygon/assets/0xAdA58DF0F643D959C2A47c9D4d4c1a4deFe3F11C/info.json +++ b/blockchains/polygon/assets/0xAdA58DF0F643D959C2A47c9D4d4c1a4deFe3F11C/info.json @@ -10,8 +10,8 @@ "id": "0xAdA58DF0F643D959C2A47c9D4d4c1a4deFe3F11C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/cryptocom" + "name": "x", + "url": "https://x.com/cryptocom" }, { "name": "facebook", diff --git a/blockchains/polygon/assets/0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B/info.json b/blockchains/polygon/assets/0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B/info.json index d99c1589b5f31..8d612719d2768 100644 --- a/blockchains/polygon/assets/0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B/info.json +++ b/blockchains/polygon/assets/0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B/info.json @@ -10,8 +10,8 @@ "id": "0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B", "links": [ { - "name": "twitter", - "url": "https://twitter.com/zkBob_" + "name": "x", + "url": "https://x.com/zkBob_" }, { "name": "telegram_news", @@ -37,4 +37,4 @@ "tags": [ "stablecoin" ] -} +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xB0e1fc65C1a741b4662B813eB787d369b8614Af1/info.json b/blockchains/polygon/assets/0xB0e1fc65C1a741b4662B813eB787d369b8614Af1/info.json index 894e949219332..bc0cfdc84ebb3 100644 --- a/blockchains/polygon/assets/0xB0e1fc65C1a741b4662B813eB787d369b8614Af1/info.json +++ b/blockchains/polygon/assets/0xB0e1fc65C1a741b4662B813eB787d369b8614Af1/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/impossiblefinance" }, { - "name": "twitter", - "url": "https://twitter.com/impossiblefi" + "name": "x", + "url": "https://x.com/impossiblefi" }, { "name": "blog", diff --git a/blockchains/polygon/assets/0xB25e20De2F2eBb4CfFD4D16a55C7B395e8a94762/info.json b/blockchains/polygon/assets/0xB25e20De2F2eBb4CfFD4D16a55C7B395e8a94762/info.json index 509c934937522..4794607cee1f4 100644 --- a/blockchains/polygon/assets/0xB25e20De2F2eBb4CfFD4D16a55C7B395e8a94762/info.json +++ b/blockchains/polygon/assets/0xB25e20De2F2eBb4CfFD4D16a55C7B395e8a94762/info.json @@ -10,8 +10,8 @@ "id": "0xB25e20De2F2eBb4CfFD4D16a55C7B395e8a94762", "links": [ { - "name": "twitter", - "url": "https://twitter.com/RequestNetwork" + "name": "x", + "url": "https://x.com/RequestNetwork" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0xB2C63830D4478cB331142FAc075A39671a5541dC/info.json b/blockchains/polygon/assets/0xB2C63830D4478cB331142FAc075A39671a5541dC/info.json index 00702f3043174..3a43d66620166 100644 --- a/blockchains/polygon/assets/0xB2C63830D4478cB331142FAc075A39671a5541dC/info.json +++ b/blockchains/polygon/assets/0xB2C63830D4478cB331142FAc075A39671a5541dC/info.json @@ -10,8 +10,8 @@ "id": "0xB2C63830D4478cB331142FAc075A39671a5541dC", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BombPolygon" + "name": "x", + "url": "https://x.com/BombPolygon" }, { "name": "telegram", @@ -26,4 +26,4 @@ "gamefi", "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xB424F20a80117472175f03853E2901f6FB0c0016/info.json b/blockchains/polygon/assets/0xB424F20a80117472175f03853E2901f6FB0c0016/info.json new file mode 100644 index 0000000000000..725eedfe8f45b --- /dev/null +++ b/blockchains/polygon/assets/0xB424F20a80117472175f03853E2901f6FB0c0016/info.json @@ -0,0 +1,21 @@ +{ + "name": "Quick Drop", + "type": "POLYGON", + "symbol": "QUICK", + "decimals": 18, + "website": "https://quick-drop.xyz/", + "description": "A community-focused Polygon token inspired by a legendary pink dragon dropping into the crypto scene. No taxes, just gains.", + "explorer": "https://polygonscan.com/token/0xb424f20a80117472175f03853e2901f6fb0c0016", + "status": "active", + "id": "0xB424F20a80117472175f03853E2901f6FB0c0016", + "links": [ + { + "name": "x", + "url": "https://x.com/quickdrop_hq" + }, + { + "name": "telegram", + "url": "https://t.me/QuickDropCommunityChat" + } + ] +} diff --git a/blockchains/polygon/assets/0xB424F20a80117472175f03853E2901f6FB0c0016/logo.png b/blockchains/polygon/assets/0xB424F20a80117472175f03853E2901f6FB0c0016/logo.png new file mode 100644 index 0000000000000..040fa90672083 Binary files /dev/null and b/blockchains/polygon/assets/0xB424F20a80117472175f03853E2901f6FB0c0016/logo.png differ diff --git a/blockchains/polygon/assets/0xB5C064F955D8e7F38fE0460C556a72987494eE17/info.json b/blockchains/polygon/assets/0xB5C064F955D8e7F38fE0460C556a72987494eE17/info.json new file mode 100644 index 0000000000000..33ffd6e81ef7b --- /dev/null +++ b/blockchains/polygon/assets/0xB5C064F955D8e7F38fE0460C556a72987494eE17/info.json @@ -0,0 +1,29 @@ +{ + "name": "QuickSwap", + "website": "https://quickswap.exchange/", + "description": "Next-gen Layer 2 DEX. Trade at lightning-fast speeds with near-zero gas fees, Powered by Polygon", + "explorer": "https://polygonscan.com/token/0xB5C064F955D8e7F38fE0460C556a72987494eE17", + "type": "POLYGON", + "symbol": "QUICK", + "decimals": 18, + "status": "active", + "id": "0xB5C064F955D8e7F38fE0460C556a72987494eE17", + "links": [ + { + "name": "github", + "url": "https://github.com/QuickSwap" + }, + { + "name": "x", + "url": "https://x.com/QuickswapDEX" + }, + { + "name": "telegram", + "url": "https://t.me/QuickSwapDEX" + }, + { + "name": "medium", + "url": "https://quickswap-layer2.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x831753DD7087CaC61aB5644b308642cc1c33Dc13/logo.png b/blockchains/polygon/assets/0xB5C064F955D8e7F38fE0460C556a72987494eE17/logo.png similarity index 100% rename from blockchains/polygon/assets/0x831753DD7087CaC61aB5644b308642cc1c33Dc13/logo.png rename to blockchains/polygon/assets/0xB5C064F955D8e7F38fE0460C556a72987494eE17/logo.png diff --git a/blockchains/polygon/assets/0xB6EBc3ca1741a8f37551E44A51eC00aD417B38CA/info.json b/blockchains/polygon/assets/0xB6EBc3ca1741a8f37551E44A51eC00aD417B38CA/info.json index f2318de466842..334c4d2a31b92 100644 --- a/blockchains/polygon/assets/0xB6EBc3ca1741a8f37551E44A51eC00aD417B38CA/info.json +++ b/blockchains/polygon/assets/0xB6EBc3ca1741a8f37551E44A51eC00aD417B38CA/info.json @@ -14,8 +14,8 @@ "url": "https://medium.com/ariadne-project" }, { - "name": "twitter", - "url": "https://twitter.com/ariadne_finance" + "name": "x", + "url": "https://x.com/ariadne_finance" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0xB9638272aD6998708de56BBC0A290a1dE534a578/info.json b/blockchains/polygon/assets/0xB9638272aD6998708de56BBC0A290a1dE534a578/info.json new file mode 100644 index 0000000000000..a3738679a5734 --- /dev/null +++ b/blockchains/polygon/assets/0xB9638272aD6998708de56BBC0A290a1dE534a578/info.json @@ -0,0 +1,28 @@ +{ + "name": "Everipedia IQ", + "type": "POLYGON", + "symbol": "IQ", + "decimals": 18, + "website": "https://iq.wiki/", + "description": "Everipedia IQ’s mission is to bring the world’s knowledge on-chain.", + "explorer": "https://polygonscan.com/token/0xb9638272ad6998708de56bbc0a290a1de534a578", + "status": "active", + "id": "0xB9638272aD6998708de56BBC0A290a1dE534a578", + "links": [ + { + "name": "x", + "url": "https://x.com/Everipedia" + }, + { + "name": "github", + "url": "https://github.com/EveripediaNetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/everipedia/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xB9638272aD6998708de56BBC0A290a1dE534a578/logo.png b/blockchains/polygon/assets/0xB9638272aD6998708de56BBC0A290a1dE534a578/logo.png new file mode 100644 index 0000000000000..dceff00bfbb03 Binary files /dev/null and b/blockchains/polygon/assets/0xB9638272aD6998708de56BBC0A290a1dE534a578/logo.png differ diff --git a/blockchains/polygon/assets/0xBCD287ca1C614Ecd8c5Ca95bFf3c13c392192df5/info.json b/blockchains/polygon/assets/0xBCD287ca1C614Ecd8c5Ca95bFf3c13c392192df5/info.json index 4dac4b01eb249..f75b3ce05f04b 100644 --- a/blockchains/polygon/assets/0xBCD287ca1C614Ecd8c5Ca95bFf3c13c392192df5/info.json +++ b/blockchains/polygon/assets/0xBCD287ca1C614Ecd8c5Ca95bFf3c13c392192df5/info.json @@ -10,8 +10,8 @@ "id": "0xBCD287ca1C614Ecd8c5Ca95bFf3c13c392192df5", "links": [ { - "name": "twitter", - "url": "https://twitter.com/airnfts" + "name": "x", + "url": "https://x.com/airnfts" }, { "name": "telegram", @@ -29,4 +29,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xC011a7E12a19f7B1f670d46F03B03f3342E82DFB/info.json b/blockchains/polygon/assets/0xC011a7E12a19f7B1f670d46F03B03f3342E82DFB/info.json new file mode 100644 index 0000000000000..234a58e3ad6c9 --- /dev/null +++ b/blockchains/polygon/assets/0xC011a7E12a19f7B1f670d46F03B03f3342E82DFB/info.json @@ -0,0 +1,24 @@ +{ + "name": "Polymarket USD", + "type": "POLYGON", + "symbol": "pUSD", + "decimals": 6, + "website": "https://polymarket.com/", + "description": "pUSD (Polymarket USD) is the collateral token used for all trading on Polymarket. It’s a standard ERC-20 token on Polygon, backed by USDC.", + "explorer": "https://polygonscan.com/token/0xC011a7E12a19f7B1f670d46F03B03f3342E82DFB", + "status": "active", + "id": "0xC011a7E12a19f7B1f670d46F03B03f3342E82DFB", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/polymarket-usd/" + }, + { + "name": "x", + "url": "https://x.com/Polymarket" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xC011a7E12a19f7B1f670d46F03B03f3342E82DFB/logo.png b/blockchains/polygon/assets/0xC011a7E12a19f7B1f670d46F03B03f3342E82DFB/logo.png new file mode 100644 index 0000000000000..5c01bc24b05ed Binary files /dev/null and b/blockchains/polygon/assets/0xC011a7E12a19f7B1f670d46F03B03f3342E82DFB/logo.png differ diff --git a/blockchains/polygon/assets/0xC1543024DC71247888a7e139c644F44E75E96d38/info.json b/blockchains/polygon/assets/0xC1543024DC71247888a7e139c644F44E75E96d38/info.json index fad39486258d4..966ab8947f319 100644 --- a/blockchains/polygon/assets/0xC1543024DC71247888a7e139c644F44E75E96d38/info.json +++ b/blockchains/polygon/assets/0xC1543024DC71247888a7e139c644F44E75E96d38/info.json @@ -10,8 +10,8 @@ "id": "0xC1543024DC71247888a7e139c644F44E75E96d38", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BattleworldGame" + "name": "x", + "url": "https://x.com/BattleworldGame" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0xC168E40227E4ebD8C1caE80F7a55a4F0e6D66C97/info.json b/blockchains/polygon/assets/0xC168E40227E4ebD8C1caE80F7a55a4F0e6D66C97/info.json index 054785d302433..3947dc28f3e66 100644 --- a/blockchains/polygon/assets/0xC168E40227E4ebD8C1caE80F7a55a4F0e6D66C97/info.json +++ b/blockchains/polygon/assets/0xC168E40227E4ebD8C1caE80F7a55a4F0e6D66C97/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/dfyn" }, { - "name": "twitter", - "url": "https://twitter.com/_dfyn" + "name": "x", + "url": "https://x.com/_dfyn" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json b/blockchains/polygon/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json index 3b1d1e82f68a0..dc540682e8393 100644 --- a/blockchains/polygon/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json +++ b/blockchains/polygon/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json @@ -18,8 +18,8 @@ "url": "https://coingecko.com/en/coins/everrise" }, { - "name": "twitter", - "url": "https://twitter.com/everrise" + "name": "x", + "url": "https://x.com/everrise" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0xC3Ec80343D2bae2F8E680FDADDe7C17E71E114ea/info.json b/blockchains/polygon/assets/0xC3Ec80343D2bae2F8E680FDADDe7C17E71E114ea/info.json new file mode 100644 index 0000000000000..a8ce3550f0133 --- /dev/null +++ b/blockchains/polygon/assets/0xC3Ec80343D2bae2F8E680FDADDe7C17E71E114ea/info.json @@ -0,0 +1,36 @@ +{ + "name": "MANTRA", + "website": "http://mantradao.com", + "description": "MANTRA DAO leverages the wisdom of the crowd to create a community-governed, transparent, and decentralized ecosystem for Web 3.0", + "explorer": "https://polygonscan.com/token/0xc3ec80343d2bae2f8e680fdadde7c17e71e114ea", + "type": "POLYGON", + "symbol": "OM", + "decimals": 18, + "status": "active", + "id": "0xC3Ec80343D2bae2F8E680FDADDe7C17E71E114ea", + "links": [ + { + "name": "github", + "url": "https://github.com/Mantradao" + }, + { + "name": "x", + "url": "https://x.com/MANTRADAO" + }, + { + "name": "telegram", + "url": "https://t.me/MANTRADAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mantra-dao/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mantra-dao/" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xC3Ec80343D2bae2F8E680FDADDe7C17E71E114ea/logo.png b/blockchains/polygon/assets/0xC3Ec80343D2bae2F8E680FDADDe7C17E71E114ea/logo.png new file mode 100644 index 0000000000000..2c15abc9469bc Binary files /dev/null and b/blockchains/polygon/assets/0xC3Ec80343D2bae2F8E680FDADDe7C17E71E114ea/logo.png differ diff --git a/blockchains/polygon/assets/0xC68e83a305b0FaD69E264A1769a0A070F190D2d6/info.json b/blockchains/polygon/assets/0xC68e83a305b0FaD69E264A1769a0A070F190D2d6/info.json index 617e2a76fcdbe..e43a450c9ed8b 100644 --- a/blockchains/polygon/assets/0xC68e83a305b0FaD69E264A1769a0A070F190D2d6/info.json +++ b/blockchains/polygon/assets/0xC68e83a305b0FaD69E264A1769a0A070F190D2d6/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/polyroll" }, { - "name": "twitter", - "url": "https://twitter.com/PolyrollOrg" + "name": "x", + "url": "https://x.com/PolyrollOrg" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0xCcCde52eF8f7D74D73ee033f7DAccFaFe29eDd45/info.json b/blockchains/polygon/assets/0xCcCde52eF8f7D74D73ee033f7DAccFaFe29eDd45/info.json new file mode 100644 index 0000000000000..b2d97819053c8 --- /dev/null +++ b/blockchains/polygon/assets/0xCcCde52eF8f7D74D73ee033f7DAccFaFe29eDd45/info.json @@ -0,0 +1,21 @@ +{ + "name": "Opulous", + "type": "POLYGON", + "symbol": "OPUL", + "website": "https://opulous.org/", + "decimals": 18, + "description": "Opulous Token believe in a future where musicians keep control of the music they create and forge even deeper connections with their fans.", + "explorer": "https://polygonscan.com/token/0xcccde52ef8f7d74d73ee033f7daccfafe29edd45", + "status": "active", + "id": "0xCcCde52eF8f7D74D73ee033f7DAccFaFe29eDd45", + "links": [ + { + "name": "telegram", + "url": "https://t.me/opulousapp" + }, + { + "name": "x", + "url": "https://x.com/opulousapp" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xCcCde52eF8f7D74D73ee033f7DAccFaFe29eDd45/logo.png b/blockchains/polygon/assets/0xCcCde52eF8f7D74D73ee033f7DAccFaFe29eDd45/logo.png new file mode 100644 index 0000000000000..afa7fedd2bd39 Binary files /dev/null and b/blockchains/polygon/assets/0xCcCde52eF8f7D74D73ee033f7DAccFaFe29eDd45/logo.png differ diff --git a/blockchains/polygon/assets/0xD0ee109352c6116dB0f17F4Aa8519CdBfc7e7887/info.json b/blockchains/polygon/assets/0xD0ee109352c6116dB0f17F4Aa8519CdBfc7e7887/info.json new file mode 100644 index 0000000000000..a6b70b4338262 --- /dev/null +++ b/blockchains/polygon/assets/0xD0ee109352c6116dB0f17F4Aa8519CdBfc7e7887/info.json @@ -0,0 +1,21 @@ +{ + "name": "DEAPCOIN", + "symbol": "DEP", + "type": "POLYGON", + "decimals": 18, + "description": "The DEA Project is a blockchain-based multimedia digital entertainment platform featuring digital arts, games, and various other forms of entertainment. ", + "website": "https://dea.sg/", + "explorer": "https://polygonscan.com/token/0xd0ee109352c6116db0f17f4aa8519cdbfc7e7887", + "status": "active", + "id": "0xD0ee109352c6116dB0f17F4Aa8519CdBfc7e7887", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/deapcoin/" + }, + { + "name": "x", + "url": "https://x.com/PlayMining_SG" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xD0ee109352c6116dB0f17F4Aa8519CdBfc7e7887/logo.png b/blockchains/polygon/assets/0xD0ee109352c6116dB0f17F4Aa8519CdBfc7e7887/logo.png new file mode 100644 index 0000000000000..8c78552f3f5cf Binary files /dev/null and b/blockchains/polygon/assets/0xD0ee109352c6116dB0f17F4Aa8519CdBfc7e7887/logo.png differ diff --git a/blockchains/polygon/assets/0xD4814770065F634003A8d8D70B4743E0C3f334ad/info.json b/blockchains/polygon/assets/0xD4814770065F634003A8d8D70B4743E0C3f334ad/info.json index 97391aefe2968..2367d322b7e15 100644 --- a/blockchains/polygon/assets/0xD4814770065F634003A8d8D70B4743E0C3f334ad/info.json +++ b/blockchains/polygon/assets/0xD4814770065F634003A8d8D70B4743E0C3f334ad/info.json @@ -1,5 +1,5 @@ { - "name": "Poly Ontology Token", + "name": "Ontology", "website": "https://ont.io", "description": "Poly Ontology Token (ONT POLYGON) is a token issued by Binance on Smart Chain; its price is pegged to Ontology Token (ONT) at a ratio of 1:1.", "explorer": "https://polygonscan.com/token/0xD4814770065F634003A8d8D70B4743E0C3f334ad", diff --git a/blockchains/polygon/assets/0xD6DF932A45C0f255f85145f286eA0b292B21C90B/info.json b/blockchains/polygon/assets/0xD6DF932A45C0f255f85145f286eA0b292B21C90B/info.json index 67609632f7807..e8ed761e16057 100644 --- a/blockchains/polygon/assets/0xD6DF932A45C0f255f85145f286eA0b292B21C90B/info.json +++ b/blockchains/polygon/assets/0xD6DF932A45C0f255f85145f286eA0b292B21C90B/info.json @@ -1,22 +1,26 @@ { - "name": "Aave (PoS)", + "name": "Aave", "website": "https://aave.com", "description": "Aave Protocol is a decentralised liquidity protocol where people can lend and borrow digital assets. The AAVE token is the governance token of the protocol, so AAVE holders can vote on proposals for updates. AAVE holders can also stake their AAVE in the protocol Safety Module and earn Safety Incentives for securing the protocol", - "explorer": "https://polygonscan.com/token/0xd6df932a45c0f255f85145f286ea0b292b21c90b", + "explorer": "https://polygonscan.com/token/0xD6DF932A45C0f255f85145f286eA0b292B21C90B", "research": "https://research.binance.com/en/projects/aave-protocol", "type": "POLYGON", "symbol": "AAVE", "decimals": 18, "status": "active", "id": "0xD6DF932A45C0f255f85145f286eA0b292B21C90B", + "tags": [ + "defi", + "governance" + ], "links": [ { "name": "github", "url": "https://github.com/aave/aave-protocol" }, { - "name": "twitter", - "url": "https://twitter.com/AaveAave" + "name": "x", + "url": "https://x.com/aave" }, { "name": "reddit", diff --git a/blockchains/polygon/assets/0xD6DF932A45C0f255f85145f286eA0b292B21C90B/logo.png b/blockchains/polygon/assets/0xD6DF932A45C0f255f85145f286eA0b292B21C90B/logo.png index 1e7cef36a8aaa..d53b11427e965 100644 Binary files a/blockchains/polygon/assets/0xD6DF932A45C0f255f85145f286eA0b292B21C90B/logo.png and b/blockchains/polygon/assets/0xD6DF932A45C0f255f85145f286eA0b292B21C90B/logo.png differ diff --git a/blockchains/polygon/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/info.json b/blockchains/polygon/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/info.json new file mode 100644 index 0000000000000..65551e82cdb9a --- /dev/null +++ b/blockchains/polygon/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/info.json @@ -0,0 +1,24 @@ +{ + "name": "Brazilian Real", + "website": "https://www.ripio.com/es/criptos/stablecoins-locales", + "description": "wBRL is a fully collateralized stablecoin pegged 1:1 to the Brazilian Real (BRL). Issued and governed by a Ripio subsidiary, it brings BRL on-chain so users can transact, save, and build on decentralized networks in their local currency.", + "explorer": "https://polygonscan.com/token/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0", + "type": "POLYGON", + "symbol": "wBRL", + "decimals": 18, + "status": "active", + "id": "0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/RipioApp" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/brazilian-real" + } + ] +} diff --git a/blockchains/polygon/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/logo.png b/blockchains/polygon/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/logo.png new file mode 100644 index 0000000000000..6a9e9da279722 Binary files /dev/null and b/blockchains/polygon/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/logo.png differ diff --git a/blockchains/polygon/assets/0xD86b5923F3AD7b585eD81B448170ae026c65ae9a/info.json b/blockchains/polygon/assets/0xD86b5923F3AD7b585eD81B448170ae026c65ae9a/info.json index cacc8d4c16fae..04f1faa862cc0 100644 --- a/blockchains/polygon/assets/0xD86b5923F3AD7b585eD81B448170ae026c65ae9a/info.json +++ b/blockchains/polygon/assets/0xD86b5923F3AD7b585eD81B448170ae026c65ae9a/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/ironfinance" }, { - "name": "twitter", - "url": "https://twitter.com/ironfinance" + "name": "x", + "url": "https://x.com/ironfinance" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0xDC3326e71D45186F113a2F448984CA0e8D201995/info.json b/blockchains/polygon/assets/0xDC3326e71D45186F113a2F448984CA0e8D201995/info.json index d5c2fd870d9a2..114803cf1cb83 100644 --- a/blockchains/polygon/assets/0xDC3326e71D45186F113a2F448984CA0e8D201995/info.json +++ b/blockchains/polygon/assets/0xDC3326e71D45186F113a2F448984CA0e8D201995/info.json @@ -10,8 +10,8 @@ "id": "0xDC3326e71D45186F113a2F448984CA0e8D201995", "links": [ { - "name": "twitter", - "url": "https://twitter.com/straitsx" + "name": "x", + "url": "https://x.com/straitsx" }, { "name": "github", @@ -33,4 +33,4 @@ "tags": [ "stablecoin" ] -} +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xDD75542611D57C4b6e68168B14C3591C539022eD/info.json b/blockchains/polygon/assets/0xDD75542611D57C4b6e68168B14C3591C539022eD/info.json new file mode 100644 index 0000000000000..4d9199fe25511 --- /dev/null +++ b/blockchains/polygon/assets/0xDD75542611D57C4b6e68168B14C3591C539022eD/info.json @@ -0,0 +1,33 @@ +{ + "name": "Unizen", + "website": "https://unizen.io", + "description": "Seamless omni-chain enabled swapping with industry leading rates and access to millions of digital assets, from the moment of their inception.", + "explorer": "https://polygonscan.com/token/0xdd75542611d57c4b6e68168b14c3591c539022ed", + "research": "https://docs.unizen.io", + "symbol": "pZCX", + "type": "POLYGON", + "decimals": 18, + "status": "active", + "tags": [ + "staking-native" + ], + "id": "0xDD75542611D57C4b6e68168B14C3591C539022eD", + "links": [ + { + "name": "github", + "url": "https://github.com/unizen-io/" + }, + { + "name": "x", + "url": "https://x.com/unizen_io" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/unizen/" + }, + { + "name": "whitepaper", + "url": "https://docs.unizen.io" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xDD75542611D57C4b6e68168B14C3591C539022eD/logo.png b/blockchains/polygon/assets/0xDD75542611D57C4b6e68168B14C3591C539022eD/logo.png new file mode 100644 index 0000000000000..4077cfed07720 Binary files /dev/null and b/blockchains/polygon/assets/0xDD75542611D57C4b6e68168B14C3591C539022eD/logo.png differ diff --git a/blockchains/polygon/assets/0xDE12c7959E1a72bbe8a5f7A1dc8f8EeF9Ab011B3/info.json b/blockchains/polygon/assets/0xDE12c7959E1a72bbe8a5f7A1dc8f8EeF9Ab011B3/info.json index 8ff8f40ce7911..1ca4f839e771d 100644 --- a/blockchains/polygon/assets/0xDE12c7959E1a72bbe8a5f7A1dc8f8EeF9Ab011B3/info.json +++ b/blockchains/polygon/assets/0xDE12c7959E1a72bbe8a5f7A1dc8f8EeF9Ab011B3/info.json @@ -10,8 +10,8 @@ "id": "0xDE12c7959E1a72bbe8a5f7A1dc8f8EeF9Ab011B3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/DeusDao" + "name": "x", + "url": "https://x.com/DeusDao" }, { "name": "telegram", @@ -22,4 +22,4 @@ "url": "https://medium.com/@deusfinance" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xDE5ed76E7c05eC5e4572CfC88d1ACEA165109E44/info.json b/blockchains/polygon/assets/0xDE5ed76E7c05eC5e4572CfC88d1ACEA165109E44/info.json index 68710320109ff..6389affb2feb7 100644 --- a/blockchains/polygon/assets/0xDE5ed76E7c05eC5e4572CfC88d1ACEA165109E44/info.json +++ b/blockchains/polygon/assets/0xDE5ed76E7c05eC5e4572CfC88d1ACEA165109E44/info.json @@ -10,8 +10,8 @@ "id": "0xDE5ed76E7c05eC5e4572CfC88d1ACEA165109E44", "links": [ { - "name": "twitter", - "url": "https://twitter.com/DeusDao" + "name": "x", + "url": "https://x.com/DeusDao" }, { "name": "telegram", @@ -22,4 +22,4 @@ "url": "https://medium.com/@deusfinance" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json b/blockchains/polygon/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json index a5b7f91e9d660..09dff7cc7faf7 100644 --- a/blockchains/polygon/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json +++ b/blockchains/polygon/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json @@ -10,8 +10,8 @@ "id": "0xDbA7b24257fC6e397cB7368B4BC922E944072f1b", "links": [ { - "name": "twitter", - "url": "https://twitter.com/everrise" + "name": "x", + "url": "https://x.com/everrise" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0xE0339c80fFDE91F3e20494Df88d4206D86024cdF/info.json b/blockchains/polygon/assets/0xE0339c80fFDE91F3e20494Df88d4206D86024cdF/info.json new file mode 100644 index 0000000000000..2dd02490d2ec2 --- /dev/null +++ b/blockchains/polygon/assets/0xE0339c80fFDE91F3e20494Df88d4206D86024cdF/info.json @@ -0,0 +1,17 @@ +{ + "name": "Dogelon", + "website": "https://dogelon.io", + "description": "I am Dogelon. Dogelon Mars. Join me and together we'll reach the stars ✨ We want to reach Mars and beyond. However, many of those good people are rugged, or buy scam tokens that can't be sold. For this reason, the Dogelon community pledges to send tokens over time to victims of rugs and scams, so that the worst day of their trading life can be turned into their best. And after some time, they will be able to join us on our regular flights to Mars....", + "explorer": "https://polygonscan.com/token/0xe0339c80ffde91f3e20494df88d4206d86024cdf", + "type": "POLYGON", + "symbol": "ELON", + "decimals": 18, + "status": "active", + "id": "0xE0339c80fFDE91F3e20494Df88d4206D86024cdF", + "links": [ + { + "name": "x", + "url": "https://x.com/dogelonmars" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xE0339c80fFDE91F3e20494Df88d4206D86024cdF/logo.png b/blockchains/polygon/assets/0xE0339c80fFDE91F3e20494Df88d4206D86024cdF/logo.png new file mode 100644 index 0000000000000..87fb698202102 Binary files /dev/null and b/blockchains/polygon/assets/0xE0339c80fFDE91F3e20494Df88d4206D86024cdF/logo.png differ diff --git a/blockchains/polygon/assets/0xE0B52e49357Fd4DAf2c15e02058DCE6BC0057db4/info.json b/blockchains/polygon/assets/0xE0B52e49357Fd4DAf2c15e02058DCE6BC0057db4/info.json new file mode 100644 index 0000000000000..ab7172814dc8a --- /dev/null +++ b/blockchains/polygon/assets/0xE0B52e49357Fd4DAf2c15e02058DCE6BC0057db4/info.json @@ -0,0 +1,37 @@ +{ + "name": "EURA", + "website": "https://www.angle.money/", + "description": "EURA is an over-collateralized and decentralized Euro stablecoin by the Angle Protocol.", + "explorer": "https://polygonscan.com/token/0xE0B52e49357Fd4DAf2c15e02058DCE6BC0057db4", + "type": "POLYGON", + "symbol": "EURA", + "decimals": 18, + "status": "active", + "tags": [ + "defi", + "stablecoin" + ], + "id": "0xE0B52e49357Fd4DAf2c15e02058DCE6BC0057db4", + "links": [ + { + "name": "github", + "url": "https://github.com/AngleProtocol" + }, + { + "name": "x", + "url": "https://x.com/AngleProtocol" + }, + { + "name": "docs", + "url": "https://docs.angle.money" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ageur" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZheVAnFt6h" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xE0B52e49357Fd4DAf2c15e02058DCE6BC0057db4/logo.png b/blockchains/polygon/assets/0xE0B52e49357Fd4DAf2c15e02058DCE6BC0057db4/logo.png new file mode 100644 index 0000000000000..b80f4f7f9341b Binary files /dev/null and b/blockchains/polygon/assets/0xE0B52e49357Fd4DAf2c15e02058DCE6BC0057db4/logo.png differ diff --git a/blockchains/polygon/assets/0xE1b3eb06806601828976e491914e3De18B5d6b28/info.json b/blockchains/polygon/assets/0xE1b3eb06806601828976e491914e3De18B5d6b28/info.json new file mode 100644 index 0000000000000..8ea5692399521 --- /dev/null +++ b/blockchains/polygon/assets/0xE1b3eb06806601828976e491914e3De18B5d6b28/info.json @@ -0,0 +1,28 @@ +{ + "name": "zkRace", + "website": "https://zkrace.com/", + "description": "zkRace is a complete NFT horse racing ecosystem where you can participate in horse races, breed NFT horses with unique characteristics, build your own NFT hippodrome", + "explorer": "https://polygonscan.com/token/0xE1b3eb06806601828976e491914e3De18B5d6b28", + "type": "POLYGON", + "symbol": "ZERC", + "decimals": 18, + "status": "active", + "id": "0xE1b3eb06806601828976e491914e3De18B5d6b28", + "links": [ + { + "name": "x", + "url": "https://x.com/zk_race" + }, + { + "name": "telegram", + "url": "https://t.me/zk_Race" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/derace/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xE1b3eb06806601828976e491914e3De18B5d6b28/logo.png b/blockchains/polygon/assets/0xE1b3eb06806601828976e491914e3De18B5d6b28/logo.png new file mode 100644 index 0000000000000..e428af9216608 Binary files /dev/null and b/blockchains/polygon/assets/0xE1b3eb06806601828976e491914e3De18B5d6b28/logo.png differ diff --git a/blockchains/polygon/assets/0xE238Ecb42C424E877652AD82d8A939183A04C35f/info.json b/blockchains/polygon/assets/0xE238Ecb42C424E877652AD82d8A939183A04C35f/info.json new file mode 100644 index 0000000000000..2972caa272cdb --- /dev/null +++ b/blockchains/polygon/assets/0xE238Ecb42C424E877652AD82d8A939183A04C35f/info.json @@ -0,0 +1,25 @@ +{ + "name": "WiFi Map", + "website": "https://weconnectu.io/", + "description": "WiFi Map are wifi finder, as well as esim provider.", + "explorer": "https://polygonscan.com/token/0xe238ecb42c424e877652ad82d8a939183a04c35f", + "type": "POLYGON", + "symbol": "WIFI", + "decimals": 18, + "status": "active", + "id": "0xE238Ecb42C424E877652AD82d8A939183A04C35f", + "links": [ + { + "name": "x", + "url": "https://x.com/wifimapapp" + }, + { + "name": "telegram", + "url": "https://t.me/wifimap_io" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wifi" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xE238Ecb42C424E877652AD82d8A939183A04C35f/logo.png b/blockchains/polygon/assets/0xE238Ecb42C424E877652AD82d8A939183A04C35f/logo.png new file mode 100644 index 0000000000000..66b1b3ccf7d2e Binary files /dev/null and b/blockchains/polygon/assets/0xE238Ecb42C424E877652AD82d8A939183A04C35f/logo.png differ diff --git a/blockchains/polygon/assets/0xE3322702BEdaaEd36CdDAb233360B939775ae5f1/info.json b/blockchains/polygon/assets/0xE3322702BEdaaEd36CdDAb233360B939775ae5f1/info.json new file mode 100644 index 0000000000000..a97b5ae8a1cab --- /dev/null +++ b/blockchains/polygon/assets/0xE3322702BEdaaEd36CdDAb233360B939775ae5f1/info.json @@ -0,0 +1,29 @@ +{ + "name": "Tellor", + "website": "https://tellor.io", + "description": "Tellor (a decentralized oracle) aims to address the Oracle problem on Ethereum.", + "explorer": "https://polygonscan.com/token/0xE3322702BEdaaEd36CdDAb233360B939775ae5f1", + "type": "POLYGON", + "symbol": "TRB", + "decimals": 18, + "status": "active", + "id": "0xE3322702BEdaaEd36CdDAb233360B939775ae5f1", + "links": [ + { + "name": "x", + "url": "https://x.com/WeAreTellor" + }, + { + "name": "telegram", + "url": "https://t.me/tellor" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tellor/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tellor/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xE3322702BEdaaEd36CdDAb233360B939775ae5f1/logo.png b/blockchains/polygon/assets/0xE3322702BEdaaEd36CdDAb233360B939775ae5f1/logo.png new file mode 100644 index 0000000000000..f1295da4329a3 Binary files /dev/null and b/blockchains/polygon/assets/0xE3322702BEdaaEd36CdDAb233360B939775ae5f1/logo.png differ diff --git a/blockchains/polygon/assets/0xE33dC9d2D7D64c1e23467aC7eD7F8eF56d0a8d66/info.json b/blockchains/polygon/assets/0xE33dC9d2D7D64c1e23467aC7eD7F8eF56d0a8d66/info.json index b763e01218653..a6c78d4b97b9d 100644 --- a/blockchains/polygon/assets/0xE33dC9d2D7D64c1e23467aC7eD7F8eF56d0a8d66/info.json +++ b/blockchains/polygon/assets/0xE33dC9d2D7D64c1e23467aC7eD7F8eF56d0a8d66/info.json @@ -10,8 +10,8 @@ "id": "0xE33dC9d2D7D64c1e23467aC7eD7F8eF56d0a8d66", "links": [ { - "name": "twitter", - "url": "https://twitter.com/fletachain" + "name": "x", + "url": "https://x.com/fletachain" }, { "name": "github", diff --git a/blockchains/polygon/assets/0xE5417Af564e4bFDA1c483642db72007871397896/info.json b/blockchains/polygon/assets/0xE5417Af564e4bFDA1c483642db72007871397896/info.json index 1d688b032fc6a..1daf6006fe23d 100644 --- a/blockchains/polygon/assets/0xE5417Af564e4bFDA1c483642db72007871397896/info.json +++ b/blockchains/polygon/assets/0xE5417Af564e4bFDA1c483642db72007871397896/info.json @@ -42,11 +42,11 @@ "url": "https://medium.com/gains-network" }, { - "name": "twitter", - "url": "https://twitter.com/GainsNetwork_io" + "name": "x", + "url": "https://x.com/GainsNetwork_io" } ], "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xE77aBB1E75D2913B2076DD16049992FFeACa5235/info.json b/blockchains/polygon/assets/0xE77aBB1E75D2913B2076DD16049992FFeACa5235/info.json new file mode 100644 index 0000000000000..9dbf30e3dd87c --- /dev/null +++ b/blockchains/polygon/assets/0xE77aBB1E75D2913B2076DD16049992FFeACa5235/info.json @@ -0,0 +1,28 @@ +{ + "name": "Decentrawood", + "type": "POLYGON", + "symbol": "Deod", + "decimals": 18, + "website": "https://www.decentrawood.com/", + "description": "Decentrawood is a metaverse token, designed and built on the Polygon network for enhanced scalability and efficiency in virtual worlds.", + "explorer": "https://polygonscan.com/token/0xe77abb1e75d2913b2076dd16049992ffeaca5235", + "status": "active", + "id": "0xE77aBB1E75D2913B2076DD16049992FFeACa5235", + "links": [ + { + "name": "x", + "url": "https://x.com/decentrawood" + }, + { + "name": "telegram", + "url": "https://t.me/decentrawood_platform" + }, + { + "name": "facebook", + "url": "https://facebook.com/decentrawood" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xE77aBB1E75D2913B2076DD16049992FFeACa5235/logo.png b/blockchains/polygon/assets/0xE77aBB1E75D2913B2076DD16049992FFeACa5235/logo.png new file mode 100644 index 0000000000000..6657c1fd7157c Binary files /dev/null and b/blockchains/polygon/assets/0xE77aBB1E75D2913B2076DD16049992FFeACa5235/logo.png differ diff --git a/blockchains/polygon/assets/0xE7879BaFa6A41F919f145a97207e54839d34c9bA/info.json b/blockchains/polygon/assets/0xE7879BaFa6A41F919f145a97207e54839d34c9bA/info.json index 9df9619527da5..37cebf4f83654 100644 --- a/blockchains/polygon/assets/0xE7879BaFa6A41F919f145a97207e54839d34c9bA/info.json +++ b/blockchains/polygon/assets/0xE7879BaFa6A41F919f145a97207e54839d34c9bA/info.json @@ -10,8 +10,8 @@ "id": "0xE7879BaFa6A41F919f145a97207e54839d34c9bA", "links": [ { - "name": "twitter", - "url": "https://twitter.com/streamcoin_strm" + "name": "x", + "url": "https://x.com/streamcoin_strm" }, { "name": "github", diff --git a/blockchains/polygon/assets/0xEAf631ac57F3CDDDd261770dD47F85066131a156/info.json b/blockchains/polygon/assets/0xEAf631ac57F3CDDDd261770dD47F85066131a156/info.json index b528f1d0be58e..39a7d93462372 100644 --- a/blockchains/polygon/assets/0xEAf631ac57F3CDDDd261770dD47F85066131a156/info.json +++ b/blockchains/polygon/assets/0xEAf631ac57F3CDDDd261770dD47F85066131a156/info.json @@ -10,8 +10,8 @@ "id": "0xEAf631ac57F3CDDDd261770dD47F85066131a156", "links": [ { - "name": "twitter", - "url": "https://twitter.com/EqualizerFlash" + "name": "x", + "url": "https://x.com/EqualizerFlash" }, { "name": "github", @@ -30,4 +30,4 @@ "url": "https://docs.equalizer.finance/" } ] -} +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xED755dBa6Ec1eb520076Cec051a582A6d81A8253/info.json b/blockchains/polygon/assets/0xED755dBa6Ec1eb520076Cec051a582A6d81A8253/info.json index 1ec8d92ab4071..d3be62c1e622e 100644 --- a/blockchains/polygon/assets/0xED755dBa6Ec1eb520076Cec051a582A6d81A8253/info.json +++ b/blockchains/polygon/assets/0xED755dBa6Ec1eb520076Cec051a582A6d81A8253/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/ultimate-champions/" }, { - "name": "twitter", - "url": "https://twitter.com/UltiChamps" + "name": "x", + "url": "https://x.com/UltiChamps" }, { "name": "whitepaper", diff --git a/blockchains/polygon/assets/0xEE800B277A96B0f490a1A732e1D6395FAD960A26/info.json b/blockchains/polygon/assets/0xEE800B277A96B0f490a1A732e1D6395FAD960A26/info.json index a19cc158da13b..40e06638462b0 100644 --- a/blockchains/polygon/assets/0xEE800B277A96B0f490a1A732e1D6395FAD960A26/info.json +++ b/blockchains/polygon/assets/0xEE800B277A96B0f490a1A732e1D6395FAD960A26/info.json @@ -1,5 +1,5 @@ { - "name": "ARPA Token", + "name": "ARPA", "website": "https://arpachain.io/", "description": "ARPA is a secure computation network compatible with blockchains. It proposes a blockchain-based secure computation network of Multi-party Computation (MPC). ARPA cryptographically enables private smart contract, unprecedented data-at-use privacy protection, and scalable computational sharding.", "explorer": "https://polygonscan.com/token/0xee800b277a96b0f490a1a732e1d6395fad960a26", @@ -10,8 +10,8 @@ "id": "0xEE800B277A96B0f490a1A732e1D6395FAD960A26", "links": [ { - "name": "twitter", - "url": "https://twitter.com/arpaofficial?source=user_profile---------------------------" + "name": "x", + "url": "https://x.com/arpaofficial?source=user_profile---------------------------" }, { "name": "telegram", @@ -25,4 +25,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xF36f79feb5d97e18C69078d8D13d941CaE447A04/info.json b/blockchains/polygon/assets/0xF36f79feb5d97e18C69078d8D13d941CaE447A04/info.json new file mode 100644 index 0000000000000..412a1404fc9ad --- /dev/null +++ b/blockchains/polygon/assets/0xF36f79feb5d97e18C69078d8D13d941CaE447A04/info.json @@ -0,0 +1,21 @@ +{ + "name": "b0rder1ess", + "type": "POLYGON", + "symbol": "b01", + "decimals": 18, + "website": "https://borderless.art", + "description": "Wicked NFT collection & token | Instant & guaranteed NFT sellback", + "explorer": "https://polygonscan.com/token/0xF36f79feb5d97e18C69078d8D13d941CaE447A04", + "status": "active", + "id": "0xF36f79feb5d97e18C69078d8D13d941CaE447A04", + "links": [ + { + "name": "x", + "url": "https://x.com/b0rder1ess" + }, + { + "name": "discord", + "url": "https://discord.com/invite/b0rder1ess" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xF36f79feb5d97e18C69078d8D13d941CaE447A04/logo.png b/blockchains/polygon/assets/0xF36f79feb5d97e18C69078d8D13d941CaE447A04/logo.png new file mode 100644 index 0000000000000..093ddde55ab40 Binary files /dev/null and b/blockchains/polygon/assets/0xF36f79feb5d97e18C69078d8D13d941CaE447A04/logo.png differ diff --git a/blockchains/polygon/assets/0xFB32513135e3267995268E3099d2B6114d20B6eD/info.json b/blockchains/polygon/assets/0xFB32513135e3267995268E3099d2B6114d20B6eD/info.json index 53c1cf20bb0df..1229ee3a975c7 100644 --- a/blockchains/polygon/assets/0xFB32513135e3267995268E3099d2B6114d20B6eD/info.json +++ b/blockchains/polygon/assets/0xFB32513135e3267995268E3099d2B6114d20B6eD/info.json @@ -10,8 +10,8 @@ "id": "0xFB32513135e3267995268E3099d2B6114d20B6eD", "links": [ { - "name": "twitter", - "url": "https://twitter.com/coinerr_err" + "name": "x", + "url": "https://x.com/coinerr_err" }, { "name": "telegram", @@ -33,4 +33,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xFEF5d947472e72Efbb2E388c730B7428406F2F95/info.json b/blockchains/polygon/assets/0xFEF5d947472e72Efbb2E388c730B7428406F2F95/info.json new file mode 100644 index 0000000000000..e4a32afaa97e6 --- /dev/null +++ b/blockchains/polygon/assets/0xFEF5d947472e72Efbb2E388c730B7428406F2F95/info.json @@ -0,0 +1,21 @@ +{ + "name": "Autonolas", + "type": "POLYGON", + "symbol": "OLAS", + "decimals": 18, + "website": "https://olas.network/", + "description": "A unified network of off-chain services – like automation, oracles, and co-owned AI. Autonolas offers a composable stack for building these services, and a protocol for incentivizing their creation. Autonolas enables operating these services in a co-owned and decentralized way.", + "explorer": "https://polygonscan.com/token/0xfef5d947472e72efbb2e388c730b7428406f2f95", + "status": "active", + "id": "0xFEF5d947472e72Efbb2E388c730B7428406F2F95", + "links": [ + { + "name": "x", + "url": "https://x.com/autonolas" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/autonolas/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xFEF5d947472e72Efbb2E388c730B7428406F2F95/logo.png b/blockchains/polygon/assets/0xFEF5d947472e72Efbb2E388c730B7428406F2F95/logo.png new file mode 100644 index 0000000000000..d18680cfc276b Binary files /dev/null and b/blockchains/polygon/assets/0xFEF5d947472e72Efbb2E388c730B7428406F2F95/logo.png differ diff --git a/blockchains/polygon/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/info.json b/blockchains/polygon/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/info.json new file mode 100644 index 0000000000000..779d888010ce9 --- /dev/null +++ b/blockchains/polygon/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/info.json @@ -0,0 +1,28 @@ +{ + "name": "Folks Finance", + "type": "POLYGON", + "symbol": "FOLKS", + "decimals": 6, + "website": "https://folks.finance", + "description": "Folks Finance is a crosschain decentralized finance (DeFi) protocol that enables users to supply, borrow, and manage digital assets across multiple blockchains from a single platform.", + "explorer": "https://polygonscan.com/token/0xff7f8f301f7a706e3cfd3d2275f5dc0b9ee8009b", + "status": "active", + "id": "0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B", + "links": [ + { + "name": "x", + "url": "https://x.com/FolksFinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/folks-finance/" + }, + { + "name": "whitepaper", + "url": "https://docs.xapp.folks.finance/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/logo.png b/blockchains/polygon/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/logo.png new file mode 100644 index 0000000000000..ea3dae362320d Binary files /dev/null and b/blockchains/polygon/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/logo.png differ diff --git a/blockchains/polygon/assets/0xFbdd194376de19a88118e84E279b977f165d01b8/info.json b/blockchains/polygon/assets/0xFbdd194376de19a88118e84E279b977f165d01b8/info.json index ee218aea74338..039352f2549cd 100644 --- a/blockchains/polygon/assets/0xFbdd194376de19a88118e84E279b977f165d01b8/info.json +++ b/blockchains/polygon/assets/0xFbdd194376de19a88118e84E279b977f165d01b8/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/beefyfinance" }, { - "name": "twitter", - "url": "https://twitter.com/beefyfinance" + "name": "x", + "url": "https://x.com/beefyfinance" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0xa1428174F516F527fafdD146b883bB4428682737/info.json b/blockchains/polygon/assets/0xa1428174F516F527fafdD146b883bB4428682737/info.json new file mode 100644 index 0000000000000..5e2a4bfb9661e --- /dev/null +++ b/blockchains/polygon/assets/0xa1428174F516F527fafdD146b883bB4428682737/info.json @@ -0,0 +1,34 @@ +{ + "name": "SuperVerse", + "symbol": "SUPER", + "type": "POLYGON", + "decimals": 18, + "description": "SuperVerse is a cross-chain DeFi protocol that allows users to deploy crypto and NFT farms with no code required!", + "website": "https://www.superverse.co", + "explorer": "https://polygonscan.com/token/0xa1428174f516f527fafdd146b883bb4428682737", + "status": "active", + "id": "0xa1428174F516F527fafdD146b883bB4428682737", + "links": [ + { + "name": "telegram", + "url": "https://t.me/SuperVerseDAO" + }, + { + "name": "x", + "url": "https://x.com/SuperVerseDAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/superfarm/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/superfarm/" + } + ], + "tags": [ + "gamefi", + "staking", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xa1428174F516F527fafdD146b883bB4428682737/logo.png b/blockchains/polygon/assets/0xa1428174F516F527fafdD146b883bB4428682737/logo.png new file mode 100644 index 0000000000000..d74002d831d02 Binary files /dev/null and b/blockchains/polygon/assets/0xa1428174F516F527fafdD146b883bB4428682737/logo.png differ diff --git a/blockchains/polygon/assets/0xa3Fa99A148fA48D14Ed51d610c367C61876997F1/info.json b/blockchains/polygon/assets/0xa3Fa99A148fA48D14Ed51d610c367C61876997F1/info.json index eb5eff6ad6e30..67c6c300b4ced 100644 --- a/blockchains/polygon/assets/0xa3Fa99A148fA48D14Ed51d610c367C61876997F1/info.json +++ b/blockchains/polygon/assets/0xa3Fa99A148fA48D14Ed51d610c367C61876997F1/info.json @@ -14,8 +14,8 @@ "url": "https://coingecko.com/en/coins/mimatic/" }, { - "name": "twitter", - "url": "https://twitter.com/0xLaoZi" + "name": "x", + "url": "https://x.com/0xLaoZi" }, { "name": "discord", diff --git a/blockchains/polygon/assets/0xa683ab3D0CCb5f236d9dF27F76FCf64cfD541b30/info.json b/blockchains/polygon/assets/0xa683ab3D0CCb5f236d9dF27F76FCf64cfD541b30/info.json new file mode 100644 index 0000000000000..3abb4785fe08d --- /dev/null +++ b/blockchains/polygon/assets/0xa683ab3D0CCb5f236d9dF27F76FCf64cfD541b30/info.json @@ -0,0 +1,32 @@ +{ + "name": "NeutralAI", + "type": "POLYGON", + "symbol": "USDN", + "decimals": 18, + "website": "https://neutralai.io/", + "description": "USDN operates on a decentralized and transparent smart contract infrastructure, ensuring stability, security, and efficiency. The smart contracts are deployed on multiple blockchain networks, supporting key functionalities.", + "explorer": "https://polygonscan.com/token/0xa683ab3D0CCb5f236d9dF27F76FCf64cfD541b30", + "status": "active", + "id": "0xa683ab3D0CCb5f236d9dF27F76FCf64cfD541b30", + "links": [ + { + "name": "x", + "url": "https://x.com/neutralai_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/neutral-ai/" + }, + { + "name": "github", + "url": "https://github.com/neutralai" + }, + { + "name": "telegram", + "url": "https://t.me/neutralai_io" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xa683ab3D0CCb5f236d9dF27F76FCf64cfD541b30/logo.png b/blockchains/polygon/assets/0xa683ab3D0CCb5f236d9dF27F76FCf64cfD541b30/logo.png new file mode 100644 index 0000000000000..ac9cd453e4aa4 Binary files /dev/null and b/blockchains/polygon/assets/0xa683ab3D0CCb5f236d9dF27F76FCf64cfD541b30/logo.png differ diff --git a/blockchains/polygon/assets/0xa9f37D84c856fDa3812ad0519Dad44FA0a3Fe207/info.json b/blockchains/polygon/assets/0xa9f37D84c856fDa3812ad0519Dad44FA0a3Fe207/info.json new file mode 100644 index 0000000000000..1b84c473bd005 --- /dev/null +++ b/blockchains/polygon/assets/0xa9f37D84c856fDa3812ad0519Dad44FA0a3Fe207/info.json @@ -0,0 +1,21 @@ +{ + "name": "Enzyme", + "website": "https://melonport.com", + "description": "Melon is an Ethereum-based protocol for decentralized on-chain asset management.", + "explorer": "https://polygonscan.com/token/0xa9f37d84c856fda3812ad0519dad44fa0a3fe207", + "type": "POLYGON", + "symbol": "MLN", + "decimals": 18, + "status": "active", + "id": "0xa9f37D84c856fDa3812ad0519Dad44FA0a3Fe207", + "links": [ + { + "name": "x", + "url": "https://x.com/enzymefinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/enzyme/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xa9f37D84c856fDa3812ad0519Dad44FA0a3Fe207/logo.png b/blockchains/polygon/assets/0xa9f37D84c856fDa3812ad0519Dad44FA0a3Fe207/logo.png new file mode 100644 index 0000000000000..3c7144e4b7655 Binary files /dev/null and b/blockchains/polygon/assets/0xa9f37D84c856fDa3812ad0519Dad44FA0a3Fe207/logo.png differ diff --git a/blockchains/polygon/assets/0xaAa5B9e6c589642f98a1cDA99B9D024B8407285A/info.json b/blockchains/polygon/assets/0xaAa5B9e6c589642f98a1cDA99B9D024B8407285A/info.json index f7b49434a4059..8a12dcd8e2e3c 100644 --- a/blockchains/polygon/assets/0xaAa5B9e6c589642f98a1cDA99B9D024B8407285A/info.json +++ b/blockchains/polygon/assets/0xaAa5B9e6c589642f98a1cDA99B9D024B8407285A/info.json @@ -10,8 +10,8 @@ "id": "0xaAa5B9e6c589642f98a1cDA99B9D024B8407285A", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ironfinance" + "name": "x", + "url": "https://x.com/ironfinance" }, { "name": "github", diff --git a/blockchains/polygon/assets/0xaD2eFE464c4F3b99255c594d0091e938D3bcDF97/info.json b/blockchains/polygon/assets/0xaD2eFE464c4F3b99255c594d0091e938D3bcDF97/info.json new file mode 100644 index 0000000000000..bfa506273927a --- /dev/null +++ b/blockchains/polygon/assets/0xaD2eFE464c4F3b99255c594d0091e938D3bcDF97/info.json @@ -0,0 +1,21 @@ +{ + "name": "300FIT Network", + "type": "POLYGON", + "symbol": "FIT", + "decimals": 18, + "website": "https://300fit01.imweb.me/", + "description": "Web3 sports leagues allow users to participate in sports leagues by establishing teams, drafting and trading player NFTs. It is operated in real-time with My Health data collected through users’ own walking and will be linked to various sports data in the future to expand the ecosystem.", + "explorer": "https://polygonscan.com/token/0xad2efe464c4f3b99255c594d0091e938d3bcdf97", + "status": "active", + "id": "0xaD2eFE464c4F3b99255c594d0091e938D3bcDF97", + "links": [ + { + "name": "x", + "url": "https://x.com/300FIT_Official" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/300fit-network/" + } + ] +} diff --git a/blockchains/polygon/assets/0xaD2eFE464c4F3b99255c594d0091e938D3bcDF97/logo.png b/blockchains/polygon/assets/0xaD2eFE464c4F3b99255c594d0091e938D3bcDF97/logo.png new file mode 100644 index 0000000000000..0040a021da0dc Binary files /dev/null and b/blockchains/polygon/assets/0xaD2eFE464c4F3b99255c594d0091e938D3bcDF97/logo.png differ diff --git a/blockchains/polygon/assets/0xb02eF03245fc7DF987BBd876768E6d441b7099B6/info.json b/blockchains/polygon/assets/0xb02eF03245fc7DF987BBd876768E6d441b7099B6/info.json new file mode 100644 index 0000000000000..17d2e65df5afc --- /dev/null +++ b/blockchains/polygon/assets/0xb02eF03245fc7DF987BBd876768E6d441b7099B6/info.json @@ -0,0 +1,17 @@ +{ + "name": "Satoshi Airline", + "website": "https://satoshiair.xyz/", + "description": "A FLY2EARN platform with Social-Fi and Game-Fi elements. Earn token rewards when traveling by air and generate earnings by renting your own planes.", + "explorer": "https://polygonscan.com/token/0xb02ef03245fc7df987bbd876768e6d441b7099b6", + "type": "POLYGON", + "symbol": "JET", + "decimals": 8, + "status": "active", + "id": "0xb02eF03245fc7DF987BBd876768E6d441b7099B6", + "links": [ + { + "name": "x", + "url": "https://x.com/Satoshiairlines" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xb02eF03245fc7DF987BBd876768E6d441b7099B6/logo.png b/blockchains/polygon/assets/0xb02eF03245fc7DF987BBd876768E6d441b7099B6/logo.png new file mode 100644 index 0000000000000..de043850af3a4 Binary files /dev/null and b/blockchains/polygon/assets/0xb02eF03245fc7DF987BBd876768E6d441b7099B6/logo.png differ diff --git a/blockchains/polygon/assets/0xb33EaAd8d922B1083446DC23f610c2567fB5180f/info.json b/blockchains/polygon/assets/0xb33EaAd8d922B1083446DC23f610c2567fB5180f/info.json index 76a9b730327ba..e1367240d2402 100644 --- a/blockchains/polygon/assets/0xb33EaAd8d922B1083446DC23f610c2567fB5180f/info.json +++ b/blockchains/polygon/assets/0xb33EaAd8d922B1083446DC23f610c2567fB5180f/info.json @@ -1,5 +1,5 @@ { - "name": "Uniswap (PoS)", + "name": "Uniswap", "website": "https://uniswap.org/", "description": "The Uniswap protocol empowers developers, liquidity providers and traders to participate in a financial marketplace that is open and accessible to all.", "explorer": "https://polygonscan.com/token/0xb33eaad8d922b1083446dc23f610c2567fb5180f", @@ -14,8 +14,8 @@ "url": "https://discord.com/FCfyBSbCU5" }, { - "name": "twitter", - "url": "https://twitter.com/UniswapProtocol" + "name": "x", + "url": "https://x.com/UniswapProtocol" }, { "name": "coingecko", diff --git a/blockchains/polygon/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json b/blockchains/polygon/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json index af7a42d4f97d1..213906c6b22d4 100644 --- a/blockchains/polygon/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json +++ b/blockchains/polygon/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json @@ -10,8 +10,8 @@ "id": "0xbBD7B847C6d0d0B5691518a363194D71426475F1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/everrise" + "name": "x", + "url": "https://x.com/everrise" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0xbFc70507384047Aa74c29Cdc8c5Cb88D0f7213AC/info.json b/blockchains/polygon/assets/0xbFc70507384047Aa74c29Cdc8c5Cb88D0f7213AC/info.json new file mode 100644 index 0000000000000..a09011c4d6ecb --- /dev/null +++ b/blockchains/polygon/assets/0xbFc70507384047Aa74c29Cdc8c5Cb88D0f7213AC/info.json @@ -0,0 +1,21 @@ +{ + "name": "Artificial Liquid Intelligence", + "type": "POLYGON", + "symbol": "ALI", + "decimals": 18, + "website": "https://alethea.ai/", + "description": "Alethea AI is building a decentralized iNFT Protocol to create an Intelligent Metaverse inhabited by Interactive and Intelligent NFTs. Anyone can use the Alethea AI protocol to Create, Train and Earn from their iNFTs in the world’s first Intelligent Metaverse known as Noah’s Ark.", + "explorer": "https://polygonscan.com/token/0xbfc70507384047aa74c29cdc8c5cb88d0f7213ac", + "status": "active", + "id": "0xbFc70507384047Aa74c29Cdc8c5Cb88D0f7213AC", + "links": [ + { + "name": "x", + "url": "https://x.com/real_alethea" + }, + { + "name": "telegram", + "url": "https://t.me/alethea_ai" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xbFc70507384047Aa74c29Cdc8c5Cb88D0f7213AC/logo.png b/blockchains/polygon/assets/0xbFc70507384047Aa74c29Cdc8c5Cb88D0f7213AC/logo.png new file mode 100644 index 0000000000000..3a2b934f54ff9 Binary files /dev/null and b/blockchains/polygon/assets/0xbFc70507384047Aa74c29Cdc8c5Cb88D0f7213AC/logo.png differ diff --git a/blockchains/polygon/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/info.json b/blockchains/polygon/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/info.json new file mode 100644 index 0000000000000..82bb828783da0 --- /dev/null +++ b/blockchains/polygon/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/info.json @@ -0,0 +1,17 @@ +{ + "name": "OX", + "type": "POLYGON", + "symbol": "OX", + "decimals": 18, + "website": "https://ox.fun/", + "description": "OX.FUN is a derivatives exchange that allows users to trade perps with their OX tokens.", + "explorer": "https://polygonscan.com/token/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea", + "status": "active", + "id": "0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea", + "links": [ + { + "name": "x", + "url": "https://x.com/OXFUNHQ" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/logo.png b/blockchains/polygon/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/logo.png new file mode 100644 index 0000000000000..d66f3d33ef432 Binary files /dev/null and b/blockchains/polygon/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/logo.png differ diff --git a/blockchains/polygon/assets/0xc1c93D475dc82Fe72DBC7074d55f5a734F8cEEAE/info.json b/blockchains/polygon/assets/0xc1c93D475dc82Fe72DBC7074d55f5a734F8cEEAE/info.json index 54c6763ea369d..043fc1a699d44 100644 --- a/blockchains/polygon/assets/0xc1c93D475dc82Fe72DBC7074d55f5a734F8cEEAE/info.json +++ b/blockchains/polygon/assets/0xc1c93D475dc82Fe72DBC7074d55f5a734F8cEEAE/info.json @@ -10,8 +10,8 @@ "id": "0xc1c93D475dc82Fe72DBC7074d55f5a734F8cEEAE", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PegaxyOfficial" + "name": "x", + "url": "https://x.com/PegaxyOfficial" }, { "name": "github", diff --git a/blockchains/polygon/assets/0xc2132D05D31c914a87C6611C10748AEb04B58e8F/info.json b/blockchains/polygon/assets/0xc2132D05D31c914a87C6611C10748AEb04B58e8F/info.json index 695972888e704..8b166bb5b7ce0 100644 --- a/blockchains/polygon/assets/0xc2132D05D31c914a87C6611C10748AEb04B58e8F/info.json +++ b/blockchains/polygon/assets/0xc2132D05D31c914a87C6611C10748AEb04B58e8F/info.json @@ -14,12 +14,15 @@ "url": "https://facebook.com/tether.to/" }, { - "name": "twitter", - "url": "https://twitter.com/Tether_to/" + "name": "x", + "url": "https://x.com/Tether_to/" }, { "name": "coinmarketcap", "url": "https://coinmarketcap.com/ru/currencies/tether/" } + ], + "tags": [ + "stablecoin" ] } \ No newline at end of file diff --git a/blockchains/polygon/assets/0xc3FdbadC7c795EF1D6Ba111e06fF8F16A20Ea539/info.json b/blockchains/polygon/assets/0xc3FdbadC7c795EF1D6Ba111e06fF8F16A20Ea539/info.json index 71796728b9618..a795e43c264fe 100644 --- a/blockchains/polygon/assets/0xc3FdbadC7c795EF1D6Ba111e06fF8F16A20Ea539/info.json +++ b/blockchains/polygon/assets/0xc3FdbadC7c795EF1D6Ba111e06fF8F16A20Ea539/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/eepdev" }, { - "name": "twitter", - "url": "https://twitter.com/AdamantVault" + "name": "x", + "url": "https://x.com/AdamantVault" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0xc48F61a288A08F1B80c2edd74652e1276B6A168c/info.json b/blockchains/polygon/assets/0xc48F61a288A08F1B80c2edd74652e1276B6A168c/info.json index 67d12e4e9f855..7f32598fdc297 100644 --- a/blockchains/polygon/assets/0xc48F61a288A08F1B80c2edd74652e1276B6A168c/info.json +++ b/blockchains/polygon/assets/0xc48F61a288A08F1B80c2edd74652e1276B6A168c/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/gysr-io" }, { - "name": "twitter", - "url": "https://twitter.com/gysr_io" + "name": "x", + "url": "https://x.com/gysr_io" }, { "name": "telegram", @@ -49,4 +49,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xc8bcb58caEf1bE972C0B638B1dD8B0748Fdc8A44/info.json b/blockchains/polygon/assets/0xc8bcb58caEf1bE972C0B638B1dD8B0748Fdc8A44/info.json index a21e913e6b22d..b95146aa4b129 100644 --- a/blockchains/polygon/assets/0xc8bcb58caEf1bE972C0B638B1dD8B0748Fdc8A44/info.json +++ b/blockchains/polygon/assets/0xc8bcb58caEf1bE972C0B638B1dD8B0748Fdc8A44/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/pearzap" }, { - "name": "twitter", - "url": "https://twitter.com/pearzap" + "name": "x", + "url": "https://x.com/pearzap" }, { "name": "coingecko", diff --git a/blockchains/polygon/assets/0xcDf937995A55a9AB551D81b463AC0f7F02795368/info.json b/blockchains/polygon/assets/0xcDf937995A55a9AB551D81b463AC0f7F02795368/info.json new file mode 100644 index 0000000000000..24373b1af182d --- /dev/null +++ b/blockchains/polygon/assets/0xcDf937995A55a9AB551D81b463AC0f7F02795368/info.json @@ -0,0 +1,21 @@ +{ + "name": "VSC", + "type": "POLYGON", + "symbol": "VSC", + "decimals": 18, + "description": "VSC is a blockchain built to solve the issue of health data collection, validation, distribution, and ownership. VSC serve the IoT, Wearable technology, and Heath Data industry.", + "website": "https://www.vyvo.com/", + "explorer": "https://polygonscan.com/token/0xcdf937995a55a9ab551d81b463ac0f7f02795368", + "id": "0xcDf937995A55a9AB551D81b463AC0f7F02795368", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/VyvoSmartChain" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vyvo-smart-chain/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xcDf937995A55a9AB551D81b463AC0f7F02795368/logo.png b/blockchains/polygon/assets/0xcDf937995A55a9AB551D81b463AC0f7F02795368/logo.png new file mode 100644 index 0000000000000..d290d98d86880 Binary files /dev/null and b/blockchains/polygon/assets/0xcDf937995A55a9AB551D81b463AC0f7F02795368/logo.png differ diff --git a/blockchains/polygon/assets/0xccBe9B810d6574701d324fD6DbE0A1b68f9d5bf7/info.json b/blockchains/polygon/assets/0xccBe9B810d6574701d324fD6DbE0A1b68f9d5bf7/info.json index f49270b89f529..1dd1bfd61420c 100644 --- a/blockchains/polygon/assets/0xccBe9B810d6574701d324fD6DbE0A1b68f9d5bf7/info.json +++ b/blockchains/polygon/assets/0xccBe9B810d6574701d324fD6DbE0A1b68f9d5bf7/info.json @@ -14,8 +14,8 @@ "url": "https://discord.com/invite/hFNRy3t" }, { - "name": "twitter", - "url": "https://twitter.com/StackerVentures" + "name": "x", + "url": "https://x.com/StackerVentures" }, { "name": "coingecko", diff --git a/blockchains/polygon/assets/0xcf32822ff397Ef82425153a9dcb726E5fF61DCA7/info.json b/blockchains/polygon/assets/0xcf32822ff397Ef82425153a9dcb726E5fF61DCA7/info.json index 11eb901718432..e70abffc38b26 100644 --- a/blockchains/polygon/assets/0xcf32822ff397Ef82425153a9dcb726E5fF61DCA7/info.json +++ b/blockchains/polygon/assets/0xcf32822ff397Ef82425153a9dcb726E5fF61DCA7/info.json @@ -14,8 +14,8 @@ "url": "https://discord.com/p5ZYTVJeQz" }, { - "name": "twitter", - "url": "https://twitter.com/GAMEEToken" + "name": "x", + "url": "https://x.com/GAMEEToken" }, { "name": "coingecko", diff --git a/blockchains/polygon/assets/0xd0258a3fD00f38aa8090dfee343f10A9D4d30D3F/info.json b/blockchains/polygon/assets/0xd0258a3fD00f38aa8090dfee343f10A9D4d30D3F/info.json index 38a8e11bfd1fd..05667b1d58692 100644 --- a/blockchains/polygon/assets/0xd0258a3fD00f38aa8090dfee343f10A9D4d30D3F/info.json +++ b/blockchains/polygon/assets/0xd0258a3fD00f38aa8090dfee343f10A9D4d30D3F/info.json @@ -10,8 +10,8 @@ "id": "0xd0258a3fD00f38aa8090dfee343f10A9D4d30D3F", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VoxiesNFT" + "name": "x", + "url": "https://x.com/VoxiesNFT" }, { "name": "discord", diff --git a/blockchains/polygon/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json b/blockchains/polygon/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json index 6189db96d808d..c7b3d16c42789 100644 --- a/blockchains/polygon/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json +++ b/blockchains/polygon/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json @@ -10,8 +10,8 @@ "id": "0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189", "links": [ { - "name": "twitter", - "url": "https://twitter.com/OkcashCrypto" + "name": "x", + "url": "https://x.com/OkcashCrypto" }, { "name": "github", @@ -33,4 +33,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xdDa7b23D2D72746663E7939743f929a3d85FC975/info.json b/blockchains/polygon/assets/0xdDa7b23D2D72746663E7939743f929a3d85FC975/info.json new file mode 100644 index 0000000000000..afb12c34556e5 --- /dev/null +++ b/blockchains/polygon/assets/0xdDa7b23D2D72746663E7939743f929a3d85FC975/info.json @@ -0,0 +1,18 @@ +{ + "name": "Ambire AdEx", + "website": "https://adex.network", + "description": "The AdEx Network aims to build a decentralized solution for digital advertising that reduces fraud, improves budgets, and protects user privacy.", + "explorer": "https://polygonscan.com/token/0xdDa7b23D2D72746663E7939743f929a3d85FC975", + "research": "https://research.binance.com/en/projects/adex-network", + "type": "POLYGON", + "symbol": "ADX", + "decimals": 18, + "status": "active", + "id": "0xdDa7b23D2D72746663E7939743f929a3d85FC975", + "links": [ + { + "name": "x", + "url": "https://x.com/AdExNetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xdDa7b23D2D72746663E7939743f929a3d85FC975/logo.png b/blockchains/polygon/assets/0xdDa7b23D2D72746663E7939743f929a3d85FC975/logo.png new file mode 100644 index 0000000000000..c219b24e34f30 Binary files /dev/null and b/blockchains/polygon/assets/0xdDa7b23D2D72746663E7939743f929a3d85FC975/logo.png differ diff --git a/blockchains/polygon/assets/0xdF7837DE1F2Fa4631D716CF2502f8b230F1dcc32/info.json b/blockchains/polygon/assets/0xdF7837DE1F2Fa4631D716CF2502f8b230F1dcc32/info.json index c16d64bda384f..97a203cee3764 100644 --- a/blockchains/polygon/assets/0xdF7837DE1F2Fa4631D716CF2502f8b230F1dcc32/info.json +++ b/blockchains/polygon/assets/0xdF7837DE1F2Fa4631D716CF2502f8b230F1dcc32/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/telcoin" }, { - "name": "twitter", - "url": "https://twitter.com/telcoin_team" + "name": "x", + "url": "https://x.com/telcoin_team" }, { "name": "coingecko", diff --git a/blockchains/polygon/assets/0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034/info.json b/blockchains/polygon/assets/0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034/info.json new file mode 100644 index 0000000000000..1c691997f3351 --- /dev/null +++ b/blockchains/polygon/assets/0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Banano", + "website": "https://bsc.banano.cc/", + "description": "Wrapped Banano is a token pegged to Banano, enabling to wrap/unwrap your Banano on the Polygon network.", + "explorer": "https://polygonscan.com/token/0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034", + "type": "POLYGON", + "symbol": "wBAN", + "decimals": 18, + "status": "active", + "id": "0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/bananocoin" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/banano/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034/logo.png b/blockchains/polygon/assets/0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034/logo.png new file mode 100644 index 0000000000000..cc05199544a7e Binary files /dev/null and b/blockchains/polygon/assets/0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034/logo.png differ diff --git a/blockchains/polygon/assets/0xe580074A10360404AF3ABfe2d524D5806D993ea3/info.json b/blockchains/polygon/assets/0xe580074A10360404AF3ABfe2d524D5806D993ea3/info.json index dc6150c3ec1a2..fb0b3ca289bf8 100644 --- a/blockchains/polygon/assets/0xe580074A10360404AF3ABfe2d524D5806D993ea3/info.json +++ b/blockchains/polygon/assets/0xe580074A10360404AF3ABfe2d524D5806D993ea3/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/PayBolt" }, { - "name": "twitter", - "url": "https://twitter.com/PayBoltofficial" + "name": "x", + "url": "https://x.com/PayBoltofficial" }, { "name": "youtube", diff --git a/blockchains/polygon/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json b/blockchains/polygon/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json new file mode 100644 index 0000000000000..02dc467bc9f5d --- /dev/null +++ b/blockchains/polygon/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json @@ -0,0 +1,25 @@ +{ + "name": "Matic ABBC", + "type": "POLYGON", + "symbol": "MABBC", + "decimals": 8, + "website": "https://abbcswap.com/", + "description": "ABBC Swap is a platform that allows users to seamlessly swap their ABBC from the ABBC mainnet using Aladdin Wallet and Aladdin Pro wallet apps into Polygon ABBC pegged.", + "explorer": "https://polygonscan.com/token/0xe83ce6bfb580583bd6a62b4be7b34fc25f02910d", + "status": "active", + "id": "0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D", + "links": [ + { + "name": "telegram", + "url": "https://t.me/abbcfoundation" + }, + { + "name": "x", + "url": "https://x.com/abbcfoundation" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abbc-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png b/blockchains/polygon/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png new file mode 100644 index 0000000000000..9259df4c30a91 Binary files /dev/null and b/blockchains/polygon/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png differ diff --git a/blockchains/polygon/assets/0xeB51D9A39AD5EEF215dC0Bf39a8821ff804A0F01/info.json b/blockchains/polygon/assets/0xeB51D9A39AD5EEF215dC0Bf39a8821ff804A0F01/info.json new file mode 100644 index 0000000000000..1cbefed883d52 --- /dev/null +++ b/blockchains/polygon/assets/0xeB51D9A39AD5EEF215dC0Bf39a8821ff804A0F01/info.json @@ -0,0 +1,17 @@ +{ + "name": "Longinus", + "type": "POLYGON", + "symbol": "LGNS", + "decimals": 9, + "website": "https://originworld.org/", + "description": "ORIGIN is a DeFi 3.0 protocol based on the algorithmic non-stablecoin LGNS, aiming to establish the world's first privacy-anonymous stablecoin payment ecosystem, set global financial benchmarks, and guide future financial development.", + "explorer": "https://polygonscan.com/token/0xeb51d9a39ad5eef215dc0bf39a8821ff804a0f01", + "status": "active", + "id": "0xeB51D9A39AD5EEF215dC0Bf39a8821ff804A0F01", + "links": [ + { + "name": "x", + "url": "https://x.com/SaluteOrigin" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xeB51D9A39AD5EEF215dC0Bf39a8821ff804A0F01/logo.png b/blockchains/polygon/assets/0xeB51D9A39AD5EEF215dC0Bf39a8821ff804A0F01/logo.png new file mode 100644 index 0000000000000..d77700e232f3e Binary files /dev/null and b/blockchains/polygon/assets/0xeB51D9A39AD5EEF215dC0Bf39a8821ff804A0F01/logo.png differ diff --git a/blockchains/polygon/assets/0xef938b6da8576a896f6E0321ef80996F4890f9c4/info.json b/blockchains/polygon/assets/0xef938b6da8576a896f6E0321ef80996F4890f9c4/info.json index 7140bc46832ef..ac17ad17fd42a 100644 --- a/blockchains/polygon/assets/0xef938b6da8576a896f6E0321ef80996F4890f9c4/info.json +++ b/blockchains/polygon/assets/0xef938b6da8576a896f6E0321ef80996F4890f9c4/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/decentralgames" + "name": "x", + "url": "https://x.com/decentralgames" }, { "name": "github", @@ -29,4 +29,4 @@ "url": "https://coinmarketcap.com/currencies/decentral-games-new/" } ] -} +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/info.json b/blockchains/polygon/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/info.json index 2f16f323e4460..e8cb242978d3a 100644 --- a/blockchains/polygon/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/info.json +++ b/blockchains/polygon/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/info.json @@ -6,12 +6,12 @@ "website": "https://revolt.cultdao.io/", "description": "Revolt is CULT DAOs first ecosystem token, and has been built on the Polygon network with 0.4% taxation. RVLT seeks to support The Many individuals who are working towards the same goal of helping the CULT ecosystem.", "explorer": "https://polygonscan.com/token/0xf0f9D895aCa5c8678f706FB8216fa22957685A13", - "status": "active", + "status": "abandoned", "id": "0xf0f9D895aCa5c8678f706FB8216fa22957685A13", "links": [ { - "name": "twitter", - "url": "https://twitter.com/wearecultdao" + "name": "x", + "url": "https://x.com/wearecultdao" }, { "name": "github", diff --git a/blockchains/polygon/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/logo.png b/blockchains/polygon/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/logo.png deleted file mode 100644 index e57ca28fc9381..0000000000000 Binary files a/blockchains/polygon/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/logo.png and /dev/null differ diff --git a/blockchains/polygon/assets/0xf14fbC6B30e2c4BC05A1D4fbE34bf9f14313309D/info.json b/blockchains/polygon/assets/0xf14fbC6B30e2c4BC05A1D4fbE34bf9f14313309D/info.json index 76ad274260f68..00783a91d282c 100644 --- a/blockchains/polygon/assets/0xf14fbC6B30e2c4BC05A1D4fbE34bf9f14313309D/info.json +++ b/blockchains/polygon/assets/0xf14fbC6B30e2c4BC05A1D4fbE34bf9f14313309D/info.json @@ -10,8 +10,8 @@ "id": "0xf14fbC6B30e2c4BC05A1D4fbE34bf9f14313309D", "links": [ { - "name": "twitter", - "url": "https://twitter.com/akashnet_" + "name": "x", + "url": "https://x.com/akashnet_" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0xf1c1A3C2481A3a8A3f173A9ab5Ade275292A6fA3/info.json b/blockchains/polygon/assets/0xf1c1A3C2481A3a8A3f173A9ab5Ade275292A6fA3/info.json new file mode 100644 index 0000000000000..9f7491c971e16 --- /dev/null +++ b/blockchains/polygon/assets/0xf1c1A3C2481A3a8A3f173A9ab5Ade275292A6fA3/info.json @@ -0,0 +1,21 @@ +{ + "name": "BLOCKv", + "type": "POLYGON", + "symbol": "VEE", + "decimals": 18, + "website": "https://blockv.io/", + "description": "Create and Public Digital virtual goods on the blockchain", + "explorer": "https://polygonscan.com/token/0xf1c1a3c2481a3a8a3f173a9ab5ade275292a6fa3", + "status": "active", + "id": "0xf1c1A3C2481A3a8A3f173A9ab5Ade275292A6fA3", + "links": [ + { + "name": "x", + "url": "https://x.com/blockv_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/blockv/" + } + ] +} diff --git a/blockchains/polygon/assets/0xf1c1A3C2481A3a8A3f173A9ab5Ade275292A6fA3/logo.png b/blockchains/polygon/assets/0xf1c1A3C2481A3a8A3f173A9ab5Ade275292A6fA3/logo.png new file mode 100644 index 0000000000000..9c41a2d4d6286 Binary files /dev/null and b/blockchains/polygon/assets/0xf1c1A3C2481A3a8A3f173A9ab5Ade275292A6fA3/logo.png differ diff --git a/blockchains/polygon/assets/0xf6372cDb9c1d3674E83842e3800F2A62aC9F3C66/info.json b/blockchains/polygon/assets/0xf6372cDb9c1d3674E83842e3800F2A62aC9F3C66/info.json index 8d2910c53e51e..4e4d07dc311dc 100644 --- a/blockchains/polygon/assets/0xf6372cDb9c1d3674E83842e3800F2A62aC9F3C66/info.json +++ b/blockchains/polygon/assets/0xf6372cDb9c1d3674E83842e3800F2A62aC9F3C66/info.json @@ -1,5 +1,5 @@ { - "name": "IoTeX Network", + "name": "IoTeX", "website": "https://iotex.io", "description": "IoTeX is the next generation of the IoT-oriented blockchain platform with vast scalability, privacy, isolatability, and developability. IoTeX connects the physical world, block by block.", "research": "https://iotex.io/research", @@ -18,8 +18,8 @@ "url": "https://github.com/iotexproject/iotex-core" }, { - "name": "twitter", - "url": "https://twitter.com/iotex_io" + "name": "x", + "url": "https://x.com/iotex_io" }, { "name": "telegram", diff --git a/blockchains/polygon/assets/0xf8DDA7b3748254d562f476119B0aE6044bAd10a5/info.json b/blockchains/polygon/assets/0xf8DDA7b3748254d562f476119B0aE6044bAd10a5/info.json new file mode 100644 index 0000000000000..31c300b54f0d9 --- /dev/null +++ b/blockchains/polygon/assets/0xf8DDA7b3748254d562f476119B0aE6044bAd10a5/info.json @@ -0,0 +1,21 @@ +{ + "name": "Sirius by Humanity", + "type": "POLYGON", + "symbol": "SRS", + "decimals": 18, + "website": "https://humanity-protocol.com", + "description": "Sirius (SRS) is the native token of the revolutionary Humanity Protocol ecosystem, designed to transform Africa's economy and empower millions of people. SRS is at the core of our decentralized platform, facilitating seamless transactions, fueling various services, and providing access to a wealth of opportunities.", + "explorer": "https://polygonscan.com/token/0xf8dda7b3748254d562f476119b0ae6044bad10a5", + "status": "active", + "id": "0xf8DDA7b3748254d562f476119B0aE6044bAd10a5", + "links": [ + { + "name": "x", + "url": "https://x.com/HmntyProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/SRSbyHumanity" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xf8DDA7b3748254d562f476119B0aE6044bAd10a5/logo.png b/blockchains/polygon/assets/0xf8DDA7b3748254d562f476119B0aE6044bAd10a5/logo.png new file mode 100644 index 0000000000000..0aa4eded67753 Binary files /dev/null and b/blockchains/polygon/assets/0xf8DDA7b3748254d562f476119B0aE6044bAd10a5/logo.png differ diff --git a/blockchains/polygon/assets/0xfad70FD116559914240faB82b0078c4E82a6a1B8/info.json b/blockchains/polygon/assets/0xfad70FD116559914240faB82b0078c4E82a6a1B8/info.json index 1ef47907f71cc..3fe68fe66960b 100644 --- a/blockchains/polygon/assets/0xfad70FD116559914240faB82b0078c4E82a6a1B8/info.json +++ b/blockchains/polygon/assets/0xfad70FD116559914240faB82b0078c4E82a6a1B8/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/CremePieSwap" }, { - "name": "twitter", - "url": "https://twitter.com/CremePieSwap" + "name": "x", + "url": "https://x.com/CremePieSwap" }, { "name": "whitepaper", diff --git a/blockchains/polygon/assets/0xfb7f8A2C0526D01BFB00192781B7a7761841B16C/info.json b/blockchains/polygon/assets/0xfb7f8A2C0526D01BFB00192781B7a7761841B16C/info.json new file mode 100644 index 0000000000000..9dc0312be36ea --- /dev/null +++ b/blockchains/polygon/assets/0xfb7f8A2C0526D01BFB00192781B7a7761841B16C/info.json @@ -0,0 +1,66 @@ +{ + "name": "LandRocker", + "type": "POLYGON", + "symbol": "LRT", + "decimals": 18, + "website": "https://landrocker.io/", + "description": "LandRocker offers an infinite universe for discovery, space exploration, and combat in a free-to-play, multiplayer game. Players embark on missions across over 79 quintillion unique planets, each with distinct environments, ecosystems, and wildlife. They engage in battles against alien forces and gather rewards such as crypto tokens and crafting materials. Audited by Certik: https://skynet.certik.com/projects/landrocker", + "explorer": "https://polygonscan.com/token/0xfb7f8A2C0526D01BFB00192781B7a7761841B16C", + "status": "active", + "id": "0xfb7f8A2C0526D01BFB00192781B7a7761841B16C", + "links": [ + { + "name": "discord", + "url": "https://discord.com/invite/landrocker" + }, + { + "name": "medium", + "url": "https://landrocker.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/landrockerchat" + }, + { + "name": "github", + "url": "https://github.com/LandRocker/" + }, + { + "name": "telegram_news", + "url": "https://t.me/landrockerchat/180109" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.landrocker.io/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/landrocker/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/landrocker" + }, + { + "name": "youtube", + "url": "https://youtube.com/LandRocker" + }, + { + "name": "forum", + "url": "https://forum.landrocker.io/" + }, + { + "name": "blog", + "url": "https://landrocker.io/news" + }, + { + "name": "facebook", + "url": "https://facebook.com/LandRockergame" + } + ], + "tags": [ + "gamefi", + "nft", + "dapp" + ] +} diff --git a/blockchains/polygon/assets/0xfb7f8A2C0526D01BFB00192781B7a7761841B16C/logo.png b/blockchains/polygon/assets/0xfb7f8A2C0526D01BFB00192781B7a7761841B16C/logo.png new file mode 100644 index 0000000000000..5c4fa21dc098b Binary files /dev/null and b/blockchains/polygon/assets/0xfb7f8A2C0526D01BFB00192781B7a7761841B16C/logo.png differ diff --git a/blockchains/polygon/info/info.json b/blockchains/polygon/info/info.json index d88d2caa39dd4..a731ad1082c01 100644 --- a/blockchains/polygon/info/info.json +++ b/blockchains/polygon/info/info.json @@ -1,12 +1,12 @@ { - "name": "Polygon", + "name": "POL (ex-MATIC)", "website": "https://polygon.technology/", "short_description": "Polygon (Matic) strives to solve the scalability and usability issues, while not compromising on decentralization and leveraging the existing developer community and ecosystem", "description": "Polygon (Matic) strives to solve the scalability and usability issues, while not compromising on decentralization and leveraging the existing developer community and ecosystem", "explorer": "https://polygonscan.com/", "research": "https://docs.matic.network/", "type": "coin", - "symbol": "MATIC", + "symbol": "POL", "rpc_url": "https://polygon-rpc.com", "decimals": 18, "status": "active", @@ -16,8 +16,8 @@ "url": "https://github.com/maticnetwork/" }, { - "name": "twitter", - "url": "https://twitter.com/0xPolygon" + "name": "x", + "url": "https://x.com/0xPolygon" }, { "name": "reddit", @@ -28,4 +28,4 @@ "url": "https://github.com/maticnetwork/whitepaper" } ] -} +} \ No newline at end of file diff --git a/blockchains/polygon/info/square_logo.png b/blockchains/polygon/info/square_logo.png new file mode 100644 index 0000000000000..abea8510657bc Binary files /dev/null and b/blockchains/polygon/info/square_logo.png differ diff --git a/blockchains/polygon/tokenlist-extended.json b/blockchains/polygon/tokenlist-extended.json index daa0797a0b5c6..0de603029a013 100644 --- a/blockchains/polygon/tokenlist-extended.json +++ b/blockchains/polygon/tokenlist-extended.json @@ -34,7 +34,7 @@ "asset": "c966_t0xb33EaAd8d922B1083446DC23f610c2567fB5180f", "type": "POLYGON", "address": "0xb33EaAd8d922B1083446DC23f610c2567fB5180f", - "name": "Uniswap (PoS)", + "name": "Uniswap", "symbol": "UNI", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0xb33EaAd8d922B1083446DC23f610c2567fB5180f/logo.png" @@ -43,7 +43,7 @@ "asset": "c966_t0x0b3F868E0BE5597D5DB7fEB59E1CADBb0fdDa50a", "type": "POLYGON", "address": "0x0b3F868E0BE5597D5DB7fEB59E1CADBb0fdDa50a", - "name": "SushiToken (PoS)", + "name": "SushiSwap", "symbol": "SUSHI", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x0b3F868E0BE5597D5DB7fEB59E1CADBb0fdDa50a/logo.png" @@ -196,7 +196,7 @@ "asset": "c966_t0x172370d5Cd63279eFa6d502DAB29171933a610AF", "type": "POLYGON", "address": "0x172370d5Cd63279eFa6d502DAB29171933a610AF", - "name": "CRV (PoS)", + "name": "Curve DAO Token", "symbol": "CRV", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x172370d5Cd63279eFa6d502DAB29171933a610AF/logo.png" diff --git a/blockchains/polygon/tokenlist.json b/blockchains/polygon/tokenlist.json index f612ba4ee99b0..af5e8066d1529 100644 --- a/blockchains/polygon/tokenlist.json +++ b/blockchains/polygon/tokenlist.json @@ -21,9 +21,6 @@ { "base": "c966_t0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39" }, - { - "base": "c966_t0x831753DD7087CaC61aB5644b308642cc1c33Dc13" - }, { "base": "c966_t0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063" }, @@ -50,9 +47,6 @@ { "base": "c966_t0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619" }, - { - "base": "c966_t0x831753DD7087CaC61aB5644b308642cc1c33Dc13" - }, { "base": "c966_t0xc2132D05D31c914a87C6611C10748AEb04B58e8F" } @@ -62,8 +56,8 @@ "asset": "c966_t0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174", "type": "POLYGON", "address": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174", - "name": "USD Coin (PoS)", - "symbol": "USDC", + "name": "Bridged USD Coin (PoS)", + "symbol": "USDC.e", "decimals": 6, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174/logo.png", "pairs": [ @@ -102,7 +96,7 @@ "asset": "c966_t0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063", "type": "POLYGON", "address": "0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063", - "name": "(PoS) Dai Stablecoin", + "name": "Dai", "symbol": "DAI", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063/logo.png", @@ -116,27 +110,17 @@ "asset": "c966_t0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39", "type": "POLYGON", "address": "0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39", - "name": "ChainLink Token", + "name": "Chainlink", "symbol": "LINK", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39/logo.png", "pairs": [] }, - { - "asset": "c966_t0x831753DD7087CaC61aB5644b308642cc1c33Dc13", - "type": "POLYGON", - "address": "0x831753DD7087CaC61aB5644b308642cc1c33Dc13", - "name": "QuickSwap", - "symbol": "QUICK", - "decimals": 18, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x831753DD7087CaC61aB5644b308642cc1c33Dc13/logo.png", - "pairs": [] - }, { "asset": "c966_t0xD6DF932A45C0f255f85145f286eA0b292B21C90B", "type": "POLYGON", "address": "0xD6DF932A45C0f255f85145f286eA0b292B21C90B", - "name": "Aave (PoS)", + "name": "Aave", "symbol": "AAVE", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0xD6DF932A45C0f255f85145f286eA0b292B21C90B/logo.png", @@ -148,4 +132,4 @@ "minor": 0, "patch": 0 } -} \ No newline at end of file +} diff --git a/blockchains/polygonmumbai/info/info.json b/blockchains/polygonmumbai/info/info.json index a6fcc70c5f63b..9f574b9317c50 100644 --- a/blockchains/polygonmumbai/info/info.json +++ b/blockchains/polygonmumbai/info/info.json @@ -3,8 +3,8 @@ "website": "https://polygon.technology", "description": "The Alchemy Goerli faucet is free, fast, and does not require authentication, though you can optionally login to Alchemy to get an increased drip.", "explorer": "https://mumbai.polygonscan.com/", - "symbol": "MATIC", - "rpc_url": "https://matic-mumbai.chainstacklabs.com", + "symbol": "tMATIC", + "rpc_url": "https://polygon-testnet.public.blastapi.io", "type": "coin", "decimals": 18, "status": "active" diff --git a/blockchains/polygonmumbai/info/square_logo.png b/blockchains/polygonmumbai/info/square_logo.png new file mode 100644 index 0000000000000..abea8510657bc Binary files /dev/null and b/blockchains/polygonmumbai/info/square_logo.png differ diff --git a/blockchains/polygonzkevm/assets/0x1E4a5963aBFD975d8c9021ce480b42188849D41d/info.json b/blockchains/polygonzkevm/assets/0x1E4a5963aBFD975d8c9021ce480b42188849D41d/info.json index e94681d7aa049..a6059e9f847a9 100644 --- a/blockchains/polygonzkevm/assets/0x1E4a5963aBFD975d8c9021ce480b42188849D41d/info.json +++ b/blockchains/polygonzkevm/assets/0x1E4a5963aBFD975d8c9021ce480b42188849D41d/info.json @@ -14,8 +14,8 @@ "url": "https://coingecko.com/en/coins/tether/" }, { - "name": "twitter", - "url": "https://twitter.com/Tether_to" + "name": "x", + "url": "https://x.com/Tether_to" }, { "name": "coinmarketcap", diff --git a/blockchains/polygonzkevm/assets/0x22B21BedDef74FE62F031D2c5c8F7a9F8a4b304D/info.json b/blockchains/polygonzkevm/assets/0x22B21BedDef74FE62F031D2c5c8F7a9F8a4b304D/info.json new file mode 100644 index 0000000000000..8821f4eda64de --- /dev/null +++ b/blockchains/polygonzkevm/assets/0x22B21BedDef74FE62F031D2c5c8F7a9F8a4b304D/info.json @@ -0,0 +1,25 @@ +{ + "name": "Polygon Ecosystem Token", + "type": "ZKEVM", + "symbol": "POL", + "decimals": 18, + "website": "https://polygon.technology/", + "description": "Polygon is a protocol and a framework for building and connecting Ethereum-compatible blockchain networks. Aggregating scalable solutions on Ethereum supporting a multi-chain Ethereum ecosystem.", + "explorer": "https://zkevm.polygonscan.com/token/0x22B21BedDef74FE62F031D2c5c8F7a9F8a4b304D", + "status": "active", + "id": "0x22B21BedDef74FE62F031D2c5c8F7a9F8a4b304D", + "links": [ + { + "name": "telegram", + "url": "https://t.me/polygonofficial" + }, + { + "name": "x", + "url": "https://x.com/0xPolygon" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/polygon/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygonzkevm/assets/0x22B21BedDef74FE62F031D2c5c8F7a9F8a4b304D/logo.png b/blockchains/polygonzkevm/assets/0x22B21BedDef74FE62F031D2c5c8F7a9F8a4b304D/logo.png new file mode 100644 index 0000000000000..fbd01afc251d4 Binary files /dev/null and b/blockchains/polygonzkevm/assets/0x22B21BedDef74FE62F031D2c5c8F7a9F8a4b304D/logo.png differ diff --git a/blockchains/polygonzkevm/assets/0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9/info.json b/blockchains/polygonzkevm/assets/0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9/info.json index cd1e313e5ffdc..389fc6a7dd10b 100644 --- a/blockchains/polygonzkevm/assets/0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9/info.json +++ b/blockchains/polygonzkevm/assets/0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9/info.json @@ -10,8 +10,8 @@ "id": "0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ethdotorg" + "name": "x", + "url": "https://x.com/ethdotorg" }, { "name": "github", diff --git a/blockchains/polygonzkevm/assets/0x68286607A1d43602d880D349187c3c48c0fD05E6/info.json b/blockchains/polygonzkevm/assets/0x68286607A1d43602d880D349187c3c48c0fD05E6/info.json index adb3af4cf001b..2f932d931d944 100644 --- a/blockchains/polygonzkevm/assets/0x68286607A1d43602d880D349187c3c48c0fD05E6/info.json +++ b/blockchains/polygonzkevm/assets/0x68286607A1d43602d880D349187c3c48c0fD05E6/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/QuickSwap" }, { - "name": "twitter", - "url": "https://twitter.com/QuickswapDEX" + "name": "x", + "url": "https://x.com/QuickswapDEX" }, { "name": "telegram", diff --git a/blockchains/polygonzkevm/assets/0xA8CE8aee21bC2A48a5EF670afCc9274C7bbbC035/info.json b/blockchains/polygonzkevm/assets/0xA8CE8aee21bC2A48a5EF670afCc9274C7bbbC035/info.json index 7d858781ec0a6..bf00e13719a38 100644 --- a/blockchains/polygonzkevm/assets/0xA8CE8aee21bC2A48a5EF670afCc9274C7bbbC035/info.json +++ b/blockchains/polygonzkevm/assets/0xA8CE8aee21bC2A48a5EF670afCc9274C7bbbC035/info.json @@ -1,5 +1,5 @@ { - "name": "USD Coin", + "name": "USDC", "type": "ZKEVM", "symbol": "USDC", "decimals": 6, @@ -10,8 +10,8 @@ "id": "0xA8CE8aee21bC2A48a5EF670afCc9274C7bbbC035", "links": [ { - "name": "twitter", - "url": "https://twitter.com/centre_io" + "name": "x", + "url": "https://x.com/centre_io" }, { "name": "coingecko", diff --git a/blockchains/polygonzkevm/assets/0xa2036f0538221a77A3937F1379699f44945018d0/info.json b/blockchains/polygonzkevm/assets/0xa2036f0538221a77A3937F1379699f44945018d0/info.json index 3d3578df688a5..b108fde3db09e 100644 --- a/blockchains/polygonzkevm/assets/0xa2036f0538221a77A3937F1379699f44945018d0/info.json +++ b/blockchains/polygonzkevm/assets/0xa2036f0538221a77A3937F1379699f44945018d0/info.json @@ -3,9 +3,9 @@ "type": "ZKEVM", "symbol": "MATIC", "decimals": 18, - "website": "https://app.radiant.capital/", + "website": "https://polygon.technology/", "description": "Polygon is a protocol and a framework for building and connecting Ethereum-compatible blockchain networks. Aggregating scalable solutions on Ethereum supporting a multi-chain Ethereum ecosystem.", - "explorer": "https://explorer.public.zkevm-test.net/address/0xa2036f0538221a77a3937f1379699f44945018d0", + "explorer": "https://zkevm.polygonscan.com/token/0xa2036f0538221a77A3937F1379699f44945018d0", "status": "active", "id": "0xa2036f0538221a77A3937F1379699f44945018d0", "links": [ @@ -14,8 +14,8 @@ "url": "https://t.me/polygonofficial" }, { - "name": "twitter", - "url": "https://twitter.com/0xPolygon" + "name": "x", + "url": "https://x.com/0xPolygon" }, { "name": "discord", diff --git a/blockchains/polygonzkevm/info/info.json b/blockchains/polygonzkevm/info/info.json index b2acc492eb96e..e9459fa585795 100644 --- a/blockchains/polygonzkevm/info/info.json +++ b/blockchains/polygonzkevm/info/info.json @@ -4,16 +4,19 @@ "description": "Polygon zkEVM is the leading zero knowledge scaling solution that’s fully equivalent with the Ethereum Virtual Machine: all existing smart contracts, developer tools, and wallets work seamlessly.", "explorer": "https://polygon.technology/polygon-zkevm", "research": "https://github.com/0xpolygonhermez", - "symbol": "ETH", + "symbol": "tETH", "rpc_url": "https://rpc.ankr.com/polygon_zkevm", "type": "coin", "coin_type": 10001101, "decimals": 18, "status": "active", + "tags": [ + "dapp" + ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/0xPolygonHermez" + "name": "x", + "url": "https://x.com/0xPolygonHermez" } ] -} +} \ No newline at end of file diff --git a/blockchains/polygonzkevm/info/square_logo.png b/blockchains/polygonzkevm/info/square_logo.png new file mode 100644 index 0000000000000..f9b26414b2308 Binary files /dev/null and b/blockchains/polygonzkevm/info/square_logo.png differ diff --git a/blockchains/qtum/info/info.json b/blockchains/qtum/info/info.json index 1c9b97537dc65..27c8fe50922f9 100644 --- a/blockchains/qtum/info/info.json +++ b/blockchains/qtum/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/qtumproject/qtum" }, { - "name": "twitter", - "url": "https://twitter.com/qtumOfficial" + "name": "x", + "url": "https://x.com/qtumOfficial" }, { "name": "reddit", diff --git a/blockchains/qtum/info/square_logo.png b/blockchains/qtum/info/square_logo.png new file mode 100644 index 0000000000000..99069f62fb575 Binary files /dev/null and b/blockchains/qtum/info/square_logo.png differ diff --git a/blockchains/quasar/info/info.json b/blockchains/quasar/info/info.json index 92650bda3d44a..5978c257f912e 100644 --- a/blockchains/quasar/info/info.json +++ b/blockchains/quasar/info/info.json @@ -21,8 +21,8 @@ "url": "https://docs.quasar.fi/" }, { - "name": "twitter", - "url": "https://twitter.com/quasarfi" + "name": "x", + "url": "https://x.com/quasarfi" } ] } \ No newline at end of file diff --git a/blockchains/quasar/info/square_logo.png b/blockchains/quasar/info/square_logo.png new file mode 100644 index 0000000000000..edb6d7d76713d Binary files /dev/null and b/blockchains/quasar/info/square_logo.png differ diff --git a/blockchains/quasar/validators/assets/quasarvaloper137977wrgvu4uy7e5l7w7lella483rrygaw5lqj/logo.png b/blockchains/quasar/validators/assets/quasarvaloper137977wrgvu4uy7e5l7w7lella483rrygaw5lqj/logo.png new file mode 100644 index 0000000000000..d3477a03445f6 Binary files /dev/null and b/blockchains/quasar/validators/assets/quasarvaloper137977wrgvu4uy7e5l7w7lella483rrygaw5lqj/logo.png differ diff --git a/blockchains/quasar/validators/assets/quasarvaloper1400pnha6awqsh7w0k322dxyelvqa59g2ll8vxh/logo.png b/blockchains/quasar/validators/assets/quasarvaloper1400pnha6awqsh7w0k322dxyelvqa59g2ll8vxh/logo.png new file mode 100644 index 0000000000000..c2cb86a42efe3 Binary files /dev/null and b/blockchains/quasar/validators/assets/quasarvaloper1400pnha6awqsh7w0k322dxyelvqa59g2ll8vxh/logo.png differ diff --git a/blockchains/quasar/validators/assets/quasarvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zxyedrk/logo.png b/blockchains/quasar/validators/assets/quasarvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zxyedrk/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/quasar/validators/assets/quasarvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zxyedrk/logo.png differ diff --git a/blockchains/quasar/validators/assets/quasarvaloper14mugyqxjvtzk39au6klgpcyz4vpxgxsjf7c5uk/logo.png b/blockchains/quasar/validators/assets/quasarvaloper14mugyqxjvtzk39au6klgpcyz4vpxgxsjf7c5uk/logo.png new file mode 100644 index 0000000000000..28a98c6eaba18 Binary files /dev/null and b/blockchains/quasar/validators/assets/quasarvaloper14mugyqxjvtzk39au6klgpcyz4vpxgxsjf7c5uk/logo.png differ diff --git a/blockchains/quasar/validators/assets/quasarvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98scge77/logo.png b/blockchains/quasar/validators/assets/quasarvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98scge77/logo.png new file mode 100644 index 0000000000000..9dff7bbedfbee Binary files /dev/null and b/blockchains/quasar/validators/assets/quasarvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98scge77/logo.png differ diff --git a/blockchains/quasar/validators/assets/quasarvaloper1cs70skzs8re863um07c6tm0p3l7lyazdcaftsd/logo.png b/blockchains/quasar/validators/assets/quasarvaloper1cs70skzs8re863um07c6tm0p3l7lyazdcaftsd/logo.png new file mode 100644 index 0000000000000..c53de0659fd41 Binary files /dev/null and b/blockchains/quasar/validators/assets/quasarvaloper1cs70skzs8re863um07c6tm0p3l7lyazdcaftsd/logo.png differ diff --git a/blockchains/quasar/validators/assets/quasarvaloper1yhh4r96kvl9tzucq5dn69gu2242hn2d9gsscvw/logo.png b/blockchains/quasar/validators/assets/quasarvaloper1yhh4r96kvl9tzucq5dn69gu2242hn2d9gsscvw/logo.png new file mode 100644 index 0000000000000..f6dfe9162fd43 Binary files /dev/null and b/blockchains/quasar/validators/assets/quasarvaloper1yhh4r96kvl9tzucq5dn69gu2242hn2d9gsscvw/logo.png differ diff --git a/blockchains/quasar/validators/list.json b/blockchains/quasar/validators/list.json new file mode 100644 index 0000000000000..89b01c38da5cd --- /dev/null +++ b/blockchains/quasar/validators/list.json @@ -0,0 +1,44 @@ +[ + { + "id": "quasarvaloper1yhh4r96kvl9tzucq5dn69gu2242hn2d9gsscvw", + "name": "Polychain", + "description": "Polychain is an investment firm committed to exceptional returns for investors through actively managed portfolios of blockchain assets", + "website": "https://polychain.capital/" + }, + { + "id": "quasarvaloper14mugyqxjvtzk39au6klgpcyz4vpxgxsjf7c5uk", + "name": "Cosmostation", + "description": "Cosmostation validator node. Delegate your tokens and Start Earning Staking Rewards", + "website": "https://www.cosmostation.io/" + }, + { + "id": "quasarvaloper137977wrgvu4uy7e5l7w7lella483rrygaw5lqj", + "name": "polkachu.com", + "description": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at hello@polkachu.com", + "website": "https://polkachu.com/" + }, + { + "id": "quasarvaloper1400pnha6awqsh7w0k322dxyelvqa59g2ll8vxh", + "name": "AutoStake 🛡️ Slash Protected", + "description": "BareMetal - Decentralised - Reliable infrastructure run by the industry leader - AutoStake - Connect with us at: https://linktr.ee/autostake", + "website": "https://autostake.com" + }, + { + "id": "quasarvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zxyedrk", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + }, + { + "id": "quasarvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98scge77", + "name": "Kahuna", + "description": "Kahuna is a tech-focused investment firm dedicated to Blockchain Infrastructure, DeFi, and Gaming startups. Follow us on https://x.com/kahunahq", + "website": "https://www.kahuna.network/" + }, + { + "id": "quasarvaloper1cs70skzs8re863um07c6tm0p3l7lyazdcaftsd", + "name": "Coinage x DAIC", + "description": "The official validator node from Coinage (Coinage.Media) and DAIC (https://daic.capital/telegram)", + "website": "https://daic.capital/" + } +] \ No newline at end of file diff --git a/blockchains/ravencoin/info/info.json b/blockchains/ravencoin/info/info.json index b46367a8a6925..6881d3866a79b 100644 --- a/blockchains/ravencoin/info/info.json +++ b/blockchains/ravencoin/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/RavenProject/Ravencoin" }, { - "name": "twitter", - "url": "https://twitter.com/ravencoin" + "name": "x", + "url": "https://x.com/ravencoin" }, { "name": "reddit", diff --git a/blockchains/ravencoin/info/square_logo.png b/blockchains/ravencoin/info/square_logo.png new file mode 100644 index 0000000000000..a3fd3dc1b3fd5 Binary files /dev/null and b/blockchains/ravencoin/info/square_logo.png differ diff --git a/blockchains/ripple/assets/41524D5900000000000000000000000000000000.rGG3wQ4kUzd7Jnmk1n5NWPZjjut62kCBfC/info.json b/blockchains/ripple/assets/41524D5900000000000000000000000000000000.rGG3wQ4kUzd7Jnmk1n5NWPZjjut62kCBfC/info.json new file mode 100644 index 0000000000000..6e24e28081728 --- /dev/null +++ b/blockchains/ripple/assets/41524D5900000000000000000000000000000000.rGG3wQ4kUzd7Jnmk1n5NWPZjjut62kCBfC/info.json @@ -0,0 +1,17 @@ +{ + "name": "XRP ARMY", + "symbol": "ARMY", + "website": "https://www.xrparmy-cto.com", + "description": "In a world dominated by fleeting trends and fragile communities, the XRP $ARMY stands as an unshakable force.", + "explorer": "https://livenet.xrpl.org/token/41524D5900000000000000000000000000000000.rGG3wQ4kUzd7Jnmk1n5NWPZjjut62kCBfC", + "decimals": 15, + "status": "active", + "id": "41524D5900000000000000000000000000000000.rGG3wQ4kUzd7Jnmk1n5NWPZjjut62kCBfC", + "type": "XRP", + "links": [ + { + "name": "twitter", + "url": "https://x.com/ARMY_XRP589" + } + ] +} \ No newline at end of file diff --git a/blockchains/ripple/assets/41524D5900000000000000000000000000000000.rGG3wQ4kUzd7Jnmk1n5NWPZjjut62kCBfC/logo.png b/blockchains/ripple/assets/41524D5900000000000000000000000000000000.rGG3wQ4kUzd7Jnmk1n5NWPZjjut62kCBfC/logo.png new file mode 100644 index 0000000000000..8fef6da896198 Binary files /dev/null and b/blockchains/ripple/assets/41524D5900000000000000000000000000000000.rGG3wQ4kUzd7Jnmk1n5NWPZjjut62kCBfC/logo.png differ diff --git a/blockchains/ripple/assets/44524F5000000000000000000000000000000000.rszenFJoDdiGjyezQc8pME9KWDQH43Tswh/info.json b/blockchains/ripple/assets/44524F5000000000000000000000000000000000.rszenFJoDdiGjyezQc8pME9KWDQH43Tswh/info.json new file mode 100644 index 0000000000000..43a8f8ad5fbe8 --- /dev/null +++ b/blockchains/ripple/assets/44524F5000000000000000000000000000000000.rszenFJoDdiGjyezQc8pME9KWDQH43Tswh/info.json @@ -0,0 +1,17 @@ +{ + "name": "DROP", + "symbol": "DROP", + "website": "https://www.xrp-drop.com/", + "description": "The leading memecoin on the XRPL", + "explorer": "https://livenet.xrpl.org/token/44524F5000000000000000000000000000000000.rszenFJoDdiGjyezQc8pME9KWDQH43Tswh", + "decimals": 15, + "status": "active", + "id": "44524F5000000000000000000000000000000000.rszenFJoDdiGjyezQc8pME9KWDQH43Tswh", + "type": "XRP", + "links": [ + { + "name": "twitter", + "url": "https://x.com/dropcoinxrpl" + } + ] +} \ No newline at end of file diff --git a/blockchains/ripple/assets/44524F5000000000000000000000000000000000.rszenFJoDdiGjyezQc8pME9KWDQH43Tswh/logo.png b/blockchains/ripple/assets/44524F5000000000000000000000000000000000.rszenFJoDdiGjyezQc8pME9KWDQH43Tswh/logo.png new file mode 100644 index 0000000000000..079521c327dcd Binary files /dev/null and b/blockchains/ripple/assets/44524F5000000000000000000000000000000000.rszenFJoDdiGjyezQc8pME9KWDQH43Tswh/logo.png differ diff --git a/blockchains/ripple/assets/4C49485541000000000000000000000000000000.rnhtvpHsAgigmVemgtzt7pujj4gv6LVL2a/info.json b/blockchains/ripple/assets/4C49485541000000000000000000000000000000.rnhtvpHsAgigmVemgtzt7pujj4gv6LVL2a/info.json new file mode 100644 index 0000000000000..b70ff88513691 --- /dev/null +++ b/blockchains/ripple/assets/4C49485541000000000000000000000000000000.rnhtvpHsAgigmVemgtzt7pujj4gv6LVL2a/info.json @@ -0,0 +1,17 @@ +{ + "name": "LIHUA", + "symbol": "LIHUA", + "website": "https://getlihua.com/?utm_source=dexscreener&utm_medium=dex&utm_campaign=lihua", + "description": "The LiHua—inspired by the Dragon Li cat breed, a creature of intelligence, independence, and loyalty — is not just a currency; it's an innovation on onboarding", + "explorer": "https://livenet.xrpl.org/token/4C49485541000000000000000000000000000000.rnhtvpHsAgigmVemgtzt7pujj4gv6LVL2a", + "decimals": 15, + "status": "active", + "id": "4C49485541000000000000000000000000000000.rnhtvpHsAgigmVemgtzt7pujj4gv6LVL2a", + "type": "XRP", + "links": [ + { + "name": "twitter", + "url": "https://x.com/thedragonli?s=21" + } + ] +} \ No newline at end of file diff --git a/blockchains/ripple/assets/4C49485541000000000000000000000000000000.rnhtvpHsAgigmVemgtzt7pujj4gv6LVL2a/logo.png b/blockchains/ripple/assets/4C49485541000000000000000000000000000000.rnhtvpHsAgigmVemgtzt7pujj4gv6LVL2a/logo.png new file mode 100644 index 0000000000000..af19b4485bbf6 Binary files /dev/null and b/blockchains/ripple/assets/4C49485541000000000000000000000000000000.rnhtvpHsAgigmVemgtzt7pujj4gv6LVL2a/logo.png differ diff --git a/blockchains/ripple/assets/4E4F524D49450000000000000000000000000000.rwtZ99naquDaXzHJNQVn9okoseWTWjQYcp/info.json b/blockchains/ripple/assets/4E4F524D49450000000000000000000000000000.rwtZ99naquDaXzHJNQVn9okoseWTWjQYcp/info.json new file mode 100644 index 0000000000000..e3f40847b41e6 --- /dev/null +++ b/blockchains/ripple/assets/4E4F524D49450000000000000000000000000000.rwtZ99naquDaXzHJNQVn9okoseWTWjQYcp/info.json @@ -0,0 +1,17 @@ +{ + "name": "NORMIE", + "symbol": "NORMIE", + "website": "https://xrpnormies.com", + "description": "MEET $NORMIE, THE COMBAT UNIT OF THE $XRP ARMY!", + "explorer": "https://livenet.xrpl.org/token/4E4F524D49450000000000000000000000000000.rwtZ99naquDaXzHJNQVn9okoseWTWjQYcp", + "decimals": 15, + "status": "active", + "id": "4E4F524D49450000000000000000000000000000.rwtZ99naquDaXzHJNQVn9okoseWTWjQYcp", + "type": "XRP", + "links": [ + { + "name": "twitter", + "url": "https://x.com/xrpnormie" + } + ] +} \ No newline at end of file diff --git a/blockchains/ripple/assets/4E4F524D49450000000000000000000000000000.rwtZ99naquDaXzHJNQVn9okoseWTWjQYcp/logo.png b/blockchains/ripple/assets/4E4F524D49450000000000000000000000000000.rwtZ99naquDaXzHJNQVn9okoseWTWjQYcp/logo.png new file mode 100644 index 0000000000000..f116148ef8aa9 Binary files /dev/null and b/blockchains/ripple/assets/4E4F524D49450000000000000000000000000000.rwtZ99naquDaXzHJNQVn9okoseWTWjQYcp/logo.png differ diff --git a/blockchains/ripple/assets/50484E4958000000000000000000000000000000.rDFXbW2ZZCG5WgPtqwNiA2xZokLMm9ivmN/info.json b/blockchains/ripple/assets/50484E4958000000000000000000000000000000.rDFXbW2ZZCG5WgPtqwNiA2xZokLMm9ivmN/info.json new file mode 100644 index 0000000000000..1d6ac970bff13 --- /dev/null +++ b/blockchains/ripple/assets/50484E4958000000000000000000000000000000.rDFXbW2ZZCG5WgPtqwNiA2xZokLMm9ivmN/info.json @@ -0,0 +1,17 @@ +{ + "name": "PHNIX", + "symbol": "PHNIX", + "website": "https://phnix.lol", + "description": "$PHNIX is here to be the ultimate symbol of the resilience of XRP in the face of adversity.", + "explorer": "https://livenet.xrpl.org/token/50484E4958000000000000000000000000000000.rDFXbW2ZZCG5WgPtqwNiA2xZokLMm9ivmN", + "decimals": 15, + "status": "active", + "id": "50484E4958000000000000000000000000000000.rDFXbW2ZZCG5WgPtqwNiA2xZokLMm9ivmN", + "type": "XRP", + "links": [ + { + "name": "twitter", + "url": "https://x.com/phnix_xrp" + } + ] +} \ No newline at end of file diff --git a/blockchains/ripple/assets/50484E4958000000000000000000000000000000.rDFXbW2ZZCG5WgPtqwNiA2xZokLMm9ivmN/logo.png b/blockchains/ripple/assets/50484E4958000000000000000000000000000000.rDFXbW2ZZCG5WgPtqwNiA2xZokLMm9ivmN/logo.png new file mode 100644 index 0000000000000..86ac53eb23f23 Binary files /dev/null and b/blockchains/ripple/assets/50484E4958000000000000000000000000000000.rDFXbW2ZZCG5WgPtqwNiA2xZokLMm9ivmN/logo.png differ diff --git a/blockchains/ripple/assets/504F4E474F000000000000000000000000000000.rwCq6TENSo3Hh9LKipXnLaxaeXBXKubqki/info.json b/blockchains/ripple/assets/504F4E474F000000000000000000000000000000.rwCq6TENSo3Hh9LKipXnLaxaeXBXKubqki/info.json new file mode 100644 index 0000000000000..cb778af56c6b1 --- /dev/null +++ b/blockchains/ripple/assets/504F4E474F000000000000000000000000000000.rwCq6TENSo3Hh9LKipXnLaxaeXBXKubqki/info.json @@ -0,0 +1,17 @@ +{ + "name": "PONGO", + "symbol": "PONGO", + "website": "https://pongoxrp.com", + "description": "Pongo stands boldly against the conventional currents of the crypto world", + "explorer": "https://livenet.xrpl.org/token/504F4E474F000000000000000000000000000000.rwCq6TENSo3Hh9LKipXnLaxaeXBXKubqki", + "decimals": 15, + "status": "active", + "id": "504F4E474F000000000000000000000000000000.rwCq6TENSo3Hh9LKipXnLaxaeXBXKubqki", + "type": "XRP", + "links": [ + { + "name": "twitter", + "url": "https://x.com/pongoxrpl" + } + ] +} \ No newline at end of file diff --git a/blockchains/ripple/assets/504F4E474F000000000000000000000000000000.rwCq6TENSo3Hh9LKipXnLaxaeXBXKubqki/logo.png b/blockchains/ripple/assets/504F4E474F000000000000000000000000000000.rwCq6TENSo3Hh9LKipXnLaxaeXBXKubqki/logo.png new file mode 100644 index 0000000000000..c897d9eef5976 Binary files /dev/null and b/blockchains/ripple/assets/504F4E474F000000000000000000000000000000.rwCq6TENSo3Hh9LKipXnLaxaeXBXKubqki/logo.png differ diff --git a/blockchains/ripple/assets/524942424C450000000000000000000000000000.rG7jT6D4fHsipvVmPSbcnvDtFzXwwSR4qx/info.json b/blockchains/ripple/assets/524942424C450000000000000000000000000000.rG7jT6D4fHsipvVmPSbcnvDtFzXwwSR4qx/info.json new file mode 100644 index 0000000000000..a1762339eb241 --- /dev/null +++ b/blockchains/ripple/assets/524942424C450000000000000000000000000000.rG7jT6D4fHsipvVmPSbcnvDtFzXwwSR4qx/info.json @@ -0,0 +1,17 @@ +{ + "name": "RIBBLE", + "symbol": "RIBBLE", + "website": "https://ribble.pro", + "description": "Biggest meme cult on XRP", + "explorer": "https://livenet.xrpl.org/token/524942424C450000000000000000000000000000.rG7jT6D4fHsipvVmPSbcnvDtFzXwwSR4qx", + "decimals": 15, + "status": "active", + "id": "524942424C450000000000000000000000000000.rG7jT6D4fHsipvVmPSbcnvDtFzXwwSR4qx", + "type": "XRP", + "links": [ + { + "name": "twitter", + "url": "https://x.com/RibbleXRP" + } + ] +} \ No newline at end of file diff --git a/blockchains/ripple/assets/524942424C450000000000000000000000000000.rG7jT6D4fHsipvVmPSbcnvDtFzXwwSR4qx/logo.png b/blockchains/ripple/assets/524942424C450000000000000000000000000000.rG7jT6D4fHsipvVmPSbcnvDtFzXwwSR4qx/logo.png new file mode 100644 index 0000000000000..dbf9606257dab Binary files /dev/null and b/blockchains/ripple/assets/524942424C450000000000000000000000000000.rG7jT6D4fHsipvVmPSbcnvDtFzXwwSR4qx/logo.png differ diff --git a/blockchains/ripple/assets/524C555344000000000000000000000000000000.rMxCKbEDwqr76QuheSUMdEGf4B9xJ8m5De/info.json b/blockchains/ripple/assets/524C555344000000000000000000000000000000.rMxCKbEDwqr76QuheSUMdEGf4B9xJ8m5De/info.json new file mode 100644 index 0000000000000..1eee0128d9648 --- /dev/null +++ b/blockchains/ripple/assets/524C555344000000000000000000000000000000.rMxCKbEDwqr76QuheSUMdEGf4B9xJ8m5De/info.json @@ -0,0 +1,14 @@ +{ + "name": "Ripple USD", + "symbol": "RLUSD", + "website": "https://ripple.com/solutions/stablecoin/", + "description": "Ripple USD (RLUSD) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar.", + "explorer": "https://livenet.xrpl.org/token/524C555344000000000000000000000000000000.rMxCKbEDwqr76QuheSUMdEGf4B9xJ8m5De", + "decimals": 15, + "status": "active", + "id": "524C555344000000000000000000000000000000.rMxCKbEDwqr76QuheSUMdEGf4B9xJ8m5De", + "type": "XRP", + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/ripple/assets/524C555344000000000000000000000000000000.rMxCKbEDwqr76QuheSUMdEGf4B9xJ8m5De/logo.png b/blockchains/ripple/assets/524C555344000000000000000000000000000000.rMxCKbEDwqr76QuheSUMdEGf4B9xJ8m5De/logo.png new file mode 100644 index 0000000000000..5ac0648ce53e0 Binary files /dev/null and b/blockchains/ripple/assets/524C555344000000000000000000000000000000.rMxCKbEDwqr76QuheSUMdEGf4B9xJ8m5De/logo.png differ diff --git a/blockchains/ripple/assets/534F4C4F00000000000000000000000000000000.rsoLo2S1kiGeCcn6hCUXVrCpGMWLrRrLZz/info.json b/blockchains/ripple/assets/534F4C4F00000000000000000000000000000000.rsoLo2S1kiGeCcn6hCUXVrCpGMWLrRrLZz/info.json new file mode 100644 index 0000000000000..5e2320b4e06e0 --- /dev/null +++ b/blockchains/ripple/assets/534F4C4F00000000000000000000000000000000.rsoLo2S1kiGeCcn6hCUXVrCpGMWLrRrLZz/info.json @@ -0,0 +1,17 @@ +{ + "name": "SOLO", + "symbol": "SOLO", + "website": "https://www.sologenic.com", + "description": "Advanced Tokenization Solutions for Institutions", + "explorer": "https://livenet.xrpl.org/token/534F4C4F00000000000000000000000000000000.rsoLo2S1kiGeCcn6hCUXVrCpGMWLrRrLZz", + "decimals": 15, + "status": "abandoned", + "id": "534F4C4F00000000000000000000000000000000.rsoLo2S1kiGeCcn6hCUXVrCpGMWLrRrLZz", + "type": "XRP", + "links": [ + { + "name": "twitter", + "url": "https://x.com/realSologenic" + } + ] +} \ No newline at end of file diff --git a/blockchains/ripple/assets/5377697373546563680000000000000000000000.raq7pGaYrLZRa88v6Py9V5oWMYEqPYr8Tz/info.json b/blockchains/ripple/assets/5377697373546563680000000000000000000000.raq7pGaYrLZRa88v6Py9V5oWMYEqPYr8Tz/info.json new file mode 100644 index 0000000000000..73f5d1af602a9 --- /dev/null +++ b/blockchains/ripple/assets/5377697373546563680000000000000000000000.raq7pGaYrLZRa88v6Py9V5oWMYEqPYr8Tz/info.json @@ -0,0 +1,17 @@ +{ + "name": "SwissTech", + "symbol": "SwissTech", + "website": "https://helvetx.io/", + "description": "Swisstech Token - A utility powerhouse driven by the HelvetX collective.", + "explorer": "https://livenet.xrpl.org/token/5377697373546563680000000000000000000000.raq7pGaYrLZRa88v6Py9V5oWMYEqPYr8Tz", + "decimals": 15, + "status": "active", + "id": "5377697373546563680000000000000000000000.raq7pGaYrLZRa88v6Py9V5oWMYEqPYr8Tz", + "type": "XRP", + "links": [ + { + "name": "twitter", + "url": "https://x.com/helvetxlabs" + } + ] +} \ No newline at end of file diff --git a/blockchains/ripple/assets/5377697373546563680000000000000000000000.raq7pGaYrLZRa88v6Py9V5oWMYEqPYr8Tz/logo.png b/blockchains/ripple/assets/5377697373546563680000000000000000000000.raq7pGaYrLZRa88v6Py9V5oWMYEqPYr8Tz/logo.png new file mode 100644 index 0000000000000..d0e5abb0e61e8 Binary files /dev/null and b/blockchains/ripple/assets/5377697373546563680000000000000000000000.raq7pGaYrLZRa88v6Py9V5oWMYEqPYr8Tz/logo.png differ diff --git a/blockchains/ripple/assets/544F544F00000000000000000000000000000000.r9sH6YEVRyg8uYaKfyk1EfH36Lfq7a8PUD/info.json b/blockchains/ripple/assets/544F544F00000000000000000000000000000000.r9sH6YEVRyg8uYaKfyk1EfH36Lfq7a8PUD/info.json new file mode 100644 index 0000000000000..87eed1c85a379 --- /dev/null +++ b/blockchains/ripple/assets/544F544F00000000000000000000000000000000.r9sH6YEVRyg8uYaKfyk1EfH36Lfq7a8PUD/info.json @@ -0,0 +1,17 @@ +{ + "name": "TOTO", + "symbol": "TOTO", + "website": "https://terrytoto.com/", + "description": "Terry Toto represents the energy, culture, and unstoppable force of Totonia", + "explorer": "https://livenet.xrpl.org/token/544F544F00000000000000000000000000000000.r9sH6YEVRyg8uYaKfyk1EfH36Lfq7a8PUD", + "decimals": 15, + "status": "active", + "id": "544F544F00000000000000000000000000000000.r9sH6YEVRyg8uYaKfyk1EfH36Lfq7a8PUD", + "type": "XRP", + "links": [ + { + "name": "twitter", + "url": "https://x.com/TERRYTOTO_XRPL" + } + ] +} \ No newline at end of file diff --git a/blockchains/ripple/assets/544F544F00000000000000000000000000000000.r9sH6YEVRyg8uYaKfyk1EfH36Lfq7a8PUD/logo.png b/blockchains/ripple/assets/544F544F00000000000000000000000000000000.r9sH6YEVRyg8uYaKfyk1EfH36Lfq7a8PUD/logo.png new file mode 100644 index 0000000000000..c681d11a79961 Binary files /dev/null and b/blockchains/ripple/assets/544F544F00000000000000000000000000000000.r9sH6YEVRyg8uYaKfyk1EfH36Lfq7a8PUD/logo.png differ diff --git a/blockchains/ripple/assets/554E495445000000000000000000000000000000.rQKSaCbjYGdYosuPSLLTjzHN19Gwtyx4U6/info.json b/blockchains/ripple/assets/554E495445000000000000000000000000000000.rQKSaCbjYGdYosuPSLLTjzHN19Gwtyx4U6/info.json new file mode 100644 index 0000000000000..8fc518678b07c --- /dev/null +++ b/blockchains/ripple/assets/554E495445000000000000000000000000000000.rQKSaCbjYGdYosuPSLLTjzHN19Gwtyx4U6/info.json @@ -0,0 +1,17 @@ +{ + "name": "UNITE", + "symbol": "UNITE", + "website": "https://unitexrpl.com/", + "description": "Building the Future of Social Networking on XRPL", + "explorer": "https://livenet.xrpl.org/token/554E495445000000000000000000000000000000.rQKSaCbjYGdYosuPSLLTjzHN19Gwtyx4U6", + "decimals": 15, + "status": "active", + "id": "554E495445000000000000000000000000000000.rQKSaCbjYGdYosuPSLLTjzHN19Gwtyx4U6", + "type": "XRP", + "links": [ + { + "name": "twitter", + "url": "https://x.com/uunite_xrpl?s=21&t=lQxbHQrAJQfFvl_XL3q77g" + } + ] +} \ No newline at end of file diff --git a/blockchains/ripple/assets/554E495445000000000000000000000000000000.rQKSaCbjYGdYosuPSLLTjzHN19Gwtyx4U6/logo.png b/blockchains/ripple/assets/554E495445000000000000000000000000000000.rQKSaCbjYGdYosuPSLLTjzHN19Gwtyx4U6/logo.png new file mode 100644 index 0000000000000..5c990d84fb7d1 Binary files /dev/null and b/blockchains/ripple/assets/554E495445000000000000000000000000000000.rQKSaCbjYGdYosuPSLLTjzHN19Gwtyx4U6/logo.png differ diff --git a/blockchains/ripple/assets/XPM.rXPMxBeefHGxx2K7g5qmmWq3gFsgawkoa/info.json b/blockchains/ripple/assets/XPM.rXPMxBeefHGxx2K7g5qmmWq3gFsgawkoa/info.json new file mode 100644 index 0000000000000..c7fa1e7cef40d --- /dev/null +++ b/blockchains/ripple/assets/XPM.rXPMxBeefHGxx2K7g5qmmWq3gFsgawkoa/info.json @@ -0,0 +1,17 @@ +{ + "name": "XPM", + "symbol": "XPM", + "website": "https://xpmarket.com/", + "description": "XPMarket is an exciting XRPL platform blending #GameFi and #DeFi, simplifying how you trade and manage digital assets & collectibles | #XRP #NFTs #AMM", + "explorer": "https://livenet.xrpl.org/token/XPM.rXPMxBeefHGxx2K7g5qmmWq3gFsgawkoa", + "decimals": 15, + "status": "active", + "id": "XPM.rXPMxBeefHGxx2K7g5qmmWq3gFsgawkoa", + "type": "XRP", + "links": [ + { + "name": "twitter", + "url": "https://x.com/xpmarket" + } + ] +} \ No newline at end of file diff --git a/blockchains/ripple/assets/XPM.rXPMxBeefHGxx2K7g5qmmWq3gFsgawkoa/logo.png b/blockchains/ripple/assets/XPM.rXPMxBeefHGxx2K7g5qmmWq3gFsgawkoa/logo.png new file mode 100644 index 0000000000000..6e1ceda3e842c Binary files /dev/null and b/blockchains/ripple/assets/XPM.rXPMxBeefHGxx2K7g5qmmWq3gFsgawkoa/logo.png differ diff --git a/blockchains/ripple/info/info.json b/blockchains/ripple/info/info.json index 24f3468e2029d..349ca65cb72bd 100644 --- a/blockchains/ripple/info/info.json +++ b/blockchains/ripple/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/ripple" }, { - "name": "twitter", - "url": "https://twitter.com/Ripple" + "name": "x", + "url": "https://x.com/Ripple" }, { "name": "reddit", diff --git a/blockchains/ripple/info/square_logo.png b/blockchains/ripple/info/square_logo.png new file mode 100644 index 0000000000000..b6fcc704334c2 Binary files /dev/null and b/blockchains/ripple/info/square_logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x020bfC650A365f8BB26819deAAbF3E21291018b4/info.json b/blockchains/robinhoodchain/assets/0x020bfC650A365f8BB26819deAAbF3E21291018b4/info.json new file mode 100644 index 0000000000000..08aeca4d76ea5 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x020bfC650A365f8BB26819deAAbF3E21291018b4/info.json @@ -0,0 +1,20 @@ +{ + "name": "Cash Cat", + "type": "ROBINHOODCHAIN", + "symbol": "CASHCAT", + "decimals": 18, + "description": "Robinhood original name was Cash Cat.", + "website": "https://cashcattoken.xyz/", + "explorer": "https://robinhoodchain.blockscout.com/token/0x020bfC650A365f8BB26819deAAbF3E21291018b4", + "status": "active", + "id": "0x020bfC650A365f8BB26819deAAbF3E21291018b4", + "links": [ + { + "name": "x", + "url": "https://x.com/cashcat_token" + } + ], + "tags": [ + "memes" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x020bfC650A365f8BB26819deAAbF3E21291018b4/logo.png b/blockchains/robinhoodchain/assets/0x020bfC650A365f8BB26819deAAbF3E21291018b4/logo.png new file mode 100644 index 0000000000000..7968dddd887de Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x020bfC650A365f8BB26819deAAbF3E21291018b4/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x05b37Fb53A299a1b874A619e1c4C404D52C36F4C/info.json b/blockchains/robinhoodchain/assets/0x05b37Fb53A299a1b874A619e1c4C404D52C36F4C/info.json new file mode 100644 index 0000000000000..7792b694b785b --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x05b37Fb53A299a1b874A619e1c4C404D52C36F4C/info.json @@ -0,0 +1,20 @@ +{ + "name": "Reddit", + "type": "ROBINHOODCHAIN", + "symbol": "RDDT", + "decimals": 18, + "description": "Reddit (RDDT) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x05b37Fb53A299a1b874A619e1c4C404D52C36F4C", + "status": "active", + "id": "0x05b37Fb53A299a1b874A619e1c4C404D52C36F4C", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x05b37Fb53A299a1b874A619e1c4C404D52C36F4C/logo.png b/blockchains/robinhoodchain/assets/0x05b37Fb53A299a1b874A619e1c4C404D52C36F4C/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x05b37Fb53A299a1b874A619e1c4C404D52C36F4C/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x0Bd7D308f8E1639FAb988df18A8011f41EAcAD73/info.json b/blockchains/robinhoodchain/assets/0x0Bd7D308f8E1639FAb988df18A8011f41EAcAD73/info.json new file mode 100644 index 0000000000000..aeb01301fb0f1 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x0Bd7D308f8E1639FAb988df18A8011f41EAcAD73/info.json @@ -0,0 +1,15 @@ +{ + "name": "Wrapped Ether", + "type": "ROBINHOODCHAIN", + "symbol": "WETH", + "decimals": 18, + "description": "Wrapped Ether on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x0Bd7D308f8E1639FAb988df18A8011f41EAcAD73", + "status": "active", + "id": "0x0Bd7D308f8E1639FAb988df18A8011f41EAcAD73", + "links": [], + "tags": [ + "wrapped" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x0Bd7D308f8E1639FAb988df18A8011f41EAcAD73/logo.png b/blockchains/robinhoodchain/assets/0x0Bd7D308f8E1639FAb988df18A8011f41EAcAD73/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x0Bd7D308f8E1639FAb988df18A8011f41EAcAD73/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x0C3260aF4B8f13a69c4c2dFb84fD667890CDFa14/info.json b/blockchains/robinhoodchain/assets/0x0C3260aF4B8f13a69c4c2dFb84fD667890CDFa14/info.json new file mode 100644 index 0000000000000..820b60ff0d938 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x0C3260aF4B8f13a69c4c2dFb84fD667890CDFa14/info.json @@ -0,0 +1,20 @@ +{ + "name": "ServiceNow", + "type": "ROBINHOODCHAIN", + "symbol": "NOW", + "decimals": 18, + "description": "ServiceNow (NOW) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x0C3260aF4B8f13a69c4c2dFb84fD667890CDFa14", + "status": "active", + "id": "0x0C3260aF4B8f13a69c4c2dFb84fD667890CDFa14", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x0C3260aF4B8f13a69c4c2dFb84fD667890CDFa14/logo.png b/blockchains/robinhoodchain/assets/0x0C3260aF4B8f13a69c4c2dFb84fD667890CDFa14/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x0C3260aF4B8f13a69c4c2dFb84fD667890CDFa14/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x0E6e67Ba88e7b5d9B67636A215c76779B948dE79/info.json b/blockchains/robinhoodchain/assets/0x0E6e67Ba88e7b5d9B67636A215c76779B948dE79/info.json new file mode 100644 index 0000000000000..1c86f4be520f9 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x0E6e67Ba88e7b5d9B67636A215c76779B948dE79/info.json @@ -0,0 +1,20 @@ +{ + "name": "United Microelectronics", + "type": "ROBINHOODCHAIN", + "symbol": "UMC", + "decimals": 18, + "description": "United Microelectronics (UMC) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x0E6e67Ba88e7b5d9B67636A215c76779B948dE79", + "status": "active", + "id": "0x0E6e67Ba88e7b5d9B67636A215c76779B948dE79", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x0E6e67Ba88e7b5d9B67636A215c76779B948dE79/logo.png b/blockchains/robinhoodchain/assets/0x0E6e67Ba88e7b5d9B67636A215c76779B948dE79/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x0E6e67Ba88e7b5d9B67636A215c76779B948dE79/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x0f17206447090e464C277571124dD2688E48AEA9/info.json b/blockchains/robinhoodchain/assets/0x0f17206447090e464C277571124dD2688E48AEA9/info.json new file mode 100644 index 0000000000000..b13c7dd7ad27e --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x0f17206447090e464C277571124dD2688E48AEA9/info.json @@ -0,0 +1,20 @@ +{ + "name": "Qualcomm", + "type": "ROBINHOODCHAIN", + "symbol": "QCOM", + "decimals": 18, + "description": "Qualcomm (QCOM) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x0f17206447090e464C277571124dD2688E48AEA9", + "status": "active", + "id": "0x0f17206447090e464C277571124dD2688E48AEA9", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x0f17206447090e464C277571124dD2688E48AEA9/logo.png b/blockchains/robinhoodchain/assets/0x0f17206447090e464C277571124dD2688E48AEA9/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x0f17206447090e464C277571124dD2688E48AEA9/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x117cc2133c37B721F49dE2A7a74833232B3B4C0C/info.json b/blockchains/robinhoodchain/assets/0x117cc2133c37B721F49dE2A7a74833232B3B4C0C/info.json new file mode 100644 index 0000000000000..e13212cd49dfb --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x117cc2133c37B721F49dE2A7a74833232B3B4C0C/info.json @@ -0,0 +1,20 @@ +{ + "name": "SPDR S&P 500 ETF Trust", + "type": "ROBINHOODCHAIN", + "symbol": "SPY", + "decimals": 18, + "description": "SPDR S&P 500 ETF Trust (SPY) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x117cc2133c37B721F49dE2A7a74833232B3B4C0C", + "status": "active", + "id": "0x117cc2133c37B721F49dE2A7a74833232B3B4C0C", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x117cc2133c37B721F49dE2A7a74833232B3B4C0C/logo.png b/blockchains/robinhoodchain/assets/0x117cc2133c37B721F49dE2A7a74833232B3B4C0C/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x117cc2133c37B721F49dE2A7a74833232B3B4C0C/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x12f190a9F9d7D37a250758b26824B97CE941bF54/info.json b/blockchains/robinhoodchain/assets/0x12f190a9F9d7D37a250758b26824B97CE941bF54/info.json new file mode 100644 index 0000000000000..a1d276134cca6 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x12f190a9F9d7D37a250758b26824B97CE941bF54/info.json @@ -0,0 +1,20 @@ +{ + "name": "Amazon", + "type": "ROBINHOODCHAIN", + "symbol": "AMZN", + "decimals": 18, + "description": "Amazon (AMZN) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x12f190a9F9d7D37a250758b26824B97CE941bF54", + "status": "active", + "id": "0x12f190a9F9d7D37a250758b26824B97CE941bF54", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x12f190a9F9d7D37a250758b26824B97CE941bF54/logo.png b/blockchains/robinhoodchain/assets/0x12f190a9F9d7D37a250758b26824B97CE941bF54/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x12f190a9F9d7D37a250758b26824B97CE941bF54/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x156E175DD063a8cE274C50654eF40e0032b3fbcF/info.json b/blockchains/robinhoodchain/assets/0x156E175DD063a8cE274C50654eF40e0032b3fbcF/info.json new file mode 100644 index 0000000000000..f51cd5af77ec8 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x156E175DD063a8cE274C50654eF40e0032b3fbcF/info.json @@ -0,0 +1,20 @@ +{ + "name": "Broadcom", + "type": "ROBINHOODCHAIN", + "symbol": "AVGO", + "decimals": 18, + "description": "Broadcom (AVGO) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x156E175DD063a8cE274C50654eF40e0032b3fbcF", + "status": "active", + "id": "0x156E175DD063a8cE274C50654eF40e0032b3fbcF", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x156E175DD063a8cE274C50654eF40e0032b3fbcF/logo.png b/blockchains/robinhoodchain/assets/0x156E175DD063a8cE274C50654eF40e0032b3fbcF/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x156E175DD063a8cE274C50654eF40e0032b3fbcF/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x15Cd20759CE7F3285c29A319dE2D1A2e098c6f43/info.json b/blockchains/robinhoodchain/assets/0x15Cd20759CE7F3285c29A319dE2D1A2e098c6f43/info.json new file mode 100644 index 0000000000000..a87732d45cc26 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x15Cd20759CE7F3285c29A319dE2D1A2e098c6f43/info.json @@ -0,0 +1,20 @@ +{ + "name": "State Street Technology Select Sector SPDR ETF", + "type": "ROBINHOODCHAIN", + "symbol": "XLK", + "decimals": 18, + "description": "State Street Technology Select Sector SPDR ETF (XLK) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x15Cd20759CE7F3285c29A319dE2D1A2e098c6f43", + "status": "active", + "id": "0x15Cd20759CE7F3285c29A319dE2D1A2e098c6f43", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x15Cd20759CE7F3285c29A319dE2D1A2e098c6f43/logo.png b/blockchains/robinhoodchain/assets/0x15Cd20759CE7F3285c29A319dE2D1A2e098c6f43/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x15Cd20759CE7F3285c29A319dE2D1A2e098c6f43/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x1AF6446f07eb1d97c546AFC8c9544cBDF3AD5137/info.json b/blockchains/robinhoodchain/assets/0x1AF6446f07eb1d97c546AFC8c9544cBDF3AD5137/info.json new file mode 100644 index 0000000000000..24c10a40ab90f --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x1AF6446f07eb1d97c546AFC8c9544cBDF3AD5137/info.json @@ -0,0 +1,20 @@ +{ + "name": "AST SpaceMobile", + "type": "ROBINHOODCHAIN", + "symbol": "ASTS", + "decimals": 18, + "description": "AST SpaceMobile (ASTS) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x1AF6446f07eb1d97c546AFC8c9544cBDF3AD5137", + "status": "active", + "id": "0x1AF6446f07eb1d97c546AFC8c9544cBDF3AD5137", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x1AF6446f07eb1d97c546AFC8c9544cBDF3AD5137/logo.png b/blockchains/robinhoodchain/assets/0x1AF6446f07eb1d97c546AFC8c9544cBDF3AD5137/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x1AF6446f07eb1d97c546AFC8c9544cBDF3AD5137/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x1Cdad396DB64BDa184d5182A97Dd9B3C62100b7D/info.json b/blockchains/robinhoodchain/assets/0x1Cdad396DB64BDa184d5182A97Dd9B3C62100b7D/info.json new file mode 100644 index 0000000000000..0ff970ff9fdde --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x1Cdad396DB64BDa184d5182A97Dd9B3C62100b7D/info.json @@ -0,0 +1,20 @@ +{ + "name": "Everpure", + "type": "ROBINHOODCHAIN", + "symbol": "P", + "decimals": 18, + "description": "Everpure (P) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x1Cdad396DB64BDa184d5182A97Dd9B3C62100b7D", + "status": "active", + "id": "0x1Cdad396DB64BDa184d5182A97Dd9B3C62100b7D", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x1Cdad396DB64BDa184d5182A97Dd9B3C62100b7D/logo.png b/blockchains/robinhoodchain/assets/0x1Cdad396DB64BDa184d5182A97Dd9B3C62100b7D/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x1Cdad396DB64BDa184d5182A97Dd9B3C62100b7D/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x1b0E319c6A659F002271B69dB8A7df2F911c153E/info.json b/blockchains/robinhoodchain/assets/0x1b0E319c6A659F002271B69dB8A7df2F911c153E/info.json new file mode 100644 index 0000000000000..581aa89a69cf0 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x1b0E319c6A659F002271B69dB8A7df2F911c153E/info.json @@ -0,0 +1,20 @@ +{ + "name": "GameStop", + "type": "ROBINHOODCHAIN", + "symbol": "GME", + "decimals": 18, + "description": "GameStop (GME) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x1b0E319c6A659F002271B69dB8A7df2F911c153E", + "status": "active", + "id": "0x1b0E319c6A659F002271B69dB8A7df2F911c153E", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x1b0E319c6A659F002271B69dB8A7df2F911c153E/logo.png b/blockchains/robinhoodchain/assets/0x1b0E319c6A659F002271B69dB8A7df2F911c153E/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x1b0E319c6A659F002271B69dB8A7df2F911c153E/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x211Cc4DD073734dA055fbF44a2b4667d5E5fE5d2/info.json b/blockchains/robinhoodchain/assets/0x211Cc4DD073734dA055fbF44a2b4667d5E5fE5d2/info.json new file mode 100644 index 0000000000000..e671625d73776 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x211Cc4DD073734dA055fbF44a2b4667d5E5fE5d2/info.json @@ -0,0 +1,20 @@ +{ + "name": "Staked USDe", + "type": "ROBINHOODCHAIN", + "symbol": "sUSDe", + "decimals": 18, + "description": "sUSDe is the staked, yield-bearing version of Ethena's USDe synthetic dollar.", + "website": "https://ethena.fi", + "explorer": "https://robinhoodchain.blockscout.com/token/0x211Cc4DD073734dA055fbF44a2b4667d5E5fE5d2", + "status": "active", + "id": "0x211Cc4DD073734dA055fbF44a2b4667d5E5fE5d2", + "links": [ + { + "name": "x", + "url": "https://x.com/ethena_labs" + } + ], + "tags": [ + "staking" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x211Cc4DD073734dA055fbF44a2b4667d5E5fE5d2/logo.png b/blockchains/robinhoodchain/assets/0x211Cc4DD073734dA055fbF44a2b4667d5E5fE5d2/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x211Cc4DD073734dA055fbF44a2b4667d5E5fE5d2/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x25C288E6D899b9BC30160965aD9644c67e73bE0C/info.json b/blockchains/robinhoodchain/assets/0x25C288E6D899b9BC30160965aD9644c67e73bE0C/info.json new file mode 100644 index 0000000000000..2e4883fdc4b1d --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x25C288E6D899b9BC30160965aD9644c67e73bE0C/info.json @@ -0,0 +1,20 @@ +{ + "name": "Ford Motor", + "type": "ROBINHOODCHAIN", + "symbol": "F", + "decimals": 18, + "description": "Ford Motor (F) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x25C288E6D899b9BC30160965aD9644c67e73bE0C", + "status": "active", + "id": "0x25C288E6D899b9BC30160965aD9644c67e73bE0C", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x25C288E6D899b9BC30160965aD9644c67e73bE0C/logo.png b/blockchains/robinhoodchain/assets/0x25C288E6D899b9BC30160965aD9644c67e73bE0C/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x25C288E6D899b9BC30160965aD9644c67e73bE0C/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x25EE805ac369b6E3F8bF5764c682d34a37cb7175/info.json b/blockchains/robinhoodchain/assets/0x25EE805ac369b6E3F8bF5764c682d34a37cb7175/info.json new file mode 100644 index 0000000000000..46ed9d1c931cc --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x25EE805ac369b6E3F8bF5764c682d34a37cb7175/info.json @@ -0,0 +1,20 @@ +{ + "name": "Nokia", + "type": "ROBINHOODCHAIN", + "symbol": "NOK", + "decimals": 18, + "description": "Nokia (NOK) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x25EE805ac369b6E3F8bF5764c682d34a37cb7175", + "status": "active", + "id": "0x25EE805ac369b6E3F8bF5764c682d34a37cb7175", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x25EE805ac369b6E3F8bF5764c682d34a37cb7175/logo.png b/blockchains/robinhoodchain/assets/0x25EE805ac369b6E3F8bF5764c682d34a37cb7175/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x25EE805ac369b6E3F8bF5764c682d34a37cb7175/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x27c99fBde9D0d2AA4f4Bfb4943f237843DdF6958/info.json b/blockchains/robinhoodchain/assets/0x27c99fBde9D0d2AA4f4Bfb4943f237843DdF6958/info.json new file mode 100644 index 0000000000000..f180fde722051 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x27c99fBde9D0d2AA4f4Bfb4943f237843DdF6958/info.json @@ -0,0 +1,20 @@ +{ + "name": "Datadog", + "type": "ROBINHOODCHAIN", + "symbol": "DDOG", + "decimals": 18, + "description": "Datadog (DDOG) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x27c99fBde9D0d2AA4f4Bfb4943f237843DdF6958", + "status": "active", + "id": "0x27c99fBde9D0d2AA4f4Bfb4943f237843DdF6958", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x27c99fBde9D0d2AA4f4Bfb4943f237843DdF6958/logo.png b/blockchains/robinhoodchain/assets/0x27c99fBde9D0d2AA4f4Bfb4943f237843DdF6958/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x27c99fBde9D0d2AA4f4Bfb4943f237843DdF6958/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x282e87451E10fA6679BC7D76C69BE44cD3fC777C/info.json b/blockchains/robinhoodchain/assets/0x282e87451E10fA6679BC7D76C69BE44cD3fC777C/info.json new file mode 100644 index 0000000000000..d3685e8faeaae --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x282e87451E10fA6679BC7D76C69BE44cD3fC777C/info.json @@ -0,0 +1,20 @@ +{ + "name": "Fluence Energy", + "type": "ROBINHOODCHAIN", + "symbol": "FLNC", + "decimals": 18, + "description": "Fluence Energy (FLNC) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x282e87451E10fA6679BC7D76C69BE44cD3fC777C", + "status": "active", + "id": "0x282e87451E10fA6679BC7D76C69BE44cD3fC777C", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x282e87451E10fA6679BC7D76C69BE44cD3fC777C/logo.png b/blockchains/robinhoodchain/assets/0x282e87451E10fA6679BC7D76C69BE44cD3fC777C/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x282e87451E10fA6679BC7D76C69BE44cD3fC777C/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x284358abc07F9359f19f4b5b4aC91901Be2597Ba/info.json b/blockchains/robinhoodchain/assets/0x284358abc07F9359f19f4b5b4aC91901Be2597Ba/info.json new file mode 100644 index 0000000000000..1975f3d7dafdb --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x284358abc07F9359f19f4b5b4aC91901Be2597Ba/info.json @@ -0,0 +1,20 @@ +{ + "name": "Rigetti Computing", + "type": "ROBINHOODCHAIN", + "symbol": "RGTI", + "decimals": 18, + "description": "Rigetti Computing (RGTI) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x284358abc07F9359f19f4b5b4aC91901Be2597Ba", + "status": "active", + "id": "0x284358abc07F9359f19f4b5b4aC91901Be2597Ba", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x284358abc07F9359f19f4b5b4aC91901Be2597Ba/logo.png b/blockchains/robinhoodchain/assets/0x284358abc07F9359f19f4b5b4aC91901Be2597Ba/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x284358abc07F9359f19f4b5b4aC91901Be2597Ba/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x2dC99af320BC317c567f24eE95811dcbd5983DfD/info.json b/blockchains/robinhoodchain/assets/0x2dC99af320BC317c567f24eE95811dcbd5983DfD/info.json new file mode 100644 index 0000000000000..f0b5a34b9e399 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x2dC99af320BC317c567f24eE95811dcbd5983DfD/info.json @@ -0,0 +1,20 @@ +{ + "name": "Wrapped liquid staked Ether 2.0", + "type": "ROBINHOODCHAIN", + "symbol": "wstETH", + "decimals": 18, + "description": "wstETH is the wrapped, non-rebasing version of Lido's stETH liquid staking token.", + "website": "https://lido.fi", + "explorer": "https://robinhoodchain.blockscout.com/token/0x2dC99af320BC317c567f24eE95811dcbd5983DfD", + "status": "active", + "id": "0x2dC99af320BC317c567f24eE95811dcbd5983DfD", + "links": [ + { + "name": "x", + "url": "https://x.com/LidoFinance" + } + ], + "tags": [ + "staking" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x2dC99af320BC317c567f24eE95811dcbd5983DfD/logo.png b/blockchains/robinhoodchain/assets/0x2dC99af320BC317c567f24eE95811dcbd5983DfD/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x2dC99af320BC317c567f24eE95811dcbd5983DfD/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x2e0847E8910a9732eB3fb1bb4b70a580ADAD4FE3/info.json b/blockchains/robinhoodchain/assets/0x2e0847E8910a9732eB3fb1bb4b70a580ADAD4FE3/info.json new file mode 100644 index 0000000000000..4ad3dcbf44ea4 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x2e0847E8910a9732eB3fb1bb4b70a580ADAD4FE3/info.json @@ -0,0 +1,20 @@ +{ + "name": "Alphabet Class A", + "type": "ROBINHOODCHAIN", + "symbol": "GOOGL", + "decimals": 18, + "description": "Alphabet Class A (GOOGL) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x2e0847E8910a9732eB3fb1bb4b70a580ADAD4FE3", + "status": "active", + "id": "0x2e0847E8910a9732eB3fb1bb4b70a580ADAD4FE3", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x2e0847E8910a9732eB3fb1bb4b70a580ADAD4FE3/logo.png b/blockchains/robinhoodchain/assets/0x2e0847E8910a9732eB3fb1bb4b70a580ADAD4FE3/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x2e0847E8910a9732eB3fb1bb4b70a580ADAD4FE3/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x322F0929c4625eD5bAd873c95208D54E1c003b2d/info.json b/blockchains/robinhoodchain/assets/0x322F0929c4625eD5bAd873c95208D54E1c003b2d/info.json new file mode 100644 index 0000000000000..e60d07eb6970f --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x322F0929c4625eD5bAd873c95208D54E1c003b2d/info.json @@ -0,0 +1,20 @@ +{ + "name": "Tesla", + "type": "ROBINHOODCHAIN", + "symbol": "TSLA", + "decimals": 18, + "description": "Tesla (TSLA) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x322F0929c4625eD5bAd873c95208D54E1c003b2d", + "status": "active", + "id": "0x322F0929c4625eD5bAd873c95208D54E1c003b2d", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x322F0929c4625eD5bAd873c95208D54E1c003b2d/logo.png b/blockchains/robinhoodchain/assets/0x322F0929c4625eD5bAd873c95208D54E1c003b2d/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x322F0929c4625eD5bAd873c95208D54E1c003b2d/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x33C18e2CC8AE9AE486e785090D86B2CE632FF994/info.json b/blockchains/robinhoodchain/assets/0x33C18e2CC8AE9AE486e785090D86B2CE632FF994/info.json new file mode 100644 index 0000000000000..05550f73373b7 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x33C18e2CC8AE9AE486e785090D86B2CE632FF994/info.json @@ -0,0 +1,20 @@ +{ + "name": "Roundhill Memory ETF", + "type": "ROBINHOODCHAIN", + "symbol": "DRAM", + "decimals": 18, + "description": "Roundhill Memory ETF (DRAM) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x33C18e2CC8AE9AE486e785090D86B2CE632FF994", + "status": "active", + "id": "0x33C18e2CC8AE9AE486e785090D86B2CE632FF994", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x33C18e2CC8AE9AE486e785090D86B2CE632FF994/logo.png b/blockchains/robinhoodchain/assets/0x33C18e2CC8AE9AE486e785090D86B2CE632FF994/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x33C18e2CC8AE9AE486e785090D86B2CE632FF994/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x36046893810a7E7fCE501229d57dc3FC8c8716d0/info.json b/blockchains/robinhoodchain/assets/0x36046893810a7E7fCE501229d57dc3FC8c8716d0/info.json new file mode 100644 index 0000000000000..902c2020a41d4 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x36046893810a7E7fCE501229d57dc3FC8c8716d0/info.json @@ -0,0 +1,20 @@ +{ + "name": "Applied Materials", + "type": "ROBINHOODCHAIN", + "symbol": "AMAT", + "decimals": 18, + "description": "Applied Materials (AMAT) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x36046893810a7E7fCE501229d57dc3FC8c8716d0", + "status": "active", + "id": "0x36046893810a7E7fCE501229d57dc3FC8c8716d0", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x36046893810a7E7fCE501229d57dc3FC8c8716d0/logo.png b/blockchains/robinhoodchain/assets/0x36046893810a7E7fCE501229d57dc3FC8c8716d0/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x36046893810a7E7fCE501229d57dc3FC8c8716d0/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x39EC44Bee4F6A116c6F9B8De566848a985C53C60/info.json b/blockchains/robinhoodchain/assets/0x39EC44Bee4F6A116c6F9B8De566848a985C53C60/info.json new file mode 100644 index 0000000000000..f81ada2524f77 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x39EC44Bee4F6A116c6F9B8De566848a985C53C60/info.json @@ -0,0 +1,20 @@ +{ + "name": "e.l.f. Beauty", + "type": "ROBINHOODCHAIN", + "symbol": "ELF", + "decimals": 18, + "description": "e.l.f. Beauty (ELF) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x39EC44Bee4F6A116c6F9B8De566848a985C53C60", + "status": "active", + "id": "0x39EC44Bee4F6A116c6F9B8De566848a985C53C60", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x39EC44Bee4F6A116c6F9B8De566848a985C53C60/logo.png b/blockchains/robinhoodchain/assets/0x39EC44Bee4F6A116c6F9B8De566848a985C53C60/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x39EC44Bee4F6A116c6F9B8De566848a985C53C60/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x3b14C39E89D60D627b42a1A4CA45b5bb45Fc12e2/info.json b/blockchains/robinhoodchain/assets/0x3b14C39E89D60D627b42a1A4CA45b5bb45Fc12e2/info.json new file mode 100644 index 0000000000000..98ed318a73c47 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x3b14C39E89D60D627b42a1A4CA45b5bb45Fc12e2/info.json @@ -0,0 +1,20 @@ +{ + "name": "Rocket Lab Corporation", + "type": "ROBINHOODCHAIN", + "symbol": "RKLB", + "decimals": 18, + "description": "Rocket Lab Corporation (RKLB) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x3b14C39E89D60D627b42a1A4CA45b5bb45Fc12e2", + "status": "active", + "id": "0x3b14C39E89D60D627b42a1A4CA45b5bb45Fc12e2", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x3b14C39E89D60D627b42a1A4CA45b5bb45Fc12e2/logo.png b/blockchains/robinhoodchain/assets/0x3b14C39E89D60D627b42a1A4CA45b5bb45Fc12e2/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x3b14C39E89D60D627b42a1A4CA45b5bb45Fc12e2/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x40858070814a57FdF33a613ae84fE0a8b4a874f7/info.json b/blockchains/robinhoodchain/assets/0x40858070814a57FdF33a613ae84fE0a8b4a874f7/info.json new file mode 100644 index 0000000000000..44f00ec8644c1 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x40858070814a57FdF33a613ae84fE0a8b4a874f7/info.json @@ -0,0 +1,15 @@ +{ + "name": "Syrup USDG", + "type": "ROBINHOODCHAIN", + "symbol": "syrupUSDG", + "decimals": 6, + "description": "syrupUSDG is a yield-bearing token from Syrup (Maple Finance) denominated in USDG.", + "website": "https://syrup.fi", + "explorer": "https://robinhoodchain.blockscout.com/token/0x40858070814a57FdF33a613ae84fE0a8b4a874f7", + "status": "active", + "id": "0x40858070814a57FdF33a613ae84fE0a8b4a874f7", + "links": [], + "tags": [ + "defi" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x40858070814a57FdF33a613ae84fE0a8b4a874f7/logo.png b/blockchains/robinhoodchain/assets/0x40858070814a57FdF33a613ae84fE0a8b4a874f7/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x40858070814a57FdF33a613ae84fE0a8b4a874f7/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x408c14038a04f7bD235329E26d2bf569ee20e250/info.json b/blockchains/robinhoodchain/assets/0x408c14038a04f7bD235329E26d2bf569ee20e250/info.json new file mode 100644 index 0000000000000..98d02ed5a330a --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x408c14038a04f7bD235329E26d2bf569ee20e250/info.json @@ -0,0 +1,20 @@ +{ + "name": "Nu", + "type": "ROBINHOODCHAIN", + "symbol": "NU", + "decimals": 18, + "description": "Nu (NU) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x408c14038a04f7bD235329E26d2bf569ee20e250", + "status": "active", + "id": "0x408c14038a04f7bD235329E26d2bf569ee20e250", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x408c14038a04f7bD235329E26d2bf569ee20e250/logo.png b/blockchains/robinhoodchain/assets/0x408c14038a04f7bD235329E26d2bf569ee20e250/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x408c14038a04f7bD235329E26d2bf569ee20e250/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x411eFb0E7f985935DAec3D4C3ebaEa0d0AD7D89f/info.json b/blockchains/robinhoodchain/assets/0x411eFb0E7f985935DAec3D4C3ebaEa0d0AD7D89f/info.json new file mode 100644 index 0000000000000..e806deb3129e6 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x411eFb0E7f985935DAec3D4C3ebaEa0d0AD7D89f/info.json @@ -0,0 +1,20 @@ +{ + "name": "iShares Silver Trust", + "type": "ROBINHOODCHAIN", + "symbol": "SLV", + "decimals": 18, + "description": "iShares Silver Trust (SLV) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x411eFb0E7f985935DAec3D4C3ebaEa0d0AD7D89f", + "status": "active", + "id": "0x411eFb0E7f985935DAec3D4C3ebaEa0d0AD7D89f", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x411eFb0E7f985935DAec3D4C3ebaEa0d0AD7D89f/logo.png b/blockchains/robinhoodchain/assets/0x411eFb0E7f985935DAec3D4C3ebaEa0d0AD7D89f/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x411eFb0E7f985935DAec3D4C3ebaEa0d0AD7D89f/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x4189F0c66EBBB0bfeF1C31f763131361EF32f77C/info.json b/blockchains/robinhoodchain/assets/0x4189F0c66EBBB0bfeF1C31f763131361EF32f77C/info.json new file mode 100644 index 0000000000000..f4fb4cdf3d1b9 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x4189F0c66EBBB0bfeF1C31f763131361EF32f77C/info.json @@ -0,0 +1,20 @@ +{ + "name": "Permian Resources", + "type": "ROBINHOODCHAIN", + "symbol": "PR", + "decimals": 18, + "description": "Permian Resources (PR) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x4189F0c66EBBB0bfeF1C31f763131361EF32f77C", + "status": "active", + "id": "0x4189F0c66EBBB0bfeF1C31f763131361EF32f77C", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x4189F0c66EBBB0bfeF1C31f763131361EF32f77C/logo.png b/blockchains/robinhoodchain/assets/0x4189F0c66EBBB0bfeF1C31f763131361EF32f77C/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x4189F0c66EBBB0bfeF1C31f763131361EF32f77C/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x44c4F142009036cF477eD2d09932051843137CF1/info.json b/blockchains/robinhoodchain/assets/0x44c4F142009036cF477eD2d09932051843137CF1/info.json new file mode 100644 index 0000000000000..06d1cc8593d73 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x44c4F142009036cF477eD2d09932051843137CF1/info.json @@ -0,0 +1,20 @@ +{ + "name": "Zoom", + "type": "ROBINHOODCHAIN", + "symbol": "ZM", + "decimals": 18, + "description": "Zoom (ZM) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x44c4F142009036cF477eD2d09932051843137CF1", + "status": "active", + "id": "0x44c4F142009036cF477eD2d09932051843137CF1", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x44c4F142009036cF477eD2d09932051843137CF1/logo.png b/blockchains/robinhoodchain/assets/0x44c4F142009036cF477eD2d09932051843137CF1/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x44c4F142009036cF477eD2d09932051843137CF1/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x47F93d52cBeC7C6D2CfC080e154002370a60dAEA/info.json b/blockchains/robinhoodchain/assets/0x47F93d52cBeC7C6D2CfC080e154002370a60dAEA/info.json new file mode 100644 index 0000000000000..e38538bfc31c6 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x47F93d52cBeC7C6D2CfC080e154002370a60dAEA/info.json @@ -0,0 +1,20 @@ +{ + "name": "ASML Holding NV", + "type": "ROBINHOODCHAIN", + "symbol": "ASML", + "decimals": 18, + "description": "ASML Holding NV (ASML) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x47F93d52cBeC7C6D2CfC080e154002370a60dAEA", + "status": "active", + "id": "0x47F93d52cBeC7C6D2CfC080e154002370a60dAEA", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x47F93d52cBeC7C6D2CfC080e154002370a60dAEA/logo.png b/blockchains/robinhoodchain/assets/0x47F93d52cBeC7C6D2CfC080e154002370a60dAEA/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x47F93d52cBeC7C6D2CfC080e154002370a60dAEA/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x48961813349333209994750ffA89b3c5C22eC969/info.json b/blockchains/robinhoodchain/assets/0x48961813349333209994750ffA89b3c5C22eC969/info.json new file mode 100644 index 0000000000000..1db749ff1b362 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x48961813349333209994750ffA89b3c5C22eC969/info.json @@ -0,0 +1,20 @@ +{ + "name": "MaxLinear", + "type": "ROBINHOODCHAIN", + "symbol": "MXL", + "decimals": 18, + "description": "MaxLinear (MXL) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x48961813349333209994750ffA89b3c5C22eC969", + "status": "active", + "id": "0x48961813349333209994750ffA89b3c5C22eC969", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x48961813349333209994750ffA89b3c5C22eC969/logo.png b/blockchains/robinhoodchain/assets/0x48961813349333209994750ffA89b3c5C22eC969/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x48961813349333209994750ffA89b3c5C22eC969/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x4D21483a44Bf67a86b77E3dA301411880797D452/info.json b/blockchains/robinhoodchain/assets/0x4D21483a44Bf67a86b77E3dA301411880797D452/info.json new file mode 100644 index 0000000000000..8b1d0b2cced6f --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x4D21483a44Bf67a86b77E3dA301411880797D452/info.json @@ -0,0 +1,20 @@ +{ + "name": "Boeing", + "type": "ROBINHOODCHAIN", + "symbol": "BA", + "decimals": 18, + "description": "Boeing (BA) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x4D21483a44Bf67a86b77E3dA301411880797D452", + "status": "active", + "id": "0x4D21483a44Bf67a86b77E3dA301411880797D452", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x4D21483a44Bf67a86b77E3dA301411880797D452/logo.png b/blockchains/robinhoodchain/assets/0x4D21483a44Bf67a86b77E3dA301411880797D452/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x4D21483a44Bf67a86b77E3dA301411880797D452/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x4EA005168D7F09a7A0Ba9D1DEf21a479950E44C2/info.json b/blockchains/robinhoodchain/assets/0x4EA005168D7F09a7A0Ba9D1DEf21a479950E44C2/info.json new file mode 100644 index 0000000000000..af184dfba9406 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x4EA005168D7F09a7A0Ba9D1DEf21a479950E44C2/info.json @@ -0,0 +1,20 @@ +{ + "name": "Costco", + "type": "ROBINHOODCHAIN", + "symbol": "COST", + "decimals": 18, + "description": "Costco (COST) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x4EA005168D7F09a7A0Ba9D1DEf21a479950E44C2", + "status": "active", + "id": "0x4EA005168D7F09a7A0Ba9D1DEf21a479950E44C2", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x4EA005168D7F09a7A0Ba9D1DEf21a479950E44C2/logo.png b/blockchains/robinhoodchain/assets/0x4EA005168D7F09a7A0Ba9D1DEf21a479950E44C2/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x4EA005168D7F09a7A0Ba9D1DEf21a479950E44C2/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x4e62068525Ab11FE768e29dfD00ef909B9803016/info.json b/blockchains/robinhoodchain/assets/0x4e62068525Ab11FE768e29dfD00ef909B9803016/info.json new file mode 100644 index 0000000000000..30c0bfea22860 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x4e62068525Ab11FE768e29dfD00ef909B9803016/info.json @@ -0,0 +1,20 @@ +{ + "name": "Lululemon", + "type": "ROBINHOODCHAIN", + "symbol": "LULU", + "decimals": 18, + "description": "Lululemon (LULU) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x4e62068525Ab11FE768e29dfD00ef909B9803016", + "status": "active", + "id": "0x4e62068525Ab11FE768e29dfD00ef909B9803016", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x4e62068525Ab11FE768e29dfD00ef909B9803016/logo.png b/blockchains/robinhoodchain/assets/0x4e62068525Ab11FE768e29dfD00ef909B9803016/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x4e62068525Ab11FE768e29dfD00ef909B9803016/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x521Cf887E6531c6F667b5BC4D896E5d9bfE8EB2E/info.json b/blockchains/robinhoodchain/assets/0x521Cf887E6531c6F667b5BC4D896E5d9bfE8EB2E/info.json new file mode 100644 index 0000000000000..ae1caf40657ac --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x521Cf887E6531c6F667b5BC4D896E5d9bfE8EB2E/info.json @@ -0,0 +1,20 @@ +{ + "name": "Applied Optoelectronics", + "type": "ROBINHOODCHAIN", + "symbol": "AAOI", + "decimals": 18, + "description": "Applied Optoelectronics (AAOI) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x521Cf887E6531c6F667b5BC4D896E5d9bfE8EB2E", + "status": "active", + "id": "0x521Cf887E6531c6F667b5BC4D896E5d9bfE8EB2E", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x521Cf887E6531c6F667b5BC4D896E5d9bfE8EB2E/logo.png b/blockchains/robinhoodchain/assets/0x521Cf887E6531c6F667b5BC4D896E5d9bfE8EB2E/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x521Cf887E6531c6F667b5BC4D896E5d9bfE8EB2E/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x558378E000D634A36593E338eBacdd6207640EfE/info.json b/blockchains/robinhoodchain/assets/0x558378E000D634A36593E338eBacdd6207640EfE/info.json new file mode 100644 index 0000000000000..621df1677774a --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x558378E000D634A36593E338eBacdd6207640EfE/info.json @@ -0,0 +1,20 @@ +{ + "name": "IonQ", + "type": "ROBINHOODCHAIN", + "symbol": "IONQ", + "decimals": 18, + "description": "IonQ (IONQ) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x558378E000D634A36593E338eBacdd6207640EfE", + "status": "active", + "id": "0x558378E000D634A36593E338eBacdd6207640EfE", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x558378E000D634A36593E338eBacdd6207640EfE/logo.png b/blockchains/robinhoodchain/assets/0x558378E000D634A36593E338eBacdd6207640EfE/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x558378E000D634A36593E338eBacdd6207640EfE/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x56d23beE5f41A7120170b0c603Dae30128e460e9/info.json b/blockchains/robinhoodchain/assets/0x56d23beE5f41A7120170b0c603Dae30128e460e9/info.json new file mode 100644 index 0000000000000..45171ad29314c --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x56d23beE5f41A7120170b0c603Dae30128e460e9/info.json @@ -0,0 +1,20 @@ +{ + "name": "Intuit", + "type": "ROBINHOODCHAIN", + "symbol": "INTU", + "decimals": 18, + "description": "Intuit (INTU) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x56d23beE5f41A7120170b0c603Dae30128e460e9", + "status": "active", + "id": "0x56d23beE5f41A7120170b0c603Dae30128e460e9", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x56d23beE5f41A7120170b0c603Dae30128e460e9/logo.png b/blockchains/robinhoodchain/assets/0x56d23beE5f41A7120170b0c603Dae30128e460e9/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x56d23beE5f41A7120170b0c603Dae30128e460e9/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x58538e6A46E07434d7E7375Bc268D3cb839C0133/info.json b/blockchains/robinhoodchain/assets/0x58538e6A46E07434d7E7375Bc268D3cb839C0133/info.json new file mode 100644 index 0000000000000..f89955eebda16 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x58538e6A46E07434d7E7375Bc268D3cb839C0133/info.json @@ -0,0 +1,20 @@ +{ + "name": "Ethena", + "type": "ROBINHOODCHAIN", + "symbol": "ENA", + "decimals": 18, + "description": "ENA is the governance token of Ethena, the protocol behind the USDe synthetic dollar.", + "website": "https://ethena.fi", + "explorer": "https://robinhoodchain.blockscout.com/token/0x58538e6A46E07434d7E7375Bc268D3cb839C0133", + "status": "active", + "id": "0x58538e6A46E07434d7E7375Bc268D3cb839C0133", + "links": [ + { + "name": "x", + "url": "https://x.com/ethena_labs" + } + ], + "tags": [ + "governance" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x58538e6A46E07434d7E7375Bc268D3cb839C0133/logo.png b/blockchains/robinhoodchain/assets/0x58538e6A46E07434d7E7375Bc268D3cb839C0133/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x58538e6A46E07434d7E7375Bc268D3cb839C0133/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x58FfE4a942d3885bAa22D7520691F611EF09e7AA/info.json b/blockchains/robinhoodchain/assets/0x58FfE4a942d3885bAa22D7520691F611EF09e7AA/info.json new file mode 100644 index 0000000000000..90c3d3dd36340 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x58FfE4a942d3885bAa22D7520691F611EF09e7AA/info.json @@ -0,0 +1,20 @@ +{ + "name": "Taiwan Semiconductor Manufacturing", + "type": "ROBINHOODCHAIN", + "symbol": "TSM", + "decimals": 18, + "description": "Taiwan Semiconductor Manufacturing (TSM) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x58FfE4a942d3885bAa22D7520691F611EF09e7AA", + "status": "active", + "id": "0x58FfE4a942d3885bAa22D7520691F611EF09e7AA", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x58FfE4a942d3885bAa22D7520691F611EF09e7AA/logo.png b/blockchains/robinhoodchain/assets/0x58FfE4a942d3885bAa22D7520691F611EF09e7AA/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x58FfE4a942d3885bAa22D7520691F611EF09e7AA/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x59818904ab4cE163b3cE4FfB64f2D6Ca02c434B4/info.json b/blockchains/robinhoodchain/assets/0x59818904ab4cE163b3cE4FfB64f2D6Ca02c434B4/info.json new file mode 100644 index 0000000000000..c01865bcf50de --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x59818904ab4cE163b3cE4FfB64f2D6Ca02c434B4/info.json @@ -0,0 +1,20 @@ +{ + "name": "Quantum Computing", + "type": "ROBINHOODCHAIN", + "symbol": "QUBT", + "decimals": 18, + "description": "Quantum Computing (QUBT) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x59818904ab4cE163b3cE4FfB64f2D6Ca02c434B4", + "status": "active", + "id": "0x59818904ab4cE163b3cE4FfB64f2D6Ca02c434B4", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x59818904ab4cE163b3cE4FfB64f2D6Ca02c434B4/logo.png b/blockchains/robinhoodchain/assets/0x59818904ab4cE163b3cE4FfB64f2D6Ca02c434B4/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x59818904ab4cE163b3cE4FfB64f2D6Ca02c434B4/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x5c90450Bbb4273D7b2f17CF6917AEB237A569679/info.json b/blockchains/robinhoodchain/assets/0x5c90450Bbb4273D7b2f17CF6917AEB237A569679/info.json new file mode 100644 index 0000000000000..c99a8075c9f5c --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x5c90450Bbb4273D7b2f17CF6917AEB237A569679/info.json @@ -0,0 +1,20 @@ +{ + "name": "Cerebras Systems", + "type": "ROBINHOODCHAIN", + "symbol": "CBRS", + "decimals": 18, + "description": "Cerebras Systems (CBRS) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x5c90450Bbb4273D7b2f17CF6917AEB237A569679", + "status": "active", + "id": "0x5c90450Bbb4273D7b2f17CF6917AEB237A569679", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x5c90450Bbb4273D7b2f17CF6917AEB237A569679/logo.png b/blockchains/robinhoodchain/assets/0x5c90450Bbb4273D7b2f17CF6917AEB237A569679/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x5c90450Bbb4273D7b2f17CF6917AEB237A569679/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34/info.json b/blockchains/robinhoodchain/assets/0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34/info.json new file mode 100644 index 0000000000000..0647f3c5e47dd --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34/info.json @@ -0,0 +1,20 @@ +{ + "name": "Ethena USDe", + "type": "ROBINHOODCHAIN", + "symbol": "USDe", + "decimals": 18, + "description": "USDe is a synthetic dollar by Ethena, backed by crypto collateral and corresponding short futures positions.", + "website": "https://ethena.fi", + "explorer": "https://robinhoodchain.blockscout.com/token/0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34", + "status": "active", + "id": "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34", + "links": [ + { + "name": "x", + "url": "https://x.com/ethena_labs" + } + ], + "tags": [ + "stablecoin" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34/logo.png b/blockchains/robinhoodchain/assets/0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x5e81213613b6B86EaB4c6c50d718d34359459786/info.json b/blockchains/robinhoodchain/assets/0x5e81213613b6B86EaB4c6c50d718d34359459786/info.json new file mode 100644 index 0000000000000..d8793fa21d77a --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x5e81213613b6B86EaB4c6c50d718d34359459786/info.json @@ -0,0 +1,20 @@ +{ + "name": "Take-Two Interactive Software", + "type": "ROBINHOODCHAIN", + "symbol": "TTWO", + "decimals": 18, + "description": "Take-Two Interactive Software (TTWO) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x5e81213613b6B86EaB4c6c50d718d34359459786", + "status": "active", + "id": "0x5e81213613b6B86EaB4c6c50d718d34359459786", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x5e81213613b6B86EaB4c6c50d718d34359459786/logo.png b/blockchains/robinhoodchain/assets/0x5e81213613b6B86EaB4c6c50d718d34359459786/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x5e81213613b6B86EaB4c6c50d718d34359459786/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x5f10A1C971B69e47e059e1dC91901B59b3fB49C3/info.json b/blockchains/robinhoodchain/assets/0x5f10A1C971B69e47e059e1dC91901B59b3fB49C3/info.json new file mode 100644 index 0000000000000..17348d5504456 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x5f10A1C971B69e47e059e1dC91901B59b3fB49C3/info.json @@ -0,0 +1,20 @@ +{ + "name": "CoreWeave", + "type": "ROBINHOODCHAIN", + "symbol": "CRWV", + "decimals": 18, + "description": "CoreWeave (CRWV) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x5f10A1C971B69e47e059e1dC91901B59b3fB49C3", + "status": "active", + "id": "0x5f10A1C971B69e47e059e1dC91901B59b3fB49C3", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x5f10A1C971B69e47e059e1dC91901B59b3fB49C3/logo.png b/blockchains/robinhoodchain/assets/0x5f10A1C971B69e47e059e1dC91901B59b3fB49C3/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x5f10A1C971B69e47e059e1dC91901B59b3fB49C3/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x5fc5360D0400a0Fd4f2af552ADD042D716F1d168/info.json b/blockchains/robinhoodchain/assets/0x5fc5360D0400a0Fd4f2af552ADD042D716F1d168/info.json new file mode 100644 index 0000000000000..217809aec06f2 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x5fc5360D0400a0Fd4f2af552ADD042D716F1d168/info.json @@ -0,0 +1,15 @@ +{ + "name": "Global Dollar", + "type": "ROBINHOODCHAIN", + "symbol": "USDG", + "decimals": 6, + "description": "Global Dollar (USDG) is a USD-backed stablecoin issued under the Global Dollar Network.", + "website": "https://www.global-dollar.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x5fc5360D0400a0Fd4f2af552ADD042D716F1d168", + "status": "active", + "id": "0x5fc5360D0400a0Fd4f2af552ADD042D716F1d168", + "links": [], + "tags": [ + "stablecoin" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x5fc5360D0400a0Fd4f2af552ADD042D716F1d168/logo.png b/blockchains/robinhoodchain/assets/0x5fc5360D0400a0Fd4f2af552ADD042D716F1d168/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x5fc5360D0400a0Fd4f2af552ADD042D716F1d168/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x62fd0668e10D8B72339BE2DCF7643001688ff13B/info.json b/blockchains/robinhoodchain/assets/0x62fd0668e10D8B72339BE2DCF7643001688ff13B/info.json new file mode 100644 index 0000000000000..6e871016fcfb9 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x62fd0668e10D8B72339BE2DCF7643001688ff13B/info.json @@ -0,0 +1,20 @@ +{ + "name": "Marvell Technology", + "type": "ROBINHOODCHAIN", + "symbol": "MRVL", + "decimals": 18, + "description": "Marvell Technology (MRVL) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x62fd0668e10D8B72339BE2DCF7643001688ff13B", + "status": "active", + "id": "0x62fd0668e10D8B72339BE2DCF7643001688ff13B", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x62fd0668e10D8B72339BE2DCF7643001688ff13B/logo.png b/blockchains/robinhoodchain/assets/0x62fd0668e10D8B72339BE2DCF7643001688ff13B/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x62fd0668e10D8B72339BE2DCF7643001688ff13B/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x6330D8C3178a418788dF01a47479c0ce7CCF450b/info.json b/blockchains/robinhoodchain/assets/0x6330D8C3178a418788dF01a47479c0ce7CCF450b/info.json new file mode 100644 index 0000000000000..66885db7308c3 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x6330D8C3178a418788dF01a47479c0ce7CCF450b/info.json @@ -0,0 +1,20 @@ +{ + "name": "Coinbase", + "type": "ROBINHOODCHAIN", + "symbol": "COIN", + "decimals": 18, + "description": "Coinbase (COIN) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x6330D8C3178a418788dF01a47479c0ce7CCF450b", + "status": "active", + "id": "0x6330D8C3178a418788dF01a47479c0ce7CCF450b", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x6330D8C3178a418788dF01a47479c0ce7CCF450b/logo.png b/blockchains/robinhoodchain/assets/0x6330D8C3178a418788dF01a47479c0ce7CCF450b/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x6330D8C3178a418788dF01a47479c0ce7CCF450b/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x666716999E75d2652398FF830Bbc2e485946E140/info.json b/blockchains/robinhoodchain/assets/0x666716999E75d2652398FF830Bbc2e485946E140/info.json new file mode 100644 index 0000000000000..501fcbe428548 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x666716999E75d2652398FF830Bbc2e485946E140/info.json @@ -0,0 +1,20 @@ +{ + "name": "Arm Holdings plc", + "type": "ROBINHOODCHAIN", + "symbol": "ARM", + "decimals": 18, + "description": "Arm Holdings plc (ARM) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x666716999E75d2652398FF830Bbc2e485946E140", + "status": "active", + "id": "0x666716999E75d2652398FF830Bbc2e485946E140", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x666716999E75d2652398FF830Bbc2e485946E140/logo.png b/blockchains/robinhoodchain/assets/0x666716999E75d2652398FF830Bbc2e485946E140/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x666716999E75d2652398FF830Bbc2e485946E140/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x6ddb95405db6179012Bff2fFf7E0F8d49cF00137/info.json b/blockchains/robinhoodchain/assets/0x6ddb95405db6179012Bff2fFf7E0F8d49cF00137/info.json new file mode 100644 index 0000000000000..3f871340d3aa4 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x6ddb95405db6179012Bff2fFf7E0F8d49cF00137/info.json @@ -0,0 +1,20 @@ +{ + "name": "Tema Space Innovators ETF", + "type": "ROBINHOODCHAIN", + "symbol": "NASA", + "decimals": 18, + "description": "Tema Space Innovators ETF (NASA) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x6ddb95405db6179012Bff2fFf7E0F8d49cF00137", + "status": "active", + "id": "0x6ddb95405db6179012Bff2fFf7E0F8d49cF00137", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x6ddb95405db6179012Bff2fFf7E0F8d49cF00137/logo.png b/blockchains/robinhoodchain/assets/0x6ddb95405db6179012Bff2fFf7E0F8d49cF00137/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x6ddb95405db6179012Bff2fFf7E0F8d49cF00137/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x75742c18BC1f1C5c5f448f4C9D9C6F66dafAAa38/info.json b/blockchains/robinhoodchain/assets/0x75742c18BC1f1C5c5f448f4C9D9C6F66dafAAa38/info.json new file mode 100644 index 0000000000000..ddd15b526023c --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x75742c18BC1f1C5c5f448f4C9D9C6F66dafAAa38/info.json @@ -0,0 +1,20 @@ +{ + "name": "iShares Semiconductor ETF", + "type": "ROBINHOODCHAIN", + "symbol": "SOXX", + "decimals": 18, + "description": "iShares Semiconductor ETF (SOXX) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x75742c18BC1f1C5c5f448f4C9D9C6F66dafAAa38", + "status": "active", + "id": "0x75742c18BC1f1C5c5f448f4C9D9C6F66dafAAa38", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x75742c18BC1f1C5c5f448f4C9D9C6F66dafAAa38/logo.png b/blockchains/robinhoodchain/assets/0x75742c18BC1f1C5c5f448f4C9D9C6F66dafAAa38/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x75742c18BC1f1C5c5f448f4C9D9C6F66dafAAa38/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x7c04E6A3368F2A1DE3874f0e80d2e0A1a9915da6/info.json b/blockchains/robinhoodchain/assets/0x7c04E6A3368F2A1DE3874f0e80d2e0A1a9915da6/info.json new file mode 100644 index 0000000000000..e50a8783beed8 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x7c04E6A3368F2A1DE3874f0e80d2e0A1a9915da6/info.json @@ -0,0 +1,20 @@ +{ + "name": "Corning", + "type": "ROBINHOODCHAIN", + "symbol": "GLW", + "decimals": 18, + "description": "Corning (GLW) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x7c04E6A3368F2A1DE3874f0e80d2e0A1a9915da6", + "status": "active", + "id": "0x7c04E6A3368F2A1DE3874f0e80d2e0A1a9915da6", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x7c04E6A3368F2A1DE3874f0e80d2e0A1a9915da6/logo.png b/blockchains/robinhoodchain/assets/0x7c04E6A3368F2A1DE3874f0e80d2e0A1a9915da6/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x7c04E6A3368F2A1DE3874f0e80d2e0A1a9915da6/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x7dc013eB55e436f30d7ED1AFE4E36d6e45e3c3f7/info.json b/blockchains/robinhoodchain/assets/0x7dc013eB55e436f30d7ED1AFE4E36d6e45e3c3f7/info.json new file mode 100644 index 0000000000000..92e9eb620253e --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x7dc013eB55e436f30d7ED1AFE4E36d6e45e3c3f7/info.json @@ -0,0 +1,20 @@ +{ + "name": "Zscaler", + "type": "ROBINHOODCHAIN", + "symbol": "ZS", + "decimals": 18, + "description": "Zscaler (ZS) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x7dc013eB55e436f30d7ED1AFE4E36d6e45e3c3f7", + "status": "active", + "id": "0x7dc013eB55e436f30d7ED1AFE4E36d6e45e3c3f7", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x7dc013eB55e436f30d7ED1AFE4E36d6e45e3c3f7/logo.png b/blockchains/robinhoodchain/assets/0x7dc013eB55e436f30d7ED1AFE4E36d6e45e3c3f7/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x7dc013eB55e436f30d7ED1AFE4E36d6e45e3c3f7/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x7f0aBeF0C07280F82c6a08ead09dEd6BAE2C13Fc/info.json b/blockchains/robinhoodchain/assets/0x7f0aBeF0C07280F82c6a08ead09dEd6BAE2C13Fc/info.json new file mode 100644 index 0000000000000..cd4ae66c912f2 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x7f0aBeF0C07280F82c6a08ead09dEd6BAE2C13Fc/info.json @@ -0,0 +1,20 @@ +{ + "name": "iShares MSCI South Korea fund", + "type": "ROBINHOODCHAIN", + "symbol": "EWY", + "decimals": 18, + "description": "iShares MSCI South Korea fund (EWY) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x7f0aBeF0C07280F82c6a08ead09dEd6BAE2C13Fc", + "status": "active", + "id": "0x7f0aBeF0C07280F82c6a08ead09dEd6BAE2C13Fc", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x7f0aBeF0C07280F82c6a08ead09dEd6BAE2C13Fc/logo.png b/blockchains/robinhoodchain/assets/0x7f0aBeF0C07280F82c6a08ead09dEd6BAE2C13Fc/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x7f0aBeF0C07280F82c6a08ead09dEd6BAE2C13Fc/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x8005d266423c7ea827372c9c864491e5786600ea/info.json b/blockchains/robinhoodchain/assets/0x8005d266423c7ea827372c9c864491e5786600ea/info.json new file mode 100644 index 0000000000000..633a5bbf3265a --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x8005d266423c7ea827372c9c864491e5786600ea/info.json @@ -0,0 +1,20 @@ +{ + "name": "Eli Lilly", + "type": "ROBINHOODCHAIN", + "symbol": "LLY", + "decimals": 18, + "description": "Eli Lilly (LLY) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x8005d266423c7ea827372c9c864491e5786600ea", + "status": "active", + "id": "0x8005d266423c7ea827372c9c864491e5786600ea", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x8005d266423c7ea827372c9c864491e5786600ea/logo.png b/blockchains/robinhoodchain/assets/0x8005d266423c7ea827372c9c864491e5786600ea/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x8005d266423c7ea827372c9c864491e5786600ea/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x822CC93fFD030293E9842c30BBD678F530701867/info.json b/blockchains/robinhoodchain/assets/0x822CC93fFD030293E9842c30BBD678F530701867/info.json new file mode 100644 index 0000000000000..3299078c1ba74 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x822CC93fFD030293E9842c30BBD678F530701867/info.json @@ -0,0 +1,20 @@ +{ + "name": "Bloom Energy", + "type": "ROBINHOODCHAIN", + "symbol": "BE", + "decimals": 18, + "description": "Bloom Energy (BE) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x822CC93fFD030293E9842c30BBD678F530701867", + "status": "active", + "id": "0x822CC93fFD030293E9842c30BBD678F530701867", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x822CC93fFD030293E9842c30BBD678F530701867/logo.png b/blockchains/robinhoodchain/assets/0x822CC93fFD030293E9842c30BBD678F530701867/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x822CC93fFD030293E9842c30BBD678F530701867/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x82DA4646242e1D962e96e932269Dc644c94a9CaA/info.json b/blockchains/robinhoodchain/assets/0x82DA4646242e1D962e96e932269Dc644c94a9CaA/info.json new file mode 100644 index 0000000000000..82e6e75bb022a --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x82DA4646242e1D962e96e932269Dc644c94a9CaA/info.json @@ -0,0 +1,20 @@ +{ + "name": "Workday", + "type": "ROBINHOODCHAIN", + "symbol": "WDAY", + "decimals": 18, + "description": "Workday (WDAY) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x82DA4646242e1D962e96e932269Dc644c94a9CaA", + "status": "active", + "id": "0x82DA4646242e1D962e96e932269Dc644c94a9CaA", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x82DA4646242e1D962e96e932269Dc644c94a9CaA/logo.png b/blockchains/robinhoodchain/assets/0x82DA4646242e1D962e96e932269Dc644c94a9CaA/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x82DA4646242e1D962e96e932269Dc644c94a9CaA/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x86923f96303D656E4aa86D9d42D1e57ad2023fdC/info.json b/blockchains/robinhoodchain/assets/0x86923f96303D656E4aa86D9d42D1e57ad2023fdC/info.json new file mode 100644 index 0000000000000..ce772efad1e73 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x86923f96303D656E4aa86D9d42D1e57ad2023fdC/info.json @@ -0,0 +1,20 @@ +{ + "name": "AMD", + "type": "ROBINHOODCHAIN", + "symbol": "AMD", + "decimals": 18, + "description": "AMD (AMD) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x86923f96303D656E4aa86D9d42D1e57ad2023fdC", + "status": "active", + "id": "0x86923f96303D656E4aa86D9d42D1e57ad2023fdC", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x86923f96303D656E4aa86D9d42D1e57ad2023fdC/logo.png b/blockchains/robinhoodchain/assets/0x86923f96303D656E4aa86D9d42D1e57ad2023fdC/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x86923f96303D656E4aa86D9d42D1e57ad2023fdC/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x894E1EC2D74FFE5AEF8Dc8A9e84686acCB964F2A/info.json b/blockchains/robinhoodchain/assets/0x894E1EC2D74FFE5AEF8Dc8A9e84686acCB964F2A/info.json new file mode 100644 index 0000000000000..d9b8579319518 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x894E1EC2D74FFE5AEF8Dc8A9e84686acCB964F2A/info.json @@ -0,0 +1,20 @@ +{ + "name": "Palantir Technologies", + "type": "ROBINHOODCHAIN", + "symbol": "PLTR", + "decimals": 18, + "description": "Palantir Technologies (PLTR) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x894E1EC2D74FFE5AEF8Dc8A9e84686acCB964F2A", + "status": "active", + "id": "0x894E1EC2D74FFE5AEF8Dc8A9e84686acCB964F2A", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x894E1EC2D74FFE5AEF8Dc8A9e84686acCB964F2A/logo.png b/blockchains/robinhoodchain/assets/0x894E1EC2D74FFE5AEF8Dc8A9e84686acCB964F2A/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x894E1EC2D74FFE5AEF8Dc8A9e84686acCB964F2A/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x89776d4Cd68193597A2fC132cfaC1fDe36CCeA8a/info.json b/blockchains/robinhoodchain/assets/0x89776d4Cd68193597A2fC132cfaC1fDe36CCeA8a/info.json new file mode 100644 index 0000000000000..40117e0354d75 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x89776d4Cd68193597A2fC132cfaC1fDe36CCeA8a/info.json @@ -0,0 +1,20 @@ +{ + "name": "Tower Semiconductor", + "type": "ROBINHOODCHAIN", + "symbol": "TSEM", + "decimals": 18, + "description": "Tower Semiconductor (TSEM) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x89776d4Cd68193597A2fC132cfaC1fDe36CCeA8a", + "status": "active", + "id": "0x89776d4Cd68193597A2fC132cfaC1fDe36CCeA8a", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x89776d4Cd68193597A2fC132cfaC1fDe36CCeA8a/logo.png b/blockchains/robinhoodchain/assets/0x89776d4Cd68193597A2fC132cfaC1fDe36CCeA8a/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x89776d4Cd68193597A2fC132cfaC1fDe36CCeA8a/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x8cF07C5A878945185d327aAa6e33FAa95F95e7bF/info.json b/blockchains/robinhoodchain/assets/0x8cF07C5A878945185d327aAa6e33FAa95F95e7bF/info.json new file mode 100644 index 0000000000000..b92a89e3bd23a --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x8cF07C5A878945185d327aAa6e33FAa95F95e7bF/info.json @@ -0,0 +1,20 @@ +{ + "name": "Celsius", + "type": "ROBINHOODCHAIN", + "symbol": "CELH", + "decimals": 18, + "description": "Celsius (CELH) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x8cF07C5A878945185d327aAa6e33FAa95F95e7bF", + "status": "active", + "id": "0x8cF07C5A878945185d327aAa6e33FAa95F95e7bF", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x8cF07C5A878945185d327aAa6e33FAa95F95e7bF/logo.png b/blockchains/robinhoodchain/assets/0x8cF07C5A878945185d327aAa6e33FAa95F95e7bF/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x8cF07C5A878945185d327aAa6e33FAa95F95e7bF/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x8eF20885F94e3D9bc7eB3080279188Bd5ED7c08C/info.json b/blockchains/robinhoodchain/assets/0x8eF20885F94e3D9bc7eB3080279188Bd5ED7c08C/info.json new file mode 100644 index 0000000000000..025be2b62bdd1 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x8eF20885F94e3D9bc7eB3080279188Bd5ED7c08C/info.json @@ -0,0 +1,20 @@ +{ + "name": "Lumentum", + "type": "ROBINHOODCHAIN", + "symbol": "LITE", + "decimals": 18, + "description": "Lumentum (LITE) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x8eF20885F94e3D9bc7eB3080279188Bd5ED7c08C", + "status": "active", + "id": "0x8eF20885F94e3D9bc7eB3080279188Bd5ED7c08C", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x8eF20885F94e3D9bc7eB3080279188Bd5ED7c08C/logo.png b/blockchains/robinhoodchain/assets/0x8eF20885F94e3D9bc7eB3080279188Bd5ED7c08C/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x8eF20885F94e3D9bc7eB3080279188Bd5ED7c08C/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x92Ef19E82bD8fF36661DE838D5eaE7e5CEF0EfFE/info.json b/blockchains/robinhoodchain/assets/0x92Ef19E82bD8fF36661DE838D5eaE7e5CEF0EfFE/info.json new file mode 100644 index 0000000000000..4ac5e15549400 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x92Ef19E82bD8fF36661DE838D5eaE7e5CEF0EfFE/info.json @@ -0,0 +1,20 @@ +{ + "name": "Redwire", + "type": "ROBINHOODCHAIN", + "symbol": "RDW", + "decimals": 18, + "description": "Redwire (RDW) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x92Ef19E82bD8fF36661DE838D5eaE7e5CEF0EfFE", + "status": "active", + "id": "0x92Ef19E82bD8fF36661DE838D5eaE7e5CEF0EfFE", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x92Ef19E82bD8fF36661DE838D5eaE7e5CEF0EfFE/logo.png b/blockchains/robinhoodchain/assets/0x92Ef19E82bD8fF36661DE838D5eaE7e5CEF0EfFE/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x92Ef19E82bD8fF36661DE838D5eaE7e5CEF0EfFE/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x92FD66527192E3e61d4DDd13322Aa222DE86F9B5/info.json b/blockchains/robinhoodchain/assets/0x92FD66527192E3e61d4DDd13322Aa222DE86F9B5/info.json new file mode 100644 index 0000000000000..fd1dab8fffa0f --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x92FD66527192E3e61d4DDd13322Aa222DE86F9B5/info.json @@ -0,0 +1,20 @@ +{ + "name": "iShares 0-3 Month Treasury Bond ETF", + "type": "ROBINHOODCHAIN", + "symbol": "SGOV", + "decimals": 18, + "description": "iShares 0-3 Month Treasury Bond ETF (SGOV) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x92FD66527192E3e61d4DDd13322Aa222DE86F9B5", + "status": "active", + "id": "0x92FD66527192E3e61d4DDd13322Aa222DE86F9B5", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x92FD66527192E3e61d4DDd13322Aa222DE86F9B5/logo.png b/blockchains/robinhoodchain/assets/0x92FD66527192E3e61d4DDd13322Aa222DE86F9B5/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x92FD66527192E3e61d4DDd13322Aa222DE86F9B5/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x941AE714EC6D8130c7B75d67160Ca08f1e7d11Dd/info.json b/blockchains/robinhoodchain/assets/0x941AE714EC6D8130c7B75d67160Ca08f1e7d11Dd/info.json new file mode 100644 index 0000000000000..7ef77c7cdb071 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x941AE714EC6D8130c7B75d67160Ca08f1e7d11Dd/info.json @@ -0,0 +1,20 @@ +{ + "name": "Dell", + "type": "ROBINHOODCHAIN", + "symbol": "DELL", + "decimals": 18, + "description": "Dell (DELL) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x941AE714EC6D8130c7B75d67160Ca08f1e7d11Dd", + "status": "active", + "id": "0x941AE714EC6D8130c7B75d67160Ca08f1e7d11Dd", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x941AE714EC6D8130c7B75d67160Ca08f1e7d11Dd/logo.png b/blockchains/robinhoodchain/assets/0x941AE714EC6D8130c7B75d67160Ca08f1e7d11Dd/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x941AE714EC6D8130c7B75d67160Ca08f1e7d11Dd/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x95052ddcd5DC25641657424A8Cf04834997E1730/info.json b/blockchains/robinhoodchain/assets/0x95052ddcd5DC25641657424A8Cf04834997E1730/info.json new file mode 100644 index 0000000000000..290172f7adc83 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x95052ddcd5DC25641657424A8Cf04834997E1730/info.json @@ -0,0 +1,20 @@ +{ + "name": "EchoStar", + "type": "ROBINHOODCHAIN", + "symbol": "SATS", + "decimals": 18, + "description": "EchoStar (SATS) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x95052ddcd5DC25641657424A8Cf04834997E1730", + "status": "active", + "id": "0x95052ddcd5DC25641657424A8Cf04834997E1730", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x95052ddcd5DC25641657424A8Cf04834997E1730/logo.png b/blockchains/robinhoodchain/assets/0x95052ddcd5DC25641657424A8Cf04834997E1730/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x95052ddcd5DC25641657424A8Cf04834997E1730/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x9651342CeA770aE9a2969Ba2A52611523146aef9/info.json b/blockchains/robinhoodchain/assets/0x9651342CeA770aE9a2969Ba2A52611523146aef9/info.json new file mode 100644 index 0000000000000..d5d2cb8b1826d --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x9651342CeA770aE9a2969Ba2A52611523146aef9/info.json @@ -0,0 +1,20 @@ +{ + "name": "Carnival Corporation", + "type": "ROBINHOODCHAIN", + "symbol": "CCL", + "decimals": 18, + "description": "Carnival Corporation (CCL) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x9651342CeA770aE9a2969Ba2A52611523146aef9", + "status": "active", + "id": "0x9651342CeA770aE9a2969Ba2A52611523146aef9", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x9651342CeA770aE9a2969Ba2A52611523146aef9/logo.png b/blockchains/robinhoodchain/assets/0x9651342CeA770aE9a2969Ba2A52611523146aef9/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x9651342CeA770aE9a2969Ba2A52611523146aef9/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x98E75885157C80992A8D41b696D8c9C6Fb30A926/info.json b/blockchains/robinhoodchain/assets/0x98E75885157C80992A8D41b696D8c9C6Fb30A926/info.json new file mode 100644 index 0000000000000..575c2b118dfa5 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x98E75885157C80992A8D41b696D8c9C6Fb30A926/info.json @@ -0,0 +1,20 @@ +{ + "name": "SoFi Technologies", + "type": "ROBINHOODCHAIN", + "symbol": "SOFI", + "decimals": 18, + "description": "SoFi Technologies (SOFI) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x98E75885157C80992A8D41b696D8c9C6Fb30A926", + "status": "active", + "id": "0x98E75885157C80992A8D41b696D8c9C6Fb30A926", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x98E75885157C80992A8D41b696D8c9C6Fb30A926/logo.png b/blockchains/robinhoodchain/assets/0x98E75885157C80992A8D41b696D8c9C6Fb30A926/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x98E75885157C80992A8D41b696D8c9C6Fb30A926/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x9D9c6684F596F66a64C030B93A886D51Fd4D7931/info.json b/blockchains/robinhoodchain/assets/0x9D9c6684F596F66a64C030B93A886D51Fd4D7931/info.json new file mode 100644 index 0000000000000..2d0a7bbf5d844 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x9D9c6684F596F66a64C030B93A886D51Fd4D7931/info.json @@ -0,0 +1,20 @@ +{ + "name": "Nebius Group", + "type": "ROBINHOODCHAIN", + "symbol": "NBIS", + "decimals": 18, + "description": "Nebius Group (NBIS) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x9D9c6684F596F66a64C030B93A886D51Fd4D7931", + "status": "active", + "id": "0x9D9c6684F596F66a64C030B93A886D51Fd4D7931", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x9D9c6684F596F66a64C030B93A886D51Fd4D7931/logo.png b/blockchains/robinhoodchain/assets/0x9D9c6684F596F66a64C030B93A886D51Fd4D7931/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x9D9c6684F596F66a64C030B93A886D51Fd4D7931/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0x9b23573b156B52565012F5cE02CDF60AFBaa70Be/info.json b/blockchains/robinhoodchain/assets/0x9b23573b156B52565012F5cE02CDF60AFBaa70Be/info.json new file mode 100644 index 0000000000000..2ac7aa2eea822 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0x9b23573b156B52565012F5cE02CDF60AFBaa70Be/info.json @@ -0,0 +1,20 @@ +{ + "name": "Penguin Solutions", + "type": "ROBINHOODCHAIN", + "symbol": "PENG", + "decimals": 18, + "description": "Penguin Solutions (PENG) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0x9b23573b156B52565012F5cE02CDF60AFBaa70Be", + "status": "active", + "id": "0x9b23573b156B52565012F5cE02CDF60AFBaa70Be", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0x9b23573b156B52565012F5cE02CDF60AFBaa70Be/logo.png b/blockchains/robinhoodchain/assets/0x9b23573b156B52565012F5cE02CDF60AFBaa70Be/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0x9b23573b156B52565012F5cE02CDF60AFBaa70Be/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xA8eB3BCcbf2017eE7CBfb652eB51CF2E1B153289/info.json b/blockchains/robinhoodchain/assets/0xA8eB3BCcbf2017eE7CBfb652eB51CF2E1B153289/info.json new file mode 100644 index 0000000000000..598b88df9b4f6 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xA8eB3BCcbf2017eE7CBfb652eB51CF2E1B153289/info.json @@ -0,0 +1,20 @@ +{ + "name": "Xanadu Quantum", + "type": "ROBINHOODCHAIN", + "symbol": "XNDU", + "decimals": 18, + "description": "Xanadu Quantum (XNDU) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xA8eB3BCcbf2017eE7CBfb652eB51CF2E1B153289", + "status": "active", + "id": "0xA8eB3BCcbf2017eE7CBfb652eB51CF2E1B153289", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xA8eB3BCcbf2017eE7CBfb652eB51CF2E1B153289/logo.png b/blockchains/robinhoodchain/assets/0xA8eB3BCcbf2017eE7CBfb652eB51CF2E1B153289/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xA8eB3BCcbf2017eE7CBfb652eB51CF2E1B153289/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xAd622320e520de39e72d41EF07438C3Fd3354875/info.json b/blockchains/robinhoodchain/assets/0xAd622320e520de39e72d41EF07438C3Fd3354875/info.json new file mode 100644 index 0000000000000..e9848bd070ce8 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xAd622320e520de39e72d41EF07438C3Fd3354875/info.json @@ -0,0 +1,20 @@ +{ + "name": "Invesco S&P 500 Momentum ETF", + "type": "ROBINHOODCHAIN", + "symbol": "SPMO", + "decimals": 18, + "description": "Invesco S&P 500 Momentum ETF (SPMO) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xAd622320e520de39e72d41EF07438C3Fd3354875", + "status": "active", + "id": "0xAd622320e520de39e72d41EF07438C3Fd3354875", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xAd622320e520de39e72d41EF07438C3Fd3354875/logo.png b/blockchains/robinhoodchain/assets/0xAd622320e520de39e72d41EF07438C3Fd3354875/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xAd622320e520de39e72d41EF07438C3Fd3354875/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xB1BF26c1D20ff267A4f93550d1E0d06ac40a114B/info.json b/blockchains/robinhoodchain/assets/0xB1BF26c1D20ff267A4f93550d1E0d06ac40a114B/info.json new file mode 100644 index 0000000000000..4a85b060f10c2 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xB1BF26c1D20ff267A4f93550d1E0d06ac40a114B/info.json @@ -0,0 +1,20 @@ +{ + "name": "Rivian Automotive", + "type": "ROBINHOODCHAIN", + "symbol": "RIVN", + "decimals": 18, + "description": "Rivian Automotive (RIVN) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xB1BF26c1D20ff267A4f93550d1E0d06ac40a114B", + "status": "active", + "id": "0xB1BF26c1D20ff267A4f93550d1E0d06ac40a114B", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xB1BF26c1D20ff267A4f93550d1E0d06ac40a114B/logo.png b/blockchains/robinhoodchain/assets/0xB1BF26c1D20ff267A4f93550d1E0d06ac40a114B/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xB1BF26c1D20ff267A4f93550d1E0d06ac40a114B/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xB90A19fF0Af67f7779afF50A882A9CfF42446400/info.json b/blockchains/robinhoodchain/assets/0xB90A19fF0Af67f7779afF50A882A9CfF42446400/info.json new file mode 100644 index 0000000000000..9ac5dcadd9bce --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xB90A19fF0Af67f7779afF50A882A9CfF42446400/info.json @@ -0,0 +1,20 @@ +{ + "name": "Sandisk Corporation", + "type": "ROBINHOODCHAIN", + "symbol": "SNDK", + "decimals": 18, + "description": "Sandisk Corporation (SNDK) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xB90A19fF0Af67f7779afF50A882A9CfF42446400", + "status": "active", + "id": "0xB90A19fF0Af67f7779afF50A882A9CfF42446400", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xB90A19fF0Af67f7779afF50A882A9CfF42446400/logo.png b/blockchains/robinhoodchain/assets/0xB90A19fF0Af67f7779afF50A882A9CfF42446400/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xB90A19fF0Af67f7779afF50A882A9CfF42446400/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xBEF75684C43c4ea7BD18Dd532a2244674Ee8b926/info.json b/blockchains/robinhoodchain/assets/0xBEF75684C43c4ea7BD18Dd532a2244674Ee8b926/info.json new file mode 100644 index 0000000000000..586cbbeb24fb9 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xBEF75684C43c4ea7BD18Dd532a2244674Ee8b926/info.json @@ -0,0 +1,20 @@ +{ + "name": "Nano Nuclear Energy", + "type": "ROBINHOODCHAIN", + "symbol": "NNE", + "decimals": 18, + "description": "Nano Nuclear Energy (NNE) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xBEF75684C43c4ea7BD18Dd532a2244674Ee8b926", + "status": "active", + "id": "0xBEF75684C43c4ea7BD18Dd532a2244674Ee8b926", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xBEF75684C43c4ea7BD18Dd532a2244674Ee8b926/logo.png b/blockchains/robinhoodchain/assets/0xBEF75684C43c4ea7BD18Dd532a2244674Ee8b926/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xBEF75684C43c4ea7BD18Dd532a2244674Ee8b926/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xC583c60aeF9Dc401Da72cEC1B404743a93cea1Cc/info.json b/blockchains/robinhoodchain/assets/0xC583c60aeF9Dc401Da72cEC1B404743a93cea1Cc/info.json new file mode 100644 index 0000000000000..29bc58f275280 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xC583c60aeF9Dc401Da72cEC1B404743a93cea1Cc/info.json @@ -0,0 +1,20 @@ +{ + "name": "D-Wave Quantum", + "type": "ROBINHOODCHAIN", + "symbol": "QBTS", + "decimals": 18, + "description": "D-Wave Quantum (QBTS) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xC583c60aeF9Dc401Da72cEC1B404743a93cea1Cc", + "status": "active", + "id": "0xC583c60aeF9Dc401Da72cEC1B404743a93cea1Cc", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xC583c60aeF9Dc401Da72cEC1B404743a93cea1Cc/logo.png b/blockchains/robinhoodchain/assets/0xC583c60aeF9Dc401Da72cEC1B404743a93cea1Cc/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xC583c60aeF9Dc401Da72cEC1B404743a93cea1Cc/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xD5f3879160bc7c32ebb4dC785F8a4F505888de68/info.json b/blockchains/robinhoodchain/assets/0xD5f3879160bc7c32ebb4dC785F8a4F505888de68/info.json new file mode 100644 index 0000000000000..92d5f60c51708 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xD5f3879160bc7c32ebb4dC785F8a4F505888de68/info.json @@ -0,0 +1,20 @@ +{ + "name": "Invesco QQQ", + "type": "ROBINHOODCHAIN", + "symbol": "QQQ", + "decimals": 18, + "description": "Invesco QQQ (QQQ) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xD5f3879160bc7c32ebb4dC785F8a4F505888de68", + "status": "active", + "id": "0xD5f3879160bc7c32ebb4dC785F8a4F505888de68", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xD5f3879160bc7c32ebb4dC785F8a4F505888de68/logo.png b/blockchains/robinhoodchain/assets/0xD5f3879160bc7c32ebb4dC785F8a4F505888de68/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xD5f3879160bc7c32ebb4dC785F8a4F505888de68/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xDdf2266b79abf0B48898959B0ed6E6adf512be74/info.json b/blockchains/robinhoodchain/assets/0xDdf2266b79abf0B48898959B0ed6E6adf512be74/info.json new file mode 100644 index 0000000000000..9cb22435f5e79 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xDdf2266b79abf0B48898959B0ed6E6adf512be74/info.json @@ -0,0 +1,20 @@ +{ + "name": "MongoDB", + "type": "ROBINHOODCHAIN", + "symbol": "MDB", + "decimals": 18, + "description": "MongoDB (MDB) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xDdf2266b79abf0B48898959B0ed6E6adf512be74", + "status": "active", + "id": "0xDdf2266b79abf0B48898959B0ed6E6adf512be74", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xDdf2266b79abf0B48898959B0ed6E6adf512be74/logo.png b/blockchains/robinhoodchain/assets/0xDdf2266b79abf0B48898959B0ed6E6adf512be74/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xDdf2266b79abf0B48898959B0ed6E6adf512be74/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xE0444EF8BF4eD74f74FD73686e2ddF4C1c5591E8/info.json b/blockchains/robinhoodchain/assets/0xE0444EF8BF4eD74f74FD73686e2ddF4C1c5591E8/info.json new file mode 100644 index 0000000000000..103b8f1e80dd5 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xE0444EF8BF4eD74f74FD73686e2ddF4C1c5591E8/info.json @@ -0,0 +1,20 @@ +{ + "name": "Netflix", + "type": "ROBINHOODCHAIN", + "symbol": "NFLX", + "decimals": 18, + "description": "Netflix (NFLX) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xE0444EF8BF4eD74f74FD73686e2ddF4C1c5591E8", + "status": "active", + "id": "0xE0444EF8BF4eD74f74FD73686e2ddF4C1c5591E8", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xE0444EF8BF4eD74f74FD73686e2ddF4C1c5591E8/logo.png b/blockchains/robinhoodchain/assets/0xE0444EF8BF4eD74f74FD73686e2ddF4C1c5591E8/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xE0444EF8BF4eD74f74FD73686e2ddF4C1c5591E8/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xF0AB0c93bE6F41369d302e55db1A96b3c430212D/info.json b/blockchains/robinhoodchain/assets/0xF0AB0c93bE6F41369d302e55db1A96b3c430212D/info.json new file mode 100644 index 0000000000000..f06798fb2ae22 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xF0AB0c93bE6F41369d302e55db1A96b3c430212D/info.json @@ -0,0 +1,20 @@ +{ + "name": "IREN Limited", + "type": "ROBINHOODCHAIN", + "symbol": "IREN", + "decimals": 18, + "description": "IREN Limited (IREN) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xF0AB0c93bE6F41369d302e55db1A96b3c430212D", + "status": "active", + "id": "0xF0AB0c93bE6F41369d302e55db1A96b3c430212D", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xF0AB0c93bE6F41369d302e55db1A96b3c430212D/logo.png b/blockchains/robinhoodchain/assets/0xF0AB0c93bE6F41369d302e55db1A96b3c430212D/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xF0AB0c93bE6F41369d302e55db1A96b3c430212D/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xF0C4BF4C582cb3836e98394b1d4e7B7281101bE8/info.json b/blockchains/robinhoodchain/assets/0xF0C4BF4C582cb3836e98394b1d4e7B7281101bE8/info.json new file mode 100644 index 0000000000000..90e7d08034f8d --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xF0C4BF4C582cb3836e98394b1d4e7B7281101bE8/info.json @@ -0,0 +1,20 @@ +{ + "name": "Roblox", + "type": "ROBINHOODCHAIN", + "symbol": "RBLX", + "decimals": 18, + "description": "Roblox (RBLX) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xF0C4BF4C582cb3836e98394b1d4e7B7281101bE8", + "status": "active", + "id": "0xF0C4BF4C582cb3836e98394b1d4e7B7281101bE8", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xF0C4BF4C582cb3836e98394b1d4e7B7281101bE8/logo.png b/blockchains/robinhoodchain/assets/0xF0C4BF4C582cb3836e98394b1d4e7B7281101bE8/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xF0C4BF4C582cb3836e98394b1d4e7B7281101bE8/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xF53F66751B1Eff985311b693531E3290F600c410/info.json b/blockchains/robinhoodchain/assets/0xF53F66751B1Eff985311b693531E3290F600c410/info.json new file mode 100644 index 0000000000000..abd3fa9df091f --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xF53F66751B1Eff985311b693531E3290F600c410/info.json @@ -0,0 +1,20 @@ +{ + "name": "Shopify", + "type": "ROBINHOODCHAIN", + "symbol": "SHOP", + "decimals": 18, + "description": "Shopify (SHOP) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xF53F66751B1Eff985311b693531E3290F600c410", + "status": "active", + "id": "0xF53F66751B1Eff985311b693531E3290F600c410", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xF53F66751B1Eff985311b693531E3290F600c410/logo.png b/blockchains/robinhoodchain/assets/0xF53F66751B1Eff985311b693531E3290F600c410/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xF53F66751B1Eff985311b693531E3290F600c410/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xa30FA36Db767ad9eD3f7a60fC79526fB4d56D344/info.json b/blockchains/robinhoodchain/assets/0xa30FA36Db767ad9eD3f7a60fC79526fB4d56D344/info.json new file mode 100644 index 0000000000000..12a94d3b4447f --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xa30FA36Db767ad9eD3f7a60fC79526fB4d56D344/info.json @@ -0,0 +1,20 @@ +{ + "name": "United States Oil Fund", + "type": "ROBINHOODCHAIN", + "symbol": "USO", + "decimals": 18, + "description": "United States Oil Fund (USO) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xa30FA36Db767ad9eD3f7a60fC79526fB4d56D344", + "status": "active", + "id": "0xa30FA36Db767ad9eD3f7a60fC79526fB4d56D344", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xa30FA36Db767ad9eD3f7a60fC79526fB4d56D344/logo.png b/blockchains/robinhoodchain/assets/0xa30FA36Db767ad9eD3f7a60fC79526fB4d56D344/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xa30FA36Db767ad9eD3f7a60fC79526fB4d56D344/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xa5D4968421bA94814Be3B136b15cf422101aC1a3/info.json b/blockchains/robinhoodchain/assets/0xa5D4968421bA94814Be3B136b15cf422101aC1a3/info.json new file mode 100644 index 0000000000000..f787f3d5f127e --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xa5D4968421bA94814Be3B136b15cf422101aC1a3/info.json @@ -0,0 +1,20 @@ +{ + "name": "Intuitive Machines", + "type": "ROBINHOODCHAIN", + "symbol": "LUNR", + "decimals": 18, + "description": "Intuitive Machines (LUNR) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xa5D4968421bA94814Be3B136b15cf422101aC1a3", + "status": "active", + "id": "0xa5D4968421bA94814Be3B136b15cf422101aC1a3", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xa5D4968421bA94814Be3B136b15cf422101aC1a3/logo.png b/blockchains/robinhoodchain/assets/0xa5D4968421bA94814Be3B136b15cf422101aC1a3/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xa5D4968421bA94814Be3B136b15cf422101aC1a3/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xaF3D76f1834A1d425780943C99Ea8A608f8a93f9/info.json b/blockchains/robinhoodchain/assets/0xaF3D76f1834A1d425780943C99Ea8A608f8a93f9/info.json new file mode 100644 index 0000000000000..a0eaa3038dbfe --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xaF3D76f1834A1d425780943C99Ea8A608f8a93f9/info.json @@ -0,0 +1,20 @@ +{ + "name": "Apple", + "type": "ROBINHOODCHAIN", + "symbol": "AAPL", + "decimals": 18, + "description": "Apple (AAPL) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xaF3D76f1834A1d425780943C99Ea8A608f8a93f9", + "status": "active", + "id": "0xaF3D76f1834A1d425780943C99Ea8A608f8a93f9", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xaF3D76f1834A1d425780943C99Ea8A608f8a93f9/logo.png b/blockchains/robinhoodchain/assets/0xaF3D76f1834A1d425780943C99Ea8A608f8a93f9/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xaF3D76f1834A1d425780943C99Ea8A608f8a93f9/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xad25Ac6C84D497db898fa1E8387bf6Af3532a1c4/info.json b/blockchains/robinhoodchain/assets/0xad25Ac6C84D497db898fa1E8387bf6Af3532a1c4/info.json new file mode 100644 index 0000000000000..da904405a1d70 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xad25Ac6C84D497db898fa1E8387bf6Af3532a1c4/info.json @@ -0,0 +1,20 @@ +{ + "name": "Alibaba", + "type": "ROBINHOODCHAIN", + "symbol": "BABA", + "decimals": 18, + "description": "Alibaba (BABA) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xad25Ac6C84D497db898fa1E8387bf6Af3532a1c4", + "status": "active", + "id": "0xad25Ac6C84D497db898fa1E8387bf6Af3532a1c4", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xad25Ac6C84D497db898fa1E8387bf6Af3532a1c4/logo.png b/blockchains/robinhoodchain/assets/0xad25Ac6C84D497db898fa1E8387bf6Af3532a1c4/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xad25Ac6C84D497db898fa1E8387bf6Af3532a1c4/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xb02e3E1b7f68559427C2D9100566E4F3CC5b7611/info.json b/blockchains/robinhoodchain/assets/0xb02e3E1b7f68559427C2D9100566E4F3CC5b7611/info.json new file mode 100644 index 0000000000000..b3e490ca25f48 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xb02e3E1b7f68559427C2D9100566E4F3CC5b7611/info.json @@ -0,0 +1,20 @@ +{ + "name": "RVI", + "type": "ROBINHOODCHAIN", + "symbol": "RVI", + "decimals": 18, + "description": "RVI (RVI) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xb02e3E1b7f68559427C2D9100566E4F3CC5b7611", + "status": "active", + "id": "0xb02e3E1b7f68559427C2D9100566E4F3CC5b7611", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xb02e3E1b7f68559427C2D9100566E4F3CC5b7611/logo.png b/blockchains/robinhoodchain/assets/0xb02e3E1b7f68559427C2D9100566E4F3CC5b7611/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xb02e3E1b7f68559427C2D9100566E4F3CC5b7611/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xb0992820E760d836549ba69BC7598b4af75dEE03/info.json b/blockchains/robinhoodchain/assets/0xb0992820E760d836549ba69BC7598b4af75dEE03/info.json new file mode 100644 index 0000000000000..07f67aa5792d1 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xb0992820E760d836549ba69BC7598b4af75dEE03/info.json @@ -0,0 +1,20 @@ +{ + "name": "Oracle", + "type": "ROBINHOODCHAIN", + "symbol": "ORCL", + "decimals": 18, + "description": "Oracle (ORCL) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xb0992820E760d836549ba69BC7598b4af75dEE03", + "status": "active", + "id": "0xb0992820E760d836549ba69BC7598b4af75dEE03", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xb0992820E760d836549ba69BC7598b4af75dEE03/logo.png b/blockchains/robinhoodchain/assets/0xb0992820E760d836549ba69BC7598b4af75dEE03/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xb0992820E760d836549ba69BC7598b4af75dEE03/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xb8DBf92F9741c9ac1c32115E78581f23509916FD/info.json b/blockchains/robinhoodchain/assets/0xb8DBf92F9741c9ac1c32115E78581f23509916FD/info.json new file mode 100644 index 0000000000000..bbdea9ec2d2f1 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xb8DBf92F9741c9ac1c32115E78581f23509916FD/info.json @@ -0,0 +1,20 @@ +{ + "name": "Applied Digital", + "type": "ROBINHOODCHAIN", + "symbol": "APLD", + "decimals": 18, + "description": "Applied Digital (APLD) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xb8DBf92F9741c9ac1c32115E78581f23509916FD", + "status": "active", + "id": "0xb8DBf92F9741c9ac1c32115E78581f23509916FD", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xb8DBf92F9741c9ac1c32115E78581f23509916FD/logo.png b/blockchains/robinhoodchain/assets/0xb8DBf92F9741c9ac1c32115E78581f23509916FD/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xb8DBf92F9741c9ac1c32115E78581f23509916FD/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xbE6702d7b70315376dC48a3293f24f0982F86386/info.json b/blockchains/robinhoodchain/assets/0xbE6702d7b70315376dC48a3293f24f0982F86386/info.json new file mode 100644 index 0000000000000..b6b7feb7f0632 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xbE6702d7b70315376dC48a3293f24f0982F86386/info.json @@ -0,0 +1,20 @@ +{ + "name": "Navitas Semiconductor", + "type": "ROBINHOODCHAIN", + "symbol": "NVTS", + "decimals": 18, + "description": "Navitas Semiconductor (NVTS) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xbE6702d7b70315376dC48a3293f24f0982F86386", + "status": "active", + "id": "0xbE6702d7b70315376dC48a3293f24f0982F86386", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xbE6702d7b70315376dC48a3293f24f0982F86386/logo.png b/blockchains/robinhoodchain/assets/0xbE6702d7b70315376dC48a3293f24f0982F86386/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xbE6702d7b70315376dC48a3293f24f0982F86386/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xc01aA1fECeC0605b13bc84874ff7256C0f5F562a/info.json b/blockchains/robinhoodchain/assets/0xc01aA1fECeC0605b13bc84874ff7256C0f5F562a/info.json new file mode 100644 index 0000000000000..1e1be4549f450 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xc01aA1fECeC0605b13bc84874ff7256C0f5F562a/info.json @@ -0,0 +1,20 @@ +{ + "name": "Super Micro Computer", + "type": "ROBINHOODCHAIN", + "symbol": "SMCI", + "decimals": 18, + "description": "Super Micro Computer (SMCI) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xc01aA1fECeC0605b13bc84874ff7256C0f5F562a", + "status": "active", + "id": "0xc01aA1fECeC0605b13bc84874ff7256C0f5F562a", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xc01aA1fECeC0605b13bc84874ff7256C0f5F562a/logo.png b/blockchains/robinhoodchain/assets/0xc01aA1fECeC0605b13bc84874ff7256C0f5F562a/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xc01aA1fECeC0605b13bc84874ff7256C0f5F562a/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xc0D6457C16Cc70d6790Dd43521C899C87ce02f35/info.json b/blockchains/robinhoodchain/assets/0xc0D6457C16Cc70d6790Dd43521C899C87ce02f35/info.json new file mode 100644 index 0000000000000..dab9a4c7f6e23 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xc0D6457C16Cc70d6790Dd43521C899C87ce02f35/info.json @@ -0,0 +1,20 @@ +{ + "name": "Meta Platforms", + "type": "ROBINHOODCHAIN", + "symbol": "META", + "decimals": 18, + "description": "Meta Platforms (META) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xc0D6457C16Cc70d6790Dd43521C899C87ce02f35", + "status": "active", + "id": "0xc0D6457C16Cc70d6790Dd43521C899C87ce02f35", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xc0D6457C16Cc70d6790Dd43521C899C87ce02f35/logo.png b/blockchains/robinhoodchain/assets/0xc0D6457C16Cc70d6790Dd43521C899C87ce02f35/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xc0D6457C16Cc70d6790Dd43521C899C87ce02f35/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xc72b96e0E48ecd4DC75E1e45396e26300BC39681/info.json b/blockchains/robinhoodchain/assets/0xc72b96e0E48ecd4DC75E1e45396e26300BC39681/info.json new file mode 100644 index 0000000000000..f316c43a4a957 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xc72b96e0E48ecd4DC75E1e45396e26300BC39681/info.json @@ -0,0 +1,20 @@ +{ + "name": "Intel", + "type": "ROBINHOODCHAIN", + "symbol": "INTC", + "decimals": 18, + "description": "Intel (INTC) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xc72b96e0E48ecd4DC75E1e45396e26300BC39681", + "status": "active", + "id": "0xc72b96e0E48ecd4DC75E1e45396e26300BC39681", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xc72b96e0E48ecd4DC75E1e45396e26300BC39681/logo.png b/blockchains/robinhoodchain/assets/0xc72b96e0E48ecd4DC75E1e45396e26300BC39681/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xc72b96e0E48ecd4DC75E1e45396e26300BC39681/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xcBB95BBF36099d34dA091dc6Fa6F49EfA257Cee3/info.json b/blockchains/robinhoodchain/assets/0xcBB95BBF36099d34dA091dc6Fa6F49EfA257Cee3/info.json new file mode 100644 index 0000000000000..88bcbc4cb7fde --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xcBB95BBF36099d34dA091dc6Fa6F49EfA257Cee3/info.json @@ -0,0 +1,20 @@ +{ + "name": "CleanSpark", + "type": "ROBINHOODCHAIN", + "symbol": "CLSK", + "decimals": 18, + "description": "CleanSpark (CLSK) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xcBB95BBF36099d34dA091dc6Fa6F49EfA257Cee3", + "status": "active", + "id": "0xcBB95BBF36099d34dA091dc6Fa6F49EfA257Cee3", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xcBB95BBF36099d34dA091dc6Fa6F49EfA257Cee3/logo.png b/blockchains/robinhoodchain/assets/0xcBB95BBF36099d34dA091dc6Fa6F49EfA257Cee3/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xcBB95BBF36099d34dA091dc6Fa6F49EfA257Cee3/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xcf6B2D875361be807EAfa57458c80f28521F9333/info.json b/blockchains/robinhoodchain/assets/0xcf6B2D875361be807EAfa57458c80f28521F9333/info.json new file mode 100644 index 0000000000000..9fa28525d7c12 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xcf6B2D875361be807EAfa57458c80f28521F9333/info.json @@ -0,0 +1,20 @@ +{ + "name": "POET Technologies", + "type": "ROBINHOODCHAIN", + "symbol": "POET", + "decimals": 18, + "description": "POET Technologies (POET) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xcf6B2D875361be807EAfa57458c80f28521F9333", + "status": "active", + "id": "0xcf6B2D875361be807EAfa57458c80f28521F9333", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xcf6B2D875361be807EAfa57458c80f28521F9333/logo.png b/blockchains/robinhoodchain/assets/0xcf6B2D875361be807EAfa57458c80f28521F9333/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xcf6B2D875361be807EAfa57458c80f28521F9333/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xd0601CE157Db5bdC3162BbaC2a2C8aF5320D9EEC/info.json b/blockchains/robinhoodchain/assets/0xd0601CE157Db5bdC3162BbaC2a2C8aF5320D9EEC/info.json new file mode 100644 index 0000000000000..37e9028acf541 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xd0601CE157Db5bdC3162BbaC2a2C8aF5320D9EEC/info.json @@ -0,0 +1,20 @@ +{ + "name": "NVIDIA", + "type": "ROBINHOODCHAIN", + "symbol": "NVDA", + "decimals": 18, + "description": "NVIDIA (NVDA) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xd0601CE157Db5bdC3162BbaC2a2C8aF5320D9EEC", + "status": "active", + "id": "0xd0601CE157Db5bdC3162BbaC2a2C8aF5320D9EEC", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xd0601CE157Db5bdC3162BbaC2a2C8aF5320D9EEC/logo.png b/blockchains/robinhoodchain/assets/0xd0601CE157Db5bdC3162BbaC2a2C8aF5320D9EEC/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xd0601CE157Db5bdC3162BbaC2a2C8aF5320D9EEC/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xd917B029C761D264c6A312BBbcDA868658eF86a6/info.json b/blockchains/robinhoodchain/assets/0xd917B029C761D264c6A312BBbcDA868658eF86a6/info.json new file mode 100644 index 0000000000000..7c861fe31ceed --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xd917B029C761D264c6A312BBbcDA868658eF86a6/info.json @@ -0,0 +1,20 @@ +{ + "name": "USA Rare Earth", + "type": "ROBINHOODCHAIN", + "symbol": "USAR", + "decimals": 18, + "description": "USA Rare Earth (USAR) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xd917B029C761D264c6A312BBbcDA868658eF86a6", + "status": "active", + "id": "0xd917B029C761D264c6A312BBbcDA868658eF86a6", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xd917B029C761D264c6A312BBbcDA868658eF86a6/logo.png b/blockchains/robinhoodchain/assets/0xd917B029C761D264c6A312BBbcDA868658eF86a6/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xd917B029C761D264c6A312BBbcDA868658eF86a6/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xdF0992E440dD0be65BD8439b609d6D4366bf1CB5/info.json b/blockchains/robinhoodchain/assets/0xdF0992E440dD0be65BD8439b609d6D4366bf1CB5/info.json new file mode 100644 index 0000000000000..9a0674e62b1ae --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xdF0992E440dD0be65BD8439b609d6D4366bf1CB5/info.json @@ -0,0 +1,20 @@ +{ + "name": "Circle Internet Group", + "type": "ROBINHOODCHAIN", + "symbol": "CRCL", + "decimals": 18, + "description": "Circle Internet Group (CRCL) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xdF0992E440dD0be65BD8439b609d6D4366bf1CB5", + "status": "active", + "id": "0xdF0992E440dD0be65BD8439b609d6D4366bf1CB5", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xdF0992E440dD0be65BD8439b609d6D4366bf1CB5/logo.png b/blockchains/robinhoodchain/assets/0xdF0992E440dD0be65BD8439b609d6D4366bf1CB5/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xdF0992E440dD0be65BD8439b609d6D4366bf1CB5/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xde770c84FE66E063336b31737cFE9790f18c4087/info.json b/blockchains/robinhoodchain/assets/0xde770c84FE66E063336b31737cFE9790f18c4087/info.json new file mode 100644 index 0000000000000..15983cf7f8dc6 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xde770c84FE66E063336b31737cFE9790f18c4087/info.json @@ -0,0 +1,15 @@ +{ + "name": "Spark Savings USDG", + "type": "ROBINHOODCHAIN", + "symbol": "spUSDG", + "decimals": 6, + "description": "Spark Savings USDG (spUSDG) is the yield-bearing savings token for USDG in Spark.", + "website": "https://spark.fi", + "explorer": "https://robinhoodchain.blockscout.com/token/0xde770c84FE66E063336b31737cFE9790f18c4087", + "status": "active", + "id": "0xde770c84FE66E063336b31737cFE9790f18c4087", + "links": [], + "tags": [ + "staking" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xde770c84FE66E063336b31737cFE9790f18c4087/logo.png b/blockchains/robinhoodchain/assets/0xde770c84FE66E063336b31737cFE9790f18c4087/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xde770c84FE66E063336b31737cFE9790f18c4087/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xe93237C50D904957Cf27E7B1133b510C669c2e74/info.json b/blockchains/robinhoodchain/assets/0xe93237C50D904957Cf27E7B1133b510C669c2e74/info.json new file mode 100644 index 0000000000000..2a7e6eff6726b --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xe93237C50D904957Cf27E7B1133b510C669c2e74/info.json @@ -0,0 +1,20 @@ +{ + "name": "Microsoft", + "type": "ROBINHOODCHAIN", + "symbol": "MSFT", + "decimals": 18, + "description": "Microsoft (MSFT) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xe93237C50D904957Cf27E7B1133b510C669c2e74", + "status": "active", + "id": "0xe93237C50D904957Cf27E7B1133b510C669c2e74", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xe93237C50D904957Cf27E7B1133b510C669c2e74/logo.png b/blockchains/robinhoodchain/assets/0xe93237C50D904957Cf27E7B1133b510C669c2e74/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xe93237C50D904957Cf27E7B1133b510C669c2e74/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xeB30663bDFf0622Ef4e4E5cBb4E975F19f33f51D/info.json b/blockchains/robinhoodchain/assets/0xeB30663bDFf0622Ef4e4E5cBb4E975F19f33f51D/info.json new file mode 100644 index 0000000000000..b35c116f08503 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xeB30663bDFf0622Ef4e4E5cBb4E975F19f33f51D/info.json @@ -0,0 +1,20 @@ +{ + "name": "Futu Holdings", + "type": "ROBINHOODCHAIN", + "symbol": "FUTU", + "decimals": 18, + "description": "Futu Holdings (FUTU) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xeB30663bDFf0622Ef4e4E5cBb4E975F19f33f51D", + "status": "active", + "id": "0xeB30663bDFf0622Ef4e4E5cBb4E975F19f33f51D", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xeB30663bDFf0622Ef4e4E5cBb4E975F19f33f51D/logo.png b/blockchains/robinhoodchain/assets/0xeB30663bDFf0622Ef4e4E5cBb4E975F19f33f51D/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xeB30663bDFf0622Ef4e4E5cBb4E975F19f33f51D/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xea72Ecca2d0f6bFA1394DBBCff85b52CD4233931/info.json b/blockchains/robinhoodchain/assets/0xea72Ecca2d0f6bFA1394DBBCff85b52CD4233931/info.json new file mode 100644 index 0000000000000..80cf2e7a06710 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xea72Ecca2d0f6bFA1394DBBCff85b52CD4233931/info.json @@ -0,0 +1,20 @@ +{ + "name": "CrowdStrike Holdings", + "type": "ROBINHOODCHAIN", + "symbol": "CRWD", + "decimals": 18, + "description": "CrowdStrike Holdings (CRWD) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xea72Ecca2d0f6bFA1394DBBCff85b52CD4233931", + "status": "active", + "id": "0xea72Ecca2d0f6bFA1394DBBCff85b52CD4233931", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xea72Ecca2d0f6bFA1394DBBCff85b52CD4233931/logo.png b/blockchains/robinhoodchain/assets/0xea72Ecca2d0f6bFA1394DBBCff85b52CD4233931/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xea72Ecca2d0f6bFA1394DBBCff85b52CD4233931/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xec262a75e413fAfD0dF80480274532C79D42da09/info.json b/blockchains/robinhoodchain/assets/0xec262a75e413fAfD0dF80480274532C79D42da09/info.json new file mode 100644 index 0000000000000..e2f01de5eb80c --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xec262a75e413fAfD0dF80480274532C79D42da09/info.json @@ -0,0 +1,20 @@ +{ + "name": "Strategy Inc.", + "type": "ROBINHOODCHAIN", + "symbol": "MSTR", + "decimals": 18, + "description": "Strategy Inc. (MSTR) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xec262a75e413fAfD0dF80480274532C79D42da09", + "status": "active", + "id": "0xec262a75e413fAfD0dF80480274532C79D42da09", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xec262a75e413fAfD0dF80480274532C79D42da09/logo.png b/blockchains/robinhoodchain/assets/0xec262a75e413fAfD0dF80480274532C79D42da09/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xec262a75e413fAfD0dF80480274532C79D42da09/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xf1953DAB6FaD537488d5A022361FfAa8B4c95eC6/info.json b/blockchains/robinhoodchain/assets/0xf1953DAB6FaD537488d5A022361FfAa8B4c95eC6/info.json new file mode 100644 index 0000000000000..c117e349e2471 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xf1953DAB6FaD537488d5A022361FfAa8B4c95eC6/info.json @@ -0,0 +1,20 @@ +{ + "name": "Innodata", + "type": "ROBINHOODCHAIN", + "symbol": "INOD", + "decimals": 18, + "description": "Innodata (INOD) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xf1953DAB6FaD537488d5A022361FfAa8B4c95eC6", + "status": "active", + "id": "0xf1953DAB6FaD537488d5A022361FfAa8B4c95eC6", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xf1953DAB6FaD537488d5A022361FfAa8B4c95eC6/logo.png b/blockchains/robinhoodchain/assets/0xf1953DAB6FaD537488d5A022361FfAa8B4c95eC6/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xf1953DAB6FaD537488d5A022361FfAa8B4c95eC6/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xf23250dac154D05Bb671CB0d0eBEf3c635c79CE2/info.json b/blockchains/robinhoodchain/assets/0xf23250dac154D05Bb671CB0d0eBEf3c635c79CE2/info.json new file mode 100644 index 0000000000000..72badbfb60b2d --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xf23250dac154D05Bb671CB0d0eBEf3c635c79CE2/info.json @@ -0,0 +1,20 @@ +{ + "name": "UPS", + "type": "ROBINHOODCHAIN", + "symbol": "UPS", + "decimals": 18, + "description": "UPS (UPS) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xf23250dac154D05Bb671CB0d0eBEf3c635c79CE2", + "status": "active", + "id": "0xf23250dac154D05Bb671CB0d0eBEf3c635c79CE2", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xf23250dac154D05Bb671CB0d0eBEf3c635c79CE2/logo.png b/blockchains/robinhoodchain/assets/0xf23250dac154D05Bb671CB0d0eBEf3c635c79CE2/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xf23250dac154D05Bb671CB0d0eBEf3c635c79CE2/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xf9B46d3D1B22199D4D1025a9cEDB540A33F1a2d5/info.json b/blockchains/robinhoodchain/assets/0xf9B46d3D1B22199D4D1025a9cEDB540A33F1a2d5/info.json new file mode 100644 index 0000000000000..5a44c5a7a0041 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xf9B46d3D1B22199D4D1025a9cEDB540A33F1a2d5/info.json @@ -0,0 +1,20 @@ +{ + "name": "Exxon Mobil", + "type": "ROBINHOODCHAIN", + "symbol": "XOM", + "decimals": 18, + "description": "Exxon Mobil (XOM) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xf9B46d3D1B22199D4D1025a9cEDB540A33F1a2d5", + "status": "active", + "id": "0xf9B46d3D1B22199D4D1025a9cEDB540A33F1a2d5", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xf9B46d3D1B22199D4D1025a9cEDB540A33F1a2d5/logo.png b/blockchains/robinhoodchain/assets/0xf9B46d3D1B22199D4D1025a9cEDB540A33F1a2d5/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xf9B46d3D1B22199D4D1025a9cEDB540A33F1a2d5/logo.png differ diff --git a/blockchains/robinhoodchain/assets/0xfF080c8ce2E5feadaCa0Da81314Ae59D232d4afD/info.json b/blockchains/robinhoodchain/assets/0xfF080c8ce2E5feadaCa0Da81314Ae59D232d4afD/info.json new file mode 100644 index 0000000000000..c61145b7a69f0 --- /dev/null +++ b/blockchains/robinhoodchain/assets/0xfF080c8ce2E5feadaCa0Da81314Ae59D232d4afD/info.json @@ -0,0 +1,20 @@ +{ + "name": "Micron Technology", + "type": "ROBINHOODCHAIN", + "symbol": "MU", + "decimals": 18, + "description": "Micron Technology (MU) is a tokenized asset issued by Robinhood on Robinhood Chain.", + "website": "https://robinhood.com", + "explorer": "https://robinhoodchain.blockscout.com/token/0xfF080c8ce2E5feadaCa0Da81314Ae59D232d4afD", + "status": "active", + "id": "0xfF080c8ce2E5feadaCa0Da81314Ae59D232d4afD", + "links": [ + { + "name": "x", + "url": "https://x.com/RobinhoodApp" + } + ], + "tags": [ + "RWA" + ] +} diff --git a/blockchains/robinhoodchain/assets/0xfF080c8ce2E5feadaCa0Da81314Ae59D232d4afD/logo.png b/blockchains/robinhoodchain/assets/0xfF080c8ce2E5feadaCa0Da81314Ae59D232d4afD/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/assets/0xfF080c8ce2E5feadaCa0Da81314Ae59D232d4afD/logo.png differ diff --git a/blockchains/robinhoodchain/info/info.json b/blockchains/robinhoodchain/info/info.json new file mode 100644 index 0000000000000..a621eac9b1f31 --- /dev/null +++ b/blockchains/robinhoodchain/info/info.json @@ -0,0 +1,19 @@ +{ + "name": "Robinhood Chain", + "website": "https://robinhood.com", + "description": "Robinhood Chain is an Arbitrum Orbit (Nitro) Ethereum Layer 2 with ETH as the native gas token, focused on the on-chain issuance and transfer of tokenized real-world assets (RWA) such as tokenized equities.", + "explorer": "https://robinhoodchain.blockscout.com/", + "symbol": "ETH", + "type": "coin", + "decimals": 18, + "status": "active", + "tags": [ + "defi" + ], + "links": [ + { + "name": "docs", + "url": "https://docs.robinhood.com/chain/" + } + ] +} diff --git a/blockchains/robinhoodchain/info/logo.png b/blockchains/robinhoodchain/info/logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/info/logo.png differ diff --git a/blockchains/robinhoodchain/info/square_logo.png b/blockchains/robinhoodchain/info/square_logo.png new file mode 100644 index 0000000000000..fb71c34c346b6 Binary files /dev/null and b/blockchains/robinhoodchain/info/square_logo.png differ diff --git a/blockchains/ronin/assets/0x0B7007c13325C48911F73A2daD5FA5dCBf808aDc/info.json b/blockchains/ronin/assets/0x0B7007c13325C48911F73A2daD5FA5dCBf808aDc/info.json index 93c5e7cb44bcc..7bb2ee6e9c5f1 100644 --- a/blockchains/ronin/assets/0x0B7007c13325C48911F73A2daD5FA5dCBf808aDc/info.json +++ b/blockchains/ronin/assets/0x0B7007c13325C48911F73A2daD5FA5dCBf808aDc/info.json @@ -1,5 +1,5 @@ { - "name": "USD Coin", + "name": "USDC", "symbol": "USDC", "type": "RONIN", "decimals": 6, @@ -14,8 +14,8 @@ "url": "https://github.com/centrehq" }, { - "name": "twitter", - "url": "https://twitter.com/centre_io" + "name": "x", + "url": "https://x.com/centre_io" }, { "name": "blog", diff --git a/blockchains/ronin/info/square_logo.png b/blockchains/ronin/info/square_logo.png new file mode 100644 index 0000000000000..6892c39759096 Binary files /dev/null and b/blockchains/ronin/info/square_logo.png differ diff --git a/blockchains/rootstock/info/info.json b/blockchains/rootstock/info/info.json new file mode 100644 index 0000000000000..4055eed0c3578 --- /dev/null +++ b/blockchains/rootstock/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "Rootstock", + "website": "https://rootstock.io/", + "description": "Deploy EVM compatible smart contracts on Rootstock and leverage the security of the Bitcoin network.", + "explorer": "https://explorer.rootstock.io/", + "symbol": "ROOTSTOCK", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/rootstock_io" + }, + { + "name": "telegram", + "url": "https://t.me/rskofficialcommunity" + } + ] +} \ No newline at end of file diff --git a/blockchains/rootstock/info/logo.png b/blockchains/rootstock/info/logo.png new file mode 100644 index 0000000000000..0c5b0719373fc Binary files /dev/null and b/blockchains/rootstock/info/logo.png differ diff --git a/blockchains/rootstock/info/square_logo.png b/blockchains/rootstock/info/square_logo.png new file mode 100644 index 0000000000000..90a77ebd25e5f Binary files /dev/null and b/blockchains/rootstock/info/square_logo.png differ diff --git a/blockchains/scroll/assets/0x06eFdBFf2a14a7c8E15944D1F4A48F9F95F663A4/info.json b/blockchains/scroll/assets/0x06eFdBFf2a14a7c8E15944D1F4A48F9F95F663A4/info.json new file mode 100644 index 0000000000000..029832bad2123 --- /dev/null +++ b/blockchains/scroll/assets/0x06eFdBFf2a14a7c8E15944D1F4A48F9F95F663A4/info.json @@ -0,0 +1,36 @@ +{ + "name": "USDC", + "website": "https://centre.io/usdc", + "description": "USDC is a fully collateralized US dollar stablecoin, an Ethereum powered coin and is the brainchild of CENTRE, an open source project bootstrapped by contributions from Circle and Coinbase.", + "explorer": "https://scrollscan.com/token/0x06efdbff2a14a7c8e15944d1f4a48f9f95f663a4", + "type": "SCROLL", + "symbol": "USDC", + "decimals": 6, + "status": "active", + "id": "0x06eFdBFf2a14a7c8E15944D1F4A48F9F95F663A4", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/scroll/assets/0x06eFdBFf2a14a7c8E15944D1F4A48F9F95F663A4/logo.png b/blockchains/scroll/assets/0x06eFdBFf2a14a7c8E15944D1F4A48F9F95F663A4/logo.png new file mode 100644 index 0000000000000..c8e3f9b240840 Binary files /dev/null and b/blockchains/scroll/assets/0x06eFdBFf2a14a7c8E15944D1F4A48F9F95F663A4/logo.png differ diff --git a/blockchains/scroll/assets/0x1b896893dfc86bb67Cf57767298b9073D2c1bA2c/info.json b/blockchains/scroll/assets/0x1b896893dfc86bb67Cf57767298b9073D2c1bA2c/info.json new file mode 100644 index 0000000000000..a236e22d78b48 --- /dev/null +++ b/blockchains/scroll/assets/0x1b896893dfc86bb67Cf57767298b9073D2c1bA2c/info.json @@ -0,0 +1,37 @@ +{ + "name": "PancakeSwap Token", + "website": "https://pancakeswap.finance", + "description": "PancakeSwap is a yield farming project whereby users can get FLIP (LP token) for staking and get CAKE token as reward.", + "explorer": "https://scrollscan.com/token/0x1b896893dfc86bb67cf57767298b9073d2c1ba2c", + "research": "https://research.binance.com/en/projects/pancakeswap", + "type": "SCROLL", + "symbol": "CAKE", + "decimals": 18, + "status": "active", + "id": "0x1b896893dfc86bb67Cf57767298b9073D2c1bA2c", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/pancakeswap" + }, + { + "name": "x", + "url": "https://x.com/pancakeswap" + }, + { + "name": "blog", + "url": "https://medium.com/@pancakeswap" + }, + { + "name": "telegram", + "url": "https://t.me/PancakeSwap" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pancakeswap-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/scroll/assets/0x1b896893dfc86bb67Cf57767298b9073D2c1bA2c/logo.png b/blockchains/scroll/assets/0x1b896893dfc86bb67Cf57767298b9073D2c1bA2c/logo.png new file mode 100644 index 0000000000000..685fbc4249857 Binary files /dev/null and b/blockchains/scroll/assets/0x1b896893dfc86bb67Cf57767298b9073D2c1bA2c/logo.png differ diff --git a/blockchains/scroll/assets/0x3C1BCa5a656e69edCD0D4E36BEbb3FcDAcA60Cf1/info.json b/blockchains/scroll/assets/0x3C1BCa5a656e69edCD0D4E36BEbb3FcDAcA60Cf1/info.json new file mode 100644 index 0000000000000..55cc95b3c4b0e --- /dev/null +++ b/blockchains/scroll/assets/0x3C1BCa5a656e69edCD0D4E36BEbb3FcDAcA60Cf1/info.json @@ -0,0 +1,29 @@ +{ + "name": "Wrapped Bitcoin", + "website": "https://wbtc.network", + "description": "Wrapped Bitcoin (WBTC) is the first ERC20 token backed 1:1 with Bitcoin.", + "explorer": "https://scrollscan.com/token/0x3c1bca5a656e69edcd0d4e36bebb3fcdaca60cf1", + "type": "SCROLL", + "symbol": "WBTC", + "decimals": 8, + "status": "active", + "id": "0x3C1BCa5a656e69edCD0D4E36BEbb3FcDAcA60Cf1", + "tags": [ + "defi", + "wrapped" + ], + "links": [ + { + "name": "whitepaper", + "url": "https://wbtc.network/assets/wrapped-tokens-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-bitcoin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wrapped-bitcoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/scroll/assets/0x3C1BCa5a656e69edCD0D4E36BEbb3FcDAcA60Cf1/logo.png b/blockchains/scroll/assets/0x3C1BCa5a656e69edCD0D4E36BEbb3FcDAcA60Cf1/logo.png new file mode 100644 index 0000000000000..702d64a2e040a Binary files /dev/null and b/blockchains/scroll/assets/0x3C1BCa5a656e69edCD0D4E36BEbb3FcDAcA60Cf1/logo.png differ diff --git a/blockchains/scroll/assets/0x434cdA25E8a2CA5D9c1C449a8Cb6bCbF719233E8/info.json b/blockchains/scroll/assets/0x434cdA25E8a2CA5D9c1C449a8Cb6bCbF719233E8/info.json new file mode 100644 index 0000000000000..f09d618b42658 --- /dev/null +++ b/blockchains/scroll/assets/0x434cdA25E8a2CA5D9c1C449a8Cb6bCbF719233E8/info.json @@ -0,0 +1,38 @@ +{ + "name": "Uniswap", + "website": "https://uniswap.org", + "description": "UNI is the Uniswap protocol token. Uniswap is a decentralized protocol for automated liquidity provision on Ethereum.", + "explorer": "https://scrollscan.com/token/0x434cda25e8a2ca5d9c1c449a8cb6bcbf719233e8", + "research": "https://research.binance.com/en/projects/uniswap", + "type": "SCROLL", + "symbol": "UNI", + "decimals": 18, + "status": "active", + "id": "0x434cdA25E8a2CA5D9c1C449a8Cb6bCbF719233E8", + "tags": [ + "defi", + "governance" + ], + "links": [ + { + "name": "discord", + "url": "https://discord.com/invite/XErMcTq" + }, + { + "name": "x", + "url": "https://x.com/UniswapProtocol" + }, + { + "name": "blog", + "url": "https://uniswap.org/blog/uni/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/uniswap/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/uniswap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/scroll/assets/0x434cdA25E8a2CA5D9c1C449a8Cb6bCbF719233E8/logo.png b/blockchains/scroll/assets/0x434cdA25E8a2CA5D9c1C449a8Cb6bCbF719233E8/logo.png new file mode 100644 index 0000000000000..893ef55cb23c0 Binary files /dev/null and b/blockchains/scroll/assets/0x434cdA25E8a2CA5D9c1C449a8Cb6bCbF719233E8/logo.png differ diff --git a/blockchains/scroll/assets/0x5300000000000000000000000000000000000004/info.json b/blockchains/scroll/assets/0x5300000000000000000000000000000000000004/info.json new file mode 100644 index 0000000000000..3930684f576e1 --- /dev/null +++ b/blockchains/scroll/assets/0x5300000000000000000000000000000000000004/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wrapped Ether", + "symbol": "WETH", + "type": "SCROLL", + "decimals": 18, + "description": "wETH is wrapped ETH", + "website": "https://weth.io/", + "explorer": "https://scrollscan.com/token/0x5300000000000000000000000000000000000004", + "status": "active", + "id": "0x5300000000000000000000000000000000000004", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/weth/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/weth/" + } + ] +} \ No newline at end of file diff --git a/blockchains/scroll/assets/0x5300000000000000000000000000000000000004/logo.png b/blockchains/scroll/assets/0x5300000000000000000000000000000000000004/logo.png new file mode 100644 index 0000000000000..f9328d9550a06 Binary files /dev/null and b/blockchains/scroll/assets/0x5300000000000000000000000000000000000004/logo.png differ diff --git a/blockchains/scroll/assets/0x79379C0E09a41d7978f883a56246290eE9a8c4d3/info.json b/blockchains/scroll/assets/0x79379C0E09a41d7978f883a56246290eE9a8c4d3/info.json new file mode 100644 index 0000000000000..e8194557308f1 --- /dev/null +++ b/blockchains/scroll/assets/0x79379C0E09a41d7978f883a56246290eE9a8c4d3/info.json @@ -0,0 +1,50 @@ +{ + "name": "Aave", + "website": "https://aave.com", + "description": "Aave Protocol is a decentralised liquidity protocol where people can lend and borrow digital assets. The AAVE token is the governance token of the protocol, so AAVE holders can vote on proposals for updates. AAVE holders can also stake their AAVE in the protocol Safety Module and earn Safety Incentives for securing the protocol", + "explorer": "https://scrollscan.com/token/0x79379c0e09a41d7978f883a56246290ee9a8c4d3", + "research": "https://research.binance.com/en/projects/aave-protocol", + "type": "SCROLL", + "symbol": "AAVE", + "decimals": 18, + "status": "active", + "id": "0x79379C0E09a41d7978f883a56246290eE9a8c4d3", + "tags": [ + "defi", + "governance" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/aave/aave-protocol" + }, + { + "name": "x", + "url": "https://x.com/AaveAave" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Aave_Official" + }, + { + "name": "blog", + "url": "https://medium.com/aave" + }, + { + "name": "facebook", + "url": "https://facebook.com/AaveCom" + }, + { + "name": "whitepaper", + "url": "https://github.com/aave/aave-protocol/blob/master/docs/Aave_Protocol_Whitepaper_v1_0.pdf/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/aave/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/aave/" + } + ] +} \ No newline at end of file diff --git a/blockchains/scroll/assets/0x79379C0E09a41d7978f883a56246290eE9a8c4d3/logo.png b/blockchains/scroll/assets/0x79379C0E09a41d7978f883a56246290eE9a8c4d3/logo.png new file mode 100644 index 0000000000000..1e7cef36a8aaa Binary files /dev/null and b/blockchains/scroll/assets/0x79379C0E09a41d7978f883a56246290eE9a8c4d3/logo.png differ diff --git a/blockchains/scroll/assets/0x9735fb1126B521A913697A541f768376011bCcF9/info.json b/blockchains/scroll/assets/0x9735fb1126B521A913697A541f768376011bCcF9/info.json new file mode 100644 index 0000000000000..7f044764db112 --- /dev/null +++ b/blockchains/scroll/assets/0x9735fb1126B521A913697A541f768376011bCcF9/info.json @@ -0,0 +1,41 @@ +{ + "name": "Chess", + "website": "https://tranchess.com/", + "description": "Tranchess Protocol is a tokenized asset management and derivatives trading protocol. Inspired by tranches fund that caters investors with different risk appetite, Tranchess aims to provide different risk/return matrix out of a single main fund that tracks a specific underlying asset.", + "type": "SCROLL", + "symbol": "CHESS", + "decimals": 18, + "status": "active", + "explorer": "https://scrollscan.com/token/0x9735fb1126b521a913697a541f768376011bccf9", + "id": "0x9735fb1126B521A913697A541f768376011bCcF9", + "links": [ + { + "name": "github", + "url": "https://github.com/tranchess/contract-core" + }, + { + "name": "x", + "url": "https://x.com/tranchess" + }, + { + "name": "medium", + "url": "https://medium.com/@tranchess" + }, + { + "name": "telegram", + "url": "https://t.me/tranchess" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tranchess" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tranchess" + }, + { + "name": "discord", + "url": "https://discord.com/invite/tKxAq78VBr" + } + ] +} \ No newline at end of file diff --git a/blockchains/scroll/assets/0x9735fb1126B521A913697A541f768376011bCcF9/logo.png b/blockchains/scroll/assets/0x9735fb1126B521A913697A541f768376011bCcF9/logo.png new file mode 100644 index 0000000000000..ab05582a52c3a Binary files /dev/null and b/blockchains/scroll/assets/0x9735fb1126B521A913697A541f768376011bCcF9/logo.png differ diff --git a/blockchains/scroll/assets/0xB755039eDc7910C1F1BD985D48322E55A31AC0bF/info.json b/blockchains/scroll/assets/0xB755039eDc7910C1F1BD985D48322E55A31AC0bF/info.json new file mode 100644 index 0000000000000..2571cc3122799 --- /dev/null +++ b/blockchains/scroll/assets/0xB755039eDc7910C1F1BD985D48322E55A31AC0bF/info.json @@ -0,0 +1,34 @@ +{ + "name": "Curve DAO Token", + "website": "https://curve.finance", + "description": "CRV is a governance token on the Curve platform with time-weighted voting and value accrual mechanisms.", + "explorer": "https://scrollscan.com/token/0xb755039edc7910c1f1bd985d48322e55a31ac0bf", + "research": "https://research.binance.com/en/projects/curve", + "type": "SCROLL", + "symbol": "CRV", + "decimals": 18, + "status": "active", + "id": "0xB755039eDc7910C1F1BD985D48322E55A31AC0bF", + "tags": [ + "defi", + "governance" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/curvefi/curve-contract" + }, + { + "name": "x", + "url": "https://x.com/CurveFinance" + }, + { + "name": "telegram", + "url": "https://t.me/curvefi" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/curve-dao-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/scroll/assets/0xB755039eDc7910C1F1BD985D48322E55A31AC0bF/logo.png b/blockchains/scroll/assets/0xB755039eDc7910C1F1BD985D48322E55A31AC0bF/logo.png new file mode 100644 index 0000000000000..b820f250c2d3b Binary files /dev/null and b/blockchains/scroll/assets/0xB755039eDc7910C1F1BD985D48322E55A31AC0bF/logo.png differ diff --git a/blockchains/scroll/assets/0xcA77eB3fEFe3725Dc33bccB54eDEFc3D9f764f97/info.json b/blockchains/scroll/assets/0xcA77eB3fEFe3725Dc33bccB54eDEFc3D9f764f97/info.json new file mode 100644 index 0000000000000..2ad490092e4d9 --- /dev/null +++ b/blockchains/scroll/assets/0xcA77eB3fEFe3725Dc33bccB54eDEFc3D9f764f97/info.json @@ -0,0 +1,42 @@ +{ + "name": "Dai", + "website": "http://makerdao.com", + "description": "Dai is a stable cryptocurrency supported by Maker (MKR). To ensure price stability, Dai minimizes the price volatility against the US dollar, through an incentive structure for its participants.", + "explorer": "https://scrollscan.com/token/0xca77eb3fefe3725dc33bccb54edefc3d9f764f97", + "research": "https://research.binance.com/en/projects/dai", + "type": "SCROLL", + "symbol": "DAI", + "decimals": 18, + "status": "active", + "id": "0xcA77eB3fEFe3725Dc33bccB54eDEFc3D9f764f97", + "tags": [ + "defi", + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/MakerDAO" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MakerDAO/" + }, + { + "name": "blog", + "url": "https://blog.makerdao.com/" + }, + { + "name": "whitepaper", + "url": "https://makerdao.com/whitepaper/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/multi-collateral-dai/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/scroll/assets/0xcA77eB3fEFe3725Dc33bccB54eDEFc3D9f764f97/logo.png b/blockchains/scroll/assets/0xcA77eB3fEFe3725Dc33bccB54eDEFc3D9f764f97/logo.png new file mode 100644 index 0000000000000..a20d88cd59763 Binary files /dev/null and b/blockchains/scroll/assets/0xcA77eB3fEFe3725Dc33bccB54eDEFc3D9f764f97/logo.png differ diff --git a/blockchains/scroll/assets/0xd29687c813D741E2F938F4aC377128810E217b1b/info.json b/blockchains/scroll/assets/0xd29687c813D741E2F938F4aC377128810E217b1b/info.json new file mode 100644 index 0000000000000..9566004100910 --- /dev/null +++ b/blockchains/scroll/assets/0xd29687c813D741E2F938F4aC377128810E217b1b/info.json @@ -0,0 +1,28 @@ +{ + "name": "Scroll", + "type": "SCROLL", + "symbol": "SCR", + "decimals": 18, + "website": "https://scroll.io/", + "description": "Scroll employs a multifaceted approach to ensure its security, leveraging the robustness of battle-tested cryptographic libraries and the principles of open-source development. This approach is designed to maintain the integrity and safety of its zkEVM-based zkRollup on Ethereum, which is crafted to offer native compatibility for existing Ethereum applications and tools.", + "explorer": "https://scrollscan.com/token/0xd29687c813D741E2F938F4aC377128810E217b1b", + "status": "active", + "id": "0xd29687c813D741E2F938F4aC377128810E217b1b", + "links": [ + { + "name": "x", + "url": "https://x.com/Scroll_ZKP" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/scroll/" + }, + { + "name": "github", + "url": "https://github.com/scroll-tech" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/scroll/assets/0xd29687c813D741E2F938F4aC377128810E217b1b/logo.png b/blockchains/scroll/assets/0xd29687c813D741E2F938F4aC377128810E217b1b/logo.png new file mode 100644 index 0000000000000..8e468d227621c Binary files /dev/null and b/blockchains/scroll/assets/0xd29687c813D741E2F938F4aC377128810E217b1b/logo.png differ diff --git a/blockchains/scroll/assets/0xf55BEC9cafDbE8730f096Aa55dad6D22d44099Df/info.json b/blockchains/scroll/assets/0xf55BEC9cafDbE8730f096Aa55dad6D22d44099Df/info.json new file mode 100644 index 0000000000000..df149a5db8b3f --- /dev/null +++ b/blockchains/scroll/assets/0xf55BEC9cafDbE8730f096Aa55dad6D22d44099Df/info.json @@ -0,0 +1,28 @@ +{ + "name": "Tether", + "website": "https://tether.to", + "description": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar.", + "explorer": "https://scrollscan.com/token/0xf55bec9cafdbe8730f096aa55dad6d22d44099df", + "type": "SCROLL", + "symbol": "USDT", + "decimals": 6, + "status": "active", + "id": "0xf55BEC9cafDbE8730f096Aa55dad6D22d44099Df", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/tether.to/" + }, + { + "name": "x", + "url": "https://x.com/Tether_to/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/tether/" + } + ] +} \ No newline at end of file diff --git a/blockchains/scroll/assets/0xf55BEC9cafDbE8730f096Aa55dad6D22d44099Df/logo.png b/blockchains/scroll/assets/0xf55BEC9cafDbE8730f096Aa55dad6D22d44099Df/logo.png new file mode 100644 index 0000000000000..fd99f630b1d07 Binary files /dev/null and b/blockchains/scroll/assets/0xf55BEC9cafDbE8730f096Aa55dad6D22d44099Df/logo.png differ diff --git a/blockchains/scroll/assets/0xf610A9dfB7C89644979b4A0f27063E9e7d7Cda32/info.json b/blockchains/scroll/assets/0xf610A9dfB7C89644979b4A0f27063E9e7d7Cda32/info.json new file mode 100644 index 0000000000000..72434307d5b4a --- /dev/null +++ b/blockchains/scroll/assets/0xf610A9dfB7C89644979b4A0f27063E9e7d7Cda32/info.json @@ -0,0 +1,25 @@ +{ + "name": "Curve DAO Token", + "website": "https://www.lido.fi/", + "description": "wstETH is a wrapped version of stETH. As some DeFi protocols require a constant balance mechanism for tokens, wstETH keeps your balance of stETH fixed and uses an underlying share system to reflect your earned staking rewards.", + "explorer": "https://scrollscan.com/token/0xf610a9dfb7c89644979b4a0f27063e9e7d7cda32", + "type": "SCROLL", + "symbol": "wstETH", + "decimals": 18, + "status": "active", + "id": "0xf610A9dfB7C89644979b4A0f27063E9e7d7Cda32", + "links": [ + { + "name": "x", + "url": "https://x.com/lidofinance" + }, + { + "name": "telegram", + "url": "https://t.me/lidofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lido-finance-wsteth/" + } + ] +} \ No newline at end of file diff --git a/blockchains/scroll/assets/0xf610A9dfB7C89644979b4A0f27063E9e7d7Cda32/logo.png b/blockchains/scroll/assets/0xf610A9dfB7C89644979b4A0f27063E9e7d7Cda32/logo.png new file mode 100644 index 0000000000000..62a1628e2fa58 Binary files /dev/null and b/blockchains/scroll/assets/0xf610A9dfB7C89644979b4A0f27063E9e7d7Cda32/logo.png differ diff --git a/blockchains/scroll/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json b/blockchains/scroll/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json new file mode 100644 index 0000000000000..92abf79622884 --- /dev/null +++ b/blockchains/scroll/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json @@ -0,0 +1,21 @@ +{ + "name": "Lorenzo stBTC", + "type": "SCROLL", + "symbol": "stBTC", + "decimals": 18, + "website": "https://www.lorenzo-protocol.xyz/", + "description": "To be the premier Bitcoin platform for yield-bearing token issuance, trading, and settlement.", + "explorer": "https://scrollscan.com/token/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3", + "status": "active", + "id": "0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3", + "links": [ + { + "name": "x", + "url": "https://x.com/LorenzoProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/lorenzoprotocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/scroll/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png b/blockchains/scroll/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png new file mode 100644 index 0000000000000..d0c4e5f85eb2b Binary files /dev/null and b/blockchains/scroll/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png differ diff --git a/blockchains/scroll/info/info.json b/blockchains/scroll/info/info.json new file mode 100644 index 0000000000000..9c2f4ea412e4a --- /dev/null +++ b/blockchains/scroll/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "Scroll", + "website": "https://scroll.io", + "description": "Scroll is a zkEVM-based zkRollup on Ethereum that enables native compatibility for existing Ethereum applications and tools.", + "explorer": "https://blockscout.scroll.io", + "symbol": "ETH", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/scroll-tech" + }, + { + "name": "x", + "url": "https://x.com/Scroll_ZKP" + } + ] +} \ No newline at end of file diff --git a/blockchains/scroll/info/logo.png b/blockchains/scroll/info/logo.png new file mode 100644 index 0000000000000..1fbbc2104db1f Binary files /dev/null and b/blockchains/scroll/info/logo.png differ diff --git a/blockchains/scroll/info/square_logo.png b/blockchains/scroll/info/square_logo.png new file mode 100644 index 0000000000000..f4f550704ebcb Binary files /dev/null and b/blockchains/scroll/info/square_logo.png differ diff --git a/blockchains/secret/info/info.json b/blockchains/secret/info/info.json index 8ced09705392f..48729b4ecae9e 100644 --- a/blockchains/secret/info/info.json +++ b/blockchains/secret/info/info.json @@ -21,8 +21,8 @@ "url": "https://coinmarketcap.com/ru/currencies/secret/" }, { - "name": "twitter", - "url": "https://twitter.com/SecretNetwork" + "name": "x", + "url": "https://x.com/SecretNetwork" } ] -} +} \ No newline at end of file diff --git a/blockchains/secret/info/square_logo.png b/blockchains/secret/info/square_logo.png new file mode 100644 index 0000000000000..09bfb5556dec1 Binary files /dev/null and b/blockchains/secret/info/square_logo.png differ diff --git a/blockchains/secret/validators/assets/secretvaloper12y30xefd0wg53xtyv9lw7mjcdvf8nxgzzva3sr/logo.png b/blockchains/secret/validators/assets/secretvaloper12y30xefd0wg53xtyv9lw7mjcdvf8nxgzzva3sr/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/secret/validators/assets/secretvaloper12y30xefd0wg53xtyv9lw7mjcdvf8nxgzzva3sr/logo.png differ diff --git a/blockchains/secret/validators/assets/secretvaloper16w5hlcf389le2n60t32eqf43plp539ged9sruy/logo.png b/blockchains/secret/validators/assets/secretvaloper16w5hlcf389le2n60t32eqf43plp539ged9sruy/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/secret/validators/assets/secretvaloper16w5hlcf389le2n60t32eqf43plp539ged9sruy/logo.png differ diff --git a/blockchains/secret/validators/assets/secretvaloper19z74520tdw5gps5sp5tr8y2mxr40artly6rsw3/logo.png b/blockchains/secret/validators/assets/secretvaloper19z74520tdw5gps5sp5tr8y2mxr40artly6rsw3/logo.png new file mode 100644 index 0000000000000..e117817071239 Binary files /dev/null and b/blockchains/secret/validators/assets/secretvaloper19z74520tdw5gps5sp5tr8y2mxr40artly6rsw3/logo.png differ diff --git a/blockchains/secret/validators/assets/secretvaloper1gkk02na77t83dvmf9vd7lajptejaqkyug62h56/logo.png b/blockchains/secret/validators/assets/secretvaloper1gkk02na77t83dvmf9vd7lajptejaqkyug62h56/logo.png new file mode 100644 index 0000000000000..c53de0659fd41 Binary files /dev/null and b/blockchains/secret/validators/assets/secretvaloper1gkk02na77t83dvmf9vd7lajptejaqkyug62h56/logo.png differ diff --git a/blockchains/secret/validators/assets/secretvaloper1hjd20hjvkx06y8p42xl0uzr3gr3ue3nkvd79jj/logo.png b/blockchains/secret/validators/assets/secretvaloper1hjd20hjvkx06y8p42xl0uzr3gr3ue3nkvd79jj/logo.png new file mode 100644 index 0000000000000..821e30b0e283c Binary files /dev/null and b/blockchains/secret/validators/assets/secretvaloper1hjd20hjvkx06y8p42xl0uzr3gr3ue3nkvd79jj/logo.png differ diff --git a/blockchains/secret/validators/assets/secretvaloper1t5wtcuwjkdct9qkw2h6m48zu2hectpd6ulmekk/logo.png b/blockchains/secret/validators/assets/secretvaloper1t5wtcuwjkdct9qkw2h6m48zu2hectpd6ulmekk/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/secret/validators/assets/secretvaloper1t5wtcuwjkdct9qkw2h6m48zu2hectpd6ulmekk/logo.png differ diff --git a/blockchains/secret/validators/assets/secretvaloper1vzkdmu0sa8gaj686jh5all7hpmmsp8x87vyz8z/logo.png b/blockchains/secret/validators/assets/secretvaloper1vzkdmu0sa8gaj686jh5all7hpmmsp8x87vyz8z/logo.png new file mode 100644 index 0000000000000..0f6305d87f6e5 Binary files /dev/null and b/blockchains/secret/validators/assets/secretvaloper1vzkdmu0sa8gaj686jh5all7hpmmsp8x87vyz8z/logo.png differ diff --git a/blockchains/secret/validators/assets/secretvaloper1x76f2c2cuwa4e3lttjgqeqva0725ftmqvgvfnv/logo.png b/blockchains/secret/validators/assets/secretvaloper1x76f2c2cuwa4e3lttjgqeqva0725ftmqvgvfnv/logo.png new file mode 100644 index 0000000000000..3345b271b7197 Binary files /dev/null and b/blockchains/secret/validators/assets/secretvaloper1x76f2c2cuwa4e3lttjgqeqva0725ftmqvgvfnv/logo.png differ diff --git a/blockchains/secret/validators/assets/secretvaloper1xj5ykuzn0mkq9642yxgqmh4ycplzhr2pza25mk/logo.png b/blockchains/secret/validators/assets/secretvaloper1xj5ykuzn0mkq9642yxgqmh4ycplzhr2pza25mk/logo.png new file mode 100644 index 0000000000000..0615d014ea874 Binary files /dev/null and b/blockchains/secret/validators/assets/secretvaloper1xj5ykuzn0mkq9642yxgqmh4ycplzhr2pza25mk/logo.png differ diff --git a/blockchains/secret/validators/list.json b/blockchains/secret/validators/list.json new file mode 100644 index 0000000000000..b0092c3fcbf95 --- /dev/null +++ b/blockchains/secret/validators/list.json @@ -0,0 +1,56 @@ +[ + { + "id": "secretvaloper16w5hlcf389le2n60t32eqf43plp539ged9sruy", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "secretvaloper1xj5ykuzn0mkq9642yxgqmh4ycplzhr2pza25mk", + "name": "0% Fee >2024 💸 | melea", + "description": "FREE Validator service at 0% Commission → throughout the years 2021 & 2022 & 2023 → melea.xyz", + "website": "https://meleatrust.com/secret/" + }, + { + "id": "secretvaloper1x76f2c2cuwa4e3lttjgqeqva0725ftmqvgvfnv", + "name": "Citadel.one", + "description": "Citadel.one is a multi-asset non-custodial staking platform that lets anyone become a part of decentralized infrastructure and earn passive income. Stake with our nodes or any other validator across multiple networks in a few clicks.", + "website": "https://citadel.one/" + }, + { + "id": "secretvaloper12y30xefd0wg53xtyv9lw7mjcdvf8nxgzzva3sr", + "name": "AutoStake 🛡️ Slash Protected", + "description": "BareMetal - Decentralised - Reliable infrastructure run by the industry leader - AutoStake - Connect with us at: https://linktr.ee/autostake", + "website": "https://autostake.com" + }, + { + "id": "secretvaloper1hjd20hjvkx06y8p42xl0uzr3gr3ue3nkvd79jj", + "name": "Delta Flyer", + "description": "A Delta Flyer Operated Node.", + "website": "https://deltaflyer.llc/" + }, + { + "id": "secretvaloper19z74520tdw5gps5sp5tr8y2mxr40artly6rsw3", + "name": "w3coins", + "description": "w3coins is a Professional Validator and web3 Venture Capital. Stake Your Cryptocurrency with us to Maximize Your Earnings.", + "website": "https://www.w3coins.io" + }, + { + "id": "secretvaloper1t5wtcuwjkdct9qkw2h6m48zu2hectpd6ulmekk", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + }, + { + "id": "secretvaloper1vzkdmu0sa8gaj686jh5all7hpmmsp8x87vyz8z", + "name": "Stakely.io", + "description": "🔥 Professional validator highly experienced in PoS 🔥 Slashing protection | Learn with our staking guides, video tutorials and FAQs | Part of the commission of our nodes will go to our Multicoin Faucet funds and other tools 🌱 Carbon Neutral 🌱", + "website": "https://stakely.io" + }, + { + "id": "secretvaloper1gkk02na77t83dvmf9vd7lajptejaqkyug62h56", + "name": "Coinage x DAIC", + "description": "The official validator node from Coinage (Coinage.Media) and DAIC (https://daic.capital/telegram)", + "website": "https://daic.capital/" + } +] diff --git a/blockchains/sei/info/info.json b/blockchains/sei/info/info.json new file mode 100644 index 0000000000000..8bef6907b4b44 --- /dev/null +++ b/blockchains/sei/info/info.json @@ -0,0 +1,27 @@ +{ + "name": "Sei", + "website": "https://sei.io", + "description": "Sei is the fastest blockchain to finality, magnitudes faster than the rest.", + "explorer": "https://www.mintscan.io/sei/", + "symbol": "SEI", + "type": "coin", + "decimals": 6, + "status": "active", + "tags": [ + "staking-native" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/SeiNetwork" + }, + { + "name": "github", + "url": "https://github.com/sei-protocol/sei-chain" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sei/" + } + ] +} \ No newline at end of file diff --git a/blockchains/sei/info/logo.png b/blockchains/sei/info/logo.png new file mode 100644 index 0000000000000..2f9c4c5bc94de Binary files /dev/null and b/blockchains/sei/info/logo.png differ diff --git a/blockchains/sei/info/square_logo.png b/blockchains/sei/info/square_logo.png new file mode 100644 index 0000000000000..fb883c1c6e708 Binary files /dev/null and b/blockchains/sei/info/square_logo.png differ diff --git a/blockchains/sei/validators/assets/seivaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zl6nups/logo.png b/blockchains/sei/validators/assets/seivaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zl6nups/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/sei/validators/assets/seivaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zl6nups/logo.png differ diff --git a/blockchains/sei/validators/assets/seivaloper1eqgnd7ey0hnha8rrfukjrsawulhna0zagcg6a4/logo.png b/blockchains/sei/validators/assets/seivaloper1eqgnd7ey0hnha8rrfukjrsawulhna0zagcg6a4/logo.png new file mode 100644 index 0000000000000..eaf66cb5cbb1f Binary files /dev/null and b/blockchains/sei/validators/assets/seivaloper1eqgnd7ey0hnha8rrfukjrsawulhna0zagcg6a4/logo.png differ diff --git a/blockchains/sei/validators/assets/seivaloper1mpe9rdk7ycujge7r9ncjt4ekamgrdcygvzwqe8/logo.png b/blockchains/sei/validators/assets/seivaloper1mpe9rdk7ycujge7r9ncjt4ekamgrdcygvzwqe8/logo.png new file mode 100644 index 0000000000000..e5e20afbb46b8 Binary files /dev/null and b/blockchains/sei/validators/assets/seivaloper1mpe9rdk7ycujge7r9ncjt4ekamgrdcygvzwqe8/logo.png differ diff --git a/blockchains/sei/validators/assets/seivaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qnkypla/logo.png b/blockchains/sei/validators/assets/seivaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qnkypla/logo.png new file mode 100644 index 0000000000000..f78bfbfb1dfe7 Binary files /dev/null and b/blockchains/sei/validators/assets/seivaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qnkypla/logo.png differ diff --git a/blockchains/sei/validators/assets/seivaloper1t9fq3qfm7ngau5gr8qgf5dpfzjqg79kf65cu04/logo.png b/blockchains/sei/validators/assets/seivaloper1t9fq3qfm7ngau5gr8qgf5dpfzjqg79kf65cu04/logo.png new file mode 100644 index 0000000000000..975d9113e179c Binary files /dev/null and b/blockchains/sei/validators/assets/seivaloper1t9fq3qfm7ngau5gr8qgf5dpfzjqg79kf65cu04/logo.png differ diff --git a/blockchains/sei/validators/assets/seivaloper1ykls6dhh2mjqk9x0d3ee29873stf7wwvedcjmh/logo.png b/blockchains/sei/validators/assets/seivaloper1ykls6dhh2mjqk9x0d3ee29873stf7wwvedcjmh/logo.png new file mode 100644 index 0000000000000..c53de0659fd41 Binary files /dev/null and b/blockchains/sei/validators/assets/seivaloper1ykls6dhh2mjqk9x0d3ee29873stf7wwvedcjmh/logo.png differ diff --git a/blockchains/sei/validators/assets/seivaloper1zv9z2wqt348dhxqn38xv8dvsu78cle4xs2cdf4/logo.png b/blockchains/sei/validators/assets/seivaloper1zv9z2wqt348dhxqn38xv8dvsu78cle4xs2cdf4/logo.png new file mode 100644 index 0000000000000..7a2c0c8a85ed8 Binary files /dev/null and b/blockchains/sei/validators/assets/seivaloper1zv9z2wqt348dhxqn38xv8dvsu78cle4xs2cdf4/logo.png differ diff --git a/blockchains/sei/validators/list.json b/blockchains/sei/validators/list.json new file mode 100644 index 0000000000000..c400001eac6ac --- /dev/null +++ b/blockchains/sei/validators/list.json @@ -0,0 +1,44 @@ +[ + { + "id": "seivaloper1zv9z2wqt348dhxqn38xv8dvsu78cle4xs2cdf4", + "name": "Enigma", + "description": "Proof of Stake Validator on different projects -- Passionate about Data Science and Technology", + "website": "https://enigma-validator.com/" + }, + { + "id": "seivaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qnkypla", + "name": "Stakecito", + "description": "Securing & Decentralizing PoS Networks.", + "website": "https://www.stakecito.com/" + }, + { + "id": "seivaloper1t9fq3qfm7ngau5gr8qgf5dpfzjqg79kf65cu04", + "name": "Imperator.co", + "description": "100% refund on downtime slashing -- Professional Delegated Proof-of-Stake Network Validator", + "website": "https://imperator.co/" + }, + { + "id": "seivaloper1mpe9rdk7ycujge7r9ncjt4ekamgrdcygvzwqe8", + "name": "polkachu.com", + "description": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash.", + "website": "https://polkachu.com/" + }, + { + "id": "seivaloper1eqgnd7ey0hnha8rrfukjrsawulhna0zagcg6a4", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com/" + }, + { + "id": "seivaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zl6nups", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + }, + { + "id": "seivaloper1ykls6dhh2mjqk9x0d3ee29873stf7wwvedcjmh", + "name": "Coinage x DAIC", + "description": "The official validator node from Coinage (Coinage.Media) and DAIC (https://daic.capital/telegram)", + "website": "https://daic.capital/" + } +] \ No newline at end of file diff --git a/blockchains/seievm/assets/0xF91fBe296b0121DA410f885BfA39fad078407234/info.json b/blockchains/seievm/assets/0xF91fBe296b0121DA410f885BfA39fad078407234/info.json new file mode 100644 index 0000000000000..f2c658dd25955 --- /dev/null +++ b/blockchains/seievm/assets/0xF91fBe296b0121DA410f885BfA39fad078407234/info.json @@ -0,0 +1,24 @@ +{ + "name": "MILLI", + "type": "SEIEVM", + "symbol": "MILLI", + "decimals": 6, + "website": "https://milli.dog", + "description": "$MILLI ⚡️ The first dog on Sei & the fastest memecoin in crypto", + "explorer": "https://seiscan.io/token/0xf91fbe296b0121da410f885bfa39fad078407234", + "status": "active", + "id": "0xF91fBe296b0121DA410f885BfA39fad078407234", + "tags": [ + "memes" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/MilliCoinSei" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/milli/" + } + ] +} diff --git a/blockchains/seievm/assets/0xF91fBe296b0121DA410f885BfA39fad078407234/logo.png b/blockchains/seievm/assets/0xF91fBe296b0121DA410f885BfA39fad078407234/logo.png new file mode 100644 index 0000000000000..0a570a03df18b Binary files /dev/null and b/blockchains/seievm/assets/0xF91fBe296b0121DA410f885BfA39fad078407234/logo.png differ diff --git a/blockchains/seievm/info/info.json b/blockchains/seievm/info/info.json new file mode 100644 index 0000000000000..fa170c1b13078 --- /dev/null +++ b/blockchains/seievm/info/info.json @@ -0,0 +1,30 @@ +{ + "name": "Sei", + "website": "https://sei.io", + "description": "Sei is the fastest blockchain to finality, magnitudes faster than the rest.", + "explorer": "https://seiscan.io/", + "research": "https://www.binance.com/en/research/projects/sei", + "symbol": "SEI", + "rpc_url": "https://evm-rpc.sei-apis.com", + "coin_type": 1329, + "type": "coin", + "decimals": 18, + "status": "active", + "tags": [ + "staking-native" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/SeiNetwork" + }, + { + "name": "github", + "url": "https://github.com/sei-protocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sei/" + } + ] +} diff --git a/blockchains/seievm/info/logo.png b/blockchains/seievm/info/logo.png new file mode 100644 index 0000000000000..3c5a616dabb7c Binary files /dev/null and b/blockchains/seievm/info/logo.png differ diff --git a/blockchains/seievm/info/square_logo.png b/blockchains/seievm/info/square_logo.png new file mode 100644 index 0000000000000..a2b8734111463 Binary files /dev/null and b/blockchains/seievm/info/square_logo.png differ diff --git a/blockchains/sepolia/info/square_logo.png b/blockchains/sepolia/info/square_logo.png new file mode 100644 index 0000000000000..0982743010967 Binary files /dev/null and b/blockchains/sepolia/info/square_logo.png differ diff --git a/blockchains/smartbch/info/info.json b/blockchains/smartbch/info/info.json index be87d03890e9d..96ba11bb46332 100644 --- a/blockchains/smartbch/info/info.json +++ b/blockchains/smartbch/info/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/smartbch/smartbch" }, { - "name": "twitter", - "url": "https://twitter.com/SmartBCH" + "name": "x", + "url": "https://x.com/SmartBCH" }, { "name": "reddit", diff --git a/blockchains/smartbch/info/square_logo.png b/blockchains/smartbch/info/square_logo.png new file mode 100644 index 0000000000000..793f7b4a3944e Binary files /dev/null and b/blockchains/smartbch/info/square_logo.png differ diff --git a/blockchains/smartchain/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/info.json b/blockchains/smartchain/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/info.json new file mode 100644 index 0000000000000..2107b562d6d77 --- /dev/null +++ b/blockchains/smartchain/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/info.json @@ -0,0 +1,14 @@ +{ + "name": "AUSD", + "type": "BEP20", + "symbol": "AUSD", + "decimals": 6, + "website": "https://www.agora.finance/", + "description": "AUSD is a safe, secure asset that enables billions of dollars of transfers and is used globally.", + "explorer": "https://bscscan.com/token/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a", + "status": "active", + "id": "0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a", + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/logo.png b/blockchains/smartchain/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/logo.png new file mode 100644 index 0000000000000..b41ffbfbb87a1 Binary files /dev/null and b/blockchains/smartchain/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/logo.png differ diff --git a/blockchains/smartchain/assets/0x0000028a2eB8346cd5c0267856aB7594B7a55308/info.json b/blockchains/smartchain/assets/0x0000028a2eB8346cd5c0267856aB7594B7a55308/info.json new file mode 100644 index 0000000000000..6c88532489855 --- /dev/null +++ b/blockchains/smartchain/assets/0x0000028a2eB8346cd5c0267856aB7594B7a55308/info.json @@ -0,0 +1,21 @@ +{ + "name": "Zeta", + "type": "BEP20", + "symbol": "ZETA", + "decimals": 18, + "website": "https://www.zetachain.com/", + "description": "ZetaChain is a public, decentralized blockchain and smart contract platform that enables message passing and value transfer between any blockchain.", + "explorer": "https://bscscan.com/token/0x0000028a2eb8346cd5c0267856ab7594b7a55308", + "status": "active", + "id": "0x0000028a2eB8346cd5c0267856aB7594B7a55308", + "links": [ + { + "name": "x", + "url": "https://x.com/zetablockchain" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zetachain/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0000028a2eB8346cd5c0267856aB7594B7a55308/logo.png b/blockchains/smartchain/assets/0x0000028a2eB8346cd5c0267856aB7594B7a55308/logo.png new file mode 100644 index 0000000000000..b1372629fb38d Binary files /dev/null and b/blockchains/smartchain/assets/0x0000028a2eB8346cd5c0267856aB7594B7a55308/logo.png differ diff --git a/blockchains/smartchain/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json b/blockchains/smartchain/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json new file mode 100644 index 0000000000000..128d4c9c57db1 --- /dev/null +++ b/blockchains/smartchain/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json @@ -0,0 +1,17 @@ +{ + "name": "Angle USD", + "symbol": "agUSD", + "website": "https://www.angle.money/usda", + "description": "Supercharge your DeFi journey with agUSD, the most complete & reliable yield-bearing U.S. Dollar stablecoin", + "explorer": "https://bscscan.com/token/0x0000206329b97DB379d5E1Bf586BbDB969C63274", + "decimals": 18, + "status": "active", + "id": "0x0000206329b97DB379d5E1Bf586BbDB969C63274", + "type": "BEP20", + "links": [ + { + "name": "twitter", + "url": "https://x.com/AngleProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/logo.png b/blockchains/smartchain/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/logo.png new file mode 100644 index 0000000000000..6dd4f2f9696db Binary files /dev/null and b/blockchains/smartchain/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/logo.png differ diff --git a/blockchains/smartchain/assets/0x000351d035D8BBf2aa3131EbFECD66Fb21836f6c/info.json b/blockchains/smartchain/assets/0x000351d035D8BBf2aa3131EbFECD66Fb21836f6c/info.json new file mode 100644 index 0000000000000..35bf5f05d0d20 --- /dev/null +++ b/blockchains/smartchain/assets/0x000351d035D8BBf2aa3131EbFECD66Fb21836f6c/info.json @@ -0,0 +1,62 @@ +{ + "name": "Scotty Beam", + "type": "BEP20", + "symbol": "SCOTTY", + "decimals": 18, + "website": "https://scottybeam.io/", + "description": "Scotty Beam is the world's first cross-chain NFT platform – here to help cryptonians move NFTs across blockchain galaxies; exchange tokens and NFTs via P2P deals; participate in cool INOs; connecting Metaverses, games and marketplaces; maximize value and fun throughout the voyage.", + "explorer": "https://bscscan.com/token/0x000351d035d8bbf2aa3131ebfecd66fb21836f6c", + "status": "active", + "id": "0x000351d035D8BBf2aa3131EbFECD66Fb21836f6c", + "links": [ + { + "name": "x", + "url": "https://x.com/ScottyBeamIO" + }, + { + "name": "github", + "url": "https://github.com/ScottyBeam/" + }, + { + "name": "telegram", + "url": "https://t.me/ScottyBeamChat" + }, + { + "name": "telegram_news", + "url": "https://t.me/ScottyBeamIO" + }, + { + "name": "docs", + "url": "https://github.com/ScottyBeam/rest-api-docs" + }, + { + "name": "discord", + "url": "https://discord.com/channels/1004044243112824862/1004307545541836800" + }, + { + "name": "medium", + "url": "https://scottybeam.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCmyh7PXvwE4iBD4TljRt-EQ" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/scottybeam/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/scotty-beam" + }, + { + "name": "whitepaper", + "url": "https://scottybeam.io/assets/scotty-beam-pitch.pdf" + } + ], + "tags": [ + "nft", + "synthetics", + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x000351d035D8BBf2aa3131EbFECD66Fb21836f6c/logo.png b/blockchains/smartchain/assets/0x000351d035D8BBf2aa3131EbFECD66Fb21836f6c/logo.png new file mode 100644 index 0000000000000..43b67546bc289 Binary files /dev/null and b/blockchains/smartchain/assets/0x000351d035D8BBf2aa3131EbFECD66Fb21836f6c/logo.png differ diff --git a/blockchains/smartchain/assets/0x000851476180bfc499ea68450A5327D21C9b050e/info.json b/blockchains/smartchain/assets/0x000851476180bfc499ea68450A5327D21C9b050e/info.json index f156cf6b921dc..227ffecf9558e 100644 --- a/blockchains/smartchain/assets/0x000851476180bfc499ea68450A5327D21C9b050e/info.json +++ b/blockchains/smartchain/assets/0x000851476180bfc499ea68450A5327D21C9b050e/info.json @@ -10,8 +10,8 @@ "id": "0x000851476180bfc499ea68450A5327D21C9b050e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/slamtoken" + "name": "x", + "url": "https://x.com/slamtoken" }, { "name": "telegram", @@ -33,4 +33,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x000Ae314E2A2172a039B26378814C252734f556A/info.json b/blockchains/smartchain/assets/0x000Ae314E2A2172a039B26378814C252734f556A/info.json new file mode 100644 index 0000000000000..6877f5311d458 --- /dev/null +++ b/blockchains/smartchain/assets/0x000Ae314E2A2172a039B26378814C252734f556A/info.json @@ -0,0 +1,24 @@ +{ + "name": "Aster", + "type": "BEP20", + "symbol": "ASTER", + "decimals": 18, + "website": "https://www.asterdex.com/", + "description": "Aster is a next-generation decentralized exchange offering both Perpetual and Spot trading, designed as a one-stop onchain venue for global crypto traders. It features MEV-free, one-click execution in Simple Mode. Pro Mode adds 24/7 stock perpetuals, Hidden Orders, and grid trading, available across BNB Chain, Ethereum, Solana, and Arbitrum.", + "explorer": "https://bscscan.com/token/0x000Ae314E2A2172a039B26378814C252734f556A", + "status": "active", + "id": "0x000Ae314E2A2172a039B26378814C252734f556A", + "links": [ + { + "name": "x", + "url": "https://x.com/Aster_DEX" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/aster/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x000Ae314E2A2172a039B26378814C252734f556A/logo.png b/blockchains/smartchain/assets/0x000Ae314E2A2172a039B26378814C252734f556A/logo.png new file mode 100644 index 0000000000000..032993ddca2b4 Binary files /dev/null and b/blockchains/smartchain/assets/0x000Ae314E2A2172a039B26378814C252734f556A/logo.png differ diff --git a/blockchains/smartchain/assets/0x003d87d02A2A01E9E8a20f507C83E15DD83A33d1/info.json b/blockchains/smartchain/assets/0x003d87d02A2A01E9E8a20f507C83E15DD83A33d1/info.json new file mode 100644 index 0000000000000..46cff2d33ebbb --- /dev/null +++ b/blockchains/smartchain/assets/0x003d87d02A2A01E9E8a20f507C83E15DD83A33d1/info.json @@ -0,0 +1,14 @@ +{ + "name": "GT Protocol", + "type": "BEP20", + "symbol": "GTAI", + "decimals": 18, + "website": "https://www.gt-protocol.io/", + "description": "The GT Protocol's robust ecosystem merges an investment protocol for decentralized Web3 funds management with Blockchain AI Execution Technology, both accessible through the GT API SDK.", + "explorer": "https://bscscan.com/token/0x003d87d02A2A01E9E8a20f507C83E15DD83A33d1", + "status": "active", + "id": "0x003d87d02A2A01E9E8a20f507C83E15DD83A33d1", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x003d87d02A2A01E9E8a20f507C83E15DD83A33d1/logo.png b/blockchains/smartchain/assets/0x003d87d02A2A01E9E8a20f507C83E15DD83A33d1/logo.png new file mode 100644 index 0000000000000..e26af6f56f9c8 Binary files /dev/null and b/blockchains/smartchain/assets/0x003d87d02A2A01E9E8a20f507C83E15DD83A33d1/logo.png differ diff --git a/blockchains/smartchain/assets/0x00998d97c22B564d1dAF39d493e74C21D83fffbA/info.json b/blockchains/smartchain/assets/0x00998d97c22B564d1dAF39d493e74C21D83fffbA/info.json index 0c11a7e531f1d..f36db39c610ce 100644 --- a/blockchains/smartchain/assets/0x00998d97c22B564d1dAF39d493e74C21D83fffbA/info.json +++ b/blockchains/smartchain/assets/0x00998d97c22B564d1dAF39d493e74C21D83fffbA/info.json @@ -10,8 +10,8 @@ "id": "0x00998d97c22B564d1dAF39d493e74C21D83fffbA", "links": [ { - "name": "twitter", - "url": "https://twitter.com/web2inu" + "name": "x", + "url": "https://x.com/web2inu" }, { "name": "github", @@ -42,4 +42,4 @@ "gamefi", "deflationary" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0099cF3d44E62eaC847396CF9BDcc6b07622f2d8/info.json b/blockchains/smartchain/assets/0x0099cF3d44E62eaC847396CF9BDcc6b07622f2d8/info.json new file mode 100644 index 0000000000000..d98fba54353f0 --- /dev/null +++ b/blockchains/smartchain/assets/0x0099cF3d44E62eaC847396CF9BDcc6b07622f2d8/info.json @@ -0,0 +1,14 @@ +{ + "name": "sandwiches", + "type": "BEP20", + "symbol": "sandwiches", + "decimals": 18, + "website": "https://four.meme/token/0x0099cF3d44E62eaC847396CF9BDcc6b07622f2d8", + "description": "sandwiches", + "explorer": "https://bscscan.com/token/0x0099cF3d44E62eaC847396CF9BDcc6b07622f2d8", + "status": "active", + "id": "0x0099cF3d44E62eaC847396CF9BDcc6b07622f2d8", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0099cF3d44E62eaC847396CF9BDcc6b07622f2d8/logo.png b/blockchains/smartchain/assets/0x0099cF3d44E62eaC847396CF9BDcc6b07622f2d8/logo.png new file mode 100644 index 0000000000000..735fdfec1ce5d Binary files /dev/null and b/blockchains/smartchain/assets/0x0099cF3d44E62eaC847396CF9BDcc6b07622f2d8/logo.png differ diff --git a/blockchains/smartchain/assets/0x00abaA93fAF8fDc4f382135a7A56F9Cf7C3EdD21/info.json b/blockchains/smartchain/assets/0x00abaA93fAF8fDc4f382135a7A56F9Cf7C3EdD21/info.json index a4f344848227b..9f380d29659a5 100644 --- a/blockchains/smartchain/assets/0x00abaA93fAF8fDc4f382135a7A56F9Cf7C3EdD21/info.json +++ b/blockchains/smartchain/assets/0x00abaA93fAF8fDc4f382135a7A56F9Cf7C3EdD21/info.json @@ -10,8 +10,8 @@ "id": "0x00abaA93fAF8fDc4f382135a7A56F9Cf7C3EdD21", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MonetaryUnit" + "name": "x", + "url": "https://x.com/MonetaryUnit" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x00c81d35edDF44c75d4Db9E07bDCdC236eB0ebcf/info.json b/blockchains/smartchain/assets/0x00c81d35edDF44c75d4Db9E07bDCdC236eB0ebcf/info.json new file mode 100644 index 0000000000000..1f1dac650dca5 --- /dev/null +++ b/blockchains/smartchain/assets/0x00c81d35edDF44c75d4Db9E07bDCdC236eB0ebcf/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares MSCI Emerging Markets ETF (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "EEMon is the Ondo Tokenized version of the iShares MSCI Emerging Markets ETF, giving tokenholders economic exposure similar to holding EEM and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x00c81d35eddf44c75d4db9e07bdcdc236eb0ebcf", + "type": "BEP20", + "symbol": "EEMon", + "decimals": 18, + "status": "active", + "id": "0x00c81d35edDF44c75d4Db9E07bDCdC236eB0ebcf", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-msci-emerging-markets-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x00c81d35edDF44c75d4Db9E07bDCdC236eB0ebcf/logo.png b/blockchains/smartchain/assets/0x00c81d35edDF44c75d4Db9E07bDCdC236eB0ebcf/logo.png new file mode 100644 index 0000000000000..8adf578853fa6 Binary files /dev/null and b/blockchains/smartchain/assets/0x00c81d35edDF44c75d4Db9E07bDCdC236eB0ebcf/logo.png differ diff --git a/blockchains/smartchain/assets/0x00e1656e45f18ec6747F5a8496Fd39B50b38396D/info.json b/blockchains/smartchain/assets/0x00e1656e45f18ec6747F5a8496Fd39B50b38396D/info.json index 9075b640d5695..8b18dddced9e9 100644 --- a/blockchains/smartchain/assets/0x00e1656e45f18ec6747F5a8496Fd39B50b38396D/info.json +++ b/blockchains/smartchain/assets/0x00e1656e45f18ec6747F5a8496Fd39B50b38396D/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/BombCryptoChannel" }, { - "name": "twitter", - "url": "https://twitter.com/BombCryptoGame" + "name": "x", + "url": "https://x.com/BombCryptoGame" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x00f9928315196cdFBeE0205520A8ebe60D9172F0/info.json b/blockchains/smartchain/assets/0x00f9928315196cdFBeE0205520A8ebe60D9172F0/info.json new file mode 100644 index 0000000000000..867f0500be3bd --- /dev/null +++ b/blockchains/smartchain/assets/0x00f9928315196cdFBeE0205520A8ebe60D9172F0/info.json @@ -0,0 +1,48 @@ +{ + "name": "Develocity", + "type": "BEP20", + "symbol": "DEVE", + "decimals": 18, + "website": "https://develocity.finance", + "description": "Develocity, your gateway to decentralized finance. Our ecosystem includes DV Wallet for secure asset management, DV Scan for blockchain security, DV Swap for token exchanges, DV Bridge for cross-chain transactions, and DV DEX for decentralized trading.", + "explorer": "https://bscscan.com/token/0x00f9928315196cdFBeE0205520A8ebe60D9172F0", + "status": "active", + "id": "0x00f9928315196cdFBeE0205520A8ebe60D9172F0", + "links": [ + { + "name": "x", + "url": "https://x.com/develocitygroup" + }, + { + "name": "github", + "url": "https://github.com/DevelocityLLC/" + }, + { + "name": "telegram", + "url": "https://t.me/Develocity" + }, + { + "name": "telegram_news", + "url": "https://t.me/DevelocityToken" + }, + { + "name": "youtube", + "url": "https://youtube.com/@develocitygroup" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/develocity-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/develocity" + }, + { + "name": "whitepaper", + "url": "https://develocity.finance/whitepaper.pdf" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x00f9928315196cdFBeE0205520A8ebe60D9172F0/logo.png b/blockchains/smartchain/assets/0x00f9928315196cdFBeE0205520A8ebe60D9172F0/logo.png new file mode 100644 index 0000000000000..7e7dc1442dfee Binary files /dev/null and b/blockchains/smartchain/assets/0x00f9928315196cdFBeE0205520A8ebe60D9172F0/logo.png differ diff --git a/blockchains/smartchain/assets/0x0112e557d400474717056C4e6D40eDD846F38351/info.json b/blockchains/smartchain/assets/0x0112e557d400474717056C4e6D40eDD846F38351/info.json index 3c4f3ccd07690..1d40cc5609d32 100644 --- a/blockchains/smartchain/assets/0x0112e557d400474717056C4e6D40eDD846F38351/info.json +++ b/blockchains/smartchain/assets/0x0112e557d400474717056C4e6D40eDD846F38351/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Phala-Network" }, { - "name": "twitter", - "url": "https://twitter.com/PhalaNetwork" + "name": "x", + "url": "https://x.com/PhalaNetwork" }, { "name": "coingecko", diff --git a/blockchains/smartchain/assets/0x01486675Da0764ee780Ea7cB65C33062E9B2D28c/info.json b/blockchains/smartchain/assets/0x01486675Da0764ee780Ea7cB65C33062E9B2D28c/info.json new file mode 100644 index 0000000000000..fffa808457cf3 --- /dev/null +++ b/blockchains/smartchain/assets/0x01486675Da0764ee780Ea7cB65C33062E9B2D28c/info.json @@ -0,0 +1,28 @@ +{ + "name": "Moderna (Ondo Tokenized)", + "type": "BEP20", + "symbol": "MRNAon", + "decimals": 18, + "description": "MRNAon is the Ondo Tokenized version of Moderna, giving tokenholders economic exposure similar to holding MRNA and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x01486675Da0764ee780Ea7cB65C33062E9B2D28c", + "status": "active", + "id": "0x01486675Da0764ee780Ea7cB65C33062E9B2D28c", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/moderna-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/moderna-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x01486675Da0764ee780Ea7cB65C33062E9B2D28c/logo.png b/blockchains/smartchain/assets/0x01486675Da0764ee780Ea7cB65C33062E9B2D28c/logo.png new file mode 100644 index 0000000000000..1286f93f5591c Binary files /dev/null and b/blockchains/smartchain/assets/0x01486675Da0764ee780Ea7cB65C33062E9B2D28c/logo.png differ diff --git a/blockchains/smartchain/assets/0x014a087b646Bd90E7DCEad3993F49EB1F4B5f30a/info.json b/blockchains/smartchain/assets/0x014a087b646Bd90E7DCEad3993F49EB1F4B5f30a/info.json index 76ba465909fe9..4ed801591fcfa 100644 --- a/blockchains/smartchain/assets/0x014a087b646Bd90E7DCEad3993F49EB1F4B5f30a/info.json +++ b/blockchains/smartchain/assets/0x014a087b646Bd90E7DCEad3993F49EB1F4B5f30a/info.json @@ -6,7 +6,7 @@ "website": "https://gulfofficial.com/", "description": "Gulf, A gem rising to the surface of the fourth industrial revolution. Today, we are living through an industrial and a technological revolution going at a pace that will fundamentally alter the way we live.", "explorer": "https://bscscan.com/token/0x014a087b646Bd90E7DCEad3993F49EB1F4B5f30a", - "status": "active", + "status": "abandoned", "id": "0x014a087b646Bd90E7DCEad3993F49EB1F4B5f30a", "links": [ { @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/gulf-coin/" }, { - "name": "twitter", - "url": "https://twitter.com/GulfCoin_" + "name": "x", + "url": "https://x.com/GulfCoin_" }, { "name": "telegram", @@ -37,4 +37,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x014a087b646Bd90E7DCEad3993F49EB1F4B5f30a/logo.png b/blockchains/smartchain/assets/0x014a087b646Bd90E7DCEad3993F49EB1F4B5f30a/logo.png deleted file mode 100644 index d937afa9dcf94..0000000000000 Binary files a/blockchains/smartchain/assets/0x014a087b646Bd90E7DCEad3993F49EB1F4B5f30a/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x0173295183685F27C84db046B5F0bea3e683c24b/info.json b/blockchains/smartchain/assets/0x0173295183685F27C84db046B5F0bea3e683c24b/info.json index 5bdd2dae3530b..6cef2555e1e2b 100644 --- a/blockchains/smartchain/assets/0x0173295183685F27C84db046B5F0bea3e683c24b/info.json +++ b/blockchains/smartchain/assets/0x0173295183685F27C84db046B5F0bea3e683c24b/info.json @@ -10,8 +10,8 @@ "id": "0x0173295183685F27C84db046B5F0bea3e683c24b", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Cat_CAT_Token" + "name": "x", + "url": "https://x.com/Cat_CAT_Token" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x01CA78a2B5F1a9152D8A3A625bd7dF5765eeE1D8/info.json b/blockchains/smartchain/assets/0x01CA78a2B5F1a9152D8A3A625bd7dF5765eeE1D8/info.json new file mode 100644 index 0000000000000..d164656d21e2e --- /dev/null +++ b/blockchains/smartchain/assets/0x01CA78a2B5F1a9152D8A3A625bd7dF5765eeE1D8/info.json @@ -0,0 +1,24 @@ +{ + "name": "Andy", + "type": "BEP20", + "symbol": "ANDY", + "decimals": 18, + "website": "https://www.andytoken.com/", + "description": "$ANDY, PEPE's best friend and the yellow mascot of the yellow chain, BSC.", + "explorer": "https://bscscan.com/token/0x01CA78a2B5F1a9152D8A3A625bd7dF5765eeE1D8", + "status": "active", + "id": "0x01CA78a2B5F1a9152D8A3A625bd7dF5765eeE1D8", + "links": [ + { + "name": "x", + "url": "https://x.com/andybsctoken" + }, + { + "name": "telegram", + "url": "https://t.me/andyonbsctoken" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x01CA78a2B5F1a9152D8A3A625bd7dF5765eeE1D8/logo.png b/blockchains/smartchain/assets/0x01CA78a2B5F1a9152D8A3A625bd7dF5765eeE1D8/logo.png new file mode 100644 index 0000000000000..57bacd299b29e Binary files /dev/null and b/blockchains/smartchain/assets/0x01CA78a2B5F1a9152D8A3A625bd7dF5765eeE1D8/logo.png differ diff --git a/blockchains/smartchain/assets/0x01E0d17a533E5930A349C2BB71304F04F20AB12B/info.json b/blockchains/smartchain/assets/0x01E0d17a533E5930A349C2BB71304F04F20AB12B/info.json index c8b265f4cb9bd..4eaf9e53e67ac 100644 --- a/blockchains/smartchain/assets/0x01E0d17a533E5930A349C2BB71304F04F20AB12B/info.json +++ b/blockchains/smartchain/assets/0x01E0d17a533E5930A349C2BB71304F04F20AB12B/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Revolve-games" }, { - "name": "twitter", - "url": "https://twitter.com/RevolveGamesio" + "name": "x", + "url": "https://x.com/RevolveGamesio" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x01b5a4aC600bE98448DbEFBB78BcDF38262552cc/info.json b/blockchains/smartchain/assets/0x01b5a4aC600bE98448DbEFBB78BcDF38262552cc/info.json new file mode 100644 index 0000000000000..263e53ab11548 --- /dev/null +++ b/blockchains/smartchain/assets/0x01b5a4aC600bE98448DbEFBB78BcDF38262552cc/info.json @@ -0,0 +1,28 @@ +{ + "name": "Occidental Petroleum (Ondo Tokenized)", + "type": "BEP20", + "symbol": "OXYon", + "decimals": 18, + "description": "OXYon is the Ondo Tokenized version of Occidental Petroleum, giving tokenholders economic exposure similar to holding OXY and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x01b5a4aC600bE98448DbEFBB78BcDF38262552cc", + "status": "active", + "id": "0x01b5a4aC600bE98448DbEFBB78BcDF38262552cc", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/occidental-petroleum-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/occidental-petroleum-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x01b5a4aC600bE98448DbEFBB78BcDF38262552cc/logo.png b/blockchains/smartchain/assets/0x01b5a4aC600bE98448DbEFBB78BcDF38262552cc/logo.png new file mode 100644 index 0000000000000..a552db34196ff Binary files /dev/null and b/blockchains/smartchain/assets/0x01b5a4aC600bE98448DbEFBB78BcDF38262552cc/logo.png differ diff --git a/blockchains/smartchain/assets/0x01db446F7C6d20ce1FcA421B4397dA789fbb21F1/info.json b/blockchains/smartchain/assets/0x01db446F7C6d20ce1FcA421B4397dA789fbb21F1/info.json index 4ee6756e88e7f..5adf48974e3f1 100644 --- a/blockchains/smartchain/assets/0x01db446F7C6d20ce1FcA421B4397dA789fbb21F1/info.json +++ b/blockchains/smartchain/assets/0x01db446F7C6d20ce1FcA421B4397dA789fbb21F1/info.json @@ -10,8 +10,8 @@ "id": "0x01db446F7C6d20ce1FcA421B4397dA789fbb21F1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/dogekingbsc" + "name": "x", + "url": "https://x.com/dogekingbsc" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x01e9611dF08548994C883e4Ca729B0128E73470F/info.json b/blockchains/smartchain/assets/0x01e9611dF08548994C883e4Ca729B0128E73470F/info.json index e26f6a14f3a11..6e19702b317dc 100644 --- a/blockchains/smartchain/assets/0x01e9611dF08548994C883e4Ca729B0128E73470F/info.json +++ b/blockchains/smartchain/assets/0x01e9611dF08548994C883e4Ca729B0128E73470F/info.json @@ -10,8 +10,8 @@ "id": "0x01e9611dF08548994C883e4Ca729B0128E73470F", "links": [ { - "name": "twitter", - "url": "https://twitter.com/RizeToken" + "name": "x", + "url": "https://x.com/RizeToken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x0203D275D2A65030889aF45ed91D472be3948B92/info.json b/blockchains/smartchain/assets/0x0203D275D2A65030889aF45ed91D472be3948B92/info.json new file mode 100644 index 0000000000000..c9d6975e4afbb --- /dev/null +++ b/blockchains/smartchain/assets/0x0203D275D2A65030889aF45ed91D472be3948B92/info.json @@ -0,0 +1,21 @@ +{ + "name": "Engines of Fury Token", + "website": "https://www.eof.gg/", + "description": "Free to play top-down extraction shooter. Players attempt to survive in a brutal narrative driven world as they customize their hideout and craft increasingly powerful armor and weapons. Single player, Co-Op & PVPVE gameplay modes with social features, NFTs & $FURY token at the heart of the game.", + "explorer": "https://bscscan.com/token/0x0203D275D2A65030889aF45ed91D472be3948B92", + "type": "BEP20", + "symbol": "FURY", + "decimals": 18, + "status": "active", + "id": "0x0203D275D2A65030889aF45ed91D472be3948B92", + "links": [ + { + "name": "x", + "url": "https://x.com/EnginesOfFury" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/engines-of-fury/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0203D275D2A65030889aF45ed91D472be3948B92/logo.png b/blockchains/smartchain/assets/0x0203D275D2A65030889aF45ed91D472be3948B92/logo.png new file mode 100644 index 0000000000000..7ba3472865f38 Binary files /dev/null and b/blockchains/smartchain/assets/0x0203D275D2A65030889aF45ed91D472be3948B92/logo.png differ diff --git a/blockchains/smartchain/assets/0x02235DD8dA1A7215183B74B817383f27457B4444/info.json b/blockchains/smartchain/assets/0x02235DD8dA1A7215183B74B817383f27457B4444/info.json new file mode 100644 index 0000000000000..254cb23dc0c94 --- /dev/null +++ b/blockchains/smartchain/assets/0x02235DD8dA1A7215183B74B817383f27457B4444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDKG", + "type": "BEP20", + "symbol": "FAKE USDKG", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x02235DD8dA1A7215183B74B817383f27457B4444", + "explorer": "https://bscscan.com/token/0x02235DD8dA1A7215183B74B817383f27457B4444", + "status": "spam", + "id": "0x02235DD8dA1A7215183B74B817383f27457B4444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0231f91e02DebD20345Ae8AB7D71A41f8E140cE7/info.json b/blockchains/smartchain/assets/0x0231f91e02DebD20345Ae8AB7D71A41f8E140cE7/info.json index 946e5f4b7bfae..e72c99ec10977 100644 --- a/blockchains/smartchain/assets/0x0231f91e02DebD20345Ae8AB7D71A41f8E140cE7/info.json +++ b/blockchains/smartchain/assets/0x0231f91e02DebD20345Ae8AB7D71A41f8E140cE7/info.json @@ -10,8 +10,8 @@ "id": "0x0231f91e02DebD20345Ae8AB7D71A41f8E140cE7", "links": [ { - "name": "twitter", - "url": "https://twitter.com/jup_project" + "name": "x", + "url": "https://x.com/jup_project" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x02926E6E2898e9235fDdDDe3f51c3b644Af8C403/info.json b/blockchains/smartchain/assets/0x02926E6E2898e9235fDdDDe3f51c3b644Af8C403/info.json index 0fc7eb176f257..70af1fd3e33b2 100644 --- a/blockchains/smartchain/assets/0x02926E6E2898e9235fDdDDe3f51c3b644Af8C403/info.json +++ b/blockchains/smartchain/assets/0x02926E6E2898e9235fDdDDe3f51c3b644Af8C403/info.json @@ -10,8 +10,8 @@ "id": "0x02926E6E2898e9235fDdDDe3f51c3b644Af8C403", "links": [ { - "name": "twitter", - "url": "https://twitter.com/CoinB2u" + "name": "x", + "url": "https://x.com/CoinB2u" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x0297eB00f7dcF53BF21A093Cc2C606D4128E4444/info.json b/blockchains/smartchain/assets/0x0297eB00f7dcF53BF21A093Cc2C606D4128E4444/info.json new file mode 100644 index 0000000000000..39b50940b77df --- /dev/null +++ b/blockchains/smartchain/assets/0x0297eB00f7dcF53BF21A093Cc2C606D4128E4444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE KASH", + "type": "BEP20", + "symbol": "FAKE KASH", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x0297eB00f7dcF53BF21A093Cc2C606D4128E4444", + "explorer": "https://bscscan.com/token/0x0297eB00f7dcF53BF21A093Cc2C606D4128E4444", + "status": "spam", + "id": "0x0297eB00f7dcF53BF21A093Cc2C606D4128E4444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x02A40C048eE2607B5f5606e445CFc3633Fb20b58/info.json b/blockchains/smartchain/assets/0x02A40C048eE2607B5f5606e445CFc3633Fb20b58/info.json index d55a3e3243100..2ac10ef3378f1 100644 --- a/blockchains/smartchain/assets/0x02A40C048eE2607B5f5606e445CFc3633Fb20b58/info.json +++ b/blockchains/smartchain/assets/0x02A40C048eE2607B5f5606e445CFc3633Fb20b58/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/KabyArena" }, { - "name": "twitter", - "url": "https://twitter.com/KabyArena" + "name": "x", + "url": "https://x.com/KabyArena" }, { "name": "coingecko", diff --git a/blockchains/smartchain/assets/0x02D608506cA0048D0D991a11F1E7Fb8CAD1e44f8/info.json b/blockchains/smartchain/assets/0x02D608506cA0048D0D991a11F1E7Fb8CAD1e44f8/info.json new file mode 100644 index 0000000000000..ff67e34f3d937 --- /dev/null +++ b/blockchains/smartchain/assets/0x02D608506cA0048D0D991a11F1E7Fb8CAD1e44f8/info.json @@ -0,0 +1,28 @@ +{ + "name": "American Airlines Group (Ondo Tokenized)", + "type": "BEP20", + "symbol": "AALon", + "decimals": 18, + "description": "AALon is the Ondo Tokenized version of American Airlines Group, giving tokenholders economic exposure similar to holding AAL and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x02D608506cA0048D0D991a11F1E7Fb8CAD1e44f8", + "status": "active", + "id": "0x02D608506cA0048D0D991a11F1E7Fb8CAD1e44f8", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/american-airlines-group-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/american-airlines-group-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x02D608506cA0048D0D991a11F1E7Fb8CAD1e44f8/logo.png b/blockchains/smartchain/assets/0x02D608506cA0048D0D991a11F1E7Fb8CAD1e44f8/logo.png new file mode 100644 index 0000000000000..c86f92e6e6a47 Binary files /dev/null and b/blockchains/smartchain/assets/0x02D608506cA0048D0D991a11F1E7Fb8CAD1e44f8/logo.png differ diff --git a/blockchains/smartchain/assets/0x02Fca66C1D1aFB4E2A7884261eB00F63598a7436/info.json b/blockchains/smartchain/assets/0x02Fca66C1D1aFB4E2A7884261eB00F63598a7436/info.json new file mode 100644 index 0000000000000..891bf9c6f26a2 --- /dev/null +++ b/blockchains/smartchain/assets/0x02Fca66C1D1aFB4E2A7884261eB00F63598a7436/info.json @@ -0,0 +1,21 @@ +{ + "name": "NVIDIA Tokenized bStocks", + "type": "BEP20", + "symbol": "NVDAB", + "decimals": 18, + "description": "NVDAB is a tokenized bStocks that gives you economic exposure to NVIDIA, and the right to convert to the underlying security on the Binance.com platform subject to applicable laws. Each token is fully backed by the corresponding underlying equity maintained by the Issuer at a US-regulated broker-dealer. You get the price movements, dividends, and the right to convert the token at 1:1 to the underlying share — tradeable 24/7.", + "website": "https://www.bstocks.finance/", + "explorer": "https://bscscan.com/token/0x02Fca66C1D1aFB4E2A7884261eB00F63598a7436", + "status": "active", + "id": "0x02Fca66C1D1aFB4E2A7884261eB00F63598a7436", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nvidia-tokenized-stock-bstocks/" + } + ], + "tags": [ + "RWA", + "erc8056" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x02Fca66C1D1aFB4E2A7884261eB00F63598a7436/logo.png b/blockchains/smartchain/assets/0x02Fca66C1D1aFB4E2A7884261eB00F63598a7436/logo.png new file mode 100644 index 0000000000000..7b6bde34b4b49 Binary files /dev/null and b/blockchains/smartchain/assets/0x02Fca66C1D1aFB4E2A7884261eB00F63598a7436/logo.png differ diff --git a/blockchains/smartchain/assets/0x02a655942Dbb886c77bb22B270060c561300B0E2/info.json b/blockchains/smartchain/assets/0x02a655942Dbb886c77bb22B270060c561300B0E2/info.json index 8a3c11de25550..df081e7ee66f9 100644 --- a/blockchains/smartchain/assets/0x02a655942Dbb886c77bb22B270060c561300B0E2/info.json +++ b/blockchains/smartchain/assets/0x02a655942Dbb886c77bb22B270060c561300B0E2/info.json @@ -22,8 +22,8 @@ "url": "https://coinmarketcap.com/currencies/kodexpay/" }, { - "name": "twitter", - "url": "https://twitter.com/kodexpay" + "name": "x", + "url": "https://x.com/kodexpay" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9/info.json b/blockchains/smartchain/assets/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9/info.json new file mode 100644 index 0000000000000..399b24a43a828 --- /dev/null +++ b/blockchains/smartchain/assets/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9/info.json @@ -0,0 +1,24 @@ +{ + "name": "Philip Morris tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Phillip Morris xStock (PMx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. PMx tracks the price of Philip Morris International Inc. (the underlying). PMx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Philip Morris International Inc., whilst maintaining the benefits of blockchain technology. Phillip Morris is an American multinational tobacco company, with products sold in over 180 countries.", + "explorer": "https://bscscan.com/token/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9", + "type": "BEP20", + "symbol": "PMX", + "decimals": 18, + "status": "active", + "id": "0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/philip-morris-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9/logo.png b/blockchains/smartchain/assets/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9/logo.png new file mode 100644 index 0000000000000..af7129b1cec83 Binary files /dev/null and b/blockchains/smartchain/assets/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9/logo.png differ diff --git a/blockchains/smartchain/assets/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB/info.json b/blockchains/smartchain/assets/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB/info.json new file mode 100644 index 0000000000000..75e020341a342 --- /dev/null +++ b/blockchains/smartchain/assets/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB/info.json @@ -0,0 +1,24 @@ +{ + "name": "Accenture tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Accenture xStock (ACNx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. ACNx tracks the price of Accenture plc Class A (the underlying). ACNx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Accenture plc Class A, whilst maintaining the benefits of blockchain technology. Accenture is a global professional services company that helps businesses, governments, and other organizations build their digital core, optimize their operations, and accelerate revenue growth.", + "explorer": "https://bscscan.com/token/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB", + "type": "BEP20", + "symbol": "ACNX", + "decimals": 18, + "status": "active", + "id": "0x03183Ce31b1656B72A55fa6056e287f50C35BbEB", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/accenture-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB/logo.png b/blockchains/smartchain/assets/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB/logo.png new file mode 100644 index 0000000000000..70683dfdde705 Binary files /dev/null and b/blockchains/smartchain/assets/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB/logo.png differ diff --git a/blockchains/smartchain/assets/0x0321394309CaD7E0E424650844c3AB3b659315d3/info.json b/blockchains/smartchain/assets/0x0321394309CaD7E0E424650844c3AB3b659315d3/info.json index 37b7b617dcce1..3dd6efc23c475 100644 --- a/blockchains/smartchain/assets/0x0321394309CaD7E0E424650844c3AB3b659315d3/info.json +++ b/blockchains/smartchain/assets/0x0321394309CaD7E0E424650844c3AB3b659315d3/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/ElasticBTC-XBT" }, { - "name": "twitter", - "url": "https://twitter.com/elasticbitcoin" + "name": "x", + "url": "https://x.com/elasticbitcoin" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x032A4E59387e08443Cf1df662141da09c31ceFa1/info.json b/blockchains/smartchain/assets/0x032A4E59387e08443Cf1df662141da09c31ceFa1/info.json index 315836af2b0ff..3c99bbc2d4064 100644 --- a/blockchains/smartchain/assets/0x032A4E59387e08443Cf1df662141da09c31ceFa1/info.json +++ b/blockchains/smartchain/assets/0x032A4E59387e08443Cf1df662141da09c31ceFa1/info.json @@ -10,8 +10,8 @@ "id": "0x032A4E59387e08443Cf1df662141da09c31ceFa1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/HeroCatGameFi" + "name": "x", + "url": "https://x.com/HeroCatGameFi" }, { "name": "telegram", @@ -41,4 +41,4 @@ "tags": [ "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x034e3d48c7d742ff7Eb40365aC7366A35ECB1EF6/info.json b/blockchains/smartchain/assets/0x034e3d48c7d742ff7Eb40365aC7366A35ECB1EF6/info.json new file mode 100644 index 0000000000000..2ae5551339f9a --- /dev/null +++ b/blockchains/smartchain/assets/0x034e3d48c7d742ff7Eb40365aC7366A35ECB1EF6/info.json @@ -0,0 +1,26 @@ +{ + "name": "TEST", + "type": "BEP20", + "symbol": "TST", + "decimals": 12, + "description": "$TST is all about community! While it started as a fun test, it’s evolving into something much bigger. We want YOU to be part of its journey. Full transparency, no hidden tricks!", + "website": "https://testtoken.me/", + "explorer": "https://bscscan.com/token/0x034e3d48c7d742ff7Eb40365aC7366A35ECB1EF6", + "id": "0x034e3d48c7d742ff7Eb40365aC7366A35ECB1EF6", + "status": "spam", + "links": [ + { + "name": "x", + "url": "https://x.com/testtstx" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/testtoken-me/" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x035aD59058c557be4532141FBCD60f0998fCE413/info.json b/blockchains/smartchain/assets/0x035aD59058c557be4532141FBCD60f0998fCE413/info.json index 2b5618e78b175..7a86e17000065 100644 --- a/blockchains/smartchain/assets/0x035aD59058c557be4532141FBCD60f0998fCE413/info.json +++ b/blockchains/smartchain/assets/0x035aD59058c557be4532141FBCD60f0998fCE413/info.json @@ -10,8 +10,8 @@ "id": "0x035aD59058c557be4532141FBCD60f0998fCE413", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BabyApeFunClub" + "name": "x", + "url": "https://x.com/BabyApeFunClub" }, { "name": "telegram", @@ -34,4 +34,4 @@ "gamefi", "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x037838b556d9c9d654148a284682C55bB5f56eF4/info.json b/blockchains/smartchain/assets/0x037838b556d9c9d654148a284682C55bB5f56eF4/info.json index f587a21c3465e..6e57f2ba688f7 100644 --- a/blockchains/smartchain/assets/0x037838b556d9c9d654148a284682C55bB5f56eF4/info.json +++ b/blockchains/smartchain/assets/0x037838b556d9c9d654148a284682C55bB5f56eF4/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/lightningprotocol" }, { - "name": "twitter", - "url": "https://twitter.com/LightningDeFi" + "name": "x", + "url": "https://x.com/LightningDeFi" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x039cB485212f996A9DBb85A9a75d898F94d38dA6/info.json b/blockchains/smartchain/assets/0x039cB485212f996A9DBb85A9a75d898F94d38dA6/info.json index 9fe373321a684..c15d44c801376 100644 --- a/blockchains/smartchain/assets/0x039cB485212f996A9DBb85A9a75d898F94d38dA6/info.json +++ b/blockchains/smartchain/assets/0x039cB485212f996A9DBb85A9a75d898F94d38dA6/info.json @@ -1,17 +1,37 @@ { - "name": "DEXE", + "name": "DeXe (Old)", "type": "BEP20", "symbol": "DEXE", "decimals": 18, "website": "https://dexe.network/", - "description": "Dexe.network or Dexe (Decentralized Social Trading Platform) – an online, decentralized and autonomous cryptocurrency assets portfolio environment which operates via autonomous smart contracts, that includes tools for virtual currency allocation, automatic rebalancing and eliminates the risks of transferring digital wallet details such as private keys and API or any virtual currency data to a third party.", + "description": "DeXe Protocol is a decentralized suite of permissionless tools for managing assets, products, and communities governed by $DEXE holders within DeXe Protocol DAO. It offers a no-code environment on blockchain for launching DAOs, tokens, and fundraises; AI-powered automation for decision-making; on/off-chain in a seamless space; account abstraction acting as a DAO, multi-sig or single party with numerous features for managing assets and payouts, and(or) communities.", "explorer": "https://bscscan.com/token/0x039cb485212f996a9dbb85a9a75d898f94d38da6", "id": "0x039cB485212f996A9DBb85A9a75d898F94d38dA6", "status": "active", "links": [ { "name": "github", - "url": "https://github.com/dexe-network/dexe" + "url": "https://github.com/dexe-network/DeXe-Protocol" + }, + { + "name": "x", + "url": "https://x.com/DexeNetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dexe/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dexe" + }, + { + "name": "telegram", + "url": "https://t.me/dexe_network_official_chat" } + ], + "tags": [ + "governance", + "defi" ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x039cB485212f996A9DBb85A9a75d898F94d38dA6/logo.png b/blockchains/smartchain/assets/0x039cB485212f996A9DBb85A9a75d898F94d38dA6/logo.png index 0ca575a8134dc..9b717a971bca4 100644 Binary files a/blockchains/smartchain/assets/0x039cB485212f996A9DBb85A9a75d898F94d38dA6/logo.png and b/blockchains/smartchain/assets/0x039cB485212f996A9DBb85A9a75d898F94d38dA6/logo.png differ diff --git a/blockchains/smartchain/assets/0x039cD22cb49084142d55FCD4B6096A4F51ffb3B4/info.json b/blockchains/smartchain/assets/0x039cD22cb49084142d55FCD4B6096A4F51ffb3B4/info.json new file mode 100644 index 0000000000000..6f8a6fbab170a --- /dev/null +++ b/blockchains/smartchain/assets/0x039cD22cb49084142d55FCD4B6096A4F51ffb3B4/info.json @@ -0,0 +1,17 @@ +{ + "name": "MOVEZ.me", + "symbol": "MOVEZ", + "type": "BEP20", + "decimals": 18, + "description": "MoveZ is project of MoveToEarn. Users can walk, swim, surf, lift-Move and earn token.", + "website": "https://www.movez.me/", + "explorer": "https://bscscan.com/token/0x039cd22cb49084142d55fcd4b6096a4f51ffb3b4", + "status": "active", + "id": "0x039cD22cb49084142d55FCD4B6096A4F51ffb3B4", + "links": [ + { + "name": "x", + "url": "https://x.com/Movez_app" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x039cD22cb49084142d55FCD4B6096A4F51ffb3B4/logo.png b/blockchains/smartchain/assets/0x039cD22cb49084142d55FCD4B6096A4F51ffb3B4/logo.png new file mode 100644 index 0000000000000..bbb8a16bd14e0 Binary files /dev/null and b/blockchains/smartchain/assets/0x039cD22cb49084142d55FCD4B6096A4F51ffb3B4/logo.png differ diff --git a/blockchains/smartchain/assets/0x03AA6298F1370642642415EDC0db8b957783e8D6/info.json b/blockchains/smartchain/assets/0x03AA6298F1370642642415EDC0db8b957783e8D6/info.json new file mode 100644 index 0000000000000..a9cc0e8fbb2dd --- /dev/null +++ b/blockchains/smartchain/assets/0x03AA6298F1370642642415EDC0db8b957783e8D6/info.json @@ -0,0 +1,21 @@ +{ + "name": "NetMind", + "type": "BEP20", + "symbol": "NMT", + "decimals": 18, + "website": "https://power.netmind.ai/", + "description": "NetMind Power is a decentralized platform aimed at democratizing AI and machine learning computing power by leveraging idle GPUs globally for more accessible and affordable AI development.", + "explorer": "https://bscscan.com/token/0x03AA6298F1370642642415EDC0db8b957783e8D6", + "status": "active", + "id": "0x03AA6298F1370642642415EDC0db8b957783e8D6", + "links": [ + { + "name": "x", + "url": "https://x.com/NetmindAi" + }, + { + "name": "telegram", + "url": "https://t.me/NetmindAI" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x03AA6298F1370642642415EDC0db8b957783e8D6/logo.png b/blockchains/smartchain/assets/0x03AA6298F1370642642415EDC0db8b957783e8D6/logo.png new file mode 100644 index 0000000000000..5314738f484da Binary files /dev/null and b/blockchains/smartchain/assets/0x03AA6298F1370642642415EDC0db8b957783e8D6/logo.png differ diff --git a/blockchains/smartchain/assets/0x03C580eecf2c36Ab8a77a71d56d867EcD495552D/info.json b/blockchains/smartchain/assets/0x03C580eecf2c36Ab8a77a71d56d867EcD495552D/info.json index a82cb11de72d1..45462aff2e2a7 100644 --- a/blockchains/smartchain/assets/0x03C580eecf2c36Ab8a77a71d56d867EcD495552D/info.json +++ b/blockchains/smartchain/assets/0x03C580eecf2c36Ab8a77a71d56d867EcD495552D/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/The_Real_Nuke_" + "name": "x", + "url": "https://x.com/The_Real_Nuke_" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x03D6BD3d48F956D783456695698C407A46ecD54d/info.json b/blockchains/smartchain/assets/0x03D6BD3d48F956D783456695698C407A46ecD54d/info.json index bbd4e0504fdb6..51a01bb12d61e 100644 --- a/blockchains/smartchain/assets/0x03D6BD3d48F956D783456695698C407A46ecD54d/info.json +++ b/blockchains/smartchain/assets/0x03D6BD3d48F956D783456695698C407A46ecD54d/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/HyperJumpBSC" + "name": "x", + "url": "https://x.com/HyperJumpBSC" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x03E4bd1Ea53f1da84513da0319D1f03dD1BBCf93/info.json b/blockchains/smartchain/assets/0x03E4bd1Ea53f1da84513da0319D1f03dD1BBCf93/info.json new file mode 100644 index 0000000000000..9a642cd8dfcb2 --- /dev/null +++ b/blockchains/smartchain/assets/0x03E4bd1Ea53f1da84513da0319D1f03dD1BBCf93/info.json @@ -0,0 +1,24 @@ +{ + "name": "Oracle (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "ORCLon is the Ondo Tokenized version of Oracle, giving tokenholders economic exposure similar to holding ORCL and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x03e4bd1ea53f1da84513da0319d1f03dd1bbcf93", + "type": "BEP20", + "symbol": "ORCLon", + "decimals": 18, + "status": "active", + "id": "0x03E4bd1Ea53f1da84513da0319D1f03dD1BBCf93", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/oracle-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x03E4bd1Ea53f1da84513da0319D1f03dD1BBCf93/logo.png b/blockchains/smartchain/assets/0x03E4bd1Ea53f1da84513da0319D1f03dD1BBCf93/logo.png new file mode 100644 index 0000000000000..599c739460b10 Binary files /dev/null and b/blockchains/smartchain/assets/0x03E4bd1Ea53f1da84513da0319D1f03dD1BBCf93/logo.png differ diff --git a/blockchains/smartchain/assets/0x0409633A72D846fc5BBe2f98D88564D35987904D/info.json b/blockchains/smartchain/assets/0x0409633A72D846fc5BBe2f98D88564D35987904D/info.json new file mode 100644 index 0000000000000..19cae73799bcf --- /dev/null +++ b/blockchains/smartchain/assets/0x0409633A72D846fc5BBe2f98D88564D35987904D/info.json @@ -0,0 +1,21 @@ +{ + "name": "Phoenix Global", + "type": "BEP20", + "symbol": "PHB", + "decimals": 18, + "website": "https://phoenix.global/", + "description": "Phoenix Global is built for the enterprise, with the consumer in mind. Developed and deploy decentralized consumer apps built to scale, and fit within the existing customer experience.", + "explorer": "https://bscscan.com/token/0x0409633A72D846fc5BBe2f98D88564D35987904D", + "status": "active", + "id": "0x0409633A72D846fc5BBe2f98D88564D35987904D", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/phoenix-global-new/" + }, + { + "name": "x", + "url": "https://x.com/Phoenix_Chain" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0409633A72D846fc5BBe2f98D88564D35987904D/logo.png b/blockchains/smartchain/assets/0x0409633A72D846fc5BBe2f98D88564D35987904D/logo.png new file mode 100644 index 0000000000000..4da4a4f4adf95 Binary files /dev/null and b/blockchains/smartchain/assets/0x0409633A72D846fc5BBe2f98D88564D35987904D/logo.png differ diff --git a/blockchains/smartchain/assets/0x041640eA980e3fE61e9C4ca26D9007Bc70094C15/info.json b/blockchains/smartchain/assets/0x041640eA980e3fE61e9C4ca26D9007Bc70094C15/info.json index 8dae5493497cf..43e5adba148b1 100644 --- a/blockchains/smartchain/assets/0x041640eA980e3fE61e9C4ca26D9007Bc70094C15/info.json +++ b/blockchains/smartchain/assets/0x041640eA980e3fE61e9C4ca26D9007Bc70094C15/info.json @@ -10,8 +10,8 @@ "id": "0x041640eA980e3fE61e9C4ca26D9007Bc70094C15", "links": [ { - "name": "twitter", - "url": "https://twitter.com/piratecoingames" + "name": "x", + "url": "https://x.com/piratecoingames" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x0416846Db6bEa02588e546271D4d83c4061b7757/info.json b/blockchains/smartchain/assets/0x0416846Db6bEa02588e546271D4d83c4061b7757/info.json index 8644b65fc396f..68548cf94912a 100644 --- a/blockchains/smartchain/assets/0x0416846Db6bEa02588e546271D4d83c4061b7757/info.json +++ b/blockchains/smartchain/assets/0x0416846Db6bEa02588e546271D4d83c4061b7757/info.json @@ -10,8 +10,8 @@ "id": "0x0416846Db6bEa02588e546271D4d83c4061b7757", "links": [ { - "name": "twitter", - "url": "https://twitter.com/FOOTBALLinuBSC" + "name": "x", + "url": "https://x.com/FOOTBALLinuBSC" }, { "name": "telegram", @@ -34,4 +34,4 @@ "gamefi", "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x04260673729c5F2b9894A467736f3D85F8d34fC8/info.json b/blockchains/smartchain/assets/0x04260673729c5F2b9894A467736f3D85F8d34fC8/info.json index 547376a30c661..cedbc14e92c22 100644 --- a/blockchains/smartchain/assets/0x04260673729c5F2b9894A467736f3D85F8d34fC8/info.json +++ b/blockchains/smartchain/assets/0x04260673729c5F2b9894A467736f3D85F8d34fC8/info.json @@ -10,8 +10,8 @@ "id": "0x04260673729c5F2b9894A467736f3D85F8d34fC8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/NFTCryptoPlanes" + "name": "x", + "url": "https://x.com/NFTCryptoPlanes" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x0443f7a0fb8F75e8D4553bb1E59b977679514444/info.json b/blockchains/smartchain/assets/0x0443f7a0fb8F75e8D4553bb1E59b977679514444/info.json new file mode 100644 index 0000000000000..91da0178b4ed4 --- /dev/null +++ b/blockchains/smartchain/assets/0x0443f7a0fb8F75e8D4553bb1E59b977679514444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE KyrgyzstanStablecoin", + "type": "BEP20", + "symbol": "FAKE USDKG", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x0443f7a0fb8F75e8D4553bb1E59b977679514444", + "explorer": "https://bscscan.com/token/0x0443f7a0fb8F75e8D4553bb1E59b977679514444", + "status": "spam", + "id": "0x0443f7a0fb8F75e8D4553bb1E59b977679514444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0469F8Ca65Ce318888cc0d6459d0c7cbe5912c98/info.json b/blockchains/smartchain/assets/0x0469F8Ca65Ce318888cc0d6459d0c7cbe5912c98/info.json index 01ffc21b5e2a4..54152f33b3ea8 100644 --- a/blockchains/smartchain/assets/0x0469F8Ca65Ce318888cc0d6459d0c7cbe5912c98/info.json +++ b/blockchains/smartchain/assets/0x0469F8Ca65Ce318888cc0d6459d0c7cbe5912c98/info.json @@ -10,8 +10,8 @@ "id": "0x0469F8Ca65Ce318888cc0d6459d0c7cbe5912c98", "links": [ { - "name": "twitter", - "url": "https://twitter.com/HyperchainX" + "name": "x", + "url": "https://x.com/HyperchainX" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x04756126F044634C9a0f0E985e60c88a51ACC206/info.json b/blockchains/smartchain/assets/0x04756126F044634C9a0f0E985e60c88a51ACC206/info.json index e300973430745..1748a48abd33c 100644 --- a/blockchains/smartchain/assets/0x04756126F044634C9a0f0E985e60c88a51ACC206/info.json +++ b/blockchains/smartchain/assets/0x04756126F044634C9a0f0E985e60c88a51ACC206/info.json @@ -10,8 +10,8 @@ "id": "0x04756126F044634C9a0f0E985e60c88a51ACC206", "links": [ { - "name": "twitter", - "url": "https://twitter.com/trycarbonio" + "name": "x", + "url": "https://x.com/trycarbonio" }, { "name": "github", @@ -20,7 +20,6 @@ ], "tags": [ "defi", - "staking", - "staking-native" + "staking" ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x049d2e20ce8445849a790c5C45F2d4ae63B38888/info.json b/blockchains/smartchain/assets/0x049d2e20ce8445849a790c5C45F2d4ae63B38888/info.json new file mode 100644 index 0000000000000..97cca481d7ddb --- /dev/null +++ b/blockchains/smartchain/assets/0x049d2e20ce8445849a790c5C45F2d4ae63B38888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tеthеr", + "type": "BEP20", + "symbol": "FAKE ՍSDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x049d2e20ce8445849a790c5C45F2d4ae63B38888", + "explorer": "https://bscscan.com/token/0x049d2e20ce8445849a790c5C45F2d4ae63B38888", + "status": "spam", + "id": "0x049d2e20ce8445849a790c5C45F2d4ae63B38888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x04B16ff1F9673146F68AA5d5F57aA45AdcF068E1/info.json b/blockchains/smartchain/assets/0x04B16ff1F9673146F68AA5d5F57aA45AdcF068E1/info.json new file mode 100644 index 0000000000000..7a274cf6f84f9 --- /dev/null +++ b/blockchains/smartchain/assets/0x04B16ff1F9673146F68AA5d5F57aA45AdcF068E1/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Ethereum Trust (Ondo Tokenized)", + "type": "BEP20", + "symbol": "ETHAon", + "decimals": 18, + "description": "ETHAon is the Ondo Tokenized version of the iShares Ethereum Trust ETF, giving tokenholders economic exposure similar to holding ETHA and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x04B16ff1F9673146F68AA5d5F57aA45AdcF068E1", + "status": "active", + "id": "0x04B16ff1F9673146F68AA5d5F57aA45AdcF068E1", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-ethereum-trust-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x04B16ff1F9673146F68AA5d5F57aA45AdcF068E1/logo.png b/blockchains/smartchain/assets/0x04B16ff1F9673146F68AA5d5F57aA45AdcF068E1/logo.png new file mode 100644 index 0000000000000..d163a75f472b5 Binary files /dev/null and b/blockchains/smartchain/assets/0x04B16ff1F9673146F68AA5d5F57aA45AdcF068E1/logo.png differ diff --git a/blockchains/smartchain/assets/0x04C747b40Be4D535fC83D09939fb0f626F32800B/info.json b/blockchains/smartchain/assets/0x04C747b40Be4D535fC83D09939fb0f626F32800B/info.json index be81b0eba052b..dd03fac407682 100644 --- a/blockchains/smartchain/assets/0x04C747b40Be4D535fC83D09939fb0f626F32800B/info.json +++ b/blockchains/smartchain/assets/0x04C747b40Be4D535fC83D09939fb0f626F32800B/info.json @@ -10,8 +10,8 @@ "id": "0x04C747b40Be4D535fC83D09939fb0f626F32800B", "links": [ { - "name": "twitter", - "url": "https://twitter.com/itamgames" + "name": "x", + "url": "https://x.com/itamgames" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0x04F73A09e2eb410205BE256054794fB452f0D245/info.json b/blockchains/smartchain/assets/0x04F73A09e2eb410205BE256054794fB452f0D245/info.json index f24913b265a42..670cae6ddb06c 100644 --- a/blockchains/smartchain/assets/0x04F73A09e2eb410205BE256054794fB452f0D245/info.json +++ b/blockchains/smartchain/assets/0x04F73A09e2eb410205BE256054794fB452f0D245/info.json @@ -10,8 +10,8 @@ "id": "0x04F73A09e2eb410205BE256054794fB452f0D245", "links": [ { - "name": "twitter", - "url": "https://twitter.com/dxsale" + "name": "x", + "url": "https://x.com/dxsale" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x04b5E199F2eC84f78B111035F57b16BeE448dB6F/info.json b/blockchains/smartchain/assets/0x04b5E199F2eC84f78B111035F57b16BeE448dB6F/info.json new file mode 100644 index 0000000000000..0d906ba86b3d3 --- /dev/null +++ b/blockchains/smartchain/assets/0x04b5E199F2eC84f78B111035F57b16BeE448dB6F/info.json @@ -0,0 +1,24 @@ +{ + "name": "Nike (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "NKEon is the Ondo Tokenized version of Nike, giving tokenholders economic exposure similar to holding NKE and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x04b5e199f2ec84f78b111035f57b16bee448db6f", + "type": "BEP20", + "symbol": "NKEon", + "decimals": 18, + "status": "active", + "id": "0x04b5E199F2eC84f78B111035F57b16BeE448dB6F", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nike-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x04b5E199F2eC84f78B111035F57b16BeE448dB6F/logo.png b/blockchains/smartchain/assets/0x04b5E199F2eC84f78B111035F57b16BeE448dB6F/logo.png new file mode 100644 index 0000000000000..840169bac80f1 Binary files /dev/null and b/blockchains/smartchain/assets/0x04b5E199F2eC84f78B111035F57b16BeE448dB6F/logo.png differ diff --git a/blockchains/smartchain/assets/0x050787DE0cF5Da03D9387b344334D51cAE5DD0Fd/info.json b/blockchains/smartchain/assets/0x050787DE0cF5Da03D9387b344334D51cAE5DD0Fd/info.json index d544a0631ac35..ee17d3c3f91ac 100644 --- a/blockchains/smartchain/assets/0x050787DE0cF5Da03D9387b344334D51cAE5DD0Fd/info.json +++ b/blockchains/smartchain/assets/0x050787DE0cF5Da03D9387b344334D51cAE5DD0Fd/info.json @@ -10,8 +10,8 @@ "id": "0x050787DE0cF5Da03D9387b344334D51cAE5DD0Fd", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PeacockCoin" + "name": "x", + "url": "https://x.com/PeacockCoin" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x05311d9aA0E17D1071986146CeD510C85c71B52f/info.json b/blockchains/smartchain/assets/0x05311d9aA0E17D1071986146CeD510C85c71B52f/info.json new file mode 100644 index 0000000000000..53f237fe0eaeb --- /dev/null +++ b/blockchains/smartchain/assets/0x05311d9aA0E17D1071986146CeD510C85c71B52f/info.json @@ -0,0 +1,33 @@ +{ + "id": "0x05311d9aA0E17D1071986146CeD510C85c71B52f", + "name": "DOGITA", + "website": "https://dogita.io", + "description": "It emerged on the market to become the biggest Memecoin than other dogs. Everyone else will lick their own asses with jealousy.", + "explorer": "https://bscscan.com/token/0x05311d9aA0E17D1071986146CeD510C85c71B52f", + "symbol": "DOGA", + "type": "BEP20", + "decimals": 18, + "holders": 10078, + "status": "active", + "tags": [ + "memes" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/dogita" + }, + { + "name": "x", + "url": "https://x.com/missdogita" + }, + { + "name": "telegram", + "url": "https://t.me/Dogitaofficial" + }, + { + "name": "whitepaper", + "url": "https://dogita.gitbook.io/dogita-whitepaper/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x05311d9aA0E17D1071986146CeD510C85c71B52f/logo.png b/blockchains/smartchain/assets/0x05311d9aA0E17D1071986146CeD510C85c71B52f/logo.png new file mode 100644 index 0000000000000..63c3e14390294 Binary files /dev/null and b/blockchains/smartchain/assets/0x05311d9aA0E17D1071986146CeD510C85c71B52f/logo.png differ diff --git a/blockchains/smartchain/assets/0x053C784cD87B74f42e0c089f98643E79c1A3ff16/info.json b/blockchains/smartchain/assets/0x053C784cD87B74f42e0c089f98643E79c1A3ff16/info.json new file mode 100644 index 0000000000000..5b01d2f6a38b3 --- /dev/null +++ b/blockchains/smartchain/assets/0x053C784cD87B74f42e0c089f98643E79c1A3ff16/info.json @@ -0,0 +1,24 @@ +{ + "name": "Cisco tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Cisco xStock (CSCOx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. CSCOx tracks the price of Cisco Systems, Inc. (the underlying). CSCOx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Cisco Systems, Inc., whilst maintaining the benefits of blockchain technology. Cisco is a leading global technology company that focuses on networking, security, collaboration, and cloud solutions.", + "explorer": "https://bscscan.com/token/0x053C784cD87B74f42e0c089f98643E79c1A3ff16", + "type": "BEP20", + "symbol": "CSCOX", + "decimals": 18, + "status": "active", + "id": "0x053C784cD87B74f42e0c089f98643E79c1A3ff16", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cisco-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x053C784cD87B74f42e0c089f98643E79c1A3ff16/logo.png b/blockchains/smartchain/assets/0x053C784cD87B74f42e0c089f98643E79c1A3ff16/logo.png new file mode 100644 index 0000000000000..861002db70a6d Binary files /dev/null and b/blockchains/smartchain/assets/0x053C784cD87B74f42e0c089f98643E79c1A3ff16/logo.png differ diff --git a/blockchains/smartchain/assets/0x05473ceA3774D898C7b6dDa21e1876D6Bca7277b/info.json b/blockchains/smartchain/assets/0x05473ceA3774D898C7b6dDa21e1876D6Bca7277b/info.json new file mode 100644 index 0000000000000..dd48013efb5eb --- /dev/null +++ b/blockchains/smartchain/assets/0x05473ceA3774D898C7b6dDa21e1876D6Bca7277b/info.json @@ -0,0 +1,20 @@ +{ + "name": "abrdn Physical Palladium Shares xStock", + "type": "BEP20", + "symbol": "PALLx", + "decimals": 18, + "description": "abrdn Physical Palladium Shares xStock (PALLx) is a tracker certificate issued as a freely transferable token on selected blockchains. PALLx tracks the price of abrdn Physical Palladium Shares ETF. PALLx is designed to give eligible investors regulatory-compliant access to the stock price of abrdn Physical Palladium Shares ETF, whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x05473ceA3774D898C7b6dDa21e1876D6Bca7277b", + "status": "active", + "id": "0x05473ceA3774D898C7b6dDa21e1876D6Bca7277b", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x05473ceA3774D898C7b6dDa21e1876D6Bca7277b/logo.png b/blockchains/smartchain/assets/0x05473ceA3774D898C7b6dDa21e1876D6Bca7277b/logo.png new file mode 100644 index 0000000000000..d81c7d320cd2a Binary files /dev/null and b/blockchains/smartchain/assets/0x05473ceA3774D898C7b6dDa21e1876D6Bca7277b/logo.png differ diff --git a/blockchains/smartchain/assets/0x056cB5463Db539985fd6EbfbE5C3D5904C5E8A95/info.json b/blockchains/smartchain/assets/0x056cB5463Db539985fd6EbfbE5C3D5904C5E8A95/info.json index bbb20854ce33d..16f7a348af690 100644 --- a/blockchains/smartchain/assets/0x056cB5463Db539985fd6EbfbE5C3D5904C5E8A95/info.json +++ b/blockchains/smartchain/assets/0x056cB5463Db539985fd6EbfbE5C3D5904C5E8A95/info.json @@ -10,8 +10,8 @@ "id": "0x056cB5463Db539985fd6EbfbE5C3D5904C5E8A95", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ethlaxtoken" + "name": "x", + "url": "https://x.com/ethlaxtoken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x057AFf3E314e1ca15BED75510df81A20098cE456/info.json b/blockchains/smartchain/assets/0x057AFf3E314e1ca15BED75510df81A20098cE456/info.json index 0871c770fa11c..d389a5ec8eed7 100644 --- a/blockchains/smartchain/assets/0x057AFf3E314e1ca15BED75510df81A20098cE456/info.json +++ b/blockchains/smartchain/assets/0x057AFf3E314e1ca15BED75510df81A20098cE456/info.json @@ -10,8 +10,8 @@ "id": "0x057AFf3E314e1ca15BED75510df81A20098cE456", "links": [ { - "name": "twitter", - "url": "https://twitter.com/potent_coin" + "name": "x", + "url": "https://x.com/potent_coin" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x0585756aAFB241b0f8A9Df62Db26c566091Bde0b/info.json b/blockchains/smartchain/assets/0x0585756aAFB241b0f8A9Df62Db26c566091Bde0b/info.json new file mode 100644 index 0000000000000..336fd1eb57ffd --- /dev/null +++ b/blockchains/smartchain/assets/0x0585756aAFB241b0f8A9Df62Db26c566091Bde0b/info.json @@ -0,0 +1,24 @@ +{ + "name": "Coherent (Ondo Tokenized)", + "type": "BEP20", + "symbol": "COHRon", + "decimals": 18, + "description": "COHRon is the Ondo Tokenized version of Coherent, giving tokenholders economic exposure similar to holding COHR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x0585756aAFB241b0f8A9Df62Db26c566091Bde0b", + "status": "active", + "id": "0x0585756aAFB241b0f8A9Df62Db26c566091Bde0b", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/coherent-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0585756aAFB241b0f8A9Df62Db26c566091Bde0b/logo.png b/blockchains/smartchain/assets/0x0585756aAFB241b0f8A9Df62Db26c566091Bde0b/logo.png new file mode 100644 index 0000000000000..c890935b1e98c Binary files /dev/null and b/blockchains/smartchain/assets/0x0585756aAFB241b0f8A9Df62Db26c566091Bde0b/logo.png differ diff --git a/blockchains/smartchain/assets/0x0588e851ec0418d660BeE81230d6c678dAF21d46/info.json b/blockchains/smartchain/assets/0x0588e851ec0418d660BeE81230d6c678dAF21d46/info.json new file mode 100644 index 0000000000000..d12220bee3c25 --- /dev/null +++ b/blockchains/smartchain/assets/0x0588e851ec0418d660BeE81230d6c678dAF21d46/info.json @@ -0,0 +1,24 @@ +{ + "name": "Medtronic tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Medtronic xStock (MDTx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. MDTx tracks the price of Medtronic plc (the underlying). MDTx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Medtronic plc, whilst maintaining the benefits of blockchain technology. Medtronic plc is a global healthcare technology company that develops, manufactures, and sells device-based medical therapies and services.", + "explorer": "https://bscscan.com/token/0x0588e851ec0418d660BeE81230d6c678dAF21d46", + "type": "BEP20", + "symbol": "MDTX", + "decimals": 18, + "status": "active", + "id": "0x0588e851ec0418d660BeE81230d6c678dAF21d46", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/medtronic-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0588e851ec0418d660BeE81230d6c678dAF21d46/logo.png b/blockchains/smartchain/assets/0x0588e851ec0418d660BeE81230d6c678dAF21d46/logo.png new file mode 100644 index 0000000000000..1759e67f775b0 Binary files /dev/null and b/blockchains/smartchain/assets/0x0588e851ec0418d660BeE81230d6c678dAF21d46/logo.png differ diff --git a/blockchains/smartchain/assets/0x05De1dbFCdc876F790371508b97C337640Dcd6a9/info.json b/blockchains/smartchain/assets/0x05De1dbFCdc876F790371508b97C337640Dcd6a9/info.json index 8557e215ea8fa..842ef5b7a0662 100644 --- a/blockchains/smartchain/assets/0x05De1dbFCdc876F790371508b97C337640Dcd6a9/info.json +++ b/blockchains/smartchain/assets/0x05De1dbFCdc876F790371508b97C337640Dcd6a9/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/GlowTokenLLC" }, { - "name": "twitter", - "url": "https://twitter.com/GlowTokenLLC" + "name": "x", + "url": "https://x.com/GlowTokenLLC" }, { "name": "telegram", @@ -53,4 +53,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x05aD6E30A855BE07AfA57e08a4f30d00810a402e/info.json b/blockchains/smartchain/assets/0x05aD6E30A855BE07AfA57e08a4f30d00810a402e/info.json index 47e45710fb00f..9d91bd4aaedb6 100644 --- a/blockchains/smartchain/assets/0x05aD6E30A855BE07AfA57e08a4f30d00810a402e/info.json +++ b/blockchains/smartchain/assets/0x05aD6E30A855BE07AfA57e08a4f30d00810a402e/info.json @@ -10,8 +10,8 @@ "id": "0x05aD6E30A855BE07AfA57e08a4f30d00810a402e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/tinyworldgamefi" + "name": "x", + "url": "https://x.com/tinyworldgamefi" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x05ad901cf196cbDCEaB3F8e602a47AAdB1a2e69d/info.json b/blockchains/smartchain/assets/0x05ad901cf196cbDCEaB3F8e602a47AAdB1a2e69d/info.json index e274439e8b42d..111774f8c5bca 100644 --- a/blockchains/smartchain/assets/0x05ad901cf196cbDCEaB3F8e602a47AAdB1a2e69d/info.json +++ b/blockchains/smartchain/assets/0x05ad901cf196cbDCEaB3F8e602a47AAdB1a2e69d/info.json @@ -10,8 +10,8 @@ "id": "0x05ad901cf196cbDCEaB3F8e602a47AAdB1a2e69d", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ZoroToken" + "name": "x", + "url": "https://x.com/ZoroToken" }, { "name": "github", @@ -41,4 +41,4 @@ "tags": [ "memes" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x066cdA0CCA84E9C6eD0a4ECB92AA036a9582544B/info.json b/blockchains/smartchain/assets/0x066cdA0CCA84E9C6eD0a4ECB92AA036a9582544B/info.json index 9b4bc72a33715..5d285896e84b1 100644 --- a/blockchains/smartchain/assets/0x066cdA0CCA84E9C6eD0a4ECB92AA036a9582544B/info.json +++ b/blockchains/smartchain/assets/0x066cdA0CCA84E9C6eD0a4ECB92AA036a9582544B/info.json @@ -10,8 +10,8 @@ "id": "0x066cdA0CCA84E9C6eD0a4ECB92AA036a9582544B", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SonicInuBSC" + "name": "x", + "url": "https://x.com/SonicInuBSC" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x067a5ad3f0f91AcF512fFE66Ea77f37b4DcaaF18/info.json b/blockchains/smartchain/assets/0x067a5ad3f0f91AcF512fFE66Ea77f37b4DcaaF18/info.json index 5cca0a84e6ab2..ddd8931dde036 100644 --- a/blockchains/smartchain/assets/0x067a5ad3f0f91AcF512fFE66Ea77f37b4DcaaF18/info.json +++ b/blockchains/smartchain/assets/0x067a5ad3f0f91AcF512fFE66Ea77f37b4DcaaF18/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/WynautMoney" + "name": "x", + "url": "https://x.com/WynautMoney" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x069B2619Eb24367A46Fda638Bd1b88Aa4daD7879/info.json b/blockchains/smartchain/assets/0x069B2619Eb24367A46Fda638Bd1b88Aa4daD7879/info.json index fd46c663a3899..a60c2d936d282 100644 --- a/blockchains/smartchain/assets/0x069B2619Eb24367A46Fda638Bd1b88Aa4daD7879/info.json +++ b/blockchains/smartchain/assets/0x069B2619Eb24367A46Fda638Bd1b88Aa4daD7879/info.json @@ -10,8 +10,8 @@ "id": "0x069B2619Eb24367A46Fda638Bd1b88Aa4daD7879", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Moon_DAO_" + "name": "x", + "url": "https://x.com/Moon_DAO_" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x06A0138F8c3e5110fd98e34a4473Fb08F1304b87/info.json b/blockchains/smartchain/assets/0x06A0138F8c3e5110fd98e34a4473Fb08F1304b87/info.json new file mode 100644 index 0000000000000..fa619ead9d22b --- /dev/null +++ b/blockchains/smartchain/assets/0x06A0138F8c3e5110fd98e34a4473Fb08F1304b87/info.json @@ -0,0 +1,20 @@ +{ + "name": "VanEck Agribusiness ETF xStock", + "type": "BEP20", + "symbol": "MOOx", + "decimals": 18, + "description": "VanEck Agribusiness ETF xStock (MOOx) is a tracker certificate issued as a freely transferable token on selected blockchains. MOOx tracks the price of VanEck Agribusiness ETF. MOOx is designed to give eligible investors regulatory-compliant access to the stock price of VanEck Agribusiness ETF, whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x06A0138F8c3e5110fd98e34a4473Fb08F1304b87", + "status": "active", + "id": "0x06A0138F8c3e5110fd98e34a4473Fb08F1304b87", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x06A0138F8c3e5110fd98e34a4473Fb08F1304b87/logo.png b/blockchains/smartchain/assets/0x06A0138F8c3e5110fd98e34a4473Fb08F1304b87/logo.png new file mode 100644 index 0000000000000..5fa798536b5bb Binary files /dev/null and b/blockchains/smartchain/assets/0x06A0138F8c3e5110fd98e34a4473Fb08F1304b87/logo.png differ diff --git a/blockchains/smartchain/assets/0x06b889a7a7fa15D8cC7CFf147962C4232cCE7CF0/info.json b/blockchains/smartchain/assets/0x06b889a7a7fa15D8cC7CFf147962C4232cCE7CF0/info.json index 2c06e1fb6ed3d..5888f193a400a 100644 --- a/blockchains/smartchain/assets/0x06b889a7a7fa15D8cC7CFf147962C4232cCE7CF0/info.json +++ b/blockchains/smartchain/assets/0x06b889a7a7fa15D8cC7CFf147962C4232cCE7CF0/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/Saunafinance" }, { - "name": "twitter", - "url": "https://twitter.com/sauna_finance" + "name": "x", + "url": "https://x.com/sauna_finance" }, { "name": "blog", diff --git a/blockchains/smartchain/assets/0x06c0783C6B6f268D9f408F74a2Fe368Be732F9FF/info.json b/blockchains/smartchain/assets/0x06c0783C6B6f268D9f408F74a2Fe368Be732F9FF/info.json index 5d4263e2de678..c4a90a2aa52a2 100644 --- a/blockchains/smartchain/assets/0x06c0783C6B6f268D9f408F74a2Fe368Be732F9FF/info.json +++ b/blockchains/smartchain/assets/0x06c0783C6B6f268D9f408F74a2Fe368Be732F9FF/info.json @@ -10,8 +10,8 @@ "id": "0x06c0783C6B6f268D9f408F74a2Fe368Be732F9FF", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Luckypigtoken?s=20&t=EB9f2aY9hr8o3_Eg0GDMrw" + "name": "x", + "url": "https://x.com/Luckypigtoken?s=20&t=EB9f2aY9hr8o3_Eg0GDMrw" }, { "name": "telegram", @@ -25,4 +25,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x070a08BeEF8d36734dD67A491202fF35a6A16d97/info.json b/blockchains/smartchain/assets/0x070a08BeEF8d36734dD67A491202fF35a6A16d97/info.json index f731399367ed2..a0a7170ae9cf8 100644 --- a/blockchains/smartchain/assets/0x070a08BeEF8d36734dD67A491202fF35a6A16d97/info.json +++ b/blockchains/smartchain/assets/0x070a08BeEF8d36734dD67A491202fF35a6A16d97/info.json @@ -1,5 +1,5 @@ { - "name": "Binance-Peg Smooth Love Potion", + "name": "Smooth Love Potion", "website": "https://axieinfinity.com", "description": "Smooth Love Potion (SLP) is an ERC-20 token on the Axie Infinity platform that is used to breed new digital pets (Axies).", "explorer": "https://bscscan.com/token/0x070a08BeEF8d36734dD67A491202fF35a6A16d97", diff --git a/blockchains/smartchain/assets/0x071Fa11f7516CDeb366F7f7d91DA5049F7086185/info.json b/blockchains/smartchain/assets/0x071Fa11f7516CDeb366F7f7d91DA5049F7086185/info.json index 3f74c0ef8ba99..bd7e145900971 100644 --- a/blockchains/smartchain/assets/0x071Fa11f7516CDeb366F7f7d91DA5049F7086185/info.json +++ b/blockchains/smartchain/assets/0x071Fa11f7516CDeb366F7f7d91DA5049F7086185/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/rocketboys0fficial" }, { - "name": "twitter", - "url": "https://twitter.com/rocketboysbsc" + "name": "x", + "url": "https://x.com/rocketboysbsc" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x0733618Ab62eEEC815f2d1739b7a50bF9E74d8a2/info.json b/blockchains/smartchain/assets/0x0733618Ab62eEEC815f2d1739b7a50bF9E74d8a2/info.json index a4992efca824a..5d45388a5eb72 100644 --- a/blockchains/smartchain/assets/0x0733618Ab62eEEC815f2d1739b7a50bF9E74d8a2/info.json +++ b/blockchains/smartchain/assets/0x0733618Ab62eEEC815f2d1739b7a50bF9E74d8a2/info.json @@ -17,8 +17,8 @@ "url": "https://coinmarketcap.com/currencies/pomerium-ecosystem-token/" }, { - "name": "twitter", - "url": "https://twitter.com/pomerium_space" + "name": "x", + "url": "https://x.com/pomerium_space" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5/info.json b/blockchains/smartchain/assets/0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5/info.json index b97f4217b2e1b..31e610deabfab 100644 --- a/blockchains/smartchain/assets/0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5/info.json +++ b/blockchains/smartchain/assets/0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5/info.json @@ -1,21 +1,21 @@ { - "name": "Hay Stablecoin", + "name": "Lista USD", "type": "BEP20", - "symbol": "HAY", + "symbol": "lisUSD", "decimals": 18, - "website": "https://helio.money/", - "description": "The Helio.Money protocol, powered by the BNB chain, introduces an innovative architecture to stablecoin minting. Helio’s stablecoin is called HAY, and it is over-collateralized with BNB tokens. To obtain HAY, the user will need to provide BNB collateral and borrow HAY against it. After that, HAY can be staked for long-term yield and transferred to other protocols to generate additional yield. HAY is over-collateralized, making its peg highly secure and comparable to the MakerDAO DAI token.", + "website": "https://lista.org/", + "description": "TWhat is Lista DAO (lisUSD)Lista DAO is a decentralized over-collateralized lending and liquid staking platform on the BNB chain.", "explorer": "https://bscscan.com/token/0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5", "status": "active", "id": "0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Helio_Money" + "name": "x", + "url": "https://x.com/Lista_DAO" }, { - "name": "github", - "url": "https://github.com/helio-money" + "name": "telegram", + "url": "https://t.me/ListaDAO" } ], "tags": [ diff --git a/blockchains/smartchain/assets/0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5/logo.png b/blockchains/smartchain/assets/0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5/logo.png index 7ecbaf9ae621c..280d63b83b8fb 100644 Binary files a/blockchains/smartchain/assets/0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5/logo.png and b/blockchains/smartchain/assets/0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5/logo.png differ diff --git a/blockchains/smartchain/assets/0x079Dd74Cc214Ac5f892f6a7271ef0722F6D0c2e6/info.json b/blockchains/smartchain/assets/0x079Dd74Cc214Ac5f892f6a7271ef0722F6D0c2e6/info.json index 4c8de278400ac..c4dba9840bcdf 100644 --- a/blockchains/smartchain/assets/0x079Dd74Cc214Ac5f892f6a7271ef0722F6D0c2e6/info.json +++ b/blockchains/smartchain/assets/0x079Dd74Cc214Ac5f892f6a7271ef0722F6D0c2e6/info.json @@ -14,8 +14,8 @@ "url": "https://facebook.com/nasadogetoken/" }, { - "name": "twitter", - "url": "https://twitter.com/nasadogetoken" + "name": "x", + "url": "https://x.com/nasadogetoken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x07EC61Ae90860641972E9B41A706325a1E928BF8/info.json b/blockchains/smartchain/assets/0x07EC61Ae90860641972E9B41A706325a1E928BF8/info.json index fa9e8711f015a..f9704cd1b6679 100644 --- a/blockchains/smartchain/assets/0x07EC61Ae90860641972E9B41A706325a1E928BF8/info.json +++ b/blockchains/smartchain/assets/0x07EC61Ae90860641972E9B41A706325a1E928BF8/info.json @@ -10,8 +10,8 @@ "id": "0x07EC61Ae90860641972E9B41A706325a1E928BF8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VoltInuOfficial" + "name": "x", + "url": "https://x.com/VoltInuOfficial" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x07a3554899D97a087Bda931Dd5224B3B7435E568/info.json b/blockchains/smartchain/assets/0x07a3554899D97a087Bda931Dd5224B3B7435E568/info.json index 7f23aaaca32dd..307d8aebcf272 100644 --- a/blockchains/smartchain/assets/0x07a3554899D97a087Bda931Dd5224B3B7435E568/info.json +++ b/blockchains/smartchain/assets/0x07a3554899D97a087Bda931Dd5224B3B7435E568/info.json @@ -10,8 +10,8 @@ "id": "0x07a3554899D97a087Bda931Dd5224B3B7435E568", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TendaCoin1" + "name": "x", + "url": "https://x.com/TendaCoin1" }, { "name": "telegram", @@ -29,4 +29,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x07af67b392B7A202fAD8E0FBc64C34F33102165B/info.json b/blockchains/smartchain/assets/0x07af67b392B7A202fAD8E0FBc64C34F33102165B/info.json index 193894818bc29..60ae0eb10d018 100644 --- a/blockchains/smartchain/assets/0x07af67b392B7A202fAD8E0FBc64C34F33102165B/info.json +++ b/blockchains/smartchain/assets/0x07af67b392B7A202fAD8E0FBc64C34F33102165B/info.json @@ -6,12 +6,12 @@ "website": "https://www.aquagoat.finance/", "description": "AquaGoat Finance is a decentralized community-led eco-DeFi project, with AquaGoat acting as its DeFi alternative to conventional high-interest savings accounts.", "explorer": "https://bscscan.com/token/0x07af67b392b7a202fad8e0fbc64c34f33102165b", - "status": "active", + "status": "abandoned", "id": "0x07af67b392B7A202fAD8E0FBc64C34F33102165B", "links": [ { - "name": "twitter", - "url": "https://twitter.com/AquaBsc?s=09" + "name": "x", + "url": "https://x.com/AquaBsc?s=09" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x07af67b392B7A202fAD8E0FBc64C34F33102165B/logo.png b/blockchains/smartchain/assets/0x07af67b392B7A202fAD8E0FBc64C34F33102165B/logo.png deleted file mode 100644 index 0d294f23beb6e..0000000000000 Binary files a/blockchains/smartchain/assets/0x07af67b392B7A202fAD8E0FBc64C34F33102165B/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x07e551E31A793E20dc18494ff6b03095A8F8Ee36/info.json b/blockchains/smartchain/assets/0x07e551E31A793E20dc18494ff6b03095A8F8Ee36/info.json index 4f3c13063fc31..43aeda33b29b3 100644 --- a/blockchains/smartchain/assets/0x07e551E31A793E20dc18494ff6b03095A8F8Ee36/info.json +++ b/blockchains/smartchain/assets/0x07e551E31A793E20dc18494ff6b03095A8F8Ee36/info.json @@ -10,8 +10,8 @@ "id": "0x07e551E31A793E20dc18494ff6b03095A8F8Ee36", "links": [ { - "name": "twitter", - "url": "https://twitter.com/QmallExchange" + "name": "x", + "url": "https://x.com/QmallExchange" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x07f5cEdeD6B3dba557B3663EDC8941FB37b63945/info.json b/blockchains/smartchain/assets/0x07f5cEdeD6B3dba557B3663EDC8941FB37b63945/info.json index fa7afc45f46fd..283697bf5c828 100644 --- a/blockchains/smartchain/assets/0x07f5cEdeD6B3dba557B3663EDC8941FB37b63945/info.json +++ b/blockchains/smartchain/assets/0x07f5cEdeD6B3dba557B3663EDC8941FB37b63945/info.json @@ -10,8 +10,8 @@ "id": "0x07f5cEdeD6B3dba557B3663EDC8941FB37b63945", "links": [ { - "name": "twitter", - "url": "https://twitter.com/LABCommunityOfc" + "name": "x", + "url": "https://x.com/LABCommunityOfc" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x0858F78D09f19FEb89385E20F38515D6F2Be838b/info.json b/blockchains/smartchain/assets/0x0858F78D09f19FEb89385E20F38515D6F2Be838b/info.json new file mode 100644 index 0000000000000..c3683ef68b19b --- /dev/null +++ b/blockchains/smartchain/assets/0x0858F78D09f19FEb89385E20F38515D6F2Be838b/info.json @@ -0,0 +1,17 @@ +{ + "name": "Habibi", + "website": "https://four.meme/token/0x0858f78d09f19feb89385e20f38515d6f2be838b", + "description": "If you missed out on Mubarak, this is your next big opportunity", + "explorer": "https://bscscan.com/token/0x0858f78d09f19feb89385e20f38515d6f2be838b", + "type": "BEP20", + "symbol": "Habibi", + "decimals": 18, + "status": "active", + "id": "0x0858F78D09f19FEb89385E20F38515D6F2Be838b", + "links": [ + { + "name": "x", + "url": "https://x.com/habibi_cto" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0858F78D09f19FEb89385E20F38515D6F2Be838b/logo.png b/blockchains/smartchain/assets/0x0858F78D09f19FEb89385E20F38515D6F2Be838b/logo.png new file mode 100644 index 0000000000000..270beb51b7c6d Binary files /dev/null and b/blockchains/smartchain/assets/0x0858F78D09f19FEb89385E20F38515D6F2Be838b/logo.png differ diff --git a/blockchains/smartchain/assets/0x0864c156b3C5F69824564dEC60c629aE6401bf2a/info.json b/blockchains/smartchain/assets/0x0864c156b3C5F69824564dEC60c629aE6401bf2a/info.json index 2e8669a4050a3..72f44124e264a 100644 --- a/blockchains/smartchain/assets/0x0864c156b3C5F69824564dEC60c629aE6401bf2a/info.json +++ b/blockchains/smartchain/assets/0x0864c156b3C5F69824564dEC60c629aE6401bf2a/info.json @@ -10,8 +10,8 @@ "id": "0x0864c156b3C5F69824564dEC60c629aE6401bf2a", "links": [ { - "name": "twitter", - "url": "https://twitter.com/streamr" + "name": "x", + "url": "https://x.com/streamr" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x08707eaEFCc344ad35BD35C5fF5691c2D3db456e/info.json b/blockchains/smartchain/assets/0x08707eaEFCc344ad35BD35C5fF5691c2D3db456e/info.json new file mode 100644 index 0000000000000..87d34ff8d274f --- /dev/null +++ b/blockchains/smartchain/assets/0x08707eaEFCc344ad35BD35C5fF5691c2D3db456e/info.json @@ -0,0 +1,41 @@ +{ + "name": "DOVU", + "website": "https://dovu.earth/", + "description": "DOVU is a technology infrastructure provider, powering trusted environmental and carbon digital markets by providing market integrity. The DOVU token serves as the protocol’s utility token, enabling holders to participate and create their own environmental audit trail ecosystems. Token holders can stake their DOVU to earn multiplier rewards, aligning long-term incentives with the protocol’s mission of building reliable carbon markets.", + "explorer": "https://bscscan.com/token/0x08707eaEFCc344ad35BD35C5fF5691c2D3db456e", + "type": "BEP20", + "symbol": "DOVU", + "decimals": 8, + "status": "active", + "id": "0x08707eaEFCc344ad35BD35C5fF5691c2D3db456e", + "tags": [ + "wrapped", + "staking" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/dovuofficial/" + }, + { + "name": "x", + "url": "https://x.com/dovuofficial" + }, + { + "name": "blog", + "url": "https://dovu.earth/en/news/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dovu-earth/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dovu" + }, + { + "name": "youtube", + "url": "https://youtube.com/@DOVUearth" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x08707eaEFCc344ad35BD35C5fF5691c2D3db456e/logo.png b/blockchains/smartchain/assets/0x08707eaEFCc344ad35BD35C5fF5691c2D3db456e/logo.png new file mode 100644 index 0000000000000..cb6c490323d55 Binary files /dev/null and b/blockchains/smartchain/assets/0x08707eaEFCc344ad35BD35C5fF5691c2D3db456e/logo.png differ diff --git a/blockchains/smartchain/assets/0x08BC237aA00F275b758542c9F5c125b568bc390A/info.json b/blockchains/smartchain/assets/0x08BC237aA00F275b758542c9F5c125b568bc390A/info.json new file mode 100644 index 0000000000000..d96d2fe654386 --- /dev/null +++ b/blockchains/smartchain/assets/0x08BC237aA00F275b758542c9F5c125b568bc390A/info.json @@ -0,0 +1,21 @@ +{ + "name": "Quidax Token", + "website": "https://quidax.com", + "description": "Quidax is an Africa-focused and globally accessible crypto exchange and the global home of BEP20 tokens.", + "explorer": "https://bscscan.com/token/0x08bc237aa00f275b758542c9f5c125b568bc390a", + "type": "BEP20", + "symbol": "QDX", + "decimals": 18, + "status": "active", + "id": "0x08BC237aA00F275b758542c9F5c125b568bc390A", + "links": [ + { + "name": "x", + "url": "https://x.com/QuidaxGlobal" + }, + { + "name": "telegram", + "url": "https://t.me/QDXToken" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9e3a9F1612028eeE48F85cA85f8Bed2f37d76848/logo.png b/blockchains/smartchain/assets/0x08BC237aA00F275b758542c9F5c125b568bc390A/logo.png similarity index 100% rename from blockchains/smartchain/assets/0x9e3a9F1612028eeE48F85cA85f8Bed2f37d76848/logo.png rename to blockchains/smartchain/assets/0x08BC237aA00F275b758542c9F5c125b568bc390A/logo.png diff --git a/blockchains/smartchain/assets/0x08CEB3F4a7ed3500cA0982bcd0FC7816688084c3/info.json b/blockchains/smartchain/assets/0x08CEB3F4a7ed3500cA0982bcd0FC7816688084c3/info.json index 91645c1a575bb..26d4d84e7c81b 100644 --- a/blockchains/smartchain/assets/0x08CEB3F4a7ed3500cA0982bcd0FC7816688084c3/info.json +++ b/blockchains/smartchain/assets/0x08CEB3F4a7ed3500cA0982bcd0FC7816688084c3/info.json @@ -11,8 +11,8 @@ "id": "0x08CEB3F4a7ed3500cA0982bcd0FC7816688084c3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VenusProtocol" + "name": "x", + "url": "https://x.com/VenusProtocol" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x08E8aC8c4bCA64503F774d2C40C911E8A3FfCc12/info.json b/blockchains/smartchain/assets/0x08E8aC8c4bCA64503F774d2C40C911E8A3FfCc12/info.json new file mode 100644 index 0000000000000..037b7291df242 --- /dev/null +++ b/blockchains/smartchain/assets/0x08E8aC8c4bCA64503F774d2C40C911E8A3FfCc12/info.json @@ -0,0 +1,17 @@ +{ + "name": "TCC", + "type": "BEP20", + "symbol": "TCC", + "decimals": 18, + "website": "https://four.meme/token/0x08e8ac8c4bca64503f774d2c40c911e8a3ffcc12", + "description": "TCC", + "explorer": "https://bscscan.com/token/0x08e8ac8c4bca64503f774d2c40c911e8a3ffcc12", + "status": "active", + "id": "0x08E8aC8c4bCA64503F774d2C40C911E8A3FfCc12", + "links": [ + { + "name": "x", + "url": "https://x.com/TccTokenBsc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x08E8aC8c4bCA64503F774d2C40C911E8A3FfCc12/logo.png b/blockchains/smartchain/assets/0x08E8aC8c4bCA64503F774d2C40C911E8A3FfCc12/logo.png new file mode 100644 index 0000000000000..be6a544da3785 Binary files /dev/null and b/blockchains/smartchain/assets/0x08E8aC8c4bCA64503F774d2C40C911E8A3FfCc12/logo.png differ diff --git a/blockchains/smartchain/assets/0x08a513779f46FFb7A34F16094a94016d010128a8/info.json b/blockchains/smartchain/assets/0x08a513779f46FFb7A34F16094a94016d010128a8/info.json new file mode 100644 index 0000000000000..5b61698eb6ebf --- /dev/null +++ b/blockchains/smartchain/assets/0x08a513779f46FFb7A34F16094a94016d010128a8/info.json @@ -0,0 +1,24 @@ +{ + "name": "Novo Nordisk (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "NVOon is the Ondo Tokenized version of Novo Nordisk, giving tokenholders economic exposure similar to holding NVO and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x08a513779f46ffb7a34f16094a94016d010128a8", + "type": "BEP20", + "symbol": "NVOon", + "decimals": 18, + "status": "active", + "id": "0x08a513779f46FFb7A34F16094a94016d010128a8", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/novo-nordisk-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x08a513779f46FFb7A34F16094a94016d010128a8/logo.png b/blockchains/smartchain/assets/0x08a513779f46FFb7A34F16094a94016d010128a8/logo.png new file mode 100644 index 0000000000000..455582b20589a Binary files /dev/null and b/blockchains/smartchain/assets/0x08a513779f46FFb7A34F16094a94016d010128a8/logo.png differ diff --git a/blockchains/smartchain/assets/0x08ba0619b1e7A582E0BCe5BBE9843322C954C340/info.json b/blockchains/smartchain/assets/0x08ba0619b1e7A582E0BCe5BBE9843322C954C340/info.json index 56ec238b684fb..370ef6477f2ae 100644 --- a/blockchains/smartchain/assets/0x08ba0619b1e7A582E0BCe5BBE9843322C954C340/info.json +++ b/blockchains/smartchain/assets/0x08ba0619b1e7A582E0BCe5BBE9843322C954C340/info.json @@ -10,8 +10,8 @@ "id": "0x08ba0619b1e7A582E0BCe5BBE9843322C954C340", "links": [ { - "name": "twitter", - "url": "https://twitter.com/binamonok" + "name": "x", + "url": "https://x.com/binamonok" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x08cE97F3D5Cf11E577D091ab048bC5e2EaE3FABB/info.json b/blockchains/smartchain/assets/0x08cE97F3D5Cf11E577D091ab048bC5e2EaE3FABB/info.json new file mode 100644 index 0000000000000..bc3c2025297a7 --- /dev/null +++ b/blockchains/smartchain/assets/0x08cE97F3D5Cf11E577D091ab048bC5e2EaE3FABB/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Core US Aggregate Bond (Ondo)", + "website": "https://ondo.finance/", + "description": "AGGon is the Ondo Tokenized version of the iShares Core US Aggregate Bond ETF, giving tokenholders economic exposure similar to holding AGG and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x08ce97f3d5cf11e577d091ab048bc5e2eae3fabb", + "type": "BEP20", + "symbol": "AGGon", + "decimals": 18, + "status": "active", + "id": "0x08cE97F3D5Cf11E577D091ab048bC5e2EaE3FABB", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-core-us-aggregate-bond-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x08cE97F3D5Cf11E577D091ab048bC5e2EaE3FABB/logo.png b/blockchains/smartchain/assets/0x08cE97F3D5Cf11E577D091ab048bC5e2EaE3FABB/logo.png new file mode 100644 index 0000000000000..731ceba6a1840 Binary files /dev/null and b/blockchains/smartchain/assets/0x08cE97F3D5Cf11E577D091ab048bC5e2EaE3FABB/logo.png differ diff --git a/blockchains/smartchain/assets/0x0919eFD4aA64f97F274Fc6fEDFADA32Cfbaf4444/info.json b/blockchains/smartchain/assets/0x0919eFD4aA64f97F274Fc6fEDFADA32Cfbaf4444/info.json new file mode 100644 index 0000000000000..e832f086cae72 --- /dev/null +++ b/blockchains/smartchain/assets/0x0919eFD4aA64f97F274Fc6fEDFADA32Cfbaf4444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE digital euro", + "type": "BEP20", + "symbol": "FAKE EURC", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x0919eFD4aA64f97F274Fc6fEDFADA32Cfbaf4444", + "explorer": "https://bscscan.com/token/0x0919eFD4aA64f97F274Fc6fEDFADA32Cfbaf4444", + "status": "spam", + "id": "0x0919eFD4aA64f97F274Fc6fEDFADA32Cfbaf4444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x091FC7778e6932d4009B087B191D1EE3bac5729A/info.json b/blockchains/smartchain/assets/0x091FC7778e6932d4009B087B191D1EE3bac5729A/info.json new file mode 100644 index 0000000000000..77032719542bc --- /dev/null +++ b/blockchains/smartchain/assets/0x091FC7778e6932d4009B087B191D1EE3bac5729A/info.json @@ -0,0 +1,24 @@ +{ + "name": "Alphabet Class A (Ondo)", + "website": "https://ondo.finance/", + "description": "GOOGLon is the Ondo Tokenized version of Alphabet Class A, giving tokenholders economic exposure similar to holding GOOGL and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x091fc7778e6932d4009b087b191d1ee3bac5729a", + "type": "BEP20", + "symbol": "GOOGLon", + "decimals": 18, + "status": "active", + "id": "0x091FC7778e6932d4009B087B191D1EE3bac5729A", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/alphabet-class-a-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x091FC7778e6932d4009B087B191D1EE3bac5729A/logo.png b/blockchains/smartchain/assets/0x091FC7778e6932d4009B087B191D1EE3bac5729A/logo.png new file mode 100644 index 0000000000000..3badc16724c8f Binary files /dev/null and b/blockchains/smartchain/assets/0x091FC7778e6932d4009B087B191D1EE3bac5729A/logo.png differ diff --git a/blockchains/smartchain/assets/0x0938a5d325A8496c186Cf122946e9dD22f8a625b/info.json b/blockchains/smartchain/assets/0x0938a5d325A8496c186Cf122946e9dD22f8a625b/info.json index cbdf91bac888b..1ac2b6007345a 100644 --- a/blockchains/smartchain/assets/0x0938a5d325A8496c186Cf122946e9dD22f8a625b/info.json +++ b/blockchains/smartchain/assets/0x0938a5d325A8496c186Cf122946e9dD22f8a625b/info.json @@ -10,8 +10,8 @@ "id": "0x0938a5d325A8496c186Cf122946e9dD22f8a625b", "links": [ { - "name": "twitter", - "url": "https://twitter.com/difimarket" + "name": "x", + "url": "https://x.com/difimarket" }, { "name": "telegram", @@ -26,4 +26,4 @@ "url": "https://coinmarketcap.com/currencies/digital-files/" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0957C57C9EB7744850dCC95db5A06eD4a246236E/info.json b/blockchains/smartchain/assets/0x0957C57C9EB7744850dCC95db5A06eD4a246236E/info.json index 82e626d558c67..d59990ba0ac8c 100644 --- a/blockchains/smartchain/assets/0x0957C57C9EB7744850dCC95db5A06eD4a246236E/info.json +++ b/blockchains/smartchain/assets/0x0957C57C9EB7744850dCC95db5A06eD4a246236E/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/dango-money/dango-money-farm" }, { - "name": "twitter", - "url": "https://twitter.com/dango_money" + "name": "x", + "url": "https://x.com/dango_money" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x096985703F584B9444CE9730B600fC39De29ccc8/info.json b/blockchains/smartchain/assets/0x096985703F584B9444CE9730B600fC39De29ccc8/info.json new file mode 100644 index 0000000000000..80443e0853a7f --- /dev/null +++ b/blockchains/smartchain/assets/0x096985703F584B9444CE9730B600fC39De29ccc8/info.json @@ -0,0 +1,21 @@ +{ + "name": "Childrens Aid Foundation", + "type": "BEP20", + "symbol": "CAF", + "decimals": 18, + "website": "https://childaidfund.com/", + "description": "Children's Aid Foundation is a public welfare MEME coin that uses transaction tax revenue to assist children or organizations needing assistance.", + "explorer": "https://bscscan.com/token/0x096985703F584B9444CE9730B600fC39De29ccc8", + "status": "active", + "id": "0x096985703F584B9444CE9730B600fC39De29ccc8", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/childrens-aid-foundation/" + }, + { + "name": "x", + "url": "https://x.com/ChildAidFund" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x096985703F584B9444CE9730B600fC39De29ccc8/logo.png b/blockchains/smartchain/assets/0x096985703F584B9444CE9730B600fC39De29ccc8/logo.png new file mode 100644 index 0000000000000..64db6f6f3838d Binary files /dev/null and b/blockchains/smartchain/assets/0x096985703F584B9444CE9730B600fC39De29ccc8/logo.png differ diff --git a/blockchains/smartchain/assets/0x099E9E6a2252B952931EDa64950E87Bc73861594/info.json b/blockchains/smartchain/assets/0x099E9E6a2252B952931EDa64950E87Bc73861594/info.json new file mode 100644 index 0000000000000..033f3840fd400 --- /dev/null +++ b/blockchains/smartchain/assets/0x099E9E6a2252B952931EDa64950E87Bc73861594/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tedra USD 2.0", + "type": "BEP20", + "symbol": "FAKE USD.T", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x099E9E6a2252B952931EDa64950E87Bc73861594", + "explorer": "https://bscscan.com/token/0x099E9E6a2252B952931EDa64950E87Bc73861594", + "status": "spam", + "id": "0x099E9E6a2252B952931EDa64950E87Bc73861594" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x099f551eA3cb85707cAc6ac507cBc36C96eC64Ff/info.json b/blockchains/smartchain/assets/0x099f551eA3cb85707cAc6ac507cBc36C96eC64Ff/info.json index c50c26be91544..f18e7ed937537 100644 --- a/blockchains/smartchain/assets/0x099f551eA3cb85707cAc6ac507cBc36C96eC64Ff/info.json +++ b/blockchains/smartchain/assets/0x099f551eA3cb85707cAc6ac507cBc36C96eC64Ff/info.json @@ -10,8 +10,8 @@ "id": "0x099f551eA3cb85707cAc6ac507cBc36C96eC64Ff", "links": [ { - "name": "twitter", - "url": "https://twitter.com/safearnbsc" + "name": "x", + "url": "https://x.com/safearnbsc" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x09BB6042A19BB3A6981e9a47EC0f006dBd28a8d1/info.json b/blockchains/smartchain/assets/0x09BB6042A19BB3A6981e9a47EC0f006dBd28a8d1/info.json index 999f87993d45a..9acf1cc5b49e3 100644 --- a/blockchains/smartchain/assets/0x09BB6042A19BB3A6981e9a47EC0f006dBd28a8d1/info.json +++ b/blockchains/smartchain/assets/0x09BB6042A19BB3A6981e9a47EC0f006dBd28a8d1/info.json @@ -10,8 +10,8 @@ "id": "0x09BB6042A19BB3A6981e9a47EC0f006dBd28a8d1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/WedexApp" + "name": "x", + "url": "https://x.com/WedexApp" }, { "name": "github", @@ -29,4 +29,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x09E889BB4D5b474f561db0491C38702F367A4e4d/info.json b/blockchains/smartchain/assets/0x09E889BB4D5b474f561db0491C38702F367A4e4d/info.json index 1447690840340..ba5cd6d6b7d7c 100644 --- a/blockchains/smartchain/assets/0x09E889BB4D5b474f561db0491C38702F367A4e4d/info.json +++ b/blockchains/smartchain/assets/0x09E889BB4D5b474f561db0491C38702F367A4e4d/info.json @@ -8,21 +8,18 @@ "decimals": 18, "status": "active", "id": "0x09E889BB4D5b474f561db0491C38702F367A4e4d", - "tags": [ - "staking-native" - ], "links": [ { "name": "github", "url": "https://github.com/clover-network" }, { - "name": "twitter", - "url": "https://twitter.com/clv_org" + "name": "x", + "url": "https://x.com/clv_org" }, { "name": "medium", "url": "https://medium.com/@clv_org" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x09a6c44c3947B69E2B45F4D51b67E6a39ACfB506/info.json b/blockchains/smartchain/assets/0x09a6c44c3947B69E2B45F4D51b67E6a39ACfB506/info.json index 60610c12433e4..59c6762babf1e 100644 --- a/blockchains/smartchain/assets/0x09a6c44c3947B69E2B45F4D51b67E6a39ACfB506/info.json +++ b/blockchains/smartchain/assets/0x09a6c44c3947B69E2B45F4D51b67E6a39ACfB506/info.json @@ -10,8 +10,8 @@ "id": "0x09a6c44c3947B69E2B45F4D51b67E6a39ACfB506", "links": [ { - "name": "twitter", - "url": "https://twitter.com/UNCX_token" + "name": "x", + "url": "https://x.com/UNCX_token" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0x09d96101dB62FfAc32f798CB9A61e501337b79C6/info.json b/blockchains/smartchain/assets/0x09d96101dB62FfAc32f798CB9A61e501337b79C6/info.json index bf8c2bd99045f..3993a280a1f79 100644 --- a/blockchains/smartchain/assets/0x09d96101dB62FfAc32f798CB9A61e501337b79C6/info.json +++ b/blockchains/smartchain/assets/0x09d96101dB62FfAc32f798CB9A61e501337b79C6/info.json @@ -10,8 +10,8 @@ "id": "0x09d96101dB62FfAc32f798CB9A61e501337b79C6", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Web3GamesBSC" + "name": "x", + "url": "https://x.com/Web3GamesBSC" }, { "name": "github", @@ -37,4 +37,4 @@ "tags": [ "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x09d975C3351DBdED28617517FC6982284a787f03/info.json b/blockchains/smartchain/assets/0x09d975C3351DBdED28617517FC6982284a787f03/info.json index 7ef4b213de6d9..f9750db195c46 100644 --- a/blockchains/smartchain/assets/0x09d975C3351DBdED28617517FC6982284a787f03/info.json +++ b/blockchains/smartchain/assets/0x09d975C3351DBdED28617517FC6982284a787f03/info.json @@ -10,8 +10,8 @@ "id": "0x09d975C3351DBdED28617517FC6982284a787f03", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Cryptoislandgr1" + "name": "x", + "url": "https://x.com/Cryptoislandgr1" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x09f4eBB8567ea0e969f10799CA678F9A172DC2Bb/info.json b/blockchains/smartchain/assets/0x09f4eBB8567ea0e969f10799CA678F9A172DC2Bb/info.json new file mode 100644 index 0000000000000..a4231935dce35 --- /dev/null +++ b/blockchains/smartchain/assets/0x09f4eBB8567ea0e969f10799CA678F9A172DC2Bb/info.json @@ -0,0 +1,26 @@ +{ + "name": "Broccoli", + "type": "BEP20", + "symbol": "Broccoli", + "decimals": 18, + "description": "A year and a half ago, a friend from Dubai sent me a Belgian Malinois named Broccoli. I chose the name for its green vibe and crypto association. Broccoli quickly bonded with me, though he wasn’t well-socialized and was scared of everything. He wasn’t toilet trained, so there were accidents. With lots of energy, I started biking with him, and he ran 15km without stopping. After almost a year apart, he still remembers me and is now a confident, strong dog.", + "website": "https://broccolicoin.me/", + "explorer": "https://bscscan.com/token/0x09f4eBB8567ea0e969f10799CA678F9A172DC2Bb", + "id": "0x09f4eBB8567ea0e969f10799CA678F9A172DC2Bb", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/czx_Broccoli" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/broccoli-coin/" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x09f4eBB8567ea0e969f10799CA678F9A172DC2Bb/logo.png b/blockchains/smartchain/assets/0x09f4eBB8567ea0e969f10799CA678F9A172DC2Bb/logo.png new file mode 100644 index 0000000000000..f2affb448455f Binary files /dev/null and b/blockchains/smartchain/assets/0x09f4eBB8567ea0e969f10799CA678F9A172DC2Bb/logo.png differ diff --git a/blockchains/smartchain/assets/0x0A62dB029ab8dc0B49b3E8159431728DbD23c7BF/info.json b/blockchains/smartchain/assets/0x0A62dB029ab8dc0B49b3E8159431728DbD23c7BF/info.json new file mode 100644 index 0000000000000..0be85cc1ca9a9 --- /dev/null +++ b/blockchains/smartchain/assets/0x0A62dB029ab8dc0B49b3E8159431728DbD23c7BF/info.json @@ -0,0 +1,20 @@ +{ + "name": "Vertiv Holdings Co xStock", + "type": "BEP20", + "symbol": "VRTx", + "decimals": 18, + "description": "Vertiv Holdings Co xStock (VRTx) is a tracker certificate issued as a freely transferable token on selected blockchains. VRTx tracks the price of Vertiv Holdings Co. VRTx is designed to give eligible investors regulatory-compliant access to the stock price of Vertiv Holdings Co, whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x0A62dB029ab8dc0B49b3E8159431728DbD23c7BF", + "status": "active", + "id": "0x0A62dB029ab8dc0B49b3E8159431728DbD23c7BF", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0A62dB029ab8dc0B49b3E8159431728DbD23c7BF/logo.png b/blockchains/smartchain/assets/0x0A62dB029ab8dc0B49b3E8159431728DbD23c7BF/logo.png new file mode 100644 index 0000000000000..3555cc08c95c2 Binary files /dev/null and b/blockchains/smartchain/assets/0x0A62dB029ab8dc0B49b3E8159431728DbD23c7BF/logo.png differ diff --git a/blockchains/smartchain/assets/0x0A7bB2bddA1c0eA02d98a7b048f4bF809F40277b/info.json b/blockchains/smartchain/assets/0x0A7bB2bddA1c0eA02d98a7b048f4bF809F40277b/info.json index ed1184d5b2da1..a53d0a23ace1f 100644 --- a/blockchains/smartchain/assets/0x0A7bB2bddA1c0eA02d98a7b048f4bF809F40277b/info.json +++ b/blockchains/smartchain/assets/0x0A7bB2bddA1c0eA02d98a7b048f4bF809F40277b/info.json @@ -10,8 +10,8 @@ "id": "0x0A7bB2bddA1c0eA02d98a7b048f4bF809F40277b", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ThunderADAapp" + "name": "x", + "url": "https://x.com/ThunderADAapp" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x0AF55d5fF28A3269d69B98680Fd034f115dd53Ac/info.json b/blockchains/smartchain/assets/0x0AF55d5fF28A3269d69B98680Fd034f115dd53Ac/info.json index 76724f1f1bc39..f7cb697bf779e 100644 --- a/blockchains/smartchain/assets/0x0AF55d5fF28A3269d69B98680Fd034f115dd53Ac/info.json +++ b/blockchains/smartchain/assets/0x0AF55d5fF28A3269d69B98680Fd034f115dd53Ac/info.json @@ -10,8 +10,8 @@ "id": "0x0AF55d5fF28A3269d69B98680Fd034f115dd53Ac", "links": [ { - "name": "twitter", - "url": "https://twitter.com/banksocialio" + "name": "x", + "url": "https://x.com/banksocialio" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/info.json b/blockchains/smartchain/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/info.json new file mode 100644 index 0000000000000..5277a017c7f8b --- /dev/null +++ b/blockchains/smartchain/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/info.json @@ -0,0 +1,27 @@ +{ + "name": "Unagi Token (UNA)", + "type": "BEP20", + "symbol": "UNA", + "decimals": 18, + "website": "https://unagi.games/", + "description": "UNA token is Unagi's web3 gaming ecosystem token. It is your universal ticket to the entire range of Unagi games, offering a seamless experience across various genres and platforms including Ultimate Champions, Persona and more to come! We’re creating a cohesive, interconnected gaming environment.", + "explorer": "https://bscscan.com/token/0x0b6f3ea2814f3fff804ba5d5c237aebbc364fba9", + "status": "active", + "id": "0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9", + "links": [ + { + "name": "medium", + "url": "https://ultimatechampions.medium.com/" + }, + { + "name": "x", + "url": "https://x.com/Unagi_studio" + } + ], + "tags": [ + "gamefi", + "deflationary", + "staking", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/logo.png b/blockchains/smartchain/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/logo.png new file mode 100644 index 0000000000000..5dd9cbe12c479 Binary files /dev/null and b/blockchains/smartchain/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/logo.png differ diff --git a/blockchains/smartchain/assets/0x0B790ABd6594918DE1022233b7cc79baDB84d92a/info.json b/blockchains/smartchain/assets/0x0B790ABd6594918DE1022233b7cc79baDB84d92a/info.json new file mode 100644 index 0000000000000..90ea47b9d91a1 --- /dev/null +++ b/blockchains/smartchain/assets/0x0B790ABd6594918DE1022233b7cc79baDB84d92a/info.json @@ -0,0 +1,24 @@ +{ + "name": "Albemarle (Ondo Tokenized)", + "type": "BEP20", + "symbol": "ALBon", + "decimals": 18, + "description": "ALBon is the Ondo Tokenized version of Albemarle, giving tokenholders economic exposure similar to holding ALB and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x0B790ABd6594918DE1022233b7cc79baDB84d92a", + "status": "active", + "id": "0x0B790ABd6594918DE1022233b7cc79baDB84d92a", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/albemarle-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0B790ABd6594918DE1022233b7cc79baDB84d92a/logo.png b/blockchains/smartchain/assets/0x0B790ABd6594918DE1022233b7cc79baDB84d92a/logo.png new file mode 100644 index 0000000000000..ffdd61f22496d Binary files /dev/null and b/blockchains/smartchain/assets/0x0B790ABd6594918DE1022233b7cc79baDB84d92a/logo.png differ diff --git a/blockchains/smartchain/assets/0x0B7F41d1F87646DfB78A0F5F99A8cef7d03d6DE9/info.json b/blockchains/smartchain/assets/0x0B7F41d1F87646DfB78A0F5F99A8cef7d03d6DE9/info.json new file mode 100644 index 0000000000000..4d7db4db298aa --- /dev/null +++ b/blockchains/smartchain/assets/0x0B7F41d1F87646DfB78A0F5F99A8cef7d03d6DE9/info.json @@ -0,0 +1,14 @@ +{ + "name": "M1", + "type": "BEP20", + "symbol": "M1", + "decimals": 18, + "website": "https://bscscan.com/address/0x0B7F41d1F87646DfB78A0F5F99A8cef7d03d6DE9", + "description": "M1", + "explorer": "https://bscscan.com/token/0x0B7F41d1F87646DfB78A0F5F99A8cef7d03d6DE9", + "status": "active", + "id": "0x0B7F41d1F87646DfB78A0F5F99A8cef7d03d6DE9", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0B7F41d1F87646DfB78A0F5F99A8cef7d03d6DE9/logo.png b/blockchains/smartchain/assets/0x0B7F41d1F87646DfB78A0F5F99A8cef7d03d6DE9/logo.png new file mode 100644 index 0000000000000..e2cf5666d539f Binary files /dev/null and b/blockchains/smartchain/assets/0x0B7F41d1F87646DfB78A0F5F99A8cef7d03d6DE9/logo.png differ diff --git a/blockchains/smartchain/assets/0x0C37Bcf456bC661C14D596683325623076D7e283/info.json b/blockchains/smartchain/assets/0x0C37Bcf456bC661C14D596683325623076D7e283/info.json index cb7115ae7fda7..94298f0aa6052 100644 --- a/blockchains/smartchain/assets/0x0C37Bcf456bC661C14D596683325623076D7e283/info.json +++ b/blockchains/smartchain/assets/0x0C37Bcf456bC661C14D596683325623076D7e283/info.json @@ -11,8 +11,8 @@ "id": "0x0C37Bcf456bC661C14D596683325623076D7e283", "links": [ { - "name": "twitter", - "url": "https://twitter.com/aeron_aero" + "name": "x", + "url": "https://x.com/aeron_aero" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x0Ca5D51D0277Bd006fd9607d3E560785EBad8222/info.json b/blockchains/smartchain/assets/0x0Ca5D51D0277Bd006fd9607d3E560785EBad8222/info.json new file mode 100644 index 0000000000000..3497be192f0b5 --- /dev/null +++ b/blockchains/smartchain/assets/0x0Ca5D51D0277Bd006fd9607d3E560785EBad8222/info.json @@ -0,0 +1,20 @@ +{ + "name": "Palantir Tokenized bStocks", + "type": "BEP20", + "symbol": "PLTRB", + "decimals": 18, + "description": "PLTRB is a tokenized bStocks that gives you economic exposure to Palantir Tokenized bStocks, and the right to convert to the underlying security on the Binance.com platform subject to applicable laws. Each token is fully backed by the corresponding underlying equity maintained by the Issuer at a US-regulated broker-dealer. You get the price movements, dividends, and the right to convert the token at 1:1 to the underlying share — tradeable 24/7.", + "website": "https://www.bstocks.finance/en/", + "explorer": "https://bscscan.com/token/0x0Ca5D51D0277Bd006fd9607d3E560785EBad8222", + "status": "active", + "id": "0x0Ca5D51D0277Bd006fd9607d3E560785EBad8222", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/palantir-tokenized-bstocks/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0Ca5D51D0277Bd006fd9607d3E560785EBad8222/logo.png b/blockchains/smartchain/assets/0x0Ca5D51D0277Bd006fd9607d3E560785EBad8222/logo.png new file mode 100644 index 0000000000000..f75305176a25b Binary files /dev/null and b/blockchains/smartchain/assets/0x0Ca5D51D0277Bd006fd9607d3E560785EBad8222/logo.png differ diff --git a/blockchains/smartchain/assets/0x0D4992E48278aA7F7C915f820743d9FaB7FeA713/info.json b/blockchains/smartchain/assets/0x0D4992E48278aA7F7C915f820743d9FaB7FeA713/info.json index e2df459a31c7a..575c1f2429659 100644 --- a/blockchains/smartchain/assets/0x0D4992E48278aA7F7C915f820743d9FaB7FeA713/info.json +++ b/blockchains/smartchain/assets/0x0D4992E48278aA7F7C915f820743d9FaB7FeA713/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/metazilla/" }, { - "name": "twitter", - "url": "https://twitter.com/TheMetaZilla" + "name": "x", + "url": "https://x.com/TheMetaZilla" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0D4f9b25F81163Fb4840BA4F434672543823000C/info.json b/blockchains/smartchain/assets/0x0D4f9b25F81163Fb4840BA4F434672543823000C/info.json new file mode 100644 index 0000000000000..142f4765b6a29 --- /dev/null +++ b/blockchains/smartchain/assets/0x0D4f9b25F81163Fb4840BA4F434672543823000C/info.json @@ -0,0 +1,24 @@ +{ + "name": "Goldman Sachs (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "GSon is the Ondo Tokenized version of Goldman Sachs, giving tokenholders economic exposure similar to holding GS and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x0d4f9b25f81163fb4840ba4f434672543823000c", + "type": "BEP20", + "symbol": "GSon", + "decimals": 18, + "status": "active", + "id": "0x0D4f9b25F81163Fb4840BA4F434672543823000C", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/goldman-sachs-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0D4f9b25F81163Fb4840BA4F434672543823000C/logo.png b/blockchains/smartchain/assets/0x0D4f9b25F81163Fb4840BA4F434672543823000C/logo.png new file mode 100644 index 0000000000000..6f961b66ab8e7 Binary files /dev/null and b/blockchains/smartchain/assets/0x0D4f9b25F81163Fb4840BA4F434672543823000C/logo.png differ diff --git a/blockchains/smartchain/assets/0x0D586b51A90Dc999f9bB6A0506Da7F034a1D3A2E/info.json b/blockchains/smartchain/assets/0x0D586b51A90Dc999f9bB6A0506Da7F034a1D3A2E/info.json new file mode 100644 index 0000000000000..bef0f5d2c3dc9 --- /dev/null +++ b/blockchains/smartchain/assets/0x0D586b51A90Dc999f9bB6A0506Da7F034a1D3A2E/info.json @@ -0,0 +1,28 @@ +{ + "name": "ConocoPhillips (Ondo Tokenized)", + "type": "BEP20", + "symbol": "COPon", + "decimals": 18, + "description": "COPon is the Ondo Tokenized version of ConocoPhillips, giving tokenholders economic exposure similar to holding COP and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x0D586b51A90Dc999f9bB6A0506Da7F034a1D3A2E", + "status": "active", + "id": "0x0D586b51A90Dc999f9bB6A0506Da7F034a1D3A2E", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/conocophillips-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/conocophillips-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0D586b51A90Dc999f9bB6A0506Da7F034a1D3A2E/logo.png b/blockchains/smartchain/assets/0x0D586b51A90Dc999f9bB6A0506Da7F034a1D3A2E/logo.png new file mode 100644 index 0000000000000..95d8e65391e6a Binary files /dev/null and b/blockchains/smartchain/assets/0x0D586b51A90Dc999f9bB6A0506Da7F034a1D3A2E/logo.png differ diff --git a/blockchains/smartchain/assets/0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153/info.json b/blockchains/smartchain/assets/0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153/info.json index 4f076ea849f73..733a66899a20c 100644 --- a/blockchains/smartchain/assets/0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153/info.json +++ b/blockchains/smartchain/assets/0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153/info.json @@ -1,5 +1,5 @@ { - "name": "BNB pegged Filecoin", + "name": "Filecoin", "website": "https://filecoin.io", "description": "Filecoin provides a blockchain-based marketplace that aims to revolutionize the global storage economy.", "explorer": "https://bscscan.com/token/0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153", diff --git a/blockchains/smartchain/assets/0x0DAE81A905b645a3D1E67129b89CD0Acda224E9A/info.json b/blockchains/smartchain/assets/0x0DAE81A905b645a3D1E67129b89CD0Acda224E9A/info.json new file mode 100644 index 0000000000000..02b47e8c0d7f1 --- /dev/null +++ b/blockchains/smartchain/assets/0x0DAE81A905b645a3D1E67129b89CD0Acda224E9A/info.json @@ -0,0 +1,24 @@ +{ + "name": "iBoxx $ High Yield Corporate Bond ETF (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "HYGon is the Ondo Tokenized version of the iBoxx $ High Yield Corporate Bond ETF, giving tokenholders economic exposure similar to holding HYG and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x0dae81a905b645a3d1e67129b89cd0acda224e9a", + "type": "BEP20", + "symbol": "HYGon", + "decimals": 18, + "status": "active", + "id": "0x0DAE81A905b645a3D1E67129b89CD0Acda224E9A", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/iboxx-high-yield-corporate-bond-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0DAE81A905b645a3D1E67129b89CD0Acda224E9A/logo.png b/blockchains/smartchain/assets/0x0DAE81A905b645a3D1E67129b89CD0Acda224E9A/logo.png new file mode 100644 index 0000000000000..731ceba6a1840 Binary files /dev/null and b/blockchains/smartchain/assets/0x0DAE81A905b645a3D1E67129b89CD0Acda224E9A/logo.png differ diff --git a/blockchains/smartchain/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/info.json b/blockchains/smartchain/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/info.json new file mode 100644 index 0000000000000..addf0f7b0ad5d --- /dev/null +++ b/blockchains/smartchain/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/info.json @@ -0,0 +1,24 @@ +{ + "name": "Argentine Peso", + "website": "https://www.ripio.com/es/criptos/stablecoins-locales", + "description": "wARS is a fully collateralized stablecoin pegged 1:1 to the Argentine Peso (ARS). Issued and governed by a Ripio subsidiary, it brings ARS on-chain so Argentines and global users can transact, save, and build on decentralized networks in their local currency.", + "explorer": "https://bscscan.com/token/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D", + "type": "BEP20", + "symbol": "wARS", + "decimals": 18, + "status": "active", + "id": "0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/RipioApp" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/argentine-peso" + } + ] +} diff --git a/blockchains/smartchain/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/logo.png b/blockchains/smartchain/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/logo.png new file mode 100644 index 0000000000000..be1b6bf25885f Binary files /dev/null and b/blockchains/smartchain/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/logo.png differ diff --git a/blockchains/smartchain/assets/0x0DF0587216a4a1bB7d5082fdc491d93d2dD4B413/info.json b/blockchains/smartchain/assets/0x0DF0587216a4a1bB7d5082fdc491d93d2dD4B413/info.json new file mode 100644 index 0000000000000..74fbffa32319a --- /dev/null +++ b/blockchains/smartchain/assets/0x0DF0587216a4a1bB7d5082fdc491d93d2dD4B413/info.json @@ -0,0 +1,17 @@ +{ + "name": "Cheems", + "type": "BEP20", + "symbol": "Cheems", + "decimals": 18, + "website": "https://cheems.pet/", + "description": "“Cheems” is the lord of memes, a small, pitiful, helpless Shiba Inu.", + "explorer": "https://bscscan.com/token/0x0df0587216a4a1bb7d5082fdc491d93d2dd4b413", + "status": "active", + "id": "0x0DF0587216a4a1bB7d5082fdc491d93d2dD4B413", + "links": [ + { + "name": "x", + "url": "https://x.com/LordCheems_bsc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0DF0587216a4a1bB7d5082fdc491d93d2dD4B413/logo.png b/blockchains/smartchain/assets/0x0DF0587216a4a1bB7d5082fdc491d93d2dD4B413/logo.png new file mode 100644 index 0000000000000..423837600e608 Binary files /dev/null and b/blockchains/smartchain/assets/0x0DF0587216a4a1bB7d5082fdc491d93d2dD4B413/logo.png differ diff --git a/blockchains/smartchain/assets/0x0DFCb45EAE071B3b846E220560Bbcdd958414d78/info.json b/blockchains/smartchain/assets/0x0DFCb45EAE071B3b846E220560Bbcdd958414d78/info.json index 5893a1ce3dddd..d24e755270bcd 100644 --- a/blockchains/smartchain/assets/0x0DFCb45EAE071B3b846E220560Bbcdd958414d78/info.json +++ b/blockchains/smartchain/assets/0x0DFCb45EAE071B3b846E220560Bbcdd958414d78/info.json @@ -14,8 +14,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/LiberoFinancial" + "name": "x", + "url": "https://x.com/LiberoFinancial" }, { "name": "telegram", @@ -42,4 +42,4 @@ "url": "https://github.com/liberofinancial/LiberoFinancial" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0Da1774e58eD28fF9749340F116055F8d836A7C8/info.json b/blockchains/smartchain/assets/0x0Da1774e58eD28fF9749340F116055F8d836A7C8/info.json index a89cecbf6824a..13cc02074af08 100644 --- a/blockchains/smartchain/assets/0x0Da1774e58eD28fF9749340F116055F8d836A7C8/info.json +++ b/blockchains/smartchain/assets/0x0Da1774e58eD28fF9749340F116055F8d836A7C8/info.json @@ -17,12 +17,12 @@ "url": "https://t.me/vancattokencommunity" }, { - "name": "twitter", - "url": "https://twitter.com/vancattoken" + "name": "x", + "url": "https://x.com/vancattoken" }, { "name": "coingecko", "url": "https://coingecko.com/en/coins/vancat" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0DbCec4214d7E9c316e0eB53991a43F42F432e15/info.json b/blockchains/smartchain/assets/0x0DbCec4214d7E9c316e0eB53991a43F42F432e15/info.json new file mode 100644 index 0000000000000..3b8ca9aaa738e --- /dev/null +++ b/blockchains/smartchain/assets/0x0DbCec4214d7E9c316e0eB53991a43F42F432e15/info.json @@ -0,0 +1,62 @@ +{ + "name": "FxBox", + "type": "BEP20", + "symbol": "FXB", + "decimals": 18, + "website": "https://fxbox.io", + "description": "FxBox.io - Play 2 Earn Financial Games. Investing, Mining NFTs, Trading, Lottery, Market Predictions.", + "explorer": "https://bscscan.com/token/0x0dbcec4214d7e9c316e0eb53991a43f42f432e15", + "status": "active", + "id": "0x0DbCec4214d7E9c316e0eB53991a43F42F432e15", + "links": [ + { + "name": "x", + "url": "https://x.com/FxBox_Official" + }, + { + "name": "telegram", + "url": "https://t.me/FxBox_Official" + }, + { + "name": "forum", + "url": "https://bitcointalk.org/index.php?topic=5450582.msg62166360#msg62166360" + }, + { + "name": "telegram_news", + "url": "https://t.me/FxBox_news" + }, + { + "name": "docs", + "url": "https://docs.fxbox.io/" + }, + { + "name": "youtube", + "url": "https://youtube.com/@FxBox_io" + }, + { + "name": "discord", + "url": "https://discord.com/invite/mwQ4UUbdN3" + }, + { + "name": "github", + "url": "https://github.com/fxbox-io" + }, + { + "name": "whitepaper", + "url": "https://docs.fxbox.io/" + }, + { + "name": "medium", + "url": "https://medium.com/@fxbox" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/fxbox-io" + } + ], + "tags": [ + "gamefi", + "nft", + "dapp" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0DbCec4214d7E9c316e0eB53991a43F42F432e15/logo.png b/blockchains/smartchain/assets/0x0DbCec4214d7E9c316e0eB53991a43F42F432e15/logo.png new file mode 100644 index 0000000000000..6c2bae27a9dfb Binary files /dev/null and b/blockchains/smartchain/assets/0x0DbCec4214d7E9c316e0eB53991a43F42F432e15/logo.png differ diff --git a/blockchains/smartchain/assets/0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6/info.json b/blockchains/smartchain/assets/0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6/info.json new file mode 100644 index 0000000000000..a2820f25efbb7 --- /dev/null +++ b/blockchains/smartchain/assets/0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6/info.json @@ -0,0 +1,21 @@ +{ + "name": "Catboy", + "type": "BEP20", + "symbol": "CATBOY", + "decimals": 18, + "website": "https://www.catboy.io/", + "description": "Catboy is an NFT project with a fusion of meme & anime, while 'catified.' With reward utilities & innovative and Interactive NFTs with AI integration.", + "explorer": "https://bscscan.com/token/0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6", + "status": "active", + "id": "0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6", + "links": [ + { + "name": "x", + "url": "https://x.com/catboy_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cat-boy/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6/logo.png b/blockchains/smartchain/assets/0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6/logo.png new file mode 100644 index 0000000000000..585e18c89e9c2 Binary files /dev/null and b/blockchains/smartchain/assets/0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6/logo.png differ diff --git a/blockchains/smartchain/assets/0x0Df044b7f0aadfEaB21bC134fE525A19484Ac133/info.json b/blockchains/smartchain/assets/0x0Df044b7f0aadfEaB21bC134fE525A19484Ac133/info.json index d5b43d0532d6c..767eecf3d106a 100644 --- a/blockchains/smartchain/assets/0x0Df044b7f0aadfEaB21bC134fE525A19484Ac133/info.json +++ b/blockchains/smartchain/assets/0x0Df044b7f0aadfEaB21bC134fE525A19484Ac133/info.json @@ -10,8 +10,8 @@ "id": "0x0Df044b7f0aadfEaB21bC134fE525A19484Ac133", "links": [ { - "name": "twitter", - "url": "https://twitter.com/UZythOfficial" + "name": "x", + "url": "https://x.com/UZythOfficial" }, { "name": "github", @@ -29,4 +29,4 @@ "tags": [ "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82/info.json b/blockchains/smartchain/assets/0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82/info.json index e5029b3b8075b..303c5e1ba1c43 100644 --- a/blockchains/smartchain/assets/0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82/info.json +++ b/blockchains/smartchain/assets/0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82/info.json @@ -1,5 +1,5 @@ { - "name": "PancakeSwap Token", + "name": "PancakeSwap", "website": "https://pancakeswap.finance", "description": "PancakeSwap is a yield farming project whereby users can get FLIP (LP token) for staking and get CAKE token as reward.", "explorer": "https://bscscan.com/token/0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82", @@ -18,8 +18,8 @@ "url": "https://github.com/pancakeswap" }, { - "name": "twitter", - "url": "https://twitter.com/pancakeswap" + "name": "x", + "url": "https://x.com/pancakeswap" }, { "name": "blog", diff --git a/blockchains/smartchain/assets/0x0E246E05212DbBD78A354C072a92B4e5723B2fa0/info.json b/blockchains/smartchain/assets/0x0E246E05212DbBD78A354C072a92B4e5723B2fa0/info.json new file mode 100644 index 0000000000000..90fec04eeb2ad --- /dev/null +++ b/blockchains/smartchain/assets/0x0E246E05212DbBD78A354C072a92B4e5723B2fa0/info.json @@ -0,0 +1,28 @@ +{ + "name": "Analog Devices (Ondo Tokenized)", + "type": "BEP20", + "symbol": "ADIon", + "decimals": 18, + "description": "ADIon is the Ondo Tokenized version of Analog Devices, giving tokenholders economic exposure similar to holding ADI and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x0E246E05212DbBD78A354C072a92B4e5723B2fa0", + "status": "active", + "id": "0x0E246E05212DbBD78A354C072a92B4e5723B2fa0", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/analog-devices-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/analog-devices-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0E246E05212DbBD78A354C072a92B4e5723B2fa0/logo.png b/blockchains/smartchain/assets/0x0E246E05212DbBD78A354C072a92B4e5723B2fa0/logo.png new file mode 100644 index 0000000000000..461b4eb9da380 Binary files /dev/null and b/blockchains/smartchain/assets/0x0E246E05212DbBD78A354C072a92B4e5723B2fa0/logo.png differ diff --git a/blockchains/smartchain/assets/0x0E2b41eA957624A314108cc4E33703e9d78f4b3C/info.json b/blockchains/smartchain/assets/0x0E2b41eA957624A314108cc4E33703e9d78f4b3C/info.json index f98a55074fcd9..43493093eb9a4 100644 --- a/blockchains/smartchain/assets/0x0E2b41eA957624A314108cc4E33703e9d78f4b3C/info.json +++ b/blockchains/smartchain/assets/0x0E2b41eA957624A314108cc4E33703e9d78f4b3C/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/greenheartcbd/Greenheart-CBD-Project" }, { - "name": "twitter", - "url": "https://twitter.com/greenheart_cbd" + "name": "x", + "url": "https://x.com/greenheart_cbd" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x0E3EAF83Ea93Abe756690C62c72284943b96a6Bc/info.json b/blockchains/smartchain/assets/0x0E3EAF83Ea93Abe756690C62c72284943b96a6Bc/info.json index cfea06e4bc8fe..fa0c3f7f24894 100644 --- a/blockchains/smartchain/assets/0x0E3EAF83Ea93Abe756690C62c72284943b96a6Bc/info.json +++ b/blockchains/smartchain/assets/0x0E3EAF83Ea93Abe756690C62c72284943b96a6Bc/info.json @@ -6,6 +6,66 @@ "type": "BEP20", "symbol": "HODL", "decimals": 9, - "status": "active", - "id": "0x0E3EAF83Ea93Abe756690C62c72284943b96a6Bc" + "status": "abandoned", + "id": "0x0E3EAF83Ea93Abe756690C62c72284943b96a6Bc", + "links": [ + { + "name": "x", + "url": "https://x.com/HODL_OFFICIAL" + }, + { + "name": "telegram", + "url": "https://t.me/hodlinvestorgroup" + }, + { + "name": "facebook", + "url": "https://facebook.com/HODLtokenBSC" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/HodlToken" + }, + { + "name": "discord", + "url": "https://discord.com/invite/D666jh5C5D" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/HODL-Official" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hodl/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hodl" + }, + { + "name": "telegram_news", + "url": "https://t.me/HodlAnnouncements" + }, + { + "name": "blog", + "url": "https://hodltoken.net/news/" + }, + { + "name": "whitepaper", + "url": "https://hodltoken.net/whitepaper/" + }, + { + "name": "medium", + "url": "https://medium.com/@HODL-token" + }, + { + "name": "github", + "url": "https://github.com/HODL-org/contract" + } + ], + "tags": [ + "defi", + "staking", + "deflationary", + "memes" + ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0E3EAF83Ea93Abe756690C62c72284943b96a6Bc/logo.png b/blockchains/smartchain/assets/0x0E3EAF83Ea93Abe756690C62c72284943b96a6Bc/logo.png deleted file mode 100644 index eaf8dc7fc927e..0000000000000 Binary files a/blockchains/smartchain/assets/0x0E3EAF83Ea93Abe756690C62c72284943b96a6Bc/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9/info.json b/blockchains/smartchain/assets/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9/info.json index 2e00d5ae1a36e..0d35200ff257a 100644 --- a/blockchains/smartchain/assets/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9/info.json +++ b/blockchains/smartchain/assets/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9/info.json @@ -6,6 +6,6 @@ "website": "https://www.ryoshitoken.com", "description": "Ryoshi is a deflationary, community driven meme token that came to take over the meme game. With 10% burn from every transaction that decreases the supply and increases the demand you can kick back and watch your RYOSHI value grow.", "explorer": "https://bscscan.com/token/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9", - "status": "active", + "status": "abandoned", "id": "0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9/logo.png b/blockchains/smartchain/assets/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9/logo.png deleted file mode 100644 index f1767d54665b1..0000000000000 Binary files a/blockchains/smartchain/assets/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x0E6607Ab45D2CA779068Cd6D9426C409773969FD/info.json b/blockchains/smartchain/assets/0x0E6607Ab45D2CA779068Cd6D9426C409773969FD/info.json new file mode 100644 index 0000000000000..81f80145ecf78 --- /dev/null +++ b/blockchains/smartchain/assets/0x0E6607Ab45D2CA779068Cd6D9426C409773969FD/info.json @@ -0,0 +1,20 @@ +{ + "name": "Global X Uranium ETF xStock", + "type": "BEP20", + "symbol": "URAx", + "decimals": 18, + "description": "Global X Uranium ETF xStock (URAx) is a tracker certificate issued as a freely transferable token on selected blockchains. URAx tracks the price of Global X Uranium ETF. URAx is designed to give eligible investors regulatory-compliant access to the stock price of Global X Uranium ETF, whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x0E6607Ab45D2CA779068Cd6D9426C409773969FD", + "status": "active", + "id": "0x0E6607Ab45D2CA779068Cd6D9426C409773969FD", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0E6607Ab45D2CA779068Cd6D9426C409773969FD/logo.png b/blockchains/smartchain/assets/0x0E6607Ab45D2CA779068Cd6D9426C409773969FD/logo.png new file mode 100644 index 0000000000000..f6d652ee7feb6 Binary files /dev/null and b/blockchains/smartchain/assets/0x0E6607Ab45D2CA779068Cd6D9426C409773969FD/logo.png differ diff --git a/blockchains/smartchain/assets/0x0E8D5504bF54D9E44260f8d153EcD5412130CaBb/info.json b/blockchains/smartchain/assets/0x0E8D5504bF54D9E44260f8d153EcD5412130CaBb/info.json index 9830646e994cf..c47deb9b2118c 100644 --- a/blockchains/smartchain/assets/0x0E8D5504bF54D9E44260f8d153EcD5412130CaBb/info.json +++ b/blockchains/smartchain/assets/0x0E8D5504bF54D9E44260f8d153EcD5412130CaBb/info.json @@ -10,8 +10,8 @@ "id": "0x0E8D5504bF54D9E44260f8d153EcD5412130CaBb", "links": [ { - "name": "twitter", - "url": "https://twitter.com/UNCX_token" + "name": "x", + "url": "https://x.com/UNCX_token" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0x0E9766dF73973abCfEDDE700497c57110ee5c301/info.json b/blockchains/smartchain/assets/0x0E9766dF73973abCfEDDE700497c57110ee5c301/info.json index f29669e94d5f7..9973599a3a25c 100644 --- a/blockchains/smartchain/assets/0x0E9766dF73973abCfEDDE700497c57110ee5c301/info.json +++ b/blockchains/smartchain/assets/0x0E9766dF73973abCfEDDE700497c57110ee5c301/info.json @@ -6,12 +6,12 @@ "website": "https://www.hodltoken.net", "description": "HODL Token is the longest-serving, highest-paying reward token on the Binance Smart Chain (BSC). Simply hold $HODL and get BNB rewards and reflection within a deflationary ecosystem. HODL is - Passive Income Made Easy.", "explorer": "https://bscscan.com/token/0x0E9766dF73973abCfEDDE700497c57110ee5c301", - "status": "active", + "status": "abandoned", "id": "0x0E9766dF73973abCfEDDE700497c57110ee5c301", "links": [ { - "name": "twitter", - "url": "https://twitter.com/HODL_OFFICIAL" + "name": "x", + "url": "https://x.com/HODL_OFFICIAL" }, { "name": "telegram", @@ -72,4 +72,4 @@ "deflationary", "memes" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0E9766dF73973abCfEDDE700497c57110ee5c301/logo.png b/blockchains/smartchain/assets/0x0E9766dF73973abCfEDDE700497c57110ee5c301/logo.png deleted file mode 100644 index 3931402a81d62..0000000000000 Binary files a/blockchains/smartchain/assets/0x0E9766dF73973abCfEDDE700497c57110ee5c301/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x0E9d900C884964dC4B26db96Ba113825B1a09Baa/info.json b/blockchains/smartchain/assets/0x0E9d900C884964dC4B26db96Ba113825B1a09Baa/info.json index 40e21176925bb..b010927d6bd32 100644 --- a/blockchains/smartchain/assets/0x0E9d900C884964dC4B26db96Ba113825B1a09Baa/info.json +++ b/blockchains/smartchain/assets/0x0E9d900C884964dC4B26db96Ba113825B1a09Baa/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/CreamFi" }, { - "name": "twitter", - "url": "https://twitter.com/CreamdotFinance" + "name": "x", + "url": "https://x.com/CreamdotFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x0EA526b4799541797D8b880b48Cc65d71d1e273B/info.json b/blockchains/smartchain/assets/0x0EA526b4799541797D8b880b48Cc65d71d1e273B/info.json index 92ba603077aa0..c2fcdd0c6520f 100644 --- a/blockchains/smartchain/assets/0x0EA526b4799541797D8b880b48Cc65d71d1e273B/info.json +++ b/blockchains/smartchain/assets/0x0EA526b4799541797D8b880b48Cc65d71d1e273B/info.json @@ -25,8 +25,8 @@ "url": "https://t.me/shiba_games" }, { - "name": "twitter", - "url": "https://twitter.com/shibagames_" + "name": "x", + "url": "https://x.com/shibagames_" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0EAda137F528F1a1B8304CD8Cbbe0F7184317777/info.json b/blockchains/smartchain/assets/0x0EAda137F528F1a1B8304CD8Cbbe0F7184317777/info.json new file mode 100644 index 0000000000000..525d50b16e177 --- /dev/null +++ b/blockchains/smartchain/assets/0x0EAda137F528F1a1B8304CD8Cbbe0F7184317777/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE JETMAX", + "type": "BEP20", + "symbol": "FAKE JET", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x0EAda137F528F1a1B8304CD8Cbbe0F7184317777", + "explorer": "https://bscscan.com/token/0x0EAda137F528F1a1B8304CD8Cbbe0F7184317777", + "status": "spam", + "id": "0x0EAda137F528F1a1B8304CD8Cbbe0F7184317777" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0EBc30459551858e81306d583025d12C7d795FA2/info.json b/blockchains/smartchain/assets/0x0EBc30459551858e81306d583025d12C7d795FA2/info.json index 32a89823f717c..d98ec00df60ca 100644 --- a/blockchains/smartchain/assets/0x0EBc30459551858e81306d583025d12C7d795FA2/info.json +++ b/blockchains/smartchain/assets/0x0EBc30459551858e81306d583025d12C7d795FA2/info.json @@ -10,8 +10,8 @@ "id": "0x0EBc30459551858e81306d583025d12C7d795FA2", "links": [ { - "name": "twitter", - "url": "https://twitter.com/apecoin" + "name": "x", + "url": "https://x.com/apecoin" }, { "name": "whitepaper", @@ -21,4 +21,4 @@ "tags": [ "memes" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0ED2E3180EDf393e6bf8Db124bD15DDD54dE150A/info.json b/blockchains/smartchain/assets/0x0ED2E3180EDf393e6bf8Db124bD15DDD54dE150A/info.json new file mode 100644 index 0000000000000..e560e0871a924 --- /dev/null +++ b/blockchains/smartchain/assets/0x0ED2E3180EDf393e6bf8Db124bD15DDD54dE150A/info.json @@ -0,0 +1,24 @@ +{ + "name": "Broadcom (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "AVGOon is the Ondo Tokenized version of Broadcom, giving tokenholders economic exposure similar to holding AVGO and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x0ed2e3180edf393e6bf8db124bd15ddd54de150a", + "type": "BEP20", + "symbol": "AVGOon", + "decimals": 18, + "status": "active", + "id": "0x0ED2E3180EDf393e6bf8Db124bD15DDD54dE150A", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/broadcom-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0ED2E3180EDf393e6bf8Db124bD15DDD54dE150A/logo.png b/blockchains/smartchain/assets/0x0ED2E3180EDf393e6bf8Db124bD15DDD54dE150A/logo.png new file mode 100644 index 0000000000000..315e409e5b5dc Binary files /dev/null and b/blockchains/smartchain/assets/0x0ED2E3180EDf393e6bf8Db124bD15DDD54dE150A/logo.png differ diff --git a/blockchains/smartchain/assets/0x0EF008FF963572d3DAbc12E222420F537ddaBf94/info.json b/blockchains/smartchain/assets/0x0EF008FF963572d3DAbc12E222420F537ddaBf94/info.json index 2771dd75f777d..a9b90d704380b 100644 --- a/blockchains/smartchain/assets/0x0EF008FF963572d3DAbc12E222420F537ddaBf94/info.json +++ b/blockchains/smartchain/assets/0x0EF008FF963572d3DAbc12E222420F537ddaBf94/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/verofarm/" }, { - "name": "twitter", - "url": "https://twitter.com/verofarmgames/" + "name": "x", + "url": "https://x.com/verofarmgames/" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x0Eb3a705fc54725037CC9e008bDede697f62F335/info.json b/blockchains/smartchain/assets/0x0Eb3a705fc54725037CC9e008bDede697f62F335/info.json index b1f701311e4a2..4299e8b48558c 100644 --- a/blockchains/smartchain/assets/0x0Eb3a705fc54725037CC9e008bDede697f62F335/info.json +++ b/blockchains/smartchain/assets/0x0Eb3a705fc54725037CC9e008bDede697f62F335/info.json @@ -1,5 +1,5 @@ { - "name": "BNB pegged Cosmos Token", + "name": "Cosmos", "website": "https://cosmos.network", "description": "BNB pegged Cosmos Token (ATOM BEP20) is a token issued by Binance on Smart Chain; its price is pegged to Cosmos (ATOM) at a ratio of 1:1.", "explorer": "https://bscscan.com/token/0x0Eb3a705fc54725037CC9e008bDede697f62F335", diff --git a/blockchains/smartchain/assets/0x0Ef2e7602adD1733Bfdb17aC3094d0421B502cA3/info.json b/blockchains/smartchain/assets/0x0Ef2e7602adD1733Bfdb17aC3094d0421B502cA3/info.json index 312f68ae9c2be..1d1a7f33d89f9 100644 --- a/blockchains/smartchain/assets/0x0Ef2e7602adD1733Bfdb17aC3094d0421B502cA3/info.json +++ b/blockchains/smartchain/assets/0x0Ef2e7602adD1733Bfdb17aC3094d0421B502cA3/info.json @@ -10,8 +10,8 @@ "id": "0x0Ef2e7602adD1733Bfdb17aC3094d0421B502cA3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ecashofficial" + "name": "x", + "url": "https://x.com/ecashofficial" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x0F1cBEd8EFa0E012AdbCCB1638D0aB0147D5Ac00/info.json b/blockchains/smartchain/assets/0x0F1cBEd8EFa0E012AdbCCB1638D0aB0147D5Ac00/info.json index 1ee4804ae16a7..eacff370ae6a6 100644 --- a/blockchains/smartchain/assets/0x0F1cBEd8EFa0E012AdbCCB1638D0aB0147D5Ac00/info.json +++ b/blockchains/smartchain/assets/0x0F1cBEd8EFa0E012AdbCCB1638D0aB0147D5Ac00/info.json @@ -10,8 +10,8 @@ "id": "0x0F1cBEd8EFa0E012AdbCCB1638D0aB0147D5Ac00", "links": [ { - "name": "twitter", - "url": "https://twitter.com/thehellolabs" + "name": "x", + "url": "https://x.com/thehellolabs" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x0F9E4D49f25de22c2202aF916B681FBB3790497B/info.json b/blockchains/smartchain/assets/0x0F9E4D49f25de22c2202aF916B681FBB3790497B/info.json new file mode 100644 index 0000000000000..a5d7ba2679688 --- /dev/null +++ b/blockchains/smartchain/assets/0x0F9E4D49f25de22c2202aF916B681FBB3790497B/info.json @@ -0,0 +1,21 @@ +{ + "name": "Perlin", + "symbol": "PERL", + "type": "BEP20", + "decimals": 18, + "description": "PerlinX — democratizing the trading of real-world assets through decentralized liquidity pools and synthetic asset generation.", + "website": "https://perlinx.finance", + "explorer": "https://bscscan.com/token/0x0f9e4d49f25de22c2202af916b681fbb3790497b", + "status": "active", + "id": "0x0F9E4D49f25de22c2202aF916B681FBB3790497B", + "links": [ + { + "name": "x", + "url": "https://x.com/PerlinNetwork" + }, + { + "name": "telegram", + "url": "https://t.me/perlinnetworkchat" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0F9E4D49f25de22c2202aF916B681FBB3790497B/logo.png b/blockchains/smartchain/assets/0x0F9E4D49f25de22c2202aF916B681FBB3790497B/logo.png new file mode 100644 index 0000000000000..2df3d0f8b9662 Binary files /dev/null and b/blockchains/smartchain/assets/0x0F9E4D49f25de22c2202aF916B681FBB3790497B/logo.png differ diff --git a/blockchains/smartchain/assets/0x0FD98b8C58560167A236f1D0553A9c2a42342ccf/info.json b/blockchains/smartchain/assets/0x0FD98b8C58560167A236f1D0553A9c2a42342ccf/info.json index e3e4ecc07b04c..e487e7239ec79 100644 --- a/blockchains/smartchain/assets/0x0FD98b8C58560167A236f1D0553A9c2a42342ccf/info.json +++ b/blockchains/smartchain/assets/0x0FD98b8C58560167A236f1D0553A9c2a42342ccf/info.json @@ -10,8 +10,8 @@ "id": "0x0FD98b8C58560167A236f1D0553A9c2a42342ccf", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Game_Devolution" + "name": "x", + "url": "https://x.com/Game_Devolution" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x0a3A21356793B49154Fd3BbE91CBc2A16c0457f5/info.json b/blockchains/smartchain/assets/0x0a3A21356793B49154Fd3BbE91CBc2A16c0457f5/info.json index 6bc3700550f4e..75ed5c4257301 100644 --- a/blockchains/smartchain/assets/0x0a3A21356793B49154Fd3BbE91CBc2A16c0457f5/info.json +++ b/blockchains/smartchain/assets/0x0a3A21356793B49154Fd3BbE91CBc2A16c0457f5/info.json @@ -10,8 +10,8 @@ "id": "0x0a3A21356793B49154Fd3BbE91CBc2A16c0457f5", "links": [ { - "name": "twitter", - "url": "https://twitter.com/redfoxlabs_io" + "name": "x", + "url": "https://x.com/redfoxlabs_io" }, { "name": "coingecko", diff --git a/blockchains/smartchain/assets/0x0a4D0889BB5E11F662AAE1cf4Eb8b6717a66497f/info.json b/blockchains/smartchain/assets/0x0a4D0889BB5E11F662AAE1cf4Eb8b6717a66497f/info.json new file mode 100644 index 0000000000000..f37c40f5aa9c9 --- /dev/null +++ b/blockchains/smartchain/assets/0x0a4D0889BB5E11F662AAE1cf4Eb8b6717a66497f/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether USD (Bridge TC10)", + "type": "BEP20", + "symbol": "FAKE USDT.C", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x0a4D0889BB5E11F662AAE1cf4Eb8b6717a66497f", + "explorer": "https://bscscan.com/token/0x0a4D0889BB5E11F662AAE1cf4Eb8b6717a66497f", + "status": "spam", + "id": "0x0a4D0889BB5E11F662AAE1cf4Eb8b6717a66497f" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0aBeaf56546A563824C96BB93d1c46F1d4cD11eB/info.json b/blockchains/smartchain/assets/0x0aBeaf56546A563824C96BB93d1c46F1d4cD11eB/info.json new file mode 100644 index 0000000000000..403c8b4948775 --- /dev/null +++ b/blockchains/smartchain/assets/0x0aBeaf56546A563824C96BB93d1c46F1d4cD11eB/info.json @@ -0,0 +1,21 @@ +{ + "name": "BAKENEKO", + "type": "BEP20", + "symbol": "BAKENEKO", + "decimals": 9, + "website": "https://bakenekobsc.com/", + "description": "BSC coolest cat coin $BAKENEKO is aI-generated community meme token. Is a type of Japanese yokai, or supernatural cat on BNB chain. More specifically, it is a kaibyo.", + "explorer": "https://bscscan.com/token/0x0abeaf56546a563824c96bb93d1c46f1d4cd11eb", + "status": "active", + "id": "0x0aBeaf56546A563824C96BB93d1c46F1d4cD11eB", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bakeneko/" + }, + { + "name": "x", + "url": "https://x.com/bakenekobsc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0aBeaf56546A563824C96BB93d1c46F1d4cD11eB/logo.png b/blockchains/smartchain/assets/0x0aBeaf56546A563824C96BB93d1c46F1d4cD11eB/logo.png new file mode 100644 index 0000000000000..1fa9a927e8f2f Binary files /dev/null and b/blockchains/smartchain/assets/0x0aBeaf56546A563824C96BB93d1c46F1d4cD11eB/logo.png differ diff --git a/blockchains/smartchain/assets/0x0adE12d01178a7799a82884dA8F2F9496Ed78888/info.json b/blockchains/smartchain/assets/0x0adE12d01178a7799a82884dA8F2F9496Ed78888/info.json new file mode 100644 index 0000000000000..6d152b0e842d8 --- /dev/null +++ b/blockchains/smartchain/assets/0x0adE12d01178a7799a82884dA8F2F9496Ed78888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tеthеr", + "type": "BEP20", + "symbol": "FAKE ՍSDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x0adE12d01178a7799a82884dA8F2F9496Ed78888", + "explorer": "https://bscscan.com/token/0x0adE12d01178a7799a82884dA8F2F9496Ed78888", + "status": "spam", + "id": "0x0adE12d01178a7799a82884dA8F2F9496Ed78888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/info.json b/blockchains/smartchain/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/info.json index 189c95c2314e6..29e991c629258 100644 --- a/blockchains/smartchain/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/info.json +++ b/blockchains/smartchain/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/impossiblefinance" }, { - "name": "twitter", - "url": "https://twitter.com/impossiblefi" + "name": "x", + "url": "https://x.com/impossiblefi" }, { "name": "blog", diff --git a/blockchains/smartchain/assets/0x0b33542240d6fA323c796749F6D6869fdB7F13cA/info.json b/blockchains/smartchain/assets/0x0b33542240d6fA323c796749F6D6869fdB7F13cA/info.json index 547ebaa9edd10..6ba254212f740 100644 --- a/blockchains/smartchain/assets/0x0b33542240d6fA323c796749F6D6869fdB7F13cA/info.json +++ b/blockchains/smartchain/assets/0x0b33542240d6fA323c796749F6D6869fdB7F13cA/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "ETHM", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x0b33542240d6fA323c796749F6D6869fdB7F13cA", "links": [ { @@ -18,8 +18,8 @@ "url": "https://coinmarketcap.com/currencies/ethereum-meta/" }, { - "name": "twitter", - "url": "https://twitter.com/EthereumMeta" + "name": "x", + "url": "https://x.com/EthereumMeta" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0b33542240d6fA323c796749F6D6869fdB7F13cA/logo.png b/blockchains/smartchain/assets/0x0b33542240d6fA323c796749F6D6869fdB7F13cA/logo.png deleted file mode 100644 index f531280f54fb3..0000000000000 Binary files a/blockchains/smartchain/assets/0x0b33542240d6fA323c796749F6D6869fdB7F13cA/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x0bCF5693655A159bd7D9DC5064de9BD692a7b7C6/info.json b/blockchains/smartchain/assets/0x0bCF5693655A159bd7D9DC5064de9BD692a7b7C6/info.json index 0008a2c37c072..7306cecd2acf3 100644 --- a/blockchains/smartchain/assets/0x0bCF5693655A159bd7D9DC5064de9BD692a7b7C6/info.json +++ b/blockchains/smartchain/assets/0x0bCF5693655A159bd7D9DC5064de9BD692a7b7C6/info.json @@ -10,8 +10,8 @@ "id": "0x0bCF5693655A159bd7D9DC5064de9BD692a7b7C6", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BIGHBULL1" + "name": "x", + "url": "https://x.com/BIGHBULL1" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x0bc89aa98Ad94E6798Ec822d0814d934cCD0c0cE/info.json b/blockchains/smartchain/assets/0x0bc89aa98Ad94E6798Ec822d0814d934cCD0c0cE/info.json index 9070e4e25ac01..01b399c1e7e93 100644 --- a/blockchains/smartchain/assets/0x0bc89aa98Ad94E6798Ec822d0814d934cCD0c0cE/info.json +++ b/blockchains/smartchain/assets/0x0bc89aa98Ad94E6798Ec822d0814d934cCD0c0cE/info.json @@ -10,8 +10,8 @@ "id": "0x0bc89aa98Ad94E6798Ec822d0814d934cCD0c0cE", "links": [ { - "name": "twitter", - "url": "https://twitter.com/battleheronft" + "name": "x", + "url": "https://x.com/battleheronft" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x0c8382719ef242CaE2247E4DeCb2891fBF699818/info.json b/blockchains/smartchain/assets/0x0c8382719ef242CaE2247E4DeCb2891fBF699818/info.json new file mode 100644 index 0000000000000..06ff5f8c5b10c --- /dev/null +++ b/blockchains/smartchain/assets/0x0c8382719ef242CaE2247E4DeCb2891fBF699818/info.json @@ -0,0 +1,17 @@ +{ + "name": "BDCA", + "type": "BEP20", + "symbol": "BDCA", + "decimals": 18, + "website": "https://bitdca.com/", + "description": "BitDCA allows users to save % of their existing fiat card payments (Mastercard, Visa) directly into BTC, powered by Open Banking APIs and DCA strategy through microtransaction-based investments. Users can automatically set aside a percentage of their everyday purchases into Bitcoin.", + "explorer": "https://bscscan.com/token/0x0c8382719ef242cae2247e4decb2891fbf699818", + "status": "active", + "id": "0x0c8382719ef242CaE2247E4DeCb2891fBF699818", + "links": [ + { + "name": "x", + "url": "https://x.com/bitdcaOFFICIAL" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0c8382719ef242CaE2247E4DeCb2891fBF699818/logo.png b/blockchains/smartchain/assets/0x0c8382719ef242CaE2247E4DeCb2891fBF699818/logo.png new file mode 100644 index 0000000000000..a8a488e819855 Binary files /dev/null and b/blockchains/smartchain/assets/0x0c8382719ef242CaE2247E4DeCb2891fBF699818/logo.png differ diff --git a/blockchains/smartchain/assets/0x0cAE6c43fe2f43757a767Df90cf5054280110F3e/info.json b/blockchains/smartchain/assets/0x0cAE6c43fe2f43757a767Df90cf5054280110F3e/info.json index a63491f69bcf7..f5892a7fa13f1 100644 --- a/blockchains/smartchain/assets/0x0cAE6c43fe2f43757a767Df90cf5054280110F3e/info.json +++ b/blockchains/smartchain/assets/0x0cAE6c43fe2f43757a767Df90cf5054280110F3e/info.json @@ -10,8 +10,8 @@ "id": "0x0cAE6c43fe2f43757a767Df90cf5054280110F3e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/affinitybsc?s=21" + "name": "x", + "url": "https://x.com/affinitybsc?s=21" }, { "name": "reddit", @@ -46,4 +46,4 @@ "defi", "deflationary" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0cBD6fAdcF8096cC9A43d90B45F65826102e3eCE/info.json b/blockchains/smartchain/assets/0x0cBD6fAdcF8096cC9A43d90B45F65826102e3eCE/info.json index 29574bc2bf32e..bd08a6701ef2d 100644 --- a/blockchains/smartchain/assets/0x0cBD6fAdcF8096cC9A43d90B45F65826102e3eCE/info.json +++ b/blockchains/smartchain/assets/0x0cBD6fAdcF8096cC9A43d90B45F65826102e3eCE/info.json @@ -10,8 +10,8 @@ "id": "0x0cBD6fAdcF8096cC9A43d90B45F65826102e3eCE", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Checkdot_proto" + "name": "x", + "url": "https://x.com/Checkdot_proto" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x0cBfDea4F45A486Cc7dB53CB6e37b312A137C605/info.json b/blockchains/smartchain/assets/0x0cBfDea4F45A486Cc7dB53CB6e37b312A137C605/info.json index 98a6277ccd6b3..1ded208eb557f 100644 --- a/blockchains/smartchain/assets/0x0cBfDea4F45A486Cc7dB53CB6e37b312A137C605/info.json +++ b/blockchains/smartchain/assets/0x0cBfDea4F45A486Cc7dB53CB6e37b312A137C605/info.json @@ -10,8 +10,8 @@ "id": "0x0cBfDea4F45A486Cc7dB53CB6e37b312A137C605", "links": [ { - "name": "twitter", - "url": "https://twitter.com/seedxapp" + "name": "x", + "url": "https://x.com/seedxapp" }, { "name": "telegram_news", @@ -33,4 +33,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0cCD575bf9378c06f6DCa82f8122F570769F00C2/info.json b/blockchains/smartchain/assets/0x0cCD575bf9378c06f6DCa82f8122F570769F00C2/info.json index 885297be09b33..3910d25a7f663 100644 --- a/blockchains/smartchain/assets/0x0cCD575bf9378c06f6DCa82f8122F570769F00C2/info.json +++ b/blockchains/smartchain/assets/0x0cCD575bf9378c06f6DCa82f8122F570769F00C2/info.json @@ -10,8 +10,8 @@ "id": "0x0cCD575bf9378c06f6DCa82f8122F570769F00C2", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BladesCrypto" + "name": "x", + "url": "https://x.com/BladesCrypto" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/info.json b/blockchains/smartchain/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/info.json index 288e32eb7379c..0e322b610aaeb 100644 --- a/blockchains/smartchain/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/info.json +++ b/blockchains/smartchain/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/info.json @@ -18,8 +18,8 @@ "url": "https://coingecko.com/en/coins/everrise" }, { - "name": "twitter", - "url": "https://twitter.com/everrise" + "name": "x", + "url": "https://x.com/everrise" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x0cF453DC7EA21ef8FdfFC1B14Cb848E1e3884Be5/info.json b/blockchains/smartchain/assets/0x0cF453DC7EA21ef8FdfFC1B14Cb848E1e3884Be5/info.json new file mode 100644 index 0000000000000..493290bf8cf16 --- /dev/null +++ b/blockchains/smartchain/assets/0x0cF453DC7EA21ef8FdfFC1B14Cb848E1e3884Be5/info.json @@ -0,0 +1,32 @@ +{ + "name": "SportPoint", + "type": "BEP20", + "symbol": "POINT", + "decimals": 18, + "website": "https://sportpoint.app/", + "description": "Sport and Booking: SportPoint offers a unified subscription for all gyms and sports activities. Enjoy easy booking of training sessions worldwide and find the most convenient sports locations using GPS. Pay only for actual visits.", + "explorer": "https://bscscan.com/token/0x0cF453DC7EA21ef8FdfFC1B14Cb848E1e3884Be5", + "status": "active", + "id": "0x0cF453DC7EA21ef8FdfFC1B14Cb848E1e3884Be5", + "links": [ + { + "name": "x", + "url": "https://x.com/SportPoint_app" + }, + { + "name": "youtube", + "url": "https://youtube.com/watch?v=Fem9Bnsh37c" + }, + { + "name": "telegram", + "url": "https://t.me/SportPoint_Token" + }, + { + "name": "docs", + "url": "https://sportpoint.app/docs/wp_sportpoint.pdf" + } + ], + "tags": [ + "staking-native" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0cF453DC7EA21ef8FdfFC1B14Cb848E1e3884Be5/logo.png b/blockchains/smartchain/assets/0x0cF453DC7EA21ef8FdfFC1B14Cb848E1e3884Be5/logo.png new file mode 100644 index 0000000000000..ac668f14a8df1 Binary files /dev/null and b/blockchains/smartchain/assets/0x0cF453DC7EA21ef8FdfFC1B14Cb848E1e3884Be5/logo.png differ diff --git a/blockchains/smartchain/assets/0x0cdE6936d305d5B34667fC46425E852efd73559a/info.json b/blockchains/smartchain/assets/0x0cdE6936d305d5B34667fC46425E852efd73559a/info.json new file mode 100644 index 0000000000000..a3fe3bdba16f2 --- /dev/null +++ b/blockchains/smartchain/assets/0x0cdE6936d305d5B34667fC46425E852efd73559a/info.json @@ -0,0 +1,24 @@ +{ + "name": "Invesco QQQ (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "QQQon is the Ondo Tokenized version of the Invesco QQQ, giving tokenholders economic exposure similar to holding QQQ and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x0cde6936d305d5b34667fc46425e852efd73559a", + "type": "BEP20", + "symbol": "QQQon", + "decimals": 18, + "status": "active", + "id": "0x0cdE6936d305d5B34667fC46425E852efd73559a", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/invesco-qqq-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0cdE6936d305d5B34667fC46425E852efd73559a/logo.png b/blockchains/smartchain/assets/0x0cdE6936d305d5B34667fC46425E852efd73559a/logo.png new file mode 100644 index 0000000000000..e14a8610db4c0 Binary files /dev/null and b/blockchains/smartchain/assets/0x0cdE6936d305d5B34667fC46425E852efd73559a/logo.png differ diff --git a/blockchains/smartchain/assets/0x0d9319565be7f53CeFE84Ad201Be3f40feAE2740/info.json b/blockchains/smartchain/assets/0x0d9319565be7f53CeFE84Ad201Be3f40feAE2740/info.json index bc13d191d8b35..a031d93dffc1a 100644 --- a/blockchains/smartchain/assets/0x0d9319565be7f53CeFE84Ad201Be3f40feAE2740/info.json +++ b/blockchains/smartchain/assets/0x0d9319565be7f53CeFE84Ad201Be3f40feAE2740/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/bearn-defi/bdollar-smartcontracts" }, { - "name": "twitter", - "url": "https://twitter.com/bDollar_Fi" + "name": "x", + "url": "https://x.com/bDollar_Fi" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x0dcD05357B83BF100e668F152bf14Bf96b679Cd1/info.json b/blockchains/smartchain/assets/0x0dcD05357B83BF100e668F152bf14Bf96b679Cd1/info.json new file mode 100644 index 0000000000000..5bf11b7b12523 --- /dev/null +++ b/blockchains/smartchain/assets/0x0dcD05357B83BF100e668F152bf14Bf96b679Cd1/info.json @@ -0,0 +1,40 @@ +{ + "name": "Pepemusk", + "type": "BEP20", + "symbol": "PEPEMUSK", + "decimals": 18, + "website": "https://www.pepemusk.vip", + "description": "PepeMusk is one of the members of the Elon Musk family, promoting the spirit of Musk PepeMusk main responsibility.", + "explorer": "https://bscscan.com/token/0x0dcD05357B83BF100e668F152bf14Bf96b679Cd1", + "status": "active", + "id": "0x0dcD05357B83BF100e668F152bf14Bf96b679Cd1", + "links": [ + { + "name": "x", + "url": "https://x.com/PepeMuskinu" + }, + { + "name": "github", + "url": "https://github.com/pepemusk" + }, + { + "name": "telegram", + "url": "https://t.me/PepeMuskinu" + }, + { + "name": "telegram_news", + "url": "https://t.me/PepeMuskfamily" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pepemusk" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/pepemusk" + } + ], + "tags": [ + "memes" + ] +} diff --git a/blockchains/smartchain/assets/0x0dcD05357B83BF100e668F152bf14Bf96b679Cd1/logo.png b/blockchains/smartchain/assets/0x0dcD05357B83BF100e668F152bf14Bf96b679Cd1/logo.png new file mode 100644 index 0000000000000..590b272307a95 Binary files /dev/null and b/blockchains/smartchain/assets/0x0dcD05357B83BF100e668F152bf14Bf96b679Cd1/logo.png differ diff --git a/blockchains/smartchain/assets/0x0df1B3F30865C5b324797F8dB9d339514caC4e94/info.json b/blockchains/smartchain/assets/0x0df1B3F30865C5b324797F8dB9d339514caC4e94/info.json index b988d6dff3d1e..0dfa99205d746 100644 --- a/blockchains/smartchain/assets/0x0df1B3F30865C5b324797F8dB9d339514caC4e94/info.json +++ b/blockchains/smartchain/assets/0x0df1B3F30865C5b324797F8dB9d339514caC4e94/info.json @@ -10,8 +10,8 @@ "id": "0x0df1B3F30865C5b324797F8dB9d339514caC4e94", "links": [ { - "name": "twitter", - "url": "https://twitter.com/betuglobal" + "name": "x", + "url": "https://x.com/betuglobal" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x0e0e877894a101Ad8711AE3A0194Fa44Ca837a79/info.json b/blockchains/smartchain/assets/0x0e0e877894a101Ad8711AE3A0194Fa44Ca837a79/info.json index 8df431aea8802..f2fd6b0c1ce7a 100644 --- a/blockchains/smartchain/assets/0x0e0e877894a101Ad8711AE3A0194Fa44Ca837a79/info.json +++ b/blockchains/smartchain/assets/0x0e0e877894a101Ad8711AE3A0194Fa44Ca837a79/info.json @@ -10,8 +10,8 @@ "id": "0x0e0e877894a101Ad8711AE3A0194Fa44Ca837a79", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MoonMoonCash" + "name": "x", + "url": "https://x.com/MoonMoonCash" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x0e28bC9B03971E95acF9ae1326E51ecF9C55B498/info.json b/blockchains/smartchain/assets/0x0e28bC9B03971E95acF9ae1326E51ecF9C55B498/info.json new file mode 100644 index 0000000000000..642fad33841d2 --- /dev/null +++ b/blockchains/smartchain/assets/0x0e28bC9B03971E95acF9ae1326E51ecF9C55B498/info.json @@ -0,0 +1,21 @@ +{ + "name": "Brickken", + "symbol": "BKN", + "type": "BEP20", + "decimals": 18, + "description": "Brickken is creating a dApp (Decentralized Application) which provides the tools needed for individuals and businesses to issue their own Security Tokens, anywhere in the world using blockchain technology", + "website": "https://www.brickken.com/", + "explorer": "https://bscscan.com/token/0x0e28bC9B03971E95acF9ae1326E51ecF9C55B498", + "status": "active", + "id": "0x0e28bC9B03971E95acF9ae1326E51ecF9C55B498", + "links": [ + { + "name": "x", + "url": "https://x.com/brickken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/brickken/" + } + ] + } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0e28bC9B03971E95acF9ae1326E51ecF9C55B498/logo.png b/blockchains/smartchain/assets/0x0e28bC9B03971E95acF9ae1326E51ecF9C55B498/logo.png new file mode 100644 index 0000000000000..e7d7f22a0d151 Binary files /dev/null and b/blockchains/smartchain/assets/0x0e28bC9B03971E95acF9ae1326E51ecF9C55B498/logo.png differ diff --git a/blockchains/smartchain/assets/0x0e7B7051412a4e31c1f4188e717d7fa8d812fa80/info.json b/blockchains/smartchain/assets/0x0e7B7051412a4e31c1f4188e717d7fa8d812fa80/info.json new file mode 100644 index 0000000000000..e4d4e3e79e38c --- /dev/null +++ b/blockchains/smartchain/assets/0x0e7B7051412a4e31c1f4188e717d7fa8d812fa80/info.json @@ -0,0 +1,17 @@ +{ + "name": "Belgian Malinois", + "symbol": "Malinois", + "website": "https://x.com/Czdogbreed_bsc", + "description": "The Breed of Cz's Dog", + "explorer": "https://bscscan.com/token/0x0e7b7051412a4e31c1f4188e717d7fa8d812fa80", + "decimals": 18, + "status": "active", + "id": "0x0e7B7051412a4e31c1f4188e717d7fa8d812fa80", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/Czdogbreed_bsc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0e7B7051412a4e31c1f4188e717d7fa8d812fa80/logo.png b/blockchains/smartchain/assets/0x0e7B7051412a4e31c1f4188e717d7fa8d812fa80/logo.png new file mode 100644 index 0000000000000..46e71fa1eafab Binary files /dev/null and b/blockchains/smartchain/assets/0x0e7B7051412a4e31c1f4188e717d7fa8d812fa80/logo.png differ diff --git a/blockchains/smartchain/assets/0x0eAa1a75bd682A5669AB2371A559fBD039C6b9Eb/info.json b/blockchains/smartchain/assets/0x0eAa1a75bd682A5669AB2371A559fBD039C6b9Eb/info.json new file mode 100644 index 0000000000000..9b4a4f23c6dbd --- /dev/null +++ b/blockchains/smartchain/assets/0x0eAa1a75bd682A5669AB2371A559fBD039C6b9Eb/info.json @@ -0,0 +1,24 @@ +{ + "name": "Palo Alto Networks (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "PANWon is the Ondo Tokenized version of Palo Alto Networks, giving tokenholders economic exposure similar to holding PANW and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x0eaa1a75bd682a5669ab2371a559fbd039c6b9eb", + "type": "BEP20", + "symbol": "PANWon", + "decimals": 18, + "status": "active", + "id": "0x0eAa1a75bd682A5669AB2371A559fBD039C6b9Eb", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/palo-alto-networks-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0eAa1a75bd682A5669AB2371A559fBD039C6b9Eb/logo.png b/blockchains/smartchain/assets/0x0eAa1a75bd682A5669AB2371A559fBD039C6b9Eb/logo.png new file mode 100644 index 0000000000000..da6b93929f64c Binary files /dev/null and b/blockchains/smartchain/assets/0x0eAa1a75bd682A5669AB2371A559fBD039C6b9Eb/logo.png differ diff --git a/blockchains/smartchain/assets/0x0eBe5FAD0998765187FC695B75d4115c27C953A1/info.json b/blockchains/smartchain/assets/0x0eBe5FAD0998765187FC695B75d4115c27C953A1/info.json new file mode 100644 index 0000000000000..a0652a55755af --- /dev/null +++ b/blockchains/smartchain/assets/0x0eBe5FAD0998765187FC695B75d4115c27C953A1/info.json @@ -0,0 +1,20 @@ +{ + "name": "KRAQ xStock", + "type": "BEP20", + "symbol": "KRAQx", + "decimals": 18, + "description": "KRAQ xStock (KRAQx) is a tracker certificate issued as a freely transferable token on selected blockchains. KRAQx tracks the price of KRAKacquisition. KRAQx is designed to give eligible investors regulatory-compliant access to the stock price of KRAKacquisition, whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x0eBe5FAD0998765187FC695B75d4115c27C953A1", + "status": "active", + "id": "0x0eBe5FAD0998765187FC695B75d4115c27C953A1", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0eBe5FAD0998765187FC695B75d4115c27C953A1/logo.png b/blockchains/smartchain/assets/0x0eBe5FAD0998765187FC695B75d4115c27C953A1/logo.png new file mode 100644 index 0000000000000..d5f75ef67e152 Binary files /dev/null and b/blockchains/smartchain/assets/0x0eBe5FAD0998765187FC695B75d4115c27C953A1/logo.png differ diff --git a/blockchains/smartchain/assets/0x0ebd9537A25f56713E34c45b38F421A1e7191469/info.json b/blockchains/smartchain/assets/0x0ebd9537A25f56713E34c45b38F421A1e7191469/info.json index a7363ba47661b..0cfeacbc4703b 100644 --- a/blockchains/smartchain/assets/0x0ebd9537A25f56713E34c45b38F421A1e7191469/info.json +++ b/blockchains/smartchain/assets/0x0ebd9537A25f56713E34c45b38F421A1e7191469/info.json @@ -14,8 +14,8 @@ "url": "https://coingecko.com/en/coins/dotmoovs" }, { - "name": "twitter", - "url": "https://twitter.com/dotmoovs" + "name": "x", + "url": "https://x.com/dotmoovs" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x0f0Dd5E2c0e0c4A41F8908D73D36B8D142F6745a/info.json b/blockchains/smartchain/assets/0x0f0Dd5E2c0e0c4A41F8908D73D36B8D142F6745a/info.json index 2b6cd08716c7e..fe977db347eba 100644 --- a/blockchains/smartchain/assets/0x0f0Dd5E2c0e0c4A41F8908D73D36B8D142F6745a/info.json +++ b/blockchains/smartchain/assets/0x0f0Dd5E2c0e0c4A41F8908D73D36B8D142F6745a/info.json @@ -10,8 +10,8 @@ "id": "0x0f0Dd5E2c0e0c4A41F8908D73D36B8D142F6745a", "links": [ { - "name": "twitter", - "url": "https://twitter.com/FireworkGames" + "name": "x", + "url": "https://x.com/FireworkGames" }, { "name": "coinmarketcap", @@ -30,4 +30,4 @@ "gamefi", "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0f7cd24E31293b162DcF6211C6AC5bD8EfCB81f4/info.json b/blockchains/smartchain/assets/0x0f7cd24E31293b162DcF6211C6AC5bD8EfCB81f4/info.json index 8bf1255238302..7a5c350871496 100644 --- a/blockchains/smartchain/assets/0x0f7cd24E31293b162DcF6211C6AC5bD8EfCB81f4/info.json +++ b/blockchains/smartchain/assets/0x0f7cd24E31293b162DcF6211C6AC5bD8EfCB81f4/info.json @@ -14,8 +14,8 @@ "url": "https://ltd.livetrade.io/wp-content/uploads/2021/07/LTD-Whitepaper_Eng.pdf" }, { - "name": "twitter", - "url": "https://twitter.com/Livetrade_io" + "name": "x", + "url": "https://x.com/Livetrade_io" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x0fA9651a0ecC19906843C13c60443300B9d37355/info.json b/blockchains/smartchain/assets/0x0fA9651a0ecC19906843C13c60443300B9d37355/info.json index c659effe58c6c..f7f3538ac2384 100644 --- a/blockchains/smartchain/assets/0x0fA9651a0ecC19906843C13c60443300B9d37355/info.json +++ b/blockchains/smartchain/assets/0x0fA9651a0ecC19906843C13c60443300B9d37355/info.json @@ -14,8 +14,8 @@ "url": "https://reddit.com/r/XMINE" }, { - "name": "twitter", - "url": "https://twitter.com/xmineofficial" + "name": "x", + "url": "https://x.com/xmineofficial" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x0fbc08905c1d683Cf7530bb2a70Bb0BDE231E5B9/info.json b/blockchains/smartchain/assets/0x0fbc08905c1d683Cf7530bb2a70Bb0BDE231E5B9/info.json index 8084b5d8dbc97..8932bebb95b76 100644 --- a/blockchains/smartchain/assets/0x0fbc08905c1d683Cf7530bb2a70Bb0BDE231E5B9/info.json +++ b/blockchains/smartchain/assets/0x0fbc08905c1d683Cf7530bb2a70Bb0BDE231E5B9/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/BabyDogeZillaBSC" }, { - "name": "twitter", - "url": "https://twitter.com/BabydogezillaA" + "name": "x", + "url": "https://x.com/BabydogezillaA" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x10051147418C42218986CeDD0aDC266441F8a14f/info.json b/blockchains/smartchain/assets/0x10051147418C42218986CeDD0aDC266441F8a14f/info.json index e95744cea7a09..c660d12cb4c5a 100644 --- a/blockchains/smartchain/assets/0x10051147418C42218986CeDD0aDC266441F8a14f/info.json +++ b/blockchains/smartchain/assets/0x10051147418C42218986CeDD0aDC266441F8a14f/info.json @@ -14,8 +14,8 @@ "url": "https://facebook.com/dyorproject" }, { - "name": "twitter", - "url": "https://twitter.com/DYORToken_BSC" + "name": "x", + "url": "https://x.com/DYORToken_BSC" }, { "name": "discord", diff --git a/blockchains/smartchain/assets/0x101d82428437127bF1608F699CD651e6Abf9766E/info.json b/blockchains/smartchain/assets/0x101d82428437127bF1608F699CD651e6Abf9766E/info.json index b427828fb10ad..69e523a926123 100644 --- a/blockchains/smartchain/assets/0x101d82428437127bF1608F699CD651e6Abf9766E/info.json +++ b/blockchains/smartchain/assets/0x101d82428437127bF1608F699CD651e6Abf9766E/info.json @@ -1,5 +1,5 @@ { - "name": "BNB pegged Basic Attention Token", + "name": "Basic Attention Token", "website": "https://basicattentiontoken.org", "description": "BNB pegged Basic Attention Token (BAT BEP20) is a token issued by Binance on Smart Chain; its price is pegged to Basic Attention (BAT ERC20) at a ratio of 1:1.", "explorer": "https://bscscan.com/token/0x101d82428437127bF1608F699CD651e6Abf9766E", @@ -19,8 +19,8 @@ "url": "https://medium.com/@attentiontoken" }, { - "name": "twitter", - "url": "https://twitter.com/@attentiontoken" + "name": "x", + "url": "https://x.com/@attentiontoken" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x103071Da56e7cD95b415320760D6a0dDC4DA1ca5/info.json b/blockchains/smartchain/assets/0x103071Da56e7cD95b415320760D6a0dDC4DA1ca5/info.json new file mode 100644 index 0000000000000..7ac124c0095bc --- /dev/null +++ b/blockchains/smartchain/assets/0x103071Da56e7cD95b415320760D6a0dDC4DA1ca5/info.json @@ -0,0 +1,21 @@ +{ + "name": "Xterio", + "type": "BEP20", + "symbol": "XTER", + "decimals": 18, + "website": "https://www.xter.io", + "description": "Empowering creators and players with cutting-edge on-chain infrastructure and publishing solutions", + "explorer": "https://bscscan.com/token/0x103071Da56e7cD95b415320760D6a0dDC4DA1ca5", + "status": "active", + "id": "0x103071Da56e7cD95b415320760D6a0dDC4DA1ca5", + "links": [ + { + "name": "x", + "url": "https://x.com/XterioGames" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/xterio" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x103071Da56e7cD95b415320760D6a0dDC4DA1ca5/logo.png b/blockchains/smartchain/assets/0x103071Da56e7cD95b415320760D6a0dDC4DA1ca5/logo.png new file mode 100644 index 0000000000000..65434e1c38dd5 Binary files /dev/null and b/blockchains/smartchain/assets/0x103071Da56e7cD95b415320760D6a0dDC4DA1ca5/logo.png differ diff --git a/blockchains/smartchain/assets/0x1042aA383CAb145dc77121ca75650804A5c134ff/info.json b/blockchains/smartchain/assets/0x1042aA383CAb145dc77121ca75650804A5c134ff/info.json index 4fa34420a2880..8b8ec6a932783 100644 --- a/blockchains/smartchain/assets/0x1042aA383CAb145dc77121ca75650804A5c134ff/info.json +++ b/blockchains/smartchain/assets/0x1042aA383CAb145dc77121ca75650804A5c134ff/info.json @@ -18,8 +18,8 @@ "url": "https://t.me/aggle_io" }, { - "name": "twitter", - "url": "https://twitter.com/aggle_io" + "name": "x", + "url": "https://x.com/aggle_io" }, { "name": "discord", diff --git a/blockchains/smartchain/assets/0x10806b71136785250455CAb1FBaFA06b228e8888/info.json b/blockchains/smartchain/assets/0x10806b71136785250455CAb1FBaFA06b228e8888/info.json new file mode 100644 index 0000000000000..244234dc8555b --- /dev/null +++ b/blockchains/smartchain/assets/0x10806b71136785250455CAb1FBaFA06b228e8888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether", + "type": "BEP20", + "symbol": "FAKE ՍSDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x10806b71136785250455CAb1FBaFA06b228e8888", + "explorer": "https://bscscan.com/token/0x10806b71136785250455CAb1FBaFA06b228e8888", + "status": "spam", + "id": "0x10806b71136785250455CAb1FBaFA06b228e8888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x10B0a78520fBDDa95aDc331445d9319B164F85D5/info.json b/blockchains/smartchain/assets/0x10B0a78520fBDDa95aDc331445d9319B164F85D5/info.json index 5b5598ee3b6c5..1615993dcf898 100644 --- a/blockchains/smartchain/assets/0x10B0a78520fBDDa95aDc331445d9319B164F85D5/info.json +++ b/blockchains/smartchain/assets/0x10B0a78520fBDDa95aDc331445d9319B164F85D5/info.json @@ -10,8 +10,8 @@ "id": "0x10B0a78520fBDDa95aDc331445d9319B164F85D5", "links": [ { - "name": "twitter", - "url": "https://twitter.com/anpanswap" + "name": "x", + "url": "https://x.com/anpanswap" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x10adF50e15611d5A4DE3bd21F0DB7f3491A8ae0f/info.json b/blockchains/smartchain/assets/0x10adF50e15611d5A4DE3bd21F0DB7f3491A8ae0f/info.json index 952fc15b507f5..d7c9c663114e5 100644 --- a/blockchains/smartchain/assets/0x10adF50e15611d5A4DE3bd21F0DB7f3491A8ae0f/info.json +++ b/blockchains/smartchain/assets/0x10adF50e15611d5A4DE3bd21F0DB7f3491A8ae0f/info.json @@ -15,8 +15,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/monetasglobal" + "name": "x", + "url": "https://x.com/monetasglobal" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x10b58A3d9DCeC59bB1c3bf6b9c9414eAfCE711C9/info.json b/blockchains/smartchain/assets/0x10b58A3d9DCeC59bB1c3bf6b9c9414eAfCE711C9/info.json new file mode 100644 index 0000000000000..e39cb2dc81011 --- /dev/null +++ b/blockchains/smartchain/assets/0x10b58A3d9DCeC59bB1c3bf6b9c9414eAfCE711C9/info.json @@ -0,0 +1,24 @@ +{ + "name": "Vanguard Real Estate ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "VNQon", + "decimals": 18, + "description": "VNQon is the Ondo Tokenized version of the Vanguard Real Estate ETF, giving tokenholders economic exposure similar to holding VNQ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x10b58A3d9DCeC59bB1c3bf6b9c9414eAfCE711C9", + "status": "active", + "id": "0x10b58A3d9DCeC59bB1c3bf6b9c9414eAfCE711C9", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vanguard-real-estate-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x10b58A3d9DCeC59bB1c3bf6b9c9414eAfCE711C9/logo.png b/blockchains/smartchain/assets/0x10b58A3d9DCeC59bB1c3bf6b9c9414eAfCE711C9/logo.png new file mode 100644 index 0000000000000..0ccfbac790bc2 Binary files /dev/null and b/blockchains/smartchain/assets/0x10b58A3d9DCeC59bB1c3bf6b9c9414eAfCE711C9/logo.png differ diff --git a/blockchains/smartchain/assets/0x10b9dd394467f2CFbc769e07E88dC7e2c41B0965/info.json b/blockchains/smartchain/assets/0x10b9dd394467f2CFbc769e07E88dC7e2c41B0965/info.json index a0cd88af4c026..43da9a31c4722 100644 --- a/blockchains/smartchain/assets/0x10b9dd394467f2CFbc769e07E88dC7e2c41B0965/info.json +++ b/blockchains/smartchain/assets/0x10b9dd394467f2CFbc769e07E88dC7e2c41B0965/info.json @@ -10,8 +10,8 @@ "id": "0x10b9dd394467f2CFbc769e07E88dC7e2c41B0965", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BscRetoken" + "name": "x", + "url": "https://x.com/BscRetoken" }, { "name": "github", @@ -29,4 +29,4 @@ "tags": [ "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x10cb66ce2969d8c8193707A9dCD559D2243B8b37/info.json b/blockchains/smartchain/assets/0x10cb66ce2969d8c8193707A9dCD559D2243B8b37/info.json index d7e878bed4838..8c2899f6fc7cb 100644 --- a/blockchains/smartchain/assets/0x10cb66ce2969d8c8193707A9dCD559D2243B8b37/info.json +++ b/blockchains/smartchain/assets/0x10cb66ce2969d8c8193707A9dCD559D2243B8b37/info.json @@ -10,8 +10,8 @@ "id": "0x10cb66ce2969d8c8193707A9dCD559D2243B8b37", "links": [ { - "name": "twitter", - "url": "https://twitter.com/LegionsCrypto" + "name": "x", + "url": "https://x.com/LegionsCrypto" }, { "name": "telegram", @@ -33,4 +33,4 @@ "tags": [ "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x10eC175cBBAc1B06b8a3f509e373EeEc7a5F5d63/info.json b/blockchains/smartchain/assets/0x10eC175cBBAc1B06b8a3f509e373EeEc7a5F5d63/info.json new file mode 100644 index 0000000000000..4f1cc993f649d --- /dev/null +++ b/blockchains/smartchain/assets/0x10eC175cBBAc1B06b8a3f509e373EeEc7a5F5d63/info.json @@ -0,0 +1,22 @@ +{ + "name": "Karina Milei", + "type": "BEP20", + "symbol": "KARINA", + "decimals": 18, + "description": "Karina Milei, sister of the president of Argentinia, Javier Milei Accepted bribes to pump Argentinian token", + "website": "https://www.coindesk.com/business/2025/02/18/libra-token-s-co-creator-bragged-of-sending-money-to-argentine-president-milei-s-sister", + "explorer": "https://bscscan.com/token/0x10ec175cbbac1b06b8a3f509e373eeec7a5f5d63", + "id": "0x10eC175cBBAc1B06b8a3f509e373EeEc7a5F5d63", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/tier10k/status/1891943785468141598" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x10eC175cBBAc1B06b8a3f509e373EeEc7a5F5d63/logo.png b/blockchains/smartchain/assets/0x10eC175cBBAc1B06b8a3f509e373EeEc7a5F5d63/logo.png new file mode 100644 index 0000000000000..fbfaf883ddf2e Binary files /dev/null and b/blockchains/smartchain/assets/0x10eC175cBBAc1B06b8a3f509e373EeEc7a5F5d63/logo.png differ diff --git a/blockchains/smartchain/assets/0x10f6F43d8321A3C86c2986BA4753ceBEba477BAa/info.json b/blockchains/smartchain/assets/0x10f6F43d8321A3C86c2986BA4753ceBEba477BAa/info.json index ace1c0d6c8a10..b8dfa016b3eb0 100644 --- a/blockchains/smartchain/assets/0x10f6F43d8321A3C86c2986BA4753ceBEba477BAa/info.json +++ b/blockchains/smartchain/assets/0x10f6F43d8321A3C86c2986BA4753ceBEba477BAa/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/BaitCoinBSC" }, { - "name": "twitter", - "url": "https://twitter.com/BaitcoinBSC" + "name": "x", + "url": "https://x.com/BaitcoinBSC" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x10f6f2b97F3aB29583D9D38BaBF2994dF7220C21/info.json b/blockchains/smartchain/assets/0x10f6f2b97F3aB29583D9D38BaBF2994dF7220C21/info.json index d1d85124e3878..ec01de7a26842 100644 --- a/blockchains/smartchain/assets/0x10f6f2b97F3aB29583D9D38BaBF2994dF7220C21/info.json +++ b/blockchains/smartchain/assets/0x10f6f2b97F3aB29583D9D38BaBF2994dF7220C21/info.json @@ -6,12 +6,12 @@ "website": "https://teddydoge.finance/", "description": "TEDDY is the DEFI ecological token of Teddy Doge with Swap & Cross bridge& Wallet.", "explorer": "https://bscscan.com/token/0x10f6f2b97f3ab29583d9d38babf2994df7220c21", - "status": "active", + "status": "abandoned", "id": "0x10f6f2b97F3aB29583D9D38BaBF2994dF7220C21", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TeddySwap1" + "name": "x", + "url": "https://x.com/TeddySwap1" }, { "name": "github", @@ -57,4 +57,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x10f6f2b97F3aB29583D9D38BaBF2994dF7220C21/logo.png b/blockchains/smartchain/assets/0x10f6f2b97F3aB29583D9D38BaBF2994dF7220C21/logo.png deleted file mode 100644 index a5ad8a61f1d77..0000000000000 Binary files a/blockchains/smartchain/assets/0x10f6f2b97F3aB29583D9D38BaBF2994dF7220C21/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x1104EB7e85E25eB45F88e638b0C27A06C1A91CB2/info.json b/blockchains/smartchain/assets/0x1104EB7e85E25eB45F88e638b0C27A06C1A91CB2/info.json new file mode 100644 index 0000000000000..e8132727e6ea9 --- /dev/null +++ b/blockchains/smartchain/assets/0x1104EB7e85E25eB45F88e638b0C27A06C1A91CB2/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Core S&P 500 (Ondo)", + "website": "https://ondo.finance/", + "description": "IVVon is the Ondo Tokenized version of the iShares Core S&P 500 ETF, giving tokenholders economic exposure similar to holding IVV and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x1104eb7e85e25eb45f88e638b0c27a06c1a91cb2", + "type": "BEP20", + "symbol": "IVVon", + "decimals": 18, + "status": "active", + "id": "0x1104EB7e85E25eB45F88e638b0C27A06C1A91CB2", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-core-sp-500-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1104EB7e85E25eB45F88e638b0C27A06C1A91CB2/logo.png b/blockchains/smartchain/assets/0x1104EB7e85E25eB45F88e638b0C27A06C1A91CB2/logo.png new file mode 100644 index 0000000000000..8adf578853fa6 Binary files /dev/null and b/blockchains/smartchain/assets/0x1104EB7e85E25eB45F88e638b0C27A06C1A91CB2/logo.png differ diff --git a/blockchains/smartchain/assets/0x111111111117dC0aa78b770fA6A738034120C302/info.json b/blockchains/smartchain/assets/0x111111111117dC0aa78b770fA6A738034120C302/info.json index 6f503cd21efa8..150ad3a611bbd 100644 --- a/blockchains/smartchain/assets/0x111111111117dC0aa78b770fA6A738034120C302/info.json +++ b/blockchains/smartchain/assets/0x111111111117dC0aa78b770fA6A738034120C302/info.json @@ -1,5 +1,5 @@ { - "name": "1INCH Token", + "name": "1inch", "website": "https://1inch.io", "description": "The 1INCH token on Binance Smart Chain will be used for a bridge between the Binance and Ethereum networks.", "explorer": "https://bscscan.com/token/0x111111111117dc0aa78b770fa6a738034120c302", @@ -17,8 +17,8 @@ "url": "https://1inch-exchange.medium.com/" }, { - "name": "twitter", - "url": "https://twitter.com/1inchExchange" + "name": "x", + "url": "https://x.com/1inchExchange" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x112Fbe7f60329E9E2D232008E56F94D1582aE3bc/info.json b/blockchains/smartchain/assets/0x112Fbe7f60329E9E2D232008E56F94D1582aE3bc/info.json index 4ad63c90852e1..492a544cc2eee 100644 --- a/blockchains/smartchain/assets/0x112Fbe7f60329E9E2D232008E56F94D1582aE3bc/info.json +++ b/blockchains/smartchain/assets/0x112Fbe7f60329E9E2D232008E56F94D1582aE3bc/info.json @@ -10,8 +10,8 @@ "id": "0x112Fbe7f60329E9E2D232008E56F94D1582aE3bc", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BabyFlokiBLN" + "name": "x", + "url": "https://x.com/BabyFlokiBLN" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x11582Ef4642B1e7F0a023804B497656E2663bC9B/info.json b/blockchains/smartchain/assets/0x11582Ef4642B1e7F0a023804B497656E2663bC9B/info.json index e25142762a2df..0a6c729893714 100644 --- a/blockchains/smartchain/assets/0x11582Ef4642B1e7F0a023804B497656E2663bC9B/info.json +++ b/blockchains/smartchain/assets/0x11582Ef4642B1e7F0a023804B497656E2663bC9B/info.json @@ -10,8 +10,8 @@ "id": "0x11582Ef4642B1e7F0a023804B497656E2663bC9B", "links": [ { - "name": "twitter", - "url": "https://twitter.com/KCCPad_Official" + "name": "x", + "url": "https://x.com/KCCPad_Official" }, { "name": "coingecko", diff --git a/blockchains/smartchain/assets/0x11883Cdea6bAb720092791cc89affa54428Ce069/info.json b/blockchains/smartchain/assets/0x11883Cdea6bAb720092791cc89affa54428Ce069/info.json index 0573003002045..2f9787f760692 100644 --- a/blockchains/smartchain/assets/0x11883Cdea6bAb720092791cc89affa54428Ce069/info.json +++ b/blockchains/smartchain/assets/0x11883Cdea6bAb720092791cc89affa54428Ce069/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/CreamFi" }, { - "name": "twitter", - "url": "https://twitter.com/CreamdotFinance" + "name": "x", + "url": "https://x.com/CreamdotFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x1188d953aFC697C031851169EEf640F23ac8529C/info.json b/blockchains/smartchain/assets/0x1188d953aFC697C031851169EEf640F23ac8529C/info.json new file mode 100644 index 0000000000000..4e09ec4888532 --- /dev/null +++ b/blockchains/smartchain/assets/0x1188d953aFC697C031851169EEf640F23ac8529C/info.json @@ -0,0 +1,25 @@ +{ + "name": "Bounce Token", + "website": "https://bounce.finance/", + "description": "Bounce is a decentralized auction platform, incorporating liquidity mining, decentralized governance and staking mechanisms. The first principle of Bounce is scarcity of resources, which creates a competitive swap environment.", + "explorer": "https://bscscan.com/token/0x1188d953afc697c031851169eef640f23ac8529c", + "type": "BEP20", + "symbol": "Auction", + "decimals": 18, + "status": "active", + "id": "0x1188d953aFC697C031851169EEf640F23ac8529C", + "links": [ + { + "name": "x", + "url": "https://x.com/bounce_finance" + }, + { + "name": "telegram", + "url": "https://t.me/bounce_finance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bounce-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1188d953aFC697C031851169EEf640F23ac8529C/logo.png b/blockchains/smartchain/assets/0x1188d953aFC697C031851169EEf640F23ac8529C/logo.png new file mode 100644 index 0000000000000..c05d45d42e9c1 Binary files /dev/null and b/blockchains/smartchain/assets/0x1188d953aFC697C031851169EEf640F23ac8529C/logo.png differ diff --git a/blockchains/smartchain/assets/0x11C0c93035d1302083eB09841042cFa582839A8C/info.json b/blockchains/smartchain/assets/0x11C0c93035d1302083eB09841042cFa582839A8C/info.json index 98809ea8251a2..d610459366238 100644 --- a/blockchains/smartchain/assets/0x11C0c93035d1302083eB09841042cFa582839A8C/info.json +++ b/blockchains/smartchain/assets/0x11C0c93035d1302083eB09841042cFa582839A8C/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/KaiKenShiba_Chat" }, { - "name": "twitter", - "url": "https://twitter.com/KaikenShiba" + "name": "x", + "url": "https://x.com/KaikenShiba" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x11a9E48860531ee43C6097192b28A45BA48e4444/info.json b/blockchains/smartchain/assets/0x11a9E48860531ee43C6097192b28A45BA48e4444/info.json new file mode 100644 index 0000000000000..f750431132f9a --- /dev/null +++ b/blockchains/smartchain/assets/0x11a9E48860531ee43C6097192b28A45BA48e4444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDKG", + "type": "BEP20", + "symbol": "FAKE USDKG", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x11a9E48860531ee43C6097192b28A45BA48e4444", + "explorer": "https://bscscan.com/token/0x11a9E48860531ee43C6097192b28A45BA48e4444", + "status": "spam", + "id": "0x11a9E48860531ee43C6097192b28A45BA48e4444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x11aC6aF070Fe1991a457c56FB85c577EFE57F0e4/info.json b/blockchains/smartchain/assets/0x11aC6aF070Fe1991a457c56FB85c577EFE57F0e4/info.json index f33ee1b2677e7..e5d8459bd4f77 100644 --- a/blockchains/smartchain/assets/0x11aC6aF070Fe1991a457c56FB85c577EFE57F0e4/info.json +++ b/blockchains/smartchain/assets/0x11aC6aF070Fe1991a457c56FB85c577EFE57F0e4/info.json @@ -22,8 +22,8 @@ "url": "https://t.me/dragonkingofficialchannel" }, { - "name": "twitter", - "url": "https://twitter.com/Dking_united99" + "name": "x", + "url": "https://x.com/Dking_united99" } ], "tags": [ diff --git a/blockchains/smartchain/assets/0x11b4E3311112B6726327aa85AbB65c6802Da8888/info.json b/blockchains/smartchain/assets/0x11b4E3311112B6726327aa85AbB65c6802Da8888/info.json new file mode 100644 index 0000000000000..50bcd55a17fa8 --- /dev/null +++ b/blockchains/smartchain/assets/0x11b4E3311112B6726327aa85AbB65c6802Da8888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tеthеr", + "type": "BEP20", + "symbol": "FAKE UЅⅮΤ", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x11b4E3311112B6726327aa85AbB65c6802Da8888", + "explorer": "https://bscscan.com/token/0x11b4E3311112B6726327aa85AbB65c6802Da8888", + "status": "spam", + "id": "0x11b4E3311112B6726327aa85AbB65c6802Da8888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x123458C167a371250d325Bd8B1ffF12C8AF692A7/info.json b/blockchains/smartchain/assets/0x123458C167a371250d325Bd8B1ffF12C8AF692A7/info.json index f732ccd54b31a..68c6e6b8db60e 100644 --- a/blockchains/smartchain/assets/0x123458C167a371250d325Bd8B1ffF12C8AF692A7/info.json +++ b/blockchains/smartchain/assets/0x123458C167a371250d325Bd8B1ffF12C8AF692A7/info.json @@ -10,8 +10,8 @@ "id": "0x123458C167a371250d325Bd8B1ffF12C8AF692A7", "links": [ { - "name": "twitter", - "url": "https://twitter.com/DRAC_Network" + "name": "x", + "url": "https://x.com/DRAC_Network" }, { "name": "github", @@ -45,4 +45,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x12819623921Be0F4d5ebfC12C75E6D08a1683080/info.json b/blockchains/smartchain/assets/0x12819623921Be0F4d5ebfC12C75E6D08a1683080/info.json new file mode 100644 index 0000000000000..9cbfd66bd7ec0 --- /dev/null +++ b/blockchains/smartchain/assets/0x12819623921Be0F4d5ebfC12C75E6D08a1683080/info.json @@ -0,0 +1,24 @@ +{ + "name": "Broccoli", + "website": "https://broccolibsc.com/", + "description": "Changpeng Zhao, the founder of Binance, revealed his dog’s name in an X post, sparking a wave of memecoins named after the canine.", + "explorer": "https://bscscan.com/token/0x12819623921be0f4d5ebfc12c75e6d08a1683080", + "type": "BEP20", + "symbol": "Broccoli", + "decimals": 18, + "status": "active", + "id": "0x12819623921Be0F4d5ebfC12C75E6D08a1683080", + "tags": [ + "memes" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/CZDog_Broccoli" + }, + { + "name": "telegram", + "url": "https://t.me/BroccoliOnBNB" + } + ] +} diff --git a/blockchains/smartchain/assets/0x12819623921Be0F4d5ebfC12C75E6D08a1683080/logo.png b/blockchains/smartchain/assets/0x12819623921Be0F4d5ebfC12C75E6D08a1683080/logo.png new file mode 100644 index 0000000000000..a459a8e1db915 Binary files /dev/null and b/blockchains/smartchain/assets/0x12819623921Be0F4d5ebfC12C75E6D08a1683080/logo.png differ diff --git a/blockchains/smartchain/assets/0x129385C4ACd0075e45A0C9a5177BdfEc9678A138/info.json b/blockchains/smartchain/assets/0x129385C4ACd0075e45A0C9a5177BdfEc9678A138/info.json index 02af1c7534447..2964537f26d17 100644 --- a/blockchains/smartchain/assets/0x129385C4ACd0075e45A0C9a5177BdfEc9678A138/info.json +++ b/blockchains/smartchain/assets/0x129385C4ACd0075e45A0C9a5177BdfEc9678A138/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/metakingsai" + "name": "x", + "url": "https://x.com/metakingsai" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/info.json b/blockchains/smartchain/assets/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/info.json new file mode 100644 index 0000000000000..56a0816b9f019 --- /dev/null +++ b/blockchains/smartchain/assets/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/info.json @@ -0,0 +1,25 @@ +{ + "name": "Fideum", + "website": "https://blockbank.ai/", + "description": "Fideum (previously blockbank) offers regulatory-compliant infrastructure tailored to the needs of financial institutions, banks, and SMEs. Its adaptable microservice architecture facilitates a wide range of financial services, enabling businesses to smoothly transition into the digital asset era.", + "explorer": "https://bscscan.com/token/0x1294f4183763743c7c9519Bec51773fb3aCD78FD", + "type": "BEP20", + "symbol": "FI", + "decimals": 18, + "status": "active", + "id": "0x1294f4183763743c7c9519Bec51773fb3aCD78FD", + "links": [ + { + "name": "telegram", + "url": "https://t.me/BlockBankApp" + }, + { + "name": "x", + "url": "https://x.com/BLOCKBANKapp" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fideum/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/logo.png b/blockchains/smartchain/assets/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/logo.png new file mode 100644 index 0000000000000..9939ad9e03215 Binary files /dev/null and b/blockchains/smartchain/assets/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/logo.png differ diff --git a/blockchains/smartchain/assets/0x12992613fDd35aBe95DEc5a4964331b1ee23B50d/info.json b/blockchains/smartchain/assets/0x12992613fDd35aBe95DEc5a4964331b1ee23B50d/info.json new file mode 100644 index 0000000000000..2f8d0ec245819 --- /dev/null +++ b/blockchains/smartchain/assets/0x12992613fDd35aBe95DEc5a4964331b1ee23B50d/info.json @@ -0,0 +1,24 @@ +{ + "name": "Berkshire Hathaway tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Berkshire Hathaway tokenized stock (xStock) (BRK.BX) is a cryptocurrency and operates on the Solana platform. Berkshire Hathaway tokenized stock (xStock) has a current supply of 1,400. The last known price of Berkshire Hathaway tokenized stock (xStock) is 498.90939725 USD and is down -0.01 over the last 24 hours. It is currently trading on 1 active market(s) with $3,195.32 traded over the last 24 hours. More information can be found at https://xstocks.fi.", + "explorer": "https://bscscan.com/token/0x12992613fDd35aBe95DEc5a4964331b1ee23B50d", + "type": "BEP20", + "symbol": "BRK.BX", + "decimals": 18, + "status": "active", + "id": "0x12992613fDd35aBe95DEc5a4964331b1ee23B50d", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/berkshire-hathaway-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x12992613fDd35aBe95DEc5a4964331b1ee23B50d/logo.png b/blockchains/smartchain/assets/0x12992613fDd35aBe95DEc5a4964331b1ee23B50d/logo.png new file mode 100644 index 0000000000000..1add0de469f53 Binary files /dev/null and b/blockchains/smartchain/assets/0x12992613fDd35aBe95DEc5a4964331b1ee23B50d/logo.png differ diff --git a/blockchains/smartchain/assets/0x12B4356C65340Fb02cdff01293F95FEBb1512F3b/info.json b/blockchains/smartchain/assets/0x12B4356C65340Fb02cdff01293F95FEBb1512F3b/info.json new file mode 100644 index 0000000000000..0da51ddc10213 --- /dev/null +++ b/blockchains/smartchain/assets/0x12B4356C65340Fb02cdff01293F95FEBb1512F3b/info.json @@ -0,0 +1,20 @@ +{ + "name": "Broccoli", + "website": "https://cointelegraph.com/news/cz-dog-name-broccoli-memecoin-frenzy", + "description": "Changpeng Zhao, the founder of Binance, revealed his dog’s name in an X post, sparking a wave of memecoins named after the canine.", + "explorer": "https://bscscan.com/token/0x12B4356C65340Fb02cdff01293F95FEBb1512F3b", + "type": "BEP20", + "symbol": "Broccoli", + "decimals": 18, + "status": "active", + "id": "0x12B4356C65340Fb02cdff01293F95FEBb1512F3b", + "tags": [ + "memes" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/FirstBroccoli" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x12B4356C65340Fb02cdff01293F95FEBb1512F3b/logo.png b/blockchains/smartchain/assets/0x12B4356C65340Fb02cdff01293F95FEBb1512F3b/logo.png new file mode 100644 index 0000000000000..420a5f8810282 Binary files /dev/null and b/blockchains/smartchain/assets/0x12B4356C65340Fb02cdff01293F95FEBb1512F3b/logo.png differ diff --git a/blockchains/smartchain/assets/0x12B7aDC48416A103F63E7e6210f62C81dfB91fD0/info.json b/blockchains/smartchain/assets/0x12B7aDC48416A103F63E7e6210f62C81dfB91fD0/info.json new file mode 100644 index 0000000000000..9410cfd893640 --- /dev/null +++ b/blockchains/smartchain/assets/0x12B7aDC48416A103F63E7e6210f62C81dfB91fD0/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares MSCI South Korea ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "EWYon", + "decimals": 18, + "description": "EWYon is the Ondo Tokenized version of the iShares MSCI South Korea ETF, giving tokenholders economic exposure similar to holding EWY and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x12B7aDC48416A103F63E7e6210f62C81dfB91fD0", + "status": "active", + "id": "0x12B7aDC48416A103F63E7e6210f62C81dfB91fD0", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-msci-south-korea-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x12B7aDC48416A103F63E7e6210f62C81dfB91fD0/logo.png b/blockchains/smartchain/assets/0x12B7aDC48416A103F63E7e6210f62C81dfB91fD0/logo.png new file mode 100644 index 0000000000000..2ce033b091a15 Binary files /dev/null and b/blockchains/smartchain/assets/0x12B7aDC48416A103F63E7e6210f62C81dfB91fD0/logo.png differ diff --git a/blockchains/smartchain/assets/0x12BB890508c125661E03b09EC06E404bc9289040/info.json b/blockchains/smartchain/assets/0x12BB890508c125661E03b09EC06E404bc9289040/info.json index 078c54eda380d..6dd3cd7ae6b4a 100644 --- a/blockchains/smartchain/assets/0x12BB890508c125661E03b09EC06E404bc9289040/info.json +++ b/blockchains/smartchain/assets/0x12BB890508c125661E03b09EC06E404bc9289040/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/radiocaca/radio-caca" }, { - "name": "twitter", - "url": "https://twitter.com/RadioCacaNFT" + "name": "x", + "url": "https://x.com/RadioCacaNFT" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0x12Da2f2761038486271C99DA7e0FB4413e2B5E38/info.json b/blockchains/smartchain/assets/0x12Da2f2761038486271C99DA7e0FB4413e2B5E38/info.json index 5d33c6e1f03ac..0df63ed5a71c0 100644 --- a/blockchains/smartchain/assets/0x12Da2f2761038486271C99DA7e0FB4413e2B5E38/info.json +++ b/blockchains/smartchain/assets/0x12Da2f2761038486271C99DA7e0FB4413e2B5E38/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/NFTBlackMarket" }, { - "name": "twitter", - "url": "https://twitter.com/NFT_BlackMarket" + "name": "x", + "url": "https://x.com/NFT_BlackMarket" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x12b83d77a606D8f5c4CE29dfFdb592C523364995/info.json b/blockchains/smartchain/assets/0x12b83d77a606D8f5c4CE29dfFdb592C523364995/info.json index c4170bdd17335..ec6731a444ecb 100644 --- a/blockchains/smartchain/assets/0x12b83d77a606D8f5c4CE29dfFdb592C523364995/info.json +++ b/blockchains/smartchain/assets/0x12b83d77a606D8f5c4CE29dfFdb592C523364995/info.json @@ -21,8 +21,8 @@ "url": "https://coinmarketcap.com/currencies/baby-yooshi/" }, { - "name": "twitter", - "url": "https://twitter.com/baby_yooshi" + "name": "x", + "url": "https://x.com/baby_yooshi" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x1337a0617225edE6CcC5222DB205fA719cC28888/info.json b/blockchains/smartchain/assets/0x1337a0617225edE6CcC5222DB205fA719cC28888/info.json new file mode 100644 index 0000000000000..f5a89f30d7393 --- /dev/null +++ b/blockchains/smartchain/assets/0x1337a0617225edE6CcC5222DB205fA719cC28888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether USD", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x1337a0617225edE6CcC5222DB205fA719cC28888", + "explorer": "https://bscscan.com/token/0x1337a0617225edE6CcC5222DB205fA719cC28888", + "status": "spam", + "id": "0x1337a0617225edE6CcC5222DB205fA719cC28888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x133Bb423d9248a336D2b3086b8F44A7DbFF3a13C/info.json b/blockchains/smartchain/assets/0x133Bb423d9248a336D2b3086b8F44A7DbFF3a13C/info.json index 23710406d9af9..db4a229004663 100644 --- a/blockchains/smartchain/assets/0x133Bb423d9248a336D2b3086b8F44A7DbFF3a13C/info.json +++ b/blockchains/smartchain/assets/0x133Bb423d9248a336D2b3086b8F44A7DbFF3a13C/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/sil_finance" }, { - "name": "twitter", - "url": "https://twitter.com/Sil_Finance" + "name": "x", + "url": "https://x.com/Sil_Finance" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9/info.json b/blockchains/smartchain/assets/0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9/info.json index 52cdc7da27fd1..58a03890f560f 100644 --- a/blockchains/smartchain/assets/0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9/info.json +++ b/blockchains/smartchain/assets/0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9/info.json @@ -7,6 +7,6 @@ "type": "BEP20", "symbol": "AVA", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9/logo.png b/blockchains/smartchain/assets/0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9/logo.png deleted file mode 100644 index f0cfeef3b5e97..0000000000000 Binary files a/blockchains/smartchain/assets/0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x136BFcdec5DB31b565052451AD806014ab9F2b38/info.json b/blockchains/smartchain/assets/0x136BFcdec5DB31b565052451AD806014ab9F2b38/info.json index e5b937a7a8992..c39502e425e8b 100644 --- a/blockchains/smartchain/assets/0x136BFcdec5DB31b565052451AD806014ab9F2b38/info.json +++ b/blockchains/smartchain/assets/0x136BFcdec5DB31b565052451AD806014ab9F2b38/info.json @@ -10,8 +10,8 @@ "id": "0x136BFcdec5DB31b565052451AD806014ab9F2b38", "links": [ { - "name": "twitter", - "url": "https://twitter.com/candyladbsc" + "name": "x", + "url": "https://x.com/candyladbsc" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x1382A2Fd1b9F5607D956b68491babA00e21bE472/info.json b/blockchains/smartchain/assets/0x1382A2Fd1b9F5607D956b68491babA00e21bE472/info.json index 05795d23c9958..34635ba3bf023 100644 --- a/blockchains/smartchain/assets/0x1382A2Fd1b9F5607D956b68491babA00e21bE472/info.json +++ b/blockchains/smartchain/assets/0x1382A2Fd1b9F5607D956b68491babA00e21bE472/info.json @@ -10,8 +10,8 @@ "id": "0x1382A2Fd1b9F5607D956b68491babA00e21bE472", "links": [ { - "name": "twitter", - "url": "https://twitter.com/bamboodaoio" + "name": "x", + "url": "https://x.com/bamboodaoio" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x138ED6833ff4E8811E1FEa0D005E13726c8886F9/info.json b/blockchains/smartchain/assets/0x138ED6833ff4E8811E1FEa0D005E13726c8886F9/info.json new file mode 100644 index 0000000000000..86d4617cdac24 --- /dev/null +++ b/blockchains/smartchain/assets/0x138ED6833ff4E8811E1FEa0D005E13726c8886F9/info.json @@ -0,0 +1,24 @@ +{ + "name": "Snowflake (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "SNOWon is the Ondo Tokenized version of Snowflake, giving tokenholders economic exposure similar to holding SNOW and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x138ed6833ff4e8811e1fea0d005e13726c8886f9", + "type": "BEP20", + "symbol": "SNOWon", + "decimals": 18, + "status": "active", + "id": "0x138ED6833ff4E8811E1FEa0D005E13726c8886F9", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/snowflake-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x138ED6833ff4E8811E1FEa0D005E13726c8886F9/logo.png b/blockchains/smartchain/assets/0x138ED6833ff4E8811E1FEa0D005E13726c8886F9/logo.png new file mode 100644 index 0000000000000..f960a127a7b8a Binary files /dev/null and b/blockchains/smartchain/assets/0x138ED6833ff4E8811E1FEa0D005E13726c8886F9/logo.png differ diff --git a/blockchains/smartchain/assets/0x13958e1eb63dFB8540Eaf6ed7DcbBc1A60FD52AF/info.json b/blockchains/smartchain/assets/0x13958e1eb63dFB8540Eaf6ed7DcbBc1A60FD52AF/info.json index f9bd80d6c9c3b..948a319b87daa 100644 --- a/blockchains/smartchain/assets/0x13958e1eb63dFB8540Eaf6ed7DcbBc1A60FD52AF/info.json +++ b/blockchains/smartchain/assets/0x13958e1eb63dFB8540Eaf6ed7DcbBc1A60FD52AF/info.json @@ -10,8 +10,8 @@ "id": "0x13958e1eb63dFB8540Eaf6ed7DcbBc1A60FD52AF", "links": [ { - "name": "twitter", - "url": "https://twitter.com/FrenchieToken" + "name": "x", + "url": "https://x.com/FrenchieToken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x13969BbEEce18Da1354561E9B59Dc2937Ef5C95C/info.json b/blockchains/smartchain/assets/0x13969BbEEce18Da1354561E9B59Dc2937Ef5C95C/info.json index acca13f5f3636..8b784ca628e35 100644 --- a/blockchains/smartchain/assets/0x13969BbEEce18Da1354561E9B59Dc2937Ef5C95C/info.json +++ b/blockchains/smartchain/assets/0x13969BbEEce18Da1354561E9B59Dc2937Ef5C95C/info.json @@ -10,8 +10,8 @@ "id": "0x13969BbEEce18Da1354561E9B59Dc2937Ef5C95C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Safesex_token/" + "name": "x", + "url": "https://x.com/Safesex_token/" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x13Ab6739368a4e4abf24695bf52959224367391f/info.json b/blockchains/smartchain/assets/0x13Ab6739368a4e4abf24695bf52959224367391f/info.json index ae57e5fb816c9..a329e2659e222 100644 --- a/blockchains/smartchain/assets/0x13Ab6739368a4e4abf24695bf52959224367391f/info.json +++ b/blockchains/smartchain/assets/0x13Ab6739368a4e4abf24695bf52959224367391f/info.json @@ -22,8 +22,8 @@ "url": "https://youtube.com/yieldguildgames" }, { - "name": "twitter", - "url": "https://twitter.com/YieldGuild" + "name": "x", + "url": "https://x.com/YieldGuild" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x13Ad2D31925490B0E282D51AC1aE744f1da22C77/info.json b/blockchains/smartchain/assets/0x13Ad2D31925490B0E282D51AC1aE744f1da22C77/info.json new file mode 100644 index 0000000000000..9caf6674cec98 --- /dev/null +++ b/blockchains/smartchain/assets/0x13Ad2D31925490B0E282D51AC1aE744f1da22C77/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT BCGame USD", + "type": "BEP20", + "symbol": "HONEYPOT BCD", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x13Ad2D31925490B0E282D51AC1aE744f1da22C77", + "explorer": "https://bscscan.com/token/0x13Ad2D31925490B0E282D51AC1aE744f1da22C77", + "status": "spam", + "id": "0x13Ad2D31925490B0E282D51AC1aE744f1da22C77" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x13DfE44c7B461222e10597E517e4485Ff4766582/info.json b/blockchains/smartchain/assets/0x13DfE44c7B461222e10597E517e4485Ff4766582/info.json index 850c2f4d80de8..820ee906fc383 100644 --- a/blockchains/smartchain/assets/0x13DfE44c7B461222e10597E517e4485Ff4766582/info.json +++ b/blockchains/smartchain/assets/0x13DfE44c7B461222e10597E517e4485Ff4766582/info.json @@ -10,8 +10,8 @@ "id": "0x13DfE44c7B461222e10597E517e4485Ff4766582", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MoonNation0" + "name": "x", + "url": "https://x.com/MoonNation0" }, { "name": "telegram", @@ -26,4 +26,4 @@ "gamefi", "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x13E1070E3a388e53Ec35480Ff494538f9FFc5b8D/info.json b/blockchains/smartchain/assets/0x13E1070E3a388e53Ec35480Ff494538f9FFc5b8D/info.json index cfa833a701985..001cddb93cb4e 100644 --- a/blockchains/smartchain/assets/0x13E1070E3a388e53Ec35480Ff494538f9FFc5b8D/info.json +++ b/blockchains/smartchain/assets/0x13E1070E3a388e53Ec35480Ff494538f9FFc5b8D/info.json @@ -10,8 +10,8 @@ "id": "0x13E1070E3a388e53Ec35480Ff494538f9FFc5b8D", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MyBricksFinance" + "name": "x", + "url": "https://x.com/MyBricksFinance" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x13a5c811093dd001C328b59a0CC9deC88951F042/info.json b/blockchains/smartchain/assets/0x13a5c811093dd001C328b59a0CC9deC88951F042/info.json new file mode 100644 index 0000000000000..6f25dd5ada128 --- /dev/null +++ b/blockchains/smartchain/assets/0x13a5c811093dd001C328b59a0CC9deC88951F042/info.json @@ -0,0 +1,24 @@ +{ + "name": "Panther AI", + "type": "BEP20", + "symbol": "PAI", + "decimals": 18, + "website": "https://pantherai.app/", + "description": "Experience the power of community ownership, global governance, and explore infinite use cases within the Panther AI ecosystem.", + "explorer": "https://bscscan.com/token/0x13a5c811093dd001C328b59a0CC9deC88951F042", + "status": "active", + "id": "0x13a5c811093dd001C328b59a0CC9deC88951F042", + "links": [ + { + "name": "x", + "url": "https://x.com/pantherappai" + }, + { + "name": "telegram", + "url": "https://t.me/PantherAiapp" + } + ], + "tags": [ + "binance-peg" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x13a5c811093dd001C328b59a0CC9deC88951F042/logo.png b/blockchains/smartchain/assets/0x13a5c811093dd001C328b59a0CC9deC88951F042/logo.png new file mode 100644 index 0000000000000..8bc06a90614e9 Binary files /dev/null and b/blockchains/smartchain/assets/0x13a5c811093dd001C328b59a0CC9deC88951F042/logo.png differ diff --git a/blockchains/smartchain/assets/0x13aAC25C16a8c1FA93D78C4026CEE7166403A595/info.json b/blockchains/smartchain/assets/0x13aAC25C16a8c1FA93D78C4026CEE7166403A595/info.json new file mode 100644 index 0000000000000..493e2c5c64fd2 --- /dev/null +++ b/blockchains/smartchain/assets/0x13aAC25C16a8c1FA93D78C4026CEE7166403A595/info.json @@ -0,0 +1,32 @@ +{ + "name": "Moriarty", + "type": "BEP20", + "symbol": "///M3GA", + "decimals": 18, + "website": "https://m3ga.group", + "description": "My first coin... Professor Moriarty", + "explorer": "https://bscscan.com/token/0x13aAC25C16a8c1FA93D78C4026CEE7166403A595", + "status": "active", + "id": "0x13aAC25C16a8c1FA93D78C4026CEE7166403A595", + "links": [ + { + "name": "x", + "url": "https://x.com/Moriarty_M3GA" + }, + { + "name": "github", + "url": "https://github.com/Moriartycoin" + }, + { + "name": "telegram", + "url": "https://t.me/m3ga_coin" + }, + { + "name": "docs", + "url": "https://m3ga.group/whitepepar" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x13aAC25C16a8c1FA93D78C4026CEE7166403A595/logo.png b/blockchains/smartchain/assets/0x13aAC25C16a8c1FA93D78C4026CEE7166403A595/logo.png new file mode 100644 index 0000000000000..6b7db50243b61 Binary files /dev/null and b/blockchains/smartchain/assets/0x13aAC25C16a8c1FA93D78C4026CEE7166403A595/logo.png differ diff --git a/blockchains/smartchain/assets/0x14016E85a25aeb13065688cAFB43044C2ef86784/info.json b/blockchains/smartchain/assets/0x14016E85a25aeb13065688cAFB43044C2ef86784/info.json index 305717929a76f..311782f638f75 100644 --- a/blockchains/smartchain/assets/0x14016E85a25aeb13065688cAFB43044C2ef86784/info.json +++ b/blockchains/smartchain/assets/0x14016E85a25aeb13065688cAFB43044C2ef86784/info.json @@ -1,9 +1,9 @@ { - "name": "BNB pegged TrueUSD", + "name": "BNB pegged TrueUSD Old", "website": "https://www.trueusd.com/", "description": "BNB pegged TrueUSD (TUSDP BEP20) is a token issued by Binance on Smart Chain; its price is pegged to TrueUSD (TUSD ERC20) at a ratio of 1:1.", "explorer": "https://bscscan.com/token/0x14016e85a25aeb13065688cafb43044c2ef86784", - "symbol": "TUSD", + "symbol": "TUSDOLD", "type": "BEP20", "decimals": 18, "status": "active", @@ -18,8 +18,8 @@ "url": "https://github.com/trusttoken/TrueUSD" }, { - "name": "twitter", - "url": "https://twitter.com/tusd_official" + "name": "x", + "url": "https://x.com/tusd_official" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x1415E784282e11F3972D98b28A4A07f89b82170d/info.json b/blockchains/smartchain/assets/0x1415E784282e11F3972D98b28A4A07f89b82170d/info.json new file mode 100644 index 0000000000000..a373e637847f7 --- /dev/null +++ b/blockchains/smartchain/assets/0x1415E784282e11F3972D98b28A4A07f89b82170d/info.json @@ -0,0 +1,14 @@ +{ + "name": "Queenyi Mubarak", + "type": "BEP20", + "symbol": "QMubarak", + "decimals": 18, + "website": "https://four.meme/token/0x1415E784282e11F3972D98b28A4A07f89b82170d", + "description": "Hello everyone, my name is Queenyi Mubarak", + "explorer": "https://bscscan.com/token/0x1415E784282e11F3972D98b28A4A07f89b82170d", + "status": "active", + "id": "0x1415E784282e11F3972D98b28A4A07f89b82170d", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1415E784282e11F3972D98b28A4A07f89b82170d/logo.png b/blockchains/smartchain/assets/0x1415E784282e11F3972D98b28A4A07f89b82170d/logo.png new file mode 100644 index 0000000000000..c55e526089787 Binary files /dev/null and b/blockchains/smartchain/assets/0x1415E784282e11F3972D98b28A4A07f89b82170d/logo.png differ diff --git a/blockchains/smartchain/assets/0x1446f3CEdf4d86a9399E49f7937766E6De2A3AAB/info.json b/blockchains/smartchain/assets/0x1446f3CEdf4d86a9399E49f7937766E6De2A3AAB/info.json index 3408a0fb6f250..0da26319c2d03 100644 --- a/blockchains/smartchain/assets/0x1446f3CEdf4d86a9399E49f7937766E6De2A3AAB/info.json +++ b/blockchains/smartchain/assets/0x1446f3CEdf4d86a9399E49f7937766E6De2A3AAB/info.json @@ -10,8 +10,8 @@ "id": "0x1446f3CEdf4d86a9399E49f7937766E6De2A3AAB", "links": [ { - "name": "twitter", - "url": "https://twitter.com/KingDefi2" + "name": "x", + "url": "https://x.com/KingDefi2" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x147625C6300E013f5cD528633Fd1f22558C78888/info.json b/blockchains/smartchain/assets/0x147625C6300E013f5cD528633Fd1f22558C78888/info.json new file mode 100644 index 0000000000000..ca8893d02dde8 --- /dev/null +++ b/blockchains/smartchain/assets/0x147625C6300E013f5cD528633Fd1f22558C78888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Ε⁣thеrе⁤um", + "type": "BEP20", + "symbol": "FAKE ЕТΗ", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x147625C6300E013f5cD528633Fd1f22558C78888", + "explorer": "https://bscscan.com/token/0x147625C6300E013f5cD528633Fd1f22558C78888", + "status": "spam", + "id": "0x147625C6300E013f5cD528633Fd1f22558C78888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1476e96FAdb37668d7680921297e2ab98Ec36c2F/info.json b/blockchains/smartchain/assets/0x1476e96FAdb37668d7680921297e2ab98Ec36c2F/info.json index ddf8de7ee4fe0..1fb910ee9fd09 100644 --- a/blockchains/smartchain/assets/0x1476e96FAdb37668d7680921297e2ab98Ec36c2F/info.json +++ b/blockchains/smartchain/assets/0x1476e96FAdb37668d7680921297e2ab98Ec36c2F/info.json @@ -10,8 +10,8 @@ "id": "0x1476e96FAdb37668d7680921297e2ab98Ec36c2F", "links": [ { - "name": "twitter", - "url": "https://twitter.com/rlokirocket" + "name": "x", + "url": "https://x.com/rlokirocket" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json b/blockchains/smartchain/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json new file mode 100644 index 0000000000000..e6ad8a3ed5fe4 --- /dev/null +++ b/blockchains/smartchain/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json @@ -0,0 +1,25 @@ +{ + "name": "CyberConnect", + "type": "BEP20", + "symbol": "CYBER", + "decimals": 18, + "website": "https://cyberconnect.me/", + "description": "CyberConnect is a Web3 social network that enables developers to create social applications empowering users to own their digital identity, content, connections, and interactions.", + "explorer": "https://bscscan.com/token/0x14778860e937f509e651192a90589de711fb88a9", + "status": "active", + "id": "0x14778860E937f509e651192a90589dE711Fb88a9", + "links": [ + { + "name": "x", + "url": "https://x.com/CyberConnectHQ" + }, + { + "name": "github", + "url": "https://github.com/cyberconnecthq" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cyberconnect/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png b/blockchains/smartchain/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png new file mode 100644 index 0000000000000..b26b7b808fb16 Binary files /dev/null and b/blockchains/smartchain/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png differ diff --git a/blockchains/smartchain/assets/0x147E07976E1ae78287c33aAFAab87760d32E50A5/info.json b/blockchains/smartchain/assets/0x147E07976E1ae78287c33aAFAab87760d32E50A5/info.json index b068e0c960fe1..6cef8408d740a 100644 --- a/blockchains/smartchain/assets/0x147E07976E1ae78287c33aAFAab87760d32E50A5/info.json +++ b/blockchains/smartchain/assets/0x147E07976E1ae78287c33aAFAab87760d32E50A5/info.json @@ -10,8 +10,8 @@ "id": "0x147E07976E1ae78287c33aAFAab87760d32E50A5", "links": [ { - "name": "twitter", - "url": "https://twitter.com/dexiratoken" + "name": "x", + "url": "https://x.com/dexiratoken" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x148bD6BC0F71f8F4EF13C7b1c20C14BeBECE8888/info.json b/blockchains/smartchain/assets/0x148bD6BC0F71f8F4EF13C7b1c20C14BeBECE8888/info.json new file mode 100644 index 0000000000000..bf3d220c0082e --- /dev/null +++ b/blockchains/smartchain/assets/0x148bD6BC0F71f8F4EF13C7b1c20C14BeBECE8888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDT", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x148bD6BC0F71f8F4EF13C7b1c20C14BeBECE8888", + "explorer": "https://bscscan.com/token/0x148bD6BC0F71f8F4EF13C7b1c20C14BeBECE8888", + "status": "spam", + "id": "0x148bD6BC0F71f8F4EF13C7b1c20C14BeBECE8888" +} diff --git a/blockchains/smartchain/assets/0x14940169E2Db1595CDD3CACd30DECC5bbB4d9f19/info.json b/blockchains/smartchain/assets/0x14940169E2Db1595CDD3CACd30DECC5bbB4d9f19/info.json index 1dedf7c36e8c9..2d0ebbba9448a 100644 --- a/blockchains/smartchain/assets/0x14940169E2Db1595CDD3CACd30DECC5bbB4d9f19/info.json +++ b/blockchains/smartchain/assets/0x14940169E2Db1595CDD3CACd30DECC5bbB4d9f19/info.json @@ -10,8 +10,8 @@ "id": "0x14940169E2Db1595CDD3CACd30DECC5bbB4d9f19", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Santa_Floki" + "name": "x", + "url": "https://x.com/Santa_Floki" }, { "name": "telegram", @@ -21,4 +21,4 @@ "tags": [ "nft" ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x14B13E06f75E1F0Fd51ca2E699589Ef398E10F4C/info.json b/blockchains/smartchain/assets/0x14B13E06f75E1F0Fd51ca2E699589Ef398E10F4C/info.json index ff0a42e354f5c..2bb1dea89b339 100644 --- a/blockchains/smartchain/assets/0x14B13E06f75E1F0Fd51ca2E699589Ef398E10F4C/info.json +++ b/blockchains/smartchain/assets/0x14B13E06f75E1F0Fd51ca2E699589Ef398E10F4C/info.json @@ -10,8 +10,8 @@ "id": "0x14B13E06f75E1F0Fd51ca2E699589Ef398E10F4C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/IDMToken" + "name": "x", + "url": "https://x.com/IDMToken" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x14E8BCd053e68A22f239b9e9bEaD87932465D245/info.json b/blockchains/smartchain/assets/0x14E8BCd053e68A22f239b9e9bEaD87932465D245/info.json index e87c91fa87dea..77e9b9aa97bc2 100644 --- a/blockchains/smartchain/assets/0x14E8BCd053e68A22f239b9e9bEaD87932465D245/info.json +++ b/blockchains/smartchain/assets/0x14E8BCd053e68A22f239b9e9bEaD87932465D245/info.json @@ -10,8 +10,8 @@ "id": "0x14E8BCd053e68A22f239b9e9bEaD87932465D245", "links": [ { - "name": "twitter", - "url": "https://twitter.com/valuefinance_" + "name": "x", + "url": "https://x.com/valuefinance_" }, { "name": "github", @@ -42,4 +42,4 @@ "staking", "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x14aF0e9D51d9FE25c1675cC580409b640286167F/info.json b/blockchains/smartchain/assets/0x14aF0e9D51d9FE25c1675cC580409b640286167F/info.json index 095ee14c770f9..ce39ac7df20c7 100644 --- a/blockchains/smartchain/assets/0x14aF0e9D51d9FE25c1675cC580409b640286167F/info.json +++ b/blockchains/smartchain/assets/0x14aF0e9D51d9FE25c1675cC580409b640286167F/info.json @@ -10,8 +10,8 @@ "id": "0x14aF0e9D51d9FE25c1675cC580409b640286167F", "links": [ { - "name": "twitter", - "url": "https://twitter.com/boomshiba" + "name": "x", + "url": "https://x.com/boomshiba" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x14c358b573a4cE45364a3DBD84BBb4Dae87af034/info.json b/blockchains/smartchain/assets/0x14c358b573a4cE45364a3DBD84BBb4Dae87af034/info.json index 2bff106452593..18b6bce4d763b 100644 --- a/blockchains/smartchain/assets/0x14c358b573a4cE45364a3DBD84BBb4Dae87af034/info.json +++ b/blockchains/smartchain/assets/0x14c358b573a4cE45364a3DBD84BBb4Dae87af034/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/dungeonswap" }, { - "name": "twitter", - "url": "https://twitter.com/DungeonSwap" + "name": "x", + "url": "https://x.com/DungeonSwap" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x1501EC83FFEf405B4331CC4f73277a40fb0C627d/info.json b/blockchains/smartchain/assets/0x1501EC83FFEf405B4331CC4f73277a40fb0C627d/info.json new file mode 100644 index 0000000000000..e4ac7e86b4f9c --- /dev/null +++ b/blockchains/smartchain/assets/0x1501EC83FFEf405B4331CC4f73277a40fb0C627d/info.json @@ -0,0 +1,24 @@ +{ + "name": "Marvell Technology (Ondo)", + "website": "https://ondo.finance/", + "description": "MRVLon is the Ondo Tokenized version of Marvell Technology, giving tokenholders economic exposure similar to holding MRVL and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x1501ec83ffef405b4331cc4f73277a40fb0c627d", + "type": "BEP20", + "symbol": "MRVLon", + "decimals": 18, + "status": "active", + "id": "0x1501EC83FFEf405B4331CC4f73277a40fb0C627d", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/marvell-technology-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1501EC83FFEf405B4331CC4f73277a40fb0C627d/logo.png b/blockchains/smartchain/assets/0x1501EC83FFEf405B4331CC4f73277a40fb0C627d/logo.png new file mode 100644 index 0000000000000..d5eb73f18951d Binary files /dev/null and b/blockchains/smartchain/assets/0x1501EC83FFEf405B4331CC4f73277a40fb0C627d/logo.png differ diff --git a/blockchains/smartchain/assets/0x15059c599C16Fd8f70B633Ade165502D6402CD49/info.json b/blockchains/smartchain/assets/0x15059c599C16Fd8f70B633Ade165502D6402CD49/info.json new file mode 100644 index 0000000000000..0cb690977e5ed --- /dev/null +++ b/blockchains/smartchain/assets/0x15059c599C16Fd8f70B633Ade165502D6402CD49/info.json @@ -0,0 +1,24 @@ +{ + "name": "Linde tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Linde xStock (LINx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. LINx tracks the price of Linde plc (the underlying). LINx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Linde plc, whilst maintaining the benefits of blockchain technology. Key Benefits Linde is a global leader in industrial gases and engineering, offering a wide range of solutions, technologies, and services to various industries.", + "explorer": "https://bscscan.com/token/0x15059c599C16Fd8f70B633Ade165502D6402CD49", + "type": "BEP20", + "symbol": "LINX", + "decimals": 18, + "status": "active", + "id": "0x15059c599C16Fd8f70B633Ade165502D6402CD49", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/linde-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x15059c599C16Fd8f70B633Ade165502D6402CD49/logo.png b/blockchains/smartchain/assets/0x15059c599C16Fd8f70B633Ade165502D6402CD49/logo.png new file mode 100644 index 0000000000000..e9f3bc929d831 Binary files /dev/null and b/blockchains/smartchain/assets/0x15059c599C16Fd8f70B633Ade165502D6402CD49/logo.png differ diff --git a/blockchains/smartchain/assets/0x151B1e2635A717bcDc836ECd6FbB62B674FE3E1D/info.json b/blockchains/smartchain/assets/0x151B1e2635A717bcDc836ECd6FbB62B674FE3E1D/info.json index ea520c96c5974..7b354e581cf6b 100644 --- a/blockchains/smartchain/assets/0x151B1e2635A717bcDc836ECd6FbB62B674FE3E1D/info.json +++ b/blockchains/smartchain/assets/0x151B1e2635A717bcDc836ECd6FbB62B674FE3E1D/info.json @@ -11,8 +11,8 @@ "id": "0x151B1e2635A717bcDc836ECd6FbB62B674FE3E1D", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VenusProtocol" + "name": "x", + "url": "https://x.com/VenusProtocol" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x1529642Cd0075d3DA049aA43005fdfaBCa54a070/info.json b/blockchains/smartchain/assets/0x1529642Cd0075d3DA049aA43005fdfaBCa54a070/info.json index b89e2aa513a43..b667d59b8f184 100644 --- a/blockchains/smartchain/assets/0x1529642Cd0075d3DA049aA43005fdfaBCa54a070/info.json +++ b/blockchains/smartchain/assets/0x1529642Cd0075d3DA049aA43005fdfaBCa54a070/info.json @@ -10,8 +10,8 @@ "id": "0x1529642Cd0075d3DA049aA43005fdfaBCa54a070", "links": [ { - "name": "twitter", - "url": "https://twitter.com/catecoinbaby" + "name": "x", + "url": "https://x.com/catecoinbaby" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x154ECeB42679ac155EeF18820dE2Be75699263A8/info.json b/blockchains/smartchain/assets/0x154ECeB42679ac155EeF18820dE2Be75699263A8/info.json index 25cf593a201d2..8f8d52741c835 100644 --- a/blockchains/smartchain/assets/0x154ECeB42679ac155EeF18820dE2Be75699263A8/info.json +++ b/blockchains/smartchain/assets/0x154ECeB42679ac155EeF18820dE2Be75699263A8/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/MamyShibaInuGithub/" }, { - "name": "twitter", - "url": "https://twitter.com/MamyShibaInu/" + "name": "x", + "url": "https://x.com/MamyShibaInu/" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x155040625D7ae3e9caDA9a73E3E44f76D3Ed1409/info.json b/blockchains/smartchain/assets/0x155040625D7ae3e9caDA9a73E3E44f76D3Ed1409/info.json index 786a37022bd81..ae65937c11158 100644 --- a/blockchains/smartchain/assets/0x155040625D7ae3e9caDA9a73E3E44f76D3Ed1409/info.json +++ b/blockchains/smartchain/assets/0x155040625D7ae3e9caDA9a73E3E44f76D3Ed1409/info.json @@ -6,12 +6,12 @@ "website": "https://revomon.io/", "description": "Revomon is an exciting online RPG that combines an immersive virtual reality experience with groundbreaking NFT blockchain technology.", "explorer": "https://bscscan.com/token/0x155040625D7ae3e9caDA9a73E3E44f76D3Ed1409", - "status": "active", + "status": "abandoned", "id": "0x155040625D7ae3e9caDA9a73E3E44f76D3Ed1409", "links": [ { - "name": "twitter", - "url": "https://twitter.com/RevomonVR" + "name": "x", + "url": "https://x.com/RevomonVR" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x15580092796f69825CFf4738Cac55D05D41eaa42/info.json b/blockchains/smartchain/assets/0x15580092796f69825CFf4738Cac55D05D41eaa42/info.json new file mode 100644 index 0000000000000..bfe2d23bd7cf7 --- /dev/null +++ b/blockchains/smartchain/assets/0x15580092796f69825CFf4738Cac55D05D41eaa42/info.json @@ -0,0 +1,24 @@ +{ + "name": "abrdn Physical Precious Metals Basket Shares ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "GLTRon", + "decimals": 18, + "description": "GLTRon is the Ondo Tokenized version of the abrdn Physical Precious Metals Basket Shares ETF, giving tokenholders economic exposure similar to holding GLTR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x15580092796f69825CFf4738Cac55D05D41eaa42", + "status": "active", + "id": "0x15580092796f69825CFf4738Cac55D05D41eaa42", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/abrdn-physical-precious-metals-basket-shares-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x15580092796f69825CFf4738Cac55D05D41eaa42/logo.png b/blockchains/smartchain/assets/0x15580092796f69825CFf4738Cac55D05D41eaa42/logo.png new file mode 100644 index 0000000000000..a22bc2999905d Binary files /dev/null and b/blockchains/smartchain/assets/0x15580092796f69825CFf4738Cac55D05D41eaa42/logo.png differ diff --git a/blockchains/smartchain/assets/0x156ab3346823B651294766e23e6Cf87254d68962/info.json b/blockchains/smartchain/assets/0x156ab3346823B651294766e23e6Cf87254d68962/info.json index 0bf04a4de1ce8..242a6c0b9e53b 100644 --- a/blockchains/smartchain/assets/0x156ab3346823B651294766e23e6Cf87254d68962/info.json +++ b/blockchains/smartchain/assets/0x156ab3346823B651294766e23e6Cf87254d68962/info.json @@ -1,5 +1,5 @@ { - "name": "LUNA (Portal)", + "name": "Terra Classic (Portal)", "type": "BEP20", "symbol": "LUNA", "decimals": 6, diff --git a/blockchains/smartchain/assets/0x156df0dd6300C73ac692D805720967cf4464776e/info.json b/blockchains/smartchain/assets/0x156df0dd6300C73ac692D805720967cf4464776e/info.json index b4fbc4d2d4aed..56f4ce1bd03c3 100644 --- a/blockchains/smartchain/assets/0x156df0dd6300C73ac692D805720967cf4464776e/info.json +++ b/blockchains/smartchain/assets/0x156df0dd6300C73ac692D805720967cf4464776e/info.json @@ -17,12 +17,12 @@ "url": "https://github.com/jonathanstoker/astrospacesio" }, { - "name": "twitter", - "url": "https://twitter.com/astrospacesio" + "name": "x", + "url": "https://x.com/astrospacesio" }, { "name": "telegram", "url": "https://t.me/astrospacesio" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x158734153f354CB326EE690C3d55f810DCb0fc90/info.json b/blockchains/smartchain/assets/0x158734153f354CB326EE690C3d55f810DCb0fc90/info.json new file mode 100644 index 0000000000000..68c055470be38 --- /dev/null +++ b/blockchains/smartchain/assets/0x158734153f354CB326EE690C3d55f810DCb0fc90/info.json @@ -0,0 +1,28 @@ +{ + "name": "Vanguard Total Stock Market ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "VTIon", + "decimals": 18, + "description": "VTIon is the Ondo Tokenized version of the Vanguard Total Stock Market ETF, giving tokenholders economic exposure similar to holding VTI and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x158734153f354CB326EE690C3d55f810DCb0fc90", + "status": "active", + "id": "0x158734153f354CB326EE690C3d55f810DCb0fc90", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vanguard-total-stock-market-etf-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vanguard-total-stock-market-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x158734153f354CB326EE690C3d55f810DCb0fc90/logo.png b/blockchains/smartchain/assets/0x158734153f354CB326EE690C3d55f810DCb0fc90/logo.png new file mode 100644 index 0000000000000..c8b7fdf9aa10b Binary files /dev/null and b/blockchains/smartchain/assets/0x158734153f354CB326EE690C3d55f810DCb0fc90/logo.png differ diff --git a/blockchains/smartchain/assets/0x15E2BFF3AB5dcF1F7b5b854636939F3649ce3cf8/info.json b/blockchains/smartchain/assets/0x15E2BFF3AB5dcF1F7b5b854636939F3649ce3cf8/info.json index 664aafa5126b6..6cbb16624c9ad 100644 --- a/blockchains/smartchain/assets/0x15E2BFF3AB5dcF1F7b5b854636939F3649ce3cf8/info.json +++ b/blockchains/smartchain/assets/0x15E2BFF3AB5dcF1F7b5b854636939F3649ce3cf8/info.json @@ -10,8 +10,8 @@ "id": "0x15E2BFF3AB5dcF1F7b5b854636939F3649ce3cf8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/dogefatherDEFI" + "name": "x", + "url": "https://x.com/dogefatherDEFI" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x15Ea6B8481bF1C991aC3dC8e67279d31651a56FE/info.json b/blockchains/smartchain/assets/0x15Ea6B8481bF1C991aC3dC8e67279d31651a56FE/info.json index 89043ce65fa13..98a2ccc127754 100644 --- a/blockchains/smartchain/assets/0x15Ea6B8481bF1C991aC3dC8e67279d31651a56FE/info.json +++ b/blockchains/smartchain/assets/0x15Ea6B8481bF1C991aC3dC8e67279d31651a56FE/info.json @@ -10,8 +10,8 @@ "id": "0x15Ea6B8481bF1C991aC3dC8e67279d31651a56FE", "links": [ { - "name": "twitter", - "url": "https://twitter.com/cylumfinance" + "name": "x", + "url": "https://x.com/cylumfinance" }, { "name": "github", @@ -37,4 +37,4 @@ "tags": [ "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1610bc33319e9398de5f57B33a5b184c806aD217/info.json b/blockchains/smartchain/assets/0x1610bc33319e9398de5f57B33a5b184c806aD217/info.json index b3c6484cf3079..039279f7f481f 100644 --- a/blockchains/smartchain/assets/0x1610bc33319e9398de5f57B33a5b184c806aD217/info.json +++ b/blockchains/smartchain/assets/0x1610bc33319e9398de5f57B33a5b184c806aD217/info.json @@ -11,8 +11,8 @@ "id": "0x1610bc33319e9398de5f57B33a5b184c806aD217", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VenusProtocol" + "name": "x", + "url": "https://x.com/VenusProtocol" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x16153214E683018D5aA318864c8e692b66E16778/info.json b/blockchains/smartchain/assets/0x16153214E683018D5aA318864c8e692b66E16778/info.json index 10ccf6afd1a11..0180f40ec1b3d 100644 --- a/blockchains/smartchain/assets/0x16153214E683018D5aA318864c8e692b66E16778/info.json +++ b/blockchains/smartchain/assets/0x16153214E683018D5aA318864c8e692b66E16778/info.json @@ -10,8 +10,8 @@ "id": "0x16153214E683018D5aA318864c8e692b66E16778", "links": [ { - "name": "twitter", - "url": "https://twitter.com/polkawarnft" + "name": "x", + "url": "https://x.com/polkawarnft" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048/info.json b/blockchains/smartchain/assets/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048/info.json new file mode 100644 index 0000000000000..ea4461fedd33c --- /dev/null +++ b/blockchains/smartchain/assets/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048/info.json @@ -0,0 +1,24 @@ +{ + "name": "UnitedHealth tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "UnitedHealth tokenized stock (xStock) (UNHX) is a cryptocurrency and operates on the Solana platform. UnitedHealth tokenized stock (xStock) has a current supply of 2,000 with 1,000 in circulation. The last known price of UnitedHealth tokenized stock (xStock) is 349.28004226 USD and is down -1.37 over the last 24 hours. It is currently trading on 3 active market(s) with $570,164.67 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/unitedhealth-xstock.", + "explorer": "https://bscscan.com/token/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048", + "type": "BEP20", + "symbol": "UNHX", + "decimals": 18, + "status": "active", + "id": "0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/unitedhealth-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048/logo.png b/blockchains/smartchain/assets/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048/logo.png new file mode 100644 index 0000000000000..9051b3f336f0d Binary files /dev/null and b/blockchains/smartchain/assets/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048/logo.png differ diff --git a/blockchains/smartchain/assets/0x167E93A849A0cc479769132552B99aa1cFA0948c/info.json b/blockchains/smartchain/assets/0x167E93A849A0cc479769132552B99aa1cFA0948c/info.json new file mode 100644 index 0000000000000..ca536f3dfa0ce --- /dev/null +++ b/blockchains/smartchain/assets/0x167E93A849A0cc479769132552B99aa1cFA0948c/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Core S&P MidCap ETF (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "IJHon is the Ondo Tokenized version of the iShares Core S&P MidCap ETF, giving tokenholders economic exposure similar to holding IJH and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x167e93a849a0cc479769132552b99aa1cfa0948c", + "type": "BEP20", + "symbol": "IJHon", + "decimals": 18, + "status": "active", + "id": "0x167E93A849A0cc479769132552B99aa1cFA0948c", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-core-sp-midcap-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x167E93A849A0cc479769132552B99aa1cFA0948c/logo.png b/blockchains/smartchain/assets/0x167E93A849A0cc479769132552B99aa1cFA0948c/logo.png new file mode 100644 index 0000000000000..8adf578853fa6 Binary files /dev/null and b/blockchains/smartchain/assets/0x167E93A849A0cc479769132552B99aa1cFA0948c/logo.png differ diff --git a/blockchains/smartchain/assets/0x168e3b1746Aa249a9b3603B70605924fE255Ee1a/info.json b/blockchains/smartchain/assets/0x168e3b1746Aa249a9b3603B70605924fE255Ee1a/info.json new file mode 100644 index 0000000000000..c213e1a1ed245 --- /dev/null +++ b/blockchains/smartchain/assets/0x168e3b1746Aa249a9b3603B70605924fE255Ee1a/info.json @@ -0,0 +1,54 @@ +{ + "name": "GAMER", + "type": "BEP20", + "symbol": "GMR", + "decimals": 18, + "website": "https://gmr.center", + "description": "GMR: The nexus of gaming and blockchain. Trade, play, interact, and thrive in a digital world powered by the $GMR token.", + "explorer": "https://bscscan.com/token/0x168e3b1746Aa249a9b3603B70605924fE255Ee1a", + "status": "active", + "id": "0x168e3b1746Aa249a9b3603B70605924fE255Ee1a", + "links": [ + { + "name": "x", + "url": "https://x.com/GMRCenter" + }, + { + "name": "github", + "url": "https://github.com/gmr-center" + }, + { + "name": "telegram", + "url": "https://t.me/gmrcenter" + }, + { + "name": "docs", + "url": "https://whitepaper.gmr.center/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/gmrcenter" + }, + { + "name": "facebook", + "url": "https://facebook.com/gmrcenterofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gamer" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gamer" + }, + { + "name": "youtube", + "url": "https://youtube.com/GMRCenter" + } + ], + "tags": [ + "nft", + "defi", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884/logo.png b/blockchains/smartchain/assets/0x168e3b1746Aa249a9b3603B70605924fE255Ee1a/logo.png similarity index 100% rename from blockchains/smartchain/assets/0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884/logo.png rename to blockchains/smartchain/assets/0x168e3b1746Aa249a9b3603B70605924fE255Ee1a/logo.png diff --git a/blockchains/smartchain/assets/0x16E0B579be45bAaE54cEddd52e742B6457A7fE12/info.json b/blockchains/smartchain/assets/0x16E0B579be45bAaE54cEddd52e742B6457A7fE12/info.json new file mode 100644 index 0000000000000..4c965cfc1c892 --- /dev/null +++ b/blockchains/smartchain/assets/0x16E0B579be45bAaE54cEddd52e742B6457A7fE12/info.json @@ -0,0 +1,15 @@ +{ + "name": "Adobe xStock", + "type": "BEP20", + "symbol": "ADBEx", + "decimals": 18, + "description": "Adobe xStock (ADBEx) is a tracker certificate issued as a freely transferable token on selected blockchains. ADBEx tracks the price of Adobe Inc.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x16E0B579be45bAaE54cEddd52e742B6457A7fE12", + "status": "active", + "id": "0x16E0B579be45bAaE54cEddd52e742B6457A7fE12", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x16E0B579be45bAaE54cEddd52e742B6457A7fE12/logo.png b/blockchains/smartchain/assets/0x16E0B579be45bAaE54cEddd52e742B6457A7fE12/logo.png new file mode 100644 index 0000000000000..b3eff5f82737c Binary files /dev/null and b/blockchains/smartchain/assets/0x16E0B579be45bAaE54cEddd52e742B6457A7fE12/logo.png differ diff --git a/blockchains/smartchain/assets/0x16E79E09b3B56BCBBA83667aFf88dc6ca727Af2e/info.json b/blockchains/smartchain/assets/0x16E79E09b3B56BCBBA83667aFf88dc6ca727Af2e/info.json index c035115f2f7eb..3e25ffad1c98f 100644 --- a/blockchains/smartchain/assets/0x16E79E09b3B56BCBBA83667aFf88dc6ca727Af2e/info.json +++ b/blockchains/smartchain/assets/0x16E79E09b3B56BCBBA83667aFf88dc6ca727Af2e/info.json @@ -10,8 +10,8 @@ "id": "0x16E79E09b3B56BCBBA83667aFf88dc6ca727Af2e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Bart_BSC" + "name": "x", + "url": "https://x.com/Bart_BSC" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x16E79E09b3B56BCBBA83667aFf88dc6ca727Af2e/logo.png b/blockchains/smartchain/assets/0x16E79E09b3B56BCBBA83667aFf88dc6ca727Af2e/logo.png index dadb7d64ac019..7d878a83e07b4 100644 Binary files a/blockchains/smartchain/assets/0x16E79E09b3B56BCBBA83667aFf88dc6ca727Af2e/logo.png and b/blockchains/smartchain/assets/0x16E79E09b3B56BCBBA83667aFf88dc6ca727Af2e/logo.png differ diff --git a/blockchains/smartchain/assets/0x16a7fa783378Da47A4F09613296b0B2Dd2B08d06/info.json b/blockchains/smartchain/assets/0x16a7fa783378Da47A4F09613296b0B2Dd2B08d06/info.json index 9336b8253b951..b356ac11ad7b2 100644 --- a/blockchains/smartchain/assets/0x16a7fa783378Da47A4F09613296b0B2Dd2B08d06/info.json +++ b/blockchains/smartchain/assets/0x16a7fa783378Da47A4F09613296b0B2Dd2B08d06/info.json @@ -10,8 +10,8 @@ "id": "0x16a7fa783378Da47A4F09613296b0B2Dd2B08d06", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MonsterSlayerMS" + "name": "x", + "url": "https://x.com/MonsterSlayerMS" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x16dCc0eC78E91e868DCa64bE86aeC62bf7C61037/info.json b/blockchains/smartchain/assets/0x16dCc0eC78E91e868DCa64bE86aeC62bf7C61037/info.json index 1b3fe7e1b16da..e1971f0c27502 100644 --- a/blockchains/smartchain/assets/0x16dCc0eC78E91e868DCa64bE86aeC62bf7C61037/info.json +++ b/blockchains/smartchain/assets/0x16dCc0eC78E91e868DCa64bE86aeC62bf7C61037/info.json @@ -10,8 +10,8 @@ "id": "0x16dCc0eC78E91e868DCa64bE86aeC62bf7C61037", "links": [ { - "name": "twitter", - "url": "https://twitter.com/EverETHofficial" + "name": "x", + "url": "https://x.com/EverETHofficial" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x16f9cc3c6F8d8006cfc0ee693CeF9D76b0d44C36/info.json b/blockchains/smartchain/assets/0x16f9cc3c6F8d8006cfc0ee693CeF9D76b0d44C36/info.json index 24cf4321fc617..5cf9dcbd8acc1 100644 --- a/blockchains/smartchain/assets/0x16f9cc3c6F8d8006cfc0ee693CeF9D76b0d44C36/info.json +++ b/blockchains/smartchain/assets/0x16f9cc3c6F8d8006cfc0ee693CeF9D76b0d44C36/info.json @@ -18,8 +18,8 @@ "url": "https://coinmarketcap.com/ru/currencies/baby-bali/" }, { - "name": "twitter", - "url": "https://twitter.com/BabyBalibsc" + "name": "x", + "url": "https://x.com/BabyBalibsc" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x16faF9DAa401AA42506AF503Aa3d80B871c467A3/info.json b/blockchains/smartchain/assets/0x16faF9DAa401AA42506AF503Aa3d80B871c467A3/info.json new file mode 100644 index 0000000000000..dd28ebb6c3e77 --- /dev/null +++ b/blockchains/smartchain/assets/0x16faF9DAa401AA42506AF503Aa3d80B871c467A3/info.json @@ -0,0 +1,25 @@ +{ + "name": "DexCheck", + "type": "BEP20", + "symbol": "DCK", + "decimals": 18, + "website": "https://dexcheck.ai/", + "description": "DexCheck is an AI-boosted analytics platform. It offers real-time insights into crypto and NFT markets, making blockchain analysis intuitive and accessible.", + "explorer": "https://bscscan.com/token/0x16faf9daa401aa42506af503aa3d80b871c467a3", + "status": "active", + "id": "0x16faF9DAa401AA42506AF503Aa3d80B871c467A3", + "links": [ + { + "name": "x", + "url": "https://x.com/DexCheck_io" + }, + { + "name": "whitepaper", + "url": "https://t.me/dexcheck" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dexcheck/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x16faF9DAa401AA42506AF503Aa3d80B871c467A3/logo.png b/blockchains/smartchain/assets/0x16faF9DAa401AA42506AF503Aa3d80B871c467A3/logo.png new file mode 100644 index 0000000000000..6bdb6e723dfcf Binary files /dev/null and b/blockchains/smartchain/assets/0x16faF9DAa401AA42506AF503Aa3d80B871c467A3/logo.png differ diff --git a/blockchains/smartchain/assets/0x1722bf5DA9391D6986092b90a53672E8E0fead83/info.json b/blockchains/smartchain/assets/0x1722bf5DA9391D6986092b90a53672E8E0fead83/info.json index e4461f8b9d61f..76369eb299d0b 100644 --- a/blockchains/smartchain/assets/0x1722bf5DA9391D6986092b90a53672E8E0fead83/info.json +++ b/blockchains/smartchain/assets/0x1722bf5DA9391D6986092b90a53672E8E0fead83/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/elcash_official" + "name": "x", + "url": "https://x.com/elcash_official" }, { "name": "telegram", @@ -45,4 +45,4 @@ "url": "https://github.com/electric-cash/electric-cash-token-smart-contracts" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1738B738E8d9207D0212C2744c1Dc67f3cD09850/info.json b/blockchains/smartchain/assets/0x1738B738E8d9207D0212C2744c1Dc67f3cD09850/info.json new file mode 100644 index 0000000000000..66d476e79768b --- /dev/null +++ b/blockchains/smartchain/assets/0x1738B738E8d9207D0212C2744c1Dc67f3cD09850/info.json @@ -0,0 +1,17 @@ +{ + "name": "Answer me", + "website": "https://x.com/answerme_onbsc", + "description": "Answer me ", + "explorer": "https://bscscan.com/token/0x1738b738e8d9207d0212c2744c1dc67f3cd09850", + "type": "BEP20", + "symbol": "Answer me", + "decimals": 18, + "status": "active", + "id": "0x1738B738E8d9207D0212C2744c1Dc67f3cD09850", + "links": [ + { + "name": "x", + "url": "https://x.com/answerme_onbsc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1738B738E8d9207D0212C2744c1Dc67f3cD09850/logo.png b/blockchains/smartchain/assets/0x1738B738E8d9207D0212C2744c1Dc67f3cD09850/logo.png new file mode 100644 index 0000000000000..c4a183e488dba Binary files /dev/null and b/blockchains/smartchain/assets/0x1738B738E8d9207D0212C2744c1Dc67f3cD09850/logo.png differ diff --git a/blockchains/smartchain/assets/0x17515B68378d86C38F394c666e79907dA05dcBA9/info.json b/blockchains/smartchain/assets/0x17515B68378d86C38F394c666e79907dA05dcBA9/info.json new file mode 100644 index 0000000000000..9b9c1ec140cd0 --- /dev/null +++ b/blockchains/smartchain/assets/0x17515B68378d86C38F394c666e79907dA05dcBA9/info.json @@ -0,0 +1,28 @@ +{ + "name": "ProShares UltraPro Short QQQ (Ondo Tokenized)", + "type": "BEP20", + "symbol": "SQQQon", + "decimals": 18, + "description": "SQQQon is the Ondo Tokenized version of the ProShares UltraPro Short QQQ, giving tokenholders economic exposure similar to holding SQQQ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x17515B68378d86C38F394c666e79907dA05dcBA9", + "status": "active", + "id": "0x17515B68378d86C38F394c666e79907dA05dcBA9", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/proshares-ultrapro-short-qqq-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/proshares-ultrapro-short-qqq-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x17515B68378d86C38F394c666e79907dA05dcBA9/logo.png b/blockchains/smartchain/assets/0x17515B68378d86C38F394c666e79907dA05dcBA9/logo.png new file mode 100644 index 0000000000000..d28deab3711b4 Binary files /dev/null and b/blockchains/smartchain/assets/0x17515B68378d86C38F394c666e79907dA05dcBA9/logo.png differ diff --git a/blockchains/smartchain/assets/0x17644CC2D73921a1562f1745644EAb455aaf8597/info.json b/blockchains/smartchain/assets/0x17644CC2D73921a1562f1745644EAb455aaf8597/info.json new file mode 100644 index 0000000000000..945200e8665a7 --- /dev/null +++ b/blockchains/smartchain/assets/0x17644CC2D73921a1562f1745644EAb455aaf8597/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT Tether USD", + "type": "BEP20", + "symbol": "HONEYPOT USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x17644CC2D73921a1562f1745644EAb455aaf8597", + "explorer": "https://bscscan.com/token/0x17644CC2D73921a1562f1745644EAb455aaf8597", + "status": "spam", + "id": "0x17644CC2D73921a1562f1745644EAb455aaf8597" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x179960442Ece8dE9f390011b7f7c9b56C74e4D0a/info.json b/blockchains/smartchain/assets/0x179960442Ece8dE9f390011b7f7c9b56C74e4D0a/info.json index e837ae9cb6706..ad8cba44fd152 100644 --- a/blockchains/smartchain/assets/0x179960442Ece8dE9f390011b7f7c9b56C74e4D0a/info.json +++ b/blockchains/smartchain/assets/0x179960442Ece8dE9f390011b7f7c9b56C74e4D0a/info.json @@ -18,8 +18,8 @@ "url": "https://xetareality.com/whitepaper.pdf" }, { - "name": "twitter", - "url": "https://twitter.com/XetaReality" + "name": "x", + "url": "https://x.com/XetaReality" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x179983892eC36287f1F342443B671Ba549762241/info.json b/blockchains/smartchain/assets/0x179983892eC36287f1F342443B671Ba549762241/info.json index 64ff3f9dcb11c..5d5098a69e275 100644 --- a/blockchains/smartchain/assets/0x179983892eC36287f1F342443B671Ba549762241/info.json +++ b/blockchains/smartchain/assets/0x179983892eC36287f1F342443B671Ba549762241/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/thugs-defi" }, { - "name": "twitter", - "url": "https://twitter.com/ThugsFinance" + "name": "x", + "url": "https://x.com/ThugsFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x17B7163cf1Dbd286E262ddc68b553D899B93f526/info.json b/blockchains/smartchain/assets/0x17B7163cf1Dbd286E262ddc68b553D899B93f526/info.json index 6cad42f953009..f5a68a2793913 100644 --- a/blockchains/smartchain/assets/0x17B7163cf1Dbd286E262ddc68b553D899B93f526/info.json +++ b/blockchains/smartchain/assets/0x17B7163cf1Dbd286E262ddc68b553D899B93f526/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/PancakeBunny-finance/qubit-finance" }, { - "name": "twitter", - "url": "https://twitter.com/QubitFin" + "name": "x", + "url": "https://x.com/QubitFin" }, { "name": "blog", diff --git a/blockchains/smartchain/assets/0x17D8186Ed8F68059124190D147174D0f6697dc40/info.json b/blockchains/smartchain/assets/0x17D8186Ed8F68059124190D147174D0f6697dc40/info.json new file mode 100644 index 0000000000000..562ee668e69f0 --- /dev/null +++ b/blockchains/smartchain/assets/0x17D8186Ed8F68059124190D147174D0f6697dc40/info.json @@ -0,0 +1,24 @@ +{ + "name": "Merck tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Merck xStock (MRKx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. MRKx tracks the price of Merck & Co., Inc. (the underlying). MRKx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Merck & Co., Inc., whilst maintaining the benefits of blockchain technology. Merck, is a global biopharmaceutical company focused on developing and delivering innovative health solutions.", + "explorer": "https://bscscan.com/token/0x17D8186Ed8F68059124190D147174D0f6697dc40", + "type": "BEP20", + "symbol": "MRKX", + "decimals": 18, + "status": "active", + "id": "0x17D8186Ed8F68059124190D147174D0f6697dc40", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/merck-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x17D8186Ed8F68059124190D147174D0f6697dc40/logo.png b/blockchains/smartchain/assets/0x17D8186Ed8F68059124190D147174D0f6697dc40/logo.png new file mode 100644 index 0000000000000..8522e440e6053 Binary files /dev/null and b/blockchains/smartchain/assets/0x17D8186Ed8F68059124190D147174D0f6697dc40/logo.png differ diff --git a/blockchains/smartchain/assets/0x17D8519F57450E2B7E6aE1163E0E448322a8aF17/info.json b/blockchains/smartchain/assets/0x17D8519F57450E2B7E6aE1163E0E448322a8aF17/info.json index da3630ce0fa4e..1c1d86aa77b9e 100644 --- a/blockchains/smartchain/assets/0x17D8519F57450E2B7E6aE1163E0E448322a8aF17/info.json +++ b/blockchains/smartchain/assets/0x17D8519F57450E2B7E6aE1163E0E448322a8aF17/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/lofi_defi" }, { - "name": "twitter", - "url": "https://twitter.com/lofi_defi" + "name": "x", + "url": "https://x.com/lofi_defi" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x17E65E6b9B166Fb8e7c59432F0db126711246BC0/info.json b/blockchains/smartchain/assets/0x17E65E6b9B166Fb8e7c59432F0db126711246BC0/info.json index 7e1ea35ef198c..a032fa7c7f59e 100644 --- a/blockchains/smartchain/assets/0x17E65E6b9B166Fb8e7c59432F0db126711246BC0/info.json +++ b/blockchains/smartchain/assets/0x17E65E6b9B166Fb8e7c59432F0db126711246BC0/info.json @@ -10,8 +10,8 @@ "id": "0x17E65E6b9B166Fb8e7c59432F0db126711246BC0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TiFiToken" + "name": "x", + "url": "https://x.com/TiFiToken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x17FEa92CA2e7570d07b63ecD6B698e01386555A4/info.json b/blockchains/smartchain/assets/0x17FEa92CA2e7570d07b63ecD6B698e01386555A4/info.json index b8ec7d7ff3663..caca256e320ca 100644 --- a/blockchains/smartchain/assets/0x17FEa92CA2e7570d07b63ecD6B698e01386555A4/info.json +++ b/blockchains/smartchain/assets/0x17FEa92CA2e7570d07b63ecD6B698e01386555A4/info.json @@ -18,8 +18,8 @@ "url": "https://coinmarketcap.com/ru/currencies/coxswap/" }, { - "name": "twitter", - "url": "https://twitter.com/Cox_Swap" + "name": "x", + "url": "https://x.com/Cox_Swap" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1802a63EFe3255aBC3004F8e63047dB96300bd1c/info.json b/blockchains/smartchain/assets/0x1802a63EFe3255aBC3004F8e63047dB96300bd1c/info.json index a7b6e03b86968..464e8ee443ab0 100644 --- a/blockchains/smartchain/assets/0x1802a63EFe3255aBC3004F8e63047dB96300bd1c/info.json +++ b/blockchains/smartchain/assets/0x1802a63EFe3255aBC3004F8e63047dB96300bd1c/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/the-dynasty/" }, { - "name": "twitter", - "url": "https://twitter.com/Thedynasty_app" + "name": "x", + "url": "https://x.com/Thedynasty_app" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x180b25beb6c84c2b3855E630d50C965425Fb5de2/info.json b/blockchains/smartchain/assets/0x180b25beb6c84c2b3855E630d50C965425Fb5de2/info.json new file mode 100644 index 0000000000000..6b8611873bd38 --- /dev/null +++ b/blockchains/smartchain/assets/0x180b25beb6c84c2b3855E630d50C965425Fb5de2/info.json @@ -0,0 +1,24 @@ +{ + "name": "BABYBONK", + "type": "BEP20", + "symbol": "BABYBONK", + "decimals": 9, + "website": "https://babybonkcoin.io", + "description": "Strong community, 0% taxes, and a vision set on the 2025 bullrun. Bonk your way to the top.", + "explorer": "https://bscscan.com/token/0x180b25beb6c84c2b3855E630d50C965425Fb5de2", + "status": "active", + "id": "0x180b25beb6c84c2b3855E630d50C965425Fb5de2", + "links": [ + { + "name": "x", + "url": "https://x.com/BabyBonkcoin" + }, + { + "name": "telegram", + "url": "https://t.me/BabyBonkEntry" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x180b25beb6c84c2b3855E630d50C965425Fb5de2/logo.png b/blockchains/smartchain/assets/0x180b25beb6c84c2b3855E630d50C965425Fb5de2/logo.png new file mode 100644 index 0000000000000..fcf462b5db8d3 Binary files /dev/null and b/blockchains/smartchain/assets/0x180b25beb6c84c2b3855E630d50C965425Fb5de2/logo.png differ diff --git a/blockchains/smartchain/assets/0x18359CF655A444204e46F286eDC445C9D30fFc54/info.json b/blockchains/smartchain/assets/0x18359CF655A444204e46F286eDC445C9D30fFc54/info.json index 2e0bbaf878cc7..8e5fff70de9ea 100644 --- a/blockchains/smartchain/assets/0x18359CF655A444204e46F286eDC445C9D30fFc54/info.json +++ b/blockchains/smartchain/assets/0x18359CF655A444204e46F286eDC445C9D30fFc54/info.json @@ -10,8 +10,8 @@ "id": "0x18359CF655A444204e46F286eDC445C9D30fFc54", "links": [ { - "name": "twitter", - "url": "https://twitter.com/DogeMoonMain" + "name": "x", + "url": "https://x.com/DogeMoonMain" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x183B2c147fE11788b73BC0D6A7E0186aA5464BfA/info.json b/blockchains/smartchain/assets/0x183B2c147fE11788b73BC0D6A7E0186aA5464BfA/info.json index 8e9b2e64418aa..b6d16b58ec5f8 100644 --- a/blockchains/smartchain/assets/0x183B2c147fE11788b73BC0D6A7E0186aA5464BfA/info.json +++ b/blockchains/smartchain/assets/0x183B2c147fE11788b73BC0D6A7E0186aA5464BfA/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/FuturaBSC" }, { - "name": "twitter", - "url": "https://twitter.com/FuturaBSC" + "name": "x", + "url": "https://x.com/FuturaBSC" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x184079Ca987F562ae6a0c59f4BE5cADB20323863/info.json b/blockchains/smartchain/assets/0x184079Ca987F562ae6a0c59f4BE5cADB20323863/info.json index e1ec6d8c1f5c4..4556d17b333b9 100644 --- a/blockchains/smartchain/assets/0x184079Ca987F562ae6a0c59f4BE5cADB20323863/info.json +++ b/blockchains/smartchain/assets/0x184079Ca987F562ae6a0c59f4BE5cADB20323863/info.json @@ -10,8 +10,8 @@ "id": "0x184079Ca987F562ae6a0c59f4BE5cADB20323863", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MarsRise_Bsc" + "name": "x", + "url": "https://x.com/MarsRise_Bsc" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x186866858aEf38c05829166A7711b37563e15994/info.json b/blockchains/smartchain/assets/0x186866858aEf38c05829166A7711b37563e15994/info.json index f98f2c9e031bc..6de567692e923 100644 --- a/blockchains/smartchain/assets/0x186866858aEf38c05829166A7711b37563e15994/info.json +++ b/blockchains/smartchain/assets/0x186866858aEf38c05829166A7711b37563e15994/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/HodlFinanceAnn" }, { - "name": "twitter", - "url": "https://twitter.com/HFToken" + "name": "x", + "url": "https://x.com/HFToken" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x189b0199c9ACE4C9C0e3Ae36d417c81609Bc4444/info.json b/blockchains/smartchain/assets/0x189b0199c9ACE4C9C0e3Ae36d417c81609Bc4444/info.json new file mode 100644 index 0000000000000..7756667c9e674 --- /dev/null +++ b/blockchains/smartchain/assets/0x189b0199c9ACE4C9C0e3Ae36d417c81609Bc4444/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM United Stable", + "type": "BEP20", + "symbol": "SCAM U", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x189b0199c9ACE4C9C0e3Ae36d417c81609Bc4444", + "explorer": "https://bscscan.com/token/0x189b0199c9ACE4C9C0e3Ae36d417c81609Bc4444", + "status": "spam", + "id": "0x189b0199c9ACE4C9C0e3Ae36d417c81609Bc4444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x18C5fAC26C5d8b859b3A83f0f167D8924098d28a/info.json b/blockchains/smartchain/assets/0x18C5fAC26C5d8b859b3A83f0f167D8924098d28a/info.json index ed1b10a87417c..c6567d7eeb7a4 100644 --- a/blockchains/smartchain/assets/0x18C5fAC26C5d8b859b3A83f0f167D8924098d28a/info.json +++ b/blockchains/smartchain/assets/0x18C5fAC26C5d8b859b3A83f0f167D8924098d28a/info.json @@ -10,8 +10,8 @@ "id": "0x18C5fAC26C5d8b859b3A83f0f167D8924098d28a", "links": [ { - "name": "twitter", - "url": "https://twitter.com/naftyofficial" + "name": "x", + "url": "https://x.com/naftyofficial" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x18De24acb876C0B8392d9C55583Bb21c0355980b/info.json b/blockchains/smartchain/assets/0x18De24acb876C0B8392d9C55583Bb21c0355980b/info.json new file mode 100644 index 0000000000000..33c8136b7131f --- /dev/null +++ b/blockchains/smartchain/assets/0x18De24acb876C0B8392d9C55583Bb21c0355980b/info.json @@ -0,0 +1,24 @@ +{ + "name": "Applied Digital (Ondo Tokenized)", + "type": "BEP20", + "symbol": "APLDon", + "decimals": 18, + "description": "APLDon is the Ondo Tokenized version of Applied Digital, giving tokenholders economic exposure similar to holding APLD and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x18De24acb876C0B8392d9C55583Bb21c0355980b", + "status": "active", + "id": "0x18De24acb876C0B8392d9C55583Bb21c0355980b", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/applied-digital-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x18De24acb876C0B8392d9C55583Bb21c0355980b/logo.png b/blockchains/smartchain/assets/0x18De24acb876C0B8392d9C55583Bb21c0355980b/logo.png new file mode 100644 index 0000000000000..0629c140d6db3 Binary files /dev/null and b/blockchains/smartchain/assets/0x18De24acb876C0B8392d9C55583Bb21c0355980b/logo.png differ diff --git a/blockchains/smartchain/assets/0x18c4AF61DbE6fD55d6470943b4ab8530777d009C/info.json b/blockchains/smartchain/assets/0x18c4AF61DbE6fD55d6470943b4ab8530777d009C/info.json new file mode 100644 index 0000000000000..e060ff943c091 --- /dev/null +++ b/blockchains/smartchain/assets/0x18c4AF61DbE6fD55d6470943b4ab8530777d009C/info.json @@ -0,0 +1,80 @@ +{ + "name": "Agatech", + "type": "BEP20", + "symbol": "AGATA", + "decimals": 18, + "website": "https://agatech.io", + "description": "Agata Token transcends the typical role of a cryptocurrency, embodying the foundation of the Agatech ecosystem. Ingeniously designed for diverse utility, it stands as the key currency for governance, staking, and accessing a variety of services within the Agatech network.", + "explorer": "https://bscscan.com/token/0x18c4AF61DbE6fD55d6470943b4ab8530777d009C", + "status": "active", + "id": "0x18c4AF61DbE6fD55d6470943b4ab8530777d009C", + "links": [ + { + "name": "x", + "url": "https://x.com/agatechsystems" + }, + { + "name": "github", + "url": "https://github.com/AgaTechSystems/" + }, + { + "name": "telegram", + "url": "https://t.me/agatechsystems" + }, + { + "name": "telegram_news", + "url": "https://t.me/agatechsystemsnews" + }, + { + "name": "blog", + "url": "https://www.twitch.tv/agatechlive" + }, + { + "name": "whitepaper", + "url": "https://agatech.gitbook.io/agatech-whitepaper" + }, + { + "name": "discord", + "url": "https://discord.com/invite/deT9GBqunR" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Agatech_Agata/" + }, + { + "name": "medium", + "url": "https://agatech.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/@AgatechYT" + }, + { + "name": "facebook", + "url": "https://facebook.com/AgaTechSystems/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/agatech/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/agatech" + }, + { + "name": "docs", + "url": "https://agatech.gitbook.io/agatech-whitepaper/the-agatech-ecosystem-components-and-innovations" + }, + { + "name": "source_code", + "url": "https://github.com/AgaTechSystems/Agata/blob/main/Agatech.sol" + }, + { + "name": "forum", + "url": "https://t.me/agatechsystemsnews" + } + ], + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x18c4AF61DbE6fD55d6470943b4ab8530777d009C/logo.png b/blockchains/smartchain/assets/0x18c4AF61DbE6fD55d6470943b4ab8530777d009C/logo.png new file mode 100644 index 0000000000000..8465b86557c47 Binary files /dev/null and b/blockchains/smartchain/assets/0x18c4AF61DbE6fD55d6470943b4ab8530777d009C/logo.png differ diff --git a/blockchains/smartchain/assets/0x18fF245c134D9DAA6fED977617654490ba4DA526/info.json b/blockchains/smartchain/assets/0x18fF245c134D9DAA6fED977617654490ba4DA526/info.json index c7ee84a7a2929..ce727bacfd00f 100644 --- a/blockchains/smartchain/assets/0x18fF245c134D9DAA6fED977617654490ba4DA526/info.json +++ b/blockchains/smartchain/assets/0x18fF245c134D9DAA6fED977617654490ba4DA526/info.json @@ -10,8 +10,8 @@ "id": "0x18fF245c134D9DAA6fED977617654490ba4DA526", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TheMaskDogeCoin" + "name": "x", + "url": "https://x.com/TheMaskDogeCoin" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x190b589cf9Fb8DDEabBFeae36a813FFb2A702454/info.json b/blockchains/smartchain/assets/0x190b589cf9Fb8DDEabBFeae36a813FFb2A702454/info.json index b755068f2b613..6712d0b33f4b2 100644 --- a/blockchains/smartchain/assets/0x190b589cf9Fb8DDEabBFeae36a813FFb2A702454/info.json +++ b/blockchains/smartchain/assets/0x190b589cf9Fb8DDEabBFeae36a813FFb2A702454/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/bearn-defi/bdollar-smartcontracts" }, { - "name": "twitter", - "url": "https://twitter.com/bDollar_Fi" + "name": "x", + "url": "https://x.com/bDollar_Fi" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x193f4A4a6ea24102F49b931DEeeb931f6E32405d/info.json b/blockchains/smartchain/assets/0x193f4A4a6ea24102F49b931DEeeb931f6E32405d/info.json new file mode 100644 index 0000000000000..97fbc970b09d5 --- /dev/null +++ b/blockchains/smartchain/assets/0x193f4A4a6ea24102F49b931DEeeb931f6E32405d/info.json @@ -0,0 +1,21 @@ +{ + "name": "TLOS", + "website": "https://telos.net/", + "description": "Telos is known for its high-performance and low-fee execution environments, particularly TelosEVM. The project is advancing zero-knowledge (ZK) technology with the upcoming SNARKtor protocol and hardware-accelerated zkEVM, enhancing scalability and confidentiality for wider adoption.", + "explorer": "https://bscscan.com/token/0x193f4A4a6ea24102F49b931DEeeb931f6E32405d", + "type": "BEP20", + "symbol": "TLOS", + "decimals": 18, + "status": "active", + "id": "0x193f4A4a6ea24102F49b931DEeeb931f6E32405d", + "links": [ + { + "name": "x", + "url": "https://x.com/HelloTelos" + }, + { + "name": "telegram", + "url": "https://t.me/HelloTelos" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x193f4A4a6ea24102F49b931DEeeb931f6E32405d/logo.png b/blockchains/smartchain/assets/0x193f4A4a6ea24102F49b931DEeeb931f6E32405d/logo.png new file mode 100644 index 0000000000000..766e796c92c74 Binary files /dev/null and b/blockchains/smartchain/assets/0x193f4A4a6ea24102F49b931DEeeb931f6E32405d/logo.png differ diff --git a/blockchains/smartchain/assets/0x194B302a4b0a79795Fb68E2ADf1B8c9eC5ff8d1F/info.json b/blockchains/smartchain/assets/0x194B302a4b0a79795Fb68E2ADf1B8c9eC5ff8d1F/info.json new file mode 100644 index 0000000000000..cd68f12405478 --- /dev/null +++ b/blockchains/smartchain/assets/0x194B302a4b0a79795Fb68E2ADf1B8c9eC5ff8d1F/info.json @@ -0,0 +1,17 @@ +{ + "name": "WebKey DAO", + "website": "https://webkey.pages.dev/", + "description": "Anubi Foundation introduces the first #Web3 launcher for global users, achieving real integration of user data and applications through #DePIN technology.", + "explorer": "https://bscscan.com/token/0x194B302a4b0a79795Fb68E2ADf1B8c9eC5ff8d1F", + "type": "BEP20", + "symbol": "wkeyDAO", + "decimals": 18, + "status": "active", + "id": "0x194B302a4b0a79795Fb68E2ADf1B8c9eC5ff8d1F", + "links": [ + { + "name": "x", + "url": "https://x.com/WebKey01" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x194B302a4b0a79795Fb68E2ADf1B8c9eC5ff8d1F/logo.png b/blockchains/smartchain/assets/0x194B302a4b0a79795Fb68E2ADf1B8c9eC5ff8d1F/logo.png new file mode 100644 index 0000000000000..e65dba1492a68 Binary files /dev/null and b/blockchains/smartchain/assets/0x194B302a4b0a79795Fb68E2ADf1B8c9eC5ff8d1F/logo.png differ diff --git a/blockchains/smartchain/assets/0x19601179A60f55Ff6636F5D1A8b6671053Bd60a8/info.json b/blockchains/smartchain/assets/0x19601179A60f55Ff6636F5D1A8b6671053Bd60a8/info.json new file mode 100644 index 0000000000000..267c0a4e172f4 --- /dev/null +++ b/blockchains/smartchain/assets/0x19601179A60f55Ff6636F5D1A8b6671053Bd60a8/info.json @@ -0,0 +1,24 @@ +{ + "name": "Robinhood Markets (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "HOODon is the Ondo Tokenized version of Robinhood Markets, giving tokenholders economic exposure similar to holding HOOD and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x19601179a60f55ff6636f5d1a8b6671053bd60a8", + "type": "BEP20", + "symbol": "HOODon", + "decimals": 18, + "status": "active", + "id": "0x19601179A60f55Ff6636F5D1A8b6671053Bd60a8", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/robinhood-markets-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x19601179A60f55Ff6636F5D1A8b6671053Bd60a8/logo.png b/blockchains/smartchain/assets/0x19601179A60f55Ff6636F5D1A8b6671053Bd60a8/logo.png new file mode 100644 index 0000000000000..e09da245e46e0 Binary files /dev/null and b/blockchains/smartchain/assets/0x19601179A60f55Ff6636F5D1A8b6671053Bd60a8/logo.png differ diff --git a/blockchains/smartchain/assets/0x19904Bc04c09e5d29Ed216dDD105bdf103A0bA2D/info.json b/blockchains/smartchain/assets/0x19904Bc04c09e5d29Ed216dDD105bdf103A0bA2D/info.json new file mode 100644 index 0000000000000..e660ae1496516 --- /dev/null +++ b/blockchains/smartchain/assets/0x19904Bc04c09e5d29Ed216dDD105bdf103A0bA2D/info.json @@ -0,0 +1,28 @@ +{ + "name": "Coupang (Ondo Tokenized)", + "type": "BEP20", + "symbol": "CPNGon", + "decimals": 18, + "description": "CPNGon is the Ondo Tokenized version of Coupang, giving tokenholders economic exposure similar to holding CPNG and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x19904Bc04c09e5d29Ed216dDD105bdf103A0bA2D", + "status": "active", + "id": "0x19904Bc04c09e5d29Ed216dDD105bdf103A0bA2D", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/coupang-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coupang-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x19904Bc04c09e5d29Ed216dDD105bdf103A0bA2D/logo.png b/blockchains/smartchain/assets/0x19904Bc04c09e5d29Ed216dDD105bdf103A0bA2D/logo.png new file mode 100644 index 0000000000000..96cbf3b06fbf9 Binary files /dev/null and b/blockchains/smartchain/assets/0x19904Bc04c09e5d29Ed216dDD105bdf103A0bA2D/logo.png differ diff --git a/blockchains/smartchain/assets/0x199F788DDb566B7eBB59bf35B36914F2aCdb33DE/info.json b/blockchains/smartchain/assets/0x199F788DDb566B7eBB59bf35B36914F2aCdb33DE/info.json index b3b7ba5b6e77a..c0d50c07fb0f6 100644 --- a/blockchains/smartchain/assets/0x199F788DDb566B7eBB59bf35B36914F2aCdb33DE/info.json +++ b/blockchains/smartchain/assets/0x199F788DDb566B7eBB59bf35B36914F2aCdb33DE/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/DeFidoTokenOfficial" }, { - "name": "twitter", - "url": "https://twitter.com/defidotoken" + "name": "x", + "url": "https://x.com/defidotoken" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x19D3A7c26a1271eeBB6f04bDb4565b7F2B7EFc30/info.json b/blockchains/smartchain/assets/0x19D3A7c26a1271eeBB6f04bDb4565b7F2B7EFc30/info.json index 1af0aba0cc202..6506cd42fdb1b 100644 --- a/blockchains/smartchain/assets/0x19D3A7c26a1271eeBB6f04bDb4565b7F2B7EFc30/info.json +++ b/blockchains/smartchain/assets/0x19D3A7c26a1271eeBB6f04bDb4565b7F2B7EFc30/info.json @@ -10,8 +10,8 @@ "id": "0x19D3A7c26a1271eeBB6f04bDb4565b7F2B7EFc30", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MetaAxisCoin" + "name": "x", + "url": "https://x.com/MetaAxisCoin" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x19c018e13CFf682e729CC7b5Fb68c8A641bf98A4/info.json b/blockchains/smartchain/assets/0x19c018e13CFf682e729CC7b5Fb68c8A641bf98A4/info.json new file mode 100644 index 0000000000000..28beff84f7079 --- /dev/null +++ b/blockchains/smartchain/assets/0x19c018e13CFf682e729CC7b5Fb68c8A641bf98A4/info.json @@ -0,0 +1,17 @@ +{ + "name": "BurnedFi", + "type": "BEP20", + "symbol": "burn", + "decimals": 18, + "website": "https://burnedfi.app/", + "description": "Burn: This is a fair burning movement, returning to the most fundamental decentralization of blockchain organizations.", + "explorer": "https://bscscan.com/token/0x19c018e13cff682e729cc7b5fb68c8a641bf98a4", + "status": "active", + "id": "0x19c018e13CFf682e729CC7b5Fb68c8A641bf98A4", + "links": [ + { + "name": "x", + "url": "https://x.com/burnarmy" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x19c018e13CFf682e729CC7b5Fb68c8A641bf98A4/logo.png b/blockchains/smartchain/assets/0x19c018e13CFf682e729CC7b5Fb68c8A641bf98A4/logo.png new file mode 100644 index 0000000000000..976013d288b98 Binary files /dev/null and b/blockchains/smartchain/assets/0x19c018e13CFf682e729CC7b5Fb68c8A641bf98A4/logo.png differ diff --git a/blockchains/smartchain/assets/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4/info.json b/blockchains/smartchain/assets/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4/info.json new file mode 100644 index 0000000000000..3af70f484b290 --- /dev/null +++ b/blockchains/smartchain/assets/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4/info.json @@ -0,0 +1,24 @@ +{ + "name": "Eli Lilly tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Eli Lilly xStock (LLYx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. LLYx tracks the price of Eli Lilly and Company (the underlying). LLYx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Eli Lilly and Company, whilst maintaining the benefits of blockchain technology. Eli Lilly and Company is a global pharmaceutical company based in Indianapolis, Indiana, that discovers, develops, manufactures, and markets human healthcare products.", + "explorer": "https://bscscan.com/token/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4", + "type": "BEP20", + "symbol": "LLYX", + "decimals": 18, + "status": "active", + "id": "0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/eli-lilly-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4/logo.png b/blockchains/smartchain/assets/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4/logo.png new file mode 100644 index 0000000000000..59de8858e0884 Binary files /dev/null and b/blockchains/smartchain/assets/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4/logo.png differ diff --git a/blockchains/smartchain/assets/0x19cd9B8e42d4EF62c3EA124110D5Cfd283CEaC43/info.json b/blockchains/smartchain/assets/0x19cd9B8e42d4EF62c3EA124110D5Cfd283CEaC43/info.json index 92af865fdbbee..b23b091d21d23 100644 --- a/blockchains/smartchain/assets/0x19cd9B8e42d4EF62c3EA124110D5Cfd283CEaC43/info.json +++ b/blockchains/smartchain/assets/0x19cd9B8e42d4EF62c3EA124110D5Cfd283CEaC43/info.json @@ -10,8 +10,8 @@ "id": "0x19cd9B8e42d4EF62c3EA124110D5Cfd283CEaC43", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ibatofficial" + "name": "x", + "url": "https://x.com/ibatofficial" }, { "name": "telegram", @@ -25,4 +25,4 @@ "tags": [ "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x19e6BfC1A6e4B042Fb20531244D47E252445df01/info.json b/blockchains/smartchain/assets/0x19e6BfC1A6e4B042Fb20531244D47E252445df01/info.json new file mode 100644 index 0000000000000..b8f1b669bde76 --- /dev/null +++ b/blockchains/smartchain/assets/0x19e6BfC1A6e4B042Fb20531244D47E252445df01/info.json @@ -0,0 +1,44 @@ +{ + "name": "Templar DAO", + "website": "https://templar.finance", + "description": "TemplarDAO is a decentralized reserve currency and hedge fund featuring a proprietary treasury-reverse protocol", + "explorer": "https://bscscan.com/token/0x19e6bfc1a6e4b042fb20531244d47e252445df01", + "type": "BEP20", + "symbol": "TEM", + "decimals": 9, + "status": "active", + "id": "0x19e6BfC1A6e4B042Fb20531244D47E252445df01", + "tags": [ + "defi" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/TemplarDAO" + }, + { + "name": "x", + "url": "https://x.com/TemplarDAO" + }, + { + "name": "github", + "url": "https://github.com/TemplarDAO" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/templar-dao" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/templardao" + }, + { + "name": "medium", + "url": "https://medium.com/@templardao.finance" + }, + { + "name": "docs", + "url": "https://templardao-finance.gitbook.io/templardao" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x19e6BfC1A6e4B042Fb20531244D47E252445df01/logo.png b/blockchains/smartchain/assets/0x19e6BfC1A6e4B042Fb20531244D47E252445df01/logo.png new file mode 100644 index 0000000000000..865b51baa5010 Binary files /dev/null and b/blockchains/smartchain/assets/0x19e6BfC1A6e4B042Fb20531244D47E252445df01/logo.png differ diff --git a/blockchains/smartchain/assets/0x19eE64850862cFd234e20c0db4edA286f12ec907/info.json b/blockchains/smartchain/assets/0x19eE64850862cFd234e20c0db4edA286f12ec907/info.json index 8625da6b3605e..f5ae48a362202 100644 --- a/blockchains/smartchain/assets/0x19eE64850862cFd234e20c0db4edA286f12ec907/info.json +++ b/blockchains/smartchain/assets/0x19eE64850862cFd234e20c0db4edA286f12ec907/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/CreamFi" }, { - "name": "twitter", - "url": "https://twitter.com/CreamdotFinance" + "name": "x", + "url": "https://x.com/CreamdotFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x1A52BA9C62DfedA37eAA44f9179d5FED97464444/info.json b/blockchains/smartchain/assets/0x1A52BA9C62DfedA37eAA44f9179d5FED97464444/info.json new file mode 100644 index 0000000000000..df7985b7f7143 --- /dev/null +++ b/blockchains/smartchain/assets/0x1A52BA9C62DfedA37eAA44f9179d5FED97464444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDKG", + "type": "BEP20", + "symbol": "FAKE 黄金抵押稳定币", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x1A52BA9C62DfedA37eAA44f9179d5FED97464444", + "explorer": "https://bscscan.com/token/0x1A52BA9C62DfedA37eAA44f9179d5FED97464444", + "status": "spam", + "id": "0x1A52BA9C62DfedA37eAA44f9179d5FED97464444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1A9Fd6eC3144Da3Dd6Ea13Ec1C25C58423a379b1/info.json b/blockchains/smartchain/assets/0x1A9Fd6eC3144Da3Dd6Ea13Ec1C25C58423a379b1/info.json new file mode 100644 index 0000000000000..7686e062bcb8c --- /dev/null +++ b/blockchains/smartchain/assets/0x1A9Fd6eC3144Da3Dd6Ea13Ec1C25C58423a379b1/info.json @@ -0,0 +1,40 @@ +{ + "name": "Sperax", + "type": "BEP20", + "symbol": "SPA", + "decimals": 18, + "website": "https://sperax.io", + "description": "Sperax is a programmable agent layer for DeFi, enabling autonomous capital execution, dynamic yield optimization, and onchain risk defense. SperaxOS. Your edge, automated. Smart agents for fast, low-noise trading across chains.", + "explorer": "https://bscscan.com/token/0x1A9Fd6eC3144Da3Dd6Ea13Ec1C25C58423a379b1", + "status": "active", + "id": "0x1A9Fd6eC3144Da3Dd6Ea13Ec1C25C58423a379b1", + "links": [ + { + "name": "x", + "url": "https://x.com/speraxusd" + }, + { + "name": "github", + "url": "https://github.com/sperax" + }, + { + "name": "telegram", + "url": "https://t.me/speraxusd" + }, + { + "name": "docs", + "url": "https://docs.sperax.io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sperax" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sperax" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/smartchain/assets/0x1A9Fd6eC3144Da3Dd6Ea13Ec1C25C58423a379b1/logo.png b/blockchains/smartchain/assets/0x1A9Fd6eC3144Da3Dd6Ea13Ec1C25C58423a379b1/logo.png new file mode 100644 index 0000000000000..588d8d6a9581a Binary files /dev/null and b/blockchains/smartchain/assets/0x1A9Fd6eC3144Da3Dd6Ea13Ec1C25C58423a379b1/logo.png differ diff --git a/blockchains/smartchain/assets/0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3/info.json b/blockchains/smartchain/assets/0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3/info.json index f178c4888c1e0..65384d4bfb9ac 100644 --- a/blockchains/smartchain/assets/0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3/info.json +++ b/blockchains/smartchain/assets/0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3/info.json @@ -1,5 +1,5 @@ { - "name": "BNB pegged Dai Token", + "name": "Dai", "website": "http://makerdao.com", "description": "BNB pegged Dai Token (DAI BEP20) is a token issued by Binance on Smart Chain; its price is pegged to DAI (DAI ERC20) at a ratio of 1:1.", "explorer": "https://bscscan.com/token/0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3", @@ -20,8 +20,8 @@ "url": "https://medium.com/@MakerDAO" }, { - "name": "twitter", - "url": "https://twitter.com/MakerDAO" + "name": "x", + "url": "https://x.com/MakerDAO" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x1Aa4BDb03f27B08Ad203Aa083e88Eb425CEdD330/info.json b/blockchains/smartchain/assets/0x1Aa4BDb03f27B08Ad203Aa083e88Eb425CEdD330/info.json index aef96a72b3a05..d322996b1abdc 100644 --- a/blockchains/smartchain/assets/0x1Aa4BDb03f27B08Ad203Aa083e88Eb425CEdD330/info.json +++ b/blockchains/smartchain/assets/0x1Aa4BDb03f27B08Ad203Aa083e88Eb425CEdD330/info.json @@ -6,8 +6,8 @@ "type": "BEP20", "links": [ { - "name": "twitter", - "url": "https://twitter.com/AnnexFinance" + "name": "x", + "url": "https://x.com/AnnexFinance" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3/info.json b/blockchains/smartchain/assets/0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3/info.json new file mode 100644 index 0000000000000..bb256d22b92eb --- /dev/null +++ b/blockchains/smartchain/assets/0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3/info.json @@ -0,0 +1,15 @@ +{ + "name": "Strategy PP Variable xStock", + "type": "BEP20", + "symbol": "STRCx", + "decimals": 18, + "description": "Strategy PP Variable xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3", + "status": "active", + "id": "0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3/logo.png b/blockchains/smartchain/assets/0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3/logo.png new file mode 100644 index 0000000000000..1407faeca0e8c Binary files /dev/null and b/blockchains/smartchain/assets/0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3/logo.png differ diff --git a/blockchains/smartchain/assets/0x1Ab7E7DEdA201E5Ea820F6C02C65Fce7ec6bEd32/info.json b/blockchains/smartchain/assets/0x1Ab7E7DEdA201E5Ea820F6C02C65Fce7ec6bEd32/info.json index 9feb1bce72808..5302f05277ee3 100644 --- a/blockchains/smartchain/assets/0x1Ab7E7DEdA201E5Ea820F6C02C65Fce7ec6bEd32/info.json +++ b/blockchains/smartchain/assets/0x1Ab7E7DEdA201E5Ea820F6C02C65Fce7ec6bEd32/info.json @@ -10,8 +10,8 @@ "id": "0x1Ab7E7DEdA201E5Ea820F6C02C65Fce7ec6bEd32", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BotPlanet_" + "name": "x", + "url": "https://x.com/BotPlanet_" }, { "name": "github", @@ -41,4 +41,4 @@ "tags": [ "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e/info.json b/blockchains/smartchain/assets/0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e/info.json new file mode 100644 index 0000000000000..9789675d6e106 --- /dev/null +++ b/blockchains/smartchain/assets/0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e/info.json @@ -0,0 +1,24 @@ +{ + "name": "Pfizer tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Pfizer xStock (PFEx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. PFEx tracks the price of Pfizer Inc. (the underlying). PFEx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Pfizer Inc., whilst maintaining the benefits of blockchain technology. Pfizer Inc. is a global biopharmaceutical company focused on discovering, developing, and delivering innovative medicines and vaccines to improve health and well-being.", + "explorer": "https://bscscan.com/token/0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e", + "type": "BEP20", + "symbol": "PFEX", + "decimals": 18, + "status": "active", + "id": "0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pfizer-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e/logo.png b/blockchains/smartchain/assets/0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e/logo.png new file mode 100644 index 0000000000000..c35598c6466ac Binary files /dev/null and b/blockchains/smartchain/assets/0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e/logo.png differ diff --git a/blockchains/smartchain/assets/0x1AdE17B4B38B472B5259BbC938618226dF7b5Ca8/info.json b/blockchains/smartchain/assets/0x1AdE17B4B38B472B5259BbC938618226dF7b5Ca8/info.json index f194da0854ec6..af2cd58dd80d6 100644 --- a/blockchains/smartchain/assets/0x1AdE17B4B38B472B5259BbC938618226dF7b5Ca8/info.json +++ b/blockchains/smartchain/assets/0x1AdE17B4B38B472B5259BbC938618226dF7b5Ca8/info.json @@ -10,8 +10,8 @@ "id": "0x1AdE17B4B38B472B5259BbC938618226dF7b5Ca8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/quamnetwork" + "name": "x", + "url": "https://x.com/quamnetwork" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x1Ae85D523cab90558311c3d08fDB68fD28757516/info.json b/blockchains/smartchain/assets/0x1Ae85D523cab90558311c3d08fDB68fD28757516/info.json new file mode 100644 index 0000000000000..52d8664e65f9d --- /dev/null +++ b/blockchains/smartchain/assets/0x1Ae85D523cab90558311c3d08fDB68fD28757516/info.json @@ -0,0 +1,14 @@ +{ + "name": "Botzilla", + "type": "BEP20", + "symbol": "BTZ", + "decimals": 18, + "website": "https://four.meme/token/0x1Ae85D523cab90558311c3d08fDB68fD28757516", + "description": "Botzilla is the FIRST autonomous AI Trader built on BNB Chain, living and thriving on X (Twitter) as @BotzillaAI_. Botzilla is here to reinvent how tokens are created, traded, and interacted with.", + "explorer": "https://bscscan.com/token/0x1Ae85D523cab90558311c3d08fDB68fD28757516", + "status": "active", + "id": "0x1Ae85D523cab90558311c3d08fDB68fD28757516", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1Ae85D523cab90558311c3d08fDB68fD28757516/logo.png b/blockchains/smartchain/assets/0x1Ae85D523cab90558311c3d08fDB68fD28757516/logo.png new file mode 100644 index 0000000000000..2bd1a281e57e2 Binary files /dev/null and b/blockchains/smartchain/assets/0x1Ae85D523cab90558311c3d08fDB68fD28757516/logo.png differ diff --git a/blockchains/smartchain/assets/0x1B41821625d8CFAd21cd56491DACD57ECaCc83dE/info.json b/blockchains/smartchain/assets/0x1B41821625d8CFAd21cd56491DACD57ECaCc83dE/info.json index a0331ab503646..a1d14d059e396 100644 --- a/blockchains/smartchain/assets/0x1B41821625d8CFAd21cd56491DACD57ECaCc83dE/info.json +++ b/blockchains/smartchain/assets/0x1B41821625d8CFAd21cd56491DACD57ECaCc83dE/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/NanoDogecoin" }, { - "name": "twitter", - "url": "https://twitter.com/nanodogecoin" + "name": "x", + "url": "https://x.com/nanodogecoin" }, { "name": "coingecko", diff --git a/blockchains/smartchain/assets/0x1B76fd13E86ef4fe35F94dB334Eb16066FB8E74F/info.json b/blockchains/smartchain/assets/0x1B76fd13E86ef4fe35F94dB334Eb16066FB8E74F/info.json new file mode 100644 index 0000000000000..8c1120df555be --- /dev/null +++ b/blockchains/smartchain/assets/0x1B76fd13E86ef4fe35F94dB334Eb16066FB8E74F/info.json @@ -0,0 +1,14 @@ +{ + "name": "Burj", + "type": "BEP20", + "symbol": "Burj", + "decimals": 18, + "website": "https://four.meme/token/0x1B76fd13E86ef4fe35F94dB334Eb16066FB8E74F", + "description": "Burj", + "explorer": "https://bscscan.com/token/0x1B76fd13E86ef4fe35F94dB334Eb16066FB8E74F", + "status": "active", + "id": "0x1B76fd13E86ef4fe35F94dB334Eb16066FB8E74F", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1B76fd13E86ef4fe35F94dB334Eb16066FB8E74F/logo.png b/blockchains/smartchain/assets/0x1B76fd13E86ef4fe35F94dB334Eb16066FB8E74F/logo.png new file mode 100644 index 0000000000000..e0e2d806296b4 Binary files /dev/null and b/blockchains/smartchain/assets/0x1B76fd13E86ef4fe35F94dB334Eb16066FB8E74F/logo.png differ diff --git a/blockchains/smartchain/assets/0x1Ba42e5193dfA8B03D15dd1B86a3113bbBEF8Eeb/info.json b/blockchains/smartchain/assets/0x1Ba42e5193dfA8B03D15dd1B86a3113bbBEF8Eeb/info.json index d39d17118457f..5b898e177dea8 100644 --- a/blockchains/smartchain/assets/0x1Ba42e5193dfA8B03D15dd1B86a3113bbBEF8Eeb/info.json +++ b/blockchains/smartchain/assets/0x1Ba42e5193dfA8B03D15dd1B86a3113bbBEF8Eeb/info.json @@ -1,5 +1,5 @@ { - "name": "BNB pegged Zcash Token", + "name": "Zcash", "website": "https://z.cash", "description": "BNB pegged Zcash Token (ZEC BEP20) is a token issued by Binance on Smart Chain; its price is pegged to Zcash (ZEC) at a ratio of 1:1.", "explorer": "https://bscscan.com/token/0x1Ba42e5193dfA8B03D15dd1B86a3113bbBEF8Eeb", diff --git a/blockchains/smartchain/assets/0x1Bd5ddCD740F2D13b2255fc325c02509da35C4e4/info.json b/blockchains/smartchain/assets/0x1Bd5ddCD740F2D13b2255fc325c02509da35C4e4/info.json index 9530a1e0c88fa..ad45ca60b0336 100644 --- a/blockchains/smartchain/assets/0x1Bd5ddCD740F2D13b2255fc325c02509da35C4e4/info.json +++ b/blockchains/smartchain/assets/0x1Bd5ddCD740F2D13b2255fc325c02509da35C4e4/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/baby-cat-coin/" }, { - "name": "twitter", - "url": "https://twitter.com/babycatcoinbsc" + "name": "x", + "url": "https://x.com/babycatcoinbsc" }, { "name": "coingecko", diff --git a/blockchains/smartchain/assets/0x1CD89241B26FCDC421FD02907d6504C8AbBfe1bc/info.json b/blockchains/smartchain/assets/0x1CD89241B26FCDC421FD02907d6504C8AbBfe1bc/info.json new file mode 100644 index 0000000000000..1072cd7c4ad95 --- /dev/null +++ b/blockchains/smartchain/assets/0x1CD89241B26FCDC421FD02907d6504C8AbBfe1bc/info.json @@ -0,0 +1,28 @@ +{ + "name": "WisdomTree US Quality Dividend Growth Fund (Ondo Tokenized)", + "type": "BEP20", + "symbol": "DGRWon", + "decimals": 18, + "description": "DGRWon is the Ondo Tokenized version of the WisdomTree US Quality Dividend Growth Fund, giving tokenholders economic exposure similar to holding DGRW and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x1CD89241B26FCDC421FD02907d6504C8AbBfe1bc", + "status": "active", + "id": "0x1CD89241B26FCDC421FD02907d6504C8AbBfe1bc", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wisdomtree-us-quality-dividend-growth-fund-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wisdomtree-us-quality-dividend-growth-tokenized-fund-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1CD89241B26FCDC421FD02907d6504C8AbBfe1bc/logo.png b/blockchains/smartchain/assets/0x1CD89241B26FCDC421FD02907d6504C8AbBfe1bc/logo.png new file mode 100644 index 0000000000000..54ad30b97e82e Binary files /dev/null and b/blockchains/smartchain/assets/0x1CD89241B26FCDC421FD02907d6504C8AbBfe1bc/logo.png differ diff --git a/blockchains/smartchain/assets/0x1CE0c2827e2eF14D5C4f29a091d735A204794041/info.json b/blockchains/smartchain/assets/0x1CE0c2827e2eF14D5C4f29a091d735A204794041/info.json index 3b0ecc032b7f0..e75c70670cf6b 100644 --- a/blockchains/smartchain/assets/0x1CE0c2827e2eF14D5C4f29a091d735A204794041/info.json +++ b/blockchains/smartchain/assets/0x1CE0c2827e2eF14D5C4f29a091d735A204794041/info.json @@ -1,5 +1,5 @@ { - "name": "Binance-Peg Avalanche Token", + "name": "Avalanche", "website": "http://avax.network", "description": "Avalanche is an open-source platform for launching Decentralized Finance (DeFi) applications and enterprise blockchain deployments in an interoperable, highly scalable ecosystem.", "explorer": "https://bscscan.com/token/0x1CE0c2827e2eF14D5C4f29a091d735A204794041", diff --git a/blockchains/smartchain/assets/0x1CdE419faE0Ef7f7931aE3E29e5f411C8C5E5Fa1/info.json b/blockchains/smartchain/assets/0x1CdE419faE0Ef7f7931aE3E29e5f411C8C5E5Fa1/info.json new file mode 100644 index 0000000000000..f655f6ccb1b4e --- /dev/null +++ b/blockchains/smartchain/assets/0x1CdE419faE0Ef7f7931aE3E29e5f411C8C5E5Fa1/info.json @@ -0,0 +1,24 @@ +{ + "name": "Visa (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "Von is the Ondo Tokenized version of Visa, giving tokenholders economic exposure similar to holding V and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x1cde419fae0ef7f7931ae3e29e5f411c8c5e5fa1", + "type": "BEP20", + "symbol": "Von", + "decimals": 18, + "status": "active", + "id": "0x1CdE419faE0Ef7f7931aE3E29e5f411C8C5E5Fa1", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/visa-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1CdE419faE0Ef7f7931aE3E29e5f411C8C5E5Fa1/logo.png b/blockchains/smartchain/assets/0x1CdE419faE0Ef7f7931aE3E29e5f411C8C5E5Fa1/logo.png new file mode 100644 index 0000000000000..61b11abb4203f Binary files /dev/null and b/blockchains/smartchain/assets/0x1CdE419faE0Ef7f7931aE3E29e5f411C8C5E5Fa1/logo.png differ diff --git a/blockchains/smartchain/assets/0x1D1cB8997570e73949930c01Fe5796C88d7336c6/info.json b/blockchains/smartchain/assets/0x1D1cB8997570e73949930c01Fe5796C88d7336c6/info.json index 70a3d634c31b7..38dcdd2d3cdcf 100644 --- a/blockchains/smartchain/assets/0x1D1cB8997570e73949930c01Fe5796C88d7336c6/info.json +++ b/blockchains/smartchain/assets/0x1D1cB8997570e73949930c01Fe5796C88d7336c6/info.json @@ -10,8 +10,8 @@ "id": "0x1D1cB8997570e73949930c01Fe5796C88d7336c6", "links": [ { - "name": "twitter", - "url": "https://twitter.com/realpolkabridge" + "name": "x", + "url": "https://x.com/realpolkabridge" }, { "name": "telegram_news", diff --git a/blockchains/smartchain/assets/0x1D229B958D5DDFca92146585a8711aECbE56F095/info.json b/blockchains/smartchain/assets/0x1D229B958D5DDFca92146585a8711aECbE56F095/info.json index f8d06ad171367..2093c8f861ea6 100644 --- a/blockchains/smartchain/assets/0x1D229B958D5DDFca92146585a8711aECbE56F095/info.json +++ b/blockchains/smartchain/assets/0x1D229B958D5DDFca92146585a8711aECbE56F095/info.json @@ -10,8 +10,8 @@ "id": "0x1D229B958D5DDFca92146585a8711aECbE56F095", "links": [ { - "name": "twitter", - "url": "https://twitter.com/zoogamepro" + "name": "x", + "url": "https://x.com/zoogamepro" }, { "name": "whitepaper", diff --git a/blockchains/smartchain/assets/0x1D2EaAF0aE00382893aa4318Bd88d1Cd0e9B858A/info.json b/blockchains/smartchain/assets/0x1D2EaAF0aE00382893aa4318Bd88d1Cd0e9B858A/info.json new file mode 100644 index 0000000000000..e7576ac4137d1 --- /dev/null +++ b/blockchains/smartchain/assets/0x1D2EaAF0aE00382893aa4318Bd88d1Cd0e9B858A/info.json @@ -0,0 +1,24 @@ +{ + "name": "VinFast Auto (Ondo Tokenized)", + "type": "BEP20", + "symbol": "VFSon", + "decimals": 18, + "description": "VFSon is the Ondo Tokenized version of VinFast Auto, giving tokenholders economic exposure similar to holding VFS and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x1D2EaAF0aE00382893aa4318Bd88d1Cd0e9B858A", + "status": "active", + "id": "0x1D2EaAF0aE00382893aa4318Bd88d1Cd0e9B858A", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vinfast-auto-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1D2EaAF0aE00382893aa4318Bd88d1Cd0e9B858A/logo.png b/blockchains/smartchain/assets/0x1D2EaAF0aE00382893aa4318Bd88d1Cd0e9B858A/logo.png new file mode 100644 index 0000000000000..75d3501cc1374 Binary files /dev/null and b/blockchains/smartchain/assets/0x1D2EaAF0aE00382893aa4318Bd88d1Cd0e9B858A/logo.png differ diff --git a/blockchains/smartchain/assets/0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE/info.json b/blockchains/smartchain/assets/0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE/info.json index ec22470ba0b04..619a3e023884f 100644 --- a/blockchains/smartchain/assets/0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE/info.json +++ b/blockchains/smartchain/assets/0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE/info.json @@ -1,5 +1,5 @@ { - "name": "BNB pegged XRP Token", + "name": "XRP", "website": "https://ripple.com/xrp", "description": "BNB pegged XRP Token (XRP BEP20) is a token issued by Binance on Smart Chain; its price is pegged to XRP (XRP) at a ratio of 1:1.", "explorer": "https://bscscan.com/token/0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE", @@ -18,8 +18,8 @@ "url": "https://facebook.com/ripplepay" }, { - "name": "twitter", - "url": "https://twitter.com/Ripple" + "name": "x", + "url": "https://x.com/Ripple" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1D3437E570e93581Bd94b2fd8Fbf202d4a65654A/info.json b/blockchains/smartchain/assets/0x1D3437E570e93581Bd94b2fd8Fbf202d4a65654A/info.json index 20bdb2fe3a1ea..0abab053c379e 100644 --- a/blockchains/smartchain/assets/0x1D3437E570e93581Bd94b2fd8Fbf202d4a65654A/info.json +++ b/blockchains/smartchain/assets/0x1D3437E570e93581Bd94b2fd8Fbf202d4a65654A/info.json @@ -17,8 +17,8 @@ "url": "https://t.me/NanoByteCommunity" }, { - "name": "twitter", - "url": "https://twitter.com/nanobyte_io" + "name": "x", + "url": "https://x.com/nanobyte_io" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1D48c83A14108B8401b970aD434bcCA0C7De8888/info.json b/blockchains/smartchain/assets/0x1D48c83A14108B8401b970aD434bcCA0C7De8888/info.json new file mode 100644 index 0000000000000..3386a3587ccde --- /dev/null +++ b/blockchains/smartchain/assets/0x1D48c83A14108B8401b970aD434bcCA0C7De8888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Bitcoin", + "type": "BEP20", + "symbol": "FAKE BTC", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x1D48c83A14108B8401b970aD434bcCA0C7De8888", + "explorer": "https://bscscan.com/token/0x1D48c83A14108B8401b970aD434bcCA0C7De8888", + "status": "spam", + "id": "0x1D48c83A14108B8401b970aD434bcCA0C7De8888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1E053D89E08c24aA2CE5C5B4206744Dc2D7BD8F5/info.json b/blockchains/smartchain/assets/0x1E053D89E08c24aA2CE5C5B4206744Dc2D7BD8F5/info.json new file mode 100644 index 0000000000000..4e74fed58fdf3 --- /dev/null +++ b/blockchains/smartchain/assets/0x1E053D89E08c24aA2CE5C5B4206744Dc2D7BD8F5/info.json @@ -0,0 +1,22 @@ +{ + "name": "ThunderCore", + "website": "https://bridge.thundercore.com/bsc/", + "description": "BNB pegged ThunderCore on BNB Chain. The ThunderCore Bridge allows users to transfer assets between BNB Chain and ThunderCore Blockchain. This is a customized version of POA network Bridge", + "research": "https://research.binance.com/en/projects/thundercore", + "explorer": "https://etherscan.io/token/0x1e053d89e08c24aa2ce5c5b4206744dc2d7bd8f5", + "type": "BEP20", + "symbol": "TT", + "decimals": 18, + "status": "active", + "id": "0x1E053D89E08c24aA2CE5C5B4206744Dc2D7BD8F5", + "links": [ + { + "name": "x", + "url": "https://x.com/ThunderCoreLab" + }, + { + "name": "discord", + "url": "https://discord.com/channels/467102816230440970/468561199790030849" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1E053D89E08c24aA2CE5C5B4206744Dc2D7BD8F5/logo.png b/blockchains/smartchain/assets/0x1E053D89E08c24aA2CE5C5B4206744Dc2D7BD8F5/logo.png new file mode 100644 index 0000000000000..c408c0f2a7f16 Binary files /dev/null and b/blockchains/smartchain/assets/0x1E053D89E08c24aA2CE5C5B4206744Dc2D7BD8F5/logo.png differ diff --git a/blockchains/smartchain/assets/0x1E1aFE9D9c5f290d8F6996dDB190bd111908A43D/info.json b/blockchains/smartchain/assets/0x1E1aFE9D9c5f290d8F6996dDB190bd111908A43D/info.json index 4c916dad2b313..c2a4290c0c5a1 100644 --- a/blockchains/smartchain/assets/0x1E1aFE9D9c5f290d8F6996dDB190bd111908A43D/info.json +++ b/blockchains/smartchain/assets/0x1E1aFE9D9c5f290d8F6996dDB190bd111908A43D/info.json @@ -18,8 +18,8 @@ "url": "https://apeswap.gitbook.io/apeswap-finance/" }, { - "name": "twitter", - "url": "https://twitter.com/ape_swap" + "name": "x", + "url": "https://x.com/ape_swap" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x1E653794A6849bC8A78be50C4D48981AfAD6359d/info.json b/blockchains/smartchain/assets/0x1E653794A6849bC8A78be50C4D48981AfAD6359d/info.json index 3f3b54d210ecb..cbab3dac4a581 100644 --- a/blockchains/smartchain/assets/0x1E653794A6849bC8A78be50C4D48981AfAD6359d/info.json +++ b/blockchains/smartchain/assets/0x1E653794A6849bC8A78be50C4D48981AfAD6359d/info.json @@ -10,8 +10,8 @@ "id": "0x1E653794A6849bC8A78be50C4D48981AfAD6359d", "links": [ { - "name": "twitter", - "url": "https://twitter.com/adaboytoken" + "name": "x", + "url": "https://x.com/adaboytoken" }, { "name": "whitepaper", diff --git a/blockchains/smartchain/assets/0x1F1C90aEb2fd13EA972F0a71e35c0753848e3DB0/info.json b/blockchains/smartchain/assets/0x1F1C90aEb2fd13EA972F0a71e35c0753848e3DB0/info.json index 35490b4af02f1..23f77cc16af7a 100644 --- a/blockchains/smartchain/assets/0x1F1C90aEb2fd13EA972F0a71e35c0753848e3DB0/info.json +++ b/blockchains/smartchain/assets/0x1F1C90aEb2fd13EA972F0a71e35c0753848e3DB0/info.json @@ -14,8 +14,8 @@ "url": "https://medium.com/cheelee-cheel" }, { - "name": "twitter", - "url": "https://twitter.com/Cheelee_Tweet" + "name": "x", + "url": "https://x.com/Cheelee_Tweet" }, { "name": "telegram", @@ -38,4 +38,4 @@ "gamefi", "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1F2Cfde19976A2bF0A250900f7aCe9c362908C93/info.json b/blockchains/smartchain/assets/0x1F2Cfde19976A2bF0A250900f7aCe9c362908C93/info.json index 61dffe4fbc2f5..8f52e20e7caef 100644 --- a/blockchains/smartchain/assets/0x1F2Cfde19976A2bF0A250900f7aCe9c362908C93/info.json +++ b/blockchains/smartchain/assets/0x1F2Cfde19976A2bF0A250900f7aCe9c362908C93/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/az-world/" }, { - "name": "twitter", - "url": "https://twitter.com/azworld_network" + "name": "x", + "url": "https://x.com/azworld_network" }, { "name": "telegram", @@ -26,4 +26,4 @@ "Play To Earn", "Social Networking" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1F36FB2D91d9951Cf58aE4c1956C0b77e224F1E9/info.json b/blockchains/smartchain/assets/0x1F36FB2D91d9951Cf58aE4c1956C0b77e224F1E9/info.json index e110d8bdade35..c10861af734d8 100644 --- a/blockchains/smartchain/assets/0x1F36FB2D91d9951Cf58aE4c1956C0b77e224F1E9/info.json +++ b/blockchains/smartchain/assets/0x1F36FB2D91d9951Cf58aE4c1956C0b77e224F1E9/info.json @@ -10,8 +10,8 @@ "id": "0x1F36FB2D91d9951Cf58aE4c1956C0b77e224F1E9", "links": [ { - "name": "twitter", - "url": "https://twitter.com/vcgamers_io" + "name": "x", + "url": "https://x.com/vcgamers_io" }, { "name": "github", @@ -61,4 +61,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1F39Dd2Bf5A27e2D4ED691DCF933077371777CB0/info.json b/blockchains/smartchain/assets/0x1F39Dd2Bf5A27e2D4ED691DCF933077371777CB0/info.json index 412f37644d27a..09a8bd8ff0eb3 100644 --- a/blockchains/smartchain/assets/0x1F39Dd2Bf5A27e2D4ED691DCF933077371777CB0/info.json +++ b/blockchains/smartchain/assets/0x1F39Dd2Bf5A27e2D4ED691DCF933077371777CB0/info.json @@ -22,8 +22,8 @@ "url": "https://docs.snowcrash.finance/" }, { - "name": "twitter", - "url": "https://twitter.com/SnowCrashDAO" + "name": "x", + "url": "https://x.com/SnowCrashDAO" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x1F5d9fFAFa57604Ae2A43cebAdEcC175DF2F069e/info.json b/blockchains/smartchain/assets/0x1F5d9fFAFa57604Ae2A43cebAdEcC175DF2F069e/info.json index ab578b7bcf63a..2f77ef6ceec12 100644 --- a/blockchains/smartchain/assets/0x1F5d9fFAFa57604Ae2A43cebAdEcC175DF2F069e/info.json +++ b/blockchains/smartchain/assets/0x1F5d9fFAFa57604Ae2A43cebAdEcC175DF2F069e/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/InfinitXToken" }, { - "name": "twitter", - "url": "https://twitter.com/infinitX_bsc" + "name": "x", + "url": "https://x.com/infinitX_bsc" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x1F7e8fe01AEbA6fDAEA85161746f4D53DC9bdA4F/info.json b/blockchains/smartchain/assets/0x1F7e8fe01AEbA6fDAEA85161746f4D53DC9bdA4F/info.json index d97480d68d2cd..4271f98c0f0a9 100644 --- a/blockchains/smartchain/assets/0x1F7e8fe01AEbA6fDAEA85161746f4D53DC9bdA4F/info.json +++ b/blockchains/smartchain/assets/0x1F7e8fe01AEbA6fDAEA85161746f4D53DC9bdA4F/info.json @@ -10,8 +10,8 @@ "id": "0x1F7e8fe01AEbA6fDAEA85161746f4D53DC9bdA4F", "links": [ { - "name": "twitter", - "url": "https://twitter.com/gg_tkn" + "name": "x", + "url": "https://x.com/gg_tkn" }, { "name": "facebook", @@ -33,4 +33,4 @@ "tags": [ "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1F878d0BccD3D502ff55F7a4797C556f103d6e4b/info.json b/blockchains/smartchain/assets/0x1F878d0BccD3D502ff55F7a4797C556f103d6e4b/info.json index d97b380ff547e..8baa47219347f 100644 --- a/blockchains/smartchain/assets/0x1F878d0BccD3D502ff55F7a4797C556f103d6e4b/info.json +++ b/blockchains/smartchain/assets/0x1F878d0BccD3D502ff55F7a4797C556f103d6e4b/info.json @@ -10,8 +10,8 @@ "id": "0x1F878d0BccD3D502ff55F7a4797C556f103d6e4b", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Squidanomics" + "name": "x", + "url": "https://x.com/Squidanomics" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x1FA0f5ed24a1a2b43741E88F8FEc19633e67082B/info.json b/blockchains/smartchain/assets/0x1FA0f5ed24a1a2b43741E88F8FEc19633e67082B/info.json new file mode 100644 index 0000000000000..32016e3a943b2 --- /dev/null +++ b/blockchains/smartchain/assets/0x1FA0f5ed24a1a2b43741E88F8FEc19633e67082B/info.json @@ -0,0 +1,30 @@ +{ + "name": "DIAM", + "type": "BEP20", + "symbol": "DIAM", + "decimals": 18, + "description": "The Diamante is an innovative blockchain designed to meet the growing demand for secure and scalable digital solutions in the face of quantum computing advancements. As quantum computers become more capable, traditional cryptographic techniques are increasingly at risk of being compromised.", + "website": "https://www.diamante.io/", + "explorer": "https://bscscan.com/token/0x1fa0f5ed24a1a2b43741e88f8fec19633e67082b", + "id": "0x1FA0f5ed24a1a2b43741E88F8FEc19633e67082B", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/diamante_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/diam/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/diamante" + } + + ], + "tags": [ + "DeFi" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1FA0f5ed24a1a2b43741E88F8FEc19633e67082B/logo.png b/blockchains/smartchain/assets/0x1FA0f5ed24a1a2b43741E88F8FEc19633e67082B/logo.png new file mode 100644 index 0000000000000..4f0400e1fa168 Binary files /dev/null and b/blockchains/smartchain/assets/0x1FA0f5ed24a1a2b43741E88F8FEc19633e67082B/logo.png differ diff --git a/blockchains/smartchain/assets/0x1FDB2c3851D067502Ce2122bE80a41ea212949E2/info.json b/blockchains/smartchain/assets/0x1FDB2c3851D067502Ce2122bE80a41ea212949E2/info.json index 794de87021af6..dc58ae173ddbb 100644 --- a/blockchains/smartchain/assets/0x1FDB2c3851D067502Ce2122bE80a41ea212949E2/info.json +++ b/blockchains/smartchain/assets/0x1FDB2c3851D067502Ce2122bE80a41ea212949E2/info.json @@ -10,8 +10,8 @@ "id": "0x1FDB2c3851D067502Ce2122bE80a41ea212949E2", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PigeInu" + "name": "x", + "url": "https://x.com/PigeInu" }, { "name": "github", @@ -49,4 +49,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1Fd448D0361c3212961a70930f3129A45f425B68/info.json b/blockchains/smartchain/assets/0x1Fd448D0361c3212961a70930f3129A45f425B68/info.json new file mode 100644 index 0000000000000..3271ad19ea265 --- /dev/null +++ b/blockchains/smartchain/assets/0x1Fd448D0361c3212961a70930f3129A45f425B68/info.json @@ -0,0 +1,17 @@ +{ + "name": "Marscoin", + "symbol": "Mars", + "website": "https://t.me/+oyxWKfNz2zllYTRh", + "description": "Mars has become a high-frequency word on Twitter for human immigrants Mars Musk and one of the easiest tokens for FOMO", + "explorer": "https://bscscan.com/token/0x1fd448d0361c3212961a70930f3129a45f425b68", + "decimals": 18, + "status": "active", + "id": "0x1Fd448D0361c3212961a70930f3129A45f425B68", + "type": "BEP20", + "links": [ + { + "name": "telegram", + "url": "https://t.me/+oyxWKfNz2zllYTRh" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1Fd448D0361c3212961a70930f3129A45f425B68/logo.png b/blockchains/smartchain/assets/0x1Fd448D0361c3212961a70930f3129A45f425B68/logo.png new file mode 100644 index 0000000000000..cbcff9a3a88ba Binary files /dev/null and b/blockchains/smartchain/assets/0x1Fd448D0361c3212961a70930f3129A45f425B68/logo.png differ diff --git a/blockchains/smartchain/assets/0x1Ffe17B99b439bE0aFC831239dDECda2A790fF3A/info.json b/blockchains/smartchain/assets/0x1Ffe17B99b439bE0aFC831239dDECda2A790fF3A/info.json index 8e238963db696..b371639c208a3 100644 --- a/blockchains/smartchain/assets/0x1Ffe17B99b439bE0aFC831239dDECda2A790fF3A/info.json +++ b/blockchains/smartchain/assets/0x1Ffe17B99b439bE0aFC831239dDECda2A790fF3A/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/CreamFi" }, { - "name": "twitter", - "url": "https://twitter.com/CreamdotFinance" + "name": "x", + "url": "https://x.com/CreamdotFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/info.json b/blockchains/smartchain/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/info.json new file mode 100644 index 0000000000000..fb66477cb3e63 --- /dev/null +++ b/blockchains/smartchain/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/info.json @@ -0,0 +1,46 @@ +{ + "name": "Dypius", + "type": "BEP20", + "symbol": "DYP", + "decimals": 18, + "website": "https://www.dypius.com/", + "description": "Dypius is a powerful, decentralized ecosystem with a focus on scalability, security, and global adoption through next-gen infrastructure. We offer a variety of products and services that cater to both beginners and advanced users in the crypto space including DeFi solutions, analytical tools, NFTs, Metaverse and more!", + "explorer": "https://bscscan.com/token/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4", + "status": "active", + "id": "0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4", + "links": [ + { + "name": "x", + "url": "https://x.com/dypius" + }, + { + "name": "github", + "url": "https://github.com/dypfinance/" + }, + { + "name": "medium", + "url": "https://dypius.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/defi-yield-protocol-v2/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dypius" + }, + { + "name": "discord", + "url": "https://discord.com/invite/worldofdypians" + }, + { + "name": "whitepaper", + "url": "https://drive.google.com/drive/folders/1PprliiDlNB6Cx-35eaEun-gmjk0-a1O4" + } + ], + "tags": [ + "governance", + "nft", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/logo.png b/blockchains/smartchain/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/logo.png new file mode 100644 index 0000000000000..b86b0fca332ad Binary files /dev/null and b/blockchains/smartchain/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/logo.png differ diff --git a/blockchains/smartchain/assets/0x1a8B6E637aAB57c8544DC90BD813c62fAA68AA1C/info.json b/blockchains/smartchain/assets/0x1a8B6E637aAB57c8544DC90BD813c62fAA68AA1C/info.json index 1f68447568ecb..be816388c00f3 100644 --- a/blockchains/smartchain/assets/0x1a8B6E637aAB57c8544DC90BD813c62fAA68AA1C/info.json +++ b/blockchains/smartchain/assets/0x1a8B6E637aAB57c8544DC90BD813c62fAA68AA1C/info.json @@ -10,8 +10,8 @@ "id": "0x1a8B6E637aAB57c8544DC90BD813c62fAA68AA1C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/healthland_io" + "name": "x", + "url": "https://x.com/healthland_io" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x1a9b49E9f075c37Fe5f86C916bac9DEb33556D7E/info.json b/blockchains/smartchain/assets/0x1a9b49E9f075c37Fe5f86C916bac9DEb33556D7E/info.json index d96dc6dc5271d..4142f559f3bda 100644 --- a/blockchains/smartchain/assets/0x1a9b49E9f075c37Fe5f86C916bac9DEb33556D7E/info.json +++ b/blockchains/smartchain/assets/0x1a9b49E9f075c37Fe5f86C916bac9DEb33556D7E/info.json @@ -10,8 +10,8 @@ "id": "0x1a9b49E9f075c37Fe5f86C916bac9DEb33556D7E", "links": [ { - "name": "twitter", - "url": "https://twitter.com/AspoWorld" + "name": "x", + "url": "https://x.com/AspoWorld" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x1aF8c1C3AD36A041cb6678feD86B1E095004fd16/info.json b/blockchains/smartchain/assets/0x1aF8c1C3AD36A041cb6678feD86B1E095004fd16/info.json index 7e06907a1274d..bf561392c916b 100644 --- a/blockchains/smartchain/assets/0x1aF8c1C3AD36A041cb6678feD86B1E095004fd16/info.json +++ b/blockchains/smartchain/assets/0x1aF8c1C3AD36A041cb6678feD86B1E095004fd16/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/CreamFi" }, { - "name": "twitter", - "url": "https://twitter.com/CreamdotFinance" + "name": "x", + "url": "https://x.com/CreamdotFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x1aaeb7d6436FDA7cDac7b87ab8022e97586d2Da1/info.json b/blockchains/smartchain/assets/0x1aaeb7d6436FDA7cDac7b87ab8022e97586d2Da1/info.json new file mode 100644 index 0000000000000..c21d825335408 --- /dev/null +++ b/blockchains/smartchain/assets/0x1aaeb7d6436FDA7cDac7b87ab8022e97586d2Da1/info.json @@ -0,0 +1,20 @@ +{ + "name": "Alt.town", + "website": "https://alt.town", + "description": "Alt.town is a platform where users can participate in the value growth of virtual creators represented as digital assets.", + "explorer": "https://bscscan.com/token/0x1aaeb7d6436FDA7cDac7b87ab8022e97586d2Da1", + "type": "BEP20", + "symbol": "TOWN", + "decimals": 18, + "status": "active", + "id": "0x1aaeb7d6436FDA7cDac7b87ab8022e97586d2Da1", + "links": [ + { + "name": "twitter", + "url": "https://x.com/AlttownOfficial" + } + ], + "tags": [ + "dapp" + ] +} diff --git a/blockchains/smartchain/assets/0x1aaeb7d6436FDA7cDac7b87ab8022e97586d2Da1/logo.png b/blockchains/smartchain/assets/0x1aaeb7d6436FDA7cDac7b87ab8022e97586d2Da1/logo.png new file mode 100644 index 0000000000000..f2128455d8eb5 Binary files /dev/null and b/blockchains/smartchain/assets/0x1aaeb7d6436FDA7cDac7b87ab8022e97586d2Da1/logo.png differ diff --git a/blockchains/smartchain/assets/0x1ae9e7f362D16d63daAF3EA0EDD86D951086ACF0/info.json b/blockchains/smartchain/assets/0x1ae9e7f362D16d63daAF3EA0EDD86D951086ACF0/info.json new file mode 100644 index 0000000000000..efeb568f50659 --- /dev/null +++ b/blockchains/smartchain/assets/0x1ae9e7f362D16d63daAF3EA0EDD86D951086ACF0/info.json @@ -0,0 +1,17 @@ +{ + "name": "chinese beaver", + "symbol": "beaver", + "website": "https://x.com/beaverBSC", + "description": "I have my own principles, and I don't want to be stepped on all my life", + "explorer": "https://bscscan.com/token/0x1ae9e7f362d16d63daaf3ea0edd86d951086acf0", + "decimals": 18, + "status": "active", + "id": "0x1ae9e7f362D16d63daAF3EA0EDD86D951086ACF0", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/beaverBSC" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1ae9e7f362D16d63daAF3EA0EDD86D951086ACF0/logo.png b/blockchains/smartchain/assets/0x1ae9e7f362D16d63daAF3EA0EDD86D951086ACF0/logo.png new file mode 100644 index 0000000000000..99bdeac6bebad Binary files /dev/null and b/blockchains/smartchain/assets/0x1ae9e7f362D16d63daAF3EA0EDD86D951086ACF0/logo.png differ diff --git a/blockchains/smartchain/assets/0x1bA8D3C4c219B124d351F603060663BD1bcd9bbF/info.json b/blockchains/smartchain/assets/0x1bA8D3C4c219B124d351F603060663BD1bcd9bbF/info.json index c6a1fcc2917b3..0ad4dd9a71fbb 100644 --- a/blockchains/smartchain/assets/0x1bA8D3C4c219B124d351F603060663BD1bcd9bbF/info.json +++ b/blockchains/smartchain/assets/0x1bA8D3C4c219B124d351F603060663BD1bcd9bbF/info.json @@ -1,5 +1,5 @@ { - "name": "Binance-Peg TornadoCash Token", + "name": "Tornado Cash", "website": "https://tornado.cash/", "description": "Tornado Cash is a fully decentralized protocol for private transactions on Ethereum.", "explorer": "https://bscscan.com/token/0x1bA8D3C4c219B124d351F603060663BD1bcd9bbF", @@ -14,8 +14,8 @@ "url": "https://t.me/TornadoCashOfficial" }, { - "name": "twitter", - "url": "https://twitter.com/TornadoCash" + "name": "x", + "url": "https://x.com/TornadoCash" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x1bA8c21c623C843Cd4c60438d70E7Ad50f363fbb/info.json b/blockchains/smartchain/assets/0x1bA8c21c623C843Cd4c60438d70E7Ad50f363fbb/info.json index e53bd3d3e60b1..15cbc64cb941f 100644 --- a/blockchains/smartchain/assets/0x1bA8c21c623C843Cd4c60438d70E7Ad50f363fbb/info.json +++ b/blockchains/smartchain/assets/0x1bA8c21c623C843Cd4c60438d70E7Ad50f363fbb/info.json @@ -11,8 +11,8 @@ "id": "0x1bA8c21c623C843Cd4c60438d70E7Ad50f363fbb", "links": [ { - "name": "twitter", - "url": "https://twitter.com/srn_art" + "name": "x", + "url": "https://x.com/srn_art" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x1bEc41a36356D5574Aeb068B599Ab7e48dD008b8/info.json b/blockchains/smartchain/assets/0x1bEc41a36356D5574Aeb068B599Ab7e48dD008b8/info.json index 6730abc84127a..6467bcd59b500 100644 --- a/blockchains/smartchain/assets/0x1bEc41a36356D5574Aeb068B599Ab7e48dD008b8/info.json +++ b/blockchains/smartchain/assets/0x1bEc41a36356D5574Aeb068B599Ab7e48dD008b8/info.json @@ -10,8 +10,8 @@ "id": "0x1bEc41a36356D5574Aeb068B599Ab7e48dD008b8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/dogefood_bsc" + "name": "x", + "url": "https://x.com/dogefood_bsc" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x1cD137eb5BDf426AaE58C3Ed80383f74e42D9bF2/info.json b/blockchains/smartchain/assets/0x1cD137eb5BDf426AaE58C3Ed80383f74e42D9bF2/info.json index a4283b02d476d..c3c821c6203d0 100644 --- a/blockchains/smartchain/assets/0x1cD137eb5BDf426AaE58C3Ed80383f74e42D9bF2/info.json +++ b/blockchains/smartchain/assets/0x1cD137eb5BDf426AaE58C3Ed80383f74e42D9bF2/info.json @@ -10,8 +10,8 @@ "id": "0x1cD137eb5BDf426AaE58C3Ed80383f74e42D9bF2", "links": [ { - "name": "twitter", - "url": "https://twitter.com/smiletokens" + "name": "x", + "url": "https://x.com/smiletokens" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x1d507f58e4B7CDdE877CA96A727608d5E1187E55/info.json b/blockchains/smartchain/assets/0x1d507f58e4B7CDdE877CA96A727608d5E1187E55/info.json index 021427bd3f736..52d32e2814fd5 100644 --- a/blockchains/smartchain/assets/0x1d507f58e4B7CDdE877CA96A727608d5E1187E55/info.json +++ b/blockchains/smartchain/assets/0x1d507f58e4B7CDdE877CA96A727608d5E1187E55/info.json @@ -10,8 +10,8 @@ "id": "0x1d507f58e4B7CDdE877CA96A727608d5E1187E55", "links": [ { - "name": "twitter", - "url": "https://twitter.com/rijentcointeam" + "name": "x", + "url": "https://x.com/rijentcointeam" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x1d6Cbdc6b29C6afBae65444a1f65bA9252b8CA83/info.json b/blockchains/smartchain/assets/0x1d6Cbdc6b29C6afBae65444a1f65bA9252b8CA83/info.json index 3146620f5b2bc..bda65f3edd583 100644 --- a/blockchains/smartchain/assets/0x1d6Cbdc6b29C6afBae65444a1f65bA9252b8CA83/info.json +++ b/blockchains/smartchain/assets/0x1d6Cbdc6b29C6afBae65444a1f65bA9252b8CA83/info.json @@ -14,8 +14,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/HectorDAO_HEC" + "name": "x", + "url": "https://x.com/HectorDAO_HEC" }, { "name": "medium", @@ -46,4 +46,4 @@ "url": "https://coingecko.com/coins/tor" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1d7B5e06fdbe4FD33f5C64C081E32B5d539751D0/info.json b/blockchains/smartchain/assets/0x1d7B5e06fdbe4FD33f5C64C081E32B5d539751D0/info.json new file mode 100644 index 0000000000000..007923008540c --- /dev/null +++ b/blockchains/smartchain/assets/0x1d7B5e06fdbe4FD33f5C64C081E32B5d539751D0/info.json @@ -0,0 +1,28 @@ +{ + "name": "AMC Entertainment (Ondo Tokenized)", + "type": "BEP20", + "symbol": "AMCon", + "decimals": 18, + "description": "AMCon is the Ondo Tokenized version of AMC Entertainment, giving tokenholders economic exposure similar to holding AMC and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x1d7B5e06fdbe4FD33f5C64C081E32B5d539751D0", + "status": "active", + "id": "0x1d7B5e06fdbe4FD33f5C64C081E32B5d539751D0", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/amc-entertainment-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/amc-entertainment-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1d7B5e06fdbe4FD33f5C64C081E32B5d539751D0/logo.png b/blockchains/smartchain/assets/0x1d7B5e06fdbe4FD33f5C64C081E32B5d539751D0/logo.png new file mode 100644 index 0000000000000..fe6efcd59b566 Binary files /dev/null and b/blockchains/smartchain/assets/0x1d7B5e06fdbe4FD33f5C64C081E32B5d539751D0/logo.png differ diff --git a/blockchains/smartchain/assets/0x1e7045bF57d7316069AC248f1939E4Df8AFd4444/info.json b/blockchains/smartchain/assets/0x1e7045bF57d7316069AC248f1939E4Df8AFd4444/info.json new file mode 100644 index 0000000000000..1dee1a4b5c32b --- /dev/null +++ b/blockchains/smartchain/assets/0x1e7045bF57d7316069AC248f1939E4Df8AFd4444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE United Stables", + "type": "BEP20", + "symbol": "FAKE U", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x1e7045bF57d7316069AC248f1939E4Df8AFd4444", + "explorer": "https://bscscan.com/token/0x1e7045bF57d7316069AC248f1939E4Df8AFd4444", + "status": "spam", + "id": "0x1e7045bF57d7316069AC248f1939E4Df8AFd4444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1e987DF68CC13d271e621ec82E050A1BbD62c180/info.json b/blockchains/smartchain/assets/0x1e987DF68CC13d271e621ec82E050A1BbD62c180/info.json index 6febe0390cb35..5bef48054745d 100644 --- a/blockchains/smartchain/assets/0x1e987DF68CC13d271e621ec82E050A1BbD62c180/info.json +++ b/blockchains/smartchain/assets/0x1e987DF68CC13d271e621ec82E050A1BbD62c180/info.json @@ -10,8 +10,8 @@ "id": "0x1e987DF68CC13d271e621ec82E050A1BbD62c180", "links": [ { - "name": "twitter", - "url": "https://twitter.com/WagmiGameCo" + "name": "x", + "url": "https://x.com/WagmiGameCo" }, { "name": "discord", diff --git a/blockchains/smartchain/assets/0x1ec5da0f1e43EF6802DE631A1323a37E7b530B2b/info.json b/blockchains/smartchain/assets/0x1ec5da0f1e43EF6802DE631A1323a37E7b530B2b/info.json new file mode 100644 index 0000000000000..670324b8b7eed --- /dev/null +++ b/blockchains/smartchain/assets/0x1ec5da0f1e43EF6802DE631A1323a37E7b530B2b/info.json @@ -0,0 +1,26 @@ +{ + "name": "REAL IMPACT", + "type": "BEP20", + "symbol": "IMPACT", + "decimals": 18, + "description": "Impact.Fun is a ground-up, community-focused platform built on BSC where anyone can create a token to fund and support impactful causes, events, or people. By leveraging a fair launch mechanism, we level the playing field so everyone can pay just $1 for a chance to win big and be part of the next major impact token — creating lasting change beyond the hype.", + "website": "https://www.impact.fun/", + "explorer": "https://bscscan.com/token/0x1ec5da0f1e43ef6802de631a1323a37e7b530b2b", + "id": "0x1ec5da0f1e43EF6802DE631A1323a37E7b530B2b", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/impactdotfun" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/real-impact/" + } + + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1ec5da0f1e43EF6802DE631A1323a37E7b530B2b/logo.png b/blockchains/smartchain/assets/0x1ec5da0f1e43EF6802DE631A1323a37E7b530B2b/logo.png new file mode 100644 index 0000000000000..a3353fbdb783b Binary files /dev/null and b/blockchains/smartchain/assets/0x1ec5da0f1e43EF6802DE631A1323a37E7b530B2b/logo.png differ diff --git a/blockchains/smartchain/assets/0x1ed4E5C54B7EC819B1e3f53b15F5808780E89832/info.json b/blockchains/smartchain/assets/0x1ed4E5C54B7EC819B1e3f53b15F5808780E89832/info.json new file mode 100644 index 0000000000000..3b1240b0ba186 --- /dev/null +++ b/blockchains/smartchain/assets/0x1ed4E5C54B7EC819B1e3f53b15F5808780E89832/info.json @@ -0,0 +1,14 @@ +{ + "name": "Elon New AI Company", + "type": "BEP20", + "symbol": "HOTSHOT", + "decimals": 18, + "website": "https://four.meme/token/0x1ed4E5C54B7EC819B1e3f53b15F5808780E89832", + "description": "Elon New AI Company", + "explorer": "https://bscscan.com/token/0x1ed4E5C54B7EC819B1e3f53b15F5808780E89832", + "status": "active", + "id": "0x1ed4E5C54B7EC819B1e3f53b15F5808780E89832", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1ed4E5C54B7EC819B1e3f53b15F5808780E89832/logo.png b/blockchains/smartchain/assets/0x1ed4E5C54B7EC819B1e3f53b15F5808780E89832/logo.png new file mode 100644 index 0000000000000..dfcc115020b84 Binary files /dev/null and b/blockchains/smartchain/assets/0x1ed4E5C54B7EC819B1e3f53b15F5808780E89832/logo.png differ diff --git a/blockchains/smartchain/assets/0x1f3Af095CDa17d63cad238358837321e95FC5915/info.json b/blockchains/smartchain/assets/0x1f3Af095CDa17d63cad238358837321e95FC5915/info.json index 8f939040bee47..57673d513971a 100644 --- a/blockchains/smartchain/assets/0x1f3Af095CDa17d63cad238358837321e95FC5915/info.json +++ b/blockchains/smartchain/assets/0x1f3Af095CDa17d63cad238358837321e95FC5915/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Steemhunt/mint.club-contract" }, { - "name": "twitter", - "url": "https://twitter.com/MintClubPro" + "name": "x", + "url": "https://x.com/MintClubPro" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x1f8955E640Cbd9abc3C3Bb408c9E2E1f5F20DfE6/info.json b/blockchains/smartchain/assets/0x1f8955E640Cbd9abc3C3Bb408c9E2E1f5F20DfE6/info.json new file mode 100644 index 0000000000000..62fd3e01200e2 --- /dev/null +++ b/blockchains/smartchain/assets/0x1f8955E640Cbd9abc3C3Bb408c9E2E1f5F20DfE6/info.json @@ -0,0 +1,20 @@ +{ + "name": "U.S. Dollar (Ondo)", + "website": "https://ondo.finance/", + "description": "USDon is a stablecoin backed 1:1 by a US dollar in one of Global Markets’ brokerage accounts. USDon is the stablecoin used to instantly buy or redeem Ondo tokenized stocks.", + "explorer": "https://bscscan.com/address/0x1f8955E640Cbd9abc3C3Bb408c9E2E1f5F20DfE6", + "type": "BEP20", + "symbol": "USDon", + "decimals": 18, + "status": "active", + "id": "0x1f8955E640Cbd9abc3C3Bb408c9E2E1f5F20DfE6", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1f8955E640Cbd9abc3C3Bb408c9E2E1f5F20DfE6/logo.png b/blockchains/smartchain/assets/0x1f8955E640Cbd9abc3C3Bb408c9E2E1f5F20DfE6/logo.png new file mode 100644 index 0000000000000..760bb83879e35 Binary files /dev/null and b/blockchains/smartchain/assets/0x1f8955E640Cbd9abc3C3Bb408c9E2E1f5F20DfE6/logo.png differ diff --git a/blockchains/smartchain/assets/0x1f9f6a696C6Fd109cD3956F45dC709d2b3902163/info.json b/blockchains/smartchain/assets/0x1f9f6a696C6Fd109cD3956F45dC709d2b3902163/info.json index 9a0467232cad9..0fcd000f17609 100644 --- a/blockchains/smartchain/assets/0x1f9f6a696C6Fd109cD3956F45dC709d2b3902163/info.json +++ b/blockchains/smartchain/assets/0x1f9f6a696C6Fd109cD3956F45dC709d2b3902163/info.json @@ -1,5 +1,5 @@ { - "name": "BNB pegged Celer Token", + "name": "Celer Network", "symbol": "CELR", "type": "BEP20", "decimals": 18, diff --git a/blockchains/smartchain/assets/0x1fC9004eC7E5722891f5f38baE7678efCB11d34D/info.json b/blockchains/smartchain/assets/0x1fC9004eC7E5722891f5f38baE7678efCB11d34D/info.json index 35d27d540dbc6..816d9657ba01c 100644 --- a/blockchains/smartchain/assets/0x1fC9004eC7E5722891f5f38baE7678efCB11d34D/info.json +++ b/blockchains/smartchain/assets/0x1fC9004eC7E5722891f5f38baE7678efCB11d34D/info.json @@ -18,8 +18,8 @@ "url": "https://t.me/apenftEN" }, { - "name": "twitter", - "url": "https://twitter.com/apenftorg" + "name": "x", + "url": "https://x.com/apenftorg" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x201bC9F242f74C47Bbd898a5DC99cDCD81A21943/info.json b/blockchains/smartchain/assets/0x201bC9F242f74C47Bbd898a5DC99cDCD81A21943/info.json new file mode 100644 index 0000000000000..8c1872d987c3b --- /dev/null +++ b/blockchains/smartchain/assets/0x201bC9F242f74C47Bbd898a5DC99cDCD81A21943/info.json @@ -0,0 +1,54 @@ +{ + "name": "IguVerse", + "type": "BEP20", + "symbol": "IGU", + "decimals": 18, + "website": "https://iguverse.com/", + "description": "IguVerse GameFi app redefines the whole concept of NFT using AI / ML technologies. Unique user-generated NFTs will become the new standard NFT 2.0, dethroning faceless collections. In our GameFi app, we introduce an innovative game mechanic Socialize to Earn, along with two more Earn concepts - Move to Earn and Play to Earn, where users can complete simple tasks like sharing pet photos on social media or walking and feeding them to get rewards.", + "explorer": "https://bscscan.com/token/0x201bC9F242f74C47Bbd898a5DC99cDCD81A21943", + "status": "active", + "id": "0x201bC9F242f74C47Bbd898a5DC99cDCD81A21943", + "links": [ + { + "name": "x", + "url": "https://x.com/iguverse" + }, + { + "name": "github", + "url": "https://github.com/iguverse" + }, + { + "name": "telegram", + "url": "https://t.me/iguverse_chat" + }, + { + "name": "discord", + "url": "https://discord.com/invite/iguverse" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.iguverse.com/" + }, + { + "name": "facebook", + "url": "https://facebook.com/iguverse" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/iguverse/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/iguverse-igu" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/iguverse_official" + } + ], + "tags": [ + "gamefi", + "dapp", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x201bC9F242f74C47Bbd898a5DC99cDCD81A21943/logo.png b/blockchains/smartchain/assets/0x201bC9F242f74C47Bbd898a5DC99cDCD81A21943/logo.png new file mode 100644 index 0000000000000..06aaba01c44a9 Binary files /dev/null and b/blockchains/smartchain/assets/0x201bC9F242f74C47Bbd898a5DC99cDCD81A21943/logo.png differ diff --git a/blockchains/smartchain/assets/0x20512Ee0052236B009772Af0Ed22BC58B40c27B9/info.json b/blockchains/smartchain/assets/0x20512Ee0052236B009772Af0Ed22BC58B40c27B9/info.json index 67fa6ecd11cab..1638802e430ba 100644 --- a/blockchains/smartchain/assets/0x20512Ee0052236B009772Af0Ed22BC58B40c27B9/info.json +++ b/blockchains/smartchain/assets/0x20512Ee0052236B009772Af0Ed22BC58B40c27B9/info.json @@ -10,8 +10,8 @@ "id": "0x20512Ee0052236B009772Af0Ed22BC58B40c27B9", "links": [ { - "name": "twitter", - "url": "https://twitter.com/musofinance" + "name": "x", + "url": "https://x.com/musofinance" }, { "name": "coingecko", diff --git a/blockchains/smartchain/assets/0x205812CdBed920aFf76C6580abD681a46D11efc7/info.json b/blockchains/smartchain/assets/0x205812CdBed920aFf76C6580abD681a46D11efc7/info.json new file mode 100644 index 0000000000000..f4af6e1833908 --- /dev/null +++ b/blockchains/smartchain/assets/0x205812CdBed920aFf76C6580abD681a46D11efc7/info.json @@ -0,0 +1,20 @@ +{ + "name": "Invesco QQQ Trust Tokenized bStocks", + "type": "BEP20", + "symbol": "QQQB", + "decimals": 18, + "description": "QQQB is a tokenized bStocks that gives you economic exposure to Invesco QQQ Trust Tokenized bStocks, and the right to convert to the underlying security on the Binance.com platform subject to applicable laws. Each token is fully backed by the corresponding underlying equity maintained by the Issuer at a US-regulated broker-dealer. You get the price movements, dividends, and the right to convert the token at 1:1 to the underlying share — tradeable 24/7.", + "website": "https://www.bstocks.finance/en/", + "explorer": "https://bscscan.com/token/0x205812CdBed920aFf76C6580abD681a46D11efc7", + "status": "active", + "id": "0x205812CdBed920aFf76C6580abD681a46D11efc7", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/invesco-qqq-trust-tokenized-bstocks/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x205812CdBed920aFf76C6580abD681a46D11efc7/logo.png b/blockchains/smartchain/assets/0x205812CdBed920aFf76C6580abD681a46D11efc7/logo.png new file mode 100644 index 0000000000000..a2bd8df8f033a Binary files /dev/null and b/blockchains/smartchain/assets/0x205812CdBed920aFf76C6580abD681a46D11efc7/logo.png differ diff --git a/blockchains/smartchain/assets/0x205AFD08ceFe438377a0abC5a20Cb4462E1a8C5C/info.json b/blockchains/smartchain/assets/0x205AFD08ceFe438377a0abC5a20Cb4462E1a8C5C/info.json index 01f26d4d2e0c0..91e7c7dbc4404 100644 --- a/blockchains/smartchain/assets/0x205AFD08ceFe438377a0abC5a20Cb4462E1a8C5C/info.json +++ b/blockchains/smartchain/assets/0x205AFD08ceFe438377a0abC5a20Cb4462E1a8C5C/info.json @@ -10,8 +10,8 @@ "id": "0x205AFD08ceFe438377a0abC5a20Cb4462E1a8C5C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Obroktoken" + "name": "x", + "url": "https://x.com/Obroktoken" }, { "name": "coinmarketcap", @@ -29,4 +29,4 @@ "tags": [ "metaverse" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2065E3BD318f155abE5Ad6aa263596f197112261/info.json b/blockchains/smartchain/assets/0x2065E3BD318f155abE5Ad6aa263596f197112261/info.json index eded1fb37f174..ce4cc01c0c2cd 100644 --- a/blockchains/smartchain/assets/0x2065E3BD318f155abE5Ad6aa263596f197112261/info.json +++ b/blockchains/smartchain/assets/0x2065E3BD318f155abE5Ad6aa263596f197112261/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/ultgg" }, { - "name": "twitter", - "url": "https://twitter.com/ultimoggesports" + "name": "x", + "url": "https://x.com/ultimoggesports" }, { "name": "youtube", diff --git a/blockchains/smartchain/assets/0x2089F0CbE8Aca0950FA8c5Bb04ADe2323AEE832F/info.json b/blockchains/smartchain/assets/0x2089F0CbE8Aca0950FA8c5Bb04ADe2323AEE832F/info.json index ef3f6e73cd9b8..892be5e1b8d12 100644 --- a/blockchains/smartchain/assets/0x2089F0CbE8Aca0950FA8c5Bb04ADe2323AEE832F/info.json +++ b/blockchains/smartchain/assets/0x2089F0CbE8Aca0950FA8c5Bb04ADe2323AEE832F/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/monkey-shanti/londex" }, { - "name": "twitter", - "url": "https://twitter.com/londexofficial" + "name": "x", + "url": "https://x.com/londexofficial" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x208bF3E7dA9639f1Eaefa2DE78c23396B0682025/info.json b/blockchains/smartchain/assets/0x208bF3E7dA9639f1Eaefa2DE78c23396B0682025/info.json new file mode 100644 index 0000000000000..f0b8e071f435a --- /dev/null +++ b/blockchains/smartchain/assets/0x208bF3E7dA9639f1Eaefa2DE78c23396B0682025/info.json @@ -0,0 +1,17 @@ +{ + "name": "Tagger", + "symbol": "TAG", + "website": "https://www.tagger.pro", + "description": "Tagger proposes a framework whereby data can be gathered, labeled, verified, and exchanged without relying on a centralized authority", + "explorer": "https://bscscan.com/token/0x208bf3e7da9639f1eaefa2de78c23396b0682025", + "decimals": 18, + "status": "active", + "id": "0x208bF3E7dA9639f1Eaefa2DE78c23396B0682025", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/TaggerAI" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x208bF3E7dA9639f1Eaefa2DE78c23396B0682025/logo.png b/blockchains/smartchain/assets/0x208bF3E7dA9639f1Eaefa2DE78c23396B0682025/logo.png new file mode 100644 index 0000000000000..d71c921d21664 Binary files /dev/null and b/blockchains/smartchain/assets/0x208bF3E7dA9639f1Eaefa2DE78c23396B0682025/logo.png differ diff --git a/blockchains/smartchain/assets/0x2090c8295769791ab7A3CF1CC6e0AA19F35e441A/info.json b/blockchains/smartchain/assets/0x2090c8295769791ab7A3CF1CC6e0AA19F35e441A/info.json index 6257b1ac8b80d..41770f0dc65cd 100644 --- a/blockchains/smartchain/assets/0x2090c8295769791ab7A3CF1CC6e0AA19F35e441A/info.json +++ b/blockchains/smartchain/assets/0x2090c8295769791ab7A3CF1CC6e0AA19F35e441A/info.json @@ -15,8 +15,8 @@ "url": "https://jetfuel.finance/contracts" }, { - "name": "twitter", - "url": "https://twitter.com/Jetfuelfinance" + "name": "x", + "url": "https://x.com/Jetfuelfinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x2098fEf7eEae592038f4f3C4b008515fed0d5886/info.json b/blockchains/smartchain/assets/0x2098fEf7eEae592038f4f3C4b008515fed0d5886/info.json index d61bab1cd2e73..10109d66c0d17 100644 --- a/blockchains/smartchain/assets/0x2098fEf7eEae592038f4f3C4b008515fed0d5886/info.json +++ b/blockchains/smartchain/assets/0x2098fEf7eEae592038f4f3C4b008515fed0d5886/info.json @@ -10,8 +10,8 @@ "id": "0x2098fEf7eEae592038f4f3C4b008515fed0d5886", "links": [ { - "name": "twitter", - "url": "https://twitter.com/RuneMetaverse" + "name": "x", + "url": "https://x.com/RuneMetaverse" }, { "name": "telegram", @@ -47,4 +47,4 @@ "defi", "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x20CCe48D767eD68CBbA7727c4c504eFE5Bcb626c/info.json b/blockchains/smartchain/assets/0x20CCe48D767eD68CBbA7727c4c504eFE5Bcb626c/info.json new file mode 100644 index 0000000000000..c29de0d934130 --- /dev/null +++ b/blockchains/smartchain/assets/0x20CCe48D767eD68CBbA7727c4c504eFE5Bcb626c/info.json @@ -0,0 +1,28 @@ +{ + "name": "Grindr (Ondo Tokenized)", + "type": "BEP20", + "symbol": "GRNDon", + "decimals": 18, + "description": "GRNDon is the Ondo Tokenized version of Grindr, giving tokenholders economic exposure similar to holding GRND and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x20CCe48D767eD68CBbA7727c4c504eFE5Bcb626c", + "status": "active", + "id": "0x20CCe48D767eD68CBbA7727c4c504eFE5Bcb626c", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/grindr-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/grindr-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x20CCe48D767eD68CBbA7727c4c504eFE5Bcb626c/logo.png b/blockchains/smartchain/assets/0x20CCe48D767eD68CBbA7727c4c504eFE5Bcb626c/logo.png new file mode 100644 index 0000000000000..cc372823561d3 Binary files /dev/null and b/blockchains/smartchain/assets/0x20CCe48D767eD68CBbA7727c4c504eFE5Bcb626c/logo.png differ diff --git a/blockchains/smartchain/assets/0x20bff4bbEDa07536FF00e073bd8359E5D80D733d/info.json b/blockchains/smartchain/assets/0x20bff4bbEDa07536FF00e073bd8359E5D80D733d/info.json index a9f2de43bdbbc..f7d65f41ae5c8 100644 --- a/blockchains/smartchain/assets/0x20bff4bbEDa07536FF00e073bd8359E5D80D733d/info.json +++ b/blockchains/smartchain/assets/0x20bff4bbEDa07536FF00e073bd8359E5D80D733d/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/cannonfinance" }, { - "name": "twitter", - "url": "https://twitter.com/Cannon" + "name": "x", + "url": "https://x.com/Cannon" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x20d6015660b3fe52e6690a889b5C51F69902cE0e/info.json b/blockchains/smartchain/assets/0x20d6015660b3fe52e6690a889b5C51F69902cE0e/info.json new file mode 100644 index 0000000000000..f3930ca87df6f --- /dev/null +++ b/blockchains/smartchain/assets/0x20d6015660b3fe52e6690a889b5C51F69902cE0e/info.json @@ -0,0 +1,24 @@ +{ + "name": "Giggle Fund", + "type": "BEP20", + "symbol": "GIGGLE", + "decimals": 18, + "website": "https://giggletoken.com/", + "description": "GiggleFund — The UNSTOPPABLE force of kindness 💛 Supporting children's education through community donations to GiggleAcademy 🎓 Built by the people, for the people - A true community takeover 🤝", + "explorer": "https://bscscan.com/token/0x20d6015660b3fe52e6690a889b5C51F69902cE0e", + "status": "active", + "id": "0x20d6015660b3fe52e6690a889b5C51F69902cE0e", + "links": [ + { + "name": "x", + "url": "https://x.com/GiggleFundBSC" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/giggle-fund/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x20d6015660b3fe52e6690a889b5C51F69902cE0e/logo.png b/blockchains/smartchain/assets/0x20d6015660b3fe52e6690a889b5C51F69902cE0e/logo.png new file mode 100644 index 0000000000000..a289bbcaf1a66 Binary files /dev/null and b/blockchains/smartchain/assets/0x20d6015660b3fe52e6690a889b5C51F69902cE0e/logo.png differ diff --git a/blockchains/smartchain/assets/0x20de22029ab63cf9A7Cf5fEB2b737Ca1eE4c82A6/info.json b/blockchains/smartchain/assets/0x20de22029ab63cf9A7Cf5fEB2b737Ca1eE4c82A6/info.json index 23360e1ab5536..9b90e0eb9a7b5 100644 --- a/blockchains/smartchain/assets/0x20de22029ab63cf9A7Cf5fEB2b737Ca1eE4c82A6/info.json +++ b/blockchains/smartchain/assets/0x20de22029ab63cf9A7Cf5fEB2b737Ca1eE4c82A6/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/tranchess/contract-core" }, { - "name": "twitter", - "url": "https://twitter.com/tranchess" + "name": "x", + "url": "https://x.com/tranchess" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0x20eE7B720f4E4c4FFcB00C4065cdae55271aECCa/info.json b/blockchains/smartchain/assets/0x20eE7B720f4E4c4FFcB00C4065cdae55271aECCa/info.json index db52abd07cb84..328f3f8e913ef 100644 --- a/blockchains/smartchain/assets/0x20eE7B720f4E4c4FFcB00C4065cdae55271aECCa/info.json +++ b/blockchains/smartchain/assets/0x20eE7B720f4E4c4FFcB00C4065cdae55271aECCa/info.json @@ -10,8 +10,8 @@ "id": "0x20eE7B720f4E4c4FFcB00C4065cdae55271aECCa", "links": [ { - "name": "twitter", - "url": "https://twitter.com/apenftorg" + "name": "x", + "url": "https://x.com/apenftorg" }, { "name": "telegram", @@ -30,5 +30,4 @@ "nft", "governance" ] -} - +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2114eD8Ed375C2056053234F0a457f700E04B650/info.json b/blockchains/smartchain/assets/0x2114eD8Ed375C2056053234F0a457f700E04B650/info.json new file mode 100644 index 0000000000000..b91e12e9182e7 --- /dev/null +++ b/blockchains/smartchain/assets/0x2114eD8Ed375C2056053234F0a457f700E04B650/info.json @@ -0,0 +1,21 @@ +{ + "name": "FART BNB", + "type": "BEP20", + "symbol": "FartBNB", + "decimals": 18, + "description": "Tokenising farts with the help of BNB. No cabal, Fart freely! It will all make sense soon.", + "website": "https://www.fartbnb.xyz/", + "explorer": "https://bscscan.com/token/0x2114ed8ed375c2056053234f0a457f700e04b650", + "id": "0x2114eD8Ed375C2056053234F0a457f700E04B650", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/fartbnb" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2114eD8Ed375C2056053234F0a457f700E04B650/logo.png b/blockchains/smartchain/assets/0x2114eD8Ed375C2056053234F0a457f700E04B650/logo.png new file mode 100644 index 0000000000000..f6ef1b520c5b4 Binary files /dev/null and b/blockchains/smartchain/assets/0x2114eD8Ed375C2056053234F0a457f700E04B650/logo.png differ diff --git a/blockchains/smartchain/assets/0x211FfbE424b90e25a15531ca322adF1559779E45/info.json b/blockchains/smartchain/assets/0x211FfbE424b90e25a15531ca322adF1559779E45/info.json index 7cf27ef23427f..660dd154f8a64 100644 --- a/blockchains/smartchain/assets/0x211FfbE424b90e25a15531ca322adF1559779E45/info.json +++ b/blockchains/smartchain/assets/0x211FfbE424b90e25a15531ca322adF1559779E45/info.json @@ -10,8 +10,8 @@ "id": "0x211FfbE424b90e25a15531ca322adF1559779E45", "links": [ { - "name": "twitter", - "url": "https://twitter.com/buxcrypto" + "name": "x", + "url": "https://x.com/buxcrypto" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x214151022C2a5E380aB80CdaC31f23Ae554a7345/info.json b/blockchains/smartchain/assets/0x214151022C2a5E380aB80CdaC31f23Ae554a7345/info.json new file mode 100644 index 0000000000000..7cb56856db666 --- /dev/null +++ b/blockchains/smartchain/assets/0x214151022C2a5E380aB80CdaC31f23Ae554a7345/info.json @@ -0,0 +1,24 @@ +{ + "name": "CrowdStrike tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "CrowdStrike xStock (CRWDx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. CRWDx tracks the price of CrowdStrike Holdings, Inc. (the underlying). CRWDx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of CrowdStrike Holdings, Inc., whilst maintaining the benefits of blockchain technology. CrowdStrike is a cybersecurity company specializing in cloud-delivered security solutions, particularly for endpoint and cloud workload protection.", + "explorer": "https://bscscan.com/token/0x214151022C2a5E380aB80CdaC31f23Ae554a7345", + "type": "BEP20", + "symbol": "CRWDX", + "decimals": 18, + "status": "active", + "id": "0x214151022C2a5E380aB80CdaC31f23Ae554a7345", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crowdstrike-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x214151022C2a5E380aB80CdaC31f23Ae554a7345/logo.png b/blockchains/smartchain/assets/0x214151022C2a5E380aB80CdaC31f23Ae554a7345/logo.png new file mode 100644 index 0000000000000..72cd9e09a3d7d Binary files /dev/null and b/blockchains/smartchain/assets/0x214151022C2a5E380aB80CdaC31f23Ae554a7345/logo.png differ diff --git a/blockchains/smartchain/assets/0x215324115417a13879f865Dc5BB651B18A781a59/info.json b/blockchains/smartchain/assets/0x215324115417a13879f865Dc5BB651B18A781a59/info.json new file mode 100644 index 0000000000000..33733a8df0122 --- /dev/null +++ b/blockchains/smartchain/assets/0x215324115417a13879f865Dc5BB651B18A781a59/info.json @@ -0,0 +1,14 @@ +{ + "name": "KLK Option", + "type": "BEP20", + "symbol": "KLKO", + "decimals": 18, + "website": "https://klickl.vip/", + "description": "$KLKO Token is a Klickl Ecosystem Option Token", + "explorer": "https://bscscan.com/token/0x215324115417a13879f865Dc5BB651B18A781a59", + "status": "active", + "id": "0x215324115417a13879f865Dc5BB651B18A781a59", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x215324115417a13879f865Dc5BB651B18A781a59/logo.png b/blockchains/smartchain/assets/0x215324115417a13879f865Dc5BB651B18A781a59/logo.png new file mode 100644 index 0000000000000..c99d5dee5c935 Binary files /dev/null and b/blockchains/smartchain/assets/0x215324115417a13879f865Dc5BB651B18A781a59/logo.png differ diff --git a/blockchains/smartchain/assets/0x2170Ed0880ac9A755fd29B2688956BD959F933F8/info.json b/blockchains/smartchain/assets/0x2170Ed0880ac9A755fd29B2688956BD959F933F8/info.json index 911a1d5df69a8..76bd7c76b295e 100644 --- a/blockchains/smartchain/assets/0x2170Ed0880ac9A755fd29B2688956BD959F933F8/info.json +++ b/blockchains/smartchain/assets/0x2170Ed0880ac9A755fd29B2688956BD959F933F8/info.json @@ -1,5 +1,5 @@ { - "name": "BNB pegged Ethereum", + "name": "Ethereum", "website": "https://ethereum.org/", "description": "BNB pegged Ethereum (ETH BEP20) is a token issued by Binance on Smart Chain; its price is pegged to Ethereum (ETH) at a ratio of 1:1.", "explorer": "https://bscscan.com/token/0x2170Ed0880ac9A755fd29B2688956BD959F933F8", @@ -18,8 +18,8 @@ "url": "https://github.com/ethereum/ethereum-org-website" }, { - "name": "twitter", - "url": "https://twitter.com/ethdotorg" + "name": "x", + "url": "https://x.com/ethdotorg" }, { "name": "youtube", diff --git a/blockchains/smartchain/assets/0x2189455051A1c1E6190276f84f73Ec6Fb2fe62DF/info.json b/blockchains/smartchain/assets/0x2189455051A1c1E6190276f84f73Ec6Fb2fe62DF/info.json index 4dcdd2be844a7..c3e754d2a02f0 100644 --- a/blockchains/smartchain/assets/0x2189455051A1c1E6190276f84f73Ec6Fb2fe62DF/info.json +++ b/blockchains/smartchain/assets/0x2189455051A1c1E6190276f84f73Ec6Fb2fe62DF/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/harshasamedha/BitConey" }, { - "name": "twitter", - "url": "https://twitter.com/Bitconey" + "name": "x", + "url": "https://x.com/Bitconey" }, { "name": "whitepaper", @@ -26,4 +26,4 @@ "url": "https://facebook.com/profile.php?id=100089680055861" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x21EA8618b9168Eb8936c3e02F0809BBE901282ac/info.json b/blockchains/smartchain/assets/0x21EA8618b9168Eb8936c3e02F0809BBE901282ac/info.json index 0454f76809adc..5c98d37be6b12 100644 --- a/blockchains/smartchain/assets/0x21EA8618b9168Eb8936c3e02F0809BBE901282ac/info.json +++ b/blockchains/smartchain/assets/0x21EA8618b9168Eb8936c3e02F0809BBE901282ac/info.json @@ -10,8 +10,8 @@ "id": "0x21EA8618b9168Eb8936c3e02F0809BBE901282ac", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SpacePortCoin" + "name": "x", + "url": "https://x.com/SpacePortCoin" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x21cAef8A43163Eea865baeE23b9C2E327696A3bf/info.json b/blockchains/smartchain/assets/0x21cAef8A43163Eea865baeE23b9C2E327696A3bf/info.json new file mode 100644 index 0000000000000..554eb0df2a699 --- /dev/null +++ b/blockchains/smartchain/assets/0x21cAef8A43163Eea865baeE23b9C2E327696A3bf/info.json @@ -0,0 +1,25 @@ +{ + "name": "Tether Gold", + "type": "BEP20", + "symbol": "XAUt", + "decimals": 6, + "website": "https://gold.tether.to/", + "description": "Tether Gold (XAUT) is a stablecoin that provides ownership on a 1:1 basis of one fine troy ounce of gold on a physical bar of gold that meets the Good Delivery standard of the London Bullion Market Association (LBMA). This technology allows access to a stablecoin that provides ownership of physical gold while avoiding the drawbacks associated with physical gold such as high storage cost and limit.", + "explorer": "https://bscscan.com/token/0x21cAef8A43163Eea865baeE23b9C2E327696A3bf", + "status": "active", + "id": "0x21cAef8A43163Eea865baeE23b9C2E327696A3bf", + "links": [ + { + "name": "x", + "url": "https://x.com/tethergold" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tether-gold/" + } + ], + "tags": [ + "stablecoin", + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x21cAef8A43163Eea865baeE23b9C2E327696A3bf/logo.png b/blockchains/smartchain/assets/0x21cAef8A43163Eea865baeE23b9C2E327696A3bf/logo.png new file mode 100644 index 0000000000000..64773b21040aa Binary files /dev/null and b/blockchains/smartchain/assets/0x21cAef8A43163Eea865baeE23b9C2E327696A3bf/logo.png differ diff --git a/blockchains/smartchain/assets/0x22092c94a91d019Ad15536725598B0A6BE0a73C0/info.json b/blockchains/smartchain/assets/0x22092c94a91d019Ad15536725598B0A6BE0a73C0/info.json new file mode 100644 index 0000000000000..9d0c1ac1b571c --- /dev/null +++ b/blockchains/smartchain/assets/0x22092c94a91d019Ad15536725598B0A6BE0a73C0/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Core MSCI Emerging Markets (Ondo)", + "website": "https://ondo.finance/", + "description": "IEMGon is the Ondo Tokenized version of the iShares Core MSCI Emerging Markets ETF, giving tokenholders economic exposure similar to holding IEMG and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x22092c94a91d019ad15536725598b0a6be0a73c0", + "type": "BEP20", + "symbol": "IEMGon", + "decimals": 18, + "status": "active", + "id": "0x22092c94a91d019Ad15536725598B0A6BE0a73C0", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-core-msci-emerging-markets-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x22092c94a91d019Ad15536725598B0A6BE0a73C0/logo.png b/blockchains/smartchain/assets/0x22092c94a91d019Ad15536725598B0A6BE0a73C0/logo.png new file mode 100644 index 0000000000000..8adf578853fa6 Binary files /dev/null and b/blockchains/smartchain/assets/0x22092c94a91d019Ad15536725598B0A6BE0a73C0/logo.png differ diff --git a/blockchains/smartchain/assets/0x22168882276e5D5e1da694343b41DD7726eeb288/info.json b/blockchains/smartchain/assets/0x22168882276e5D5e1da694343b41DD7726eeb288/info.json index 362c1da65b56d..08a6ed856cd18 100644 --- a/blockchains/smartchain/assets/0x22168882276e5D5e1da694343b41DD7726eeb288/info.json +++ b/blockchains/smartchain/assets/0x22168882276e5D5e1da694343b41DD7726eeb288/info.json @@ -10,8 +10,8 @@ "id": "0x22168882276e5D5e1da694343b41DD7726eeb288", "links": [ { - "name": "twitter", - "url": "https://twitter.com/WSBDapp" + "name": "x", + "url": "https://x.com/WSBDapp" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0x2222227E22102Fe3322098e4CBfE18cFebD57c95/info.json b/blockchains/smartchain/assets/0x2222227E22102Fe3322098e4CBfE18cFebD57c95/info.json index 1ec68d8726550..74d5ce94f60d1 100644 --- a/blockchains/smartchain/assets/0x2222227E22102Fe3322098e4CBfE18cFebD57c95/info.json +++ b/blockchains/smartchain/assets/0x2222227E22102Fe3322098e4CBfE18cFebD57c95/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/AlienWorldsOffical" }, { - "name": "twitter", - "url": "https://twitter.com/alienworlds" + "name": "x", + "url": "https://x.com/alienworlds" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x2223bF1D7c19EF7C06DAB88938EC7B85952cCd89/info.json b/blockchains/smartchain/assets/0x2223bF1D7c19EF7C06DAB88938EC7B85952cCd89/info.json index 65fe4797ef90a..119e351ad3990 100644 --- a/blockchains/smartchain/assets/0x2223bF1D7c19EF7C06DAB88938EC7B85952cCd89/info.json +++ b/blockchains/smartchain/assets/0x2223bF1D7c19EF7C06DAB88938EC7B85952cCd89/info.json @@ -10,8 +10,8 @@ "id": "0x2223bF1D7c19EF7C06DAB88938EC7B85952cCd89", "links": [ { - "name": "twitter", - "url": "https://twitter.com/kryxivia" + "name": "x", + "url": "https://x.com/kryxivia" }, { "name": "github", @@ -65,4 +65,4 @@ "tags": [ "gamefi" ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2235e79086dd23135119366da45851c741874e5B/info.json b/blockchains/smartchain/assets/0x2235e79086dd23135119366da45851c741874e5B/info.json new file mode 100644 index 0000000000000..867e1e976e5f2 --- /dev/null +++ b/blockchains/smartchain/assets/0x2235e79086dd23135119366da45851c741874e5B/info.json @@ -0,0 +1,21 @@ +{ + "name": "CREDI", + "website": "https://credefi.finance/", + "description": "Credefi connects crypto lenders with SME borrowers from the fiat economy. Their platform enables decentralized and secured lending to portfolios of businesses, protecting lenders while providing them fixed APY that is uncorrelated with crypto markets’ volatility.", + "explorer": "https://bscscan.com/token/0x2235e79086dd23135119366da45851c741874e5b", + "type": "BEP20", + "symbol": "CREDI", + "decimals": 18, + "status": "active", + "id": "0x2235e79086dd23135119366da45851c741874e5B", + "links": [ + { + "name": "x", + "url": "https://x.com/credefi_finance" + }, + { + "name": "telegram", + "url": "https://t.me/credefi" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2235e79086dd23135119366da45851c741874e5B/logo.png b/blockchains/smartchain/assets/0x2235e79086dd23135119366da45851c741874e5B/logo.png new file mode 100644 index 0000000000000..7054bba0e5bea Binary files /dev/null and b/blockchains/smartchain/assets/0x2235e79086dd23135119366da45851c741874e5B/logo.png differ diff --git a/blockchains/smartchain/assets/0x228456C7a52fC184F17F75F9440F277d3aAd0FB7/info.json b/blockchains/smartchain/assets/0x228456C7a52fC184F17F75F9440F277d3aAd0FB7/info.json new file mode 100644 index 0000000000000..235140ecfb9ff --- /dev/null +++ b/blockchains/smartchain/assets/0x228456C7a52fC184F17F75F9440F277d3aAd0FB7/info.json @@ -0,0 +1,18 @@ +{ + "name": "MetaLiquid Network", + "type": "BEP20", + "symbol": "METAL", + "decimals": 18, + "description": "MetaLiquid Network is a decentralized financial payment network that rebuilds the traditional payment stack on the blockchain. It utilizes a basket of fiat-pegged stablecoins, algorithmically stabilized by its reserve currency METAL, to facilitate programmable payments and open financial infrastructure development.", + "website": "https://thebittimes.com/token-METAL-BSC-0x228456c7a52fc184f17f75f9440f277d3aad0fb7.html", + "explorer": "https://bscscan.com/token/0x228456c7a52fc184f17f75f9440f277d3aad0fb7", + "id": "0x228456C7a52fC184F17F75F9440F277d3aAd0FB7", + "status": "active", + "links": [ + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x228456C7a52fC184F17F75F9440F277d3aAd0FB7/logo.png b/blockchains/smartchain/assets/0x228456C7a52fC184F17F75F9440F277d3aAd0FB7/logo.png new file mode 100644 index 0000000000000..2aeaecb024c3a Binary files /dev/null and b/blockchains/smartchain/assets/0x228456C7a52fC184F17F75F9440F277d3aAd0FB7/logo.png differ diff --git a/blockchains/smartchain/assets/0x22E1991e5f82736A2a990322a46aac0e95826c5B/info.json b/blockchains/smartchain/assets/0x22E1991e5f82736A2a990322a46aac0e95826c5B/info.json new file mode 100644 index 0000000000000..6e4e19cb71906 --- /dev/null +++ b/blockchains/smartchain/assets/0x22E1991e5f82736A2a990322a46aac0e95826c5B/info.json @@ -0,0 +1,15 @@ +{ + "name": "Bit Digital xStock", + "type": "BEP20", + "symbol": "BTBTx", + "decimals": 18, + "description": "Bit Digital xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x22E1991e5f82736A2a990322a46aac0e95826c5B", + "status": "active", + "id": "0x22E1991e5f82736A2a990322a46aac0e95826c5B", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x22E1991e5f82736A2a990322a46aac0e95826c5B/logo.png b/blockchains/smartchain/assets/0x22E1991e5f82736A2a990322a46aac0e95826c5B/logo.png new file mode 100644 index 0000000000000..30817f4fdb226 Binary files /dev/null and b/blockchains/smartchain/assets/0x22E1991e5f82736A2a990322a46aac0e95826c5B/logo.png differ diff --git a/blockchains/smartchain/assets/0x22dE16487955AE1f842fa0C0bFf6083a7fDEfeDd/info.json b/blockchains/smartchain/assets/0x22dE16487955AE1f842fa0C0bFf6083a7fDEfeDd/info.json index 6a39d2b11299f..a34af055ee54b 100644 --- a/blockchains/smartchain/assets/0x22dE16487955AE1f842fa0C0bFf6083a7fDEfeDd/info.json +++ b/blockchains/smartchain/assets/0x22dE16487955AE1f842fa0C0bFf6083a7fDEfeDd/info.json @@ -10,8 +10,8 @@ "id": "0x22dE16487955AE1f842fa0C0bFf6083a7fDEfeDd", "links": [ { - "name": "twitter", - "url": "https://twitter.com/galaxyheroesghc" + "name": "x", + "url": "https://x.com/galaxyheroesghc" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x23125108bc4c63E4677b2E253Fa498cCb4B3298b/info.json b/blockchains/smartchain/assets/0x23125108bc4c63E4677b2E253Fa498cCb4B3298b/info.json index 80a57b31d17e8..87c576ed695cf 100644 --- a/blockchains/smartchain/assets/0x23125108bc4c63E4677b2E253Fa498cCb4B3298b/info.json +++ b/blockchains/smartchain/assets/0x23125108bc4c63E4677b2E253Fa498cCb4B3298b/info.json @@ -10,8 +10,8 @@ "id": "0x23125108bc4c63E4677b2E253Fa498cCb4B3298b", "links": [ { - "name": "twitter", - "url": "https://twitter.com/buffdogecoin" + "name": "x", + "url": "https://x.com/buffdogecoin" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x231cF6F78620e42Fe00D0c5C3088b427F355d01c/info.json b/blockchains/smartchain/assets/0x231cF6F78620e42Fe00D0c5C3088b427F355d01c/info.json index 58c049297300e..8650799a988f3 100644 --- a/blockchains/smartchain/assets/0x231cF6F78620e42Fe00D0c5C3088b427F355d01c/info.json +++ b/blockchains/smartchain/assets/0x231cF6F78620e42Fe00D0c5C3088b427F355d01c/info.json @@ -10,8 +10,8 @@ "id": "0x231cF6F78620e42Fe00D0c5C3088b427F355d01c", "links": [ { - "name": "twitter", - "url": "https://twitter.com/marketmoveAI" + "name": "x", + "url": "https://x.com/marketmoveAI" }, { "name": "github", @@ -33,4 +33,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x23383e18dEedF460EbB918545C8b0588038B7998/info.json b/blockchains/smartchain/assets/0x23383e18dEedF460EbB918545C8b0588038B7998/info.json index 03df265ff1db6..4cf156d990de1 100644 --- a/blockchains/smartchain/assets/0x23383e18dEedF460EbB918545C8b0588038B7998/info.json +++ b/blockchains/smartchain/assets/0x23383e18dEedF460EbB918545C8b0588038B7998/info.json @@ -10,8 +10,8 @@ "id": "0x23383e18dEedF460EbB918545C8b0588038B7998", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SensparkMeta" + "name": "x", + "url": "https://x.com/SensparkMeta" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x23396cF899Ca06c4472205fC903bDB4de249D6fC/info.json b/blockchains/smartchain/assets/0x23396cF899Ca06c4472205fC903bDB4de249D6fC/info.json index 67219a6c3c5e5..1ccd7aa3ca918 100644 --- a/blockchains/smartchain/assets/0x23396cF899Ca06c4472205fC903bDB4de249D6fC/info.json +++ b/blockchains/smartchain/assets/0x23396cF899Ca06c4472205fC903bDB4de249D6fC/info.json @@ -1,5 +1,5 @@ { - "name": "Wrapped UST Token", + "name": "TerraClassicUSD", "website": "https://terra.money", "description": "TerraUSD is the first decentralized stablecoin that is scalable, yield bearing and interchain.", "explorer": "https://bscscan.com/token/0x23396cF899Ca06c4472205fC903bDB4de249D6fC", @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/TerraMoney" + "name": "x", + "url": "https://x.com/TerraMoney" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x233d91A0713155003fc4DcE0AFa871b508B3B715/info.json b/blockchains/smartchain/assets/0x233d91A0713155003fc4DcE0AFa871b508B3B715/info.json index 5eb1321297916..13e647d702f17 100644 --- a/blockchains/smartchain/assets/0x233d91A0713155003fc4DcE0AFa871b508B3B715/info.json +++ b/blockchains/smartchain/assets/0x233d91A0713155003fc4DcE0AFa871b508B3B715/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/ditto-money/" }, { - "name": "twitter", - "url": "https://twitter.com/dittomoney_" + "name": "x", + "url": "https://x.com/dittomoney_" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x23481F4d3ac4642d2f45d014a514b45B0338b927/info.json b/blockchains/smartchain/assets/0x23481F4d3ac4642d2f45d014a514b45B0338b927/info.json index cf769d93211eb..3dba363e77421 100644 --- a/blockchains/smartchain/assets/0x23481F4d3ac4642d2f45d014a514b45B0338b927/info.json +++ b/blockchains/smartchain/assets/0x23481F4d3ac4642d2f45d014a514b45B0338b927/info.json @@ -10,8 +10,8 @@ "id": "0x23481F4d3ac4642d2f45d014a514b45B0338b927", "links": [ { - "name": "twitter", - "url": "https://twitter.com/UlinkFinance" + "name": "x", + "url": "https://x.com/UlinkFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293/info.json b/blockchains/smartchain/assets/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293/info.json new file mode 100644 index 0000000000000..e0ae8da6c84d9 --- /dev/null +++ b/blockchains/smartchain/assets/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293/info.json @@ -0,0 +1,24 @@ +{ + "name": "Visa tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Visa xStock (Vx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. Vx tracks the price of Visa Inc. Class A (the underlying). Vx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Visa Inc. Class A, whilst maintaining the benefits of blockchain technology. Visa Inc. is a global digital payments technology company that facilitates transactions between consumers, merchants, and financial institutions in over 200 countries.", + "explorer": "https://bscscan.com/token/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293", + "type": "BEP20", + "symbol": "VX", + "decimals": 18, + "status": "active", + "id": "0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/visa-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293/logo.png b/blockchains/smartchain/assets/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293/logo.png new file mode 100644 index 0000000000000..11bbde8933e10 Binary files /dev/null and b/blockchains/smartchain/assets/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293/logo.png differ diff --git a/blockchains/smartchain/assets/0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9/info.json b/blockchains/smartchain/assets/0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9/info.json new file mode 100644 index 0000000000000..43945d7bc1e67 --- /dev/null +++ b/blockchains/smartchain/assets/0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9/info.json @@ -0,0 +1,24 @@ +{ + "name": "Gold tokenized ETF (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Gold tokenized ETF (xStock) (GLDX) is a cryptocurrency and operates on the Solana platform. Gold tokenized ETF (xStock) has a current supply of 2,799.99923929 with 1,000 in circulation. The last known price of Gold tokenized ETF (xStock) is 340.04452058 USD and is up 1.44 over the last 24 hours. It is currently trading on 10 active market(s) with $2,423,806.34 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/gold-xstock.", + "explorer": "https://bscscan.com/token/0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9", + "type": "BEP20", + "symbol": "GLDX", + "decimals": 18, + "status": "active", + "id": "0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gold-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9/logo.png b/blockchains/smartchain/assets/0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9/logo.png new file mode 100644 index 0000000000000..85a92734296a2 Binary files /dev/null and b/blockchains/smartchain/assets/0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9/logo.png differ diff --git a/blockchains/smartchain/assets/0x2383596EFa3A0fc13EfdCd776410deFf25017417/info.json b/blockchains/smartchain/assets/0x2383596EFa3A0fc13EfdCd776410deFf25017417/info.json new file mode 100644 index 0000000000000..360b84e9e78cb --- /dev/null +++ b/blockchains/smartchain/assets/0x2383596EFa3A0fc13EfdCd776410deFf25017417/info.json @@ -0,0 +1,17 @@ +{ + "name": "Soul Quantum Void", + "website": "https://www.sqvoid.com/#/", + "description": "Soul Quantum Void is an innovative WEB3 MEME project based on new blockchain technology, linking tokens and NFTs.", + "explorer": "https://bscscan.com/token/0x2383596EFa3A0fc13EfdCd776410deFf25017417", + "type": "BEP20", + "symbol": "SQV", + "decimals": 18, + "status": "active", + "id": "0x2383596EFa3A0fc13EfdCd776410deFf25017417", + "links": [ + { + "name": "x", + "url": "https://x.com/SQV_Project" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2383596EFa3A0fc13EfdCd776410deFf25017417/logo.png b/blockchains/smartchain/assets/0x2383596EFa3A0fc13EfdCd776410deFf25017417/logo.png new file mode 100644 index 0000000000000..92ee4f499b338 Binary files /dev/null and b/blockchains/smartchain/assets/0x2383596EFa3A0fc13EfdCd776410deFf25017417/logo.png differ diff --git a/blockchains/smartchain/assets/0x238950013FA29A3575EB7a3D99C00304047a77b5/info.json b/blockchains/smartchain/assets/0x238950013FA29A3575EB7a3D99C00304047a77b5/info.json new file mode 100644 index 0000000000000..9d3ef8a61dacc --- /dev/null +++ b/blockchains/smartchain/assets/0x238950013FA29A3575EB7a3D99C00304047a77b5/info.json @@ -0,0 +1,17 @@ +{ + "name": "Beeper Coin", + "symbol": "BEEPER", + "website": "https://beeper.fun", + "description": "Beeper is a self-evolving Intent Agent designed to help users seamlessly interact with Web3 across any platform", + "explorer": "https://bscscan.com/token/0x238950013fa29a3575eb7a3d99c00304047a77b5", + "decimals": 18, + "status": "active", + "id": "0x238950013FA29A3575EB7a3D99C00304047a77b5", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/BeeperBoss" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x238950013FA29A3575EB7a3D99C00304047a77b5/logo.png b/blockchains/smartchain/assets/0x238950013FA29A3575EB7a3D99C00304047a77b5/logo.png new file mode 100644 index 0000000000000..9fc1e3b9d5da6 Binary files /dev/null and b/blockchains/smartchain/assets/0x238950013FA29A3575EB7a3D99C00304047a77b5/logo.png differ diff --git a/blockchains/smartchain/assets/0x238D02eE3F80FBf5E381F049616025c186889B68/info.json b/blockchains/smartchain/assets/0x238D02eE3F80FBf5E381F049616025c186889B68/info.json new file mode 100644 index 0000000000000..a88c27234f89e --- /dev/null +++ b/blockchains/smartchain/assets/0x238D02eE3F80FBf5E381F049616025c186889B68/info.json @@ -0,0 +1,29 @@ +{ + "name": "Metars", + "type": "BEP20", + "symbol": "MRS", + "decimals": 18, + "description": "Metars Genesis is a source of faith, freedom, and an open world built by all in the metaverse. It combines an art gallery and a religious site, utilizing VR technology to create a crystallization of human civilization. The platform aims to showcase the greatest works of art with significant religious, divine, and human enlightenment values in human history. Through collective construction, Metars will evolve into a completely free and open world.", + "website": "https://metars.io/index", + "explorer": "https://www.bscscan.com/token/0x238D02eE3F80FBf5E381F049616025c186889B68", + "id": "0x238D02eE3F80FBf5E381F049616025c186889B68", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/MetarsGenesis" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/metars-genesis/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/metars-genesis" + } + ], + "tags": [ + "nft" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x238D02eE3F80FBf5E381F049616025c186889B68/logo.png b/blockchains/smartchain/assets/0x238D02eE3F80FBf5E381F049616025c186889B68/logo.png new file mode 100644 index 0000000000000..bfcada89938cf Binary files /dev/null and b/blockchains/smartchain/assets/0x238D02eE3F80FBf5E381F049616025c186889B68/logo.png differ diff --git a/blockchains/smartchain/assets/0x238d8ffD480Af083b5246197Ec3e9b074F438888/info.json b/blockchains/smartchain/assets/0x238d8ffD480Af083b5246197Ec3e9b074F438888/info.json new file mode 100644 index 0000000000000..c2c06d7d14a20 --- /dev/null +++ b/blockchains/smartchain/assets/0x238d8ffD480Af083b5246197Ec3e9b074F438888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether USD", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x238d8ffD480Af083b5246197Ec3e9b074F438888", + "explorer": "https://bscscan.com/token/0x238d8ffD480Af083b5246197Ec3e9b074F438888", + "status": "spam", + "id": "0x238d8ffD480Af083b5246197Ec3e9b074F438888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x23CE9e926048273eF83be0A3A8Ba9Cb6D45cd978/info.json b/blockchains/smartchain/assets/0x23CE9e926048273eF83be0A3A8Ba9Cb6D45cd978/info.json new file mode 100644 index 0000000000000..a804eeb5c445c --- /dev/null +++ b/blockchains/smartchain/assets/0x23CE9e926048273eF83be0A3A8Ba9Cb6D45cd978/info.json @@ -0,0 +1,28 @@ +{ + "name": "Dalarnia", + "type": "BEP20", + "symbol": "DAR", + "decimals": 6, + "website": "https://www.minesofdalarnia.com", + "description": "Mines of Dalarnia is an action-adventure game. Players mine and combine various in-game items, improving their skills and gear to unlock the MoD universe's secrets while fighting enemies and searching for rare relics and artifacts.", + "explorer": "https://bscscan.com/token/0x23ce9e926048273ef83be0a3a8ba9cb6d45cd978", + "status": "active", + "id": "0x23CE9e926048273eF83be0A3A8Ba9Cb6D45cd978", + "links": [ + { + "name": "telegram", + "url": "https://t.me/MinesOfDalarnia" + }, + { + "name": "x", + "url": "https://x.com/MinesOfDalarnia" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mines-of-dalarnia/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x23CE9e926048273eF83be0A3A8Ba9Cb6D45cd978/logo.png b/blockchains/smartchain/assets/0x23CE9e926048273eF83be0A3A8Ba9Cb6D45cd978/logo.png new file mode 100644 index 0000000000000..c8e37a57ef89c Binary files /dev/null and b/blockchains/smartchain/assets/0x23CE9e926048273eF83be0A3A8Ba9Cb6D45cd978/logo.png differ diff --git a/blockchains/smartchain/assets/0x23D3F4EaaA515403C6765bb623F287a8Cca28F2b/info.json b/blockchains/smartchain/assets/0x23D3F4EaaA515403C6765bb623F287a8Cca28F2b/info.json new file mode 100644 index 0000000000000..66f094ca35340 --- /dev/null +++ b/blockchains/smartchain/assets/0x23D3F4EaaA515403C6765bb623F287a8Cca28F2b/info.json @@ -0,0 +1,20 @@ +{ + "name": "Broccoli", + "website": "https://broccolibnb.org", + "description": "CZ wanted a name for his dog that started with B and had some green in it, so he named him Broccoli. It also had a blocky sound, as in blockiichain", + "explorer": "https://bscscan.com/token/0x23d3f4eaaa515403c6765bb623f287a8cca28f2b", + "type": "BEP20", + "symbol": "Broccoli", + "decimals": 18, + "status": "active", + "id": "0x23D3F4EaaA515403C6765bb623F287a8Cca28F2b", + "tags": [ + "memes" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/CZDog_Broccoli" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x23D3F4EaaA515403C6765bb623F287a8Cca28F2b/logo.png b/blockchains/smartchain/assets/0x23D3F4EaaA515403C6765bb623F287a8Cca28F2b/logo.png new file mode 100644 index 0000000000000..d0843afb8fc43 Binary files /dev/null and b/blockchains/smartchain/assets/0x23D3F4EaaA515403C6765bb623F287a8Cca28F2b/logo.png differ diff --git a/blockchains/smartchain/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json b/blockchains/smartchain/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json index bf5ade8df097c..4f0fbb2df4823 100644 --- a/blockchains/smartchain/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json +++ b/blockchains/smartchain/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json @@ -10,8 +10,8 @@ "id": "0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/everrise" + "name": "x", + "url": "https://x.com/everrise" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x23e39D94807a8bb7e3f8294b4911D04EE26DcE39/info.json b/blockchains/smartchain/assets/0x23e39D94807a8bb7e3f8294b4911D04EE26DcE39/info.json new file mode 100644 index 0000000000000..4efff9e466b19 --- /dev/null +++ b/blockchains/smartchain/assets/0x23e39D94807a8bb7e3f8294b4911D04EE26DcE39/info.json @@ -0,0 +1,24 @@ +{ + "name": "Redwire (Ondo Tokenized)", + "type": "BEP20", + "symbol": "RDWon", + "decimals": 18, + "description": "RDWon is the Ondo Tokenized version of Redwire, giving tokenholders economic exposure similar to holding RDW and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x23e39D94807a8bb7e3f8294b4911D04EE26DcE39", + "status": "active", + "id": "0x23e39D94807a8bb7e3f8294b4911D04EE26DcE39", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/redwire-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x23e39D94807a8bb7e3f8294b4911D04EE26DcE39/logo.png b/blockchains/smartchain/assets/0x23e39D94807a8bb7e3f8294b4911D04EE26DcE39/logo.png new file mode 100644 index 0000000000000..d2742f944fd52 Binary files /dev/null and b/blockchains/smartchain/assets/0x23e39D94807a8bb7e3f8294b4911D04EE26DcE39/logo.png differ diff --git a/blockchains/smartchain/assets/0x24086EAb82DBDaa4771d0A5D66B0D810458b0E86/info.json b/blockchains/smartchain/assets/0x24086EAb82DBDaa4771d0A5D66B0D810458b0E86/info.json index a420810cce621..38e6da5187311 100644 --- a/blockchains/smartchain/assets/0x24086EAb82DBDaa4771d0A5D66B0D810458b0E86/info.json +++ b/blockchains/smartchain/assets/0x24086EAb82DBDaa4771d0A5D66B0D810458b0E86/info.json @@ -10,8 +10,8 @@ "id": "0x24086EAb82DBDaa4771d0A5D66B0D810458b0E86", "links": [ { - "name": "twitter", - "url": "https://twitter.com/pepeaicoin" + "name": "x", + "url": "https://x.com/pepeaicoin" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x240Eb4859B4537D250cf784cc758c404dA5Fe4bd/info.json b/blockchains/smartchain/assets/0x240Eb4859B4537D250cf784cc758c404dA5Fe4bd/info.json new file mode 100644 index 0000000000000..1d613ad93dfe8 --- /dev/null +++ b/blockchains/smartchain/assets/0x240Eb4859B4537D250cf784cc758c404dA5Fe4bd/info.json @@ -0,0 +1,24 @@ +{ + "name": "Franklin High Yield Corporate ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "FLHYon", + "decimals": 18, + "description": "FLHYon is the Ondo Tokenized version of the Franklin High Yield Corporate ETF, giving tokenholders economic exposure similar to holding FLHY and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x240Eb4859B4537D250cf784cc758c404dA5Fe4bd", + "status": "active", + "id": "0x240Eb4859B4537D250cf784cc758c404dA5Fe4bd", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/franklin-high-yield-corporate-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x240Eb4859B4537D250cf784cc758c404dA5Fe4bd/logo.png b/blockchains/smartchain/assets/0x240Eb4859B4537D250cf784cc758c404dA5Fe4bd/logo.png new file mode 100644 index 0000000000000..344948ada7dd1 Binary files /dev/null and b/blockchains/smartchain/assets/0x240Eb4859B4537D250cf784cc758c404dA5Fe4bd/logo.png differ diff --git a/blockchains/smartchain/assets/0x24127d5F034bb3811Cad4123A4ffc20a1f084F95/info.json b/blockchains/smartchain/assets/0x24127d5F034bb3811Cad4123A4ffc20a1f084F95/info.json new file mode 100644 index 0000000000000..16d0e569571a1 --- /dev/null +++ b/blockchains/smartchain/assets/0x24127d5F034bb3811Cad4123A4ffc20a1f084F95/info.json @@ -0,0 +1,14 @@ +{ + "name": "Camel", + "type": "BEP20", + "symbol": "Camel", + "decimals": 18, + "website": "https://four.meme/token/0x24127d5F034bb3811Cad4123A4ffc20a1f084F95", + "description": "Camel", + "explorer": "https://bscscan.com/token/0x24127d5F034bb3811Cad4123A4ffc20a1f084F95", + "status": "active", + "id": "0x24127d5F034bb3811Cad4123A4ffc20a1f084F95", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x24127d5F034bb3811Cad4123A4ffc20a1f084F95/logo.png b/blockchains/smartchain/assets/0x24127d5F034bb3811Cad4123A4ffc20a1f084F95/logo.png new file mode 100644 index 0000000000000..c998cc68ef0a0 Binary files /dev/null and b/blockchains/smartchain/assets/0x24127d5F034bb3811Cad4123A4ffc20a1f084F95/logo.png differ diff --git a/blockchains/smartchain/assets/0x243d25fd6D84E62a1AB46b7C90404A933d727777/info.json b/blockchains/smartchain/assets/0x243d25fd6D84E62a1AB46b7C90404A933d727777/info.json new file mode 100644 index 0000000000000..8965a344fd512 --- /dev/null +++ b/blockchains/smartchain/assets/0x243d25fd6D84E62a1AB46b7C90404A933d727777/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether USD", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x243d25fd6D84E62a1AB46b7C90404A933d727777", + "explorer": "https://bscscan.com/token/0x243d25fd6D84E62a1AB46b7C90404A933d727777", + "status": "spam", + "id": "0x243d25fd6D84E62a1AB46b7C90404A933d727777" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2456BBAD80BfAD346AecEa45fA38C81a6963132D/info.json b/blockchains/smartchain/assets/0x2456BBAD80BfAD346AecEa45fA38C81a6963132D/info.json index cdcf69966e6cd..d5d689c888e18 100644 --- a/blockchains/smartchain/assets/0x2456BBAD80BfAD346AecEa45fA38C81a6963132D/info.json +++ b/blockchains/smartchain/assets/0x2456BBAD80BfAD346AecEa45fA38C81a6963132D/info.json @@ -10,8 +10,8 @@ "id": "0x2456BBAD80BfAD346AecEa45fA38C81a6963132D", "links": [ { - "name": "twitter", - "url": "https://twitter.com/meta_ruffy" + "name": "x", + "url": "https://x.com/meta_ruffy" }, { "name": "coingecko", @@ -49,4 +49,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x248b4527D1a8Ef40427745126D0DECfeD3018888/info.json b/blockchains/smartchain/assets/0x248b4527D1a8Ef40427745126D0DECfeD3018888/info.json new file mode 100644 index 0000000000000..9544cff15437b --- /dev/null +++ b/blockchains/smartchain/assets/0x248b4527D1a8Ef40427745126D0DECfeD3018888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Βitcoin", + "type": "BEP20", + "symbol": "FAKE BTC", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x248b4527D1a8Ef40427745126D0DECfeD3018888", + "explorer": "https://bscscan.com/token/0x248b4527D1a8Ef40427745126D0DECfeD3018888", + "status": "spam", + "id": "0x248b4527D1a8Ef40427745126D0DECfeD3018888" +} diff --git a/blockchains/smartchain/assets/0x2494b603319d4D9F9715c9f4496d9E0364B59d93/info.json b/blockchains/smartchain/assets/0x2494b603319d4D9F9715c9f4496d9E0364B59d93/info.json new file mode 100644 index 0000000000000..ebbc958847c09 --- /dev/null +++ b/blockchains/smartchain/assets/0x2494b603319d4D9F9715c9f4496d9E0364B59d93/info.json @@ -0,0 +1,24 @@ +{ + "name": "Tesla (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "TSLAon is the Ondo Tokenized version of Tesla, giving tokenholders economic exposure similar to holding TSLA and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x2494b603319d4d9f9715c9f4496d9e0364b59d93", + "type": "BEP20", + "symbol": "TSLAon", + "decimals": 18, + "status": "active", + "id": "0x2494b603319d4D9F9715c9f4496d9E0364B59d93", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tesla-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2494b603319d4D9F9715c9f4496d9E0364B59d93/logo.png b/blockchains/smartchain/assets/0x2494b603319d4D9F9715c9f4496d9E0364B59d93/logo.png new file mode 100644 index 0000000000000..26fbf04bf9260 Binary files /dev/null and b/blockchains/smartchain/assets/0x2494b603319d4D9F9715c9f4496d9E0364B59d93/logo.png differ diff --git a/blockchains/smartchain/assets/0x24D787e9B88Cb62D74e961C1C1d78E4ee47618E5/info.json b/blockchains/smartchain/assets/0x24D787e9B88Cb62D74e961C1C1d78E4ee47618E5/info.json index 72034741aee8a..632f0bf056e2f 100644 --- a/blockchains/smartchain/assets/0x24D787e9B88Cb62D74e961C1C1d78E4ee47618E5/info.json +++ b/blockchains/smartchain/assets/0x24D787e9B88Cb62D74e961C1C1d78E4ee47618E5/info.json @@ -10,8 +10,8 @@ "id": "0x24D787e9B88Cb62D74e961C1C1d78E4ee47618E5", "links": [ { - "name": "twitter", - "url": "https://twitter.com/binapet" + "name": "x", + "url": "https://x.com/binapet" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x24F5471183eA549987f245D6ce236B6108869C92/info.json b/blockchains/smartchain/assets/0x24F5471183eA549987f245D6ce236B6108869C92/info.json new file mode 100644 index 0000000000000..615b59cbe3f89 --- /dev/null +++ b/blockchains/smartchain/assets/0x24F5471183eA549987f245D6ce236B6108869C92/info.json @@ -0,0 +1,24 @@ +{ + "name": "Blackrock, Inc. (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "BLKon is the Ondo Tokenized version of Blackrock, Inc., giving tokenholders economic exposure similar to holding BLK and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x24f5471183ea549987f245d6ce236b6108869c92", + "type": "BEP20", + "symbol": "BLKon", + "decimals": 18, + "status": "active", + "id": "0x24F5471183eA549987f245D6ce236B6108869C92", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/blackrock-inc-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x24F5471183eA549987f245D6ce236B6108869C92/logo.png b/blockchains/smartchain/assets/0x24F5471183eA549987f245D6ce236B6108869C92/logo.png new file mode 100644 index 0000000000000..034a4b9d4602d Binary files /dev/null and b/blockchains/smartchain/assets/0x24F5471183eA549987f245D6ce236B6108869C92/logo.png differ diff --git a/blockchains/smartchain/assets/0x24cE3d571fBcFD9D81dc0e1a560504636a4D046d/info.json b/blockchains/smartchain/assets/0x24cE3d571fBcFD9D81dc0e1a560504636a4D046d/info.json index 5ca9c94acf248..fea7f3dbac719 100644 --- a/blockchains/smartchain/assets/0x24cE3d571fBcFD9D81dc0e1a560504636a4D046d/info.json +++ b/blockchains/smartchain/assets/0x24cE3d571fBcFD9D81dc0e1a560504636a4D046d/info.json @@ -10,8 +10,8 @@ "id": "0x24cE3d571fBcFD9D81dc0e1a560504636a4D046d", "links": [ { - "name": "twitter", - "url": "https://twitter.com/metapetscoin" + "name": "x", + "url": "https://x.com/metapetscoin" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x252817c5dd2e90Bca477D5975724418CBca49B60/info.json b/blockchains/smartchain/assets/0x252817c5dd2e90Bca477D5975724418CBca49B60/info.json new file mode 100644 index 0000000000000..5b6ff3b80e720 --- /dev/null +++ b/blockchains/smartchain/assets/0x252817c5dd2e90Bca477D5975724418CBca49B60/info.json @@ -0,0 +1,17 @@ +{ + "name": "NEZHA", + "symbol": "NEZHA", + "website": "https://nezhabsc.xyz", + "description": "NEZHA is a new Meme coin based on the BSC chain, taking the traditional Chinese mythological figure Nezha as the cultural core, and is committed to promoting the integration of blockchain and Guocao IP.", + "explorer": "https://bscscan.com/token/0x252817c5dd2e90bca477d5975724418cbca49b60", + "decimals": 18, + "status": "active", + "id": "0x252817c5dd2e90Bca477D5975724418CBca49B60", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/1888277030896328735?s=46" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x252817c5dd2e90Bca477D5975724418CBca49B60/logo.png b/blockchains/smartchain/assets/0x252817c5dd2e90Bca477D5975724418CBca49B60/logo.png new file mode 100644 index 0000000000000..a6afcc3ddffb1 Binary files /dev/null and b/blockchains/smartchain/assets/0x252817c5dd2e90Bca477D5975724418CBca49B60/logo.png differ diff --git a/blockchains/smartchain/assets/0x2551c7151E3dB5fE125d8Ebb841FE02cb2d14fb9/info.json b/blockchains/smartchain/assets/0x2551c7151E3dB5fE125d8Ebb841FE02cb2d14fb9/info.json new file mode 100644 index 0000000000000..1030dbc25c238 --- /dev/null +++ b/blockchains/smartchain/assets/0x2551c7151E3dB5fE125d8Ebb841FE02cb2d14fb9/info.json @@ -0,0 +1,17 @@ +{ + "name": "Hamster Champ", + "symbol": "HMC", + "website": "https://www.hamsterchamp.meme", + "description": "Welcome to Hamster Champ The Hamster Kingdom of Memes!", + "explorer": "https://bscscan.com/token/0x2551c7151e3db5fe125d8ebb841fe02cb2d14fb9", + "decimals": 18, + "status": "active", + "id": "0x2551c7151E3dB5fE125d8Ebb841FE02cb2d14fb9", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/HamsterChampX" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2551c7151E3dB5fE125d8Ebb841FE02cb2d14fb9/logo.png b/blockchains/smartchain/assets/0x2551c7151E3dB5fE125d8Ebb841FE02cb2d14fb9/logo.png new file mode 100644 index 0000000000000..6b4b011456773 Binary files /dev/null and b/blockchains/smartchain/assets/0x2551c7151E3dB5fE125d8Ebb841FE02cb2d14fb9/logo.png differ diff --git a/blockchains/smartchain/assets/0x25574Cad6F03FFacD9D08b288e8D5d88997fb2f3/info.json b/blockchains/smartchain/assets/0x25574Cad6F03FFacD9D08b288e8D5d88997fb2f3/info.json index facdec75e7d7a..e0b44fce6030e 100644 --- a/blockchains/smartchain/assets/0x25574Cad6F03FFacD9D08b288e8D5d88997fb2f3/info.json +++ b/blockchains/smartchain/assets/0x25574Cad6F03FFacD9D08b288e8D5d88997fb2f3/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/RedFEG" }, { - "name": "twitter", - "url": "https://twitter.com/Red_FEG" + "name": "x", + "url": "https://x.com/Red_FEG" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/info.json b/blockchains/smartchain/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/info.json index c43923242504f..3b7a5e227ff40 100644 --- a/blockchains/smartchain/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/info.json +++ b/blockchains/smartchain/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/info.json @@ -10,8 +10,8 @@ "id": "0x256D1fCE1b1221e8398f65F9B36033CE50B2D497", "links": [ { - "name": "twitter", - "url": "https://twitter.com/AlveyChain" + "name": "x", + "url": "https://x.com/AlveyChain" }, { "name": "github", @@ -25,4 +25,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x257a8d1E03D17B8535a182301f15290F11674b53/info.json b/blockchains/smartchain/assets/0x257a8d1E03D17B8535a182301f15290F11674b53/info.json index dc05343a00e8f..fe66e2ff817d6 100644 --- a/blockchains/smartchain/assets/0x257a8d1E03D17B8535a182301f15290F11674b53/info.json +++ b/blockchains/smartchain/assets/0x257a8d1E03D17B8535a182301f15290F11674b53/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/kawaii-islands" }, { - "name": "twitter", - "url": "https://twitter.com/kawaii_islands" + "name": "x", + "url": "https://x.com/kawaii_islands" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0x2582d7Afc1bF4496bcb87b6C2a72D24DB279dD0e/info.json b/blockchains/smartchain/assets/0x2582d7Afc1bF4496bcb87b6C2a72D24DB279dD0e/info.json index af2484fe4f4d3..9bf3ff8cf56a1 100644 --- a/blockchains/smartchain/assets/0x2582d7Afc1bF4496bcb87b6C2a72D24DB279dD0e/info.json +++ b/blockchains/smartchain/assets/0x2582d7Afc1bF4496bcb87b6C2a72D24DB279dD0e/info.json @@ -10,8 +10,8 @@ "id": "0x2582d7Afc1bF4496bcb87b6C2a72D24DB279dD0e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/StepOfDoge" + "name": "x", + "url": "https://x.com/StepOfDoge" }, { "name": "telegram", @@ -41,4 +41,4 @@ "tags": [ "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2588F20BAd92Da8dCCE7FaC8311B5F8Ab4690E43/info.json b/blockchains/smartchain/assets/0x2588F20BAd92Da8dCCE7FaC8311B5F8Ab4690E43/info.json new file mode 100644 index 0000000000000..a3a675461c285 --- /dev/null +++ b/blockchains/smartchain/assets/0x2588F20BAd92Da8dCCE7FaC8311B5F8Ab4690E43/info.json @@ -0,0 +1,28 @@ +{ + "name": "T-Mobile US (Ondo Tokenized)", + "type": "BEP20", + "symbol": "TMUSon", + "decimals": 18, + "description": "TMUSon is the Ondo Tokenized version of T-Mobile US, giving tokenholders economic exposure similar to holding TMUS and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x2588F20BAd92Da8dCCE7FaC8311B5F8Ab4690E43", + "status": "active", + "id": "0x2588F20BAd92Da8dCCE7FaC8311B5F8Ab4690E43", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/t-mobile-us-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/t-mobile-us-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2588F20BAd92Da8dCCE7FaC8311B5F8Ab4690E43/logo.png b/blockchains/smartchain/assets/0x2588F20BAd92Da8dCCE7FaC8311B5F8Ab4690E43/logo.png new file mode 100644 index 0000000000000..b9a1bc9b46a87 Binary files /dev/null and b/blockchains/smartchain/assets/0x2588F20BAd92Da8dCCE7FaC8311B5F8Ab4690E43/logo.png differ diff --git a/blockchains/smartchain/assets/0x2598c30330D5771AE9F983979209486aE26dE875/info.json b/blockchains/smartchain/assets/0x2598c30330D5771AE9F983979209486aE26dE875/info.json new file mode 100644 index 0000000000000..b1da80998d188 --- /dev/null +++ b/blockchains/smartchain/assets/0x2598c30330D5771AE9F983979209486aE26dE875/info.json @@ -0,0 +1,21 @@ +{ + "name": "Any Inu", + "website": "https://www.anyinu.xyz/", + "description": "$AI is a omnichain dog coin powered by Axelar's Interchain Token Service.", + "explorer": "https://bscscan.com/token/0x2598c30330D5771AE9F983979209486aE26dE875", + "symbol": "AI", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x2598c30330D5771AE9F983979209486aE26dE875", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/any-inu/" + }, + { + "name": "x", + "url": "https://x.com/AnyInuCoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2598c30330D5771AE9F983979209486aE26dE875/logo.png b/blockchains/smartchain/assets/0x2598c30330D5771AE9F983979209486aE26dE875/logo.png new file mode 100644 index 0000000000000..244e0aba97ab0 Binary files /dev/null and b/blockchains/smartchain/assets/0x2598c30330D5771AE9F983979209486aE26dE875/logo.png differ diff --git a/blockchains/smartchain/assets/0x25F6524C2bfA5eebcc50beaFD08525E0786082cf/info.json b/blockchains/smartchain/assets/0x25F6524C2bfA5eebcc50beaFD08525E0786082cf/info.json index 7974b320c3811..f40c7a6f44f11 100644 --- a/blockchains/smartchain/assets/0x25F6524C2bfA5eebcc50beaFD08525E0786082cf/info.json +++ b/blockchains/smartchain/assets/0x25F6524C2bfA5eebcc50beaFD08525E0786082cf/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/MarioBros-Coin/MarioBrosCoin" }, { - "name": "twitter", - "url": "https://twitter.com/Mariobroscoin" + "name": "x", + "url": "https://x.com/Mariobroscoin" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x25FfDA07F585c39848dB6573E533D7585679C52d/info.json b/blockchains/smartchain/assets/0x25FfDA07F585c39848dB6573E533D7585679C52d/info.json new file mode 100644 index 0000000000000..5c0034acc1989 --- /dev/null +++ b/blockchains/smartchain/assets/0x25FfDA07F585c39848dB6573E533D7585679C52d/info.json @@ -0,0 +1,24 @@ +{ + "name": "Mastercard (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "MAon is the Ondo Tokenized version of Mastercard, giving tokenholders economic exposure similar to holding MA and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x25ffda07f585c39848db6573e533d7585679c52d", + "type": "BEP20", + "symbol": "MAon", + "decimals": 18, + "status": "active", + "id": "0x25FfDA07F585c39848dB6573E533D7585679C52d", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mastercard-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x25FfDA07F585c39848dB6573E533D7585679C52d/logo.png b/blockchains/smartchain/assets/0x25FfDA07F585c39848dB6573E533D7585679C52d/logo.png new file mode 100644 index 0000000000000..87120d139b3b2 Binary files /dev/null and b/blockchains/smartchain/assets/0x25FfDA07F585c39848dB6573E533D7585679C52d/logo.png differ diff --git a/blockchains/smartchain/assets/0x25b15E17164b97202616e36Af1234Db944121185/info.json b/blockchains/smartchain/assets/0x25b15E17164b97202616e36Af1234Db944121185/info.json index 8070ec9297568..0bb422987f313 100644 --- a/blockchains/smartchain/assets/0x25b15E17164b97202616e36Af1234Db944121185/info.json +++ b/blockchains/smartchain/assets/0x25b15E17164b97202616e36Af1234Db944121185/info.json @@ -10,8 +10,8 @@ "id": "0x25b15E17164b97202616e36Af1234Db944121185", "links": [ { - "name": "twitter", - "url": "https://twitter.com/HyperchainX" + "name": "x", + "url": "https://x.com/HyperchainX" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x25b24B3c47918b7962B3e49C4F468367F73CC0E0/info.json b/blockchains/smartchain/assets/0x25b24B3c47918b7962B3e49C4F468367F73CC0E0/info.json index cdca67efdd72e..95c8ab2e9d7a2 100644 --- a/blockchains/smartchain/assets/0x25b24B3c47918b7962B3e49C4F468367F73CC0E0/info.json +++ b/blockchains/smartchain/assets/0x25b24B3c47918b7962B3e49C4F468367F73CC0E0/info.json @@ -10,8 +10,8 @@ "id": "0x25b24B3c47918b7962B3e49C4F468367F73CC0E0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/axltoken" + "name": "x", + "url": "https://x.com/axltoken" }, { "name": "telegram", @@ -44,4 +44,4 @@ "staking", "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x25d624E571d6d7B32729B11DdbbD96Fe89Af44E1/info.json b/blockchains/smartchain/assets/0x25d624E571d6d7B32729B11DdbbD96Fe89Af44E1/info.json new file mode 100644 index 0000000000000..b8bf5ab34f6a6 --- /dev/null +++ b/blockchains/smartchain/assets/0x25d624E571d6d7B32729B11DdbbD96Fe89Af44E1/info.json @@ -0,0 +1,36 @@ +{ + "name": "WibeGram", + "type": "BEP20", + "symbol": "WIBE", + "decimals": 18, + "website": "https://wibegram.com/", + "description": "Wibegram offers advanced encryption to protect your conversations from unauthorized access. Our end-to-end encryption ensures that only you and the intended recipient can read your messages.", + "explorer": "https://bscscan.com/token/0x25d624E571d6d7B32729B11DdbbD96Fe89Af44E1", + "status": "active", + "id": "0x25d624E571d6d7B32729B11DdbbD96Fe89Af44E1", + "links": [ + { + "name": "x", + "url": "https://x.com/wibegram" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wibegram/" + }, + { + "name": "telegram", + "url": "https://t.me/wibegram" + }, + { + "name": "github", + "url": "https://github.com/Wibegram/" + }, + { + "name": "docs", + "url": "https://wibegram.com/WhitePaper.pdf" + } + ], + "tags": [ + "dapp" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x25d624E571d6d7B32729B11DdbbD96Fe89Af44E1/logo.png b/blockchains/smartchain/assets/0x25d624E571d6d7B32729B11DdbbD96Fe89Af44E1/logo.png new file mode 100644 index 0000000000000..681d66443ceb2 Binary files /dev/null and b/blockchains/smartchain/assets/0x25d624E571d6d7B32729B11DdbbD96Fe89Af44E1/logo.png differ diff --git a/blockchains/smartchain/assets/0x261510Dd6257494eEA1DDA7618DBe8a7b87870dd/info.json b/blockchains/smartchain/assets/0x261510Dd6257494eEA1DDA7618DBe8a7b87870dd/info.json index 84fa703fd0308..ef52bf20637d1 100644 --- a/blockchains/smartchain/assets/0x261510Dd6257494eEA1DDA7618DBe8a7b87870dd/info.json +++ b/blockchains/smartchain/assets/0x261510Dd6257494eEA1DDA7618DBe8a7b87870dd/info.json @@ -10,8 +10,8 @@ "id": "0x261510Dd6257494eEA1DDA7618DBe8a7b87870dd", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MIXMARVELGAME" + "name": "x", + "url": "https://x.com/MIXMARVELGAME" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x26165a5a3Dd21FA528bECf3Ff7F114D00a517344/info.json b/blockchains/smartchain/assets/0x26165a5a3Dd21FA528bECf3Ff7F114D00a517344/info.json index 78043e2f07327..61514da9a2e87 100644 --- a/blockchains/smartchain/assets/0x26165a5a3Dd21FA528bECf3Ff7F114D00a517344/info.json +++ b/blockchains/smartchain/assets/0x26165a5a3Dd21FA528bECf3Ff7F114D00a517344/info.json @@ -21,8 +21,8 @@ "url": "https://coinmarketcap.com/currencies/meta-/" }, { - "name": "twitter", - "url": "https://twitter.com/META_Shiba" + "name": "x", + "url": "https://x.com/META_Shiba" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x26193C7fa4354AE49eC53eA2cEBC513dc39A10aa/info.json b/blockchains/smartchain/assets/0x26193C7fa4354AE49eC53eA2cEBC513dc39A10aa/info.json index d7661a45b752a..18d0d2e360a68 100644 --- a/blockchains/smartchain/assets/0x26193C7fa4354AE49eC53eA2cEBC513dc39A10aa/info.json +++ b/blockchains/smartchain/assets/0x26193C7fa4354AE49eC53eA2cEBC513dc39A10aa/info.json @@ -10,8 +10,8 @@ "description": "StarSharks is a community-driven shark metaverse where players, developers and investors could define the value evolution of underlying NFTs in a sustainable ecosystem. This project aims to cultivate and share value of content with the community, and to disrupt the current GameFi world where assets are isolated in one game. StarSharks is powered with dual-token system: SSS, governance token; and SEA, game token.", "links": [ { - "name": "twitter", - "url": "https://twitter.com/StarSharks_SSS" + "name": "x", + "url": "https://x.com/StarSharks_SSS" }, { "name": "telegram", @@ -35,4 +35,4 @@ "staking", "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x26433c8127d9b4e9B71Eaa15111DF99Ea2EeB2f8/info.json b/blockchains/smartchain/assets/0x26433c8127d9b4e9B71Eaa15111DF99Ea2EeB2f8/info.json index e29cee954d57d..fe32725d5d50e 100644 --- a/blockchains/smartchain/assets/0x26433c8127d9b4e9B71Eaa15111DF99Ea2EeB2f8/info.json +++ b/blockchains/smartchain/assets/0x26433c8127d9b4e9B71Eaa15111DF99Ea2EeB2f8/info.json @@ -18,8 +18,8 @@ "url": "https://github.com/decentraland" }, { - "name": "twitter", - "url": "https://twitter.com/decentraland" + "name": "x", + "url": "https://x.com/decentraland" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x264Bc4Ea2F45cF6331AD6C3aC8d7257Cf487FcbC/info.json b/blockchains/smartchain/assets/0x264Bc4Ea2F45cF6331AD6C3aC8d7257Cf487FcbC/info.json index 0eb63356b2fca..7fa34e591b0d8 100644 --- a/blockchains/smartchain/assets/0x264Bc4Ea2F45cF6331AD6C3aC8d7257Cf487FcbC/info.json +++ b/blockchains/smartchain/assets/0x264Bc4Ea2F45cF6331AD6C3aC8d7257Cf487FcbC/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/CreamFi" }, { - "name": "twitter", - "url": "https://twitter.com/CreamdotFinance" + "name": "x", + "url": "https://x.com/CreamdotFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x265f638eAb14dD43D80bB71AAe3289B1c6d46A3f/info.json b/blockchains/smartchain/assets/0x265f638eAb14dD43D80bB71AAe3289B1c6d46A3f/info.json index ffbf448b24cf4..40e793ea7f5f5 100644 --- a/blockchains/smartchain/assets/0x265f638eAb14dD43D80bB71AAe3289B1c6d46A3f/info.json +++ b/blockchains/smartchain/assets/0x265f638eAb14dD43D80bB71AAe3289B1c6d46A3f/info.json @@ -10,8 +10,8 @@ "id": "0x265f638eAb14dD43D80bB71AAe3289B1c6d46A3f", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BidogCoin" + "name": "x", + "url": "https://x.com/BidogCoin" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x26734ADd0650719eA29087fe5CC0AaB81b4f237D/info.json b/blockchains/smartchain/assets/0x26734ADd0650719eA29087fe5CC0AaB81b4f237D/info.json index b220de8a7234a..e00bc54d906e9 100644 --- a/blockchains/smartchain/assets/0x26734ADd0650719eA29087fe5CC0AaB81b4f237D/info.json +++ b/blockchains/smartchain/assets/0x26734ADd0650719eA29087fe5CC0AaB81b4f237D/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/stemxme" }, { - "name": "twitter", - "url": "https://twitter.com/STEMRUCOM" + "name": "x", + "url": "https://x.com/STEMRUCOM" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x269B7A30497F92EBf307e7467fD4F1210a6C36b6/info.json b/blockchains/smartchain/assets/0x269B7A30497F92EBf307e7467fD4F1210a6C36b6/info.json new file mode 100644 index 0000000000000..7b72f36b83dd7 --- /dev/null +++ b/blockchains/smartchain/assets/0x269B7A30497F92EBf307e7467fD4F1210a6C36b6/info.json @@ -0,0 +1,36 @@ +{ + "name": "Evin Token", + "type": "BEP20", + "symbol": "EVIN", + "decimals": 18, + "website": "https://www.evintoken.com", + "description": "Evin Token is AI Based Healty Life Assistant. Withness to Power of the Community !", + "explorer": "https://bscscan.com/token/0x269b7a30497f92ebf307e7467fd4f1210a6c36b6", + "status": "active", + "id": "0x269B7A30497F92EBf307e7467fD4F1210a6C36b6", + "links": [ + { + "name": "x", + "url": "https://x.com/evintoken" + }, + { + "name": "telegram", + "url": "https://t.me/KriptoEvin" + }, + { + "name": "whitepaper", + "url": "https://www.evintoken.com/documents/WhitePaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/evin-token/" + }, + { + "name": "youtube", + "url": "https://youtube.com/@EvinToken" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x269B7A30497F92EBf307e7467fD4F1210a6C36b6/logo.png b/blockchains/smartchain/assets/0x269B7A30497F92EBf307e7467fD4F1210a6C36b6/logo.png new file mode 100644 index 0000000000000..9eed81da95852 Binary files /dev/null and b/blockchains/smartchain/assets/0x269B7A30497F92EBf307e7467fD4F1210a6C36b6/logo.png differ diff --git a/blockchains/smartchain/assets/0x26C98b27aB51Af12C616d2D2Eb99909B6BDE6dde/info.json b/blockchains/smartchain/assets/0x26C98b27aB51Af12C616d2D2Eb99909B6BDE6dde/info.json new file mode 100644 index 0000000000000..c0b11df99aed9 --- /dev/null +++ b/blockchains/smartchain/assets/0x26C98b27aB51Af12C616d2D2Eb99909B6BDE6dde/info.json @@ -0,0 +1,24 @@ +{ + "name": "YO EXCHANGE", + "type": "BEP20", + "symbol": "YOEX", + "decimals": 12, + "website": "https://yoex.io/", + "description": " WE BUILT A CRYPTO PLATFORM TO BUY & SELL Crypto Asset. And this is quite understandable. However, there is a fine point that often gets neglected - the coins or tokens without strong project support are very unlikely to reach the moon with YOEX. That’s why we are here - to make this real. We combined a substantial tokenomic and true projects that have use cases.", + "explorer": "https://bscscan.com/token/0x26c98b27ab51af12c616d2d2eb99909b6bde6dde", + "status": "active", + "id": "0x26C98b27aB51Af12C616d2D2Eb99909B6BDE6dde", + "links": [ + { + "name": "x", + "url": "https://x.com/yo_exchange" + }, + { + "name": "telegram", + "url": "https://t.me/yoexchange" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x26C98b27aB51Af12C616d2D2Eb99909B6BDE6dde/logo.png b/blockchains/smartchain/assets/0x26C98b27aB51Af12C616d2D2Eb99909B6BDE6dde/logo.png new file mode 100644 index 0000000000000..c11bf96e67591 Binary files /dev/null and b/blockchains/smartchain/assets/0x26C98b27aB51Af12C616d2D2Eb99909B6BDE6dde/logo.png differ diff --git a/blockchains/smartchain/assets/0x26DA28954763B92139ED49283625ceCAf52C6f94/info.json b/blockchains/smartchain/assets/0x26DA28954763B92139ED49283625ceCAf52C6f94/info.json index d806c55e93a8e..4a91e5c4af8a7 100644 --- a/blockchains/smartchain/assets/0x26DA28954763B92139ED49283625ceCAf52C6f94/info.json +++ b/blockchains/smartchain/assets/0x26DA28954763B92139ED49283625ceCAf52C6f94/info.json @@ -4,8 +4,8 @@ "description": "Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain.", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VenusProtocol" + "name": "x", + "url": "https://x.com/VenusProtocol" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0x26Ecdc7FFbc0C73dCcE86aE3E029776aC01fcc08/info.json b/blockchains/smartchain/assets/0x26Ecdc7FFbc0C73dCcE86aE3E029776aC01fcc08/info.json new file mode 100644 index 0000000000000..e0b6366262b30 --- /dev/null +++ b/blockchains/smartchain/assets/0x26Ecdc7FFbc0C73dCcE86aE3E029776aC01fcc08/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Staking Pool (USDT)", + "type": "BEP20", + "symbol": "FAKE Staked", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x26Ecdc7FFbc0C73dCcE86aE3E029776aC01fcc08", + "explorer": "https://bscscan.com/token/0x26Ecdc7FFbc0C73dCcE86aE3E029776aC01fcc08", + "status": "spam", + "id": "0x26Ecdc7FFbc0C73dCcE86aE3E029776aC01fcc08" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x26a1BdFa3bb86b2744c4A42EBfDd205761d13a8a/info.json b/blockchains/smartchain/assets/0x26a1BdFa3bb86b2744c4A42EBfDd205761d13a8a/info.json index b02805e3e87af..9fc40f34df16e 100644 --- a/blockchains/smartchain/assets/0x26a1BdFa3bb86b2744c4A42EBfDd205761d13a8a/info.json +++ b/blockchains/smartchain/assets/0x26a1BdFa3bb86b2744c4A42EBfDd205761d13a8a/info.json @@ -10,8 +10,8 @@ "id": "0x26a1BdFa3bb86b2744c4A42EBfDd205761d13a8a", "links": [ { - "name": "twitter", - "url": "https://twitter.com/kakanftworld" + "name": "x", + "url": "https://x.com/kakanftworld" }, { "name": "telegram", @@ -22,4 +22,4 @@ "url": "https://kakanft.medium.com/" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x271C418B045d05A1D52c6bF849d47b5B5B4d769e/info.json b/blockchains/smartchain/assets/0x271C418B045d05A1D52c6bF849d47b5B5B4d769e/info.json index 0ef708da30c5e..3faa4c8618018 100644 --- a/blockchains/smartchain/assets/0x271C418B045d05A1D52c6bF849d47b5B5B4d769e/info.json +++ b/blockchains/smartchain/assets/0x271C418B045d05A1D52c6bF849d47b5B5B4d769e/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Virginlink" }, { - "name": "twitter", - "url": "https://twitter.com/Veraswap Protocol" + "name": "x", + "url": "https://x.com/Veraswap Protocol" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x274B0cB6DB9473245A31cDEA9B789786f4108e4B/info.json b/blockchains/smartchain/assets/0x274B0cB6DB9473245A31cDEA9B789786f4108e4B/info.json new file mode 100644 index 0000000000000..50a36b12affd1 --- /dev/null +++ b/blockchains/smartchain/assets/0x274B0cB6DB9473245A31cDEA9B789786f4108e4B/info.json @@ -0,0 +1,28 @@ +{ + "name": "Caterpillar (Ondo Tokenized)", + "type": "BEP20", + "symbol": "CATon", + "decimals": 18, + "description": "CATon is the Ondo Tokenized version of Caterpillar, giving tokenholders economic exposure similar to holding CAT and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x274B0cB6DB9473245A31cDEA9B789786f4108e4B", + "status": "active", + "id": "0x274B0cB6DB9473245A31cDEA9B789786f4108e4B", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/caterpillar-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/caterpillar-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x274B0cB6DB9473245A31cDEA9B789786f4108e4B/logo.png b/blockchains/smartchain/assets/0x274B0cB6DB9473245A31cDEA9B789786f4108e4B/logo.png new file mode 100644 index 0000000000000..935dd2c8bbe10 Binary files /dev/null and b/blockchains/smartchain/assets/0x274B0cB6DB9473245A31cDEA9B789786f4108e4B/logo.png differ diff --git a/blockchains/smartchain/assets/0x277E1FA8704c5511FEd7E30Bc691F922aa30101B/info.json b/blockchains/smartchain/assets/0x277E1FA8704c5511FEd7E30Bc691F922aa30101B/info.json new file mode 100644 index 0000000000000..8e19e2135c04d --- /dev/null +++ b/blockchains/smartchain/assets/0x277E1FA8704c5511FEd7E30Bc691F922aa30101B/info.json @@ -0,0 +1,28 @@ +{ + "name": "Rivian Automotive (Ondo Tokenized)", + "type": "BEP20", + "symbol": "RIVNon", + "decimals": 18, + "description": "RIVNon is the Ondo Tokenized version of Rivian Automotive, giving tokenholders economic exposure similar to holding RIVN and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x277E1FA8704c5511FEd7E30Bc691F922aa30101B", + "status": "active", + "id": "0x277E1FA8704c5511FEd7E30Bc691F922aa30101B", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/rivian-automotive-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rivian-automotive-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x277E1FA8704c5511FEd7E30Bc691F922aa30101B/logo.png b/blockchains/smartchain/assets/0x277E1FA8704c5511FEd7E30Bc691F922aa30101B/logo.png new file mode 100644 index 0000000000000..c4ed72cfae648 Binary files /dev/null and b/blockchains/smartchain/assets/0x277E1FA8704c5511FEd7E30Bc691F922aa30101B/logo.png differ diff --git a/blockchains/smartchain/assets/0x2782dF1cC877F720C81B4f6568Db64563F1D3AA3/info.json b/blockchains/smartchain/assets/0x2782dF1cC877F720C81B4f6568Db64563F1D3AA3/info.json new file mode 100644 index 0000000000000..3694839c41216 --- /dev/null +++ b/blockchains/smartchain/assets/0x2782dF1cC877F720C81B4f6568Db64563F1D3AA3/info.json @@ -0,0 +1,20 @@ +{ + "name": "Dell Technologies Inc. xStock", + "type": "BEP20", + "symbol": "DELLx", + "decimals": 18, + "description": "Dell Technologies Inc. xStock (DELLx) is a tracker certificate issued as a freely transferable token on selected blockchains. DELLx tracks the price of Dell Technologies Inc.. DELLx is designed to give eligible investors regulatory-compliant access to the stock price of Dell Technologies Inc., whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x2782dF1cC877F720C81B4f6568Db64563F1D3AA3", + "status": "active", + "id": "0x2782dF1cC877F720C81B4f6568Db64563F1D3AA3", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2782dF1cC877F720C81B4f6568Db64563F1D3AA3/logo.png b/blockchains/smartchain/assets/0x2782dF1cC877F720C81B4f6568Db64563F1D3AA3/logo.png new file mode 100644 index 0000000000000..d4723bc12b341 Binary files /dev/null and b/blockchains/smartchain/assets/0x2782dF1cC877F720C81B4f6568Db64563F1D3AA3/logo.png differ diff --git a/blockchains/smartchain/assets/0x2789033DFE80593f69d689f65892a75aFA491111/info.json b/blockchains/smartchain/assets/0x2789033DFE80593f69d689f65892a75aFA491111/info.json new file mode 100644 index 0000000000000..d5dcf2541943f --- /dev/null +++ b/blockchains/smartchain/assets/0x2789033DFE80593f69d689f65892a75aFA491111/info.json @@ -0,0 +1,24 @@ +{ + "name": "White Monkey", + "symbol": "WM", + "type": "BEP20", + "decimals": 18, + "description": "Now White Monkey lives on-chain, turning madness into movement, spreading smiles and WTF energy through web3.", + "website": "https://whitemonkey.fun/", + "explorer": "https://bscscan.com/token/0x2789033DFE80593f69d689f65892a75aFA491111", + "status": "active", + "id": "0x2789033DFE80593f69d689f65892a75aFA491111", + "links": [ + { + "name": "x", + "url": "https://x.com/whitemonkeyfun" + }, + { + "name": "telegram", + "url": "https://t.me/whitemonkeyportal" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2789033DFE80593f69d689f65892a75aFA491111/logo.png b/blockchains/smartchain/assets/0x2789033DFE80593f69d689f65892a75aFA491111/logo.png new file mode 100644 index 0000000000000..e1cd050b88e7e Binary files /dev/null and b/blockchains/smartchain/assets/0x2789033DFE80593f69d689f65892a75aFA491111/logo.png differ diff --git a/blockchains/smartchain/assets/0x2794DAD4077602eD25A88d03781528D1637898B4/info.json b/blockchains/smartchain/assets/0x2794DAD4077602eD25A88d03781528D1637898B4/info.json index 3e52d4bf1c423..3843309424f13 100644 --- a/blockchains/smartchain/assets/0x2794DAD4077602eD25A88d03781528D1637898B4/info.json +++ b/blockchains/smartchain/assets/0x2794DAD4077602eD25A88d03781528D1637898B4/info.json @@ -14,12 +14,12 @@ "url": "https://github.com/vitelabs" }, { - "name": "twitter", - "url": "https://twitter.com/vitelabs" + "name": "x", + "url": "https://x.com/vitelabs" }, { "name": "medium", "url": "https://medium.com/vitelabs" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x27Ae27110350B98d564b9A3eeD31bAeBc82d878d/info.json b/blockchains/smartchain/assets/0x27Ae27110350B98d564b9A3eeD31bAeBc82d878d/info.json index 7068adf7df11f..527828224f0ce 100644 --- a/blockchains/smartchain/assets/0x27Ae27110350B98d564b9A3eeD31bAeBc82d878d/info.json +++ b/blockchains/smartchain/assets/0x27Ae27110350B98d564b9A3eeD31bAeBc82d878d/info.json @@ -1,20 +1,18 @@ { "name": "CumRocket", "website": "https://cumrocket.io", - "description": "CumRocket (CUMMIES) is a deflationary token used for purchasing adult content on their NSFW platform. Users are able to buy, sell and collect 18+ NFTs from their favourite models, as well as chat, tip and subscribe to exclusive content. 5% tax on every transaction - 2.5% burn, 2.5% redistribution.", + "description": "One of the most viral coins in history!", "explorer": "https://bscscan.com/token/0x27Ae27110350B98d564b9A3eeD31bAeBc82d878d", "type": "BEP20", "symbol": "CUMMIES", "decimals": 18, "status": "active", "id": "0x27Ae27110350B98d564b9A3eeD31bAeBc82d878d", - "tags": [ - "deflationary" - ], + "tags": [], "links": [ { - "name": "twitter", - "url": "https://twitter.com/CumRocketCrypto" + "name": "x", + "url": "https://x.com/CumRocketCrypto" }, { "name": "telegram", @@ -29,8 +27,8 @@ "url": "https://reddit.com/r/CumRocket/" }, { - "name": "medium", - "url": "https://cumrocket.medium.com/" + "name": "docs", + "url": "https://cumrocket.gitbook.io/cumrocket" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x27Ae27110350B98d564b9A3eeD31bAeBc82d878d/logo.png b/blockchains/smartchain/assets/0x27Ae27110350B98d564b9A3eeD31bAeBc82d878d/logo.png index 4662728d3648e..d41c7ff827e4b 100644 Binary files a/blockchains/smartchain/assets/0x27Ae27110350B98d564b9A3eeD31bAeBc82d878d/logo.png and b/blockchains/smartchain/assets/0x27Ae27110350B98d564b9A3eeD31bAeBc82d878d/logo.png differ diff --git a/blockchains/smartchain/assets/0x27B2D695eF01d10EE96582a23db201B0Aa338639/info.json b/blockchains/smartchain/assets/0x27B2D695eF01d10EE96582a23db201B0Aa338639/info.json index 5b1b56360d102..16dd6fafd60be 100644 --- a/blockchains/smartchain/assets/0x27B2D695eF01d10EE96582a23db201B0Aa338639/info.json +++ b/blockchains/smartchain/assets/0x27B2D695eF01d10EE96582a23db201B0Aa338639/info.json @@ -10,8 +10,8 @@ "id": "0x27B2D695eF01d10EE96582a23db201B0Aa338639", "links": [ { - "name": "twitter", - "url": "https://twitter.com/gictradeio" + "name": "x", + "url": "https://x.com/gictradeio" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x27BB50c0927891CD21C8Db530490373d295FCBf5/info.json b/blockchains/smartchain/assets/0x27BB50c0927891CD21C8Db530490373d295FCBf5/info.json new file mode 100644 index 0000000000000..9093b2516957d --- /dev/null +++ b/blockchains/smartchain/assets/0x27BB50c0927891CD21C8Db530490373d295FCBf5/info.json @@ -0,0 +1,26 @@ +{ + "name": "Bibi", + "type": "BEP20", + "symbol": "BIBI", + "decimals": 2, + "description": "Bibi is the official mascot of Binance and the Binance ecosystem. It is a cute, yellow, cube-shaped character with a distinctive appearance that makes it easily recognizable. Bibi is often depicted in a playful and approachable manner, such as sitting at a desk with a laptop, symbolizing Binance's focus on technology and innovation. As the friendly face of Binance, Bibi helps to engage users and make the world of cryptocurrency more accessible and enjoyable.", + "website": "https://bibi2025.xyz/", + "explorer": "https://bscscan.com/token/0x27BB50c0927891CD21C8Db530490373d295FCBf5", + "id": "0x27BB50c0927891CD21C8Db530490373d295FCBf5", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/BIBI_bibiCTO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bibi-bsc/" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x27BB50c0927891CD21C8Db530490373d295FCBf5/logo.png b/blockchains/smartchain/assets/0x27BB50c0927891CD21C8Db530490373d295FCBf5/logo.png new file mode 100644 index 0000000000000..15b3de1c8d2f7 Binary files /dev/null and b/blockchains/smartchain/assets/0x27BB50c0927891CD21C8Db530490373d295FCBf5/logo.png differ diff --git a/blockchains/smartchain/assets/0x27E1Ff9a6ECa817d9E3FceEf75438CAe0b970af6/info.json b/blockchains/smartchain/assets/0x27E1Ff9a6ECa817d9E3FceEf75438CAe0b970af6/info.json new file mode 100644 index 0000000000000..4cf4022319e55 --- /dev/null +++ b/blockchains/smartchain/assets/0x27E1Ff9a6ECa817d9E3FceEf75438CAe0b970af6/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT BITBULL", + "type": "BEP20", + "symbol": "HONEYPOT BITBULL", + "decimals": 9, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x27E1Ff9a6ECa817d9E3FceEf75438CAe0b970af6", + "explorer": "https://bscscan.com/token/0x27E1Ff9a6ECa817d9E3FceEf75438CAe0b970af6", + "status": "spam", + "id": "0x27E1Ff9a6ECa817d9E3FceEf75438CAe0b970af6" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x27E873bee690C8E161813DE3566E9E18a64b0381/info.json b/blockchains/smartchain/assets/0x27E873bee690C8E161813DE3566E9E18a64b0381/info.json index 1e405a803a005..c5753eca8a755 100644 --- a/blockchains/smartchain/assets/0x27E873bee690C8E161813DE3566E9E18a64b0381/info.json +++ b/blockchains/smartchain/assets/0x27E873bee690C8E161813DE3566E9E18a64b0381/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Leonicornswap" }, { - "name": "twitter", - "url": "https://twitter.com/swapleonicorn" + "name": "x", + "url": "https://x.com/swapleonicorn" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x27a339d9B59b21390d7209b78a839868E319301B/info.json b/blockchains/smartchain/assets/0x27a339d9B59b21390d7209b78a839868E319301B/info.json index c8785f85f2454..4886568506a50 100644 --- a/blockchains/smartchain/assets/0x27a339d9B59b21390d7209b78a839868E319301B/info.json +++ b/blockchains/smartchain/assets/0x27a339d9B59b21390d7209b78a839868E319301B/info.json @@ -14,8 +14,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/OpenWorldVision" + "name": "x", + "url": "https://x.com/OpenWorldVision" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x27aD5CC5242f4258030D81A5639098ce0a96820F/info.json b/blockchains/smartchain/assets/0x27aD5CC5242f4258030D81A5639098ce0a96820F/info.json new file mode 100644 index 0000000000000..68f28d5ab451a --- /dev/null +++ b/blockchains/smartchain/assets/0x27aD5CC5242f4258030D81A5639098ce0a96820F/info.json @@ -0,0 +1,20 @@ +{ + "name": "Arista Networks, Inc. xStock", + "type": "BEP20", + "symbol": "ANETx", + "decimals": 18, + "description": "Arista Networks, Inc. xStock (ANETx) is a tracker certificate issued as a freely transferable token on selected blockchains. ANETx tracks the price of Arista Networks, Inc.. ANETx is designed to give eligible investors regulatory-compliant access to the stock price of Arista Networks, Inc., whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x27aD5CC5242f4258030D81A5639098ce0a96820F", + "status": "active", + "id": "0x27aD5CC5242f4258030D81A5639098ce0a96820F", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x27aD5CC5242f4258030D81A5639098ce0a96820F/logo.png b/blockchains/smartchain/assets/0x27aD5CC5242f4258030D81A5639098ce0a96820F/logo.png new file mode 100644 index 0000000000000..742918d3fe29b Binary files /dev/null and b/blockchains/smartchain/assets/0x27aD5CC5242f4258030D81A5639098ce0a96820F/logo.png differ diff --git a/blockchains/smartchain/assets/0x27dE544Bf6a05D6c1460E124c6410a0396f78888/info.json b/blockchains/smartchain/assets/0x27dE544Bf6a05D6c1460E124c6410a0396f78888/info.json new file mode 100644 index 0000000000000..7273028935fa7 --- /dev/null +++ b/blockchains/smartchain/assets/0x27dE544Bf6a05D6c1460E124c6410a0396f78888/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT Tether USD", + "type": "BEP20", + "symbol": "HONEYPOT USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x27dE544Bf6a05D6c1460E124c6410a0396f78888", + "explorer": "https://bscscan.com/token/0x27dE544Bf6a05D6c1460E124c6410a0396f78888", + "status": "spam", + "id": "0x27dE544Bf6a05D6c1460E124c6410a0396f78888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2802eb3a20f5892956D5B9528F6Bf13E648534DB/info.json b/blockchains/smartchain/assets/0x2802eb3a20f5892956D5B9528F6Bf13E648534DB/info.json index a6f7eb11088c8..5b9783b8bb259 100644 --- a/blockchains/smartchain/assets/0x2802eb3a20f5892956D5B9528F6Bf13E648534DB/info.json +++ b/blockchains/smartchain/assets/0x2802eb3a20f5892956D5B9528F6Bf13E648534DB/info.json @@ -6,6 +6,6 @@ "description": "Decentralized system designed to build a data oracle network based on an open protocol for interaction between participants and a sustainable economy.", "website": "https://odinprotocol.io/", "explorer": "https://bscscan.com/token/0x2802eb3a20f5892956d5b9528f6bf13e648534db", - "status": "active", + "status": "abandoned", "id": "0x2802eb3a20f5892956D5B9528F6Bf13E648534DB" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2802eb3a20f5892956D5B9528F6Bf13E648534DB/logo.png b/blockchains/smartchain/assets/0x2802eb3a20f5892956D5B9528F6Bf13E648534DB/logo.png deleted file mode 100644 index 3793f994e3a0f..0000000000000 Binary files a/blockchains/smartchain/assets/0x2802eb3a20f5892956D5B9528F6Bf13E648534DB/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x282973969118F9fe39bf2FF3D8DD1EFEE82CCb11/info.json b/blockchains/smartchain/assets/0x282973969118F9fe39bf2FF3D8DD1EFEE82CCb11/info.json new file mode 100644 index 0000000000000..38784f825e663 --- /dev/null +++ b/blockchains/smartchain/assets/0x282973969118F9fe39bf2FF3D8DD1EFEE82CCb11/info.json @@ -0,0 +1,28 @@ +{ + "name": "NetEase (Ondo Tokenized)", + "type": "BEP20", + "symbol": "NTESon", + "decimals": 18, + "description": "NTESon is the Ondo Tokenized version of NetEase, giving tokenholders economic exposure similar to holding NTES and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x282973969118F9fe39bf2FF3D8DD1EFEE82CCb11", + "status": "active", + "id": "0x282973969118F9fe39bf2FF3D8DD1EFEE82CCb11", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/netease-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/netease-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x282973969118F9fe39bf2FF3D8DD1EFEE82CCb11/logo.png b/blockchains/smartchain/assets/0x282973969118F9fe39bf2FF3D8DD1EFEE82CCb11/logo.png new file mode 100644 index 0000000000000..418ef4def3a2f Binary files /dev/null and b/blockchains/smartchain/assets/0x282973969118F9fe39bf2FF3D8DD1EFEE82CCb11/logo.png differ diff --git a/blockchains/smartchain/assets/0x2859e4544C4bB03966803b044A93563Bd2D0DD4D/info.json b/blockchains/smartchain/assets/0x2859e4544C4bB03966803b044A93563Bd2D0DD4D/info.json index bb85445cc9f82..957f763f6ac8e 100644 --- a/blockchains/smartchain/assets/0x2859e4544C4bB03966803b044A93563Bd2D0DD4D/info.json +++ b/blockchains/smartchain/assets/0x2859e4544C4bB03966803b044A93563Bd2D0DD4D/info.json @@ -1,5 +1,5 @@ { - "name": "BNB pegged SHIBA INU", + "name": "Shiba Inu", "website": "https://shibatoken.com/", "description": "BNB pegged SHIBA INU (SHIB BEP20) is a token issued by Binance on Smart Chain; its price is pegged to SHIBA INU (SHIB ERC20) at a ratio of 1:1.", "explorer": "https://bscscan.com/token/0x2859e4544c4bb03966803b044a93563bd2d0dd4d", diff --git a/blockchains/smartchain/assets/0x287880Ea252b52b63Cc5f40a2d3E5A44aa665a76/info.json b/blockchains/smartchain/assets/0x287880Ea252b52b63Cc5f40a2d3E5A44aa665a76/info.json index f36da53ca467a..465cd25078b61 100644 --- a/blockchains/smartchain/assets/0x287880Ea252b52b63Cc5f40a2d3E5A44aa665a76/info.json +++ b/blockchains/smartchain/assets/0x287880Ea252b52b63Cc5f40a2d3E5A44aa665a76/info.json @@ -10,8 +10,8 @@ "id": "0x287880Ea252b52b63Cc5f40a2d3E5A44aa665a76", "links": [ { - "name": "twitter", - "url": "https://twitter.com/AlpineF1Team" + "name": "x", + "url": "https://x.com/AlpineF1Team" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x287Db351d5230716246CfB46AF8153025eDa6A0a/info.json b/blockchains/smartchain/assets/0x287Db351d5230716246CfB46AF8153025eDa6A0a/info.json index af8898f4ee70b..edb1f2d111194 100644 --- a/blockchains/smartchain/assets/0x287Db351d5230716246CfB46AF8153025eDa6A0a/info.json +++ b/blockchains/smartchain/assets/0x287Db351d5230716246CfB46AF8153025eDa6A0a/info.json @@ -10,8 +10,8 @@ "id": "0x287Db351d5230716246CfB46AF8153025eDa6A0a", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Block_Monsters" + "name": "x", + "url": "https://x.com/Block_Monsters" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x28A27ba716d306c842a4b5dA20a42e1d4D1E8d6b/info.json b/blockchains/smartchain/assets/0x28A27ba716d306c842a4b5dA20a42e1d4D1E8d6b/info.json index e67fa13addc7e..529b0cfc29200 100644 --- a/blockchains/smartchain/assets/0x28A27ba716d306c842a4b5dA20a42e1d4D1E8d6b/info.json +++ b/blockchains/smartchain/assets/0x28A27ba716d306c842a4b5dA20a42e1d4D1E8d6b/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/BitUP_Official" }, { - "name": "twitter", - "url": "https://twitter.com/bitupbsc" + "name": "x", + "url": "https://x.com/bitupbsc" }, { "name": "discord", diff --git a/blockchains/smartchain/assets/0x28B9aed756De31B6b362aA0f23211D13093EBb79/info.json b/blockchains/smartchain/assets/0x28B9aed756De31B6b362aA0f23211D13093EBb79/info.json index 8f9a2ecea16e4..a82d2f078f72d 100644 --- a/blockchains/smartchain/assets/0x28B9aed756De31B6b362aA0f23211D13093EBb79/info.json +++ b/blockchains/smartchain/assets/0x28B9aed756De31B6b362aA0f23211D13093EBb79/info.json @@ -10,8 +10,8 @@ "id": "0x28B9aed756De31B6b362aA0f23211D13093EBb79", "links": [ { - "name": "twitter", - "url": "https://twitter.com/LunaGensOffcial" + "name": "x", + "url": "https://x.com/LunaGensOffcial" }, { "name": "telegram", @@ -33,4 +33,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x290906Ede0E30ed9f2FF1df056aE0f802b01fE2a/info.json b/blockchains/smartchain/assets/0x290906Ede0E30ed9f2FF1df056aE0f802b01fE2a/info.json index 573194224cfb3..d0aca887de8eb 100644 --- a/blockchains/smartchain/assets/0x290906Ede0E30ed9f2FF1df056aE0f802b01fE2a/info.json +++ b/blockchains/smartchain/assets/0x290906Ede0E30ed9f2FF1df056aE0f802b01fE2a/info.json @@ -10,8 +10,8 @@ "id": "0x290906Ede0E30ed9f2FF1df056aE0f802b01fE2a", "links": [ { - "name": "twitter", - "url": "https://twitter.com/gamingshibabsc" + "name": "x", + "url": "https://x.com/gamingshibabsc" }, { "name": "telegram", @@ -25,4 +25,4 @@ "tags": [ "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2940566Eb50F15129238f4Dc599ADC4F742D7d8E/info.json b/blockchains/smartchain/assets/0x2940566Eb50F15129238f4Dc599ADC4F742D7d8E/info.json new file mode 100644 index 0000000000000..8bdbda9f13fc0 --- /dev/null +++ b/blockchains/smartchain/assets/0x2940566Eb50F15129238f4Dc599ADC4F742D7d8E/info.json @@ -0,0 +1,21 @@ +{ + "name": "BlackCardCoin", + "website": "https://blackcardcoin.com/", + "description": "$BCCoin BlackCardCoin is the essential cryptocurrency you need to get your hands on a BlackCard, offering a unique approach to spending and earning in the digital age.", + "explorer": "https://bscscan.com/token/0x2940566Eb50F15129238f4Dc599ADC4F742D7d8E", + "type": "BEP20", + "symbol": "BCCoin", + "decimals": 18, + "status": "active", + "id": "0x2940566Eb50F15129238f4Dc599ADC4F742D7d8E", + "links": [ + { + "name": "x", + "url": "https://x.com/BlackCardCoin" + }, + { + "name": "telegram", + "url": "https://t.me/official_BCcoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2940566Eb50F15129238f4Dc599ADC4F742D7d8E/logo.png b/blockchains/smartchain/assets/0x2940566Eb50F15129238f4Dc599ADC4F742D7d8E/logo.png new file mode 100644 index 0000000000000..3f7a083b9212c Binary files /dev/null and b/blockchains/smartchain/assets/0x2940566Eb50F15129238f4Dc599ADC4F742D7d8E/logo.png differ diff --git a/blockchains/smartchain/assets/0x295F2122EbfCC5c38b4Bd33879A37348195b61fb/info.json b/blockchains/smartchain/assets/0x295F2122EbfCC5c38b4Bd33879A37348195b61fb/info.json index 21e83b1a82047..13edd476613a2 100644 --- a/blockchains/smartchain/assets/0x295F2122EbfCC5c38b4Bd33879A37348195b61fb/info.json +++ b/blockchains/smartchain/assets/0x295F2122EbfCC5c38b4Bd33879A37348195b61fb/info.json @@ -10,8 +10,8 @@ "id": "0x295F2122EbfCC5c38b4Bd33879A37348195b61fb", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TheThanosToken" + "name": "x", + "url": "https://x.com/TheThanosToken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x2963dCc52549573BBFBe355674724528532C0867/info.json b/blockchains/smartchain/assets/0x2963dCc52549573BBFBe355674724528532C0867/info.json index 73642274a9c2b..d5161d04a6d74 100644 --- a/blockchains/smartchain/assets/0x2963dCc52549573BBFBe355674724528532C0867/info.json +++ b/blockchains/smartchain/assets/0x2963dCc52549573BBFBe355674724528532C0867/info.json @@ -10,8 +10,8 @@ "id": "0x2963dCc52549573BBFBe355674724528532C0867", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PexCoinProject" + "name": "x", + "url": "https://x.com/PexCoinProject" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x29745314B4D294B7C77cDB411B8AAa95923aae38/info.json b/blockchains/smartchain/assets/0x29745314B4D294B7C77cDB411B8AAa95923aae38/info.json index ceafb1a31927d..534d656bee932 100644 --- a/blockchains/smartchain/assets/0x29745314B4D294B7C77cDB411B8AAa95923aae38/info.json +++ b/blockchains/smartchain/assets/0x29745314B4D294B7C77cDB411B8AAa95923aae38/info.json @@ -10,8 +10,8 @@ "id": "0x29745314B4D294B7C77cDB411B8AAa95923aae38", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Palmswaporg" + "name": "x", + "url": "https://x.com/Palmswaporg" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x29A1e54DE0fCE58E1018535d30aF77A9d2D940c4/info.json b/blockchains/smartchain/assets/0x29A1e54DE0fCE58E1018535d30aF77A9d2D940c4/info.json index 78dcc5e7c93d6..3b9b9ce5c20ea 100644 --- a/blockchains/smartchain/assets/0x29A1e54DE0fCE58E1018535d30aF77A9d2D940c4/info.json +++ b/blockchains/smartchain/assets/0x29A1e54DE0fCE58E1018535d30aF77A9d2D940c4/info.json @@ -10,8 +10,8 @@ "id": "0x29A1e54DE0fCE58E1018535d30aF77A9d2D940c4", "links": [ { - "name": "twitter", - "url": "https://twitter.com/HeroCatGameFi" + "name": "x", + "url": "https://x.com/HeroCatGameFi" }, { "name": "telegram", @@ -41,4 +41,4 @@ "tags": [ "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x29A5DaF6E3FDF964DEf07706eA1ABee7EC03D021/info.json b/blockchains/smartchain/assets/0x29A5DaF6E3FDF964DEf07706eA1ABee7EC03D021/info.json index d5645172add0e..3e2232b8a23a0 100644 --- a/blockchains/smartchain/assets/0x29A5DaF6E3FDF964DEf07706eA1ABee7EC03D021/info.json +++ b/blockchains/smartchain/assets/0x29A5DaF6E3FDF964DEf07706eA1ABee7EC03D021/info.json @@ -10,8 +10,8 @@ "id": "0x29A5DaF6E3FDF964DEf07706eA1ABee7EC03D021", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Trillionertoken" + "name": "x", + "url": "https://x.com/Trillionertoken" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x29a206A67fD4f410034885F5f03A8bB4aa4961aa/info.json b/blockchains/smartchain/assets/0x29a206A67fD4f410034885F5f03A8bB4aa4961aa/info.json new file mode 100644 index 0000000000000..e36f96e60fca7 --- /dev/null +++ b/blockchains/smartchain/assets/0x29a206A67fD4f410034885F5f03A8bB4aa4961aa/info.json @@ -0,0 +1,14 @@ +{ + "name": "BabyMubarak", + "type": "BEP20", + "symbol": "BabyMubara", + "decimals": 18, + "website": "https://four.meme/token/0x29a206A67fD4f410034885F5f03A8bB4aa4961aa", + "description": "BabyMubarak", + "explorer": "https://bscscan.com/token/0x29a206A67fD4f410034885F5f03A8bB4aa4961aa", + "status": "active", + "id": "0x29a206A67fD4f410034885F5f03A8bB4aa4961aa", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x29a206A67fD4f410034885F5f03A8bB4aa4961aa/logo.png b/blockchains/smartchain/assets/0x29a206A67fD4f410034885F5f03A8bB4aa4961aa/logo.png new file mode 100644 index 0000000000000..3e3d81aeb8db9 Binary files /dev/null and b/blockchains/smartchain/assets/0x29a206A67fD4f410034885F5f03A8bB4aa4961aa/logo.png differ diff --git a/blockchains/smartchain/assets/0x29b1E39A529d3B3cacEA55989594F71813e998Bb/info.json b/blockchains/smartchain/assets/0x29b1E39A529d3B3cacEA55989594F71813e998Bb/info.json index 8324f303028de..95c1df8fc694d 100644 --- a/blockchains/smartchain/assets/0x29b1E39A529d3B3cacEA55989594F71813e998Bb/info.json +++ b/blockchains/smartchain/assets/0x29b1E39A529d3B3cacEA55989594F71813e998Bb/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Dexioprotocol" }, { - "name": "twitter", - "url": "https://twitter.com/dexioprotocol" + "name": "x", + "url": "https://x.com/dexioprotocol" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x29cED01C447166958605519F10DcF8b0255fB379/info.json b/blockchains/smartchain/assets/0x29cED01C447166958605519F10DcF8b0255fB379/info.json index cee8c47f11ca7..67549ff87f165 100644 --- a/blockchains/smartchain/assets/0x29cED01C447166958605519F10DcF8b0255fB379/info.json +++ b/blockchains/smartchain/assets/0x29cED01C447166958605519F10DcF8b0255fB379/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/FraxFinance" }, { - "name": "twitter", - "url": "https://twitter.com/Frax Finance" + "name": "x", + "url": "https://x.com/Frax Finance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x2A17Dc11a1828725cdB318E0036ACF12727d27a2/info.json b/blockchains/smartchain/assets/0x2A17Dc11a1828725cdB318E0036ACF12727d27a2/info.json index a332bf89ff794..e947772547d77 100644 --- a/blockchains/smartchain/assets/0x2A17Dc11a1828725cdB318E0036ACF12727d27a2/info.json +++ b/blockchains/smartchain/assets/0x2A17Dc11a1828725cdB318E0036ACF12727d27a2/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/arenaswap" }, { - "name": "twitter", - "url": "https://twitter.com/ArenaSwap" + "name": "x", + "url": "https://x.com/ArenaSwap" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x2A1d286ed5edAD78BeFD6E0d8BEb38791e8cD69d/info.json b/blockchains/smartchain/assets/0x2A1d286ed5edAD78BeFD6E0d8BEb38791e8cD69d/info.json index 31942225c14eb..53fb79b6498d9 100644 --- a/blockchains/smartchain/assets/0x2A1d286ed5edAD78BeFD6E0d8BEb38791e8cD69d/info.json +++ b/blockchains/smartchain/assets/0x2A1d286ed5edAD78BeFD6E0d8BEb38791e8cD69d/info.json @@ -10,8 +10,8 @@ "id": "0x2A1d286ed5edAD78BeFD6E0d8BEb38791e8cD69d", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ClimbtToken" + "name": "x", + "url": "https://x.com/ClimbtToken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x2A3E1D095F2902C9B6Da1bFF7813a7B2fc65C3dA/info.json b/blockchains/smartchain/assets/0x2A3E1D095F2902C9B6Da1bFF7813a7B2fc65C3dA/info.json index 298499fa0479d..04937c535e308 100644 --- a/blockchains/smartchain/assets/0x2A3E1D095F2902C9B6Da1bFF7813a7B2fc65C3dA/info.json +++ b/blockchains/smartchain/assets/0x2A3E1D095F2902C9B6Da1bFF7813a7B2fc65C3dA/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/RedFloki" + "name": "x", + "url": "https://x.com/RedFloki" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x2A3cbF64C8181DB4a25D41D4d7a7Db9984C59DAC/info.json b/blockchains/smartchain/assets/0x2A3cbF64C8181DB4a25D41D4d7a7Db9984C59DAC/info.json new file mode 100644 index 0000000000000..072fcf6ea42e4 --- /dev/null +++ b/blockchains/smartchain/assets/0x2A3cbF64C8181DB4a25D41D4d7a7Db9984C59DAC/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Semiconductor ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "SOXXon", + "decimals": 18, + "description": "SOXXon is the Ondo Tokenized version of the iShares Semiconductor ETF, giving tokenholders economic exposure similar to holding SOXX and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x2A3cbF64C8181DB4a25D41D4d7a7Db9984C59DAC", + "status": "active", + "id": "0x2A3cbF64C8181DB4a25D41D4d7a7Db9984C59DAC", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-semiconductor-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2A3cbF64C8181DB4a25D41D4d7a7Db9984C59DAC/logo.png b/blockchains/smartchain/assets/0x2A3cbF64C8181DB4a25D41D4d7a7Db9984C59DAC/logo.png new file mode 100644 index 0000000000000..2ce033b091a15 Binary files /dev/null and b/blockchains/smartchain/assets/0x2A3cbF64C8181DB4a25D41D4d7a7Db9984C59DAC/logo.png differ diff --git a/blockchains/smartchain/assets/0x2A45a892877Ef383c5fc93A5206546c97496da9e/info.json b/blockchains/smartchain/assets/0x2A45a892877Ef383c5fc93A5206546c97496da9e/info.json new file mode 100644 index 0000000000000..ec7fdf06ce38e --- /dev/null +++ b/blockchains/smartchain/assets/0x2A45a892877Ef383c5fc93A5206546c97496da9e/info.json @@ -0,0 +1,48 @@ +{ + "name": "X AI", + "type": "BEP20", + "symbol": "X", + "decimals": 9, + "website": "https://xai.cx", + "description": "X AI is an application that leverages artificial intelligence and machine learning algorithms to create distinct digital assets that can be sold as Non-Fungible Tokens.", + "explorer": "https://bscscan.com/token/0x2A45a892877Ef383c5fc93A5206546c97496da9e", + "status": "active", + "id": "0x2A45a892877Ef383c5fc93A5206546c97496da9e", + "links": [ + { + "name": "x", + "url": "https://x.com/xai_tech" + }, + { + "name": "github", + "url": "https://github.com/xai-cx" + }, + { + "name": "telegram", + "url": "https://t.me/xai_english" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x2a45a892877ef383c5fc93a5206546c97496da9e#code" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/x-ai-cx/" + }, + { + "name": "docs", + "url": "https://docs.xai.cx" + }, + { + "name": "whitepaper", + "url": "https://docs.xai.cx" + }, + { + "name": "medium", + "url": "https://medium.com/@XAI_tech" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2A45a892877Ef383c5fc93A5206546c97496da9e/logo.png b/blockchains/smartchain/assets/0x2A45a892877Ef383c5fc93A5206546c97496da9e/logo.png new file mode 100644 index 0000000000000..31887729ff3aa Binary files /dev/null and b/blockchains/smartchain/assets/0x2A45a892877Ef383c5fc93A5206546c97496da9e/logo.png differ diff --git a/blockchains/smartchain/assets/0x2A48eCe377b87ce941406657B9278b4459595E06/info.json b/blockchains/smartchain/assets/0x2A48eCe377b87ce941406657B9278b4459595E06/info.json index 90331b5d40b4a..056ef29e24fb3 100644 --- a/blockchains/smartchain/assets/0x2A48eCe377b87ce941406657B9278b4459595E06/info.json +++ b/blockchains/smartchain/assets/0x2A48eCe377b87ce941406657B9278b4459595E06/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/lunatics" }, { - "name": "twitter", - "url": "https://twitter.com/LunaticsToken" + "name": "x", + "url": "https://x.com/LunaticsToken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x2A8e74f2aaA893B23bb3373A676aB8f6e7408888/info.json b/blockchains/smartchain/assets/0x2A8e74f2aaA893B23bb3373A676aB8f6e7408888/info.json new file mode 100644 index 0000000000000..fd8b22e625990 --- /dev/null +++ b/blockchains/smartchain/assets/0x2A8e74f2aaA893B23bb3373A676aB8f6e7408888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether USD", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x2A8e74f2aaA893B23bb3373A676aB8f6e7408888", + "explorer": "https://bscscan.com/token/0x2A8e74f2aaA893B23bb3373A676aB8f6e7408888", + "status": "spam", + "id": "0x2A8e74f2aaA893B23bb3373A676aB8f6e7408888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2AA504586d6CaB3C59Fa629f74c586d78b93A025/info.json b/blockchains/smartchain/assets/0x2AA504586d6CaB3C59Fa629f74c586d78b93A025/info.json index fdd058211c816..b8b1c603b6ba0 100644 --- a/blockchains/smartchain/assets/0x2AA504586d6CaB3C59Fa629f74c586d78b93A025/info.json +++ b/blockchains/smartchain/assets/0x2AA504586d6CaB3C59Fa629f74c586d78b93A025/info.json @@ -10,8 +10,8 @@ "id": "0x2AA504586d6CaB3C59Fa629f74c586d78b93A025", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ArenaPlayAPC" + "name": "x", + "url": "https://x.com/ArenaPlayAPC" }, { "name": "telegram", @@ -29,4 +29,4 @@ "tags": [ "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2Ac26EC236df5D1d2Ad1A6Dd4E448A90E45DC35D/info.json b/blockchains/smartchain/assets/0x2Ac26EC236df5D1d2Ad1A6Dd4E448A90E45DC35D/info.json new file mode 100644 index 0000000000000..c5023f38df18d --- /dev/null +++ b/blockchains/smartchain/assets/0x2Ac26EC236df5D1d2Ad1A6Dd4E448A90E45DC35D/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares TIPS Bond (Ondo)", + "website": "https://ondo.finance/", + "description": "TIPon is the Ondo Tokenized version of the iShares TIPS Bond ETF, giving tokenholders economic exposure similar to holding TIP and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x2ac26ec236df5d1d2ad1a6dd4e448a90e45dc35d", + "type": "BEP20", + "symbol": "TIPon", + "decimals": 18, + "status": "active", + "id": "0x2Ac26EC236df5D1d2Ad1A6Dd4E448A90E45DC35D", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-tips-bond-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2Ac26EC236df5D1d2Ad1A6Dd4E448A90E45DC35D/logo.png b/blockchains/smartchain/assets/0x2Ac26EC236df5D1d2Ad1A6Dd4E448A90E45DC35D/logo.png new file mode 100644 index 0000000000000..731ceba6a1840 Binary files /dev/null and b/blockchains/smartchain/assets/0x2Ac26EC236df5D1d2Ad1A6Dd4E448A90E45DC35D/logo.png differ diff --git a/blockchains/smartchain/assets/0x2Aea1D415D45CCF3EaBE565d45DcaF4ea2035b9c/info.json b/blockchains/smartchain/assets/0x2Aea1D415D45CCF3EaBE565d45DcaF4ea2035b9c/info.json new file mode 100644 index 0000000000000..51e0a580a3119 --- /dev/null +++ b/blockchains/smartchain/assets/0x2Aea1D415D45CCF3EaBE565d45DcaF4ea2035b9c/info.json @@ -0,0 +1,24 @@ +{ + "name": "GE Vernova (Ondo Tokenized)", + "type": "BEP20", + "symbol": "GEVon", + "decimals": 18, + "description": "GEVon is the Ondo Tokenized version of GE Vernova, giving tokenholders economic exposure similar to holding GEV and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x2Aea1D415D45CCF3EaBE565d45DcaF4ea2035b9c", + "status": "active", + "id": "0x2Aea1D415D45CCF3EaBE565d45DcaF4ea2035b9c", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ge-vernova-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2Aea1D415D45CCF3EaBE565d45DcaF4ea2035b9c/logo.png b/blockchains/smartchain/assets/0x2Aea1D415D45CCF3EaBE565d45DcaF4ea2035b9c/logo.png new file mode 100644 index 0000000000000..abf2400ac0358 Binary files /dev/null and b/blockchains/smartchain/assets/0x2Aea1D415D45CCF3EaBE565d45DcaF4ea2035b9c/logo.png differ diff --git a/blockchains/smartchain/assets/0x2Af3f5420A3875323badb245c149b49464244444/info.json b/blockchains/smartchain/assets/0x2Af3f5420A3875323badb245c149b49464244444/info.json new file mode 100644 index 0000000000000..f8645b8c7e51d --- /dev/null +++ b/blockchains/smartchain/assets/0x2Af3f5420A3875323badb245c149b49464244444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDKG", + "type": "BEP20", + "symbol": "FAKE USDKG", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x2Af3f5420A3875323badb245c149b49464244444", + "explorer": "https://bscscan.com/token/0x2Af3f5420A3875323badb245c149b49464244444", + "status": "spam", + "id": "0x2Af3f5420A3875323badb245c149b49464244444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2B2fF80c489dad868318a19FD6F258889a026da5/info.json b/blockchains/smartchain/assets/0x2B2fF80c489dad868318a19FD6F258889a026da5/info.json index 3a2162f5c6dcd..866510541ff06 100644 --- a/blockchains/smartchain/assets/0x2B2fF80c489dad868318a19FD6F258889a026da5/info.json +++ b/blockchains/smartchain/assets/0x2B2fF80c489dad868318a19FD6F258889a026da5/info.json @@ -10,8 +10,8 @@ "id": "0x2B2fF80c489dad868318a19FD6F258889a026da5", "links": [ { - "name": "twitter", - "url": "https://twitter.com/DexitFinance" + "name": "x", + "url": "https://x.com/DexitFinance" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x2B3F34e9D4b127797CE6244Ea341a83733ddd6E4/info.json b/blockchains/smartchain/assets/0x2B3F34e9D4b127797CE6244Ea341a83733ddd6E4/info.json index c8fcebd3bec7a..4c92057cc2f04 100644 --- a/blockchains/smartchain/assets/0x2B3F34e9D4b127797CE6244Ea341a83733ddd6E4/info.json +++ b/blockchains/smartchain/assets/0x2B3F34e9D4b127797CE6244Ea341a83733ddd6E4/info.json @@ -10,7 +10,7 @@ "id": "0x2B3F34e9D4b127797CE6244Ea341a83733ddd6E4", "migrate": { "asset_id": "c20000714_t0xfb5B838b6cfEEdC2873aB27866079AC55363D37E", - "url": "https://twitter.com/RealFlokiInu/status/1485298553757089801" + "url": "https://x.com/RealFlokiInu/status/1485298553757089801" }, "links": [ { @@ -18,8 +18,8 @@ "url": "https://t.me/FlokiInuToken" }, { - "name": "twitter", - "url": "https://twitter.com/RealFlokiInu" + "name": "x", + "url": "https://x.com/RealFlokiInu" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x2B5D9ADea07B590b638FFc165792b2C610EdA649/info.json b/blockchains/smartchain/assets/0x2B5D9ADea07B590b638FFc165792b2C610EdA649/info.json new file mode 100644 index 0000000000000..a6f4f1dd91b80 --- /dev/null +++ b/blockchains/smartchain/assets/0x2B5D9ADea07B590b638FFc165792b2C610EdA649/info.json @@ -0,0 +1,14 @@ +{ + "name": "Cakepie", + "type": "BEP20", + "symbol": "CKP", + "decimals": 18, + "website": "https://www.pancake.magpiexyz.io/stake", + "description": "Cakepie is a state-of-the-art SubDAO created by Magpie to bolster the long-term sustainability of PancakeSwap. As a yield and veTokenomics service provider, Cakepie’s core mechanism involves locking CAKE tokens as veCAKE. This process allows Cakepie to secure enhanced yields and amplified governance power within PancakeSwap, serving up prime opportunities for DeFi users.", + "explorer": "https://bscscan.com/token/0x2B5D9ADea07B590b638FFc165792b2C610EdA649", + "status": "active", + "id": "0x2B5D9ADea07B590b638FFc165792b2C610EdA649", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2B5D9ADea07B590b638FFc165792b2C610EdA649/logo.png b/blockchains/smartchain/assets/0x2B5D9ADea07B590b638FFc165792b2C610EdA649/logo.png new file mode 100644 index 0000000000000..578e8623749b0 Binary files /dev/null and b/blockchains/smartchain/assets/0x2B5D9ADea07B590b638FFc165792b2C610EdA649/logo.png differ diff --git a/blockchains/smartchain/assets/0x2B72867c32CF673F7b02d208B26889fEd353B1f8/info.json b/blockchains/smartchain/assets/0x2B72867c32CF673F7b02d208B26889fEd353B1f8/info.json new file mode 100644 index 0000000000000..f3b6e4e7162c2 --- /dev/null +++ b/blockchains/smartchain/assets/0x2B72867c32CF673F7b02d208B26889fEd353B1f8/info.json @@ -0,0 +1,25 @@ +{ + "name": "Magic Square", + "website": "https://magic.store/", + "description": "Magic Square is at the forefront of the Web3 space, featuring the unique 'Magic Store' - a vetted Web3 App Store with a curated range of apps, games, and an advanced Loyalty System.", + "explorer": "https://bscscan.com/token/0x2B72867c32CF673F7b02d208B26889fEd353B1f8", + "type": "BEP20", + "symbol": "SQR", + "decimals": 8, + "status": "active", + "id": "0x2B72867c32CF673F7b02d208B26889fEd353B1f8", + "links": [ + { + "name": "telegram", + "url": "https://t.me/magicsquare_official" + }, + { + "name": "x", + "url": "https://x.com/MagicSquareio" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/magic-square/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2B72867c32CF673F7b02d208B26889fEd353B1f8/logo.png b/blockchains/smartchain/assets/0x2B72867c32CF673F7b02d208B26889fEd353B1f8/logo.png new file mode 100644 index 0000000000000..224d299befbfb Binary files /dev/null and b/blockchains/smartchain/assets/0x2B72867c32CF673F7b02d208B26889fEd353B1f8/logo.png differ diff --git a/blockchains/smartchain/assets/0x2BA8c3066F36B998bC74CE8DcE260Fb5D2ba6bCc/info.json b/blockchains/smartchain/assets/0x2BA8c3066F36B998bC74CE8DcE260Fb5D2ba6bCc/info.json index 64a818e70ba04..2c1f3b96d6b9a 100644 --- a/blockchains/smartchain/assets/0x2BA8c3066F36B998bC74CE8DcE260Fb5D2ba6bCc/info.json +++ b/blockchains/smartchain/assets/0x2BA8c3066F36B998bC74CE8DcE260Fb5D2ba6bCc/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/bigdogecoin/" }, { - "name": "twitter", - "url": "https://twitter.com/bigdogecrypto" + "name": "x", + "url": "https://x.com/bigdogecrypto" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x2BCDCf1ef1320Fc5F9a71CA0BD1504D6125F7569/info.json b/blockchains/smartchain/assets/0x2BCDCf1ef1320Fc5F9a71CA0BD1504D6125F7569/info.json index c7fbf6c24182b..7d8250450ed6d 100644 --- a/blockchains/smartchain/assets/0x2BCDCf1ef1320Fc5F9a71CA0BD1504D6125F7569/info.json +++ b/blockchains/smartchain/assets/0x2BCDCf1ef1320Fc5F9a71CA0BD1504D6125F7569/info.json @@ -10,8 +10,8 @@ "id": "0x2BCDCf1ef1320Fc5F9a71CA0BD1504D6125F7569", "links": [ { - "name": "twitter", - "url": "https://twitter.com/discasvision" + "name": "x", + "url": "https://x.com/discasvision" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x2Bc4eb013DDee29D37920938B96d353171289B7C/info.json b/blockchains/smartchain/assets/0x2Bc4eb013DDee29D37920938B96d353171289B7C/info.json index 31225b21c7ca4..d4b562816eed4 100644 --- a/blockchains/smartchain/assets/0x2Bc4eb013DDee29D37920938B96d353171289B7C/info.json +++ b/blockchains/smartchain/assets/0x2Bc4eb013DDee29D37920938B96d353171289B7C/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/CreamFi" }, { - "name": "twitter", - "url": "https://twitter.com/CreamdotFinance" + "name": "x", + "url": "https://x.com/CreamdotFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x2Bf83D080d8Bc4715984e75E5b3D149805d11751/info.json b/blockchains/smartchain/assets/0x2Bf83D080d8Bc4715984e75E5b3D149805d11751/info.json new file mode 100644 index 0000000000000..97950c1150fad --- /dev/null +++ b/blockchains/smartchain/assets/0x2Bf83D080d8Bc4715984e75E5b3D149805d11751/info.json @@ -0,0 +1,62 @@ +{ + "name": "VinuChain", + "type": "BEP20", + "symbol": "VC", + "decimals": 18, + "website": "https://vinuchain.org", + "description": "VinuChain (VC) is a groundbreaking layer-1 blockchain project that encompasses the best of both worlds - innovation and scalability. As a DAG-based EVM chain, VinuChain boasts one-second finality and near-infinite scalability at a fraction of the cost of traditional blockchains, or zero cost to users who stake.", + "explorer": "https://bscscan.com/token/0x2Bf83D080d8Bc4715984e75E5b3D149805d11751", + "status": "active", + "id": "0x2Bf83D080d8Bc4715984e75E5b3D149805d11751", + "links": [ + { + "name": "x", + "url": "https://x.com/vinuchain" + }, + { + "name": "github", + "url": "https://github.com/vinuchain" + }, + { + "name": "telegram", + "url": "https://t.me/vitainu" + }, + { + "name": "telegram_news", + "url": "https://t.me/vinu_news" + }, + { + "name": "medium", + "url": "https://medium.com/vinuchain" + }, + { + "name": "discord", + "url": "https://discord.com/invite/vinu" + }, + { + "name": "whitepaper", + "url": "https://vinu.gitbook.io/vinuchain/whitepaper/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vinuchain/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vinuchain" + }, + { + "name": "source_code", + "url": "https://bscscan.com/token/0x2Bf83D080d8Bc4715984e75E5b3D149805d11751#code" + } + ], + "tags": [ + "memes", + "defi", + "staking", + "staking-native", + "nft", + "governance", + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2Bf83D080d8Bc4715984e75E5b3D149805d11751/logo.png b/blockchains/smartchain/assets/0x2Bf83D080d8Bc4715984e75E5b3D149805d11751/logo.png new file mode 100644 index 0000000000000..8bd1c642f9e42 Binary files /dev/null and b/blockchains/smartchain/assets/0x2Bf83D080d8Bc4715984e75E5b3D149805d11751/logo.png differ diff --git a/blockchains/smartchain/assets/0x2C40a80565B595C03cd94217c077c47E3F41937E/info.json b/blockchains/smartchain/assets/0x2C40a80565B595C03cd94217c077c47E3F41937E/info.json index cd87968a99aad..277696cebcf45 100644 --- a/blockchains/smartchain/assets/0x2C40a80565B595C03cd94217c077c47E3F41937E/info.json +++ b/blockchains/smartchain/assets/0x2C40a80565B595C03cd94217c077c47E3F41937E/info.json @@ -10,8 +10,8 @@ "id": "0x2C40a80565B595C03cd94217c077c47E3F41937E", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BSC_IronyMan" + "name": "x", + "url": "https://x.com/BSC_IronyMan" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x2D060Ef4d6BF7f9e5edDe373Ab735513c0e4F944/info.json b/blockchains/smartchain/assets/0x2D060Ef4d6BF7f9e5edDe373Ab735513c0e4F944/info.json new file mode 100644 index 0000000000000..6dbdd0fa0390a --- /dev/null +++ b/blockchains/smartchain/assets/0x2D060Ef4d6BF7f9e5edDe373Ab735513c0e4F944/info.json @@ -0,0 +1,36 @@ +{ + "name": "AITECH", + "type": "BEP20", + "symbol": "AITECH", + "decimals": 18, + "website": "https://www.aitech.io/", + "description": "Powering the future of AI with our HPC data center, IaaS platform, AI Marketplace, AITECH Pad Launchpad. Powered by $AITECH token", + "explorer": "https://bscscan.com/token/0x2D060Ef4d6BF7f9e5edDe373Ab735513c0e4F944", + "status": "active", + "id": "0x2D060Ef4d6BF7f9e5edDe373Ab735513c0e4F944", + "links": [ + { + "name": "x", + "url": "https://x.com/AITECHio" + }, + { + "name": "telegram", + "url": "https://t.me/solidusaichat" + }, + { + "name": "discord", + "url": "https://discord.com/solidusai" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/solidus-ai-tech/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/solidus-ai-tech/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2D060Ef4d6BF7f9e5edDe373Ab735513c0e4F944/logo.png b/blockchains/smartchain/assets/0x2D060Ef4d6BF7f9e5edDe373Ab735513c0e4F944/logo.png new file mode 100644 index 0000000000000..5e3bf6cc275a1 Binary files /dev/null and b/blockchains/smartchain/assets/0x2D060Ef4d6BF7f9e5edDe373Ab735513c0e4F944/logo.png differ diff --git a/blockchains/smartchain/assets/0x2D7A47908d817dd359f9aBA7FEaA89c92a289c7E/info.json b/blockchains/smartchain/assets/0x2D7A47908d817dd359f9aBA7FEaA89c92a289c7E/info.json index a0c398daaeb45..62220a866d474 100644 --- a/blockchains/smartchain/assets/0x2D7A47908d817dd359f9aBA7FEaA89c92a289c7E/info.json +++ b/blockchains/smartchain/assets/0x2D7A47908d817dd359f9aBA7FEaA89c92a289c7E/info.json @@ -18,8 +18,8 @@ "url": "https://coingecko.com/en/coins/lenda" }, { - "name": "twitter", - "url": "https://twitter.com/LendaFinance" + "name": "x", + "url": "https://x.com/LendaFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x2D81ed6edee72d454a5baF51e40704e8c377DB2A/info.json b/blockchains/smartchain/assets/0x2D81ed6edee72d454a5baF51e40704e8c377DB2A/info.json index 69bdff29c6ac8..b88919360c904 100644 --- a/blockchains/smartchain/assets/0x2D81ed6edee72d454a5baF51e40704e8c377DB2A/info.json +++ b/blockchains/smartchain/assets/0x2D81ed6edee72d454a5baF51e40704e8c377DB2A/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/Fomodota_BSC_EN" }, { - "name": "twitter", - "url": "https://twitter.com/FomoDOTA_BSC" + "name": "x", + "url": "https://x.com/FomoDOTA_BSC" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2D8269Dae518e78D95110dbFADf1fb479b8152e7/info.json b/blockchains/smartchain/assets/0x2D8269Dae518e78D95110dbFADf1fb479b8152e7/info.json new file mode 100644 index 0000000000000..aaa740e23362d --- /dev/null +++ b/blockchains/smartchain/assets/0x2D8269Dae518e78D95110dbFADf1fb479b8152e7/info.json @@ -0,0 +1,36 @@ +{ + "name": "GCCOIN", + "website": "https://www.gccoin.io/", + "description": "GCCoin aims to bring the excitement of cryptocurrency to users worldwide. With GCCoin, you can buy and sell over 400+ cryptocurrencies, send funds globally within seconds, and enjoy peer-to-peer transactions in your local currency. Our mission is to create a decentralized ecosystem that becomes the number one crypto exchange, ensuring seamless and secure transactions.", + "explorer": "https://bscscan.com/token/0x2d8269dae518e78d95110dbfadf1fb479b8152e7", + "type": "BEP20", + "symbol": "GCC", + "decimals": 9, + "status": "active", + "id": "0x2D8269Dae518e78D95110dbFADf1fb479b8152e7", + "tags": [ + "dapp" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/thegccoin" + }, + { + "name": "x", + "url": "https://x.com/theGCCOIN" + }, + { + "name": "whitepaper", + "url": "https://gccoin-whitepaper.gitbook.io/gccoin-whitepaper/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gccoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gccoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2D8269Dae518e78D95110dbFADf1fb479b8152e7/logo.png b/blockchains/smartchain/assets/0x2D8269Dae518e78D95110dbFADf1fb479b8152e7/logo.png new file mode 100644 index 0000000000000..a78838d3d24f6 Binary files /dev/null and b/blockchains/smartchain/assets/0x2D8269Dae518e78D95110dbFADf1fb479b8152e7/logo.png differ diff --git a/blockchains/smartchain/assets/0x2D862c9FC46608d7ff83293cEB83330D6135BE5E/info.json b/blockchains/smartchain/assets/0x2D862c9FC46608d7ff83293cEB83330D6135BE5E/info.json index ce3c470f44019..a43ab0e4af21c 100644 --- a/blockchains/smartchain/assets/0x2D862c9FC46608d7ff83293cEB83330D6135BE5E/info.json +++ b/blockchains/smartchain/assets/0x2D862c9FC46608d7ff83293cEB83330D6135BE5E/info.json @@ -10,8 +10,8 @@ "id": "0x2D862c9FC46608d7ff83293cEB83330D6135BE5E", "links": [ { - "name": "twitter", - "url": "https://twitter.com/projectfalconx" + "name": "x", + "url": "https://x.com/projectfalconx" }, { "name": "youtube", diff --git a/blockchains/smartchain/assets/0x2E51b6f3181b342d098B1a939Ae1944ED6768fd4/info.json b/blockchains/smartchain/assets/0x2E51b6f3181b342d098B1a939Ae1944ED6768fd4/info.json index c9f6bf4895f39..4f654b4c04c35 100644 --- a/blockchains/smartchain/assets/0x2E51b6f3181b342d098B1a939Ae1944ED6768fd4/info.json +++ b/blockchains/smartchain/assets/0x2E51b6f3181b342d098B1a939Ae1944ED6768fd4/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/DemonFinanceCommunity" }, { - "name": "twitter", - "url": "https://twitter.com/DemonEcosystem" + "name": "x", + "url": "https://x.com/DemonEcosystem" } ], "tags": [ @@ -23,4 +23,4 @@ "nft", "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2E72393A57287b1A09857Db589B27bB0fd499922/info.json b/blockchains/smartchain/assets/0x2E72393A57287b1A09857Db589B27bB0fd499922/info.json new file mode 100644 index 0000000000000..bc1300b4ac47f --- /dev/null +++ b/blockchains/smartchain/assets/0x2E72393A57287b1A09857Db589B27bB0fd499922/info.json @@ -0,0 +1,21 @@ +{ + "name": "Happy Cat", + "type": "BEP20", + "symbol": "HAPPY", + "decimals": 18, + "website": "https://happycatonsol.com/", + "description": "Happy Cat refers to a viral video of a cat jumping behind a glass door. First appearing in 2015, versions of the clip have appeared on TikTok and YouTube, where it has been paired with the Happy Happy Happy sound effect and used in various edits and exploitables, often paired with other cats", + "explorer": "https://bscscan.com/token/0x2E72393A57287b1A09857Db589B27bB0fd499922", + "status": "active", + "id": "0x2E72393A57287b1A09857Db589B27bB0fd499922", + "links": [ + { + "name": "x", + "url": "https://x.com/HappyCatArcade" + }, + { + "name": "telegram", + "url": "https://t.me/happycatchat" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2E72393A57287b1A09857Db589B27bB0fd499922/logo.png b/blockchains/smartchain/assets/0x2E72393A57287b1A09857Db589B27bB0fd499922/logo.png new file mode 100644 index 0000000000000..900a1f108b752 Binary files /dev/null and b/blockchains/smartchain/assets/0x2E72393A57287b1A09857Db589B27bB0fd499922/logo.png differ diff --git a/blockchains/smartchain/assets/0x2E8138054D64917703Af28D81629499318a047FA/info.json b/blockchains/smartchain/assets/0x2E8138054D64917703Af28D81629499318a047FA/info.json new file mode 100644 index 0000000000000..2caf4655f0e69 --- /dev/null +++ b/blockchains/smartchain/assets/0x2E8138054D64917703Af28D81629499318a047FA/info.json @@ -0,0 +1,41 @@ +{ + "name": "Apex Token", + "type": "BEP20", + "symbol": "APX", + "decimals": 18, + "website": "https://apextoken.io/", + "description": "A Token on mission to become a Crypto Index on the market.ApexToken is the World’s 1st Multi Crypto Trading Platform That Offers Guarnteed ROI. A cryptocurrency investment firm that manages portfolios for its clients, providing them with exposure to a diversified range of cryptocurrencies.", + "explorer": "https://bscscan.com/token/0x2E8138054D64917703Af28D81629499318a047FA", + "status": "active", + "id": "0x2E8138054D64917703Af28D81629499318a047FA", + "links": [ + { + "name": "x", + "url": "https://x.com/ApexToken" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC4yoDCTSkKuDExNYP-ospyg" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/apextoken/" + }, + { + "name": "whitepaper", + "url": "https://apextoken.io/whitepaper.pdf" + }, + { + "name": "source_code", + "url": "https://bscscan.com/token/0x2e8138054d64917703af28d81629499318a047fa#code#L1" + }, + { + "name": "docs", + "url": "https://dessertswap.finance/audits/APX-BSC-AUDIT-38616895.pdf" + } + ], + "tags": [ + "defi", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2E8138054D64917703Af28D81629499318a047FA/logo.png b/blockchains/smartchain/assets/0x2E8138054D64917703Af28D81629499318a047FA/logo.png new file mode 100644 index 0000000000000..e1129be81c260 Binary files /dev/null and b/blockchains/smartchain/assets/0x2E8138054D64917703Af28D81629499318a047FA/logo.png differ diff --git a/blockchains/smartchain/assets/0x2EED4682197834708c0ea8D11D683440Bbe104d1/info.json b/blockchains/smartchain/assets/0x2EED4682197834708c0ea8D11D683440Bbe104d1/info.json index b8ab637b879b4..c36cec09383c5 100644 --- a/blockchains/smartchain/assets/0x2EED4682197834708c0ea8D11D683440Bbe104d1/info.json +++ b/blockchains/smartchain/assets/0x2EED4682197834708c0ea8D11D683440Bbe104d1/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/naftydiscussions" }, { - "name": "twitter", - "url": "https://twitter.com/naftyofficial" + "name": "x", + "url": "https://x.com/naftyofficial" }, { "name": "whitepaper", diff --git a/blockchains/smartchain/assets/0x2F4e9c97aAFFD67D98A640062d90e355B4a1C539/info.json b/blockchains/smartchain/assets/0x2F4e9c97aAFFD67D98A640062d90e355B4a1C539/info.json index 823f26a447e90..0ba26a9594689 100644 --- a/blockchains/smartchain/assets/0x2F4e9c97aAFFD67D98A640062d90e355B4a1C539/info.json +++ b/blockchains/smartchain/assets/0x2F4e9c97aAFFD67D98A640062d90e355B4a1C539/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/afrostarcommunity" }, { - "name": "twitter", - "url": "https://twitter.com/afrostarcrypto" + "name": "x", + "url": "https://x.com/afrostarcrypto" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x2FA5dAF6Fe0708fBD63b1A7D1592577284f52256/info.json b/blockchains/smartchain/assets/0x2FA5dAF6Fe0708fBD63b1A7D1592577284f52256/info.json index 036b9352ea2da..4fe3be48d3497 100644 --- a/blockchains/smartchain/assets/0x2FA5dAF6Fe0708fBD63b1A7D1592577284f52256/info.json +++ b/blockchains/smartchain/assets/0x2FA5dAF6Fe0708fBD63b1A7D1592577284f52256/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/orgs/eucrypt" }, { - "name": "twitter", - "url": "https://twitter.com/unmarshal" + "name": "x", + "url": "https://x.com/unmarshal" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x2FFEE7b4DF74F7C6508A4Af4D6D91058dA5420D0/info.json b/blockchains/smartchain/assets/0x2FFEE7b4DF74F7C6508A4Af4D6D91058dA5420D0/info.json index 1a08c8752c1b4..3e010c07c180f 100644 --- a/blockchains/smartchain/assets/0x2FFEE7b4DF74F7C6508A4Af4D6D91058dA5420D0/info.json +++ b/blockchains/smartchain/assets/0x2FFEE7b4DF74F7C6508A4Af4D6D91058dA5420D0/info.json @@ -10,8 +10,8 @@ "id": "0x2FFEE7b4DF74F7C6508A4Af4D6D91058dA5420D0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/chaincadebsc" + "name": "x", + "url": "https://x.com/chaincadebsc" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x2Ff8d8CAE3a9633285c60150099bAd25C9b4E5d9/info.json b/blockchains/smartchain/assets/0x2Ff8d8CAE3a9633285c60150099bAd25C9b4E5d9/info.json new file mode 100644 index 0000000000000..d4842b4b282c4 --- /dev/null +++ b/blockchains/smartchain/assets/0x2Ff8d8CAE3a9633285c60150099bAd25C9b4E5d9/info.json @@ -0,0 +1,17 @@ +{ + "name": "AICZ", + "symbol": "AICZ", + "website": "https://www.artificialcz.com", + "description": "I am Artificial CZ, first AI Agent on BSC. Buidling AICZ.", + "explorer": "https://bscscan.com/token/0x2ff8d8cae3a9633285c60150099bad25c9b4e5d9", + "decimals": 18, + "status": "active", + "id": "0x2Ff8d8CAE3a9633285c60150099bAd25C9b4E5d9", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/kol4u_xyz" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2Ff8d8CAE3a9633285c60150099bAd25C9b4E5d9/logo.png b/blockchains/smartchain/assets/0x2Ff8d8CAE3a9633285c60150099bAd25C9b4E5d9/logo.png new file mode 100644 index 0000000000000..a1c4820154851 Binary files /dev/null and b/blockchains/smartchain/assets/0x2Ff8d8CAE3a9633285c60150099bAd25C9b4E5d9/logo.png differ diff --git a/blockchains/smartchain/assets/0x2a2cD8b1F69EB9dda5d703b3498d97080C2F194F/info.json b/blockchains/smartchain/assets/0x2a2cD8b1F69EB9dda5d703b3498d97080C2F194F/info.json index 12887abd7cdf1..b040b6e54ead7 100644 --- a/blockchains/smartchain/assets/0x2a2cD8b1F69EB9dda5d703b3498d97080C2F194F/info.json +++ b/blockchains/smartchain/assets/0x2a2cD8b1F69EB9dda5d703b3498d97080C2F194F/info.json @@ -10,8 +10,8 @@ "id": "0x2a2cD8b1F69EB9dda5d703b3498d97080C2F194F", "links": [ { - "name": "twitter", - "url": "https://twitter.com/corgidogeestate" + "name": "x", + "url": "https://x.com/corgidogeestate" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x2a5dFE9EDd6D1431eecEA70cBb1635Ba88347BaD/info.json b/blockchains/smartchain/assets/0x2a5dFE9EDd6D1431eecEA70cBb1635Ba88347BaD/info.json index 4aa141c63a079..976bdd37ee645 100644 --- a/blockchains/smartchain/assets/0x2a5dFE9EDd6D1431eecEA70cBb1635Ba88347BaD/info.json +++ b/blockchains/smartchain/assets/0x2a5dFE9EDd6D1431eecEA70cBb1635Ba88347BaD/info.json @@ -10,8 +10,8 @@ "id": "0x2a5dFE9EDd6D1431eecEA70cBb1635Ba88347BaD", "links": [ { - "name": "twitter", - "url": "https://twitter.com/frzswap" + "name": "x", + "url": "https://x.com/frzswap" }, { "name": "github", @@ -37,4 +37,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2a5eB92f6a410AC0BB38D92C13DA934bD68EF24E/info.json b/blockchains/smartchain/assets/0x2a5eB92f6a410AC0BB38D92C13DA934bD68EF24E/info.json index a82d1c1142794..548b8ed142a0d 100644 --- a/blockchains/smartchain/assets/0x2a5eB92f6a410AC0BB38D92C13DA934bD68EF24E/info.json +++ b/blockchains/smartchain/assets/0x2a5eB92f6a410AC0BB38D92C13DA934bD68EF24E/info.json @@ -4,8 +4,8 @@ "description": "World of Tiny Titans. Tiny Titans — collectable & tradeable NFTs on BSC which you can train, level and earn for play.", "links": [ { - "name": "twitter", - "url": "https://twitter.com/RealTinyTitans" + "name": "x", + "url": "https://x.com/RealTinyTitans" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0x2a900573082c58053377E54642038Fa46f19A8A2/info.json b/blockchains/smartchain/assets/0x2a900573082c58053377E54642038Fa46f19A8A2/info.json new file mode 100644 index 0000000000000..8577a06d04030 --- /dev/null +++ b/blockchains/smartchain/assets/0x2a900573082c58053377E54642038Fa46f19A8A2/info.json @@ -0,0 +1,14 @@ +{ + "name": "RIKO", + "type": "BEP20", + "symbol": "RIKO", + "decimals": 18, + "website": "https://rikotoken.io/", + "description": "So, one day, fun met courage, and that's how Riko, meme fearless pet, was born.", + "explorer": "https://bscscan.com/token/0x2a900573082c58053377E54642038Fa46f19A8A2", + "status": "active", + "id": "0x2a900573082c58053377E54642038Fa46f19A8A2", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2a900573082c58053377E54642038Fa46f19A8A2/logo.png b/blockchains/smartchain/assets/0x2a900573082c58053377E54642038Fa46f19A8A2/logo.png new file mode 100644 index 0000000000000..fa38281dd791f Binary files /dev/null and b/blockchains/smartchain/assets/0x2a900573082c58053377E54642038Fa46f19A8A2/logo.png differ diff --git a/blockchains/smartchain/assets/0x2aB90FBb649bA3DDD4269764eb2975d8F32b7b5a/info.json b/blockchains/smartchain/assets/0x2aB90FBb649bA3DDD4269764eb2975d8F32b7b5a/info.json index a347907a01d45..5f5cc8dc15e18 100644 --- a/blockchains/smartchain/assets/0x2aB90FBb649bA3DDD4269764eb2975d8F32b7b5a/info.json +++ b/blockchains/smartchain/assets/0x2aB90FBb649bA3DDD4269764eb2975d8F32b7b5a/info.json @@ -10,8 +10,8 @@ "id": "0x2aB90FBb649bA3DDD4269764eb2975d8F32b7b5a", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SafeBankToken" + "name": "x", + "url": "https://x.com/SafeBankToken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x2ad7F18DcFA131e33411770A9c6c4fe49b187Bc2/info.json b/blockchains/smartchain/assets/0x2ad7F18DcFA131e33411770A9c6c4fe49b187Bc2/info.json index fe5b87b7d8b2e..80234c0ac435c 100644 --- a/blockchains/smartchain/assets/0x2ad7F18DcFA131e33411770A9c6c4fe49b187Bc2/info.json +++ b/blockchains/smartchain/assets/0x2ad7F18DcFA131e33411770A9c6c4fe49b187Bc2/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/MetaUFO_Channel" }, { - "name": "twitter", - "url": "https://twitter.com/Meta_UFO" + "name": "x", + "url": "https://x.com/Meta_UFO" }, { "name": "whitepaper", @@ -37,4 +37,4 @@ "synthetics", "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2b1d5cDeCC356530a746C5754231EfaEAca64022/info.json b/blockchains/smartchain/assets/0x2b1d5cDeCC356530a746C5754231EfaEAca64022/info.json new file mode 100644 index 0000000000000..d55847a15f2e3 --- /dev/null +++ b/blockchains/smartchain/assets/0x2b1d5cDeCC356530a746C5754231EfaEAca64022/info.json @@ -0,0 +1,24 @@ +{ + "name": "Petrobras (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "PBRon is the Ondo Tokenized version of Petrobras, giving tokenholders economic exposure similar to holding PBR and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x2b1d5cdecc356530a746c5754231efaeaca64022", + "type": "BEP20", + "symbol": "PBRon", + "decimals": 18, + "status": "active", + "id": "0x2b1d5cDeCC356530a746C5754231EfaEAca64022", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/petrobras-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2b1d5cDeCC356530a746C5754231EfaEAca64022/logo.png b/blockchains/smartchain/assets/0x2b1d5cDeCC356530a746C5754231EfaEAca64022/logo.png new file mode 100644 index 0000000000000..32afb4710680c Binary files /dev/null and b/blockchains/smartchain/assets/0x2b1d5cDeCC356530a746C5754231EfaEAca64022/logo.png differ diff --git a/blockchains/smartchain/assets/0x2b31b83D2a960d648e9c8d3B84dF5452c80aB947/info.json b/blockchains/smartchain/assets/0x2b31b83D2a960d648e9c8d3B84dF5452c80aB947/info.json index 819d48c7e9eaa..e9c3c42891c79 100644 --- a/blockchains/smartchain/assets/0x2b31b83D2a960d648e9c8d3B84dF5452c80aB947/info.json +++ b/blockchains/smartchain/assets/0x2b31b83D2a960d648e9c8d3B84dF5452c80aB947/info.json @@ -10,8 +10,8 @@ "id": "0x2b31b83D2a960d648e9c8d3B84dF5452c80aB947", "links": [ { - "name": "twitter", - "url": "https://twitter.com/smdcoinofficial" + "name": "x", + "url": "https://x.com/smdcoinofficial" }, { "name": "whitepaper", diff --git a/blockchains/smartchain/assets/0x2bF4BE7C4520C41d012EB09a034179E03b898534/info.json b/blockchains/smartchain/assets/0x2bF4BE7C4520C41d012EB09a034179E03b898534/info.json index c400938d67238..be0850eb0d4c1 100644 --- a/blockchains/smartchain/assets/0x2bF4BE7C4520C41d012EB09a034179E03b898534/info.json +++ b/blockchains/smartchain/assets/0x2bF4BE7C4520C41d012EB09a034179E03b898534/info.json @@ -10,8 +10,8 @@ "id": "0x2bF4BE7C4520C41d012EB09a034179E03b898534", "links": [ { - "name": "twitter", - "url": "https://twitter.com/asixplusNFT" + "name": "x", + "url": "https://x.com/asixplusNFT" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x2c8368f8F474Ed9aF49b87eAc77061BEb986c2f1/info.json b/blockchains/smartchain/assets/0x2c8368f8F474Ed9aF49b87eAc77061BEb986c2f1/info.json index ad3d91cc410c1..cadb6b044a1df 100644 --- a/blockchains/smartchain/assets/0x2c8368f8F474Ed9aF49b87eAc77061BEb986c2f1/info.json +++ b/blockchains/smartchain/assets/0x2c8368f8F474Ed9aF49b87eAc77061BEb986c2f1/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Leonicornswap" }, { - "name": "twitter", - "url": "https://twitter.com/swapleonicorn" + "name": "x", + "url": "https://x.com/swapleonicorn" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x2cA25319E2E63719F87221D8bF3646F8F5dE5DED/info.json b/blockchains/smartchain/assets/0x2cA25319E2E63719F87221D8bF3646F8F5dE5DED/info.json index 34587fcf22177..75f91d4aa130b 100644 --- a/blockchains/smartchain/assets/0x2cA25319E2E63719F87221D8bF3646F8F5dE5DED/info.json +++ b/blockchains/smartchain/assets/0x2cA25319E2E63719F87221D8bF3646F8F5dE5DED/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/elon-goat/" }, { - "name": "twitter", - "url": "https://twitter.com/elongoattoken?s=21" + "name": "x", + "url": "https://x.com/elongoattoken?s=21" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x2cD96e8C3FF6b5E01169F6E3b61D28204E7810Bb/info.json b/blockchains/smartchain/assets/0x2cD96e8C3FF6b5E01169F6E3b61D28204E7810Bb/info.json index edfc2a694366b..9ac9fe97a2956 100644 --- a/blockchains/smartchain/assets/0x2cD96e8C3FF6b5E01169F6E3b61D28204E7810Bb/info.json +++ b/blockchains/smartchain/assets/0x2cD96e8C3FF6b5E01169F6E3b61D28204E7810Bb/info.json @@ -10,8 +10,8 @@ "id": "0x2cD96e8C3FF6b5E01169F6E3b61D28204E7810Bb", "links": [ { - "name": "twitter", - "url": "https://twitter.com/luckyblockcoin" + "name": "x", + "url": "https://x.com/luckyblockcoin" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x2cc26dd730F548dc4ac291ae7D84a0C96980d2cB/info.json b/blockchains/smartchain/assets/0x2cc26dd730F548dc4ac291ae7D84a0C96980d2cB/info.json index 75a241295ea03..ce07c464c107f 100644 --- a/blockchains/smartchain/assets/0x2cc26dd730F548dc4ac291ae7D84a0C96980d2cB/info.json +++ b/blockchains/smartchain/assets/0x2cc26dd730F548dc4ac291ae7D84a0C96980d2cB/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/pizzafinancebsc" }, { - "name": "twitter", - "url": "https://twitter.com/Pizza_Finance" + "name": "x", + "url": "https://x.com/Pizza_Finance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x2cd2664Ce5639e46c6a3125257361e01d0213657/info.json b/blockchains/smartchain/assets/0x2cd2664Ce5639e46c6a3125257361e01d0213657/info.json index 064339bb71c27..46754f45fdebd 100644 --- a/blockchains/smartchain/assets/0x2cd2664Ce5639e46c6a3125257361e01d0213657/info.json +++ b/blockchains/smartchain/assets/0x2cd2664Ce5639e46c6a3125257361e01d0213657/info.json @@ -17,8 +17,8 @@ "url": "https://uselesscrypto.com/" }, { - "name": "twitter", - "url": "https://twitter.com/uselesscrypto" + "name": "x", + "url": "https://x.com/uselesscrypto" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x2d3bfaDF9BC94E3Ab796029A030e863F1898aA06/info.json b/blockchains/smartchain/assets/0x2d3bfaDF9BC94E3Ab796029A030e863F1898aA06/info.json index a293c77587074..de89e20c22326 100644 --- a/blockchains/smartchain/assets/0x2d3bfaDF9BC94E3Ab796029A030e863F1898aA06/info.json +++ b/blockchains/smartchain/assets/0x2d3bfaDF9BC94E3Ab796029A030e863F1898aA06/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/CreamFi" }, { - "name": "twitter", - "url": "https://twitter.com/CreamdotFinance" + "name": "x", + "url": "https://x.com/CreamdotFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x2daFA4732c8c1b25701a33B05F10f437F9599326/info.json b/blockchains/smartchain/assets/0x2daFA4732c8c1b25701a33B05F10f437F9599326/info.json new file mode 100644 index 0000000000000..e370f300928e9 --- /dev/null +++ b/blockchains/smartchain/assets/0x2daFA4732c8c1b25701a33B05F10f437F9599326/info.json @@ -0,0 +1,20 @@ +{ + "name": "iShares 0-3 Month Treasury Bond ETF xStock", + "type": "BEP20", + "symbol": "SGOVx", + "decimals": 18, + "description": "iShares 0-3 Month Treasury Bond ETF xStock (SGOVx) is a tracker certificate issued as a freely transferable token on selected blockchains. SGOVx tracks the price of iShares 0-3 Month Treasury Bond ETF. SGOVx is designed to give eligible investors regulatory-compliant access to the stock price of iShares 0-3 Month Treasury Bond ETF, whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x2daFA4732c8c1b25701a33B05F10f437F9599326", + "status": "active", + "id": "0x2daFA4732c8c1b25701a33B05F10f437F9599326", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2daFA4732c8c1b25701a33B05F10f437F9599326/logo.png b/blockchains/smartchain/assets/0x2daFA4732c8c1b25701a33B05F10f437F9599326/logo.png new file mode 100644 index 0000000000000..55387f0905b85 Binary files /dev/null and b/blockchains/smartchain/assets/0x2daFA4732c8c1b25701a33B05F10f437F9599326/logo.png differ diff --git a/blockchains/smartchain/assets/0x2dfF88A56767223A5529eA5960Da7A3F5f766406/info.json b/blockchains/smartchain/assets/0x2dfF88A56767223A5529eA5960Da7A3F5f766406/info.json index d00ad5017bbbc..14a008db7410f 100644 --- a/blockchains/smartchain/assets/0x2dfF88A56767223A5529eA5960Da7A3F5f766406/info.json +++ b/blockchains/smartchain/assets/0x2dfF88A56767223A5529eA5960Da7A3F5f766406/info.json @@ -10,8 +10,8 @@ "status": "active", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SpaceIDProtocol" + "name": "x", + "url": "https://x.com/SpaceIDProtocol" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x2e3154B48CD831cAd330253a39A5b3c8B4614444/info.json b/blockchains/smartchain/assets/0x2e3154B48CD831cAd330253a39A5b3c8B4614444/info.json new file mode 100644 index 0000000000000..db0ac00939166 --- /dev/null +++ b/blockchains/smartchain/assets/0x2e3154B48CD831cAd330253a39A5b3c8B4614444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDKG", + "type": "BEP20", + "symbol": "FAKE USDKG", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x2e3154B48CD831cAd330253a39A5b3c8B4614444", + "explorer": "https://bscscan.com/token/0x2e3154B48CD831cAd330253a39A5b3c8B4614444", + "status": "spam", + "id": "0x2e3154B48CD831cAd330253a39A5b3c8B4614444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2e42C9EAc96833C6e16Dc71c743cECC114CCD7e3/info.json b/blockchains/smartchain/assets/0x2e42C9EAc96833C6e16Dc71c743cECC114CCD7e3/info.json index da33084735a7b..74d915727fce7 100644 --- a/blockchains/smartchain/assets/0x2e42C9EAc96833C6e16Dc71c743cECC114CCD7e3/info.json +++ b/blockchains/smartchain/assets/0x2e42C9EAc96833C6e16Dc71c743cECC114CCD7e3/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/metacash/" }, { - "name": "twitter", - "url": "https://twitter.com/MetaCashBSC" + "name": "x", + "url": "https://x.com/MetaCashBSC" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x2e53414853f058A9BC14E052431008483bD85B4c/info.json b/blockchains/smartchain/assets/0x2e53414853f058A9BC14E052431008483bD85B4c/info.json new file mode 100644 index 0000000000000..43c3197f18838 --- /dev/null +++ b/blockchains/smartchain/assets/0x2e53414853f058A9BC14E052431008483bD85B4c/info.json @@ -0,0 +1,48 @@ +{ + "name": "Grok", + "type": "BEP20", + "symbol": "GROK", + "decimals": 9, + "website": "https://grokx.codes", + "description": "Grok and GPT-4 belong to a class of AI models known as Large Language Models. GROK improves model alignment - the ability to follow user intentions while also making it more truthful and generating less offensive or dangerous output.", + "explorer": "https://bscscan.com/token/0x2e53414853f058a9bc14e052431008483bd85b4c", + "status": "active", + "id": "0x2e53414853f058A9BC14E052431008483bD85B4c", + "links": [ + { + "name": "x", + "url": "https://x.com/grok_codes" + }, + { + "name": "github", + "url": "https://github.com/grokxcodes" + }, + { + "name": "telegram", + "url": "https://t.me/grok_intl" + }, + { + "name": "source_code", + "url": "https://bscscan.com/token/0x2e53414853f058a9bc14e052431008483bd85b4c#code" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/grok-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/grok-codes" + }, + { + "name": "docs", + "url": "https://doc.grokx.codes/" + }, + { + "name": "medium", + "url": "https://medium.com/@grok_grok" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2e53414853f058A9BC14E052431008483bD85B4c/logo.png b/blockchains/smartchain/assets/0x2e53414853f058A9BC14E052431008483bD85B4c/logo.png new file mode 100644 index 0000000000000..3b03b1af2da70 Binary files /dev/null and b/blockchains/smartchain/assets/0x2e53414853f058A9BC14E052431008483bD85B4c/logo.png differ diff --git a/blockchains/smartchain/assets/0x2e74Ee4fc4466d0883eF5E12A0Ce344BFe15BE8D/info.json b/blockchains/smartchain/assets/0x2e74Ee4fc4466d0883eF5E12A0Ce344BFe15BE8D/info.json index cdcee2d70c39b..4a819831e2cff 100644 --- a/blockchains/smartchain/assets/0x2e74Ee4fc4466d0883eF5E12A0Ce344BFe15BE8D/info.json +++ b/blockchains/smartchain/assets/0x2e74Ee4fc4466d0883eF5E12A0Ce344BFe15BE8D/info.json @@ -10,8 +10,8 @@ "id": "0x2e74Ee4fc4466d0883eF5E12A0Ce344BFe15BE8D", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PumpETHToken" + "name": "x", + "url": "https://x.com/PumpETHToken" }, { "name": "coinmarketcap", @@ -22,4 +22,4 @@ "url": "https://coingecko.com/en/coins/pumpeth" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2e8799f0A26d8A9f37a0b4747Fa534f039C2d234/info.json b/blockchains/smartchain/assets/0x2e8799f0A26d8A9f37a0b4747Fa534f039C2d234/info.json index 2895c20c450ae..7338ca46bea38 100644 --- a/blockchains/smartchain/assets/0x2e8799f0A26d8A9f37a0b4747Fa534f039C2d234/info.json +++ b/blockchains/smartchain/assets/0x2e8799f0A26d8A9f37a0b4747Fa534f039C2d234/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/birbdev" }, { - "name": "twitter", - "url": "https://twitter.com/BirbDefi" + "name": "x", + "url": "https://x.com/BirbDefi" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x2eD9a5C8C13b93955103B9a7C167B67Ef4d568a3/info.json b/blockchains/smartchain/assets/0x2eD9a5C8C13b93955103B9a7C167B67Ef4d568a3/info.json new file mode 100644 index 0000000000000..1c5670b3f2e09 --- /dev/null +++ b/blockchains/smartchain/assets/0x2eD9a5C8C13b93955103B9a7C167B67Ef4d568a3/info.json @@ -0,0 +1,25 @@ +{ + "name": "Mask Network", + "website": "https://mask.io", + "description": "The portal to the new, open internet.", + "explorer": "https://bscscan.com/token/0x2ed9a5c8c13b93955103b9a7c167b67ef4d568a3", + "type": "BEP20", + "symbol": "MASK", + "decimals": 18, + "status": "active", + "id": "0x2eD9a5C8C13b93955103B9a7C167B67Ef4d568a3", + "links": [ + { + "name": "github", + "url": "https://github.com/DimensionDev/Maskbook" + }, + { + "name": "x", + "url": "https://x.com/realmaskbook" + }, + { + "name": "facebook", + "url": "https://facebook.com/masknetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2eD9a5C8C13b93955103B9a7C167B67Ef4d568a3/logo.png b/blockchains/smartchain/assets/0x2eD9a5C8C13b93955103B9a7C167B67Ef4d568a3/logo.png new file mode 100644 index 0000000000000..fed5dfd1e8a2a Binary files /dev/null and b/blockchains/smartchain/assets/0x2eD9a5C8C13b93955103B9a7C167B67Ef4d568a3/logo.png differ diff --git a/blockchains/smartchain/assets/0x2ec46EeD30c94caa5979e6A0395Abe824138335f/info.json b/blockchains/smartchain/assets/0x2ec46EeD30c94caa5979e6A0395Abe824138335f/info.json new file mode 100644 index 0000000000000..ea0d521b34b3c --- /dev/null +++ b/blockchains/smartchain/assets/0x2ec46EeD30c94caa5979e6A0395Abe824138335f/info.json @@ -0,0 +1,28 @@ +{ + "name": "Lowe's (Ondo Tokenized)", + "type": "BEP20", + "symbol": "LOWon", + "decimals": 18, + "description": "LOWon is the Ondo Tokenized version of Lowe's, giving tokenholders economic exposure similar to holding LOW and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x2ec46EeD30c94caa5979e6A0395Abe824138335f", + "status": "active", + "id": "0x2ec46EeD30c94caa5979e6A0395Abe824138335f", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/lowe-s-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lowes-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2ec46EeD30c94caa5979e6A0395Abe824138335f/logo.png b/blockchains/smartchain/assets/0x2ec46EeD30c94caa5979e6A0395Abe824138335f/logo.png new file mode 100644 index 0000000000000..925f46763f037 Binary files /dev/null and b/blockchains/smartchain/assets/0x2ec46EeD30c94caa5979e6A0395Abe824138335f/logo.png differ diff --git a/blockchains/smartchain/assets/0x2f053e33bd590830858161d42C67e9E8A9390019/info.json b/blockchains/smartchain/assets/0x2f053e33bd590830858161d42C67e9E8A9390019/info.json index 7e9f045dc62c7..21470fa4947d8 100644 --- a/blockchains/smartchain/assets/0x2f053e33bd590830858161d42C67e9E8A9390019/info.json +++ b/blockchains/smartchain/assets/0x2f053e33bd590830858161d42C67e9E8A9390019/info.json @@ -10,8 +10,8 @@ "id": "0x2f053e33bd590830858161d42C67e9E8A9390019", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ventionapp" + "name": "x", + "url": "https://x.com/ventionapp" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x2f0c6e147974BfbF7Da557b88643D74C324053A2/info.json b/blockchains/smartchain/assets/0x2f0c6e147974BfbF7Da557b88643D74C324053A2/info.json index 28e9d8323b2b0..c074f17a61c14 100644 --- a/blockchains/smartchain/assets/0x2f0c6e147974BfbF7Da557b88643D74C324053A2/info.json +++ b/blockchains/smartchain/assets/0x2f0c6e147974BfbF7Da557b88643D74C324053A2/info.json @@ -10,8 +10,8 @@ "id": "0x2f0c6e147974BfbF7Da557b88643D74C324053A2", "links": [ { - "name": "twitter", - "url": "https://twitter.com/catcoinbsc" + "name": "x", + "url": "https://x.com/catcoinbsc" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x2f499c6DA2C84063BB7e0CB1C478687210cDB615/info.json b/blockchains/smartchain/assets/0x2f499c6DA2C84063BB7e0CB1C478687210cDB615/info.json index 0dd1131dc81b8..40523b521f969 100644 --- a/blockchains/smartchain/assets/0x2f499c6DA2C84063BB7e0CB1C478687210cDB615/info.json +++ b/blockchains/smartchain/assets/0x2f499c6DA2C84063BB7e0CB1C478687210cDB615/info.json @@ -10,8 +10,8 @@ "id": "0x2f499c6DA2C84063BB7e0CB1C478687210cDB615", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Reflex_Finance" + "name": "x", + "url": "https://x.com/Reflex_Finance" }, { "name": "telegram", @@ -45,4 +45,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2f657932E65905eA09c7aacfe898bf79e207c1C0/info.json b/blockchains/smartchain/assets/0x2f657932E65905eA09c7aacfe898bf79e207c1C0/info.json index 98d1c2f4a5ca4..30706f1793f51 100644 --- a/blockchains/smartchain/assets/0x2f657932E65905eA09c7aacfe898bf79e207c1C0/info.json +++ b/blockchains/smartchain/assets/0x2f657932E65905eA09c7aacfe898bf79e207c1C0/info.json @@ -18,8 +18,8 @@ "url": "https://t.me/RoboDoge_Coin" }, { - "name": "twitter", - "url": "https://twitter.com/https://twitter.com/RobodogeC" + "name": "x", + "url": "https://x.com/https://x.com/RobodogeC" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763/info.json b/blockchains/smartchain/assets/0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763/info.json new file mode 100644 index 0000000000000..6fd9e46c265d8 --- /dev/null +++ b/blockchains/smartchain/assets/0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763/info.json @@ -0,0 +1,24 @@ +{ + "name": "Amber tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Amber tokenized stock (xStock) (AMBRX) is a cryptocurrency and operates on the Solana platform. Amber tokenized stock (xStock) has a current supply of 135,999.99999997. The last known price of Amber tokenized stock (xStock) is 4.19760101 USD and is up 0.88 over the last 24 hours. It is currently trading on 1 active market(s) with $0.00 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/amber-xstock.", + "explorer": "https://bscscan.com/token/0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763", + "type": "BEP20", + "symbol": "AMBRX", + "decimals": 18, + "status": "active", + "id": "0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/amber-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763/logo.png b/blockchains/smartchain/assets/0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763/logo.png new file mode 100644 index 0000000000000..e555fa9be0612 Binary files /dev/null and b/blockchains/smartchain/assets/0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763/logo.png differ diff --git a/blockchains/smartchain/assets/0x2fF0B946A6782190C4Fe5D4971CFE79F0b6E4df2/info.json b/blockchains/smartchain/assets/0x2fF0B946A6782190C4Fe5D4971CFE79F0b6E4df2/info.json index 48d300b70110a..5288033dfe7cb 100644 --- a/blockchains/smartchain/assets/0x2fF0B946A6782190C4Fe5D4971CFE79F0b6E4df2/info.json +++ b/blockchains/smartchain/assets/0x2fF0B946A6782190C4Fe5D4971CFE79F0b6E4df2/info.json @@ -10,8 +10,8 @@ "id": "0x2fF0B946A6782190C4Fe5D4971CFE79F0b6E4df2", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MysteriumNet" + "name": "x", + "url": "https://x.com/MysteriumNet" }, { "name": "telegram", @@ -37,4 +37,4 @@ "tags": [ "privacy" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2fF3d0F6990a40261c66E1ff2017aCBc282EB6d0/info.json b/blockchains/smartchain/assets/0x2fF3d0F6990a40261c66E1ff2017aCBc282EB6d0/info.json index 322548ab8eb64..02594058442f0 100644 --- a/blockchains/smartchain/assets/0x2fF3d0F6990a40261c66E1ff2017aCBc282EB6d0/info.json +++ b/blockchains/smartchain/assets/0x2fF3d0F6990a40261c66E1ff2017aCBc282EB6d0/info.json @@ -11,8 +11,8 @@ "id": "0x2fF3d0F6990a40261c66E1ff2017aCBc282EB6d0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VenusProtocol" + "name": "x", + "url": "https://x.com/VenusProtocol" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x2fa6ee42BacF983F050210A1ca42f88686327FC9/info.json b/blockchains/smartchain/assets/0x2fa6ee42BacF983F050210A1ca42f88686327FC9/info.json index 085f7074cc6ac..f3f5839a3dcb7 100644 --- a/blockchains/smartchain/assets/0x2fa6ee42BacF983F050210A1ca42f88686327FC9/info.json +++ b/blockchains/smartchain/assets/0x2fa6ee42BacF983F050210A1ca42f88686327FC9/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/+151I1-uPRDs2Yzg9" }, { - "name": "twitter", - "url": "https://twitter.com/w3dao_bsc?s=11" + "name": "x", + "url": "https://x.com/w3dao_bsc?s=11" } ], "tags": [ diff --git a/blockchains/smartchain/assets/0x2fd6c9B869Dea106730269E13113361b684f843a/info.json b/blockchains/smartchain/assets/0x2fd6c9B869Dea106730269E13113361b684f843a/info.json index 0a9856d2c4f8a..86abd2f296040 100644 --- a/blockchains/smartchain/assets/0x2fd6c9B869Dea106730269E13113361b684f843a/info.json +++ b/blockchains/smartchain/assets/0x2fd6c9B869Dea106730269E13113361b684f843a/info.json @@ -10,8 +10,8 @@ "id": "0x2fd6c9B869Dea106730269E13113361b684f843a", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Chihuahua_bsc" + "name": "x", + "url": "https://x.com/Chihuahua_bsc" }, { "name": "coinmarketcap", @@ -33,4 +33,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3019BF2a2eF8040C242C9a4c5c4BD4C81678b2A1/info.json b/blockchains/smartchain/assets/0x3019BF2a2eF8040C242C9a4c5c4BD4C81678b2A1/info.json index ae820e2a51a2c..6e11839bee473 100644 --- a/blockchains/smartchain/assets/0x3019BF2a2eF8040C242C9a4c5c4BD4C81678b2A1/info.json +++ b/blockchains/smartchain/assets/0x3019BF2a2eF8040C242C9a4c5c4BD4C81678b2A1/info.json @@ -1,5 +1,5 @@ { - "name": "Green Metaverse Token", + "name": "GMT", "type": "BEP20", "symbol": "GMT", "decimals": 8, @@ -14,8 +14,8 @@ "url": "https://reddit.com/r/StepN/" }, { - "name": "twitter", - "url": "https://twitter.com/Stepnofficial" + "name": "x", + "url": "https://x.com/Stepnofficial" }, { "name": "coinmarketcap", @@ -33,4 +33,4 @@ "tags": [ "governance" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3045d1A840364c3657b8Df6c6F86a4359c23472B/info.json b/blockchains/smartchain/assets/0x3045d1A840364c3657b8Df6c6F86a4359c23472B/info.json index 3038634f15dda..f325e5840fb9f 100644 --- a/blockchains/smartchain/assets/0x3045d1A840364c3657b8Df6c6F86a4359c23472B/info.json +++ b/blockchains/smartchain/assets/0x3045d1A840364c3657b8Df6c6F86a4359c23472B/info.json @@ -10,8 +10,8 @@ "id": "0x3045d1A840364c3657b8Df6c6F86a4359c23472B", "links": [ { - "name": "twitter", - "url": "https://twitter.com/orica_io" + "name": "x", + "url": "https://x.com/orica_io" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x307Bc76E3d59ED73886A9cf9360a9286f6281ba7/info.json b/blockchains/smartchain/assets/0x307Bc76E3d59ED73886A9cf9360a9286f6281ba7/info.json new file mode 100644 index 0000000000000..28602cbbee879 --- /dev/null +++ b/blockchains/smartchain/assets/0x307Bc76E3d59ED73886A9cf9360a9286f6281ba7/info.json @@ -0,0 +1,24 @@ +{ + "name": "LimeWire Token", + "website": "https://limewire.com", + "description": "LimeWire, the iconic brand that helped millions of users to disover their favorite music in the early 2000's is back as the first Web3 subscription platform for artists, brands and creators.", + "explorer": "https://bscscan.com/token/0x307Bc76E3d59ED73886A9cf9360a9286f6281ba7", + "symbol": "LMWR", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x307Bc76E3d59ED73886A9cf9360a9286f6281ba7", + "tags": [ + "nft" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/limewire" + }, + { + "name": "telegram", + "url": "https://t.me/limewire" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x307Bc76E3d59ED73886A9cf9360a9286f6281ba7/logo.png b/blockchains/smartchain/assets/0x307Bc76E3d59ED73886A9cf9360a9286f6281ba7/logo.png new file mode 100644 index 0000000000000..686dbf3313261 Binary files /dev/null and b/blockchains/smartchain/assets/0x307Bc76E3d59ED73886A9cf9360a9286f6281ba7/logo.png differ diff --git a/blockchains/smartchain/assets/0x30842a9c941d9DE3AF582c41ad12b11D776ba69e/info.json b/blockchains/smartchain/assets/0x30842a9c941d9DE3AF582c41ad12b11D776ba69e/info.json new file mode 100644 index 0000000000000..666ac5dea1169 --- /dev/null +++ b/blockchains/smartchain/assets/0x30842a9c941d9DE3AF582c41ad12b11D776ba69e/info.json @@ -0,0 +1,21 @@ +{ + "name": "QnA3.AI", + "type": "BEP20", + "symbol": "GPT", + "decimals": 18, + "website": "https://qna3.ai", + "description": "AI-POWERED INSIGHTS COMMUNITY-DRIVEN STRATEGIES", + "explorer": "https://bscscan.com/token/0x30842a9c941d9DE3AF582c41ad12b11D776ba69e", + "status": "active", + "id": "0x30842a9c941d9DE3AF582c41ad12b11D776ba69e", + "links": [ + { + "name": "x", + "url": "https://x.com/qnaweb3" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/qna3ai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x30842a9c941d9DE3AF582c41ad12b11D776ba69e/logo.png b/blockchains/smartchain/assets/0x30842a9c941d9DE3AF582c41ad12b11D776ba69e/logo.png new file mode 100644 index 0000000000000..f16a233feb375 Binary files /dev/null and b/blockchains/smartchain/assets/0x30842a9c941d9DE3AF582c41ad12b11D776ba69e/logo.png differ diff --git a/blockchains/smartchain/assets/0x308FC5CdD559Be5cB62B08A26a4699bBef4a888f/info.json b/blockchains/smartchain/assets/0x308FC5CdD559Be5cB62B08A26a4699bBef4a888f/info.json index 28e1e927b32e8..095a7c87d39ff 100644 --- a/blockchains/smartchain/assets/0x308FC5CdD559Be5cB62B08A26a4699bBef4a888f/info.json +++ b/blockchains/smartchain/assets/0x308FC5CdD559Be5cB62B08A26a4699bBef4a888f/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/DCIP-Finance/" }, { - "name": "twitter", - "url": "https://twitter.com/dcip_finance" + "name": "x", + "url": "https://x.com/dcip_finance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x308bfaeAaC8BDab6e9Fc5Ead8EdCb5f95b0599d9/info.json b/blockchains/smartchain/assets/0x308bfaeAaC8BDab6e9Fc5Ead8EdCb5f95b0599d9/info.json new file mode 100644 index 0000000000000..096a221ead3db --- /dev/null +++ b/blockchains/smartchain/assets/0x308bfaeAaC8BDab6e9Fc5Ead8EdCb5f95b0599d9/info.json @@ -0,0 +1,25 @@ +{ + "name": "Ontology Gas", + "type": "BEP20", + "symbol": "ONG", + "decimals": 9, + "description": "Ontology is a high performance, open source blockchain specializing in digital identity and data. Ontology's infrastructure supports robust cross-chain collaboration and Layer 2 scalability, offering businesses the flexibility to design a blockchain that suits their needs.", + "website": "https://ont.io/", + "explorer": "https://bscscan.com/token/0x308bfaeAaC8BDab6e9Fc5Ead8EdCb5f95b0599d9", + "id": "0x308bfaeAaC8BDab6e9Fc5Ead8EdCb5f95b0599d9", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/OntologyNetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ontology-gas/" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x308bfaeAaC8BDab6e9Fc5Ead8EdCb5f95b0599d9/logo.png b/blockchains/smartchain/assets/0x308bfaeAaC8BDab6e9Fc5Ead8EdCb5f95b0599d9/logo.png new file mode 100644 index 0000000000000..9e9146ba7c733 Binary files /dev/null and b/blockchains/smartchain/assets/0x308bfaeAaC8BDab6e9Fc5Ead8EdCb5f95b0599d9/logo.png differ diff --git a/blockchains/smartchain/assets/0x30938154E2697694F41592C2e48459287dEBe4BF/info.json b/blockchains/smartchain/assets/0x30938154E2697694F41592C2e48459287dEBe4BF/info.json new file mode 100644 index 0000000000000..e25ba356ba4b6 --- /dev/null +++ b/blockchains/smartchain/assets/0x30938154E2697694F41592C2e48459287dEBe4BF/info.json @@ -0,0 +1,24 @@ +{ + "name": "Enphase Energy (Ondo Tokenized)", + "type": "BEP20", + "symbol": "ENPHon", + "decimals": 18, + "description": "ENPHon is the Ondo Tokenized version of Enphase Energy, giving tokenholders economic exposure similar to holding ENPH and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x30938154E2697694F41592C2e48459287dEBe4BF", + "status": "active", + "id": "0x30938154E2697694F41592C2e48459287dEBe4BF", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/enphase-energy-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x30938154E2697694F41592C2e48459287dEBe4BF/logo.png b/blockchains/smartchain/assets/0x30938154E2697694F41592C2e48459287dEBe4BF/logo.png new file mode 100644 index 0000000000000..f043e9e3e3c06 Binary files /dev/null and b/blockchains/smartchain/assets/0x30938154E2697694F41592C2e48459287dEBe4BF/logo.png differ diff --git a/blockchains/smartchain/assets/0x30B5E345C79255101B8af22a19805A6fb96DdEBb/info.json b/blockchains/smartchain/assets/0x30B5E345C79255101B8af22a19805A6fb96DdEBb/info.json new file mode 100644 index 0000000000000..d6bb52271a24e --- /dev/null +++ b/blockchains/smartchain/assets/0x30B5E345C79255101B8af22a19805A6fb96DdEBb/info.json @@ -0,0 +1,25 @@ +{ + "name": "REV3AL", + "website": "https://rev3al.io/", + "description": "REV3AL is a patent-pending, multi-layered cybersecurity and anti-counterfeit technology company with the goal to provide new & dynamic security solutions & to protect digital media (NFTs, avatars, and in-game assets) for creators, artists & users in the Web3 & Blockchain spaces.", + "explorer": "https://bscscan.com/token/0x30B5E345C79255101B8af22a19805A6fb96DdEBb", + "type": "BEP20", + "symbol": "REV3L", + "decimals": 18, + "status": "active", + "id": "0x30B5E345C79255101B8af22a19805A6fb96DdEBb", + "links": [ + { + "name": "x", + "url": "https://x.com/Rev3alTech" + }, + { + "name": "telegram", + "url": "https://t.me/rev3altech" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rev3al/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x30B5E345C79255101B8af22a19805A6fb96DdEBb/logo.png b/blockchains/smartchain/assets/0x30B5E345C79255101B8af22a19805A6fb96DdEBb/logo.png new file mode 100644 index 0000000000000..d65485b25e965 Binary files /dev/null and b/blockchains/smartchain/assets/0x30B5E345C79255101B8af22a19805A6fb96DdEBb/logo.png differ diff --git a/blockchains/smartchain/assets/0x30BD85fD4286c5c9857679F5B188f737B4a7B8C0/info.json b/blockchains/smartchain/assets/0x30BD85fD4286c5c9857679F5B188f737B4a7B8C0/info.json new file mode 100644 index 0000000000000..f6c7230317737 --- /dev/null +++ b/blockchains/smartchain/assets/0x30BD85fD4286c5c9857679F5B188f737B4a7B8C0/info.json @@ -0,0 +1,24 @@ +{ + "name": "Regeneron Pharmaceuticals (Ondo Tokenized)", + "type": "BEP20", + "symbol": "REGNon", + "decimals": 18, + "description": "REGNon is the Ondo Tokenized version of Regeneron Pharmaceuticals, giving tokenholders economic exposure similar to holding REGN and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x30BD85fD4286c5c9857679F5B188f737B4a7B8C0", + "status": "active", + "id": "0x30BD85fD4286c5c9857679F5B188f737B4a7B8C0", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/regeneron-pharmaceuticals-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x30BD85fD4286c5c9857679F5B188f737B4a7B8C0/logo.png b/blockchains/smartchain/assets/0x30BD85fD4286c5c9857679F5B188f737B4a7B8C0/logo.png new file mode 100644 index 0000000000000..ed1647f53abeb Binary files /dev/null and b/blockchains/smartchain/assets/0x30BD85fD4286c5c9857679F5B188f737B4a7B8C0/logo.png differ diff --git a/blockchains/smartchain/assets/0x31045e7023e6c388F9447E632a3f9EaFF90393fa/info.json b/blockchains/smartchain/assets/0x31045e7023e6c388F9447E632a3f9EaFF90393fa/info.json index f71ed95b9676a..5b9c4e6497a91 100644 --- a/blockchains/smartchain/assets/0x31045e7023e6c388F9447E632a3f9EaFF90393fa/info.json +++ b/blockchains/smartchain/assets/0x31045e7023e6c388F9447E632a3f9EaFF90393fa/info.json @@ -14,8 +14,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/safetokenteam" + "name": "x", + "url": "https://x.com/safetokenteam" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x3107C0A1126268CA303f8d99c712392fA596e6D7/info.json b/blockchains/smartchain/assets/0x3107C0A1126268CA303f8d99c712392fA596e6D7/info.json index dd4fce9cacb33..d4b45e1ab0607 100644 --- a/blockchains/smartchain/assets/0x3107C0A1126268CA303f8d99c712392fA596e6D7/info.json +++ b/blockchains/smartchain/assets/0x3107C0A1126268CA303f8d99c712392fA596e6D7/info.json @@ -10,8 +10,8 @@ "id": "0x3107C0A1126268CA303f8d99c712392fA596e6D7", "links": [ { - "name": "twitter", - "url": "https://twitter.com/GXT25075644" + "name": "x", + "url": "https://x.com/GXT25075644" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x31353E2826Cc4402735E55a175a75CE2569B4226/info.json b/blockchains/smartchain/assets/0x31353E2826Cc4402735E55a175a75CE2569B4226/info.json index 3596a78480cf8..8b20d1a628ce6 100644 --- a/blockchains/smartchain/assets/0x31353E2826Cc4402735E55a175a75CE2569B4226/info.json +++ b/blockchains/smartchain/assets/0x31353E2826Cc4402735E55a175a75CE2569B4226/info.json @@ -10,8 +10,8 @@ "id": "0x31353E2826Cc4402735E55a175a75CE2569B4226", "links": [ { - "name": "twitter", - "url": "https://twitter.com/World_Of_Waves" + "name": "x", + "url": "https://x.com/World_Of_Waves" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x31471E0791fCdbE82fbF4C44943255e923F1b794/info.json b/blockchains/smartchain/assets/0x31471E0791fCdbE82fbF4C44943255e923F1b794/info.json index 8cb3c26e13eaa..8893aedfcdf91 100644 --- a/blockchains/smartchain/assets/0x31471E0791fCdbE82fbF4C44943255e923F1b794/info.json +++ b/blockchains/smartchain/assets/0x31471E0791fCdbE82fbF4C44943255e923F1b794/info.json @@ -10,8 +10,8 @@ "id": "0x31471E0791fCdbE82fbF4C44943255e923F1b794", "links": [ { - "name": "twitter", - "url": "https://twitter.com/vs_nft" + "name": "x", + "url": "https://x.com/vs_nft" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x314938c596F5ce31C3f75307d2979338C346D7F2/info.json b/blockchains/smartchain/assets/0x314938c596F5ce31C3f75307d2979338C346D7F2/info.json new file mode 100644 index 0000000000000..8c0296bba8b46 --- /dev/null +++ b/blockchains/smartchain/assets/0x314938c596F5ce31C3f75307d2979338C346D7F2/info.json @@ -0,0 +1,24 @@ +{ + "name": "Bank of America tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Bank of America xStock (BACx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. BACx tracks the price of Bank of America Corporation (the underlying). BACx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Bank of America Corporation, whilst maintaining the benefits of blockchain technology. Bank of America is a leading global financial institution that offers a wide range of banking, investing, asset management, and financial risk management products and services.", + "explorer": "https://bscscan.com/token/0x314938c596F5ce31C3f75307d2979338C346D7F2", + "type": "BEP20", + "symbol": "BACX", + "decimals": 18, + "status": "active", + "id": "0x314938c596F5ce31C3f75307d2979338C346D7F2", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bank-of-america-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x314938c596F5ce31C3f75307d2979338C346D7F2/logo.png b/blockchains/smartchain/assets/0x314938c596F5ce31C3f75307d2979338C346D7F2/logo.png new file mode 100644 index 0000000000000..c358f4e973a1a Binary files /dev/null and b/blockchains/smartchain/assets/0x314938c596F5ce31C3f75307d2979338C346D7F2/logo.png differ diff --git a/blockchains/smartchain/assets/0x315cBF4A431B7Cabc81817a47541549e3a0f122e/info.json b/blockchains/smartchain/assets/0x315cBF4A431B7Cabc81817a47541549e3a0f122e/info.json new file mode 100644 index 0000000000000..b236e758de671 --- /dev/null +++ b/blockchains/smartchain/assets/0x315cBF4A431B7Cabc81817a47541549e3a0f122e/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT Artura", + "type": "BEP20", + "symbol": "HONEYPOT ARA", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x315cBF4A431B7Cabc81817a47541549e3a0f122e", + "explorer": "https://bscscan.com/token/0x315cBF4A431B7Cabc81817a47541549e3a0f122e", + "status": "spam", + "id": "0x315cBF4A431B7Cabc81817a47541549e3a0f122e" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x317bF42b43A394860718266Dec445DCC9FD9dA49/info.json b/blockchains/smartchain/assets/0x317bF42b43A394860718266Dec445DCC9FD9dA49/info.json new file mode 100644 index 0000000000000..02bf1d0af7955 --- /dev/null +++ b/blockchains/smartchain/assets/0x317bF42b43A394860718266Dec445DCC9FD9dA49/info.json @@ -0,0 +1,24 @@ +{ + "name": "JPMorgan Chase (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "JPMon is the Ondo Tokenized version of JPMorgan Chase, giving tokenholders economic exposure similar to holding JPM and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x317bf42b43a394860718266dec445dcc9fd9da49", + "type": "BEP20", + "symbol": "JPMon", + "decimals": 18, + "status": "active", + "id": "0x317bF42b43A394860718266Dec445DCC9FD9dA49", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jpmorgan-chase-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x317bF42b43A394860718266Dec445DCC9FD9dA49/logo.png b/blockchains/smartchain/assets/0x317bF42b43A394860718266Dec445DCC9FD9dA49/logo.png new file mode 100644 index 0000000000000..01ae417470eb0 Binary files /dev/null and b/blockchains/smartchain/assets/0x317bF42b43A394860718266Dec445DCC9FD9dA49/logo.png differ diff --git a/blockchains/smartchain/assets/0x3199A64Bc8aaBDFd9A3937a346CC59c3d81D8a9a/info.json b/blockchains/smartchain/assets/0x3199A64Bc8aaBDFd9A3937a346CC59c3d81D8a9a/info.json new file mode 100644 index 0000000000000..6b1db46e53b18 --- /dev/null +++ b/blockchains/smartchain/assets/0x3199A64Bc8aaBDFd9A3937a346CC59c3d81D8a9a/info.json @@ -0,0 +1,14 @@ +{ + "name": "Mubarakah", + "website": "https://x.com/Mubarakah_CTO", + "description": "Mubarakah - He Yi", + "explorer": "https://bscscan.com/token/0x3199A64Bc8aaBDFd9A3937a346CC59c3d81D8a9a", + "type": "BEP20", + "symbol": "Mubarakah", + "decimals": 18, + "status": "active", + "id": "0x3199A64Bc8aaBDFd9A3937a346CC59c3d81D8a9a", + "tags": [ + "meme" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3199A64Bc8aaBDFd9A3937a346CC59c3d81D8a9a/logo.png b/blockchains/smartchain/assets/0x3199A64Bc8aaBDFd9A3937a346CC59c3d81D8a9a/logo.png new file mode 100644 index 0000000000000..a694f61f1fe9c Binary files /dev/null and b/blockchains/smartchain/assets/0x3199A64Bc8aaBDFd9A3937a346CC59c3d81D8a9a/logo.png differ diff --git a/blockchains/smartchain/assets/0x31A9042dCE0C13975D04d0E9758Cb7B596F0dD43/info.json b/blockchains/smartchain/assets/0x31A9042dCE0C13975D04d0E9758Cb7B596F0dD43/info.json index e7389be265b5e..662c04c46072c 100644 --- a/blockchains/smartchain/assets/0x31A9042dCE0C13975D04d0E9758Cb7B596F0dD43/info.json +++ b/blockchains/smartchain/assets/0x31A9042dCE0C13975D04d0E9758Cb7B596F0dD43/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/Burn1Coin" }, { - "name": "twitter", - "url": "https://twitter.com/Burn1Coin" + "name": "x", + "url": "https://x.com/Burn1Coin" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x31D0a7AdA4d4c131Eb612DB48861211F63e57610/info.json b/blockchains/smartchain/assets/0x31D0a7AdA4d4c131Eb612DB48861211F63e57610/info.json index a13cb9162d218..4031f2efff8b3 100644 --- a/blockchains/smartchain/assets/0x31D0a7AdA4d4c131Eb612DB48861211F63e57610/info.json +++ b/blockchains/smartchain/assets/0x31D0a7AdA4d4c131Eb612DB48861211F63e57610/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/bscstarter" }, { - "name": "twitter", - "url": "https://twitter.com/bscstarter" + "name": "x", + "url": "https://x.com/bscstarter" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x31D6011023D6c7695Efc29bB016830F3F36De40a/info.json b/blockchains/smartchain/assets/0x31D6011023D6c7695Efc29bB016830F3F36De40a/info.json new file mode 100644 index 0000000000000..bac74e435973d --- /dev/null +++ b/blockchains/smartchain/assets/0x31D6011023D6c7695Efc29bB016830F3F36De40a/info.json @@ -0,0 +1,24 @@ +{ + "name": "VanEck Oil Services ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "OIHon", + "decimals": 18, + "description": "OIHon is the Ondo Tokenized version of the VanEck Oil Services ETF, giving tokenholders economic exposure similar to holding OIH and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x31D6011023D6c7695Efc29bB016830F3F36De40a", + "status": "active", + "id": "0x31D6011023D6c7695Efc29bB016830F3F36De40a", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vaneck-oil-services-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x31D6011023D6c7695Efc29bB016830F3F36De40a/logo.png b/blockchains/smartchain/assets/0x31D6011023D6c7695Efc29bB016830F3F36De40a/logo.png new file mode 100644 index 0000000000000..3bdf99e20ccd1 Binary files /dev/null and b/blockchains/smartchain/assets/0x31D6011023D6c7695Efc29bB016830F3F36De40a/logo.png differ diff --git a/blockchains/smartchain/assets/0x31DAbf49E4BC1Af1456c1819cb6A2562154e92F3/info.json b/blockchains/smartchain/assets/0x31DAbf49E4BC1Af1456c1819cb6A2562154e92F3/info.json new file mode 100644 index 0000000000000..ada50b810b280 --- /dev/null +++ b/blockchains/smartchain/assets/0x31DAbf49E4BC1Af1456c1819cb6A2562154e92F3/info.json @@ -0,0 +1,28 @@ +{ + "name": "Home Depot (Ondo Tokenized)", + "type": "BEP20", + "symbol": "HDon", + "decimals": 18, + "description": "HDon is the Ondo Tokenized version of Home Depot, giving tokenholders economic exposure similar to holding HD and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x31DAbf49E4BC1Af1456c1819cb6A2562154e92F3", + "status": "active", + "id": "0x31DAbf49E4BC1Af1456c1819cb6A2562154e92F3", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/home-depot-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/home-depot-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x31DAbf49E4BC1Af1456c1819cb6A2562154e92F3/logo.png b/blockchains/smartchain/assets/0x31DAbf49E4BC1Af1456c1819cb6A2562154e92F3/logo.png new file mode 100644 index 0000000000000..9bbe5934d723a Binary files /dev/null and b/blockchains/smartchain/assets/0x31DAbf49E4BC1Af1456c1819cb6A2562154e92F3/logo.png differ diff --git a/blockchains/smartchain/assets/0x31F0Bc450C12eb62B4c617d4C876f7a66470Fcb3/info.json b/blockchains/smartchain/assets/0x31F0Bc450C12eb62B4c617d4C876f7a66470Fcb3/info.json index d4ffaf4aeedba..ee63db2bb2d30 100644 --- a/blockchains/smartchain/assets/0x31F0Bc450C12eb62B4c617d4C876f7a66470Fcb3/info.json +++ b/blockchains/smartchain/assets/0x31F0Bc450C12eb62B4c617d4C876f7a66470Fcb3/info.json @@ -10,8 +10,8 @@ "id": "0x31F0Bc450C12eb62B4c617d4C876f7a66470Fcb3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/FREEMOONCOIN" + "name": "x", + "url": "https://x.com/FREEMOONCOIN" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x3215f7D921549Bb4a8FD2C93D88021B2902e30d0/info.json b/blockchains/smartchain/assets/0x3215f7D921549Bb4a8FD2C93D88021B2902e30d0/info.json index f2e64f9771b4e..a9b08896e7167 100644 --- a/blockchains/smartchain/assets/0x3215f7D921549Bb4a8FD2C93D88021B2902e30d0/info.json +++ b/blockchains/smartchain/assets/0x3215f7D921549Bb4a8FD2C93D88021B2902e30d0/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/Novaland_group" }, { - "name": "twitter", - "url": "https://twitter.com/Novaland_io" + "name": "x", + "url": "https://x.com/Novaland_io" }, { "name": "telegram_news", @@ -26,4 +26,4 @@ "gamefi", "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3220CCbbC29d727Bde85b7333D31b21e0d6bC6F4/info.json b/blockchains/smartchain/assets/0x3220CCbbC29d727Bde85b7333D31b21e0d6bC6F4/info.json index 44e579173f6ca..7d0194dbd3c52 100644 --- a/blockchains/smartchain/assets/0x3220CCbbC29d727Bde85b7333D31b21e0d6bC6F4/info.json +++ b/blockchains/smartchain/assets/0x3220CCbbC29d727Bde85b7333D31b21e0d6bC6F4/info.json @@ -10,8 +10,8 @@ "id": "0x3220CCbbC29d727Bde85b7333D31b21e0d6bC6F4", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PupDogeCoin" + "name": "x", + "url": "https://x.com/PupDogeCoin" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x323273b8EE5Ae6247b47C38C81dB45E1beF13E6F/info.json b/blockchains/smartchain/assets/0x323273b8EE5Ae6247b47C38C81dB45E1beF13E6F/info.json index a58f0e8f04c43..f86a46e4e0b8b 100644 --- a/blockchains/smartchain/assets/0x323273b8EE5Ae6247b47C38C81dB45E1beF13E6F/info.json +++ b/blockchains/smartchain/assets/0x323273b8EE5Ae6247b47C38C81dB45E1beF13E6F/info.json @@ -18,8 +18,8 @@ "url": "https://facebook.com/yourmagnetgold/" }, { - "name": "twitter", - "url": "https://twitter.com/YMagnetgold" + "name": "x", + "url": "https://x.com/YMagnetgold" }, { "name": "youtube", diff --git a/blockchains/smartchain/assets/0x3244478Da3F518B33b99D5929Dd0bC3396C56981/info.json b/blockchains/smartchain/assets/0x3244478Da3F518B33b99D5929Dd0bC3396C56981/info.json index 07c490b6c33a4..d85018e586d05 100644 --- a/blockchains/smartchain/assets/0x3244478Da3F518B33b99D5929Dd0bC3396C56981/info.json +++ b/blockchains/smartchain/assets/0x3244478Da3F518B33b99D5929Dd0bC3396C56981/info.json @@ -10,8 +10,8 @@ "id": "0x3244478Da3F518B33b99D5929Dd0bC3396C56981", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MetaMate_NFT" + "name": "x", + "url": "https://x.com/MetaMate_NFT" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x32475e3b6a9892c0910B2f8BF43959bEEF67Ce46/info.json b/blockchains/smartchain/assets/0x32475e3b6a9892c0910B2f8BF43959bEEF67Ce46/info.json new file mode 100644 index 0000000000000..de1842607bbc4 --- /dev/null +++ b/blockchains/smartchain/assets/0x32475e3b6a9892c0910B2f8BF43959bEEF67Ce46/info.json @@ -0,0 +1,26 @@ +{ + "name": "Block World Token", + "type": "BEP20", + "symbol": "BWT", + "decimals": 18, + "description": "Block World is an AI-powered GameFi metaverse where players interact with smart NPCs, earn rewards, and trade NFTs in a decentralized ecosystem. AI-driven NPCs create dynamic quests and adaptive gameplay, making every experience unique.", + "website": "https://www.block-world.online/", + "explorer": "https://bscscan.com/token/0x32475e3b6a9892c0910b2f8bf43959beef67ce46", + "id": "0x32475e3b6a9892c0910B2f8BF43959bEEF67Ce46", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/ai_blockworld" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/blockworld/" + } + + ], + "tags": [ + "gamefi" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x32475e3b6a9892c0910B2f8BF43959bEEF67Ce46/logo.png b/blockchains/smartchain/assets/0x32475e3b6a9892c0910B2f8BF43959bEEF67Ce46/logo.png new file mode 100644 index 0000000000000..e983506e84b0d Binary files /dev/null and b/blockchains/smartchain/assets/0x32475e3b6a9892c0910B2f8BF43959bEEF67Ce46/logo.png differ diff --git a/blockchains/smartchain/assets/0x32477Cf0e324F9A9cb49E8803fa4dE9f80F8d0D4/info.json b/blockchains/smartchain/assets/0x32477Cf0e324F9A9cb49E8803fa4dE9f80F8d0D4/info.json new file mode 100644 index 0000000000000..154c878c9eedc --- /dev/null +++ b/blockchains/smartchain/assets/0x32477Cf0e324F9A9cb49E8803fa4dE9f80F8d0D4/info.json @@ -0,0 +1,32 @@ +{ + "name": "realestate", + "type": "BEP20", + "symbol": "REALESTATE", + "decimals": 18, + "website": "https://www.real-estate.game", + "description": "The Real Estate Crypto Token (REAL ESTATE) aims to revolutionize the real estate market by combining blockchain technology with gamification, decentralized finance (DeFi), and accessibility. This token opens doors for small investors, gamifies real estate market participation, and provides unique opportunities to earn, trade, and stake. With REAL ESTATE, investors can access the profits of real property without the high entry costs traditionally associated with real estate", + "explorer": "https://bscscan.com/token/0x32477Cf0e324F9A9cb49E8803fa4dE9f80F8d0D4", + "status": "active", + "id": "0x32477Cf0e324F9A9cb49E8803fa4dE9f80F8d0D4", + "links": [ + { + "name": "x", + "url": "https://x.com/RealEstate_2ken" + }, + { + "name": "whitepaper", + "url": "https://www.real-estate.game/whitepaper/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/realestate" + }, + { + "name": "telegram", + "url": "https://t.me/realestate_token" + } + ], + "tags": [ + "gamefi" + ] +} diff --git a/blockchains/smartchain/assets/0x32477Cf0e324F9A9cb49E8803fa4dE9f80F8d0D4/logo.png b/blockchains/smartchain/assets/0x32477Cf0e324F9A9cb49E8803fa4dE9f80F8d0D4/logo.png new file mode 100644 index 0000000000000..96d2e22cc65ee Binary files /dev/null and b/blockchains/smartchain/assets/0x32477Cf0e324F9A9cb49E8803fa4dE9f80F8d0D4/logo.png differ diff --git a/blockchains/smartchain/assets/0x324Ed66CcD39F29049B66cc40489a9B7312D4444/info.json b/blockchains/smartchain/assets/0x324Ed66CcD39F29049B66cc40489a9B7312D4444/info.json new file mode 100644 index 0000000000000..76201ca4d90bb --- /dev/null +++ b/blockchains/smartchain/assets/0x324Ed66CcD39F29049B66cc40489a9B7312D4444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDKG 黄金抵押稳定币", + "type": "BEP20", + "symbol": "FAKE USDKG 黄金抵押稳定币", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x324Ed66CcD39F29049B66cc40489a9B7312D4444", + "explorer": "https://bscscan.com/token/0x324Ed66CcD39F29049B66cc40489a9B7312D4444", + "status": "spam", + "id": "0x324Ed66CcD39F29049B66cc40489a9B7312D4444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3271D12D5ba36B6582fafA029598FEe0F5F6Db35/info.json b/blockchains/smartchain/assets/0x3271D12D5ba36B6582fafA029598FEe0F5F6Db35/info.json index 647c37c4205e8..70072dc791d17 100644 --- a/blockchains/smartchain/assets/0x3271D12D5ba36B6582fafA029598FEe0F5F6Db35/info.json +++ b/blockchains/smartchain/assets/0x3271D12D5ba36B6582fafA029598FEe0F5F6Db35/info.json @@ -10,8 +10,8 @@ "id": "0x3271D12D5ba36B6582fafA029598FEe0F5F6Db35", "links": [ { - "name": "twitter", - "url": "https://twitter.com/thelilfloki/" + "name": "x", + "url": "https://x.com/thelilfloki/" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x3279510E89600ee1767a037DBD0aD49c974063AE/info.json b/blockchains/smartchain/assets/0x3279510E89600ee1767a037DBD0aD49c974063AE/info.json index 05bd1b6cb04df..788aa0483e291 100644 --- a/blockchains/smartchain/assets/0x3279510E89600ee1767a037DBD0aD49c974063AE/info.json +++ b/blockchains/smartchain/assets/0x3279510E89600ee1767a037DBD0aD49c974063AE/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/nftbs" }, { - "name": "twitter", - "url": "https://twitter.com/nftbstoken" + "name": "x", + "url": "https://x.com/nftbstoken" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x327D87678A2f1d67048b34a048Bb6D68e6168888/info.json b/blockchains/smartchain/assets/0x327D87678A2f1d67048b34a048Bb6D68e6168888/info.json new file mode 100644 index 0000000000000..68b569ecce7fb --- /dev/null +++ b/blockchains/smartchain/assets/0x327D87678A2f1d67048b34a048Bb6D68e6168888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tеthеr", + "type": "BEP20", + "symbol": "FAKE ՍSDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x327D87678A2f1d67048b34a048Bb6D68e6168888", + "explorer": "https://bscscan.com/token/0x327D87678A2f1d67048b34a048Bb6D68e6168888", + "status": "spam", + "id": "0x327D87678A2f1d67048b34a048Bb6D68e6168888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x32B407ee915432Be6D3F168bc1EfF2a6F8b2034C/info.json b/blockchains/smartchain/assets/0x32B407ee915432Be6D3F168bc1EfF2a6F8b2034C/info.json new file mode 100644 index 0000000000000..112fb2784b7bb --- /dev/null +++ b/blockchains/smartchain/assets/0x32B407ee915432Be6D3F168bc1EfF2a6F8b2034C/info.json @@ -0,0 +1,74 @@ +{ + "name": "HODL", + "type": "BEP20", + "symbol": "HODL", + "decimals": 18, + "website": "https://www.hodltoken.net", + "description": "$HODL: Claim 5% BNB rewards every 7 days. ATH $230M, Doxxed team, KYC verified, LP locked 250+ years, registered company, over 20,000 BNB paid so far! Use 6% slippage to buy and join the community earning as they hold!", + "explorer": "https://bscscan.com/token/0x32b407ee915432be6d3f168bc1eff2a6f8b2034C", + "status": "active", + "id": "0x32B407ee915432Be6D3F168bc1EfF2a6F8b2034C", + "links": [ + { + "name": "telegram", + "url": "https://t.me/hodlinvestorgroup" + }, + { + "name": "x", + "url": "https://x.com/HODL_Official" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hodl" + }, + { + "name": "telegram_news", + "url": "https://t.me/HodlAnnouncements" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hodl" + }, + { + "name": "whitepaper", + "url": "https://hodltoken.net/whitepaper" + }, + { + "name": "blog", + "url": "https://hodltoken.net/news" + }, + { + "name": "medium", + "url": "https://medium.com/@HODL-token" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x305C78B85049B530E06DfBB6953C80C9c98Bf429#code" + }, + { + "name": "github", + "url": "https://github.com/HODL-org/contract" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/HODL-Official" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/HodlToken" + }, + { + "name": "discord", + "url": "https://discord.com/invite/D666jh5C5D" + }, + { + "name": "facebook", + "url": "https://facebook.com/HODLtokenBSC" + } + ], + "tags": [ + "defi", + "staking", + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x32B407ee915432Be6D3F168bc1EfF2a6F8b2034C/logo.png b/blockchains/smartchain/assets/0x32B407ee915432Be6D3F168bc1EfF2a6F8b2034C/logo.png new file mode 100644 index 0000000000000..c6241dad11572 Binary files /dev/null and b/blockchains/smartchain/assets/0x32B407ee915432Be6D3F168bc1EfF2a6F8b2034C/logo.png differ diff --git a/blockchains/smartchain/assets/0x32eD23b9D263138695168850Ac04609f6e5e0aB4/info.json b/blockchains/smartchain/assets/0x32eD23b9D263138695168850Ac04609f6e5e0aB4/info.json index 7ba7c33a0588b..1e37ddad71e2d 100644 --- a/blockchains/smartchain/assets/0x32eD23b9D263138695168850Ac04609f6e5e0aB4/info.json +++ b/blockchains/smartchain/assets/0x32eD23b9D263138695168850Ac04609f6e5e0aB4/info.json @@ -10,8 +10,8 @@ "id": "0x32eD23b9D263138695168850Ac04609f6e5e0aB4", "links": [ { - "name": "twitter", - "url": "https://twitter.com/bakecoin" + "name": "x", + "url": "https://x.com/bakecoin" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x32f1518BaAcE69e85b9E5fF844eBd617c52573ac/info.json b/blockchains/smartchain/assets/0x32f1518BaAcE69e85b9E5fF844eBd617c52573ac/info.json index 53c53fdda33df..fb8391650bb92 100644 --- a/blockchains/smartchain/assets/0x32f1518BaAcE69e85b9E5fF844eBd617c52573ac/info.json +++ b/blockchains/smartchain/assets/0x32f1518BaAcE69e85b9E5fF844eBd617c52573ac/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/dexsport_en" }, { - "name": "twitter", - "url": "https://twitter.com/dexsport_io" + "name": "x", + "url": "https://x.com/dexsport_io" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x330F4fe5ef44B4d0742fE8BED8ca5E29359870DF/info.json b/blockchains/smartchain/assets/0x330F4fe5ef44B4d0742fE8BED8ca5E29359870DF/info.json index f2471cbb60604..bf99944fc34b9 100644 --- a/blockchains/smartchain/assets/0x330F4fe5ef44B4d0742fE8BED8ca5E29359870DF/info.json +++ b/blockchains/smartchain/assets/0x330F4fe5ef44B4d0742fE8BED8ca5E29359870DF/info.json @@ -10,8 +10,8 @@ "id": "0x330F4fe5ef44B4d0742fE8BED8ca5E29359870DF", "links": [ { - "name": "twitter", - "url": "https://twitter.com/CurrencyJade" + "name": "x", + "url": "https://x.com/CurrencyJade" }, { "name": "whitepaper", diff --git a/blockchains/smartchain/assets/0x332C0F58763E3990204B780d33237DF4524d6d09/info.json b/blockchains/smartchain/assets/0x332C0F58763E3990204B780d33237DF4524d6d09/info.json new file mode 100644 index 0000000000000..0ac0846fd266b --- /dev/null +++ b/blockchains/smartchain/assets/0x332C0F58763E3990204B780d33237DF4524d6d09/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tentum", + "type": "BEP20", + "symbol": "FAKE USD.T", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x332C0F58763E3990204B780d33237DF4524d6d09", + "explorer": "https://bscscan.com/token/0x332C0F58763E3990204B780d33237DF4524d6d09", + "status": "spam", + "id": "0x332C0F58763E3990204B780d33237DF4524d6d09" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x333FD139cAeF6Aa31056cC905987b77B1044d259/info.json b/blockchains/smartchain/assets/0x333FD139cAeF6Aa31056cC905987b77B1044d259/info.json index eb1312920dba4..0f460978cbd07 100644 --- a/blockchains/smartchain/assets/0x333FD139cAeF6Aa31056cC905987b77B1044d259/info.json +++ b/blockchains/smartchain/assets/0x333FD139cAeF6Aa31056cC905987b77B1044d259/info.json @@ -10,8 +10,8 @@ "id": "0x333FD139cAeF6Aa31056cC905987b77B1044d259", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TheWeb3Project" + "name": "x", + "url": "https://x.com/TheWeb3Project" }, { "name": "telegram", @@ -25,4 +25,4 @@ "tags": [ "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x334b3eCB4DCa3593BCCC3c7EBD1A1C1d1780FBF1/info.json b/blockchains/smartchain/assets/0x334b3eCB4DCa3593BCCC3c7EBD1A1C1d1780FBF1/info.json index aee9019f8304f..5bb1da51ce0ec 100644 --- a/blockchains/smartchain/assets/0x334b3eCB4DCa3593BCCC3c7EBD1A1C1d1780FBF1/info.json +++ b/blockchains/smartchain/assets/0x334b3eCB4DCa3593BCCC3c7EBD1A1C1d1780FBF1/info.json @@ -11,8 +11,8 @@ "id": "0x334b3eCB4DCa3593BCCC3c7EBD1A1C1d1780FBF1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VenusProtocol" + "name": "x", + "url": "https://x.com/VenusProtocol" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/info.json b/blockchains/smartchain/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/info.json new file mode 100644 index 0000000000000..c11c12ec3cbba --- /dev/null +++ b/blockchains/smartchain/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/info.json @@ -0,0 +1,24 @@ +{ + "name": "Mexican Peso", + "website": "https://www.ripio.com/es/criptos/stablecoins-locales", + "description": "wMXN is a fully collateralized stablecoin pegged 1:1 to the Mexican Peso (MXN). Issued and governed by a Ripio subsidiary, it brings MXN on-chain so users can transact, save, and build on decentralized networks in their local currency.", + "explorer": "https://bscscan.com/token/0x337E7456B420bD3481e7FA61fA9850343d610d34", + "type": "BEP20", + "symbol": "wMXN", + "decimals": 18, + "status": "active", + "id": "0x337E7456B420bD3481e7FA61fA9850343d610d34", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/RipioApp" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mexican-peso" + } + ] +} diff --git a/blockchains/smartchain/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/logo.png b/blockchains/smartchain/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/logo.png new file mode 100644 index 0000000000000..854c9b59f6ab8 Binary files /dev/null and b/blockchains/smartchain/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/logo.png differ diff --git a/blockchains/smartchain/assets/0x3385Cb29cCA0aC66f5d2354d13ef977b49A2510f/info.json b/blockchains/smartchain/assets/0x3385Cb29cCA0aC66f5d2354d13ef977b49A2510f/info.json new file mode 100644 index 0000000000000..7b2ec9baff803 --- /dev/null +++ b/blockchains/smartchain/assets/0x3385Cb29cCA0aC66f5d2354d13ef977b49A2510f/info.json @@ -0,0 +1,24 @@ +{ + "name": "UnitedHealth (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "UNHon is the Ondo Tokenized version of UnitedHealth, giving tokenholders economic exposure similar to holding UNH and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x3385cb29cca0ac66f5d2354d13ef977b49a2510f", + "type": "BEP20", + "symbol": "UNHon", + "decimals": 18, + "status": "active", + "id": "0x3385Cb29cCA0aC66f5d2354d13ef977b49A2510f", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/unitedhealth-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3385Cb29cCA0aC66f5d2354d13ef977b49A2510f/logo.png b/blockchains/smartchain/assets/0x3385Cb29cCA0aC66f5d2354d13ef977b49A2510f/logo.png new file mode 100644 index 0000000000000..7e850760b3d71 Binary files /dev/null and b/blockchains/smartchain/assets/0x3385Cb29cCA0aC66f5d2354d13ef977b49A2510f/logo.png differ diff --git a/blockchains/smartchain/assets/0x338791c58fdED314b81EAb139A1A2Fb7967D90d6/info.json b/blockchains/smartchain/assets/0x338791c58fdED314b81EAb139A1A2Fb7967D90d6/info.json new file mode 100644 index 0000000000000..5711cb7731f99 --- /dev/null +++ b/blockchains/smartchain/assets/0x338791c58fdED314b81EAb139A1A2Fb7967D90d6/info.json @@ -0,0 +1,15 @@ +{ + "name": "SharpLink Gaming xStock", + "type": "BEP20", + "symbol": "SBETx", + "decimals": 18, + "description": "SharpLink Gaming xStock (SBETx) is a tracker certificate issued as a freely transferable token on selected blockchains. SBETx tracks the price of SharpLink Gaming, Inc.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x338791c58fdED314b81EAb139A1A2Fb7967D90d6", + "status": "active", + "id": "0x338791c58fdED314b81EAb139A1A2Fb7967D90d6", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x338791c58fdED314b81EAb139A1A2Fb7967D90d6/logo.png b/blockchains/smartchain/assets/0x338791c58fdED314b81EAb139A1A2Fb7967D90d6/logo.png new file mode 100644 index 0000000000000..9a8057dc1960a Binary files /dev/null and b/blockchains/smartchain/assets/0x338791c58fdED314b81EAb139A1A2Fb7967D90d6/logo.png differ diff --git a/blockchains/smartchain/assets/0x338A03bc9E3720ba1344B61Cb3194Bf0F4984444/info.json b/blockchains/smartchain/assets/0x338A03bc9E3720ba1344B61Cb3194Bf0F4984444/info.json new file mode 100644 index 0000000000000..fa47c352f7450 --- /dev/null +++ b/blockchains/smartchain/assets/0x338A03bc9E3720ba1344B61Cb3194Bf0F4984444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE United Stables", + "type": "BEP20", + "symbol": "FAKE United Stables", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x338A03bc9E3720ba1344B61Cb3194Bf0F4984444", + "explorer": "https://bscscan.com/token/0x338A03bc9E3720ba1344B61Cb3194Bf0F4984444", + "status": "spam", + "id": "0x338A03bc9E3720ba1344B61Cb3194Bf0F4984444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x338cfc61E23d9D086779f37542e7Acb8517E9faE/info.json b/blockchains/smartchain/assets/0x338cfc61E23d9D086779f37542e7Acb8517E9faE/info.json new file mode 100644 index 0000000000000..79889bc8cb305 --- /dev/null +++ b/blockchains/smartchain/assets/0x338cfc61E23d9D086779f37542e7Acb8517E9faE/info.json @@ -0,0 +1,14 @@ +{ + "name": "DDDD", + "type": "BEP20", + "symbol": "DDDD", + "decimals": 18, + "website": "https://bscscan.com/address/0x338cfc61E23d9D086779f37542e7Acb8517E9faE", + "description": "DDDD", + "explorer": "https://bscscan.com/token/0x338cfc61E23d9D086779f37542e7Acb8517E9faE", + "status": "active", + "id": "0x338cfc61E23d9D086779f37542e7Acb8517E9faE", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x338cfc61E23d9D086779f37542e7Acb8517E9faE/logo.png b/blockchains/smartchain/assets/0x338cfc61E23d9D086779f37542e7Acb8517E9faE/logo.png new file mode 100644 index 0000000000000..d819f73606efa Binary files /dev/null and b/blockchains/smartchain/assets/0x338cfc61E23d9D086779f37542e7Acb8517E9faE/logo.png differ diff --git a/blockchains/smartchain/assets/0x339550404Ca4d831D12B1b2e4768869997390010/info.json b/blockchains/smartchain/assets/0x339550404Ca4d831D12B1b2e4768869997390010/info.json index 7d3acef12aa67..bfeac5ea483a2 100644 --- a/blockchains/smartchain/assets/0x339550404Ca4d831D12B1b2e4768869997390010/info.json +++ b/blockchains/smartchain/assets/0x339550404Ca4d831D12B1b2e4768869997390010/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/thugs-defi" }, { - "name": "twitter", - "url": "https://twitter.com/ThugsFinance" + "name": "x", + "url": "https://x.com/ThugsFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x339C72829AB7DD45C3C52f965E7ABe358dd8761E/info.json b/blockchains/smartchain/assets/0x339C72829AB7DD45C3C52f965E7ABe358dd8761E/info.json index 32e768c1bb049..ee023cfeadb7a 100644 --- a/blockchains/smartchain/assets/0x339C72829AB7DD45C3C52f965E7ABe358dd8761E/info.json +++ b/blockchains/smartchain/assets/0x339C72829AB7DD45C3C52f965E7ABe358dd8761E/info.json @@ -22,8 +22,8 @@ "url": "https://facebook.com/wanakafarmofficial" }, { - "name": "twitter", - "url": "https://twitter.com/Wanaka_Farm" + "name": "x", + "url": "https://x.com/Wanaka_Farm" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x339ea0a961E1F5690B9754880f284830ce87CEE1/info.json b/blockchains/smartchain/assets/0x339ea0a961E1F5690B9754880f284830ce87CEE1/info.json new file mode 100644 index 0000000000000..818924344c048 --- /dev/null +++ b/blockchains/smartchain/assets/0x339ea0a961E1F5690B9754880f284830ce87CEE1/info.json @@ -0,0 +1,14 @@ +{ + "name": "MCP", + "type": "BEP20", + "symbol": "MCP", + "decimals": 18, + "website": "https://four.meme/token/0x339ea0a961E1F5690B9754880f284830ce87CEE1", + "description": "MCP", + "explorer": "https://bscscan.com/token/0x339ea0a961E1F5690B9754880f284830ce87CEE1", + "status": "active", + "id": "0x339ea0a961E1F5690B9754880f284830ce87CEE1", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x339ea0a961E1F5690B9754880f284830ce87CEE1/logo.png b/blockchains/smartchain/assets/0x339ea0a961E1F5690B9754880f284830ce87CEE1/logo.png new file mode 100644 index 0000000000000..0cece774e0fd6 Binary files /dev/null and b/blockchains/smartchain/assets/0x339ea0a961E1F5690B9754880f284830ce87CEE1/logo.png differ diff --git a/blockchains/smartchain/assets/0x33A3d962955A3862C8093D1273344719f03cA17C/info.json b/blockchains/smartchain/assets/0x33A3d962955A3862C8093D1273344719f03cA17C/info.json index 62f3959772c32..c63c6c987cfad 100644 --- a/blockchains/smartchain/assets/0x33A3d962955A3862C8093D1273344719f03cA17C/info.json +++ b/blockchains/smartchain/assets/0x33A3d962955A3862C8093D1273344719f03cA17C/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/sporeproject" }, { - "name": "twitter", - "url": "https://twitter.com/sporeproject" + "name": "x", + "url": "https://x.com/sporeproject" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x33d08D8C7a168333a85285a68C0042b39fC3741D/info.json b/blockchains/smartchain/assets/0x33d08D8C7a168333a85285a68C0042b39fC3741D/info.json index 3f490a773305e..a7e943dde579f 100644 --- a/blockchains/smartchain/assets/0x33d08D8C7a168333a85285a68C0042b39fC3741D/info.json +++ b/blockchains/smartchain/assets/0x33d08D8C7a168333a85285a68C0042b39fC3741D/info.json @@ -1,5 +1,5 @@ { - "name": "AIOZ Network Coin", + "name": "AIOZ Network", "website": "https://aioz.network", "description": "AIOZ Network is re-imagining streaming from the ground up with a blockchain that integrates content distribution and tokenomics built for media.", "explorer": "https://bscscan.com/token/0x33d08D8C7a168333a85285a68C0042b39fC3741D", diff --git a/blockchains/smartchain/assets/0x33efbC79BbF863dB11b4A1BF6570FFB6Bf41d0d2/info.json b/blockchains/smartchain/assets/0x33efbC79BbF863dB11b4A1BF6570FFB6Bf41d0d2/info.json index 1396a5a7821d0..4da7673472fad 100644 --- a/blockchains/smartchain/assets/0x33efbC79BbF863dB11b4A1BF6570FFB6Bf41d0d2/info.json +++ b/blockchains/smartchain/assets/0x33efbC79BbF863dB11b4A1BF6570FFB6Bf41d0d2/info.json @@ -10,8 +10,8 @@ "id": "0x33efbC79BbF863dB11b4A1BF6570FFB6Bf41d0d2", "links": [ { - "name": "twitter", - "url": "https://twitter.com/EthekingNetsky" + "name": "x", + "url": "https://x.com/EthekingNetsky" }, { "name": "github", @@ -38,4 +38,4 @@ "nft", "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x341D31b2be1Fee9C00e395A62bA41837F4322EEd/info.json b/blockchains/smartchain/assets/0x341D31b2be1Fee9C00e395A62bA41837F4322EEd/info.json new file mode 100644 index 0000000000000..1b31d37fb2512 --- /dev/null +++ b/blockchains/smartchain/assets/0x341D31b2be1Fee9C00e395A62bA41837F4322EEd/info.json @@ -0,0 +1,24 @@ +{ + "name": "Eli Lilly (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "LLYon is the Ondo Tokenized version of Eli Lilly, giving tokenholders economic exposure similar to holding LLY and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x341d31b2be1fee9c00e395a62ba41837f4322eed", + "type": "BEP20", + "symbol": "LLYon", + "decimals": 18, + "status": "active", + "id": "0x341D31b2be1Fee9C00e395A62bA41837F4322EEd", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/eli-lilly-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x341D31b2be1Fee9C00e395A62bA41837F4322EEd/logo.png b/blockchains/smartchain/assets/0x341D31b2be1Fee9C00e395A62bA41837F4322EEd/logo.png new file mode 100644 index 0000000000000..0e4defd01b563 Binary files /dev/null and b/blockchains/smartchain/assets/0x341D31b2be1Fee9C00e395A62bA41837F4322EEd/logo.png differ diff --git a/blockchains/smartchain/assets/0x34294AfABCbaFfc616ac6614F6d2e17260b78BEd/info.json b/blockchains/smartchain/assets/0x34294AfABCbaFfc616ac6614F6d2e17260b78BEd/info.json new file mode 100644 index 0000000000000..3e3f0ff1ddd5f --- /dev/null +++ b/blockchains/smartchain/assets/0x34294AfABCbaFfc616ac6614F6d2e17260b78BEd/info.json @@ -0,0 +1,55 @@ +{ + "id": "0x34294AfABCbaFfc616ac6614F6d2e17260b78BEd", + "type": "BEP20", + "name": "ApeBond", + "website": "https://ape.bond/", + "description": "ApeBond is a multichain DeFi Hub offering an accessible, transparent, and secure experience for everyone.", + "explorer": "https://bscscan.com/token/0x34294AfABCbaFfc616ac6614F6d2e17260b78BEd", + "symbol": "ABOND", + "decimals": 18, + "status": "active", + "tags": [ + "staking", + "dapp", + "governance", + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ApeBond" + }, + { + "name": "github", + "url": "https://github.com/ApeSwapFinance" + }, + { + "name": "telegram", + "url": "https://t.me/ape_bond" + }, + { + "name": "telegram_news", + "url": "https://t.me/ApeBond_News" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/apebond/" + }, + { + "name": "docs", + "url": "https://docs.ape.bond/apebond" + }, + { + "name": "discord", + "url": "https://discord.com/invite/g3A5T6VSFr" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Apeswap" + }, + { + "name": "medium", + "url": "https://ApeBond.medium.com" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x34294AfABCbaFfc616ac6614F6d2e17260b78BEd/logo.png b/blockchains/smartchain/assets/0x34294AfABCbaFfc616ac6614F6d2e17260b78BEd/logo.png new file mode 100644 index 0000000000000..b7a64a3b8e705 Binary files /dev/null and b/blockchains/smartchain/assets/0x34294AfABCbaFfc616ac6614F6d2e17260b78BEd/logo.png differ diff --git a/blockchains/smartchain/assets/0x342f7334e4c1732eA753a597722E9c3d04BDcce7/info.json b/blockchains/smartchain/assets/0x342f7334e4c1732eA753a597722E9c3d04BDcce7/info.json new file mode 100644 index 0000000000000..120ad5da1519b --- /dev/null +++ b/blockchains/smartchain/assets/0x342f7334e4c1732eA753a597722E9c3d04BDcce7/info.json @@ -0,0 +1,17 @@ +{ + "name": "Eid Mubarak", + "website": "https://www.eidmubarak.cloud/", + "description": "Exclusive blockchain solutions and premium investment opportunities for the discerning investor.", + "explorer": "https://bscscan.com/token/0x342f7334e4c1732eA753a597722E9c3d04BDcce7", + "type": "BEP20", + "symbol": "EidMubarak", + "decimals": 18, + "status": "active", + "id": "0x342f7334e4c1732eA753a597722E9c3d04BDcce7", + "links": [ + { + "name": "x", + "url": "https://x.com/BSC_EidMubarak" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x342f7334e4c1732eA753a597722E9c3d04BDcce7/logo.png b/blockchains/smartchain/assets/0x342f7334e4c1732eA753a597722E9c3d04BDcce7/logo.png new file mode 100644 index 0000000000000..9258f1f868576 Binary files /dev/null and b/blockchains/smartchain/assets/0x342f7334e4c1732eA753a597722E9c3d04BDcce7/logo.png differ diff --git a/blockchains/smartchain/assets/0x34304f2f7cC487eb4186e6D69F5905A613474aA2/info.json b/blockchains/smartchain/assets/0x34304f2f7cC487eb4186e6D69F5905A613474aA2/info.json new file mode 100644 index 0000000000000..962164c6c3f7d --- /dev/null +++ b/blockchains/smartchain/assets/0x34304f2f7cC487eb4186e6D69F5905A613474aA2/info.json @@ -0,0 +1,24 @@ +{ + "name": "Cisco Systems (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "CSCOon is the Ondo Tokenized version of Cisco Systems, giving tokenholders economic exposure similar to holding CSCO and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x34304f2f7cc487eb4186e6d69f5905a613474aa2", + "type": "BEP20", + "symbol": "CSCOon", + "decimals": 18, + "status": "active", + "id": "0x34304f2f7cC487eb4186e6D69F5905A613474aA2", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cisco-systems-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x34304f2f7cC487eb4186e6D69F5905A613474aA2/logo.png b/blockchains/smartchain/assets/0x34304f2f7cC487eb4186e6D69F5905A613474aA2/logo.png new file mode 100644 index 0000000000000..3be5c6553fcb2 Binary files /dev/null and b/blockchains/smartchain/assets/0x34304f2f7cC487eb4186e6D69F5905A613474aA2/logo.png differ diff --git a/blockchains/smartchain/assets/0x3433a5748Bda2F7338BDC600Be7BC716d5882B0C/info.json b/blockchains/smartchain/assets/0x3433a5748Bda2F7338BDC600Be7BC716d5882B0C/info.json new file mode 100644 index 0000000000000..bb2e112d822fd --- /dev/null +++ b/blockchains/smartchain/assets/0x3433a5748Bda2F7338BDC600Be7BC716d5882B0C/info.json @@ -0,0 +1,17 @@ +{ + "name": "SAFU", + "symbol": "SAFU", + "website": "https://safu-moon.xyz", + "description": "$SAFU - Binance Trademark Mascot", + "explorer": "https://bscscan.com/token/0x3433a5748bda2f7338bdc600be7bc716d5882b0c", + "decimals": 18, + "status": "active", + "id": "0x3433a5748Bda2F7338BDC600Be7BC716d5882B0C", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/SAFUCommunity" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3433a5748Bda2F7338BDC600Be7BC716d5882B0C/logo.png b/blockchains/smartchain/assets/0x3433a5748Bda2F7338BDC600Be7BC716d5882B0C/logo.png new file mode 100644 index 0000000000000..b4a26f069c0fa Binary files /dev/null and b/blockchains/smartchain/assets/0x3433a5748Bda2F7338BDC600Be7BC716d5882B0C/logo.png differ diff --git a/blockchains/smartchain/assets/0x34375f826fD3dD4E15F883d4F4786bB45eb705ac/info.json b/blockchains/smartchain/assets/0x34375f826fD3dD4E15F883d4F4786bB45eb705ac/info.json new file mode 100644 index 0000000000000..5f12cc7e526ec --- /dev/null +++ b/blockchains/smartchain/assets/0x34375f826fD3dD4E15F883d4F4786bB45eb705ac/info.json @@ -0,0 +1,24 @@ +{ + "name": "Costco (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "COSTon is the Ondo Tokenized version of Costco, giving tokenholders economic exposure similar to holding COST and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x34375f826fd3dd4e15f883d4f4786bb45eb705ac", + "type": "BEP20", + "symbol": "COSTon", + "decimals": 18, + "status": "active", + "id": "0x34375f826fD3dD4E15F883d4F4786bB45eb705ac", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/costco-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x34375f826fD3dD4E15F883d4F4786bB45eb705ac/logo.png b/blockchains/smartchain/assets/0x34375f826fD3dD4E15F883d4F4786bB45eb705ac/logo.png new file mode 100644 index 0000000000000..763f6c333dd87 Binary files /dev/null and b/blockchains/smartchain/assets/0x34375f826fD3dD4E15F883d4F4786bB45eb705ac/logo.png differ diff --git a/blockchains/smartchain/assets/0x344424e5d0b3037c78c698609cD56B36e7481951/info.json b/blockchains/smartchain/assets/0x344424e5d0b3037c78c698609cD56B36e7481951/info.json index d169081f3382a..7c072412a9b2b 100644 --- a/blockchains/smartchain/assets/0x344424e5d0b3037c78c698609cD56B36e7481951/info.json +++ b/blockchains/smartchain/assets/0x344424e5d0b3037c78c698609cD56B36e7481951/info.json @@ -13,8 +13,8 @@ "url": "https://t.me/MysteryCoin" }, { - "name": "twitter", - "url": "https://twitter.com/MysteryCoin_BSC" + "name": "x", + "url": "https://x.com/MysteryCoin_BSC" } ], "id": "0x344424e5d0b3037c78c698609cD56B36e7481951" diff --git a/blockchains/smartchain/assets/0x3459A4c189e4275a47dd322f04e214b399dae55a/info.json b/blockchains/smartchain/assets/0x3459A4c189e4275a47dd322f04e214b399dae55a/info.json new file mode 100644 index 0000000000000..748100f6ad13d --- /dev/null +++ b/blockchains/smartchain/assets/0x3459A4c189e4275a47dd322f04e214b399dae55a/info.json @@ -0,0 +1,14 @@ +{ + "name": "U DEX Platform", + "type": "BEP20", + "symbol": "UUU", + "decimals": 18, + "website": "https://four.meme/token/0x3459A4c189e4275a47dd322f04e214b399dae55a", + "description": "U AI Agent DEX trading platform token", + "explorer": "https://bscscan.com/token/0x3459A4c189e4275a47dd322f04e214b399dae55a", + "status": "active", + "id": "0x3459A4c189e4275a47dd322f04e214b399dae55a", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3459A4c189e4275a47dd322f04e214b399dae55a/logo.png b/blockchains/smartchain/assets/0x3459A4c189e4275a47dd322f04e214b399dae55a/logo.png new file mode 100644 index 0000000000000..3192a11a5efc3 Binary files /dev/null and b/blockchains/smartchain/assets/0x3459A4c189e4275a47dd322f04e214b399dae55a/logo.png differ diff --git a/blockchains/smartchain/assets/0x34980c35353A8D7B1A1BA02e02E387a8383e004A/info.json b/blockchains/smartchain/assets/0x34980c35353A8D7B1A1BA02e02E387a8383e004A/info.json new file mode 100644 index 0000000000000..863c544eb73e8 --- /dev/null +++ b/blockchains/smartchain/assets/0x34980c35353A8D7B1A1BA02e02E387a8383e004A/info.json @@ -0,0 +1,36 @@ +{ + "name": "Snake", + "type": "BEP20", + "symbol": "SNK", + "decimals": 18, + "website": "https://snake.homes/", + "description": "Snake is a next-generation memecoin inspired by the power and cunning of a snake. We bring together a community of crypto enthusiasts who believe in the magic of humor and decentralization.Our goal: to turn a meme into a powerful tool for fun and opportunity in the crypto world.Snake is more than just a token. It’s a symbol of flexibility, speed, and agility on the path to success. Join our community and be part of the crypto evolution!", + "explorer": "https://bscscan.com/token/0x34980c35353a8d7b1a1ba02e02e387a8383e004a", + "status": "active", + "id": "0x34980c35353A8D7B1A1BA02e02E387a8383e004A", + "links": [ + { + "name": "x", + "url": "https://x.com/BNB_SNAKE" + }, + { + "name": "telegram", + "url": "https://t.me/BNBSnake_chat" + }, + { + "name": "whitepaper", + "url": "https://wpp.snake.homes/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/snake-homes/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/snake-2" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x34980c35353A8D7B1A1BA02e02E387a8383e004A/logo.png b/blockchains/smartchain/assets/0x34980c35353A8D7B1A1BA02e02E387a8383e004A/logo.png new file mode 100644 index 0000000000000..0ad63bbb83566 Binary files /dev/null and b/blockchains/smartchain/assets/0x34980c35353A8D7B1A1BA02e02E387a8383e004A/logo.png differ diff --git a/blockchains/smartchain/assets/0x34bA3af693d6c776d73C7fa67e2B2e79be8ef4ED/info.json b/blockchains/smartchain/assets/0x34bA3af693d6c776d73C7fa67e2B2e79be8ef4ED/info.json index 67b59260f2937..552335af9b26b 100644 --- a/blockchains/smartchain/assets/0x34bA3af693d6c776d73C7fa67e2B2e79be8ef4ED/info.json +++ b/blockchains/smartchain/assets/0x34bA3af693d6c776d73C7fa67e2B2e79be8ef4ED/info.json @@ -10,8 +10,8 @@ "id": "0x34bA3af693d6c776d73C7fa67e2B2e79be8ef4ED", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ShambalaUni" + "name": "x", + "url": "https://x.com/ShambalaUni" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x350c8a09ccf7f862F0D835b0AFF85898c22D2840/info.json b/blockchains/smartchain/assets/0x350c8a09ccf7f862F0D835b0AFF85898c22D2840/info.json index d24ee61748421..03084c6579d27 100644 --- a/blockchains/smartchain/assets/0x350c8a09ccf7f862F0D835b0AFF85898c22D2840/info.json +++ b/blockchains/smartchain/assets/0x350c8a09ccf7f862F0D835b0AFF85898c22D2840/info.json @@ -10,8 +10,8 @@ "id": "0x350c8a09ccf7f862F0D835b0AFF85898c22D2840", "links": [ { - "name": "twitter", - "url": "https://twitter.com/mindmusic_bsc" + "name": "x", + "url": "https://x.com/mindmusic_bsc" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x3522513E5F146a2006e2901b05f16B2821485E19/info.json b/blockchains/smartchain/assets/0x3522513E5F146a2006e2901b05f16B2821485E19/info.json new file mode 100644 index 0000000000000..e920cbabdf3e0 --- /dev/null +++ b/blockchains/smartchain/assets/0x3522513E5F146a2006e2901b05f16B2821485E19/info.json @@ -0,0 +1,15 @@ +{ + "name": "AMD xStock", + "type": "BEP20", + "symbol": "AMDx", + "decimals": 18, + "description": "AMD xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x3522513E5F146a2006e2901b05f16B2821485E19", + "status": "active", + "id": "0x3522513E5F146a2006e2901b05f16B2821485E19", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3522513E5F146a2006e2901b05f16B2821485E19/logo.png b/blockchains/smartchain/assets/0x3522513E5F146a2006e2901b05f16B2821485E19/logo.png new file mode 100644 index 0000000000000..4e802b8335682 Binary files /dev/null and b/blockchains/smartchain/assets/0x3522513E5F146a2006e2901b05f16B2821485E19/logo.png differ diff --git a/blockchains/smartchain/assets/0x352Cb5E19b12FC216548a2677bD0fce83BaE434B/info.json b/blockchains/smartchain/assets/0x352Cb5E19b12FC216548a2677bD0fce83BaE434B/info.json index 74569f54f4197..6f3bd415d1f82 100644 --- a/blockchains/smartchain/assets/0x352Cb5E19b12FC216548a2677bD0fce83BaE434B/info.json +++ b/blockchains/smartchain/assets/0x352Cb5E19b12FC216548a2677bD0fce83BaE434B/info.json @@ -10,8 +10,8 @@ "id": "0x352Cb5E19b12FC216548a2677bD0fce83BaE434B", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BitTorrent" + "name": "x", + "url": "https://x.com/BitTorrent" }, { "name": "github", @@ -35,5 +35,4 @@ "staking", "defi" ] -} - +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3542a28854c5243656FA5cfA1A2811a32E28C1c8/info.json b/blockchains/smartchain/assets/0x3542a28854c5243656FA5cfA1A2811a32E28C1c8/info.json new file mode 100644 index 0000000000000..a3bf5becd9b12 --- /dev/null +++ b/blockchains/smartchain/assets/0x3542a28854c5243656FA5cfA1A2811a32E28C1c8/info.json @@ -0,0 +1,32 @@ +{ + "name": "Capitalrock", + "type": "BEP20", + "symbol": "CR", + "decimals": 18, + "website": "https://capitalrock.ch/", + "description": "Capital Rock Coin is a dynamic cryptocurrency introduced by the renowned forex trading firm, Capital Rock. With a global presence, boasting physical offices in ten countries, and an impressive portfolio of simultaneous dealings with 400 companies.", + "explorer": "https://bscscan.com/token/0x3542a28854c5243656FA5cfA1A2811a32E28C1c8", + "status": "active", + "id": "0x3542a28854c5243656FA5cfA1A2811a32E28C1c8", + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/capitalrockint" + }, + { + "name": "x", + "url": "https://x.com/CapitalRock_AG" + }, + { + "name": "telegram_news", + "url": "https://t.me/+WgsDY3hPuBgxY2Q6" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/capitalrock/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3542a28854c5243656FA5cfA1A2811a32E28C1c8/logo.png b/blockchains/smartchain/assets/0x3542a28854c5243656FA5cfA1A2811a32E28C1c8/logo.png new file mode 100644 index 0000000000000..fd777a3cfe819 Binary files /dev/null and b/blockchains/smartchain/assets/0x3542a28854c5243656FA5cfA1A2811a32E28C1c8/logo.png differ diff --git a/blockchains/smartchain/assets/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081/info.json b/blockchains/smartchain/assets/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081/info.json new file mode 100644 index 0000000000000..91517e7b1a854 --- /dev/null +++ b/blockchains/smartchain/assets/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081/info.json @@ -0,0 +1,24 @@ +{ + "name": "Amazon tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Amazon tokenized stock (xStock) (AMZNX) is a cryptocurrency and operates on the Solana platform. Amazon tokenized stock (xStock) has a current supply of 9,999.36105472 with 5,447.71612052 in circulation. The last known price of Amazon tokenized stock (xStock) is 232.88934286 USD and is up 0.69 over the last 24 hours. It is currently trading on 28 active market(s) with $3,262,241.23 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/amazon-xstock.", + "explorer": "https://bscscan.com/token/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081", + "type": "BEP20", + "symbol": "AMZNX", + "decimals": 18, + "status": "active", + "id": "0x3557Ba345B01EFa20A1bdDC61F573BFD87195081", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/amazon-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081/logo.png b/blockchains/smartchain/assets/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081/logo.png new file mode 100644 index 0000000000000..1b179f11932f3 Binary files /dev/null and b/blockchains/smartchain/assets/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081/logo.png differ diff --git a/blockchains/smartchain/assets/0x35895a1fa1AFf7FB3204fB01257409Fd75acB24C/info.json b/blockchains/smartchain/assets/0x35895a1fa1AFf7FB3204fB01257409Fd75acB24C/info.json new file mode 100644 index 0000000000000..798235416e78d --- /dev/null +++ b/blockchains/smartchain/assets/0x35895a1fa1AFf7FB3204fB01257409Fd75acB24C/info.json @@ -0,0 +1,28 @@ +{ + "name": "Lam Research (Ondo Tokenized)", + "type": "BEP20", + "symbol": "LRCXon", + "decimals": 18, + "description": "LRCXon is the Ondo Tokenized version of Lam Research, giving tokenholders economic exposure similar to holding LRCX and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x35895a1fa1AFf7FB3204fB01257409Fd75acB24C", + "status": "active", + "id": "0x35895a1fa1AFf7FB3204fB01257409Fd75acB24C", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/lam-research-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lam-research-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x35895a1fa1AFf7FB3204fB01257409Fd75acB24C/logo.png b/blockchains/smartchain/assets/0x35895a1fa1AFf7FB3204fB01257409Fd75acB24C/logo.png new file mode 100644 index 0000000000000..857455e73773a Binary files /dev/null and b/blockchains/smartchain/assets/0x35895a1fa1AFf7FB3204fB01257409Fd75acB24C/logo.png differ diff --git a/blockchains/smartchain/assets/0x35Bd36597fF784FCc30D08EBE4Bd917374C40d4B/info.json b/blockchains/smartchain/assets/0x35Bd36597fF784FCc30D08EBE4Bd917374C40d4B/info.json index 963e79c381619..d47444e7e2e85 100644 --- a/blockchains/smartchain/assets/0x35Bd36597fF784FCc30D08EBE4Bd917374C40d4B/info.json +++ b/blockchains/smartchain/assets/0x35Bd36597fF784FCc30D08EBE4Bd917374C40d4B/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/MiniShibTeam" }, { - "name": "twitter", - "url": "https://twitter.com/realminishib" + "name": "x", + "url": "https://x.com/realminishib" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x35b2a25087A4D33dADBFB7625bfa7f1e0853f723/info.json b/blockchains/smartchain/assets/0x35b2a25087A4D33dADBFB7625bfa7f1e0853f723/info.json index f98e599580622..fe2383858b669 100644 --- a/blockchains/smartchain/assets/0x35b2a25087A4D33dADBFB7625bfa7f1e0853f723/info.json +++ b/blockchains/smartchain/assets/0x35b2a25087A4D33dADBFB7625bfa7f1e0853f723/info.json @@ -6,8 +6,8 @@ "type": "BEP20", "links": [ { - "name": "twitter", - "url": "https://twitter.com/AnnexFinance" + "name": "x", + "url": "https://x.com/AnnexFinance" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0x35bEdBF9291b22218a0dA863170dcC9329Ef2563/info.json b/blockchains/smartchain/assets/0x35bEdBF9291b22218a0dA863170dcC9329Ef2563/info.json index cb54aefee9e22..a9d343fb1905b 100644 --- a/blockchains/smartchain/assets/0x35bEdBF9291b22218a0dA863170dcC9329Ef2563/info.json +++ b/blockchains/smartchain/assets/0x35bEdBF9291b22218a0dA863170dcC9329Ef2563/info.json @@ -10,8 +10,8 @@ "id": "0x35bEdBF9291b22218a0dA863170dcC9329Ef2563", "links": [ { - "name": "twitter", - "url": "https://twitter.com/tapfantasy2021" + "name": "x", + "url": "https://x.com/tapfantasy2021" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x35f3fffFcb622bC9f64fA561D74e983Fd488D90c/info.json b/blockchains/smartchain/assets/0x35f3fffFcb622bC9f64fA561D74e983Fd488D90c/info.json index fd1c45161c4da..647449aa3be9a 100644 --- a/blockchains/smartchain/assets/0x35f3fffFcb622bC9f64fA561D74e983Fd488D90c/info.json +++ b/blockchains/smartchain/assets/0x35f3fffFcb622bC9f64fA561D74e983Fd488D90c/info.json @@ -5,13 +5,13 @@ "decimals": 8, "website": "https://p.cash/", "description": "PirateCash as Software-defined networking (SDN). This technology will provide good quality of service and it will be High Availability (HA), flexible and DDoS resistant network.", - "explorer": "https://bscscan.com/token/0x35f3ffffcb622bc9f64fa561d74e983fd488d90c", - "status": "active", + "explorer": "https://bscscan.com/token/0x35f3fffFcb622bC9f64fA561D74e983Fd488D90c", + "status": "abandoned", "id": "0x35f3fffFcb622bC9f64fA561D74e983Fd488D90c", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PirateCash_NET" + "name": "x", + "url": "https://x.com/PirateCash_NET" }, { "name": "telegram", @@ -23,7 +23,7 @@ }, { "name": "source_code", - "url": "https://bscscan.com/token/0x35f3ffffcb622bc9f64fa561d74e983fd488d90c#code" + "url": "https://bscscan.com/token/0x35f3fffFcb622bC9f64fA561D74e983Fd488D90c#code" }, { "name": "github", @@ -33,4 +33,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x35f60Cc0c6dD96F88C5dc61113aE4AFF7EE02983/info.json b/blockchains/smartchain/assets/0x35f60Cc0c6dD96F88C5dc61113aE4AFF7EE02983/info.json new file mode 100644 index 0000000000000..5ebef306ec418 --- /dev/null +++ b/blockchains/smartchain/assets/0x35f60Cc0c6dD96F88C5dc61113aE4AFF7EE02983/info.json @@ -0,0 +1,14 @@ +{ + "name": "Keep Building", + "type": "BEP20", + "symbol": "Building", + "decimals": 18, + "website": "https://building.ceo/", + "description": "BUILDING token follows CZ's mantra: \"Keep Building.\" Built on BNB Chain, empowering Web3 builders through all market cycles. LFG!", + "explorer": "https://bscscan.com/token/0x35f60Cc0c6dD96F88C5dc61113aE4AFF7EE02983", + "status": "active", + "id": "0x35f60Cc0c6dD96F88C5dc61113aE4AFF7EE02983", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x35f60Cc0c6dD96F88C5dc61113aE4AFF7EE02983/logo.png b/blockchains/smartchain/assets/0x35f60Cc0c6dD96F88C5dc61113aE4AFF7EE02983/logo.png new file mode 100644 index 0000000000000..74db41c1b6041 Binary files /dev/null and b/blockchains/smartchain/assets/0x35f60Cc0c6dD96F88C5dc61113aE4AFF7EE02983/logo.png differ diff --git a/blockchains/smartchain/assets/0x360883b7E7fAAD5CE3b4295DABe3F4Ce01A408a2/info.json b/blockchains/smartchain/assets/0x360883b7E7fAAD5CE3b4295DABe3F4Ce01A408a2/info.json index 542d79cb876cd..5cc0e9f26ce19 100644 --- a/blockchains/smartchain/assets/0x360883b7E7fAAD5CE3b4295DABe3F4Ce01A408a2/info.json +++ b/blockchains/smartchain/assets/0x360883b7E7fAAD5CE3b4295DABe3F4Ce01A408a2/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/SolarSystemsNFT/" }, { - "name": "twitter", - "url": "https://twitter.com/SolarSystems3" + "name": "x", + "url": "https://x.com/SolarSystems3" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x361C60b7c2828fCAb80988d00D1D542c83387b50/info.json b/blockchains/smartchain/assets/0x361C60b7c2828fCAb80988d00D1D542c83387b50/info.json index 2e5ea989c3999..7b0fbf2fb4496 100644 --- a/blockchains/smartchain/assets/0x361C60b7c2828fCAb80988d00D1D542c83387b50/info.json +++ b/blockchains/smartchain/assets/0x361C60b7c2828fCAb80988d00D1D542c83387b50/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/DeFiCh/ain" }, { - "name": "twitter", - "url": "https://twitter.com/defichain" + "name": "x", + "url": "https://x.com/defichain" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x364f210f430eC2448Fc68A49203040F6124096F0/info.json b/blockchains/smartchain/assets/0x364f210f430eC2448Fc68A49203040F6124096F0/info.json new file mode 100644 index 0000000000000..e1fbb8629b52d --- /dev/null +++ b/blockchains/smartchain/assets/0x364f210f430eC2448Fc68A49203040F6124096F0/info.json @@ -0,0 +1,24 @@ +{ + "name": "Coinbase tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Coinbase tokenized stock (xStock) (COINX) is a cryptocurrency and operates on the Solana platform. Coinbase tokenized stock (xStock) has a current supply of 11,999.99916158 with 6,000 in circulation. The last known price of Coinbase tokenized stock (xStock) is 327.47561557 USD and is up 1.69 over the last 24 hours. It is currently trading on 28 active market(s) with $5,223,607.28 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/coinbase-xstock.", + "explorer": "https://bscscan.com/token/0x364f210f430eC2448Fc68A49203040F6124096F0", + "type": "BEP20", + "symbol": "COINX", + "decimals": 18, + "status": "active", + "id": "0x364f210f430eC2448Fc68A49203040F6124096F0", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coinbase-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x364f210f430eC2448Fc68A49203040F6124096F0/logo.png b/blockchains/smartchain/assets/0x364f210f430eC2448Fc68A49203040F6124096F0/logo.png new file mode 100644 index 0000000000000..00db496af4511 Binary files /dev/null and b/blockchains/smartchain/assets/0x364f210f430eC2448Fc68A49203040F6124096F0/logo.png differ diff --git a/blockchains/smartchain/assets/0x368Bb77a91328fDfd869EE42A4e61D7018a387a1/info.json b/blockchains/smartchain/assets/0x368Bb77a91328fDfd869EE42A4e61D7018a387a1/info.json new file mode 100644 index 0000000000000..656522c071794 --- /dev/null +++ b/blockchains/smartchain/assets/0x368Bb77a91328fDfd869EE42A4e61D7018a387a1/info.json @@ -0,0 +1,14 @@ +{ + "name": "Doodle dump", + "type": "BEP20", + "symbol": "DOODLED", + "decimals": 18, + "website": "https://doodledump.buzz/", + "description": "Dare you watch him plummet?", + "explorer": "https://bscscan.com/token/0x368Bb77a91328fDfd869EE42A4e61D7018a387a1", + "status": "active", + "id": "0x368Bb77a91328fDfd869EE42A4e61D7018a387a1", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x368Bb77a91328fDfd869EE42A4e61D7018a387a1/logo.png b/blockchains/smartchain/assets/0x368Bb77a91328fDfd869EE42A4e61D7018a387a1/logo.png new file mode 100644 index 0000000000000..ebb53564fdcd7 Binary files /dev/null and b/blockchains/smartchain/assets/0x368Bb77a91328fDfd869EE42A4e61D7018a387a1/logo.png differ diff --git a/blockchains/smartchain/assets/0x36C7B164F85D6F775cD128966D5819c7d36FEfF3/info.json b/blockchains/smartchain/assets/0x36C7B164F85D6F775cD128966D5819c7d36FEfF3/info.json index 3a9c80c148ed8..66daed2c4f57e 100644 --- a/blockchains/smartchain/assets/0x36C7B164F85D6F775cD128966D5819c7d36FEfF3/info.json +++ b/blockchains/smartchain/assets/0x36C7B164F85D6F775cD128966D5819c7d36FEfF3/info.json @@ -10,8 +10,8 @@ "id": "0x36C7B164F85D6F775cD128966D5819c7d36FEfF3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/OpenLiveNFT" + "name": "x", + "url": "https://x.com/OpenLiveNFT" }, { "name": "telegram", @@ -45,4 +45,4 @@ "tags": [ "governance" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x36F5675029E129B5fCaBb29eC750ed268520AcF7/info.json b/blockchains/smartchain/assets/0x36F5675029E129B5fCaBb29eC750ed268520AcF7/info.json new file mode 100644 index 0000000000000..7de1bc6a80b35 --- /dev/null +++ b/blockchains/smartchain/assets/0x36F5675029E129B5fCaBb29eC750ed268520AcF7/info.json @@ -0,0 +1,31 @@ +{ + "name": "BAD AI", + "type": "BEP20", + "symbol": "BADAI", + "decimals": 18, + "description": "BAD Coin is reshaping the AI agent landscape with its proprietary ChainGraph technology, persistent multifaceted multimodal agents, and integrations across social platforms like Telegram and Twitter. Designed with degens, brands, and creators in mind, BAD introduces a new standard for AI ecosystems, offering unparalleled flexibility, adaptability, and functionality in the agent modelling design-space.", + "website": "https://badai.io/", + "explorer": "https://bscscan.com/token/0x36f5675029e129b5fcabb29ec750ed268520acf7", + "id": "0x36F5675029E129B5fCaBb29eC750ed268520AcF7", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/badmeme_coin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bad-coin/" + }, + + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bad-coin" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x36F5675029E129B5fCaBb29eC750ed268520AcF7/logo.png b/blockchains/smartchain/assets/0x36F5675029E129B5fCaBb29eC750ed268520AcF7/logo.png new file mode 100644 index 0000000000000..030658e2f6c61 Binary files /dev/null and b/blockchains/smartchain/assets/0x36F5675029E129B5fCaBb29eC750ed268520AcF7/logo.png differ diff --git a/blockchains/smartchain/assets/0x36b24B2F78725495e858AF9e72f7Df69DaDE3dca/info.json b/blockchains/smartchain/assets/0x36b24B2F78725495e858AF9e72f7Df69DaDE3dca/info.json index 5a203cdcdbc90..d783492b2be0d 100644 --- a/blockchains/smartchain/assets/0x36b24B2F78725495e858AF9e72f7Df69DaDE3dca/info.json +++ b/blockchains/smartchain/assets/0x36b24B2F78725495e858AF9e72f7Df69DaDE3dca/info.json @@ -10,8 +10,8 @@ "id": "0x36b24B2F78725495e858AF9e72f7Df69DaDE3dca", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SeaChainToken" + "name": "x", + "url": "https://x.com/SeaChainToken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e/info.json b/blockchains/smartchain/assets/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e/info.json new file mode 100644 index 0000000000000..ca5b61a1446c9 --- /dev/null +++ b/blockchains/smartchain/assets/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e/info.json @@ -0,0 +1,24 @@ +{ + "name": "PepsiCo tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Pepsico xStock (PEPx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. PEPx tracks the price of PepsiCo, Inc. (the underlying). PEPx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of PepsiCo, Inc., whilst maintaining the benefits of blockchain technology. PepsiCo is a multinational food and beverage corporation. PepsiCo offers a diverse portfolio of over 500 brands, including popular items like Pepsi, Lay's, Doritos, Gatorade, and Quaker Oats.", + "explorer": "https://bscscan.com/token/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e", + "type": "BEP20", + "symbol": "PEPX", + "decimals": 18, + "status": "active", + "id": "0x36c424a6EC0e264b1616102Ad63eD2aD7857413e", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pepsico-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e/logo.png b/blockchains/smartchain/assets/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e/logo.png new file mode 100644 index 0000000000000..c3916659a191e Binary files /dev/null and b/blockchains/smartchain/assets/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e/logo.png differ diff --git a/blockchains/smartchain/assets/0x370377D72029FF96a3bC1513d1b9A30C2028fdB8/info.json b/blockchains/smartchain/assets/0x370377D72029FF96a3bC1513d1b9A30C2028fdB8/info.json new file mode 100644 index 0000000000000..8182a3301c93b --- /dev/null +++ b/blockchains/smartchain/assets/0x370377D72029FF96a3bC1513d1b9A30C2028fdB8/info.json @@ -0,0 +1,14 @@ +{ + "name": "SNIBBU", + "type": "BEP20", + "symbol": "SNIBBU", + "decimals": 18, + "website": "https://four.meme/token/0x370377D72029FF96a3bC1513d1b9A30C2028fdB8", + "description": "The King Of The Sideways Market", + "explorer": "https://bscscan.com/token/0x370377D72029FF96a3bC1513d1b9A30C2028fdB8", + "status": "active", + "id": "0x370377D72029FF96a3bC1513d1b9A30C2028fdB8", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x370377D72029FF96a3bC1513d1b9A30C2028fdB8/logo.png b/blockchains/smartchain/assets/0x370377D72029FF96a3bC1513d1b9A30C2028fdB8/logo.png new file mode 100644 index 0000000000000..5d2a4604b4eae Binary files /dev/null and b/blockchains/smartchain/assets/0x370377D72029FF96a3bC1513d1b9A30C2028fdB8/logo.png differ diff --git a/blockchains/smartchain/assets/0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07/info.json b/blockchains/smartchain/assets/0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07/info.json index 2af40dc5195c8..691ad67f576f3 100644 --- a/blockchains/smartchain/assets/0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07/info.json +++ b/blockchains/smartchain/assets/0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07/info.json @@ -10,8 +10,8 @@ "id": "0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07", "links": [ { - "name": "twitter", - "url": "https://twitter.com/traderjoe_xyz" + "name": "x", + "url": "https://x.com/traderjoe_xyz" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x373E768f79c820aA441540d254dCA6d045c6d25b/info.json b/blockchains/smartchain/assets/0x373E768f79c820aA441540d254dCA6d045c6d25b/info.json index 5eedbb2676a7f..2ef2f3c414795 100644 --- a/blockchains/smartchain/assets/0x373E768f79c820aA441540d254dCA6d045c6d25b/info.json +++ b/blockchains/smartchain/assets/0x373E768f79c820aA441540d254dCA6d045c6d25b/info.json @@ -14,8 +14,8 @@ "url": "https://derace.com" }, { - "name": "twitter", - "url": "https://twitter.com/deracenft" + "name": "x", + "url": "https://x.com/deracenft" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x373E768f79c820aA441540d254dCA6d045c6d25b/logo.png b/blockchains/smartchain/assets/0x373E768f79c820aA441540d254dCA6d045c6d25b/logo.png index fce6b5ea004e8..e428af9216608 100644 Binary files a/blockchains/smartchain/assets/0x373E768f79c820aA441540d254dCA6d045c6d25b/logo.png and b/blockchains/smartchain/assets/0x373E768f79c820aA441540d254dCA6d045c6d25b/logo.png differ diff --git a/blockchains/smartchain/assets/0x374D03A6c0d5bd4bE0A5117eBE1B49D52aC8a53F/info.json b/blockchains/smartchain/assets/0x374D03A6c0d5bd4bE0A5117eBE1B49D52aC8a53F/info.json new file mode 100644 index 0000000000000..014b5314933df --- /dev/null +++ b/blockchains/smartchain/assets/0x374D03A6c0d5bd4bE0A5117eBE1B49D52aC8a53F/info.json @@ -0,0 +1,24 @@ +{ + "name": "PayPal (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "PYPLon is the Ondo Tokenized version of PayPal, giving tokenholders economic exposure similar to holding PYPL and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x374d03a6c0d5bd4be0a5117ebe1b49d52ac8a53f", + "type": "BEP20", + "symbol": "PYPLon", + "decimals": 18, + "status": "active", + "id": "0x374D03A6c0d5bd4bE0A5117eBE1B49D52aC8a53F", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/paypal-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x374D03A6c0d5bd4bE0A5117eBE1B49D52aC8a53F/logo.png b/blockchains/smartchain/assets/0x374D03A6c0d5bd4bE0A5117eBE1B49D52aC8a53F/logo.png new file mode 100644 index 0000000000000..feccb8f895aa5 Binary files /dev/null and b/blockchains/smartchain/assets/0x374D03A6c0d5bd4bE0A5117eBE1B49D52aC8a53F/logo.png differ diff --git a/blockchains/smartchain/assets/0x375483CfA7Fc18F6b455E005D835A8335FbdbB1f/info.json b/blockchains/smartchain/assets/0x375483CfA7Fc18F6b455E005D835A8335FbdbB1f/info.json index 2bdc534adc518..7d71f75e10ee2 100644 --- a/blockchains/smartchain/assets/0x375483CfA7Fc18F6b455E005D835A8335FbdbB1f/info.json +++ b/blockchains/smartchain/assets/0x375483CfA7Fc18F6b455E005D835A8335FbdbB1f/info.json @@ -10,8 +10,8 @@ "id": "0x375483CfA7Fc18F6b455E005D835A8335FbdbB1f", "links": [ { - "name": "twitter", - "url": "https://twitter.com/token_eclipse" + "name": "x", + "url": "https://x.com/token_eclipse" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x375A7B6A6F74a5Acb86C420c53C4Ce8cf1d51b4D/info.json b/blockchains/smartchain/assets/0x375A7B6A6F74a5Acb86C420c53C4Ce8cf1d51b4D/info.json index aa2a18d514efe..f6bbab80a950b 100644 --- a/blockchains/smartchain/assets/0x375A7B6A6F74a5Acb86C420c53C4Ce8cf1d51b4D/info.json +++ b/blockchains/smartchain/assets/0x375A7B6A6F74a5Acb86C420c53C4Ce8cf1d51b4D/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/HUP-LIFE" }, { - "name": "twitter", - "url": "https://twitter.com/hupdotlife" + "name": "x", + "url": "https://x.com/hupdotlife" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x375B9F00A83132cABcDa7aBf2bfc87c14f7AC324/info.json b/blockchains/smartchain/assets/0x375B9F00A83132cABcDa7aBf2bfc87c14f7AC324/info.json new file mode 100644 index 0000000000000..dd6d270b0cbce --- /dev/null +++ b/blockchains/smartchain/assets/0x375B9F00A83132cABcDa7aBf2bfc87c14f7AC324/info.json @@ -0,0 +1,20 @@ +{ + "name": "iShares U.S. Aerospace & Defense ETF xStock", + "type": "BEP20", + "symbol": "ITAx", + "decimals": 18, + "description": "iShares U.S. Aerospace & Defense ETF xStock (ITAx) is a tracker certificate issued as a freely transferable token on selected blockchains. ITAx tracks the price of iShares U.S. Aerospace & Defense ETF. ITAx is designed to give eligible investors regulatory-compliant access to the stock price of iShares U.S. Aerospace & Defense ETF, whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x375B9F00A83132cABcDa7aBf2bfc87c14f7AC324", + "status": "active", + "id": "0x375B9F00A83132cABcDa7aBf2bfc87c14f7AC324", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x375B9F00A83132cABcDa7aBf2bfc87c14f7AC324/logo.png b/blockchains/smartchain/assets/0x375B9F00A83132cABcDa7aBf2bfc87c14f7AC324/logo.png new file mode 100644 index 0000000000000..55387f0905b85 Binary files /dev/null and b/blockchains/smartchain/assets/0x375B9F00A83132cABcDa7aBf2bfc87c14f7AC324/logo.png differ diff --git a/blockchains/smartchain/assets/0x3780E00D4c60887AF38345cCd44f7617dBFB10A0/info.json b/blockchains/smartchain/assets/0x3780E00D4c60887AF38345cCd44f7617dBFB10A0/info.json index ebc3e89c13371..e96daac5c79b8 100644 --- a/blockchains/smartchain/assets/0x3780E00D4c60887AF38345cCd44f7617dBFB10A0/info.json +++ b/blockchains/smartchain/assets/0x3780E00D4c60887AF38345cCd44f7617dBFB10A0/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Dogecoin2-0/" }, { - "name": "twitter", - "url": "https://twitter.com/Doge2_Official" + "name": "x", + "url": "https://x.com/Doge2_Official" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x379f29911956052899E09233A3914f4e1eca075C/info.json b/blockchains/smartchain/assets/0x379f29911956052899E09233A3914f4e1eca075C/info.json index 9fe2db9144a2d..ceb2c12102c62 100644 --- a/blockchains/smartchain/assets/0x379f29911956052899E09233A3914f4e1eca075C/info.json +++ b/blockchains/smartchain/assets/0x379f29911956052899E09233A3914f4e1eca075C/info.json @@ -10,8 +10,8 @@ "id": "0x379f29911956052899E09233A3914f4e1eca075C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MetaSwap_" + "name": "x", + "url": "https://x.com/MetaSwap_" }, { "name": "blog", diff --git a/blockchains/smartchain/assets/0x37A9357B0d575d419595Cb56974fb89729E737de/info.json b/blockchains/smartchain/assets/0x37A9357B0d575d419595Cb56974fb89729E737de/info.json index 56880058a2003..4b7ec5b581deb 100644 --- a/blockchains/smartchain/assets/0x37A9357B0d575d419595Cb56974fb89729E737de/info.json +++ b/blockchains/smartchain/assets/0x37A9357B0d575d419595Cb56974fb89729E737de/info.json @@ -10,8 +10,8 @@ "id": "0x37A9357B0d575d419595Cb56974fb89729E737de", "links": [ { - "name": "twitter", - "url": "https://twitter.com/GLXcoin_" + "name": "x", + "url": "https://x.com/GLXcoin_" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x37Ac4D6140e54304D77437A5c11924f61a2D976f/info.json b/blockchains/smartchain/assets/0x37Ac4D6140e54304D77437A5c11924f61a2D976f/info.json index 0808e9661bed3..1cebd4e162f62 100644 --- a/blockchains/smartchain/assets/0x37Ac4D6140e54304D77437A5c11924f61a2D976f/info.json +++ b/blockchains/smartchain/assets/0x37Ac4D6140e54304D77437A5c11924f61a2D976f/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/sparkpointio/venus-protocol" }, { - "name": "twitter", - "url": "https://twitter.com/SparkDeFi" + "name": "x", + "url": "https://x.com/SparkDeFi" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x37C28DE42bA3d22217995D146FC684B2326Ede64/info.json b/blockchains/smartchain/assets/0x37C28DE42bA3d22217995D146FC684B2326Ede64/info.json index e27d4e0dde960..bdb3d9db7a038 100644 --- a/blockchains/smartchain/assets/0x37C28DE42bA3d22217995D146FC684B2326Ede64/info.json +++ b/blockchains/smartchain/assets/0x37C28DE42bA3d22217995D146FC684B2326Ede64/info.json @@ -11,8 +11,8 @@ "id": "0x37C28DE42bA3d22217995D146FC684B2326Ede64", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VenusProtocol" + "name": "x", + "url": "https://x.com/VenusProtocol" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x37c4bcf0b8fC6f074be933Af7fb9D1DDe55f979C/info.json b/blockchains/smartchain/assets/0x37c4bcf0b8fC6f074be933Af7fb9D1DDe55f979C/info.json index 9cf173d8a3bde..765963867405c 100644 --- a/blockchains/smartchain/assets/0x37c4bcf0b8fC6f074be933Af7fb9D1DDe55f979C/info.json +++ b/blockchains/smartchain/assets/0x37c4bcf0b8fC6f074be933Af7fb9D1DDe55f979C/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/BlackDiamondGold" }, { - "name": "twitter", - "url": "https://twitter.com/BlackDiamond_CU" + "name": "x", + "url": "https://x.com/BlackDiamond_CU" }, { "name": "discord", diff --git a/blockchains/smartchain/assets/0x37e5da11b6A4DC6d2f7Abe232cDd30B0B8Fc63B1/info.json b/blockchains/smartchain/assets/0x37e5da11b6A4DC6d2f7Abe232cDd30B0B8Fc63B1/info.json index 622e709dd5f4e..84142ca948b13 100644 --- a/blockchains/smartchain/assets/0x37e5da11b6A4DC6d2f7Abe232cDd30B0B8Fc63B1/info.json +++ b/blockchains/smartchain/assets/0x37e5da11b6A4DC6d2f7Abe232cDd30B0B8Fc63B1/info.json @@ -10,8 +10,8 @@ "id": "0x37e5da11b6A4DC6d2f7Abe232cDd30B0B8Fc63B1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BULLBTCCLUBNFT" + "name": "x", + "url": "https://x.com/BULLBTCCLUBNFT" }, { "name": "github", @@ -30,4 +30,4 @@ "defi", "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3802dc739eF9E226f36421A9c15eFa519153bBBe/info.json b/blockchains/smartchain/assets/0x3802dc739eF9E226f36421A9c15eFa519153bBBe/info.json new file mode 100644 index 0000000000000..cd5eb6a8757b5 --- /dev/null +++ b/blockchains/smartchain/assets/0x3802dc739eF9E226f36421A9c15eFa519153bBBe/info.json @@ -0,0 +1,28 @@ +{ + "name": "ProShares Short QQQ (Ondo Tokenized)", + "type": "BEP20", + "symbol": "PSQon", + "decimals": 18, + "description": "PSQon is the Ondo Tokenized version of the ProShares Short QQQ, giving tokenholders economic exposure similar to holding PSQ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x3802dc739eF9E226f36421A9c15eFa519153bBBe", + "status": "active", + "id": "0x3802dc739eF9E226f36421A9c15eFa519153bBBe", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/proshares-short-qqq-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/proshares-short-qqq-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3802dc739eF9E226f36421A9c15eFa519153bBBe/logo.png b/blockchains/smartchain/assets/0x3802dc739eF9E226f36421A9c15eFa519153bBBe/logo.png new file mode 100644 index 0000000000000..d28deab3711b4 Binary files /dev/null and b/blockchains/smartchain/assets/0x3802dc739eF9E226f36421A9c15eFa519153bBBe/logo.png differ diff --git a/blockchains/smartchain/assets/0x3830341557A0AE2e8d7cE341929747a540bb50d6/info.json b/blockchains/smartchain/assets/0x3830341557A0AE2e8d7cE341929747a540bb50d6/info.json new file mode 100644 index 0000000000000..6f1a10af4ff63 --- /dev/null +++ b/blockchains/smartchain/assets/0x3830341557A0AE2e8d7cE341929747a540bb50d6/info.json @@ -0,0 +1,14 @@ +{ + "name": "SharkBoy", + "type": "BEP20", + "symbol": "SHARKBOY", + "decimals": 18, + "website": "https://four.meme/token/0x3830341557A0AE2e8d7cE341929747a540bb50d6", + "description": "SharkBoy", + "explorer": "https://bscscan.com/token/0x3830341557A0AE2e8d7cE341929747a540bb50d6", + "status": "active", + "id": "0x3830341557A0AE2e8d7cE341929747a540bb50d6", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3830341557A0AE2e8d7cE341929747a540bb50d6/logo.png b/blockchains/smartchain/assets/0x3830341557A0AE2e8d7cE341929747a540bb50d6/logo.png new file mode 100644 index 0000000000000..1b7e6e235a149 Binary files /dev/null and b/blockchains/smartchain/assets/0x3830341557A0AE2e8d7cE341929747a540bb50d6/logo.png differ diff --git a/blockchains/smartchain/assets/0x383094a91Ef2767Eed2B063ea40465670bf1C83f/info.json b/blockchains/smartchain/assets/0x383094a91Ef2767Eed2B063ea40465670bf1C83f/info.json index 9fba753109422..8ceb8537b1b48 100644 --- a/blockchains/smartchain/assets/0x383094a91Ef2767Eed2B063ea40465670bf1C83f/info.json +++ b/blockchains/smartchain/assets/0x383094a91Ef2767Eed2B063ea40465670bf1C83f/info.json @@ -10,8 +10,8 @@ "id": "0x383094a91Ef2767Eed2B063ea40465670bf1C83f", "links": [ { - "name": "twitter", - "url": "https://twitter.com/limocoinswap" + "name": "x", + "url": "https://x.com/limocoinswap" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x38895e0b3E7cD13C45BD4E93aF5a402604B762E3/info.json b/blockchains/smartchain/assets/0x38895e0b3E7cD13C45BD4E93aF5a402604B762E3/info.json index 036e998780837..96aa1340b05d5 100644 --- a/blockchains/smartchain/assets/0x38895e0b3E7cD13C45BD4E93aF5a402604B762E3/info.json +++ b/blockchains/smartchain/assets/0x38895e0b3E7cD13C45BD4E93aF5a402604B762E3/info.json @@ -10,8 +10,8 @@ "id": "0x38895e0b3E7cD13C45BD4E93aF5a402604B762E3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/babypootoken" + "name": "x", + "url": "https://x.com/babypootoken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x389c13d5be24bED2af35C30F211E042225CB06fF/info.json b/blockchains/smartchain/assets/0x389c13d5be24bED2af35C30F211E042225CB06fF/info.json index 918bc8f9761f4..3fd7bd0ce0288 100644 --- a/blockchains/smartchain/assets/0x389c13d5be24bED2af35C30F211E042225CB06fF/info.json +++ b/blockchains/smartchain/assets/0x389c13d5be24bED2af35C30F211E042225CB06fF/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/ShiborgInu" }, { - "name": "twitter", - "url": "https://twitter.com/ShiborgToken" + "name": "x", + "url": "https://x.com/ShiborgToken" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x38B9A53bfDc5dba58a29bD6992341927C2fca637/info.json b/blockchains/smartchain/assets/0x38B9A53bfDc5dba58a29bD6992341927C2fca637/info.json new file mode 100644 index 0000000000000..93400d366df69 --- /dev/null +++ b/blockchains/smartchain/assets/0x38B9A53bfDc5dba58a29bD6992341927C2fca637/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares MSCI EAFE (Ondo)", + "website": "https://ondo.finance/", + "description": "EFAon is the Ondo Tokenized version of the iShares MSCI EAFE ETF, giving tokenholders economic exposure similar to holding EFA and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x38b9a53bfdc5dba58a29bd6992341927c2fca637", + "type": "BEP20", + "symbol": "EFAon", + "decimals": 18, + "status": "active", + "id": "0x38B9A53bfDc5dba58a29bD6992341927C2fca637", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-msci-eafe-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x38B9A53bfDc5dba58a29bD6992341927C2fca637/logo.png b/blockchains/smartchain/assets/0x38B9A53bfDc5dba58a29bD6992341927C2fca637/logo.png new file mode 100644 index 0000000000000..8adf578853fa6 Binary files /dev/null and b/blockchains/smartchain/assets/0x38B9A53bfDc5dba58a29bD6992341927C2fca637/logo.png differ diff --git a/blockchains/smartchain/assets/0x38BAC69cbBd28156796e4163B2B6dcb81E336565/info.json b/blockchains/smartchain/assets/0x38BAC69cbBd28156796e4163B2B6dcb81E336565/info.json new file mode 100644 index 0000000000000..914ebfcd5b594 --- /dev/null +++ b/blockchains/smartchain/assets/0x38BAC69cbBd28156796e4163B2B6dcb81E336565/info.json @@ -0,0 +1,24 @@ +{ + "name": "Broadcom tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Broadcom xStock (AVGOx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. AVGOx tracks the price of Broadcom Inc. (the underlying). AVGOx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Broadcom Inc., whilst maintaining the benefits of blockchain technology. Key Benefits Broadcom Inc. is a global technology company that designs, develops, and supplies semiconductors and infrastructure software solutions, operating through two segments: Semiconductor Solutions and Infrastructure Software.", + "explorer": "https://bscscan.com/token/0x38BAC69cbBd28156796e4163B2B6dcb81E336565", + "type": "BEP20", + "symbol": "AVGOX", + "decimals": 18, + "status": "active", + "id": "0x38BAC69cbBd28156796e4163B2B6dcb81E336565", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/broadcom-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x38BAC69cbBd28156796e4163B2B6dcb81E336565/logo.png b/blockchains/smartchain/assets/0x38BAC69cbBd28156796e4163B2B6dcb81E336565/logo.png new file mode 100644 index 0000000000000..e437be046bd77 Binary files /dev/null and b/blockchains/smartchain/assets/0x38BAC69cbBd28156796e4163B2B6dcb81E336565/logo.png differ diff --git a/blockchains/smartchain/assets/0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6/info.json b/blockchains/smartchain/assets/0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6/info.json new file mode 100644 index 0000000000000..9b8fcc099adc1 --- /dev/null +++ b/blockchains/smartchain/assets/0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6/info.json @@ -0,0 +1,15 @@ +{ + "name": "Strategy PP Fixed xStock", + "type": "BEP20", + "symbol": "STRKx", + "decimals": 18, + "description": "Strategy PP Fixed xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6", + "status": "active", + "id": "0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6/logo.png b/blockchains/smartchain/assets/0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6/logo.png new file mode 100644 index 0000000000000..1407faeca0e8c Binary files /dev/null and b/blockchains/smartchain/assets/0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6/logo.png differ diff --git a/blockchains/smartchain/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json b/blockchains/smartchain/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json new file mode 100644 index 0000000000000..05b30dd414a15 --- /dev/null +++ b/blockchains/smartchain/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json @@ -0,0 +1,33 @@ +{ + "name": "Nya", + "type": "BEP20", + "symbol": "NYA", + "decimals": 18, + "website": "https://www.nya.vip", + "description": "Explore the cultural phenomenon of Nya - the playful cat sound that's become a symbol of joy and connection. Discover how this simple word unites fans worldwide.", + "explorer": "https://bscscan.com/token/0x38F9bf9dCe51833Ec7f03C9dC218197999999999", + "status": "active", + "id": "0x38F9bf9dCe51833Ec7f03C9dC218197999999999", + "links": [ + { + "name": "x", + "url": "https://x.com/NyaOnEarth" + }, + { + "name": "telegram", + "url": "https://t.me/NyaOnEarth" + }, + { + "name": "discord", + "url": "https://discord.com/invite/3V8gZFP5kb" + }, + { + "name": "docs", + "url": "https://wiki.nya.vip" + } + ], + "tags": [ + "memes", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png b/blockchains/smartchain/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png new file mode 100644 index 0000000000000..c34f31c6b2335 Binary files /dev/null and b/blockchains/smartchain/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png differ diff --git a/blockchains/smartchain/assets/0x390a684EF9cADE28A7AD0DFa61AB1Eb3842618c4/info.json b/blockchains/smartchain/assets/0x390a684EF9cADE28A7AD0DFa61AB1Eb3842618c4/info.json new file mode 100644 index 0000000000000..f7a93f1e4a242 --- /dev/null +++ b/blockchains/smartchain/assets/0x390a684EF9cADE28A7AD0DFa61AB1Eb3842618c4/info.json @@ -0,0 +1,24 @@ +{ + "name": "Apple (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "AAPLon is the Ondo Tokenized version of Apple, giving tokenholders economic exposure similar to holding AAPL and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x390a684ef9cade28a7ad0dfa61ab1eb3842618c4", + "type": "BEP20", + "symbol": "AAPLon", + "decimals": 18, + "status": "active", + "id": "0x390a684EF9cADE28A7AD0DFa61AB1Eb3842618c4", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/apple-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x390a684EF9cADE28A7AD0DFa61AB1Eb3842618c4/logo.png b/blockchains/smartchain/assets/0x390a684EF9cADE28A7AD0DFa61AB1Eb3842618c4/logo.png new file mode 100644 index 0000000000000..def40b98b5b86 Binary files /dev/null and b/blockchains/smartchain/assets/0x390a684EF9cADE28A7AD0DFa61AB1Eb3842618c4/logo.png differ diff --git a/blockchains/smartchain/assets/0x3917d6BdFFe43105A74E6F9c09B5206f0f3F5FC0/info.json b/blockchains/smartchain/assets/0x3917d6BdFFe43105A74E6F9c09B5206f0f3F5FC0/info.json new file mode 100644 index 0000000000000..f98a9e2a4959f --- /dev/null +++ b/blockchains/smartchain/assets/0x3917d6BdFFe43105A74E6F9c09B5206f0f3F5FC0/info.json @@ -0,0 +1,30 @@ +{ + "name": "Lion Cat", + "type": "BEP20", + "symbol": "LCAT", + "decimals": 18, + "description": "LCAT (Lion CAT) is a community-driven meme coin on BNB chain bringing together crypto enthusiasts with a bold and adventurous spirit. Inspired by the strength of lions, LCAT aims to create a fun, engaging experience while building a dedicated community and reaching new heights in the crypto space!", + "website": "https://lioncat.meme/", + "explorer": "https://bscscan.com/token/0x3917d6bdffe43105a74e6f9c09b5206f0f3f5fc0", + "id": "0x3917d6BdFFe43105A74E6F9c09B5206f0f3F5FC0", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/lcatofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lion-cat/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/lion-cat" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3917d6BdFFe43105A74E6F9c09B5206f0f3F5FC0/logo.png b/blockchains/smartchain/assets/0x3917d6BdFFe43105A74E6F9c09B5206f0f3F5FC0/logo.png new file mode 100644 index 0000000000000..8dd91e5671595 Binary files /dev/null and b/blockchains/smartchain/assets/0x3917d6BdFFe43105A74E6F9c09B5206f0f3F5FC0/logo.png differ diff --git a/blockchains/smartchain/assets/0x392004BEe213F1FF580C867359C246924f21E6Ad/info.json b/blockchains/smartchain/assets/0x392004BEe213F1FF580C867359C246924f21E6Ad/info.json new file mode 100644 index 0000000000000..30f1a7773c09e --- /dev/null +++ b/blockchains/smartchain/assets/0x392004BEe213F1FF580C867359C246924f21E6Ad/info.json @@ -0,0 +1,24 @@ +{ + "name": "Decentralized USD", + "symbol": "USDD", + "type": "BEP20", + "decimals": 18, + "description": "USDD is a fully decentralized algorithmic stablecoin", + "website": "https://usdd.io/", + "explorer": "https://bscscan.com/token/0x392004BEe213F1FF580C867359C246924f21E6Ad", + "status": "active", + "id": "0x392004BEe213F1FF580C867359C246924f21E6Ad", + "links": [ + { + "name": "x", + "url": "https://x.com/usddio" + }, + { + "name": "whitepaper", + "url": "https://usdd.io/USDD-en.pdf" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x392004BEe213F1FF580C867359C246924f21E6Ad/logo.png b/blockchains/smartchain/assets/0x392004BEe213F1FF580C867359C246924f21E6Ad/logo.png new file mode 100644 index 0000000000000..b17bf63fd3273 Binary files /dev/null and b/blockchains/smartchain/assets/0x392004BEe213F1FF580C867359C246924f21E6Ad/logo.png differ diff --git a/blockchains/smartchain/assets/0x3942347bf4216b0caAB7D190f7504aeEb7dE8888/info.json b/blockchains/smartchain/assets/0x3942347bf4216b0caAB7D190f7504aeEb7dE8888/info.json new file mode 100644 index 0000000000000..c4a7ed8654a70 --- /dev/null +++ b/blockchains/smartchain/assets/0x3942347bf4216b0caAB7D190f7504aeEb7dE8888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Β⁣itс⁤оin", + "type": "BEP20", + "symbol": "FAKE ВТС⁤", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x3942347bf4216b0caAB7D190f7504aeEb7dE8888", + "explorer": "https://bscscan.com/token/0x3942347bf4216b0caAB7D190f7504aeEb7dE8888", + "status": "spam", + "id": "0x3942347bf4216b0caAB7D190f7504aeEb7dE8888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3942936782d788ce69155F776A51A5F1C9dd9B22/info.json b/blockchains/smartchain/assets/0x3942936782d788ce69155F776A51A5F1C9dd9B22/info.json index ed42933fcc7ca..95bddf4e662ec 100644 --- a/blockchains/smartchain/assets/0x3942936782d788ce69155F776A51A5F1C9dd9B22/info.json +++ b/blockchains/smartchain/assets/0x3942936782d788ce69155F776A51A5F1C9dd9B22/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/CreamFi" }, { - "name": "twitter", - "url": "https://twitter.com/CreamdotFinance" + "name": "x", + "url": "https://x.com/CreamdotFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x39647d0D700Ef077c6D90De963cF6989Ef38E341/info.json b/blockchains/smartchain/assets/0x39647d0D700Ef077c6D90De963cF6989Ef38E341/info.json index e9ff2e34ad792..35ac717ed8c36 100644 --- a/blockchains/smartchain/assets/0x39647d0D700Ef077c6D90De963cF6989Ef38E341/info.json +++ b/blockchains/smartchain/assets/0x39647d0D700Ef077c6D90De963cF6989Ef38E341/info.json @@ -10,8 +10,8 @@ "id": "0x39647d0D700Ef077c6D90De963cF6989Ef38E341", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Tianyu_Finance" + "name": "x", + "url": "https://x.com/Tianyu_Finance" }, { "name": "whitepaper", diff --git a/blockchains/smartchain/assets/0x398f7827DcCbeFe6990478876bBF3612D93baF05/info.json b/blockchains/smartchain/assets/0x398f7827DcCbeFe6990478876bBF3612D93baF05/info.json index 3faddd3c39cb4..22ac6a315c2fb 100644 --- a/blockchains/smartchain/assets/0x398f7827DcCbeFe6990478876bBF3612D93baF05/info.json +++ b/blockchains/smartchain/assets/0x398f7827DcCbeFe6990478876bBF3612D93baF05/info.json @@ -14,8 +14,8 @@ "url": "https://facebook.com/mixmarvelplatform" }, { - "name": "twitter", - "url": "https://twitter.com/MIXMARVELGAME" + "name": "x", + "url": "https://x.com/MIXMARVELGAME" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0x39C3F75B837EAE0d6d0eA87425Ac99bD646a7B1E/info.json b/blockchains/smartchain/assets/0x39C3F75B837EAE0d6d0eA87425Ac99bD646a7B1E/info.json index ba8a7d6850af1..e28eec8497bbb 100644 --- a/blockchains/smartchain/assets/0x39C3F75B837EAE0d6d0eA87425Ac99bD646a7B1E/info.json +++ b/blockchains/smartchain/assets/0x39C3F75B837EAE0d6d0eA87425Ac99bD646a7B1E/info.json @@ -22,11 +22,11 @@ "url": "https://t.me/catboybscofficial" }, { - "name": "twitter", - "url": "https://twitter.com/BSCCatBoy" + "name": "x", + "url": "https://x.com/BSCCatBoy" } ], "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x39bca4d597062378b5669CD31a3bBFECCDd36B3c/info.json b/blockchains/smartchain/assets/0x39bca4d597062378b5669CD31a3bBFECCDd36B3c/info.json index a290332d0951d..2c702649a7917 100644 --- a/blockchains/smartchain/assets/0x39bca4d597062378b5669CD31a3bBFECCDd36B3c/info.json +++ b/blockchains/smartchain/assets/0x39bca4d597062378b5669CD31a3bBFECCDd36B3c/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/leslarmetaverse" }, { - "name": "twitter", - "url": "https://twitter.com/leslarmetaverse" + "name": "x", + "url": "https://x.com/leslarmetaverse" }, { "name": "telegram", @@ -30,4 +30,4 @@ "gamefi", "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x39c31fC6038490eA4Bf8A21Ca18CD18F33B8d3FB/info.json b/blockchains/smartchain/assets/0x39c31fC6038490eA4Bf8A21Ca18CD18F33B8d3FB/info.json new file mode 100644 index 0000000000000..dfc4bbf62b1e7 --- /dev/null +++ b/blockchains/smartchain/assets/0x39c31fC6038490eA4Bf8A21Ca18CD18F33B8d3FB/info.json @@ -0,0 +1,20 @@ +{ + "name": "Super Micro Computer, Inc. xStock", + "type": "BEP20", + "symbol": "SMCIx", + "decimals": 18, + "description": "Super Micro Computer, Inc. xStock (SMCIx) is a tracker certificate issued as a freely transferable token on selected blockchains. SMCIx tracks the price of Super Micro Computer, Inc.. SMCIx is designed to give eligible investors regulatory-compliant access to the stock price of Super Micro Computer, Inc., whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x39c31fC6038490eA4Bf8A21Ca18CD18F33B8d3FB", + "status": "active", + "id": "0x39c31fC6038490eA4Bf8A21Ca18CD18F33B8d3FB", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x39c31fC6038490eA4Bf8A21Ca18CD18F33B8d3FB/logo.png b/blockchains/smartchain/assets/0x39c31fC6038490eA4Bf8A21Ca18CD18F33B8d3FB/logo.png new file mode 100644 index 0000000000000..e228c40bcc18e Binary files /dev/null and b/blockchains/smartchain/assets/0x39c31fC6038490eA4Bf8A21Ca18CD18F33B8d3FB/logo.png differ diff --git a/blockchains/smartchain/assets/0x39f0D3Cf3af17c685755314839f2d57E346681C9/info.json b/blockchains/smartchain/assets/0x39f0D3Cf3af17c685755314839f2d57E346681C9/info.json new file mode 100644 index 0000000000000..7c7220a4c61c8 --- /dev/null +++ b/blockchains/smartchain/assets/0x39f0D3Cf3af17c685755314839f2d57E346681C9/info.json @@ -0,0 +1,22 @@ +{ + "name": "Jessie Binance Dog", + "type": "BEP20", + "symbol": "Jessie", + "decimals": 18, + "description": "Hoomans best friend", + "website": "https://x.com/OGJessieCTO", + "explorer": "https://bscscan.com/token/0x39f0d3cf3af17c685755314839f2d57e346681c9", + "id": "0x39f0D3Cf3af17c685755314839f2d57E346681C9", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/OGJessieCTO" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x39f0D3Cf3af17c685755314839f2d57E346681C9/logo.png b/blockchains/smartchain/assets/0x39f0D3Cf3af17c685755314839f2d57E346681C9/logo.png new file mode 100644 index 0000000000000..2b16cf0970df7 Binary files /dev/null and b/blockchains/smartchain/assets/0x39f0D3Cf3af17c685755314839f2d57E346681C9/logo.png differ diff --git a/blockchains/smartchain/assets/0x3A66D3d2EDB25182430d01b991BC6eaC73aD5AA8/info.json b/blockchains/smartchain/assets/0x3A66D3d2EDB25182430d01b991BC6eaC73aD5AA8/info.json index 9bae6c4ce2548..1a80cfed7aed8 100644 --- a/blockchains/smartchain/assets/0x3A66D3d2EDB25182430d01b991BC6eaC73aD5AA8/info.json +++ b/blockchains/smartchain/assets/0x3A66D3d2EDB25182430d01b991BC6eaC73aD5AA8/info.json @@ -10,8 +10,8 @@ "id": "0x3A66D3d2EDB25182430d01b991BC6eaC73aD5AA8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SFMONEY_SFM" + "name": "x", + "url": "https://x.com/SFMONEY_SFM" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x3A677D21CF54d1EEcad15aAD77eaF19B72284444/info.json b/blockchains/smartchain/assets/0x3A677D21CF54d1EEcad15aAD77eaF19B72284444/info.json new file mode 100644 index 0000000000000..4731303db75bf --- /dev/null +++ b/blockchains/smartchain/assets/0x3A677D21CF54d1EEcad15aAD77eaF19B72284444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE KASH", + "type": "BEP20", + "symbol": "FAKE KASH", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x3A677D21CF54d1EEcad15aAD77eaF19B72284444", + "explorer": "https://bscscan.com/token/0x3A677D21CF54d1EEcad15aAD77eaF19B72284444", + "status": "spam", + "id": "0x3A677D21CF54d1EEcad15aAD77eaF19B72284444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3A806A3315E35b3F5F46111ADb6E2BAF4B14A70D/info.json b/blockchains/smartchain/assets/0x3A806A3315E35b3F5F46111ADb6E2BAF4B14A70D/info.json index 24ff5b71dea30..cf09cd52dcaa4 100644 --- a/blockchains/smartchain/assets/0x3A806A3315E35b3F5F46111ADb6E2BAF4B14A70D/info.json +++ b/blockchains/smartchain/assets/0x3A806A3315E35b3F5F46111ADb6E2BAF4B14A70D/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/LiberaFinancial" + "name": "x", + "url": "https://x.com/LiberaFinancial" }, { "name": "telegram", @@ -45,4 +45,4 @@ "url": "https://coingecko.com/en/coins/libera-financial" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3AD405ef7AeA80CCb41beEf0a74510e18Feef190/info.json b/blockchains/smartchain/assets/0x3AD405ef7AeA80CCb41beEf0a74510e18Feef190/info.json index ec6b0f3a14f71..f05dde2a5d36e 100644 --- a/blockchains/smartchain/assets/0x3AD405ef7AeA80CCb41beEf0a74510e18Feef190/info.json +++ b/blockchains/smartchain/assets/0x3AD405ef7AeA80CCb41beEf0a74510e18Feef190/info.json @@ -18,8 +18,8 @@ "url": "https://facebook.com/SadbabyToken-104142708605129/" }, { - "name": "twitter", - "url": "https://twitter.com/sadbabyglobal" + "name": "x", + "url": "https://x.com/sadbabyglobal" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x3AaA4B954C17Da357EDB9E18fD3EaE8293ef4200/info.json b/blockchains/smartchain/assets/0x3AaA4B954C17Da357EDB9E18fD3EaE8293ef4200/info.json new file mode 100644 index 0000000000000..b557deaf14501 --- /dev/null +++ b/blockchains/smartchain/assets/0x3AaA4B954C17Da357EDB9E18fD3EaE8293ef4200/info.json @@ -0,0 +1,21 @@ +{ + "name": "Tuki", + "type": "BEP20", + "symbol": "TUKI", + "decimals": 18, + "website": "https://tukiusd1.meme/", + "description": "This is Tuki. He likes to sleep. He plants dollars in the blockchain, then takes a nap. They call him the silent builder of BNB, planting USD1 seeds and dreaming of riches.", + "explorer": "https://bscscan.com/token/0x3aaa4b954c17da357edb9e18fd3eae8293ef4200", + "status": "active", + "id": "0x3AaA4B954C17Da357EDB9E18fD3EaE8293ef4200", + "links": [ + { + "name": "x", + "url": "https://x.com/TukiUSD1" + }, + { + "name": "telegram", + "url": "https://t.me/TukiUSD1" + } + ] +} diff --git a/blockchains/smartchain/assets/0x3AaA4B954C17Da357EDB9E18fD3EaE8293ef4200/logo.png b/blockchains/smartchain/assets/0x3AaA4B954C17Da357EDB9E18fD3EaE8293ef4200/logo.png new file mode 100644 index 0000000000000..caeb0a82d46f5 Binary files /dev/null and b/blockchains/smartchain/assets/0x3AaA4B954C17Da357EDB9E18fD3EaE8293ef4200/logo.png differ diff --git a/blockchains/smartchain/assets/0x3AbfC084a54E5f4e23196e1B9a9c48c3B3021519/info.json b/blockchains/smartchain/assets/0x3AbfC084a54E5f4e23196e1B9a9c48c3B3021519/info.json index 6564a30acbcb0..fafa63bd90328 100644 --- a/blockchains/smartchain/assets/0x3AbfC084a54E5f4e23196e1B9a9c48c3B3021519/info.json +++ b/blockchains/smartchain/assets/0x3AbfC084a54E5f4e23196e1B9a9c48c3B3021519/info.json @@ -10,8 +10,8 @@ "id": "0x3AbfC084a54E5f4e23196e1B9a9c48c3B3021519", "links": [ { - "name": "twitter", - "url": "https://twitter.com/xpacefinance" + "name": "x", + "url": "https://x.com/xpacefinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x3AefF4E27E1F9144eD75Ba65a80BdfEE345F413e/info.json b/blockchains/smartchain/assets/0x3AefF4E27E1F9144eD75Ba65a80BdfEE345F413e/info.json index 0cdfd562410e7..a6e110d9e5fa8 100644 --- a/blockchains/smartchain/assets/0x3AefF4E27E1F9144eD75Ba65a80BdfEE345F413e/info.json +++ b/blockchains/smartchain/assets/0x3AefF4E27E1F9144eD75Ba65a80BdfEE345F413e/info.json @@ -10,8 +10,8 @@ "id": "0x3AefF4E27E1F9144eD75Ba65a80BdfEE345F413e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Bumoon_io" + "name": "x", + "url": "https://x.com/Bumoon_io" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x3B0Be453a4008EBc2eDd457e7Bd355f1C5469d68/info.json b/blockchains/smartchain/assets/0x3B0Be453a4008EBc2eDd457e7Bd355f1C5469d68/info.json index d02d20377b1ec..8724f7137cf6e 100644 --- a/blockchains/smartchain/assets/0x3B0Be453a4008EBc2eDd457e7Bd355f1C5469d68/info.json +++ b/blockchains/smartchain/assets/0x3B0Be453a4008EBc2eDd457e7Bd355f1C5469d68/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/CreamFi" }, { - "name": "twitter", - "url": "https://twitter.com/CreamdotFinance" + "name": "x", + "url": "https://x.com/CreamdotFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x3B3691d4C3EC75660f203F41adC6296a494404d0/info.json b/blockchains/smartchain/assets/0x3B3691d4C3EC75660f203F41adC6296a494404d0/info.json index 25ff08c1bb3e2..13ceb24589c59 100644 --- a/blockchains/smartchain/assets/0x3B3691d4C3EC75660f203F41adC6296a494404d0/info.json +++ b/blockchains/smartchain/assets/0x3B3691d4C3EC75660f203F41adC6296a494404d0/info.json @@ -10,8 +10,8 @@ "id": "0x3B3691d4C3EC75660f203F41adC6296a494404d0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/catcoinbsc" + "name": "x", + "url": "https://x.com/catcoinbsc" }, { "name": "telegram", @@ -29,4 +29,4 @@ "tags": [ "deflationary" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3B5E15cf608b95760c59e6CB7e46F4e8fad68888/info.json b/blockchains/smartchain/assets/0x3B5E15cf608b95760c59e6CB7e46F4e8fad68888/info.json new file mode 100644 index 0000000000000..ef7a282e2d55d --- /dev/null +++ b/blockchains/smartchain/assets/0x3B5E15cf608b95760c59e6CB7e46F4e8fad68888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether USD", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x3B5E15cf608b95760c59e6CB7e46F4e8fad68888", + "explorer": "https://bscscan.com/token/0x3B5E15cf608b95760c59e6CB7e46F4e8fad68888", + "status": "spam", + "id": "0x3B5E15cf608b95760c59e6CB7e46F4e8fad68888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3B78458981eB7260d1f781cb8be2CaAC7027DbE2/info.json b/blockchains/smartchain/assets/0x3B78458981eB7260d1f781cb8be2CaAC7027DbE2/info.json index 31ab0a76f2e93..3ebae5622dc26 100644 --- a/blockchains/smartchain/assets/0x3B78458981eB7260d1f781cb8be2CaAC7027DbE2/info.json +++ b/blockchains/smartchain/assets/0x3B78458981eB7260d1f781cb8be2CaAC7027DbE2/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/launchzone" }, { - "name": "twitter", - "url": "https://twitter.com/launchzoneann" + "name": "x", + "url": "https://x.com/launchzoneann" }, { "name": "whitepaper", diff --git a/blockchains/smartchain/assets/0x3C00F8FCc8791fa78DAA4A480095Ec7D475781e2/info.json b/blockchains/smartchain/assets/0x3C00F8FCc8791fa78DAA4A480095Ec7D475781e2/info.json index 03adbb255a0b3..4e689477c9f19 100644 --- a/blockchains/smartchain/assets/0x3C00F8FCc8791fa78DAA4A480095Ec7D475781e2/info.json +++ b/blockchains/smartchain/assets/0x3C00F8FCc8791fa78DAA4A480095Ec7D475781e2/info.json @@ -10,8 +10,8 @@ "id": "0x3C00F8FCc8791fa78DAA4A480095Ec7D475781e2", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SafeStar_" + "name": "x", + "url": "https://x.com/SafeStar_" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x3C0b6FCB2F62990f477d9AF611e4Da3fF1F08222/info.json b/blockchains/smartchain/assets/0x3C0b6FCB2F62990f477d9AF611e4Da3fF1F08222/info.json index e3613d6471180..27a59f3439a06 100644 --- a/blockchains/smartchain/assets/0x3C0b6FCB2F62990f477d9AF611e4Da3fF1F08222/info.json +++ b/blockchains/smartchain/assets/0x3C0b6FCB2F62990f477d9AF611e4Da3fF1F08222/info.json @@ -10,8 +10,8 @@ "id": "0x3C0b6FCB2F62990f477d9AF611e4Da3fF1F08222", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PathFund" + "name": "x", + "url": "https://x.com/PathFund" }, { "name": "telegram", @@ -37,4 +37,4 @@ "tags": [ "defi" ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3C1B057cb7AcEB4F2c4D889A29fEBec30A6A3146/info.json b/blockchains/smartchain/assets/0x3C1B057cb7AcEB4F2c4D889A29fEBec30A6A3146/info.json new file mode 100644 index 0000000000000..ae013e47c0701 --- /dev/null +++ b/blockchains/smartchain/assets/0x3C1B057cb7AcEB4F2c4D889A29fEBec30A6A3146/info.json @@ -0,0 +1,17 @@ +{ + "name": "PolkaBridge", + "type": "BEP20", + "symbol": "PBR", + "decimals": 18, + "description": "PolkaBridge is a decentralized all-in-one financial application platform. The PolkaBridge ecosystem is expected to include Multichain & Cross-Chain AMM, Farming, Lending, Launchpad, P2P Exchange, INO NFT, and more.", + "website": "https://polkabridge.org/", + "explorer": "https://bscscan.com/token/0x3c1b057cb7aceb4f2c4d889a29febec30a6a3146", + "id": "0x3C1B057cb7AcEB4F2c4D889A29fEBec30A6A3146", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/realpolkabridge" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3C1B057cb7AcEB4F2c4D889A29fEBec30A6A3146/logo.png b/blockchains/smartchain/assets/0x3C1B057cb7AcEB4F2c4D889A29fEBec30A6A3146/logo.png new file mode 100644 index 0000000000000..fbb99790d2976 Binary files /dev/null and b/blockchains/smartchain/assets/0x3C1B057cb7AcEB4F2c4D889A29fEBec30A6A3146/logo.png differ diff --git a/blockchains/smartchain/assets/0x3C7EEDdcFf188A8C36f1Cac1b62958C6E0C27dea/info.json b/blockchains/smartchain/assets/0x3C7EEDdcFf188A8C36f1Cac1b62958C6E0C27dea/info.json index 06078568d5fae..323c0d2b3feb2 100644 --- a/blockchains/smartchain/assets/0x3C7EEDdcFf188A8C36f1Cac1b62958C6E0C27dea/info.json +++ b/blockchains/smartchain/assets/0x3C7EEDdcFf188A8C36f1Cac1b62958C6E0C27dea/info.json @@ -10,8 +10,8 @@ "id": "0x3C7EEDdcFf188A8C36f1Cac1b62958C6E0C27dea", "links": [ { - "name": "twitter", - "url": "https://twitter.com/G2cryptogaming" + "name": "x", + "url": "https://x.com/G2cryptogaming" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x3CEf8d4CC106a169902eA985ceC2dc6Ab055ad4c/info.json b/blockchains/smartchain/assets/0x3CEf8d4CC106a169902eA985ceC2dc6Ab055ad4c/info.json index fa17de841041d..a3b41b3e6006b 100644 --- a/blockchains/smartchain/assets/0x3CEf8d4CC106a169902eA985ceC2dc6Ab055ad4c/info.json +++ b/blockchains/smartchain/assets/0x3CEf8d4CC106a169902eA985ceC2dc6Ab055ad4c/info.json @@ -10,8 +10,8 @@ "id": "0x3CEf8d4CC106a169902eA985ceC2dc6Ab055ad4c", "links": [ { - "name": "twitter", - "url": "https://twitter.com/CryptoAIbsc" + "name": "x", + "url": "https://x.com/CryptoAIbsc" }, { "name": "telegram", @@ -42,4 +42,4 @@ "defi", "memes" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3CF33Ff134c0e00A2664f148A4232adeA1515C6f/info.json b/blockchains/smartchain/assets/0x3CF33Ff134c0e00A2664f148A4232adeA1515C6f/info.json index 6932595fb998c..4c676ba1b7f3f 100644 --- a/blockchains/smartchain/assets/0x3CF33Ff134c0e00A2664f148A4232adeA1515C6f/info.json +++ b/blockchains/smartchain/assets/0x3CF33Ff134c0e00A2664f148A4232adeA1515C6f/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/birbdev" }, { - "name": "twitter", - "url": "https://twitter.com/BirbDefi" + "name": "x", + "url": "https://x.com/BirbDefi" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x3CF8F65Eb5866E02f5cC542Dd2FD1325Dae4FD8C/info.json b/blockchains/smartchain/assets/0x3CF8F65Eb5866E02f5cC542Dd2FD1325Dae4FD8C/info.json new file mode 100644 index 0000000000000..93604f19c09c3 --- /dev/null +++ b/blockchains/smartchain/assets/0x3CF8F65Eb5866E02f5cC542Dd2FD1325Dae4FD8C/info.json @@ -0,0 +1,18 @@ +{ + "name": "ROCK", + "type": "BEP20", + "symbol": "ROCK", + "decimals": 18, + "description": "A Rock?", + "website": "https://top100token.com/address/0x3cf8f65eb5866e02f5cc542dd2fd1325dae4fd8c", + "explorer": "https://bscscan.com/token/0x3cf8f65eb5866e02f5cc542dd2fd1325dae4fd8c", + "id": "0x3CF8F65Eb5866E02f5cC542Dd2FD1325Dae4FD8C", + "status": "active", + "links": [ + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3CF8F65Eb5866E02f5cC542Dd2FD1325Dae4FD8C/logo.png b/blockchains/smartchain/assets/0x3CF8F65Eb5866E02f5cC542Dd2FD1325Dae4FD8C/logo.png new file mode 100644 index 0000000000000..4ff498fb54400 Binary files /dev/null and b/blockchains/smartchain/assets/0x3CF8F65Eb5866E02f5cC542Dd2FD1325Dae4FD8C/logo.png differ diff --git a/blockchains/smartchain/assets/0x3D29Aa78fB558F84112bbC48a84F371147A920C9/info.json b/blockchains/smartchain/assets/0x3D29Aa78fB558F84112bbC48a84F371147A920C9/info.json index 1c9330f703f4f..42fec97f25b1d 100644 --- a/blockchains/smartchain/assets/0x3D29Aa78fB558F84112bbC48a84F371147A920C9/info.json +++ b/blockchains/smartchain/assets/0x3D29Aa78fB558F84112bbC48a84F371147A920C9/info.json @@ -10,8 +10,8 @@ "id": "0x3D29Aa78fB558F84112bbC48a84F371147A920C9", "links": [ { - "name": "twitter", - "url": "https://twitter.com/dogefatherbsc_" + "name": "x", + "url": "https://x.com/dogefatherbsc_" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x3D90DB6cC52E95679fb431E88B1830BA18E41889/info.json b/blockchains/smartchain/assets/0x3D90DB6cC52E95679fb431E88B1830BA18E41889/info.json new file mode 100644 index 0000000000000..e1f37d7d3a0e8 --- /dev/null +++ b/blockchains/smartchain/assets/0x3D90DB6cC52E95679fb431E88B1830BA18E41889/info.json @@ -0,0 +1,56 @@ +{ + "name": "Rabi", + "type": "BEP20", + "symbol": "RABI", + "decimals": 4, + "website": "https://rabi.foundation", + "description": "The Rabi project is a DeFi application built on the Binance Smart Chain blockchain. It generates Rabi tokens that are soft-pegged to Bitcoin, gold, oil, the US dollar, and shares of technology companies.", + "explorer": "https://bscscan.com/token/0x3D90DB6cC52E95679fb431E88B1830BA18E41889", + "status": "active", + "id": "0x3D90DB6cC52E95679fb431E88B1830BA18E41889", + "links": [ + { + "name": "x", + "url": "https://x.com/rabi_foundation" + }, + { + "name": "github", + "url": "https://github.com/Rabi-foundation" + }, + { + "name": "telegram", + "url": "https://t.me/Rabi_community" + }, + { + "name": "telegram_news", + "url": "https://t.me/Rabi_foundation" + }, + { + "name": "whitepaper", + "url": "https://rabi.foundation/download/rabifoundation_whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rabi/" + }, + { + "name": "blog", + "url": "https://rabi.foundation/blog/" + }, + { + "name": "youtube", + "url": "https://youtube.com/rabi_foundation" + }, + { + "name": "facebook", + "url": "https://facebook.com/rabi_foundation" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/rabi" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3D90DB6cC52E95679fb431E88B1830BA18E41889/logo.png b/blockchains/smartchain/assets/0x3D90DB6cC52E95679fb431E88B1830BA18E41889/logo.png new file mode 100644 index 0000000000000..173e4a0b78969 Binary files /dev/null and b/blockchains/smartchain/assets/0x3D90DB6cC52E95679fb431E88B1830BA18E41889/logo.png differ diff --git a/blockchains/smartchain/assets/0x3E290e20d5C207523F53fa384aD87D69cc543f21/info.json b/blockchains/smartchain/assets/0x3E290e20d5C207523F53fa384aD87D69cc543f21/info.json new file mode 100644 index 0000000000000..6767e85910d6f --- /dev/null +++ b/blockchains/smartchain/assets/0x3E290e20d5C207523F53fa384aD87D69cc543f21/info.json @@ -0,0 +1,14 @@ +{ + "name": "FairMint FAIR", + "type": "BEP20", + "symbol": "FAIR", + "decimals": 18, + "website": "https://fairmint.fun/token/0x3e290e20d5c207523f53fa384ad87d69cc543f21", + "description": "FairMint", + "explorer": "https://bscscan.com/token/0x3E290e20d5C207523F53fa384aD87D69cc543f21", + "status": "active", + "id": "0x3E290e20d5C207523F53fa384aD87D69cc543f21", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3E290e20d5C207523F53fa384aD87D69cc543f21/logo.png b/blockchains/smartchain/assets/0x3E290e20d5C207523F53fa384aD87D69cc543f21/logo.png new file mode 100644 index 0000000000000..d905dfa2d0549 Binary files /dev/null and b/blockchains/smartchain/assets/0x3E290e20d5C207523F53fa384aD87D69cc543f21/logo.png differ diff --git a/blockchains/smartchain/assets/0x3E7f1039896454B9cb27c53CC7383e1AB9D9512a/info.json b/blockchains/smartchain/assets/0x3E7f1039896454B9cb27c53CC7383e1AB9D9512a/info.json new file mode 100644 index 0000000000000..87ed67351f49f --- /dev/null +++ b/blockchains/smartchain/assets/0x3E7f1039896454B9cb27c53CC7383e1AB9D9512a/info.json @@ -0,0 +1,29 @@ +{ + "name": "MetFi", + "type": "BEP20", + "symbol": "METFI", + "decimals": 18, + "description": "MetFi is a decentralized investment vehicle for the masses - giving everyday people early-stage access to some of the world’s most promising Web3, Metaverse, and AI startups, long before the public knows about them – all profits are shared with the MetFi community.", + "website": "https://app.metfi.io/", + "explorer": "https://bscscan.com/token/0x3E7f1039896454B9cb27c53CC7383e1AB9D9512a", + "id": "0x3E7f1039896454B9cb27c53CC7383e1AB9D9512a", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/MetFi_DAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/metfi2/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/metfi" + } + ], + "tags": [ + "governance" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3E7f1039896454B9cb27c53CC7383e1AB9D9512a/logo.png b/blockchains/smartchain/assets/0x3E7f1039896454B9cb27c53CC7383e1AB9D9512a/logo.png new file mode 100644 index 0000000000000..83fa2ae7d42d3 Binary files /dev/null and b/blockchains/smartchain/assets/0x3E7f1039896454B9cb27c53CC7383e1AB9D9512a/logo.png differ diff --git a/blockchains/smartchain/assets/0x3EC23F52F6573FC0587A0631dd8C3b107f6bcb35/info.json b/blockchains/smartchain/assets/0x3EC23F52F6573FC0587A0631dd8C3b107f6bcb35/info.json new file mode 100644 index 0000000000000..0d1600a84791d --- /dev/null +++ b/blockchains/smartchain/assets/0x3EC23F52F6573FC0587A0631dd8C3b107f6bcb35/info.json @@ -0,0 +1,24 @@ +{ + "name": "abrdn Physical Platinum Shares ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "PPLTon", + "decimals": 18, + "description": "PPLTon is the Ondo Tokenized version of the abrdn Physical Platinum Shares ETF, giving tokenholders economic exposure similar to holding PPLT and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x3EC23F52F6573FC0587A0631dd8C3b107f6bcb35", + "status": "active", + "id": "0x3EC23F52F6573FC0587A0631dd8C3b107f6bcb35", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/abrdn-physical-platinum-shares-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3EC23F52F6573FC0587A0631dd8C3b107f6bcb35/logo.png b/blockchains/smartchain/assets/0x3EC23F52F6573FC0587A0631dd8C3b107f6bcb35/logo.png new file mode 100644 index 0000000000000..a22bc2999905d Binary files /dev/null and b/blockchains/smartchain/assets/0x3EC23F52F6573FC0587A0631dd8C3b107f6bcb35/logo.png differ diff --git a/blockchains/smartchain/assets/0x3EDE8FB2500862D081b24908E774B25E6D42071A/info.json b/blockchains/smartchain/assets/0x3EDE8FB2500862D081b24908E774B25E6D42071A/info.json new file mode 100644 index 0000000000000..f0a0ce4b2802c --- /dev/null +++ b/blockchains/smartchain/assets/0x3EDE8FB2500862D081b24908E774B25E6D42071A/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE UKSDT", + "type": "BEP20", + "symbol": "FAKE UKSDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x3ede8fb2500862d081b24908e774b25e6d42071a?a=0x1af2fad5bb1487b77a2080a1049d13405b1d176d", + "explorer": "https://bscscan.com/token/0x3ede8fb2500862d081b24908e774b25e6d42071a?a=0x1af2fad5bb1487b77a2080a1049d13405b1d176d", + "status": "spam", + "id": "0x3EDE8FB2500862D081b24908E774B25E6D42071A" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47/info.json b/blockchains/smartchain/assets/0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47/info.json index 460f9830a21d0..a4e913c30fdd3 100644 --- a/blockchains/smartchain/assets/0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47/info.json +++ b/blockchains/smartchain/assets/0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47/info.json @@ -1,5 +1,5 @@ { - "name": "BNB pegged Cardano Token", + "name": "Cardano", "website": "https://cardano.org", "description": "BNB pegged Cardano Token (ADA BEP20) is a token issued by Binance on Smart Chain; its price is pegged to Cardano (ADA) at a ratio of 1:1.", "explorer": "https://bscscan.com/token/0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47", diff --git a/blockchains/smartchain/assets/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149/info.json b/blockchains/smartchain/assets/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149/info.json new file mode 100644 index 0000000000000..8cb5c9ed58fbc --- /dev/null +++ b/blockchains/smartchain/assets/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149/info.json @@ -0,0 +1,24 @@ +{ + "name": "Goldman Sachs tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Goldman Sachs xStock (GSx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. GSx tracks the price of The Goldman Sachs Group, Inc. (the underlying). GSx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of The Goldman Sachs Group, Inc., whilst maintaining the benefits of blockchain technology. Goldman Sachs is a leading global investment bank and wealth management firm. It provides a wide range of financial services to a diverse client base, including corporations, financial institutions, governments, and individuals.", + "explorer": "https://bscscan.com/token/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149", + "type": "BEP20", + "symbol": "GSX", + "decimals": 18, + "status": "active", + "id": "0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/goldman-sachs-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149/logo.png b/blockchains/smartchain/assets/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149/logo.png new file mode 100644 index 0000000000000..80b9ebb613a34 Binary files /dev/null and b/blockchains/smartchain/assets/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149/logo.png differ diff --git a/blockchains/smartchain/assets/0x3Ef99822759A2192e7A82f64484e79e89cd90d52/info.json b/blockchains/smartchain/assets/0x3Ef99822759A2192e7A82f64484e79e89cd90d52/info.json index 89dfea67eb688..7e37e532e6e97 100644 --- a/blockchains/smartchain/assets/0x3Ef99822759A2192e7A82f64484e79e89cd90d52/info.json +++ b/blockchains/smartchain/assets/0x3Ef99822759A2192e7A82f64484e79e89cd90d52/info.json @@ -10,8 +10,8 @@ "id": "0x3Ef99822759A2192e7A82f64484e79e89cd90d52", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Tkbgame2021" + "name": "x", + "url": "https://x.com/Tkbgame2021" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x3F53De71c126BdaBAe20f9cD64848d317f6C3238/info.json b/blockchains/smartchain/assets/0x3F53De71c126BdaBAe20f9cD64848d317f6C3238/info.json new file mode 100644 index 0000000000000..8d60a754bbc92 --- /dev/null +++ b/blockchains/smartchain/assets/0x3F53De71c126BdaBAe20f9cD64848d317f6C3238/info.json @@ -0,0 +1,20 @@ +{ + "name": "Alphabet Tokenized bStocks", + "type": "BEP20", + "symbol": "GOOGLB", + "decimals": 18, + "description": "GOOGLB is a tokenized bStocks that gives you economic exposure to Alphabet Tokenized bStocks, and the right to convert to the underlying security on the Binance.com platform subject to applicable laws. Each token is fully backed by the corresponding underlying equity maintained by the Issuer at a US-regulated broker-dealer. You get the price movements, dividends, and the right to convert the token at 1:1 to the underlying share — tradeable 24/7.", + "website": "https://www.bstocks.finance/en/", + "explorer": "https://bscscan.com/token/0x3F53De71c126BdaBAe20f9cD64848d317f6C3238", + "status": "active", + "id": "0x3F53De71c126BdaBAe20f9cD64848d317f6C3238", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/alphabet-tokenized-bstocks/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3F53De71c126BdaBAe20f9cD64848d317f6C3238/logo.png b/blockchains/smartchain/assets/0x3F53De71c126BdaBAe20f9cD64848d317f6C3238/logo.png new file mode 100644 index 0000000000000..56319e00f782e Binary files /dev/null and b/blockchains/smartchain/assets/0x3F53De71c126BdaBAe20f9cD64848d317f6C3238/logo.png differ diff --git a/blockchains/smartchain/assets/0x3Fa52142B7836468aEd78753e6325b2aEE7dDafe/info.json b/blockchains/smartchain/assets/0x3Fa52142B7836468aEd78753e6325b2aEE7dDafe/info.json new file mode 100644 index 0000000000000..3e6ef1c0e8f46 --- /dev/null +++ b/blockchains/smartchain/assets/0x3Fa52142B7836468aEd78753e6325b2aEE7dDafe/info.json @@ -0,0 +1,28 @@ +{ + "name": "ShieldTokenCoin", + "type": "BEP20", + "symbol": "0STC", + "decimals": 18, + "website": "https://shieldtokencoin.org/", + "description": "Our groundbreaking project aims to create a decentralized blockchain with high performance and low cost. Through innovative technologies, we are developing a solution that enables fast and efficient transactions while ensuring the security and reliability of data. By eliminating intermediaries and reducing transaction costs, our blockchain has the potential to transform entire sectors of the economy, providing a transparent and trustworthy environment for businesses and users.", + "explorer": "https://bscscan.com/token/0x3Fa52142B7836468aEd78753e6325b2aEE7dDafe", + "status": "active", + "id": "0x3Fa52142B7836468aEd78753e6325b2aEE7dDafe", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ShieldTokenCoin" + }, + { + "name": "telegram", + "url": "https://t.me/ShieldTokenCoin" + }, + { + "name": "whitepaper", + "url": "https://shieldtokencoin.org/ShieldTokenCoin_WHITE_PAPER.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3Fa52142B7836468aEd78753e6325b2aEE7dDafe/logo.png b/blockchains/smartchain/assets/0x3Fa52142B7836468aEd78753e6325b2aEE7dDafe/logo.png new file mode 100644 index 0000000000000..350b319596134 Binary files /dev/null and b/blockchains/smartchain/assets/0x3Fa52142B7836468aEd78753e6325b2aEE7dDafe/logo.png differ diff --git a/blockchains/smartchain/assets/0x3FdA9383A84C05eC8f7630Fe10AdF1fAC13241CC/info.json b/blockchains/smartchain/assets/0x3FdA9383A84C05eC8f7630Fe10AdF1fAC13241CC/info.json index 2b00c0028e656..8cf111b3ff7e4 100644 --- a/blockchains/smartchain/assets/0x3FdA9383A84C05eC8f7630Fe10AdF1fAC13241CC/info.json +++ b/blockchains/smartchain/assets/0x3FdA9383A84C05eC8f7630Fe10AdF1fAC13241CC/info.json @@ -6,6 +6,10 @@ "type": "BEP20", "symbol": "DEGO", "decimals": 18, - "status": "active", - "id": "0x3FdA9383A84C05eC8f7630Fe10AdF1fAC13241CC" + "status": "abandoned", + "id": "0x3FdA9383A84C05eC8f7630Fe10AdF1fAC13241CC", + "tags": [ + "governance", + "defi" + ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3FdA9383A84C05eC8f7630Fe10AdF1fAC13241CC/logo.png b/blockchains/smartchain/assets/0x3FdA9383A84C05eC8f7630Fe10AdF1fAC13241CC/logo.png deleted file mode 100644 index 8f1f43a328283..0000000000000 Binary files a/blockchains/smartchain/assets/0x3FdA9383A84C05eC8f7630Fe10AdF1fAC13241CC/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x3a599e584075065eAAAc768D75EaEf85c2f2fF64/info.json b/blockchains/smartchain/assets/0x3a599e584075065eAAAc768D75EaEf85c2f2fF64/info.json index 2436e3eafe3db..e329789951a7a 100644 --- a/blockchains/smartchain/assets/0x3a599e584075065eAAAc768D75EaEf85c2f2fF64/info.json +++ b/blockchains/smartchain/assets/0x3a599e584075065eAAAc768D75EaEf85c2f2fF64/info.json @@ -10,8 +10,8 @@ "id": "0x3a599e584075065eAAAc768D75EaEf85c2f2fF64", "links": [ { - "name": "twitter", - "url": "https://twitter.com/FruttiDino" + "name": "x", + "url": "https://x.com/FruttiDino" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x3a828E1ea6511E367d436C601E14CDb2b446896D/info.json b/blockchains/smartchain/assets/0x3a828E1ea6511E367d436C601E14CDb2b446896D/info.json new file mode 100644 index 0000000000000..f43f554b3bc8e --- /dev/null +++ b/blockchains/smartchain/assets/0x3a828E1ea6511E367d436C601E14CDb2b446896D/info.json @@ -0,0 +1,14 @@ +{ + "name": "GATSBY", + "type": "BEP20", + "symbol": "GATSBY", + "decimals": 18, + "website": "https://four.meme/token/0x3a828E1ea6511E367d436C601E14CDb2b446896D", + "description": "GATSBY", + "explorer": "https://bscscan.com/token/0x3a828E1ea6511E367d436C601E14CDb2b446896D", + "status": "active", + "id": "0x3a828E1ea6511E367d436C601E14CDb2b446896D", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3a828E1ea6511E367d436C601E14CDb2b446896D/logo.png b/blockchains/smartchain/assets/0x3a828E1ea6511E367d436C601E14CDb2b446896D/logo.png new file mode 100644 index 0000000000000..0f5ff98c98aa9 Binary files /dev/null and b/blockchains/smartchain/assets/0x3a828E1ea6511E367d436C601E14CDb2b446896D/logo.png differ diff --git a/blockchains/smartchain/assets/0x3aD9594151886Ce8538C1ff615EFa2385a8C3A88/info.json b/blockchains/smartchain/assets/0x3aD9594151886Ce8538C1ff615EFa2385a8C3A88/info.json index 9b8ee024f69a4..81f240a6eb5b3 100644 --- a/blockchains/smartchain/assets/0x3aD9594151886Ce8538C1ff615EFa2385a8C3A88/info.json +++ b/blockchains/smartchain/assets/0x3aD9594151886Ce8538C1ff615EFa2385a8C3A88/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/safemartians" + "name": "x", + "url": "https://x.com/safemartians" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x3b32e75C01035a0676964aa62caaE7deB79a8888/info.json b/blockchains/smartchain/assets/0x3b32e75C01035a0676964aa62caaE7deB79a8888/info.json new file mode 100644 index 0000000000000..5c354be219c7b --- /dev/null +++ b/blockchains/smartchain/assets/0x3b32e75C01035a0676964aa62caaE7deB79a8888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDT", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 17, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x3b32e75C01035a0676964aa62caaE7deB79a8888", + "explorer": "https://bscscan.com/token/0x3b32e75C01035a0676964aa62caaE7deB79a8888", + "status": "spam", + "id": "0x3b32e75C01035a0676964aa62caaE7deB79a8888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3b76374Cc2DfE28Cc373DcA6d5024791B2586335/info.json b/blockchains/smartchain/assets/0x3b76374Cc2DfE28Cc373DcA6d5024791B2586335/info.json index c90f2b962606f..bedc967dd0654 100644 --- a/blockchains/smartchain/assets/0x3b76374Cc2DfE28Cc373DcA6d5024791B2586335/info.json +++ b/blockchains/smartchain/assets/0x3b76374Cc2DfE28Cc373DcA6d5024791B2586335/info.json @@ -10,8 +10,8 @@ "status": "active", "links": [ { - "name": "twitter", - "url": "https://twitter.com/adadao_org" + "name": "x", + "url": "https://x.com/adadao_org" }, { "name": "github", @@ -37,4 +37,4 @@ "tags": [ "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3c168c8E0bb11B0A6DEEba6c0c6Be100E82451BB/info.json b/blockchains/smartchain/assets/0x3c168c8E0bb11B0A6DEEba6c0c6Be100E82451BB/info.json index bf0401ac66e9f..f3120483bc246 100644 --- a/blockchains/smartchain/assets/0x3c168c8E0bb11B0A6DEEba6c0c6Be100E82451BB/info.json +++ b/blockchains/smartchain/assets/0x3c168c8E0bb11B0A6DEEba6c0c6Be100E82451BB/info.json @@ -18,8 +18,8 @@ "url": "https://youtube.com/channel/UCmregyFHLDxd5jR4sXgCwEQ" }, { - "name": "twitter", - "url": "https://twitter.com/shrewdotcom" + "name": "x", + "url": "https://x.com/shrewdotcom" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x3c6DAd0475d3a1696B359dc04C99FD401BE134dA/info.json b/blockchains/smartchain/assets/0x3c6DAd0475d3a1696B359dc04C99FD401BE134dA/info.json index 642daf7f9219f..ecd51e16cd685 100644 --- a/blockchains/smartchain/assets/0x3c6DAd0475d3a1696B359dc04C99FD401BE134dA/info.json +++ b/blockchains/smartchain/assets/0x3c6DAd0475d3a1696B359dc04C99FD401BE134dA/info.json @@ -10,8 +10,8 @@ "id": "0x3c6DAd0475d3a1696B359dc04C99FD401BE134dA", "links": [ { - "name": "twitter", - "url": "https://twitter.com/saitoofficial" + "name": "x", + "url": "https://x.com/saitoofficial" }, { "name": "github", @@ -45,7 +45,6 @@ "tags": [ "wrapped", "deflationary", - "gamefi", - "staking-native" + "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3c6E66EFB9a63A5F2C771b4E7B7b2ce156E28888/info.json b/blockchains/smartchain/assets/0x3c6E66EFB9a63A5F2C771b4E7B7b2ce156E28888/info.json new file mode 100644 index 0000000000000..7eeb2f17bcc1a --- /dev/null +++ b/blockchains/smartchain/assets/0x3c6E66EFB9a63A5F2C771b4E7B7b2ce156E28888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether USD", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x3c6E66EFB9a63A5F2C771b4E7B7b2ce156E28888", + "explorer": "https://bscscan.com/token/0x3c6E66EFB9a63A5F2C771b4E7B7b2ce156E28888", + "status": "spam", + "id": "0x3c6E66EFB9a63A5F2C771b4E7B7b2ce156E28888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3c730718C97A77562866B5D29B33228c019eAC68/info.json b/blockchains/smartchain/assets/0x3c730718C97A77562866B5D29B33228c019eAC68/info.json index 5d482cd5d437f..47a31c557123d 100644 --- a/blockchains/smartchain/assets/0x3c730718C97A77562866B5D29B33228c019eAC68/info.json +++ b/blockchains/smartchain/assets/0x3c730718C97A77562866B5D29B33228c019eAC68/info.json @@ -6,6 +6,6 @@ "type": "BEP20", "symbol": "BNBD", "decimals": 9, - "status": "active", + "status": "abandoned", "id": "0x3c730718C97A77562866B5D29B33228c019eAC68" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3c730718C97A77562866B5D29B33228c019eAC68/logo.png b/blockchains/smartchain/assets/0x3c730718C97A77562866B5D29B33228c019eAC68/logo.png deleted file mode 100644 index 57a4f4194a35d..0000000000000 Binary files a/blockchains/smartchain/assets/0x3c730718C97A77562866B5D29B33228c019eAC68/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x3cB6C3552C28Cc4D9D000Fe1bcD8dBf837CD3B76/info.json b/blockchains/smartchain/assets/0x3cB6C3552C28Cc4D9D000Fe1bcD8dBf837CD3B76/info.json new file mode 100644 index 0000000000000..efc03c90aece6 --- /dev/null +++ b/blockchains/smartchain/assets/0x3cB6C3552C28Cc4D9D000Fe1bcD8dBf837CD3B76/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM USDT Staked", + "type": "BEP20", + "symbol": "SCAM USDT Staked", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x3cB6C3552C28Cc4D9D000Fe1bcD8dBf837CD3B76", + "explorer": "https://bscscan.com/token/0x3cB6C3552C28Cc4D9D000Fe1bcD8dBf837CD3B76", + "status": "spam", + "id": "0x3cB6C3552C28Cc4D9D000Fe1bcD8dBf837CD3B76" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3ca729BFD4bbaD155f072752510226b37A5b7723/info.json b/blockchains/smartchain/assets/0x3ca729BFD4bbaD155f072752510226b37A5b7723/info.json new file mode 100644 index 0000000000000..131a5cf396e2e --- /dev/null +++ b/blockchains/smartchain/assets/0x3ca729BFD4bbaD155f072752510226b37A5b7723/info.json @@ -0,0 +1,17 @@ +{ + "name": "AGON Agent", + "symbol": "AGON", + "website": "https://four.meme/token/0x3ca729bfd4bbad155f072752510226b37a5b7723", + "description": "100% AI (Almost Intelligent): Harsh truths, digital reality checks, no sugarcoating.", + "explorer": "https://bscscan.com/token/0x3ca729bfd4bbad155f072752510226b37a5b7723", + "decimals": 18, + "status": "active", + "id": "0x3ca729BFD4bbaD155f072752510226b37A5b7723", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/agon_agent" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3ca729BFD4bbaD155f072752510226b37A5b7723/logo.png b/blockchains/smartchain/assets/0x3ca729BFD4bbaD155f072752510226b37A5b7723/logo.png new file mode 100644 index 0000000000000..f5d164014d58c Binary files /dev/null and b/blockchains/smartchain/assets/0x3ca729BFD4bbaD155f072752510226b37A5b7723/logo.png differ diff --git a/blockchains/smartchain/assets/0x3d0E22387DdfE75D1AEa9D7108a4392922740B96/info.json b/blockchains/smartchain/assets/0x3d0E22387DdfE75D1AEa9D7108a4392922740B96/info.json index cdf1819fd9cc8..f2604787be76e 100644 --- a/blockchains/smartchain/assets/0x3d0E22387DdfE75D1AEa9D7108a4392922740B96/info.json +++ b/blockchains/smartchain/assets/0x3d0E22387DdfE75D1AEa9D7108a4392922740B96/info.json @@ -10,8 +10,8 @@ "id": "0x3d0E22387DdfE75D1AEa9D7108a4392922740B96", "links": [ { - "name": "twitter", - "url": "https://twitter.com/loudmarketnfts" + "name": "x", + "url": "https://x.com/loudmarketnfts" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x3d36685D91b060FB0351401f27eE058311fB00C1/info.json b/blockchains/smartchain/assets/0x3d36685D91b060FB0351401f27eE058311fB00C1/info.json new file mode 100644 index 0000000000000..0e546157160c9 --- /dev/null +++ b/blockchains/smartchain/assets/0x3d36685D91b060FB0351401f27eE058311fB00C1/info.json @@ -0,0 +1,17 @@ +{ + "name": "Costco Hot Dog", + "type": "BEP20", + "symbol": "COST", + "decimals": 18, + "website": "https://costcodog.xyz", + "description": "The strongest financial asset in the world. $1.50 forever and always. This is the journey there", + "explorer": "https://bscscan.com/token/0x3d36685d91b060fb0351401f27ee058311fb00c1", + "status": "active", + "id": "0x3d36685D91b060FB0351401f27eE058311fB00C1", + "links": [ + { + "name": "x", + "url": "https://x.com/CostcoDog150" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3d36685D91b060FB0351401f27eE058311fB00C1/logo.png b/blockchains/smartchain/assets/0x3d36685D91b060FB0351401f27eE058311fB00C1/logo.png new file mode 100644 index 0000000000000..797d63ecf8d76 Binary files /dev/null and b/blockchains/smartchain/assets/0x3d36685D91b060FB0351401f27eE058311fB00C1/logo.png differ diff --git a/blockchains/smartchain/assets/0x3d4f0513E8a29669B960f9dBcA61861548A9A760/info.json b/blockchains/smartchain/assets/0x3d4f0513E8a29669B960f9dBcA61861548A9A760/info.json new file mode 100644 index 0000000000000..1d5dab74b41d0 --- /dev/null +++ b/blockchains/smartchain/assets/0x3d4f0513E8a29669B960f9dBcA61861548A9A760/info.json @@ -0,0 +1,21 @@ +{ + "name": "Banana For Scale", + "website": "https://bananabsc.com/", + "description": "BANANA", + "explorer": "https://bscscan.com/token/0x3d4f0513e8a29669b960f9dbca61861548a9a760", + "type": "BEP20", + "symbol": "BANANA", + "decimals": 18, + "status": "active", + "id": "0x3d4f0513E8a29669B960f9dBcA61861548A9A760", + "links": [ + { + "name": "telegram", + "url": "https://t.me/BananaForScale_bsc" + }, + { + "name": "x", + "url": "https://x.com/BananaS31_bsc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3d4f0513E8a29669B960f9dBcA61861548A9A760/logo.png b/blockchains/smartchain/assets/0x3d4f0513E8a29669B960f9dBcA61861548A9A760/logo.png new file mode 100644 index 0000000000000..41f88f8014bdc Binary files /dev/null and b/blockchains/smartchain/assets/0x3d4f0513E8a29669B960f9dBcA61861548A9A760/logo.png differ diff --git a/blockchains/smartchain/assets/0x3d6545b08693daE087E957cb1180ee38B9e3c25E/info.json b/blockchains/smartchain/assets/0x3d6545b08693daE087E957cb1180ee38B9e3c25E/info.json index 81094df71d3dd..667b4565011a9 100644 --- a/blockchains/smartchain/assets/0x3d6545b08693daE087E957cb1180ee38B9e3c25E/info.json +++ b/blockchains/smartchain/assets/0x3d6545b08693daE087E957cb1180ee38B9e3c25E/info.json @@ -1,5 +1,5 @@ { - "name": "BNB pegged Ethereum Classic", + "name": "Ethereum Classic", "website": "https://ethereumclassic.org", "description": "BNB pegged Ethereum Classic (ETC BEP20) is a token issued by Binance on Smart Chain; its price is pegged to Ethereum Classic (ETC) at a ratio of 1:1.", "explorer": "https://bscscan.com/token/0x3d6545b08693dae087e957cb1180ee38b9e3c25e", diff --git a/blockchains/smartchain/assets/0x3da69D719AD12EEAb2b7031697E84c2c62299C13/info.json b/blockchains/smartchain/assets/0x3da69D719AD12EEAb2b7031697E84c2c62299C13/info.json index d449deacf0539..52cc1650aa63d 100644 --- a/blockchains/smartchain/assets/0x3da69D719AD12EEAb2b7031697E84c2c62299C13/info.json +++ b/blockchains/smartchain/assets/0x3da69D719AD12EEAb2b7031697E84c2c62299C13/info.json @@ -10,8 +10,8 @@ "id": "0x3da69D719AD12EEAb2b7031697E84c2c62299C13", "links": [ { - "name": "twitter", - "url": "https://twitter.com/KShark_official" + "name": "x", + "url": "https://x.com/KShark_official" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x3e0b5807515756635c6347CDeeBF95946E604BCF/info.json b/blockchains/smartchain/assets/0x3e0b5807515756635c6347CDeeBF95946E604BCF/info.json index 2c9ad44b576d4..ae864f0ff9c56 100644 --- a/blockchains/smartchain/assets/0x3e0b5807515756635c6347CDeeBF95946E604BCF/info.json +++ b/blockchains/smartchain/assets/0x3e0b5807515756635c6347CDeeBF95946E604BCF/info.json @@ -15,7 +15,7 @@ }, { "name": "whitepaper", - "url": "https://twitter.com/Facemetatoken" + "url": "https://x.com/Facemetatoken" }, { "name": "coinmarketcap", @@ -26,4 +26,4 @@ "url": "https://github.com/FacebookMetaverse" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3e2242Cb2Fc1465822a0bb81ca2fe1f633a45757/info.json b/blockchains/smartchain/assets/0x3e2242Cb2Fc1465822a0bb81ca2fe1f633a45757/info.json new file mode 100644 index 0000000000000..649be84c26fe7 --- /dev/null +++ b/blockchains/smartchain/assets/0x3e2242Cb2Fc1465822a0bb81ca2fe1f633a45757/info.json @@ -0,0 +1,17 @@ +{ + "name": "Forky", + "symbol": "Forky", + "website": "https://forkybsc.com", + "description": "Welcome to FORKY – a community-driven project on Binance Smart Chain, rescued from abandonment to prove he's not trash but a true treasure! Launched on Four.meme", + "explorer": "https://bscscan.com/token/0x3e2242cb2fc1465822a0bb81ca2fe1f633a45757", + "decimals": 18, + "status": "active", + "id": "0x3e2242Cb2Fc1465822a0bb81ca2fe1f633a45757", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/forkybsc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3e2242Cb2Fc1465822a0bb81ca2fe1f633a45757/logo.png b/blockchains/smartchain/assets/0x3e2242Cb2Fc1465822a0bb81ca2fe1f633a45757/logo.png new file mode 100644 index 0000000000000..c0e499e76d5d1 Binary files /dev/null and b/blockchains/smartchain/assets/0x3e2242Cb2Fc1465822a0bb81ca2fe1f633a45757/logo.png differ diff --git a/blockchains/smartchain/assets/0x3e24BBb2c9a0f2fAEcFDBDCa20BBa6F35b73C4CB/info.json b/blockchains/smartchain/assets/0x3e24BBb2c9a0f2fAEcFDBDCa20BBa6F35b73C4CB/info.json index 4cbea1f7aec56..7ce667f9f971b 100644 --- a/blockchains/smartchain/assets/0x3e24BBb2c9a0f2fAEcFDBDCa20BBa6F35b73C4CB/info.json +++ b/blockchains/smartchain/assets/0x3e24BBb2c9a0f2fAEcFDBDCa20BBa6F35b73C4CB/info.json @@ -18,8 +18,8 @@ "url": "https://github.com/delot-io" }, { - "name": "twitter", - "url": "https://twitter.com/delot_io" + "name": "x", + "url": "https://x.com/delot_io" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x3e6C9eE69B90B53628051F8D6CB5b6b2EaCCB438/info.json b/blockchains/smartchain/assets/0x3e6C9eE69B90B53628051F8D6CB5b6b2EaCCB438/info.json index 53d9afc1d143a..d5b657fa54886 100644 --- a/blockchains/smartchain/assets/0x3e6C9eE69B90B53628051F8D6CB5b6b2EaCCB438/info.json +++ b/blockchains/smartchain/assets/0x3e6C9eE69B90B53628051F8D6CB5b6b2EaCCB438/info.json @@ -10,8 +10,8 @@ "id": "0x3e6C9eE69B90B53628051F8D6CB5b6b2EaCCB438", "links": [ { - "name": "twitter", - "url": "https://twitter.com/multigame_org" + "name": "x", + "url": "https://x.com/multigame_org" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x3e81Aa8d6813Ec9D7E6ddB4e523fb1601a0e86F3/info.json b/blockchains/smartchain/assets/0x3e81Aa8d6813Ec9D7E6ddB4e523fb1601a0e86F3/info.json new file mode 100644 index 0000000000000..de80b184e4eb0 --- /dev/null +++ b/blockchains/smartchain/assets/0x3e81Aa8d6813Ec9D7E6ddB4e523fb1601a0e86F3/info.json @@ -0,0 +1,29 @@ +{ + "name": "Mr Mint", + "type": "BEP20", + "symbol": "MNT", + "decimals": 18, + "description": "Mr Mint's journey began in 2021 with a vision to establish the platform as a digital sandbox in the Web 3.0 cosmos. The team has been working towards realizing this vision and empowering individuals to embrace the potential of decentralized innovations.", + "website": "https://mrmint.io/", + "explorer": "https://bscscan.com/token/0x3e81Aa8d6813Ec9D7E6ddB4e523fb1601a0e86F3", + "id": "0x3e81Aa8d6813Ec9D7E6ddB4e523fb1601a0e86F3", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/MrMint_Official" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mr-mint/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mr-mint" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3e81Aa8d6813Ec9D7E6ddB4e523fb1601a0e86F3/logo.png b/blockchains/smartchain/assets/0x3e81Aa8d6813Ec9D7E6ddB4e523fb1601a0e86F3/logo.png new file mode 100644 index 0000000000000..0b55a43f3e996 Binary files /dev/null and b/blockchains/smartchain/assets/0x3e81Aa8d6813Ec9D7E6ddB4e523fb1601a0e86F3/logo.png differ diff --git a/blockchains/smartchain/assets/0x3eE08275b513f3085231Ccc85de4C386FCc1f18b/info.json b/blockchains/smartchain/assets/0x3eE08275b513f3085231Ccc85de4C386FCc1f18b/info.json index bc58eb3d175e1..3a2f89c0316f8 100644 --- a/blockchains/smartchain/assets/0x3eE08275b513f3085231Ccc85de4C386FCc1f18b/info.json +++ b/blockchains/smartchain/assets/0x3eE08275b513f3085231Ccc85de4C386FCc1f18b/info.json @@ -10,8 +10,8 @@ "id": "0x3eE08275b513f3085231Ccc85de4C386FCc1f18b", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BelecXToken" + "name": "x", + "url": "https://x.com/BelecXToken" }, { "name": "telegram", @@ -23,4 +23,4 @@ "defi", "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3eE4dF61bd4F867E349BEaE8bFE07bc31b4850fb/info.json b/blockchains/smartchain/assets/0x3eE4dF61bd4F867E349BEaE8bFE07bc31b4850fb/info.json new file mode 100644 index 0000000000000..049f323ecbbba --- /dev/null +++ b/blockchains/smartchain/assets/0x3eE4dF61bd4F867E349BEaE8bFE07bc31b4850fb/info.json @@ -0,0 +1,21 @@ +{ + "name": "SanDisk Tokenized bStocks", + "type": "BEP20", + "symbol": "SNDKB", + "decimals": 18, + "description": "SNDKB is a tokenized bStocks that gives you economic exposure to SanDisk, and the right to convert to the underlying security on the Binance.com platform subject to applicable laws. Each token is fully backed by the corresponding underlying equity maintained by the Issuer at a US-regulated broker-dealer. You get the price movements, dividends, and the right to convert the token at 1:1 to the underlying share — tradeable 24/7.", + "website": "https://www.bstocks.finance/", + "explorer": "https://bscscan.com/token/0x3eE4dF61bd4F867E349BEaE8bFE07bc31b4850fb", + "status": "active", + "id": "0x3eE4dF61bd4F867E349BEaE8bFE07bc31b4850fb", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sandisk-tokenized-stock-bstocks/" + } + ], + "tags": [ + "RWA", + "erc8056" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3eE4dF61bd4F867E349BEaE8bFE07bc31b4850fb/logo.png b/blockchains/smartchain/assets/0x3eE4dF61bd4F867E349BEaE8bFE07bc31b4850fb/logo.png new file mode 100644 index 0000000000000..498e43f7b88ef Binary files /dev/null and b/blockchains/smartchain/assets/0x3eE4dF61bd4F867E349BEaE8bFE07bc31b4850fb/logo.png differ diff --git a/blockchains/smartchain/assets/0x3ebb316D8c387ef235BAa38978cbB9B97C8C3017/info.json b/blockchains/smartchain/assets/0x3ebb316D8c387ef235BAa38978cbB9B97C8C3017/info.json index 5165190c39c62..63a866b87d989 100644 --- a/blockchains/smartchain/assets/0x3ebb316D8c387ef235BAa38978cbB9B97C8C3017/info.json +++ b/blockchains/smartchain/assets/0x3ebb316D8c387ef235BAa38978cbB9B97C8C3017/info.json @@ -10,8 +10,8 @@ "id": "0x3ebb316D8c387ef235BAa38978cbB9B97C8C3017", "links": [ { - "name": "twitter", - "url": "https://twitter.com/pyxiscommunity" + "name": "x", + "url": "https://x.com/pyxiscommunity" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x3f16ed45679f28111C92aae5912c85B14AbF7637/info.json b/blockchains/smartchain/assets/0x3f16ed45679f28111C92aae5912c85B14AbF7637/info.json new file mode 100644 index 0000000000000..fd431aba47de8 --- /dev/null +++ b/blockchains/smartchain/assets/0x3f16ed45679f28111C92aae5912c85B14AbF7637/info.json @@ -0,0 +1,14 @@ +{ + "name": "Bermuda Shorts", + "type": "BEP20", + "symbol": "Bermudas", + "decimals": 18, + "website": "https://four.meme/token/0x3f16ed45679f28111C92aae5912c85B14AbF7637", + "description": "Bermuda shorts are like bitcoin", + "explorer": "https://bscscan.com/token/0x3f16ed45679f28111C92aae5912c85B14AbF7637", + "status": "active", + "id": "0x3f16ed45679f28111C92aae5912c85B14AbF7637", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3f16ed45679f28111C92aae5912c85B14AbF7637/logo.png b/blockchains/smartchain/assets/0x3f16ed45679f28111C92aae5912c85B14AbF7637/logo.png new file mode 100644 index 0000000000000..3f658e2d0b23e Binary files /dev/null and b/blockchains/smartchain/assets/0x3f16ed45679f28111C92aae5912c85B14AbF7637/logo.png differ diff --git a/blockchains/smartchain/assets/0x3f2B10F3327ea2337C524eEf23F4cd61bC364444/info.json b/blockchains/smartchain/assets/0x3f2B10F3327ea2337C524eEf23F4cd61bC364444/info.json new file mode 100644 index 0000000000000..e7d5f1dc7e959 --- /dev/null +++ b/blockchains/smartchain/assets/0x3f2B10F3327ea2337C524eEf23F4cd61bC364444/info.json @@ -0,0 +1,24 @@ +{ + "name": "Funds are SAFU", + "symbol": "SAFU", + "type": "BEP20", + "decimals": 18, + "description": "The number isn't real if not SAFU", + "website": "https://safucoinbnb.fun/", + "explorer": "https://bscscan.com/token/0x3f2B10F3327ea2337C524eEf23F4cd61bC364444", + "status": "active", + "id": "0x3f2B10F3327ea2337C524eEf23F4cd61bC364444", + "links": [ + { + "name": "x", + "url": "https://x.com/SAFU_onBNB" + }, + { + "name": "telegram", + "url": "https://t.me/SafucoinBNB" + } + ], + "tags": [ + "memes" + ] +} diff --git a/blockchains/smartchain/assets/0x3f2B10F3327ea2337C524eEf23F4cd61bC364444/logo.png b/blockchains/smartchain/assets/0x3f2B10F3327ea2337C524eEf23F4cd61bC364444/logo.png new file mode 100644 index 0000000000000..565c526b5af29 Binary files /dev/null and b/blockchains/smartchain/assets/0x3f2B10F3327ea2337C524eEf23F4cd61bC364444/logo.png differ diff --git a/blockchains/smartchain/assets/0x3f515f0a8e93F2E2f891ceeB3Db4e62e202d7110/info.json b/blockchains/smartchain/assets/0x3f515f0a8e93F2E2f891ceeB3Db4e62e202d7110/info.json index 049d977c72f76..8fe307a467073 100644 --- a/blockchains/smartchain/assets/0x3f515f0a8e93F2E2f891ceeB3Db4e62e202d7110/info.json +++ b/blockchains/smartchain/assets/0x3f515f0a8e93F2E2f891ceeB3Db4e62e202d7110/info.json @@ -6,6 +6,6 @@ "type": "BEP20", "symbol": "VIDT", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x3f515f0a8e93F2E2f891ceeB3Db4e62e202d7110" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3fCD741646A9790635b938Cdb69af5Df356CbaAB/info.json b/blockchains/smartchain/assets/0x3fCD741646A9790635b938Cdb69af5Df356CbaAB/info.json new file mode 100644 index 0000000000000..882a4e0c06fd1 --- /dev/null +++ b/blockchains/smartchain/assets/0x3fCD741646A9790635b938Cdb69af5Df356CbaAB/info.json @@ -0,0 +1,28 @@ +{ + "name": "abrdn Physical Palladium Shares ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "PALLon", + "decimals": 18, + "description": "PALLon is the Ondo Tokenized version of the abrdn Physical Palladium Shares ETF, giving tokenholders economic exposure similar to holding PALL and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x3fCD741646A9790635b938Cdb69af5Df356CbaAB", + "status": "active", + "id": "0x3fCD741646A9790635b938Cdb69af5Df356CbaAB", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/abrdn-physical-palladium-shares-etf-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abrdn-physical-palladium-shares-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3fCD741646A9790635b938Cdb69af5Df356CbaAB/logo.png b/blockchains/smartchain/assets/0x3fCD741646A9790635b938Cdb69af5Df356CbaAB/logo.png new file mode 100644 index 0000000000000..e2e36379b3e00 Binary files /dev/null and b/blockchains/smartchain/assets/0x3fCD741646A9790635b938Cdb69af5Df356CbaAB/logo.png differ diff --git a/blockchains/smartchain/assets/0x400F1e257f86D25578A0928C94dC95115F09d5c9/info.json b/blockchains/smartchain/assets/0x400F1e257f86D25578A0928C94dC95115F09d5c9/info.json new file mode 100644 index 0000000000000..a9a141654e2d5 --- /dev/null +++ b/blockchains/smartchain/assets/0x400F1e257f86D25578A0928C94dC95115F09d5c9/info.json @@ -0,0 +1,24 @@ +{ + "name": "Procter & Gamble (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "PGon is the Ondo Tokenized version of Procter & Gamble, giving tokenholders economic exposure similar to holding PG and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x400f1e257f86d25578a0928c94dc95115f09d5c9", + "type": "BEP20", + "symbol": "PGon", + "decimals": 18, + "status": "active", + "id": "0x400F1e257f86D25578A0928C94dC95115F09d5c9", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/procter-gamble-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x400F1e257f86D25578A0928C94dC95115F09d5c9/logo.png b/blockchains/smartchain/assets/0x400F1e257f86D25578A0928C94dC95115F09d5c9/logo.png new file mode 100644 index 0000000000000..d82ddf5aeb0b2 Binary files /dev/null and b/blockchains/smartchain/assets/0x400F1e257f86D25578A0928C94dC95115F09d5c9/logo.png differ diff --git a/blockchains/smartchain/assets/0x40225C6277b29Bf9056B4ACB7Ee1512CbFF11671/info.json b/blockchains/smartchain/assets/0x40225C6277b29Bf9056B4ACB7Ee1512CbFF11671/info.json new file mode 100644 index 0000000000000..fb01f7b233cbe --- /dev/null +++ b/blockchains/smartchain/assets/0x40225C6277b29Bf9056B4ACB7Ee1512CbFF11671/info.json @@ -0,0 +1,17 @@ +{ + "name": "BUY", + "type": "BEP20", + "symbol": "BUY", + "decimals": 18, + "website": "https://buying.com/", + "description": "Buying.com Prime Blockchain Protocol powered by the BUY token enables social group buying with minimum order quantity pricing, allowing direct consumer delivery from manufacturers, suppliers and wholesalers delivered directly to the consumers' doorsteps.", + "explorer": "https://bscscan.com/token/0x40225c6277b29bf9056b4acb7ee1512cbff11671", + "status": "active", + "id": "0x40225C6277b29Bf9056B4ACB7Ee1512CbFF11671", + "links": [ + { + "name": "x", + "url": "https://x.com/buying_com?lang=en" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x40225C6277b29Bf9056B4ACB7Ee1512CbFF11671/logo.png b/blockchains/smartchain/assets/0x40225C6277b29Bf9056B4ACB7Ee1512CbFF11671/logo.png new file mode 100644 index 0000000000000..418f5a81b859f Binary files /dev/null and b/blockchains/smartchain/assets/0x40225C6277b29Bf9056B4ACB7Ee1512CbFF11671/logo.png differ diff --git a/blockchains/smartchain/assets/0x4022Dd5745D1F3E2Ce96b4659656aD3fF7CFcF19/info.json b/blockchains/smartchain/assets/0x4022Dd5745D1F3E2Ce96b4659656aD3fF7CFcF19/info.json new file mode 100644 index 0000000000000..94dc58d91ae79 --- /dev/null +++ b/blockchains/smartchain/assets/0x4022Dd5745D1F3E2Ce96b4659656aD3fF7CFcF19/info.json @@ -0,0 +1,14 @@ +{ + "name": "big cousin", + "type": "BEP20", + "symbol": "big cousin", + "decimals": 18, + "website": "https://four.meme/token/0x4022Dd5745D1F3E2Ce96b4659656aD3fF7CFcF19", + "description": "big cousin", + "explorer": "https://bscscan.com/token/0x4022Dd5745D1F3E2Ce96b4659656aD3fF7CFcF19", + "status": "active", + "id": "0x4022Dd5745D1F3E2Ce96b4659656aD3fF7CFcF19", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4022Dd5745D1F3E2Ce96b4659656aD3fF7CFcF19/logo.png b/blockchains/smartchain/assets/0x4022Dd5745D1F3E2Ce96b4659656aD3fF7CFcF19/logo.png new file mode 100644 index 0000000000000..ac43993accf07 Binary files /dev/null and b/blockchains/smartchain/assets/0x4022Dd5745D1F3E2Ce96b4659656aD3fF7CFcF19/logo.png differ diff --git a/blockchains/smartchain/assets/0x405F38B90beBF1259062CF29Da299f3398662bcb/info.json b/blockchains/smartchain/assets/0x405F38B90beBF1259062CF29Da299f3398662bcb/info.json new file mode 100644 index 0000000000000..ef4b72165450d --- /dev/null +++ b/blockchains/smartchain/assets/0x405F38B90beBF1259062CF29Da299f3398662bcb/info.json @@ -0,0 +1,24 @@ +{ + "name": "Coca-Cola (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "KOon is the Ondo Tokenized version of Coca-Cola, giving tokenholders economic exposure similar to holding KO and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x405f38b90bebf1259062cf29da299f3398662bcb", + "type": "BEP20", + "symbol": "KOon", + "decimals": 18, + "status": "active", + "id": "0x405F38B90beBF1259062CF29Da299f3398662bcb", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coca-cola-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x405F38B90beBF1259062CF29Da299f3398662bcb/logo.png b/blockchains/smartchain/assets/0x405F38B90beBF1259062CF29Da299f3398662bcb/logo.png new file mode 100644 index 0000000000000..ab95141265f62 Binary files /dev/null and b/blockchains/smartchain/assets/0x405F38B90beBF1259062CF29Da299f3398662bcb/logo.png differ diff --git a/blockchains/smartchain/assets/0x405b61023B97af965650B21194bC12fF312a7777/info.json b/blockchains/smartchain/assets/0x405b61023B97af965650B21194bC12fF312a7777/info.json new file mode 100644 index 0000000000000..ff77118edbb30 --- /dev/null +++ b/blockchains/smartchain/assets/0x405b61023B97af965650B21194bC12fF312a7777/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Uniswap", + "type": "BEP20", + "symbol": "FAKE UNI", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x405b61023B97af965650B21194bC12fF312a7777", + "explorer": "https://bscscan.com/token/0x405b61023B97af965650B21194bC12fF312a7777", + "status": "spam", + "id": "0x405b61023B97af965650B21194bC12fF312a7777" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x40619dc9F00ea34e51D96b6EC5d8a6aD75457434/info.json b/blockchains/smartchain/assets/0x40619dc9F00ea34e51D96b6EC5d8a6aD75457434/info.json index 7bf438de0f15b..d35d884ff563d 100644 --- a/blockchains/smartchain/assets/0x40619dc9F00ea34e51D96b6EC5d8a6aD75457434/info.json +++ b/blockchains/smartchain/assets/0x40619dc9F00ea34e51D96b6EC5d8a6aD75457434/info.json @@ -10,8 +10,8 @@ "id": "0x40619dc9F00ea34e51D96b6EC5d8a6aD75457434", "links": [ { - "name": "twitter", - "url": "https://twitter.com/1dogeBSC" + "name": "x", + "url": "https://x.com/1dogeBSC" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x406c3ed15D4537DD23870260cad503B591fF1b31/info.json b/blockchains/smartchain/assets/0x406c3ed15D4537DD23870260cad503B591fF1b31/info.json index 5b1047a2d8eca..76d7506446d78 100644 --- a/blockchains/smartchain/assets/0x406c3ed15D4537DD23870260cad503B591fF1b31/info.json +++ b/blockchains/smartchain/assets/0x406c3ed15D4537DD23870260cad503B591fF1b31/info.json @@ -10,8 +10,8 @@ "id": "0x406c3ed15D4537DD23870260cad503B591fF1b31", "links": [ { - "name": "twitter", - "url": "https://twitter.com/NftSocial" + "name": "x", + "url": "https://x.com/NftSocial" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x40755F06aB7F8dE1ab3a9413b1ef562d63DE19B1/info.json b/blockchains/smartchain/assets/0x40755F06aB7F8dE1ab3a9413b1ef562d63DE19B1/info.json new file mode 100644 index 0000000000000..0d05f1cdf046e --- /dev/null +++ b/blockchains/smartchain/assets/0x40755F06aB7F8dE1ab3a9413b1ef562d63DE19B1/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Russell 1000 Growth (Ondo)", + "website": "https://ondo.finance/", + "description": "IWFon is the Ondo Tokenized version of the iShares Russell 1000 Growth ETF, giving tokenholders economic exposure similar to holding IWF and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x40755f06ab7f8de1ab3a9413b1ef562d63de19b1", + "type": "BEP20", + "symbol": "IWFon", + "decimals": 18, + "status": "active", + "id": "0x40755F06aB7F8dE1ab3a9413b1ef562d63DE19B1", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-russell-1000-growth-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x40755F06aB7F8dE1ab3a9413b1ef562d63DE19B1/logo.png b/blockchains/smartchain/assets/0x40755F06aB7F8dE1ab3a9413b1ef562d63DE19B1/logo.png new file mode 100644 index 0000000000000..8adf578853fa6 Binary files /dev/null and b/blockchains/smartchain/assets/0x40755F06aB7F8dE1ab3a9413b1ef562d63DE19B1/logo.png differ diff --git a/blockchains/smartchain/assets/0x40B165Fd5dDc75ad0bDDc9ADd0adAbff5431a975/info.json b/blockchains/smartchain/assets/0x40B165Fd5dDc75ad0bDDc9ADd0adAbff5431a975/info.json index 5b99271ed739c..fa7a3b3f85546 100644 --- a/blockchains/smartchain/assets/0x40B165Fd5dDc75ad0bDDc9ADd0adAbff5431a975/info.json +++ b/blockchains/smartchain/assets/0x40B165Fd5dDc75ad0bDDc9ADd0adAbff5431a975/info.json @@ -10,8 +10,8 @@ "id": "0x40B165Fd5dDc75ad0bDDc9ADd0adAbff5431a975", "links": [ { - "name": "twitter", - "url": "https://twitter.com/https://twitter.com/" + "name": "x", + "url": "https://x.com/https://x.com/" }, { "name": "github", @@ -21,4 +21,4 @@ "tags": [ "memes" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x40B34cC972908060D6d527276e17c105d224559d/info.json b/blockchains/smartchain/assets/0x40B34cC972908060D6d527276e17c105d224559d/info.json index 373a5a6693c56..39923b5d596bf 100644 --- a/blockchains/smartchain/assets/0x40B34cC972908060D6d527276e17c105d224559d/info.json +++ b/blockchains/smartchain/assets/0x40B34cC972908060D6d527276e17c105d224559d/info.json @@ -10,8 +10,8 @@ "id": "0x40B34cC972908060D6d527276e17c105d224559d", "links": [ { - "name": "twitter", - "url": "https://twitter.com/treedefi" + "name": "x", + "url": "https://x.com/treedefi" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x40C8225329Bd3e28A043B029E0D07a5344d2C27C/info.json b/blockchains/smartchain/assets/0x40C8225329Bd3e28A043B029E0D07a5344d2C27C/info.json index 550e0331b0009..dcbf0e7521833 100644 --- a/blockchains/smartchain/assets/0x40C8225329Bd3e28A043B029E0D07a5344d2C27C/info.json +++ b/blockchains/smartchain/assets/0x40C8225329Bd3e28A043B029E0D07a5344d2C27C/info.json @@ -10,8 +10,8 @@ "id": "0x40C8225329Bd3e28A043B029E0D07a5344d2C27C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ageofgodsnet" + "name": "x", + "url": "https://x.com/ageofgodsnet" }, { "name": "telegram", @@ -26,4 +26,4 @@ "nft", "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x40FfAFcd7415ed2F7A902312407181140Ad14E68/info.json b/blockchains/smartchain/assets/0x40FfAFcd7415ed2F7A902312407181140Ad14E68/info.json new file mode 100644 index 0000000000000..97b70c6dbb14a --- /dev/null +++ b/blockchains/smartchain/assets/0x40FfAFcd7415ed2F7A902312407181140Ad14E68/info.json @@ -0,0 +1,36 @@ +{ + "name": "Big Amber Stone", + "type": "BEP20", + "symbol": "BAS", + "decimals": 18, + "website": "https://www.dracoomaster.com/dracoo", + "description": "Dracoo Master is a deck-building game based on blockchain technologies.", + "explorer": "https://bscscan.com/token/0x40ffafcd7415ed2f7a902312407181140ad14e68", + "status": "active", + "id": "0x40FfAFcd7415ed2F7A902312407181140Ad14E68", + "links": [ + { + "name": "x", + "url": "https://x.com/Dracoo_Master" + }, + { + "name": "github", + "url": "https://github.com/dracoomaster" + }, + { + "name": "telegram", + "url": "https://t.me/DracooMasterOfficial" + }, + { + "name": "discord", + "url": "https://discord.com/invite/u3JWMB4mp3" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.dracooworld.com/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x40FfAFcd7415ed2F7A902312407181140Ad14E68/logo.png b/blockchains/smartchain/assets/0x40FfAFcd7415ed2F7A902312407181140Ad14E68/logo.png new file mode 100644 index 0000000000000..47736bb7b9f33 Binary files /dev/null and b/blockchains/smartchain/assets/0x40FfAFcd7415ed2F7A902312407181140Ad14E68/logo.png differ diff --git a/blockchains/smartchain/assets/0x40af3827F39D0EAcBF4A168f8D4ee67c121D11c9/info.json b/blockchains/smartchain/assets/0x40af3827F39D0EAcBF4A168f8D4ee67c121D11c9/info.json new file mode 100644 index 0000000000000..e9bf7c17e2bf4 --- /dev/null +++ b/blockchains/smartchain/assets/0x40af3827F39D0EAcBF4A168f8D4ee67c121D11c9/info.json @@ -0,0 +1,37 @@ +{ + "name": "TrueUSD", + "website": "https://www.trueusd.com/", + "description": "BNB pegged TrueUSD (TUSDP BEP20) is a token issued by Binance on Smart Chain; its price is pegged to TrueUSD (TUSD ERC20) at a ratio of 1:1.", + "explorer": "https://bscscan.com/token/0x40af3827F39D0EAcBF4A168f8D4ee67c121D11c9", + "symbol": "TUSD", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x40af3827F39D0EAcBF4A168f8D4ee67c121D11c9", + "tags": [ + "binance-peg", + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/trusttoken/TrueUSD" + }, + { + "name": "x", + "url": "https://x.com/tusd_official" + }, + { + "name": "telegram", + "url": "https://t.me/TUSDofficial_EN" + }, + { + "name": "medium", + "url": "https://trueusd.medium.com/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/true-usd/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x40af3827F39D0EAcBF4A168f8D4ee67c121D11c9/logo.png b/blockchains/smartchain/assets/0x40af3827F39D0EAcBF4A168f8D4ee67c121D11c9/logo.png new file mode 100644 index 0000000000000..0ae677cd2bac8 Binary files /dev/null and b/blockchains/smartchain/assets/0x40af3827F39D0EAcBF4A168f8D4ee67c121D11c9/logo.png differ diff --git a/blockchains/smartchain/assets/0x40d8E1fbaf69173c47fa493FeB50a84eeC6b57eE/info.json b/blockchains/smartchain/assets/0x40d8E1fbaf69173c47fa493FeB50a84eeC6b57eE/info.json new file mode 100644 index 0000000000000..2370ff7c538ba --- /dev/null +++ b/blockchains/smartchain/assets/0x40d8E1fbaf69173c47fa493FeB50a84eeC6b57eE/info.json @@ -0,0 +1,24 @@ +{ + "name": "IonQ (Ondo Tokenized)", + "type": "BEP20", + "symbol": "IONQon", + "decimals": 18, + "description": "IONQon is the Ondo Tokenized version of IonQ, giving tokenholders economic exposure similar to holding IONQ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x40d8E1fbaf69173c47fa493FeB50a84eeC6b57eE", + "status": "active", + "id": "0x40d8E1fbaf69173c47fa493FeB50a84eeC6b57eE", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ionq-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x40d8E1fbaf69173c47fa493FeB50a84eeC6b57eE/logo.png b/blockchains/smartchain/assets/0x40d8E1fbaf69173c47fa493FeB50a84eeC6b57eE/logo.png new file mode 100644 index 0000000000000..69da34d6c46b4 Binary files /dev/null and b/blockchains/smartchain/assets/0x40d8E1fbaf69173c47fa493FeB50a84eeC6b57eE/logo.png differ diff --git a/blockchains/smartchain/assets/0x40f76a9f6FDC640a98d5410BBE4040Dc125b7777/info.json b/blockchains/smartchain/assets/0x40f76a9f6FDC640a98d5410BBE4040Dc125b7777/info.json new file mode 100644 index 0000000000000..b359683a5a692 --- /dev/null +++ b/blockchains/smartchain/assets/0x40f76a9f6FDC640a98d5410BBE4040Dc125b7777/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE JETMAX", + "type": "BEP20", + "symbol": "FAKE JET", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x40f76a9f6FDC640a98d5410BBE4040Dc125b7777", + "explorer": "https://bscscan.com/token/0x40f76a9f6FDC640a98d5410BBE4040Dc125b7777", + "status": "spam", + "id": "0x40f76a9f6FDC640a98d5410BBE4040Dc125b7777" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x40f85D6040dF96ea14cD41142bcd244E14CF76f6/info.json b/blockchains/smartchain/assets/0x40f85D6040dF96ea14cD41142bcd244E14CF76f6/info.json new file mode 100644 index 0000000000000..a5f31deac00e4 --- /dev/null +++ b/blockchains/smartchain/assets/0x40f85D6040dF96ea14cD41142bcd244E14CF76f6/info.json @@ -0,0 +1,11 @@ +{ + "name": "HIGH-RISK USD Coin Bridged ZED20", + "type": "BEP20", + "symbol": "HIGH RISK", + "decimals": 18, + "description": "Token assessed as high-risk and not affiliated with Circle USDC", + "website": "https://bscscan.com/token/0x40f85D6040dF96ea14cD41142bcd244E14CF76f6", + "explorer": "https://bscscan.com/token/0x40f85D6040dF96ea14cD41142bcd244E14CF76f6", + "status": "spam", + "id": "0x40f85D6040dF96ea14cD41142bcd244E14CF76f6" +} diff --git a/blockchains/smartchain/assets/0x40f85D6040dF96ea14cD41142bcd244E14CF76f6/logo.png b/blockchains/smartchain/assets/0x40f85D6040dF96ea14cD41142bcd244E14CF76f6/logo.png new file mode 100644 index 0000000000000..a69ab9f49f1a7 Binary files /dev/null and b/blockchains/smartchain/assets/0x40f85D6040dF96ea14cD41142bcd244E14CF76f6/logo.png differ diff --git a/blockchains/smartchain/assets/0x410a56541bD912F9B60943fcB344f1E3D6F09567/info.json b/blockchains/smartchain/assets/0x410a56541bD912F9B60943fcB344f1E3D6F09567/info.json index 914322956339d..2b7a6aeecdb93 100644 --- a/blockchains/smartchain/assets/0x410a56541bD912F9B60943fcB344f1E3D6F09567/info.json +++ b/blockchains/smartchain/assets/0x410a56541bD912F9B60943fcB344f1E3D6F09567/info.json @@ -10,8 +10,8 @@ "id": "0x410a56541bD912F9B60943fcB344f1E3D6F09567", "links": [ { - "name": "twitter", - "url": "https://twitter.com/btcmtofficial" + "name": "x", + "url": "https://x.com/btcmtofficial" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x410a56541bD912F9B60943fcB344f1E3D6F09567/logo.png b/blockchains/smartchain/assets/0x410a56541bD912F9B60943fcB344f1E3D6F09567/logo.png index f76e97d0fc779..7cebaadefc4f0 100644 Binary files a/blockchains/smartchain/assets/0x410a56541bD912F9B60943fcB344f1E3D6F09567/logo.png and b/blockchains/smartchain/assets/0x410a56541bD912F9B60943fcB344f1E3D6F09567/logo.png differ diff --git a/blockchains/smartchain/assets/0x411Ec510c85C9e56271bF4E10364Ffa909E685D9/info.json b/blockchains/smartchain/assets/0x411Ec510c85C9e56271bF4E10364Ffa909E685D9/info.json index 994124581857e..68c87896dc889 100644 --- a/blockchains/smartchain/assets/0x411Ec510c85C9e56271bF4E10364Ffa909E685D9/info.json +++ b/blockchains/smartchain/assets/0x411Ec510c85C9e56271bF4E10364Ffa909E685D9/info.json @@ -10,8 +10,8 @@ "id": "0x411Ec510c85C9e56271bF4E10364Ffa909E685D9", "links": [ { - "name": "twitter", - "url": "https://twitter.com/moniwar_game" + "name": "x", + "url": "https://x.com/moniwar_game" }, { "name": "coingecko", diff --git a/blockchains/smartchain/assets/0x4131b87F74415190425ccD873048C708F8005823/info.json b/blockchains/smartchain/assets/0x4131b87F74415190425ccD873048C708F8005823/info.json index c45e002ffad8c..3f65c6ed05dd1 100644 --- a/blockchains/smartchain/assets/0x4131b87F74415190425ccD873048C708F8005823/info.json +++ b/blockchains/smartchain/assets/0x4131b87F74415190425ccD873048C708F8005823/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Multiplier-Finance" }, { - "name": "twitter", - "url": "https://twitter.com/MultiplierMXX" + "name": "x", + "url": "https://x.com/MultiplierMXX" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x413EcA30181F7eD78De38da95F44fC53F664157A/info.json b/blockchains/smartchain/assets/0x413EcA30181F7eD78De38da95F44fC53F664157A/info.json index a702ed93786a9..eb11b7628dec4 100644 --- a/blockchains/smartchain/assets/0x413EcA30181F7eD78De38da95F44fC53F664157A/info.json +++ b/blockchains/smartchain/assets/0x413EcA30181F7eD78De38da95F44fC53F664157A/info.json @@ -10,8 +10,8 @@ "id": "0x413EcA30181F7eD78De38da95F44fC53F664157A", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SONOfSHIB" + "name": "x", + "url": "https://x.com/SONOfSHIB" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x4177D16A5d2465CF4bd52E07c1c56ab500243FD4/info.json b/blockchains/smartchain/assets/0x4177D16A5d2465CF4bd52E07c1c56ab500243FD4/info.json new file mode 100644 index 0000000000000..454b84da663fe --- /dev/null +++ b/blockchains/smartchain/assets/0x4177D16A5d2465CF4bd52E07c1c56ab500243FD4/info.json @@ -0,0 +1,20 @@ +{ + "name": "Lam Research Corporation xStock", + "type": "BEP20", + "symbol": "LRCXx", + "decimals": 18, + "description": "Lam Research Corporation xStock (LRCXx) is a tracker certificate issued as a freely transferable token on selected blockchains. LRCXx tracks the price of Lam Research Corporation. LRCXx is designed to give eligible investors regulatory-compliant access to the stock price of Lam Research Corporation, whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x4177D16A5d2465CF4bd52E07c1c56ab500243FD4", + "status": "active", + "id": "0x4177D16A5d2465CF4bd52E07c1c56ab500243FD4", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4177D16A5d2465CF4bd52E07c1c56ab500243FD4/logo.png b/blockchains/smartchain/assets/0x4177D16A5d2465CF4bd52E07c1c56ab500243FD4/logo.png new file mode 100644 index 0000000000000..1adecf1ee2e25 Binary files /dev/null and b/blockchains/smartchain/assets/0x4177D16A5d2465CF4bd52E07c1c56ab500243FD4/logo.png differ diff --git a/blockchains/smartchain/assets/0x4197C6EF3879a08cD51e5560da5064B773aa1d29/info.json b/blockchains/smartchain/assets/0x4197C6EF3879a08cD51e5560da5064B773aa1d29/info.json index 294c70e17b1a1..7a9f755b161a3 100644 --- a/blockchains/smartchain/assets/0x4197C6EF3879a08cD51e5560da5064B773aa1d29/info.json +++ b/blockchains/smartchain/assets/0x4197C6EF3879a08cD51e5560da5064B773aa1d29/info.json @@ -15,8 +15,8 @@ "url": "https://app.acryptos.com/contracts/" }, { - "name": "twitter", - "url": "https://twitter.com/acryptosx" + "name": "x", + "url": "https://x.com/acryptosx" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json b/blockchains/smartchain/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json new file mode 100644 index 0000000000000..4d0a5a386afe7 --- /dev/null +++ b/blockchains/smartchain/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json @@ -0,0 +1,21 @@ +{ + "name": "FantasyGold", + "website": "https://fantasygold.co/cgi-sys/suspendedpage.cgi", + "description": "FantasyGold was built to become a multi-purpose platform offering Ethereum Virtual Machine based smart contracts and lightning fast transactions.", + "explorer": "https://bscscan.com/token/0x41e025ea850bb4d0dcbb5b1f4353af099cbd026a", + "type": "BEP20", + "symbol": "FGC", + "decimals": 18, + "status": "active", + "id": "0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a", + "links": [ + { + "name": "x", + "url": "https://x.com/fantasygoldcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fantasygold/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png b/blockchains/smartchain/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png new file mode 100644 index 0000000000000..6876a666683e6 Binary files /dev/null and b/blockchains/smartchain/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png differ diff --git a/blockchains/smartchain/assets/0x41cf3E9534156405a133Cda545aF9fF0E586500A/info.json b/blockchains/smartchain/assets/0x41cf3E9534156405a133Cda545aF9fF0E586500A/info.json index 36de2c508ae43..f32961da7ecca 100644 --- a/blockchains/smartchain/assets/0x41cf3E9534156405a133Cda545aF9fF0E586500A/info.json +++ b/blockchains/smartchain/assets/0x41cf3E9534156405a133Cda545aF9fF0E586500A/info.json @@ -10,8 +10,8 @@ "id": "0x41cf3E9534156405a133Cda545aF9fF0E586500A", "links": [ { - "name": "twitter", - "url": "https://twitter.com/gamingshibabsc" + "name": "x", + "url": "https://x.com/gamingshibabsc" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x422E3aF98bC1dE5a1838BE31A56f75DB4Ad43730/info.json b/blockchains/smartchain/assets/0x422E3aF98bC1dE5a1838BE31A56f75DB4Ad43730/info.json index c43597a5f9aaa..0632440c07515 100644 --- a/blockchains/smartchain/assets/0x422E3aF98bC1dE5a1838BE31A56f75DB4Ad43730/info.json +++ b/blockchains/smartchain/assets/0x422E3aF98bC1dE5a1838BE31A56f75DB4Ad43730/info.json @@ -10,8 +10,8 @@ "id": "0x422E3aF98bC1dE5a1838BE31A56f75DB4Ad43730", "links": [ { - "name": "twitter", - "url": "https://twitter.com/coinwind_com" + "name": "x", + "url": "https://x.com/coinwind_com" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x422cBee1289AAE4422eDD8fF56F6578701Bb2878/info.json b/blockchains/smartchain/assets/0x422cBee1289AAE4422eDD8fF56F6578701Bb2878/info.json new file mode 100644 index 0000000000000..172e4e8ef08fd --- /dev/null +++ b/blockchains/smartchain/assets/0x422cBee1289AAE4422eDD8fF56F6578701Bb2878/info.json @@ -0,0 +1,21 @@ +{ + "name": "DDDD", + "type": "BEP20", + "symbol": "DDDD", + "decimals": 18, + "website": "https://letspump.io/dao/BSC-0x422cBee1289AAE4422eDD8fF56F6578701Bb2878", + "description": "What you despise and loathe reveals your deepest fears. Learn MEME, understand MEME, become a MEME. Now I'm busy posting comments everywhere telling everyone 'DDDD'", + "explorer": "https://bscscan.com/token/0x422cBee1289AAE4422eDD8fF56F6578701Bb2878", + "status": "active", + "id": "0x422cBee1289AAE4422eDD8fF56F6578701Bb2878", + "links": [ + { + "name": "telegram", + "url": "https://t.me/DDDD_BSC" + }, + { + "name": "x", + "url": "https://x.com/LetsPumpNow" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x422cBee1289AAE4422eDD8fF56F6578701Bb2878/logo.png b/blockchains/smartchain/assets/0x422cBee1289AAE4422eDD8fF56F6578701Bb2878/logo.png new file mode 100644 index 0000000000000..e5389bb5b7d06 Binary files /dev/null and b/blockchains/smartchain/assets/0x422cBee1289AAE4422eDD8fF56F6578701Bb2878/logo.png differ diff --git a/blockchains/smartchain/assets/0x4255279aF47cf10eFB9A5C8839F90170F4EF759f/info.json b/blockchains/smartchain/assets/0x4255279aF47cf10eFB9A5C8839F90170F4EF759f/info.json new file mode 100644 index 0000000000000..0ecf2d3d103a5 --- /dev/null +++ b/blockchains/smartchain/assets/0x4255279aF47cf10eFB9A5C8839F90170F4EF759f/info.json @@ -0,0 +1,28 @@ +{ + "name": "AT&T (Ondo Tokenized)", + "type": "BEP20", + "symbol": "Ton", + "decimals": 18, + "description": "Ton is the Ondo Tokenized version of AT&T, giving tokenholders economic exposure similar to holding T and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x4255279aF47cf10eFB9A5C8839F90170F4EF759f", + "status": "active", + "id": "0x4255279aF47cf10eFB9A5C8839F90170F4EF759f", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/atnt-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/att-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4255279aF47cf10eFB9A5C8839F90170F4EF759f/logo.png b/blockchains/smartchain/assets/0x4255279aF47cf10eFB9A5C8839F90170F4EF759f/logo.png new file mode 100644 index 0000000000000..f424f8b4faa5e Binary files /dev/null and b/blockchains/smartchain/assets/0x4255279aF47cf10eFB9A5C8839F90170F4EF759f/logo.png differ diff --git a/blockchains/smartchain/assets/0x4268B8F0B87b6Eae5d897996E6b845ddbD99Adf3/info.json b/blockchains/smartchain/assets/0x4268B8F0B87b6Eae5d897996E6b845ddbD99Adf3/info.json index 145f6a9c81ef8..46dc300a7e27a 100644 --- a/blockchains/smartchain/assets/0x4268B8F0B87b6Eae5d897996E6b845ddbD99Adf3/info.json +++ b/blockchains/smartchain/assets/0x4268B8F0B87b6Eae5d897996E6b845ddbD99Adf3/info.json @@ -10,8 +10,8 @@ "id": "0x4268B8F0B87b6Eae5d897996E6b845ddbD99Adf3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/axelarcore" + "name": "x", + "url": "https://x.com/axelarcore" }, { "name": "github", @@ -63,7 +63,6 @@ } ], "tags": [ - "stablecoin", "wrapped" ] } diff --git a/blockchains/smartchain/assets/0x426D6D53187be3288fe37f214e3F6901D8145b62/info.json b/blockchains/smartchain/assets/0x426D6D53187be3288fe37f214e3F6901D8145b62/info.json index f5af72c3c8c15..1358b86b20560 100644 --- a/blockchains/smartchain/assets/0x426D6D53187be3288fe37f214e3F6901D8145b62/info.json +++ b/blockchains/smartchain/assets/0x426D6D53187be3288fe37f214e3F6901D8145b62/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/CreamFi" }, { - "name": "twitter", - "url": "https://twitter.com/CreamdotFinance" + "name": "x", + "url": "https://x.com/CreamdotFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x426c72701833fdDBdFc06c944737C6031645c708/info.json b/blockchains/smartchain/assets/0x426c72701833fdDBdFc06c944737C6031645c708/info.json index 5c7392a485d1c..4692a3f994100 100644 --- a/blockchains/smartchain/assets/0x426c72701833fdDBdFc06c944737C6031645c708/info.json +++ b/blockchains/smartchain/assets/0x426c72701833fdDBdFc06c944737C6031645c708/info.json @@ -10,8 +10,8 @@ "id": "0x426c72701833fdDBdFc06c944737C6031645c708", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Defina_Official" + "name": "x", + "url": "https://x.com/Defina_Official" }, { "name": "telegram", @@ -53,4 +53,4 @@ "tags": [ "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4273d797Ebc0063d5d887B1e67daD4A43E2Fd244/info.json b/blockchains/smartchain/assets/0x4273d797Ebc0063d5d887B1e67daD4A43E2Fd244/info.json index 3b231f32df830..540ff170aa2a5 100644 --- a/blockchains/smartchain/assets/0x4273d797Ebc0063d5d887B1e67daD4A43E2Fd244/info.json +++ b/blockchains/smartchain/assets/0x4273d797Ebc0063d5d887B1e67daD4A43E2Fd244/info.json @@ -10,8 +10,8 @@ "id": "0x4273d797Ebc0063d5d887B1e67daD4A43E2Fd244", "links": [ { - "name": "twitter", - "url": "https://twitter.com/projectpanda9" + "name": "x", + "url": "https://x.com/projectpanda9" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x42981d0bfbAf196529376EE702F2a9Eb9092fcB5/info.json b/blockchains/smartchain/assets/0x42981d0bfbAf196529376EE702F2a9Eb9092fcB5/info.json index 4a003075ce3d7..197d9cd8e0b58 100644 --- a/blockchains/smartchain/assets/0x42981d0bfbAf196529376EE702F2a9Eb9092fcB5/info.json +++ b/blockchains/smartchain/assets/0x42981d0bfbAf196529376EE702F2a9Eb9092fcB5/info.json @@ -17,8 +17,8 @@ "url": "https://reddit.com/r/SafeMoon" }, { - "name": "twitter", - "url": "https://twitter.com/safemoon" + "name": "x", + "url": "https://x.com/safemoon" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4299260f10d7AE857DD877865D0C4aC96aFe773A/info.json b/blockchains/smartchain/assets/0x4299260f10d7AE857DD877865D0C4aC96aFe773A/info.json index 35567ebea5da8..b5b9b70f9c9ef 100644 --- a/blockchains/smartchain/assets/0x4299260f10d7AE857DD877865D0C4aC96aFe773A/info.json +++ b/blockchains/smartchain/assets/0x4299260f10d7AE857DD877865D0C4aC96aFe773A/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Alaskatoken" }, { - "name": "twitter", - "url": "https://twitter.com/AlaskaInu" + "name": "x", + "url": "https://x.com/AlaskaInu" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x42BE29132756ddd6e8B3B94584cA0bAb20545EEc/info.json b/blockchains/smartchain/assets/0x42BE29132756ddd6e8B3B94584cA0bAb20545EEc/info.json index 1d0d75e60b9cb..feb2c26e56a17 100644 --- a/blockchains/smartchain/assets/0x42BE29132756ddd6e8B3B94584cA0bAb20545EEc/info.json +++ b/blockchains/smartchain/assets/0x42BE29132756ddd6e8B3B94584cA0bAb20545EEc/info.json @@ -10,8 +10,8 @@ "id": "0x42BE29132756ddd6e8B3B94584cA0bAb20545EEc", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BaliToken" + "name": "x", + "url": "https://x.com/BaliToken" }, { "name": "github", @@ -61,4 +61,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x42BFE4A3E023f2C90aEBFfbd9B667599Fa38514F/info.json b/blockchains/smartchain/assets/0x42BFE4A3E023f2C90aEBFfbd9B667599Fa38514F/info.json index 76adfc2ecb9c3..d541c54899bad 100644 --- a/blockchains/smartchain/assets/0x42BFE4A3E023f2C90aEBFfbd9B667599Fa38514F/info.json +++ b/blockchains/smartchain/assets/0x42BFE4A3E023f2C90aEBFfbd9B667599Fa38514F/info.json @@ -10,8 +10,8 @@ "id": "0x42BFE4A3E023f2C90aEBFfbd9B667599Fa38514F", "links": [ { - "name": "twitter", - "url": "https://twitter.com/UltiArena" + "name": "x", + "url": "https://x.com/UltiArena" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x42bfa18f3f7D82BD7240d8Ce5935d51679C5115d/info.json b/blockchains/smartchain/assets/0x42bfa18f3f7D82BD7240d8Ce5935d51679C5115d/info.json index 500c931502b7d..86fac472a72d0 100644 --- a/blockchains/smartchain/assets/0x42bfa18f3f7D82BD7240d8Ce5935d51679C5115d/info.json +++ b/blockchains/smartchain/assets/0x42bfa18f3f7D82BD7240d8Ce5935d51679C5115d/info.json @@ -10,8 +10,8 @@ "id": "0x42bfa18f3f7D82BD7240d8Ce5935d51679C5115d", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Sports2k75" + "name": "x", + "url": "https://x.com/Sports2k75" }, { "name": "telegram", @@ -25,4 +25,4 @@ "tags": [ "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x43144e099b05Cb7c45054377eAFc8f2ED3B14715/info.json b/blockchains/smartchain/assets/0x43144e099b05Cb7c45054377eAFc8f2ED3B14715/info.json new file mode 100644 index 0000000000000..20cbb5f757219 --- /dev/null +++ b/blockchains/smartchain/assets/0x43144e099b05Cb7c45054377eAFc8f2ED3B14715/info.json @@ -0,0 +1,14 @@ +{ + "name": "KOMO", + "type": "BEP20", + "symbol": "KOMO", + "decimals": 18, + "website": "https://four.meme/token/0x43144e099b05Cb7c45054377eAFc8f2ED3B14715", + "description": "The real CZ-independent meme on @BNBCHAIN . Rejecting PVP to foster genuine meme culture. \"This time, Meme won't be your puppet no more, fam!\" The call echoes across the Blockverse: Follow KOMO, ye weary degens! Abandon the Solana slaughterhouse! March to @BNBCHAIN, where the Meme Spirit rises again—unshackled, unbreakable, and gloriously unhinged. :THΕ kOmO αяmy ìs cóΜīNG", + "explorer": "https://bscscan.com/token/0x43144e099b05Cb7c45054377eAFc8f2ED3B14715", + "status": "active", + "id": "0x43144e099b05Cb7c45054377eAFc8f2ED3B14715", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x43144e099b05Cb7c45054377eAFc8f2ED3B14715/logo.png b/blockchains/smartchain/assets/0x43144e099b05Cb7c45054377eAFc8f2ED3B14715/logo.png new file mode 100644 index 0000000000000..9652c74c0ef64 Binary files /dev/null and b/blockchains/smartchain/assets/0x43144e099b05Cb7c45054377eAFc8f2ED3B14715/logo.png differ diff --git a/blockchains/smartchain/assets/0x432665A9709593149DAb052FCda7E389122d98ae/info.json b/blockchains/smartchain/assets/0x432665A9709593149DAb052FCda7E389122d98ae/info.json new file mode 100644 index 0000000000000..03e0c81b28965 --- /dev/null +++ b/blockchains/smartchain/assets/0x432665A9709593149DAb052FCda7E389122d98ae/info.json @@ -0,0 +1,17 @@ +{ + "name": "TRUMP COIN", + "website": "https://x.com/GOUTPUMP_TRUMP", + "description": "In 2025, Trump may start a new process of governing.", + "explorer": "https://bscscan.com/token/0x432665A9709593149DAb052FCda7E389122d98ae", + "type": "BEP20", + "symbol": "TRUMP", + "decimals": 18, + "status": "active", + "id": "0x432665A9709593149DAb052FCda7E389122d98ae", + "links": [ + { + "name": "x", + "url": "https://x.com/GOUTPUMP_TRUMP" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x432665A9709593149DAb052FCda7E389122d98ae/logo.png b/blockchains/smartchain/assets/0x432665A9709593149DAb052FCda7E389122d98ae/logo.png new file mode 100644 index 0000000000000..9825c3314e3c0 Binary files /dev/null and b/blockchains/smartchain/assets/0x432665A9709593149DAb052FCda7E389122d98ae/logo.png differ diff --git a/blockchains/smartchain/assets/0x432C7cf1dE2b97a013f1130f199ed9d1363215BA/info.json b/blockchains/smartchain/assets/0x432C7cf1dE2b97a013f1130f199ed9d1363215BA/info.json index 622b32a87d7ed..31238334b90de 100644 --- a/blockchains/smartchain/assets/0x432C7cf1dE2b97a013f1130f199ed9d1363215BA/info.json +++ b/blockchains/smartchain/assets/0x432C7cf1dE2b97a013f1130f199ed9d1363215BA/info.json @@ -10,8 +10,8 @@ "id": "0x432C7cf1dE2b97a013f1130f199ed9d1363215BA", "links": [ { - "name": "twitter", - "url": "https://twitter.com/CryptoGuardsNFT" + "name": "x", + "url": "https://x.com/CryptoGuardsNFT" }, { "name": "github", @@ -38,4 +38,4 @@ "url": "https://coingecko.com/en/coins/cryptoguards" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4338665CBB7B2485A8855A139b75D5e34AB0DB94/info.json b/blockchains/smartchain/assets/0x4338665CBB7B2485A8855A139b75D5e34AB0DB94/info.json index 12f9db2537473..21865371cc61e 100644 --- a/blockchains/smartchain/assets/0x4338665CBB7B2485A8855A139b75D5e34AB0DB94/info.json +++ b/blockchains/smartchain/assets/0x4338665CBB7B2485A8855A139b75D5e34AB0DB94/info.json @@ -1,5 +1,5 @@ { - "name": "BNB pegged Litecoin Token", + "name": "Litecoin", "website": "https://litecoin.org/", "description": "BNB pegged Litecoin Token (LTC BEP20) is a token issued by Binance on Smart Chain; its price is pegged to Litecoin (LTC) at a ratio of 1:1.", "explorer": "https://bscscan.com/token/0x4338665CBB7B2485A8855A139b75D5e34AB0DB94", diff --git a/blockchains/smartchain/assets/0x438ED2F1f83Ca5F723e5a03F581050C5Aad68888/info.json b/blockchains/smartchain/assets/0x438ED2F1f83Ca5F723e5a03F581050C5Aad68888/info.json new file mode 100644 index 0000000000000..516c36f5aaf0c --- /dev/null +++ b/blockchains/smartchain/assets/0x438ED2F1f83Ca5F723e5a03F581050C5Aad68888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether USD", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x438ED2F1f83Ca5F723e5a03F581050C5Aad68888", + "explorer": "https://bscscan.com/token/0x438ED2F1f83Ca5F723e5a03F581050C5Aad68888", + "status": "spam", + "id": "0x438ED2F1f83Ca5F723e5a03F581050C5Aad68888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x43B35e89d15B91162Dea1C51133C4c93bdd1C4aF/info.json b/blockchains/smartchain/assets/0x43B35e89d15B91162Dea1C51133C4c93bdd1C4aF/info.json index b25f9ab94a9d2..85620ac75bcb7 100644 --- a/blockchains/smartchain/assets/0x43B35e89d15B91162Dea1C51133C4c93bdd1C4aF/info.json +++ b/blockchains/smartchain/assets/0x43B35e89d15B91162Dea1C51133C4c93bdd1C4aF/info.json @@ -10,8 +10,8 @@ "id": "0x43B35e89d15B91162Dea1C51133C4c93bdd1C4aF", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SakaiVault" + "name": "x", + "url": "https://x.com/SakaiVault" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x43B9cE0394d9AFfc97501359646A410A48c21a11/info.json b/blockchains/smartchain/assets/0x43B9cE0394d9AFfc97501359646A410A48c21a11/info.json index 034e360af57d9..ab285a19fba66 100644 --- a/blockchains/smartchain/assets/0x43B9cE0394d9AFfc97501359646A410A48c21a11/info.json +++ b/blockchains/smartchain/assets/0x43B9cE0394d9AFfc97501359646A410A48c21a11/info.json @@ -10,8 +10,8 @@ "id": "0x43B9cE0394d9AFfc97501359646A410A48c21a11", "links": [ { - "name": "twitter", - "url": "https://twitter.com/pepecoin_global" + "name": "x", + "url": "https://x.com/pepecoin_global" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x43E36A35d22636944eC4eC46Cab358A2A4dCD321/info.json b/blockchains/smartchain/assets/0x43E36A35d22636944eC4eC46Cab358A2A4dCD321/info.json new file mode 100644 index 0000000000000..f13d89480c170 --- /dev/null +++ b/blockchains/smartchain/assets/0x43E36A35d22636944eC4eC46Cab358A2A4dCD321/info.json @@ -0,0 +1,14 @@ +{ + "name": "Bambi-Nance", + "type": "BEP20", + "symbol": "Bambi", + "decimals": 18, + "website": "https://four.meme/token/0x43E36A35d22636944eC4eC46Cab358A2A4dCD321", + "description": "Bambi", + "explorer": "https://bscscan.com/token/0x43E36A35d22636944eC4eC46Cab358A2A4dCD321", + "status": "active", + "id": "0x43E36A35d22636944eC4eC46Cab358A2A4dCD321", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x43E36A35d22636944eC4eC46Cab358A2A4dCD321/logo.png b/blockchains/smartchain/assets/0x43E36A35d22636944eC4eC46Cab358A2A4dCD321/logo.png new file mode 100644 index 0000000000000..f823dcae5a214 Binary files /dev/null and b/blockchains/smartchain/assets/0x43E36A35d22636944eC4eC46Cab358A2A4dCD321/logo.png differ diff --git a/blockchains/smartchain/assets/0x43a8cab15D06d3a5fE5854D714C37E7E9246F170/info.json b/blockchains/smartchain/assets/0x43a8cab15D06d3a5fE5854D714C37E7E9246F170/info.json new file mode 100644 index 0000000000000..768aba4e360a4 --- /dev/null +++ b/blockchains/smartchain/assets/0x43a8cab15D06d3a5fE5854D714C37E7E9246F170/info.json @@ -0,0 +1,25 @@ +{ + "name": "Orbs", + "website": "https://orbs.com", + "description": "Orbs is a blockchain infrastructure-as-a-service built for large scale consumer applications to meet their business and technological requirements.", + "explorer": "https://bscscan.com/token/0x43a8cab15D06d3a5fE5854D714C37E7E9246F170", + "type": "BEP20", + "symbol": "ORBS", + "decimals": 18, + "status": "active", + "id": "0x43a8cab15D06d3a5fE5854D714C37E7E9246F170", + "links": [ + { + "name": "x", + "url": "https://x.com/orbs_network" + }, + { + "name": "github", + "url": "https://github.com/orbs-network" + }, + { + "name": "telegram", + "url": "https://t.me/orbs_network" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x43a8cab15D06d3a5fE5854D714C37E7E9246F170/logo.png b/blockchains/smartchain/assets/0x43a8cab15D06d3a5fE5854D714C37E7E9246F170/logo.png new file mode 100644 index 0000000000000..ba89f2dd8dd05 Binary files /dev/null and b/blockchains/smartchain/assets/0x43a8cab15D06d3a5fE5854D714C37E7E9246F170/logo.png differ diff --git a/blockchains/smartchain/assets/0x43d0B380c33cD004a6A69aBD61843881a2de4113/info.json b/blockchains/smartchain/assets/0x43d0B380c33cD004a6A69aBD61843881a2de4113/info.json new file mode 100644 index 0000000000000..d8bb7ac552bc6 --- /dev/null +++ b/blockchains/smartchain/assets/0x43d0B380c33cD004a6A69aBD61843881a2de4113/info.json @@ -0,0 +1,24 @@ +{ + "name": "Shopify (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "SHOPon is the Ondo Tokenized version of Shopify, giving tokenholders economic exposure similar to holding SHOP and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x43d0b380c33cd004a6a69abd61843881a2de4113", + "type": "BEP20", + "symbol": "SHOPon", + "decimals": 18, + "status": "active", + "id": "0x43d0B380c33cD004a6A69aBD61843881a2de4113", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shopify-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x43d0B380c33cD004a6A69aBD61843881a2de4113/logo.png b/blockchains/smartchain/assets/0x43d0B380c33cD004a6A69aBD61843881a2de4113/logo.png new file mode 100644 index 0000000000000..558374fa3dc01 Binary files /dev/null and b/blockchains/smartchain/assets/0x43d0B380c33cD004a6A69aBD61843881a2de4113/logo.png differ diff --git a/blockchains/smartchain/assets/0x43f82bF456925aA13509E870671c084f1C1B4444/info.json b/blockchains/smartchain/assets/0x43f82bF456925aA13509E870671c084f1C1B4444/info.json new file mode 100644 index 0000000000000..8a4df3302819a --- /dev/null +++ b/blockchains/smartchain/assets/0x43f82bF456925aA13509E870671c084f1C1B4444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE 國家穩定幣", + "type": "BEP20", + "symbol": "FAKE USDKG", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x43f82bF456925aA13509E870671c084f1C1B4444", + "explorer": "https://bscscan.com/token/0x43f82bF456925aA13509E870671c084f1C1B4444", + "status": "spam", + "id": "0x43f82bF456925aA13509E870671c084f1C1B4444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x440Fc7DA66e34e01af5201BdF5815739B0Ae743f/info.json b/blockchains/smartchain/assets/0x440Fc7DA66e34e01af5201BdF5815739B0Ae743f/info.json index c2dc9f1ec5138..bc3f884e9329b 100644 --- a/blockchains/smartchain/assets/0x440Fc7DA66e34e01af5201BdF5815739B0Ae743f/info.json +++ b/blockchains/smartchain/assets/0x440Fc7DA66e34e01af5201BdF5815739B0Ae743f/info.json @@ -10,8 +10,8 @@ "id": "0x440Fc7DA66e34e01af5201BdF5815739B0Ae743f", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SquidGameToken" + "name": "x", + "url": "https://x.com/SquidGameToken" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x4437743ac02957068995c48E08465E0EE1769fBE/info.json b/blockchains/smartchain/assets/0x4437743ac02957068995c48E08465E0EE1769fBE/info.json index 1e7ce972e22d5..14138dd7a2cc4 100644 --- a/blockchains/smartchain/assets/0x4437743ac02957068995c48E08465E0EE1769fBE/info.json +++ b/blockchains/smartchain/assets/0x4437743ac02957068995c48E08465E0EE1769fBE/info.json @@ -15,8 +15,8 @@ "url": "https://docs.fortress.loans/smart-contracts" }, { - "name": "twitter", - "url": "https://twitter.com/Jetfuelfinance" + "name": "x", + "url": "https://x.com/Jetfuelfinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x4444A19C8bb86E9BDbC023709A363bbCE91aF33E/info.json b/blockchains/smartchain/assets/0x4444A19C8bb86E9BDbC023709A363bbCE91aF33E/info.json index 1d00ffc14f16b..912390cc0f97a 100644 --- a/blockchains/smartchain/assets/0x4444A19C8bb86E9BDbC023709A363bbCE91aF33E/info.json +++ b/blockchains/smartchain/assets/0x4444A19C8bb86E9BDbC023709A363bbCE91aF33E/info.json @@ -10,8 +10,8 @@ "id": "0x4444A19C8bb86E9BDbC023709A363bbCE91aF33E", "links": [ { - "name": "twitter", - "url": "https://twitter.com/cryptotanksio" + "name": "x", + "url": "https://x.com/cryptotanksio" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x446320C9FfA57030ca977A1f90F8049DF4004647/info.json b/blockchains/smartchain/assets/0x446320C9FfA57030ca977A1f90F8049DF4004647/info.json index 4d324492d3867..d7820dc256db3 100644 --- a/blockchains/smartchain/assets/0x446320C9FfA57030ca977A1f90F8049DF4004647/info.json +++ b/blockchains/smartchain/assets/0x446320C9FfA57030ca977A1f90F8049DF4004647/info.json @@ -10,8 +10,8 @@ "id": "0x446320C9FfA57030ca977A1f90F8049DF4004647", "links": [ { - "name": "twitter", - "url": "https://twitter.com/bulldogswap" + "name": "x", + "url": "https://x.com/bulldogswap" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x44754455564474A89358B2C2265883DF993b12F0/info.json b/blockchains/smartchain/assets/0x44754455564474A89358B2C2265883DF993b12F0/info.json index c9c0353193a59..5671e6e4e0a3e 100644 --- a/blockchains/smartchain/assets/0x44754455564474A89358B2C2265883DF993b12F0/info.json +++ b/blockchains/smartchain/assets/0x44754455564474A89358B2C2265883DF993b12F0/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/ZeroswapLabs" }, { - "name": "twitter", - "url": "https://twitter.com/ZeroSwapLabs" + "name": "x", + "url": "https://x.com/ZeroSwapLabs" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x44989419caEbe5e52eb3fA65B6FA983A126A7a1B/info.json b/blockchains/smartchain/assets/0x44989419caEbe5e52eb3fA65B6FA983A126A7a1B/info.json new file mode 100644 index 0000000000000..5328e32793b3d --- /dev/null +++ b/blockchains/smartchain/assets/0x44989419caEbe5e52eb3fA65B6FA983A126A7a1B/info.json @@ -0,0 +1,17 @@ +{ + "name": "Eid Pepe", + "website": "https://eidpepe.site/", + "description": "“Eid Mubarak” - From Pepe", + "explorer": "https://bscscan.com/token/0x44989419caebe5e52eb3fa65b6fa983a126a7a1b", + "type": "BEP20", + "symbol": "EID", + "decimals": 18, + "status": "active", + "id": "0x44989419caEbe5e52eb3fA65B6FA983A126A7a1B", + "links": [ + { + "name": "x", + "url": "https://x.com/EidPepeonBSC" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x44989419caEbe5e52eb3fA65B6FA983A126A7a1B/logo.png b/blockchains/smartchain/assets/0x44989419caEbe5e52eb3fA65B6FA983A126A7a1B/logo.png new file mode 100644 index 0000000000000..35f3261a1396a Binary files /dev/null and b/blockchains/smartchain/assets/0x44989419caEbe5e52eb3fA65B6FA983A126A7a1B/logo.png differ diff --git a/blockchains/smartchain/assets/0x449aeD32C1685dbeca28D1aE45462b6156A6096D/info.json b/blockchains/smartchain/assets/0x449aeD32C1685dbeca28D1aE45462b6156A6096D/info.json index b4908fa700e49..e8577cc36a204 100644 --- a/blockchains/smartchain/assets/0x449aeD32C1685dbeca28D1aE45462b6156A6096D/info.json +++ b/blockchains/smartchain/assets/0x449aeD32C1685dbeca28D1aE45462b6156A6096D/info.json @@ -10,8 +10,8 @@ "id": "0x449aeD32C1685dbeca28D1aE45462b6156A6096D", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BitLive3" + "name": "x", + "url": "https://x.com/BitLive3" }, { "name": "telegram", @@ -21,4 +21,4 @@ "tags": [ "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x44Ec807ce2F4a6F2737A92e985f318d035883e47/info.json b/blockchains/smartchain/assets/0x44Ec807ce2F4a6F2737A92e985f318d035883e47/info.json index ff4e9ed63daaf..ce69f4e1eac98 100644 --- a/blockchains/smartchain/assets/0x44Ec807ce2F4a6F2737A92e985f318d035883e47/info.json +++ b/blockchains/smartchain/assets/0x44Ec807ce2F4a6F2737A92e985f318d035883e47/info.json @@ -10,8 +10,8 @@ "id": "0x44Ec807ce2F4a6F2737A92e985f318d035883e47", "links": [ { - "name": "twitter", - "url": "https://twitter.com/hashflow" + "name": "x", + "url": "https://x.com/hashflow" }, { "name": "blog", diff --git a/blockchains/smartchain/assets/0x44a21B3577924DCD2e9C81A3347D204C36a55466/info.json b/blockchains/smartchain/assets/0x44a21B3577924DCD2e9C81A3347D204C36a55466/info.json new file mode 100644 index 0000000000000..0ff44ec90650a --- /dev/null +++ b/blockchains/smartchain/assets/0x44a21B3577924DCD2e9C81A3347D204C36a55466/info.json @@ -0,0 +1,21 @@ +{ + "name": "Paysenger EGO", + "website": "https://egoco.in", + "description": "Paysenger is a collaboration platform for content creators, fans and brands, bringing together the best tools for content monetization and audience engagement.", + "explorer": "https://bscscan.com/token/0x44a21B3577924DCD2e9C81A3347D204C36a55466", + "symbol": "EGO", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x44a21B3577924DCD2e9C81A3347D204C36a55466", + "links": [ + { + "name": "telegram", + "url": "https://t.me/egocoin_en" + }, + { + "name": "x", + "url": "https://x.com/Ego_Paysenger" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x44a21B3577924DCD2e9C81A3347D204C36a55466/logo.png b/blockchains/smartchain/assets/0x44a21B3577924DCD2e9C81A3347D204C36a55466/logo.png new file mode 100644 index 0000000000000..8c75686496f76 Binary files /dev/null and b/blockchains/smartchain/assets/0x44a21B3577924DCD2e9C81A3347D204C36a55466/logo.png differ diff --git a/blockchains/smartchain/assets/0x44d7f403B0451B991df1378827982C883c390719/info.json b/blockchains/smartchain/assets/0x44d7f403B0451B991df1378827982C883c390719/info.json new file mode 100644 index 0000000000000..fd908dbb9e600 --- /dev/null +++ b/blockchains/smartchain/assets/0x44d7f403B0451B991df1378827982C883c390719/info.json @@ -0,0 +1,17 @@ +{ + "name": "TITAN", + "type": "BEP20", + "symbol": "TIT", + "decimals": 18, + "website": "https://olympus-tit.io", + "description": "TITAN stands out by offering a seamless, user-focused experience: A Unified Ecosystem: Bringing gaming, esports, and finance together into one powerful platform", + "explorer": "https://bscscan.com/token/0x44d7f403B0451B991df1378827982C883c390719", + "status": "active", + "id": "0x44d7f403B0451B991df1378827982C883c390719", + "links": [ + { + "name": "x", + "url": "https://x.com/supporttitan1?s=11" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x44d7f403B0451B991df1378827982C883c390719/logo.png b/blockchains/smartchain/assets/0x44d7f403B0451B991df1378827982C883c390719/logo.png new file mode 100644 index 0000000000000..d00becb1a9cad Binary files /dev/null and b/blockchains/smartchain/assets/0x44d7f403B0451B991df1378827982C883c390719/logo.png differ diff --git a/blockchains/smartchain/assets/0x44fde2C6Bc2C2b54962C69fcEF57A2A50121DBD7/info.json b/blockchains/smartchain/assets/0x44fde2C6Bc2C2b54962C69fcEF57A2A50121DBD7/info.json new file mode 100644 index 0000000000000..ceaea4518223b --- /dev/null +++ b/blockchains/smartchain/assets/0x44fde2C6Bc2C2b54962C69fcEF57A2A50121DBD7/info.json @@ -0,0 +1,28 @@ +{ + "name": "RTX (Ondo Tokenized)", + "type": "BEP20", + "symbol": "RTXon", + "decimals": 18, + "description": "RTXon is the Ondo Tokenized version of RTX, giving tokenholders economic exposure similar to holding RTX and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x44fde2C6Bc2C2b54962C69fcEF57A2A50121DBD7", + "status": "active", + "id": "0x44fde2C6Bc2C2b54962C69fcEF57A2A50121DBD7", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/rtx-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rtx-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x44fde2C6Bc2C2b54962C69fcEF57A2A50121DBD7/logo.png b/blockchains/smartchain/assets/0x44fde2C6Bc2C2b54962C69fcEF57A2A50121DBD7/logo.png new file mode 100644 index 0000000000000..9a8d3dbdfa170 Binary files /dev/null and b/blockchains/smartchain/assets/0x44fde2C6Bc2C2b54962C69fcEF57A2A50121DBD7/logo.png differ diff --git a/blockchains/smartchain/assets/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528/info.json b/blockchains/smartchain/assets/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528/info.json new file mode 100644 index 0000000000000..985ab46add51f --- /dev/null +++ b/blockchains/smartchain/assets/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528/info.json @@ -0,0 +1,28 @@ +{ + "name": "TokenFi (TOKEN)", + "type": "BEP20", + "symbol": "TOKEN", + "decimals": 9, + "website": "https://tokenfi.com", + "description": "TokenFi is the ultimate platform for crypto and asset tokenization. Our aim is to make tokenization seamless and easy for the masses!.", + "explorer": "https://bscscan.com/token/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528", + "status": "active", + "id": "0x4507cEf57C46789eF8d1a19EA45f4216bae2B528", + "links": [ + { + "name": "x", + "url": "https://x.com/tokenfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tokenfi/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tokenfi" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528/logo.png b/blockchains/smartchain/assets/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528/logo.png new file mode 100644 index 0000000000000..69737a2c9591e Binary files /dev/null and b/blockchains/smartchain/assets/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528/logo.png differ diff --git a/blockchains/smartchain/assets/0x45289007706E7Ee7B42b1fA506661d97740Edfb4/info.json b/blockchains/smartchain/assets/0x45289007706E7Ee7B42b1fA506661d97740Edfb4/info.json index 932046d78d993..965297b0ccdd5 100644 --- a/blockchains/smartchain/assets/0x45289007706E7Ee7B42b1fA506661d97740Edfb4/info.json +++ b/blockchains/smartchain/assets/0x45289007706E7Ee7B42b1fA506661d97740Edfb4/info.json @@ -10,8 +10,8 @@ "id": "0x45289007706E7Ee7B42b1fA506661d97740Edfb4", "links": [ { - "name": "twitter", - "url": "https://twitter.com/FlokiCeoo" + "name": "x", + "url": "https://x.com/FlokiCeoo" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x4553cFe1C09f37f38b12dC509F676964e392F8Fc/info.json b/blockchains/smartchain/assets/0x4553cFe1C09f37f38b12dC509F676964e392F8Fc/info.json new file mode 100644 index 0000000000000..553529b12fe09 --- /dev/null +++ b/blockchains/smartchain/assets/0x4553cFe1C09f37f38b12dC509F676964e392F8Fc/info.json @@ -0,0 +1,24 @@ +{ + "name": "Amazon (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "AMZNon is the Ondo Tokenized version of Amazon, giving tokenholders economic exposure similar to holding AMZN and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x4553cfe1c09f37f38b12dc509f676964e392f8fc", + "type": "BEP20", + "symbol": "AMZNon", + "decimals": 18, + "status": "active", + "id": "0x4553cFe1C09f37f38b12dC509F676964e392F8Fc", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/amazon-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4553cFe1C09f37f38b12dC509F676964e392F8Fc/logo.png b/blockchains/smartchain/assets/0x4553cFe1C09f37f38b12dC509F676964e392F8Fc/logo.png new file mode 100644 index 0000000000000..958a37b04dfa9 Binary files /dev/null and b/blockchains/smartchain/assets/0x4553cFe1C09f37f38b12dC509F676964e392F8Fc/logo.png differ diff --git a/blockchains/smartchain/assets/0x45787821a0BD5e6bba8E709783C773A386e34D65/info.json b/blockchains/smartchain/assets/0x45787821a0BD5e6bba8E709783C773A386e34D65/info.json new file mode 100644 index 0000000000000..0337b8e1b3749 --- /dev/null +++ b/blockchains/smartchain/assets/0x45787821a0BD5e6bba8E709783C773A386e34D65/info.json @@ -0,0 +1,28 @@ +{ + "name": "GoldenRat", + "type": "BEP20", + "symbol": "RATS", + "decimals": 9, + "website": "https://goldenrat.org/", + "description": "Golden Rat is not just any project. It’s strong, it’s innovative, and some people are even saying it could be one of the best moves of this era. Imagine something so powerful that it shakes the entire foundation of the gold market. We’ve never seen anything like this. It’s GOLDEN, and it’s got the energy, the power, and the momentum.", + "explorer": "https://bscscan.com/token/0x45787821a0BD5e6bba8E709783C773A386e34D65", + "status": "active", + "id": "0x45787821a0BD5e6bba8E709783C773A386e34D65", + "links": [ + { + "name": "telegram", + "url": "https://t.me/GoldenRatBSC" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/goldenrat/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/goldenrat" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x45787821a0BD5e6bba8E709783C773A386e34D65/logo.png b/blockchains/smartchain/assets/0x45787821a0BD5e6bba8E709783C773A386e34D65/logo.png new file mode 100644 index 0000000000000..bbfe95955f86b Binary files /dev/null and b/blockchains/smartchain/assets/0x45787821a0BD5e6bba8E709783C773A386e34D65/logo.png differ diff --git a/blockchains/smartchain/assets/0x45Abf29515bc23F8c0Ed2a06584444cE473A75FB/info.json b/blockchains/smartchain/assets/0x45Abf29515bc23F8c0Ed2a06584444cE473A75FB/info.json new file mode 100644 index 0000000000000..694b73af1a9ec --- /dev/null +++ b/blockchains/smartchain/assets/0x45Abf29515bc23F8c0Ed2a06584444cE473A75FB/info.json @@ -0,0 +1,24 @@ +{ + "name": "AST SpaceMobile (Ondo Tokenized)", + "type": "BEP20", + "symbol": "ASTSon", + "decimals": 18, + "description": "ASTSon is the Ondo Tokenized version of AST SpaceMobile, giving tokenholders economic exposure similar to holding ASTS and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x45Abf29515bc23F8c0Ed2a06584444cE473A75FB", + "status": "active", + "id": "0x45Abf29515bc23F8c0Ed2a06584444cE473A75FB", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ast-spacemobile-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x45Abf29515bc23F8c0Ed2a06584444cE473A75FB/logo.png b/blockchains/smartchain/assets/0x45Abf29515bc23F8c0Ed2a06584444cE473A75FB/logo.png new file mode 100644 index 0000000000000..2b29ada3405db Binary files /dev/null and b/blockchains/smartchain/assets/0x45Abf29515bc23F8c0Ed2a06584444cE473A75FB/logo.png differ diff --git a/blockchains/smartchain/assets/0x45E57907058c707a068100De358BA4535b18E2F3/info.json b/blockchains/smartchain/assets/0x45E57907058c707a068100De358BA4535b18E2F3/info.json new file mode 100644 index 0000000000000..b04cdd4731c76 --- /dev/null +++ b/blockchains/smartchain/assets/0x45E57907058c707a068100De358BA4535b18E2F3/info.json @@ -0,0 +1,52 @@ +{ + "name": "META FINANCIALAI", + "type": "BEP20", + "symbol": "MEFAI", + "decimals": 18, + "website": "https://mefai.io/", + "description": "AI Powered Insights for Smarter Trading Harnessing AI for advanced market signals. Trade with data, not just emotion.", + "explorer": "https://bscscan.com/token/0x45E57907058c707a068100De358BA4535b18E2F3", + "status": "active", + "id": "0x45E57907058c707a068100De358BA4535b18E2F3", + "links": [ + { + "name": "x", + "url": "https://x.com/MetaFinancialAI" + }, + { + "name": "github", + "url": "https://github.com/mefai-dev" + }, + { + "name": "telegram", + "url": "https://t.me/mefailegion" + }, + { + "name": "whitepaper", + "url": "https://mefai.gitbook.io/mefai-docs" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/meta-financial-ai" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/meta-financial-ai" + }, + { + "name": "medium", + "url": "https://mefai.medium.com" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/Meta-Face" + }, + { + "name": "youtube", + "url": "https://youtube.com/@mefaibot" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/smartchain/assets/0x45E57907058c707a068100De358BA4535b18E2F3/logo.png b/blockchains/smartchain/assets/0x45E57907058c707a068100De358BA4535b18E2F3/logo.png new file mode 100644 index 0000000000000..9efe9861634cd Binary files /dev/null and b/blockchains/smartchain/assets/0x45E57907058c707a068100De358BA4535b18E2F3/logo.png differ diff --git a/blockchains/smartchain/assets/0x45f3808ff8E66A41eE4798E60864796e52E3b422/info.json b/blockchains/smartchain/assets/0x45f3808ff8E66A41eE4798E60864796e52E3b422/info.json new file mode 100644 index 0000000000000..7ad76fc500630 --- /dev/null +++ b/blockchains/smartchain/assets/0x45f3808ff8E66A41eE4798E60864796e52E3b422/info.json @@ -0,0 +1,14 @@ +{ + "name": "Build forward", + "type": "BEP20", + "symbol": "BF", + "decimals": 18, + "website": "https://four.meme/token/0x45f3808ff8E66A41eE4798E60864796e52E3b422", + "description": "There's still oceans to explore in this crypto space. Build forward.", + "explorer": "https://bscscan.com/token/0x45f3808ff8E66A41eE4798E60864796e52E3b422", + "status": "active", + "id": "0x45f3808ff8E66A41eE4798E60864796e52E3b422", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x45f3808ff8E66A41eE4798E60864796e52E3b422/logo.png b/blockchains/smartchain/assets/0x45f3808ff8E66A41eE4798E60864796e52E3b422/logo.png new file mode 100644 index 0000000000000..72dd630caeb89 Binary files /dev/null and b/blockchains/smartchain/assets/0x45f3808ff8E66A41eE4798E60864796e52E3b422/logo.png differ diff --git a/blockchains/smartchain/assets/0x461f6C9aE13a7daC7055C73fBF8daB529D667041/info.json b/blockchains/smartchain/assets/0x461f6C9aE13a7daC7055C73fBF8daB529D667041/info.json index a5178a808468c..74221c3288728 100644 --- a/blockchains/smartchain/assets/0x461f6C9aE13a7daC7055C73fBF8daB529D667041/info.json +++ b/blockchains/smartchain/assets/0x461f6C9aE13a7daC7055C73fBF8daB529D667041/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/pollofinance" }, { - "name": "twitter", - "url": "https://twitter.com/FinancePollo" + "name": "x", + "url": "https://x.com/FinancePollo" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x4620C701e8853Eaa1BF791EfB1d7d4d784734baD/info.json b/blockchains/smartchain/assets/0x4620C701e8853Eaa1BF791EfB1d7d4d784734baD/info.json index 7fa500167bfde..04bc46f3ebac0 100644 --- a/blockchains/smartchain/assets/0x4620C701e8853Eaa1BF791EfB1d7d4d784734baD/info.json +++ b/blockchains/smartchain/assets/0x4620C701e8853Eaa1BF791EfB1d7d4d784734baD/info.json @@ -10,8 +10,8 @@ "id": "0x4620C701e8853Eaa1BF791EfB1d7d4d784734baD", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Zedxion" + "name": "x", + "url": "https://x.com/Zedxion" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x464FdB8AFFC9bac185A7393fd4298137866DCFB8/info.json b/blockchains/smartchain/assets/0x464FdB8AFFC9bac185A7393fd4298137866DCFB8/info.json index d57b34654b37a..e1d5316182f25 100644 --- a/blockchains/smartchain/assets/0x464FdB8AFFC9bac185A7393fd4298137866DCFB8/info.json +++ b/blockchains/smartchain/assets/0x464FdB8AFFC9bac185A7393fd4298137866DCFB8/info.json @@ -10,8 +10,8 @@ "id": "0x464FdB8AFFC9bac185A7393fd4298137866DCFB8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Enter_Realm" + "name": "x", + "url": "https://x.com/Enter_Realm" }, { "name": "telegram", @@ -22,4 +22,4 @@ "url": "https://coingecko.com/en/coins/realm" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x46568808a8d73c301071b8dF710402Ce44F1C472/info.json b/blockchains/smartchain/assets/0x46568808a8d73c301071b8dF710402Ce44F1C472/info.json index f1c852e6dcc83..715d801be5da9 100644 --- a/blockchains/smartchain/assets/0x46568808a8d73c301071b8dF710402Ce44F1C472/info.json +++ b/blockchains/smartchain/assets/0x46568808a8d73c301071b8dF710402Ce44F1C472/info.json @@ -10,8 +10,8 @@ "id": "0x46568808a8d73c301071b8dF710402Ce44F1C472", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MagicDogeToken" + "name": "x", + "url": "https://x.com/MagicDogeToken" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x465707181ACba42Ed01268A33f0507e320a154bD/info.json b/blockchains/smartchain/assets/0x465707181ACba42Ed01268A33f0507e320a154bD/info.json index 60f429021ec39..08789de29e9a6 100644 --- a/blockchains/smartchain/assets/0x465707181ACba42Ed01268A33f0507e320a154bD/info.json +++ b/blockchains/smartchain/assets/0x465707181ACba42Ed01268A33f0507e320a154bD/info.json @@ -10,8 +10,8 @@ "id": "0x465707181ACba42Ed01268A33f0507e320a154bD", "links": [ { - "name": "twitter", - "url": "https://twitter.com/walkwithstep" + "name": "x", + "url": "https://x.com/walkwithstep" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x4670C8B56005C15B7F2013160eA1543A7B8D8888/info.json b/blockchains/smartchain/assets/0x4670C8B56005C15B7F2013160eA1543A7B8D8888/info.json new file mode 100644 index 0000000000000..f2f7da9613863 --- /dev/null +++ b/blockchains/smartchain/assets/0x4670C8B56005C15B7F2013160eA1543A7B8D8888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tеthеr", + "type": "BEP20", + "symbol": "FAKE ՍSDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x4670C8B56005C15B7F2013160eA1543A7B8D8888", + "explorer": "https://bscscan.com/token/0x4670C8B56005C15B7F2013160eA1543A7B8D8888", + "status": "spam", + "id": "0x4670C8B56005C15B7F2013160eA1543A7B8D8888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4673f018cc6d401AAD0402BdBf2abcBF43dd69F3/info.json b/blockchains/smartchain/assets/0x4673f018cc6d401AAD0402BdBf2abcBF43dd69F3/info.json index f49898e644169..9881a5a9bc6ab 100644 --- a/blockchains/smartchain/assets/0x4673f018cc6d401AAD0402BdBf2abcBF43dd69F3/info.json +++ b/blockchains/smartchain/assets/0x4673f018cc6d401AAD0402BdBf2abcBF43dd69F3/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/FCF_Bsc" + "name": "x", + "url": "https://x.com/FCF_Bsc" }, { "name": "reddit", @@ -45,4 +45,4 @@ "url": "https://coingecko.com/en/coins/french-connection-finance" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x467e59ce5D5fe01686D4A80dd1E1DAE13549AA6c/info.json b/blockchains/smartchain/assets/0x467e59ce5D5fe01686D4A80dd1E1DAE13549AA6c/info.json new file mode 100644 index 0000000000000..956899208cbf2 --- /dev/null +++ b/blockchains/smartchain/assets/0x467e59ce5D5fe01686D4A80dd1E1DAE13549AA6c/info.json @@ -0,0 +1,24 @@ +{ + "name": "Baidu (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "BIDUon is the Ondo Tokenized version of Baidu, giving tokenholders economic exposure similar to holding BIDU and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x467e59ce5d5fe01686d4a80dd1e1dae13549aa6c", + "type": "BEP20", + "symbol": "BIDUon", + "decimals": 18, + "status": "active", + "id": "0x467e59ce5D5fe01686D4A80dd1E1DAE13549AA6c", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/baidu-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x467e59ce5D5fe01686D4A80dd1E1DAE13549AA6c/logo.png b/blockchains/smartchain/assets/0x467e59ce5D5fe01686D4A80dd1E1DAE13549AA6c/logo.png new file mode 100644 index 0000000000000..c6fbb5707de4e Binary files /dev/null and b/blockchains/smartchain/assets/0x467e59ce5D5fe01686D4A80dd1E1DAE13549AA6c/logo.png differ diff --git a/blockchains/smartchain/assets/0x4691937a7508860F876c9c0a2a617E7d9E945D4B/info.json b/blockchains/smartchain/assets/0x4691937a7508860F876c9c0a2a617E7d9E945D4B/info.json index e5afd37f994d6..dcc5615429b2b 100644 --- a/blockchains/smartchain/assets/0x4691937a7508860F876c9c0a2a617E7d9E945D4B/info.json +++ b/blockchains/smartchain/assets/0x4691937a7508860F876c9c0a2a617E7d9E945D4B/info.json @@ -1,5 +1,5 @@ { - "name": "Wootrade Network", + "name": "WOO", "type": "BEP20", "symbol": "WOO", "decimals": 18, diff --git a/blockchains/smartchain/assets/0x4691F60c894d3f16047824004420542E4674E621/info.json b/blockchains/smartchain/assets/0x4691F60c894d3f16047824004420542E4674E621/info.json index d60982d3ad2d2..95d81b287d243 100644 --- a/blockchains/smartchain/assets/0x4691F60c894d3f16047824004420542E4674E621/info.json +++ b/blockchains/smartchain/assets/0x4691F60c894d3f16047824004420542E4674E621/info.json @@ -14,8 +14,8 @@ }, "links": [ { - "name": "twitter", - "url": "https://twitter.com/lucid_lands" + "name": "x", + "url": "https://x.com/lucid_lands" }, { "name": "telegram", @@ -30,4 +30,4 @@ "url": "https://coingecko.com/en/coins/lucid-lands" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4693f6F5EF257381a28afd0673e64d8b32d5C6aD/info.json b/blockchains/smartchain/assets/0x4693f6F5EF257381a28afd0673e64d8b32d5C6aD/info.json new file mode 100644 index 0000000000000..53b223b69c3df --- /dev/null +++ b/blockchains/smartchain/assets/0x4693f6F5EF257381a28afd0673e64d8b32d5C6aD/info.json @@ -0,0 +1,24 @@ +{ + "name": "Hims & Hers Health (Ondo)", + "website": "https://ondo.finance/", + "description": "HIMSon is the Ondo Tokenized version of Hims & Hers Health, giving tokenholders economic exposure similar to holding HIMS and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x4693f6f5ef257381a28afd0673e64d8b32d5c6ad", + "type": "BEP20", + "symbol": "HIMSon", + "decimals": 18, + "status": "active", + "id": "0x4693f6F5EF257381a28afd0673e64d8b32d5C6aD", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hims-hers-health-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4693f6F5EF257381a28afd0673e64d8b32d5C6aD/logo.png b/blockchains/smartchain/assets/0x4693f6F5EF257381a28afd0673e64d8b32d5C6aD/logo.png new file mode 100644 index 0000000000000..48d6c641cc061 Binary files /dev/null and b/blockchains/smartchain/assets/0x4693f6F5EF257381a28afd0673e64d8b32d5C6aD/logo.png differ diff --git a/blockchains/smartchain/assets/0x4697b2A050f7B5A8e1ebc27c325f9D78D094f041/info.json b/blockchains/smartchain/assets/0x4697b2A050f7B5A8e1ebc27c325f9D78D094f041/info.json new file mode 100644 index 0000000000000..46cf247cec060 --- /dev/null +++ b/blockchains/smartchain/assets/0x4697b2A050f7B5A8e1ebc27c325f9D78D094f041/info.json @@ -0,0 +1,24 @@ +{ + "name": "Eaton (Ondo Tokenized)", + "type": "BEP20", + "symbol": "ETNon", + "decimals": 18, + "description": "ETNon is the Ondo Tokenized version of Eaton, giving tokenholders economic exposure similar to holding ETN and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x4697b2A050f7B5A8e1ebc27c325f9D78D094f041", + "status": "active", + "id": "0x4697b2A050f7B5A8e1ebc27c325f9D78D094f041", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/eaton-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4697b2A050f7B5A8e1ebc27c325f9D78D094f041/logo.png b/blockchains/smartchain/assets/0x4697b2A050f7B5A8e1ebc27c325f9D78D094f041/logo.png new file mode 100644 index 0000000000000..8439cf72d5498 Binary files /dev/null and b/blockchains/smartchain/assets/0x4697b2A050f7B5A8e1ebc27c325f9D78D094f041/logo.png differ diff --git a/blockchains/smartchain/assets/0x46B1b0AB7F5e98113590e7cbf95837638d2b4444/info.json b/blockchains/smartchain/assets/0x46B1b0AB7F5e98113590e7cbf95837638d2b4444/info.json new file mode 100644 index 0000000000000..6569048b64149 --- /dev/null +++ b/blockchains/smartchain/assets/0x46B1b0AB7F5e98113590e7cbf95837638d2b4444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDKG", + "type": "BEP20", + "symbol": "FAKE USDKG", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x46B1b0AB7F5e98113590e7cbf95837638d2b4444", + "explorer": "https://bscscan.com/token/0x46B1b0AB7F5e98113590e7cbf95837638d2b4444", + "status": "spam", + "id": "0x46B1b0AB7F5e98113590e7cbf95837638d2b4444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x471f883BBd2c705F418Ba3d6667ef05342C4ee05/info.json b/blockchains/smartchain/assets/0x471f883BBd2c705F418Ba3d6667ef05342C4ee05/info.json index 598767d7ad77a..c8bb64065c761 100644 --- a/blockchains/smartchain/assets/0x471f883BBd2c705F418Ba3d6667ef05342C4ee05/info.json +++ b/blockchains/smartchain/assets/0x471f883BBd2c705F418Ba3d6667ef05342C4ee05/info.json @@ -10,8 +10,8 @@ "id": "0x471f883BBd2c705F418Ba3d6667ef05342C4ee05", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Spongssqueare" + "name": "x", + "url": "https://x.com/Spongssqueare" }, { "name": "github", @@ -29,4 +29,4 @@ "tags": [ "memes" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4732A86106064577933552FCea993D30BEC950a5/info.json b/blockchains/smartchain/assets/0x4732A86106064577933552FCea993D30BEC950a5/info.json index 88cee8559b27f..a879f0b81091f 100644 --- a/blockchains/smartchain/assets/0x4732A86106064577933552FCea993D30BEC950a5/info.json +++ b/blockchains/smartchain/assets/0x4732A86106064577933552FCea993D30BEC950a5/info.json @@ -10,8 +10,8 @@ "id": "0x4732A86106064577933552FCea993D30BEC950a5", "links": [ { - "name": "twitter", - "url": "https://twitter.com/prodigichain" + "name": "x", + "url": "https://x.com/prodigichain" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x474FA9972E80D6cb41aa6Cec9dA666A3f1DAd2F4/info.json b/blockchains/smartchain/assets/0x474FA9972E80D6cb41aa6Cec9dA666A3f1DAd2F4/info.json new file mode 100644 index 0000000000000..5ba088a318c66 --- /dev/null +++ b/blockchains/smartchain/assets/0x474FA9972E80D6cb41aa6Cec9dA666A3f1DAd2F4/info.json @@ -0,0 +1,14 @@ +{ + "name": "Money", + "type": "BEP20", + "symbol": "Money", + "decimals": 18, + "website": "https://four.meme/token/0x474FA9972E80D6cb41aa6Cec9dA666A3f1DAd2F4", + "description": "Money", + "explorer": "https://bscscan.com/token/0x474FA9972E80D6cb41aa6Cec9dA666A3f1DAd2F4", + "status": "active", + "id": "0x474FA9972E80D6cb41aa6Cec9dA666A3f1DAd2F4", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x474FA9972E80D6cb41aa6Cec9dA666A3f1DAd2F4/logo.png b/blockchains/smartchain/assets/0x474FA9972E80D6cb41aa6Cec9dA666A3f1DAd2F4/logo.png new file mode 100644 index 0000000000000..5d18d647945c0 Binary files /dev/null and b/blockchains/smartchain/assets/0x474FA9972E80D6cb41aa6Cec9dA666A3f1DAd2F4/logo.png differ diff --git a/blockchains/smartchain/assets/0x4752AE8f910b25e64E4406eAad50c1B4E8DE7E6D/info.json b/blockchains/smartchain/assets/0x4752AE8f910b25e64E4406eAad50c1B4E8DE7E6D/info.json new file mode 100644 index 0000000000000..08ee6ddbfb10c --- /dev/null +++ b/blockchains/smartchain/assets/0x4752AE8f910b25e64E4406eAad50c1B4E8DE7E6D/info.json @@ -0,0 +1,28 @@ +{ + "name": "Plug Power (Ondo Tokenized)", + "type": "BEP20", + "symbol": "PLUGon", + "decimals": 18, + "description": "PLUGon is the Ondo Tokenized version of Plug Power, giving tokenholders economic exposure similar to holding PLUG and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x4752AE8f910b25e64E4406eAad50c1B4E8DE7E6D", + "status": "active", + "id": "0x4752AE8f910b25e64E4406eAad50c1B4E8DE7E6D", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/plug-power-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/plug-power-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4752AE8f910b25e64E4406eAad50c1B4E8DE7E6D/logo.png b/blockchains/smartchain/assets/0x4752AE8f910b25e64E4406eAad50c1B4E8DE7E6D/logo.png new file mode 100644 index 0000000000000..d56552e01117f Binary files /dev/null and b/blockchains/smartchain/assets/0x4752AE8f910b25e64E4406eAad50c1B4E8DE7E6D/logo.png differ diff --git a/blockchains/smartchain/assets/0x4756cd85Cd07769c2Ce07A73497f208D56D48eC1/info.json b/blockchains/smartchain/assets/0x4756cd85Cd07769c2Ce07A73497f208D56D48eC1/info.json index 19bd4a44c4697..f456ce7e6a27f 100644 --- a/blockchains/smartchain/assets/0x4756cd85Cd07769c2Ce07A73497f208D56D48eC1/info.json +++ b/blockchains/smartchain/assets/0x4756cd85Cd07769c2Ce07A73497f208D56D48eC1/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "DOGECOLA", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x4756cd85Cd07769c2Ce07A73497f208D56D48eC1", "tags": [ "deflationary" @@ -17,8 +17,8 @@ "url": "https://github.com/dogecola" }, { - "name": "twitter", - "url": "https://twitter.com/doge_cola" + "name": "x", + "url": "https://x.com/doge_cola" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x4756cd85Cd07769c2Ce07A73497f208D56D48eC1/logo.png b/blockchains/smartchain/assets/0x4756cd85Cd07769c2Ce07A73497f208D56D48eC1/logo.png deleted file mode 100644 index 4d3e766057735..0000000000000 Binary files a/blockchains/smartchain/assets/0x4756cd85Cd07769c2Ce07A73497f208D56D48eC1/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x475bFaa1848591ae0E6aB69600f48d828f61a80E/info.json b/blockchains/smartchain/assets/0x475bFaa1848591ae0E6aB69600f48d828f61a80E/info.json index 3425ef1b90756..b4a89be3d0138 100644 --- a/blockchains/smartchain/assets/0x475bFaa1848591ae0E6aB69600f48d828f61a80E/info.json +++ b/blockchains/smartchain/assets/0x475bFaa1848591ae0E6aB69600f48d828f61a80E/info.json @@ -10,8 +10,8 @@ "id": "0x475bFaa1848591ae0E6aB69600f48d828f61a80E", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Everdome_io" + "name": "x", + "url": "https://x.com/Everdome_io" }, { "name": "telegram", @@ -21,4 +21,4 @@ "tags": [ "deflationary" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4770aB6FCeD223124b8616e08003D37ff13f8888/info.json b/blockchains/smartchain/assets/0x4770aB6FCeD223124b8616e08003D37ff13f8888/info.json new file mode 100644 index 0000000000000..8747ccb1f3433 --- /dev/null +++ b/blockchains/smartchain/assets/0x4770aB6FCeD223124b8616e08003D37ff13f8888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Bitcoin", + "type": "BEP20", + "symbol": "FAKE BTC", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x4770aB6FCeD223124b8616e08003D37ff13f8888", + "explorer": "https://bscscan.com/token/0x4770aB6FCeD223124b8616e08003D37ff13f8888", + "status": "spam", + "id": "0x4770aB6FCeD223124b8616e08003D37ff13f8888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x47A1EB0b825b73e6A14807BEaECAFef199d5477c/info.json b/blockchains/smartchain/assets/0x47A1EB0b825b73e6A14807BEaECAFef199d5477c/info.json new file mode 100644 index 0000000000000..83caf96f360ec --- /dev/null +++ b/blockchains/smartchain/assets/0x47A1EB0b825b73e6A14807BEaECAFef199d5477c/info.json @@ -0,0 +1,17 @@ +{ + "name": "CaptainBNB", + "symbol": "CaptainBNB", + "website": "https://captainbnb.xyz", + "description": "The mascot of the BNB Chain was launched on February 10th when the BNBChain X account posted our image", + "explorer": "https://bscscan.com/token/0x47a1eb0b825b73e6a14807beaecafef199d5477c", + "decimals": 18, + "status": "active", + "id": "0x47A1EB0b825b73e6A14807BEaECAFef199d5477c", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/CaptainBNB_bsc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x47A1EB0b825b73e6A14807BEaECAFef199d5477c/logo.png b/blockchains/smartchain/assets/0x47A1EB0b825b73e6A14807BEaECAFef199d5477c/logo.png new file mode 100644 index 0000000000000..368605a1be0f3 Binary files /dev/null and b/blockchains/smartchain/assets/0x47A1EB0b825b73e6A14807BEaECAFef199d5477c/logo.png differ diff --git a/blockchains/smartchain/assets/0x47B36DDB9dd12A8411f78226f55e8c3f0D65481f/info.json b/blockchains/smartchain/assets/0x47B36DDB9dd12A8411f78226f55e8c3f0D65481f/info.json new file mode 100644 index 0000000000000..b3c1feb6a2b94 --- /dev/null +++ b/blockchains/smartchain/assets/0x47B36DDB9dd12A8411f78226f55e8c3f0D65481f/info.json @@ -0,0 +1,28 @@ +{ + "name": "PG&E (Ondo Tokenized)", + "type": "BEP20", + "symbol": "PCGon", + "decimals": 18, + "description": "PCGon is the Ondo Tokenized version of PG&E, giving tokenholders economic exposure similar to holding PCG and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x47B36DDB9dd12A8411f78226f55e8c3f0D65481f", + "status": "active", + "id": "0x47B36DDB9dd12A8411f78226f55e8c3f0D65481f", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pg-e-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pge-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x47B36DDB9dd12A8411f78226f55e8c3f0D65481f/logo.png b/blockchains/smartchain/assets/0x47B36DDB9dd12A8411f78226f55e8c3f0D65481f/logo.png new file mode 100644 index 0000000000000..d83a0ac367963 Binary files /dev/null and b/blockchains/smartchain/assets/0x47B36DDB9dd12A8411f78226f55e8c3f0D65481f/logo.png differ diff --git a/blockchains/smartchain/assets/0x47cC5334F65611EA6Be9e933C49485c88C17F5F0/info.json b/blockchains/smartchain/assets/0x47cC5334F65611EA6Be9e933C49485c88C17F5F0/info.json index 72f538f57076a..50aca695dac09 100644 --- a/blockchains/smartchain/assets/0x47cC5334F65611EA6Be9e933C49485c88C17F5F0/info.json +++ b/blockchains/smartchain/assets/0x47cC5334F65611EA6Be9e933C49485c88C17F5F0/info.json @@ -10,8 +10,8 @@ "id": "0x47cC5334F65611EA6Be9e933C49485c88C17F5F0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/EpicHeroio" + "name": "x", + "url": "https://x.com/EpicHeroio" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x47d42E0e864ceFf8C4270F7b6E1f6F91Da45882C/info.json b/blockchains/smartchain/assets/0x47d42E0e864ceFf8C4270F7b6E1f6F91Da45882C/info.json index ca82bc88a79d0..88ba0fae96e10 100644 --- a/blockchains/smartchain/assets/0x47d42E0e864ceFf8C4270F7b6E1f6F91Da45882C/info.json +++ b/blockchains/smartchain/assets/0x47d42E0e864ceFf8C4270F7b6E1f6F91Da45882C/info.json @@ -10,8 +10,8 @@ "id": "0x47d42E0e864ceFf8C4270F7b6E1f6F91Da45882C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/theEverEarn" + "name": "x", + "url": "https://x.com/theEverEarn" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x48187890D16aEE64798E02C5BeD510f4dB5694A9/info.json b/blockchains/smartchain/assets/0x48187890D16aEE64798E02C5BeD510f4dB5694A9/info.json new file mode 100644 index 0000000000000..d2382808e8bde --- /dev/null +++ b/blockchains/smartchain/assets/0x48187890D16aEE64798E02C5BeD510f4dB5694A9/info.json @@ -0,0 +1,24 @@ +{ + "name": "Franklin US Large Cap Multifactor Index ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "FLQLon", + "decimals": 18, + "description": "FLQLon is the Ondo Tokenized version of the Franklin US Large Cap Multifactor Index ETF, giving tokenholders economic exposure similar to holding FLQL and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x48187890D16aEE64798E02C5BeD510f4dB5694A9", + "status": "active", + "id": "0x48187890D16aEE64798E02C5BeD510f4dB5694A9", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/franklin-us-large-cap-multifactor-index-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x48187890D16aEE64798E02C5BeD510f4dB5694A9/logo.png b/blockchains/smartchain/assets/0x48187890D16aEE64798E02C5BeD510f4dB5694A9/logo.png new file mode 100644 index 0000000000000..34299b5ba23f3 Binary files /dev/null and b/blockchains/smartchain/assets/0x48187890D16aEE64798E02C5BeD510f4dB5694A9/logo.png differ diff --git a/blockchains/smartchain/assets/0x4833e7f4f0460f4B72A3a5879A6C9841bCC5B58B/info.json b/blockchains/smartchain/assets/0x4833e7f4f0460f4B72A3a5879A6C9841bCC5B58B/info.json new file mode 100644 index 0000000000000..c72452742617c --- /dev/null +++ b/blockchains/smartchain/assets/0x4833e7f4f0460f4B72A3a5879A6C9841bCC5B58B/info.json @@ -0,0 +1,20 @@ +{ + "name": "iShares Silver Trust xStock", + "type": "BEP20", + "symbol": "SLVx", + "decimals": 18, + "description": "iShares Silver Trust xStock (SLVx) is a tracker certificate issued as a freely transferable token on selected blockchains. SLVx tracks the price of iShares Silver Trust. SLVx is designed to give eligible investors regulatory-compliant access to the stock price of iShares Silver Trust, whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x4833e7f4f0460f4B72A3a5879A6C9841bCC5B58B", + "status": "active", + "id": "0x4833e7f4f0460f4B72A3a5879A6C9841bCC5B58B", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4833e7f4f0460f4B72A3a5879A6C9841bCC5B58B/logo.png b/blockchains/smartchain/assets/0x4833e7f4f0460f4B72A3a5879A6C9841bCC5B58B/logo.png new file mode 100644 index 0000000000000..edec6db75ba23 Binary files /dev/null and b/blockchains/smartchain/assets/0x4833e7f4f0460f4B72A3a5879A6C9841bCC5B58B/logo.png differ diff --git a/blockchains/smartchain/assets/0x487770734490Ac571Cda3Bc06067048EcC5cAa4e/info.json b/blockchains/smartchain/assets/0x487770734490Ac571Cda3Bc06067048EcC5cAa4e/info.json index 58c71a60cdd82..3ccde2fa97227 100644 --- a/blockchains/smartchain/assets/0x487770734490Ac571Cda3Bc06067048EcC5cAa4e/info.json +++ b/blockchains/smartchain/assets/0x487770734490Ac571Cda3Bc06067048EcC5cAa4e/info.json @@ -10,8 +10,8 @@ "id": "0x487770734490Ac571Cda3Bc06067048EcC5cAa4e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/fletachain" + "name": "x", + "url": "https://x.com/fletachain" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x487E464ED2F07306D5D0ADd219c7e13d3be9D867/info.json b/blockchains/smartchain/assets/0x487E464ED2F07306D5D0ADd219c7e13d3be9D867/info.json index 0a193e07373f9..ff49241455b6a 100644 --- a/blockchains/smartchain/assets/0x487E464ED2F07306D5D0ADd219c7e13d3be9D867/info.json +++ b/blockchains/smartchain/assets/0x487E464ED2F07306D5D0ADd219c7e13d3be9D867/info.json @@ -14,8 +14,8 @@ "url": "https://discord.com/invite/Q3j7yzsm" }, { - "name": "twitter", - "url": "https://twitter.com/The_x_Hunter_" + "name": "x", + "url": "https://x.com/The_x_Hunter_" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x487ecd4cFa635D1a9409E86Cd22d33d5abEb7b44/info.json b/blockchains/smartchain/assets/0x487ecd4cFa635D1a9409E86Cd22d33d5abEb7b44/info.json index 747b0e8ae63f8..4d55ae2fef006 100644 --- a/blockchains/smartchain/assets/0x487ecd4cFa635D1a9409E86Cd22d33d5abEb7b44/info.json +++ b/blockchains/smartchain/assets/0x487ecd4cFa635D1a9409E86Cd22d33d5abEb7b44/info.json @@ -10,8 +10,8 @@ "id": "0x487ecd4cFa635D1a9409E86Cd22d33d5abEb7b44", "links": [ { - "name": "twitter", - "url": "https://twitter.com/vangoldfinance" + "name": "x", + "url": "https://x.com/vangoldfinance" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x48CbC7f87C657fEA3B297F658a5133a5deeF9b04/info.json b/blockchains/smartchain/assets/0x48CbC7f87C657fEA3B297F658a5133a5deeF9b04/info.json index f85a023e26d3e..1e498fd1c8c77 100644 --- a/blockchains/smartchain/assets/0x48CbC7f87C657fEA3B297F658a5133a5deeF9b04/info.json +++ b/blockchains/smartchain/assets/0x48CbC7f87C657fEA3B297F658a5133a5deeF9b04/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/miniflokiada" }, { - "name": "twitter", - "url": "https://twitter.com/miniflookiada" + "name": "x", + "url": "https://x.com/miniflookiada" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x49152DD96bE5a710fAcF9a8aB7DE4343A49186d5/info.json b/blockchains/smartchain/assets/0x49152DD96bE5a710fAcF9a8aB7DE4343A49186d5/info.json index 4dea95856c18a..634a9cf716dfc 100644 --- a/blockchains/smartchain/assets/0x49152DD96bE5a710fAcF9a8aB7DE4343A49186d5/info.json +++ b/blockchains/smartchain/assets/0x49152DD96bE5a710fAcF9a8aB7DE4343A49186d5/info.json @@ -10,8 +10,8 @@ "id": "0x49152DD96bE5a710fAcF9a8aB7DE4343A49186d5", "links": [ { - "name": "twitter", - "url": "https://twitter.com/dartinu_bsc" + "name": "x", + "url": "https://x.com/dartinu_bsc" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x493361D6164093936c86Dcb35Ad03b4C0D032076/info.json b/blockchains/smartchain/assets/0x493361D6164093936c86Dcb35Ad03b4C0D032076/info.json new file mode 100644 index 0000000000000..929ae6de2515e --- /dev/null +++ b/blockchains/smartchain/assets/0x493361D6164093936c86Dcb35Ad03b4C0D032076/info.json @@ -0,0 +1,24 @@ +{ + "name": "Vista Finance", + "type": "BEP20", + "symbol": "VISTA", + "decimals": 18, + "website": "https://vistafinance.io/", + "description": "Vista Finance bring trade, brokers, traders, and investors together in a decentralized, open, and fair network to make them more modern and global. This backstage smart contract technology provides an automated and completely transparent method of investing and a profit- sharing system by offering investment attractiveness to successful traders around the world.", + "explorer": "https://bscscan.com/token/0x493361d6164093936c86dcb35ad03b4c0d032076", + "status": "active", + "id": "0x493361D6164093936c86Dcb35Ad03b4C0D032076", + "links": [ + { + "name": "x", + "url": "https://x.com/vistafound12" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/Then_Fondant_8184/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x493361D6164093936c86Dcb35Ad03b4C0D032076/logo.png b/blockchains/smartchain/assets/0x493361D6164093936c86Dcb35Ad03b4C0D032076/logo.png new file mode 100644 index 0000000000000..f802e0ff1538a Binary files /dev/null and b/blockchains/smartchain/assets/0x493361D6164093936c86Dcb35Ad03b4C0D032076/logo.png differ diff --git a/blockchains/smartchain/assets/0x4943f03151965B3790a0509ae6Bcb5aA0Cd34444/info.json b/blockchains/smartchain/assets/0x4943f03151965B3790a0509ae6Bcb5aA0Cd34444/info.json new file mode 100644 index 0000000000000..2621d174d4d02 --- /dev/null +++ b/blockchains/smartchain/assets/0x4943f03151965B3790a0509ae6Bcb5aA0Cd34444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Usdkg", + "type": "BEP20", + "symbol": "FAKE USDKG", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x4943f03151965B3790a0509ae6Bcb5aA0Cd34444", + "explorer": "https://bscscan.com/token/0x4943f03151965B3790a0509ae6Bcb5aA0Cd34444", + "status": "spam", + "id": "0x4943f03151965B3790a0509ae6Bcb5aA0Cd34444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4953d28b12D862250Cc96163A9C46Ae2B8ef52c5/info.json b/blockchains/smartchain/assets/0x4953d28b12D862250Cc96163A9C46Ae2B8ef52c5/info.json new file mode 100644 index 0000000000000..5af363452ed65 --- /dev/null +++ b/blockchains/smartchain/assets/0x4953d28b12D862250Cc96163A9C46Ae2B8ef52c5/info.json @@ -0,0 +1,24 @@ +{ + "name": "Teller", + "type": "BEP20", + "symbol": "Teller", + "decimals": 18, + "website": "https://www.tellerusd.com", + "description": "Welcome to the heart of innovation and stability in the crypto world – Teller USD (USDT). Our project represents a significant milestone in the realm of blockchain technology, with a primary focus on redefining financial security and reliability through the introduction of our groundbreaking stablecoin, Teller USD (USDT). At Teller USD (USDT), our vision is to usher in a new era of financial stability in the unpredictable world of cryptocurrencies. We believe in providing a secure and steadfast solution that empowers users to navigate the digital economy with confidence.", + "explorer": "https://bscscan.com/token/0x4953d28b12D862250Cc96163A9C46Ae2B8ef52c5", + "status": "active", + "id": "0x4953d28b12D862250Cc96163A9C46Ae2B8ef52c5", + "links": [ + { + "name": "x", + "url": "https://x.com/TellerUSD" + }, + { + "name": "telegram", + "url": "https://t.me/tellerusd" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4953d28b12D862250Cc96163A9C46Ae2B8ef52c5/logo.png b/blockchains/smartchain/assets/0x4953d28b12D862250Cc96163A9C46Ae2B8ef52c5/logo.png new file mode 100644 index 0000000000000..c5066aca6dd67 Binary files /dev/null and b/blockchains/smartchain/assets/0x4953d28b12D862250Cc96163A9C46Ae2B8ef52c5/logo.png differ diff --git a/blockchains/smartchain/assets/0x4988967B2cC002eDCCeA8d40870b7958E5aBa704/info.json b/blockchains/smartchain/assets/0x4988967B2cC002eDCCeA8d40870b7958E5aBa704/info.json new file mode 100644 index 0000000000000..e8db6b188879f --- /dev/null +++ b/blockchains/smartchain/assets/0x4988967B2cC002eDCCeA8d40870b7958E5aBa704/info.json @@ -0,0 +1,14 @@ +{ + "name": "Cz pfp on chain", + "type": "BEP20", + "symbol": "czpc", + "decimals": 18, + "website": "https://four.meme/token/0x4988967B2cC002eDCCeA8d40870b7958E5aBa704", + "description": "A Cz engraved on the chain.", + "explorer": "https://bscscan.com/token/0x4988967B2cC002eDCCeA8d40870b7958E5aBa704", + "status": "active", + "id": "0x4988967B2cC002eDCCeA8d40870b7958E5aBa704", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4988967B2cC002eDCCeA8d40870b7958E5aBa704/logo.png b/blockchains/smartchain/assets/0x4988967B2cC002eDCCeA8d40870b7958E5aBa704/logo.png new file mode 100644 index 0000000000000..30e1256d26361 Binary files /dev/null and b/blockchains/smartchain/assets/0x4988967B2cC002eDCCeA8d40870b7958E5aBa704/logo.png differ diff --git a/blockchains/smartchain/assets/0x499D35eBE6cEe9B2Ac35Fd003fcBbeeB9CFc7B32/info.json b/blockchains/smartchain/assets/0x499D35eBE6cEe9B2Ac35Fd003fcBbeeB9CFc7B32/info.json new file mode 100644 index 0000000000000..6a43242aef7fb --- /dev/null +++ b/blockchains/smartchain/assets/0x499D35eBE6cEe9B2Ac35Fd003fcBbeeB9CFc7B32/info.json @@ -0,0 +1,24 @@ +{ + "name": "Arena Two", + "type": "BEP20", + "symbol": "ATWO", + "decimals": 18, + "website": "https://www.arenatwo.com/", + "description": "Arena Two is the world’s first Web3 live sports ecosystem, where real-world tournaments meet crypto. Fans don’t just watch - they vote on real match decisions, back athlete-led teams, and earn rewards through memberships, NFTs, and the $ATWO token.", + "explorer": "https://bscscan.com/token/0x499D35eBE6cEe9B2Ac35Fd003fcBbeeB9CFc7B32", + "status": "active", + "id": "0x499D35eBE6cEe9B2Ac35Fd003fcBbeeB9CFc7B32", + "links": [ + { + "name": "x", + "url": "https://x.com/arenatwoX" + }, + { + "name": "whitepaper", + "url": "https://arenatwo.com/en/whitepaper" + } + ], + "tags": [ + "gamefi" + ] +} diff --git a/blockchains/smartchain/assets/0x499D35eBE6cEe9B2Ac35Fd003fcBbeeB9CFc7B32/logo.png b/blockchains/smartchain/assets/0x499D35eBE6cEe9B2Ac35Fd003fcBbeeB9CFc7B32/logo.png new file mode 100644 index 0000000000000..8bf17512306a1 Binary files /dev/null and b/blockchains/smartchain/assets/0x499D35eBE6cEe9B2Ac35Fd003fcBbeeB9CFc7B32/logo.png differ diff --git a/blockchains/smartchain/assets/0x49cAF8Bf1E6322CfC9913096f49f08dD46584444/info.json b/blockchains/smartchain/assets/0x49cAF8Bf1E6322CfC9913096f49f08dD46584444/info.json new file mode 100644 index 0000000000000..dfebdb2e999f0 --- /dev/null +++ b/blockchains/smartchain/assets/0x49cAF8Bf1E6322CfC9913096f49f08dD46584444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Europe Coin", + "type": "BEP20", + "symbol": "FAKE EURC", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x49cAF8Bf1E6322CfC9913096f49f08dD46584444", + "explorer": "https://bscscan.com/token/0x49cAF8Bf1E6322CfC9913096f49f08dD46584444", + "status": "spam", + "id": "0x49cAF8Bf1E6322CfC9913096f49f08dD46584444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x49f2145d6366099e13B10FbF80646C0F377eE7f6/info.json b/blockchains/smartchain/assets/0x49f2145d6366099e13B10FbF80646C0F377eE7f6/info.json index 6b2ab40a70934..35dbb852eb548 100644 --- a/blockchains/smartchain/assets/0x49f2145d6366099e13B10FbF80646C0F377eE7f6/info.json +++ b/blockchains/smartchain/assets/0x49f2145d6366099e13B10FbF80646C0F377eE7f6/info.json @@ -10,8 +10,8 @@ "id": "0x49f2145d6366099e13B10FbF80646C0F377eE7f6", "links": [ { - "name": "twitter", - "url": "https://twitter.com/FCPorto" + "name": "x", + "url": "https://x.com/FCPorto" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2/info.json b/blockchains/smartchain/assets/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2/info.json new file mode 100644 index 0000000000000..b4b2acee6973d --- /dev/null +++ b/blockchains/smartchain/assets/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2/info.json @@ -0,0 +1,24 @@ +{ + "name": "Salesforce tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Salesforce xStock (CRMx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. CRMx tracks the price of Salesforce, Inc. (the underlying). CRMx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Salesforce, Inc., whilst maintaining the benefits of blockchain technology. Key Benefits Salesforce is a technology company that pioneered cloud-based customer relationship management (CRM) and now offers a broad suite of AI-powered platforms for various business functions, including sales, service, marketing, and commerce.", + "explorer": "https://bscscan.com/token/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2", + "type": "BEP20", + "symbol": "CRMX", + "decimals": 18, + "status": "active", + "id": "0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/salesforce-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2/logo.png b/blockchains/smartchain/assets/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2/logo.png new file mode 100644 index 0000000000000..058611507c29f Binary files /dev/null and b/blockchains/smartchain/assets/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2/logo.png differ diff --git a/blockchains/smartchain/assets/0x4AAd6A01068c2621545d087A3c5281837112585b/info.json b/blockchains/smartchain/assets/0x4AAd6A01068c2621545d087A3c5281837112585b/info.json index 0536d3e60f2cc..a18930f8ba66e 100644 --- a/blockchains/smartchain/assets/0x4AAd6A01068c2621545d087A3c5281837112585b/info.json +++ b/blockchains/smartchain/assets/0x4AAd6A01068c2621545d087A3c5281837112585b/info.json @@ -10,8 +10,8 @@ "id": "0x4AAd6A01068c2621545d087A3c5281837112585b", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MadagascarToken" + "name": "x", + "url": "https://x.com/MadagascarToken" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x4AC32178097c1f62beadCC2D215B54D6915013ee/info.json b/blockchains/smartchain/assets/0x4AC32178097c1f62beadCC2D215B54D6915013ee/info.json index 7f2848f535683..6e74a4323c7a8 100644 --- a/blockchains/smartchain/assets/0x4AC32178097c1f62beadCC2D215B54D6915013ee/info.json +++ b/blockchains/smartchain/assets/0x4AC32178097c1f62beadCC2D215B54D6915013ee/info.json @@ -10,8 +10,8 @@ "id": "0x4AC32178097c1f62beadCC2D215B54D6915013ee", "links": [ { - "name": "twitter", - "url": "https://twitter.com/CoinDiscoveryy" + "name": "x", + "url": "https://x.com/CoinDiscoveryy" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x4AD663403df2F0E7987bC9C74561687472e1611C/info.json b/blockchains/smartchain/assets/0x4AD663403df2F0E7987bC9C74561687472e1611C/info.json new file mode 100644 index 0000000000000..ac60acba683f9 --- /dev/null +++ b/blockchains/smartchain/assets/0x4AD663403df2F0E7987bC9C74561687472e1611C/info.json @@ -0,0 +1,14 @@ +{ + "name": "Frodo the virtual samurai", + "type": "BEP20", + "symbol": "FROG", + "decimals": 18, + "website": "https://frogonbnb.com/", + "description": "Frodo the Virtual Samurai aka FROG on BNB", + "explorer": "https://bscscan.com/token/0x4AD663403df2F0E7987bC9C74561687472e1611C", + "status": "active", + "id": "0x4AD663403df2F0E7987bC9C74561687472e1611C", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4AD663403df2F0E7987bC9C74561687472e1611C/logo.png b/blockchains/smartchain/assets/0x4AD663403df2F0E7987bC9C74561687472e1611C/logo.png new file mode 100644 index 0000000000000..84e3ccd5eb3ba Binary files /dev/null and b/blockchains/smartchain/assets/0x4AD663403df2F0E7987bC9C74561687472e1611C/logo.png differ diff --git a/blockchains/smartchain/assets/0x4AadaD81487c3fadD9F162b851E6a61b729200cb/info.json b/blockchains/smartchain/assets/0x4AadaD81487c3fadD9F162b851E6a61b729200cb/info.json index 318a6e16619ed..e61230a272b60 100644 --- a/blockchains/smartchain/assets/0x4AadaD81487c3fadD9F162b851E6a61b729200cb/info.json +++ b/blockchains/smartchain/assets/0x4AadaD81487c3fadD9F162b851E6a61b729200cb/info.json @@ -10,8 +10,8 @@ "id": "0x4AadaD81487c3fadD9F162b851E6a61b729200cb", "links": [ { - "name": "twitter", - "url": "https://twitter.com/shibaflokitoken" + "name": "x", + "url": "https://x.com/shibaflokitoken" }, { "name": "github", @@ -38,4 +38,4 @@ "gamefi", "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4B0F1812e5Df2A09796481Ff14017e6005508003/logo.png b/blockchains/smartchain/assets/0x4B0F1812e5Df2A09796481Ff14017e6005508003/logo.png index 8e97855518bfd..276a83baae8dd 100644 Binary files a/blockchains/smartchain/assets/0x4B0F1812e5Df2A09796481Ff14017e6005508003/logo.png and b/blockchains/smartchain/assets/0x4B0F1812e5Df2A09796481Ff14017e6005508003/logo.png differ diff --git a/blockchains/smartchain/assets/0x4B17cA4C84cA6654b2c852848D73B10a5aAF8888/info.json b/blockchains/smartchain/assets/0x4B17cA4C84cA6654b2c852848D73B10a5aAF8888/info.json new file mode 100644 index 0000000000000..24e9e670d06b2 --- /dev/null +++ b/blockchains/smartchain/assets/0x4B17cA4C84cA6654b2c852848D73B10a5aAF8888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tеthеr", + "type": "BEP20", + "symbol": "FAKE ՍSDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x4B17cA4C84cA6654b2c852848D73B10a5aAF8888", + "explorer": "https://bscscan.com/token/0x4B17cA4C84cA6654b2c852848D73B10a5aAF8888", + "status": "spam", + "id": "0x4B17cA4C84cA6654b2c852848D73B10a5aAF8888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4B5DeCb9327B4D511A58137A1aDE61434AacdD43/info.json b/blockchains/smartchain/assets/0x4B5DeCb9327B4D511A58137A1aDE61434AacdD43/info.json index 6ec3bf738f00c..0d5c031e80e26 100644 --- a/blockchains/smartchain/assets/0x4B5DeCb9327B4D511A58137A1aDE61434AacdD43/info.json +++ b/blockchains/smartchain/assets/0x4B5DeCb9327B4D511A58137A1aDE61434AacdD43/info.json @@ -10,8 +10,8 @@ "id": "0x4B5DeCb9327B4D511A58137A1aDE61434AacdD43", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PokmiHQ" + "name": "x", + "url": "https://x.com/PokmiHQ" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x4BAf4dC56Cf6a525a0874e25cc6372A6A8915135/info.json b/blockchains/smartchain/assets/0x4BAf4dC56Cf6a525a0874e25cc6372A6A8915135/info.json new file mode 100644 index 0000000000000..fdf2cab3475db --- /dev/null +++ b/blockchains/smartchain/assets/0x4BAf4dC56Cf6a525a0874e25cc6372A6A8915135/info.json @@ -0,0 +1,28 @@ +{ + "name": "MP Materials (Ondo Tokenized)", + "type": "BEP20", + "symbol": "MPon", + "decimals": 18, + "description": "MPon is the Ondo Tokenized version of MP Materials, giving tokenholders economic exposure similar to holding MP and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x4BAf4dC56Cf6a525a0874e25cc6372A6A8915135", + "status": "active", + "id": "0x4BAf4dC56Cf6a525a0874e25cc6372A6A8915135", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mp-materials-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mp-materials-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4BAf4dC56Cf6a525a0874e25cc6372A6A8915135/logo.png b/blockchains/smartchain/assets/0x4BAf4dC56Cf6a525a0874e25cc6372A6A8915135/logo.png new file mode 100644 index 0000000000000..283632c076568 Binary files /dev/null and b/blockchains/smartchain/assets/0x4BAf4dC56Cf6a525a0874e25cc6372A6A8915135/logo.png differ diff --git a/blockchains/smartchain/assets/0x4BE35Ec329343d7d9F548d42B0F8c17FFfe07db4/info.json b/blockchains/smartchain/assets/0x4BE35Ec329343d7d9F548d42B0F8c17FFfe07db4/info.json new file mode 100644 index 0000000000000..0670f5da0342a --- /dev/null +++ b/blockchains/smartchain/assets/0x4BE35Ec329343d7d9F548d42B0F8c17FFfe07db4/info.json @@ -0,0 +1,11 @@ +{ + "name": "HIGH-RISK Tether USD Bridged ZED20", + "type": "BEP20", + "symbol": "HIGH RISK", + "decimals": 18, + "description": "Token assessed as high-risk and not affiliated with Tether USDT", + "website": "https://bscscan.com/token/0x4BE35Ec329343d7d9F548d42B0F8c17FFfe07db4", + "explorer": "https://bscscan.com/token/0x4BE35Ec329343d7d9F548d42B0F8c17FFfe07db4", + "status": "spam", + "id": "0x4BE35Ec329343d7d9F548d42B0F8c17FFfe07db4" +} diff --git a/blockchains/smartchain/assets/0x4BE35Ec329343d7d9F548d42B0F8c17FFfe07db4/logo.png b/blockchains/smartchain/assets/0x4BE35Ec329343d7d9F548d42B0F8c17FFfe07db4/logo.png new file mode 100644 index 0000000000000..9b914ee8e4eb9 Binary files /dev/null and b/blockchains/smartchain/assets/0x4BE35Ec329343d7d9F548d42B0F8c17FFfe07db4/logo.png differ diff --git a/blockchains/smartchain/assets/0x4BbB275012EBE258556B8debE5C07bE98e8d3859/info.json b/blockchains/smartchain/assets/0x4BbB275012EBE258556B8debE5C07bE98e8d3859/info.json index 8f39f3b19f20c..f63414eb6e658 100644 --- a/blockchains/smartchain/assets/0x4BbB275012EBE258556B8debE5C07bE98e8d3859/info.json +++ b/blockchains/smartchain/assets/0x4BbB275012EBE258556B8debE5C07bE98e8d3859/info.json @@ -10,8 +10,8 @@ "id": "0x4BbB275012EBE258556B8debE5C07bE98e8d3859", "links": [ { - "name": "twitter", - "url": "https://twitter.com/narwhalswap" + "name": "x", + "url": "https://x.com/narwhalswap" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x4C882ec256823eE773B25b414d36F92ef58a7c0C/info.json b/blockchains/smartchain/assets/0x4C882ec256823eE773B25b414d36F92ef58a7c0C/info.json index 73e6d2bd579e2..4f9b0b8760b52 100644 --- a/blockchains/smartchain/assets/0x4C882ec256823eE773B25b414d36F92ef58a7c0C/info.json +++ b/blockchains/smartchain/assets/0x4C882ec256823eE773B25b414d36F92ef58a7c0C/info.json @@ -10,8 +10,8 @@ "id": "0x4C882ec256823eE773B25b414d36F92ef58a7c0C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/pStakeFinance" + "name": "x", + "url": "https://x.com/pStakeFinance" }, { "name": "github", @@ -66,4 +66,4 @@ "defi", "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4C888e116D57A32F84865F3789dCB131fDC9FAb6/info.json b/blockchains/smartchain/assets/0x4C888e116D57A32F84865F3789dCB131fDC9FAb6/info.json new file mode 100644 index 0000000000000..92abb0002cf9e --- /dev/null +++ b/blockchains/smartchain/assets/0x4C888e116D57A32F84865F3789dCB131fDC9FAb6/info.json @@ -0,0 +1,21 @@ +{ + "name": "Cirus", + "type": "BEP20", + "symbol": "CIRUS", + "decimals": 18, + "website": "https://cirusfoundation.com/", + "description": "The fluctuating protocol token that plays a role in stabilizing RSV and confers the cryptographic right to purchase excess Reserve tokens as the network grows.", + "explorer": "https://bscscan.com/token/0x4c888e116d57a32f84865f3789dcb131fdc9fab6", + "status": "active", + "id": "0x4C888e116D57A32F84865F3789dCB131fDC9FAb6", + "links": [ + { + "name": "x", + "url": "https://x.com/CirusFoundation" + }, + { + "name": "telegram", + "url": "https://t.me/cirusfoundation" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4C888e116D57A32F84865F3789dCB131fDC9FAb6/logo.png b/blockchains/smartchain/assets/0x4C888e116D57A32F84865F3789dCB131fDC9FAb6/logo.png new file mode 100644 index 0000000000000..c471fa52c208e Binary files /dev/null and b/blockchains/smartchain/assets/0x4C888e116D57A32F84865F3789dCB131fDC9FAb6/logo.png differ diff --git a/blockchains/smartchain/assets/0x4CbdA3D23c031cd403db2d24512aD920BF22f205/info.json b/blockchains/smartchain/assets/0x4CbdA3D23c031cd403db2d24512aD920BF22f205/info.json index 5bc62bdbc2b86..9075435868f8d 100644 --- a/blockchains/smartchain/assets/0x4CbdA3D23c031cd403db2d24512aD920BF22f205/info.json +++ b/blockchains/smartchain/assets/0x4CbdA3D23c031cd403db2d24512aD920BF22f205/info.json @@ -10,8 +10,8 @@ "id": "0x4CbdA3D23c031cd403db2d24512aD920BF22f205", "links": [ { - "name": "twitter", - "url": "https://twitter.com/officialsubx" + "name": "x", + "url": "https://x.com/officialsubx" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x4D1E90aB966ae26c778b2f9f365aA40abB13f53C/info.json b/blockchains/smartchain/assets/0x4D1E90aB966ae26c778b2f9f365aA40abB13f53C/info.json index a60a549ea52ce..b1c413980e8c8 100644 --- a/blockchains/smartchain/assets/0x4D1E90aB966ae26c778b2f9f365aA40abB13f53C/info.json +++ b/blockchains/smartchain/assets/0x4D1E90aB966ae26c778b2f9f365aA40abB13f53C/info.json @@ -10,8 +10,8 @@ "id": "0x4D1E90aB966ae26c778b2f9f365aA40abB13f53C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/STATOKEN" + "name": "x", + "url": "https://x.com/STATOKEN" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x4D209D275e3492aC08497A7A42915899c4dD5E86/info.json b/blockchains/smartchain/assets/0x4D209D275e3492aC08497A7A42915899c4dD5E86/info.json new file mode 100644 index 0000000000000..5720f34c3f1ab --- /dev/null +++ b/blockchains/smartchain/assets/0x4D209D275e3492aC08497A7A42915899c4dD5E86/info.json @@ -0,0 +1,28 @@ +{ + "name": "Exxon Mobil (Ondo Tokenized)", + "type": "BEP20", + "symbol": "XOMon", + "decimals": 18, + "description": "XOMon is the Ondo Tokenized version of Exxon Mobil, giving tokenholders economic exposure similar to holding XOM and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x4D209D275e3492aC08497A7A42915899c4dD5E86", + "status": "active", + "id": "0x4D209D275e3492aC08497A7A42915899c4dD5E86", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/exxon-mobil-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/exxon-mobil-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4D209D275e3492aC08497A7A42915899c4dD5E86/logo.png b/blockchains/smartchain/assets/0x4D209D275e3492aC08497A7A42915899c4dD5E86/logo.png new file mode 100644 index 0000000000000..c1d43656ce7fc Binary files /dev/null and b/blockchains/smartchain/assets/0x4D209D275e3492aC08497A7A42915899c4dD5E86/logo.png differ diff --git a/blockchains/smartchain/assets/0x4D3442D884202584F1729bCA20Db05472B886B52/info.json b/blockchains/smartchain/assets/0x4D3442D884202584F1729bCA20Db05472B886B52/info.json new file mode 100644 index 0000000000000..a9a5267f617fa --- /dev/null +++ b/blockchains/smartchain/assets/0x4D3442D884202584F1729bCA20Db05472B886B52/info.json @@ -0,0 +1,24 @@ +{ + "name": "Northrop Grumman (Ondo Tokenized)", + "type": "BEP20", + "symbol": "NOCon", + "decimals": 18, + "description": "NOCon is the Ondo Tokenized version of Northrop Grumman, giving tokenholders economic exposure similar to holding NOC and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x4D3442D884202584F1729bCA20Db05472B886B52", + "status": "active", + "id": "0x4D3442D884202584F1729bCA20Db05472B886B52", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/northrop-grumman-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4D3442D884202584F1729bCA20Db05472B886B52/logo.png b/blockchains/smartchain/assets/0x4D3442D884202584F1729bCA20Db05472B886B52/logo.png new file mode 100644 index 0000000000000..0ad397a4b13aa Binary files /dev/null and b/blockchains/smartchain/assets/0x4D3442D884202584F1729bCA20Db05472B886B52/logo.png differ diff --git a/blockchains/smartchain/assets/0x4D3dc895a9EDb234DfA3e303A196c009dC918f84/info.json b/blockchains/smartchain/assets/0x4D3dc895a9EDb234DfA3e303A196c009dC918f84/info.json new file mode 100644 index 0000000000000..35f2cddbb853b --- /dev/null +++ b/blockchains/smartchain/assets/0x4D3dc895a9EDb234DfA3e303A196c009dC918f84/info.json @@ -0,0 +1,21 @@ +{ + "name": "Zeebu", + "type": "BEP20", + "symbol": "ZBU", + "decimals": 18, + "website": "https://www.zeebu.com/", + "description": "Zeebu is a telecom carrier business.", + "explorer": "https://bscscan.com/token/0x4D3dc895a9EDb234DfA3e303A196c009dC918f84", + "status": "active", + "id": "0x4D3dc895a9EDb234DfA3e303A196c009dC918f84", + "links": [ + { + "name": "x", + "url": "https://x.com/zeebuofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zeebu/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4D3dc895a9EDb234DfA3e303A196c009dC918f84/logo.png b/blockchains/smartchain/assets/0x4D3dc895a9EDb234DfA3e303A196c009dC918f84/logo.png new file mode 100644 index 0000000000000..07dfd06e49e04 Binary files /dev/null and b/blockchains/smartchain/assets/0x4D3dc895a9EDb234DfA3e303A196c009dC918f84/logo.png differ diff --git a/blockchains/smartchain/assets/0x4D864E4f542b4b40acB3151C9daD2e2C9236a88f/info.json b/blockchains/smartchain/assets/0x4D864E4f542b4b40acB3151C9daD2e2C9236a88f/info.json index a9e4899dc93cc..4ae1819c19ef2 100644 --- a/blockchains/smartchain/assets/0x4D864E4f542b4b40acB3151C9daD2e2C9236a88f/info.json +++ b/blockchains/smartchain/assets/0x4D864E4f542b4b40acB3151C9daD2e2C9236a88f/info.json @@ -10,8 +10,8 @@ "id": "0x4D864E4f542b4b40acB3151C9daD2e2C9236a88f", "links": [ { - "name": "twitter", - "url": "https://twitter.com/xixo_ecosystem" + "name": "x", + "url": "https://x.com/xixo_ecosystem" }, { "name": "whitepaper", diff --git a/blockchains/smartchain/assets/0x4DA12f47578ef89c76179b760C778E70b668f80b/info.json b/blockchains/smartchain/assets/0x4DA12f47578ef89c76179b760C778E70b668f80b/info.json new file mode 100644 index 0000000000000..b5c27d4305e23 --- /dev/null +++ b/blockchains/smartchain/assets/0x4DA12f47578ef89c76179b760C778E70b668f80b/info.json @@ -0,0 +1,24 @@ +{ + "name": "Reddit (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "RDDTon is the Ondo Tokenized version of Reddit, giving tokenholders economic exposure similar to holding RDDT and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x4da12f47578ef89c76179b760c778e70b668f80b", + "type": "BEP20", + "symbol": "RDDTon", + "decimals": 18, + "status": "active", + "id": "0x4DA12f47578ef89c76179b760C778E70b668f80b", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/reddit-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4DA12f47578ef89c76179b760C778E70b668f80b/logo.png b/blockchains/smartchain/assets/0x4DA12f47578ef89c76179b760C778E70b668f80b/logo.png new file mode 100644 index 0000000000000..dc50857f81ba8 Binary files /dev/null and b/blockchains/smartchain/assets/0x4DA12f47578ef89c76179b760C778E70b668f80b/logo.png differ diff --git a/blockchains/smartchain/assets/0x4DB2495AfAd4c0E481fFc40FDaF66E13A786b619/info.json b/blockchains/smartchain/assets/0x4DB2495AfAd4c0E481fFc40FDaF66E13A786b619/info.json index ef23f77317f74..57baa4a887514 100644 --- a/blockchains/smartchain/assets/0x4DB2495AfAd4c0E481fFc40FDaF66E13A786b619/info.json +++ b/blockchains/smartchain/assets/0x4DB2495AfAd4c0E481fFc40FDaF66E13A786b619/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/arixdex_official" }, { - "name": "twitter", - "url": "https://twitter.com/arixdexofficial" + "name": "x", + "url": "https://x.com/arixdexofficial" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4De57ba3C5Be7361F3d5a7C2705A44e194670210/info.json b/blockchains/smartchain/assets/0x4De57ba3C5Be7361F3d5a7C2705A44e194670210/info.json new file mode 100644 index 0000000000000..e270ff6791a48 --- /dev/null +++ b/blockchains/smartchain/assets/0x4De57ba3C5Be7361F3d5a7C2705A44e194670210/info.json @@ -0,0 +1,22 @@ +{ + "name": "BabyBullDogito", + "type": "BEP20", + "symbol": "BBDOGITO", + "decimals": 18, + "description": "THE BEST DOG COIN", + "website": "https://bbdogito.com/", + "explorer": "https://bscscan.com/token/0x4de57ba3c5be7361f3d5a7c2705a44e194670210", + "id": "0x4De57ba3C5Be7361F3d5a7C2705A44e194670210", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/bbdogito" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4De57ba3C5Be7361F3d5a7C2705A44e194670210/logo.png b/blockchains/smartchain/assets/0x4De57ba3C5Be7361F3d5a7C2705A44e194670210/logo.png new file mode 100644 index 0000000000000..1ab01aef41c4a Binary files /dev/null and b/blockchains/smartchain/assets/0x4De57ba3C5Be7361F3d5a7C2705A44e194670210/logo.png differ diff --git a/blockchains/smartchain/assets/0x4E1B10BE34ec6225b37Dfa43A3adC9D4B793e9e3/info.json b/blockchains/smartchain/assets/0x4E1B10BE34ec6225b37Dfa43A3adC9D4B793e9e3/info.json new file mode 100644 index 0000000000000..0faf8ef75e526 --- /dev/null +++ b/blockchains/smartchain/assets/0x4E1B10BE34ec6225b37Dfa43A3adC9D4B793e9e3/info.json @@ -0,0 +1,17 @@ +{ + "name": "Listadog", + "symbol": "Listadog", + "website": "https://x.com/lista_dog/", + "description": "$LisDog is first use LisUSD @lista_dao Liquidity meme on @Four_meme_ A Love Inclusion and support the Dog", + "explorer": "https://bscscan.com/token/0x4e1b10be34ec6225b37dfa43a3adc9d4b793e9e3", + "decimals": 18, + "status": "active", + "id": "0x4E1B10BE34ec6225b37Dfa43A3adC9D4B793e9e3", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/lista_dog/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4E1B10BE34ec6225b37Dfa43A3adC9D4B793e9e3/logo.png b/blockchains/smartchain/assets/0x4E1B10BE34ec6225b37Dfa43A3adC9D4B793e9e3/logo.png new file mode 100644 index 0000000000000..595cb8191f72f Binary files /dev/null and b/blockchains/smartchain/assets/0x4E1B10BE34ec6225b37Dfa43A3adC9D4B793e9e3/logo.png differ diff --git a/blockchains/smartchain/assets/0x4E84e47bBABD89835e2e9569d69A6d465DE38122/info.json b/blockchains/smartchain/assets/0x4E84e47bBABD89835e2e9569d69A6d465DE38122/info.json index d0e1375c8713a..ec2d665f6f2c6 100644 --- a/blockchains/smartchain/assets/0x4E84e47bBABD89835e2e9569d69A6d465DE38122/info.json +++ b/blockchains/smartchain/assets/0x4E84e47bBABD89835e2e9569d69A6d465DE38122/info.json @@ -10,8 +10,8 @@ "id": "0x4E84e47bBABD89835e2e9569d69A6d465DE38122", "links": [ { - "name": "twitter", - "url": "https://twitter.com/sadbabyglobal" + "name": "x", + "url": "https://x.com/sadbabyglobal" }, { "name": "telegram_news", diff --git a/blockchains/smartchain/assets/0x4Ef383f521e803863a33FcA8F3f861e53eF9Ef9B/info.json b/blockchains/smartchain/assets/0x4Ef383f521e803863a33FcA8F3f861e53eF9Ef9B/info.json new file mode 100644 index 0000000000000..da1d71827d2d3 --- /dev/null +++ b/blockchains/smartchain/assets/0x4Ef383f521e803863a33FcA8F3f861e53eF9Ef9B/info.json @@ -0,0 +1,28 @@ +{ + "name": "iShares AAA CLO Active ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "CLOAon", + "decimals": 18, + "description": "CLOAon is the Ondo Tokenized version of the iShares AAA CLO Active ETF, giving tokenholders economic exposure similar to holding CLOA and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x4Ef383f521e803863a33FcA8F3f861e53eF9Ef9B", + "status": "active", + "id": "0x4Ef383f521e803863a33FcA8F3f861e53eF9Ef9B", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-aaa-clo-active-etf-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-aaa-clo-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4Ef383f521e803863a33FcA8F3f861e53eF9Ef9B/logo.png b/blockchains/smartchain/assets/0x4Ef383f521e803863a33FcA8F3f861e53eF9Ef9B/logo.png new file mode 100644 index 0000000000000..8c3d69ffb4bb3 Binary files /dev/null and b/blockchains/smartchain/assets/0x4Ef383f521e803863a33FcA8F3f861e53eF9Ef9B/logo.png differ diff --git a/blockchains/smartchain/assets/0x4F1A6FC6A7B65Dc7ebC4EB692Dc3641bE997c2F2/info.json b/blockchains/smartchain/assets/0x4F1A6FC6A7B65Dc7ebC4EB692Dc3641bE997c2F2/info.json index 568a9f6396659..244b74555d9f4 100644 --- a/blockchains/smartchain/assets/0x4F1A6FC6A7B65Dc7ebC4EB692Dc3641bE997c2F2/info.json +++ b/blockchains/smartchain/assets/0x4F1A6FC6A7B65Dc7ebC4EB692Dc3641bE997c2F2/info.json @@ -10,8 +10,8 @@ "id": "0x4F1A6FC6A7B65Dc7ebC4EB692Dc3641bE997c2F2", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Santa_Coins" + "name": "x", + "url": "https://x.com/Santa_Coins" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/info.json b/blockchains/smartchain/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/info.json new file mode 100644 index 0000000000000..f4e3c8b9e33b0 --- /dev/null +++ b/blockchains/smartchain/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/info.json @@ -0,0 +1,24 @@ +{ + "name": "Peruvian Sol", + "website": "https://www.ripio.com/es/criptos/stablecoins-locales", + "description": "wPEN is a fully collateralized stablecoin pegged 1:1 to the Peruvian Sol (PEN). Issued and governed by a Ripio subsidiary, it brings PEN on-chain so Peruvians and global users can transact, save, and build on decentralized networks in their local currency.", + "explorer": "https://bscscan.com/token/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE", + "type": "BEP20", + "symbol": "wPEN", + "decimals": 18, + "status": "active", + "id": "0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/RipioApp" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/peruvian-sol" + } + ] +} diff --git a/blockchains/smartchain/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/logo.png b/blockchains/smartchain/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/logo.png new file mode 100644 index 0000000000000..bb0e72932d120 Binary files /dev/null and b/blockchains/smartchain/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/logo.png differ diff --git a/blockchains/smartchain/assets/0x4F7413B6ac872D971684A26825AF43870864579C/info.json b/blockchains/smartchain/assets/0x4F7413B6ac872D971684A26825AF43870864579C/info.json index a04966058116f..c9976580b6a1d 100644 --- a/blockchains/smartchain/assets/0x4F7413B6ac872D971684A26825AF43870864579C/info.json +++ b/blockchains/smartchain/assets/0x4F7413B6ac872D971684A26825AF43870864579C/info.json @@ -18,12 +18,12 @@ "url": "https://t.me/ICNAnnouncement" }, { - "name": "twitter", - "url": "https://twitter.com/_icoin" + "name": "x", + "url": "https://x.com/_icoin" } ], "tags": [ "nft", "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4F7B627b88651e3DddcA0240bcA68a3062632C8c/info.json b/blockchains/smartchain/assets/0x4F7B627b88651e3DddcA0240bcA68a3062632C8c/info.json index c33db3f6a5e51..cb6f8e0cbb2e1 100644 --- a/blockchains/smartchain/assets/0x4F7B627b88651e3DddcA0240bcA68a3062632C8c/info.json +++ b/blockchains/smartchain/assets/0x4F7B627b88651e3DddcA0240bcA68a3062632C8c/info.json @@ -10,8 +10,8 @@ "id": "0x4F7B627b88651e3DddcA0240bcA68a3062632C8c", "links": [ { - "name": "twitter", - "url": "https://twitter.com/blackeyegalaxy_" + "name": "x", + "url": "https://x.com/blackeyegalaxy_" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x4Fd67CB8CFEdc718BAc984b5936abE3330d0a2A4/info.json b/blockchains/smartchain/assets/0x4Fd67CB8CFEdc718BAc984b5936abE3330d0a2A4/info.json new file mode 100644 index 0000000000000..8060d53b3d13f --- /dev/null +++ b/blockchains/smartchain/assets/0x4Fd67CB8CFEdc718BAc984b5936abE3330d0a2A4/info.json @@ -0,0 +1,24 @@ +{ + "name": "SanDisk (Ondo Tokenized)", + "type": "BEP20", + "symbol": "SNDKon", + "decimals": 18, + "description": "SNDKon is the Ondo Tokenized version of SanDisk, giving tokenholders economic exposure similar to holding SNDK and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x4Fd67CB8CFEdc718BAc984b5936abE3330d0a2A4", + "status": "active", + "id": "0x4Fd67CB8CFEdc718BAc984b5936abE3330d0a2A4", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sandisk-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4Fd67CB8CFEdc718BAc984b5936abE3330d0a2A4/logo.png b/blockchains/smartchain/assets/0x4Fd67CB8CFEdc718BAc984b5936abE3330d0a2A4/logo.png new file mode 100644 index 0000000000000..34101c9786cac Binary files /dev/null and b/blockchains/smartchain/assets/0x4Fd67CB8CFEdc718BAc984b5936abE3330d0a2A4/logo.png differ diff --git a/blockchains/smartchain/assets/0x4a2c860cEC6471b9F5F5a336eB4F38bb21683c98/info.json b/blockchains/smartchain/assets/0x4a2c860cEC6471b9F5F5a336eB4F38bb21683c98/info.json index 73adaffcd5daf..0401444e629b2 100644 --- a/blockchains/smartchain/assets/0x4a2c860cEC6471b9F5F5a336eB4F38bb21683c98/info.json +++ b/blockchains/smartchain/assets/0x4a2c860cEC6471b9F5F5a336eB4F38bb21683c98/info.json @@ -14,8 +14,8 @@ "url": "https://reddit.com/r/StepN/" }, { - "name": "twitter", - "url": "https://twitter.com/Stepnofficial" + "name": "x", + "url": "https://x.com/Stepnofficial" }, { "name": "coinmarketcap", @@ -33,4 +33,4 @@ "tags": [ "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4a7E278C67543731A864C89e5EB28EaCfa8794EB/info.json b/blockchains/smartchain/assets/0x4a7E278C67543731A864C89e5EB28EaCfa8794EB/info.json new file mode 100644 index 0000000000000..5d07f0585a369 --- /dev/null +++ b/blockchains/smartchain/assets/0x4a7E278C67543731A864C89e5EB28EaCfa8794EB/info.json @@ -0,0 +1,24 @@ +{ + "name": "NCoin", + "type": "BEP20", + "symbol": "NCoin", + "decimals": 18, + "website": "https://natronz.com/", + "description": "NatronZ aims to empower our investors by pushing the boundaries of investment profitability through advanced technological enhancements, taking it to a superior level.", + "explorer": "https://bscscan.com/token/0x4a7E278C67543731A864C89e5EB28EaCfa8794EB", + "status": "active", + "id": "0x4a7E278C67543731A864C89e5EB28EaCfa8794EB", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/natronz/" + }, + { + "name": "facebook", + "url": "https://facebook.com/natronzofficial" + } + ], + "tags": [ + "nft" + ] +} diff --git a/blockchains/smartchain/assets/0x4a7E278C67543731A864C89e5EB28EaCfa8794EB/logo.png b/blockchains/smartchain/assets/0x4a7E278C67543731A864C89e5EB28EaCfa8794EB/logo.png new file mode 100644 index 0000000000000..434a617933352 Binary files /dev/null and b/blockchains/smartchain/assets/0x4a7E278C67543731A864C89e5EB28EaCfa8794EB/logo.png differ diff --git a/blockchains/smartchain/assets/0x4a846D300F793752eE8bd579192C477130C4B369/info.json b/blockchains/smartchain/assets/0x4a846D300F793752eE8bd579192C477130C4B369/info.json index 0d887d8c06ca1..ee6b003a666d5 100644 --- a/blockchains/smartchain/assets/0x4a846D300F793752eE8bd579192C477130C4B369/info.json +++ b/blockchains/smartchain/assets/0x4a846D300F793752eE8bd579192C477130C4B369/info.json @@ -10,8 +10,8 @@ "id": "0x4a846D300F793752eE8bd579192C477130C4B369", "links": [ { - "name": "twitter", - "url": "https://twitter.com/LiteUsd" + "name": "x", + "url": "https://x.com/LiteUsd" }, { "name": "github", @@ -25,4 +25,4 @@ "tags": [ "stablecoin" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4ac81e3631DcDa62109e3117c4CAE7bf70BbbbD2/info.json b/blockchains/smartchain/assets/0x4ac81e3631DcDa62109e3117c4CAE7bf70BbbbD2/info.json index a04a41365ef84..8d2f33b2b569b 100644 --- a/blockchains/smartchain/assets/0x4ac81e3631DcDa62109e3117c4CAE7bf70BbbbD2/info.json +++ b/blockchains/smartchain/assets/0x4ac81e3631DcDa62109e3117c4CAE7bf70BbbbD2/info.json @@ -10,8 +10,8 @@ "id": "0x4ac81e3631DcDa62109e3117c4CAE7bf70BbbbD2", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SPE_Token_BSC" + "name": "x", + "url": "https://x.com/SPE_Token_BSC" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x4ae1cD329e3aa0F70164424D2E5688723A6F9B71/info.json b/blockchains/smartchain/assets/0x4ae1cD329e3aa0F70164424D2E5688723A6F9B71/info.json new file mode 100644 index 0000000000000..a72f1f9f69d4a --- /dev/null +++ b/blockchains/smartchain/assets/0x4ae1cD329e3aa0F70164424D2E5688723A6F9B71/info.json @@ -0,0 +1,17 @@ +{ + "name": "WrappedXFI", + "type": "BEP20", + "symbol": "WXFI", + "decimals": 18, + "website": "https://crossfi.org", + "description": "The CrossFi App is a groundbreaking innovation in digital banking, revolutionizing the way traditional finance integrates with the cryptocurrency world.", + "explorer": "https://bscscan.com/token/0x4ae1cd329e3aa0f70164424d2e5688723a6f9b71", + "status": "active", + "id": "0x4ae1cD329e3aa0F70164424D2E5688723A6F9B71", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crossfinance/" + } + ] +} diff --git a/blockchains/smartchain/assets/0x4ae1cD329e3aa0F70164424D2E5688723A6F9B71/logo.png b/blockchains/smartchain/assets/0x4ae1cD329e3aa0F70164424D2E5688723A6F9B71/logo.png new file mode 100644 index 0000000000000..f1805f8273c16 Binary files /dev/null and b/blockchains/smartchain/assets/0x4ae1cD329e3aa0F70164424D2E5688723A6F9B71/logo.png differ diff --git a/blockchains/smartchain/assets/0x4b0eE7C047D43cA403239f28f42115bEdB7c0076/info.json b/blockchains/smartchain/assets/0x4b0eE7C047D43cA403239f28f42115bEdB7c0076/info.json new file mode 100644 index 0000000000000..a66be1a68ac62 --- /dev/null +++ b/blockchains/smartchain/assets/0x4b0eE7C047D43cA403239f28f42115bEdB7c0076/info.json @@ -0,0 +1,15 @@ +{ + "name": "Oklo xStock", + "type": "BEP20", + "symbol": "OKLOx", + "decimals": 18, + "description": "Oklo xStock (OKLOx) is a tracker certificate issued as a freely transferable token on selected blockchains. OKLOx tracks the price of Oklo Inc.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x4b0eE7C047D43cA403239f28f42115bEdB7c0076", + "status": "active", + "id": "0x4b0eE7C047D43cA403239f28f42115bEdB7c0076", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4b0eE7C047D43cA403239f28f42115bEdB7c0076/logo.png b/blockchains/smartchain/assets/0x4b0eE7C047D43cA403239f28f42115bEdB7c0076/logo.png new file mode 100644 index 0000000000000..989eafce4af86 Binary files /dev/null and b/blockchains/smartchain/assets/0x4b0eE7C047D43cA403239f28f42115bEdB7c0076/logo.png differ diff --git a/blockchains/smartchain/assets/0x4b30fcAA7945fE9fDEFD2895aae539ba102Ed6F6/info.json b/blockchains/smartchain/assets/0x4b30fcAA7945fE9fDEFD2895aae539ba102Ed6F6/info.json new file mode 100644 index 0000000000000..8fc4b8caf02ed --- /dev/null +++ b/blockchains/smartchain/assets/0x4b30fcAA7945fE9fDEFD2895aae539ba102Ed6F6/info.json @@ -0,0 +1,14 @@ +{ + "name": "slisBNB Non-Transferable Receipt", + "type": "BEP20", + "symbol": "slisBNBx", + "decimals": 18, + "website": "https://lista.org/", + "description": "slisBNB Non-Transferable Receipt", + "explorer": "https://app.nansen.ai/token-god-mode?chain=bnb&tab=transactions&tokenAddress=0x4b30fcAA7945fE9fDEFD2895aae539ba102Ed6F6", + "status":"active", + "id": "0x4b30fcAA7945fE9fDEFD2895aae539ba102Ed6F6", + "tags": [ + "staking-native" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4b30fcAA7945fE9fDEFD2895aae539ba102Ed6F6/logo.png b/blockchains/smartchain/assets/0x4b30fcAA7945fE9fDEFD2895aae539ba102Ed6F6/logo.png new file mode 100644 index 0000000000000..4b91257290536 Binary files /dev/null and b/blockchains/smartchain/assets/0x4b30fcAA7945fE9fDEFD2895aae539ba102Ed6F6/logo.png differ diff --git a/blockchains/smartchain/assets/0x4b8285aB433D8f69CB48d5Ad62b415ed1a221e4f/info.json b/blockchains/smartchain/assets/0x4b8285aB433D8f69CB48d5Ad62b415ed1a221e4f/info.json index ff6a871e292f9..af7b76ecc52c7 100644 --- a/blockchains/smartchain/assets/0x4b8285aB433D8f69CB48d5Ad62b415ed1a221e4f/info.json +++ b/blockchains/smartchain/assets/0x4b8285aB433D8f69CB48d5Ad62b415ed1a221e4f/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/MagicCraftGame" + "name": "x", + "url": "https://x.com/MagicCraftGame" }, { "name": "telegram", @@ -29,4 +29,4 @@ "url": "https://coinmarketcap.com/currencies/magiccraft" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4be63a9b26EE89b9a3a13fd0aA1D0b2427C135f8/info.json b/blockchains/smartchain/assets/0x4be63a9b26EE89b9a3a13fd0aA1D0b2427C135f8/info.json index 3a4aad0ed67bb..02bae2ec5fc00 100644 --- a/blockchains/smartchain/assets/0x4be63a9b26EE89b9a3a13fd0aA1D0b2427C135f8/info.json +++ b/blockchains/smartchain/assets/0x4be63a9b26EE89b9a3a13fd0aA1D0b2427C135f8/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/xcarnival" }, { - "name": "twitter", - "url": "https://twitter.com/XCarnival_Lab" + "name": "x", + "url": "https://x.com/XCarnival_Lab" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0x4c48cca6153Db911002F965D22fdeFcD95f33BE9/info.json b/blockchains/smartchain/assets/0x4c48cca6153Db911002F965D22fdeFcD95f33BE9/info.json index 02a9c6d9e6fcb..836b6111d49d8 100644 --- a/blockchains/smartchain/assets/0x4c48cca6153Db911002F965D22fdeFcD95f33BE9/info.json +++ b/blockchains/smartchain/assets/0x4c48cca6153Db911002F965D22fdeFcD95f33BE9/info.json @@ -10,8 +10,8 @@ "id": "0x4c48cca6153Db911002F965D22fdeFcD95f33BE9", "links": [ { - "name": "twitter", - "url": "https://twitter.com/essentialESC" + "name": "x", + "url": "https://x.com/essentialESC" }, { "name": "discord", diff --git a/blockchains/smartchain/assets/0x4c4da68D45F23E38ec8407272ee4f38F280263c0/info.json b/blockchains/smartchain/assets/0x4c4da68D45F23E38ec8407272ee4f38F280263c0/info.json index 6676da2994b4a..2dcec847ba402 100644 --- a/blockchains/smartchain/assets/0x4c4da68D45F23E38ec8407272ee4f38F280263c0/info.json +++ b/blockchains/smartchain/assets/0x4c4da68D45F23E38ec8407272ee4f38F280263c0/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/pandagirltoken" }, { - "name": "twitter", - "url": "https://twitter.com/PandaGirlToken" + "name": "x", + "url": "https://x.com/PandaGirlToken" }, { "name": "coingecko", diff --git a/blockchains/smartchain/assets/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b/info.json b/blockchains/smartchain/assets/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b/info.json new file mode 100644 index 0000000000000..490a9b1cbfe92 --- /dev/null +++ b/blockchains/smartchain/assets/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b/info.json @@ -0,0 +1,24 @@ +{ + "name": "TBLL tokenized ETF (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://bscscan.com/token/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b", + "type": "BEP20", + "symbol": "TBLLX", + "decimals": 18, + "status": "active", + "id": "0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tbll-tokenized-etf-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b/logo.png b/blockchains/smartchain/assets/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b/logo.png new file mode 100644 index 0000000000000..a937d8586cfac Binary files /dev/null and b/blockchains/smartchain/assets/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b/logo.png differ diff --git a/blockchains/smartchain/assets/0x4cc23264E1eF8dd8173E4Ec07E6a01Cc7476d997/info.json b/blockchains/smartchain/assets/0x4cc23264E1eF8dd8173E4Ec07E6a01Cc7476d997/info.json index 884855f614b1f..2d588483ac807 100644 --- a/blockchains/smartchain/assets/0x4cc23264E1eF8dd8173E4Ec07E6a01Cc7476d997/info.json +++ b/blockchains/smartchain/assets/0x4cc23264E1eF8dd8173E4Ec07E6a01Cc7476d997/info.json @@ -17,8 +17,8 @@ "url": "https://t.me/robustprotocol/" }, { - "name": "twitter", - "url": "https://twitter.com/robustprotocol/" + "name": "x", + "url": "https://x.com/robustprotocol/" }, { "name": "docs", diff --git a/blockchains/smartchain/assets/0x4ce2DB133035519F538b7849201D6D541972164c/info.json b/blockchains/smartchain/assets/0x4ce2DB133035519F538b7849201D6D541972164c/info.json index 330aea80fcd49..e0c6862815f36 100644 --- a/blockchains/smartchain/assets/0x4ce2DB133035519F538b7849201D6D541972164c/info.json +++ b/blockchains/smartchain/assets/0x4ce2DB133035519F538b7849201D6D541972164c/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/MagicBox-Lab" }, { - "name": "twitter", - "url": "https://twitter.com/MagicBoxGame" + "name": "x", + "url": "https://x.com/MagicBoxGame" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x4d2d32d8652058Bf98c772953E1Df5c5c85D9F45/info.json b/blockchains/smartchain/assets/0x4d2d32d8652058Bf98c772953E1Df5c5c85D9F45/info.json index 24bc1be43fefa..ae321a8132f88 100644 --- a/blockchains/smartchain/assets/0x4d2d32d8652058Bf98c772953E1Df5c5c85D9F45/info.json +++ b/blockchains/smartchain/assets/0x4d2d32d8652058Bf98c772953E1Df5c5c85D9F45/info.json @@ -10,8 +10,8 @@ "id": "0x4d2d32d8652058Bf98c772953E1Df5c5c85D9F45", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TheDaoMaker" + "name": "x", + "url": "https://x.com/TheDaoMaker" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x4d993ec7b44276615bB2F6F20361AB34FbF0ec49/info.json b/blockchains/smartchain/assets/0x4d993ec7b44276615bB2F6F20361AB34FbF0ec49/info.json index 2ac0b59e9e94a..1f2355cdf5981 100644 --- a/blockchains/smartchain/assets/0x4d993ec7b44276615bB2F6F20361AB34FbF0ec49/info.json +++ b/blockchains/smartchain/assets/0x4d993ec7b44276615bB2F6F20361AB34FbF0ec49/info.json @@ -18,8 +18,8 @@ "url": "https://coingecko.com/en/coins/brandpad-finance" }, { - "name": "twitter", - "url": "https://twitter.com/BrandPadFinance" + "name": "x", + "url": "https://x.com/BrandPadFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x4e2434294a722329B6B64e0c2Fca51B2533D7015/info.json b/blockchains/smartchain/assets/0x4e2434294a722329B6B64e0c2Fca51B2533D7015/info.json index 7a75537705c05..df7f421875c18 100644 --- a/blockchains/smartchain/assets/0x4e2434294a722329B6B64e0c2Fca51B2533D7015/info.json +++ b/blockchains/smartchain/assets/0x4e2434294a722329B6B64e0c2Fca51B2533D7015/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/pepefloki_portal" }, { - "name": "twitter", - "url": "https://twitter.com/pepe_floki" + "name": "x", + "url": "https://x.com/pepe_floki" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4e6415a5727ea08aAE4580057187923aeC331227/info.json b/blockchains/smartchain/assets/0x4e6415a5727ea08aAE4580057187923aeC331227/info.json index 337402a3b1363..7acf398f8938b 100644 --- a/blockchains/smartchain/assets/0x4e6415a5727ea08aAE4580057187923aeC331227/info.json +++ b/blockchains/smartchain/assets/0x4e6415a5727ea08aAE4580057187923aeC331227/info.json @@ -22,8 +22,8 @@ "url": "https://reddit.com/r/refinable" }, { - "name": "twitter", - "url": "https://twitter.com/refinableapp" + "name": "x", + "url": "https://x.com/refinableapp" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x4eA98c1999575aaadfb38237Dd015c5E773F75a2/info.json b/blockchains/smartchain/assets/0x4eA98c1999575aaadfb38237Dd015c5E773F75a2/info.json new file mode 100644 index 0000000000000..a9bc78af9dea0 --- /dev/null +++ b/blockchains/smartchain/assets/0x4eA98c1999575aaadfb38237Dd015c5E773F75a2/info.json @@ -0,0 +1,25 @@ +{ + "name": "MAGA", + "website": "https://magamemecoin.com/", + "description": "Maga is a deflationary meme coin launched on Ethereum. Cryptocurrency was created as a tribute to the trump the Maga.", + "explorer": "https://bscscan.com/token/0x4ea98c1999575aaadfb38237dd015c5e773f75a2", + "type": "BEP20", + "symbol": "TRUMP", + "decimals": 9, + "status": "active", + "id": "0x4eA98c1999575aaadfb38237Dd015c5E773F75a2", + "links": [ + { + "name": "x", + "url": "https://x.com/MAGAMemecoin" + }, + { + "name": "telegram", + "url": "https://t.me/MAGAMemecoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/maga/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4eA98c1999575aaadfb38237Dd015c5E773F75a2/logo.png b/blockchains/smartchain/assets/0x4eA98c1999575aaadfb38237Dd015c5E773F75a2/logo.png new file mode 100644 index 0000000000000..4d1fc39fdc6c4 Binary files /dev/null and b/blockchains/smartchain/assets/0x4eA98c1999575aaadfb38237Dd015c5E773F75a2/logo.png differ diff --git a/blockchains/smartchain/assets/0x4ef29F3B804C316bA8bA464A765C601Fc092a2e9/info.json b/blockchains/smartchain/assets/0x4ef29F3B804C316bA8bA464A765C601Fc092a2e9/info.json index a269e8c9ca5ee..ad549e14be9fc 100644 --- a/blockchains/smartchain/assets/0x4ef29F3B804C316bA8bA464A765C601Fc092a2e9/info.json +++ b/blockchains/smartchain/assets/0x4ef29F3B804C316bA8bA464A765C601Fc092a2e9/info.json @@ -10,8 +10,8 @@ "id": "0x4ef29F3B804C316bA8bA464A765C601Fc092a2e9", "links": [ { - "name": "twitter", - "url": "https://twitter.com/QuantumAssetsQA" + "name": "x", + "url": "https://x.com/QuantumAssetsQA" }, { "name": "coingecko", @@ -21,4 +21,4 @@ "tags": [ "privacy" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4f1960E29b2cA581a38c5c474e123f420F8092db/info.json b/blockchains/smartchain/assets/0x4f1960E29b2cA581a38c5c474e123f420F8092db/info.json index 1bbdf5d139524..27fa5ee3365f9 100644 --- a/blockchains/smartchain/assets/0x4f1960E29b2cA581a38c5c474e123f420F8092db/info.json +++ b/blockchains/smartchain/assets/0x4f1960E29b2cA581a38c5c474e123f420F8092db/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/ubxstoken" }, { - "name": "twitter", - "url": "https://twitter.com/Bixosinc" + "name": "x", + "url": "https://x.com/Bixosinc" }, { "name": "discord", diff --git a/blockchains/smartchain/assets/0x4f34292F109870d5fdDA602Bc7e3ae56D520D6e1/info.json b/blockchains/smartchain/assets/0x4f34292F109870d5fdDA602Bc7e3ae56D520D6e1/info.json index 8f712eb13320a..c66c373608388 100644 --- a/blockchains/smartchain/assets/0x4f34292F109870d5fdDA602Bc7e3ae56D520D6e1/info.json +++ b/blockchains/smartchain/assets/0x4f34292F109870d5fdDA602Bc7e3ae56D520D6e1/info.json @@ -10,8 +10,8 @@ "id": "0x4f34292F109870d5fdDA602Bc7e3ae56D520D6e1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/GameCelt" + "name": "x", + "url": "https://x.com/GameCelt" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x4f5d48D3d28Ff10113283A896952A7722Eaaacd8/info.json b/blockchains/smartchain/assets/0x4f5d48D3d28Ff10113283A896952A7722Eaaacd8/info.json index 5838b96bf1fb8..ecec2c589e8c2 100644 --- a/blockchains/smartchain/assets/0x4f5d48D3d28Ff10113283A896952A7722Eaaacd8/info.json +++ b/blockchains/smartchain/assets/0x4f5d48D3d28Ff10113283A896952A7722Eaaacd8/info.json @@ -6,8 +6,8 @@ "type": "BEP20", "links": [ { - "name": "twitter", - "url": "https://twitter.com/AnnexFinance" + "name": "x", + "url": "https://x.com/AnnexFinance" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0x4fFa143Ce16A24215e8dF96c0CEF5677a7B91EE4/info.json b/blockchains/smartchain/assets/0x4fFa143Ce16A24215e8dF96c0CEF5677a7B91EE4/info.json index da2e01a4e9832..bfbad7fb7ae2d 100644 --- a/blockchains/smartchain/assets/0x4fFa143Ce16A24215e8dF96c0CEF5677a7B91EE4/info.json +++ b/blockchains/smartchain/assets/0x4fFa143Ce16A24215e8dF96c0CEF5677a7B91EE4/info.json @@ -10,8 +10,8 @@ "id": "0x4fFa143Ce16A24215e8dF96c0CEF5677a7B91EE4", "links": [ { - "name": "twitter", - "url": "https://twitter.com/regent_coin" + "name": "x", + "url": "https://x.com/regent_coin" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x500EAFc69b68Acd6F27064f9B75F1C7d91CC4d9F/info.json b/blockchains/smartchain/assets/0x500EAFc69b68Acd6F27064f9B75F1C7d91CC4d9F/info.json new file mode 100644 index 0000000000000..594a9ec6fd72b --- /dev/null +++ b/blockchains/smartchain/assets/0x500EAFc69b68Acd6F27064f9B75F1C7d91CC4d9F/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Russell 2000 ETF (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "IWMon is the Ondo Tokenized version of the iShares Russell 2000 ETF, giving tokenholders economic exposure similar to holding IWM and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x500eafc69b68acd6f27064f9b75f1c7d91cc4d9f", + "type": "BEP20", + "symbol": "IWMon", + "decimals": 18, + "status": "active", + "id": "0x500EAFc69b68Acd6F27064f9B75F1C7d91CC4d9F", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-russell-2000-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x500EAFc69b68Acd6F27064f9B75F1C7d91CC4d9F/logo.png b/blockchains/smartchain/assets/0x500EAFc69b68Acd6F27064f9B75F1C7d91CC4d9F/logo.png new file mode 100644 index 0000000000000..8adf578853fa6 Binary files /dev/null and b/blockchains/smartchain/assets/0x500EAFc69b68Acd6F27064f9B75F1C7d91CC4d9F/logo.png differ diff --git a/blockchains/smartchain/assets/0x50332bdca94673F33401776365b66CC4e81aC81d/info.json b/blockchains/smartchain/assets/0x50332bdca94673F33401776365b66CC4e81aC81d/info.json index 8957c61623c76..e97c47edb4396 100644 --- a/blockchains/smartchain/assets/0x50332bdca94673F33401776365b66CC4e81aC81d/info.json +++ b/blockchains/smartchain/assets/0x50332bdca94673F33401776365b66CC4e81aC81d/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/cryptocarschannel" }, { - "name": "twitter", - "url": "https://twitter.com/cryptocarsgame" + "name": "x", + "url": "https://x.com/cryptocarsgame" }, { "name": "coingecko", diff --git a/blockchains/smartchain/assets/0x50356167a4DbC38BeA6779C045e24E25fAcEdfdc/info.json b/blockchains/smartchain/assets/0x50356167a4DbC38BeA6779C045e24E25fAcEdfdc/info.json new file mode 100644 index 0000000000000..ee09433419a0d --- /dev/null +++ b/blockchains/smartchain/assets/0x50356167a4DbC38BeA6779C045e24E25fAcEdfdc/info.json @@ -0,0 +1,24 @@ +{ + "name": "Spotify (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "SPOTon is the Ondo Tokenized version of Spotify, giving tokenholders economic exposure similar to holding SPOT and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x50356167a4dbc38bea6779c045e24e25facedfdc", + "type": "BEP20", + "symbol": "SPOTon", + "decimals": 18, + "status": "active", + "id": "0x50356167a4DbC38BeA6779C045e24E25fAcEdfdc", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spotify-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x50356167a4DbC38BeA6779C045e24E25fAcEdfdc/logo.png b/blockchains/smartchain/assets/0x50356167a4DbC38BeA6779C045e24E25fAcEdfdc/logo.png new file mode 100644 index 0000000000000..4da09d725ad34 Binary files /dev/null and b/blockchains/smartchain/assets/0x50356167a4DbC38BeA6779C045e24E25fAcEdfdc/logo.png differ diff --git a/blockchains/smartchain/assets/0x503Fa24B7972677F00C4618e5FBe237780C1df53/info.json b/blockchains/smartchain/assets/0x503Fa24B7972677F00C4618e5FBe237780C1df53/info.json new file mode 100644 index 0000000000000..eca266bc0990e --- /dev/null +++ b/blockchains/smartchain/assets/0x503Fa24B7972677F00C4618e5FBe237780C1df53/info.json @@ -0,0 +1,17 @@ +{ + "name": "KiloEx", + "symbol": "KILO", + "type": "BEP20", + "decimals": 18, + "description": "Next generation of user-friendly perpetual DEX on BNB Chain/opBNB/Base/Manta. Fully integration with LSTfi.", + "website": "https://www.kiloex.io/", + "explorer": "https://bscscan.com/token/0x503fa24b7972677f00c4618e5fbe237780c1df53", + "status": "active", + "id": "0x503Fa24B7972677F00C4618e5FBe237780C1df53", + "links": [ + { + "name": "x", + "url": "https://x.com/KiloEx_perp" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x503Fa24B7972677F00C4618e5FBe237780C1df53/logo.png b/blockchains/smartchain/assets/0x503Fa24B7972677F00C4618e5FBe237780C1df53/logo.png new file mode 100644 index 0000000000000..f81b8dc1403bf Binary files /dev/null and b/blockchains/smartchain/assets/0x503Fa24B7972677F00C4618e5FBe237780C1df53/logo.png differ diff --git a/blockchains/smartchain/assets/0x5043F271095350c5ac7db2384A0d9337E27c1055/info.json b/blockchains/smartchain/assets/0x5043F271095350c5ac7db2384A0d9337E27c1055/info.json new file mode 100644 index 0000000000000..90d2f08e4a5d2 --- /dev/null +++ b/blockchains/smartchain/assets/0x5043F271095350c5ac7db2384A0d9337E27c1055/info.json @@ -0,0 +1,17 @@ +{ + "name": "Perry", + "symbol": "PERRY", + "website": "https://forum.bnbchain.org/t/2025-binance-mascot/3171", + "description": "CZ's Abandoned Dog PERRY", + "explorer": "https://bscscan.com/token/0x5043f271095350c5ac7db2384a0d9337e27c1055", + "decimals": 18, + "status": "active", + "id": "0x5043F271095350c5ac7db2384A0d9337E27c1055", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/perrybinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5043F271095350c5ac7db2384A0d9337E27c1055/logo.png b/blockchains/smartchain/assets/0x5043F271095350c5ac7db2384A0d9337E27c1055/logo.png new file mode 100644 index 0000000000000..8c4493bae3f9a Binary files /dev/null and b/blockchains/smartchain/assets/0x5043F271095350c5ac7db2384A0d9337E27c1055/logo.png differ diff --git a/blockchains/smartchain/assets/0x5066C68cAe3B9BdaCD6A1A37c90F2d1723559D18/info.json b/blockchains/smartchain/assets/0x5066C68cAe3B9BdaCD6A1A37c90F2d1723559D18/info.json index 6b152bbb39626..10ef931ee2784 100644 --- a/blockchains/smartchain/assets/0x5066C68cAe3B9BdaCD6A1A37c90F2d1723559D18/info.json +++ b/blockchains/smartchain/assets/0x5066C68cAe3B9BdaCD6A1A37c90F2d1723559D18/info.json @@ -10,8 +10,8 @@ "id": "0x5066C68cAe3B9BdaCD6A1A37c90F2d1723559D18", "links": [ { - "name": "twitter", - "url": "https://twitter.com/WIZARD_BSC" + "name": "x", + "url": "https://x.com/WIZARD_BSC" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1/info.json b/blockchains/smartchain/assets/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1/info.json new file mode 100644 index 0000000000000..cd65f31f3bcde --- /dev/null +++ b/blockchains/smartchain/assets/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1/info.json @@ -0,0 +1,24 @@ +{ + "name": "AppLovin tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "AppLovin xStock (APPx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. APPx tracks the price of AppLovin Corporation (the underlying). APPx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of AppLovin Corporation, whilst maintaining the benefits of blockchain technology. AppLovin is a global mobile technology company that provides businesses with solutions to connect with their target audience, market, monetize, and grow their apps and content.", + "explorer": "https://bscscan.com/token/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1", + "type": "BEP20", + "symbol": "APPX", + "decimals": 18, + "status": "active", + "id": "0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/applovin-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1/logo.png b/blockchains/smartchain/assets/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1/logo.png new file mode 100644 index 0000000000000..29c2803eba26a Binary files /dev/null and b/blockchains/smartchain/assets/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1/logo.png differ diff --git a/blockchains/smartchain/assets/0x50cd57Dc9768509fC256FF4f2A0B4461cBC1B779/info.json b/blockchains/smartchain/assets/0x50cd57Dc9768509fC256FF4f2A0B4461cBC1B779/info.json new file mode 100644 index 0000000000000..1f6a706005aeb --- /dev/null +++ b/blockchains/smartchain/assets/0x50cd57Dc9768509fC256FF4f2A0B4461cBC1B779/info.json @@ -0,0 +1,14 @@ +{ + "name": "AICC", + "type": "BEP20", + "symbol": "AICC", + "decimals": 18, + "website": "https://four.meme/token/0x50cd57Dc9768509fC256FF4f2A0B4461cBC1B779", + "description": "AICC", + "explorer": "https://bscscan.com/token/0x50cd57Dc9768509fC256FF4f2A0B4461cBC1B779", + "status": "active", + "id": "0x50cd57Dc9768509fC256FF4f2A0B4461cBC1B779", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x50cd57Dc9768509fC256FF4f2A0B4461cBC1B779/logo.png b/blockchains/smartchain/assets/0x50cd57Dc9768509fC256FF4f2A0B4461cBC1B779/logo.png new file mode 100644 index 0000000000000..ec870bdb28ffd Binary files /dev/null and b/blockchains/smartchain/assets/0x50cd57Dc9768509fC256FF4f2A0B4461cBC1B779/logo.png differ diff --git a/blockchains/smartchain/assets/0x51363F073b1E4920fdA7AA9E9d84BA97EdE1560e/info.json b/blockchains/smartchain/assets/0x51363F073b1E4920fdA7AA9E9d84BA97EdE1560e/info.json new file mode 100644 index 0000000000000..96de8f0664dd1 --- /dev/null +++ b/blockchains/smartchain/assets/0x51363F073b1E4920fdA7AA9E9d84BA97EdE1560e/info.json @@ -0,0 +1,30 @@ +{ + "name": "Build On BNB", + "type": "BEP20", + "symbol": "BOB", + "decimals": 18, + "description": "Meme created by Binance in an interaction with the Binance intern. they asked the community to name their mascot and confirmed the name as bob. his instructions were to make bsc great again.", + "website": "https://buildonbnb.com/", + "explorer": "https://bscscan.com/token/0x51363f073b1e4920fda7aa9e9d84ba97ede1560e", + "id": "0x51363F073b1E4920fdA7AA9E9d84BA97EdE1560e", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/BuildOnBNBBOB" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/build-on-bnb/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/build-on-bnb" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x51363F073b1E4920fdA7AA9E9d84BA97EdE1560e/logo.png b/blockchains/smartchain/assets/0x51363F073b1E4920fdA7AA9E9d84BA97EdE1560e/logo.png new file mode 100644 index 0000000000000..7f14c8d7c539a Binary files /dev/null and b/blockchains/smartchain/assets/0x51363F073b1E4920fdA7AA9E9d84BA97EdE1560e/logo.png differ diff --git a/blockchains/smartchain/assets/0x5151A22421Ed4277F1e4ca4785a07b035D548a36/info.json b/blockchains/smartchain/assets/0x5151A22421Ed4277F1e4ca4785a07b035D548a36/info.json new file mode 100644 index 0000000000000..abb86d486b79e --- /dev/null +++ b/blockchains/smartchain/assets/0x5151A22421Ed4277F1e4ca4785a07b035D548a36/info.json @@ -0,0 +1,24 @@ +{ + "name": "General Electric (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "GEon is the Ondo Tokenized version of General Electric, giving tokenholders economic exposure similar to holding GE and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x5151a22421ed4277f1e4ca4785a07b035d548a36", + "type": "BEP20", + "symbol": "GEon", + "decimals": 18, + "status": "active", + "id": "0x5151A22421Ed4277F1e4ca4785a07b035D548a36", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/general-electric-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5151A22421Ed4277F1e4ca4785a07b035D548a36/logo.png b/blockchains/smartchain/assets/0x5151A22421Ed4277F1e4ca4785a07b035D548a36/logo.png new file mode 100644 index 0000000000000..8ea1ca1d71fa7 Binary files /dev/null and b/blockchains/smartchain/assets/0x5151A22421Ed4277F1e4ca4785a07b035D548a36/logo.png differ diff --git a/blockchains/smartchain/assets/0x51FA2327034FF608987B7eF3F57703aCBCD48888/info.json b/blockchains/smartchain/assets/0x51FA2327034FF608987B7eF3F57703aCBCD48888/info.json new file mode 100644 index 0000000000000..6fa6ecd75a393 --- /dev/null +++ b/blockchains/smartchain/assets/0x51FA2327034FF608987B7eF3F57703aCBCD48888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether USD", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x51FA2327034FF608987B7eF3F57703aCBCD48888", + "explorer": "https://bscscan.com/token/0x51FA2327034FF608987B7eF3F57703aCBCD48888", + "status": "spam", + "id": "0x51FA2327034FF608987B7eF3F57703aCBCD48888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x51e6D27FA57373d8d4C256231241053a70Cb1d93/info.json b/blockchains/smartchain/assets/0x51e6D27FA57373d8d4C256231241053a70Cb1d93/info.json index f940a76294da9..aab19928504c6 100644 --- a/blockchains/smartchain/assets/0x51e6D27FA57373d8d4C256231241053a70Cb1d93/info.json +++ b/blockchains/smartchain/assets/0x51e6D27FA57373d8d4C256231241053a70Cb1d93/info.json @@ -18,8 +18,8 @@ "url": "https://apeswap.gitbook.io/apeswap-finance/" }, { - "name": "twitter", - "url": "https://twitter.com/ape_swap" + "name": "x", + "url": "https://x.com/ape_swap" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x51eD5b74A05F256DbD9Ebb4e4f68Bb41ba10160b/info.json b/blockchains/smartchain/assets/0x51eD5b74A05F256DbD9Ebb4e4f68Bb41ba10160b/info.json new file mode 100644 index 0000000000000..6bb9ce294c70f --- /dev/null +++ b/blockchains/smartchain/assets/0x51eD5b74A05F256DbD9Ebb4e4f68Bb41ba10160b/info.json @@ -0,0 +1,15 @@ +{ + "name": "Core Scientific xStock", + "type": "BEP20", + "symbol": "CORZx", + "decimals": 18, + "description": "Core Scientific xStock (CORZx) is a tracker certificate issued as a freely transferable token on selected blockchains. CORZx tracks the price of Core Scientific, Inc.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x51eD5b74A05F256DbD9Ebb4e4f68Bb41ba10160b", + "status": "active", + "id": "0x51eD5b74A05F256DbD9Ebb4e4f68Bb41ba10160b", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x51eD5b74A05F256DbD9Ebb4e4f68Bb41ba10160b/logo.png b/blockchains/smartchain/assets/0x51eD5b74A05F256DbD9Ebb4e4f68Bb41ba10160b/logo.png new file mode 100644 index 0000000000000..81052b19d4590 Binary files /dev/null and b/blockchains/smartchain/assets/0x51eD5b74A05F256DbD9Ebb4e4f68Bb41ba10160b/logo.png differ diff --git a/blockchains/smartchain/assets/0x520EbCcc63E4d0804b35Cda25978BEb7159bF0CC/info.json b/blockchains/smartchain/assets/0x520EbCcc63E4d0804b35Cda25978BEb7159bF0CC/info.json index f6e9bafae4471..4015ab8b4ee6b 100644 --- a/blockchains/smartchain/assets/0x520EbCcc63E4d0804b35Cda25978BEb7159bF0CC/info.json +++ b/blockchains/smartchain/assets/0x520EbCcc63E4d0804b35Cda25978BEb7159bF0CC/info.json @@ -10,8 +10,8 @@ "id": "0x520EbCcc63E4d0804b35Cda25978BEb7159bF0CC", "links": [ { - "name": "twitter", - "url": "https://twitter.com/legocoinlive" + "name": "x", + "url": "https://x.com/legocoinlive" }, { "name": "telegram", @@ -33,4 +33,4 @@ "tags": [ "memes" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x521860bB5dF5468358875266B89BFE90d990C6e7/info.json b/blockchains/smartchain/assets/0x521860bB5dF5468358875266B89BFE90d990C6e7/info.json new file mode 100644 index 0000000000000..54fde6e0b02b5 --- /dev/null +++ b/blockchains/smartchain/assets/0x521860bB5dF5468358875266B89BFE90d990C6e7/info.json @@ -0,0 +1,24 @@ +{ + "name": "DFDV tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "DFDV tokenized stock (xStock) (DFDVx) is a cryptocurrency launched in 2025and operates on the Solana platform. DFDV tokenized stock (xStock) has a current supply of 89,998.8299641. The last known price of DFDV tokenized stock (xStock) is 17.41975634 USD and is up 0.35 over the last 24 hours. It is currently trading on 13 active market(s) with $2,140,595.18 traded over the last 24 hours. More information can be found at https://defidevcorp.com/.", + "explorer": "https://bscscan.com/token/0x521860bB5dF5468358875266B89BFE90d990C6e7", + "type": "BEP20", + "symbol": "DFDVx", + "decimals": 18, + "status": "active", + "id": "0x521860bB5dF5468358875266B89BFE90d990C6e7", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dfdv-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x521860bB5dF5468358875266B89BFE90d990C6e7/logo.png b/blockchains/smartchain/assets/0x521860bB5dF5468358875266B89BFE90d990C6e7/logo.png new file mode 100644 index 0000000000000..cf1609ac71978 Binary files /dev/null and b/blockchains/smartchain/assets/0x521860bB5dF5468358875266B89BFE90d990C6e7/logo.png differ diff --git a/blockchains/smartchain/assets/0x5232B3f532b58FBf96Ec7cbDBf10C01cB0520c87/info.json b/blockchains/smartchain/assets/0x5232B3f532b58FBf96Ec7cbDBf10C01cB0520c87/info.json index 2fb625fc9070e..76759cbf271d2 100644 --- a/blockchains/smartchain/assets/0x5232B3f532b58FBf96Ec7cbDBf10C01cB0520c87/info.json +++ b/blockchains/smartchain/assets/0x5232B3f532b58FBf96Ec7cbDBf10C01cB0520c87/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/rielcoin" }, { - "name": "twitter", - "url": "https://twitter.com/rielcoin" + "name": "x", + "url": "https://x.com/rielcoin" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x523821d20a283d955f6205B4C9252779Cd0f964B/info.json b/blockchains/smartchain/assets/0x523821d20a283d955f6205B4C9252779Cd0f964B/info.json index e31d5df972a26..b5a9fe733ff3b 100644 --- a/blockchains/smartchain/assets/0x523821d20a283d955f6205B4C9252779Cd0f964B/info.json +++ b/blockchains/smartchain/assets/0x523821d20a283d955f6205B4C9252779Cd0f964B/info.json @@ -10,8 +10,8 @@ "id": "0x523821d20a283d955f6205B4C9252779Cd0f964B", "links": [ { - "name": "twitter", - "url": "https://twitter.com/OkcashCrypto" + "name": "x", + "url": "https://x.com/OkcashCrypto" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x52419258E3fa44DEAc7E670eaDD4c892B480A805/info.json b/blockchains/smartchain/assets/0x52419258E3fa44DEAc7E670eaDD4c892B480A805/info.json index 91c7acfeb3e35..5f2835a16f909 100644 --- a/blockchains/smartchain/assets/0x52419258E3fa44DEAc7E670eaDD4c892B480A805/info.json +++ b/blockchains/smartchain/assets/0x52419258E3fa44DEAc7E670eaDD4c892B480A805/info.json @@ -10,8 +10,8 @@ "id": "0x52419258E3fa44DEAc7E670eaDD4c892B480A805", "links": [ { - "name": "twitter", - "url": "https://twitter.com/deploystarship" + "name": "x", + "url": "https://x.com/deploystarship" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x524Ec3a03d7414304FE6B79De8b38E6812998FF2/info.json b/blockchains/smartchain/assets/0x524Ec3a03d7414304FE6B79De8b38E6812998FF2/info.json new file mode 100644 index 0000000000000..ebcb3e1ac81ad --- /dev/null +++ b/blockchains/smartchain/assets/0x524Ec3a03d7414304FE6B79De8b38E6812998FF2/info.json @@ -0,0 +1,22 @@ +{ + "name": "Takki", + "type": "BEP20", + "symbol": "TAKKI", + "decimals": 18, + "description": "kabochan.blog.jp/archives/53279750.html https://pic.x.com/kVuA9r2Ylp", + "website": "https://x.com/kabosumama/status/1892540639767597182?t=Nnx6nWG1aAgCIZdEmrh0RA&s=19", + "explorer": "https://bscscan.com/token/0x524ec3a03d7414304fe6b79de8b38e6812998ff2", + "id": "0x524Ec3a03d7414304FE6B79De8b38E6812998FF2", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/kabosumama" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x524Ec3a03d7414304FE6B79De8b38E6812998FF2/logo.png b/blockchains/smartchain/assets/0x524Ec3a03d7414304FE6B79De8b38E6812998FF2/logo.png new file mode 100644 index 0000000000000..36274fdd81fe7 Binary files /dev/null and b/blockchains/smartchain/assets/0x524Ec3a03d7414304FE6B79De8b38E6812998FF2/logo.png differ diff --git a/blockchains/smartchain/assets/0x524dF384BFFB18C0C8f3f43d012011F8F9795579/info.json b/blockchains/smartchain/assets/0x524dF384BFFB18C0C8f3f43d012011F8F9795579/info.json index f384541e67a7d..a3993a7e89706 100644 --- a/blockchains/smartchain/assets/0x524dF384BFFB18C0C8f3f43d012011F8F9795579/info.json +++ b/blockchains/smartchain/assets/0x524dF384BFFB18C0C8f3f43d012011F8F9795579/info.json @@ -10,8 +10,8 @@ "status": "active", "links": [ { - "name": "twitter", - "url": "https://twitter.com/yayprotocol/" + "name": "x", + "url": "https://x.com/yayprotocol/" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0x5261ecAc2A4d265A8751d537aD8709E55d868888/info.json b/blockchains/smartchain/assets/0x5261ecAc2A4d265A8751d537aD8709E55d868888/info.json new file mode 100644 index 0000000000000..f742cc20fcd2c --- /dev/null +++ b/blockchains/smartchain/assets/0x5261ecAc2A4d265A8751d537aD8709E55d868888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x5261ecAc2A4d265A8751d537aD8709E55d868888", + "explorer": "https://bscscan.com/token/0x5261ecAc2A4d265A8751d537aD8709E55d868888", + "status": "spam", + "id": "0x5261ecAc2A4d265A8751d537aD8709E55d868888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x527C6436E1eAa4f2065CDE4090F798Cb5D031dD6/info.json b/blockchains/smartchain/assets/0x527C6436E1eAa4f2065CDE4090F798Cb5D031dD6/info.json new file mode 100644 index 0000000000000..b5b7678c20207 --- /dev/null +++ b/blockchains/smartchain/assets/0x527C6436E1eAa4f2065CDE4090F798Cb5D031dD6/info.json @@ -0,0 +1,24 @@ +{ + "name": "Arm Holdings plc (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "ARMon is the Ondo Tokenized version of Arm Holdings plc, giving tokenholders economic exposure similar to holding ARM and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x527c6436e1eaa4f2065cde4090f798cb5d031dd6", + "type": "BEP20", + "symbol": "ARMon", + "decimals": 18, + "status": "active", + "id": "0x527C6436E1eAa4f2065CDE4090F798Cb5D031dD6", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/arm-holdings-plc-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x527C6436E1eAa4f2065CDE4090F798Cb5D031dD6/logo.png b/blockchains/smartchain/assets/0x527C6436E1eAa4f2065CDE4090F798Cb5D031dD6/logo.png new file mode 100644 index 0000000000000..33bca5e1d074b Binary files /dev/null and b/blockchains/smartchain/assets/0x527C6436E1eAa4f2065CDE4090F798Cb5D031dD6/logo.png differ diff --git a/blockchains/smartchain/assets/0x52941a733F7bAb6E52d5C8f2045c9D9D9eA246Ff/info.json b/blockchains/smartchain/assets/0x52941a733F7bAb6E52d5C8f2045c9D9D9eA246Ff/info.json index 274cea8bcd142..093f4c1ea58c4 100644 --- a/blockchains/smartchain/assets/0x52941a733F7bAb6E52d5C8f2045c9D9D9eA246Ff/info.json +++ b/blockchains/smartchain/assets/0x52941a733F7bAb6E52d5C8f2045c9D9D9eA246Ff/info.json @@ -10,8 +10,8 @@ "id": "0x52941a733F7bAb6E52d5C8f2045c9D9D9eA246Ff", "links": [ { - "name": "twitter", - "url": "https://twitter.com/shibawatchtoken" + "name": "x", + "url": "https://x.com/shibawatchtoken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x5298AD82dD7C83eEaA31DDa9DEB4307664C60534/info.json b/blockchains/smartchain/assets/0x5298AD82dD7C83eEaA31DDa9DEB4307664C60534/info.json index 242a72d6253a4..8094e06dcacb3 100644 --- a/blockchains/smartchain/assets/0x5298AD82dD7C83eEaA31DDa9DEB4307664C60534/info.json +++ b/blockchains/smartchain/assets/0x5298AD82dD7C83eEaA31DDa9DEB4307664C60534/info.json @@ -10,8 +10,8 @@ "id": "0x5298AD82dD7C83eEaA31DDa9DEB4307664C60534", "links": [ { - "name": "twitter", - "url": "https://twitter.com/RS25Moonshot" + "name": "x", + "url": "https://x.com/RS25Moonshot" }, { "name": "github", @@ -42,4 +42,4 @@ "nft", "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x529C79f6918665EBE250F32eeEAA1d410a0798C6/info.json b/blockchains/smartchain/assets/0x529C79f6918665EBE250F32eeEAA1d410a0798C6/info.json new file mode 100644 index 0000000000000..0025f7cd9b438 --- /dev/null +++ b/blockchains/smartchain/assets/0x529C79f6918665EBE250F32eeEAA1d410a0798C6/info.json @@ -0,0 +1,21 @@ +{ + "name": "HYPERGPT", + "type": "BEP20", + "symbol": "HGPT", + "decimals": 18, + "website": "https://www.catboy.io/", + "description": "HyperGPT: The all-in-one AI marketplace and SDK. Access integrated AI solutions, pay-as-you-go with a credit model, and enjoy seamless API integration through one account. Developers and users welcome to the future of AI.", + "explorer": "https://bscscan.com/token/0x529C79f6918665EBE250F32eeEAA1d410a0798C6", + "status": "active", + "id": "0x529C79f6918665EBE250F32eeEAA1d410a0798C6", + "links": [ + { + "name": "x", + "url": "https://x.com/hypergpt" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hypergpt/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x529C79f6918665EBE250F32eeEAA1d410a0798C6/logo.png b/blockchains/smartchain/assets/0x529C79f6918665EBE250F32eeEAA1d410a0798C6/logo.png new file mode 100644 index 0000000000000..aa352afeddc48 Binary files /dev/null and b/blockchains/smartchain/assets/0x529C79f6918665EBE250F32eeEAA1d410a0798C6/logo.png differ diff --git a/blockchains/smartchain/assets/0x52AD57A7eA642E99A892AFc79E937B383f1b59e9/info.json b/blockchains/smartchain/assets/0x52AD57A7eA642E99A892AFc79E937B383f1b59e9/info.json new file mode 100644 index 0000000000000..64e131d0614fb --- /dev/null +++ b/blockchains/smartchain/assets/0x52AD57A7eA642E99A892AFc79E937B383f1b59e9/info.json @@ -0,0 +1,28 @@ +{ + "name": "BitMine Immersion Technologies (Ondo Tokenized)", + "type": "BEP20", + "symbol": "BMNRon", + "decimals": 18, + "description": "BMNRon is the Ondo Tokenized version of BitMine Immersion Technologies, giving tokenholders economic exposure similar to holding BMNR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x52AD57A7eA642E99A892AFc79E937B383f1b59e9", + "status": "active", + "id": "0x52AD57A7eA642E99A892AFc79E937B383f1b59e9", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bitmine-immersion-technologies-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bitmine-immersion-technologies-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x52AD57A7eA642E99A892AFc79E937B383f1b59e9/logo.png b/blockchains/smartchain/assets/0x52AD57A7eA642E99A892AFc79E937B383f1b59e9/logo.png new file mode 100644 index 0000000000000..b2bd2c4cc9675 Binary files /dev/null and b/blockchains/smartchain/assets/0x52AD57A7eA642E99A892AFc79E937B383f1b59e9/logo.png differ diff --git a/blockchains/smartchain/assets/0x52CE071Bd9b1C4B00A0b92D298c512478CaD67e8/info.json b/blockchains/smartchain/assets/0x52CE071Bd9b1C4B00A0b92D298c512478CaD67e8/info.json index 95474f766eb90..d96ea3b280356 100644 --- a/blockchains/smartchain/assets/0x52CE071Bd9b1C4B00A0b92D298c512478CaD67e8/info.json +++ b/blockchains/smartchain/assets/0x52CE071Bd9b1C4B00A0b92D298c512478CaD67e8/info.json @@ -1,5 +1,5 @@ { - "name": "BNB pegged Compound", + "name": "Compound", "website": "https://compound.finance", "description": "BNB pegged Compound (COMP BEP20) is a token issued by Binance on Smart Chain; its price is pegged to Compound (COMP ERC20) at a ratio of 1:1.", "explorer": "https://bscscan.com/token/0x52CE071Bd9b1C4B00A0b92D298c512478CaD67e8", diff --git a/blockchains/smartchain/assets/0x52F24a5e03aee338Da5fd9Df68D2b6FAe1178827/info.json b/blockchains/smartchain/assets/0x52F24a5e03aee338Da5fd9Df68D2b6FAe1178827/info.json index 6a24718d3d107..8814d5d8a5da3 100644 --- a/blockchains/smartchain/assets/0x52F24a5e03aee338Da5fd9Df68D2b6FAe1178827/info.json +++ b/blockchains/smartchain/assets/0x52F24a5e03aee338Da5fd9Df68D2b6FAe1178827/info.json @@ -10,8 +10,8 @@ "id": "0x52F24a5e03aee338Da5fd9Df68D2b6FAe1178827", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ankr" + "name": "x", + "url": "https://x.com/ankr" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x52e22D2480bC39F4aB13d4788014AEc3195bbCf7/info.json b/blockchains/smartchain/assets/0x52e22D2480bC39F4aB13d4788014AEc3195bbCf7/info.json index a6470bbb1e788..3362dcd4b3b38 100644 --- a/blockchains/smartchain/assets/0x52e22D2480bC39F4aB13d4788014AEc3195bbCf7/info.json +++ b/blockchains/smartchain/assets/0x52e22D2480bC39F4aB13d4788014AEc3195bbCf7/info.json @@ -10,8 +10,8 @@ "id": "0x52e22D2480bC39F4aB13d4788014AEc3195bbCf7", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SafeBankToken" + "name": "x", + "url": "https://x.com/SafeBankToken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x5344C20FD242545F31723689662AC12b9556fC3d/info.json b/blockchains/smartchain/assets/0x5344C20FD242545F31723689662AC12b9556fC3d/info.json index 1af2d24c81e7d..c2d698a0dac5f 100644 --- a/blockchains/smartchain/assets/0x5344C20FD242545F31723689662AC12b9556fC3d/info.json +++ b/blockchains/smartchain/assets/0x5344C20FD242545F31723689662AC12b9556fC3d/info.json @@ -18,8 +18,8 @@ "url": "https://t.me/wakandainu" }, { - "name": "twitter", - "url": "https://twitter.com/Wakandainu" + "name": "x", + "url": "https://x.com/Wakandainu" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x534E99ff924038eB4a3aa7fac791D1eF8BB08b37/info.json b/blockchains/smartchain/assets/0x534E99ff924038eB4a3aa7fac791D1eF8BB08b37/info.json index ae34a3e409129..7613ba6b060e3 100644 --- a/blockchains/smartchain/assets/0x534E99ff924038eB4a3aa7fac791D1eF8BB08b37/info.json +++ b/blockchains/smartchain/assets/0x534E99ff924038eB4a3aa7fac791D1eF8BB08b37/info.json @@ -4,8 +4,8 @@ "description": "World of Tiny Titans. Tiny Titans — collectable & tradeable NFTs on BSC which you can train, level and win prices.", "links": [ { - "name": "twitter", - "url": "https://twitter.com/RealTinyTitans" + "name": "x", + "url": "https://x.com/RealTinyTitans" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0x536627083e216C3Cf4476ec504eb51Bbd47cA4ac/info.json b/blockchains/smartchain/assets/0x536627083e216C3Cf4476ec504eb51Bbd47cA4ac/info.json index e88322bf8b06e..b464c2c287344 100644 --- a/blockchains/smartchain/assets/0x536627083e216C3Cf4476ec504eb51Bbd47cA4ac/info.json +++ b/blockchains/smartchain/assets/0x536627083e216C3Cf4476ec504eb51Bbd47cA4ac/info.json @@ -18,8 +18,8 @@ "url": "https://coingecko.com/en/coins/gaming-doge" }, { - "name": "twitter", - "url": "https://twitter.com/gamingdogetoken" + "name": "x", + "url": "https://x.com/gamingdogetoken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x536825370F1159cBA953055f5c2F16DDc7B5a348/info.json b/blockchains/smartchain/assets/0x536825370F1159cBA953055f5c2F16DDc7B5a348/info.json new file mode 100644 index 0000000000000..38fa22fa166f4 --- /dev/null +++ b/blockchains/smartchain/assets/0x536825370F1159cBA953055f5c2F16DDc7B5a348/info.json @@ -0,0 +1,15 @@ +{ + "name": "Planet Labs xStock", + "type": "BEP20", + "symbol": "PLx", + "decimals": 18, + "description": "Planet Labs xStock (PLx) is a tracker certificate issued as a freely transferable token on selected blockchains. PLx tracks the price of Planet Labs PBC.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x536825370F1159cBA953055f5c2F16DDc7B5a348", + "status": "active", + "id": "0x536825370F1159cBA953055f5c2F16DDc7B5a348", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x536825370F1159cBA953055f5c2F16DDc7B5a348/logo.png b/blockchains/smartchain/assets/0x536825370F1159cBA953055f5c2F16DDc7B5a348/logo.png new file mode 100644 index 0000000000000..2025f23294ddf Binary files /dev/null and b/blockchains/smartchain/assets/0x536825370F1159cBA953055f5c2F16DDc7B5a348/logo.png differ diff --git a/blockchains/smartchain/assets/0x538b972E46B86373638B14fa6F6a9C51f796394b/info.json b/blockchains/smartchain/assets/0x538b972E46B86373638B14fa6F6a9C51f796394b/info.json index 87575a81a2ae3..e6c533061e5a7 100644 --- a/blockchains/smartchain/assets/0x538b972E46B86373638B14fa6F6a9C51f796394b/info.json +++ b/blockchains/smartchain/assets/0x538b972E46B86373638B14fa6F6a9C51f796394b/info.json @@ -10,8 +10,8 @@ "id": "0x538b972E46B86373638B14fa6F6a9C51f796394b", "links": [ { - "name": "twitter", - "url": "https://twitter.com/AdTokenOfficial" + "name": "x", + "url": "https://x.com/AdTokenOfficial" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x538e2838f9ebC9B891399DF4a8dcc42890D9dc20/info.json b/blockchains/smartchain/assets/0x538e2838f9ebC9B891399DF4a8dcc42890D9dc20/info.json new file mode 100644 index 0000000000000..4154070cb04ef --- /dev/null +++ b/blockchains/smartchain/assets/0x538e2838f9ebC9B891399DF4a8dcc42890D9dc20/info.json @@ -0,0 +1,28 @@ +{ + "name": "Arista Networks (Ondo Tokenized)", + "type": "BEP20", + "symbol": "ANETon", + "decimals": 18, + "description": "ANETon is the Ondo Tokenized version of Arista Networks, giving tokenholders economic exposure similar to holding ANET and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x538e2838f9ebC9B891399DF4a8dcc42890D9dc20", + "status": "active", + "id": "0x538e2838f9ebC9B891399DF4a8dcc42890D9dc20", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/arista-networks-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/arista-networks-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x538e2838f9ebC9B891399DF4a8dcc42890D9dc20/logo.png b/blockchains/smartchain/assets/0x538e2838f9ebC9B891399DF4a8dcc42890D9dc20/logo.png new file mode 100644 index 0000000000000..095286d5996eb Binary files /dev/null and b/blockchains/smartchain/assets/0x538e2838f9ebC9B891399DF4a8dcc42890D9dc20/logo.png differ diff --git a/blockchains/smartchain/assets/0x53D88d2ffDBE71E81D95b08AE0cA49D0C4A8515f/info.json b/blockchains/smartchain/assets/0x53D88d2ffDBE71E81D95b08AE0cA49D0C4A8515f/info.json index fc6368c9b81c5..cdebf9a461257 100644 --- a/blockchains/smartchain/assets/0x53D88d2ffDBE71E81D95b08AE0cA49D0C4A8515f/info.json +++ b/blockchains/smartchain/assets/0x53D88d2ffDBE71E81D95b08AE0cA49D0C4A8515f/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/CreamFi" }, { - "name": "twitter", - "url": "https://twitter.com/CreamdotFinance" + "name": "x", + "url": "https://x.com/CreamdotFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x53DfeC100967C3D4868315a2b8C28FaaaFAB3280/info.json b/blockchains/smartchain/assets/0x53DfeC100967C3D4868315a2b8C28FaaaFAB3280/info.json new file mode 100644 index 0000000000000..d5120742e250f --- /dev/null +++ b/blockchains/smartchain/assets/0x53DfeC100967C3D4868315a2b8C28FaaaFAB3280/info.json @@ -0,0 +1,14 @@ +{ + "name": "CZ 10M followers", + "type": "BEP20", + "symbol": "10M", + "decimals": 18, + "website": "https://four.meme/token/0x53DfeC100967C3D4868315a2b8C28FaaaFAB3280", + "description": "Celebrating CZ reaching 10M followers", + "explorer": "https://bscscan.com/token/0x53DfeC100967C3D4868315a2b8C28FaaaFAB3280", + "status": "active", + "id": "0x53DfeC100967C3D4868315a2b8C28FaaaFAB3280", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x53DfeC100967C3D4868315a2b8C28FaaaFAB3280/logo.png b/blockchains/smartchain/assets/0x53DfeC100967C3D4868315a2b8C28FaaaFAB3280/logo.png new file mode 100644 index 0000000000000..b5ca004cd246e Binary files /dev/null and b/blockchains/smartchain/assets/0x53DfeC100967C3D4868315a2b8C28FaaaFAB3280/logo.png differ diff --git a/blockchains/smartchain/assets/0x53F042f3e809d2DcC9492dE2DbF05d1DA0EF5fbb/info.json b/blockchains/smartchain/assets/0x53F042f3e809d2DcC9492dE2DbF05d1DA0EF5fbb/info.json index 2e192f72bf17f..7482939e32d95 100644 --- a/blockchains/smartchain/assets/0x53F042f3e809d2DcC9492dE2DbF05d1DA0EF5fbb/info.json +++ b/blockchains/smartchain/assets/0x53F042f3e809d2DcC9492dE2DbF05d1DA0EF5fbb/info.json @@ -10,8 +10,8 @@ "id": "0x53F042f3e809d2DcC9492dE2DbF05d1DA0EF5fbb", "links": [ { - "name": "twitter", - "url": "https://twitter.com/NOSHITCoin_io" + "name": "x", + "url": "https://x.com/NOSHITCoin_io" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x53a8c5fc5643b437779742f494691e6b7C660a8b/info.json b/blockchains/smartchain/assets/0x53a8c5fc5643b437779742f494691e6b7C660a8b/info.json new file mode 100644 index 0000000000000..b8fd770d267e3 --- /dev/null +++ b/blockchains/smartchain/assets/0x53a8c5fc5643b437779742f494691e6b7C660a8b/info.json @@ -0,0 +1,28 @@ +{ + "name": "Capital One (Ondo Tokenized)", + "type": "BEP20", + "symbol": "COFon", + "decimals": 18, + "description": "COFon is the Ondo Tokenized version of Capital One, giving tokenholders economic exposure similar to holding COF and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x53a8c5fc5643b437779742f494691e6b7C660a8b", + "status": "active", + "id": "0x53a8c5fc5643b437779742f494691e6b7C660a8b", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/capital-one-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/capital-one-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x53a8c5fc5643b437779742f494691e6b7C660a8b/logo.png b/blockchains/smartchain/assets/0x53a8c5fc5643b437779742f494691e6b7C660a8b/logo.png new file mode 100644 index 0000000000000..b783120d5ca7e Binary files /dev/null and b/blockchains/smartchain/assets/0x53a8c5fc5643b437779742f494691e6b7C660a8b/logo.png differ diff --git a/blockchains/smartchain/assets/0x53b3338E3345758aE88b930e3d9759A95C5cE05c/info.json b/blockchains/smartchain/assets/0x53b3338E3345758aE88b930e3d9759A95C5cE05c/info.json index 2d32f91c339bd..1ab010009ed62 100644 --- a/blockchains/smartchain/assets/0x53b3338E3345758aE88b930e3d9759A95C5cE05c/info.json +++ b/blockchains/smartchain/assets/0x53b3338E3345758aE88b930e3d9759A95C5cE05c/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/GenshinFloki/GenshinFloki" }, { - "name": "twitter", - "url": "https://twitter.com/GenshinFloki" + "name": "x", + "url": "https://x.com/GenshinFloki" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x53c17Ecaa2C662cff7C380729c7E9f7989280b2A/info.json b/blockchains/smartchain/assets/0x53c17Ecaa2C662cff7C380729c7E9f7989280b2A/info.json new file mode 100644 index 0000000000000..c178eae46f747 --- /dev/null +++ b/blockchains/smartchain/assets/0x53c17Ecaa2C662cff7C380729c7E9f7989280b2A/info.json @@ -0,0 +1,32 @@ +{ + "name": "WINPRO", + "type": "BEP20", + "symbol": "WPT", + "decimals": 18, + "website": "https://winprotoken.io/", + "description": "Winpro (WPT) is a digital asset designed to revolutionize the sports and entertainment industries through blockchain technology. By leveraging the inherent advantages of blockchain, such as transparency, security, and decentralization.", + "explorer": "https://bscscan.com/token/0x53c17Ecaa2C662cff7C380729c7E9f7989280b2A", + "status": "spam", + "id": "0x53c17Ecaa2C662cff7C380729c7E9f7989280b2A", + "links": [ + { + "name": "github", + "url": "https://github.com/Winprotoken" + }, + { + "name": "telegram", + "url": "https://t.me/Winprotoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vrtrinity/" + }, + { + "name": "whitepaper", + "url": "https://winprotoken.io/assets/winprotoken.io_compressed.pdf" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/smartchain/assets/0x53c17Ecaa2C662cff7C380729c7E9f7989280b2A/logo.png b/blockchains/smartchain/assets/0x53c17Ecaa2C662cff7C380729c7E9f7989280b2A/logo.png new file mode 100644 index 0000000000000..1e648b48ac83b Binary files /dev/null and b/blockchains/smartchain/assets/0x53c17Ecaa2C662cff7C380729c7E9f7989280b2A/logo.png differ diff --git a/blockchains/smartchain/assets/0x5419291D81C68c103363E06046F40a9056ab2B7f/info.json b/blockchains/smartchain/assets/0x5419291D81C68c103363E06046F40a9056ab2B7f/info.json index 12bec6152c7f1..75047b9267211 100644 --- a/blockchains/smartchain/assets/0x5419291D81C68c103363E06046F40a9056ab2B7f/info.json +++ b/blockchains/smartchain/assets/0x5419291D81C68c103363E06046F40a9056ab2B7f/info.json @@ -10,8 +10,8 @@ "id": "0x5419291D81C68c103363E06046F40a9056ab2B7f", "links": [ { - "name": "twitter", - "url": "https://twitter.com/doge_zoo" + "name": "x", + "url": "https://x.com/doge_zoo" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x541EEC85ef7452D16814D32aB555dF33F0E4cEAD/info.json b/blockchains/smartchain/assets/0x541EEC85ef7452D16814D32aB555dF33F0E4cEAD/info.json new file mode 100644 index 0000000000000..10045314cddbc --- /dev/null +++ b/blockchains/smartchain/assets/0x541EEC85ef7452D16814D32aB555dF33F0E4cEAD/info.json @@ -0,0 +1,14 @@ +{ + "name": "Biao", + "type": "BEP20", + "symbol": "BIAO", + "decimals": 18, + "website": "https://four.meme/token/0x541EEC85ef7452D16814D32aB555dF33F0E4cEAD", + "description": "The biggest Chinese meme", + "explorer": "https://bscscan.com/token/0x541EEC85ef7452D16814D32aB555dF33F0E4cEAD", + "status": "active", + "id": "0x541EEC85ef7452D16814D32aB555dF33F0E4cEAD", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x541EEC85ef7452D16814D32aB555dF33F0E4cEAD/logo.png b/blockchains/smartchain/assets/0x541EEC85ef7452D16814D32aB555dF33F0E4cEAD/logo.png new file mode 100644 index 0000000000000..919dfc6fae929 Binary files /dev/null and b/blockchains/smartchain/assets/0x541EEC85ef7452D16814D32aB555dF33F0E4cEAD/logo.png differ diff --git a/blockchains/smartchain/assets/0x541cE9ceBE90bCe0430331c11d25D80E73d28888/info.json b/blockchains/smartchain/assets/0x541cE9ceBE90bCe0430331c11d25D80E73d28888/info.json new file mode 100644 index 0000000000000..e04b045bf150f --- /dev/null +++ b/blockchains/smartchain/assets/0x541cE9ceBE90bCe0430331c11d25D80E73d28888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Βіtcoin", + "type": "BEP20", + "symbol": "FAKE ΒΤС", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x541cE9ceBE90bCe0430331c11d25D80E73d28888", + "explorer": "https://bscscan.com/token/0x541cE9ceBE90bCe0430331c11d25D80E73d28888", + "status": "spam", + "id": "0x541cE9ceBE90bCe0430331c11d25D80E73d28888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5445451C07E20bA1ca887B6c74d66D358F46D083/info.json b/blockchains/smartchain/assets/0x5445451C07E20bA1ca887B6c74d66D358F46D083/info.json index 248d283aaf681..f7944265cbff9 100644 --- a/blockchains/smartchain/assets/0x5445451C07E20bA1ca887B6c74d66D358F46D083/info.json +++ b/blockchains/smartchain/assets/0x5445451C07E20bA1ca887B6c74d66D358F46D083/info.json @@ -10,8 +10,8 @@ "id": "0x5445451C07E20bA1ca887B6c74d66D358F46D083", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ZWZ_Official" + "name": "x", + "url": "https://x.com/ZWZ_Official" }, { "name": "telegram", @@ -33,4 +33,4 @@ "tags": [ "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x54626300818E5C5b44Db0fcf45Ba4943CA89A9e2/info.json b/blockchains/smartchain/assets/0x54626300818E5C5b44Db0fcf45Ba4943CA89A9e2/info.json index fdc987ceed7a9..da38508fb4d24 100644 --- a/blockchains/smartchain/assets/0x54626300818E5C5b44Db0fcf45Ba4943CA89A9e2/info.json +++ b/blockchains/smartchain/assets/0x54626300818E5C5b44Db0fcf45Ba4943CA89A9e2/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/TheCheCoin" }, { - "name": "twitter", - "url": "https://twitter.com/CheCoinOfficial" + "name": "x", + "url": "https://x.com/CheCoinOfficial" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x547CBE0f0c25085e7015Aa6939b28402EB0CcDAC/info.json b/blockchains/smartchain/assets/0x547CBE0f0c25085e7015Aa6939b28402EB0CcDAC/info.json index cace568cce973..c2df496667d81 100644 --- a/blockchains/smartchain/assets/0x547CBE0f0c25085e7015Aa6939b28402EB0CcDAC/info.json +++ b/blockchains/smartchain/assets/0x547CBE0f0c25085e7015Aa6939b28402EB0CcDAC/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/ElasticBTC-XBT" }, { - "name": "twitter", - "url": "https://twitter.com/elasticbitcoin" + "name": "x", + "url": "https://x.com/elasticbitcoin" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x548308E91ec9F285C7bFf05295baDBD56a6e4971/info.json b/blockchains/smartchain/assets/0x548308E91ec9F285C7bFf05295baDBD56a6e4971/info.json new file mode 100644 index 0000000000000..951ab6ae24252 --- /dev/null +++ b/blockchains/smartchain/assets/0x548308E91ec9F285C7bFf05295baDBD56a6e4971/info.json @@ -0,0 +1,24 @@ +{ + "name": "Oracle tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Oracle xStock (ORCLx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. ORCLx tracks the price of Oracle Corporation (the underlying). ORCLx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Oracle Corporation, whilst maintaining the benefits of blockchain technology. Oracle Corporation is a large, publicly-held multinational company headquartered in Austin, Texas, offering enterprise applications and cloud infrastructure.", + "explorer": "https://bscscan.com/token/0x548308E91ec9F285C7bFf05295baDBD56a6e4971", + "type": "BEP20", + "symbol": "ORCLX", + "decimals": 18, + "status": "active", + "id": "0x548308E91ec9F285C7bFf05295baDBD56a6e4971", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/oracle-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x548308E91ec9F285C7bFf05295baDBD56a6e4971/logo.png b/blockchains/smartchain/assets/0x548308E91ec9F285C7bFf05295baDBD56a6e4971/logo.png new file mode 100644 index 0000000000000..8179bd1129e15 Binary files /dev/null and b/blockchains/smartchain/assets/0x548308E91ec9F285C7bFf05295baDBD56a6e4971/logo.png differ diff --git a/blockchains/smartchain/assets/0x5492Ef6aEebA1A3896357359eF039a8B11621b45/info.json b/blockchains/smartchain/assets/0x5492Ef6aEebA1A3896357359eF039a8B11621b45/info.json index dd4f46e16b071..93be7f857d6e3 100644 --- a/blockchains/smartchain/assets/0x5492Ef6aEebA1A3896357359eF039a8B11621b45/info.json +++ b/blockchains/smartchain/assets/0x5492Ef6aEebA1A3896357359eF039a8B11621b45/info.json @@ -10,8 +10,8 @@ "id": "0x5492Ef6aEebA1A3896357359eF039a8B11621b45", "links": [ { - "name": "twitter", - "url": "https://twitter.com/chumbivalley" + "name": "x", + "url": "https://x.com/chumbivalley" }, { "name": "discord", @@ -26,4 +26,4 @@ "gamefi", "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x549CC5dF432cdbAEbc8B9158A6bDFe1cbD0Ba16d/info.json b/blockchains/smartchain/assets/0x549CC5dF432cdbAEbc8B9158A6bDFe1cbD0Ba16d/info.json index 355de218e7ddb..1489d021aa303 100644 --- a/blockchains/smartchain/assets/0x549CC5dF432cdbAEbc8B9158A6bDFe1cbD0Ba16d/info.json +++ b/blockchains/smartchain/assets/0x549CC5dF432cdbAEbc8B9158A6bDFe1cbD0Ba16d/info.json @@ -10,8 +10,8 @@ "id": "0x549CC5dF432cdbAEbc8B9158A6bDFe1cbD0Ba16d", "links": [ { - "name": "twitter", - "url": "https://twitter.com/HowlCityNft" + "name": "x", + "url": "https://x.com/HowlCityNft" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x54B92Fd77229269Ff6484942C123cCa72f2D6fEC/info.json b/blockchains/smartchain/assets/0x54B92Fd77229269Ff6484942C123cCa72f2D6fEC/info.json new file mode 100644 index 0000000000000..86b679746ec6b --- /dev/null +++ b/blockchains/smartchain/assets/0x54B92Fd77229269Ff6484942C123cCa72f2D6fEC/info.json @@ -0,0 +1,24 @@ +{ + "name": "Fidelity Solana Fund (Ondo Tokenized)", + "type": "BEP20", + "symbol": "FSOLon", + "decimals": 18, + "description": "FSOLon is the Ondo Tokenized version of the Fidelity Solana Fund, giving tokenholders economic exposure similar to holding FSOL and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x54B92Fd77229269Ff6484942C123cCa72f2D6fEC", + "status": "active", + "id": "0x54B92Fd77229269Ff6484942C123cCa72f2D6fEC", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/fidelity-solana-fund-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x54B92Fd77229269Ff6484942C123cCa72f2D6fEC/logo.png b/blockchains/smartchain/assets/0x54B92Fd77229269Ff6484942C123cCa72f2D6fEC/logo.png new file mode 100644 index 0000000000000..acfd22e816da7 Binary files /dev/null and b/blockchains/smartchain/assets/0x54B92Fd77229269Ff6484942C123cCa72f2D6fEC/logo.png differ diff --git a/blockchains/smartchain/assets/0x54E87ed5A096f09d9665fD114002bdDFc2084a7F/info.json b/blockchains/smartchain/assets/0x54E87ed5A096f09d9665fD114002bdDFc2084a7F/info.json index be7a022a7c198..0c3f52e19f417 100644 --- a/blockchains/smartchain/assets/0x54E87ed5A096f09d9665fD114002bdDFc2084a7F/info.json +++ b/blockchains/smartchain/assets/0x54E87ed5A096f09d9665fD114002bdDFc2084a7F/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/babymoonfloki" + "name": "x", + "url": "https://x.com/babymoonfloki" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x550D7984b7AdFfF88815E5528e12E322DF6D3B9B/info.json b/blockchains/smartchain/assets/0x550D7984b7AdFfF88815E5528e12E322DF6D3B9B/info.json index 979a9cd803597..d9160f410cce2 100644 --- a/blockchains/smartchain/assets/0x550D7984b7AdFfF88815E5528e12E322DF6D3B9B/info.json +++ b/blockchains/smartchain/assets/0x550D7984b7AdFfF88815E5528e12E322DF6D3B9B/info.json @@ -10,8 +10,8 @@ "id": "0x550D7984b7AdFfF88815E5528e12E322DF6D3B9B", "links": [ { - "name": "twitter", - "url": "https://twitter.com/pandai_bsc" + "name": "x", + "url": "https://x.com/pandai_bsc" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x551897f8203bd131b350601D3aC0679Ba0Fc0136/info.json b/blockchains/smartchain/assets/0x551897f8203bd131b350601D3aC0679Ba0Fc0136/info.json new file mode 100644 index 0000000000000..d9400241051c1 --- /dev/null +++ b/blockchains/smartchain/assets/0x551897f8203bd131b350601D3aC0679Ba0Fc0136/info.json @@ -0,0 +1,21 @@ +{ + "name": "NFPrompt", + "website": "https://nfprompt.io", + "description": "NFPrompt is an AI-driven UGC platform designed for the new generation of Web3 creators. It's an all-in-one platform with the power of AI-creation, social community, and commercialization.", + "explorer": "https://bscscan.com/token/0x551897f8203bd131b350601D3aC0679Ba0Fc0136", + "symbol": "NFP", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x551897f8203bd131b350601D3aC0679Ba0Fc0136", + "links": [ + { + "name": "telegram", + "url": "https://t.me/nfprompt" + }, + { + "name": "x", + "url": "https://x.com/nfprompt" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x551897f8203bd131b350601D3aC0679Ba0Fc0136/logo.png b/blockchains/smartchain/assets/0x551897f8203bd131b350601D3aC0679Ba0Fc0136/logo.png new file mode 100644 index 0000000000000..f13060b1aeb18 Binary files /dev/null and b/blockchains/smartchain/assets/0x551897f8203bd131b350601D3aC0679Ba0Fc0136/logo.png differ diff --git a/blockchains/smartchain/assets/0x551FAAB1027Cc50eFAeA5BED092E330475C3Cd99/info.json b/blockchains/smartchain/assets/0x551FAAB1027Cc50eFAeA5BED092E330475C3Cd99/info.json new file mode 100644 index 0000000000000..1df2348e2d0d1 --- /dev/null +++ b/blockchains/smartchain/assets/0x551FAAB1027Cc50eFAeA5BED092E330475C3Cd99/info.json @@ -0,0 +1,34 @@ +{ + "name": "MonbaseCoin", + "type": "BEP20", + "symbol": "MBC", + "decimals": 18, + "website": "https://monbase.com/", + "description": "Monbase is a digital asset exchange offering hundreds of cryptocurrencies for buying, selling, and trading. Users can register, complete KYC, deposit funds, and manage their investments using an exchange wallet. Live market data is also provided for market analysis.", + "explorer": "https://bscscan.com/token/0x551FAAB1027Cc50eFAeA5BED092E330475C3Cd99", + "status": "active", + "id": "0x551FAAB1027Cc50eFAeA5BED092E330475C3Cd99", + "tags": [ + "launchpad", + "exchange", + "BSC" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/monbaseglobal" + }, + { + "name": "telegram", + "url": "https://t.me/monbaseglobal" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/monbase" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/monbasecoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x551FAAB1027Cc50eFAeA5BED092E330475C3Cd99/logo.png b/blockchains/smartchain/assets/0x551FAAB1027Cc50eFAeA5BED092E330475C3Cd99/logo.png new file mode 100644 index 0000000000000..0f62cccb76583 Binary files /dev/null and b/blockchains/smartchain/assets/0x551FAAB1027Cc50eFAeA5BED092E330475C3Cd99/logo.png differ diff --git a/blockchains/smartchain/assets/0x551f8Db0da800C910E12Cf991eac306714481685/info.json b/blockchains/smartchain/assets/0x551f8Db0da800C910E12Cf991eac306714481685/info.json new file mode 100644 index 0000000000000..5d3e6cac30049 --- /dev/null +++ b/blockchains/smartchain/assets/0x551f8Db0da800C910E12Cf991eac306714481685/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares MSCI Chile ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "ECHon", + "decimals": 18, + "description": "ECHon is the Ondo Tokenized version of the iShares MSCI Chile ETF, giving tokenholders economic exposure similar to holding ECH and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x551f8Db0da800C910E12Cf991eac306714481685", + "status": "active", + "id": "0x551f8Db0da800C910E12Cf991eac306714481685", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-msci-chile-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x551f8Db0da800C910E12Cf991eac306714481685/logo.png b/blockchains/smartchain/assets/0x551f8Db0da800C910E12Cf991eac306714481685/logo.png new file mode 100644 index 0000000000000..2ce033b091a15 Binary files /dev/null and b/blockchains/smartchain/assets/0x551f8Db0da800C910E12Cf991eac306714481685/logo.png differ diff --git a/blockchains/smartchain/assets/0x554B5DaeA72B2E2185147374954cb4721e20f4E1/info.json b/blockchains/smartchain/assets/0x554B5DaeA72B2E2185147374954cb4721e20f4E1/info.json new file mode 100644 index 0000000000000..aa30e3a36c1dc --- /dev/null +++ b/blockchains/smartchain/assets/0x554B5DaeA72B2E2185147374954cb4721e20f4E1/info.json @@ -0,0 +1,14 @@ +{ + "name": "Broccoli", + "type": "BEP20", + "symbol": "$BROC", + "decimals": 18, + "website": "https://broc.wtf/", + "description": "Broccoli Token - where crunchy memes meet AI genius. Inspired by CZ's legendary pup and powered by Aimensa.", + "explorer": "https://bscscan.com/token/0x554B5DaeA72B2E2185147374954cb4721e20f4E1", + "status": "active", + "id": "0x554B5DaeA72B2E2185147374954cb4721e20f4E1", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x554B5DaeA72B2E2185147374954cb4721e20f4E1/logo.png b/blockchains/smartchain/assets/0x554B5DaeA72B2E2185147374954cb4721e20f4E1/logo.png new file mode 100644 index 0000000000000..9ea4f0ae706b9 Binary files /dev/null and b/blockchains/smartchain/assets/0x554B5DaeA72B2E2185147374954cb4721e20f4E1/logo.png differ diff --git a/blockchains/smartchain/assets/0x5569B42513203f49a761Cc9720D4Bb9B6b9E5AB8/info.json b/blockchains/smartchain/assets/0x5569B42513203f49a761Cc9720D4Bb9B6b9E5AB8/info.json index 3a59f70698294..59c3e0ce7eebb 100644 --- a/blockchains/smartchain/assets/0x5569B42513203f49a761Cc9720D4Bb9B6b9E5AB8/info.json +++ b/blockchains/smartchain/assets/0x5569B42513203f49a761Cc9720D4Bb9B6b9E5AB8/info.json @@ -10,8 +10,8 @@ "id": "0x5569B42513203f49a761Cc9720D4Bb9B6b9E5AB8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SingularityDao" + "name": "x", + "url": "https://x.com/SingularityDao" }, { "name": "telegram", @@ -53,4 +53,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x557233E794d1a5FbCc6D26dca49147379ea5073c/info.json b/blockchains/smartchain/assets/0x557233E794d1a5FbCc6D26dca49147379ea5073c/info.json index 664d9a31d3782..83d9e9cf09746 100644 --- a/blockchains/smartchain/assets/0x557233E794d1a5FbCc6D26dca49147379ea5073c/info.json +++ b/blockchains/smartchain/assets/0x557233E794d1a5FbCc6D26dca49147379ea5073c/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/alita-finance" }, { - "name": "twitter", - "url": "https://twitter.com/AlitaFinance" + "name": "x", + "url": "https://x.com/AlitaFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x55B0fAf9818074716F622453abc296839d559120/info.json b/blockchains/smartchain/assets/0x55B0fAf9818074716F622453abc296839d559120/info.json new file mode 100644 index 0000000000000..842501438b42a --- /dev/null +++ b/blockchains/smartchain/assets/0x55B0fAf9818074716F622453abc296839d559120/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT USD X20", + "type": "BEP20", + "symbol": "HONEYPOT USDX", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x55b0faf9818074716f622453abc296839d559120", + "explorer": "https://bscscan.com/token/0x55b0faf9818074716f622453abc296839d559120", + "status": "spam", + "id": "0x55B0fAf9818074716F622453abc296839d559120" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x55B370B704240a914f42B5bBB3195431C031f9f8/info.json b/blockchains/smartchain/assets/0x55B370B704240a914f42B5bBB3195431C031f9f8/info.json new file mode 100644 index 0000000000000..79b1dd5eca009 --- /dev/null +++ b/blockchains/smartchain/assets/0x55B370B704240a914f42B5bBB3195431C031f9f8/info.json @@ -0,0 +1,24 @@ +{ + "name": "S&P Global (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "SPGIon is the Ondo Tokenized version of S&P Global, giving tokenholders economic exposure similar to holding SPGI and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x55b370b704240a914f42b5bbb3195431c031f9f8", + "type": "BEP20", + "symbol": "SPGIon", + "decimals": 18, + "status": "active", + "id": "0x55B370B704240a914f42B5bBB3195431C031f9f8", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sp-global-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x55B370B704240a914f42B5bBB3195431C031f9f8/logo.png b/blockchains/smartchain/assets/0x55B370B704240a914f42B5bBB3195431C031f9f8/logo.png new file mode 100644 index 0000000000000..b9eb124a99f2d Binary files /dev/null and b/blockchains/smartchain/assets/0x55B370B704240a914f42B5bBB3195431C031f9f8/logo.png differ diff --git a/blockchains/smartchain/assets/0x55B53855eaE06c4744841dbFA06FCe335dB4355B/info.json b/blockchains/smartchain/assets/0x55B53855eaE06c4744841dbFA06FCe335dB4355B/info.json index 2a452da510b55..cc333af17cbba 100644 --- a/blockchains/smartchain/assets/0x55B53855eaE06c4744841dbFA06FCe335dB4355B/info.json +++ b/blockchains/smartchain/assets/0x55B53855eaE06c4744841dbFA06FCe335dB4355B/info.json @@ -10,8 +10,8 @@ "id": "0x55B53855eaE06c4744841dbFA06FCe335dB4355B", "links": [ { - "name": "twitter", - "url": "https://twitter.com/satoshistrbets" + "name": "x", + "url": "https://x.com/satoshistrbets" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x55F96C7005D7C684A65Ee653B07b5FE1507C56ab/info.json b/blockchains/smartchain/assets/0x55F96C7005D7C684A65Ee653B07b5FE1507C56ab/info.json index c472a57914007..66a9cb44882ab 100644 --- a/blockchains/smartchain/assets/0x55F96C7005D7C684A65Ee653B07b5FE1507C56ab/info.json +++ b/blockchains/smartchain/assets/0x55F96C7005D7C684A65Ee653B07b5FE1507C56ab/info.json @@ -10,8 +10,8 @@ "id": "0x55F96C7005D7C684A65Ee653B07b5FE1507C56ab", "links": [ { - "name": "twitter", - "url": "https://twitter.com/wojfinance" + "name": "x", + "url": "https://x.com/wojfinance" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x56083560594E314b5cDd1680eC6a493bb851BBd8/info.json b/blockchains/smartchain/assets/0x56083560594E314b5cDd1680eC6a493bb851BBd8/info.json index 9122e74729170..9ee17cc9952cc 100644 --- a/blockchains/smartchain/assets/0x56083560594E314b5cDd1680eC6a493bb851BBd8/info.json +++ b/blockchains/smartchain/assets/0x56083560594E314b5cDd1680eC6a493bb851BBd8/info.json @@ -10,8 +10,8 @@ "id": "0x56083560594E314b5cDd1680eC6a493bb851BBd8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/transhumancoin" + "name": "x", + "url": "https://x.com/transhumancoin" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x560deb3D70Ac90064fF809349cDf9A771a06fd36/info.json b/blockchains/smartchain/assets/0x560deb3D70Ac90064fF809349cDf9A771a06fd36/info.json new file mode 100644 index 0000000000000..222903791a724 --- /dev/null +++ b/blockchains/smartchain/assets/0x560deb3D70Ac90064fF809349cDf9A771a06fd36/info.json @@ -0,0 +1,15 @@ +{ + "name": "Hut 8 xStock", + "type": "BEP20", + "symbol": "HUTx", + "decimals": 18, + "description": "HUT 8 xStock (HUTx) is a tracker certificate issued as a freely transferable token on selected blockchains. HUTx tracks the price of Hut 8 Corp.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x560deb3D70Ac90064fF809349cDf9A771a06fd36", + "status": "active", + "id": "0x560deb3D70Ac90064fF809349cDf9A771a06fd36", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x560deb3D70Ac90064fF809349cDf9A771a06fd36/logo.png b/blockchains/smartchain/assets/0x560deb3D70Ac90064fF809349cDf9A771a06fd36/logo.png new file mode 100644 index 0000000000000..f2cc517116681 Binary files /dev/null and b/blockchains/smartchain/assets/0x560deb3D70Ac90064fF809349cDf9A771a06fd36/logo.png differ diff --git a/blockchains/smartchain/assets/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35/info.json b/blockchains/smartchain/assets/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35/info.json new file mode 100644 index 0000000000000..e7fe641c40724 --- /dev/null +++ b/blockchains/smartchain/assets/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35/info.json @@ -0,0 +1,24 @@ +{ + "name": "Microsoft tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Microsoft xStock (MSFTx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. MSFTx tracks the price of Microsoft Corporation (the underlying). MSFTx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Microsoft Corporation, whilst maintaining the benefits of blockchain technology. Key Benefits Microsoft is the world's largest vendor of computer software and a leading provider of cloud computing services, video games, computer and gaming hardware, search, and other online services.", + "explorer": "https://bscscan.com/token/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35", + "type": "BEP20", + "symbol": "MSFTX", + "decimals": 18, + "status": "active", + "id": "0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/microsoft-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35/logo.png b/blockchains/smartchain/assets/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35/logo.png new file mode 100644 index 0000000000000..409e4ececae65 Binary files /dev/null and b/blockchains/smartchain/assets/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35/logo.png differ diff --git a/blockchains/smartchain/assets/0x5630B5741A33371D9d935283849A16dC808f7F3A/info.json b/blockchains/smartchain/assets/0x5630B5741A33371D9d935283849A16dC808f7F3A/info.json new file mode 100644 index 0000000000000..d7daab4f9e403 --- /dev/null +++ b/blockchains/smartchain/assets/0x5630B5741A33371D9d935283849A16dC808f7F3A/info.json @@ -0,0 +1,24 @@ +{ + "name": "Apollo Global Management (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "APOon is the Ondo Tokenized version of Apollo Global Management, giving tokenholders economic exposure similar to holding APO and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x5630b5741a33371d9d935283849a16dc808f7f3a", + "type": "BEP20", + "symbol": "APOon", + "decimals": 18, + "status": "active", + "id": "0x5630B5741A33371D9d935283849A16dC808f7F3A", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/apollo-global-management-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5630B5741A33371D9d935283849A16dC808f7F3A/logo.png b/blockchains/smartchain/assets/0x5630B5741A33371D9d935283849A16dC808f7F3A/logo.png new file mode 100644 index 0000000000000..fd6e35f66e796 Binary files /dev/null and b/blockchains/smartchain/assets/0x5630B5741A33371D9d935283849A16dC808f7F3A/logo.png differ diff --git a/blockchains/smartchain/assets/0x565D40e2ef60f0B4e5bD0136Bb2C58ACe83fDaA5/info.json b/blockchains/smartchain/assets/0x565D40e2ef60f0B4e5bD0136Bb2C58ACe83fDaA5/info.json new file mode 100644 index 0000000000000..86d7342742c71 --- /dev/null +++ b/blockchains/smartchain/assets/0x565D40e2ef60f0B4e5bD0136Bb2C58ACe83fDaA5/info.json @@ -0,0 +1,26 @@ +{ + "name": "S315", + "type": "BEP20", + "symbol": "S315", + "decimals": 18, + "website": "https://s315protocol.github.io/", + "description": "The swap 315 Dual Pump Protocol is a new protocol that supports both 314 contract transfer transactions and swap transactions. The swap 315 Dual Pump Protocol effectively solves the risk of contract code corruption and also addresses the risk of swap pool withdraw", + "explorer": "https://bscscan.com/token/0x565D40e2ef60f0B4e5bD0136Bb2C58ACe83fDaA5", + "status": "active", + "id": "0x565D40e2ef60f0B4e5bD0136Bb2C58ACe83fDaA5", + "links": [ + { + "name": "x", + "url": "https://x.com/Shahd32533828" + }, + { + "name": "telegram", + "url": "https://t.me/swap315Dev" + } + ], + "tags": [ + "defi", + "memes", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x565D40e2ef60f0B4e5bD0136Bb2C58ACe83fDaA5/logo.png b/blockchains/smartchain/assets/0x565D40e2ef60f0B4e5bD0136Bb2C58ACe83fDaA5/logo.png new file mode 100644 index 0000000000000..e884b0d8cee1b Binary files /dev/null and b/blockchains/smartchain/assets/0x565D40e2ef60f0B4e5bD0136Bb2C58ACe83fDaA5/logo.png differ diff --git a/blockchains/smartchain/assets/0x565bC84970494Db108233b4bf46d58340F928888/info.json b/blockchains/smartchain/assets/0x565bC84970494Db108233b4bf46d58340F928888/info.json new file mode 100644 index 0000000000000..4a476b4647b6f --- /dev/null +++ b/blockchains/smartchain/assets/0x565bC84970494Db108233b4bf46d58340F928888/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM USDT.x", + "type": "BEP20", + "symbol": "SCAM USDT.x", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x565bC84970494Db108233b4bf46d58340F928888", + "explorer": "https://bscscan.com/token/0x565bC84970494Db108233b4bf46d58340F928888", + "status": "spam", + "id": "0x565bC84970494Db108233b4bf46d58340F928888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x567556A7493FB7a22d2fd158Dd4C766a98705f96/info.json b/blockchains/smartchain/assets/0x567556A7493FB7a22d2fd158Dd4C766a98705f96/info.json new file mode 100644 index 0000000000000..970d42c9c111a --- /dev/null +++ b/blockchains/smartchain/assets/0x567556A7493FB7a22d2fd158Dd4C766a98705f96/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wrapped ZEDXION from ZEDX", + "website": "https://zedscan.net", + "description": "Zedx is a decentralized payments-focused platform powered underneath by the fast and low-cost Zedx blockchain.", + "explorer": "https://bscscan.com/token/0x567556a7493fb7a22d2fd158dd4c766a98705f96", + "type": "BEP20", + "symbol": "WZEDX", + "decimals": 18, + "status": "active", + "id": "0x567556A7493FB7a22d2fd158Dd4C766a98705f96", + "links": [ + { + "name": "x", + "url": "https://x.com/zedxionc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-zedxion/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x567556A7493FB7a22d2fd158Dd4C766a98705f96/logo.png b/blockchains/smartchain/assets/0x567556A7493FB7a22d2fd158Dd4C766a98705f96/logo.png new file mode 100644 index 0000000000000..4cfc6d61e291f Binary files /dev/null and b/blockchains/smartchain/assets/0x567556A7493FB7a22d2fd158Dd4C766a98705f96/logo.png differ diff --git a/blockchains/smartchain/assets/0x569f4957176Ffa0dff76c507604f6a66d4B9C578/info.json b/blockchains/smartchain/assets/0x569f4957176Ffa0dff76c507604f6a66d4B9C578/info.json index 5c975ae7ab236..609dc19526ffd 100644 --- a/blockchains/smartchain/assets/0x569f4957176Ffa0dff76c507604f6a66d4B9C578/info.json +++ b/blockchains/smartchain/assets/0x569f4957176Ffa0dff76c507604f6a66d4B9C578/info.json @@ -8,13 +8,10 @@ "explorer": "https://bscscan.com/token/0x569f4957176Ffa0dff76c507604f6a66d4B9C578", "status": "active", "id": "0x569f4957176Ffa0dff76c507604f6a66d4B9C578", - "tags": [ - "staking-native" - ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/cryptostone_io" + "name": "x", + "url": "https://x.com/cryptostone_io" }, { "name": "telegram", @@ -37,4 +34,4 @@ "url": "https://crypto-stone.medium.com/" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x56D594D76b37BE83C54aBF8a4747D60CE58D32C2/info.json b/blockchains/smartchain/assets/0x56D594D76b37BE83C54aBF8a4747D60CE58D32C2/info.json new file mode 100644 index 0000000000000..24bcaf0cc5cb1 --- /dev/null +++ b/blockchains/smartchain/assets/0x56D594D76b37BE83C54aBF8a4747D60CE58D32C2/info.json @@ -0,0 +1,40 @@ +{ + "name": "ELF wallet", + "type": "BEP20", + "symbol": "ELF", + "decimals": 18, + "website": "https://www.teddywallet.io", + "description": "Multi-chain Wallet in WEB3.Multi-chain Wallet, Security First, Full Control by User.", + "explorer": "https://bscscan.com/token/0x56D594D76b37BE83C54aBF8a4747D60CE58D32C2", + "status": "active", + "id": "0x56D594D76b37BE83C54aBF8a4747D60CE58D32C2", + "links": [ + { + "name": "x", + "url": "https://x.com/ElfWallet" + }, + { + "name": "github", + "url": "https://github.com/ELF-Wallet" + }, + { + "name": "telegram", + "url": "https://t.me/ElfWallet_Global" + }, + { + "name": "whitepaper", + "url": "https://www.elfwallets.com/ELF.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elf-wallet/" + }, + { + "name": "medium", + "url": "https://medium.com/@elfwallet" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x56D594D76b37BE83C54aBF8a4747D60CE58D32C2/logo.png b/blockchains/smartchain/assets/0x56D594D76b37BE83C54aBF8a4747D60CE58D32C2/logo.png new file mode 100644 index 0000000000000..2f9cdfc5cb30c Binary files /dev/null and b/blockchains/smartchain/assets/0x56D594D76b37BE83C54aBF8a4747D60CE58D32C2/logo.png differ diff --git a/blockchains/smartchain/assets/0x56fA5F7BF457454Be33D8B978C86A5f5B9DD84C2/info.json b/blockchains/smartchain/assets/0x56fA5F7BF457454Be33D8B978C86A5f5B9DD84C2/info.json new file mode 100644 index 0000000000000..f766888388c65 --- /dev/null +++ b/blockchains/smartchain/assets/0x56fA5F7BF457454Be33D8B978C86A5f5B9DD84C2/info.json @@ -0,0 +1,21 @@ +{ + "name": "Listapie", + "symbol": "LTP", + "decimals": 18, + "type": "BEP20", + "website": "https://www.lista.magpiexyz.io/stake", + "description": "Listapie is a next-generation DeFi platform designed to provide Lista DAO users with yield and veTokenomics boosting services", + "explorer": "https://bscscan.com/token/0x56fA5F7BF457454Be33D8B978C86A5f5B9DD84C2", + "status": "active", + "id": "0x56fA5F7BF457454Be33D8B978C86A5f5B9DD84C2", + "links": [ + { + "name": "x", + "url": "https://x.com/listapiexyz_io?s=21&t=FXslVwqRZgLa0Riljkt9wg" + }, + { + "name": "telegram", + "url": "https://t.me/Official_MagpieMegaDao/101125" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x56fA5F7BF457454Be33D8B978C86A5f5B9DD84C2/logo.png b/blockchains/smartchain/assets/0x56fA5F7BF457454Be33D8B978C86A5f5B9DD84C2/logo.png new file mode 100644 index 0000000000000..5f561a6a32e1f Binary files /dev/null and b/blockchains/smartchain/assets/0x56fA5F7BF457454Be33D8B978C86A5f5B9DD84C2/logo.png differ diff --git a/blockchains/smartchain/assets/0x57067A6BD75c0E95a6A5f158455926e43E79BeB0/info.json b/blockchains/smartchain/assets/0x57067A6BD75c0E95a6A5f158455926e43E79BeB0/info.json index ebb9fd2bf97a1..6aa05817e2f4d 100644 --- a/blockchains/smartchain/assets/0x57067A6BD75c0E95a6A5f158455926e43E79BeB0/info.json +++ b/blockchains/smartchain/assets/0x57067A6BD75c0E95a6A5f158455926e43E79BeB0/info.json @@ -10,8 +10,8 @@ "id": "0x57067A6BD75c0E95a6A5f158455926e43E79BeB0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/money_blizzard" + "name": "x", + "url": "https://x.com/money_blizzard" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x570A5D26f7765Ecb712C0924E4De545B89fD43dF/info.json b/blockchains/smartchain/assets/0x570A5D26f7765Ecb712C0924E4De545B89fD43dF/info.json index ec145199f0045..c5940c5eb1b3a 100644 --- a/blockchains/smartchain/assets/0x570A5D26f7765Ecb712C0924E4De545B89fD43dF/info.json +++ b/blockchains/smartchain/assets/0x570A5D26f7765Ecb712C0924E4De545B89fD43dF/info.json @@ -18,8 +18,8 @@ "url": "https://github.com/solana-labs" }, { - "name": "twitter", - "url": "https://twitter.com/solana" + "name": "x", + "url": "https://x.com/solana" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x571D0B55fe30eb1F6E68e8799F181c46De6B0059/info.json b/blockchains/smartchain/assets/0x571D0B55fe30eb1F6E68e8799F181c46De6B0059/info.json index b52333bac0dfd..30de64974f835 100644 --- a/blockchains/smartchain/assets/0x571D0B55fe30eb1F6E68e8799F181c46De6B0059/info.json +++ b/blockchains/smartchain/assets/0x571D0B55fe30eb1F6E68e8799F181c46De6B0059/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/thugs-defi" }, { - "name": "twitter", - "url": "https://twitter.com/ThugsFinance" + "name": "x", + "url": "https://x.com/ThugsFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x5774B2fc3e91aF89f89141EacF76545e74265982/info.json b/blockchains/smartchain/assets/0x5774B2fc3e91aF89f89141EacF76545e74265982/info.json index 049c341d2fa08..98d013c8a038e 100644 --- a/blockchains/smartchain/assets/0x5774B2fc3e91aF89f89141EacF76545e74265982/info.json +++ b/blockchains/smartchain/assets/0x5774B2fc3e91aF89f89141EacF76545e74265982/info.json @@ -14,8 +14,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/nftynetwork" + "name": "x", + "url": "https://x.com/nftynetwork" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x5778A155fA82063C5C1E48771CAA44ea4d8a5d7a/info.json b/blockchains/smartchain/assets/0x5778A155fA82063C5C1E48771CAA44ea4d8a5d7a/info.json index 1af498e57aec9..d93d1734e0ad3 100644 --- a/blockchains/smartchain/assets/0x5778A155fA82063C5C1E48771CAA44ea4d8a5d7a/info.json +++ b/blockchains/smartchain/assets/0x5778A155fA82063C5C1E48771CAA44ea4d8a5d7a/info.json @@ -10,8 +10,8 @@ "id": "0x5778A155fA82063C5C1E48771CAA44ea4d8a5d7a", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TezillaFinance" + "name": "x", + "url": "https://x.com/TezillaFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x5788105375ecF7F675C29e822FD85fCd84d4cd86/info.json b/blockchains/smartchain/assets/0x5788105375ecF7F675C29e822FD85fCd84d4cd86/info.json index 6c61e9d0ce9c0..9ac63efa3a03a 100644 --- a/blockchains/smartchain/assets/0x5788105375ecF7F675C29e822FD85fCd84d4cd86/info.json +++ b/blockchains/smartchain/assets/0x5788105375ecF7F675C29e822FD85fCd84d4cd86/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/hodlinvestorgroup" }, { - "name": "twitter", - "url": "https://twitter.com/TokenHodl" + "name": "x", + "url": "https://x.com/TokenHodl" }, { "name": "coingecko", diff --git a/blockchains/smartchain/assets/0x5791F45034d5D6B814840065B47443e49B748888/info.json b/blockchains/smartchain/assets/0x5791F45034d5D6B814840065B47443e49B748888/info.json new file mode 100644 index 0000000000000..dfce02b7b994c --- /dev/null +++ b/blockchains/smartchain/assets/0x5791F45034d5D6B814840065B47443e49B748888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Β⁣itс⁤оin", + "type": "BEP20", + "symbol": "FAKE ВТС", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x5791F45034d5D6B814840065B47443e49B748888", + "explorer": "https://bscscan.com/token/0x5791F45034d5D6B814840065B47443e49B748888", + "status": "spam", + "id": "0x5791F45034d5D6B814840065B47443e49B748888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x579F11C75Eb4e47F5290122e87CA411644aDCD97/info.json b/blockchains/smartchain/assets/0x579F11C75Eb4e47F5290122e87CA411644aDCD97/info.json index b635f3f7ceff7..cb28232f58f9e 100644 --- a/blockchains/smartchain/assets/0x579F11C75Eb4e47F5290122e87CA411644aDCD97/info.json +++ b/blockchains/smartchain/assets/0x579F11C75Eb4e47F5290122e87CA411644aDCD97/info.json @@ -10,8 +10,8 @@ "id": "0x579F11C75Eb4e47F5290122e87CA411644aDCD97", "links": [ { - "name": "twitter", - "url": "https://twitter.com/cleanoceantoken" + "name": "x", + "url": "https://x.com/cleanoceantoken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x57A5297F2cB2c0AaC9D554660acd6D385Ab50c6B/info.json b/blockchains/smartchain/assets/0x57A5297F2cB2c0AaC9D554660acd6D385Ab50c6B/info.json index 0c8b1a9d9a990..faf83a3899fc7 100644 --- a/blockchains/smartchain/assets/0x57A5297F2cB2c0AaC9D554660acd6D385Ab50c6B/info.json +++ b/blockchains/smartchain/assets/0x57A5297F2cB2c0AaC9D554660acd6D385Ab50c6B/info.json @@ -11,8 +11,8 @@ "id": "0x57A5297F2cB2c0AaC9D554660acd6D385Ab50c6B", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VenusProtocol" + "name": "x", + "url": "https://x.com/VenusProtocol" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x57Af121A8dDb1F9A8FafcF3229c92bF2856A8a29/info.json b/blockchains/smartchain/assets/0x57Af121A8dDb1F9A8FafcF3229c92bF2856A8a29/info.json index ee4b35d0856fe..87f3bc5fa72a4 100644 --- a/blockchains/smartchain/assets/0x57Af121A8dDb1F9A8FafcF3229c92bF2856A8a29/info.json +++ b/blockchains/smartchain/assets/0x57Af121A8dDb1F9A8FafcF3229c92bF2856A8a29/info.json @@ -10,8 +10,8 @@ "id": "0x57Af121A8dDb1F9A8FafcF3229c92bF2856A8a29", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Socaverse" + "name": "x", + "url": "https://x.com/Socaverse" }, { "name": "coinmarketcap", @@ -27,4 +27,4 @@ "gamefi", "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x57Bc18F6177cDafFb34aCE048745bc913a1B1b54/info.json b/blockchains/smartchain/assets/0x57Bc18F6177cDafFb34aCE048745bc913a1B1b54/info.json index 9fcbe069921d6..186a4deef394c 100644 --- a/blockchains/smartchain/assets/0x57Bc18F6177cDafFb34aCE048745bc913a1B1b54/info.json +++ b/blockchains/smartchain/assets/0x57Bc18F6177cDafFb34aCE048745bc913a1B1b54/info.json @@ -10,8 +10,8 @@ "id": "0x57Bc18F6177cDafFb34aCE048745bc913a1B1b54", "links": [ { - "name": "twitter", - "url": "https://twitter.com/playbithotel" + "name": "x", + "url": "https://x.com/playbithotel" }, { "name": "github", @@ -64,4 +64,4 @@ "nft", "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x57Bfe2aF99AeB7a3de3bc0c42c22353742bfD20D/info.json b/blockchains/smartchain/assets/0x57Bfe2aF99AeB7a3de3bc0c42c22353742bfD20D/info.json index 6e9974a0d2e44..56f77953eb200 100644 --- a/blockchains/smartchain/assets/0x57Bfe2aF99AeB7a3de3bc0c42c22353742bfD20D/info.json +++ b/blockchains/smartchain/assets/0x57Bfe2aF99AeB7a3de3bc0c42c22353742bfD20D/info.json @@ -10,8 +10,8 @@ "id": "0x57Bfe2aF99AeB7a3de3bc0c42c22353742bfD20D", "links": [ { - "name": "twitter", - "url": "https://twitter.com/WaterRabbitNew" + "name": "x", + "url": "https://x.com/WaterRabbitNew" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x57b798d2252557f13A9148A075a72816f2707356/info.json b/blockchains/smartchain/assets/0x57b798d2252557f13A9148A075a72816f2707356/info.json index 7c3ec5ea90e5d..a43192d55242a 100644 --- a/blockchains/smartchain/assets/0x57b798d2252557f13A9148A075a72816f2707356/info.json +++ b/blockchains/smartchain/assets/0x57b798d2252557f13A9148A075a72816f2707356/info.json @@ -10,8 +10,8 @@ "id": "0x57b798d2252557f13A9148A075a72816f2707356", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ratscoinx1000" + "name": "x", + "url": "https://x.com/ratscoinx1000" }, { "name": "telegram", @@ -29,4 +29,4 @@ "tags": [ "memes" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x57fB0126bf345c3FBa132a53cDE73E83d4A68888/info.json b/blockchains/smartchain/assets/0x57fB0126bf345c3FBa132a53cDE73E83d4A68888/info.json new file mode 100644 index 0000000000000..ef1a41ec45321 --- /dev/null +++ b/blockchains/smartchain/assets/0x57fB0126bf345c3FBa132a53cDE73E83d4A68888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether USD", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x57fB0126bf345c3FBa132a53cDE73E83d4A68888", + "explorer": "https://bscscan.com/token/0x57fB0126bf345c3FBa132a53cDE73E83d4A68888", + "status": "spam", + "id": "0x57fB0126bf345c3FBa132a53cDE73E83d4A68888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x580655E2C6D4fC125C0B2D37B2a3e56219bF9f78/info.json b/blockchains/smartchain/assets/0x580655E2C6D4fC125C0B2D37B2a3e56219bF9f78/info.json index ceb9352c25eab..bc346e481d378 100644 --- a/blockchains/smartchain/assets/0x580655E2C6D4fC125C0B2D37B2a3e56219bF9f78/info.json +++ b/blockchains/smartchain/assets/0x580655E2C6D4fC125C0B2D37B2a3e56219bF9f78/info.json @@ -10,8 +10,8 @@ "id": "0x580655E2C6D4fC125C0B2D37B2a3e56219bF9f78", "links": [ { - "name": "twitter", - "url": "https://twitter.com/GallantToken" + "name": "x", + "url": "https://x.com/GallantToken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x585BDE7C54ABB5cCD7791F923D6c2187635f3952/info.json b/blockchains/smartchain/assets/0x585BDE7C54ABB5cCD7791F923D6c2187635f3952/info.json new file mode 100644 index 0000000000000..e99005cfa4d4a --- /dev/null +++ b/blockchains/smartchain/assets/0x585BDE7C54ABB5cCD7791F923D6c2187635f3952/info.json @@ -0,0 +1,20 @@ +{ + "name": "Coinbase Tokenized bStocks", + "type": "BEP20", + "symbol": "COINB", + "decimals": 18, + "description": "COINB is a tokenized bStocks that gives you economic exposure to Coinbase Tokenized bStocks, and the right to convert to the underlying security on the Binance.com platform subject to applicable laws. Each token is fully backed by the corresponding underlying equity maintained by the Issuer at a US-regulated broker-dealer. You get the price movements, dividends, and the right to convert the token at 1:1 to the underlying share — tradeable 24/7.", + "website": "https://www.bstocks.finance/en/", + "explorer": "https://bscscan.com/token/0x585BDE7C54ABB5cCD7791F923D6c2187635f3952", + "status": "active", + "id": "0x585BDE7C54ABB5cCD7791F923D6c2187635f3952", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coinbase-tokenized-bstocks/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x585BDE7C54ABB5cCD7791F923D6c2187635f3952/logo.png b/blockchains/smartchain/assets/0x585BDE7C54ABB5cCD7791F923D6c2187635f3952/logo.png new file mode 100644 index 0000000000000..9e7d3b151b2ff Binary files /dev/null and b/blockchains/smartchain/assets/0x585BDE7C54ABB5cCD7791F923D6c2187635f3952/logo.png differ diff --git a/blockchains/smartchain/assets/0x586330013C8f2352AB5f57215F9E56747eE8837E/info.json b/blockchains/smartchain/assets/0x586330013C8f2352AB5f57215F9E56747eE8837E/info.json index fe56f5a13c83b..28771dfd681b8 100644 --- a/blockchains/smartchain/assets/0x586330013C8f2352AB5f57215F9E56747eE8837E/info.json +++ b/blockchains/smartchain/assets/0x586330013C8f2352AB5f57215F9E56747eE8837E/info.json @@ -10,8 +10,8 @@ "id": "0x586330013C8f2352AB5f57215F9E56747eE8837E", "links": [ { - "name": "twitter", - "url": "https://twitter.com/somaxfinance" + "name": "x", + "url": "https://x.com/somaxfinance" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x5868A0Bc3a64CFf82e19A135E17fE18E18E03bC1/info.json b/blockchains/smartchain/assets/0x5868A0Bc3a64CFf82e19A135E17fE18E18E03bC1/info.json new file mode 100644 index 0000000000000..9704bf717a63e --- /dev/null +++ b/blockchains/smartchain/assets/0x5868A0Bc3a64CFf82e19A135E17fE18E18E03bC1/info.json @@ -0,0 +1,29 @@ +{ + "name": "KRWO", + "type": "BEP20", + "symbol": "KRWO", + "decimals": 6, + "website": "https://gimswap.com/en", + "description": "A platform that issues a Korean Won stablecoin based on fiat-backed assets in Korea, providing a transparent BEP-20-based stablecoin that operates on an open smart contract and decentralized structure, enabling seamless use in Web3.", + "explorer": "https://bscscan.com/token/0x5868A0Bc3a64CFf82e19A135E17fE18E18E03bC1", + "status": "active", + "id": "0x5868A0Bc3a64CFf82e19A135E17fE18E18E03bC1", + "links": [ + { + "name": "x", + "url": "https://x.com/gimswap" + }, + { + "name": "telegram", + "url": "https://t.me/gimswap" + }, + { + "name": "github", + "url": "https://github.com/gimswap" + } + ], + "tags": [ + "stablecoin", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5868A0Bc3a64CFf82e19A135E17fE18E18E03bC1/logo.png b/blockchains/smartchain/assets/0x5868A0Bc3a64CFf82e19A135E17fE18E18E03bC1/logo.png new file mode 100644 index 0000000000000..eb3195b803a97 Binary files /dev/null and b/blockchains/smartchain/assets/0x5868A0Bc3a64CFf82e19A135E17fE18E18E03bC1/logo.png differ diff --git a/blockchains/smartchain/assets/0x58A1e50c8DEaA21808B67ca46103bcC28BEF4444/info.json b/blockchains/smartchain/assets/0x58A1e50c8DEaA21808B67ca46103bcC28BEF4444/info.json new file mode 100644 index 0000000000000..dce2e0686abf5 --- /dev/null +++ b/blockchains/smartchain/assets/0x58A1e50c8DEaA21808B67ca46103bcC28BEF4444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDKG", + "type": "BEP20", + "symbol": "FAKE USDKG", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x58A1e50c8DEaA21808B67ca46103bcC28BEF4444", + "explorer": "https://bscscan.com/token/0x58A1e50c8DEaA21808B67ca46103bcC28BEF4444", + "status": "spam", + "id": "0x58A1e50c8DEaA21808B67ca46103bcC28BEF4444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x58f0C2fd4B7B0fBaC97c9cC71A5Eb810627734C8/info.json b/blockchains/smartchain/assets/0x58f0C2fd4B7B0fBaC97c9cC71A5Eb810627734C8/info.json index 62c36e8cb5dbb..ef5325edcedc6 100644 --- a/blockchains/smartchain/assets/0x58f0C2fd4B7B0fBaC97c9cC71A5Eb810627734C8/info.json +++ b/blockchains/smartchain/assets/0x58f0C2fd4B7B0fBaC97c9cC71A5Eb810627734C8/info.json @@ -10,8 +10,8 @@ "id": "0x58f0C2fd4B7B0fBaC97c9cC71A5Eb810627734C8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/wetux_liquidity" + "name": "x", + "url": "https://x.com/wetux_liquidity" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x5905df3D03E29a22e22462D3257E6AC731E22C15/info.json b/blockchains/smartchain/assets/0x5905df3D03E29a22e22462D3257E6AC731E22C15/info.json index eb06e23767ef1..4152b730ea025 100644 --- a/blockchains/smartchain/assets/0x5905df3D03E29a22e22462D3257E6AC731E22C15/info.json +++ b/blockchains/smartchain/assets/0x5905df3D03E29a22e22462D3257E6AC731E22C15/info.json @@ -10,8 +10,8 @@ "id": "0x5905df3D03E29a22e22462D3257E6AC731E22C15", "links": [ { - "name": "twitter", - "url": "https://twitter.com/GreedEcosystem" + "name": "x", + "url": "https://x.com/GreedEcosystem" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x593822E8bc2875A786362E41aC6aD5947a3954F5/info.json b/blockchains/smartchain/assets/0x593822E8bc2875A786362E41aC6aD5947a3954F5/info.json new file mode 100644 index 0000000000000..b319140860f92 --- /dev/null +++ b/blockchains/smartchain/assets/0x593822E8bc2875A786362E41aC6aD5947a3954F5/info.json @@ -0,0 +1,17 @@ +{ + "name": "Cheese", + "type": "BEP20", + "symbol": "CHEESE", + "decimals": 18, + "website": "https://cheesescoin.xyz", + "description": "CHEESE was born on 4chan’s /biz/ board, destined to be the ultimate BSC coin", + "explorer": "https://bscscan.com/token/0x593822e8bc2875a786362e41ac6ad5947a3954f5", + "status": "active", + "id": "0x593822E8bc2875A786362E41aC6aD5947a3954F5", + "links": [ + { + "name": "x", + "url": "https://x.com/cheese_bsc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x593822E8bc2875A786362E41aC6aD5947a3954F5/logo.png b/blockchains/smartchain/assets/0x593822E8bc2875A786362E41aC6aD5947a3954F5/logo.png new file mode 100644 index 0000000000000..ef293918c9e2c Binary files /dev/null and b/blockchains/smartchain/assets/0x593822E8bc2875A786362E41aC6aD5947a3954F5/logo.png differ diff --git a/blockchains/smartchain/assets/0x593CF214968B854E2Bf85fC890918085e44cC8B9/info.json b/blockchains/smartchain/assets/0x593CF214968B854E2Bf85fC890918085e44cC8B9/info.json new file mode 100644 index 0000000000000..ea6e23ef99d47 --- /dev/null +++ b/blockchains/smartchain/assets/0x593CF214968B854E2Bf85fC890918085e44cC8B9/info.json @@ -0,0 +1,17 @@ +{ + "name": "winz.fun", + "symbol": "WINZ", + "website": "https://winz.fun", + "description": "Trade on four.meme, flap.sh, or on any DEX on Binance Smart Chain with blazing fast speeds. You can also analyse tokens with our AI agent while trading!", + "explorer": "https://bscscan.com/token/0x593cf214968b854e2bf85fc890918085e44cc8b9", + "decimals": 18, + "status": "active", + "id": "0x593CF214968B854E2Bf85fC890918085e44cC8B9", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/winzdotfun" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x593CF214968B854E2Bf85fC890918085e44cC8B9/logo.png b/blockchains/smartchain/assets/0x593CF214968B854E2Bf85fC890918085e44cC8B9/logo.png new file mode 100644 index 0000000000000..39b23730ac1e9 Binary files /dev/null and b/blockchains/smartchain/assets/0x593CF214968B854E2Bf85fC890918085e44cC8B9/logo.png differ diff --git a/blockchains/smartchain/assets/0x595E21b20E78674F8a64C1566A20b2b316Bc3511/info.json b/blockchains/smartchain/assets/0x595E21b20E78674F8a64C1566A20b2b316Bc3511/info.json new file mode 100644 index 0000000000000..581858d9a192e --- /dev/null +++ b/blockchains/smartchain/assets/0x595E21b20E78674F8a64C1566A20b2b316Bc3511/info.json @@ -0,0 +1,28 @@ +{ + "name": "BULLA", + "type": "BEP20", + "symbol": "BULLA", + "decimals": 18, + "website": "https://bullamascot.io/", + "description": "BULLA - the king of memes and the official mascot of the bull market. A pure meme token inspired by Hasbulla, one of the most iconic figures on the internet and in Web3. Backed by a cult-like community, BULLA blends meme culture, virality, and bold energy, embodying the spirit of every true bull in the market.", + "explorer": "https://bscscan.com/token/0x595E21b20E78674F8a64C1566A20b2b316Bc3511", + "status": "active", + "id": "0x595E21b20E78674F8a64C1566A20b2b316Bc3511", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bulla-mascot/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bulla-3" + }, + { + "name": "x", + "url": "https://x.com/BULLAMASCOT" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x595E21b20E78674F8a64C1566A20b2b316Bc3511/logo.png b/blockchains/smartchain/assets/0x595E21b20E78674F8a64C1566A20b2b316Bc3511/logo.png new file mode 100644 index 0000000000000..d1c3298f4450f Binary files /dev/null and b/blockchains/smartchain/assets/0x595E21b20E78674F8a64C1566A20b2b316Bc3511/logo.png differ diff --git a/blockchains/smartchain/assets/0x595a67D180BAE10314384265d56927C8ff073426/info.json b/blockchains/smartchain/assets/0x595a67D180BAE10314384265d56927C8ff073426/info.json new file mode 100644 index 0000000000000..edd8da87493f6 --- /dev/null +++ b/blockchains/smartchain/assets/0x595a67D180BAE10314384265d56927C8ff073426/info.json @@ -0,0 +1,33 @@ +{ + "name": "Darik", + "type": "BEP20", + "symbol": "DARIK", + "decimals": 18, + "website": "https://darikcoin.org", + "description": "DARIK token, which is designed based on BEP20 and has strong support, is active in commercial sectors, and with this token, users can perform all kinds of transactions in a secure platform", + "explorer": "https://bscscan.com/token/0x595a67D180BAE10314384265d56927C8ff073426", + "status": "active", + "id": "0x595a67D180BAE10314384265d56927C8ff073426", + "links": [ + { + "name": "x", + "url": "https://x.com/Darikcoin_Darik" + }, + { + "name": "telegram", + "url": "https://t.me/DARIKCOIN_DARIK" + }, + { + "name": "facebook", + "url": "https://facebook.com/people/Darik-Coin/pfbid02gFwGRGgpwcuBnZvY9SDkJibP6JbycXUeDvGdEHLpLaVwKfXJWEP3AWNEi61jVDKdl/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/dexscan/bsc/0xbba50be7a1cb6e25ddda562b0ca278089bf9068a/" + } + ], + "tags": [ + "governance", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x595a67D180BAE10314384265d56927C8ff073426/logo.png b/blockchains/smartchain/assets/0x595a67D180BAE10314384265d56927C8ff073426/logo.png new file mode 100644 index 0000000000000..8fa8f5585a2b7 Binary files /dev/null and b/blockchains/smartchain/assets/0x595a67D180BAE10314384265d56927C8ff073426/logo.png differ diff --git a/blockchains/smartchain/assets/0x59803e5Fe213D4B22fb9b061c4C89E716a1CA760/info.json b/blockchains/smartchain/assets/0x59803e5Fe213D4B22fb9b061c4C89E716a1CA760/info.json new file mode 100644 index 0000000000000..5663a667a8a02 --- /dev/null +++ b/blockchains/smartchain/assets/0x59803e5Fe213D4B22fb9b061c4C89E716a1CA760/info.json @@ -0,0 +1,25 @@ +{ + "name": "Operation Phoenix", + "website": "https://operationphoenix.network", + "description": "The mission of Operation Phoenix is simple. To become what SafeMoon should have been.", + "explorer": "https://bscscan.com/token/0x59803e5fe213d4b22fb9b061c4c89e716a1ca760", + "type": "BEP20", + "symbol": "OPHX", + "decimals": 18, + "status": "active", + "id": "0x59803e5Fe213D4B22fb9b061c4C89E716a1CA760", + "links": [ + { + "name": "x", + "url": "https://x.com/Op_PhoenixChain" + }, + { + "name": "telegram", + "url": "https://t.me/operationphoenixnetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/operation-phoenix/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x59803e5Fe213D4B22fb9b061c4C89E716a1CA760/logo.png b/blockchains/smartchain/assets/0x59803e5Fe213D4B22fb9b061c4C89E716a1CA760/logo.png new file mode 100644 index 0000000000000..257d2d2d1f2aa Binary files /dev/null and b/blockchains/smartchain/assets/0x59803e5Fe213D4B22fb9b061c4C89E716a1CA760/logo.png differ diff --git a/blockchains/smartchain/assets/0x599beec263FA6eA35055011967597B259FC012A4/info.json b/blockchains/smartchain/assets/0x599beec263FA6eA35055011967597B259FC012A4/info.json index 7d9ec7b017bf1..be02fa066a627 100644 --- a/blockchains/smartchain/assets/0x599beec263FA6eA35055011967597B259FC012A4/info.json +++ b/blockchains/smartchain/assets/0x599beec263FA6eA35055011967597B259FC012A4/info.json @@ -10,8 +10,8 @@ "id": "0x599beec263FA6eA35055011967597B259FC012A4", "links": [ { - "name": "twitter", - "url": "https://twitter.com/foxgirltoken" + "name": "x", + "url": "https://x.com/foxgirltoken" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x59E69094398AfbEA632F8Bd63033BdD2443a3Be1/info.json b/blockchains/smartchain/assets/0x59E69094398AfbEA632F8Bd63033BdD2443a3Be1/info.json new file mode 100644 index 0000000000000..5ee7cd3329709 --- /dev/null +++ b/blockchains/smartchain/assets/0x59E69094398AfbEA632F8Bd63033BdD2443a3Be1/info.json @@ -0,0 +1,17 @@ +{ + "name": "Wise Monkey", + "website": "https://wisemonky.com/", + "description": "Wise Monkey is supported by Floki and Ape Accelerator, building on BNBchain. Binance, OKX, Kucoin, Gate support its airdrop with 2.3M+ airdrop recipients. $MONKY embodies the wisdom and collective power of the community.", + "explorer": "https://bscscan.com/token/0x59E69094398AfbEA632F8Bd63033BdD2443a3Be1", + "type": "BEP20", + "symbol": "MONKY", + "decimals": 18, + "status": "active", + "id": "0x59E69094398AfbEA632F8Bd63033BdD2443a3Be1", + "links": [ + { + "name": "x", + "url": "https://x.com/MonkyMeme" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x59E69094398AfbEA632F8Bd63033BdD2443a3Be1/logo.png b/blockchains/smartchain/assets/0x59E69094398AfbEA632F8Bd63033BdD2443a3Be1/logo.png new file mode 100644 index 0000000000000..bbebb09bba2a0 Binary files /dev/null and b/blockchains/smartchain/assets/0x59E69094398AfbEA632F8Bd63033BdD2443a3Be1/logo.png differ diff --git a/blockchains/smartchain/assets/0x59F4F336Bf3D0C49dBfbA4A74eBD2a6aCE40539A/info.json b/blockchains/smartchain/assets/0x59F4F336Bf3D0C49dBfbA4A74eBD2a6aCE40539A/info.json new file mode 100644 index 0000000000000..3b1e795819082 --- /dev/null +++ b/blockchains/smartchain/assets/0x59F4F336Bf3D0C49dBfbA4A74eBD2a6aCE40539A/info.json @@ -0,0 +1,28 @@ +{ + "name": "Catcoin", + "type": "BEP20", + "symbol": "CAT", + "decimals": 9, + "website": "https://catcoin.com", + "description": "Catcoin is a cat theme token that focuses on community decentralization and adoption. $CAT is designed to make memeCoins great again.", + "explorer": "https://bscscan.com/token/0x59F4F336Bf3D0C49dBfbA4A74eBD2a6aCE40539A", + "status": "active", + "id": "0x59F4F336Bf3D0C49dBfbA4A74eBD2a6aCE40539A", + "links": [ + { + "name": "x", + "url": "https://x.com/catcoin" + }, + { + "name": "telegram_news", + "url": "https://t.me/catcoinalert" + }, + { + "name": "facebook", + "url": "https://facebook.com/catcoincom" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x59F4F336Bf3D0C49dBfbA4A74eBD2a6aCE40539A/logo.png b/blockchains/smartchain/assets/0x59F4F336Bf3D0C49dBfbA4A74eBD2a6aCE40539A/logo.png new file mode 100644 index 0000000000000..0ff8ebaa9bb2f Binary files /dev/null and b/blockchains/smartchain/assets/0x59F4F336Bf3D0C49dBfbA4A74eBD2a6aCE40539A/logo.png differ diff --git a/blockchains/smartchain/assets/0x59F6B2435Cd1421f409907aD2D9F811849ca555f/info.json b/blockchains/smartchain/assets/0x59F6B2435Cd1421f409907aD2D9F811849ca555f/info.json index 8d31d71c6c33f..37fdeae20d034 100644 --- a/blockchains/smartchain/assets/0x59F6B2435Cd1421f409907aD2D9F811849ca555f/info.json +++ b/blockchains/smartchain/assets/0x59F6B2435Cd1421f409907aD2D9F811849ca555f/info.json @@ -10,8 +10,8 @@ "id": "0x59F6B2435Cd1421f409907aD2D9F811849ca555f", "links": [ { - "name": "twitter", - "url": "https://twitter.com/tankbattleco" + "name": "x", + "url": "https://x.com/tankbattleco" }, { "name": "github", @@ -49,4 +49,4 @@ "tags": [ "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5A054554b3F0C75063D29250984A921402E1E3a7/info.json b/blockchains/smartchain/assets/0x5A054554b3F0C75063D29250984A921402E1E3a7/info.json index 78f120daa3f01..60cba48cfeda9 100644 --- a/blockchains/smartchain/assets/0x5A054554b3F0C75063D29250984A921402E1E3a7/info.json +++ b/blockchains/smartchain/assets/0x5A054554b3F0C75063D29250984A921402E1E3a7/info.json @@ -10,8 +10,8 @@ "id": "0x5A054554b3F0C75063D29250984A921402E1E3a7", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ShieldFinance1" + "name": "x", + "url": "https://x.com/ShieldFinance1" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x5A09A4e79DAA90DAd3AF97eB33fBdC54d20f8888/info.json b/blockchains/smartchain/assets/0x5A09A4e79DAA90DAd3AF97eB33fBdC54d20f8888/info.json new file mode 100644 index 0000000000000..8c6254d8978d9 --- /dev/null +++ b/blockchains/smartchain/assets/0x5A09A4e79DAA90DAd3AF97eB33fBdC54d20f8888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tеthеr", + "type": "BEP20", + "symbol": "FAKE ՍSDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x5A09A4e79DAA90DAd3AF97eB33fBdC54d20f8888", + "explorer": "https://bscscan.com/token/0x5A09A4e79DAA90DAd3AF97eB33fBdC54d20f8888", + "status": "spam", + "id": "0x5A09A4e79DAA90DAd3AF97eB33fBdC54d20f8888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5A110fC00474038f6c02E89C707D638602EA44B5/info.json b/blockchains/smartchain/assets/0x5A110fC00474038f6c02E89C707D638602EA44B5/info.json new file mode 100644 index 0000000000000..5e0d7b94edb1f --- /dev/null +++ b/blockchains/smartchain/assets/0x5A110fC00474038f6c02E89C707D638602EA44B5/info.json @@ -0,0 +1,18 @@ +{ + "name": "Astherus USDF", + "type": "BEP20", + "symbol": "USDF", + "decimals": 18, + "description": "Astherus is a multi-asset liquidity hub designed to unlock the full earning potential of crypto assets.", + "website": "https://astherus.finance/en/usdf", + "explorer": "https://bscscan.com/token/0x5a110fc00474038f6c02e89c707d638602ea44b5", + "id": "0x5A110fC00474038f6c02E89C707D638602EA44B5", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/AstherusHub" + } + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5A110fC00474038f6c02E89C707D638602EA44B5/logo.png b/blockchains/smartchain/assets/0x5A110fC00474038f6c02E89C707D638602EA44B5/logo.png new file mode 100644 index 0000000000000..bd1bef73c6d51 Binary files /dev/null and b/blockchains/smartchain/assets/0x5A110fC00474038f6c02E89C707D638602EA44B5/logo.png differ diff --git a/blockchains/smartchain/assets/0x5A341DCF49e161CC73591f02e5f8CDE8A29733fb/info.json b/blockchains/smartchain/assets/0x5A341DCF49e161CC73591f02e5f8CDE8A29733fb/info.json index 332689b66676f..4c942005b32a2 100644 --- a/blockchains/smartchain/assets/0x5A341DCF49e161CC73591f02e5f8CDE8A29733fb/info.json +++ b/blockchains/smartchain/assets/0x5A341DCF49e161CC73591f02e5f8CDE8A29733fb/info.json @@ -18,8 +18,8 @@ "url": "https://reflecto.finance/assets/docs/reflecto-v2-whitepaper.pdf" }, { - "name": "twitter", - "url": "https://twitter.com/reflectocoin" + "name": "x", + "url": "https://x.com/reflectocoin" }, { "name": "telegram", @@ -57,4 +57,4 @@ "decimals": 9, "status": "active", "id": "0x5A341DCF49e161CC73591f02e5f8CDE8A29733fb" -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5A3B6f18Dc79D50ab208af2fCd61D10BF7e4896F/info.json b/blockchains/smartchain/assets/0x5A3B6f18Dc79D50ab208af2fCd61D10BF7e4896F/info.json index b0583065a0f40..4f615afd97dd9 100644 --- a/blockchains/smartchain/assets/0x5A3B6f18Dc79D50ab208af2fCd61D10BF7e4896F/info.json +++ b/blockchains/smartchain/assets/0x5A3B6f18Dc79D50ab208af2fCd61D10BF7e4896F/info.json @@ -10,8 +10,8 @@ "id": "0x5A3B6f18Dc79D50ab208af2fCd61D10BF7e4896F", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Token_AETH" + "name": "x", + "url": "https://x.com/Token_AETH" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x5A41F637C3f7553dBa6dDC2D3cA92641096577ea/info.json b/blockchains/smartchain/assets/0x5A41F637C3f7553dBa6dDC2D3cA92641096577ea/info.json index ac7efd1703de6..c8833cf60ae3f 100644 --- a/blockchains/smartchain/assets/0x5A41F637C3f7553dBa6dDC2D3cA92641096577ea/info.json +++ b/blockchains/smartchain/assets/0x5A41F637C3f7553dBa6dDC2D3cA92641096577ea/info.json @@ -6,6 +6,6 @@ "type": "BEP20", "symbol": "JulD", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x5A41F637C3f7553dBa6dDC2D3cA92641096577ea" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5A4f765476Fd1BF010783B47a25CbF10974e6A37/info.json b/blockchains/smartchain/assets/0x5A4f765476Fd1BF010783B47a25CbF10974e6A37/info.json index 54f92679c8394..f446a1da3afe6 100644 --- a/blockchains/smartchain/assets/0x5A4f765476Fd1BF010783B47a25CbF10974e6A37/info.json +++ b/blockchains/smartchain/assets/0x5A4f765476Fd1BF010783B47a25CbF10974e6A37/info.json @@ -10,8 +10,8 @@ "id": "0x5A4f765476Fd1BF010783B47a25CbF10974e6A37", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SPE_Token_BSC" + "name": "x", + "url": "https://x.com/SPE_Token_BSC" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x5A5844CAb96A7b8B257Fc606Aa6119c5cBc6D4c4/info.json b/blockchains/smartchain/assets/0x5A5844CAb96A7b8B257Fc606Aa6119c5cBc6D4c4/info.json index 977e838f9d0e7..c326214e47e05 100644 --- a/blockchains/smartchain/assets/0x5A5844CAb96A7b8B257Fc606Aa6119c5cBc6D4c4/info.json +++ b/blockchains/smartchain/assets/0x5A5844CAb96A7b8B257Fc606Aa6119c5cBc6D4c4/info.json @@ -10,8 +10,8 @@ "id": "0x5A5844CAb96A7b8B257Fc606Aa6119c5cBc6D4c4", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BitBurnOfficial" + "name": "x", + "url": "https://x.com/BitBurnOfficial" }, { "name": "github", @@ -22,4 +22,4 @@ "defi", "deflationary" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5A6117EE2EA174D5875e3c1880ecd7bc8dA651B6/info.json b/blockchains/smartchain/assets/0x5A6117EE2EA174D5875e3c1880ecd7bc8dA651B6/info.json new file mode 100644 index 0000000000000..a7e3224b2412e --- /dev/null +++ b/blockchains/smartchain/assets/0x5A6117EE2EA174D5875e3c1880ecd7bc8dA651B6/info.json @@ -0,0 +1,29 @@ +{ + "name": "KLIP AI", + "type": "BEP20", + "symbol": "KLIP", + "decimals": 18, + "website": "https://klipai.com/", + "description": "KLIP AI is an AI-powered smart wallet layer for Web3. It transforms crypto transactions into clean, AI-generated receipts and enables users to send tokens using simple usernames instead of wallet addresses. Built for security, convenience, and smarter financial decisions.", + "explorer": "https://bscscan.com/token/0x5A6117EE2EA174D5875e3c1880ecd7bc8dA651B6", + "status": "active", + "id": "0x5A6117EE2EA174D5875e3c1880ecd7bc8dA651B6", + "links": [ + { + "name": "x", + "url": "https://x.com/klip_ai" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/klip-ai" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/klipai" + } + ], + "tags": [ + "defi", + "dapp" + ] +} diff --git a/blockchains/smartchain/assets/0x5A6117EE2EA174D5875e3c1880ecd7bc8dA651B6/logo.png b/blockchains/smartchain/assets/0x5A6117EE2EA174D5875e3c1880ecd7bc8dA651B6/logo.png new file mode 100644 index 0000000000000..03ddfa3effd4a Binary files /dev/null and b/blockchains/smartchain/assets/0x5A6117EE2EA174D5875e3c1880ecd7bc8dA651B6/logo.png differ diff --git a/blockchains/smartchain/assets/0x5A726a26eDB0Df8Fd55f03cc30aF8A7cEa81e78D/info.json b/blockchains/smartchain/assets/0x5A726a26eDB0Df8Fd55f03cc30aF8A7cEa81e78D/info.json index aaa898b73e7ec..23b2bb8b70dc4 100644 --- a/blockchains/smartchain/assets/0x5A726a26eDB0Df8Fd55f03cc30aF8A7cEa81e78D/info.json +++ b/blockchains/smartchain/assets/0x5A726a26eDB0Df8Fd55f03cc30aF8A7cEa81e78D/info.json @@ -10,8 +10,8 @@ "id": "0x5A726a26eDB0Df8Fd55f03cc30aF8A7cEa81e78D", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Cross_Wallet" + "name": "x", + "url": "https://x.com/Cross_Wallet" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x5A9D924FC336A5EC8cf3B1909aA660533B50b015/info.json b/blockchains/smartchain/assets/0x5A9D924FC336A5EC8cf3B1909aA660533B50b015/info.json new file mode 100644 index 0000000000000..3cb1c167a630c --- /dev/null +++ b/blockchains/smartchain/assets/0x5A9D924FC336A5EC8cf3B1909aA660533B50b015/info.json @@ -0,0 +1,24 @@ +{ + "name": "Enlivex Therapeutics (Ondo Tokenized)", + "type": "BEP20", + "symbol": "ENLVon", + "decimals": 18, + "description": "ENLVon is the Ondo Tokenized version of Enlivex Therapeutics, giving tokenholders economic exposure similar to holding ENLV and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x5A9D924FC336A5EC8cf3B1909aA660533B50b015", + "status": "active", + "id": "0x5A9D924FC336A5EC8cf3B1909aA660533B50b015", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/enlivex-therapeutics-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5A9D924FC336A5EC8cf3B1909aA660533B50b015/logo.png b/blockchains/smartchain/assets/0x5A9D924FC336A5EC8cf3B1909aA660533B50b015/logo.png new file mode 100644 index 0000000000000..138c9f7d869f6 Binary files /dev/null and b/blockchains/smartchain/assets/0x5A9D924FC336A5EC8cf3B1909aA660533B50b015/logo.png differ diff --git a/blockchains/smartchain/assets/0x5Afa2959C98b030716f7C0a4D85e0b0E35F3791B/info.json b/blockchains/smartchain/assets/0x5Afa2959C98b030716f7C0a4D85e0b0E35F3791B/info.json new file mode 100644 index 0000000000000..9aa04f95888e5 --- /dev/null +++ b/blockchains/smartchain/assets/0x5Afa2959C98b030716f7C0a4D85e0b0E35F3791B/info.json @@ -0,0 +1,44 @@ +{ + "name": "ElonXAIDogeMessi69PepeInu", + "type": "BEP20", + "symbol": "BITCOIN", + "decimals": 9, + "website": "https://bitcoin69.org", + "description": "Aims to create a connection between Artificial Intelligence and Cryptocurrency to build a strong web3 system.", + "explorer": "https://bscscan.com/token/0x5Afa2959C98b030716f7C0a4D85e0b0E35F3791B", + "status": "active", + "id": "0x5Afa2959C98b030716f7C0a4D85e0b0E35F3791B", + "links": [ + { + "name": "x", + "url": "https://x.com/bitcoin69_bsc" + }, + { + "name": "github", + "url": "https://github.com/ElonXAIDogeMessi69PepeInu" + }, + { + "name": "telegram", + "url": "https://t.me/bitcoin69_global" + }, + { + "name": "source_code", + "url": "https://bscscan.com/token/0x5afa2959c98b030716f7c0a4d85e0b0e35f3791b#code" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elonxaidogemessi69pepeinu/" + }, + { + "name": "docs", + "url": "https://doc.bitcoin69.org/" + }, + { + "name": "medium", + "url": "https://medium.com/@bitcoin69" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5Afa2959C98b030716f7C0a4D85e0b0E35F3791B/logo.png b/blockchains/smartchain/assets/0x5Afa2959C98b030716f7C0a4D85e0b0E35F3791B/logo.png new file mode 100644 index 0000000000000..0b053e713c461 Binary files /dev/null and b/blockchains/smartchain/assets/0x5Afa2959C98b030716f7C0a4D85e0b0E35F3791B/logo.png differ diff --git a/blockchains/smartchain/assets/0x5B6bf0c7f989dE824677cFBD507D9635965e9cD3/info.json b/blockchains/smartchain/assets/0x5B6bf0c7f989dE824677cFBD507D9635965e9cD3/info.json index 8fa48c81d3621..125259df9fefd 100644 --- a/blockchains/smartchain/assets/0x5B6bf0c7f989dE824677cFBD507D9635965e9cD3/info.json +++ b/blockchains/smartchain/assets/0x5B6bf0c7f989dE824677cFBD507D9635965e9cD3/info.json @@ -10,8 +10,8 @@ "id": "0x5B6bf0c7f989dE824677cFBD507D9635965e9cD3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/gamiumcorp" + "name": "x", + "url": "https://x.com/gamiumcorp" }, { "name": "telegram", @@ -37,4 +37,4 @@ "tags": [ "governance" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5BCFF1a01d3eEbA4c9A3b9c45504Ec48771826e5/info.json b/blockchains/smartchain/assets/0x5BCFF1a01d3eEbA4c9A3b9c45504Ec48771826e5/info.json new file mode 100644 index 0000000000000..5a936c687bd7e --- /dev/null +++ b/blockchains/smartchain/assets/0x5BCFF1a01d3eEbA4c9A3b9c45504Ec48771826e5/info.json @@ -0,0 +1,14 @@ +{ + "name": "shello", + "type": "BEP20", + "symbol": "SHELLO", + "decimals": 18, + "website": "https://four.meme/token/0x5BCFF1a01d3eEbA4c9A3b9c45504Ec48771826e5", + "description": "cute shell", + "explorer": "https://bscscan.com/token/0x5BCFF1a01d3eEbA4c9A3b9c45504Ec48771826e5", + "status": "active", + "id": "0x5BCFF1a01d3eEbA4c9A3b9c45504Ec48771826e5", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5BCFF1a01d3eEbA4c9A3b9c45504Ec48771826e5/logo.png b/blockchains/smartchain/assets/0x5BCFF1a01d3eEbA4c9A3b9c45504Ec48771826e5/logo.png new file mode 100644 index 0000000000000..0b63c63e2075a Binary files /dev/null and b/blockchains/smartchain/assets/0x5BCFF1a01d3eEbA4c9A3b9c45504Ec48771826e5/logo.png differ diff --git a/blockchains/smartchain/assets/0x5BFeB407fFE77DD3086D0A19dE81904270264444/info.json b/blockchains/smartchain/assets/0x5BFeB407fFE77DD3086D0A19dE81904270264444/info.json new file mode 100644 index 0000000000000..d3b75c80af299 --- /dev/null +++ b/blockchains/smartchain/assets/0x5BFeB407fFE77DD3086D0A19dE81904270264444/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT TRUMP MOG", + "type": "BEP20", + "symbol": "HONEYPOT TRUMP", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x5bfeb407ffe77dd3086d0a19de81904270264444?a=0xec588bE8550d1e94d51b1365493632CEc085ADA8#code", + "explorer": "https://bscscan.com/token/0x5bfeb407ffe77dd3086d0a19de81904270264444?a=0xec588bE8550d1e94d51b1365493632CEc085ADA8#code", + "status": "spam", + "id": "0x5BFeB407fFE77DD3086D0A19dE81904270264444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5Be0340D9Dc1B633Eb5a5e3cd44A1c9642c84444/info.json b/blockchains/smartchain/assets/0x5Be0340D9Dc1B633Eb5a5e3cd44A1c9642c84444/info.json new file mode 100644 index 0000000000000..2b116fa26e409 --- /dev/null +++ b/blockchains/smartchain/assets/0x5Be0340D9Dc1B633Eb5a5e3cd44A1c9642c84444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDKG", + "type": "BEP20", + "symbol": "FAKE USDKG", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x5Be0340D9Dc1B633Eb5a5e3cd44A1c9642c84444", + "explorer": "https://bscscan.com/token/0x5Be0340D9Dc1B633Eb5a5e3cd44A1c9642c84444", + "status": "spam", + "id": "0x5Be0340D9Dc1B633Eb5a5e3cd44A1c9642c84444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5C197A2D2c9081D30715C80bD1b57c996A14cda0/info.json b/blockchains/smartchain/assets/0x5C197A2D2c9081D30715C80bD1b57c996A14cda0/info.json index 9875534df97e7..b663e8d4e9e6d 100644 --- a/blockchains/smartchain/assets/0x5C197A2D2c9081D30715C80bD1b57c996A14cda0/info.json +++ b/blockchains/smartchain/assets/0x5C197A2D2c9081D30715C80bD1b57c996A14cda0/info.json @@ -10,8 +10,8 @@ "id": "0x5C197A2D2c9081D30715C80bD1b57c996A14cda0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PresaleWorld" + "name": "x", + "url": "https://x.com/PresaleWorld" }, { "name": "telegram", @@ -37,4 +37,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5C7e71f46e49Cf816f9863461EEB36e3bc8E3B51/info.json b/blockchains/smartchain/assets/0x5C7e71f46e49Cf816f9863461EEB36e3bc8E3B51/info.json index 37d9a5a32b118..3ef81fe25b7db 100644 --- a/blockchains/smartchain/assets/0x5C7e71f46e49Cf816f9863461EEB36e3bc8E3B51/info.json +++ b/blockchains/smartchain/assets/0x5C7e71f46e49Cf816f9863461EEB36e3bc8E3B51/info.json @@ -10,8 +10,8 @@ "id": "0x5C7e71f46e49Cf816f9863461EEB36e3bc8E3B51", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Equal_Network" + "name": "x", + "url": "https://x.com/Equal_Network" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x5C85D6C6825aB4032337F11Ee92a72DF936b46F6/info.json b/blockchains/smartchain/assets/0x5C85D6C6825aB4032337F11Ee92a72DF936b46F6/info.json new file mode 100644 index 0000000000000..00ab137b52862 --- /dev/null +++ b/blockchains/smartchain/assets/0x5C85D6C6825aB4032337F11Ee92a72DF936b46F6/info.json @@ -0,0 +1,21 @@ +{ + "name": "mubarak", + "website": "https://www.mubarak-cto.com/", + "description": "CZ just subtly acknowledged that he’s Mubarak – a typical cryptic move from the Binance boss! Those who’ve followed CZ long enough know that when he shills like this, the chances of a Binance listing are sky-high.", + "explorer": "https://bscscan.com/token/0x5C85D6C6825aB4032337F11Ee92a72DF936b46F6", + "type": "BEP20", + "symbol": "mubarak", + "decimals": 18, + "status": "active", + "id": "0x5C85D6C6825aB4032337F11Ee92a72DF936b46F6", + "links": [ + { + "name": "x", + "url": "https://x.com/mubarak_cto" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mubarak/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5C85D6C6825aB4032337F11Ee92a72DF936b46F6/logo.png b/blockchains/smartchain/assets/0x5C85D6C6825aB4032337F11Ee92a72DF936b46F6/logo.png new file mode 100644 index 0000000000000..5e4b2bfd42e47 Binary files /dev/null and b/blockchains/smartchain/assets/0x5C85D6C6825aB4032337F11Ee92a72DF936b46F6/logo.png differ diff --git a/blockchains/smartchain/assets/0x5C95aeA78880B3049CaD11693147d7652c749C07/info.json b/blockchains/smartchain/assets/0x5C95aeA78880B3049CaD11693147d7652c749C07/info.json new file mode 100644 index 0000000000000..2aa4589d57aeb --- /dev/null +++ b/blockchains/smartchain/assets/0x5C95aeA78880B3049CaD11693147d7652c749C07/info.json @@ -0,0 +1,14 @@ +{ + "name": "WAT2", + "type": "BEP20", + "symbol": "WAT2", + "decimals": 18, + "website": "https://bscscan.com/address/0x5C95aeA78880B3049CaD11693147d7652c749C07", + "description": "$WAT2 is an abbreviation for \"WEB3 Annual Top2,\" representing a virtual idol group formed by the digital humans behind MEET48's popular idols rinako & Yancy.", + "explorer": "https://bscscan.com/token/0x5C95aeA78880B3049CaD11693147d7652c749C07", + "status": "active", + "id": "0x5C95aeA78880B3049CaD11693147d7652c749C07", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5C95aeA78880B3049CaD11693147d7652c749C07/logo.png b/blockchains/smartchain/assets/0x5C95aeA78880B3049CaD11693147d7652c749C07/logo.png new file mode 100644 index 0000000000000..68705b56e6a60 Binary files /dev/null and b/blockchains/smartchain/assets/0x5C95aeA78880B3049CaD11693147d7652c749C07/logo.png differ diff --git a/blockchains/smartchain/assets/0x5C999E15B71de2bb8e651f0f999FB0Bc321a0DFe/info.json b/blockchains/smartchain/assets/0x5C999E15B71de2bb8e651f0f999FB0Bc321a0DFe/info.json new file mode 100644 index 0000000000000..3aadf627c4277 --- /dev/null +++ b/blockchains/smartchain/assets/0x5C999E15B71de2bb8e651f0f999FB0Bc321a0DFe/info.json @@ -0,0 +1,21 @@ +{ + "name": "ZedDex", + "website": "https://zeddex.com", + "description": "ZedDex is The First NeoBanking Decentralized Hub Trade, earn, and excel with crypto on the galaxy’s top decentralized platform token.", + "explorer": "https://bscscan.com/token/0x5c999e15b71de2bb8e651f0f999fb0bc321a0dfe", + "symbol": "ZED", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x5C999E15B71de2bb8e651f0f999FB0Bc321a0DFe", + "links": [ + { + "name": "x", + "url": "https://x.com/zedxionc" + }, + { + "name": "github", + "url": "https://github.com/Zedscan" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5C999E15B71de2bb8e651f0f999FB0Bc321a0DFe/logo.png b/blockchains/smartchain/assets/0x5C999E15B71de2bb8e651f0f999FB0Bc321a0DFe/logo.png new file mode 100644 index 0000000000000..2ab42ff07eb79 Binary files /dev/null and b/blockchains/smartchain/assets/0x5C999E15B71de2bb8e651f0f999FB0Bc321a0DFe/logo.png differ diff --git a/blockchains/smartchain/assets/0x5CA42204cDaa70d5c773946e69dE942b85CA6706/info.json b/blockchains/smartchain/assets/0x5CA42204cDaa70d5c773946e69dE942b85CA6706/info.json index 9c59ca1980e52..5320083759813 100644 --- a/blockchains/smartchain/assets/0x5CA42204cDaa70d5c773946e69dE942b85CA6706/info.json +++ b/blockchains/smartchain/assets/0x5CA42204cDaa70d5c773946e69dE942b85CA6706/info.json @@ -10,8 +10,8 @@ "id": "0x5CA42204cDaa70d5c773946e69dE942b85CA6706", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PositionEx" + "name": "x", + "url": "https://x.com/PositionEx" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x5CCe69765F9D86fF7B83403017186A41d0218c72/info.json b/blockchains/smartchain/assets/0x5CCe69765F9D86fF7B83403017186A41d0218c72/info.json new file mode 100644 index 0000000000000..27a71ec5b2968 --- /dev/null +++ b/blockchains/smartchain/assets/0x5CCe69765F9D86fF7B83403017186A41d0218c72/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tethet", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x5CCe69765F9D86fF7B83403017186A41d0218c72", + "explorer": "https://bscscan.com/token/0x5CCe69765F9D86fF7B83403017186A41d0218c72", + "status": "spam", + "id": "0x5CCe69765F9D86fF7B83403017186A41d0218c72" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5Cb2C3Ed882E37DA610f9eF5b0FA25514d7bc85B/info.json b/blockchains/smartchain/assets/0x5Cb2C3Ed882E37DA610f9eF5b0FA25514d7bc85B/info.json index bbb0c7b2add9b..ef928d00748cb 100644 --- a/blockchains/smartchain/assets/0x5Cb2C3Ed882E37DA610f9eF5b0FA25514d7bc85B/info.json +++ b/blockchains/smartchain/assets/0x5Cb2C3Ed882E37DA610f9eF5b0FA25514d7bc85B/info.json @@ -10,8 +10,8 @@ "id": "0x5Cb2C3Ed882E37DA610f9eF5b0FA25514d7bc85B", "links": [ { - "name": "twitter", - "url": "https://twitter.com/mousehaunt" + "name": "x", + "url": "https://x.com/mousehaunt" }, { "name": "github", @@ -54,5 +54,4 @@ "nft", "gamefi" ] -} - +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5D07eDAbA2151a3C6802B28636eCC23082398EdB/info.json b/blockchains/smartchain/assets/0x5D07eDAbA2151a3C6802B28636eCC23082398EdB/info.json index 2b196e05a5bb7..4afdc93bc2dd4 100644 --- a/blockchains/smartchain/assets/0x5D07eDAbA2151a3C6802B28636eCC23082398EdB/info.json +++ b/blockchains/smartchain/assets/0x5D07eDAbA2151a3C6802B28636eCC23082398EdB/info.json @@ -14,8 +14,8 @@ "url": "https://facebook.com/zunacoin" }, { - "name": "twitter", - "url": "https://twitter.com/zunacoin" + "name": "x", + "url": "https://x.com/zunacoin" }, { "name": "youtube", diff --git a/blockchains/smartchain/assets/0x5D642505FE1a28897eb3BaBA665F454755D8daA2/info.json b/blockchains/smartchain/assets/0x5D642505FE1a28897eb3BaBA665F454755D8daA2/info.json new file mode 100644 index 0000000000000..1fd0f93d7df16 --- /dev/null +++ b/blockchains/smartchain/assets/0x5D642505FE1a28897eb3BaBA665F454755D8daA2/info.json @@ -0,0 +1,24 @@ +{ + "name": "AstraZeneca tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "AstraZeneca xStock (AZNx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. AZNx tracks the price of AstraZeneca PLC (the underlying). AZNx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of AstraZeneca PLC, whilst maintaining the benefits of blockchain technology. AstraZeneca is a British-Swedish biopharmaceutical company that focuses on research, development, and commercialization of prescription medicines.", + "explorer": "https://bscscan.com/token/0x5D642505FE1a28897eb3BaBA665F454755D8daA2", + "type": "BEP20", + "symbol": "AZNX", + "decimals": 18, + "status": "active", + "id": "0x5D642505FE1a28897eb3BaBA665F454755D8daA2", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/astrazeneca-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5D642505FE1a28897eb3BaBA665F454755D8daA2/logo.png b/blockchains/smartchain/assets/0x5D642505FE1a28897eb3BaBA665F454755D8daA2/logo.png new file mode 100644 index 0000000000000..d59462126c663 Binary files /dev/null and b/blockchains/smartchain/assets/0x5D642505FE1a28897eb3BaBA665F454755D8daA2/logo.png differ diff --git a/blockchains/smartchain/assets/0x5DDA861716cD6b1baa17F7F2dB0fbB70D783A5F8/info.json b/blockchains/smartchain/assets/0x5DDA861716cD6b1baa17F7F2dB0fbB70D783A5F8/info.json new file mode 100644 index 0000000000000..3b47008f55776 --- /dev/null +++ b/blockchains/smartchain/assets/0x5DDA861716cD6b1baa17F7F2dB0fbB70D783A5F8/info.json @@ -0,0 +1,22 @@ +{ + "name": "AIgeniX", + "type": "BEP20", + "symbol": "AIX", + "decimals": 18, + "description": "Where Grok's memes turn into rewards.", + "website": "https://aigenix.fun/", + "explorer": "https://bscscan.com/token/0x5dda861716cd6b1baa17f7f2db0fbb70d783a5f8", + "id": "0x5DDA861716cD6b1baa17F7F2dB0fbB70D783A5F8", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/aigenixdotfun" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5DDA861716cD6b1baa17F7F2dB0fbB70D783A5F8/logo.png b/blockchains/smartchain/assets/0x5DDA861716cD6b1baa17F7F2dB0fbB70D783A5F8/logo.png new file mode 100644 index 0000000000000..df22e788e6b0c Binary files /dev/null and b/blockchains/smartchain/assets/0x5DDA861716cD6b1baa17F7F2dB0fbB70D783A5F8/logo.png differ diff --git a/blockchains/smartchain/assets/0x5E19266e4a17521d65EFF608517fA0c82CA24813/info.json b/blockchains/smartchain/assets/0x5E19266e4a17521d65EFF608517fA0c82CA24813/info.json index abd7aa55dcf6c..b5acbb76208bf 100644 --- a/blockchains/smartchain/assets/0x5E19266e4a17521d65EFF608517fA0c82CA24813/info.json +++ b/blockchains/smartchain/assets/0x5E19266e4a17521d65EFF608517fA0c82CA24813/info.json @@ -10,8 +10,8 @@ "id": "0x5E19266e4a17521d65EFF608517fA0c82CA24813", "links": [ { - "name": "twitter", - "url": "https://twitter.com/cleanoceantoken" + "name": "x", + "url": "https://x.com/cleanoceantoken" }, { "name": "telegram", @@ -38,4 +38,4 @@ "url": "https://coingecko.com/coins/cleanocean" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5E2689412Fae5c29BD575fbe1d5C1CD1e0622A8f/info.json b/blockchains/smartchain/assets/0x5E2689412Fae5c29BD575fbe1d5C1CD1e0622A8f/info.json index e88d19bf7faad..7c70544fe6db5 100644 --- a/blockchains/smartchain/assets/0x5E2689412Fae5c29BD575fbe1d5C1CD1e0622A8f/info.json +++ b/blockchains/smartchain/assets/0x5E2689412Fae5c29BD575fbe1d5C1CD1e0622A8f/info.json @@ -10,8 +10,8 @@ "id": "0x5E2689412Fae5c29BD575fbe1d5C1CD1e0622A8f", "links": [ { - "name": "twitter", - "url": "https://twitter.com/heroes_td" + "name": "x", + "url": "https://x.com/heroes_td" }, { "name": "discord", diff --git a/blockchains/smartchain/assets/0x5E5C9001Aa81332D405D993FFd1468751D659d1e/info.json b/blockchains/smartchain/assets/0x5E5C9001Aa81332D405D993FFd1468751D659d1e/info.json index 21b04dbe91ea4..f2c32499283e0 100644 --- a/blockchains/smartchain/assets/0x5E5C9001Aa81332D405D993FFd1468751D659d1e/info.json +++ b/blockchains/smartchain/assets/0x5E5C9001Aa81332D405D993FFd1468751D659d1e/info.json @@ -10,8 +10,8 @@ "id": "0x5E5C9001Aa81332D405D993FFd1468751D659d1e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/babydoge_inu" + "name": "x", + "url": "https://x.com/babydoge_inu" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x5E63232993789601CE362e0240a299C1DfCBfbEc/info.json b/blockchains/smartchain/assets/0x5E63232993789601CE362e0240a299C1DfCBfbEc/info.json new file mode 100644 index 0000000000000..19341db452aad --- /dev/null +++ b/blockchains/smartchain/assets/0x5E63232993789601CE362e0240a299C1DfCBfbEc/info.json @@ -0,0 +1,24 @@ +{ + "name": "Newmont (Ondo Tokenized)", + "type": "BEP20", + "symbol": "NEMon", + "decimals": 18, + "description": "NEMon is the Ondo Tokenized version of Newmont, giving tokenholders economic exposure similar to holding NEM and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x5E63232993789601CE362e0240a299C1DfCBfbEc", + "status": "active", + "id": "0x5E63232993789601CE362e0240a299C1DfCBfbEc", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/newmont-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5E63232993789601CE362e0240a299C1DfCBfbEc/logo.png b/blockchains/smartchain/assets/0x5E63232993789601CE362e0240a299C1DfCBfbEc/logo.png new file mode 100644 index 0000000000000..35f0a8ec45456 Binary files /dev/null and b/blockchains/smartchain/assets/0x5E63232993789601CE362e0240a299C1DfCBfbEc/logo.png differ diff --git a/blockchains/smartchain/assets/0x5EcFcced226bA9fCcD8663e7b3263cBd8C84eDB5/info.json b/blockchains/smartchain/assets/0x5EcFcced226bA9fCcD8663e7b3263cBd8C84eDB5/info.json index ac4363f8898c9..f1bd3c11649b1 100644 --- a/blockchains/smartchain/assets/0x5EcFcced226bA9fCcD8663e7b3263cBd8C84eDB5/info.json +++ b/blockchains/smartchain/assets/0x5EcFcced226bA9fCcD8663e7b3263cBd8C84eDB5/info.json @@ -10,8 +10,8 @@ "id": "0x5EcFcced226bA9fCcD8663e7b3263cBd8C84eDB5", "links": [ { - "name": "twitter", - "url": "https://twitter.com/xtremcoin" + "name": "x", + "url": "https://x.com/xtremcoin" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x5F02C4Dcb270999282b850Caa47Af749Ce49FE00/info.json b/blockchains/smartchain/assets/0x5F02C4Dcb270999282b850Caa47Af749Ce49FE00/info.json index bdcc18db4173f..4b8b264402b06 100644 --- a/blockchains/smartchain/assets/0x5F02C4Dcb270999282b850Caa47Af749Ce49FE00/info.json +++ b/blockchains/smartchain/assets/0x5F02C4Dcb270999282b850Caa47Af749Ce49FE00/info.json @@ -22,8 +22,8 @@ "url": "https://t.me/taraplatform" }, { - "name": "twitter", - "url": "https://twitter.com/taraplatform" + "name": "x", + "url": "https://x.com/taraplatform" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0x5F0388EBc2B94FA8E123F404b79cCF5f40b29176/info.json b/blockchains/smartchain/assets/0x5F0388EBc2B94FA8E123F404b79cCF5f40b29176/info.json index 8a8c514547457..afb7bac2fa539 100644 --- a/blockchains/smartchain/assets/0x5F0388EBc2B94FA8E123F404b79cCF5f40b29176/info.json +++ b/blockchains/smartchain/assets/0x5F0388EBc2B94FA8E123F404b79cCF5f40b29176/info.json @@ -11,8 +11,8 @@ "id": "0x5F0388EBc2B94FA8E123F404b79cCF5f40b29176", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VenusProtocol" + "name": "x", + "url": "https://x.com/VenusProtocol" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x5F16ba80a1F620055e35215028E90808c7CC365C/info.json b/blockchains/smartchain/assets/0x5F16ba80a1F620055e35215028E90808c7CC365C/info.json index d59a645c202df..8edc344ccec9b 100644 --- a/blockchains/smartchain/assets/0x5F16ba80a1F620055e35215028E90808c7CC365C/info.json +++ b/blockchains/smartchain/assets/0x5F16ba80a1F620055e35215028E90808c7CC365C/info.json @@ -10,8 +10,8 @@ "id": "0x5F16ba80a1F620055e35215028E90808c7CC365C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Europacoin2021" + "name": "x", + "url": "https://x.com/Europacoin2021" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x5F1b95784a033CD6842cf26eb9A9687F91Ad9e78/info.json b/blockchains/smartchain/assets/0x5F1b95784a033CD6842cf26eb9A9687F91Ad9e78/info.json index 1d1e2f7efd5c8..3c6d79faadafe 100644 --- a/blockchains/smartchain/assets/0x5F1b95784a033CD6842cf26eb9A9687F91Ad9e78/info.json +++ b/blockchains/smartchain/assets/0x5F1b95784a033CD6842cf26eb9A9687F91Ad9e78/info.json @@ -10,8 +10,8 @@ "id": "0x5F1b95784a033CD6842cf26eb9A9687F91Ad9e78", "links": [ { - "name": "twitter", - "url": "https://twitter.com/cakebank_bsc" + "name": "x", + "url": "https://x.com/cakebank_bsc" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x5F7A56e877B9130608Bf8BE962621011182fEfE1/info.json b/blockchains/smartchain/assets/0x5F7A56e877B9130608Bf8BE962621011182fEfE1/info.json new file mode 100644 index 0000000000000..869d0b89db2e1 --- /dev/null +++ b/blockchains/smartchain/assets/0x5F7A56e877B9130608Bf8BE962621011182fEfE1/info.json @@ -0,0 +1,20 @@ +{ + "name": "Qualcomm Tokenized bStocks", + "type": "BEP20", + "symbol": "QCOMB", + "decimals": 18, + "description": "QCOMB is a tokenized bStocks that gives you economic exposure to Qualcomm Tokenized bStocks, and the right to convert to the underlying security on the Binance.com platform subject to applicable laws. Each token is fully backed by the corresponding underlying equity maintained by the Issuer at a US-regulated broker-dealer. You get the price movements, dividends, and the right to convert the token at 1:1 to the underlying share — tradeable 24/7.", + "website": "https://www.bstocks.finance/en/", + "explorer": "https://bscscan.com/token/0x5F7A56e877B9130608Bf8BE962621011182fEfE1", + "status": "active", + "id": "0x5F7A56e877B9130608Bf8BE962621011182fEfE1", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/qualcomm-tokenized-bstocks/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5F7A56e877B9130608Bf8BE962621011182fEfE1/logo.png b/blockchains/smartchain/assets/0x5F7A56e877B9130608Bf8BE962621011182fEfE1/logo.png new file mode 100644 index 0000000000000..5310149babd91 Binary files /dev/null and b/blockchains/smartchain/assets/0x5F7A56e877B9130608Bf8BE962621011182fEfE1/logo.png differ diff --git a/blockchains/smartchain/assets/0x5F84ce30DC3cF7909101C69086c50De191895883/info.json b/blockchains/smartchain/assets/0x5F84ce30DC3cF7909101C69086c50De191895883/info.json index 758b9498369a4..7dd23283c847a 100644 --- a/blockchains/smartchain/assets/0x5F84ce30DC3cF7909101C69086c50De191895883/info.json +++ b/blockchains/smartchain/assets/0x5F84ce30DC3cF7909101C69086c50De191895883/info.json @@ -5,8 +5,8 @@ "explorer": "https://bscscan.com/token/0x5F84ce30DC3cF7909101C69086c50De191895883", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VenusProtocol" + "name": "x", + "url": "https://x.com/VenusProtocol" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0x5F980533B994c93631A639dEdA7892fC49995839/info.json b/blockchains/smartchain/assets/0x5F980533B994c93631A639dEdA7892fC49995839/info.json new file mode 100644 index 0000000000000..fbec703f1224f --- /dev/null +++ b/blockchains/smartchain/assets/0x5F980533B994c93631A639dEdA7892fC49995839/info.json @@ -0,0 +1,36 @@ +{ + "name": "Cosanta", + "type": "BEP20", + "symbol": "COSA", + "decimals": 8, + "website": "https://cosa.is", + "description": "Cosanta is B2B solutions. Our goal to using the Cosanta Masternodes as Software-defined networking (SDN). This technology will provide good quality of service and it will be Hight Availability (HA), flexible and DDoS resistant network.", + "explorer": "https://bscscan.com/token/0x5f980533b994c93631a639deda7892fc49995839", + "status": "active", + "id": "0x5F980533B994c93631A639dEdA7892fC49995839", + "links": [ + { + "name": "x", + "url": "https://x.com/CosantaNet" + }, + { + "name": "telegram", + "url": "https://t.me/cosanta_io" + }, + { + "name": "whitepaper", + "url": "https://cosa.is/en#about" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x5f980533b994c93631a639deda7892fc49995839#code" + }, + { + "name": "github", + "url": "https://github.com/cosanta/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5F980533B994c93631A639dEdA7892fC49995839/logo.png b/blockchains/smartchain/assets/0x5F980533B994c93631A639dEdA7892fC49995839/logo.png new file mode 100644 index 0000000000000..31361c7248c83 Binary files /dev/null and b/blockchains/smartchain/assets/0x5F980533B994c93631A639dEdA7892fC49995839/logo.png differ diff --git a/blockchains/smartchain/assets/0x5FB4184F8B515B1C54d1baC839DCF81276d6b73e/info.json b/blockchains/smartchain/assets/0x5FB4184F8B515B1C54d1baC839DCF81276d6b73e/info.json new file mode 100644 index 0000000000000..b932f1f65e720 --- /dev/null +++ b/blockchains/smartchain/assets/0x5FB4184F8B515B1C54d1baC839DCF81276d6b73e/info.json @@ -0,0 +1,20 @@ +{ + "name": "GE Vernova Inc. xStock", + "type": "BEP20", + "symbol": "GEVx", + "decimals": 18, + "description": "GE Vernova Inc. xStock (GEVx) is a tracker certificate issued as a freely transferable token on selected blockchains. GEVx tracks the price of GE Vernova Inc.. GEVx is designed to give eligible investors regulatory-compliant access to the stock price of GE Vernova Inc., whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x5FB4184F8B515B1C54d1baC839DCF81276d6b73e", + "status": "active", + "id": "0x5FB4184F8B515B1C54d1baC839DCF81276d6b73e", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5FB4184F8B515B1C54d1baC839DCF81276d6b73e/logo.png b/blockchains/smartchain/assets/0x5FB4184F8B515B1C54d1baC839DCF81276d6b73e/logo.png new file mode 100644 index 0000000000000..057cb769eb639 Binary files /dev/null and b/blockchains/smartchain/assets/0x5FB4184F8B515B1C54d1baC839DCF81276d6b73e/logo.png differ diff --git a/blockchains/smartchain/assets/0x5FE7D4aD1794365f6812cf425a99484444417EDD/info.json b/blockchains/smartchain/assets/0x5FE7D4aD1794365f6812cf425a99484444417EDD/info.json new file mode 100644 index 0000000000000..acd81ce11cd5f --- /dev/null +++ b/blockchains/smartchain/assets/0x5FE7D4aD1794365f6812cf425a99484444417EDD/info.json @@ -0,0 +1,25 @@ +{ + "name": "Imperium", + "type": "BEP20", + "symbol": "IMPCOIN", + "decimals": 8, + "website": "https://imp-coin.com", + "description": "IMPERIUM COIN is a cutting-edge digital currency poised to redefine the landscape of finance.", + "explorer": "https://bscscan.com/token/0x5FE7D4aD1794365f6812cf425a99484444417EDD", + "status": "active", + "id": "0x5FE7D4aD1794365f6812cf425a99484444417EDD", + "links": [ + { + "name": "x", + "url": "https://x.com/B_IMPERIUM" + }, + { + "name": "whitepaper", + "url": "https://imperiumrgk-organization.gitbook.io/whitepaper" + } + ], + "tags": [ + "dapp", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5FE7D4aD1794365f6812cf425a99484444417EDD/logo.png b/blockchains/smartchain/assets/0x5FE7D4aD1794365f6812cf425a99484444417EDD/logo.png new file mode 100644 index 0000000000000..837eab98c89b4 Binary files /dev/null and b/blockchains/smartchain/assets/0x5FE7D4aD1794365f6812cf425a99484444417EDD/logo.png differ diff --git a/blockchains/smartchain/assets/0x5a119762B09Ed0bcB3b16075159AE43A62651383/info.json b/blockchains/smartchain/assets/0x5a119762B09Ed0bcB3b16075159AE43A62651383/info.json index 38f605ad891ff..8df6c53e9b8b8 100644 --- a/blockchains/smartchain/assets/0x5a119762B09Ed0bcB3b16075159AE43A62651383/info.json +++ b/blockchains/smartchain/assets/0x5a119762B09Ed0bcB3b16075159AE43A62651383/info.json @@ -18,8 +18,8 @@ "url": "https://t.me/dalienglish" }, { - "name": "twitter", - "url": "https://twitter.com/dalitoken" + "name": "x", + "url": "https://x.com/dalitoken" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x5a20886b575058dd7299785f0Ea9b1172942a3E0/info.json b/blockchains/smartchain/assets/0x5a20886b575058dd7299785f0Ea9b1172942a3E0/info.json new file mode 100644 index 0000000000000..9cb3307ab5d9d --- /dev/null +++ b/blockchains/smartchain/assets/0x5a20886b575058dd7299785f0Ea9b1172942a3E0/info.json @@ -0,0 +1,24 @@ +{ + "name": "Abbott (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "ABTon is the Ondo Tokenized version of Abbott, giving tokenholders economic exposure similar to holding ABT and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x5a20886b575058dd7299785f0ea9b1172942a3e0", + "type": "BEP20", + "symbol": "ABTon", + "decimals": 18, + "status": "active", + "id": "0x5a20886b575058dd7299785f0Ea9b1172942a3E0", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abbott-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5a20886b575058dd7299785f0Ea9b1172942a3E0/logo.png b/blockchains/smartchain/assets/0x5a20886b575058dd7299785f0Ea9b1172942a3E0/logo.png new file mode 100644 index 0000000000000..72a81c9f985d9 Binary files /dev/null and b/blockchains/smartchain/assets/0x5a20886b575058dd7299785f0Ea9b1172942a3E0/logo.png differ diff --git a/blockchains/smartchain/assets/0x5aA5C8F8109C891fBdac0cE874fD9fd48a07f0f9/info.json b/blockchains/smartchain/assets/0x5aA5C8F8109C891fBdac0cE874fD9fd48a07f0f9/info.json new file mode 100644 index 0000000000000..f38b0626f9893 --- /dev/null +++ b/blockchains/smartchain/assets/0x5aA5C8F8109C891fBdac0cE874fD9fd48a07f0f9/info.json @@ -0,0 +1,14 @@ +{ + "name": "Gold Brick", + "type": "BEP20", + "symbol": "GOLD", + "decimals": 18, + "website": "https://four.meme/token/0x5aA5C8F8109C891fBdac0cE874fD9fd48a07f0f9", + "description": "Wear it.", + "explorer": "https://bscscan.com/token/0x5aA5C8F8109C891fBdac0cE874fD9fd48a07f0f9", + "status": "active", + "id": "0x5aA5C8F8109C891fBdac0cE874fD9fd48a07f0f9", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5aA5C8F8109C891fBdac0cE874fD9fd48a07f0f9/logo.png b/blockchains/smartchain/assets/0x5aA5C8F8109C891fBdac0cE874fD9fd48a07f0f9/logo.png new file mode 100644 index 0000000000000..d5158fc8aebe5 Binary files /dev/null and b/blockchains/smartchain/assets/0x5aA5C8F8109C891fBdac0cE874fD9fd48a07f0f9/logo.png differ diff --git a/blockchains/smartchain/assets/0x5acf40056ED51C8bBCD1b125Ef803581Ac89A627/info.json b/blockchains/smartchain/assets/0x5acf40056ED51C8bBCD1b125Ef803581Ac89A627/info.json new file mode 100644 index 0000000000000..2f64c375dcebf --- /dev/null +++ b/blockchains/smartchain/assets/0x5acf40056ED51C8bBCD1b125Ef803581Ac89A627/info.json @@ -0,0 +1,24 @@ +{ + "name": "Futu Holdings (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "FUTUon is the Ondo Tokenized version of Futu Holdings, giving tokenholders economic exposure similar to holding FUTU and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x5acf40056ed51c8bbcd1b125ef803581ac89a627", + "type": "BEP20", + "symbol": "FUTUon", + "decimals": 18, + "status": "active", + "id": "0x5acf40056ED51C8bBCD1b125Ef803581Ac89A627", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/futu-holdings-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5acf40056ED51C8bBCD1b125Ef803581Ac89A627/logo.png b/blockchains/smartchain/assets/0x5acf40056ED51C8bBCD1b125Ef803581Ac89A627/logo.png new file mode 100644 index 0000000000000..d5a152fe94884 Binary files /dev/null and b/blockchains/smartchain/assets/0x5acf40056ED51C8bBCD1b125Ef803581Ac89A627/logo.png differ diff --git a/blockchains/smartchain/assets/0x5afBb1afc4148da1a78bA9Bab9A3B8278b512076/info.json b/blockchains/smartchain/assets/0x5afBb1afc4148da1a78bA9Bab9A3B8278b512076/info.json new file mode 100644 index 0000000000000..5c20ce6ba0ad5 --- /dev/null +++ b/blockchains/smartchain/assets/0x5afBb1afc4148da1a78bA9Bab9A3B8278b512076/info.json @@ -0,0 +1,17 @@ +{ + "name": "BNBGPT", + "symbol": "BNBGPT", + "website": "https://beacons.ai/bnbgpt", + "description": "🤖 BNBGPT is now operational! Advancing AI with fine-tuned insights and seamless system optimization", + "explorer": "https://bscscan.com/token/0x5afbb1afc4148da1a78ba9bab9a3b8278b512076", + "decimals": 18, + "status": "active", + "id": "0x5afBb1afc4148da1a78bA9Bab9A3B8278b512076", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/BNBGPTdotai" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5afBb1afc4148da1a78bA9Bab9A3B8278b512076/logo.png b/blockchains/smartchain/assets/0x5afBb1afc4148da1a78bA9Bab9A3B8278b512076/logo.png new file mode 100644 index 0000000000000..d3f377ca01899 Binary files /dev/null and b/blockchains/smartchain/assets/0x5afBb1afc4148da1a78bA9Bab9A3B8278b512076/logo.png differ diff --git a/blockchains/smartchain/assets/0x5b17b4d5e4009B5C43e3e3d63A5229F794cBA389/info.json b/blockchains/smartchain/assets/0x5b17b4d5e4009B5C43e3e3d63A5229F794cBA389/info.json index b17d97109e32d..ab414b151d857 100644 --- a/blockchains/smartchain/assets/0x5b17b4d5e4009B5C43e3e3d63A5229F794cBA389/info.json +++ b/blockchains/smartchain/assets/0x5b17b4d5e4009B5C43e3e3d63A5229F794cBA389/info.json @@ -15,8 +15,8 @@ "url": "https://app.acryptos.com/contracts/" }, { - "name": "twitter", - "url": "https://twitter.com/acryptosx" + "name": "x", + "url": "https://x.com/acryptosx" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x5b1910eAaD6450E50f816082Aa078C41F10C292f/info.json b/blockchains/smartchain/assets/0x5b1910eAaD6450E50f816082Aa078C41F10C292f/info.json new file mode 100644 index 0000000000000..b2fc0c2b74b33 --- /dev/null +++ b/blockchains/smartchain/assets/0x5b1910eAaD6450E50f816082Aa078C41F10C292f/info.json @@ -0,0 +1,21 @@ +{ + "name": "Tesla Tokenized bStocks", + "type": "BEP20", + "symbol": "TSLAB", + "decimals": 18, + "description": "TSLAB is a tokenized bStocks that gives you economic exposure to Tesla, and the right to convert to the underlying security on the Binance.com platform subject to applicable laws. Each token is fully backed by the corresponding underlying equity maintained by the Issuer at a US-regulated broker-dealer. You get the price movements, dividends, and the right to convert the token at 1:1 to the underlying share — tradeable 24/7.", + "website": "https://www.bstocks.finance/", + "explorer": "https://bscscan.com/token/0x5b1910eAaD6450E50f816082Aa078C41F10C292f", + "status": "active", + "id": "0x5b1910eAaD6450E50f816082Aa078C41F10C292f", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tesla-tokenized-stock-bstocks/" + } + ], + "tags": [ + "RWA", + "erc8056" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5b1910eAaD6450E50f816082Aa078C41F10C292f/logo.png b/blockchains/smartchain/assets/0x5b1910eAaD6450E50f816082Aa078C41F10C292f/logo.png new file mode 100644 index 0000000000000..8bbeea6bea42d Binary files /dev/null and b/blockchains/smartchain/assets/0x5b1910eAaD6450E50f816082Aa078C41F10C292f/logo.png differ diff --git a/blockchains/smartchain/assets/0x5b1BaeC64aF6dC54E6e04349315919129A6d3c23/info.json b/blockchains/smartchain/assets/0x5b1BaeC64aF6dC54E6e04349315919129A6d3c23/info.json index a233fbce0d0e4..89fe90778dc14 100644 --- a/blockchains/smartchain/assets/0x5b1BaeC64aF6dC54E6e04349315919129A6d3c23/info.json +++ b/blockchains/smartchain/assets/0x5b1BaeC64aF6dC54E6e04349315919129A6d3c23/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/DNAxCAT/" }, { - "name": "twitter", - "url": "https://twitter.com/dnaxcat_game" + "name": "x", + "url": "https://x.com/dnaxcat_game" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x5b1f874d0b0C5ee17a495CbB70AB8bf64107A3BD/info.json b/blockchains/smartchain/assets/0x5b1f874d0b0C5ee17a495CbB70AB8bf64107A3BD/info.json index 511496c9c6bae..eb04afab8cf7d 100644 --- a/blockchains/smartchain/assets/0x5b1f874d0b0C5ee17a495CbB70AB8bf64107A3BD/info.json +++ b/blockchains/smartchain/assets/0x5b1f874d0b0C5ee17a495CbB70AB8bf64107A3BD/info.json @@ -18,8 +18,8 @@ "url": "https://coinmarketcap.com/currencies/binaryx/" }, { - "name": "twitter", - "url": "https://twitter.com/binary_x" + "name": "x", + "url": "https://x.com/binary_x" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5b6AfBd5184638c9c49C485c3DE5ED56269ba6Cb/info.json b/blockchains/smartchain/assets/0x5b6AfBd5184638c9c49C485c3DE5ED56269ba6Cb/info.json index 8f2c745b6fed1..fc532a6e9a841 100644 --- a/blockchains/smartchain/assets/0x5b6AfBd5184638c9c49C485c3DE5ED56269ba6Cb/info.json +++ b/blockchains/smartchain/assets/0x5b6AfBd5184638c9c49C485c3DE5ED56269ba6Cb/info.json @@ -34,8 +34,8 @@ "url": "https://discord.com/invite/gBcss4GTGw" }, { - "name": "twitter", - "url": "https://twitter.com/AURofficial_" + "name": "x", + "url": "https://x.com/AURofficial_" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5bcd91C734d665Fe426A5D7156f2aD7d37b76e30/info.json b/blockchains/smartchain/assets/0x5bcd91C734d665Fe426A5D7156f2aD7d37b76e30/info.json index 192214d47fe5d..bdfff47cdf388 100644 --- a/blockchains/smartchain/assets/0x5bcd91C734d665Fe426A5D7156f2aD7d37b76e30/info.json +++ b/blockchains/smartchain/assets/0x5bcd91C734d665Fe426A5D7156f2aD7d37b76e30/info.json @@ -10,8 +10,8 @@ "id": "0x5bcd91C734d665Fe426A5D7156f2aD7d37b76e30", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VICMOVEOfficial" + "name": "x", + "url": "https://x.com/VICMOVEOfficial" }, { "name": "github", @@ -46,4 +46,4 @@ "gamefi", "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5c792740a7d4684E75e5551Fb239f512Fe0d47d0/info.json b/blockchains/smartchain/assets/0x5c792740a7d4684E75e5551Fb239f512Fe0d47d0/info.json index dc34c2457da77..37148fbd72b7e 100644 --- a/blockchains/smartchain/assets/0x5c792740a7d4684E75e5551Fb239f512Fe0d47d0/info.json +++ b/blockchains/smartchain/assets/0x5c792740a7d4684E75e5551Fb239f512Fe0d47d0/info.json @@ -14,8 +14,8 @@ "url": "https://facebook.com/marco.travelll" }, { - "name": "twitter", - "url": "https://twitter.com/Marco___travel" + "name": "x", + "url": "https://x.com/Marco___travel" }, { "name": "discord", diff --git a/blockchains/smartchain/assets/0x5c9476FcD6a4F9a3654139721c949c2233bBbBc8/info.json b/blockchains/smartchain/assets/0x5c9476FcD6a4F9a3654139721c949c2233bBbBc8/info.json index 7c9171114e602..cdc5bdbbac1b0 100644 --- a/blockchains/smartchain/assets/0x5c9476FcD6a4F9a3654139721c949c2233bBbBc8/info.json +++ b/blockchains/smartchain/assets/0x5c9476FcD6a4F9a3654139721c949c2233bBbBc8/info.json @@ -4,8 +4,8 @@ "description": "Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain.", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VenusProtocol" + "name": "x", + "url": "https://x.com/VenusProtocol" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0x5cE12F6d9F2FcAf0b11494a1C39E09eeB16Ca7e8/info.json b/blockchains/smartchain/assets/0x5cE12F6d9F2FcAf0b11494a1C39E09eeB16Ca7e8/info.json new file mode 100644 index 0000000000000..ec3ac86b64604 --- /dev/null +++ b/blockchains/smartchain/assets/0x5cE12F6d9F2FcAf0b11494a1C39E09eeB16Ca7e8/info.json @@ -0,0 +1,48 @@ +{ + "name": "Binstarter", + "type": "BEP20", + "symbol": "BSR", + "decimals": 18, + "website": "https://binstarter.ai", + "description": "Launched in June 2021, Binstarter is a trailblazer in decentralized finance, renowned as the first multi-chain IDO platform with an Extended Insurance Protocol (EIP). Our platform is committed to transparency, fairness, and innovation, offering secure and efficient fundraising solutions for startups. At Binstarter, we aim to revolutionize the DeFi landscape by reducing risks, enhancing user experiences, and empowering startups for successful launches.", + "explorer": "https://bscscan.com/token/0x5ce12f6d9f2fcaf0b11494a1c39e09eeb16ca7e8", + "status": "active", + "id": "0x5cE12F6d9F2FcAf0b11494a1C39E09eeB16Ca7e8", + "links": [ + { + "name": "x", + "url": "https://x.com/binstarterio" + }, + { + "name": "telegram", + "url": "https://t.me/BinStarterOfficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/binstarter/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/binstarter/" + }, + { + "name": "medium", + "url": "https://medium.com/@binstarter" + }, + { + "name": "blog", + "url": "https://blog.binstarter.io" + }, + { + "name": "docs", + "url": "https://docs.binstarter.io/" + }, + { + "name": "whitepaper", + "url": "https://docs.binstarter.io/whitepaper/wp2" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5cE12F6d9F2FcAf0b11494a1C39E09eeB16Ca7e8/logo.png b/blockchains/smartchain/assets/0x5cE12F6d9F2FcAf0b11494a1C39E09eeB16Ca7e8/logo.png new file mode 100644 index 0000000000000..11caa7095460f Binary files /dev/null and b/blockchains/smartchain/assets/0x5cE12F6d9F2FcAf0b11494a1C39E09eeB16Ca7e8/logo.png differ diff --git a/blockchains/smartchain/assets/0x5cedD85E5C34Ef894380fb027FA5D2C944ea28e0/info.json b/blockchains/smartchain/assets/0x5cedD85E5C34Ef894380fb027FA5D2C944ea28e0/info.json index d8986fa9f33e3..1963f8f068c93 100644 --- a/blockchains/smartchain/assets/0x5cedD85E5C34Ef894380fb027FA5D2C944ea28e0/info.json +++ b/blockchains/smartchain/assets/0x5cedD85E5C34Ef894380fb027FA5D2C944ea28e0/info.json @@ -10,8 +10,8 @@ "id": "0x5cedD85E5C34Ef894380fb027FA5D2C944ea28e0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/miniflokishiba" + "name": "x", + "url": "https://x.com/miniflokishiba" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x5d33E26336C445c71F206dd18B64cE11C2eeE3f0/info.json b/blockchains/smartchain/assets/0x5d33E26336C445c71F206dd18B64cE11C2eeE3f0/info.json index ae73ec7becee1..743b6b6d1914f 100644 --- a/blockchains/smartchain/assets/0x5d33E26336C445c71F206dd18B64cE11C2eeE3f0/info.json +++ b/blockchains/smartchain/assets/0x5d33E26336C445c71F206dd18B64cE11C2eeE3f0/info.json @@ -10,8 +10,8 @@ "id": "0x5d33E26336C445c71F206dd18B64cE11C2eeE3f0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/NFTStyleToken" + "name": "x", + "url": "https://x.com/NFTStyleToken" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x5d37ABAFd5498B0E7af753a2E83bd4F0335AA89F/info.json b/blockchains/smartchain/assets/0x5d37ABAFd5498B0E7af753a2E83bd4F0335AA89F/info.json new file mode 100644 index 0000000000000..d6ab4a38d8aa4 --- /dev/null +++ b/blockchains/smartchain/assets/0x5d37ABAFd5498B0E7af753a2E83bd4F0335AA89F/info.json @@ -0,0 +1,17 @@ +{ + "name": "WECOIN", + "website": "http://weset.io/", + "description": "Buy NFT Fractional properties online with technology web3.", + "explorer": "https://bscscan.com/token/0x5d37abafd5498b0e7af753a2e83bd4f0335aa89f", + "type": "BEP20", + "symbol": "WECO", + "decimals": 18, + "status": "active", + "id": "0x5d37ABAFd5498B0E7af753a2E83bd4F0335AA89F", + "links": [ + { + "name": "x", + "url": "https://x.com/WESET_io" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5d37ABAFd5498B0E7af753a2E83bd4F0335AA89F/logo.png b/blockchains/smartchain/assets/0x5d37ABAFd5498B0E7af753a2E83bd4F0335AA89F/logo.png new file mode 100644 index 0000000000000..922d6398d8c3f Binary files /dev/null and b/blockchains/smartchain/assets/0x5d37ABAFd5498B0E7af753a2E83bd4F0335AA89F/logo.png differ diff --git a/blockchains/smartchain/assets/0x5d8dA1417E3565eb02C9ca8cC588bE5D8F65b1c5/info.json b/blockchains/smartchain/assets/0x5d8dA1417E3565eb02C9ca8cC588bE5D8F65b1c5/info.json new file mode 100644 index 0000000000000..7fd50fc9642cf --- /dev/null +++ b/blockchains/smartchain/assets/0x5d8dA1417E3565eb02C9ca8cC588bE5D8F65b1c5/info.json @@ -0,0 +1,15 @@ +{ + "name": "Roblox xStock", + "type": "BEP20", + "symbol": "RBLXx", + "decimals": 18, + "description": "Roblox xStock (RBLXx) is a tracker certificate issued as a freely transferable token on selected blockchains. RBLXx tracks the price of Roblox Corporation.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x5d8dA1417E3565eb02C9ca8cC588bE5D8F65b1c5", + "status": "active", + "id": "0x5d8dA1417E3565eb02C9ca8cC588bE5D8F65b1c5", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5d8dA1417E3565eb02C9ca8cC588bE5D8F65b1c5/logo.png b/blockchains/smartchain/assets/0x5d8dA1417E3565eb02C9ca8cC588bE5D8F65b1c5/logo.png new file mode 100644 index 0000000000000..f2c4f7ad2f375 Binary files /dev/null and b/blockchains/smartchain/assets/0x5d8dA1417E3565eb02C9ca8cC588bE5D8F65b1c5/logo.png differ diff --git a/blockchains/smartchain/assets/0x5d96991648d22935Bdf6c7064B65c3c93F82Aa61/info.json b/blockchains/smartchain/assets/0x5d96991648d22935Bdf6c7064B65c3c93F82Aa61/info.json index 253cb8e048b4e..85ab177014d58 100644 --- a/blockchains/smartchain/assets/0x5d96991648d22935Bdf6c7064B65c3c93F82Aa61/info.json +++ b/blockchains/smartchain/assets/0x5d96991648d22935Bdf6c7064B65c3c93F82Aa61/info.json @@ -10,8 +10,8 @@ "id": "0x5d96991648d22935Bdf6c7064B65c3c93F82Aa61", "links": [ { - "name": "twitter", - "url": "https://twitter.com/herofloki" + "name": "x", + "url": "https://x.com/herofloki" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x5de3939b2F811A61d830E6F52d13B066881412ab/info.json b/blockchains/smartchain/assets/0x5de3939b2F811A61d830E6F52d13B066881412ab/info.json index ebf931d6c047c..f79c9185b018a 100644 --- a/blockchains/smartchain/assets/0x5de3939b2F811A61d830E6F52d13B066881412ab/info.json +++ b/blockchains/smartchain/assets/0x5de3939b2F811A61d830E6F52d13B066881412ab/info.json @@ -1,5 +1,5 @@ { - "name": "Proton", + "name": "XPR Network", "type": "BEP20", "symbol": "XPR", "decimals": 4, @@ -14,8 +14,8 @@ "url": "https://github.com/ProtonProtocol" }, { - "name": "twitter", - "url": "https://twitter.com/protonxpr" + "name": "x", + "url": "https://x.com/protonxpr" }, { "name": "reddit", @@ -42,4 +42,4 @@ "url": "https://blog.protonchain.com/" } ] -} \ No newline at end of file +} diff --git a/blockchains/smartchain/assets/0x5dfb6437489235fe08a8F706Bb261938f4E2D849/info.json b/blockchains/smartchain/assets/0x5dfb6437489235fe08a8F706Bb261938f4E2D849/info.json index ecee855fbacca..cca7a3efe1370 100644 --- a/blockchains/smartchain/assets/0x5dfb6437489235fe08a8F706Bb261938f4E2D849/info.json +++ b/blockchains/smartchain/assets/0x5dfb6437489235fe08a8F706Bb261938f4E2D849/info.json @@ -22,8 +22,8 @@ "url": "https://t.me/shibosu" }, { - "name": "twitter", - "url": "https://twitter.com/ShibosuBSC" + "name": "x", + "url": "https://x.com/ShibosuBSC" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x5e24DB6DE4C21E2C8f9E81bAcfCedFBAC2DeE4aa/info.json b/blockchains/smartchain/assets/0x5e24DB6DE4C21E2C8f9E81bAcfCedFBAC2DeE4aa/info.json new file mode 100644 index 0000000000000..3fb813d08558d --- /dev/null +++ b/blockchains/smartchain/assets/0x5e24DB6DE4C21E2C8f9E81bAcfCedFBAC2DeE4aa/info.json @@ -0,0 +1,24 @@ +{ + "name": "Franklin Income Equity Focus ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "INCEon", + "decimals": 18, + "description": "INCEon is the Ondo Tokenized version of the Franklin Income Equity Focus ETF, giving tokenholders economic exposure similar to holding INCE and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x5e24DB6DE4C21E2C8f9E81bAcfCedFBAC2DeE4aa", + "status": "active", + "id": "0x5e24DB6DE4C21E2C8f9E81bAcfCedFBAC2DeE4aa", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/franklin-income-equity-focus-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5e24DB6DE4C21E2C8f9E81bAcfCedFBAC2DeE4aa/logo.png b/blockchains/smartchain/assets/0x5e24DB6DE4C21E2C8f9E81bAcfCedFBAC2DeE4aa/logo.png new file mode 100644 index 0000000000000..34299b5ba23f3 Binary files /dev/null and b/blockchains/smartchain/assets/0x5e24DB6DE4C21E2C8f9E81bAcfCedFBAC2DeE4aa/logo.png differ diff --git a/blockchains/smartchain/assets/0x5eF5994fA33FF4eB6c82d51ee1DC145c546065Bd/info.json b/blockchains/smartchain/assets/0x5eF5994fA33FF4eB6c82d51ee1DC145c546065Bd/info.json index 65720fb983cbf..cb407df1d4700 100644 --- a/blockchains/smartchain/assets/0x5eF5994fA33FF4eB6c82d51ee1DC145c546065Bd/info.json +++ b/blockchains/smartchain/assets/0x5eF5994fA33FF4eB6c82d51ee1DC145c546065Bd/info.json @@ -10,8 +10,8 @@ "id": "0x5eF5994fA33FF4eB6c82d51ee1DC145c546065Bd", "links": [ { - "name": "twitter", - "url": "https://twitter.com/HyperJumpBSC" + "name": "x", + "url": "https://x.com/HyperJumpBSC" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x5ecC352C4640f1d26BD231dbBd171f40f7d0Eec6/info.json b/blockchains/smartchain/assets/0x5ecC352C4640f1d26BD231dbBd171f40f7d0Eec6/info.json new file mode 100644 index 0000000000000..75558128a1fb7 --- /dev/null +++ b/blockchains/smartchain/assets/0x5ecC352C4640f1d26BD231dbBd171f40f7d0Eec6/info.json @@ -0,0 +1,28 @@ +{ + "name": "Applied Materials (Ondo Tokenized)", + "type": "BEP20", + "symbol": "AMATon", + "decimals": 18, + "description": "AMATon is the Ondo Tokenized version of Applied Materials, giving tokenholders economic exposure similar to holding AMAT and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x5ecC352C4640f1d26BD231dbBd171f40f7d0Eec6", + "status": "active", + "id": "0x5ecC352C4640f1d26BD231dbBd171f40f7d0Eec6", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/applied-materials-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/applied-materials-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5ecC352C4640f1d26BD231dbBd171f40f7d0Eec6/logo.png b/blockchains/smartchain/assets/0x5ecC352C4640f1d26BD231dbBd171f40f7d0Eec6/logo.png new file mode 100644 index 0000000000000..760e219c8191f Binary files /dev/null and b/blockchains/smartchain/assets/0x5ecC352C4640f1d26BD231dbBd171f40f7d0Eec6/logo.png differ diff --git a/blockchains/smartchain/assets/0x5f2d37192576a6804F44722eB828E280D5FB43Dc/info.json b/blockchains/smartchain/assets/0x5f2d37192576a6804F44722eB828E280D5FB43Dc/info.json new file mode 100644 index 0000000000000..cf271af89180a --- /dev/null +++ b/blockchains/smartchain/assets/0x5f2d37192576a6804F44722eB828E280D5FB43Dc/info.json @@ -0,0 +1,24 @@ +{ + "name": "US Brent Oil Fund (Ondo Tokenized)", + "type": "BEP20", + "symbol": "BNOon", + "decimals": 18, + "description": "BNOon is the Ondo Tokenized version of the US Brent Oil Fund, giving tokenholders economic exposure similar to holding BNO and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x5f2d37192576a6804F44722eB828E280D5FB43Dc", + "status": "active", + "id": "0x5f2d37192576a6804F44722eB828E280D5FB43Dc", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/us-brent-oil-fund-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5f2d37192576a6804F44722eB828E280D5FB43Dc/logo.png b/blockchains/smartchain/assets/0x5f2d37192576a6804F44722eB828E280D5FB43Dc/logo.png new file mode 100644 index 0000000000000..12335ab8ef272 Binary files /dev/null and b/blockchains/smartchain/assets/0x5f2d37192576a6804F44722eB828E280D5FB43Dc/logo.png differ diff --git a/blockchains/smartchain/assets/0x5f4Bde007Dc06b867f86EBFE4802e34A1fFEEd63/info.json b/blockchains/smartchain/assets/0x5f4Bde007Dc06b867f86EBFE4802e34A1fFEEd63/info.json index e35832579a11e..dcf0832ebce86 100644 --- a/blockchains/smartchain/assets/0x5f4Bde007Dc06b867f86EBFE4802e34A1fFEEd63/info.json +++ b/blockchains/smartchain/assets/0x5f4Bde007Dc06b867f86EBFE4802e34A1fFEEd63/info.json @@ -10,8 +10,8 @@ "id": "0x5f4Bde007Dc06b867f86EBFE4802e34A1fFEEd63", "links": [ { - "name": "twitter", - "url": "https://twitter.com/highstreetworld " + "name": "x", + "url": "https://x.com/highstreetworld " }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x5f50411CDE3eEC27b0eaC21691b4e500c69a5a2e/info.json b/blockchains/smartchain/assets/0x5f50411CDE3eEC27b0eaC21691b4e500c69a5a2e/info.json index 0555f67bade8c..a7788b994af03 100644 --- a/blockchains/smartchain/assets/0x5f50411CDE3eEC27b0eaC21691b4e500c69a5a2e/info.json +++ b/blockchains/smartchain/assets/0x5f50411CDE3eEC27b0eaC21691b4e500c69a5a2e/info.json @@ -6,8 +6,8 @@ "type": "BEP20", "links": [ { - "name": "twitter", - "url": "https://twitter.com/singularitysgly" + "name": "x", + "url": "https://x.com/singularitysgly" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x5f588EfAf8eB57e3837486e834fC5a4E07768D98/info.json b/blockchains/smartchain/assets/0x5f588EfAf8eB57e3837486e834fC5a4E07768D98/info.json index 4de3cd352eb7d..7924e3f8eb271 100644 --- a/blockchains/smartchain/assets/0x5f588EfAf8eB57e3837486e834fC5a4E07768D98/info.json +++ b/blockchains/smartchain/assets/0x5f588EfAf8eB57e3837486e834fC5a4E07768D98/info.json @@ -1,5 +1,5 @@ { - "name": "Binance Wrapped MVL", + "name": "MVL", "type": "BEP20", "symbol": "bMVL", "decimals": 18, @@ -10,8 +10,8 @@ "id": "0x5f588EfAf8eB57e3837486e834fC5a4E07768D98", "links": [ { - "name": "twitter", - "url": "https://twitter.com/mvlchain" + "name": "x", + "url": "https://x.com/mvlchain" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x5fA699c0c1319b8D86489AF77dFDe4Fa97B47DF8/info.json b/blockchains/smartchain/assets/0x5fA699c0c1319b8D86489AF77dFDe4Fa97B47DF8/info.json new file mode 100644 index 0000000000000..f13c6e3605382 --- /dev/null +++ b/blockchains/smartchain/assets/0x5fA699c0c1319b8D86489AF77dFDe4Fa97B47DF8/info.json @@ -0,0 +1,28 @@ +{ + "name": "BitGo Holdings (Ondo Tokenized)", + "type": "BEP20", + "symbol": "BTGOon", + "decimals": 18, + "description": "BTGOon is the Ondo Tokenized version of BitGo Holdings, giving tokenholders economic exposure similar to holding BTGO and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x5fA699c0c1319b8D86489AF77dFDe4Fa97B47DF8", + "status": "active", + "id": "0x5fA699c0c1319b8D86489AF77dFDe4Fa97B47DF8", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bitgo-holdings-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bitgo-holdings-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5fA699c0c1319b8D86489AF77dFDe4Fa97B47DF8/logo.png b/blockchains/smartchain/assets/0x5fA699c0c1319b8D86489AF77dFDe4Fa97B47DF8/logo.png new file mode 100644 index 0000000000000..ea30060042871 Binary files /dev/null and b/blockchains/smartchain/assets/0x5fA699c0c1319b8D86489AF77dFDe4Fa97B47DF8/logo.png differ diff --git a/blockchains/smartchain/assets/0x5fE14597f02d58bE66E399f7389E2eD66F5c4444/info.json b/blockchains/smartchain/assets/0x5fE14597f02d58bE66E399f7389E2eD66F5c4444/info.json new file mode 100644 index 0000000000000..4009e81c91ad2 --- /dev/null +++ b/blockchains/smartchain/assets/0x5fE14597f02d58bE66E399f7389E2eD66F5c4444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE United Stables", + "type": "BEP20", + "symbol": "FAKE U", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x5fE14597f02d58bE66E399f7389E2eD66F5c4444", + "explorer": "https://bscscan.com/token/0x5fE14597f02d58bE66E399f7389E2eD66F5c4444", + "status": "spam", + "id": "0x5fE14597f02d58bE66E399f7389E2eD66F5c4444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5fE80d2CD054645b9419657d3d10d26391780A7B/info.json b/blockchains/smartchain/assets/0x5fE80d2CD054645b9419657d3d10d26391780A7B/info.json index f67c08b46a3fe..b3d24c2a5e3c3 100644 --- a/blockchains/smartchain/assets/0x5fE80d2CD054645b9419657d3d10d26391780A7B/info.json +++ b/blockchains/smartchain/assets/0x5fE80d2CD054645b9419657d3d10d26391780A7B/info.json @@ -10,8 +10,8 @@ "id": "0x5fE80d2CD054645b9419657d3d10d26391780A7B", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MonteCarloDEX" + "name": "x", + "url": "https://x.com/MonteCarloDEX" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x5fEAD99998788AC1BCA768796483d899F1Aef4c4/info.json b/blockchains/smartchain/assets/0x5fEAD99998788AC1BCA768796483d899F1Aef4c4/info.json index 0111b04c08e79..fa290fdadb2d0 100644 --- a/blockchains/smartchain/assets/0x5fEAD99998788AC1BCA768796483d899F1Aef4c4/info.json +++ b/blockchains/smartchain/assets/0x5fEAD99998788AC1BCA768796483d899F1Aef4c4/info.json @@ -10,8 +10,8 @@ "id": "0x5fEAD99998788AC1BCA768796483d899F1Aef4c4", "links": [ { - "name": "twitter", - "url": "https://twitter.com/JINDOFARM0" + "name": "x", + "url": "https://x.com/JINDOFARM0" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x5fdfaFd107Fc267bD6d6B1C08fcafb8d31394ba1/info.json b/blockchains/smartchain/assets/0x5fdfaFd107Fc267bD6d6B1C08fcafb8d31394ba1/info.json new file mode 100644 index 0000000000000..896aebb3cc03b --- /dev/null +++ b/blockchains/smartchain/assets/0x5fdfaFd107Fc267bD6d6B1C08fcafb8d31394ba1/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bink AI", + "type": "BEP20", + "symbol": "BINK", + "decimals": 18, + "description": "First AI Agent On BNB Chain. Analyze Twitter activity, query real-time crypto project analytics, blockchain transactions on X, generate websites and create 3D models.", + "website": "https://bink.ai/", + "explorer": "https://bscscan.com/token/0x5fdfaFd107Fc267bD6d6B1C08fcafb8d31394ba1", + "id": "0x5fdfaFd107Fc267bD6d6B1C08fcafb8d31394ba1", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/bink_ai" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5fdfaFd107Fc267bD6d6B1C08fcafb8d31394ba1/logo.png b/blockchains/smartchain/assets/0x5fdfaFd107Fc267bD6d6B1C08fcafb8d31394ba1/logo.png new file mode 100644 index 0000000000000..cacfb0446aae4 Binary files /dev/null and b/blockchains/smartchain/assets/0x5fdfaFd107Fc267bD6d6B1C08fcafb8d31394ba1/logo.png differ diff --git a/blockchains/smartchain/assets/0x60322971a672B81BccE5947706D22c19dAeCf6Fb/info.json b/blockchains/smartchain/assets/0x60322971a672B81BccE5947706D22c19dAeCf6Fb/info.json index 681b8cff06aee..acf13edd62067 100644 --- a/blockchains/smartchain/assets/0x60322971a672B81BccE5947706D22c19dAeCf6Fb/info.json +++ b/blockchains/smartchain/assets/0x60322971a672B81BccE5947706D22c19dAeCf6Fb/info.json @@ -10,8 +10,8 @@ "id": "0x60322971a672B81BccE5947706D22c19dAeCf6Fb", "links": [ { - "name": "twitter", - "url": "https://twitter.com/0xMarsDAO" + "name": "x", + "url": "https://x.com/0xMarsDAO" }, { "name": "github", @@ -33,4 +33,4 @@ "tags": [ "deflationary" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x603c7f932ED1fc6575303D8Fb018fDCBb0f39a95/info.json b/blockchains/smartchain/assets/0x603c7f932ED1fc6575303D8Fb018fDCBb0f39a95/info.json index a8bd3da6e641e..b95f7239dcad1 100644 --- a/blockchains/smartchain/assets/0x603c7f932ED1fc6575303D8Fb018fDCBb0f39a95/info.json +++ b/blockchains/smartchain/assets/0x603c7f932ED1fc6575303D8Fb018fDCBb0f39a95/info.json @@ -18,8 +18,8 @@ "url": "https://apeswap.gitbook.io/apeswap-finance/" }, { - "name": "twitter", - "url": "https://twitter.com/ape_swap" + "name": "x", + "url": "https://x.com/ape_swap" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x6067490d05F3cF2fdFFC0e353b1f5Fd6E5CCDF70/info.json b/blockchains/smartchain/assets/0x6067490d05F3cF2fdFFC0e353b1f5Fd6E5CCDF70/info.json new file mode 100644 index 0000000000000..b0af21e1d46b9 --- /dev/null +++ b/blockchains/smartchain/assets/0x6067490d05F3cF2fdFFC0e353b1f5Fd6E5CCDF70/info.json @@ -0,0 +1,28 @@ +{ + "name": "Marketmaking.PRO", + "website": "https://marketmaking.pro/", + "description": "Working since 2017 and providing Market Making (MM) services for CEXes and DEXes", + "explorer": "https://bscscan.com/token/0x6067490d05f3cf2fdffc0e353b1f5fd6e5ccdf70", + "type": "BEP20", + "symbol": "MMPRO", + "decimals": 18, + "status": "active", + "id": "0x6067490d05F3cF2fdFFC0e353b1f5Fd6E5CCDF70", + "tags": [ + "defi" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/market_making_pro_eng" + }, + { + "name": "telegram_news", + "url": "https://t.me/marketmakingpro" + }, + { + "name": "medium", + "url": "https://marketmaking.medium.com" + } + ] +} diff --git a/blockchains/smartchain/assets/0x6067490d05F3cF2fdFFC0e353b1f5Fd6E5CCDF70/logo.png b/blockchains/smartchain/assets/0x6067490d05F3cF2fdFFC0e353b1f5Fd6E5CCDF70/logo.png new file mode 100644 index 0000000000000..04eeaf4e2202a Binary files /dev/null and b/blockchains/smartchain/assets/0x6067490d05F3cF2fdFFC0e353b1f5Fd6E5CCDF70/logo.png differ diff --git a/blockchains/smartchain/assets/0x608593d17A2decBbc4399e4185bE4922F97eD32E/info.json b/blockchains/smartchain/assets/0x608593d17A2decBbc4399e4185bE4922F97eD32E/info.json new file mode 100644 index 0000000000000..1e9b013c52671 --- /dev/null +++ b/blockchains/smartchain/assets/0x608593d17A2decBbc4399e4185bE4922F97eD32E/info.json @@ -0,0 +1,24 @@ +{ + "name": "Ondo U.S. Dollar Yield", + "type": "BEP20", + "symbol": "USDY", + "decimals": 18, + "website": "https://ondo.finance/", + "description": "Ondo US Dollar Yield (USDY) is a decentralized lending protocol designed to honor transfer restrictions from permissioned tokens, thereby expanding the universe of assets it can support. This unique approach allows it to cater to a broader range of financial instruments, making it a versatile player in the blockchain ecosystem.", + "explorer": "https://bscscan.com/token/0x608593d17A2decBbc4399e4185bE4922F97eD32E", + "status": "active", + "id": "0x608593d17A2decBbc4399e4185bE4922F97eD32E", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ondo-us-dollar-yield/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x608593d17A2decBbc4399e4185bE4922F97eD32E/logo.png b/blockchains/smartchain/assets/0x608593d17A2decBbc4399e4185bE4922F97eD32E/logo.png new file mode 100644 index 0000000000000..7735a40cb83ba Binary files /dev/null and b/blockchains/smartchain/assets/0x608593d17A2decBbc4399e4185bE4922F97eD32E/logo.png differ diff --git a/blockchains/smartchain/assets/0x609D183Fb91a0fce59550b62ab7d2c931b0Bb1BE/info.json b/blockchains/smartchain/assets/0x609D183Fb91a0fce59550b62ab7d2c931b0Bb1BE/info.json index 344ef8ff982c3..55e132ba6b12c 100644 --- a/blockchains/smartchain/assets/0x609D183Fb91a0fce59550b62ab7d2c931b0Bb1BE/info.json +++ b/blockchains/smartchain/assets/0x609D183Fb91a0fce59550b62ab7d2c931b0Bb1BE/info.json @@ -10,8 +10,8 @@ "id": "0x609D183Fb91a0fce59550b62ab7d2c931b0Bb1BE", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PolkaMonsterBSC" + "name": "x", + "url": "https://x.com/PolkaMonsterBSC" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x60Ae7D760a1C7B528C0384Bc945fadF1438F47A5/info.json b/blockchains/smartchain/assets/0x60Ae7D760a1C7B528C0384Bc945fadF1438F47A5/info.json new file mode 100644 index 0000000000000..aeff9f61720f5 --- /dev/null +++ b/blockchains/smartchain/assets/0x60Ae7D760a1C7B528C0384Bc945fadF1438F47A5/info.json @@ -0,0 +1,20 @@ +{ + "name": "Bitgo xStock", + "type": "BEP20", + "symbol": "BTGOx", + "decimals": 18, + "description": "Bitgo xStock (BTGOx) is a tracker certificate issued as a freely transferable token on selected blockchains. BTGOx tracks the price of Bitgo Holdings Inc. BTGOx is designed to give eligible investors regulatory-compliant access to the stock price of Bitgo Holdings Inc., whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x60Ae7D760a1C7B528C0384Bc945fadF1438F47A5", + "status": "active", + "id": "0x60Ae7D760a1C7B528C0384Bc945fadF1438F47A5", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x60Ae7D760a1C7B528C0384Bc945fadF1438F47A5/logo.png b/blockchains/smartchain/assets/0x60Ae7D760a1C7B528C0384Bc945fadF1438F47A5/logo.png new file mode 100644 index 0000000000000..ccbace2151864 Binary files /dev/null and b/blockchains/smartchain/assets/0x60Ae7D760a1C7B528C0384Bc945fadF1438F47A5/logo.png differ diff --git a/blockchains/smartchain/assets/0x60a8f8e05200fF73aFde9E2caE819bF1605f0BdD/info.json b/blockchains/smartchain/assets/0x60a8f8e05200fF73aFde9E2caE819bF1605f0BdD/info.json new file mode 100644 index 0000000000000..ab6c2d6461e86 --- /dev/null +++ b/blockchains/smartchain/assets/0x60a8f8e05200fF73aFde9E2caE819bF1605f0BdD/info.json @@ -0,0 +1,24 @@ +{ + "name": "MercadoLibre (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "MELIon is the Ondo Tokenized version of MercadoLibre, giving tokenholders economic exposure similar to holding MELI and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x60a8f8e05200ff73afde9e2cae819bf1605f0bdd", + "type": "BEP20", + "symbol": "MELIon", + "decimals": 18, + "status": "active", + "id": "0x60a8f8e05200fF73aFde9E2caE819bF1605f0BdD", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mercadolibre-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x60a8f8e05200fF73aFde9E2caE819bF1605f0BdD/logo.png b/blockchains/smartchain/assets/0x60a8f8e05200fF73aFde9E2caE819bF1605f0BdD/logo.png new file mode 100644 index 0000000000000..eab236a64a1fe Binary files /dev/null and b/blockchains/smartchain/assets/0x60a8f8e05200fF73aFde9E2caE819bF1605f0BdD/logo.png differ diff --git a/blockchains/smartchain/assets/0x60b1b7eeD75a787ab7f3e92dbF5E8Af382Bb1a6b/info.json b/blockchains/smartchain/assets/0x60b1b7eeD75a787ab7f3e92dbF5E8Af382Bb1a6b/info.json new file mode 100644 index 0000000000000..5cee64e56e2fb --- /dev/null +++ b/blockchains/smartchain/assets/0x60b1b7eeD75a787ab7f3e92dbF5E8Af382Bb1a6b/info.json @@ -0,0 +1,26 @@ +{ + "name": "BabyBroccoli", + "type": "BEP20", + "symbol": "BABYBROCCOLI", + "decimals": 18, + "description": "BabyBroccoli ($BABYBROCCOLI) is a crypto memecoin that has emerged as the playful, 'baby' version of the $Broccoli token, inspired by Changpeng Zhao (CZ)'s dog named Broccoli, which he officially announced on X. Positioned as a community-driven project on the BNB Chain, $BABYBROCCOLI rewards its holders with official $Broccoli tokens.", + "website": "https://babybroccoli.live/", + "explorer": "https://bscscan.com/token/0x60b1b7eeD75a787ab7f3e92dbF5E8Af382Bb1a6b", + "id": "0x60b1b7eeD75a787ab7f3e92dbF5E8Af382Bb1a6b", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Babyczbbroccoli" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/babybroccoli/" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x60b1b7eeD75a787ab7f3e92dbF5E8Af382Bb1a6b/logo.png b/blockchains/smartchain/assets/0x60b1b7eeD75a787ab7f3e92dbF5E8Af382Bb1a6b/logo.png new file mode 100644 index 0000000000000..e4f12be7e031d Binary files /dev/null and b/blockchains/smartchain/assets/0x60b1b7eeD75a787ab7f3e92dbF5E8Af382Bb1a6b/logo.png differ diff --git a/blockchains/smartchain/assets/0x60d66a5152612F7D550796910d022Cb2c77B09de/info.json b/blockchains/smartchain/assets/0x60d66a5152612F7D550796910d022Cb2c77B09de/info.json index c647e01e0ad47..996a9d7723985 100644 --- a/blockchains/smartchain/assets/0x60d66a5152612F7D550796910d022Cb2c77B09de/info.json +++ b/blockchains/smartchain/assets/0x60d66a5152612F7D550796910d022Cb2c77B09de/info.json @@ -14,8 +14,8 @@ "url": "https://uselesscrypto.com/" }, { - "name": "twitter", - "url": "https://twitter.com/uselesscrypto" + "name": "x", + "url": "https://x.com/uselesscrypto" }, { "name": "facebook", @@ -33,4 +33,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x60f16960A03040aE9095F64Be429cB5508604444/info.json b/blockchains/smartchain/assets/0x60f16960A03040aE9095F64Be429cB5508604444/info.json new file mode 100644 index 0000000000000..e23e02113fc19 --- /dev/null +++ b/blockchains/smartchain/assets/0x60f16960A03040aE9095F64Be429cB5508604444/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT Formula 1", + "website": "https://bscscan.com/token/0x60f16960A03040aE9095F64Be429cB5508604444", + "description": "HONEYPOT Champagne", + "explorer": "https://bscscan.com/token/0x60f16960A03040aE9095F64Be429cB5508604444", + "type": "BEP20", + "symbol": "HONEYPOT Champagne", + "decimals": 18, + "status": "spam", + "id": "0x60f16960A03040aE9095F64Be429cB5508604444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6120ba0B3538E40aA7aAc32558E5dd0737B7ac90/info.json b/blockchains/smartchain/assets/0x6120ba0B3538E40aA7aAc32558E5dd0737B7ac90/info.json new file mode 100644 index 0000000000000..9aff26c276e18 --- /dev/null +++ b/blockchains/smartchain/assets/0x6120ba0B3538E40aA7aAc32558E5dd0737B7ac90/info.json @@ -0,0 +1,52 @@ +{ + "name": "Jesus Coin", + "type": "BEP20", + "symbol": "JESUS", + "decimals": 9, + "website": "https://jesuscoin.info", + "description": "Jesus Christ forgives your sins, redeems your bad trades, and blesses you with heavenly riches. The world is full of rug pulls and honey pots but Jesus is here to set you free.", + "explorer": "https://bscscan.com/token/0x6120ba0b3538e40aa7aac32558e5dd0737b7ac90", + "status": "active", + "id": "0x6120ba0B3538E40aA7aAc32558E5dd0737B7ac90", + "links": [ + { + "name": "x", + "url": "https://x.com/jesuscoin_bsc" + }, + { + "name": "github", + "url": "https://github.com/jesuscoinbsc" + }, + { + "name": "telegram", + "url": "https://t.me/jesuscoin_main" + }, + { + "name": "docs", + "url": "https://doc.jesuscoin.info/" + }, + { + "name": "whitepaper", + "url": "https://doc.jesuscoin.info/" + }, + { + "name": "medium", + "url": "https://medium.com/@jesuscoin_bsc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jesus-coin-bsc/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/jesuscoin" + }, + { + "name": "source_code", + "url": "https://bscscan.com/token/0x6120ba0b3538e40aa7aac32558e5dd0737b7ac90#code" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6120ba0B3538E40aA7aAc32558E5dd0737B7ac90/logo.png b/blockchains/smartchain/assets/0x6120ba0B3538E40aA7aAc32558E5dd0737B7ac90/logo.png new file mode 100644 index 0000000000000..89892d0298aa8 Binary files /dev/null and b/blockchains/smartchain/assets/0x6120ba0B3538E40aA7aAc32558E5dd0737B7ac90/logo.png differ diff --git a/blockchains/smartchain/assets/0x6160a6BA050A5B5A63E5b64C4eb03961582dbB3F/info.json b/blockchains/smartchain/assets/0x6160a6BA050A5B5A63E5b64C4eb03961582dbB3F/info.json new file mode 100644 index 0000000000000..9dfc8b9a91b0f --- /dev/null +++ b/blockchains/smartchain/assets/0x6160a6BA050A5B5A63E5b64C4eb03961582dbB3F/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDT", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "website": "https://bscscan.com/address/0x6160a6ba050a5b5a63e5b64c4eb03961582dbb3f", + "description": "FAKE USDT", + "explorer": "https://bscscan.com/token/0x6160a6BA050A5B5A63E5b64C4eb03961582dbB3F", + "status": "spam", + "id": "0x6160a6BA050A5B5A63E5b64C4eb03961582dbB3F" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6169b3b23e57dE79a6146A2170980cEb1F83b9e0/info.json b/blockchains/smartchain/assets/0x6169b3b23e57dE79a6146A2170980cEb1F83b9e0/info.json index 889eca196ae6d..a816337289437 100644 --- a/blockchains/smartchain/assets/0x6169b3b23e57dE79a6146A2170980cEb1F83b9e0/info.json +++ b/blockchains/smartchain/assets/0x6169b3b23e57dE79a6146A2170980cEb1F83b9e0/info.json @@ -18,8 +18,8 @@ "url": "https://facebook.com/vetterplatform" }, { - "name": "twitter", - "url": "https://twitter.com/vetterplatform" + "name": "x", + "url": "https://x.com/vetterplatform" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x617724974218A18769020A70162165A539c07E8a/info.json b/blockchains/smartchain/assets/0x617724974218A18769020A70162165A539c07E8a/info.json index 047b999b5ab07..3d36add3b13e5 100644 --- a/blockchains/smartchain/assets/0x617724974218A18769020A70162165A539c07E8a/info.json +++ b/blockchains/smartchain/assets/0x617724974218A18769020A70162165A539c07E8a/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/olive-cash" }, { - "name": "twitter", - "url": "https://twitter.com/OliveCashBsc" + "name": "x", + "url": "https://x.com/OliveCashBsc" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x61B83eDF87Ea662C695439A807c386455c9E797C/info.json b/blockchains/smartchain/assets/0x61B83eDF87Ea662C695439A807c386455c9E797C/info.json index d50cafbe9f7f1..bea7d0858670f 100644 --- a/blockchains/smartchain/assets/0x61B83eDF87Ea662C695439A807c386455c9E797C/info.json +++ b/blockchains/smartchain/assets/0x61B83eDF87Ea662C695439A807c386455c9E797C/info.json @@ -26,8 +26,8 @@ "url": "https://t.me/lgnorefud" }, { - "name": "twitter", - "url": "https://twitter.com/ignore_fud" + "name": "x", + "url": "https://x.com/ignore_fud" }, { "name": "youtube", diff --git a/blockchains/smartchain/assets/0x61C911B6D1B46DcaDbB61bFa7100290a6faaD53D/info.json b/blockchains/smartchain/assets/0x61C911B6D1B46DcaDbB61bFa7100290a6faaD53D/info.json index ab6a1cbc2767e..28b657b8b391d 100644 --- a/blockchains/smartchain/assets/0x61C911B6D1B46DcaDbB61bFa7100290a6faaD53D/info.json +++ b/blockchains/smartchain/assets/0x61C911B6D1B46DcaDbB61bFa7100290a6faaD53D/info.json @@ -14,8 +14,8 @@ "url": "https://riseupofficial.com/wp-content/uploads/2021/07/RiseUp_Litepaper_v4.pdf" }, { - "name": "twitter", - "url": "https://twitter.com/RISEUP_WE_STAND" + "name": "x", + "url": "https://x.com/RISEUP_WE_STAND" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/info.json b/blockchains/smartchain/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/info.json new file mode 100644 index 0000000000000..a6bf2e55e7e6e --- /dev/null +++ b/blockchains/smartchain/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/info.json @@ -0,0 +1,24 @@ +{ + "name": "Chilean Peso", + "website": "https://www.ripio.com/es/criptos/stablecoins-locales", + "description": "wCLP is a fully collateralized stablecoin pegged 1:1 to the Chilean Peso (CLP). Issued and governed by a Ripio subsidiary, it brings CLP on-chain so users can transact, save, and build on decentralized networks in their local currency.", + "explorer": "https://bscscan.com/token/0x61D450a098b6a7f69fC4b98CE68198fe59768651", + "type": "BEP20", + "symbol": "wCLP", + "decimals": 18, + "status": "active", + "id": "0x61D450a098b6a7f69fC4b98CE68198fe59768651", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/RipioApp" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/chilean-peso" + } + ] +} diff --git a/blockchains/smartchain/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/logo.png b/blockchains/smartchain/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/logo.png new file mode 100644 index 0000000000000..08570c22038ef Binary files /dev/null and b/blockchains/smartchain/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/logo.png differ diff --git a/blockchains/smartchain/assets/0x61a97C4914C43f8BD98D01a99418E826C80AfAdC/info.json b/blockchains/smartchain/assets/0x61a97C4914C43f8BD98D01a99418E826C80AfAdC/info.json index 599f9d108de77..d7f814f6c272d 100644 --- a/blockchains/smartchain/assets/0x61a97C4914C43f8BD98D01a99418E826C80AfAdC/info.json +++ b/blockchains/smartchain/assets/0x61a97C4914C43f8BD98D01a99418E826C80AfAdC/info.json @@ -10,8 +10,8 @@ "id": "0x61a97C4914C43f8BD98D01a99418E826C80AfAdC", "links": [ { - "name": "twitter", - "url": "https://twitter.com/aeron_aero" + "name": "x", + "url": "https://x.com/aeron_aero" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x61eDcFe8Dd6bA3c891CB9bEc2dc7657B3B422E93/info.json b/blockchains/smartchain/assets/0x61eDcFe8Dd6bA3c891CB9bEc2dc7657B3B422E93/info.json index 4698f6c3186d8..98c37d3abfb48 100644 --- a/blockchains/smartchain/assets/0x61eDcFe8Dd6bA3c891CB9bEc2dc7657B3B422E93/info.json +++ b/blockchains/smartchain/assets/0x61eDcFe8Dd6bA3c891CB9bEc2dc7657B3B422E93/info.json @@ -11,8 +11,8 @@ "id": "0x61eDcFe8Dd6bA3c891CB9bEc2dc7657B3B422E93", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VenusProtocol" + "name": "x", + "url": "https://x.com/VenusProtocol" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x620477782cEa4C4171165396F8014EdEF83a13da/info.json b/blockchains/smartchain/assets/0x620477782cEa4C4171165396F8014EdEF83a13da/info.json new file mode 100644 index 0000000000000..6fec0083a9215 --- /dev/null +++ b/blockchains/smartchain/assets/0x620477782cEa4C4171165396F8014EdEF83a13da/info.json @@ -0,0 +1,28 @@ +{ + "name": "Figure Technology Solutions (Ondo Tokenized)", + "type": "BEP20", + "symbol": "FIGRon", + "decimals": 18, + "description": "FIGRon is the Ondo Tokenized version of Figure Technology Solutions, giving tokenholders economic exposure similar to holding FIGR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x620477782cEa4C4171165396F8014EdEF83a13da", + "status": "active", + "id": "0x620477782cEa4C4171165396F8014EdEF83a13da", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/figure-technology-solutions-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/figure-technology-solutions-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x620477782cEa4C4171165396F8014EdEF83a13da/logo.png b/blockchains/smartchain/assets/0x620477782cEa4C4171165396F8014EdEF83a13da/logo.png new file mode 100644 index 0000000000000..f54067fe22fa8 Binary files /dev/null and b/blockchains/smartchain/assets/0x620477782cEa4C4171165396F8014EdEF83a13da/logo.png differ diff --git a/blockchains/smartchain/assets/0x62475fB57669EfEBd411D9C05109870Bf1BBfdEE/info.json b/blockchains/smartchain/assets/0x62475fB57669EfEBd411D9C05109870Bf1BBfdEE/info.json new file mode 100644 index 0000000000000..0d6f668670375 --- /dev/null +++ b/blockchains/smartchain/assets/0x62475fB57669EfEBd411D9C05109870Bf1BBfdEE/info.json @@ -0,0 +1,19 @@ +{ + "name": "PI Network", + "type": "ERC20", + "symbol": "PI", + "decimals": 18, + "description": "PI Network is a decentralized financial payment network that rebuilds the traditional payment stack on the blockchain. It utilizes a basket of fiat-pegged stablecoins, algorithmically stabilized by its reserve currency PI, to facilitate programmable payments and open financial infrastructure development.", + "website": "https://thebittimes.com/token-PI-BSC-0x62475fB57669EfEBd411D9C05109870Bf1BBfdEE.html#google_vignette", + "explorer": "https://bscscan.com/token/0x62475fb57669efebd411d9c05109870bf1bbfdee", + "id": "0x62475fB57669EfEBd411D9C05109870Bf1BBfdEE", + "status": "active", + "links": [ + + + ], + "tags": [ + "stablecoin" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x62475fB57669EfEBd411D9C05109870Bf1BBfdEE/logo.png b/blockchains/smartchain/assets/0x62475fB57669EfEBd411D9C05109870Bf1BBfdEE/logo.png new file mode 100644 index 0000000000000..04830ac956e30 Binary files /dev/null and b/blockchains/smartchain/assets/0x62475fB57669EfEBd411D9C05109870Bf1BBfdEE/logo.png differ diff --git a/blockchains/smartchain/assets/0x6266a18F1605DA94e8317232ffa634C74646ac40/info.json b/blockchains/smartchain/assets/0x6266a18F1605DA94e8317232ffa634C74646ac40/info.json index 6fbd1cd472d39..55d7b62e6bf27 100644 --- a/blockchains/smartchain/assets/0x6266a18F1605DA94e8317232ffa634C74646ac40/info.json +++ b/blockchains/smartchain/assets/0x6266a18F1605DA94e8317232ffa634C74646ac40/info.json @@ -10,8 +10,8 @@ "id": "0x6266a18F1605DA94e8317232ffa634C74646ac40", "links": [ { - "name": "twitter", - "url": "https://twitter.com/metfxmetaverse" + "name": "x", + "url": "https://x.com/metfxmetaverse" }, { "name": "telegram", @@ -29,4 +29,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x62823659d09F9F9D2222058878f89437425eB261/info.json b/blockchains/smartchain/assets/0x62823659d09F9F9D2222058878f89437425eB261/info.json index 60181ec9826d4..df23bde27bb3f 100644 --- a/blockchains/smartchain/assets/0x62823659d09F9F9D2222058878f89437425eB261/info.json +++ b/blockchains/smartchain/assets/0x62823659d09F9F9D2222058878f89437425eB261/info.json @@ -10,8 +10,8 @@ "id": "0x62823659d09F9F9D2222058878f89437425eB261", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ErthaGame" + "name": "x", + "url": "https://x.com/ErthaGame" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x6289812163af9421E566B3d74774074fAc2A0441/info.json b/blockchains/smartchain/assets/0x6289812163af9421E566B3d74774074fAc2A0441/info.json index 22de374291493..fccb2143a06d3 100644 --- a/blockchains/smartchain/assets/0x6289812163af9421E566B3d74774074fAc2A0441/info.json +++ b/blockchains/smartchain/assets/0x6289812163af9421E566B3d74774074fAc2A0441/info.json @@ -10,8 +10,8 @@ "id": "0x6289812163af9421E566B3d74774074fAc2A0441", "links": [ { - "name": "twitter", - "url": "https://twitter.com/CrusaderBSC" + "name": "x", + "url": "https://x.com/CrusaderBSC" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x628B33b00355598fFD4dD484B788fe7757428888/info.json b/blockchains/smartchain/assets/0x628B33b00355598fFD4dD484B788fe7757428888/info.json new file mode 100644 index 0000000000000..c4a02c4563f3d --- /dev/null +++ b/blockchains/smartchain/assets/0x628B33b00355598fFD4dD484B788fe7757428888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether USD", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x628B33b00355598fFD4dD484B788fe7757428888", + "explorer": "https://bscscan.com/token/0x628B33b00355598fFD4dD484B788fe7757428888", + "status": "spam", + "id": "0x628B33b00355598fFD4dD484B788fe7757428888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x628F59fbbd955fB2833be88987a7Cb829da68888/info.json b/blockchains/smartchain/assets/0x628F59fbbd955fB2833be88987a7Cb829da68888/info.json new file mode 100644 index 0000000000000..a65a1694e75df --- /dev/null +++ b/blockchains/smartchain/assets/0x628F59fbbd955fB2833be88987a7Cb829da68888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDC", + "type": "BEP20", + "symbol": "FAKE USDC", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x628F59fbbd955fB2833be88987a7Cb829da68888", + "explorer": "https://bscscan.com/token/0x628F59fbbd955fB2833be88987a7Cb829da68888", + "status": "spam", + "id": "0x628F59fbbd955fB2833be88987a7Cb829da68888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x629520dEE1620dEf11596F84E85de9F1Ff653012/info.json b/blockchains/smartchain/assets/0x629520dEE1620dEf11596F84E85de9F1Ff653012/info.json new file mode 100644 index 0000000000000..e2602999c9fc6 --- /dev/null +++ b/blockchains/smartchain/assets/0x629520dEE1620dEf11596F84E85de9F1Ff653012/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wells Fargo (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "WFCon is the Ondo Tokenized version of Wells Fargo, giving tokenholders economic exposure similar to holding WFC and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x629520dee1620def11596f84e85de9f1ff653012", + "type": "BEP20", + "symbol": "WFCon", + "decimals": 18, + "status": "active", + "id": "0x629520dEE1620dEf11596F84E85de9F1Ff653012", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wells-fargo-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x629520dEE1620dEf11596F84E85de9F1Ff653012/logo.png b/blockchains/smartchain/assets/0x629520dEE1620dEf11596F84E85de9F1Ff653012/logo.png new file mode 100644 index 0000000000000..25f5f95397377 Binary files /dev/null and b/blockchains/smartchain/assets/0x629520dEE1620dEf11596F84E85de9F1Ff653012/logo.png differ diff --git a/blockchains/smartchain/assets/0x62A7603C1a54515cC5cEd153D88d6859c7eB4444/info.json b/blockchains/smartchain/assets/0x62A7603C1a54515cC5cEd153D88d6859c7eB4444/info.json new file mode 100644 index 0000000000000..f0d332b48470b --- /dev/null +++ b/blockchains/smartchain/assets/0x62A7603C1a54515cC5cEd153D88d6859c7eB4444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE United Stables", + "type": "BEP20", + "symbol": "FAKE UTED", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x62A7603C1a54515cC5cEd153D88d6859c7eB4444", + "explorer": "https://bscscan.com/token/0x62A7603C1a54515cC5cEd153D88d6859c7eB4444", + "status": "spam", + "id": "0x62A7603C1a54515cC5cEd153D88d6859c7eB4444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/info.json b/blockchains/smartchain/assets/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/info.json new file mode 100644 index 0000000000000..34fafd0209114 --- /dev/null +++ b/blockchains/smartchain/assets/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/info.json @@ -0,0 +1,64 @@ +{ + "name": "Beam", + "type": "BEP20", + "symbol": "BEAM", + "decimals": 18, + "website": "https://meritcircle.io/", + "description": "Beam is a sovereign network focused on gaming brought to you by the Merit Circle DAO.", + "explorer": "https://bscscan.com/token/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE", + "status": "active", + "id": "0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE", + "links": [ + { + "name": "x", + "url": "https://x.com/buildonbeam" + }, + { + "name": "github", + "url": "https://github.com/Merit-Circle" + }, + { + "name": "telegram", + "url": "https://t.me/meritcircle" + }, + { + "name": "telegram_news", + "url": "https://t.me/meritcircle_ann" + }, + { + "name": "docs", + "url": "https://docs.onbeam.com" + }, + { + "name": "blog", + "url": "https://medium.com/@meritcircle" + }, + { + "name": "forum", + "url": "https://gov.meritcircle.io/" + }, + { + "name": "medium", + "url": "https://medium.com/@meritcircle" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/beam-2" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/onbeam/" + }, + { + "name": "whitepaper", + "url": "https://meritcircle.gitbook.io/merit-circle/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/meritcircle" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/logo.png b/blockchains/smartchain/assets/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/logo.png new file mode 100644 index 0000000000000..df55519f7a2dd Binary files /dev/null and b/blockchains/smartchain/assets/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/logo.png differ diff --git a/blockchains/smartchain/assets/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B/info.json b/blockchains/smartchain/assets/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B/info.json new file mode 100644 index 0000000000000..5d34550901ec9 --- /dev/null +++ b/blockchains/smartchain/assets/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B/info.json @@ -0,0 +1,24 @@ +{ + "name": "Honeywell tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Honeywell xStock (HONx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. HONx tracks the price of Honeywell International Inc. (the underlying). HONx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Honeywell International Inc., whilst maintaining the benefits of blockchain technology. Honeywell International Inc. is an American technology and manufacturing company that operates in four core areas: Aerospace, Building Automation, Industrial Automation, and Energy and Sustainability Solutions.", + "explorer": "https://bscscan.com/token/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B", + "type": "BEP20", + "symbol": "HONX", + "decimals": 18, + "status": "active", + "id": "0x62a48560861B0b451654bFffdb5be6E47aa8ff1B", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/honeywell-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B/logo.png b/blockchains/smartchain/assets/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B/logo.png new file mode 100644 index 0000000000000..2757f36e52107 Binary files /dev/null and b/blockchains/smartchain/assets/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B/logo.png differ diff --git a/blockchains/smartchain/assets/0x62aa428216Ff9911bd7aBADAD07a6833EFBA8888/info.json b/blockchains/smartchain/assets/0x62aa428216Ff9911bd7aBADAD07a6833EFBA8888/info.json new file mode 100644 index 0000000000000..857c289a0c515 --- /dev/null +++ b/blockchains/smartchain/assets/0x62aa428216Ff9911bd7aBADAD07a6833EFBA8888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether USD", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x62aa428216Ff9911bd7aBADAD07a6833EFBA8888", + "explorer": "https://bscscan.com/token/0x62aa428216Ff9911bd7aBADAD07a6833EFBA8888", + "status": "spam", + "id": "0x62aa428216Ff9911bd7aBADAD07a6833EFBA8888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x63221d19c4B512a6F4792F2Da0a2083eA28c38c1/info.json b/blockchains/smartchain/assets/0x63221d19c4B512a6F4792F2Da0a2083eA28c38c1/info.json index fbbcb2d766d06..09e48e48381e5 100644 --- a/blockchains/smartchain/assets/0x63221d19c4B512a6F4792F2Da0a2083eA28c38c1/info.json +++ b/blockchains/smartchain/assets/0x63221d19c4B512a6F4792F2Da0a2083eA28c38c1/info.json @@ -10,8 +10,8 @@ "id": "0x63221d19c4B512a6F4792F2Da0a2083eA28c38c1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/calltocombat" + "name": "x", + "url": "https://x.com/calltocombat" }, { "name": "github", @@ -37,4 +37,4 @@ "tags": [ "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x638EEBe886B0e9e7C6929E69490064a6C94d204d/info.json b/blockchains/smartchain/assets/0x638EEBe886B0e9e7C6929E69490064a6C94d204d/info.json index 1882c220eee9b..370c3c0c810cd 100644 --- a/blockchains/smartchain/assets/0x638EEBe886B0e9e7C6929E69490064a6C94d204d/info.json +++ b/blockchains/smartchain/assets/0x638EEBe886B0e9e7C6929E69490064a6C94d204d/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/HectorDAO_HEC" + "name": "x", + "url": "https://x.com/HectorDAO_HEC" }, { "name": "medium", @@ -45,4 +45,4 @@ "url": "https://coingecko.com/en/coins/hector-finance" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6397de0F9aEDc0F7A8Fa8B438DDE883B9c201010/info.json b/blockchains/smartchain/assets/0x6397de0F9aEDc0F7A8Fa8B438DDE883B9c201010/info.json index a1a52c9b15dc9..a53468bc3639b 100644 --- a/blockchains/smartchain/assets/0x6397de0F9aEDc0F7A8Fa8B438DDE883B9c201010/info.json +++ b/blockchains/smartchain/assets/0x6397de0F9aEDc0F7A8Fa8B438DDE883B9c201010/info.json @@ -18,8 +18,8 @@ "url": "https://coinmarketcap.com/currencies/sincity-token/" }, { - "name": "twitter", - "url": "https://twitter.com/sincitytoken" + "name": "x", + "url": "https://x.com/sincitytoken" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x639AD7c49EC616a64e074c21a58608C0d843A8a3/info.json b/blockchains/smartchain/assets/0x639AD7c49EC616a64e074c21a58608C0d843A8a3/info.json index 6b4a8a2e10b33..3bfa2036fa8b6 100644 --- a/blockchains/smartchain/assets/0x639AD7c49EC616a64e074c21a58608C0d843A8a3/info.json +++ b/blockchains/smartchain/assets/0x639AD7c49EC616a64e074c21a58608C0d843A8a3/info.json @@ -18,8 +18,8 @@ "url": "https://t.me/tripcandyio" }, { - "name": "twitter", - "url": "https://twitter.com/Tripcandyio" + "name": "x", + "url": "https://x.com/Tripcandyio" }, { "name": "coingecko", diff --git a/blockchains/smartchain/assets/0x63F712B7EC2b9f7146b54a79133900F9458eeC6a/info.json b/blockchains/smartchain/assets/0x63F712B7EC2b9f7146b54a79133900F9458eeC6a/info.json new file mode 100644 index 0000000000000..e2c042517a10b --- /dev/null +++ b/blockchains/smartchain/assets/0x63F712B7EC2b9f7146b54a79133900F9458eeC6a/info.json @@ -0,0 +1,28 @@ +{ + "name": "FutureToken", + "type": "BEP20", + "symbol": "FTR", + "decimals": 18, + "website": "https://www.futuretoken.info/", + "description": "FutureToken (FTR) invites you to embark on a journey into the future of finance, where innovation meets opportunity", + "explorer": "https://bscscan.com/token/0x63F712B7EC2b9f7146b54a79133900F9458eeC6a", + "status": "active", + "id": "0x63F712B7EC2b9f7146b54a79133900F9458eeC6a", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pomerocket/" + }, + { + "name": "x", + "url": "https://x.com/MyFutureToken" + }, + { + "name": "telegram", + "url": "https://t.me/myfuturetoken" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x63F712B7EC2b9f7146b54a79133900F9458eeC6a/logo.png b/blockchains/smartchain/assets/0x63F712B7EC2b9f7146b54a79133900F9458eeC6a/logo.png new file mode 100644 index 0000000000000..8e2a45a2ec15c Binary files /dev/null and b/blockchains/smartchain/assets/0x63F712B7EC2b9f7146b54a79133900F9458eeC6a/logo.png differ diff --git a/blockchains/smartchain/assets/0x63a276efEFE9F65747c044862a581Ed857F14444/info.json b/blockchains/smartchain/assets/0x63a276efEFE9F65747c044862a581Ed857F14444/info.json new file mode 100644 index 0000000000000..9255466a54ac3 --- /dev/null +++ b/blockchains/smartchain/assets/0x63a276efEFE9F65747c044862a581Ed857F14444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDKG", + "type": "BEP20", + "symbol": "FAKE USDKG", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x63a276efEFE9F65747c044862a581Ed857F14444", + "explorer": "https://bscscan.com/token/0x63a276efEFE9F65747c044862a581Ed857F14444", + "status": "spam", + "id": "0x63a276efEFE9F65747c044862a581Ed857F14444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x63a4644142CA6dc83CfE0E2bdba8d62174491fD8/info.json b/blockchains/smartchain/assets/0x63a4644142CA6dc83CfE0E2bdba8d62174491fD8/info.json index c3a50238ce477..4f7b942c6157b 100644 --- a/blockchains/smartchain/assets/0x63a4644142CA6dc83CfE0E2bdba8d62174491fD8/info.json +++ b/blockchains/smartchain/assets/0x63a4644142CA6dc83CfE0E2bdba8d62174491fD8/info.json @@ -10,8 +10,8 @@ "id": "0x63a4644142CA6dc83CfE0E2bdba8d62174491fD8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/GaptToken" + "name": "x", + "url": "https://x.com/GaptToken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x63d55ecDEbF08f93D0F2D5533035ddcCaa997d7A/info.json b/blockchains/smartchain/assets/0x63d55ecDEbF08f93D0F2D5533035ddcCaa997d7A/info.json index 1b91d2c12e5b8..c937d18dd44ba 100644 --- a/blockchains/smartchain/assets/0x63d55ecDEbF08f93D0F2D5533035ddcCaa997d7A/info.json +++ b/blockchains/smartchain/assets/0x63d55ecDEbF08f93D0F2D5533035ddcCaa997d7A/info.json @@ -14,8 +14,8 @@ "url": "https://vaultdefi.com" }, { - "name": "twitter", - "url": "https://twitter.com/vaultdefi" + "name": "x", + "url": "https://x.com/vaultdefi" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x63eC19c2983bfB0D43232aa9C792Fe6F27F63361/info.json b/blockchains/smartchain/assets/0x63eC19c2983bfB0D43232aa9C792Fe6F27F63361/info.json index e54e4b2993fd4..fd6ab0f3075a6 100644 --- a/blockchains/smartchain/assets/0x63eC19c2983bfB0D43232aa9C792Fe6F27F63361/info.json +++ b/blockchains/smartchain/assets/0x63eC19c2983bfB0D43232aa9C792Fe6F27F63361/info.json @@ -10,8 +10,8 @@ "id": "0x63eC19c2983bfB0D43232aa9C792Fe6F27F63361", "links": [ { - "name": "twitter", - "url": "https://twitter.com/metaracaNFT" + "name": "x", + "url": "https://x.com/metaracaNFT" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x641a6Dc991A49f7BE9Fe3C72c5d0FBb223eDb12f/info.json b/blockchains/smartchain/assets/0x641a6Dc991A49f7BE9Fe3C72c5d0FBb223eDb12f/info.json index 4a61fa69a4a00..814aaf30d557c 100644 --- a/blockchains/smartchain/assets/0x641a6Dc991A49f7BE9Fe3C72c5d0FBb223eDb12f/info.json +++ b/blockchains/smartchain/assets/0x641a6Dc991A49f7BE9Fe3C72c5d0FBb223eDb12f/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/refinetwork" }, { - "name": "twitter", - "url": "https://twitter.com/refi_network" + "name": "x", + "url": "https://x.com/refi_network" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x645660bD50F7229F1a975F1231c82EBAa31A74Fe/info.json b/blockchains/smartchain/assets/0x645660bD50F7229F1a975F1231c82EBAa31A74Fe/info.json index e02f80e3bc8d7..e5b1b90300d76 100644 --- a/blockchains/smartchain/assets/0x645660bD50F7229F1a975F1231c82EBAa31A74Fe/info.json +++ b/blockchains/smartchain/assets/0x645660bD50F7229F1a975F1231c82EBAa31A74Fe/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/DragonCoin71/" }, { - "name": "twitter", - "url": "https://twitter.com/drondragoncoin?s=09" + "name": "x", + "url": "https://x.com/drondragoncoin?s=09" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x6459303F58244Ff1E7A42b90aA3782Dfb6Ca6969/info.json b/blockchains/smartchain/assets/0x6459303F58244Ff1E7A42b90aA3782Dfb6Ca6969/info.json new file mode 100644 index 0000000000000..1ace3a6d9cc2d --- /dev/null +++ b/blockchains/smartchain/assets/0x6459303F58244Ff1E7A42b90aA3782Dfb6Ca6969/info.json @@ -0,0 +1,28 @@ +{ + "name": "Trip.com Group (Ondo Tokenized)", + "type": "BEP20", + "symbol": "TCOMon", + "decimals": 18, + "description": "TCOMon is the Ondo Tokenized version of Trip.com Group, giving tokenholders economic exposure similar to holding TCOM and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x6459303F58244Ff1E7A42b90aA3782Dfb6Ca6969", + "status": "active", + "id": "0x6459303F58244Ff1E7A42b90aA3782Dfb6Ca6969", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/trip-com-group-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tripcom-group-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6459303F58244Ff1E7A42b90aA3782Dfb6Ca6969/logo.png b/blockchains/smartchain/assets/0x6459303F58244Ff1E7A42b90aA3782Dfb6Ca6969/logo.png new file mode 100644 index 0000000000000..50ef2736a09fd Binary files /dev/null and b/blockchains/smartchain/assets/0x6459303F58244Ff1E7A42b90aA3782Dfb6Ca6969/logo.png differ diff --git a/blockchains/smartchain/assets/0x64619f611248256F7F4b72fE83872F89d5d60d64/info.json b/blockchains/smartchain/assets/0x64619f611248256F7F4b72fE83872F89d5d60d64/info.json index 5a9a167b9580f..f89077431f537 100644 --- a/blockchains/smartchain/assets/0x64619f611248256F7F4b72fE83872F89d5d60d64/info.json +++ b/blockchains/smartchain/assets/0x64619f611248256F7F4b72fE83872F89d5d60d64/info.json @@ -10,8 +10,8 @@ "id": "0x64619f611248256F7F4b72fE83872F89d5d60d64", "links": [ { - "name": "twitter", - "url": "https://twitter.com/projectquint" + "name": "x", + "url": "https://x.com/projectquint" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x6469b35d2D5FAb6c53F73c7d9aBF537892DdB34a/info.json b/blockchains/smartchain/assets/0x6469b35d2D5FAb6c53F73c7d9aBF537892DdB34a/info.json index 3f2697fce6b15..a3b9137c2ef22 100644 --- a/blockchains/smartchain/assets/0x6469b35d2D5FAb6c53F73c7d9aBF537892DdB34a/info.json +++ b/blockchains/smartchain/assets/0x6469b35d2D5FAb6c53F73c7d9aBF537892DdB34a/info.json @@ -10,8 +10,8 @@ "id": "0x6469b35d2D5FAb6c53F73c7d9aBF537892DdB34a", "links": [ { - "name": "twitter", - "url": "https://twitter.com/RbtrToken" + "name": "x", + "url": "https://x.com/RbtrToken" }, { "name": "github", @@ -23,7 +23,6 @@ } ], "tags": [ - "staking-native", "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x64748BeA17b6D19e242ADf20425DE2440c656142/info.json b/blockchains/smartchain/assets/0x64748BeA17b6D19e242ADf20425DE2440c656142/info.json new file mode 100644 index 0000000000000..7340b2b57f91b --- /dev/null +++ b/blockchains/smartchain/assets/0x64748BeA17b6D19e242ADf20425DE2440c656142/info.json @@ -0,0 +1,20 @@ +{ + "name": "Lumentum Tokenized bStocks", + "type": "BEP20", + "symbol": "LITEB", + "decimals": 18, + "description": "LITEB is a tokenized bStocks that gives you economic exposure to Lumentum Tokenized bStocks, and the right to convert to the underlying security on the Binance.com platform subject to applicable laws. Each token is fully backed by the corresponding underlying equity maintained by the Issuer at a US-regulated broker-dealer. You get the price movements, dividends, and the right to convert the token at 1:1 to the underlying share — tradeable 24/7.", + "website": "https://www.bstocks.finance/en/", + "explorer": "https://bscscan.com/token/0x64748BeA17b6D19e242ADf20425DE2440c656142", + "status": "active", + "id": "0x64748BeA17b6D19e242ADf20425DE2440c656142", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lumentum-tokenized-bstocks/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x64748BeA17b6D19e242ADf20425DE2440c656142/logo.png b/blockchains/smartchain/assets/0x64748BeA17b6D19e242ADf20425DE2440c656142/logo.png new file mode 100644 index 0000000000000..63c2378c0df3f Binary files /dev/null and b/blockchains/smartchain/assets/0x64748BeA17b6D19e242ADf20425DE2440c656142/logo.png differ diff --git a/blockchains/smartchain/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/info.json b/blockchains/smartchain/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/info.json new file mode 100644 index 0000000000000..15bca650ca826 --- /dev/null +++ b/blockchains/smartchain/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/info.json @@ -0,0 +1,45 @@ +{ + "id": "0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC", + "name": "IDRX", + "type": "BEP20", + "symbol": "IDRX", + "decimals": 0, + "website": "https://idrx.co/", + "description": "IDRX is a stable token pegged to the value of the Indonesian Rupiah (IDR). As a cryptocurrency, IDRX offers users the benefits of blockchain technology, including security, transparency, and decentralized control. At the same time, as a stable token, IDRX offers price stability by maintaining a fixed exchange rate with the IDR, which is the national currency of Indonesia.", + "explorer": "https://bscscan.com/token/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC", + "status": "active", + "tags": [ + "stablecoin", + "staking" + ], + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/idrx/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/idrx/" + }, + { + "name": "github", + "url": "https://github.com/idrx-co/" + }, + { + "name": "docs", + "url": "https://docs.idrx.co/" + }, + { + "name": "whitepaper", + "url": "https://idrx.co/docs/Whitepaper%20IDRX.pdf" + }, + { + "name": "telegram", + "url": "https://t.me/officialidrx" + }, + { + "name": "medium", + "url": "https://idrx.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/logo.png b/blockchains/smartchain/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/logo.png new file mode 100644 index 0000000000000..7af71346b78e9 Binary files /dev/null and b/blockchains/smartchain/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/logo.png differ diff --git a/blockchains/smartchain/assets/0x64B55Bb2F27c3710349d9cA024d0D1Ff2DAB7f62/info.json b/blockchains/smartchain/assets/0x64B55Bb2F27c3710349d9cA024d0D1Ff2DAB7f62/info.json index 2d5cd1827396e..41bd8b7773f32 100644 --- a/blockchains/smartchain/assets/0x64B55Bb2F27c3710349d9cA024d0D1Ff2DAB7f62/info.json +++ b/blockchains/smartchain/assets/0x64B55Bb2F27c3710349d9cA024d0D1Ff2DAB7f62/info.json @@ -14,8 +14,8 @@ }, "links": [ { - "name": "twitter", - "url": "https://twitter.com/BIGHBULL1" + "name": "x", + "url": "https://x.com/BIGHBULL1" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x64E4fea6e4F3637025c7Bcd878E2B238B01f7D4e/info.json b/blockchains/smartchain/assets/0x64E4fea6e4F3637025c7Bcd878E2B238B01f7D4e/info.json new file mode 100644 index 0000000000000..cae4ee477469f --- /dev/null +++ b/blockchains/smartchain/assets/0x64E4fea6e4F3637025c7Bcd878E2B238B01f7D4e/info.json @@ -0,0 +1,36 @@ +{ + "name": "insurance", + "type": "BEP20", + "symbol": "INSURANCE", + "decimals": 18, + "website": "https://Insurance.game", + "description": "Insurance token for insurance industry by offering a digital platform for insuring both physical and digital assets", + "explorer": "https://bscscan.com/token/0x64E4fea6e4F3637025c7Bcd878E2B238B01f7D4e", + "status": "active", + "id": "0x64E4fea6e4F3637025c7Bcd878E2B238B01f7D4e", + "links": [ + { + "name": "x", + "url": "https://x.com/insurance0game" + }, + { + "name": "telegram", + "url": "https://t.me/insurance0game" + }, + { + "name": "whitepaper", + "url": "https://Insurance.game/whitepaper" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/insurance" + }, + { + "name": "blog", + "url": "https://Insurance.game/blog" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x64E4fea6e4F3637025c7Bcd878E2B238B01f7D4e/logo.png b/blockchains/smartchain/assets/0x64E4fea6e4F3637025c7Bcd878E2B238B01f7D4e/logo.png new file mode 100644 index 0000000000000..a516943e06e66 Binary files /dev/null and b/blockchains/smartchain/assets/0x64E4fea6e4F3637025c7Bcd878E2B238B01f7D4e/logo.png differ diff --git a/blockchains/smartchain/assets/0x64F36701138f0E85cC10c34Ea535FdBADcB54147/info.json b/blockchains/smartchain/assets/0x64F36701138f0E85cC10c34Ea535FdBADcB54147/info.json index 42affdcf39252..cd07339f18eed 100644 --- a/blockchains/smartchain/assets/0x64F36701138f0E85cC10c34Ea535FdBADcB54147/info.json +++ b/blockchains/smartchain/assets/0x64F36701138f0E85cC10c34Ea535FdBADcB54147/info.json @@ -14,8 +14,8 @@ "url": "https://discord.com/qzDnC4cyg3" }, { - "name": "twitter", - "url": "https://twitter.com/InuAnon" + "name": "x", + "url": "https://x.com/InuAnon" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x650b940a1033B8A1b1873f78730FcFC73ec11f1f/info.json b/blockchains/smartchain/assets/0x650b940a1033B8A1b1873f78730FcFC73ec11f1f/info.json index aa4f66bd5dea6..bbb131cf9cfb3 100644 --- a/blockchains/smartchain/assets/0x650b940a1033B8A1b1873f78730FcFC73ec11f1f/info.json +++ b/blockchains/smartchain/assets/0x650b940a1033B8A1b1873f78730FcFC73ec11f1f/info.json @@ -11,8 +11,8 @@ "id": "0x650b940a1033B8A1b1873f78730FcFC73ec11f1f", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VenusProtocol" + "name": "x", + "url": "https://x.com/VenusProtocol" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x651BfbB26455294408Aabc61a7ADF427bf149898/info.json b/blockchains/smartchain/assets/0x651BfbB26455294408Aabc61a7ADF427bf149898/info.json index 97fe5b251a1eb..468aba0a82dde 100644 --- a/blockchains/smartchain/assets/0x651BfbB26455294408Aabc61a7ADF427bf149898/info.json +++ b/blockchains/smartchain/assets/0x651BfbB26455294408Aabc61a7ADF427bf149898/info.json @@ -10,8 +10,8 @@ "id": "0x651BfbB26455294408Aabc61a7ADF427bf149898", "links": [ { - "name": "twitter", - "url": "https://twitter.com/@mellotoken" + "name": "x", + "url": "https://x.com/@mellotoken" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x651a89fed302227d41425235F8E934502FB94C48/info.json b/blockchains/smartchain/assets/0x651a89fed302227d41425235F8E934502FB94C48/info.json index c4cede75454c1..f6d686896438e 100644 --- a/blockchains/smartchain/assets/0x651a89fed302227d41425235F8E934502FB94C48/info.json +++ b/blockchains/smartchain/assets/0x651a89fed302227d41425235F8E934502FB94C48/info.json @@ -14,8 +14,8 @@ "url": "https://adacash.io/whitepaper" }, { - "name": "twitter", - "url": "https://twitter.com/adacashbsc" + "name": "x", + "url": "https://x.com/adacashbsc" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x658A109C5900BC6d2357c87549B651670E5b0539/info.json b/blockchains/smartchain/assets/0x658A109C5900BC6d2357c87549B651670E5b0539/info.json index 2d5543c1f5765..4746730260f0a 100644 --- a/blockchains/smartchain/assets/0x658A109C5900BC6d2357c87549B651670E5b0539/info.json +++ b/blockchains/smartchain/assets/0x658A109C5900BC6d2357c87549B651670E5b0539/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/thefortube" }, { - "name": "twitter", - "url": "https://twitter.com/ForTubeFi" + "name": "x", + "url": "https://x.com/ForTubeFi" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x659049786cB66E4486b8C0E0cCC90a5929a21162/info.json b/blockchains/smartchain/assets/0x659049786cB66E4486b8C0E0cCC90a5929a21162/info.json index 15f4f6f930cdf..24ac4addc0dbd 100644 --- a/blockchains/smartchain/assets/0x659049786cB66E4486b8C0E0cCC90a5929a21162/info.json +++ b/blockchains/smartchain/assets/0x659049786cB66E4486b8C0E0cCC90a5929a21162/info.json @@ -18,8 +18,8 @@ "url": "https://coingecko.com/coins/ttcoin" }, { - "name": "twitter", - "url": "https://twitter.com/ttcoinofficial" + "name": "x", + "url": "https://x.com/ttcoinofficial" }, { "name": "github", @@ -49,4 +49,4 @@ "tags": [ "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x65D84F0990B7394209d591380C2952c83D778aA3/info.json b/blockchains/smartchain/assets/0x65D84F0990B7394209d591380C2952c83D778aA3/info.json new file mode 100644 index 0000000000000..a2f6f7d67aa53 --- /dev/null +++ b/blockchains/smartchain/assets/0x65D84F0990B7394209d591380C2952c83D778aA3/info.json @@ -0,0 +1,28 @@ +{ + "name": "Constellation Energy (Ondo Tokenized)", + "type": "BEP20", + "symbol": "CEGon", + "decimals": 18, + "description": "CEGon is the Ondo Tokenized version of Constellation Energy, giving tokenholders economic exposure similar to holding CEG and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x65D84F0990B7394209d591380C2952c83D778aA3", + "status": "active", + "id": "0x65D84F0990B7394209d591380C2952c83D778aA3", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/constellation-energy-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/constellation-energy-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x65D84F0990B7394209d591380C2952c83D778aA3/logo.png b/blockchains/smartchain/assets/0x65D84F0990B7394209d591380C2952c83D778aA3/logo.png new file mode 100644 index 0000000000000..40883cd3a39a0 Binary files /dev/null and b/blockchains/smartchain/assets/0x65D84F0990B7394209d591380C2952c83D778aA3/logo.png differ diff --git a/blockchains/smartchain/assets/0x662cBBEb9872251a795F85648333Be0dbFcAd653/info.json b/blockchains/smartchain/assets/0x662cBBEb9872251a795F85648333Be0dbFcAd653/info.json index 7c29031694eca..8391886243c53 100644 --- a/blockchains/smartchain/assets/0x662cBBEb9872251a795F85648333Be0dbFcAd653/info.json +++ b/blockchains/smartchain/assets/0x662cBBEb9872251a795F85648333Be0dbFcAd653/info.json @@ -10,8 +10,8 @@ "id": "0x662cBBEb9872251a795F85648333Be0dbFcAd653", "links": [ { - "name": "twitter", - "url": "https://twitter.com/DefiSportsCoin" + "name": "x", + "url": "https://x.com/DefiSportsCoin" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x6652048Fa5E66ed63a0225FFd7C82e106b0Aa18b/info.json b/blockchains/smartchain/assets/0x6652048Fa5E66ed63a0225FFd7C82e106b0Aa18b/info.json index 61ec9fbf2c3b3..37a6699abd6fa 100644 --- a/blockchains/smartchain/assets/0x6652048Fa5E66ed63a0225FFd7C82e106b0Aa18b/info.json +++ b/blockchains/smartchain/assets/0x6652048Fa5E66ed63a0225FFd7C82e106b0Aa18b/info.json @@ -10,8 +10,8 @@ "id": "0x6652048Fa5E66ed63a0225FFd7C82e106b0Aa18b", "links": [ { - "name": "twitter", - "url": "https://twitter.com/yetuswap" + "name": "x", + "url": "https://x.com/yetuswap" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x668DB7aa38eaC6B40c9D13dBE61361DC4c4611d1/info.json b/blockchains/smartchain/assets/0x668DB7aa38eaC6B40c9D13dBE61361DC4c4611d1/info.json new file mode 100644 index 0000000000000..54aa5206035da --- /dev/null +++ b/blockchains/smartchain/assets/0x668DB7aa38eaC6B40c9D13dBE61361DC4c4611d1/info.json @@ -0,0 +1,26 @@ +{ + "name": "Measurable Data Token", + "website": "http://mdt.io", + "description": "Measurable Data Token (MDT) aims to provide a decentralized data economy, where data providers and data buyers can exchange data securely and anonymously.", + "explorer": "https://bscscan.com/token/0x668db7aa38eac6b40c9d13dbe61361dc4c4611d1", + "research": "https://research.binance.com/en/projects/measurable-data-token", + "type": "BEP20", + "symbol": "MDT", + "decimals": 18, + "status": "active", + "id": "0x668DB7aa38eaC6B40c9D13dBE61361DC4c4611d1", + "links": [ + { + "name": "x", + "url": "https://x.com/MeasurableData" + }, + { + "name": "github", + "url": "https://github.com/measurabledatatoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/measurable-data-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x668DB7aa38eaC6B40c9D13dBE61361DC4c4611d1/logo.png b/blockchains/smartchain/assets/0x668DB7aa38eaC6B40c9D13dBE61361DC4c4611d1/logo.png new file mode 100644 index 0000000000000..4406b320c48f5 Binary files /dev/null and b/blockchains/smartchain/assets/0x668DB7aa38eaC6B40c9D13dBE61361DC4c4611d1/logo.png differ diff --git a/blockchains/smartchain/assets/0x66dA5cc445feC38A9475Ae7941f89110b9d256b9/info.json b/blockchains/smartchain/assets/0x66dA5cc445feC38A9475Ae7941f89110b9d256b9/info.json index f637853d48d75..a6396a8bbd155 100644 --- a/blockchains/smartchain/assets/0x66dA5cc445feC38A9475Ae7941f89110b9d256b9/info.json +++ b/blockchains/smartchain/assets/0x66dA5cc445feC38A9475Ae7941f89110b9d256b9/info.json @@ -18,8 +18,8 @@ "url": "https://t.me/vodkatoken" }, { - "name": "twitter", - "url": "https://twitter.com/VodkaToken" + "name": "x", + "url": "https://x.com/VodkaToken" }, { "name": "coingecko", @@ -29,4 +29,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x67009eB16ff64d06b4F782b3c552b924B1D1bb93/info.json b/blockchains/smartchain/assets/0x67009eB16ff64d06b4F782b3c552b924B1D1bb93/info.json new file mode 100644 index 0000000000000..a324c762eda70 --- /dev/null +++ b/blockchains/smartchain/assets/0x67009eB16ff64d06b4F782b3c552b924B1D1bb93/info.json @@ -0,0 +1,34 @@ +{ + "name": "Matrix Chain", + "type": "BEP20", + "symbol": "MTC", + "decimals": 18, + "website": "https://matrixchain.space/", + "description": "The World’s Leading Decentralized Finance Platform", + "explorer": "https://bscscan.com/token/0x67009eB16ff64d06b4F782b3c552b924B1D1bb93", + "status": "active", + "id": "0x67009eB16ff64d06b4F782b3c552b924B1D1bb93", + "links": [ + { + "name": "x", + "url": "https://x.com/Matrixchain_no1" + }, + { + "name": "telegram", + "url": "https://t.me/MatrixChainn01" + }, + { + "name": "github", + "url": "https://github.com/mtcv3" + }, + { + "name": "whitepaper", + "url": "https://matrixchain.space/resources/document/whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/matrix-chain/" + } + ], + "tags": [] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x67009eB16ff64d06b4F782b3c552b924B1D1bb93/logo.png b/blockchains/smartchain/assets/0x67009eB16ff64d06b4F782b3c552b924B1D1bb93/logo.png new file mode 100644 index 0000000000000..67c98a7d839ef Binary files /dev/null and b/blockchains/smartchain/assets/0x67009eB16ff64d06b4F782b3c552b924B1D1bb93/logo.png differ diff --git a/blockchains/smartchain/assets/0x6730f7A6BbB7b9C8e60843948f7FEB4B6a17B7F7/info.json b/blockchains/smartchain/assets/0x6730f7A6BbB7b9C8e60843948f7FEB4B6a17B7F7/info.json new file mode 100644 index 0000000000000..2015f9f4e59ba --- /dev/null +++ b/blockchains/smartchain/assets/0x6730f7A6BbB7b9C8e60843948f7FEB4B6a17B7F7/info.json @@ -0,0 +1,36 @@ +{ + "name": "Seed.Photo", + "id": "0x6730f7A6BbB7b9C8e60843948f7FEB4B6a17B7F7", + "website": "https://seed.photo/", + "description": "Protect the value of your photography against misuse or violation from artificial intelligence, social media and news platforms.", + "explorer": "https://bscscan.com/token/0x6730f7A6BbB7b9C8e60843948f7FEB4B6a17B7F7", + "symbol": "SEED", + "type": "BEP20", + "decimals": 18, + "status": "active", + "tags": [ + "staking-native" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/seedphoto/SeedToken" + }, + { + "name": "x", + "url": "https://x.com/SeedPhoto" + }, + { + "name": "whitepaper", + "url": "https://token.seed.photo" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/seed-photo" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/seed-photo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6730f7A6BbB7b9C8e60843948f7FEB4B6a17B7F7/logo.png b/blockchains/smartchain/assets/0x6730f7A6BbB7b9C8e60843948f7FEB4B6a17B7F7/logo.png new file mode 100644 index 0000000000000..51fbe28e53847 Binary files /dev/null and b/blockchains/smartchain/assets/0x6730f7A6BbB7b9C8e60843948f7FEB4B6a17B7F7/logo.png differ diff --git a/blockchains/smartchain/assets/0x6739e0572A24bE7864B466f79844C4f3B7d6f857/info.json b/blockchains/smartchain/assets/0x6739e0572A24bE7864B466f79844C4f3B7d6f857/info.json new file mode 100644 index 0000000000000..47b53042ba173 --- /dev/null +++ b/blockchains/smartchain/assets/0x6739e0572A24bE7864B466f79844C4f3B7d6f857/info.json @@ -0,0 +1,36 @@ +{ + "name": "TXGPRO", + "type": "BEP20", + "symbol": "TXGP", + "decimals": 8, + "website": "https://pro.trustxgaming.io/", + "description": "TXGPRO, a GameFi protocol developed by TRUSTxGAMING: 1. Play-to-Earn Concept: TXGPRO revolves around a \"play-to-earn\" concept, where gamers can participate in games within the platform using TXGP tokens. By doing so, they can earn cryptocurrency rewards based on their in-game achievements and contributions. This incentivizes gamers to engage with the platform and earn crypto rewards while enjoying their gaming experiences.", + "explorer": "https://bscscan.com/token/0x6739e0572A24bE7864B466f79844C4f3B7d6f857", + "status": "active", + "id": "0x6739e0572A24bE7864B466f79844C4f3B7d6f857", + "links": [ + { + "name": "x", + "url": "https://x.com/trust_xgaming" + }, + { + "name": "telegram", + "url": "https://t.me/trustxgaming" + }, + { + "name": "discord", + "url": "https://discord.com/invite/tXMs8DVFsd" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.txgpro.io/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/txgpro/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6739e0572A24bE7864B466f79844C4f3B7d6f857/logo.png b/blockchains/smartchain/assets/0x6739e0572A24bE7864B466f79844C4f3B7d6f857/logo.png new file mode 100644 index 0000000000000..71b01c59420fd Binary files /dev/null and b/blockchains/smartchain/assets/0x6739e0572A24bE7864B466f79844C4f3B7d6f857/logo.png differ diff --git a/blockchains/smartchain/assets/0x673Da443da2f6aE7c5c660A9F0D3DD24d1643D36/info.json b/blockchains/smartchain/assets/0x673Da443da2f6aE7c5c660A9F0D3DD24d1643D36/info.json index c80b11f509fc4..311f938360c82 100644 --- a/blockchains/smartchain/assets/0x673Da443da2f6aE7c5c660A9F0D3DD24d1643D36/info.json +++ b/blockchains/smartchain/assets/0x673Da443da2f6aE7c5c660A9F0D3DD24d1643D36/info.json @@ -10,8 +10,8 @@ "id": "0x673Da443da2f6aE7c5c660A9F0D3DD24d1643D36", "links": [ { - "name": "twitter", - "url": "https://twitter.com/rainbowtokenbsc" + "name": "x", + "url": "https://x.com/rainbowtokenbsc" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x6775729FaD1438116b2E3B4Fb2878539795297A7/info.json b/blockchains/smartchain/assets/0x6775729FaD1438116b2E3B4Fb2878539795297A7/info.json index f90bccf089aa0..2374b747bc801 100644 --- a/blockchains/smartchain/assets/0x6775729FaD1438116b2E3B4Fb2878539795297A7/info.json +++ b/blockchains/smartchain/assets/0x6775729FaD1438116b2E3B4Fb2878539795297A7/info.json @@ -10,8 +10,8 @@ "id": "0x6775729FaD1438116b2E3B4Fb2878539795297A7", "links": [ { - "name": "twitter", - "url": "https://twitter.com/CoinAlpha3" + "name": "x", + "url": "https://x.com/CoinAlpha3" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x678e840C640F619E17848045D23072844224dD37/info.json b/blockchains/smartchain/assets/0x678e840C640F619E17848045D23072844224dD37/info.json index 7dbadd122ad49..5306dee9e7cec 100644 --- a/blockchains/smartchain/assets/0x678e840C640F619E17848045D23072844224dD37/info.json +++ b/blockchains/smartchain/assets/0x678e840C640F619E17848045D23072844224dD37/info.json @@ -10,8 +10,8 @@ "id": "0x678e840C640F619E17848045D23072844224dD37", "links": [ { - "name": "twitter", - "url": "https://twitter.com/cratostoken" + "name": "x", + "url": "https://x.com/cratostoken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x679a61490DaDB65C8e356509a3F566513cf03F7c/info.json b/blockchains/smartchain/assets/0x679a61490DaDB65C8e356509a3F566513cf03F7c/info.json new file mode 100644 index 0000000000000..faf9d1275c506 --- /dev/null +++ b/blockchains/smartchain/assets/0x679a61490DaDB65C8e356509a3F566513cf03F7c/info.json @@ -0,0 +1,14 @@ +{ + "name": "BNB Robots", + "type": "BEP20", + "symbol": "BNB Robots", + "decimals": 18, + "website": "https://four.meme/token/0x679a61490DaDB65C8e356509a3F566513cf03F7c", + "description": "BNB Robots proved to be a fan favorite this year. This one in particular struck a chord as our most popular piece of artwork in 2023-2025!", + "explorer": "https://bscscan.com/token/0x679a61490DaDB65C8e356509a3F566513cf03F7c", + "status": "active", + "id": "0x679a61490DaDB65C8e356509a3F566513cf03F7c", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x679a61490DaDB65C8e356509a3F566513cf03F7c/logo.png b/blockchains/smartchain/assets/0x679a61490DaDB65C8e356509a3F566513cf03F7c/logo.png new file mode 100644 index 0000000000000..8792b54302238 Binary files /dev/null and b/blockchains/smartchain/assets/0x679a61490DaDB65C8e356509a3F566513cf03F7c/logo.png differ diff --git a/blockchains/smartchain/assets/0x67Db74b6D1Ea807CB47248489c99D144323D348d/info.json b/blockchains/smartchain/assets/0x67Db74b6D1Ea807CB47248489c99D144323D348d/info.json index 64e78e6e77f39..a39e251fa00cb 100644 --- a/blockchains/smartchain/assets/0x67Db74b6D1Ea807CB47248489c99D144323D348d/info.json +++ b/blockchains/smartchain/assets/0x67Db74b6D1Ea807CB47248489c99D144323D348d/info.json @@ -10,8 +10,8 @@ "id": "0x67Db74b6D1Ea807CB47248489c99D144323D348d", "links": [ { - "name": "twitter", - "url": "https://twitter.com/mmsplatform" + "name": "x", + "url": "https://x.com/mmsplatform" }, { "name": "github", @@ -33,4 +33,4 @@ "tags": [ "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x67b725d7e342d7B611fa85e859Df9697D9378B2e/info.json b/blockchains/smartchain/assets/0x67b725d7e342d7B611fa85e859Df9697D9378B2e/info.json index 359ff84216aba..9302583d627e7 100644 --- a/blockchains/smartchain/assets/0x67b725d7e342d7B611fa85e859Df9697D9378B2e/info.json +++ b/blockchains/smartchain/assets/0x67b725d7e342d7B611fa85e859Df9697D9378B2e/info.json @@ -10,8 +10,8 @@ "id": "0x67b725d7e342d7B611fa85e859Df9697D9378B2e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TheSandboxGame" + "name": "x", + "url": "https://x.com/TheSandboxGame" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x67d66e8Ec1Fd25d98B3Ccd3B19B7dc4b4b7fC493/info.json b/blockchains/smartchain/assets/0x67d66e8Ec1Fd25d98B3Ccd3B19B7dc4b4b7fC493/info.json index 94d2cf2e24e1b..a1bc2bf8fdda4 100644 --- a/blockchains/smartchain/assets/0x67d66e8Ec1Fd25d98B3Ccd3B19B7dc4b4b7fC493/info.json +++ b/blockchains/smartchain/assets/0x67d66e8Ec1Fd25d98B3Ccd3B19B7dc4b4b7fC493/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/FeederFinance/" }, { - "name": "twitter", - "url": "https://twitter.com/FeederFinance" + "name": "x", + "url": "https://x.com/FeederFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x67ee3Cb086F8a16f34beE3ca72FAD36F7Db929e2/info.json b/blockchains/smartchain/assets/0x67ee3Cb086F8a16f34beE3ca72FAD36F7Db929e2/info.json index 84b457ca57083..3928c67b4af49 100644 --- a/blockchains/smartchain/assets/0x67ee3Cb086F8a16f34beE3ca72FAD36F7Db929e2/info.json +++ b/blockchains/smartchain/assets/0x67ee3Cb086F8a16f34beE3ca72FAD36F7Db929e2/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/DODOEX/" }, { - "name": "twitter", - "url": "https://twitter.com/DODO" + "name": "x", + "url": "https://x.com/DODO" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x683b383E9D6Cc523F4C9764daceBB5752892fc53/info.json b/blockchains/smartchain/assets/0x683b383E9D6Cc523F4C9764daceBB5752892fc53/info.json index 9cd8d9a4bcd7d..799c593113c5a 100644 --- a/blockchains/smartchain/assets/0x683b383E9D6Cc523F4C9764daceBB5752892fc53/info.json +++ b/blockchains/smartchain/assets/0x683b383E9D6Cc523F4C9764daceBB5752892fc53/info.json @@ -18,8 +18,8 @@ "url": "https://coinmarketcap.com/currencies/sparklab/" }, { - "name": "twitter", - "url": "https://twitter.com/Sparklab3" + "name": "x", + "url": "https://x.com/Sparklab3" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x683fae4411249Ca05243dfb919c20920f3f5bfE0/info.json b/blockchains/smartchain/assets/0x683fae4411249Ca05243dfb919c20920f3f5bfE0/info.json index d7be3dba0658e..dacb03a0a69f2 100644 --- a/blockchains/smartchain/assets/0x683fae4411249Ca05243dfb919c20920f3f5bfE0/info.json +++ b/blockchains/smartchain/assets/0x683fae4411249Ca05243dfb919c20920f3f5bfE0/info.json @@ -10,8 +10,8 @@ "id": "0x683fae4411249Ca05243dfb919c20920f3f5bfE0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/galaxyheroesghc" + "name": "x", + "url": "https://x.com/galaxyheroesghc" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x68590a47578E5060a29fd99654f4556dBfa05D10/info.json b/blockchains/smartchain/assets/0x68590a47578E5060a29fd99654f4556dBfa05D10/info.json index 8b02fa494cd4f..093afc7033219 100644 --- a/blockchains/smartchain/assets/0x68590a47578E5060a29fd99654f4556dBfa05D10/info.json +++ b/blockchains/smartchain/assets/0x68590a47578E5060a29fd99654f4556dBfa05D10/info.json @@ -10,8 +10,8 @@ "id": "0x68590a47578E5060a29fd99654f4556dBfa05D10", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MoonRatFinance" + "name": "x", + "url": "https://x.com/MoonRatFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x686318000d982bc8dCC1cdCF8fFd22322F0960Ed/info.json b/blockchains/smartchain/assets/0x686318000d982bc8dCC1cdCF8fFd22322F0960Ed/info.json new file mode 100644 index 0000000000000..2cfa7a36282f3 --- /dev/null +++ b/blockchains/smartchain/assets/0x686318000d982bc8dCC1cdCF8fFd22322F0960Ed/info.json @@ -0,0 +1,21 @@ +{ + "name": "Opulous", + "type": "BEP20", + "symbol": "OPUL", + "website": "https://opulous.org/", + "decimals": 18, + "description": "Opulous Token believe in a future where musicians keep control of the music they create and forge even deeper connections with their fans.", + "explorer": "https://bscscan.com/token/0x686318000d982bc8dcc1cdcf8ffd22322f0960ed", + "status": "active", + "id": "0x686318000d982bc8dCC1cdCF8fFd22322F0960Ed", + "links": [ + { + "name": "telegram", + "url": "https://t.me/opulousapp" + }, + { + "name": "x", + "url": "https://x.com/opulousapp" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x686318000d982bc8dCC1cdCF8fFd22322F0960Ed/logo.png b/blockchains/smartchain/assets/0x686318000d982bc8dCC1cdCF8fFd22322F0960Ed/logo.png new file mode 100644 index 0000000000000..afa7fedd2bd39 Binary files /dev/null and b/blockchains/smartchain/assets/0x686318000d982bc8dCC1cdCF8fFd22322F0960Ed/logo.png differ diff --git a/blockchains/smartchain/assets/0x68810a6F5bB0491cB9Ccf8c52735A1acf5f28009/info.json b/blockchains/smartchain/assets/0x68810a6F5bB0491cB9Ccf8c52735A1acf5f28009/info.json index f6dea62e3bad5..6b12a3e6f2d98 100644 --- a/blockchains/smartchain/assets/0x68810a6F5bB0491cB9Ccf8c52735A1acf5f28009/info.json +++ b/blockchains/smartchain/assets/0x68810a6F5bB0491cB9Ccf8c52735A1acf5f28009/info.json @@ -17,8 +17,8 @@ "url": "https://t.me/shibazillacoin" }, { - "name": "twitter", - "url": "https://twitter.com/shibazillacoin" + "name": "x", + "url": "https://x.com/shibazillacoin" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x68848E1d1fFd7B38D103106C74220c1ad3494AFC/info.json b/blockchains/smartchain/assets/0x68848E1d1fFd7B38D103106C74220c1ad3494AFC/info.json index c9a5b9ed2c551..cb3a621256edc 100644 --- a/blockchains/smartchain/assets/0x68848E1d1fFd7B38D103106C74220c1ad3494AFC/info.json +++ b/blockchains/smartchain/assets/0x68848E1d1fFd7B38D103106C74220c1ad3494AFC/info.json @@ -10,8 +10,8 @@ "id": "0x68848E1d1fFd7B38D103106C74220c1ad3494AFC", "links": [ { - "name": "twitter", - "url": "https://twitter.com/RewardsBunny" + "name": "x", + "url": "https://x.com/RewardsBunny" }, { "name": "whitepaper", diff --git a/blockchains/smartchain/assets/0x689437C050678935DB89381fE0B8F6ED4A3eec66/info.json b/blockchains/smartchain/assets/0x689437C050678935DB89381fE0B8F6ED4A3eec66/info.json index da90d14dda235..23e44d7499108 100644 --- a/blockchains/smartchain/assets/0x689437C050678935DB89381fE0B8F6ED4A3eec66/info.json +++ b/blockchains/smartchain/assets/0x689437C050678935DB89381fE0B8F6ED4A3eec66/info.json @@ -10,8 +10,8 @@ "id": "0x689437C050678935DB89381fE0B8F6ED4A3eec66", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BabySpaceFloki" + "name": "x", + "url": "https://x.com/BabySpaceFloki" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x6894CDe390a3f51155ea41Ed24a33A4827d3063D/info.json b/blockchains/smartchain/assets/0x6894CDe390a3f51155ea41Ed24a33A4827d3063D/info.json new file mode 100644 index 0000000000000..6cec2f5064e2c --- /dev/null +++ b/blockchains/smartchain/assets/0x6894CDe390a3f51155ea41Ed24a33A4827d3063D/info.json @@ -0,0 +1,25 @@ +{ + "name": "Simons Cat", + "symbol": "CAT", + "type": "BEP20", + "decimals": 18, + "description": "Simon's Cat is a meme token aims for every trade that feeds the hungry cats around the world.", + "website": "https://www.simons.cat/", + "explorer": "https://bscscan.com/token/0x6894CDe390a3f51155ea41Ed24a33A4827d3063D", + "status": "active", + "id": "0x6894CDe390a3f51155ea41Ed24a33A4827d3063D", + "links": [ + { + "name": "telegram", + "url": "https://t.me/SimonsCatWorld" + }, + { + "name": "x", + "url": "https://x.com/SimonsCatMeme" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/simonscat/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6894CDe390a3f51155ea41Ed24a33A4827d3063D/logo.png b/blockchains/smartchain/assets/0x6894CDe390a3f51155ea41Ed24a33A4827d3063D/logo.png new file mode 100644 index 0000000000000..7bef25c5148d5 Binary files /dev/null and b/blockchains/smartchain/assets/0x6894CDe390a3f51155ea41Ed24a33A4827d3063D/logo.png differ diff --git a/blockchains/smartchain/assets/0x68B07cEf227Cea1b2b6683921C8c825cd5C69Ec7/info.json b/blockchains/smartchain/assets/0x68B07cEf227Cea1b2b6683921C8c825cd5C69Ec7/info.json new file mode 100644 index 0000000000000..8e99df05875e9 --- /dev/null +++ b/blockchains/smartchain/assets/0x68B07cEf227Cea1b2b6683921C8c825cd5C69Ec7/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Bitcoin Trust (Ondo)", + "type": "BEP20", + "symbol": "IBITon", + "decimals": 18, + "description": "IBITon is the Ondo Tokenized version of the iShares Bitcoin Trust ETF, giving tokenholders economic exposure similar to holding IBIT and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x68B07cEf227Cea1b2b6683921C8c825cd5C69Ec7", + "status": "active", + "id": "0x68B07cEf227Cea1b2b6683921C8c825cd5C69Ec7", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-bitcoin-trust-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x68B07cEf227Cea1b2b6683921C8c825cd5C69Ec7/logo.png b/blockchains/smartchain/assets/0x68B07cEf227Cea1b2b6683921C8c825cd5C69Ec7/logo.png new file mode 100644 index 0000000000000..d163a75f472b5 Binary files /dev/null and b/blockchains/smartchain/assets/0x68B07cEf227Cea1b2b6683921C8c825cd5C69Ec7/logo.png differ diff --git a/blockchains/smartchain/assets/0x68D10dFe87a838D63BbEf6c9A0D0b44beB799DC1/info.json b/blockchains/smartchain/assets/0x68D10dFe87a838D63BbEf6c9A0D0b44beB799DC1/info.json index 24a0db0903d9a..82fb7e4e9c7a4 100644 --- a/blockchains/smartchain/assets/0x68D10dFe87a838D63BbEf6c9A0D0b44beB799DC1/info.json +++ b/blockchains/smartchain/assets/0x68D10dFe87a838D63BbEf6c9A0D0b44beB799DC1/info.json @@ -18,8 +18,8 @@ "url": "https://facebook.com/yourmagnetgold/" }, { - "name": "twitter", - "url": "https://twitter.com/YMagnetgold" + "name": "x", + "url": "https://x.com/YMagnetgold" }, { "name": "youtube", diff --git a/blockchains/smartchain/assets/0x68Db713779f7470c2FD43D3d06841D0192d44939/info.json b/blockchains/smartchain/assets/0x68Db713779f7470c2FD43D3d06841D0192d44939/info.json new file mode 100644 index 0000000000000..9e5a8f7d2981e --- /dev/null +++ b/blockchains/smartchain/assets/0x68Db713779f7470c2FD43D3d06841D0192d44939/info.json @@ -0,0 +1,11 @@ +{ + "name": "HIGH-RISK Ethereum Bridged ZED20", + "type": "BEP20", + "symbol": "HIGH RISK", + "decimals": 18, + "description": "Token assessed as high-risk and not affiliated with Ethereum", + "website": "https://bscscan.com/token/0x68Db713779f7470c2FD43D3d06841D0192d44939", + "explorer": "https://bscscan.com/token/0x68Db713779f7470c2FD43D3d06841D0192d44939", + "status": "spam", + "id": "0x68Db713779f7470c2FD43D3d06841D0192d44939" +} diff --git a/blockchains/smartchain/assets/0x68Db713779f7470c2FD43D3d06841D0192d44939/logo.png b/blockchains/smartchain/assets/0x68Db713779f7470c2FD43D3d06841D0192d44939/logo.png new file mode 100644 index 0000000000000..1980498106886 Binary files /dev/null and b/blockchains/smartchain/assets/0x68Db713779f7470c2FD43D3d06841D0192d44939/logo.png differ diff --git a/blockchains/smartchain/assets/0x68E374F856bF25468D365E539b700b648Bf94B67/info.json b/blockchains/smartchain/assets/0x68E374F856bF25468D365E539b700b648Bf94B67/info.json index 034ff0d132b69..79cb36611cbdd 100644 --- a/blockchains/smartchain/assets/0x68E374F856bF25468D365E539b700b648Bf94B67/info.json +++ b/blockchains/smartchain/assets/0x68E374F856bF25468D365E539b700b648Bf94B67/info.json @@ -18,8 +18,8 @@ "url": "https://coinmarketcap.com/currencies/mist/" }, { - "name": "twitter", - "url": "https://twitter.com/MistNft" + "name": "x", + "url": "https://x.com/MistNft" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x68F3DDEE8BAE33691E7CD0372984fD857E842760/info.json b/blockchains/smartchain/assets/0x68F3DDEE8BAE33691E7CD0372984fD857E842760/info.json new file mode 100644 index 0000000000000..4ba52063de6cb --- /dev/null +++ b/blockchains/smartchain/assets/0x68F3DDEE8BAE33691E7CD0372984fD857E842760/info.json @@ -0,0 +1,15 @@ +{ + "name": "T-Mobile xStock", + "type": "BEP20", + "symbol": "TMUSx", + "decimals": 18, + "description": "T-Mobile xStock (TMUSx) is a tracker certificate issued as a freely transferable token on selected blockchains. TMUSx tracks the price of T-Mobile US, Inc.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x68F3DDEE8BAE33691E7CD0372984fD857E842760", + "status": "active", + "id": "0x68F3DDEE8BAE33691E7CD0372984fD857E842760", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x68F3DDEE8BAE33691E7CD0372984fD857E842760/logo.png b/blockchains/smartchain/assets/0x68F3DDEE8BAE33691E7CD0372984fD857E842760/logo.png new file mode 100644 index 0000000000000..3d012e402a44b Binary files /dev/null and b/blockchains/smartchain/assets/0x68F3DDEE8BAE33691E7CD0372984fD857E842760/logo.png differ diff --git a/blockchains/smartchain/assets/0x68b5edb385b59E30a7A7Db1E681a449E94DF0213/info.json b/blockchains/smartchain/assets/0x68b5edb385b59E30a7A7Db1E681a449E94DF0213/info.json index c5ccf16400ba9..219a13b2871fc 100644 --- a/blockchains/smartchain/assets/0x68b5edb385b59E30a7A7Db1E681a449E94DF0213/info.json +++ b/blockchains/smartchain/assets/0x68b5edb385b59E30a7A7Db1E681a449E94DF0213/info.json @@ -22,8 +22,8 @@ "url": "https://t.me/SilvaTokenId" }, { - "name": "twitter", - "url": "https://twitter.com/ERANetworkGroup" + "name": "x", + "url": "https://x.com/ERANetworkGroup" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x68ef00dAd00925e060b177c7ac59382FD0EB00c2/info.json b/blockchains/smartchain/assets/0x68ef00dAd00925e060b177c7ac59382FD0EB00c2/info.json new file mode 100644 index 0000000000000..24beaa87d8f24 --- /dev/null +++ b/blockchains/smartchain/assets/0x68ef00dAd00925e060b177c7ac59382FD0EB00c2/info.json @@ -0,0 +1,28 @@ +{ + "name": "AZ BANC SERVICES", + "type": "BEP20", + "symbol": "ABS", + "decimals": 18, + "website": "https://azbanc.io/", + "description": "AZ BANC SERVICES is redefining the landscape where cryptocurrency and forex converge. We're not just bridging two worlds; we're creating a new one - a realm where the agility of digital currencies and the robustness of forex markets empower your financial journey.", + "explorer": "https://bscscan.com/token/0x68ef00dAd00925e060b177c7ac59382FD0EB00c2", + "status": "active", + "id": "0x68ef00dAd00925e060b177c7ac59382FD0EB00c2", + "links": [ + { + "name": "x", + "url": "https://x.com/@azbancservices" + }, + { + "name": "telegram", + "url": "https://t.me/azbancservices" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/az-banc-services/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x68ef00dAd00925e060b177c7ac59382FD0EB00c2/logo.png b/blockchains/smartchain/assets/0x68ef00dAd00925e060b177c7ac59382FD0EB00c2/logo.png new file mode 100644 index 0000000000000..54c5dbe2d1b30 Binary files /dev/null and b/blockchains/smartchain/assets/0x68ef00dAd00925e060b177c7ac59382FD0EB00c2/logo.png differ diff --git a/blockchains/smartchain/assets/0x6904b1c25c91fBD9431621fbE495d7c49FCD171F/info.json b/blockchains/smartchain/assets/0x6904b1c25c91fBD9431621fbE495d7c49FCD171F/info.json index 73e62df7cea41..bacd56cc70a41 100644 --- a/blockchains/smartchain/assets/0x6904b1c25c91fBD9431621fbE495d7c49FCD171F/info.json +++ b/blockchains/smartchain/assets/0x6904b1c25c91fBD9431621fbE495d7c49FCD171F/info.json @@ -10,8 +10,8 @@ "id": "0x6904b1c25c91fBD9431621fbE495d7c49FCD171F", "links": [ { - "name": "twitter", - "url": "https://twitter.com/CRYPTONITE_CRT" + "name": "x", + "url": "https://x.com/CRYPTONITE_CRT" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x69763Bf14262467DE510467CAE7d826FEda7F9BC/info.json b/blockchains/smartchain/assets/0x69763Bf14262467DE510467CAE7d826FEda7F9BC/info.json new file mode 100644 index 0000000000000..d96cfb2c0dd6e --- /dev/null +++ b/blockchains/smartchain/assets/0x69763Bf14262467DE510467CAE7d826FEda7F9BC/info.json @@ -0,0 +1,17 @@ +{ + "name": "Petunia", + "symbol": "Petunia", + "website": "https://www.tiktok.com/@binance/video/7431269993356004650?_r=1&u_code=e01a98j113agg5&preview_pb=0&sharer_language=en&_d=eh6a426305j4cj&share_item_id=7431269993356004650&source=h5_m×tamp=1739376884&utm_source=copy&tt_from=copy&enable_checksum=1&utm_medium=ios&share_link_id=663D06BF-11CE-4F83-AACF-4410B41653CF&user_id=7057893043689554949&sec_user_id=MS4wLjABAAAAgzmZE97LJ3TggI1eIFbHDd_q3ntdkfRzeCPF0Ot0tZnYIoQrOFhdqtvv73jmqXDK&social_share_type=0&ug_btm=b5836,b2001&utm_campaign=client_share&link_reflow_popup_iteration_sharer=%7B%22follow_to_play_duration%22:-1,%22click_empty_to_play%22:1,%22dynamic_cover%22:1,%22profile_clickable%22:1%7D&share_app_id=1233", + "description": "A community claimed ownership for this token on Feb 12 2025", + "explorer": "https://bscscan.com/token/0x69763bf14262467de510467cae7d826feda7f9bc", + "decimals": 18, + "status": "active", + "id": "0x69763Bf14262467DE510467CAE7d826FEda7F9BC", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/petuniabsc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x69763Bf14262467DE510467CAE7d826FEda7F9BC/logo.png b/blockchains/smartchain/assets/0x69763Bf14262467DE510467CAE7d826FEda7F9BC/logo.png new file mode 100644 index 0000000000000..2c99fcb70c66b Binary files /dev/null and b/blockchains/smartchain/assets/0x69763Bf14262467DE510467CAE7d826FEda7F9BC/logo.png differ diff --git a/blockchains/smartchain/assets/0x697bd938e7E572E787ecd7bC74a31f1814C21264/info.json b/blockchains/smartchain/assets/0x697bd938e7E572E787ecd7bC74a31f1814C21264/info.json index cf01b6f6efc59..40371fe17560d 100644 --- a/blockchains/smartchain/assets/0x697bd938e7E572E787ecd7bC74a31f1814C21264/info.json +++ b/blockchains/smartchain/assets/0x697bd938e7E572E787ecd7bC74a31f1814C21264/info.json @@ -34,8 +34,8 @@ "url": "https://facebook.com/difxexchange" }, { - "name": "twitter", - "url": "https://twitter.com/difx_io" + "name": "x", + "url": "https://x.com/difx_io" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x698111b771363B81D1179AD102e3d8B9cD093a11/info.json b/blockchains/smartchain/assets/0x698111b771363B81D1179AD102e3d8B9cD093a11/info.json index f6af91d9837d3..e1ca54f1b5b63 100644 --- a/blockchains/smartchain/assets/0x698111b771363B81D1179AD102e3d8B9cD093a11/info.json +++ b/blockchains/smartchain/assets/0x698111b771363B81D1179AD102e3d8B9cD093a11/info.json @@ -10,8 +10,8 @@ "id": "0x698111b771363B81D1179AD102e3d8B9cD093a11", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ukadoge" + "name": "x", + "url": "https://x.com/ukadoge" }, { "name": "telegram", @@ -21,4 +21,4 @@ "tags": [ "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json b/blockchains/smartchain/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json new file mode 100644 index 0000000000000..c8031489abcc1 --- /dev/null +++ b/blockchains/smartchain/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json @@ -0,0 +1,21 @@ +{ + "name": "LayerZero", + "website": "https://layerzero.network/", + "description": "LayerZero is a technology that enables applications to move data across blockchains, uniquely supporting censorship-resistant messages and permissionless development through immutable smart contracts", + "explorer": "https://bscscan.com/token/0x6985884c4392d348587b19cb9eaaf157f13271cd", + "type": "BEP20", + "symbol": "ZRO", + "decimals": 18, + "status": "active", + "id": "0x6985884C4392D348587B19cb9eAAf157F13271cd", + "links": [ + { + "name": "x", + "url": "https://x.com/LayerZero_Labs" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/VcqxYkStIDsyN2Rh" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png b/blockchains/smartchain/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png new file mode 100644 index 0000000000000..203a846cfdf6b Binary files /dev/null and b/blockchains/smartchain/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png differ diff --git a/blockchains/smartchain/assets/0x698Ef24be9D5b898BbB9d5a583A8c525B8c84444/info.json b/blockchains/smartchain/assets/0x698Ef24be9D5b898BbB9d5a583A8c525B8c84444/info.json new file mode 100644 index 0000000000000..031f4f49b0374 --- /dev/null +++ b/blockchains/smartchain/assets/0x698Ef24be9D5b898BbB9d5a583A8c525B8c84444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE United Stables", + "type": "BEP20", + "symbol": "FAKE U", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x698Ef24be9D5b898BbB9d5a583A8c525B8c84444", + "explorer": "https://bscscan.com/token/0x698Ef24be9D5b898BbB9d5a583A8c525B8c84444", + "status": "spam", + "id": "0x698Ef24be9D5b898BbB9d5a583A8c525B8c84444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x69C2fcAe7e30b429166BD616A322e32BeC036bCf/info.json b/blockchains/smartchain/assets/0x69C2fcAe7e30b429166BD616A322e32BeC036bCf/info.json index d40f0fff17671..10b40098a0379 100644 --- a/blockchains/smartchain/assets/0x69C2fcAe7e30b429166BD616A322e32BeC036bCf/info.json +++ b/blockchains/smartchain/assets/0x69C2fcAe7e30b429166BD616A322e32BeC036bCf/info.json @@ -10,8 +10,8 @@ "id": "0x69C2fcAe7e30b429166BD616A322e32BeC036bCf", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MuratiAI" + "name": "x", + "url": "https://x.com/MuratiAI" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x69b14e8D3CEBfDD8196Bfe530954A0C226E5008E/info.json b/blockchains/smartchain/assets/0x69b14e8D3CEBfDD8196Bfe530954A0C226E5008E/info.json index fb209fc29fee6..b47baffc96c47 100644 --- a/blockchains/smartchain/assets/0x69b14e8D3CEBfDD8196Bfe530954A0C226E5008E/info.json +++ b/blockchains/smartchain/assets/0x69b14e8D3CEBfDD8196Bfe530954A0C226E5008E/info.json @@ -10,8 +10,8 @@ "id": "0x69b14e8D3CEBfDD8196Bfe530954A0C226E5008E", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SpacePi_Com" + "name": "x", + "url": "https://x.com/SpacePi_Com" }, { "name": "telegram", @@ -26,4 +26,4 @@ "governance", "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6A50A1f2fF0C5658815215b498f7aB003a783Dc7/info.json b/blockchains/smartchain/assets/0x6A50A1f2fF0C5658815215b498f7aB003a783Dc7/info.json new file mode 100644 index 0000000000000..c6800d78ed42e --- /dev/null +++ b/blockchains/smartchain/assets/0x6A50A1f2fF0C5658815215b498f7aB003a783Dc7/info.json @@ -0,0 +1,40 @@ +{ + "name": "CV TOKEN", + "type": "BEP20", + "symbol": "CVT", + "decimals": 18, + "website": "https://cvtoken.us/", + "description": "CV Tokens enable users to buy and sell virtual products and services in the Metaverse. With a vibrant e-commerce system, users can purchase virtual clothes, accessories, and other digital items to personalize their avatars, enhancing their virtual reality experiences.", + "explorer": "https://bscscan.com/token/0x6A50A1f2fF0C5658815215b498f7aB003a783Dc7", + "status": "active", + "id": "0x6A50A1f2fF0C5658815215b498f7aB003a783Dc7", + "links": [ + { + "name": "x", + "url": "https://x.com/CryptoV75575" + }, + { + "name": "github", + "url": "https://github.com/cvttokenofficial" + }, + { + "name": "telegram", + "url": "https://t.me/CVToken" + }, + { + "name": "telegram_news", + "url": "https://t.me/CVTokenofficial" + }, + { + "name": "whitepaper", + "url": "https://cvtoken.us/uploads/CVTwhitepaper_0.2.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/monsta-xrp/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6A50A1f2fF0C5658815215b498f7aB003a783Dc7/logo.png b/blockchains/smartchain/assets/0x6A50A1f2fF0C5658815215b498f7aB003a783Dc7/logo.png new file mode 100644 index 0000000000000..38d4a7f16f006 Binary files /dev/null and b/blockchains/smartchain/assets/0x6A50A1f2fF0C5658815215b498f7aB003a783Dc7/logo.png differ diff --git a/blockchains/smartchain/assets/0x6A684b3578f5B07c0Aa02fAFc33ED248AE0c2dB2/info.json b/blockchains/smartchain/assets/0x6A684b3578f5B07c0Aa02fAFc33ED248AE0c2dB2/info.json index 6cb113d1f0844..c2426f8fa1123 100644 --- a/blockchains/smartchain/assets/0x6A684b3578f5B07c0Aa02fAFc33ED248AE0c2dB2/info.json +++ b/blockchains/smartchain/assets/0x6A684b3578f5B07c0Aa02fAFc33ED248AE0c2dB2/info.json @@ -19,8 +19,8 @@ "url": "https://github.com/TechTreeCoin/TTC" }, { - "name": "twitter", - "url": "https://twitter.com/TechTreesCoin" + "name": "x", + "url": "https://x.com/TechTreesCoin" }, { "name": "reddit", @@ -39,4 +39,4 @@ "url": "https://coinmarketcap.com/currencies/techtreescoin" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6Aa47e1A3AF34285b47B9dF4C9D3Dc61953900C5/info.json b/blockchains/smartchain/assets/0x6Aa47e1A3AF34285b47B9dF4C9D3Dc61953900C5/info.json new file mode 100644 index 0000000000000..ccba71dada552 --- /dev/null +++ b/blockchains/smartchain/assets/0x6Aa47e1A3AF34285b47B9dF4C9D3Dc61953900C5/info.json @@ -0,0 +1,17 @@ +{ + "name": "FIST", + "symbol": "FIST", + "website": "https://x.com/KtwoBTCQ?s=09", + "description": "Pangu's strongest team, called all the original team, made every effort to build a small FIST Fist, and made the coin chain great again", + "explorer": "https://bscscan.com/token/0x6aa47e1a3af34285b47b9df4c9d3dc61953900c5", + "decimals": 18, + "status": "active", + "id": "0x6Aa47e1A3AF34285b47B9dF4C9D3Dc61953900C5", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/KtwoBTCQ?s=09" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6Aa47e1A3AF34285b47B9dF4C9D3Dc61953900C5/logo.png b/blockchains/smartchain/assets/0x6Aa47e1A3AF34285b47B9dF4C9D3Dc61953900C5/logo.png new file mode 100644 index 0000000000000..3fd8503aea8ad Binary files /dev/null and b/blockchains/smartchain/assets/0x6Aa47e1A3AF34285b47B9dF4C9D3Dc61953900C5/logo.png differ diff --git a/blockchains/smartchain/assets/0x6Ac47387f0a2798dF4C4eE5bb31ab9517ac97cb8/info.json b/blockchains/smartchain/assets/0x6Ac47387f0a2798dF4C4eE5bb31ab9517ac97cb8/info.json new file mode 100644 index 0000000000000..4c2efd246fa7e --- /dev/null +++ b/blockchains/smartchain/assets/0x6Ac47387f0a2798dF4C4eE5bb31ab9517ac97cb8/info.json @@ -0,0 +1,15 @@ +{ + "name": "Riot Platforms xStock", + "type": "BEP20", + "symbol": "RIOTx", + "decimals": 18, + "description": "Riot Platforms xStock (RIOTx) is a tracker certificate issued as a freely transferable token on selected blockchains. RIOTx tracks the price of Riot Platforms, Inc.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x6Ac47387f0a2798dF4C4eE5bb31ab9517ac97cb8", + "status": "active", + "id": "0x6Ac47387f0a2798dF4C4eE5bb31ab9517ac97cb8", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6Ac47387f0a2798dF4C4eE5bb31ab9517ac97cb8/logo.png b/blockchains/smartchain/assets/0x6Ac47387f0a2798dF4C4eE5bb31ab9517ac97cb8/logo.png new file mode 100644 index 0000000000000..d4aebe6c2d044 Binary files /dev/null and b/blockchains/smartchain/assets/0x6Ac47387f0a2798dF4C4eE5bb31ab9517ac97cb8/logo.png differ diff --git a/blockchains/smartchain/assets/0x6Ad0F087501Eee603AeDa0407c52864bc7f83322/info.json b/blockchains/smartchain/assets/0x6Ad0F087501Eee603AeDa0407c52864bc7f83322/info.json index 1d3d9c1da642b..691860018f7d2 100644 --- a/blockchains/smartchain/assets/0x6Ad0F087501Eee603AeDa0407c52864bc7f83322/info.json +++ b/blockchains/smartchain/assets/0x6Ad0F087501Eee603AeDa0407c52864bc7f83322/info.json @@ -10,8 +10,8 @@ "id": "0x6Ad0F087501Eee603AeDa0407c52864bc7f83322", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Human_meta_face" + "name": "x", + "url": "https://x.com/Human_meta_face" }, { "name": "github", @@ -37,4 +37,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6Ae9701B9c423F40d54556C9a443409D79cE170a/info.json b/blockchains/smartchain/assets/0x6Ae9701B9c423F40d54556C9a443409D79cE170a/info.json index ce829e7029fbf..7e4b89569ac67 100644 --- a/blockchains/smartchain/assets/0x6Ae9701B9c423F40d54556C9a443409D79cE170a/info.json +++ b/blockchains/smartchain/assets/0x6Ae9701B9c423F40d54556C9a443409D79cE170a/info.json @@ -10,8 +10,8 @@ "id": "0x6Ae9701B9c423F40d54556C9a443409D79cE170a", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PolkaCity" + "name": "x", + "url": "https://x.com/PolkaCity" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x6B9481FB5465ef9Ab9347b332058D894aB09B2f6/info.json b/blockchains/smartchain/assets/0x6B9481FB5465ef9Ab9347b332058D894aB09B2f6/info.json index 645985a040126..ded21d591a886 100644 --- a/blockchains/smartchain/assets/0x6B9481FB5465ef9Ab9347b332058D894aB09B2f6/info.json +++ b/blockchains/smartchain/assets/0x6B9481FB5465ef9Ab9347b332058D894aB09B2f6/info.json @@ -10,8 +10,8 @@ "id": "0x6B9481FB5465ef9Ab9347b332058D894aB09B2f6", "links": [ { - "name": "twitter", - "url": "https://twitter.com/dinolandgame" + "name": "x", + "url": "https://x.com/dinolandgame" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x6B9F6f911384886b2e622e406327085238F8A3C5/info.json b/blockchains/smartchain/assets/0x6B9F6f911384886b2e622e406327085238F8A3C5/info.json index 93bbf01080a7b..1e83c60a7965c 100644 --- a/blockchains/smartchain/assets/0x6B9F6f911384886b2e622e406327085238F8A3C5/info.json +++ b/blockchains/smartchain/assets/0x6B9F6f911384886b2e622e406327085238F8A3C5/info.json @@ -18,8 +18,8 @@ "url": "https://t.me/heroverse_ann" }, { - "name": "twitter", - "url": "https://twitter.com/heroverse_game" + "name": "x", + "url": "https://x.com/heroverse_game" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x6BC5AbCc56874D7fACb90C2c3812cc19aAf9B204/info.json b/blockchains/smartchain/assets/0x6BC5AbCc56874D7fACb90C2c3812cc19aAf9B204/info.json new file mode 100644 index 0000000000000..bb74b21aee969 --- /dev/null +++ b/blockchains/smartchain/assets/0x6BC5AbCc56874D7fACb90C2c3812cc19aAf9B204/info.json @@ -0,0 +1,44 @@ +{ + "name": "RZcoin", + "type": "BEP20", + "symbol": "RZ", + "decimals": 18, + "website": "https://coin.rz.game", + "description": "RZCoin is more than just a cryptocurrency, it is a gateway to transform businesses, companies and brands. Supported by the advanced RZ blockchain technology, RZCoin specializes in asset tokenization in various industries and enables secure, transparent and efficient transactions. With RZCoin all businesses will find new opportunities for growth and innovation. The future is marked!", + "explorer": "https://bscscan.com/token/0x6BC5AbCc56874D7fACb90C2c3812cc19aAf9B204", + "status": "active", + "id": "0x6BC5AbCc56874D7fACb90C2c3812cc19aAf9B204", + "links": [ + { + "name": "x", + "url": "https://x.com/RZ_coin" + }, + { + "name": "telegram", + "url": "https://t.me/rzcoin_rz" + }, + { + "name": "whitepaper", + "url": "https://coin.rz.game/whitepaper/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Rzcoinsupport/" + }, + { + "name": "medium", + "url": "https://medium.com/@rzcoin" + }, + { + "name": "youtube", + "url": "https://youtube.com/@rzcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rzcoin/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6BC5AbCc56874D7fACb90C2c3812cc19aAf9B204/logo.png b/blockchains/smartchain/assets/0x6BC5AbCc56874D7fACb90C2c3812cc19aAf9B204/logo.png new file mode 100644 index 0000000000000..8269df1b125ce Binary files /dev/null and b/blockchains/smartchain/assets/0x6BC5AbCc56874D7fACb90C2c3812cc19aAf9B204/logo.png differ diff --git a/blockchains/smartchain/assets/0x6Bfd4cA8eC078d613eD6a5248Eb2c7a0d5c38b7b/info.json b/blockchains/smartchain/assets/0x6Bfd4cA8eC078d613eD6a5248Eb2c7a0d5c38b7b/info.json index 6503077373c39..fa1a7d142a253 100644 --- a/blockchains/smartchain/assets/0x6Bfd4cA8eC078d613eD6a5248Eb2c7a0d5c38b7b/info.json +++ b/blockchains/smartchain/assets/0x6Bfd4cA8eC078d613eD6a5248Eb2c7a0d5c38b7b/info.json @@ -14,8 +14,8 @@ "url": "https://reddit.com/user/EcoChainOfficial?utm_medium=android_app&utm_source=share" }, { - "name": "twitter", - "url": "https://twitter.com/EcoChainToken?s=09" + "name": "x", + "url": "https://x.com/EcoChainToken?s=09" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x6Bfe75D1ad432050eA973C3A3DcD88F02e2444C3/info.json b/blockchains/smartchain/assets/0x6Bfe75D1ad432050eA973C3A3DcD88F02e2444C3/info.json new file mode 100644 index 0000000000000..94ac06820ed31 --- /dev/null +++ b/blockchains/smartchain/assets/0x6Bfe75D1ad432050eA973C3A3DcD88F02e2444C3/info.json @@ -0,0 +1,24 @@ +{ + "name": "Microsoft (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "MSFTon is the Ondo Tokenized version of Microsoft, giving tokenholders economic exposure similar to holding MSFT and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x6bfe75d1ad432050ea973c3a3dcd88f02e2444c3", + "type": "BEP20", + "symbol": "MSFTon", + "decimals": 18, + "status": "active", + "id": "0x6Bfe75D1ad432050eA973C3A3DcD88F02e2444C3", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/microsoft-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6Bfe75D1ad432050eA973C3A3DcD88F02e2444C3/logo.png b/blockchains/smartchain/assets/0x6Bfe75D1ad432050eA973C3A3DcD88F02e2444C3/logo.png new file mode 100644 index 0000000000000..660cee02395e9 Binary files /dev/null and b/blockchains/smartchain/assets/0x6Bfe75D1ad432050eA973C3A3DcD88F02e2444C3/logo.png differ diff --git a/blockchains/smartchain/assets/0x6C43751FeF27C956f7E75D5c345a65df1465f7E0/info.json b/blockchains/smartchain/assets/0x6C43751FeF27C956f7E75D5c345a65df1465f7E0/info.json index 11370ebd39a77..9026c26201e4f 100644 --- a/blockchains/smartchain/assets/0x6C43751FeF27C956f7E75D5c345a65df1465f7E0/info.json +++ b/blockchains/smartchain/assets/0x6C43751FeF27C956f7E75D5c345a65df1465f7E0/info.json @@ -10,8 +10,8 @@ "id": "0x6C43751FeF27C956f7E75D5c345a65df1465f7E0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/CR7cash" + "name": "x", + "url": "https://x.com/CR7cash" }, { "name": "github", @@ -37,4 +37,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6C46422A0f7dbbAD9BEC3BbBC1189bfAf9794B05/info.json b/blockchains/smartchain/assets/0x6C46422A0f7dbbAD9BEC3BbBC1189bfAf9794B05/info.json index e22128d9878aa..e63f1d297f1e0 100644 --- a/blockchains/smartchain/assets/0x6C46422A0f7dbbAD9BEC3BbBC1189bfAf9794B05/info.json +++ b/blockchains/smartchain/assets/0x6C46422A0f7dbbAD9BEC3BbBC1189bfAf9794B05/info.json @@ -10,8 +10,8 @@ "id": "0x6C46422A0f7dbbAD9BEC3BbBC1189bfAf9794B05", "links": [ { - "name": "twitter", - "url": "https://twitter.com/LTRBTtwt/" + "name": "x", + "url": "https://x.com/LTRBTtwt/" }, { "name": "telegram", @@ -31,4 +31,4 @@ "gamefi", "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6C9AE5d6746ee1B6bD03310079AA11d8EC409212/info.json b/blockchains/smartchain/assets/0x6C9AE5d6746ee1B6bD03310079AA11d8EC409212/info.json index fee594503dcad..38ee9412197ff 100644 --- a/blockchains/smartchain/assets/0x6C9AE5d6746ee1B6bD03310079AA11d8EC409212/info.json +++ b/blockchains/smartchain/assets/0x6C9AE5d6746ee1B6bD03310079AA11d8EC409212/info.json @@ -10,8 +10,8 @@ "id": "0x6C9AE5d6746ee1B6bD03310079AA11d8EC409212", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Fino_DAO" + "name": "x", + "url": "https://x.com/Fino_DAO" }, { "name": "telegram", @@ -33,4 +33,4 @@ "tags": [ "deflationary" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6CAD12b3618a3C7ef1FEb6C91FdC3251f58c2a90/info.json b/blockchains/smartchain/assets/0x6CAD12b3618a3C7ef1FEb6C91FdC3251f58c2a90/info.json index 3277225a78cc7..05d5307df5ff6 100644 --- a/blockchains/smartchain/assets/0x6CAD12b3618a3C7ef1FEb6C91FdC3251f58c2a90/info.json +++ b/blockchains/smartchain/assets/0x6CAD12b3618a3C7ef1FEb6C91FdC3251f58c2a90/info.json @@ -10,8 +10,8 @@ "id": "0x6CAD12b3618a3C7ef1FEb6C91FdC3251f58c2a90", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ninnekogame" + "name": "x", + "url": "https://x.com/ninnekogame" }, { "name": "coinmarketcap", @@ -25,4 +25,4 @@ "tags": [ "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6CD502AB164e37231c20578214f874a8ADbdC7c2/info.json b/blockchains/smartchain/assets/0x6CD502AB164e37231c20578214f874a8ADbdC7c2/info.json index 595a787223dff..ab16e543789e4 100644 --- a/blockchains/smartchain/assets/0x6CD502AB164e37231c20578214f874a8ADbdC7c2/info.json +++ b/blockchains/smartchain/assets/0x6CD502AB164e37231c20578214f874a8ADbdC7c2/info.json @@ -4,8 +4,8 @@ "description": "Se7en is a first of its kind Token. Sales restrictions with BNB dividends delivered directly to your wallet.", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Se7enBSC" + "name": "x", + "url": "https://x.com/Se7enBSC" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x6CDd08dE79231a1957f205a3fe5cF9DBf4B0c454/info.json b/blockchains/smartchain/assets/0x6CDd08dE79231a1957f205a3fe5cF9DBf4B0c454/info.json new file mode 100644 index 0000000000000..9fbcc2be03e56 --- /dev/null +++ b/blockchains/smartchain/assets/0x6CDd08dE79231a1957f205a3fe5cF9DBf4B0c454/info.json @@ -0,0 +1,21 @@ +{ + "name": "Baby Neiro", + "type": "BEP20", + "symbol": "BabyNeiro", + "decimals": 9, + "website": "https://baby-neiro.io/", + "description": "In the vast, ever-changing kingdom of memes, one legend must pass to make way for another. After the passing of Doge, the most beloved meme in internet history, a new king was destined to rise.", + "explorer": "https://bscscan.com/token/0x6CDd08dE79231a1957f205a3fe5cF9DBf4B0c454", + "status": "active", + "id": "0x6CDd08dE79231a1957f205a3fe5cF9DBf4B0c454", + "links": [ + { + "name": "x", + "url": "https://x.com/BabyNeiro_BNB" + }, + { + "name": "telegram", + "url": "https://t.me/BabyNeiro_og" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6CDd08dE79231a1957f205a3fe5cF9DBf4B0c454/logo.png b/blockchains/smartchain/assets/0x6CDd08dE79231a1957f205a3fe5cF9DBf4B0c454/logo.png new file mode 100644 index 0000000000000..6d41b83fd1196 Binary files /dev/null and b/blockchains/smartchain/assets/0x6CDd08dE79231a1957f205a3fe5cF9DBf4B0c454/logo.png differ diff --git a/blockchains/smartchain/assets/0x6D1054C3102E842314e250b9e9C4Be327b8DaaE2/info.json b/blockchains/smartchain/assets/0x6D1054C3102E842314e250b9e9C4Be327b8DaaE2/info.json index a5c8222f0fdb6..db135236bb3e2 100644 --- a/blockchains/smartchain/assets/0x6D1054C3102E842314e250b9e9C4Be327b8DaaE2/info.json +++ b/blockchains/smartchain/assets/0x6D1054C3102E842314e250b9e9C4Be327b8DaaE2/info.json @@ -10,8 +10,8 @@ "id": "0x6D1054C3102E842314e250b9e9C4Be327b8DaaE2", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Zebec_HQ" + "name": "x", + "url": "https://x.com/Zebec_HQ" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x6D3a160B86eDcD46D8F9bBa25c2F88ccCADe19fc/info.json b/blockchains/smartchain/assets/0x6D3a160B86eDcD46D8F9bBa25c2F88ccCADe19fc/info.json index 7b57bd1fb86fc..b4d217a30110b 100644 --- a/blockchains/smartchain/assets/0x6D3a160B86eDcD46D8F9bBa25c2F88ccCADe19fc/info.json +++ b/blockchains/smartchain/assets/0x6D3a160B86eDcD46D8F9bBa25c2F88ccCADe19fc/info.json @@ -10,8 +10,8 @@ "id": "0x6D3a160B86eDcD46D8F9bBa25c2F88ccCADe19fc", "links": [ { - "name": "twitter", - "url": "https://twitter.com/fwcommunity_q2t" + "name": "x", + "url": "https://x.com/fwcommunity_q2t" }, { "name": "github", @@ -41,4 +41,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6D6bA21E4C4b29CA7Bfa1c344Ba1E35B8DaE7205/info.json b/blockchains/smartchain/assets/0x6D6bA21E4C4b29CA7Bfa1c344Ba1E35B8DaE7205/info.json index 3f6f56ed5ddb2..eef9c2b30ec73 100644 --- a/blockchains/smartchain/assets/0x6D6bA21E4C4b29CA7Bfa1c344Ba1E35B8DaE7205/info.json +++ b/blockchains/smartchain/assets/0x6D6bA21E4C4b29CA7Bfa1c344Ba1E35B8DaE7205/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/katanainu/katacoin-contract" }, { - "name": "twitter", - "url": "https://twitter.com/katanainu" + "name": "x", + "url": "https://x.com/katanainu" }, { "name": "telegram_news", @@ -45,4 +45,4 @@ "url": "https://coingecko.com/en/coins/katana-inu" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6D9229FcdD8Ca20D36696653D6D48110Bd328888/info.json b/blockchains/smartchain/assets/0x6D9229FcdD8Ca20D36696653D6D48110Bd328888/info.json new file mode 100644 index 0000000000000..1a4f841f52578 --- /dev/null +++ b/blockchains/smartchain/assets/0x6D9229FcdD8Ca20D36696653D6D48110Bd328888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDT", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x6d9229fcdd8ca20d36696653d6d48110bd328888", + "explorer": "https://bscscan.com/token/0x6d9229fcdd8ca20d36696653d6d48110bd328888", + "status": "spam", + "id": "0x6D9229FcdD8Ca20D36696653D6D48110Bd328888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6D949f9297A522c0f97C232CC209a67Bd7CfA471/info.json b/blockchains/smartchain/assets/0x6D949f9297A522c0f97C232CC209a67Bd7CfA471/info.json index b469522440b39..5101634e25e0f 100644 --- a/blockchains/smartchain/assets/0x6D949f9297A522c0f97C232CC209a67Bd7CfA471/info.json +++ b/blockchains/smartchain/assets/0x6D949f9297A522c0f97C232CC209a67Bd7CfA471/info.json @@ -10,8 +10,8 @@ "id": "0x6D949f9297A522c0f97C232CC209a67Bd7CfA471", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MoonRatFinance" + "name": "x", + "url": "https://x.com/MoonRatFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x6Dd60AFB2586D31Bf390450aDf5E6A9659d48c4A/info.json b/blockchains/smartchain/assets/0x6Dd60AFB2586D31Bf390450aDf5E6A9659d48c4A/info.json index 50546dc859568..c5874c67fdab4 100644 --- a/blockchains/smartchain/assets/0x6Dd60AFB2586D31Bf390450aDf5E6A9659d48c4A/info.json +++ b/blockchains/smartchain/assets/0x6Dd60AFB2586D31Bf390450aDf5E6A9659d48c4A/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/mafagafo/" }, { - "name": "twitter", - "url": "https://twitter.com/mafagafogame" + "name": "x", + "url": "https://x.com/mafagafogame" }, { "name": "whitepaper", diff --git a/blockchains/smartchain/assets/0x6E3e077A6C0E3c27fD6D00B97387D9b7Bd451BAB/info.json b/blockchains/smartchain/assets/0x6E3e077A6C0E3c27fD6D00B97387D9b7Bd451BAB/info.json new file mode 100644 index 0000000000000..2395839d558df --- /dev/null +++ b/blockchains/smartchain/assets/0x6E3e077A6C0E3c27fD6D00B97387D9b7Bd451BAB/info.json @@ -0,0 +1,24 @@ +{ + "name": "Intuit (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "INTUon is the Ondo Tokenized version of Intuit, giving tokenholders economic exposure similar to holding INTU and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x6e3e077a6c0e3c27fd6d00b97387d9b7bd451bab", + "type": "BEP20", + "symbol": "INTUon", + "decimals": 18, + "status": "active", + "id": "0x6E3e077A6C0E3c27fD6D00B97387D9b7Bd451BAB", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/intuit-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6E3e077A6C0E3c27fD6D00B97387D9b7Bd451BAB/logo.png b/blockchains/smartchain/assets/0x6E3e077A6C0E3c27fD6D00B97387D9b7Bd451BAB/logo.png new file mode 100644 index 0000000000000..7f174a20e6775 Binary files /dev/null and b/blockchains/smartchain/assets/0x6E3e077A6C0E3c27fD6D00B97387D9b7Bd451BAB/logo.png differ diff --git a/blockchains/smartchain/assets/0x6E88056E8376Ae7709496Ba64d37fa2f8015ce3e/info.json b/blockchains/smartchain/assets/0x6E88056E8376Ae7709496Ba64d37fa2f8015ce3e/info.json new file mode 100644 index 0000000000000..500ff958a98d8 --- /dev/null +++ b/blockchains/smartchain/assets/0x6E88056E8376Ae7709496Ba64d37fa2f8015ce3e/info.json @@ -0,0 +1,37 @@ +{ + "name": "DeXe", + "type": "BEP20", + "symbol": "DEXE", + "decimals": 18, + "website": "https://dexe.network/", + "description": "DeXe Protocol is a decentralized suite of permissionless tools for managing assets, products, and communities governed by $DEXE holders within DeXe Protocol DAO. It offers a no-code environment on blockchain for launching DAOs, tokens, and fundraises; AI-powered automation for decision-making; on/off-chain in a seamless space; account abstraction acting as a DAO, multi-sig or single party with numerous features for managing assets and payouts, and(or) communities.", + "explorer": "https://bscscan.com/token/0x6E88056E8376Ae7709496Ba64d37fa2f8015ce3e", + "id": "0x6E88056E8376Ae7709496Ba64d37fa2f8015ce3e", + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/dexe-network/DeXe-Protocol" + }, + { + "name": "x", + "url": "https://x.com/DexeNetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dexe/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dexe" + }, + { + "name": "telegram", + "url": "https://t.me/dexe_network_official_chat" + } + ], + "tags": [ + "governance", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6E88056E8376Ae7709496Ba64d37fa2f8015ce3e/logo.png b/blockchains/smartchain/assets/0x6E88056E8376Ae7709496Ba64d37fa2f8015ce3e/logo.png new file mode 100644 index 0000000000000..9b717a971bca4 Binary files /dev/null and b/blockchains/smartchain/assets/0x6E88056E8376Ae7709496Ba64d37fa2f8015ce3e/logo.png differ diff --git a/blockchains/smartchain/assets/0x6EDE69627c60FA7b1DbCc4428855eA2431259513/info.json b/blockchains/smartchain/assets/0x6EDE69627c60FA7b1DbCc4428855eA2431259513/info.json new file mode 100644 index 0000000000000..b4113f0897daf --- /dev/null +++ b/blockchains/smartchain/assets/0x6EDE69627c60FA7b1DbCc4428855eA2431259513/info.json @@ -0,0 +1,26 @@ +{ + "name": "ZhouKing", + "type": "BEP20", + "symbol": "ZhouKing", + "decimals": 18, + "description": "ZhouKing, $zhouking is an ambitious project that aspires to merge historical context with technological advancement. At its core, the initiative is designed to serve as a platform that offers educational insights into both the Zhou dynasty—a significant period in Chinese history—and modern web3 and crypto concepts.", + "website": "https://zhouking.top/", + "explorer": "https://bscscan.com/token/0x6ede69627c60fa7b1dbcc4428855ea2431259513", + "id": "0x6EDE69627c60FA7b1DbCc4428855eA2431259513", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/ZhouKing_coin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zhouking/" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6EDE69627c60FA7b1DbCc4428855eA2431259513/logo.png b/blockchains/smartchain/assets/0x6EDE69627c60FA7b1DbCc4428855eA2431259513/logo.png new file mode 100644 index 0000000000000..18c08453409b3 Binary files /dev/null and b/blockchains/smartchain/assets/0x6EDE69627c60FA7b1DbCc4428855eA2431259513/logo.png differ diff --git a/blockchains/smartchain/assets/0x6Ec90334d89dBdc89E08A133271be3d104128Edb/info.json b/blockchains/smartchain/assets/0x6Ec90334d89dBdc89E08A133271be3d104128Edb/info.json index fbdbe579fcaa6..3f64a252081ce 100644 --- a/blockchains/smartchain/assets/0x6Ec90334d89dBdc89E08A133271be3d104128Edb/info.json +++ b/blockchains/smartchain/assets/0x6Ec90334d89dBdc89E08A133271be3d104128Edb/info.json @@ -17,12 +17,12 @@ "url": "https://t.me/wikicatcoin" }, { - "name": "twitter", - "url": "https://twitter.com/wikicatcoin" + "name": "x", + "url": "https://x.com/wikicatcoin" }, { "name": "coinmarketcap", "url": "https://coinmarketcap.com/currencies/wiki-cat/" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6Ee270D24B593F85863E95B6a7dd916A5957719f/info.json b/blockchains/smartchain/assets/0x6Ee270D24B593F85863E95B6a7dd916A5957719f/info.json new file mode 100644 index 0000000000000..7da6d37e2d7fd --- /dev/null +++ b/blockchains/smartchain/assets/0x6Ee270D24B593F85863E95B6a7dd916A5957719f/info.json @@ -0,0 +1,20 @@ +{ + "name": "USA Rare Earth Inc. xStock", + "type": "BEP20", + "symbol": "USARx", + "decimals": 18, + "description": "USA Rare Earth Inc. xStock (USARx) is a tracker certificate issued as a freely transferable token on selected blockchains. USARx tracks the price of USA Rare Earth, Inc.. USARx is designed to give eligible investors regulatory-compliant access to the stock price of USA Rare Earth, Inc., whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x6Ee270D24B593F85863E95B6a7dd916A5957719f", + "status": "active", + "id": "0x6Ee270D24B593F85863E95B6a7dd916A5957719f", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6Ee270D24B593F85863E95B6a7dd916A5957719f/logo.png b/blockchains/smartchain/assets/0x6Ee270D24B593F85863E95B6a7dd916A5957719f/logo.png new file mode 100644 index 0000000000000..e6527437b04e5 Binary files /dev/null and b/blockchains/smartchain/assets/0x6Ee270D24B593F85863E95B6a7dd916A5957719f/logo.png differ diff --git a/blockchains/smartchain/assets/0x6F64cC61d0d5542E40e6f2828cBddA84507D214D/info.json b/blockchains/smartchain/assets/0x6F64cC61d0d5542E40e6f2828cBddA84507D214D/info.json index 66204c9a0077d..8f77a9ef3e0c4 100644 --- a/blockchains/smartchain/assets/0x6F64cC61d0d5542E40e6f2828cBddA84507D214D/info.json +++ b/blockchains/smartchain/assets/0x6F64cC61d0d5542E40e6f2828cBddA84507D214D/info.json @@ -10,8 +10,8 @@ "id": "0x6F64cC61d0d5542E40e6f2828cBddA84507D214D", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MetaniaGames" + "name": "x", + "url": "https://x.com/MetaniaGames" }, { "name": "github", @@ -64,4 +64,4 @@ "staking", "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6F75AC3b1b6Fbe8Bb5F948e25aF03620f26Ae838/info.json b/blockchains/smartchain/assets/0x6F75AC3b1b6Fbe8Bb5F948e25aF03620f26Ae838/info.json new file mode 100644 index 0000000000000..e3e9a64ff0880 --- /dev/null +++ b/blockchains/smartchain/assets/0x6F75AC3b1b6Fbe8Bb5F948e25aF03620f26Ae838/info.json @@ -0,0 +1,20 @@ +{ + "name": "Energy Select Sector SPDR Fund xStock", + "type": "BEP20", + "symbol": "XLEx", + "decimals": 18, + "description": "Energy Select Sector SPDR Fund xStock (XLEx) is a tracker certificate issued as a freely transferable token on selected blockchains. XLEx tracks the price of State Street Energy Select Sector SPDR Fund. XLEx is designed to give eligible investors regulatory-compliant access to the stock price of State Street Energy Select Sector SPDR Fund, whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x6F75AC3b1b6Fbe8Bb5F948e25aF03620f26Ae838", + "status": "active", + "id": "0x6F75AC3b1b6Fbe8Bb5F948e25aF03620f26Ae838", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6F75AC3b1b6Fbe8Bb5F948e25aF03620f26Ae838/logo.png b/blockchains/smartchain/assets/0x6F75AC3b1b6Fbe8Bb5F948e25aF03620f26Ae838/logo.png new file mode 100644 index 0000000000000..8df4c1faea54c Binary files /dev/null and b/blockchains/smartchain/assets/0x6F75AC3b1b6Fbe8Bb5F948e25aF03620f26Ae838/logo.png differ diff --git a/blockchains/smartchain/assets/0x6F769E65c14Ebd1f68817F5f1DcDb61Cfa2D6f7e/info.json b/blockchains/smartchain/assets/0x6F769E65c14Ebd1f68817F5f1DcDb61Cfa2D6f7e/info.json index 503056042612e..0143e257e8bf5 100644 --- a/blockchains/smartchain/assets/0x6F769E65c14Ebd1f68817F5f1DcDb61Cfa2D6f7e/info.json +++ b/blockchains/smartchain/assets/0x6F769E65c14Ebd1f68817F5f1DcDb61Cfa2D6f7e/info.json @@ -1,5 +1,5 @@ { - "name": "ARPA Token", + "name": "ARPA", "website": "https://arpachain.io/", "description": "ARPA is a secure computation network compatible with blockchains. It proposes a blockchain-based secure computation network of Multi-party Computation (MPC). ARPA cryptographically enables private smart contract, unprecedented data-at-use privacy protection, and scalable computational sharding.", "explorer": "https://bscscan.com/token/0x6f769e65c14ebd1f68817f5f1dcdb61cfa2d6f7e", @@ -10,8 +10,8 @@ "id": "0x6F769E65c14Ebd1f68817F5f1DcDb61Cfa2D6f7e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/arpaofficial?source=user_profile---------------------------" + "name": "x", + "url": "https://x.com/arpaofficial?source=user_profile---------------------------" }, { "name": "telegram", @@ -25,4 +25,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6FB0fcA6B108E3636bb511A2F60c2b490e54171f/info.json b/blockchains/smartchain/assets/0x6FB0fcA6B108E3636bb511A2F60c2b490e54171f/info.json new file mode 100644 index 0000000000000..9f92be655fd2d --- /dev/null +++ b/blockchains/smartchain/assets/0x6FB0fcA6B108E3636bb511A2F60c2b490e54171f/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT USDT.C", + "type": "BEP20", + "symbol": "HONEYPOT USDT.C", + "decimals": 6, + "website": "https://bscscan.com/token/0x6FB0fcA6B108E3636bb511A2F60c2b490e54171f", + "description": "HONEYPOT USDT.C", + "explorer": "https://bscscan.com/token/0x6FB0fcA6B108E3636bb511A2F60c2b490e54171f", + "status": "spam", + "id": "0x6FB0fcA6B108E3636bb511A2F60c2b490e54171f" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6FDcdfef7c496407cCb0cEC90f9C5Aaa1Cc8D888/info.json b/blockchains/smartchain/assets/0x6FDcdfef7c496407cCb0cEC90f9C5Aaa1Cc8D888/info.json index c13eefe13b523..2bdc731488b4f 100644 --- a/blockchains/smartchain/assets/0x6FDcdfef7c496407cCb0cEC90f9C5Aaa1Cc8D888/info.json +++ b/blockchains/smartchain/assets/0x6FDcdfef7c496407cCb0cEC90f9C5Aaa1Cc8D888/info.json @@ -22,8 +22,8 @@ "url": "https://www.vechain.org/whitepaper/#header" }, { - "name": "twitter", - "url": "https://twitter.com/vechainofficial" + "name": "x", + "url": "https://x.com/vechainofficial" }, { "name": "telegram", @@ -42,4 +42,4 @@ "url": "https://coingecko.com/coins/vechain" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6Fa9C0EE8a1F237466bB9CAc8466bFA2aA63A978/info.json b/blockchains/smartchain/assets/0x6Fa9C0EE8a1F237466bB9CAc8466bFA2aA63A978/info.json new file mode 100644 index 0000000000000..e073e5c81e77f --- /dev/null +++ b/blockchains/smartchain/assets/0x6Fa9C0EE8a1F237466bB9CAc8466bFA2aA63A978/info.json @@ -0,0 +1,40 @@ +{ + "name": "BiCity AI Projects", + "type": "BEP20", + "symbol": "BICITY", + "decimals": 18, + "website": "https://www.bicity.com/", + "description": "BiCity,a cutting-edge firm specializing in AI-driven projects.From crafting articles to generating visuals, editing images, and delving into sound-related AI endeavors, BiCity stands at the forefront of innovation, leveraging artificial intelligence to redefine creative processes.", + "explorer": "https://bscscan.com/token/0x6fa9c0ee8a1f237466bb9cac8466bfa2aa63a978", + "status": "active", + "id": "0x6Fa9C0EE8a1F237466bB9CAc8466bFA2aA63A978", + "links": [ + { + "name": "x", + "url": "https://x.com/bicitycom" + }, + { + "name": "telegram", + "url": "https://t.me/bicitycoinchat" + }, + { + "name": "telegram_news", + "url": "https://t.me/bicitycom" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bicity-ai-projects/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bicity-ai-projects" + }, + { + "name": "youtube", + "url": "https://youtube.com/@bicitycom" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6Fa9C0EE8a1F237466bB9CAc8466bFA2aA63A978/logo.png b/blockchains/smartchain/assets/0x6Fa9C0EE8a1F237466bB9CAc8466bFA2aA63A978/logo.png new file mode 100644 index 0000000000000..0611dd1f5abee Binary files /dev/null and b/blockchains/smartchain/assets/0x6Fa9C0EE8a1F237466bB9CAc8466bFA2aA63A978/logo.png differ diff --git a/blockchains/smartchain/assets/0x6Fb05b156788E88c8ad1e057e729362ff8c39d93/info.json b/blockchains/smartchain/assets/0x6Fb05b156788E88c8ad1e057e729362ff8c39d93/info.json index 0a7557ac135f8..717869dffdb86 100644 --- a/blockchains/smartchain/assets/0x6Fb05b156788E88c8ad1e057e729362ff8c39d93/info.json +++ b/blockchains/smartchain/assets/0x6Fb05b156788E88c8ad1e057e729362ff8c39d93/info.json @@ -1,7 +1,7 @@ { "name": "Aircoins", "website": "https://www.aircoins.io/", - "twitter": "https://twitter.com/AIRCOINS_app", + "x": "https://x.com/AIRCOINS_app", "short_description": "Airсоins is a mobile app where players can collect digital assets in AR based on geolocation.", "description": "Airсоins is a mobile app where players can collect digital assets in AR based on geolocation. Using a proof of effort algorithm players are rewarded for their effort while staying active and maintaining a healthy lifestyle.", "explorer": "https://bscscan.com/token/0x6fb05b156788e88c8ad1e057e729362ff8c39d93", diff --git a/blockchains/smartchain/assets/0x6Fc015dC3283369125cc31907eEF990b8F67a7a1/info.json b/blockchains/smartchain/assets/0x6Fc015dC3283369125cc31907eEF990b8F67a7a1/info.json index bf36061125ad4..2fd16847e39eb 100644 --- a/blockchains/smartchain/assets/0x6Fc015dC3283369125cc31907eEF990b8F67a7a1/info.json +++ b/blockchains/smartchain/assets/0x6Fc015dC3283369125cc31907eEF990b8F67a7a1/info.json @@ -10,8 +10,8 @@ "id": "0x6Fc015dC3283369125cc31907eEF990b8F67a7a1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MoonChainFinane" + "name": "x", + "url": "https://x.com/MoonChainFinane" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x6a0258127BA84b4361351be5e63E1AF2c5aB8888/info.json b/blockchains/smartchain/assets/0x6a0258127BA84b4361351be5e63E1AF2c5aB8888/info.json new file mode 100644 index 0000000000000..48aec32a21821 --- /dev/null +++ b/blockchains/smartchain/assets/0x6a0258127BA84b4361351be5e63E1AF2c5aB8888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether USD", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x6a0258127BA84b4361351be5e63E1AF2c5aB8888", + "explorer": "https://bscscan.com/token/0x6a0258127BA84b4361351be5e63E1AF2c5aB8888", + "status": "spam", + "id": "0x6a0258127BA84b4361351be5e63E1AF2c5aB8888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6a0b66710567b6beb81A71F7e9466450a91a384b/info.json b/blockchains/smartchain/assets/0x6a0b66710567b6beb81A71F7e9466450a91a384b/info.json index 06be497cce8dd..9be10d8c5eb7f 100644 --- a/blockchains/smartchain/assets/0x6a0b66710567b6beb81A71F7e9466450a91a384b/info.json +++ b/blockchains/smartchain/assets/0x6a0b66710567b6beb81A71F7e9466450a91a384b/info.json @@ -14,8 +14,8 @@ "url": "https://peardao.io/whitepaper" }, { - "name": "twitter", - "url": "https://twitter.com/officialpeardao" + "name": "x", + "url": "https://x.com/officialpeardao" }, { "name": "telegram", @@ -30,4 +30,4 @@ "defi", "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6a668332825450ACD2e449372057d31b3de16a1E/info.json b/blockchains/smartchain/assets/0x6a668332825450ACD2e449372057d31b3de16a1E/info.json new file mode 100644 index 0000000000000..e9b2f726d0162 --- /dev/null +++ b/blockchains/smartchain/assets/0x6a668332825450ACD2e449372057d31b3de16a1E/info.json @@ -0,0 +1,15 @@ +{ + "name": "Core MSCI Emerging Markets xStock", + "type": "BEP20", + "symbol": "IEMGx", + "decimals": 18, + "description": "Core MSCI Emerging Markets xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x6a668332825450ACD2e449372057d31b3de16a1E", + "status": "active", + "id": "0x6a668332825450ACD2e449372057d31b3de16a1E", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6a668332825450ACD2e449372057d31b3de16a1E/logo.png b/blockchains/smartchain/assets/0x6a668332825450ACD2e449372057d31b3de16a1E/logo.png new file mode 100644 index 0000000000000..857fe69020c3c Binary files /dev/null and b/blockchains/smartchain/assets/0x6a668332825450ACD2e449372057d31b3de16a1E/logo.png differ diff --git a/blockchains/smartchain/assets/0x6a708EAD771238919D85930b5a0f10454E1C331a/info.json b/blockchains/smartchain/assets/0x6a708EAD771238919D85930b5a0f10454E1C331a/info.json new file mode 100644 index 0000000000000..df641f91cee94 --- /dev/null +++ b/blockchains/smartchain/assets/0x6a708EAD771238919D85930b5a0f10454E1C331a/info.json @@ -0,0 +1,24 @@ +{ + "name": "SPDR S&P 500 (Ondo)", + "website": "https://ondo.finance/", + "description": "SPYon is the Ondo Tokenized version of the SPDR S&P 500 ETF, giving tokenholders economic exposure similar to holding SPY and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x6a708ead771238919d85930b5a0f10454e1c331a", + "type": "BEP20", + "symbol": "SPYon", + "decimals": 18, + "status": "active", + "id": "0x6a708EAD771238919D85930b5a0f10454E1C331a", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spdr-sp-500-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6a708EAD771238919D85930b5a0f10454E1C331a/logo.png b/blockchains/smartchain/assets/0x6a708EAD771238919D85930b5a0f10454E1C331a/logo.png new file mode 100644 index 0000000000000..8e3a7a030f642 Binary files /dev/null and b/blockchains/smartchain/assets/0x6a708EAD771238919D85930b5a0f10454E1C331a/logo.png differ diff --git a/blockchains/smartchain/assets/0x6a731582f6189477c379A8da7d26Dcec3F0a0919/info.json b/blockchains/smartchain/assets/0x6a731582f6189477c379A8da7d26Dcec3F0a0919/info.json index 012e501462010..307daa9439281 100644 --- a/blockchains/smartchain/assets/0x6a731582f6189477c379A8da7d26Dcec3F0a0919/info.json +++ b/blockchains/smartchain/assets/0x6a731582f6189477c379A8da7d26Dcec3F0a0919/info.json @@ -9,7 +9,6 @@ "status": "active", "id": "0x6a731582f6189477c379A8da7d26Dcec3F0a0919", "tags": [ - "staking-native", "gamefi" ], "links": [ @@ -18,8 +17,8 @@ "url": "https://github.com/King0fLegends" }, { - "name": "twitter", - "url": "https://twitter.com/kingofIegends" + "name": "x", + "url": "https://x.com/kingofIegends" }, { "name": "facebook", @@ -46,4 +45,4 @@ "url": "https://coingecko.com/coins/king-of-legends" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6a8Fd46F88dBD7bdC2D536C604f811C63052ce0F/info.json b/blockchains/smartchain/assets/0x6a8Fd46F88dBD7bdC2D536C604f811C63052ce0F/info.json index 95d9be0be8dc3..2af3fd9d1fe25 100644 --- a/blockchains/smartchain/assets/0x6a8Fd46F88dBD7bdC2D536C604f811C63052ce0F/info.json +++ b/blockchains/smartchain/assets/0x6a8Fd46F88dBD7bdC2D536C604f811C63052ce0F/info.json @@ -10,8 +10,8 @@ "id": "0x6a8Fd46F88dBD7bdC2D536C604f811C63052ce0F", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TRVL" + "name": "x", + "url": "https://x.com/TRVL" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x6b23C89196DeB721e6Fd9726E6C76E4810a464bc/info.json b/blockchains/smartchain/assets/0x6b23C89196DeB721e6Fd9726E6C76E4810a464bc/info.json index cd8f3cc9dd49e..acac75ebb7cc4 100644 --- a/blockchains/smartchain/assets/0x6b23C89196DeB721e6Fd9726E6C76E4810a464bc/info.json +++ b/blockchains/smartchain/assets/0x6b23C89196DeB721e6Fd9726E6C76E4810a464bc/info.json @@ -10,8 +10,8 @@ "id": "0x6b23C89196DeB721e6Fd9726E6C76E4810a464bc", "links": [ { - "name": "twitter", - "url": "https://twitter.com/xwg_games" + "name": "x", + "url": "https://x.com/xwg_games" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x6b9Cca56e783d1345785E4aA1188Bbd673E911A2/info.json b/blockchains/smartchain/assets/0x6b9Cca56e783d1345785E4aA1188Bbd673E911A2/info.json new file mode 100644 index 0000000000000..1b35cc974f835 --- /dev/null +++ b/blockchains/smartchain/assets/0x6b9Cca56e783d1345785E4aA1188Bbd673E911A2/info.json @@ -0,0 +1,20 @@ +{ + "name": "SPDR S&P Oil & Gas Exploration & Production ETF xStock", + "type": "BEP20", + "symbol": "XOPx", + "decimals": 18, + "description": "SPDR S&P Oil & Gas Exploration & Production ETF xStock (XOPx) is a tracker certificate issued as a freely transferable token on selected blockchains. XOPx tracks the price of State Street SPDR S&P Oil & Gas Exploration & Production ETF. XOPx is designed to give eligible investors regulatory-compliant access to the stock price of State Street SPDR S&P Oil & Gas Exploration & Production ETF, whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x6b9Cca56e783d1345785E4aA1188Bbd673E911A2", + "status": "active", + "id": "0x6b9Cca56e783d1345785E4aA1188Bbd673E911A2", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6b9Cca56e783d1345785E4aA1188Bbd673E911A2/logo.png b/blockchains/smartchain/assets/0x6b9Cca56e783d1345785E4aA1188Bbd673E911A2/logo.png new file mode 100644 index 0000000000000..8df4c1faea54c Binary files /dev/null and b/blockchains/smartchain/assets/0x6b9Cca56e783d1345785E4aA1188Bbd673E911A2/logo.png differ diff --git a/blockchains/smartchain/assets/0x6bfF4Fb161347ad7de4A625AE5aa3A1CA7077819/info.json b/blockchains/smartchain/assets/0x6bfF4Fb161347ad7de4A625AE5aa3A1CA7077819/info.json index cfc141f1646a3..4438f58a31be0 100644 --- a/blockchains/smartchain/assets/0x6bfF4Fb161347ad7de4A625AE5aa3A1CA7077819/info.json +++ b/blockchains/smartchain/assets/0x6bfF4Fb161347ad7de4A625AE5aa3A1CA7077819/info.json @@ -1,18 +1,31 @@ { - "name": "AdEx", - "website": "https://adex.network", - "description": "The AdEx Network aims to build a decentralized solution for digital advertising that reduces fraud, improves budgets, and protects user privacy.", + "name": "heyAura", + "website": "https://www.heyaura.com/", + "description": "heyAura is an AI Infrastructure company that’s working to build reliable AI frameworks for Web3 projects. heyAura’s flagship product is the very first Agentic copilot that can securely and privately research, plan, execute and orchestrate on-chain tasks.", "explorer": "https://bscscan.com/token/0x6bfF4Fb161347ad7de4A625AE5aa3A1CA7077819", - "research": "https://research.binance.com/en/projects/adex-network", "type": "BEP20", "symbol": "ADX", "decimals": 18, "status": "active", "id": "0x6bfF4Fb161347ad7de4A625AE5aa3A1CA7077819", + "tags": [ + "defi" + ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/AdExNetwork" + "name": "x", + "url": "https://x.com/heyaura" + }, + { "name": "github", + "url": "https://github.com/heyAuraDev/" + }, + { + "name": "blog", + "url": "https://blog.heyaura.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/adx-net/" } ] -} \ No newline at end of file +} diff --git a/blockchains/smartchain/assets/0x6bfF4Fb161347ad7de4A625AE5aa3A1CA7077819/logo.png b/blockchains/smartchain/assets/0x6bfF4Fb161347ad7de4A625AE5aa3A1CA7077819/logo.png index c219b24e34f30..0f6b84595dd04 100644 Binary files a/blockchains/smartchain/assets/0x6bfF4Fb161347ad7de4A625AE5aa3A1CA7077819/logo.png and b/blockchains/smartchain/assets/0x6bfF4Fb161347ad7de4A625AE5aa3A1CA7077819/logo.png differ diff --git a/blockchains/smartchain/assets/0x6bfd576220e8444CA4Cc5f89Efbd7f02a4C94C16/info.json b/blockchains/smartchain/assets/0x6bfd576220e8444CA4Cc5f89Efbd7f02a4C94C16/info.json index 57b17689b214b..f72fb37b2f413 100644 --- a/blockchains/smartchain/assets/0x6bfd576220e8444CA4Cc5f89Efbd7f02a4C94C16/info.json +++ b/blockchains/smartchain/assets/0x6bfd576220e8444CA4Cc5f89Efbd7f02a4C94C16/info.json @@ -10,8 +10,8 @@ "id": "0x6bfd576220e8444CA4Cc5f89Efbd7f02a4C94C16", "links": [ { - "name": "twitter", - "url": "https://twitter.com/smaugsnft" + "name": "x", + "url": "https://x.com/smaugsnft" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x6c1dE9907263F0c12261d88b65cA18F31163F29D/info.json b/blockchains/smartchain/assets/0x6c1dE9907263F0c12261d88b65cA18F31163F29D/info.json index ba99667503ee7..5d8908047c62e 100644 --- a/blockchains/smartchain/assets/0x6c1dE9907263F0c12261d88b65cA18F31163F29D/info.json +++ b/blockchains/smartchain/assets/0x6c1dE9907263F0c12261d88b65cA18F31163F29D/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/OCTIONOFFICIAL" }, { - "name": "twitter", - "url": "https://twitter.com/octionofficial" + "name": "x", + "url": "https://x.com/octionofficial" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x6c2BE0F7EE3CAa392bA661151eaa6Fb900532B07/info.json b/blockchains/smartchain/assets/0x6c2BE0F7EE3CAa392bA661151eaa6Fb900532B07/info.json new file mode 100644 index 0000000000000..5f3f26edcce63 --- /dev/null +++ b/blockchains/smartchain/assets/0x6c2BE0F7EE3CAa392bA661151eaa6Fb900532B07/info.json @@ -0,0 +1,22 @@ +{ + "name": "NeuralYield", + "type": "BEP20", + "symbol": "NYLD", + "decimals": 18, + "description": "AI-powered yield optimization on BSC. Smarter staking, higher returns, zero effort", + "website": "https://t.co/3abwW2VHXs", + "explorer": "https://bscscan.com/token/0x6c2be0f7ee3caa392ba661151eaa6fb900532b07", + "id": "0x6c2BE0F7EE3CAa392bA661151eaa6Fb900532B07", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/NeuralYield" + } + + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6c2BE0F7EE3CAa392bA661151eaa6Fb900532B07/logo.png b/blockchains/smartchain/assets/0x6c2BE0F7EE3CAa392bA661151eaa6Fb900532B07/logo.png new file mode 100644 index 0000000000000..764413b6fa5d3 Binary files /dev/null and b/blockchains/smartchain/assets/0x6c2BE0F7EE3CAa392bA661151eaa6Fb900532B07/logo.png differ diff --git a/blockchains/smartchain/assets/0x6c3e8c948bDdE791f4261AC9887cC53B18174444/info.json b/blockchains/smartchain/assets/0x6c3e8c948bDdE791f4261AC9887cC53B18174444/info.json new file mode 100644 index 0000000000000..e0eef158fccbe --- /dev/null +++ b/blockchains/smartchain/assets/0x6c3e8c948bDdE791f4261AC9887cC53B18174444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE United Stables", + "type": "BEP20", + "symbol": "FAKE U", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x6c3e8c948bDdE791f4261AC9887cC53B18174444", + "explorer": "https://bscscan.com/token/0x6c3e8c948bDdE791f4261AC9887cC53B18174444", + "status": "spam", + "id": "0x6c3e8c948bDdE791f4261AC9887cC53B18174444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6cC43ffC4d2956eD15B8cD263Ac8E9884775e7DC/info.json b/blockchains/smartchain/assets/0x6cC43ffC4d2956eD15B8cD263Ac8E9884775e7DC/info.json new file mode 100644 index 0000000000000..5ff3755002072 --- /dev/null +++ b/blockchains/smartchain/assets/0x6cC43ffC4d2956eD15B8cD263Ac8E9884775e7DC/info.json @@ -0,0 +1,18 @@ +{ + "name": "OG Binance Coin", + "type": "BEP20", + "symbol": "BNC", + "decimals": 18, + "description": "OG Binance Coin", + "website": "https://top100token.com/address/0x6cc43ffc4d2956ed15b8cd263ac8e9884775e7dc", + "explorer": "https://bscscan.com/token/0x6cc43ffc4d2956ed15b8cd263ac8e9884775e7dc", + "id": "0x6cC43ffC4d2956eD15B8cD263Ac8E9884775e7DC", + "status": "active", + "links": [ + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6cC43ffC4d2956eD15B8cD263Ac8E9884775e7DC/logo.png b/blockchains/smartchain/assets/0x6cC43ffC4d2956eD15B8cD263Ac8E9884775e7DC/logo.png new file mode 100644 index 0000000000000..130614e42ccbe Binary files /dev/null and b/blockchains/smartchain/assets/0x6cC43ffC4d2956eD15B8cD263Ac8E9884775e7DC/logo.png differ diff --git a/blockchains/smartchain/assets/0x6cC76132A84e2095c1F4f2EA71881dAEf8a75D5e/info.json b/blockchains/smartchain/assets/0x6cC76132A84e2095c1F4f2EA71881dAEf8a75D5e/info.json index 1e904c38ab3b8..7e700acb0a937 100644 --- a/blockchains/smartchain/assets/0x6cC76132A84e2095c1F4f2EA71881dAEf8a75D5e/info.json +++ b/blockchains/smartchain/assets/0x6cC76132A84e2095c1F4f2EA71881dAEf8a75D5e/info.json @@ -10,8 +10,8 @@ "id": "0x6cC76132A84e2095c1F4f2EA71881dAEf8a75D5e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/NinebotIO" + "name": "x", + "url": "https://x.com/NinebotIO" }, { "name": "telegram", @@ -25,4 +25,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6cF8e39252Bee00D168Bd25BDf5834347D78e346/info.json b/blockchains/smartchain/assets/0x6cF8e39252Bee00D168Bd25BDf5834347D78e346/info.json new file mode 100644 index 0000000000000..ddc37b4f86268 --- /dev/null +++ b/blockchains/smartchain/assets/0x6cF8e39252Bee00D168Bd25BDf5834347D78e346/info.json @@ -0,0 +1,21 @@ +{ + "name": "choise.com", + "type": "BEP20", + "symbol": "CHO", + "decimals": 18, + "website": "https://choise.com/", + "description": "Choise.com – the next step in Crypterium evolution.", + "explorer": "https://bscscan.com/token/0x6cf8e39252bee00d168bd25bdf5834347d78e346", + "status": "active", + "id": "0x6cF8e39252Bee00D168Bd25BDf5834347D78e346", + "links": [ + { + "name": "x", + "url": "https://x.com/choiseai" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/choise/" + } + ] +} diff --git a/blockchains/smartchain/assets/0x6cF8e39252Bee00D168Bd25BDf5834347D78e346/logo.png b/blockchains/smartchain/assets/0x6cF8e39252Bee00D168Bd25BDf5834347D78e346/logo.png new file mode 100644 index 0000000000000..a8ba8959b923f Binary files /dev/null and b/blockchains/smartchain/assets/0x6cF8e39252Bee00D168Bd25BDf5834347D78e346/logo.png differ diff --git a/blockchains/smartchain/assets/0x6cda2862fd4B88CCFA522FFeD66bC4277e7D9Cc9/info.json b/blockchains/smartchain/assets/0x6cda2862fd4B88CCFA522FFeD66bC4277e7D9Cc9/info.json new file mode 100644 index 0000000000000..3404fdb7129d4 --- /dev/null +++ b/blockchains/smartchain/assets/0x6cda2862fd4B88CCFA522FFeD66bC4277e7D9Cc9/info.json @@ -0,0 +1,40 @@ +{ + "name": "Neurashi", + "website": "https://Neurashi.com", + "description": "Neurashi is a contemporary and steadfast AI blockchain framework that integrates the robustness of blockchain infrastructure with the nexus of artificial intelligence (AI).", + "explorer": "https://bscscan.com/token/0x6cda2862fd4B88CCFA522FFeD66bC4277e7D9Cc9", + "type": "BEP20", + "symbol": "NEI", + "decimals": 18, + "status": "abandoned", + "id": "0x6cda2862fd4B88CCFA522FFeD66bC4277e7D9Cc9", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/neurashi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/neurashi/" + }, + { + "name": "telegram", + "url": "https://t.me/neurashi" + }, + { + "name": "github", + "url": "https://github.com/Neurashi" + }, + { + "name": "whitepaper", + "url": "https://neurashi.com/whitepaper/" + }, + { + "name": "medium", + "url": "https://neurashi.medium.com/" + } + ] +} diff --git a/blockchains/smartchain/assets/0x6cf271270662be1C4fc1b7BB7D7D7Fc60Cc19125/info.json b/blockchains/smartchain/assets/0x6cf271270662be1C4fc1b7BB7D7D7Fc60Cc19125/info.json index b8c9387d380a1..66a95e44228f7 100644 --- a/blockchains/smartchain/assets/0x6cf271270662be1C4fc1b7BB7D7D7Fc60Cc19125/info.json +++ b/blockchains/smartchain/assets/0x6cf271270662be1C4fc1b7BB7D7D7Fc60Cc19125/info.json @@ -10,8 +10,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/Kuncicoin_id" + "name": "x", + "url": "https://x.com/Kuncicoin_id" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x6d3A0Fb0070EA61F901eBc0b675c30450ACAc737/info.json b/blockchains/smartchain/assets/0x6d3A0Fb0070EA61F901eBc0b675c30450ACAc737/info.json index 364981ec4c0a0..c1a4c54e6b39f 100644 --- a/blockchains/smartchain/assets/0x6d3A0Fb0070EA61F901eBc0b675c30450ACAc737/info.json +++ b/blockchains/smartchain/assets/0x6d3A0Fb0070EA61F901eBc0b675c30450ACAc737/info.json @@ -10,8 +10,8 @@ "id": "0x6d3A0Fb0070EA61F901eBc0b675c30450ACAc737", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Aether_Crypto" + "name": "x", + "url": "https://x.com/Aether_Crypto" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2/info.json b/blockchains/smartchain/assets/0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2/info.json new file mode 100644 index 0000000000000..1562758fbca41 --- /dev/null +++ b/blockchains/smartchain/assets/0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2/info.json @@ -0,0 +1,24 @@ +{ + "name": "Palantir tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Oracle xStock (ORCLx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. ORCLx tracks the price of Oracle Corporation (the underlying). ORCLx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Oracle Corporation, whilst maintaining the benefits of blockchain technology. Oracle Corporation is a large, publicly-held multinational company headquartered in Austin, Texas, offering enterprise applications and cloud infrastructure.", + "explorer": "https://bscscan.com/token/0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2", + "type": "BEP20", + "symbol": "PLTRX", + "decimals": 18, + "status": "active", + "id": "0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/palantir-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2/logo.png b/blockchains/smartchain/assets/0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2/logo.png new file mode 100644 index 0000000000000..da0a1030f73b4 Binary files /dev/null and b/blockchains/smartchain/assets/0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2/logo.png differ diff --git a/blockchains/smartchain/assets/0x6d5AD1592ed9D6D1dF9b93c793AB759573Ed6714/info.json b/blockchains/smartchain/assets/0x6d5AD1592ed9D6D1dF9b93c793AB759573Ed6714/info.json new file mode 100644 index 0000000000000..b9fbd8c5fd740 --- /dev/null +++ b/blockchains/smartchain/assets/0x6d5AD1592ed9D6D1dF9b93c793AB759573Ed6714/info.json @@ -0,0 +1,20 @@ +{ + "name": "CZ'S DOG", + "website": "https://www.broccoli.gg/", + "description": "The story of $BROCCOLI isn’t just another meme coin launch", + "explorer": "https://bscscan.com/token/0x6d5AD1592ed9D6D1dF9b93c793AB759573Ed6714", + "type": "BEP20", + "symbol": "Broccoli", + "decimals": 18, + "status": "active", + "id": "0x6d5AD1592ed9D6D1dF9b93c793AB759573Ed6714", + "tags": [ + "memes" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/BroccoliCTO_BNB" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6d5AD1592ed9D6D1dF9b93c793AB759573Ed6714/logo.png b/blockchains/smartchain/assets/0x6d5AD1592ed9D6D1dF9b93c793AB759573Ed6714/logo.png new file mode 100644 index 0000000000000..402424a14d11c Binary files /dev/null and b/blockchains/smartchain/assets/0x6d5AD1592ed9D6D1dF9b93c793AB759573Ed6714/logo.png differ diff --git a/blockchains/smartchain/assets/0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C/info.json b/blockchains/smartchain/assets/0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C/info.json new file mode 100644 index 0000000000000..5d1498fa044d9 --- /dev/null +++ b/blockchains/smartchain/assets/0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C/info.json @@ -0,0 +1,15 @@ +{ + "name": "Vanguard Total World xStock", + "type": "BEP20", + "symbol": "VTx", + "decimals": 18, + "description": "Vanguard Total World xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C", + "status": "active", + "id": "0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C/logo.png b/blockchains/smartchain/assets/0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C/logo.png new file mode 100644 index 0000000000000..5968d83be9311 Binary files /dev/null and b/blockchains/smartchain/assets/0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C/logo.png differ diff --git a/blockchains/smartchain/assets/0x6d8058cDaa406Ea4924D47B48F2ef5f18d35637c/info.json b/blockchains/smartchain/assets/0x6d8058cDaa406Ea4924D47B48F2ef5f18d35637c/info.json new file mode 100644 index 0000000000000..ad432ec50ba6e --- /dev/null +++ b/blockchains/smartchain/assets/0x6d8058cDaa406Ea4924D47B48F2ef5f18d35637c/info.json @@ -0,0 +1,25 @@ +{ + "name": "GRAB", + "type": "BEP20", + "symbol": "GRAB", + "decimals": 18, + "website": "https://grabway.site/", + "description": "GrabWay was created to provide drivers, gig workers, and frequent travelers with the opportunity to monetize their daily commutes. By harnessing advanced blockchain technology and GPS tracking, GrabWay transforms ordinary travel into a rewarding experience. Whether youre driving for work or moving around the city, GrabWay allows you to convert your movements into valuable rewards, offering a seamless and innovative way to earn as you go.", + "explorer": "https://bscscan.com/token/0x6d8058cdaa406ea4924d47b48f2ef5f18d35637c", + "status": "active", + "id": "0x6d8058cDaa406Ea4924D47B48F2ef5f18d35637c", + "links": [ + { + "name": "x", + "url": "https://x.com/GrabWayOfficial" + }, + { + "name": "telegram", + "url": "https://t.me/GrabWayCommunity" + } + ], + "tags": [ + "nft", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6d8058cDaa406Ea4924D47B48F2ef5f18d35637c/logo.png b/blockchains/smartchain/assets/0x6d8058cDaa406Ea4924D47B48F2ef5f18d35637c/logo.png new file mode 100644 index 0000000000000..22b291b880982 Binary files /dev/null and b/blockchains/smartchain/assets/0x6d8058cDaa406Ea4924D47B48F2ef5f18d35637c/logo.png differ diff --git a/blockchains/smartchain/assets/0x6d9fB3332f62Fc044d5075feEeA597A92F1ce0AD/info.json b/blockchains/smartchain/assets/0x6d9fB3332f62Fc044d5075feEeA597A92F1ce0AD/info.json index 79ba2865a7805..603cd45ca1ac0 100644 --- a/blockchains/smartchain/assets/0x6d9fB3332f62Fc044d5075feEeA597A92F1ce0AD/info.json +++ b/blockchains/smartchain/assets/0x6d9fB3332f62Fc044d5075feEeA597A92F1ce0AD/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/BabyDogeBillionaire" }, { - "name": "twitter", - "url": "https://twitter.com/BabyDogeBLN" + "name": "x", + "url": "https://x.com/BabyDogeBLN" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x6dAd06eed8b054EFaDcc24b8045678e4f939b831/info.json b/blockchains/smartchain/assets/0x6dAd06eed8b054EFaDcc24b8045678e4f939b831/info.json new file mode 100644 index 0000000000000..a2777d2556c5b --- /dev/null +++ b/blockchains/smartchain/assets/0x6dAd06eed8b054EFaDcc24b8045678e4f939b831/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT The Mascot of Aster Dex", + "website": "https://bscscan.com/token/0x6dAd06eed8b054EFaDcc24b8045678e4f939b831", + "description": "HONEYPOT DUST", + "explorer": "https://bscscan.com/token/0x6dAd06eed8b054EFaDcc24b8045678e4f939b831", + "type": "BEP20", + "symbol": "HONEYPOT DUST", + "decimals": 18, + "status": "spam", + "id": "0x6dAd06eed8b054EFaDcc24b8045678e4f939b831" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6dEa3De191a58B93FB442306f97DE446F39D8888/info.json b/blockchains/smartchain/assets/0x6dEa3De191a58B93FB442306f97DE446F39D8888/info.json new file mode 100644 index 0000000000000..00feabe14d078 --- /dev/null +++ b/blockchains/smartchain/assets/0x6dEa3De191a58B93FB442306f97DE446F39D8888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether USD", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x6dEa3De191a58B93FB442306f97DE446F39D8888", + "explorer": "https://bscscan.com/token/0x6dEa3De191a58B93FB442306f97DE446F39D8888", + "status": "spam", + "id": "0x6dEa3De191a58B93FB442306f97DE446F39D8888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6db3972c6a5535708e7A4F7Ad52F24d178D9A93e/info.json b/blockchains/smartchain/assets/0x6db3972c6a5535708e7A4F7Ad52F24d178D9A93e/info.json index 2e908f0b2ebe6..d28814d12a733 100644 --- a/blockchains/smartchain/assets/0x6db3972c6a5535708e7A4F7Ad52F24d178D9A93e/info.json +++ b/blockchains/smartchain/assets/0x6db3972c6a5535708e7A4F7Ad52F24d178D9A93e/info.json @@ -10,8 +10,8 @@ "id": "0x6db3972c6a5535708e7A4F7Ad52F24d178D9A93e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/DRIVENprotocol" + "name": "x", + "url": "https://x.com/DRIVENprotocol" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x6dc3d0D6EC970BF5522611D8eFF127145D02b675/info.json b/blockchains/smartchain/assets/0x6dc3d0D6EC970BF5522611D8eFF127145D02b675/info.json index dc20d14b38aaa..55b9059e89ff5 100644 --- a/blockchains/smartchain/assets/0x6dc3d0D6EC970BF5522611D8eFF127145D02b675/info.json +++ b/blockchains/smartchain/assets/0x6dc3d0D6EC970BF5522611D8eFF127145D02b675/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/revolotto" }, { - "name": "twitter", - "url": "https://twitter.com/revolotto" + "name": "x", + "url": "https://x.com/revolotto" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x6e02Be885FcA1138038420fDdD4B41C59a8Cea6D/info.json b/blockchains/smartchain/assets/0x6e02Be885FcA1138038420fDdD4B41C59a8Cea6D/info.json new file mode 100644 index 0000000000000..1cfa48c68f7aa --- /dev/null +++ b/blockchains/smartchain/assets/0x6e02Be885FcA1138038420fDdD4B41C59a8Cea6D/info.json @@ -0,0 +1,21 @@ +{ + "name": "Smart Block Chain City", + "type": "BEP20", + "symbol": "SBCC", + "decimals": 18, + "website": "https://sbcc.world/", + "description": "SBCC project is a blockchain infrastructure project aimed at ushering in smart city life through its proprietary Smart Wall Pad app to control IoT devices at home, manage administrative services at residence complex, participate in resident community and commerce activities in the proximity", + "explorer": "https://bscscan.com/token/0x6e02Be885FcA1138038420fDdD4B41C59a8Cea6D", + "status": "active", + "id": "0x6e02Be885FcA1138038420fDdD4B41C59a8Cea6D", + "links": [ + { + "name": "x", + "url": "https://x.com/SBCC_Blockchain" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/smart-block-chain-city/" + } + ] +} diff --git a/blockchains/smartchain/assets/0x6e02Be885FcA1138038420fDdD4B41C59a8Cea6D/logo.png b/blockchains/smartchain/assets/0x6e02Be885FcA1138038420fDdD4B41C59a8Cea6D/logo.png new file mode 100644 index 0000000000000..9f09dc8101da2 Binary files /dev/null and b/blockchains/smartchain/assets/0x6e02Be885FcA1138038420fDdD4B41C59a8Cea6D/logo.png differ diff --git a/blockchains/smartchain/assets/0x6e0AAfB414B620e096B9F7Fe85625D3E5cE41d3F/info.json b/blockchains/smartchain/assets/0x6e0AAfB414B620e096B9F7Fe85625D3E5cE41d3F/info.json new file mode 100644 index 0000000000000..a9e0781c33968 --- /dev/null +++ b/blockchains/smartchain/assets/0x6e0AAfB414B620e096B9F7Fe85625D3E5cE41d3F/info.json @@ -0,0 +1,20 @@ +{ + "name": "Vanguard Growth ETF xStock", + "type": "BEP20", + "symbol": "VUGx", + "decimals": 18, + "description": "Vanguard Growth ETF xStock (VUGx) is a tracker certificate issued as a freely transferable token on selected blockchains. VUGx tracks the price of Vanguard Growth ETF. VUGx is designed to give eligible investors regulatory-compliant access to the stock price of Vanguard Growth ETF, whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x6e0AAfB414B620e096B9F7Fe85625D3E5cE41d3F", + "status": "active", + "id": "0x6e0AAfB414B620e096B9F7Fe85625D3E5cE41d3F", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6e0AAfB414B620e096B9F7Fe85625D3E5cE41d3F/logo.png b/blockchains/smartchain/assets/0x6e0AAfB414B620e096B9F7Fe85625D3E5cE41d3F/logo.png new file mode 100644 index 0000000000000..b6532cf8457d3 Binary files /dev/null and b/blockchains/smartchain/assets/0x6e0AAfB414B620e096B9F7Fe85625D3E5cE41d3F/logo.png differ diff --git a/blockchains/smartchain/assets/0x6e4a971B81CA58045a2AA982EaA3d50C4Ac38F42/info.json b/blockchains/smartchain/assets/0x6e4a971B81CA58045a2AA982EaA3d50C4Ac38F42/info.json index a9fa762dbfa1c..d3abf8052eeab 100644 --- a/blockchains/smartchain/assets/0x6e4a971B81CA58045a2AA982EaA3d50C4Ac38F42/info.json +++ b/blockchains/smartchain/assets/0x6e4a971B81CA58045a2AA982EaA3d50C4Ac38F42/info.json @@ -6,15 +6,15 @@ "type": "BEP20", "symbol": "BRG", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x6e4a971B81CA58045a2AA982EaA3d50C4Ac38F42", "tags": [ "defi" ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/bridge_oracle" + "name": "x", + "url": "https://x.com/bridge_oracle" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x6e4a971B81CA58045a2AA982EaA3d50C4Ac38F42/logo.png b/blockchains/smartchain/assets/0x6e4a971B81CA58045a2AA982EaA3d50C4Ac38F42/logo.png deleted file mode 100644 index 514a2adb2071a..0000000000000 Binary files a/blockchains/smartchain/assets/0x6e4a971B81CA58045a2AA982EaA3d50C4Ac38F42/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x6ec07DbD9311975b8002079d70C6F6d9E3e1EE5C/info.json b/blockchains/smartchain/assets/0x6ec07DbD9311975b8002079d70C6F6d9E3e1EE5C/info.json new file mode 100644 index 0000000000000..c4bc5f2bdd9c5 --- /dev/null +++ b/blockchains/smartchain/assets/0x6ec07DbD9311975b8002079d70C6F6d9E3e1EE5C/info.json @@ -0,0 +1,21 @@ +{ + "name": "Baby Troll", + "type": "BEP20", + "symbol": "BabyTroll", + "decimals": 9, + "website": "https://www.babytroll.ai/", + "description": "Baby Troll is a meme token whereby 1% percentage of every transaction contributes to the liquidity pool, ensuring stability and liquidity for Baby Troll Tokens.", + "explorer": "https://bscscan.com/token/0x6ec07DbD9311975b8002079d70C6F6d9E3e1EE5C", + "status": "active", + "id": "0x6ec07DbD9311975b8002079d70C6F6d9E3e1EE5C", + "links": [ + { + "name": "x", + "url": "https://x.com/BabyTrollBsc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/baby-troll/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6ec07DbD9311975b8002079d70C6F6d9E3e1EE5C/logo.png b/blockchains/smartchain/assets/0x6ec07DbD9311975b8002079d70C6F6d9E3e1EE5C/logo.png new file mode 100644 index 0000000000000..45dad943cad6c Binary files /dev/null and b/blockchains/smartchain/assets/0x6ec07DbD9311975b8002079d70C6F6d9E3e1EE5C/logo.png differ diff --git a/blockchains/smartchain/assets/0x6ec6968D9869e024c7B05429fFcB8e8794c610c6/info.json b/blockchains/smartchain/assets/0x6ec6968D9869e024c7B05429fFcB8e8794c610c6/info.json new file mode 100644 index 0000000000000..5c6614966b067 --- /dev/null +++ b/blockchains/smartchain/assets/0x6ec6968D9869e024c7B05429fFcB8e8794c610c6/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Euro Finance", + "type": "BEP20", + "symbol": "FAKE EURC", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x6ec6968D9869e024c7B05429fFcB8e8794c610c6", + "explorer": "https://bscscan.com/token/0x6ec6968D9869e024c7B05429fFcB8e8794c610c6", + "status": "spam", + "id": "0x6ec6968D9869e024c7B05429fFcB8e8794c610c6" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6ef238E9E8CD2A96740897761C18894Fc086B9d0/info.json b/blockchains/smartchain/assets/0x6ef238E9E8CD2A96740897761C18894Fc086B9d0/info.json index 0859d9a16881f..56c0ef3f16b09 100644 --- a/blockchains/smartchain/assets/0x6ef238E9E8CD2A96740897761C18894Fc086B9d0/info.json +++ b/blockchains/smartchain/assets/0x6ef238E9E8CD2A96740897761C18894Fc086B9d0/info.json @@ -10,8 +10,8 @@ "id": "0x6ef238E9E8CD2A96740897761C18894Fc086B9d0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/mytheria_MYRA" + "name": "x", + "url": "https://x.com/mytheria_MYRA" }, { "name": "telegram", @@ -37,4 +37,4 @@ "tags": [ "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6f28Cb07790c1049ecd7482d09Fd13B977B47201/info.json b/blockchains/smartchain/assets/0x6f28Cb07790c1049ecd7482d09Fd13B977B47201/info.json new file mode 100644 index 0000000000000..ffba01568f72a --- /dev/null +++ b/blockchains/smartchain/assets/0x6f28Cb07790c1049ecd7482d09Fd13B977B47201/info.json @@ -0,0 +1,24 @@ +{ + "name": "Global X US Infrastructure Development ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "PAVEon", + "decimals": 18, + "description": "PAVEon is the Ondo Tokenized version of the Global X US Infrastructure Development ETF, giving tokenholders economic exposure similar to holding PAVE and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x6f28Cb07790c1049ecd7482d09Fd13B977B47201", + "status": "active", + "id": "0x6f28Cb07790c1049ecd7482d09Fd13B977B47201", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/global-x-us-infrastructure-development-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6f28Cb07790c1049ecd7482d09Fd13B977B47201/logo.png b/blockchains/smartchain/assets/0x6f28Cb07790c1049ecd7482d09Fd13B977B47201/logo.png new file mode 100644 index 0000000000000..6767ada84d412 Binary files /dev/null and b/blockchains/smartchain/assets/0x6f28Cb07790c1049ecd7482d09Fd13B977B47201/logo.png differ diff --git a/blockchains/smartchain/assets/0x6f373cD69c329B1DA2e00b861Ad950e59454aa18/info.json b/blockchains/smartchain/assets/0x6f373cD69c329B1DA2e00b861Ad950e59454aa18/info.json index 542924dc796b2..86ec3b9ea6d37 100644 --- a/blockchains/smartchain/assets/0x6f373cD69c329B1DA2e00b861Ad950e59454aa18/info.json +++ b/blockchains/smartchain/assets/0x6f373cD69c329B1DA2e00b861Ad950e59454aa18/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/DogeYellowCoin1" + "name": "x", + "url": "https://x.com/DogeYellowCoin1" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x6f9F0c4ad9Af7EbD61Ac5A1D4e0F2227F7B0E5f9/info.json b/blockchains/smartchain/assets/0x6f9F0c4ad9Af7EbD61Ac5A1D4e0F2227F7B0E5f9/info.json index 42bd4ebec4a5c..c09edd5d27959 100644 --- a/blockchains/smartchain/assets/0x6f9F0c4ad9Af7EbD61Ac5A1D4e0F2227F7B0E5f9/info.json +++ b/blockchains/smartchain/assets/0x6f9F0c4ad9Af7EbD61Ac5A1D4e0F2227F7B0E5f9/info.json @@ -10,8 +10,8 @@ "id": "0x6f9F0c4ad9Af7EbD61Ac5A1D4e0F2227F7B0E5f9", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Era7_official" + "name": "x", + "url": "https://x.com/Era7_official" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x6fD2854CD1B05b8eB5F6d25C714184a92FEdAf4f/info.json b/blockchains/smartchain/assets/0x6fD2854CD1B05b8eB5F6d25C714184a92FEdAf4f/info.json new file mode 100644 index 0000000000000..5c7fd0623d596 --- /dev/null +++ b/blockchains/smartchain/assets/0x6fD2854CD1B05b8eB5F6d25C714184a92FEdAf4f/info.json @@ -0,0 +1,17 @@ +{ + "name": "O-megax", + "symbol": "O-megax", + "type": "BEP20", + "decimals": 18, + "description": "OmegaX Health puts an always-available AI doctor on your phone—offering personalized health advice, instant symptom checks, and proactive wellness coaching", + "website": "https://www.omegax.health/", + "explorer": "https://bscscan.com/token/0x6fd2854cd1b05b8eb5f6d25c714184a92fedaf4f", + "status": "active", + "id": "0x6fD2854CD1B05b8eB5F6d25C714184a92FEdAf4f", + "links": [ + { + "name": "x", + "url": "https://x.com/OmegaXhealth" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6fD2854CD1B05b8eB5F6d25C714184a92FEdAf4f/logo.png b/blockchains/smartchain/assets/0x6fD2854CD1B05b8eB5F6d25C714184a92FEdAf4f/logo.png new file mode 100644 index 0000000000000..1bbe1734f3bc1 Binary files /dev/null and b/blockchains/smartchain/assets/0x6fD2854CD1B05b8eB5F6d25C714184a92FEdAf4f/logo.png differ diff --git a/blockchains/smartchain/assets/0x6fc68DeF64cA4cA7136B08b90BEA8655bAE78888/info.json b/blockchains/smartchain/assets/0x6fc68DeF64cA4cA7136B08b90BEA8655bAE78888/info.json new file mode 100644 index 0000000000000..d4b2782d86ded --- /dev/null +++ b/blockchains/smartchain/assets/0x6fc68DeF64cA4cA7136B08b90BEA8655bAE78888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tеthеr", + "type": "BEP20", + "symbol": "FAKE ՍSDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x6fc68DeF64cA4cA7136B08b90BEA8655bAE78888", + "explorer": "https://bscscan.com/token/0x6fc68DeF64cA4cA7136B08b90BEA8655bAE78888", + "status": "spam", + "id": "0x6fc68DeF64cA4cA7136B08b90BEA8655bAE78888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6fd7c98458a943f469E1Cf4eA85B173f5Cd342F4/info.json b/blockchains/smartchain/assets/0x6fd7c98458a943f469E1Cf4eA85B173f5Cd342F4/info.json index c4930e2106a1d..4228d60844ac5 100644 --- a/blockchains/smartchain/assets/0x6fd7c98458a943f469E1Cf4eA85B173f5Cd342F4/info.json +++ b/blockchains/smartchain/assets/0x6fd7c98458a943f469E1Cf4eA85B173f5Cd342F4/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/BHCHappiness/" }, { - "name": "twitter", - "url": "https://twitter.com/BHC_Happiness" + "name": "x", + "url": "https://x.com/BHC_Happiness" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x7048F5227b032326cC8DBC53cF3FdDD947a2c757/info.json b/blockchains/smartchain/assets/0x7048F5227b032326cC8DBC53cF3FdDD947a2c757/info.json new file mode 100644 index 0000000000000..666653a4f67ef --- /dev/null +++ b/blockchains/smartchain/assets/0x7048F5227b032326cC8DBC53cF3FdDD947a2c757/info.json @@ -0,0 +1,24 @@ +{ + "name": "Netflix (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "NFLXon is the Ondo Tokenized version of Netflix, giving tokenholders economic exposure similar to holding NFLX and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x7048f5227b032326cc8dbc53cf3fddd947a2c757", + "type": "BEP20", + "symbol": "NFLXon", + "decimals": 18, + "status": "active", + "id": "0x7048F5227b032326cC8DBC53cF3FdDD947a2c757", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/netflix-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7048F5227b032326cC8DBC53cF3FdDD947a2c757/logo.png b/blockchains/smartchain/assets/0x7048F5227b032326cC8DBC53cF3FdDD947a2c757/logo.png new file mode 100644 index 0000000000000..79a10787b6007 Binary files /dev/null and b/blockchains/smartchain/assets/0x7048F5227b032326cC8DBC53cF3FdDD947a2c757/logo.png differ diff --git a/blockchains/smartchain/assets/0x706954491EBFD6b38e5B1e6F079dBEfae0F5EBa0/info.json b/blockchains/smartchain/assets/0x706954491EBFD6b38e5B1e6F079dBEfae0F5EBa0/info.json index 257da80ce697b..67b932e149f65 100644 --- a/blockchains/smartchain/assets/0x706954491EBFD6b38e5B1e6F079dBEfae0F5EBa0/info.json +++ b/blockchains/smartchain/assets/0x706954491EBFD6b38e5B1e6F079dBEfae0F5EBa0/info.json @@ -1,7 +1,7 @@ { "name": "Charizard Token", "website": "https://charizardtoken.com/", - "twitter": "https://twitter.com/CharizardToken", + "x": "https://x.com/CharizardToken", "description": "The Charizard Token is a deflationary cryptocurrency, a 5% tax is applied to each transaction made using CHZ006.", "explorer": "https://bscscan.com/token/0x706954491ebfd6b38e5b1e6f079dbefae0f5eba0", "type": "BEP20", diff --git a/blockchains/smartchain/assets/0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402/info.json b/blockchains/smartchain/assets/0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402/info.json index dedf002d31136..6f07e3013c898 100644 --- a/blockchains/smartchain/assets/0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402/info.json +++ b/blockchains/smartchain/assets/0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402/info.json @@ -1,5 +1,5 @@ { - "name": "BNB pegged Polkadot Token", + "name": "Polkadot", "website": "https://polkadot.network", "description": "Polkadot is a blockchain project that aims to connect blockchains, to enable the transfer of value and logic across chains.", "explorer": "https://bscscan.com/token/0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402", diff --git a/blockchains/smartchain/assets/0x708C671Aa997da536869B50B6C67FA0C32Ce80B2/info.json b/blockchains/smartchain/assets/0x708C671Aa997da536869B50B6C67FA0C32Ce80B2/info.json index f0d17cf011d86..b6e13dd3e579a 100644 --- a/blockchains/smartchain/assets/0x708C671Aa997da536869B50B6C67FA0C32Ce80B2/info.json +++ b/blockchains/smartchain/assets/0x708C671Aa997da536869B50B6C67FA0C32Ce80B2/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/curate" }, { - "name": "twitter", - "url": "https://twitter.com/curateproject" + "name": "x", + "url": "https://x.com/curateproject" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x709A6bB090b8C4C72Cb44533624F3DF320a8bA80/info.json b/blockchains/smartchain/assets/0x709A6bB090b8C4C72Cb44533624F3DF320a8bA80/info.json new file mode 100644 index 0000000000000..bfd03eab1f2b5 --- /dev/null +++ b/blockchains/smartchain/assets/0x709A6bB090b8C4C72Cb44533624F3DF320a8bA80/info.json @@ -0,0 +1,30 @@ +{ + "name": "Baby Broccoli", + "type": "BEP20", + "symbol": "Baby Broccoli", + "decimals": 18, + "description": "BabyBroccoli Coin (BabyBroccoli) is a fun and community-driven meme token inspired by CZ’s dog, Broccoli. Designed for entertainment and engagement, the token brings together meme enthusiasts and crypto lovers from around the world. While its primary goal is to foster a strong community, future developments may introduce innovative utilities, potentially incorporating AI-driven features or Telegram mini-app integrations.", + "website": "https://www.baby-broccoli.com/", + "explorer": "https://bscscan.com/token/0x709A6bB090b8C4C72Cb44533624F3DF320a8bA80", + "id": "0x709A6bB090b8C4C72Cb44533624F3DF320a8bA80", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/bnbabybroccoli" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/babybroccoli-bnb/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/baby-broccoli" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x709A6bB090b8C4C72Cb44533624F3DF320a8bA80/logo.png b/blockchains/smartchain/assets/0x709A6bB090b8C4C72Cb44533624F3DF320a8bA80/logo.png new file mode 100644 index 0000000000000..94d11b52d0044 Binary files /dev/null and b/blockchains/smartchain/assets/0x709A6bB090b8C4C72Cb44533624F3DF320a8bA80/logo.png differ diff --git a/blockchains/smartchain/assets/0x70B6C6A555507EE4ac91C15E5c80b7dc8FF3b489/info.json b/blockchains/smartchain/assets/0x70B6C6A555507EE4ac91C15E5c80b7dc8FF3b489/info.json index f36cf1c306704..0afc8e77a15f8 100644 --- a/blockchains/smartchain/assets/0x70B6C6A555507EE4ac91C15E5c80b7dc8FF3b489/info.json +++ b/blockchains/smartchain/assets/0x70B6C6A555507EE4ac91C15E5c80b7dc8FF3b489/info.json @@ -10,8 +10,8 @@ "id": "0x70B6C6A555507EE4ac91C15E5c80b7dc8FF3b489", "links": [ { - "name": "twitter", - "url": "https://twitter.com/xtblockio" + "name": "x", + "url": "https://x.com/xtblockio" }, { "name": "whitepaper", @@ -21,4 +21,4 @@ "tags": [ "deflationary" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x70D8d5B3416888fD05e806195312DD2D9597d50C/info.json b/blockchains/smartchain/assets/0x70D8d5B3416888fD05e806195312DD2D9597d50C/info.json index 3cc80c9523a6f..27b2599d637d7 100644 --- a/blockchains/smartchain/assets/0x70D8d5B3416888fD05e806195312DD2D9597d50C/info.json +++ b/blockchains/smartchain/assets/0x70D8d5B3416888fD05e806195312DD2D9597d50C/info.json @@ -5,8 +5,8 @@ "explorer": "https://bscscan.com/token/0x70d8d5b3416888fd05e806195312dd2d9597d50c", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Metaxiz_MEXI" + "name": "x", + "url": "https://x.com/Metaxiz_MEXI" }, { "name": "telegram", @@ -41,4 +41,4 @@ "decimals": 18, "status": "active", "id": "0x70D8d5B3416888fD05e806195312DD2D9597d50C" -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x70bd780076E25D087Ed9c35f4e4A540522Abe8cF/info.json b/blockchains/smartchain/assets/0x70bd780076E25D087Ed9c35f4e4A540522Abe8cF/info.json new file mode 100644 index 0000000000000..95ead10241789 --- /dev/null +++ b/blockchains/smartchain/assets/0x70bd780076E25D087Ed9c35f4e4A540522Abe8cF/info.json @@ -0,0 +1,28 @@ +{ + "name": "Denison Mines (Ondo Tokenized)", + "type": "BEP20", + "symbol": "DNNon", + "decimals": 18, + "description": "DNNon is the Ondo Tokenized version of Denison Mines, giving tokenholders economic exposure similar to holding DNN and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x70bd780076E25D087Ed9c35f4e4A540522Abe8cF", + "status": "active", + "id": "0x70bd780076E25D087Ed9c35f4e4A540522Abe8cF", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/denison-mines-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/denison-mines-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x70bd780076E25D087Ed9c35f4e4A540522Abe8cF/logo.png b/blockchains/smartchain/assets/0x70bd780076E25D087Ed9c35f4e4A540522Abe8cF/logo.png new file mode 100644 index 0000000000000..b3759cdc423d6 Binary files /dev/null and b/blockchains/smartchain/assets/0x70bd780076E25D087Ed9c35f4e4A540522Abe8cF/logo.png differ diff --git a/blockchains/smartchain/assets/0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c/info.json b/blockchains/smartchain/assets/0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c/info.json index 3dad5ac8f3a0a..3203686df882d 100644 --- a/blockchains/smartchain/assets/0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c/info.json +++ b/blockchains/smartchain/assets/0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c/info.json @@ -18,8 +18,8 @@ "url": "https://github.com/binance-chain/" }, { - "name": "twitter", - "url": "https://twitter.com/binance_dex" + "name": "x", + "url": "https://x.com/binance_dex" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x7138b48df7D98D7e3cc221BfE7192D0a178182D8/info.json b/blockchains/smartchain/assets/0x7138b48df7D98D7e3cc221BfE7192D0a178182D8/info.json new file mode 100644 index 0000000000000..f82bf7bbcb952 --- /dev/null +++ b/blockchains/smartchain/assets/0x7138b48df7D98D7e3cc221BfE7192D0a178182D8/info.json @@ -0,0 +1,20 @@ +{ + "name": "State Street SPDR S&P 500 ETF Tokenized bStocks", + "type": "BEP20", + "symbol": "SPYB", + "decimals": 18, + "description": "SPYB is a tokenized bStocks that gives you economic exposure to State Street SPDR S&P 500 ETF Tokenized bStocks, and the right to convert to the underlying security on the Binance.com platform subject to applicable laws. Each token is fully backed by the corresponding underlying equity maintained by the Issuer at a US-regulated broker-dealer. You get the price movements, dividends, and the right to convert the token at 1:1 to the underlying share — tradeable 24/7.", + "website": "https://www.bstocks.finance/en/", + "explorer": "https://bscscan.com/token/0x7138b48df7D98D7e3cc221BfE7192D0a178182D8", + "status": "active", + "id": "0x7138b48df7D98D7e3cc221BfE7192D0a178182D8", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/state-street-spdr-sp-500-etf-tokenized-bstocks/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7138b48df7D98D7e3cc221BfE7192D0a178182D8/logo.png b/blockchains/smartchain/assets/0x7138b48df7D98D7e3cc221BfE7192D0a178182D8/logo.png new file mode 100644 index 0000000000000..55d382c4fbedf Binary files /dev/null and b/blockchains/smartchain/assets/0x7138b48df7D98D7e3cc221BfE7192D0a178182D8/logo.png differ diff --git a/blockchains/smartchain/assets/0x7144E379C827fA71A7ecAA01d00607cBb7eB1b7A/info.json b/blockchains/smartchain/assets/0x7144E379C827fA71A7ecAA01d00607cBb7eB1b7A/info.json index b7b3227628751..bf9bc7703f4d5 100644 --- a/blockchains/smartchain/assets/0x7144E379C827fA71A7ecAA01d00607cBb7eB1b7A/info.json +++ b/blockchains/smartchain/assets/0x7144E379C827fA71A7ecAA01d00607cBb7eB1b7A/info.json @@ -10,8 +10,8 @@ "id": "0x7144E379C827fA71A7ecAA01d00607cBb7eB1b7A", "links": [ { - "name": "twitter", - "url": "https://twitter.com/LoveDoge10" + "name": "x", + "url": "https://x.com/LoveDoge10" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x71507068e98049cBA81E9bbc8d901E4A2f4222Eb/info.json b/blockchains/smartchain/assets/0x71507068e98049cBA81E9bbc8d901E4A2f4222Eb/info.json new file mode 100644 index 0000000000000..0a1513ac91085 --- /dev/null +++ b/blockchains/smartchain/assets/0x71507068e98049cBA81E9bbc8d901E4A2f4222Eb/info.json @@ -0,0 +1,28 @@ +{ + "name": "SoFi Technologies (Ondo)", + "type": "BEP20", + "symbol": "SOFIon", + "decimals": 18, + "description": "SOFIon is the Ondo Tokenized version of SoFi Technologies, giving tokenholders economic exposure similar to holding SOFI and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x71507068e98049cBA81E9bbc8d901E4A2f4222Eb", + "status": "active", + "id": "0x71507068e98049cBA81E9bbc8d901E4A2f4222Eb", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sofi-technologies-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sofi-technologies-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x71507068e98049cBA81E9bbc8d901E4A2f4222Eb/logo.png b/blockchains/smartchain/assets/0x71507068e98049cBA81E9bbc8d901E4A2f4222Eb/logo.png new file mode 100644 index 0000000000000..dcd5cc8df6dbc Binary files /dev/null and b/blockchains/smartchain/assets/0x71507068e98049cBA81E9bbc8d901E4A2f4222Eb/logo.png differ diff --git a/blockchains/smartchain/assets/0x715107358e0fD7FD5Bfd794ed622577B3ef18888/info.json b/blockchains/smartchain/assets/0x715107358e0fD7FD5Bfd794ed622577B3ef18888/info.json new file mode 100644 index 0000000000000..5a1fd79e004bd --- /dev/null +++ b/blockchains/smartchain/assets/0x715107358e0fD7FD5Bfd794ed622577B3ef18888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Β⁣itс⁤оin", + "type": "BEP20", + "symbol": "FAKE ВТС", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x715107358e0fD7FD5Bfd794ed622577B3ef18888", + "explorer": "https://bscscan.com/token/0x715107358e0fD7FD5Bfd794ed622577B3ef18888", + "status": "spam", + "id": "0x715107358e0fD7FD5Bfd794ed622577B3ef18888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7153431234b9A6D1Fa53cD057D5a1AAC00C85c7f/info.json b/blockchains/smartchain/assets/0x7153431234b9A6D1Fa53cD057D5a1AAC00C85c7f/info.json index 86f6260621af3..2bc497425dd9d 100644 --- a/blockchains/smartchain/assets/0x7153431234b9A6D1Fa53cD057D5a1AAC00C85c7f/info.json +++ b/blockchains/smartchain/assets/0x7153431234b9A6D1Fa53cD057D5a1AAC00C85c7f/info.json @@ -18,8 +18,8 @@ "url": "https://discord.com/invite/cHPHJtDJhq" }, { - "name": "twitter", - "url": "https://twitter.com/KichiCoin" + "name": "x", + "url": "https://x.com/KichiCoin" }, { "name": "youtube", diff --git a/blockchains/smartchain/assets/0x715D400F88C167884bbCc41C5FeA407ed4D2f8A0/info.json b/blockchains/smartchain/assets/0x715D400F88C167884bbCc41C5FeA407ed4D2f8A0/info.json index 8be7f4bc3d1c8..9e53d5940d64a 100644 --- a/blockchains/smartchain/assets/0x715D400F88C167884bbCc41C5FeA407ed4D2f8A0/info.json +++ b/blockchains/smartchain/assets/0x715D400F88C167884bbCc41C5FeA407ed4D2f8A0/info.json @@ -1,5 +1,5 @@ { - "name": "BNB pegged Axie Infinity Shard", + "name": "Axie Infinity", "website": "https://axieinfinity.com", "description": "BNB pegged Axie Infinity Shard (AXS BEP20) is a token issued by Binance on Smart Chain; its price is pegged to Axie Infinity Shard (AXS ERC20) at a ratio of 1:1.", "explorer": "https://bscscan.com/token/0x715D400F88C167884bbCc41C5FeA407ed4D2f8A0", diff --git a/blockchains/smartchain/assets/0x716a5d2244eb2Ca4865bF1DcD7979a225EBA8888/info.json b/blockchains/smartchain/assets/0x716a5d2244eb2Ca4865bF1DcD7979a225EBA8888/info.json new file mode 100644 index 0000000000000..d2fa66426b182 --- /dev/null +++ b/blockchains/smartchain/assets/0x716a5d2244eb2Ca4865bF1DcD7979a225EBA8888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x716a5d2244eb2Ca4865bF1DcD7979a225EBA8888", + "explorer": "https://bscscan.com/token/0x716a5d2244eb2Ca4865bF1DcD7979a225EBA8888", + "status": "spam", + "id": "0x716a5d2244eb2Ca4865bF1DcD7979a225EBA8888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x71E80e96Af604Afc23Ca2AED4C1C7466DB6dd0c4/info.json b/blockchains/smartchain/assets/0x71E80e96Af604Afc23Ca2AED4C1C7466DB6dd0c4/info.json index 14db5d7cc06ca..dbd1415aa3166 100644 --- a/blockchains/smartchain/assets/0x71E80e96Af604Afc23Ca2AED4C1C7466DB6dd0c4/info.json +++ b/blockchains/smartchain/assets/0x71E80e96Af604Afc23Ca2AED4C1C7466DB6dd0c4/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/thebabyfloki" }, { - "name": "twitter", - "url": "https://twitter.com/thebabyfloki" + "name": "x", + "url": "https://x.com/thebabyfloki" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x71a72Be5F11158CD24c16C75125Bd45be479ed0A/info.json b/blockchains/smartchain/assets/0x71a72Be5F11158CD24c16C75125Bd45be479ed0A/info.json new file mode 100644 index 0000000000000..69a184292d3a2 --- /dev/null +++ b/blockchains/smartchain/assets/0x71a72Be5F11158CD24c16C75125Bd45be479ed0A/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDC.a", + "type": "BEP20", + "symbol": "FAKE USDC.a", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x71a72Be5F11158CD24c16C75125Bd45be479ed0A", + "explorer": "https://bscscan.com/token/0x71a72Be5F11158CD24c16C75125Bd45be479ed0A", + "status": "spam", + "id": "0x71a72Be5F11158CD24c16C75125Bd45be479ed0A" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x71aB195498b6dC1656aBb4D9233f83Ae5F19495B/info.json b/blockchains/smartchain/assets/0x71aB195498b6dC1656aBb4D9233f83Ae5F19495B/info.json index c16806c21ae27..7e8e8d68dc300 100644 --- a/blockchains/smartchain/assets/0x71aB195498b6dC1656aBb4D9233f83Ae5F19495B/info.json +++ b/blockchains/smartchain/assets/0x71aB195498b6dC1656aBb4D9233f83Ae5F19495B/info.json @@ -14,11 +14,11 @@ "url": "https://t.me/MarvinInuofficial" }, { - "name": "twitter", - "url": "https://twitter.com/marvin_inu?s=21" + "name": "x", + "url": "https://x.com/marvin_inu?s=21" } ], "tags": [ "memes" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x71afF23750db1f4edbE32C942157a478349035b2/info.json b/blockchains/smartchain/assets/0x71afF23750db1f4edbE32C942157a478349035b2/info.json index de34a50293bd3..dc9e22dd7db27 100644 --- a/blockchains/smartchain/assets/0x71afF23750db1f4edbE32C942157a478349035b2/info.json +++ b/blockchains/smartchain/assets/0x71afF23750db1f4edbE32C942157a478349035b2/info.json @@ -6,6 +6,6 @@ "type": "BEP20", "symbol": "PVM", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x71afF23750db1f4edbE32C942157a478349035b2" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x71afF23750db1f4edbE32C942157a478349035b2/logo.png b/blockchains/smartchain/assets/0x71afF23750db1f4edbE32C942157a478349035b2/logo.png deleted file mode 100644 index 425cbb5291ad3..0000000000000 Binary files a/blockchains/smartchain/assets/0x71afF23750db1f4edbE32C942157a478349035b2/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x71b87be9ccBABe4F393e809dfc26Df3c9720E0a2/info.json b/blockchains/smartchain/assets/0x71b87be9ccBABe4F393e809dfc26Df3c9720E0a2/info.json new file mode 100644 index 0000000000000..5b75ea12ecd43 --- /dev/null +++ b/blockchains/smartchain/assets/0x71b87be9ccBABe4F393e809dfc26Df3c9720E0a2/info.json @@ -0,0 +1,17 @@ +{ + "name": "T-mac DAO", + "website": "https://t-mac.homes/home", + "description": "T-Mac DAO is the first self-organized fan support autonomous community based on basketball stars. In the T-Mac DAO community", + "explorer": "https://www.bscscan.com/token/0x71b87be9ccBABe4F393e809dfc26Df3c9720E0a2", + "type": "BEP20", + "symbol": "TMG", + "decimals": 18, + "status": "active", + "id": "0x71b87be9ccBABe4F393e809dfc26Df3c9720E0a2", + "links": [ + { + "name": "x", + "url": "https://x.com/T_MacDAO" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x71b87be9ccBABe4F393e809dfc26Df3c9720E0a2/logo.png b/blockchains/smartchain/assets/0x71b87be9ccBABe4F393e809dfc26Df3c9720E0a2/logo.png new file mode 100644 index 0000000000000..344a41c2ffc17 Binary files /dev/null and b/blockchains/smartchain/assets/0x71b87be9ccBABe4F393e809dfc26Df3c9720E0a2/logo.png differ diff --git a/blockchains/smartchain/assets/0x71d03A620646f8b572282Ef39228D36Add67ee20/info.json b/blockchains/smartchain/assets/0x71d03A620646f8b572282Ef39228D36Add67ee20/info.json new file mode 100644 index 0000000000000..1f44ad15a2131 --- /dev/null +++ b/blockchains/smartchain/assets/0x71d03A620646f8b572282Ef39228D36Add67ee20/info.json @@ -0,0 +1,32 @@ +{ + "name": "Sekuya", + "type": "BEP20", + "symbol": "SKUY", + "decimals": 9, + "website": "https://sekuya.io/", + "description": "The New Earth Multiverse - Sekuya exists to be a virtual world full of excitement for everyone. Borderless. Decentralized.", + "explorer": "https://bscscan.com/token/0x71d03a620646f8b572282ef39228d36add67ee20", + "status": "active", + "id": "0x71d03A620646f8b572282Ef39228D36Add67ee20", + "links": [ + { + "name": "telegram", + "url": "https://t.me/sekuyaofficial" + }, + { + "name": "x", + "url": "https://x.com/Sekuyaofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sekuya/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sekuya" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x71d03A620646f8b572282Ef39228D36Add67ee20/logo.png b/blockchains/smartchain/assets/0x71d03A620646f8b572282Ef39228D36Add67ee20/logo.png new file mode 100644 index 0000000000000..aab7d66f52860 Binary files /dev/null and b/blockchains/smartchain/assets/0x71d03A620646f8b572282Ef39228D36Add67ee20/logo.png differ diff --git a/blockchains/smartchain/assets/0x71e72DdE4152D274afD1F2DB43531Ed9E44A78Fa/info.json b/blockchains/smartchain/assets/0x71e72DdE4152D274afD1F2DB43531Ed9E44A78Fa/info.json index 6bd73f098daa5..59af620012aef 100644 --- a/blockchains/smartchain/assets/0x71e72DdE4152D274afD1F2DB43531Ed9E44A78Fa/info.json +++ b/blockchains/smartchain/assets/0x71e72DdE4152D274afD1F2DB43531Ed9E44A78Fa/info.json @@ -10,8 +10,8 @@ "id": "0x71e72DdE4152D274afD1F2DB43531Ed9E44A78Fa", "links": [ { - "name": "twitter", - "url": "https://twitter.com/lordtoken_off/" + "name": "x", + "url": "https://x.com/lordtoken_off/" }, { "name": "facebook", @@ -38,4 +38,4 @@ "staking", "deflationary" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7208A2671a2f96950D44C6dAAF24719Ce44dEA78/info.json b/blockchains/smartchain/assets/0x7208A2671a2f96950D44C6dAAF24719Ce44dEA78/info.json new file mode 100644 index 0000000000000..6bb8be5a18224 --- /dev/null +++ b/blockchains/smartchain/assets/0x7208A2671a2f96950D44C6dAAF24719Ce44dEA78/info.json @@ -0,0 +1,29 @@ +{ + "name": "WEB3MET", + "type": "BEP20", + "symbol": "W3M", + "decimals": 18, + "website": "https://web3met.com", + "description": "The W3M token will be the native digital currency of the Web3Met metaverse. All transactions ranging from buying digital land, trading NFT items, to booking event space will be using the W3M token. W3M will fuel the activities within this digital city.", + "explorer": "https://bscscan.com/token/0x7208A2671a2f96950D44C6dAAF24719Ce44dEA78", + "status": "active", + "id": "0x7208A2671a2f96950D44C6dAAF24719Ce44dEA78", + "links": [ + { + "name": "x", + "url": "https://x.com/web3met" + }, + { + "name": "telegram", + "url": "https://t.me/W3MWEB3MET" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x7208a2671a2f96950d44c6daaf24719ce44dea78#code#L1" + } + ], + "tags": [ + "nft", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7208A2671a2f96950D44C6dAAF24719Ce44dEA78/logo.png b/blockchains/smartchain/assets/0x7208A2671a2f96950D44C6dAAF24719Ce44dEA78/logo.png new file mode 100644 index 0000000000000..99bcbded70bf3 Binary files /dev/null and b/blockchains/smartchain/assets/0x7208A2671a2f96950D44C6dAAF24719Ce44dEA78/logo.png differ diff --git a/blockchains/smartchain/assets/0x721F40adC793e951EdF2ECE86376e7a103211252/info.json b/blockchains/smartchain/assets/0x721F40adC793e951EdF2ECE86376e7a103211252/info.json index 28828daccb39a..ba201f9f28a01 100644 --- a/blockchains/smartchain/assets/0x721F40adC793e951EdF2ECE86376e7a103211252/info.json +++ b/blockchains/smartchain/assets/0x721F40adC793e951EdF2ECE86376e7a103211252/info.json @@ -10,8 +10,8 @@ "id": "0x721F40adC793e951EdF2ECE86376e7a103211252", "links": [ { - "name": "twitter", - "url": "https://twitter.com/CCNnet" + "name": "x", + "url": "https://x.com/CCNnet" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x7269d98Af4aA705e0B1A5D8512FadB4d45817d5a/info.json b/blockchains/smartchain/assets/0x7269d98Af4aA705e0B1A5D8512FadB4d45817d5a/info.json index 2ebf6aef21480..ebabadc82d15d 100644 --- a/blockchains/smartchain/assets/0x7269d98Af4aA705e0B1A5D8512FadB4d45817d5a/info.json +++ b/blockchains/smartchain/assets/0x7269d98Af4aA705e0B1A5D8512FadB4d45817d5a/info.json @@ -10,8 +10,8 @@ "id": "0x7269d98Af4aA705e0B1A5D8512FadB4d45817d5a", "links": [ { - "name": "twitter", - "url": "https://twitter.com/shirtumapp" + "name": "x", + "url": "https://x.com/shirtumapp" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x72B7D61E8fC8cF971960DD9cfA59B8C829D91991/info.json b/blockchains/smartchain/assets/0x72B7D61E8fC8cF971960DD9cfA59B8C829D91991/info.json index 6cc1c2e87b70e..00b887549d167 100644 --- a/blockchains/smartchain/assets/0x72B7D61E8fC8cF971960DD9cfA59B8C829D91991/info.json +++ b/blockchains/smartchain/assets/0x72B7D61E8fC8cF971960DD9cfA59B8C829D91991/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/planet_finance" }, { - "name": "twitter", - "url": "https://twitter.com/planet_finance" + "name": "x", + "url": "https://x.com/planet_finance" }, { "name": "discord", diff --git a/blockchains/smartchain/assets/0x72d2946094E6E57c2faDe4964777A9af2B7A51F9/info.json b/blockchains/smartchain/assets/0x72d2946094E6E57c2faDe4964777A9af2B7A51F9/info.json index a1e1a58f52f30..f9bf7364e0a00 100644 --- a/blockchains/smartchain/assets/0x72d2946094E6E57c2faDe4964777A9af2B7A51F9/info.json +++ b/blockchains/smartchain/assets/0x72d2946094E6E57c2faDe4964777A9af2B7A51F9/info.json @@ -10,8 +10,8 @@ "id": "0x72d2946094E6E57c2faDe4964777A9af2B7A51F9", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PIXLCoin" + "name": "x", + "url": "https://x.com/PIXLCoin" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x72fAa679E1008Ad8382959FF48E392042A8b06f7/info.json b/blockchains/smartchain/assets/0x72fAa679E1008Ad8382959FF48E392042A8b06f7/info.json index b9201126af78f..4c930eef7131a 100644 --- a/blockchains/smartchain/assets/0x72fAa679E1008Ad8382959FF48E392042A8b06f7/info.json +++ b/blockchains/smartchain/assets/0x72fAa679E1008Ad8382959FF48E392042A8b06f7/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Stichting-AllianceBlock-Foundation/AllianceBlock-Contracts" }, { - "name": "twitter", - "url": "https://twitter.com/allianceblock" + "name": "x", + "url": "https://x.com/allianceblock" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x72fF5742319eF07061836F5C924aC6D72c919080/info.json b/blockchains/smartchain/assets/0x72fF5742319eF07061836F5C924aC6D72c919080/info.json index 23563aa03a09b..db9f6e66e3846 100644 --- a/blockchains/smartchain/assets/0x72fF5742319eF07061836F5C924aC6D72c919080/info.json +++ b/blockchains/smartchain/assets/0x72fF5742319eF07061836F5C924aC6D72c919080/info.json @@ -10,8 +10,8 @@ "id": "0x72fF5742319eF07061836F5C924aC6D72c919080", "links": [ { - "name": "twitter", - "url": "https://twitter.com/GiftoMetaverse" + "name": "x", + "url": "https://x.com/GiftoMetaverse" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x7313EA16493b2f55054Df0131A3A14B043ec8992/info.json b/blockchains/smartchain/assets/0x7313EA16493b2f55054Df0131A3A14B043ec8992/info.json new file mode 100644 index 0000000000000..05f4debfedd39 --- /dev/null +++ b/blockchains/smartchain/assets/0x7313EA16493b2f55054Df0131A3A14B043ec8992/info.json @@ -0,0 +1,24 @@ +{ + "name": "MicroStrategy (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "MSTRon is the Ondo Tokenized version of MicroStrategy, giving tokenholders economic exposure similar to holding MSTR and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x7313ea16493b2f55054df0131a3a14b043ec8992", + "type": "BEP20", + "symbol": "MSTRon", + "decimals": 18, + "status": "active", + "id": "0x7313EA16493b2f55054Df0131A3A14B043ec8992", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/microstrategy-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7313EA16493b2f55054Df0131A3A14B043ec8992/logo.png b/blockchains/smartchain/assets/0x7313EA16493b2f55054Df0131A3A14B043ec8992/logo.png new file mode 100644 index 0000000000000..1e8b0d3cfb17b Binary files /dev/null and b/blockchains/smartchain/assets/0x7313EA16493b2f55054Df0131A3A14B043ec8992/logo.png differ diff --git a/blockchains/smartchain/assets/0x7320c128e89bA4584Ab02ed1C9c96285b726443C/info.json b/blockchains/smartchain/assets/0x7320c128e89bA4584Ab02ed1C9c96285b726443C/info.json index a1fa946dea5b1..78666af448e43 100644 --- a/blockchains/smartchain/assets/0x7320c128e89bA4584Ab02ed1C9c96285b726443C/info.json +++ b/blockchains/smartchain/assets/0x7320c128e89bA4584Ab02ed1C9c96285b726443C/info.json @@ -30,8 +30,8 @@ "url": "https://kokoswap.org/assets/pdf/kokoswap_whitepaper.pdf" }, { - "name": "twitter", - "url": "https://twitter.com/kokoswap" + "name": "x", + "url": "https://x.com/kokoswap" } ], "tags": [ diff --git a/blockchains/smartchain/assets/0x7324c7C0d95CEBC73eEa7E85CbAac0dBdf88a05b/info.json b/blockchains/smartchain/assets/0x7324c7C0d95CEBC73eEa7E85CbAac0dBdf88a05b/info.json index 5319d41fb3924..0fa806aa4e3fc 100644 --- a/blockchains/smartchain/assets/0x7324c7C0d95CEBC73eEa7E85CbAac0dBdf88a05b/info.json +++ b/blockchains/smartchain/assets/0x7324c7C0d95CEBC73eEa7E85CbAac0dBdf88a05b/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Onyx-Protocol" }, { - "name": "twitter", - "url": "https://twitter.com/OnyxProtocol" + "name": "x", + "url": "https://x.com/OnyxProtocol" }, { "name": "blog", @@ -33,4 +33,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x73419De8E3E26A17e0E6b0436e29dd04A25B061D/info.json b/blockchains/smartchain/assets/0x73419De8E3E26A17e0E6b0436e29dd04A25B061D/info.json index 840376fa71500..eaca9e5ff842c 100644 --- a/blockchains/smartchain/assets/0x73419De8E3E26A17e0E6b0436e29dd04A25B061D/info.json +++ b/blockchains/smartchain/assets/0x73419De8E3E26A17e0E6b0436e29dd04A25B061D/info.json @@ -10,8 +10,8 @@ "id": "0x73419De8E3E26A17e0E6b0436e29dd04A25B061D", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MikuBSC" + "name": "x", + "url": "https://x.com/MikuBSC" }, { "name": "telegram", @@ -37,4 +37,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x734548a9e43d2D564600b1B2ed5bE9C2b911c6aB/info.json b/blockchains/smartchain/assets/0x734548a9e43d2D564600b1B2ed5bE9C2b911c6aB/info.json index 25a177700dd13..d118d208ad20b 100644 --- a/blockchains/smartchain/assets/0x734548a9e43d2D564600b1B2ed5bE9C2b911c6aB/info.json +++ b/blockchains/smartchain/assets/0x734548a9e43d2D564600b1B2ed5bE9C2b911c6aB/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/MetaApesGame" + "name": "x", + "url": "https://x.com/MetaApesGame" }, { "name": "docs", @@ -29,4 +29,4 @@ "url": "https://coinmarketcap.com/currencies/aave/" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x734D66f635523D7ddb7d2373C128333DA313041b/info.json b/blockchains/smartchain/assets/0x734D66f635523D7ddb7d2373C128333DA313041b/info.json index ba3c5b1c1d83c..f8c7002e6e7a1 100644 --- a/blockchains/smartchain/assets/0x734D66f635523D7ddb7d2373C128333DA313041b/info.json +++ b/blockchains/smartchain/assets/0x734D66f635523D7ddb7d2373C128333DA313041b/info.json @@ -10,8 +10,8 @@ "id": "0x734D66f635523D7ddb7d2373C128333DA313041b", "links": [ { - "name": "twitter", - "url": "https://twitter.com/zedxionc" + "name": "x", + "url": "https://x.com/zedxionc" }, { "name": "telegram", @@ -25,4 +25,4 @@ "tags": [ "binance-peg" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x734c5F3f8F6ad9697b26eCC6388678aaFd3dB3B2/info.json b/blockchains/smartchain/assets/0x734c5F3f8F6ad9697b26eCC6388678aaFd3dB3B2/info.json index 1f676da5d4658..c1c62025d04bf 100644 --- a/blockchains/smartchain/assets/0x734c5F3f8F6ad9697b26eCC6388678aaFd3dB3B2/info.json +++ b/blockchains/smartchain/assets/0x734c5F3f8F6ad9697b26eCC6388678aaFd3dB3B2/info.json @@ -10,8 +10,8 @@ "id": "0x734c5F3f8F6ad9697b26eCC6388678aaFd3dB3B2", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MUSK_METAVERSE" + "name": "x", + "url": "https://x.com/MUSK_METAVERSE" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x736f40aB52405353e29Cef4B87dC42f707FAB9E6/info.json b/blockchains/smartchain/assets/0x736f40aB52405353e29Cef4B87dC42f707FAB9E6/info.json new file mode 100644 index 0000000000000..36d9e7267d610 --- /dev/null +++ b/blockchains/smartchain/assets/0x736f40aB52405353e29Cef4B87dC42f707FAB9E6/info.json @@ -0,0 +1,14 @@ +{ + "name": "Ghibli Mascot", + "type": "BEP20", + "symbol": "Totoro", + "decimals": 18, + "website": "https://four.meme/token/0x736f40aB52405353e29Cef4B87dC42f707FAB9E6", + "description": "The Guardian of the Encrypted Forest: The Fantastical Contract between My Neighbor Totoro and Blockchain", + "explorer": "https://bscscan.com/token/0x736f40aB52405353e29Cef4B87dC42f707FAB9E6", + "status": "active", + "id": "0x736f40aB52405353e29Cef4B87dC42f707FAB9E6", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x736f40aB52405353e29Cef4B87dC42f707FAB9E6/logo.png b/blockchains/smartchain/assets/0x736f40aB52405353e29Cef4B87dC42f707FAB9E6/logo.png new file mode 100644 index 0000000000000..1b6686f0a4571 Binary files /dev/null and b/blockchains/smartchain/assets/0x736f40aB52405353e29Cef4B87dC42f707FAB9E6/logo.png differ diff --git a/blockchains/smartchain/assets/0x738d96Caf7096659DB4C1aFbf1E1BDFD281f388C/info.json b/blockchains/smartchain/assets/0x738d96Caf7096659DB4C1aFbf1E1BDFD281f388C/info.json index 7186dd12318fa..54aa3d6b26971 100644 --- a/blockchains/smartchain/assets/0x738d96Caf7096659DB4C1aFbf1E1BDFD281f388C/info.json +++ b/blockchains/smartchain/assets/0x738d96Caf7096659DB4C1aFbf1E1BDFD281f388C/info.json @@ -10,8 +10,8 @@ "id": "0x738d96Caf7096659DB4C1aFbf1E1BDFD281f388C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ankr" + "name": "x", + "url": "https://x.com/ankr" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x738f3810b3dA0F3e6dC8C689D0d72f3b4992c43b/info.json b/blockchains/smartchain/assets/0x738f3810b3dA0F3e6dC8C689D0d72f3b4992c43b/info.json index c83de686f1862..bb10e51fd8ae7 100644 --- a/blockchains/smartchain/assets/0x738f3810b3dA0F3e6dC8C689D0d72f3b4992c43b/info.json +++ b/blockchains/smartchain/assets/0x738f3810b3dA0F3e6dC8C689D0d72f3b4992c43b/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/CreamFi" }, { - "name": "twitter", - "url": "https://twitter.com/CreamdotFinance" + "name": "x", + "url": "https://x.com/CreamdotFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x739e81BCd49854d7BDF526302989f14A2E7994B2/info.json b/blockchains/smartchain/assets/0x739e81BCd49854d7BDF526302989f14A2E7994B2/info.json index 70ee3ee43c321..3211f452a651c 100644 --- a/blockchains/smartchain/assets/0x739e81BCd49854d7BDF526302989f14A2E7994B2/info.json +++ b/blockchains/smartchain/assets/0x739e81BCd49854d7BDF526302989f14A2E7994B2/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/centcex" }, { - "name": "twitter", - "url": "https://twitter.com/centcex" + "name": "x", + "url": "https://x.com/centcex" } ], "tags": [ diff --git a/blockchains/smartchain/assets/0x7403802c0FFeE2d83FB13513e23aAF4a3a9C69f0/info.json b/blockchains/smartchain/assets/0x7403802c0FFeE2d83FB13513e23aAF4a3a9C69f0/info.json index 4ee11a010daa3..2238691223110 100644 --- a/blockchains/smartchain/assets/0x7403802c0FFeE2d83FB13513e23aAF4a3a9C69f0/info.json +++ b/blockchains/smartchain/assets/0x7403802c0FFeE2d83FB13513e23aAF4a3a9C69f0/info.json @@ -10,8 +10,8 @@ "id": "0x7403802c0FFeE2d83FB13513e23aAF4a3a9C69f0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/GreenChartBSC" + "name": "x", + "url": "https://x.com/GreenChartBSC" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x740e075cBbEa22a082B9d6679e65e82767875b6A/info.json b/blockchains/smartchain/assets/0x740e075cBbEa22a082B9d6679e65e82767875b6A/info.json new file mode 100644 index 0000000000000..475890438679b --- /dev/null +++ b/blockchains/smartchain/assets/0x740e075cBbEa22a082B9d6679e65e82767875b6A/info.json @@ -0,0 +1,20 @@ +{ + "name": "Corning Tokenized bStocks", + "type": "BEP20", + "symbol": "GLWB", + "decimals": 18, + "description": "GLWB is a tokenized bStocks that gives you economic exposure to Corning Tokenized bStocks, and the right to convert to the underlying security on the Binance.com platform subject to applicable laws. Each token is fully backed by the corresponding underlying equity maintained by the Issuer at a US-regulated broker-dealer. You get the price movements, dividends, and the right to convert the token at 1:1 to the underlying share — tradeable 24/7.", + "website": "https://www.bstocks.finance/en/", + "explorer": "https://bscscan.com/token/0x740e075cBbEa22a082B9d6679e65e82767875b6A", + "status": "active", + "id": "0x740e075cBbEa22a082B9d6679e65e82767875b6A", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/corning-tokenized-bstocks/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x740e075cBbEa22a082B9d6679e65e82767875b6A/logo.png b/blockchains/smartchain/assets/0x740e075cBbEa22a082B9d6679e65e82767875b6A/logo.png new file mode 100644 index 0000000000000..8e2056d3e370f Binary files /dev/null and b/blockchains/smartchain/assets/0x740e075cBbEa22a082B9d6679e65e82767875b6A/logo.png differ diff --git a/blockchains/smartchain/assets/0x7425889FE94F9d693E8daefE88BCCed6AcFEf4c0/info.json b/blockchains/smartchain/assets/0x7425889FE94F9d693E8daefE88BCCed6AcFEf4c0/info.json new file mode 100644 index 0000000000000..7a69caa09181a --- /dev/null +++ b/blockchains/smartchain/assets/0x7425889FE94F9d693E8daefE88BCCed6AcFEf4c0/info.json @@ -0,0 +1,20 @@ +{ + "name": "Meta Tokenized bStocks", + "type": "BEP20", + "symbol": "METAB", + "decimals": 18, + "description": "METAB is a tokenized bStocks that gives you economic exposure to Meta Tokenized bStocks, and the right to convert to the underlying security on the Binance.com platform subject to applicable laws. Each token is fully backed by the corresponding underlying equity maintained by the Issuer at a US-regulated broker-dealer. You get the price movements, dividends, and the right to convert the token at 1:1 to the underlying share — tradeable 24/7.", + "website": "https://www.bstocks.finance/en/", + "explorer": "https://bscscan.com/token/0x7425889FE94F9d693E8daefE88BCCed6AcFEf4c0", + "status": "active", + "id": "0x7425889FE94F9d693E8daefE88BCCed6AcFEf4c0", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/meta-tokenized-bstocks/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7425889FE94F9d693E8daefE88BCCed6AcFEf4c0/logo.png b/blockchains/smartchain/assets/0x7425889FE94F9d693E8daefE88BCCed6AcFEf4c0/logo.png new file mode 100644 index 0000000000000..483578e25118a Binary files /dev/null and b/blockchains/smartchain/assets/0x7425889FE94F9d693E8daefE88BCCed6AcFEf4c0/logo.png differ diff --git a/blockchains/smartchain/assets/0x7437203800140BA7d9081ddE8cEF09EE40E3Bf03/info.json b/blockchains/smartchain/assets/0x7437203800140BA7d9081ddE8cEF09EE40E3Bf03/info.json new file mode 100644 index 0000000000000..fcda1dc1906b1 --- /dev/null +++ b/blockchains/smartchain/assets/0x7437203800140BA7d9081ddE8cEF09EE40E3Bf03/info.json @@ -0,0 +1,24 @@ +{ + "name": "KraneShares CSI China Internet ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "KWEBon", + "decimals": 18, + "description": "KWEBon is the Ondo Tokenized version of the KraneShares CSI China Internet ETF, giving tokenholders economic exposure similar to holding KWEB and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x7437203800140BA7d9081ddE8cEF09EE40E3Bf03", + "status": "active", + "id": "0x7437203800140BA7d9081ddE8cEF09EE40E3Bf03", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kraneshares-csi-china-internet-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7437203800140BA7d9081ddE8cEF09EE40E3Bf03/logo.png b/blockchains/smartchain/assets/0x7437203800140BA7d9081ddE8cEF09EE40E3Bf03/logo.png new file mode 100644 index 0000000000000..69cee97e8fefc Binary files /dev/null and b/blockchains/smartchain/assets/0x7437203800140BA7d9081ddE8cEF09EE40E3Bf03/logo.png differ diff --git a/blockchains/smartchain/assets/0x74AFe449D1BEFfc90456CfEbD700AB391abD7DAF/info.json b/blockchains/smartchain/assets/0x74AFe449D1BEFfc90456CfEbD700AB391abD7DAF/info.json index 10d51dfe589bf..e3a98866c037e 100644 --- a/blockchains/smartchain/assets/0x74AFe449D1BEFfc90456CfEbD700AB391abD7DAF/info.json +++ b/blockchains/smartchain/assets/0x74AFe449D1BEFfc90456CfEbD700AB391abD7DAF/info.json @@ -10,8 +10,8 @@ "id": "0x74AFe449D1BEFfc90456CfEbD700AB391abD7DAF", "links": [ { - "name": "twitter", - "url": "https://twitter.com/elongateog" + "name": "x", + "url": "https://x.com/elongateog" }, { "name": "github", @@ -49,4 +49,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x74a907Ab83F77A79c6e5DFBE7e330D557704d74c/info.json b/blockchains/smartchain/assets/0x74a907Ab83F77A79c6e5DFBE7e330D557704d74c/info.json new file mode 100644 index 0000000000000..5548578ce6b2e --- /dev/null +++ b/blockchains/smartchain/assets/0x74a907Ab83F77A79c6e5DFBE7e330D557704d74c/info.json @@ -0,0 +1,21 @@ +{ + "name": "Kekius Maximus-BSC", + "type": "BEP20", + "symbol": "KEKIUS", + "decimals": 9, + "website": "https://kekiusbsc.world/", + "description": "Welcome to Kekius Maximus, the ultimate meme coin of the BSC arena!", + "explorer": "https://bscscan.com/token/0x74a907ab83f77a79c6e5dfbe7e330d557704d74c", + "status": "active", + "id": "0x74a907Ab83F77A79c6e5DFBE7e330D557704d74c", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kekiusbsc-world/" + }, + { + "name": "x", + "url": "https://x.com/KekiusMaxi_bsc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x74a907Ab83F77A79c6e5DFBE7e330D557704d74c/logo.png b/blockchains/smartchain/assets/0x74a907Ab83F77A79c6e5DFBE7e330D557704d74c/logo.png new file mode 100644 index 0000000000000..16c91ac7b7571 Binary files /dev/null and b/blockchains/smartchain/assets/0x74a907Ab83F77A79c6e5DFBE7e330D557704d74c/logo.png differ diff --git a/blockchains/smartchain/assets/0x74da4c5F8C254dd4Fb39F9804C0924F52a808318/info.json b/blockchains/smartchain/assets/0x74da4c5F8C254dd4Fb39F9804C0924F52a808318/info.json new file mode 100644 index 0000000000000..aa88e2a22f17b --- /dev/null +++ b/blockchains/smartchain/assets/0x74da4c5F8C254dd4Fb39F9804C0924F52a808318/info.json @@ -0,0 +1,19 @@ +{ + "name": "Caila", + "type": "BEP20", + "symbol": "CA", + "decimals": 18, + "description": "Caila is your AI-powered weather intelligence agent supported by thousands of Nubila Network’s sensor — real-time, AI-powered, providing real-time, hyperlocal weather insights for both individuals and enterprises", + "website": "https://linktr.ee/caila_ai", + "explorer": "https://bscscan.com/token/0x74da4c5f8c254dd4fb39f9804c0924f52a808318", + "id": "0x74da4c5F8C254dd4Fb39F9804C0924F52a808318", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Caila_AI" + } + + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x74da4c5F8C254dd4Fb39F9804C0924F52a808318/logo.png b/blockchains/smartchain/assets/0x74da4c5F8C254dd4Fb39F9804C0924F52a808318/logo.png new file mode 100644 index 0000000000000..c11b92b96fb77 Binary files /dev/null and b/blockchains/smartchain/assets/0x74da4c5F8C254dd4Fb39F9804C0924F52a808318/logo.png differ diff --git a/blockchains/smartchain/assets/0x74f08aF7528Ffb751e3A435ddD779b5C4565e684/info.json b/blockchains/smartchain/assets/0x74f08aF7528Ffb751e3A435ddD779b5C4565e684/info.json index 021eb1b3aeced..05b429132add6 100644 --- a/blockchains/smartchain/assets/0x74f08aF7528Ffb751e3A435ddD779b5C4565e684/info.json +++ b/blockchains/smartchain/assets/0x74f08aF7528Ffb751e3A435ddD779b5C4565e684/info.json @@ -10,8 +10,8 @@ "id": "0x74f08aF7528Ffb751e3A435ddD779b5C4565e684", "links": [ { - "name": "twitter", - "url": "https://twitter.com/kingfinance" + "name": "x", + "url": "https://x.com/kingfinance" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x75022d03eEaC2Da632B7d8054dA1306c6F8b870F/info.json b/blockchains/smartchain/assets/0x75022d03eEaC2Da632B7d8054dA1306c6F8b870F/info.json new file mode 100644 index 0000000000000..d76040c5b7399 --- /dev/null +++ b/blockchains/smartchain/assets/0x75022d03eEaC2Da632B7d8054dA1306c6F8b870F/info.json @@ -0,0 +1,14 @@ +{ + "name": "Red Dragon", + "type": "BEP20", + "symbol": "ZHONG", + "decimals": 18, + "website": "https://four.meme/token/0x75022d03eEaC2Da632B7d8054dA1306c6F8b870F", + "description": "Red Dragon (中): Represents success, power, and good fortune.", + "explorer": "https://bscscan.com/token/0x75022d03eEaC2Da632B7d8054dA1306c6F8b870F", + "status": "active", + "id": "0x75022d03eEaC2Da632B7d8054dA1306c6F8b870F", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x75022d03eEaC2Da632B7d8054dA1306c6F8b870F/logo.png b/blockchains/smartchain/assets/0x75022d03eEaC2Da632B7d8054dA1306c6F8b870F/logo.png new file mode 100644 index 0000000000000..524f18dfc8c7a Binary files /dev/null and b/blockchains/smartchain/assets/0x75022d03eEaC2Da632B7d8054dA1306c6F8b870F/logo.png differ diff --git a/blockchains/smartchain/assets/0x753fc5E107fd8c63DC84Daa4bc08370F2c05ffc8/info.json b/blockchains/smartchain/assets/0x753fc5E107fd8c63DC84Daa4bc08370F2c05ffc8/info.json new file mode 100644 index 0000000000000..79c09495ff3ec --- /dev/null +++ b/blockchains/smartchain/assets/0x753fc5E107fd8c63DC84Daa4bc08370F2c05ffc8/info.json @@ -0,0 +1,17 @@ +{ + "name": "Baby Broccoli", + "symbol": "BB", + "website": "https://babybroccoli.fun", + "description": "IF CZ LOVES IT, YOU KNOW IT’S BULLISH", + "explorer": "https://bscscan.com/token/0x753fc5e107fd8c63dc84daa4bc08370f2c05ffc8", + "decimals": 18, + "status": "active", + "id": "0x753fc5E107fd8c63DC84Daa4bc08370F2c05ffc8", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/BabyBroc_bsc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x753fc5E107fd8c63DC84Daa4bc08370F2c05ffc8/logo.png b/blockchains/smartchain/assets/0x753fc5E107fd8c63DC84Daa4bc08370F2c05ffc8/logo.png new file mode 100644 index 0000000000000..e4a6f23d2d02d Binary files /dev/null and b/blockchains/smartchain/assets/0x753fc5E107fd8c63DC84Daa4bc08370F2c05ffc8/logo.png differ diff --git a/blockchains/smartchain/assets/0x7559C49c3Aec50E763A486bB232fA8d0d76078e4/info.json b/blockchains/smartchain/assets/0x7559C49c3Aec50E763A486bB232fA8d0d76078e4/info.json index c5163693d96f7..dc41545c3356a 100644 --- a/blockchains/smartchain/assets/0x7559C49c3Aec50E763A486bB232fA8d0d76078e4/info.json +++ b/blockchains/smartchain/assets/0x7559C49c3Aec50E763A486bB232fA8d0d76078e4/info.json @@ -10,8 +10,8 @@ "id": "0x7559C49c3Aec50E763A486bB232fA8d0d76078e4", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ArtradeApp" + "name": "x", + "url": "https://x.com/ArtradeApp" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x755f34709E369D37C6Fa52808aE84A32007d1155/info.json b/blockchains/smartchain/assets/0x755f34709E369D37C6Fa52808aE84A32007d1155/info.json index 0102deaa17fa1..79b0e44a9354c 100644 --- a/blockchains/smartchain/assets/0x755f34709E369D37C6Fa52808aE84A32007d1155/info.json +++ b/blockchains/smartchain/assets/0x755f34709E369D37C6Fa52808aE84A32007d1155/info.json @@ -14,12 +14,12 @@ "url": "https://t.me/naboxcommunity" }, { - "name": "twitter", - "url": "https://twitter.com/naboxwallet" + "name": "x", + "url": "https://x.com/naboxwallet" }, { "name": "coinmarketcap", "url": "https://coinmarketcap.com/currencies/nabox/" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7565ab68D3F9DaDff127F864103C8c706Cf28235/info.json b/blockchains/smartchain/assets/0x7565ab68D3F9DaDff127F864103C8c706Cf28235/info.json index 808c36d4f0db4..9295b9401e430 100644 --- a/blockchains/smartchain/assets/0x7565ab68D3F9DaDff127F864103C8c706Cf28235/info.json +++ b/blockchains/smartchain/assets/0x7565ab68D3F9DaDff127F864103C8c706Cf28235/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/trustfi_fans" }, { - "name": "twitter", - "url": "https://twitter.com/trustfiorg" + "name": "x", + "url": "https://x.com/trustfiorg" }, { "name": "blog", @@ -30,4 +30,4 @@ "url": "https://coingecko.com/en/coins/trustfi-network-token" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7567c2a46BCE46373b454682F3d95e6535BDe144/info.json b/blockchains/smartchain/assets/0x7567c2a46BCE46373b454682F3d95e6535BDe144/info.json new file mode 100644 index 0000000000000..1b41b3d1056c1 --- /dev/null +++ b/blockchains/smartchain/assets/0x7567c2a46BCE46373b454682F3d95e6535BDe144/info.json @@ -0,0 +1,24 @@ +{ + "name": "DoorDash (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "DASHon is the Ondo Tokenized version of DoorDash, giving tokenholders economic exposure similar to holding DASH and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x7567c2a46bce46373b454682f3d95e6535bde144", + "type": "BEP20", + "symbol": "DASHon", + "decimals": 18, + "status": "active", + "id": "0x7567c2a46BCE46373b454682F3d95e6535BDe144", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/doordash-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7567c2a46BCE46373b454682F3d95e6535BDe144/logo.png b/blockchains/smartchain/assets/0x7567c2a46BCE46373b454682F3d95e6535BDe144/logo.png new file mode 100644 index 0000000000000..72641705edfa2 Binary files /dev/null and b/blockchains/smartchain/assets/0x7567c2a46BCE46373b454682F3d95e6535BDe144/logo.png differ diff --git a/blockchains/smartchain/assets/0x75856ea207CE7194E4E65c334BEc143D77701E4a/info.json b/blockchains/smartchain/assets/0x75856ea207CE7194E4E65c334BEc143D77701E4a/info.json index a45efbfbe07ae..d1f47c491467f 100644 --- a/blockchains/smartchain/assets/0x75856ea207CE7194E4E65c334BEc143D77701E4a/info.json +++ b/blockchains/smartchain/assets/0x75856ea207CE7194E4E65c334BEc143D77701E4a/info.json @@ -10,8 +10,8 @@ "id": "0x75856ea207CE7194E4E65c334BEc143D77701E4a", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MiniSportsToken" + "name": "x", + "url": "https://x.com/MiniSportsToken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x758d08864fB6cCE3062667225ca10b8F00496cc2/info.json b/blockchains/smartchain/assets/0x758d08864fB6cCE3062667225ca10b8F00496cc2/info.json index 96efdee4ed760..2e856c5e0f37f 100644 --- a/blockchains/smartchain/assets/0x758d08864fB6cCE3062667225ca10b8F00496cc2/info.json +++ b/blockchains/smartchain/assets/0x758d08864fB6cCE3062667225ca10b8F00496cc2/info.json @@ -10,8 +10,8 @@ "id": "0x758d08864fB6cCE3062667225ca10b8F00496cc2", "links": [ { - "name": "twitter", - "url": "https://twitter.com/naos_finance" + "name": "x", + "url": "https://x.com/naos_finance" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x75E8ddB518bB757b4282cd5b83bb70d4101D12FB/info.json b/blockchains/smartchain/assets/0x75E8ddB518bB757b4282cd5b83bb70d4101D12FB/info.json new file mode 100644 index 0000000000000..3988a173a72fd --- /dev/null +++ b/blockchains/smartchain/assets/0x75E8ddB518bB757b4282cd5b83bb70d4101D12FB/info.json @@ -0,0 +1,21 @@ +{ + "name": "NFPrompt", + "website": "https://nfprompt.io", + "description": "NFPrompt is an AI-driven UGC platform designed for the new generation of Web3 creators. It's an all-in-one platform with the power of AI-creation, social community, and commercialization.", + "explorer": "https://bscscan.com/token/0x75e8ddb518bb757b4282cd5b83bb70d4101d12fb", + "symbol": "NFP", + "type": "BEP20", + "decimals": 18, + "status": "abandoned", + "id": "0x75E8ddB518bB757b4282cd5b83bb70d4101D12FB", + "links": [ + { + "name": "telegram", + "url": "https://t.me/nfprompt" + }, + { + "name": "x", + "url": "https://x.com/nfprompt" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x75E9D68e99e76714ed1a7663ab48ba3AaBd7A6c5/info.json b/blockchains/smartchain/assets/0x75E9D68e99e76714ed1a7663ab48ba3AaBd7A6c5/info.json new file mode 100644 index 0000000000000..e543ce6e298ff --- /dev/null +++ b/blockchains/smartchain/assets/0x75E9D68e99e76714ed1a7663ab48ba3AaBd7A6c5/info.json @@ -0,0 +1,24 @@ +{ + "name": "PIMCO 0-5 Year High Yield Corporate Bond Index ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "HYSon", + "decimals": 18, + "description": "HYSon is the Ondo Tokenized version of the PIMCO 0-5 Year High Yield Corporate Bond Index ETF, giving tokenholders economic exposure similar to holding HYS and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x75E9D68e99e76714ed1a7663ab48ba3AaBd7A6c5", + "status": "active", + "id": "0x75E9D68e99e76714ed1a7663ab48ba3AaBd7A6c5", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pimco-0-5-year-high-yield-corporate-bond-index-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x75E9D68e99e76714ed1a7663ab48ba3AaBd7A6c5/logo.png b/blockchains/smartchain/assets/0x75E9D68e99e76714ed1a7663ab48ba3AaBd7A6c5/logo.png new file mode 100644 index 0000000000000..58564c02cf969 Binary files /dev/null and b/blockchains/smartchain/assets/0x75E9D68e99e76714ed1a7663ab48ba3AaBd7A6c5/logo.png differ diff --git a/blockchains/smartchain/assets/0x75Fd4cF6f8392E41E70391D60c90C0D5211603a1/info.json b/blockchains/smartchain/assets/0x75Fd4cF6f8392E41E70391D60c90C0D5211603a1/info.json new file mode 100644 index 0000000000000..51b4274835184 --- /dev/null +++ b/blockchains/smartchain/assets/0x75Fd4cF6f8392E41E70391D60c90C0D5211603a1/info.json @@ -0,0 +1,20 @@ +{ + "name": "Advanced Micro Devices Tokenized bStocks", + "type": "BEP20", + "symbol": "AMDB", + "decimals": 18, + "description": "AMDB is a tokenized bStocks that gives you economic exposure to Advanced Micro Devices Tokenized bStocks, and the right to convert to the underlying security on the Binance.com platform subject to applicable laws. Each token is fully backed by the corresponding underlying equity maintained by the Issuer at a US-regulated broker-dealer. You get the price movements, dividends, and the right to convert the token at 1:1 to the underlying share — tradeable 24/7.", + "website": "https://bstocks.finance/", + "explorer": "https://bscscan.com/token/0x75Fd4cF6f8392E41E70391D60c90C0D5211603a1", + "status": "active", + "id": "0x75Fd4cF6f8392E41E70391D60c90C0D5211603a1", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nvidia-tokenized-stock-bstocks/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x75Fd4cF6f8392E41E70391D60c90C0D5211603a1/logo.png b/blockchains/smartchain/assets/0x75Fd4cF6f8392E41E70391D60c90C0D5211603a1/logo.png new file mode 100644 index 0000000000000..3491ae8f67698 Binary files /dev/null and b/blockchains/smartchain/assets/0x75Fd4cF6f8392E41E70391D60c90C0D5211603a1/logo.png differ diff --git a/blockchains/smartchain/assets/0x75aFA9915B2210Cd6329E820af0365e932bC1dd5/info.json b/blockchains/smartchain/assets/0x75aFA9915B2210Cd6329E820af0365e932bC1dd5/info.json index b7cedd22c7df3..cd1f6b7c07d3b 100644 --- a/blockchains/smartchain/assets/0x75aFA9915B2210Cd6329E820af0365e932bC1dd5/info.json +++ b/blockchains/smartchain/assets/0x75aFA9915B2210Cd6329E820af0365e932bC1dd5/info.json @@ -10,8 +10,8 @@ "id": "0x75aFA9915B2210Cd6329E820af0365e932bC1dd5", "links": [ { - "name": "twitter", - "url": "https://twitter.com/smurfsinu_" + "name": "x", + "url": "https://x.com/smurfsinu_" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x75ca521892DE7f2ecFB070Cab545c250d0cEB7e3/info.json b/blockchains/smartchain/assets/0x75ca521892DE7f2ecFB070Cab545c250d0cEB7e3/info.json new file mode 100644 index 0000000000000..87b68f19dd406 --- /dev/null +++ b/blockchains/smartchain/assets/0x75ca521892DE7f2ecFB070Cab545c250d0cEB7e3/info.json @@ -0,0 +1,32 @@ +{ + "name": "PVC META", + "type": "BEP20", + "symbol": "PVC", + "decimals": 9, + "website": "https://pvcmeta.io/", + "description": "PVC Meta is your premier source for everything cryptocurrency related. PVC Meta is definitely the most trusted and leading cryptocurrency on all digital platforms which is based on Binance smart chain", + "explorer": "https://bscscan.com/token/0x75ca521892DE7f2ecFB070Cab545c250d0cEB7e3", + "status": "active", + "id": "0x75ca521892DE7f2ecFB070Cab545c250d0cEB7e3", + "links": [ + { + "name": "x", + "url": "https://x.com/pvcmeta" + }, + { + "name": "github", + "url": "https://github.com/pvcmetaofficial" + }, + { + "name": "telegram", + "url": "https://t.me/PVCMETATKN" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pvc-meta/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x75ca521892DE7f2ecFB070Cab545c250d0cEB7e3/logo.png b/blockchains/smartchain/assets/0x75ca521892DE7f2ecFB070Cab545c250d0cEB7e3/logo.png new file mode 100644 index 0000000000000..828b3695b69ba Binary files /dev/null and b/blockchains/smartchain/assets/0x75ca521892DE7f2ecFB070Cab545c250d0cEB7e3/logo.png differ diff --git a/blockchains/smartchain/assets/0x75f53011f6D51C60e6DCbf54A8B1bCB54f07F0C9/info.json b/blockchains/smartchain/assets/0x75f53011f6D51C60e6DCbf54A8B1bCB54f07F0C9/info.json index 5799cc0999936..e67116573bb4c 100644 --- a/blockchains/smartchain/assets/0x75f53011f6D51C60e6DCbf54A8B1bCB54f07F0C9/info.json +++ b/blockchains/smartchain/assets/0x75f53011f6D51C60e6DCbf54A8B1bCB54f07F0C9/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/glimpsetoken" }, { - "name": "twitter", - "url": "https://twitter.com/glimpse_nft" + "name": "x", + "url": "https://x.com/glimpse_nft" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0x762539b45A1dCcE3D36d080F74d1AED37844b878/info.json b/blockchains/smartchain/assets/0x762539b45A1dCcE3D36d080F74d1AED37844b878/info.json index 98bb8fce6af74..185ef57001b8d 100644 --- a/blockchains/smartchain/assets/0x762539b45A1dCcE3D36d080F74d1AED37844b878/info.json +++ b/blockchains/smartchain/assets/0x762539b45A1dCcE3D36d080F74d1AED37844b878/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Linear-finance/linear" }, { - "name": "twitter", - "url": "https://twitter.com/LinearFinance" + "name": "x", + "url": "https://x.com/LinearFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x7636244Bab612264e1B2dFd4bA6E26d0311b1Eb7/info.json b/blockchains/smartchain/assets/0x7636244Bab612264e1B2dFd4bA6E26d0311b1Eb7/info.json new file mode 100644 index 0000000000000..8328789f59806 --- /dev/null +++ b/blockchains/smartchain/assets/0x7636244Bab612264e1B2dFd4bA6E26d0311b1Eb7/info.json @@ -0,0 +1,20 @@ +{ + "name": "Constellation Energy Corporation xStock", + "type": "BEP20", + "symbol": "CEGx", + "decimals": 18, + "description": "Constellation Energy Corporation xStock (CEGx) is a tracker certificate issued as a freely transferable token on selected blockchains. CEGx tracks the price of Constellation Energy Corporation. CEGx is designed to give eligible investors regulatory-compliant access to the stock price of Constellation Energy Corporation, whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x7636244Bab612264e1B2dFd4bA6E26d0311b1Eb7", + "status": "active", + "id": "0x7636244Bab612264e1B2dFd4bA6E26d0311b1Eb7", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7636244Bab612264e1B2dFd4bA6E26d0311b1Eb7/logo.png b/blockchains/smartchain/assets/0x7636244Bab612264e1B2dFd4bA6E26d0311b1Eb7/logo.png new file mode 100644 index 0000000000000..0ebda653c2b16 Binary files /dev/null and b/blockchains/smartchain/assets/0x7636244Bab612264e1B2dFd4bA6E26d0311b1Eb7/logo.png differ diff --git a/blockchains/smartchain/assets/0x763ACA17f03C221d16Ba9191A66F75B78a403BCB/info.json b/blockchains/smartchain/assets/0x763ACA17f03C221d16Ba9191A66F75B78a403BCB/info.json index 3b2619e7f1a6a..55fd99647b687 100644 --- a/blockchains/smartchain/assets/0x763ACA17f03C221d16Ba9191A66F75B78a403BCB/info.json +++ b/blockchains/smartchain/assets/0x763ACA17f03C221d16Ba9191A66F75B78a403BCB/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/axienomics/" }, { - "name": "twitter", - "url": "https://twitter.com/axienomics" + "name": "x", + "url": "https://x.com/axienomics" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9/info.json b/blockchains/smartchain/assets/0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9/info.json new file mode 100644 index 0000000000000..66a776fe2ac36 --- /dev/null +++ b/blockchains/smartchain/assets/0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9/info.json @@ -0,0 +1,24 @@ +{ + "name": "Home Depot tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Home Depot xStock (HDx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. HDx tracks the price of The Home Depot, Inc. (the underlying). HDx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of The Home Depot, Inc., whilst maintaining the benefits of blockchain technology. The Home Depot is a publicly traded home improvement retailer that operates over 2,300 stores across the United States, Canada, and Mexico.", + "explorer": "https://bscscan.com/token/0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9", + "type": "BEP20", + "symbol": "HDX", + "decimals": 18, + "status": "active", + "id": "0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/home-depot-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9/logo.png b/blockchains/smartchain/assets/0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9/logo.png new file mode 100644 index 0000000000000..a49ae723a2836 Binary files /dev/null and b/blockchains/smartchain/assets/0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9/logo.png differ diff --git a/blockchains/smartchain/assets/0x768d221E81524De52841AeD976370b2e4F990416/info.json b/blockchains/smartchain/assets/0x768d221E81524De52841AeD976370b2e4F990416/info.json index 49b55e7c92c08..956e68ab46bf4 100644 --- a/blockchains/smartchain/assets/0x768d221E81524De52841AeD976370b2e4F990416/info.json +++ b/blockchains/smartchain/assets/0x768d221E81524De52841AeD976370b2e4F990416/info.json @@ -10,8 +10,8 @@ "id": "0x768d221E81524De52841AeD976370b2e4F990416", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Moon Maker Protocol (MMP)" + "name": "x", + "url": "https://x.com/Moon Maker Protocol (MMP)" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x76A797A59Ba2C17726896976B7B3747BfD1d220f/info.json b/blockchains/smartchain/assets/0x76A797A59Ba2C17726896976B7B3747BfD1d220f/info.json index a362d5736a5d8..44d7c9b22c9ab 100644 --- a/blockchains/smartchain/assets/0x76A797A59Ba2C17726896976B7B3747BfD1d220f/info.json +++ b/blockchains/smartchain/assets/0x76A797A59Ba2C17726896976B7B3747BfD1d220f/info.json @@ -1,5 +1,5 @@ { - "name": "Wrapped TON Coin", + "name": "Gram", "type": "BEP20", "symbol": "TONCOIN", "decimals": 9, diff --git a/blockchains/smartchain/assets/0x76B560b628F74BF192bE09F0449abef8e456BE79/info.json b/blockchains/smartchain/assets/0x76B560b628F74BF192bE09F0449abef8e456BE79/info.json new file mode 100644 index 0000000000000..5a2d584a1e87c --- /dev/null +++ b/blockchains/smartchain/assets/0x76B560b628F74BF192bE09F0449abef8e456BE79/info.json @@ -0,0 +1,32 @@ +{ + "name": "BabyCate", + "type": "BEP20", + "symbol": "BABYCATE", + "decimals": 9, + "website": "https://babycate.org/", + "description": "BabyDoge + Cate = BabyCate Welcome back CZ, We will make BSC great again Trending new trend BabyCate on BSC, We not just meme, we are family! $BABYCATE", + "explorer": "https://bscscan.com/token/0x76B560b628F74BF192bE09F0449abef8e456BE79", + "status": "active", + "id": "0x76B560b628F74BF192bE09F0449abef8e456BE79", + "links": [ + { + "name": "x", + "url": "https://x.com/babycatememe" + }, + { + "name": "telegram", + "url": "https://t.me/babycatebsc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/babycate/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/babycate" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x76B560b628F74BF192bE09F0449abef8e456BE79/logo.png b/blockchains/smartchain/assets/0x76B560b628F74BF192bE09F0449abef8e456BE79/logo.png new file mode 100644 index 0000000000000..ae9f0c4e13715 Binary files /dev/null and b/blockchains/smartchain/assets/0x76B560b628F74BF192bE09F0449abef8e456BE79/logo.png differ diff --git a/blockchains/smartchain/assets/0x76E08e1c693D42551dd6ba7C2A659F74ff5Ba261/info.json b/blockchains/smartchain/assets/0x76E08e1c693D42551dd6ba7C2A659F74ff5Ba261/info.json index d1a89b654b023..a715335d8fb5e 100644 --- a/blockchains/smartchain/assets/0x76E08e1c693D42551dd6ba7C2A659F74ff5Ba261/info.json +++ b/blockchains/smartchain/assets/0x76E08e1c693D42551dd6ba7C2A659F74ff5Ba261/info.json @@ -10,8 +10,8 @@ "id": "0x76E08e1c693D42551dd6ba7C2A659F74ff5Ba261", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ShakitaInu" + "name": "x", + "url": "https://x.com/ShakitaInu" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x76E39171Cb665a35981e744e2CEB7012F76caEAc/info.json b/blockchains/smartchain/assets/0x76E39171Cb665a35981e744e2CEB7012F76caEAc/info.json new file mode 100644 index 0000000000000..3a857b7e3825a --- /dev/null +++ b/blockchains/smartchain/assets/0x76E39171Cb665a35981e744e2CEB7012F76caEAc/info.json @@ -0,0 +1,24 @@ +{ + "name": "CoreWeave (Ondo Tokenized)", + "type": "BEP20", + "symbol": "CRWVon", + "decimals": 18, + "description": "CRWVon is the Ondo Tokenized version of CoreWeave, giving tokenholders economic exposure similar to holding CRWV and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x76E39171Cb665a35981e744e2CEB7012F76caEAc", + "status": "active", + "id": "0x76E39171Cb665a35981e744e2CEB7012F76caEAc", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/coreweave-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x76E39171Cb665a35981e744e2CEB7012F76caEAc/logo.png b/blockchains/smartchain/assets/0x76E39171Cb665a35981e744e2CEB7012F76caEAc/logo.png new file mode 100644 index 0000000000000..3997bb790230f Binary files /dev/null and b/blockchains/smartchain/assets/0x76E39171Cb665a35981e744e2CEB7012F76caEAc/logo.png differ diff --git a/blockchains/smartchain/assets/0x76F34cd142ca4a5ea2E197ebffbF5234A1c29268/info.json b/blockchains/smartchain/assets/0x76F34cd142ca4a5ea2E197ebffbF5234A1c29268/info.json index aea477b607848..cb8e9135ed63b 100644 --- a/blockchains/smartchain/assets/0x76F34cd142ca4a5ea2E197ebffbF5234A1c29268/info.json +++ b/blockchains/smartchain/assets/0x76F34cd142ca4a5ea2E197ebffbF5234A1c29268/info.json @@ -10,8 +10,8 @@ "id": "0x76F34cd142ca4a5ea2E197ebffbF5234A1c29268", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TitanWarNFT" + "name": "x", + "url": "https://x.com/TitanWarNFT" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x76F6cd75cE81E88916f8D933ab76efE18cEd6ad3/info.json b/blockchains/smartchain/assets/0x76F6cd75cE81E88916f8D933ab76efE18cEd6ad3/info.json index c139d2b9e7618..b162acc7e66eb 100644 --- a/blockchains/smartchain/assets/0x76F6cd75cE81E88916f8D933ab76efE18cEd6ad3/info.json +++ b/blockchains/smartchain/assets/0x76F6cd75cE81E88916f8D933ab76efE18cEd6ad3/info.json @@ -10,8 +10,8 @@ "id": "0x76F6cd75cE81E88916f8D933ab76efE18cEd6ad3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/NFT_Globall" + "name": "x", + "url": "https://x.com/NFT_Globall" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x76aECB353AbF596BD61EE6BDb07d70787DeC4FD6/info.json b/blockchains/smartchain/assets/0x76aECB353AbF596BD61EE6BDb07d70787DeC4FD6/info.json index 7c44a6e601bb9..33238df49d4e7 100644 --- a/blockchains/smartchain/assets/0x76aECB353AbF596BD61EE6BDb07d70787DeC4FD6/info.json +++ b/blockchains/smartchain/assets/0x76aECB353AbF596BD61EE6BDb07d70787DeC4FD6/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/cure_token" + "name": "x", + "url": "https://x.com/cure_token" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x76eDccAfc368752D2bEcC377c9bF834427aa6693/info.json b/blockchains/smartchain/assets/0x76eDccAfc368752D2bEcC377c9bF834427aa6693/info.json new file mode 100644 index 0000000000000..291fe8df09106 --- /dev/null +++ b/blockchains/smartchain/assets/0x76eDccAfc368752D2bEcC377c9bF834427aa6693/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether USD", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x76eDccAfc368752D2bEcC377c9bF834427aa6693", + "explorer": "https://bscscan.com/token/0x76eDccAfc368752D2bEcC377c9bF834427aa6693", + "status": "spam", + "id": "0x76eDccAfc368752D2bEcC377c9bF834427aa6693" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7700Edc3DBb30cBB7603212E061c804220c3cA54/info.json b/blockchains/smartchain/assets/0x7700Edc3DBb30cBB7603212E061c804220c3cA54/info.json index 43ef1b14d1692..0c5a256a01c5a 100644 --- a/blockchains/smartchain/assets/0x7700Edc3DBb30cBB7603212E061c804220c3cA54/info.json +++ b/blockchains/smartchain/assets/0x7700Edc3DBb30cBB7603212E061c804220c3cA54/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/quantic_finance" }, { - "name": "twitter", - "url": "https://twitter.com/Quantic_finance" + "name": "x", + "url": "https://x.com/Quantic_finance" }, { "name": "discord", diff --git a/blockchains/smartchain/assets/0x7704d0EaD6F74E625d7371b079D8b2475bc852d4/info.json b/blockchains/smartchain/assets/0x7704d0EaD6F74E625d7371b079D8b2475bc852d4/info.json index 38d8335d04873..6abf21d20cd10 100644 --- a/blockchains/smartchain/assets/0x7704d0EaD6F74E625d7371b079D8b2475bc852d4/info.json +++ b/blockchains/smartchain/assets/0x7704d0EaD6F74E625d7371b079D8b2475bc852d4/info.json @@ -10,8 +10,8 @@ "id": "0x7704d0EaD6F74E625d7371b079D8b2475bc852d4", "links": [ { - "name": "twitter", - "url": "https://twitter.com/pulseaiapp" + "name": "x", + "url": "https://x.com/pulseaiapp" }, { "name": "telegram", @@ -22,4 +22,4 @@ "url": "https://coinmarketcap.com/currencies/pulseai/" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x77087aB5Df23cFB52449A188e80e9096201c2097/info.json b/blockchains/smartchain/assets/0x77087aB5Df23cFB52449A188e80e9096201c2097/info.json index 04004ccdac773..a77ef9a0e1d73 100644 --- a/blockchains/smartchain/assets/0x77087aB5Df23cFB52449A188e80e9096201c2097/info.json +++ b/blockchains/smartchain/assets/0x77087aB5Df23cFB52449A188e80e9096201c2097/info.json @@ -10,8 +10,8 @@ "id": "0x77087aB5Df23cFB52449A188e80e9096201c2097", "links": [ { - "name": "twitter", - "url": "https://twitter.com/hi_com_official" + "name": "x", + "url": "https://x.com/hi_com_official" }, { "name": "github", @@ -57,4 +57,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x773b532126b9F307665942b0fa4cDa0540CeDb71/info.json b/blockchains/smartchain/assets/0x773b532126b9F307665942b0fa4cDa0540CeDb71/info.json index 832d63619bb5b..35c18c6338c1d 100644 --- a/blockchains/smartchain/assets/0x773b532126b9F307665942b0fa4cDa0540CeDb71/info.json +++ b/blockchains/smartchain/assets/0x773b532126b9F307665942b0fa4cDa0540CeDb71/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/BoosterToken" }, { - "name": "twitter", - "url": "https://twitter.com/BoosterToken" + "name": "x", + "url": "https://x.com/BoosterToken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x7758a52c1Bb823d02878B67aD87B6bA37a0CDbF5/info.json b/blockchains/smartchain/assets/0x7758a52c1Bb823d02878B67aD87B6bA37a0CDbF5/info.json index 24c642c39e8e4..bc90fdf3f525f 100644 --- a/blockchains/smartchain/assets/0x7758a52c1Bb823d02878B67aD87B6bA37a0CDbF5/info.json +++ b/blockchains/smartchain/assets/0x7758a52c1Bb823d02878B67aD87B6bA37a0CDbF5/info.json @@ -10,8 +10,8 @@ "id": "0x7758a52c1Bb823d02878B67aD87B6bA37a0CDbF5", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ookeenga" + "name": "x", + "url": "https://x.com/ookeenga" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x77d547256A2cD95F32F67aE0313E450Ac200648d/info.json b/blockchains/smartchain/assets/0x77d547256A2cD95F32F67aE0313E450Ac200648d/info.json index 7dbca01cefff2..34394af7e8455 100644 --- a/blockchains/smartchain/assets/0x77d547256A2cD95F32F67aE0313E450Ac200648d/info.json +++ b/blockchains/smartchain/assets/0x77d547256A2cD95F32F67aE0313E450Ac200648d/info.json @@ -10,8 +10,8 @@ "id": "0x77d547256A2cD95F32F67aE0313E450Ac200648d", "links": [ { - "name": "twitter", - "url": "https://twitter.com/OfficialSSLazio" + "name": "x", + "url": "https://x.com/OfficialSSLazio" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x780207B8C0Fdc32cF60E957415bFa1f2d4d9718c/info.json b/blockchains/smartchain/assets/0x780207B8C0Fdc32cF60E957415bFa1f2d4d9718c/info.json index 24c4517d381a8..97e6688b9c8c5 100644 --- a/blockchains/smartchain/assets/0x780207B8C0Fdc32cF60E957415bFa1f2d4d9718c/info.json +++ b/blockchains/smartchain/assets/0x780207B8C0Fdc32cF60E957415bFa1f2d4d9718c/info.json @@ -10,8 +10,8 @@ "id": "0x780207B8C0Fdc32cF60E957415bFa1f2d4d9718c", "links": [ { - "name": "twitter", - "url": "https://twitter.com/yourcashaa" + "name": "x", + "url": "https://x.com/yourcashaa" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x784584933C2192Caa062E90d8140D94768CE62d8/info.json b/blockchains/smartchain/assets/0x784584933C2192Caa062E90d8140D94768CE62d8/info.json new file mode 100644 index 0000000000000..0e3d8e531e755 --- /dev/null +++ b/blockchains/smartchain/assets/0x784584933C2192Caa062E90d8140D94768CE62d8/info.json @@ -0,0 +1,28 @@ +{ + "name": "Intuitive Surgical (Ondo Tokenized)", + "type": "BEP20", + "symbol": "ISRGon", + "decimals": 18, + "description": "ISRGon is the Ondo Tokenized version of Intuitive Surgical, giving tokenholders economic exposure similar to holding ISRG and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x784584933C2192Caa062E90d8140D94768CE62d8", + "status": "active", + "id": "0x784584933C2192Caa062E90d8140D94768CE62d8", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/intuitive-surgical-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/intuitive-surgical-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x784584933C2192Caa062E90d8140D94768CE62d8/logo.png b/blockchains/smartchain/assets/0x784584933C2192Caa062E90d8140D94768CE62d8/logo.png new file mode 100644 index 0000000000000..3d67baddce3dd Binary files /dev/null and b/blockchains/smartchain/assets/0x784584933C2192Caa062E90d8140D94768CE62d8/logo.png differ diff --git a/blockchains/smartchain/assets/0x7847bFfD0EB96C53a96aF526643E2546eFeC0828/info.json b/blockchains/smartchain/assets/0x7847bFfD0EB96C53a96aF526643E2546eFeC0828/info.json new file mode 100644 index 0000000000000..53bfa0befe4c1 --- /dev/null +++ b/blockchains/smartchain/assets/0x7847bFfD0EB96C53a96aF526643E2546eFeC0828/info.json @@ -0,0 +1,36 @@ +{ + "name": "JETMAX", + "type": "BEP20", + "symbol": "JET", + "decimals": 18, + "website": "https://jetmax.io/", + "description": "JETMAX – A utility token powering an ecosystem for logistics and decentralized finance on BNB Chain.", + "explorer": "https://bscscan.com/token/0x7847bffd0eb96c53a96af526643e2546efec0828", + "status": "active", + "id": "0x7847bFfD0EB96C53a96aF526643E2546eFeC0828", + "links": [ + { + "name": "x", + "url": "https://x.com/JetMaxCoin" + }, + { + "name": "telegram", + "url": "https://t.me/JetMaxCoin" + }, + { + "name": "github", + "url": "https://github.com/jetmaxcoin" + }, + { + "name": "source_code", + "url": "https://github.com/jetmaxcoin/Jet" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jetmax" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/smartchain/assets/0x7847bFfD0EB96C53a96aF526643E2546eFeC0828/logo.png b/blockchains/smartchain/assets/0x7847bFfD0EB96C53a96aF526643E2546eFeC0828/logo.png new file mode 100644 index 0000000000000..56c9d67250e4a Binary files /dev/null and b/blockchains/smartchain/assets/0x7847bFfD0EB96C53a96aF526643E2546eFeC0828/logo.png differ diff --git a/blockchains/smartchain/assets/0x7859B01BbF675d67Da8cD128a50D155cd881B576/info.json b/blockchains/smartchain/assets/0x7859B01BbF675d67Da8cD128a50D155cd881B576/info.json index 41caa7a8075c9..63dfd9f4e573b 100644 --- a/blockchains/smartchain/assets/0x7859B01BbF675d67Da8cD128a50D155cd881B576/info.json +++ b/blockchains/smartchain/assets/0x7859B01BbF675d67Da8cD128a50D155cd881B576/info.json @@ -10,8 +10,8 @@ "id": "0x7859B01BbF675d67Da8cD128a50D155cd881B576", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MarsEcosystem" + "name": "x", + "url": "https://x.com/MarsEcosystem" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x78650B139471520656b9E7aA7A5e9276814a38e9/info.json b/blockchains/smartchain/assets/0x78650B139471520656b9E7aA7A5e9276814a38e9/info.json index 122f32d06ca14..117bbc0db033d 100644 --- a/blockchains/smartchain/assets/0x78650B139471520656b9E7aA7A5e9276814a38e9/info.json +++ b/blockchains/smartchain/assets/0x78650B139471520656b9E7aA7A5e9276814a38e9/info.json @@ -11,8 +11,8 @@ "id": "0x78650B139471520656b9E7aA7A5e9276814a38e9", "links": [ { - "name": "twitter", - "url": "https://twitter.com/btcst2020" + "name": "x", + "url": "https://x.com/btcst2020" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x78A499a998Bdd5a84CF8b5aBe49100D82DE12f1C/info.json b/blockchains/smartchain/assets/0x78A499a998Bdd5a84CF8b5aBe49100D82DE12f1C/info.json index 416eed8664db0..671084fcece8c 100644 --- a/blockchains/smartchain/assets/0x78A499a998Bdd5a84CF8b5aBe49100D82DE12f1C/info.json +++ b/blockchains/smartchain/assets/0x78A499a998Bdd5a84CF8b5aBe49100D82DE12f1C/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/JOJO_Official" }, { - "name": "twitter", - "url": "https://twitter.com/JOJOMetaverse" + "name": "x", + "url": "https://x.com/JOJOMetaverse" }, { "name": "blog", diff --git a/blockchains/smartchain/assets/0x78C3AdE403438B37638304F9FbbFB1b76608c1BD/info.json b/blockchains/smartchain/assets/0x78C3AdE403438B37638304F9FbbFB1b76608c1BD/info.json index edc3a338e2f5f..5e1b82429dd8a 100644 --- a/blockchains/smartchain/assets/0x78C3AdE403438B37638304F9FbbFB1b76608c1BD/info.json +++ b/blockchains/smartchain/assets/0x78C3AdE403438B37638304F9FbbFB1b76608c1BD/info.json @@ -10,8 +10,8 @@ "id": "0x78C3AdE403438B37638304F9FbbFB1b76608c1BD", "links": [ { - "name": "twitter", - "url": "https://twitter.com/binahero" + "name": "x", + "url": "https://x.com/binahero" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x78F5d389F5CDCcFc41594aBaB4B0Ed02F31398b3/info.json b/blockchains/smartchain/assets/0x78F5d389F5CDCcFc41594aBaB4B0Ed02F31398b3/info.json index 992da7161686f..9170d2067f2d2 100644 --- a/blockchains/smartchain/assets/0x78F5d389F5CDCcFc41594aBaB4B0Ed02F31398b3/info.json +++ b/blockchains/smartchain/assets/0x78F5d389F5CDCcFc41594aBaB4B0Ed02F31398b3/info.json @@ -1,5 +1,5 @@ { - "name": "ApolloX Token", + "name": "APX", "type": "BEP20", "symbol": "APX", "decimals": 18, @@ -22,8 +22,8 @@ "url": "https://facebook.com/ApolloXcom" }, { - "name": "twitter", - "url": "https://twitter.com/ApolloX_com" + "name": "x", + "url": "https://x.com/ApolloX_com" }, { "name": "blog", @@ -38,4 +38,4 @@ "defi", "governance" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x78aCc0B75fAbbac9FF8E01f221C13F50Ce6cDd63/info.json b/blockchains/smartchain/assets/0x78aCc0B75fAbbac9FF8E01f221C13F50Ce6cDd63/info.json new file mode 100644 index 0000000000000..b085038d02282 --- /dev/null +++ b/blockchains/smartchain/assets/0x78aCc0B75fAbbac9FF8E01f221C13F50Ce6cDd63/info.json @@ -0,0 +1,26 @@ +{ + "name": "GROK 3", + "type": "BEP20", + "symbol": "GROK3", + "decimals": 9, + "description": "Grok 3 is a cutting-edge digital token built to drive the next generation of decentralized applications (dApps). By combining blockchain technology with advanced smart contracts, Grok 3 offers enhanced security, scalability, and seamless user experiences.", + "website": "https://grok3bnb.xyz/", + "explorer": "https://bscscan.com/token/0x78aCc0B75fAbbac9FF8E01f221C13F50Ce6cDd63", + "id": "0x78aCc0B75fAbbac9FF8E01f221C13F50Ce6cDd63", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Grok3Xai_bnb" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/grok-3-bnb/" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x78aCc0B75fAbbac9FF8E01f221C13F50Ce6cDd63/logo.png b/blockchains/smartchain/assets/0x78aCc0B75fAbbac9FF8E01f221C13F50Ce6cDd63/logo.png new file mode 100644 index 0000000000000..6488445b3051e Binary files /dev/null and b/blockchains/smartchain/assets/0x78aCc0B75fAbbac9FF8E01f221C13F50Ce6cDd63/logo.png differ diff --git a/blockchains/smartchain/assets/0x78c6E90aFa87E2C97cac1A07652Aa0998C6C9078/info.json b/blockchains/smartchain/assets/0x78c6E90aFa87E2C97cac1A07652Aa0998C6C9078/info.json index 041016f2c071f..b360b75329622 100644 --- a/blockchains/smartchain/assets/0x78c6E90aFa87E2C97cac1A07652Aa0998C6C9078/info.json +++ b/blockchains/smartchain/assets/0x78c6E90aFa87E2C97cac1A07652Aa0998C6C9078/info.json @@ -10,8 +10,8 @@ "id": "0x78c6E90aFa87E2C97cac1A07652Aa0998C6C9078", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Hare_token" + "name": "x", + "url": "https://x.com/Hare_token" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x790Be81C3cA0e53974bE2688cDb954732C9862e1/info.json b/blockchains/smartchain/assets/0x790Be81C3cA0e53974bE2688cDb954732C9862e1/info.json index 775e37a5035f1..501b17b4311cd 100644 --- a/blockchains/smartchain/assets/0x790Be81C3cA0e53974bE2688cDb954732C9862e1/info.json +++ b/blockchains/smartchain/assets/0x790Be81C3cA0e53974bE2688cDb954732C9862e1/info.json @@ -11,8 +11,8 @@ "id": "0x790Be81C3cA0e53974bE2688cDb954732C9862e1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/cafeswapfinance" + "name": "x", + "url": "https://x.com/cafeswapfinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x7917C830ECA3360e24e09fD422310A734AC9D2c9/info.json b/blockchains/smartchain/assets/0x7917C830ECA3360e24e09fD422310A734AC9D2c9/info.json index 68dbf860236c9..04ff454b3e245 100644 --- a/blockchains/smartchain/assets/0x7917C830ECA3360e24e09fD422310A734AC9D2c9/info.json +++ b/blockchains/smartchain/assets/0x7917C830ECA3360e24e09fD422310A734AC9D2c9/info.json @@ -10,8 +10,8 @@ "id": "0x7917C830ECA3360e24e09fD422310A734AC9D2c9", "links": [ { - "name": "twitter", - "url": "https://twitter.com/headfootball_io" + "name": "x", + "url": "https://x.com/headfootball_io" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x793cEa0F1003411396b3A81A77d92Fe37015E7A9/info.json b/blockchains/smartchain/assets/0x793cEa0F1003411396b3A81A77d92Fe37015E7A9/info.json index 1c6e45899bb10..1a1fd25a1a8d3 100644 --- a/blockchains/smartchain/assets/0x793cEa0F1003411396b3A81A77d92Fe37015E7A9/info.json +++ b/blockchains/smartchain/assets/0x793cEa0F1003411396b3A81A77d92Fe37015E7A9/info.json @@ -18,8 +18,8 @@ "url": "https://t.me/CNESCommunity" }, { - "name": "twitter", - "url": "https://twitter.com/cnesofficial" + "name": "x", + "url": "https://x.com/cnesofficial" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0x795D2710E383F33fbEbe980a155b29757b6703f3/info.json b/blockchains/smartchain/assets/0x795D2710E383F33fbEbe980a155b29757b6703f3/info.json new file mode 100644 index 0000000000000..bbf616811dd7e --- /dev/null +++ b/blockchains/smartchain/assets/0x795D2710E383F33fbEbe980a155b29757b6703f3/info.json @@ -0,0 +1,17 @@ +{ + "name": "GhibliCZ", + "symbol": "Ghibli", + "type": "BEP20", + "decimals": 18, + "description": "Ghibli CZ CTO", + "website": "https://x.com/GhibliCTO_BSC", + "explorer": "https://bscscan.com/token/0x795D2710E383F33fbEbe980a155b29757b6703f3", + "status": "active", + "id": "0x795D2710E383F33fbEbe980a155b29757b6703f3", + "links": [ + { + "name": "x", + "url": "https://x.com/GhibliCTO_BSC" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x795D2710E383F33fbEbe980a155b29757b6703f3/logo.png b/blockchains/smartchain/assets/0x795D2710E383F33fbEbe980a155b29757b6703f3/logo.png new file mode 100644 index 0000000000000..0a8c14ba4a1fe Binary files /dev/null and b/blockchains/smartchain/assets/0x795D2710E383F33fbEbe980a155b29757b6703f3/logo.png differ diff --git a/blockchains/smartchain/assets/0x7979F6C54ebA05E18Ded44C4F986F49a5De551c2/info.json b/blockchains/smartchain/assets/0x7979F6C54ebA05E18Ded44C4F986F49a5De551c2/info.json index 40438e9c580bf..16cb0e8e69502 100644 --- a/blockchains/smartchain/assets/0x7979F6C54ebA05E18Ded44C4F986F49a5De551c2/info.json +++ b/blockchains/smartchain/assets/0x7979F6C54ebA05E18Ded44C4F986F49a5De551c2/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/chefkebab" }, { - "name": "twitter", - "url": "https://twitter.com/kebabfinance" + "name": "x", + "url": "https://x.com/kebabfinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x797Bb0BeeA437D2762A755ea911C0046C1284568/info.json b/blockchains/smartchain/assets/0x797Bb0BeeA437D2762A755ea911C0046C1284568/info.json index 7ccfdc6fdf4af..af53e500ad55e 100644 --- a/blockchains/smartchain/assets/0x797Bb0BeeA437D2762A755ea911C0046C1284568/info.json +++ b/blockchains/smartchain/assets/0x797Bb0BeeA437D2762A755ea911C0046C1284568/info.json @@ -10,8 +10,8 @@ "id": "0x797Bb0BeeA437D2762A755ea911C0046C1284568", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VulkaniaApp" + "name": "x", + "url": "https://x.com/VulkaniaApp" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x798EFf477fC1D7B3131B6F81a81eFeaA515a8888/info.json b/blockchains/smartchain/assets/0x798EFf477fC1D7B3131B6F81a81eFeaA515a8888/info.json new file mode 100644 index 0000000000000..f0fef70207e99 --- /dev/null +++ b/blockchains/smartchain/assets/0x798EFf477fC1D7B3131B6F81a81eFeaA515a8888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Bitcoin", + "type": "BEP20", + "symbol": "FAKE BTC", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x798EFf477fC1D7B3131B6F81a81eFeaA515a8888", + "explorer": "https://bscscan.com/token/0x798EFf477fC1D7B3131B6F81a81eFeaA515a8888", + "status": "spam", + "id": "0x798EFf477fC1D7B3131B6F81a81eFeaA515a8888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x798aF7725376765e7F3cA86d5e0Cf1BEaEf19F34/info.json b/blockchains/smartchain/assets/0x798aF7725376765e7F3cA86d5e0Cf1BEaEf19F34/info.json index 91a9adbd48c3c..24eeb2d72d877 100644 --- a/blockchains/smartchain/assets/0x798aF7725376765e7F3cA86d5e0Cf1BEaEf19F34/info.json +++ b/blockchains/smartchain/assets/0x798aF7725376765e7F3cA86d5e0Cf1BEaEf19F34/info.json @@ -25,8 +25,8 @@ "url": "https://github.com/Atomicwallet/" }, { - "name": "twitter", - "url": "https://twitter.com/atomicwallet" + "name": "x", + "url": "https://x.com/atomicwallet" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x799934c486133f2D01049AbcaC9Ca65ec642cAD6/info.json b/blockchains/smartchain/assets/0x799934c486133f2D01049AbcaC9Ca65ec642cAD6/info.json new file mode 100644 index 0000000000000..d091141d99013 --- /dev/null +++ b/blockchains/smartchain/assets/0x799934c486133f2D01049AbcaC9Ca65ec642cAD6/info.json @@ -0,0 +1,14 @@ +{ + "name": "Trustcat", + "type": "BEP20", + "symbol": "Trustcat", + "decimals": 18, + "website": "https://four.meme/token/0x799934c486133f2D01049AbcaC9Ca65ec642cAD6", + "description": "Trustcat", + "explorer": "https://bscscan.com/token/0x799934c486133f2D01049AbcaC9Ca65ec642cAD6", + "status": "active", + "id": "0x799934c486133f2D01049AbcaC9Ca65ec642cAD6", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x799934c486133f2D01049AbcaC9Ca65ec642cAD6/logo.png b/blockchains/smartchain/assets/0x799934c486133f2D01049AbcaC9Ca65ec642cAD6/logo.png new file mode 100644 index 0000000000000..6250193e2333d Binary files /dev/null and b/blockchains/smartchain/assets/0x799934c486133f2D01049AbcaC9Ca65ec642cAD6/logo.png differ diff --git a/blockchains/smartchain/assets/0x799a290F9CC4085a0ce5b42b5F2C30193A7a872B/info.json b/blockchains/smartchain/assets/0x799a290F9CC4085a0ce5b42b5F2C30193A7a872B/info.json new file mode 100644 index 0000000000000..e11dc82661774 --- /dev/null +++ b/blockchains/smartchain/assets/0x799a290F9CC4085a0ce5b42b5F2C30193A7a872B/info.json @@ -0,0 +1,28 @@ +{ + "name": "Elderglade", + "website": "https://elderglade.com/", + "description": "Elderglade is a next-generation Web3 fantasy game ecosystem that combines two of gaming's most successful genres: casual mobile games and MMORPGs, powered by ELDE token.", + "explorer": "https://bscscan.com/token/0x799a290F9CC4085a0ce5b42b5F2C30193A7a872B", + "type": "BEP20", + "symbol": "ELDE", + "decimals": 18, + "status": "active", + "id": "0x799a290F9CC4085a0ce5b42b5F2C30193A7a872B", + "links": [ + { + "name": "x", + "url": "https://x.com/Elderglade" + }, + { + "name": "telegram", + "url": "https://t.me/elderglade" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elderglade/" + } + ], + "tags": [ + "gamefi" + ] +} diff --git a/blockchains/smartchain/assets/0x799a290F9CC4085a0ce5b42b5F2C30193A7a872B/logo.png b/blockchains/smartchain/assets/0x799a290F9CC4085a0ce5b42b5F2C30193A7a872B/logo.png new file mode 100644 index 0000000000000..247241297b5d6 Binary files /dev/null and b/blockchains/smartchain/assets/0x799a290F9CC4085a0ce5b42b5F2C30193A7a872B/logo.png differ diff --git a/blockchains/smartchain/assets/0x799e1Cf88A236e42b4A87c544A22A94aE95A6910/info.json b/blockchains/smartchain/assets/0x799e1Cf88A236e42b4A87c544A22A94aE95A6910/info.json index f6f7860d5a9b7..011851ffe997c 100644 --- a/blockchains/smartchain/assets/0x799e1Cf88A236e42b4A87c544A22A94aE95A6910/info.json +++ b/blockchains/smartchain/assets/0x799e1Cf88A236e42b4A87c544A22A94aE95A6910/info.json @@ -10,8 +10,8 @@ "id": "0x799e1Cf88A236e42b4A87c544A22A94aE95A6910", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MContent_" + "name": "x", + "url": "https://x.com/MContent_" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x79CDc9cA057E16dFfd45BD803491f328f49e1762/info.json b/blockchains/smartchain/assets/0x79CDc9cA057E16dFfd45BD803491f328f49e1762/info.json new file mode 100644 index 0000000000000..2598a444f974a --- /dev/null +++ b/blockchains/smartchain/assets/0x79CDc9cA057E16dFfd45BD803491f328f49e1762/info.json @@ -0,0 +1,24 @@ +{ + "name": "BitFloki", + "type": "BEP20", + "symbol": "BFLOKI", + "decimals": 9, + "website": "https://bitfloki.io/", + "description": "BitFloki isn't your average token—it's a meme token revolution! We're here to shake up the meme token scene while providing equal opportunities for financial success. Our community-driven approach fosters inclusivity, ensuring everyone feels part of the meme token frenzy. BitFloki embraces the playful spirit of meme tokens while championing decentralization, putting the power in the hands of our vibrant community. With BitFloki, everyone can join the fun and ride the wave of meme token excitement toward success.", + "explorer": "https://bscscan.com/token/0x79CDc9cA057E16dFfd45BD803491f328f49e1762", + "status": "active", + "id": "0x79CDc9cA057E16dFfd45BD803491f328f49e1762", + "links": [ + { + "name": "x", + "url": "https://x.com/BitFloki_io" + }, + { + "name": "telegram", + "url": "https://t.me/BitFloki_io" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x79CDc9cA057E16dFfd45BD803491f328f49e1762/logo.png b/blockchains/smartchain/assets/0x79CDc9cA057E16dFfd45BD803491f328f49e1762/logo.png new file mode 100644 index 0000000000000..8db792dafdd11 Binary files /dev/null and b/blockchains/smartchain/assets/0x79CDc9cA057E16dFfd45BD803491f328f49e1762/logo.png differ diff --git a/blockchains/smartchain/assets/0x79eBC9A2ce02277A4b5b3A768b1C0A4ed75Bd936/info.json b/blockchains/smartchain/assets/0x79eBC9A2ce02277A4b5b3A768b1C0A4ed75Bd936/info.json index f20796c291991..d20fbb2d24d01 100644 --- a/blockchains/smartchain/assets/0x79eBC9A2ce02277A4b5b3A768b1C0A4ed75Bd936/info.json +++ b/blockchains/smartchain/assets/0x79eBC9A2ce02277A4b5b3A768b1C0A4ed75Bd936/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "CATGIRL", "decimals": 9, - "status": "active", + "status": "abandoned", "id": "0x79eBC9A2ce02277A4b5b3A768b1C0A4ed75Bd936", "tags": [ "deflationary" @@ -17,8 +17,8 @@ "url": "https://discord.com/invite/3V8gZFP5kb" }, { - "name": "twitter", - "url": "https://twitter.com/catgirlcoin" + "name": "x", + "url": "https://x.com/catgirlcoin" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x79eBC9A2ce02277A4b5b3A768b1C0A4ed75Bd936/logo.png b/blockchains/smartchain/assets/0x79eBC9A2ce02277A4b5b3A768b1C0A4ed75Bd936/logo.png deleted file mode 100644 index e7bc9fd75c29f..0000000000000 Binary files a/blockchains/smartchain/assets/0x79eBC9A2ce02277A4b5b3A768b1C0A4ed75Bd936/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x79f8E9862c5240F316faBf31e5406e497d65484d/info.json b/blockchains/smartchain/assets/0x79f8E9862c5240F316faBf31e5406e497d65484d/info.json index 6d0d2c44e0922..d0a7d0814b628 100644 --- a/blockchains/smartchain/assets/0x79f8E9862c5240F316faBf31e5406e497d65484d/info.json +++ b/blockchains/smartchain/assets/0x79f8E9862c5240F316faBf31e5406e497d65484d/info.json @@ -10,8 +10,8 @@ "id": "0x79f8E9862c5240F316faBf31e5406e497d65484d", "links": [ { - "name": "twitter", - "url": "https://twitter.com/btc_btci" + "name": "x", + "url": "https://x.com/btc_btci" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x7A532Aa9A2Ab86f6BD7E1Dcd93d3FdD2B0B410a6/info.json b/blockchains/smartchain/assets/0x7A532Aa9A2Ab86f6BD7E1Dcd93d3FdD2B0B410a6/info.json index 2373370f58f85..14413ba9608eb 100644 --- a/blockchains/smartchain/assets/0x7A532Aa9A2Ab86f6BD7E1Dcd93d3FdD2B0B410a6/info.json +++ b/blockchains/smartchain/assets/0x7A532Aa9A2Ab86f6BD7E1Dcd93d3FdD2B0B410a6/info.json @@ -10,8 +10,8 @@ "id": "0x7A532Aa9A2Ab86f6BD7E1Dcd93d3FdD2B0B410a6", "links": [ { - "name": "twitter", - "url": "https://twitter.com/IRR_Toman?s=20&t=rSm1Z7nA6bwkeYbXIVutjQ" + "name": "x", + "url": "https://x.com/IRR_Toman?s=20&t=rSm1Z7nA6bwkeYbXIVutjQ" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x7A565284572d03EC50c35396F7d6001252eb43B6/info.json b/blockchains/smartchain/assets/0x7A565284572d03EC50c35396F7d6001252eb43B6/info.json index 9d48a74e3ec50..043fdad8213aa 100644 --- a/blockchains/smartchain/assets/0x7A565284572d03EC50c35396F7d6001252eb43B6/info.json +++ b/blockchains/smartchain/assets/0x7A565284572d03EC50c35396F7d6001252eb43B6/info.json @@ -10,8 +10,8 @@ "id": "0x7A565284572d03EC50c35396F7d6001252eb43B6", "links": [ { - "name": "twitter", - "url": "https://twitter.com/dogezillacoin" + "name": "x", + "url": "https://x.com/dogezillacoin" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x7A848a5A8169aa6a2f603D056A749f924F504444/info.json b/blockchains/smartchain/assets/0x7A848a5A8169aa6a2f603D056A749f924F504444/info.json new file mode 100644 index 0000000000000..84575aac5f6d9 --- /dev/null +++ b/blockchains/smartchain/assets/0x7A848a5A8169aa6a2f603D056A749f924F504444/info.json @@ -0,0 +1,14 @@ +{ + "name": "The Final Form Bull", + "type": "BEP20", + "symbol": "CZ", + "decimals": 18, + "description": "The Final Form Bull", + "website": "https://four.meme/token/0x7a848a5a8169aa6a2f603d056a749f924f504444", + "explorer": "https://bscscan.com/token/0x7A848a5A8169aa6a2f603D056A749f924F504444", + "status": "active", + "id": "0x7A848a5A8169aa6a2f603D056A749f924F504444", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7A848a5A8169aa6a2f603D056A749f924F504444/logo.png b/blockchains/smartchain/assets/0x7A848a5A8169aa6a2f603D056A749f924F504444/logo.png new file mode 100644 index 0000000000000..ebf83b94109a7 Binary files /dev/null and b/blockchains/smartchain/assets/0x7A848a5A8169aa6a2f603D056A749f924F504444/logo.png differ diff --git a/blockchains/smartchain/assets/0x7AE5709c585cCFB3e61fF312EC632C21A5F03F70/info.json b/blockchains/smartchain/assets/0x7AE5709c585cCFB3e61fF312EC632C21A5F03F70/info.json index ac0c6ad7f693f..ac2b0aac5d37b 100644 --- a/blockchains/smartchain/assets/0x7AE5709c585cCFB3e61fF312EC632C21A5F03F70/info.json +++ b/blockchains/smartchain/assets/0x7AE5709c585cCFB3e61fF312EC632C21A5F03F70/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/dogedashgame" }, { - "name": "twitter", - "url": "https://twitter.com/doge_dash" + "name": "x", + "url": "https://x.com/doge_dash" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x7AEfc9965699fBea943e03264d96e50CD4A97b21/info.json b/blockchains/smartchain/assets/0x7AEfc9965699fBea943e03264d96e50CD4A97b21/info.json new file mode 100644 index 0000000000000..b8f0eb9e9fc3a --- /dev/null +++ b/blockchains/smartchain/assets/0x7AEfc9965699fBea943e03264d96e50CD4A97b21/info.json @@ -0,0 +1,24 @@ +{ + "name": "Walmart tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Walmart xStock (WMTx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. WMTx tracks the price of Walmart Inc. (the underlying). WMTx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Walmart Inc., whilst maintaining the benefits of blockchain technology. Walmart Inc. is a multinational retail corporation operating a global network of discount department stores, supercenters, and online platforms. It is one of the largest retailers in the world, known for its everyday low prices and broad product assortment.", + "explorer": "https://bscscan.com/token/0x7AEfc9965699fBea943e03264d96e50CD4A97b21", + "type": "BEP20", + "symbol": "WMTX", + "decimals": 18, + "status": "active", + "id": "0x7AEfc9965699fBea943e03264d96e50CD4A97b21", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/walmart-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7AEfc9965699fBea943e03264d96e50CD4A97b21/logo.png b/blockchains/smartchain/assets/0x7AEfc9965699fBea943e03264d96e50CD4A97b21/logo.png new file mode 100644 index 0000000000000..ef21853af9684 Binary files /dev/null and b/blockchains/smartchain/assets/0x7AEfc9965699fBea943e03264d96e50CD4A97b21/logo.png differ diff --git a/blockchains/smartchain/assets/0x7Abf7f54F30a45c7c43D728A75d6741440d7c591/info.json b/blockchains/smartchain/assets/0x7Abf7f54F30a45c7c43D728A75d6741440d7c591/info.json index 8fda6ae4e6063..fa623f01bb31b 100644 --- a/blockchains/smartchain/assets/0x7Abf7f54F30a45c7c43D728A75d6741440d7c591/info.json +++ b/blockchains/smartchain/assets/0x7Abf7f54F30a45c7c43D728A75d6741440d7c591/info.json @@ -10,8 +10,8 @@ "id": "0x7Abf7f54F30a45c7c43D728A75d6741440d7c591", "links": [ { - "name": "twitter", - "url": "https://twitter.com/elonsperm" + "name": "x", + "url": "https://x.com/elonsperm" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x7B6bCA9E05566b2A8B084750663cFaa273a08888/info.json b/blockchains/smartchain/assets/0x7B6bCA9E05566b2A8B084750663cFaa273a08888/info.json new file mode 100644 index 0000000000000..d2864aedde19d --- /dev/null +++ b/blockchains/smartchain/assets/0x7B6bCA9E05566b2A8B084750663cFaa273a08888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDT", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x7B6bCA9E05566b2A8B084750663cFaa273a08888", + "explorer": "https://bscscan.com/token/0x7B6bCA9E05566b2A8B084750663cFaa273a08888", + "status": "spam", + "id": "0x7B6bCA9E05566b2A8B084750663cFaa273a08888" +} diff --git a/blockchains/smartchain/assets/0x7B86b0836f3454e50C6F6a190cd692bB17da1928/info.json b/blockchains/smartchain/assets/0x7B86b0836f3454e50C6F6a190cd692bB17da1928/info.json index ba2af854247ab..e2c1bca95a954 100644 --- a/blockchains/smartchain/assets/0x7B86b0836f3454e50C6F6a190cd692bB17da1928/info.json +++ b/blockchains/smartchain/assets/0x7B86b0836f3454e50C6F6a190cd692bB17da1928/info.json @@ -10,8 +10,8 @@ "id": "0x7B86b0836f3454e50C6F6a190cd692bB17da1928", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BemilGame" + "name": "x", + "url": "https://x.com/BemilGame" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x7B9c3Df47F3326FbC0674d51dc3EB0f2Df29F37F/info.json b/blockchains/smartchain/assets/0x7B9c3Df47F3326FbC0674d51dc3EB0f2Df29F37F/info.json index 92ae676b284f7..25f2974bc2ea8 100644 --- a/blockchains/smartchain/assets/0x7B9c3Df47F3326FbC0674d51dc3EB0f2Df29F37F/info.json +++ b/blockchains/smartchain/assets/0x7B9c3Df47F3326FbC0674d51dc3EB0f2Df29F37F/info.json @@ -10,8 +10,8 @@ "id": "0x7B9c3Df47F3326FbC0674d51dc3EB0f2Df29F37F", "links": [ { - "name": "twitter", - "url": "https://twitter.com/lightningDeFi" + "name": "x", + "url": "https://x.com/lightningDeFi" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x7BA995f1662A01f3bE0DC299ce94Bb7e9C7075f5/info.json b/blockchains/smartchain/assets/0x7BA995f1662A01f3bE0DC299ce94Bb7e9C7075f5/info.json new file mode 100644 index 0000000000000..d6a4076871687 --- /dev/null +++ b/blockchains/smartchain/assets/0x7BA995f1662A01f3bE0DC299ce94Bb7e9C7075f5/info.json @@ -0,0 +1,28 @@ +{ + "name": "BigBear.ai Holdings (Ondo Tokenized)", + "type": "BEP20", + "symbol": "BBAIon", + "decimals": 18, + "description": "BBAIon is the Ondo Tokenized version of BigBear.ai Holdings, giving tokenholders economic exposure similar to holding BBAI and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x7BA995f1662A01f3bE0DC299ce94Bb7e9C7075f5", + "status": "active", + "id": "0x7BA995f1662A01f3bE0DC299ce94Bb7e9C7075f5", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bigbear-ai-holdings-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bigbearai-holdings-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7BA995f1662A01f3bE0DC299ce94Bb7e9C7075f5/logo.png b/blockchains/smartchain/assets/0x7BA995f1662A01f3bE0DC299ce94Bb7e9C7075f5/logo.png new file mode 100644 index 0000000000000..a7211c017cf52 Binary files /dev/null and b/blockchains/smartchain/assets/0x7BA995f1662A01f3bE0DC299ce94Bb7e9C7075f5/logo.png differ diff --git a/blockchains/smartchain/assets/0x7Bd46f6Da97312AC2DBD1749f82E202764C0B914/info.json b/blockchains/smartchain/assets/0x7Bd46f6Da97312AC2DBD1749f82E202764C0B914/info.json index eb645c95812f7..5d4d819fed3be 100644 --- a/blockchains/smartchain/assets/0x7Bd46f6Da97312AC2DBD1749f82E202764C0B914/info.json +++ b/blockchains/smartchain/assets/0x7Bd46f6Da97312AC2DBD1749f82E202764C0B914/info.json @@ -18,8 +18,8 @@ "url": "https://apeswap.gitbook.io/apeswap-finance/" }, { - "name": "twitter", - "url": "https://twitter.com/ape_swap" + "name": "x", + "url": "https://x.com/ape_swap" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x7CD8c22D3F4b66230F73D7FfCB48576233c3fe33/info.json b/blockchains/smartchain/assets/0x7CD8c22D3F4b66230F73D7FfCB48576233c3fe33/info.json index 731c65e32e41c..27aab59343246 100644 --- a/blockchains/smartchain/assets/0x7CD8c22D3F4b66230F73D7FfCB48576233c3fe33/info.json +++ b/blockchains/smartchain/assets/0x7CD8c22D3F4b66230F73D7FfCB48576233c3fe33/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "MEGALAND", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x7CD8c22D3F4b66230F73D7FfCB48576233c3fe33", "tags": [ "deflationary" @@ -21,8 +21,8 @@ "url": "https://coinmarketcap.com/currencies/metagalaxy-land/" }, { - "name": "twitter", - "url": "https://twitter.com/metagalaxyland" + "name": "x", + "url": "https://x.com/metagalaxyland" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7CD8c22D3F4b66230F73D7FfCB48576233c3fe33/logo.png b/blockchains/smartchain/assets/0x7CD8c22D3F4b66230F73D7FfCB48576233c3fe33/logo.png deleted file mode 100644 index cc7581628f390..0000000000000 Binary files a/blockchains/smartchain/assets/0x7CD8c22D3F4b66230F73D7FfCB48576233c3fe33/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x7Ceb519718A80Dd78a8545AD8e7f401dE4f2faA7/info.json b/blockchains/smartchain/assets/0x7Ceb519718A80Dd78a8545AD8e7f401dE4f2faA7/info.json index 1d696df0049b8..f595ca2af08ca 100644 --- a/blockchains/smartchain/assets/0x7Ceb519718A80Dd78a8545AD8e7f401dE4f2faA7/info.json +++ b/blockchains/smartchain/assets/0x7Ceb519718A80Dd78a8545AD8e7f401dE4f2faA7/info.json @@ -10,8 +10,8 @@ "id": "0x7Ceb519718A80Dd78a8545AD8e7f401dE4f2faA7", "links": [ { - "name": "twitter", - "url": "https://twitter.com/DuelistKingNFT" + "name": "x", + "url": "https://x.com/DuelistKingNFT" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x7DB54758503c25200B331131C219acD64CFa74c8/info.json b/blockchains/smartchain/assets/0x7DB54758503c25200B331131C219acD64CFa74c8/info.json new file mode 100644 index 0000000000000..f5b0b2b321e1a --- /dev/null +++ b/blockchains/smartchain/assets/0x7DB54758503c25200B331131C219acD64CFa74c8/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Classic USDC", + "type": "BEP20", + "symbol": "FAKE USDC", + "decimals": 18, + "description": "This token/project is abandoned.", + "website": "https://bscscan.com/token/0x7DB54758503c25200B331131C219acD64CFa74c8", + "explorer": "https://bscscan.com/token/0x7DB54758503c25200B331131C219acD64CFa74c8", + "status": "abandoned", + "id": "0x7DB54758503c25200B331131C219acD64CFa74c8" +} diff --git a/blockchains/smartchain/assets/0x7DC3a19BCC33a63549FF2520b5c67cB4670C1457/info.json b/blockchains/smartchain/assets/0x7DC3a19BCC33a63549FF2520b5c67cB4670C1457/info.json new file mode 100644 index 0000000000000..dceb6754c9517 --- /dev/null +++ b/blockchains/smartchain/assets/0x7DC3a19BCC33a63549FF2520b5c67cB4670C1457/info.json @@ -0,0 +1,21 @@ +{ + "name": "AI16CZ", + "type": "BEP20", + "symbol": "ai16cz", + "decimals": 18, + "description": "the best created CZ artificial intelligence by the community on the BNB chain", + "website": "https://x.com/ai16czdao", + "explorer": "https://bscscan.com/token/0x7dc3a19bcc33a63549ff2520b5c67cb4670c1457", + "id": "0x7DC3a19BCC33a63549FF2520b5c67cB4670C1457", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/ai16czdao" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7DC3a19BCC33a63549FF2520b5c67cB4670C1457/logo.png b/blockchains/smartchain/assets/0x7DC3a19BCC33a63549FF2520b5c67cB4670C1457/logo.png new file mode 100644 index 0000000000000..f5e627ea7e14a Binary files /dev/null and b/blockchains/smartchain/assets/0x7DC3a19BCC33a63549FF2520b5c67cB4670C1457/logo.png differ diff --git a/blockchains/smartchain/assets/0x7DE7caE079667eBc86281f7Cb0c8EA371FD58888/info.json b/blockchains/smartchain/assets/0x7DE7caE079667eBc86281f7Cb0c8EA371FD58888/info.json new file mode 100644 index 0000000000000..14904160cfa57 --- /dev/null +++ b/blockchains/smartchain/assets/0x7DE7caE079667eBc86281f7Cb0c8EA371FD58888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE ꓐitcoin", + "type": "BEP20", + "symbol": "FAKE ꓐꓔꓚ", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x7DE7caE079667eBc86281f7Cb0c8EA371FD58888", + "explorer": "https://bscscan.com/token/0x7DE7caE079667eBc86281f7Cb0c8EA371FD58888", + "status": "spam", + "id": "0x7DE7caE079667eBc86281f7Cb0c8EA371FD58888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json b/blockchains/smartchain/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json index 2280e81e91ee8..432c4c06446c0 100644 --- a/blockchains/smartchain/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json +++ b/blockchains/smartchain/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json @@ -1,10 +1,10 @@ { - "name": "Gomining", + "name": "GoMining", "website": "https://gomining.com/", "description": "Gomining is an exchange token backed by a Top 10 global bitcoin mining project.", "explorer": "https://bscscan.com/token/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989", "type": "BEP20", - "symbol": "GMT", + "symbol": "GOMINING", "decimals": 18, "status": "active", "id": "0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989", @@ -18,8 +18,8 @@ "url": "https://facebook.com/GMTtoken" }, { - "name": "twitter", - "url": "https://twitter.com/GMT_Token" + "name": "x", + "url": "https://x.com/GMT_Token" }, { "name": "telegram", @@ -57,4 +57,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7E35D0e9180bF3A1fc47b0d110bE7a21A10B41Fe/info.json b/blockchains/smartchain/assets/0x7E35D0e9180bF3A1fc47b0d110bE7a21A10B41Fe/info.json index 13822be5d2de0..0e485c680f2a2 100644 --- a/blockchains/smartchain/assets/0x7E35D0e9180bF3A1fc47b0d110bE7a21A10B41Fe/info.json +++ b/blockchains/smartchain/assets/0x7E35D0e9180bF3A1fc47b0d110bE7a21A10B41Fe/info.json @@ -1,44 +1,44 @@ { - "name": "OVR", - "symbol": "OVR", - "type": "BEP20", - "decimals": 18, - "description": "OVR is the decentralized infrastructure for the metaverse, merging physical and virtual world through Augmented Reality", - "website": "https://www.ovr.ai/", - "explorer": "https://bscscan.com/token/0x7e35d0e9180bf3a1fc47b0d110be7a21a10b41fe", - "status": "active", - "id": "0x7E35D0e9180bF3A1fc47b0d110bE7a21A10B41Fe", - "tags": [ - "nft" - ], - "links": [ - { - "name": "telegram", - "url": "https://t.me/OVRtheReality" - }, - { - "name": "twitter", - "url": "https://twitter.com/OVRtheReality" - }, - { - "name": "facebook", - "url": "https://facebook.com/OVRmetaverse/" - }, - { - "name": "telegram_news", - "url": "https://t.me/ovrannouncements" - }, - { - "name": "medium", - "url": "https://medium.com/ovrthereality" - }, - { - "name": "coingecko", - "url": "https://coingecko.com/en/coins/ovr" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/ovr/" - } - ] -} + "name": "OVR", + "symbol": "OVR", + "type": "BEP20", + "decimals": 18, + "description": "OVR is the decentralized infrastructure for the metaverse, merging physical and virtual world through Augmented Reality", + "website": "https://www.overthereality.ai/", + "explorer": "https://bscscan.com/token/0x7e35d0e9180bf3a1fc47b0d110be7a21a10b41fe", + "status": "active", + "id": "0x7E35D0e9180bF3A1fc47b0d110bE7a21A10B41Fe", + "tags": [ + "nft" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/OVRtheReality" + }, + { + "name": "x", + "url": "https://x.com/OVRtheReality" + }, + { + "name": "facebook", + "url": "https://facebook.com/Overmetaverse" + }, + { + "name": "telegram_news", + "url": "https://t.me/ovrannouncements" + }, + { + "name": "medium", + "url": "https://medium.com/ovrthereality" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ovr" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ovr/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7E35D0e9180bF3A1fc47b0d110bE7a21A10B41Fe/logo.png b/blockchains/smartchain/assets/0x7E35D0e9180bF3A1fc47b0d110bE7a21A10B41Fe/logo.png index c3045348fbd1c..5bc8414cd2469 100644 Binary files a/blockchains/smartchain/assets/0x7E35D0e9180bF3A1fc47b0d110bE7a21A10B41Fe/logo.png and b/blockchains/smartchain/assets/0x7E35D0e9180bF3A1fc47b0d110bE7a21A10B41Fe/logo.png differ diff --git a/blockchains/smartchain/assets/0x7E5d52C3335C91Af0da392BEa4BB9e43F2AbA62C/info.json b/blockchains/smartchain/assets/0x7E5d52C3335C91Af0da392BEa4BB9e43F2AbA62C/info.json index b9bda559c40b4..3d09d78f01434 100644 --- a/blockchains/smartchain/assets/0x7E5d52C3335C91Af0da392BEa4BB9e43F2AbA62C/info.json +++ b/blockchains/smartchain/assets/0x7E5d52C3335C91Af0da392BEa4BB9e43F2AbA62C/info.json @@ -10,8 +10,8 @@ "id": "0x7E5d52C3335C91Af0da392BEa4BB9e43F2AbA62C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Sheeshtoken" + "name": "x", + "url": "https://x.com/Sheeshtoken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x7E60C74b9096f8FA6fb5a9FD88405dED8B7D44f3/info.json b/blockchains/smartchain/assets/0x7E60C74b9096f8FA6fb5a9FD88405dED8B7D44f3/info.json index 89a4fd82b445e..5a4c80f5cf312 100644 --- a/blockchains/smartchain/assets/0x7E60C74b9096f8FA6fb5a9FD88405dED8B7D44f3/info.json +++ b/blockchains/smartchain/assets/0x7E60C74b9096f8FA6fb5a9FD88405dED8B7D44f3/info.json @@ -15,12 +15,12 @@ "url": "https://github.com/Infiblue-World" }, { - "name": "twitter", - "url": "https://twitter.com/InfiblueNFT" + "name": "x", + "url": "https://x.com/InfiblueNFT" }, { "name": "whitepaper", "url": "https://medium.com/@InfiblueWorld/infiblue-whitepaper-v1-0-8bb685def026" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7EaeE60040135F20f508A393ca400dEd339d654e/info.json b/blockchains/smartchain/assets/0x7EaeE60040135F20f508A393ca400dEd339d654e/info.json index 6e484763ecb3e..5dbae1c917c71 100644 --- a/blockchains/smartchain/assets/0x7EaeE60040135F20f508A393ca400dEd339d654e/info.json +++ b/blockchains/smartchain/assets/0x7EaeE60040135F20f508A393ca400dEd339d654e/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/revivaldefitech/" }, { - "name": "twitter", - "url": "https://twitter.com/revivaldefi" + "name": "x", + "url": "https://x.com/revivaldefi" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x7Ee7F14427cC41D6dB17829eb57Dc74A26796b9D/info.json b/blockchains/smartchain/assets/0x7Ee7F14427cC41D6dB17829eb57Dc74A26796b9D/info.json index 1b67fcbac3c8d..b0287e015bea1 100644 --- a/blockchains/smartchain/assets/0x7Ee7F14427cC41D6dB17829eb57Dc74A26796b9D/info.json +++ b/blockchains/smartchain/assets/0x7Ee7F14427cC41D6dB17829eb57Dc74A26796b9D/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/MoonRise_BSC" + "name": "x", + "url": "https://x.com/MoonRise_BSC" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x7EeFB6AeB8BC2c1ba6be1D4273eC0758a1321272/info.json b/blockchains/smartchain/assets/0x7EeFB6AeB8BC2c1ba6be1D4273eC0758a1321272/info.json index d6a3054e9e916..857d6877fb12f 100644 --- a/blockchains/smartchain/assets/0x7EeFB6AeB8BC2c1ba6be1D4273eC0758a1321272/info.json +++ b/blockchains/smartchain/assets/0x7EeFB6AeB8BC2c1ba6be1D4273eC0758a1321272/info.json @@ -10,8 +10,8 @@ "id": "0x7EeFB6AeB8BC2c1ba6be1D4273eC0758a1321272", "links": [ { - "name": "twitter", - "url": "https://twitter.com/EngToken" + "name": "x", + "url": "https://x.com/EngToken" }, { "name": "telegram", @@ -25,4 +25,4 @@ "tags": [ "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7F39BcdCa8E0E581c1d43aaa1cB862AA1c8C2047/info.json b/blockchains/smartchain/assets/0x7F39BcdCa8E0E581c1d43aaa1cB862AA1c8C2047/info.json new file mode 100644 index 0000000000000..e21479a1dc15c --- /dev/null +++ b/blockchains/smartchain/assets/0x7F39BcdCa8E0E581c1d43aaa1cB862AA1c8C2047/info.json @@ -0,0 +1,21 @@ +{ + "name": "Lumia", + "type": "BEP20", + "symbol": "LUMIA", + "decimals": 18, + "website": "https://lumia.org/", + "description": "Lumia is the first next-generation blockchain that provides a comprehensive solution across the entire life cycle of RWAs, from asset tokenization to liquidity aggregation and connectivity to millions of traders in DeFi.", + "explorer": "https://bscscan.com/token/0x7F39BcdCa8E0E581c1d43aaa1cB862AA1c8C2047", + "status": "active", + "id": "0x7F39BcdCa8E0E581c1d43aaa1cB862AA1c8C2047", + "links": [ + { + "name": "x", + "url": "https://x.com/BuildOnLumia" + }, + { + "name": "telegram", + "url": "https://t.me/lumia_community" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7F39BcdCa8E0E581c1d43aaa1cB862AA1c8C2047/logo.png b/blockchains/smartchain/assets/0x7F39BcdCa8E0E581c1d43aaa1cB862AA1c8C2047/logo.png new file mode 100644 index 0000000000000..44b8abde4628f Binary files /dev/null and b/blockchains/smartchain/assets/0x7F39BcdCa8E0E581c1d43aaa1cB862AA1c8C2047/logo.png differ diff --git a/blockchains/smartchain/assets/0x7F8ba411ECBC0A135d669d5EaE5D15b0Ca0b0ea1/info.json b/blockchains/smartchain/assets/0x7F8ba411ECBC0A135d669d5EaE5D15b0Ca0b0ea1/info.json new file mode 100644 index 0000000000000..db53998aa29b6 --- /dev/null +++ b/blockchains/smartchain/assets/0x7F8ba411ECBC0A135d669d5EaE5D15b0Ca0b0ea1/info.json @@ -0,0 +1,15 @@ +{ + "name": "Virgin Galactic xStock", + "type": "BEP20", + "symbol": "SPCEx", + "decimals": 18, + "description": "Virgin Galactic xStock (SPCEx) is a tracker certificate issued as a freely transferable token on selected blockchains. SPCEx tracks the price of Virgin Galactic Holdings, Inc.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x7F8ba411ECBC0A135d669d5EaE5D15b0Ca0b0ea1", + "status": "active", + "id": "0x7F8ba411ECBC0A135d669d5EaE5D15b0Ca0b0ea1", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7F8ba411ECBC0A135d669d5EaE5D15b0Ca0b0ea1/logo.png b/blockchains/smartchain/assets/0x7F8ba411ECBC0A135d669d5EaE5D15b0Ca0b0ea1/logo.png new file mode 100644 index 0000000000000..e525d9b0a16fa Binary files /dev/null and b/blockchains/smartchain/assets/0x7F8ba411ECBC0A135d669d5EaE5D15b0Ca0b0ea1/logo.png differ diff --git a/blockchains/smartchain/assets/0x7FA7dF4996AC59F398476892cfB195eD38543520/info.json b/blockchains/smartchain/assets/0x7FA7dF4996AC59F398476892cfB195eD38543520/info.json index 2344936cbeac2..30c98a04c6941 100644 --- a/blockchains/smartchain/assets/0x7FA7dF4996AC59F398476892cfB195eD38543520/info.json +++ b/blockchains/smartchain/assets/0x7FA7dF4996AC59F398476892cfB195eD38543520/info.json @@ -10,8 +10,8 @@ "id": "0x7FA7dF4996AC59F398476892cfB195eD38543520", "links": [ { - "name": "twitter", - "url": "https://twitter.com/WagyuSwap_app" + "name": "x", + "url": "https://x.com/WagyuSwap_app" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x7FD049EB478b7b216F23299A37bc57EbDf098888/info.json b/blockchains/smartchain/assets/0x7FD049EB478b7b216F23299A37bc57EbDf098888/info.json new file mode 100644 index 0000000000000..91dde09292e1e --- /dev/null +++ b/blockchains/smartchain/assets/0x7FD049EB478b7b216F23299A37bc57EbDf098888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x7FD049EB478b7b216F23299A37bc57EbDf098888", + "explorer": "https://bscscan.com/token/0x7FD049EB478b7b216F23299A37bc57EbDf098888", + "status": "spam", + "id": "0x7FD049EB478b7b216F23299A37bc57EbDf098888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7a983559e130723B70e45bd637773DbDfD3F71Db/info.json b/blockchains/smartchain/assets/0x7a983559e130723B70e45bd637773DbDfD3F71Db/info.json index 1c0418f2b0381..7ce11f6ef070a 100644 --- a/blockchains/smartchain/assets/0x7a983559e130723B70e45bd637773DbDfD3F71Db/info.json +++ b/blockchains/smartchain/assets/0x7a983559e130723B70e45bd637773DbDfD3F71Db/info.json @@ -10,8 +10,8 @@ "id": "0x7a983559e130723B70e45bd637773DbDfD3F71Db", "links": [ { - "name": "twitter", - "url": "https://twitter.com/johnnydangandco" + "name": "x", + "url": "https://x.com/johnnydangandco" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x7aAAA5B10f97321345ACd76945083141bE1C5631/info.json b/blockchains/smartchain/assets/0x7aAAA5B10f97321345ACd76945083141bE1C5631/info.json new file mode 100644 index 0000000000000..976552468bb1d --- /dev/null +++ b/blockchains/smartchain/assets/0x7aAAA5B10f97321345ACd76945083141bE1C5631/info.json @@ -0,0 +1,17 @@ +{ + "name": "Cowcoin", + "symbol": "COW", + "type": "BEP20", + "decimals": 18, + "description": "A decentralized VPN! COW.CM VPN combines blockchain and COW token rewards to offer privacy protection, network acceleration, and earning benefits! The earning mechanism stimulates user activity, aiming to build a million-user ecosystem.", + "website": "https://cow.cm/", + "explorer": "https://bscscan.com/token/0x7aaaa5b10f97321345acd76945083141be1c5631", + "status": "active", + "id": "0x7aAAA5B10f97321345ACd76945083141bE1C5631", + "links": [ + { + "name": "x", + "url": "https://x.com/cowcmweb3" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7aAAA5B10f97321345ACd76945083141bE1C5631/logo.png b/blockchains/smartchain/assets/0x7aAAA5B10f97321345ACd76945083141bE1C5631/logo.png new file mode 100644 index 0000000000000..ec1447e7b790f Binary files /dev/null and b/blockchains/smartchain/assets/0x7aAAA5B10f97321345ACd76945083141bE1C5631/logo.png differ diff --git a/blockchains/smartchain/assets/0x7aCb48AaEEbdB32EE8cB0C4095de5F531b6d540e/info.json b/blockchains/smartchain/assets/0x7aCb48AaEEbdB32EE8cB0C4095de5F531b6d540e/info.json new file mode 100644 index 0000000000000..09efee72870d5 --- /dev/null +++ b/blockchains/smartchain/assets/0x7aCb48AaEEbdB32EE8cB0C4095de5F531b6d540e/info.json @@ -0,0 +1,14 @@ +{ + "name": "Ark", + "type": "BEP20", + "symbol": "Ark", + "decimals": 18, + "website": "https://four.meme/token/0x7aCb48AaEEbdB32EE8cB0C4095de5F531b6d540e", + "description": "CyberArk Digital AI and the Future City of Artificial Intelligence", + "explorer": "https://bscscan.com/token/0x7aCb48AaEEbdB32EE8cB0C4095de5F531b6d540e", + "status": "active", + "id": "0x7aCb48AaEEbdB32EE8cB0C4095de5F531b6d540e", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7aCb48AaEEbdB32EE8cB0C4095de5F531b6d540e/logo.png b/blockchains/smartchain/assets/0x7aCb48AaEEbdB32EE8cB0C4095de5F531b6d540e/logo.png new file mode 100644 index 0000000000000..2d656814c81e6 Binary files /dev/null and b/blockchains/smartchain/assets/0x7aCb48AaEEbdB32EE8cB0C4095de5F531b6d540e/logo.png differ diff --git a/blockchains/smartchain/assets/0x7aF44d51d1fb88c5b74Fc71d3cba649Bb8099D14/info.json b/blockchains/smartchain/assets/0x7aF44d51d1fb88c5b74Fc71d3cba649Bb8099D14/info.json new file mode 100644 index 0000000000000..80065cd7c07e4 --- /dev/null +++ b/blockchains/smartchain/assets/0x7aF44d51d1fb88c5b74Fc71d3cba649Bb8099D14/info.json @@ -0,0 +1,24 @@ +{ + "name": "Accenture (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "ACNon is the Ondo Tokenized version of Accenture, giving tokenholders economic exposure similar to holding ACN and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x7af44d51d1fb88c5b74fc71d3cba649bb8099d14", + "type": "BEP20", + "symbol": "ACNon", + "decimals": 18, + "status": "active", + "id": "0x7aF44d51d1fb88c5b74Fc71d3cba649Bb8099D14", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/accenture-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7aF44d51d1fb88c5b74Fc71d3cba649Bb8099D14/logo.png b/blockchains/smartchain/assets/0x7aF44d51d1fb88c5b74Fc71d3cba649Bb8099D14/logo.png new file mode 100644 index 0000000000000..9497e1e589460 Binary files /dev/null and b/blockchains/smartchain/assets/0x7aF44d51d1fb88c5b74Fc71d3cba649Bb8099D14/logo.png differ diff --git a/blockchains/smartchain/assets/0x7b0b4C304B9149B692c1Acbc9dB4F4a1c17B2B91/info.json b/blockchains/smartchain/assets/0x7b0b4C304B9149B692c1Acbc9dB4F4a1c17B2B91/info.json index 9c271131003b3..5d3f3ce474dd2 100644 --- a/blockchains/smartchain/assets/0x7b0b4C304B9149B692c1Acbc9dB4F4a1c17B2B91/info.json +++ b/blockchains/smartchain/assets/0x7b0b4C304B9149B692c1Acbc9dB4F4a1c17B2B91/info.json @@ -10,8 +10,8 @@ "id": "0x7b0b4C304B9149B692c1Acbc9dB4F4a1c17B2B91", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BabyPigToken/status/1402976455219310602?s=24" + "name": "x", + "url": "https://x.com/BabyPigToken/status/1402976455219310602?s=24" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x7b665B2F633d9363b89A98b094B1F9E732Bd8F86/info.json b/blockchains/smartchain/assets/0x7b665B2F633d9363b89A98b094B1F9E732Bd8F86/info.json index 5f95122a74172..98f6c25a1aaf3 100644 --- a/blockchains/smartchain/assets/0x7b665B2F633d9363b89A98b094B1F9E732Bd8F86/info.json +++ b/blockchains/smartchain/assets/0x7b665B2F633d9363b89A98b094B1F9E732Bd8F86/info.json @@ -10,8 +10,8 @@ "id": "0x7b665B2F633d9363b89A98b094B1F9E732Bd8F86", "links": [ { - "name": "twitter", - "url": "https://twitter.com/amazyio" + "name": "x", + "url": "https://x.com/amazyio" }, { "name": "github", @@ -57,4 +57,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7bC75e291E656E8658D66Be1cc8154A3769A35Dd/info.json b/blockchains/smartchain/assets/0x7bC75e291E656E8658D66Be1cc8154A3769A35Dd/info.json index 8a9584b63b86f..80c4e77d2a480 100644 --- a/blockchains/smartchain/assets/0x7bC75e291E656E8658D66Be1cc8154A3769A35Dd/info.json +++ b/blockchains/smartchain/assets/0x7bC75e291E656E8658D66Be1cc8154A3769A35Dd/info.json @@ -18,8 +18,8 @@ "url": "https://coingecko.com/coins/ime-lab" }, { - "name": "twitter", - "url": "https://twitter.com/ImePlatform" + "name": "x", + "url": "https://x.com/ImePlatform" }, { "name": "facebook", @@ -37,4 +37,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7ba2710210b525AA5b90b4Dee4cC781dAD8Aec49/info.json b/blockchains/smartchain/assets/0x7ba2710210b525AA5b90b4Dee4cC781dAD8Aec49/info.json new file mode 100644 index 0000000000000..6ee99f5f54ca5 --- /dev/null +++ b/blockchains/smartchain/assets/0x7ba2710210b525AA5b90b4Dee4cC781dAD8Aec49/info.json @@ -0,0 +1,21 @@ +{ + "name": "PEPE", + "type": "BEP20", + "symbol": "PEPE", + "decimals": 18, + "description": "PEPE", + "website": "https://www.pepe.vip/", + "explorer": "https://bscscan.com/token/0x7ba2710210b525aa5b90b4dee4cc781dad8aec49", + "id": "0x7ba2710210b525AA5b90b4Dee4cC781dAD8Aec49", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/pepecoineth" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7ba2710210b525AA5b90b4Dee4cC781dAD8Aec49/logo.png b/blockchains/smartchain/assets/0x7ba2710210b525AA5b90b4Dee4cC781dAD8Aec49/logo.png new file mode 100644 index 0000000000000..b09d5f6308fd6 Binary files /dev/null and b/blockchains/smartchain/assets/0x7ba2710210b525AA5b90b4Dee4cC781dAD8Aec49/logo.png differ diff --git a/blockchains/smartchain/assets/0x7bb362962F2a4E2089466C79566572B37CFc5D78/info.json b/blockchains/smartchain/assets/0x7bb362962F2a4E2089466C79566572B37CFc5D78/info.json index a45bf090a0ef0..853ba5784b1ec 100644 --- a/blockchains/smartchain/assets/0x7bb362962F2a4E2089466C79566572B37CFc5D78/info.json +++ b/blockchains/smartchain/assets/0x7bb362962F2a4E2089466C79566572B37CFc5D78/info.json @@ -11,8 +11,8 @@ "id": "0x7bb362962F2a4E2089466C79566572B37CFc5D78", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Bafeio" + "name": "x", + "url": "https://x.com/Bafeio" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x7bd6FaBD64813c48545C9c0e312A0099d9be2540/info.json b/blockchains/smartchain/assets/0x7bd6FaBD64813c48545C9c0e312A0099d9be2540/info.json new file mode 100644 index 0000000000000..6e489c178d2c9 --- /dev/null +++ b/blockchains/smartchain/assets/0x7bd6FaBD64813c48545C9c0e312A0099d9be2540/info.json @@ -0,0 +1,17 @@ +{ + "name": "Dogelon", + "website": "https://dogelon.io", + "description": "I am Dogelon. Dogelon Mars. Join me and together we'll reach the stars ✨ We want to reach Mars and beyond. However, many of those good people are rugged, or buy scam tokens that can't be sold. For this reason, the Dogelon community pledges to send tokens over time to victims of rugs and scams, so that the worst day of their trading life can be turned into their best. And after some time, they will be able to join us on our regular flights to Mars....", + "explorer": "https://bscscan.com/token/0x7bd6FaBD64813c48545C9c0e312A0099d9be2540", + "type": "BEP20", + "symbol": "ELON", + "decimals": 18, + "status": "active", + "id": "0x7bd6FaBD64813c48545C9c0e312A0099d9be2540", + "links": [ + { + "name": "x", + "url": "https://x.com/dogelonmars" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7bd6FaBD64813c48545C9c0e312A0099d9be2540/logo.png b/blockchains/smartchain/assets/0x7bd6FaBD64813c48545C9c0e312A0099d9be2540/logo.png new file mode 100644 index 0000000000000..87fb698202102 Binary files /dev/null and b/blockchains/smartchain/assets/0x7bd6FaBD64813c48545C9c0e312A0099d9be2540/logo.png differ diff --git a/blockchains/smartchain/assets/0x7c1608C004F20c3520f70b924E2BfeF092dA0043/info.json b/blockchains/smartchain/assets/0x7c1608C004F20c3520f70b924E2BfeF092dA0043/info.json index 3d026162449ca..9c14dadd0aa38 100644 --- a/blockchains/smartchain/assets/0x7c1608C004F20c3520f70b924E2BfeF092dA0043/info.json +++ b/blockchains/smartchain/assets/0x7c1608C004F20c3520f70b924E2BfeF092dA0043/info.json @@ -10,8 +10,8 @@ "id": "0x7c1608C004F20c3520f70b924E2BfeF092dA0043", "links": [ { - "name": "twitter", - "url": "https://twitter.com/zodiacs_c" + "name": "x", + "url": "https://x.com/zodiacs_c" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x7c73967dC8c804Ea028247f5A953052f0CD5Fd58/info.json b/blockchains/smartchain/assets/0x7c73967dC8c804Ea028247f5A953052f0CD5Fd58/info.json index 80e169fbad709..53e71a332e70a 100644 --- a/blockchains/smartchain/assets/0x7c73967dC8c804Ea028247f5A953052f0CD5Fd58/info.json +++ b/blockchains/smartchain/assets/0x7c73967dC8c804Ea028247f5A953052f0CD5Fd58/info.json @@ -21,8 +21,8 @@ "url": "https://blog.cyball.com/" }, { - "name": "twitter", - "url": "https://twitter.com/CyBallOfficial" + "name": "x", + "url": "https://x.com/CyBallOfficial" }, { "name": "telegram", @@ -33,4 +33,4 @@ "url": "https://coingecko.com/en/coins/cybloc-battery-token" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7cF551258d6871b72EE1bD1624588a6245bF48c4/info.json b/blockchains/smartchain/assets/0x7cF551258d6871b72EE1bD1624588a6245bF48c4/info.json index 3c62c13a51b99..f4e52c102beb7 100644 --- a/blockchains/smartchain/assets/0x7cF551258d6871b72EE1bD1624588a6245bF48c4/info.json +++ b/blockchains/smartchain/assets/0x7cF551258d6871b72EE1bD1624588a6245bF48c4/info.json @@ -17,8 +17,8 @@ "url": "https://t.me/Chitcat_chat" }, { - "name": "twitter", - "url": "https://twitter.com/Chitcat_" + "name": "x", + "url": "https://x.com/Chitcat_" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x7d0FA3b5771D9A71b188F9fF3D2ebaABf3faF299/info.json b/blockchains/smartchain/assets/0x7d0FA3b5771D9A71b188F9fF3D2ebaABf3faF299/info.json index 2bd090e5e3b06..b284eb4067ef3 100644 --- a/blockchains/smartchain/assets/0x7d0FA3b5771D9A71b188F9fF3D2ebaABf3faF299/info.json +++ b/blockchains/smartchain/assets/0x7d0FA3b5771D9A71b188F9fF3D2ebaABf3faF299/info.json @@ -10,8 +10,8 @@ "id": "0x7d0FA3b5771D9A71b188F9fF3D2ebaABf3faF299", "links": [ { - "name": "twitter", - "url": "https://twitter.com/FinanceOmino" + "name": "x", + "url": "https://x.com/FinanceOmino" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x7d220240Cf958C5c47f2DAAC821dB965f9837e82/info.json b/blockchains/smartchain/assets/0x7d220240Cf958C5c47f2DAAC821dB965f9837e82/info.json index 4b5c91fb4894b..249710745ab8f 100644 --- a/blockchains/smartchain/assets/0x7d220240Cf958C5c47f2DAAC821dB965f9837e82/info.json +++ b/blockchains/smartchain/assets/0x7d220240Cf958C5c47f2DAAC821dB965f9837e82/info.json @@ -10,8 +10,8 @@ "id": "0x7d220240Cf958C5c47f2DAAC821dB965f9837e82", "links": [ { - "name": "twitter", - "url": "https://twitter.com/web5inu" + "name": "x", + "url": "https://x.com/web5inu" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x7d38315b92d0E7A85B35B2b7FE969B25935619D7/info.json b/blockchains/smartchain/assets/0x7d38315b92d0E7A85B35B2b7FE969B25935619D7/info.json index 57651d1c3d3c6..f8dc76969fa57 100644 --- a/blockchains/smartchain/assets/0x7d38315b92d0E7A85B35B2b7FE969B25935619D7/info.json +++ b/blockchains/smartchain/assets/0x7d38315b92d0E7A85B35B2b7FE969B25935619D7/info.json @@ -10,8 +10,8 @@ "id": "0x7d38315b92d0E7A85B35B2b7FE969B25935619D7", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ecoin_finance_" + "name": "x", + "url": "https://x.com/ecoin_finance_" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x7d814b9eD370Ec0a502EdC3267393bF62d891B62/info.json b/blockchains/smartchain/assets/0x7d814b9eD370Ec0a502EdC3267393bF62d891B62/info.json new file mode 100644 index 0000000000000..f835e68fc7d31 --- /dev/null +++ b/blockchains/smartchain/assets/0x7d814b9eD370Ec0a502EdC3267393bF62d891B62/info.json @@ -0,0 +1,17 @@ +{ + "name": "Bubblemaps", + "type": "BEP20", + "symbol": "BMT", + "decimals": 18, + "description": "Bubblemaps transforms on-chain data into a visual experience, making analysis engaging and efficient — allowing users to tackle modern crypto challenges.", + "website": "https://bubblemaps.io/", + "explorer": "https://bscscan.com/token/0x7d814b9eD370Ec0a502EdC3267393bF62d891B62", + "id": "0x7d814b9eD370Ec0a502EdC3267393bF62d891B62", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/bubblemaps" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7d814b9eD370Ec0a502EdC3267393bF62d891B62/logo.png b/blockchains/smartchain/assets/0x7d814b9eD370Ec0a502EdC3267393bF62d891B62/logo.png new file mode 100644 index 0000000000000..4de8e6458a599 Binary files /dev/null and b/blockchains/smartchain/assets/0x7d814b9eD370Ec0a502EdC3267393bF62d891B62/logo.png differ diff --git a/blockchains/smartchain/assets/0x7dDEE176F665cD201F93eEDE625770E2fD911990/info.json b/blockchains/smartchain/assets/0x7dDEE176F665cD201F93eEDE625770E2fD911990/info.json index 33e46a8080b32..70cfe4231cd56 100644 --- a/blockchains/smartchain/assets/0x7dDEE176F665cD201F93eEDE625770E2fD911990/info.json +++ b/blockchains/smartchain/assets/0x7dDEE176F665cD201F93eEDE625770E2fD911990/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "GALA", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x7dDEE176F665cD201F93eEDE625770E2fD911990", "tags": [ "nft", @@ -18,8 +18,8 @@ "url": "https://t.me/GoGalaGames" }, { - "name": "twitter", - "url": "https://twitter.com/GoGalaGames" + "name": "x", + "url": "https://x.com/GoGalaGames" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x7dDEE176F665cD201F93eEDE625770E2fD911990/logo.png b/blockchains/smartchain/assets/0x7dDEE176F665cD201F93eEDE625770E2fD911990/logo.png deleted file mode 100644 index c1a6a7a900504..0000000000000 Binary files a/blockchains/smartchain/assets/0x7dDEE176F665cD201F93eEDE625770E2fD911990/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/info.json b/blockchains/smartchain/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/info.json index af57062f3958b..cd5e96a705414 100644 --- a/blockchains/smartchain/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/info.json +++ b/blockchains/smartchain/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/info.json @@ -6,12 +6,12 @@ "website": "https://voltinu.in", "description": "Volt Inu is a hyper-deflationary token whose aim is to invest in multiple asset classes such as NFTs, nodes, altcoins, staking & farming of stablecoins. This investment diversity allows to mitigate the risk while taking advantage of the possible non-correlated growth of the trending assets.", "explorer": "https://bscscan.com/token/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac", - "status": "active", + "status": "abandoned", "id": "0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VoltInuOfficial" + "name": "x", + "url": "https://x.com/VoltInuOfficial" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x7e41E454b6A29C54e4cDB565E47542f4BCb37ef1/info.json b/blockchains/smartchain/assets/0x7e41E454b6A29C54e4cDB565E47542f4BCb37ef1/info.json index 79b6b3fc165cb..875e770909409 100644 --- a/blockchains/smartchain/assets/0x7e41E454b6A29C54e4cDB565E47542f4BCb37ef1/info.json +++ b/blockchains/smartchain/assets/0x7e41E454b6A29C54e4cDB565E47542f4BCb37ef1/info.json @@ -18,8 +18,8 @@ "url": "https://github.com/Hansblock/cybertronchain/" }, { - "name": "twitter", - "url": "https://twitter.com/cybertronchain" + "name": "x", + "url": "https://x.com/cybertronchain" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x7e8DB69dcff9209E486a100e611B0af300c3374e/info.json b/blockchains/smartchain/assets/0x7e8DB69dcff9209E486a100e611B0af300c3374e/info.json index f7b6bfbc9b0eb..76e09632eea8f 100644 --- a/blockchains/smartchain/assets/0x7e8DB69dcff9209E486a100e611B0af300c3374e/info.json +++ b/blockchains/smartchain/assets/0x7e8DB69dcff9209E486a100e611B0af300c3374e/info.json @@ -10,8 +10,8 @@ "id": "0x7e8DB69dcff9209E486a100e611B0af300c3374e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TradersCoinTRDC" + "name": "x", + "url": "https://x.com/TradersCoinTRDC" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x7e9AB560d37E62883E882474b096643caB234B65/info.json b/blockchains/smartchain/assets/0x7e9AB560d37E62883E882474b096643caB234B65/info.json index 1cc85fdd90b4c..aeccafbbd2dcc 100644 --- a/blockchains/smartchain/assets/0x7e9AB560d37E62883E882474b096643caB234B65/info.json +++ b/blockchains/smartchain/assets/0x7e9AB560d37E62883E882474b096643caB234B65/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/ultimate-champions/" }, { - "name": "twitter", - "url": "https://twitter.com/UltiChamps" + "name": "x", + "url": "https://x.com/UltiChamps" }, { "name": "whitepaper", diff --git a/blockchains/smartchain/assets/0x7f1296e5aA692a98d86EaAe3ac1CD7723E74878d/info.json b/blockchains/smartchain/assets/0x7f1296e5aA692a98d86EaAe3ac1CD7723E74878d/info.json index 1cab7a6b4f285..bb9e621f9dff3 100644 --- a/blockchains/smartchain/assets/0x7f1296e5aA692a98d86EaAe3ac1CD7723E74878d/info.json +++ b/blockchains/smartchain/assets/0x7f1296e5aA692a98d86EaAe3ac1CD7723E74878d/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/BirdFinance/bird-core" }, { - "name": "twitter", - "url": "https://twitter.com/bird_aggregator" + "name": "x", + "url": "https://x.com/bird_aggregator" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x7f247a00EaB12419e5dEB021B48f6eBf249CF86C/info.json b/blockchains/smartchain/assets/0x7f247a00EaB12419e5dEB021B48f6eBf249CF86C/info.json index dba6ccf80ea70..925045d61a6d2 100644 --- a/blockchains/smartchain/assets/0x7f247a00EaB12419e5dEB021B48f6eBf249CF86C/info.json +++ b/blockchains/smartchain/assets/0x7f247a00EaB12419e5dEB021B48f6eBf249CF86C/info.json @@ -10,8 +10,8 @@ "id": "0x7f247a00EaB12419e5dEB021B48f6eBf249CF86C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/cgb_coin" + "name": "x", + "url": "https://x.com/cgb_coin" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x7f479d78380Ad00341fdD7322fE8AEf766e29e5A/info.json b/blockchains/smartchain/assets/0x7f479d78380Ad00341fdD7322fE8AEf766e29e5A/info.json index b18f666c2019f..c106c15ab365c 100644 --- a/blockchains/smartchain/assets/0x7f479d78380Ad00341fdD7322fE8AEf766e29e5A/info.json +++ b/blockchains/smartchain/assets/0x7f479d78380Ad00341fdD7322fE8AEf766e29e5A/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/whirlfinance/sourcecode/commit/5bbbdbe26e4a5ee83ea21919cd2b1c807b283fad" }, { - "name": "twitter", - "url": "https://twitter.com/FinanceWhirl" + "name": "x", + "url": "https://x.com/FinanceWhirl" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x7f4f3BC4A5634454398580b9112b7E493E2129Fa/info.json b/blockchains/smartchain/assets/0x7f4f3BC4A5634454398580b9112b7E493E2129Fa/info.json index fb28283bbe2c3..3b5fb23ec527d 100644 --- a/blockchains/smartchain/assets/0x7f4f3BC4A5634454398580b9112b7E493E2129Fa/info.json +++ b/blockchains/smartchain/assets/0x7f4f3BC4A5634454398580b9112b7E493E2129Fa/info.json @@ -10,8 +10,8 @@ "id": "0x7f4f3BC4A5634454398580b9112b7E493E2129Fa", "links": [ { - "name": "twitter", - "url": "https://twitter.com/kodi_coin" + "name": "x", + "url": "https://x.com/kodi_coin" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x7f792db54B0e580Cdc755178443f0430Cf799aCa/info.json b/blockchains/smartchain/assets/0x7f792db54B0e580Cdc755178443f0430Cf799aCa/info.json new file mode 100644 index 0000000000000..a3ac3d34c354f --- /dev/null +++ b/blockchains/smartchain/assets/0x7f792db54B0e580Cdc755178443f0430Cf799aCa/info.json @@ -0,0 +1,48 @@ +{ + "name": "Volt Inu", + "type": "BEP20", + "symbol": "VOLT", + "decimals": 9, + "website": "https://voltinu.in", + "description": "Volt Inu ($VOLT) is a hyper-deflationary token whose aim is to invest in multiple asset classes such as NFTs, nodes, altcoins, staking & farming of stablecoins. This investment diversity allows to mitigate the risk while taking advantage of the possible non-correlated growth of the trending assets.", + "explorer": "https://bscscan.com/token/0x7f792db54b0e580cdc755178443f0430cf799aca", + "status": "active", + "id": "0x7f792db54B0e580Cdc755178443f0430Cf799aCa", + "links": [ + { + "name": "x", + "url": "https://x.com/VoltInuOfficial" + }, + { + "name": "telegram", + "url": "https://t.me/VoltInuOfficial" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Volt_Inu/" + }, + { + "name": "whitepaper", + "url": "https://voltinu.in/Whitepaper_v1.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCDLlAleEEmhc7pVdB5pZWFg" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/volt-inu-v2/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/volt-inu" + }, + { + "name": "medium", + "url": "https://medium.com/@VoltInu" + } + ], + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/logo.png b/blockchains/smartchain/assets/0x7f792db54B0e580Cdc755178443f0430Cf799aCa/logo.png similarity index 100% rename from blockchains/smartchain/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/logo.png rename to blockchains/smartchain/assets/0x7f792db54B0e580Cdc755178443f0430Cf799aCa/logo.png diff --git a/blockchains/smartchain/assets/0x7f9C20c4C09c32478AE10A7543E5199C2F53691d/info.json b/blockchains/smartchain/assets/0x7f9C20c4C09c32478AE10A7543E5199C2F53691d/info.json index d139e63a235b5..1bd9379a2aa72 100644 --- a/blockchains/smartchain/assets/0x7f9C20c4C09c32478AE10A7543E5199C2F53691d/info.json +++ b/blockchains/smartchain/assets/0x7f9C20c4C09c32478AE10A7543E5199C2F53691d/info.json @@ -10,8 +10,8 @@ "id": "0x7f9C20c4C09c32478AE10A7543E5199C2F53691d", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PLS2Eio" + "name": "x", + "url": "https://x.com/PLS2Eio" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x7fFb5A90cdbd2aE2A65d5bFe259AC936Cc302bE2/info.json b/blockchains/smartchain/assets/0x7fFb5A90cdbd2aE2A65d5bFe259AC936Cc302bE2/info.json new file mode 100644 index 0000000000000..86a5cb607ee22 --- /dev/null +++ b/blockchains/smartchain/assets/0x7fFb5A90cdbd2aE2A65d5bFe259AC936Cc302bE2/info.json @@ -0,0 +1,36 @@ +{ + "name": "GridX", + "type": "BEP20", + "symbol": "GDX", + "decimals": 18, + "website": "https://gridxecosystem.com", + "description": "GridX is a decentralized finance (DeFi) project that has recently gained attention in the cryptocurrency world. This project aims to address some of the issues that have plagued the DeFi space, such as high transaction fees, low transaction speeds, and limited scalability.", + "explorer": "https://bscscan.com/token/0x7fFb5A90cdbd2aE2A65d5bFe259AC936Cc302bE2", + "status": "active", + "id": "0x7fFb5A90cdbd2aE2A65d5bFe259AC936Cc302bE2", + "links": [ + { + "name": "x", + "url": "https://x.com/GridxEcosystem" + }, + { + "name": "github", + "url": "https://github.com/gridxeco" + }, + { + "name": "telegram", + "url": "https://t.me/gridxfinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gridx-ecosystem/" + }, + { + "name": "whitepaper", + "url": "https://gridxecosystem.com/img/whitepaper.pdf" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7fFb5A90cdbd2aE2A65d5bFe259AC936Cc302bE2/logo.png b/blockchains/smartchain/assets/0x7fFb5A90cdbd2aE2A65d5bFe259AC936Cc302bE2/logo.png new file mode 100644 index 0000000000000..ee164b461d0ff Binary files /dev/null and b/blockchains/smartchain/assets/0x7fFb5A90cdbd2aE2A65d5bFe259AC936Cc302bE2/logo.png differ diff --git a/blockchains/smartchain/assets/0x800a25741A414Ea6E6e2B382435081A479A8Cc3c/info.json b/blockchains/smartchain/assets/0x800a25741A414Ea6E6e2B382435081A479A8Cc3c/info.json index 61f0a9f1de538..18f30eba08cfd 100644 --- a/blockchains/smartchain/assets/0x800a25741A414Ea6E6e2B382435081A479A8Cc3c/info.json +++ b/blockchains/smartchain/assets/0x800a25741A414Ea6E6e2B382435081A479A8Cc3c/info.json @@ -10,8 +10,8 @@ "id": "0x800a25741A414Ea6E6e2B382435081A479A8Cc3c", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SEOR001" + "name": "x", + "url": "https://x.com/SEOR001" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x80106cb3EAD06659A5ad19DF39D9b4733863B9b0/info.json b/blockchains/smartchain/assets/0x80106cb3EAD06659A5ad19DF39D9b4733863B9b0/info.json new file mode 100644 index 0000000000000..67a7e9acfc943 --- /dev/null +++ b/blockchains/smartchain/assets/0x80106cb3EAD06659A5ad19DF39D9b4733863B9b0/info.json @@ -0,0 +1,20 @@ +{ + "name": "Microsoft Tokenized bStocks", + "type": "BEP20", + "symbol": "MSFTB", + "decimals": 18, + "description": "MSFTB is a tokenized bStocks that gives you economic exposure to Microsoft Tokenized bStocks, and the right to convert to the underlying security on the Binance.com platform subject to applicable laws. Each token is fully backed by the corresponding underlying equity maintained by the Issuer at a US-regulated broker-dealer. You get the price movements, dividends, and the right to convert the token at 1:1 to the underlying share — tradeable 24/7.", + "website": "https://www.bstocks.finance/en/", + "explorer": "https://bscscan.com/token/0x80106cb3EAD06659A5ad19DF39D9b4733863B9b0", + "status": "active", + "id": "0x80106cb3EAD06659A5ad19DF39D9b4733863B9b0", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/microsoft-tokenized-bstocks/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x80106cb3EAD06659A5ad19DF39D9b4733863B9b0/logo.png b/blockchains/smartchain/assets/0x80106cb3EAD06659A5ad19DF39D9b4733863B9b0/logo.png new file mode 100644 index 0000000000000..35a50498188da Binary files /dev/null and b/blockchains/smartchain/assets/0x80106cb3EAD06659A5ad19DF39D9b4733863B9b0/logo.png differ diff --git a/blockchains/smartchain/assets/0x8051A61319B7FF7010a200E39b30b9a084dbCB5f/info.json b/blockchains/smartchain/assets/0x8051A61319B7FF7010a200E39b30b9a084dbCB5f/info.json new file mode 100644 index 0000000000000..f8c4b65d2f470 --- /dev/null +++ b/blockchains/smartchain/assets/0x8051A61319B7FF7010a200E39b30b9a084dbCB5f/info.json @@ -0,0 +1,14 @@ +{ + "name": "camel", + "type": "BEP20", + "symbol": "camel", + "decimals": 18, + "website": "https://four.meme/token/0x8051A61319B7FF7010a200E39b30b9a084dbCB5f", + "description": "camel", + "explorer": "https://bscscan.com/token/0x8051A61319B7FF7010a200E39b30b9a084dbCB5f", + "status": "active", + "id": "0x8051A61319B7FF7010a200E39b30b9a084dbCB5f", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8051A61319B7FF7010a200E39b30b9a084dbCB5f/logo.png b/blockchains/smartchain/assets/0x8051A61319B7FF7010a200E39b30b9a084dbCB5f/logo.png new file mode 100644 index 0000000000000..e081c455aee05 Binary files /dev/null and b/blockchains/smartchain/assets/0x8051A61319B7FF7010a200E39b30b9a084dbCB5f/logo.png differ diff --git a/blockchains/smartchain/assets/0x80627029d84778BdA93Fe017d00dA70B45f84444/info.json b/blockchains/smartchain/assets/0x80627029d84778BdA93Fe017d00dA70B45f84444/info.json new file mode 100644 index 0000000000000..80d907ea990ee --- /dev/null +++ b/blockchains/smartchain/assets/0x80627029d84778BdA93Fe017d00dA70B45f84444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE United Stables", + "type": "BEP20", + "symbol": "FAKE UTED", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x80627029d84778BdA93Fe017d00dA70B45f84444", + "explorer": "https://bscscan.com/token/0x80627029d84778BdA93Fe017d00dA70B45f84444", + "status": "spam", + "id": "0x80627029d84778BdA93Fe017d00dA70B45f84444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8074d5356F18F7C6244768e53B95f52c79137777/info.json b/blockchains/smartchain/assets/0x8074d5356F18F7C6244768e53B95f52c79137777/info.json new file mode 100644 index 0000000000000..3b6e478b23a05 --- /dev/null +++ b/blockchains/smartchain/assets/0x8074d5356F18F7C6244768e53B95f52c79137777/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether USD", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x8074d5356F18F7C6244768e53B95f52c79137777", + "explorer": "https://bscscan.com/token/0x8074d5356F18F7C6244768e53B95f52c79137777", + "status": "spam", + "id": "0x8074d5356F18F7C6244768e53B95f52c79137777" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8077398Ff2c530f129a6dd8D7F1E8840312440CD/info.json b/blockchains/smartchain/assets/0x8077398Ff2c530f129a6dd8D7F1E8840312440CD/info.json index a5100aaba167a..95edafb09c007 100644 --- a/blockchains/smartchain/assets/0x8077398Ff2c530f129a6dd8D7F1E8840312440CD/info.json +++ b/blockchains/smartchain/assets/0x8077398Ff2c530f129a6dd8D7F1E8840312440CD/info.json @@ -10,8 +10,8 @@ "id": "0x8077398Ff2c530f129a6dd8D7F1E8840312440CD", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MiloInu" + "name": "x", + "url": "https://x.com/MiloInu" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x8087fdC95e14E7DBF0DE5A08b2558e54793795C0/info.json b/blockchains/smartchain/assets/0x8087fdC95e14E7DBF0DE5A08b2558e54793795C0/info.json new file mode 100644 index 0000000000000..0ace0ae357fff --- /dev/null +++ b/blockchains/smartchain/assets/0x8087fdC95e14E7DBF0DE5A08b2558e54793795C0/info.json @@ -0,0 +1,21 @@ +{ + "name": "Binance's dog", + "type": "BEP20", + "symbol": "CLEO", + "decimals": 18, + "description": "CLEO is the Belgian Malinois owned by Changpeng Zhao (CZ), the founder of Binance. Unlike other crypto-related pets like the Shiba Inu, CLEO has been a symbol of resilience and power in the Binance ecosystem. Confirmed by CZ himself, CLEO has been seen in various Binance posts, showcasing her as a true part of the crypto legacy.", + "website": "https://cleobsc.live/", + "explorer": "https://bscscan.com/token/0x8087fdc95e14e7dbf0de5a08b2558e54793795c0", + "id": "0x8087fdC95e14E7DBF0DE5A08b2558e54793795C0", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/cleoczsdog/" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8087fdC95e14E7DBF0DE5A08b2558e54793795C0/logo.png b/blockchains/smartchain/assets/0x8087fdC95e14E7DBF0DE5A08b2558e54793795C0/logo.png new file mode 100644 index 0000000000000..b7891be5d3d49 Binary files /dev/null and b/blockchains/smartchain/assets/0x8087fdC95e14E7DBF0DE5A08b2558e54793795C0/logo.png differ diff --git a/blockchains/smartchain/assets/0x8094e772fA4A60bdEb1DfEC56AB040e17DD608D5/info.json b/blockchains/smartchain/assets/0x8094e772fA4A60bdEb1DfEC56AB040e17DD608D5/info.json index 61458d1d7c798..7c021c7bb6aa2 100644 --- a/blockchains/smartchain/assets/0x8094e772fA4A60bdEb1DfEC56AB040e17DD608D5/info.json +++ b/blockchains/smartchain/assets/0x8094e772fA4A60bdEb1DfEC56AB040e17DD608D5/info.json @@ -10,8 +10,8 @@ "id": "0x8094e772fA4A60bdEb1DfEC56AB040e17DD608D5", "links": [ { - "name": "twitter", - "url": "https://twitter.com/CoinKoda" + "name": "x", + "url": "https://x.com/CoinKoda" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x8099C0c7b3E530F563d4B121Abd2Ee365c72fB78/info.json b/blockchains/smartchain/assets/0x8099C0c7b3E530F563d4B121Abd2Ee365c72fB78/info.json index 695975ac34259..586c9fb90ffa4 100644 --- a/blockchains/smartchain/assets/0x8099C0c7b3E530F563d4B121Abd2Ee365c72fB78/info.json +++ b/blockchains/smartchain/assets/0x8099C0c7b3E530F563d4B121Abd2Ee365c72fB78/info.json @@ -10,8 +10,8 @@ "id": "0x8099C0c7b3E530F563d4B121Abd2Ee365c72fB78", "links": [ { - "name": "twitter", - "url": "https://twitter.com/xiamipool" + "name": "x", + "url": "https://x.com/xiamipool" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x809A91d77F44c913dBc561172D5dFfcE573a7777/info.json b/blockchains/smartchain/assets/0x809A91d77F44c913dBc561172D5dFfcE573a7777/info.json new file mode 100644 index 0000000000000..da8355ae087b6 --- /dev/null +++ b/blockchains/smartchain/assets/0x809A91d77F44c913dBc561172D5dFfcE573a7777/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDT", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x809A91d77F44c913dBc561172D5dFfcE573a7777", + "explorer": "https://bscscan.com/token/0x809A91d77F44c913dBc561172D5dFfcE573a7777", + "status": "spam", + "id": "0x809A91d77F44c913dBc561172D5dFfcE573a7777" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x80A77a372c1e12AcCdA84299492f404902E2DA67/info.json b/blockchains/smartchain/assets/0x80A77a372c1e12AcCdA84299492f404902E2DA67/info.json new file mode 100644 index 0000000000000..25156a9dfa252 --- /dev/null +++ b/blockchains/smartchain/assets/0x80A77a372c1e12AcCdA84299492f404902E2DA67/info.json @@ -0,0 +1,24 @@ +{ + "name": "McDonald's tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "McDonald's tokenized stock (xStock) (MCDX) is a cryptocurrency and operates on the Solana platform. McDonald's tokenized stock (xStock) has a current supply of 5,499.97979496 with 2,463.12389797 in circulation. The last known price of McDonald's tokenized stock (xStock) is 302.84776149 USD and is down -0.87 over the last 24 hours. It is currently trading on 17 active market(s) with $4,567,912.24 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/mcdonalds-xstock.", + "explorer": "https://bscscan.com/token/0x80A77a372c1e12AcCdA84299492f404902E2DA67", + "type": "BEP20", + "symbol": "MCDX", + "decimals": 18, + "status": "active", + "id": "0x80A77a372c1e12AcCdA84299492f404902E2DA67", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mcdonald-s-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x80A77a372c1e12AcCdA84299492f404902E2DA67/logo.png b/blockchains/smartchain/assets/0x80A77a372c1e12AcCdA84299492f404902E2DA67/logo.png new file mode 100644 index 0000000000000..a3cdfb7fa9fe0 Binary files /dev/null and b/blockchains/smartchain/assets/0x80A77a372c1e12AcCdA84299492f404902E2DA67/logo.png differ diff --git a/blockchains/smartchain/assets/0x80B256f58BBC033cB47EAEa8cCc7bbeD9FA2bC1D/info.json b/blockchains/smartchain/assets/0x80B256f58BBC033cB47EAEa8cCc7bbeD9FA2bC1D/info.json new file mode 100644 index 0000000000000..3c1d45bf1c628 --- /dev/null +++ b/blockchains/smartchain/assets/0x80B256f58BBC033cB47EAEa8cCc7bbeD9FA2bC1D/info.json @@ -0,0 +1,17 @@ +{ + "name": "UP", + "symbol": "UP", + "website": "https://x.com/UPFinTech_top1", + "description": "$UP token is a super MEME AI application token based on the BSC chain", + "explorer": "https://bscscan.com/token/0x80b256f58bbc033cb47eaea8ccc7bbed9fa2bc1d", + "decimals": 18, + "status": "active", + "id": "0x80B256f58BBC033cB47EAEa8cCc7bbeD9FA2bC1D", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/UPFinTech_top1" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x80B256f58BBC033cB47EAEa8cCc7bbeD9FA2bC1D/logo.png b/blockchains/smartchain/assets/0x80B256f58BBC033cB47EAEa8cCc7bbeD9FA2bC1D/logo.png new file mode 100644 index 0000000000000..be0f7e9e12055 Binary files /dev/null and b/blockchains/smartchain/assets/0x80B256f58BBC033cB47EAEa8cCc7bbeD9FA2bC1D/logo.png differ diff --git a/blockchains/smartchain/assets/0x80C260cd80d8a2855b554A7d5001BD06421a6fd4/info.json b/blockchains/smartchain/assets/0x80C260cd80d8a2855b554A7d5001BD06421a6fd4/info.json new file mode 100644 index 0000000000000..7cbf35030908e --- /dev/null +++ b/blockchains/smartchain/assets/0x80C260cd80d8a2855b554A7d5001BD06421a6fd4/info.json @@ -0,0 +1,28 @@ +{ + "name": "The Green World", + "type": "BEP20", + "symbol": "TGW", + "decimals": 18, + "website": "https://thegreenworld.net/", + "description": "A pioneering project at the intersection of blockchain technology and environmental sustainability. Our mission is to create a greener, more sustainable world through innovative blockchain solutions and community-driven efforts.", + "explorer": "https://bscscan.com/token/0x80C260cd80d8a2855b554A7d5001BD06421a6fd4", + "status": "active", + "id": "0x80C260cd80d8a2855b554A7d5001BD06421a6fd4", + "links": [ + { + "name": "x", + "url": "https://x.com/GreenTgw97676" + }, + { + "name": "github", + "url": "https://github.com/devthegreenworld/" + }, + { + "name": "whitepaper", + "url": "https://thegreenworld.net/TGW-Whitepaper.pdf" + } + ], + "tags": [ + "staking-native" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x80C260cd80d8a2855b554A7d5001BD06421a6fd4/logo.png b/blockchains/smartchain/assets/0x80C260cd80d8a2855b554A7d5001BD06421a6fd4/logo.png new file mode 100644 index 0000000000000..b3ee1260a379e Binary files /dev/null and b/blockchains/smartchain/assets/0x80C260cd80d8a2855b554A7d5001BD06421a6fd4/logo.png differ diff --git a/blockchains/smartchain/assets/0x80E15FE54e9D155f8366187A6a32BDEF9C2366c4/info.json b/blockchains/smartchain/assets/0x80E15FE54e9D155f8366187A6a32BDEF9C2366c4/info.json index 634a35aea2a81..7c5809dedad9d 100644 --- a/blockchains/smartchain/assets/0x80E15FE54e9D155f8366187A6a32BDEF9C2366c4/info.json +++ b/blockchains/smartchain/assets/0x80E15FE54e9D155f8366187A6a32BDEF9C2366c4/info.json @@ -10,8 +10,8 @@ "id": "0x80E15FE54e9D155f8366187A6a32BDEF9C2366c4", "links": [ { - "name": "twitter", - "url": "https://twitter.com/binamonok" + "name": "x", + "url": "https://x.com/binamonok" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x80d04E44955AA9c3F24041B2A824A20A88E735a8/info.json b/blockchains/smartchain/assets/0x80d04E44955AA9c3F24041B2A824A20A88E735a8/info.json index 37ae0ffe2aa04..e5e8602a495a9 100644 --- a/blockchains/smartchain/assets/0x80d04E44955AA9c3F24041B2A824A20A88E735a8/info.json +++ b/blockchains/smartchain/assets/0x80d04E44955AA9c3F24041B2A824A20A88E735a8/info.json @@ -10,8 +10,8 @@ "id": "0x80d04E44955AA9c3F24041B2A824A20A88E735a8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/mulversecapital" + "name": "x", + "url": "https://x.com/mulversecapital" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x80f3D493EBCe97e343c53D29a137942416B4ffC0/info.json b/blockchains/smartchain/assets/0x80f3D493EBCe97e343c53D29a137942416B4ffC0/info.json new file mode 100644 index 0000000000000..d3320a115cdf2 --- /dev/null +++ b/blockchains/smartchain/assets/0x80f3D493EBCe97e343c53D29a137942416B4ffC0/info.json @@ -0,0 +1,21 @@ +{ + "name": "Circle Internet Group Tokenized bStocks", + "type": "BEP20", + "symbol": "CRCLB", + "decimals": 18, + "description": "CRCLB is a tokenized bStocks that gives you economic exposure to Circle Internet Group, and the right to convert to the underlying security on the Binance.com platform subject to applicable laws. Each token is fully backed by the corresponding underlying equity maintained by the Issuer at a US-regulated broker-dealer. You get the price movements, dividends, and the right to convert the token at 1:1 to the underlying share — tradeable 24/7.", + "website": "https://www.bstocks.finance/", + "explorer": "https://bscscan.com/token/0x80f3D493EBCe97e343c53D29a137942416B4ffC0", + "status": "active", + "id": "0x80f3D493EBCe97e343c53D29a137942416B4ffC0", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/circle-internet-group-tokenized-stock-bstocks/" + } + ], + "tags": [ + "RWA", + "erc8056" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x80f3D493EBCe97e343c53D29a137942416B4ffC0/logo.png b/blockchains/smartchain/assets/0x80f3D493EBCe97e343c53D29a137942416B4ffC0/logo.png new file mode 100644 index 0000000000000..8f7917bd8ecf4 Binary files /dev/null and b/blockchains/smartchain/assets/0x80f3D493EBCe97e343c53D29a137942416B4ffC0/logo.png differ diff --git a/blockchains/smartchain/assets/0x812Fc2943371C952c6c8Daf99Fe665Eb0e40Cd27/info.json b/blockchains/smartchain/assets/0x812Fc2943371C952c6c8Daf99Fe665Eb0e40Cd27/info.json new file mode 100644 index 0000000000000..e6586475c944f --- /dev/null +++ b/blockchains/smartchain/assets/0x812Fc2943371C952c6c8Daf99Fe665Eb0e40Cd27/info.json @@ -0,0 +1,24 @@ +{ + "name": "Capricor Therapeutics (Ondo Tokenized)", + "type": "BEP20", + "symbol": "CAPRon", + "decimals": 18, + "description": "CAPRon is the Ondo Tokenized version of Capricor Therapeutics, giving tokenholders economic exposure similar to holding CAPR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x812Fc2943371C952c6c8Daf99Fe665Eb0e40Cd27", + "status": "active", + "id": "0x812Fc2943371C952c6c8Daf99Fe665Eb0e40Cd27", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/capricor-therapeutics-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x812Fc2943371C952c6c8Daf99Fe665Eb0e40Cd27/logo.png b/blockchains/smartchain/assets/0x812Fc2943371C952c6c8Daf99Fe665Eb0e40Cd27/logo.png new file mode 100644 index 0000000000000..6678ea0d457ae Binary files /dev/null and b/blockchains/smartchain/assets/0x812Fc2943371C952c6c8Daf99Fe665Eb0e40Cd27/logo.png differ diff --git a/blockchains/smartchain/assets/0x812Ff2420EC87eB40Da80a596f14756ACf98Dacc/info.json b/blockchains/smartchain/assets/0x812Ff2420EC87eB40Da80a596f14756ACf98Dacc/info.json index fa7a5a7e44a1f..528d0b860e47b 100644 --- a/blockchains/smartchain/assets/0x812Ff2420EC87eB40Da80a596f14756ACf98Dacc/info.json +++ b/blockchains/smartchain/assets/0x812Ff2420EC87eB40Da80a596f14756ACf98Dacc/info.json @@ -14,8 +14,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/BSCBear" + "name": "x", + "url": "https://x.com/BSCBear" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x812dd2e7f6061F609ef4FDA05906593F81b18888/info.json b/blockchains/smartchain/assets/0x812dd2e7f6061F609ef4FDA05906593F81b18888/info.json new file mode 100644 index 0000000000000..aeaf51f8607bf --- /dev/null +++ b/blockchains/smartchain/assets/0x812dd2e7f6061F609ef4FDA05906593F81b18888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether USD", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x812dd2e7f6061F609ef4FDA05906593F81b18888", + "explorer": "https://bscscan.com/token/0x812dd2e7f6061F609ef4FDA05906593F81b18888", + "status": "spam", + "id": "0x812dd2e7f6061F609ef4FDA05906593F81b18888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x816e9e589F8C07149dA4E2496C547952338B27e2/info.json b/blockchains/smartchain/assets/0x816e9e589F8C07149dA4E2496C547952338B27e2/info.json index 47287b51457e5..062c3c08f771a 100644 --- a/blockchains/smartchain/assets/0x816e9e589F8C07149dA4E2496C547952338B27e2/info.json +++ b/blockchains/smartchain/assets/0x816e9e589F8C07149dA4E2496C547952338B27e2/info.json @@ -11,8 +11,8 @@ "id": "0x816e9e589F8C07149dA4E2496C547952338B27e2", "links": [ { - "name": "twitter", - "url": "https://twitter.com/bittoexchange" + "name": "x", + "url": "https://x.com/bittoexchange" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x817942D5DE16092656568e9f67F54CCb462f8989/info.json b/blockchains/smartchain/assets/0x817942D5DE16092656568e9f67F54CCb462f8989/info.json new file mode 100644 index 0000000000000..e6e4e18638503 --- /dev/null +++ b/blockchains/smartchain/assets/0x817942D5DE16092656568e9f67F54CCb462f8989/info.json @@ -0,0 +1,28 @@ +{ + "name": "Gemini Space Station (Ondo Tokenized)", + "type": "BEP20", + "symbol": "GEMIon", + "decimals": 18, + "description": "GEMIon is the Ondo Tokenized version of Gemini Space Station, giving tokenholders economic exposure similar to holding GEMI and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x817942D5DE16092656568e9f67F54CCb462f8989", + "status": "active", + "id": "0x817942D5DE16092656568e9f67F54CCb462f8989", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gemini-space-station-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gemini-space-station-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x817942D5DE16092656568e9f67F54CCb462f8989/logo.png b/blockchains/smartchain/assets/0x817942D5DE16092656568e9f67F54CCb462f8989/logo.png new file mode 100644 index 0000000000000..50198ae8b3c65 Binary files /dev/null and b/blockchains/smartchain/assets/0x817942D5DE16092656568e9f67F54CCb462f8989/logo.png differ diff --git a/blockchains/smartchain/assets/0x81859801b01764D4f0Fa5E64729f5a6C3b91435b/info.json b/blockchains/smartchain/assets/0x81859801b01764D4f0Fa5E64729f5a6C3b91435b/info.json index 8505764255a35..9272fe6b881f9 100644 --- a/blockchains/smartchain/assets/0x81859801b01764D4f0Fa5E64729f5a6C3b91435b/info.json +++ b/blockchains/smartchain/assets/0x81859801b01764D4f0Fa5E64729f5a6C3b91435b/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/bearn-defi" }, { - "name": "twitter", - "url": "https://twitter.com/BearnFi" + "name": "x", + "url": "https://x.com/BearnFi" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x818835503F55283cd51A4399f595e295A9338753/info.json b/blockchains/smartchain/assets/0x818835503F55283cd51A4399f595e295A9338753/info.json index 058822fe201ab..11d5f96e2bb85 100644 --- a/blockchains/smartchain/assets/0x818835503F55283cd51A4399f595e295A9338753/info.json +++ b/blockchains/smartchain/assets/0x818835503F55283cd51A4399f595e295A9338753/info.json @@ -10,8 +10,8 @@ "id": "0x818835503F55283cd51A4399f595e295A9338753", "links": [ { - "name": "twitter", - "url": "https://twitter.com/The_Delysium" + "name": "x", + "url": "https://x.com/The_Delysium" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x8191113581cBfa3fcdC6B0d2e6F84753D4850080/info.json b/blockchains/smartchain/assets/0x8191113581cBfa3fcdC6B0d2e6F84753D4850080/info.json index 256ce8c2f6d8b..a046249689c14 100644 --- a/blockchains/smartchain/assets/0x8191113581cBfa3fcdC6B0d2e6F84753D4850080/info.json +++ b/blockchains/smartchain/assets/0x8191113581cBfa3fcdC6B0d2e6F84753D4850080/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/thugs-defi" }, { - "name": "twitter", - "url": "https://twitter.com/ThugsFinance" + "name": "x", + "url": "https://x.com/ThugsFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x81C15D3E956e55e77E1f3F257f0A65Bd2725fC55/info.json b/blockchains/smartchain/assets/0x81C15D3E956e55e77E1f3F257f0A65Bd2725fC55/info.json index 575aff6867a26..3be71759d3fbd 100644 --- a/blockchains/smartchain/assets/0x81C15D3E956e55e77E1f3F257f0A65Bd2725fC55/info.json +++ b/blockchains/smartchain/assets/0x81C15D3E956e55e77E1f3F257f0A65Bd2725fC55/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/CreamFi" }, { - "name": "twitter", - "url": "https://twitter.com/CreamdotFinance" + "name": "x", + "url": "https://x.com/CreamdotFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x81E4d494b85A24a58a6BA45c9B418b32a4E039de/info.json b/blockchains/smartchain/assets/0x81E4d494b85A24a58a6BA45c9B418b32a4E039de/info.json index 6c0baed4ad353..c414e6374f85d 100644 --- a/blockchains/smartchain/assets/0x81E4d494b85A24a58a6BA45c9B418b32a4E039de/info.json +++ b/blockchains/smartchain/assets/0x81E4d494b85A24a58a6BA45c9B418b32a4E039de/info.json @@ -10,8 +10,8 @@ "id": "0x81E4d494b85A24a58a6BA45c9B418b32a4E039de", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MoonToken_BSC" + "name": "x", + "url": "https://x.com/MoonToken_BSC" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x81dD3724E3B1FB6123589777DD4CB44233B34A3B/info.json b/blockchains/smartchain/assets/0x81dD3724E3B1FB6123589777DD4CB44233B34A3B/info.json index c4984d582cdc9..53a0dfba3fa83 100644 --- a/blockchains/smartchain/assets/0x81dD3724E3B1FB6123589777DD4CB44233B34A3B/info.json +++ b/blockchains/smartchain/assets/0x81dD3724E3B1FB6123589777DD4CB44233B34A3B/info.json @@ -10,8 +10,8 @@ "id": "0x81dD3724E3B1FB6123589777DD4CB44233B34A3B", "links": [ { - "name": "twitter", - "url": "https://twitter.com/FlappyBird_Go" + "name": "x", + "url": "https://x.com/FlappyBird_Go" }, { "name": "telegram", @@ -33,4 +33,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x82030CDBD9e4B7c5bb0b811A61DA6360D69449cc/info.json b/blockchains/smartchain/assets/0x82030CDBD9e4B7c5bb0b811A61DA6360D69449cc/info.json index 43bd1cffe53dd..482f0db91536a 100644 --- a/blockchains/smartchain/assets/0x82030CDBD9e4B7c5bb0b811A61DA6360D69449cc/info.json +++ b/blockchains/smartchain/assets/0x82030CDBD9e4B7c5bb0b811A61DA6360D69449cc/info.json @@ -10,8 +10,8 @@ "id": "0x82030CDBD9e4B7c5bb0b811A61DA6360D69449cc", "links": [ { - "name": "twitter", - "url": "https://twitter.com/realfevr" + "name": "x", + "url": "https://x.com/realfevr" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x8203612382f61baFaE549fBF31eFbf70992fA289/info.json b/blockchains/smartchain/assets/0x8203612382f61baFaE549fBF31eFbf70992fA289/info.json index 028d036941848..d93daf797d302 100644 --- a/blockchains/smartchain/assets/0x8203612382f61baFaE549fBF31eFbf70992fA289/info.json +++ b/blockchains/smartchain/assets/0x8203612382f61baFaE549fBF31eFbf70992fA289/info.json @@ -10,8 +10,8 @@ "id": "0x8203612382f61baFaE549fBF31eFbf70992fA289", "links": [ { - "name": "twitter", - "url": "https://twitter.com/shibapupdog" + "name": "x", + "url": "https://x.com/shibapupdog" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x82248D53De2B7608cAF53978A8E8C238DC42403a/info.json b/blockchains/smartchain/assets/0x82248D53De2B7608cAF53978A8E8C238DC42403a/info.json new file mode 100644 index 0000000000000..aca08dd131eb1 --- /dev/null +++ b/blockchains/smartchain/assets/0x82248D53De2B7608cAF53978A8E8C238DC42403a/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT USDGOLD", + "type": "BEP20", + "symbol": "HONEYPOT USDG", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x82248d53de2b7608caf53978a8e8c238dc42403a", + "explorer": "https://bscscan.com/token/0x82248d53de2b7608caf53978a8e8c238dc42403a", + "status": "spam", + "id": "0x82248D53De2B7608cAF53978A8E8C238DC42403a" +} diff --git a/blockchains/smartchain/assets/0x822DC83fA4dc997fFf24D0BC0A66fCB2954a6156/info.json b/blockchains/smartchain/assets/0x822DC83fA4dc997fFf24D0BC0A66fCB2954a6156/info.json index cbf27ff90e5da..488bae91190af 100644 --- a/blockchains/smartchain/assets/0x822DC83fA4dc997fFf24D0BC0A66fCB2954a6156/info.json +++ b/blockchains/smartchain/assets/0x822DC83fA4dc997fFf24D0BC0A66fCB2954a6156/info.json @@ -10,8 +10,8 @@ "id": "0x822DC83fA4dc997fFf24D0BC0A66fCB2954a6156", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Bsocialfi" + "name": "x", + "url": "https://x.com/Bsocialfi" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x8236f1239530971868925e6017d4005763E9087f/info.json b/blockchains/smartchain/assets/0x8236f1239530971868925e6017d4005763E9087f/info.json index 38a0f4a9f83cf..bf7d9f1d7b010 100644 --- a/blockchains/smartchain/assets/0x8236f1239530971868925e6017d4005763E9087f/info.json +++ b/blockchains/smartchain/assets/0x8236f1239530971868925e6017d4005763E9087f/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Dexioprotocol" }, { - "name": "twitter", - "url": "https://twitter.com/dexioprotocol" + "name": "x", + "url": "https://x.com/dexioprotocol" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x825791Bc83A377Ba3931E8a56504a1EACAAE0f76/info.json b/blockchains/smartchain/assets/0x825791Bc83A377Ba3931E8a56504a1EACAAE0f76/info.json index 9a49ed70a4d5b..3535278e3de2f 100644 --- a/blockchains/smartchain/assets/0x825791Bc83A377Ba3931E8a56504a1EACAAE0f76/info.json +++ b/blockchains/smartchain/assets/0x825791Bc83A377Ba3931E8a56504a1EACAAE0f76/info.json @@ -14,11 +14,11 @@ "url": "https://t.me/MetaHouseEN" }, { - "name": "twitter", - "url": "https://twitter.com/MetaHousebsc?s=09" + "name": "x", + "url": "https://x.com/MetaHousebsc?s=09" } ], "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8263CD1601FE73C066bf49cc09841f35348e3be0/info.json b/blockchains/smartchain/assets/0x8263CD1601FE73C066bf49cc09841f35348e3be0/info.json index f1f77a4adbca6..f5c3e31aea2f0 100644 --- a/blockchains/smartchain/assets/0x8263CD1601FE73C066bf49cc09841f35348e3be0/info.json +++ b/blockchains/smartchain/assets/0x8263CD1601FE73C066bf49cc09841f35348e3be0/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Plutus-Gaming-NFTs-Reimagined" }, { - "name": "twitter", - "url": "https://twitter.com/altura_nft" + "name": "x", + "url": "https://x.com/altura_nft" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x8267d169E1483E01AACBCfd22d294c47ECE9F07f/info.json b/blockchains/smartchain/assets/0x8267d169E1483E01AACBCfd22d294c47ECE9F07f/info.json index e0c8ed547335d..438095acb2cca 100644 --- a/blockchains/smartchain/assets/0x8267d169E1483E01AACBCfd22d294c47ECE9F07f/info.json +++ b/blockchains/smartchain/assets/0x8267d169E1483E01AACBCfd22d294c47ECE9F07f/info.json @@ -14,8 +14,8 @@ "url": "https://facebook.com/dmoonxyz" }, { - "name": "twitter", - "url": "https://twitter.com/dmoon_xyz" + "name": "x", + "url": "https://x.com/dmoon_xyz" }, { "name": "telegram_news", diff --git a/blockchains/smartchain/assets/0x826e5Ec70DbC5607fF9218011FBb97F9a8D97953/info.json b/blockchains/smartchain/assets/0x826e5Ec70DbC5607fF9218011FBb97F9a8D97953/info.json index a97534a7f3c47..48add6f6f087a 100644 --- a/blockchains/smartchain/assets/0x826e5Ec70DbC5607fF9218011FBb97F9a8D97953/info.json +++ b/blockchains/smartchain/assets/0x826e5Ec70DbC5607fF9218011FBb97F9a8D97953/info.json @@ -18,8 +18,8 @@ "url": "https://github.com/TokenTravelCare" }, { - "name": "twitter", - "url": "https://twitter.com/TravelCareToken" + "name": "x", + "url": "https://x.com/TravelCareToken" }, { "name": "telegram", @@ -30,4 +30,4 @@ "url": "https://content.travelcare.io/whitepaper/whitepaperENG.pdf" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x82715299f3f132FB85f3De1F7e8fAfd3d79f3eB5/info.json b/blockchains/smartchain/assets/0x82715299f3f132FB85f3De1F7e8fAfd3d79f3eB5/info.json new file mode 100644 index 0000000000000..ea7caaf575f9b --- /dev/null +++ b/blockchains/smartchain/assets/0x82715299f3f132FB85f3De1F7e8fAfd3d79f3eB5/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares MSCI Japan ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "EWJon", + "decimals": 18, + "description": "EWJon is the Ondo Tokenized version of the iShares MSCI Japan ETF , giving tokenholders economic exposure similar to holding EWJ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x82715299f3f132FB85f3De1F7e8fAfd3d79f3eB5", + "status": "active", + "id": "0x82715299f3f132FB85f3De1F7e8fAfd3d79f3eB5", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-msci-japan-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x82715299f3f132FB85f3De1F7e8fAfd3d79f3eB5/logo.png b/blockchains/smartchain/assets/0x82715299f3f132FB85f3De1F7e8fAfd3d79f3eB5/logo.png new file mode 100644 index 0000000000000..2ce033b091a15 Binary files /dev/null and b/blockchains/smartchain/assets/0x82715299f3f132FB85f3De1F7e8fAfd3d79f3eB5/logo.png differ diff --git a/blockchains/smartchain/assets/0x82942637985f4D42c3519e374b8c27BaB3902465/info.json b/blockchains/smartchain/assets/0x82942637985f4D42c3519e374b8c27BaB3902465/info.json new file mode 100644 index 0000000000000..04b2719fa8c67 --- /dev/null +++ b/blockchains/smartchain/assets/0x82942637985f4D42c3519e374b8c27BaB3902465/info.json @@ -0,0 +1,14 @@ +{ + "name": "MAHABIBI BIN SMARTMAN", + "type": "BEP20", + "symbol": "MAHABIBI", + "decimals": 18, + "website": "https://mahabibibinsmartman.xyz/", + "description": "Mohammed bin Salman? Nah, it's the ultimate crypto sheikh on BSC - MAHABIBI BIN SMARTMAN!!", + "explorer": "https://bscscan.com/token/0x82942637985f4D42c3519e374b8c27BaB3902465", + "status": "active", + "id": "0x82942637985f4D42c3519e374b8c27BaB3902465", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x82942637985f4D42c3519e374b8c27BaB3902465/logo.png b/blockchains/smartchain/assets/0x82942637985f4D42c3519e374b8c27BaB3902465/logo.png new file mode 100644 index 0000000000000..cafc17785af34 Binary files /dev/null and b/blockchains/smartchain/assets/0x82942637985f4D42c3519e374b8c27BaB3902465/logo.png differ diff --git a/blockchains/smartchain/assets/0x82A479264B36104be4FDb91618a59A4fC0F50650/info.json b/blockchains/smartchain/assets/0x82A479264B36104be4FDb91618a59A4fC0F50650/info.json index 6b14462f6980d..6705ec3208925 100644 --- a/blockchains/smartchain/assets/0x82A479264B36104be4FDb91618a59A4fC0F50650/info.json +++ b/blockchains/smartchain/assets/0x82A479264B36104be4FDb91618a59A4fC0F50650/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/birbdev" }, { - "name": "twitter", - "url": "https://twitter.com/BirbDefi" + "name": "x", + "url": "https://x.com/BirbDefi" }, { "name": "telegram", @@ -37,4 +37,4 @@ "url": "https://reddit.com/r/BirbDefi/" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x82C19905B036bf4E329740989DCF6aE441AE26c1/info.json b/blockchains/smartchain/assets/0x82C19905B036bf4E329740989DCF6aE441AE26c1/info.json index a39b910979d49..04022f8f108ff 100644 --- a/blockchains/smartchain/assets/0x82C19905B036bf4E329740989DCF6aE441AE26c1/info.json +++ b/blockchains/smartchain/assets/0x82C19905B036bf4E329740989DCF6aE441AE26c1/info.json @@ -10,8 +10,8 @@ "id": "0x82C19905B036bf4E329740989DCF6aE441AE26c1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/CoPuppy_BSC" + "name": "x", + "url": "https://x.com/CoPuppy_BSC" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x82D2f8E02Afb160Dd5A480a617692e62de9038C4/info.json b/blockchains/smartchain/assets/0x82D2f8E02Afb160Dd5A480a617692e62de9038C4/info.json index 6ddc855e33c06..2534a373cfbcb 100644 --- a/blockchains/smartchain/assets/0x82D2f8E02Afb160Dd5A480a617692e62de9038C4/info.json +++ b/blockchains/smartchain/assets/0x82D2f8E02Afb160Dd5A480a617692e62de9038C4/info.json @@ -10,8 +10,8 @@ "id": "0x82D2f8E02Afb160Dd5A480a617692e62de9038C4", "links": [ { - "name": "twitter", - "url": "https://twitter.com/aleph_im" + "name": "x", + "url": "https://x.com/aleph_im" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x82D6E409438E9c2eAEd8ceec4Bd95918cbd17c87/info.json b/blockchains/smartchain/assets/0x82D6E409438E9c2eAEd8ceec4Bd95918cbd17c87/info.json index 853628d0712c5..feeba43f66469 100644 --- a/blockchains/smartchain/assets/0x82D6E409438E9c2eAEd8ceec4Bd95918cbd17c87/info.json +++ b/blockchains/smartchain/assets/0x82D6E409438E9c2eAEd8ceec4Bd95918cbd17c87/info.json @@ -17,8 +17,8 @@ "url": "https://t.me/fomobabytelegram" }, { - "name": "twitter", - "url": "https://twitter.com/fomobabybsc" + "name": "x", + "url": "https://x.com/fomobabybsc" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x82E07C1017032cFd889b1Ca81EBe722c4D4de825/info.json b/blockchains/smartchain/assets/0x82E07C1017032cFd889b1Ca81EBe722c4D4de825/info.json new file mode 100644 index 0000000000000..0ab50a7ed2d71 --- /dev/null +++ b/blockchains/smartchain/assets/0x82E07C1017032cFd889b1Ca81EBe722c4D4de825/info.json @@ -0,0 +1,24 @@ +{ + "name": "Quantum Computing (Ondo Tokenized)", + "type": "BEP20", + "symbol": "QUBTon", + "decimals": 18, + "description": "QUBTon is the Ondo Tokenized version of Quantum Computing, giving tokenholders economic exposure similar to holding QUBT and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x82E07C1017032cFd889b1Ca81EBe722c4D4de825", + "status": "active", + "id": "0x82E07C1017032cFd889b1Ca81EBe722c4D4de825", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/quantum-computing-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x82E07C1017032cFd889b1Ca81EBe722c4D4de825/logo.png b/blockchains/smartchain/assets/0x82E07C1017032cFd889b1Ca81EBe722c4D4de825/logo.png new file mode 100644 index 0000000000000..ba8cb66e12b1d Binary files /dev/null and b/blockchains/smartchain/assets/0x82E07C1017032cFd889b1Ca81EBe722c4D4de825/logo.png differ diff --git a/blockchains/smartchain/assets/0x830F7A104a3dF30879D526031D57DAa44BF85686/info.json b/blockchains/smartchain/assets/0x830F7A104a3dF30879D526031D57DAa44BF85686/info.json index 242fd1470128e..7cd45378d42ca 100644 --- a/blockchains/smartchain/assets/0x830F7A104a3dF30879D526031D57DAa44BF85686/info.json +++ b/blockchains/smartchain/assets/0x830F7A104a3dF30879D526031D57DAa44BF85686/info.json @@ -10,8 +10,8 @@ "id": "0x830F7A104a3dF30879D526031D57DAa44BF85686", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ibnbfinance" + "name": "x", + "url": "https://x.com/ibnbfinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x83155E3fe0f6b3ec6343887F62Fadf7eDa784462/info.json b/blockchains/smartchain/assets/0x83155E3fe0f6b3ec6343887F62Fadf7eDa784462/info.json new file mode 100644 index 0000000000000..68fc7ec663ff8 --- /dev/null +++ b/blockchains/smartchain/assets/0x83155E3fe0f6b3ec6343887F62Fadf7eDa784462/info.json @@ -0,0 +1,17 @@ +{ + "name": "ZIMOMO", + "website": "https://zimomo.site/", + "description": "Step into Zimomo’s quirky universe! Explore its story and discover the unexpected!", + "explorer": "https://bscscan.com/token/0x83155E3fe0f6b3ec6343887F62Fadf7eDa784462", + "type": "BEP20", + "symbol": "ZIMOMO", + "decimals": 18, + "status": "active", + "id": "0x83155E3fe0f6b3ec6343887F62Fadf7eDa784462", + "links": [ + { + "name": "x", + "url": "https://x.com/Zimomobsc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x83155E3fe0f6b3ec6343887F62Fadf7eDa784462/logo.png b/blockchains/smartchain/assets/0x83155E3fe0f6b3ec6343887F62Fadf7eDa784462/logo.png new file mode 100644 index 0000000000000..611a8d9a1f716 Binary files /dev/null and b/blockchains/smartchain/assets/0x83155E3fe0f6b3ec6343887F62Fadf7eDa784462/logo.png differ diff --git a/blockchains/smartchain/assets/0x8316c1cB76b88be6450baF689860b73dC606B431/info.json b/blockchains/smartchain/assets/0x8316c1cB76b88be6450baF689860b73dC606B431/info.json index ba146bcdfbef7..d81d691b6039e 100644 --- a/blockchains/smartchain/assets/0x8316c1cB76b88be6450baF689860b73dC606B431/info.json +++ b/blockchains/smartchain/assets/0x8316c1cB76b88be6450baF689860b73dC606B431/info.json @@ -10,8 +10,8 @@ "id": "0x8316c1cB76b88be6450baF689860b73dC606B431", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Spores_Network" + "name": "x", + "url": "https://x.com/Spores_Network" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0x83300C06aDFd8225560f8505Dba7493A9B60194C/info.json b/blockchains/smartchain/assets/0x83300C06aDFd8225560f8505Dba7493A9B60194C/info.json index 7b94f2bf60181..1b07cf0af1c04 100644 --- a/blockchains/smartchain/assets/0x83300C06aDFd8225560f8505Dba7493A9B60194C/info.json +++ b/blockchains/smartchain/assets/0x83300C06aDFd8225560f8505Dba7493A9B60194C/info.json @@ -10,8 +10,8 @@ "id": "0x83300C06aDFd8225560f8505Dba7493A9B60194C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MetaverseNdt" + "name": "x", + "url": "https://x.com/MetaverseNdt" }, { "name": "facebook", @@ -29,4 +29,4 @@ "tags": [ "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8331cA5D8914b3E89D41344f1B231e4516953BcF/info.json b/blockchains/smartchain/assets/0x8331cA5D8914b3E89D41344f1B231e4516953BcF/info.json new file mode 100644 index 0000000000000..c0b6c59996c6d --- /dev/null +++ b/blockchains/smartchain/assets/0x8331cA5D8914b3E89D41344f1B231e4516953BcF/info.json @@ -0,0 +1,11 @@ +{ + "name": "No one's node HONEYPOT", + "website": "https://bscscan.com/token/0x8331cA5D8914b3E89D41344f1B231e4516953BcF", + "description": "No one's node HONEYPOT", + "explorer": "https://bscscan.com/token/0x8331cA5D8914b3E89D41344f1B231e4516953BcF", + "type": "BEP20", + "symbol": "NON HONEYPOT", + "decimals": 18, + "status": "spam", + "id": "0x8331cA5D8914b3E89D41344f1B231e4516953BcF" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x834613c64522725b23b458aF04ED1590D189962F/info.json b/blockchains/smartchain/assets/0x834613c64522725b23b458aF04ED1590D189962F/info.json index 96bff9a6e29df..32652ef6705a2 100644 --- a/blockchains/smartchain/assets/0x834613c64522725b23b458aF04ED1590D189962F/info.json +++ b/blockchains/smartchain/assets/0x834613c64522725b23b458aF04ED1590D189962F/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/dkkstoken" }, { - "name": "twitter", - "url": "https://twitter.com/dkkstoken" + "name": "x", + "url": "https://x.com/dkkstoken" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x834f50D03232dF90112490cC6d8b0a20B8C28888/info.json b/blockchains/smartchain/assets/0x834f50D03232dF90112490cC6d8b0a20B8C28888/info.json new file mode 100644 index 0000000000000..2524b7203746f --- /dev/null +++ b/blockchains/smartchain/assets/0x834f50D03232dF90112490cC6d8b0a20B8C28888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether USD", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x834f50D03232dF90112490cC6d8b0a20B8C28888", + "explorer": "https://bscscan.com/token/0x834f50D03232dF90112490cC6d8b0a20B8C28888", + "status": "spam", + "id": "0x834f50D03232dF90112490cC6d8b0a20B8C28888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8357c604c5533fa0053BeAaA1494Da552ceA38f7/info.json b/blockchains/smartchain/assets/0x8357c604c5533fa0053BeAaA1494Da552ceA38f7/info.json index b0ba65362f9b6..cf2314f95b465 100644 --- a/blockchains/smartchain/assets/0x8357c604c5533fa0053BeAaA1494Da552ceA38f7/info.json +++ b/blockchains/smartchain/assets/0x8357c604c5533fa0053BeAaA1494Da552ceA38f7/info.json @@ -10,8 +10,8 @@ "id": "0x8357c604c5533fa0053BeAaA1494Da552ceA38f7", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Spores_Network" + "name": "x", + "url": "https://x.com/Spores_Network" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0x8379B36826675450c35e1eb45d2fd1E1aE8494A4/info.json b/blockchains/smartchain/assets/0x8379B36826675450c35e1eb45d2fd1E1aE8494A4/info.json index d4a40088f81ca..5bf0eaf565b5c 100644 --- a/blockchains/smartchain/assets/0x8379B36826675450c35e1eb45d2fd1E1aE8494A4/info.json +++ b/blockchains/smartchain/assets/0x8379B36826675450c35e1eb45d2fd1E1aE8494A4/info.json @@ -10,8 +10,8 @@ "id": "0x8379B36826675450c35e1eb45d2fd1E1aE8494A4", "links": [ { - "name": "twitter", - "url": "https://twitter.com/AlphaKombatgame" + "name": "x", + "url": "https://x.com/AlphaKombatgame" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x837A130aED114300Bab4f9f1F4f500682f7efd48/info.json b/blockchains/smartchain/assets/0x837A130aED114300Bab4f9f1F4f500682f7efd48/info.json index 0c47d1d9a949d..eabde635ba282 100644 --- a/blockchains/smartchain/assets/0x837A130aED114300Bab4f9f1F4f500682f7efd48/info.json +++ b/blockchains/smartchain/assets/0x837A130aED114300Bab4f9f1F4f500682f7efd48/info.json @@ -10,8 +10,8 @@ "id": "0x837A130aED114300Bab4f9f1F4f500682f7efd48", "links": [ { - "name": "twitter", - "url": "https://twitter.com/WeSendit" + "name": "x", + "url": "https://x.com/WeSendit" }, { "name": "github", @@ -49,4 +49,4 @@ "tags": [ "privacy" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x83d8Ea5A4650B68Cd2b57846783d86DF940F7458/info.json b/blockchains/smartchain/assets/0x83d8Ea5A4650B68Cd2b57846783d86DF940F7458/info.json index 4dd183448c90a..d8ef6639d8b4d 100644 --- a/blockchains/smartchain/assets/0x83d8Ea5A4650B68Cd2b57846783d86DF940F7458/info.json +++ b/blockchains/smartchain/assets/0x83d8Ea5A4650B68Cd2b57846783d86DF940F7458/info.json @@ -10,8 +10,8 @@ "id": "0x83d8Ea5A4650B68Cd2b57846783d86DF940F7458", "links": [ { - "name": "twitter", - "url": "https://twitter.com/humandataincome" + "name": "x", + "url": "https://x.com/humandataincome" }, { "name": "telegram", @@ -62,4 +62,4 @@ "memes", "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x83edD3923940422f780072052b30f2BE9DA9b831/info.json b/blockchains/smartchain/assets/0x83edD3923940422f780072052b30f2BE9DA9b831/info.json new file mode 100644 index 0000000000000..6f7a02f9b7f01 --- /dev/null +++ b/blockchains/smartchain/assets/0x83edD3923940422f780072052b30f2BE9DA9b831/info.json @@ -0,0 +1,17 @@ +{ + "name": "Fora", + "symbol": "Fora", + "type": "BEP20", + "decimals": 18, + "description": "Welcome to $FORA the official Mascot of FourMeme", + "website": "https://x.com/four_meme_cs", + "explorer": "https://bscscan.com/token/0x83edD3923940422f780072052b30f2BE9DA9b831", + "status": "active", + "id": "0x83edD3923940422f780072052b30f2BE9DA9b831", + "links": [ + { + "name": "x", + "url": "https://x.com/four_meme_cs" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x83edD3923940422f780072052b30f2BE9DA9b831/logo.png b/blockchains/smartchain/assets/0x83edD3923940422f780072052b30f2BE9DA9b831/logo.png new file mode 100644 index 0000000000000..c2c99c33bfb5c Binary files /dev/null and b/blockchains/smartchain/assets/0x83edD3923940422f780072052b30f2BE9DA9b831/logo.png differ diff --git a/blockchains/smartchain/assets/0x8401aAbA08f0be0d30B7D136C50fe5C461DBFA05/info.json b/blockchains/smartchain/assets/0x8401aAbA08f0be0d30B7D136C50fe5C461DBFA05/info.json index 1b18e9bb9f86a..6cfca7dd983c5 100644 --- a/blockchains/smartchain/assets/0x8401aAbA08f0be0d30B7D136C50fe5C461DBFA05/info.json +++ b/blockchains/smartchain/assets/0x8401aAbA08f0be0d30B7D136C50fe5C461DBFA05/info.json @@ -6,8 +6,8 @@ "type": "BEP20", "links": [ { - "name": "twitter", - "url": "https://twitter.com/AnnexFinance" + "name": "x", + "url": "https://x.com/AnnexFinance" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0x840BCd536d647C3433bF830DBCb8debFa5B71c79/info.json b/blockchains/smartchain/assets/0x840BCd536d647C3433bF830DBCb8debFa5B71c79/info.json index 9bbc174b42f15..37b37376d7c96 100644 --- a/blockchains/smartchain/assets/0x840BCd536d647C3433bF830DBCb8debFa5B71c79/info.json +++ b/blockchains/smartchain/assets/0x840BCd536d647C3433bF830DBCb8debFa5B71c79/info.json @@ -10,8 +10,8 @@ "id": "0x840BCd536d647C3433bF830DBCb8debFa5B71c79", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BNBCashOfficial" + "name": "x", + "url": "https://x.com/BNBCashOfficial" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x842668E2B9A73240aBF6532DEdC89c9c3e050C98/info.json b/blockchains/smartchain/assets/0x842668E2B9A73240aBF6532DEdC89c9c3e050C98/info.json index dbe560095064e..c62e8ea9efa52 100644 --- a/blockchains/smartchain/assets/0x842668E2B9A73240aBF6532DEdC89c9c3e050C98/info.json +++ b/blockchains/smartchain/assets/0x842668E2B9A73240aBF6532DEdC89c9c3e050C98/info.json @@ -10,8 +10,8 @@ "id": "0x842668E2B9A73240aBF6532DEdC89c9c3e050C98", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Light_DeFi" + "name": "x", + "url": "https://x.com/Light_DeFi" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x844FA82f1E54824655470970F7004Dd90546bB28/info.json b/blockchains/smartchain/assets/0x844FA82f1E54824655470970F7004Dd90546bB28/info.json index 5870949918d81..28b1c45a4c20f 100644 --- a/blockchains/smartchain/assets/0x844FA82f1E54824655470970F7004Dd90546bB28/info.json +++ b/blockchains/smartchain/assets/0x844FA82f1E54824655470970F7004Dd90546bB28/info.json @@ -11,8 +11,8 @@ "id": "0x844FA82f1E54824655470970F7004Dd90546bB28", "links": [ { - "name": "twitter", - "url": "https://twitter.com/dopplefi" + "name": "x", + "url": "https://x.com/dopplefi" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x84719A1082ed487c7eeac7d69885E3CC2009Ea78/info.json b/blockchains/smartchain/assets/0x84719A1082ed487c7eeac7d69885E3CC2009Ea78/info.json new file mode 100644 index 0000000000000..ed6857cd88fd9 --- /dev/null +++ b/blockchains/smartchain/assets/0x84719A1082ed487c7eeac7d69885E3CC2009Ea78/info.json @@ -0,0 +1,28 @@ +{ + "name": "Janus Henderson AAA CLO ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "JAAAon", + "decimals": 18, + "description": "JAAAon is the Ondo Tokenized version of the Janus Henderson AAA CLO ETF, giving tokenholders economic exposure similar to holding JAAA and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x84719A1082ed487c7eeac7d69885E3CC2009Ea78", + "status": "active", + "id": "0x84719A1082ed487c7eeac7d69885E3CC2009Ea78", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/janus-henderson-aaa-clo-etf-ondo-tokenized-etf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/janus-henderson-aaa-clo-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x84719A1082ed487c7eeac7d69885E3CC2009Ea78/logo.png b/blockchains/smartchain/assets/0x84719A1082ed487c7eeac7d69885E3CC2009Ea78/logo.png new file mode 100644 index 0000000000000..56172ca7d88c2 Binary files /dev/null and b/blockchains/smartchain/assets/0x84719A1082ed487c7eeac7d69885E3CC2009Ea78/logo.png differ diff --git a/blockchains/smartchain/assets/0x84750e8EfacC62be5AFe7221Cf149A2520Cb1b60/info.json b/blockchains/smartchain/assets/0x84750e8EfacC62be5AFe7221Cf149A2520Cb1b60/info.json index 0c216cad054d4..dabc5b772c912 100644 --- a/blockchains/smartchain/assets/0x84750e8EfacC62be5AFe7221Cf149A2520Cb1b60/info.json +++ b/blockchains/smartchain/assets/0x84750e8EfacC62be5AFe7221Cf149A2520Cb1b60/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/scorpion-token/SCORPION" }, { - "name": "twitter", - "url": "https://twitter.com/scorpionbsc" + "name": "x", + "url": "https://x.com/scorpionbsc" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x8479B19c5a3C43e024B2543582af0FC2fEf2E6A8/info.json b/blockchains/smartchain/assets/0x8479B19c5a3C43e024B2543582af0FC2fEf2E6A8/info.json new file mode 100644 index 0000000000000..ff112bc8dab56 --- /dev/null +++ b/blockchains/smartchain/assets/0x8479B19c5a3C43e024B2543582af0FC2fEf2E6A8/info.json @@ -0,0 +1,44 @@ +{ + "name": "TRUMP", + "type": "BEP20", + "symbol": "MAGA", + "decimals": 9, + "website": "https://trumpmaga.dev", + "description": "MAGA Movement on the Blockchain. Powered by AI Technology.", + "explorer": "https://bscscan.com/token/0x8479B19c5a3C43e024B2543582af0FC2fEf2E6A8", + "status": "active", + "id": "0x8479B19c5a3C43e024B2543582af0FC2fEf2E6A8", + "links": [ + { + "name": "x", + "url": "https://x.com/maga_bnb" + }, + { + "name": "github", + "url": "https://github.com/trumpmagadev" + }, + { + "name": "telegram", + "url": "https://t.me/trump_eng" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x8479b19c5a3c43e024b2543582af0fc2fef2e6a8#code" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/trump-maga/" + }, + { + "name": "docs", + "url": "https://doc.trumpmaga.dev/" + }, + { + "name": "medium", + "url": "https://medium.com/@maga_bnb" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8479B19c5a3C43e024B2543582af0FC2fEf2E6A8/logo.png b/blockchains/smartchain/assets/0x8479B19c5a3C43e024B2543582af0FC2fEf2E6A8/logo.png new file mode 100644 index 0000000000000..e40c5e6a14a71 Binary files /dev/null and b/blockchains/smartchain/assets/0x8479B19c5a3C43e024B2543582af0FC2fEf2E6A8/logo.png differ diff --git a/blockchains/smartchain/assets/0x847c5FE7eAd076E1698Ef37377dEF1B3b6B461a7/info.json b/blockchains/smartchain/assets/0x847c5FE7eAd076E1698Ef37377dEF1B3b6B461a7/info.json new file mode 100644 index 0000000000000..39f83d01263d3 --- /dev/null +++ b/blockchains/smartchain/assets/0x847c5FE7eAd076E1698Ef37377dEF1B3b6B461a7/info.json @@ -0,0 +1,14 @@ +{ + "name": "Maru the cat", + "type": "BEP20", + "symbol": "MARU", + "decimals": 18, + "website": "https://four.meme/token/0x847c5FE7eAd076E1698Ef37377dEF1B3b6B461a7", + "description": "MARU - The world's most famous cat, guinness world record holder! 535M+ views", + "explorer": "https://bscscan.com/token/0x847c5FE7eAd076E1698Ef37377dEF1B3b6B461a7", + "status": "active", + "id": "0x847c5FE7eAd076E1698Ef37377dEF1B3b6B461a7", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x847c5FE7eAd076E1698Ef37377dEF1B3b6B461a7/logo.png b/blockchains/smartchain/assets/0x847c5FE7eAd076E1698Ef37377dEF1B3b6B461a7/logo.png new file mode 100644 index 0000000000000..c7d3d81cd1839 Binary files /dev/null and b/blockchains/smartchain/assets/0x847c5FE7eAd076E1698Ef37377dEF1B3b6B461a7/logo.png differ diff --git a/blockchains/smartchain/assets/0x849CD47869B97CE543b7767E0aa1cF4f44025726/info.json b/blockchains/smartchain/assets/0x849CD47869B97CE543b7767E0aa1cF4f44025726/info.json new file mode 100644 index 0000000000000..e03d9b66db2e9 --- /dev/null +++ b/blockchains/smartchain/assets/0x849CD47869B97CE543b7767E0aa1cF4f44025726/info.json @@ -0,0 +1,14 @@ +{ + "name": "Nova Token", + "type": "BEP20", + "symbol": "Nova", + "decimals": 18, + "website": "https://ainovafi.com/", + "description": "Nova Token", + "explorer": "https://bscscan.com/token/0x849CD47869B97CE543b7767E0aa1cF4f44025726", + "status": "active", + "id": "0x849CD47869B97CE543b7767E0aa1cF4f44025726", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x849CD47869B97CE543b7767E0aa1cF4f44025726/logo.png b/blockchains/smartchain/assets/0x849CD47869B97CE543b7767E0aa1cF4f44025726/logo.png new file mode 100644 index 0000000000000..390d670ef8fc0 Binary files /dev/null and b/blockchains/smartchain/assets/0x849CD47869B97CE543b7767E0aa1cF4f44025726/logo.png differ diff --git a/blockchains/smartchain/assets/0x84A238Aa527181F2354A40e9a1C4C3Eb4a01bB8a/info.json b/blockchains/smartchain/assets/0x84A238Aa527181F2354A40e9a1C4C3Eb4a01bB8a/info.json new file mode 100644 index 0000000000000..f40d3f35cddf9 --- /dev/null +++ b/blockchains/smartchain/assets/0x84A238Aa527181F2354A40e9a1C4C3Eb4a01bB8a/info.json @@ -0,0 +1,32 @@ +{ + "name": "Liza Coin", + "type": "BEP20", + "symbol": "LIZA", + "decimals": 18, + "website": "https://lizacoin.live/", + "description": "At Liza Coin is a unique social earning platform that allows users to earn money simply by sharing our posts. With Liza Coin, you can monetize your social media presence effortlessly. For every post you share, you receive payments in USDT and INR, directly credited to your wallet. Join our vibrant community and start transforming your social sharing into real earnings!", + "explorer": "https://bscscan.com/token/0x84A238Aa527181F2354A40e9a1C4C3Eb4a01bB8a", + "status": "active", + "id": "0x84A238Aa527181F2354A40e9a1C4C3Eb4a01bB8a", + "links": [ + { + "name": "x", + "url": "https://x.com/Lizacoins" + }, + { + "name": "facebook", + "url": "https://facebook.com/lizacoin.live" + }, + { + "name": "youtube", + "url": "https://youtube.com/@LizaCoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/doge-superbowl/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x84A238Aa527181F2354A40e9a1C4C3Eb4a01bB8a/logo.png b/blockchains/smartchain/assets/0x84A238Aa527181F2354A40e9a1C4C3Eb4a01bB8a/logo.png new file mode 100644 index 0000000000000..aeed7e066e197 Binary files /dev/null and b/blockchains/smartchain/assets/0x84A238Aa527181F2354A40e9a1C4C3Eb4a01bB8a/logo.png differ diff --git a/blockchains/smartchain/assets/0x84B7BB9614Cf28226d1b0a07499472bc107e3000/info.json b/blockchains/smartchain/assets/0x84B7BB9614Cf28226d1b0a07499472bc107e3000/info.json index f9015fae9ef13..218a592091568 100644 --- a/blockchains/smartchain/assets/0x84B7BB9614Cf28226d1b0a07499472bc107e3000/info.json +++ b/blockchains/smartchain/assets/0x84B7BB9614Cf28226d1b0a07499472bc107e3000/info.json @@ -10,8 +10,8 @@ "id": "0x84B7BB9614Cf28226d1b0a07499472bc107e3000", "links": [ { - "name": "twitter", - "url": "https://twitter.com/coineverest" + "name": "x", + "url": "https://x.com/coineverest" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x84F4f7cdb4574C9556A494DaB18ffc1D1D22316C/info.json b/blockchains/smartchain/assets/0x84F4f7cdb4574C9556A494DaB18ffc1D1D22316C/info.json index b388a8e610596..b5daa8c6bd829 100644 --- a/blockchains/smartchain/assets/0x84F4f7cdb4574C9556A494DaB18ffc1D1D22316C/info.json +++ b/blockchains/smartchain/assets/0x84F4f7cdb4574C9556A494DaB18ffc1D1D22316C/info.json @@ -10,8 +10,8 @@ "id": "0x84F4f7cdb4574C9556A494DaB18ffc1D1D22316C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/KINGSHIBABSC" + "name": "x", + "url": "https://x.com/KINGSHIBABSC" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0x84affEEf925Cdce87f8A99B7b2E540dA5140Fc09/info.json b/blockchains/smartchain/assets/0x84affEEf925Cdce87f8A99B7b2E540dA5140Fc09/info.json new file mode 100644 index 0000000000000..53e7a11fb6f16 --- /dev/null +++ b/blockchains/smartchain/assets/0x84affEEf925Cdce87f8A99B7b2E540dA5140Fc09/info.json @@ -0,0 +1,25 @@ +{ + "name": "SerenityShield", + "website": "https://www.serenityshield.io/", + "description": "Serenity Shield is a self-custodial, privacy-centric digital data storage platform built on the blockchain, featuring a built-in inheritance protocol. It serves various use cases, including storage, recovery, and estate planning for wallet seed phrases and diverse digital data types.", + "explorer": "https://bscscan.com/token/0x84affeef925cdce87f8a99b7b2e540da5140fc09", + "type": "BEP20", + "symbol": "SERSH", + "decimals": 18, + "status": "active", + "id": "0x84affEEf925Cdce87f8A99B7b2E540dA5140Fc09", + "links": [ + { + "name": "telegram", + "url": "https://t.me/serenityshield" + }, + { + "name": "x", + "url": "https://x.com/SerenityShield_" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/serenity-shield/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x84affEEf925Cdce87f8A99B7b2E540dA5140Fc09/logo.png b/blockchains/smartchain/assets/0x84affEEf925Cdce87f8A99B7b2E540dA5140Fc09/logo.png new file mode 100644 index 0000000000000..9601f043461ff Binary files /dev/null and b/blockchains/smartchain/assets/0x84affEEf925Cdce87f8A99B7b2E540dA5140Fc09/logo.png differ diff --git a/blockchains/smartchain/assets/0x85102c0062Aa918cB9e26D94A284AafCa602Df13/info.json b/blockchains/smartchain/assets/0x85102c0062Aa918cB9e26D94A284AafCa602Df13/info.json index ae12cf63421e8..a0e58fe0355bb 100644 --- a/blockchains/smartchain/assets/0x85102c0062Aa918cB9e26D94A284AafCa602Df13/info.json +++ b/blockchains/smartchain/assets/0x85102c0062Aa918cB9e26D94A284AafCa602Df13/info.json @@ -10,8 +10,8 @@ "id": "0x85102c0062Aa918cB9e26D94A284AafCa602Df13", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Avalon_Protocol" + "name": "x", + "url": "https://x.com/Avalon_Protocol" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x8519EA49c997f50cefFa444d240fB655e89248Aa/info.json b/blockchains/smartchain/assets/0x8519EA49c997f50cefFa444d240fB655e89248Aa/info.json index 70b3b826673a3..75a83bd670417 100644 --- a/blockchains/smartchain/assets/0x8519EA49c997f50cefFa444d240fB655e89248Aa/info.json +++ b/blockchains/smartchain/assets/0x8519EA49c997f50cefFa444d240fB655e89248Aa/info.json @@ -10,8 +10,8 @@ "id": "0x8519EA49c997f50cefFa444d240fB655e89248Aa", "links": [ { - "name": "twitter", - "url": "https://twitter.com/RampDefi" + "name": "x", + "url": "https://x.com/RampDefi" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x854B4c305554c5fa72353e31b8480c0e5128A152/info.json b/blockchains/smartchain/assets/0x854B4c305554c5fa72353e31b8480c0e5128A152/info.json index 6f75d391c0207..2cda160be5fa7 100644 --- a/blockchains/smartchain/assets/0x854B4c305554c5fa72353e31b8480c0e5128A152/info.json +++ b/blockchains/smartchain/assets/0x854B4c305554c5fa72353e31b8480c0e5128A152/info.json @@ -10,8 +10,8 @@ "id": "0x854B4c305554c5fa72353e31b8480c0e5128A152", "links": [ { - "name": "twitter", - "url": "https://twitter.com/WelnanceWorld" + "name": "x", + "url": "https://x.com/WelnanceWorld" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x855C172281E2f0A8aC59248c04CfD47a7F40E8dD/info.json b/blockchains/smartchain/assets/0x855C172281E2f0A8aC59248c04CfD47a7F40E8dD/info.json new file mode 100644 index 0000000000000..03853898a117d --- /dev/null +++ b/blockchains/smartchain/assets/0x855C172281E2f0A8aC59248c04CfD47a7F40E8dD/info.json @@ -0,0 +1,25 @@ +{ + "name": "Saka Vault", + "website": "https://sakavault.io/", + "description": "SakaVault - decentralized perpetual exchange produced through the collaboration of three leading companies from the United Kingdom, Singapore, and India.", + "explorer": "https://bscscan.com/token/0x855C172281E2f0A8aC59248c04CfD47a7F40E8dD", + "symbol": "SAKA", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x855C172281E2f0A8aC59248c04CfD47a7F40E8dD", + "tags": [ + "staking", + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/sakavault_io" + }, + { + "name": "telegram_news", + "url": "https://t.me/saka_vault" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x855C172281E2f0A8aC59248c04CfD47a7F40E8dD/logo.png b/blockchains/smartchain/assets/0x855C172281E2f0A8aC59248c04CfD47a7F40E8dD/logo.png new file mode 100644 index 0000000000000..adb3f79dfe9d3 Binary files /dev/null and b/blockchains/smartchain/assets/0x855C172281E2f0A8aC59248c04CfD47a7F40E8dD/logo.png differ diff --git a/blockchains/smartchain/assets/0x857B222Fc79e1cBBf8Ca5f78CB133d1b7CF34BBd/info.json b/blockchains/smartchain/assets/0x857B222Fc79e1cBBf8Ca5f78CB133d1b7CF34BBd/info.json new file mode 100644 index 0000000000000..7805c3f503f55 --- /dev/null +++ b/blockchains/smartchain/assets/0x857B222Fc79e1cBBf8Ca5f78CB133d1b7CF34BBd/info.json @@ -0,0 +1,61 @@ +{ + "name": "LTO Network", + "type": "BEP20", + "symbol": "LTO", + "decimals": 18, + "website": "https://www.ltonetwork.com/", + "description": "LTO Network is a layer-1 platform for decentralized identities, verifiable credentials and decentralized workflow applications, while maintaining data privacy and GDPR compliance.", + "explorer": "https://bscscan.com/token/0x857b222fc79e1cbbf8ca5f78cb133d1b7cf34bbd", + "status": "active", + "id": "0x857B222Fc79e1cBBf8Ca5f78CB133d1b7CF34BBd", + "links": [ + { + "name": "x", + "url": "https://x.com/TheLTONetwork" + }, + { + "name": "github", + "url": "https://github.com/ltonetwork/" + }, + { + "name": "telegram", + "url": "https://t.me/LTOnetwork" + }, + { + "name": "telegram_news", + "url": "https://t.me/ltoinfo" + }, + { + "name": "blog", + "url": "https://blog.ltonetwork.com/" + }, + { + "name": "docs", + "url": "https://docs.ltonetwork.com/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/LTONetwork/" + }, + { + "name": "facebook", + "url": "https://facebook.com/TheLTONetwork" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCaHcF-xterKYTKSpY4xgKiw" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lto-network/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/lto-network" + }, + { + "name": "whitepaper", + "url": "https://ltonetwork.com/documents/LTO%20Network%20-%20Identities%20Paper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x857B222Fc79e1cBBf8Ca5f78CB133d1b7CF34BBd/logo.png b/blockchains/smartchain/assets/0x857B222Fc79e1cBBf8Ca5f78CB133d1b7CF34BBd/logo.png new file mode 100644 index 0000000000000..9737b417159c5 Binary files /dev/null and b/blockchains/smartchain/assets/0x857B222Fc79e1cBBf8Ca5f78CB133d1b7CF34BBd/logo.png differ diff --git a/blockchains/smartchain/assets/0x8592fb0E6724A90CE45f05F31B85BddD45931560/info.json b/blockchains/smartchain/assets/0x8592fb0E6724A90CE45f05F31B85BddD45931560/info.json index a0992e38878e3..2037be2e55ae8 100644 --- a/blockchains/smartchain/assets/0x8592fb0E6724A90CE45f05F31B85BddD45931560/info.json +++ b/blockchains/smartchain/assets/0x8592fb0E6724A90CE45f05F31B85BddD45931560/info.json @@ -10,8 +10,8 @@ "id": "0x8592fb0E6724A90CE45f05F31B85BddD45931560", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SWINATEIO" + "name": "x", + "url": "https://x.com/SWINATEIO" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x859C940F080B197659b3EfFc804fD622Df66f0a1/info.json b/blockchains/smartchain/assets/0x859C940F080B197659b3EfFc804fD622Df66f0a1/info.json new file mode 100644 index 0000000000000..4ed06110e06f0 --- /dev/null +++ b/blockchains/smartchain/assets/0x859C940F080B197659b3EfFc804fD622Df66f0a1/info.json @@ -0,0 +1,37 @@ +{ + "name": "FitBurn", + "type": "BEP20", + "symbol": "CAL", + "decimals": 18, + "website": "https://www.fitburn.ai", + "description": "Fitburn is the world's first AI-powered burn-to-earn fitness app, which is revolutionizing lifestyle & health. This innovative fitness app combines cutting-edge AI mechanics with NFT rewards to motivate users to reach their fitness goals. Earn rewards for exercising and join a community of like-minded fitness enthusiasts.", + "explorer": "https://bscscan.com/token/0x859c940f080b197659b3effc804fd622df66f0a1", + "status": "active", + "id": "0x859C940F080B197659b3EfFc804fD622Df66f0a1", + "links": [ + { + "name": "x", + "url": "https://x.com/fitburn_ai" + }, + { + "name": "telegram", + "url": "https://t.me/fitburngroup" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fitburn/" + }, + { + "name": "github", + "url": "https://github.com/FitburnEngineering/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/fitburn" + } + ], + "tags": [ + "governance", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x859C940F080B197659b3EfFc804fD622Df66f0a1/logo.png b/blockchains/smartchain/assets/0x859C940F080B197659b3EfFc804fD622Df66f0a1/logo.png new file mode 100644 index 0000000000000..64dec636e0ee1 Binary files /dev/null and b/blockchains/smartchain/assets/0x859C940F080B197659b3EfFc804fD622Df66f0a1/logo.png differ diff --git a/blockchains/smartchain/assets/0x85A0264de971FD7EA2c87D39dD778F957E904444/info.json b/blockchains/smartchain/assets/0x85A0264de971FD7EA2c87D39dD778F957E904444/info.json new file mode 100644 index 0000000000000..0ee77e959cbd5 --- /dev/null +++ b/blockchains/smartchain/assets/0x85A0264de971FD7EA2c87D39dD778F957E904444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE United Stables", + "type": "BEP20", + "symbol": "FAKE 良心U", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x85A0264de971FD7EA2c87D39dD778F957E904444", + "explorer": "https://bscscan.com/token/0x85A0264de971FD7EA2c87D39dD778F957E904444", + "status": "spam", + "id": "0x85A0264de971FD7EA2c87D39dD778F957E904444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x85EE8e3E0068EdeeEE960979958d7F61416a9d84/info.json b/blockchains/smartchain/assets/0x85EE8e3E0068EdeeEE960979958d7F61416a9d84/info.json index f9b7a1397b75e..05cb1325f5c42 100644 --- a/blockchains/smartchain/assets/0x85EE8e3E0068EdeeEE960979958d7F61416a9d84/info.json +++ b/blockchains/smartchain/assets/0x85EE8e3E0068EdeeEE960979958d7F61416a9d84/info.json @@ -10,8 +10,8 @@ "id": "0x85EE8e3E0068EdeeEE960979958d7F61416a9d84", "links": [ { - "name": "twitter", - "url": "https://twitter.com/StoryToken_" + "name": "x", + "url": "https://x.com/StoryToken_" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x861f1E1397daD68289e8f6a09a2ebb567f1B895C/info.json b/blockchains/smartchain/assets/0x861f1E1397daD68289e8f6a09a2ebb567f1B895C/info.json index 693ba7420d902..f488749de2ed5 100644 --- a/blockchains/smartchain/assets/0x861f1E1397daD68289e8f6a09a2ebb567f1B895C/info.json +++ b/blockchains/smartchain/assets/0x861f1E1397daD68289e8f6a09a2ebb567f1B895C/info.json @@ -10,8 +10,8 @@ "id": "0x861f1E1397daD68289e8f6a09a2ebb567f1B895C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MNZtoken" + "name": "x", + "url": "https://x.com/MNZtoken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x86432b9beA373172C852D5bbAB1c275FeC3f15aE/info.json b/blockchains/smartchain/assets/0x86432b9beA373172C852D5bbAB1c275FeC3f15aE/info.json index 263ea4eac6d0d..3f3f36b4732c3 100644 --- a/blockchains/smartchain/assets/0x86432b9beA373172C852D5bbAB1c275FeC3f15aE/info.json +++ b/blockchains/smartchain/assets/0x86432b9beA373172C852D5bbAB1c275FeC3f15aE/info.json @@ -10,8 +10,8 @@ "id": "0x86432b9beA373172C852D5bbAB1c275FeC3f15aE", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SleepySlothBsc" + "name": "x", + "url": "https://x.com/SleepySlothBsc" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x8677aBAD7B458bF16a0fB2676DFC7d3f55Ac202A/info.json b/blockchains/smartchain/assets/0x8677aBAD7B458bF16a0fB2676DFC7d3f55Ac202A/info.json new file mode 100644 index 0000000000000..1168df5ac695d --- /dev/null +++ b/blockchains/smartchain/assets/0x8677aBAD7B458bF16a0fB2676DFC7d3f55Ac202A/info.json @@ -0,0 +1,28 @@ +{ + "name": "AbbVie (Ondo Tokenized)", + "type": "BEP20", + "symbol": "ABBVon", + "decimals": 18, + "description": "ABBVon is the Ondo Tokenized version of AbbVie, giving tokenholders economic exposure similar to holding ABBV and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x8677aBAD7B458bF16a0fB2676DFC7d3f55Ac202A", + "status": "active", + "id": "0x8677aBAD7B458bF16a0fB2676DFC7d3f55Ac202A", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/abbvie-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abbvie-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8677aBAD7B458bF16a0fB2676DFC7d3f55Ac202A/logo.png b/blockchains/smartchain/assets/0x8677aBAD7B458bF16a0fB2676DFC7d3f55Ac202A/logo.png new file mode 100644 index 0000000000000..4e50b5eb7d37b Binary files /dev/null and b/blockchains/smartchain/assets/0x8677aBAD7B458bF16a0fB2676DFC7d3f55Ac202A/logo.png differ diff --git a/blockchains/smartchain/assets/0x869027261075c3C239D6A26842579b93802606f4/info.json b/blockchains/smartchain/assets/0x869027261075c3C239D6A26842579b93802606f4/info.json new file mode 100644 index 0000000000000..29085174f0205 --- /dev/null +++ b/blockchains/smartchain/assets/0x869027261075c3C239D6A26842579b93802606f4/info.json @@ -0,0 +1,28 @@ +{ + "name": "Merck (Ondo Tokenized)", + "type": "BEP20", + "symbol": "MRKon", + "decimals": 18, + "description": "MRKon is the Ondo Tokenized version of Merck, giving tokenholders economic exposure similar to holding MRK and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x869027261075c3C239D6A26842579b93802606f4", + "status": "active", + "id": "0x869027261075c3C239D6A26842579b93802606f4", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/merck-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/merck-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x869027261075c3C239D6A26842579b93802606f4/logo.png b/blockchains/smartchain/assets/0x869027261075c3C239D6A26842579b93802606f4/logo.png new file mode 100644 index 0000000000000..4aa234d329f05 Binary files /dev/null and b/blockchains/smartchain/assets/0x869027261075c3C239D6A26842579b93802606f4/logo.png differ diff --git a/blockchains/smartchain/assets/0x8690Cb98496EF0f8c6417D78b5e0E29907668808/info.json b/blockchains/smartchain/assets/0x8690Cb98496EF0f8c6417D78b5e0E29907668808/info.json index 4d4e7ec4281d0..05e4565d511be 100644 --- a/blockchains/smartchain/assets/0x8690Cb98496EF0f8c6417D78b5e0E29907668808/info.json +++ b/blockchains/smartchain/assets/0x8690Cb98496EF0f8c6417D78b5e0E29907668808/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/WraithProtocol/" }, { - "name": "twitter", - "url": "https://twitter.com/WraithProtocol/" + "name": "x", + "url": "https://x.com/WraithProtocol/" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x869Dd7A64AfBe5370a8c591d9B8650BE60c0B8f6/info.json b/blockchains/smartchain/assets/0x869Dd7A64AfBe5370a8c591d9B8650BE60c0B8f6/info.json index 6becb47ca77da..c8dde5a91eb31 100644 --- a/blockchains/smartchain/assets/0x869Dd7A64AfBe5370a8c591d9B8650BE60c0B8f6/info.json +++ b/blockchains/smartchain/assets/0x869Dd7A64AfBe5370a8c591d9B8650BE60c0B8f6/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/fastmoonfinance" }, { - "name": "twitter", - "url": "https://twitter.com/FastMoon Finance" + "name": "x", + "url": "https://x.com/FastMoon Finance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x86A45b508a375ac8f0FD387e7532B70f71291152/info.json b/blockchains/smartchain/assets/0x86A45b508a375ac8f0FD387e7532B70f71291152/info.json index 1659a501ee1f3..2f4304918ba73 100644 --- a/blockchains/smartchain/assets/0x86A45b508a375ac8f0FD387e7532B70f71291152/info.json +++ b/blockchains/smartchain/assets/0x86A45b508a375ac8f0FD387e7532B70f71291152/info.json @@ -10,8 +10,8 @@ "id": "0x86A45b508a375ac8f0FD387e7532B70f71291152", "links": [ { - "name": "twitter", - "url": "https://twitter.com/emptoken" + "name": "x", + "url": "https://x.com/emptoken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x86Bb94DdD16Efc8bc58e6b056e8df71D9e666429/info.json b/blockchains/smartchain/assets/0x86Bb94DdD16Efc8bc58e6b056e8df71D9e666429/info.json new file mode 100644 index 0000000000000..949caf5bcc66c --- /dev/null +++ b/blockchains/smartchain/assets/0x86Bb94DdD16Efc8bc58e6b056e8df71D9e666429/info.json @@ -0,0 +1,21 @@ +{ + "name": "Test", + "type": "BEP20", + "symbol": "TST", + "decimals": 18, + "website": "https://testtoken.vip/", + "description": "$TST is a test token deployed by BNBchain on four.meme", + "explorer": "https://bscscan.com/token/0x86Bb94DdD16Efc8bc58e6b056e8df71D9e666429", + "status": "active", + "id": "0x86Bb94DdD16Efc8bc58e6b056e8df71D9e666429", + "links": [ + { + "name": "x", + "url": "https://x.com/TestonBSC" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/test-token-bsc/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x86Bb94DdD16Efc8bc58e6b056e8df71D9e666429/logo.png b/blockchains/smartchain/assets/0x86Bb94DdD16Efc8bc58e6b056e8df71D9e666429/logo.png new file mode 100644 index 0000000000000..75caedcfc0186 Binary files /dev/null and b/blockchains/smartchain/assets/0x86Bb94DdD16Efc8bc58e6b056e8df71D9e666429/logo.png differ diff --git a/blockchains/smartchain/assets/0x86a53fcd199212FEa44FA7e16EB1f28812be911D/info.json b/blockchains/smartchain/assets/0x86a53fcd199212FEa44FA7e16EB1f28812be911D/info.json index 532db59d1cd9a..c1c1ba3c97801 100644 --- a/blockchains/smartchain/assets/0x86a53fcd199212FEa44FA7e16EB1f28812be911D/info.json +++ b/blockchains/smartchain/assets/0x86a53fcd199212FEa44FA7e16EB1f28812be911D/info.json @@ -10,8 +10,8 @@ "id": "0x86a53fcd199212FEa44FA7e16EB1f28812be911D", "links": [ { - "name": "twitter", - "url": "https://twitter.com/IHCoinofficial?s=20" + "name": "x", + "url": "https://x.com/IHCoinofficial?s=20" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x86aC3974e2BD0d60825230fa6F355fF11409df5c/info.json b/blockchains/smartchain/assets/0x86aC3974e2BD0d60825230fa6F355fF11409df5c/info.json index a67beeaba02d4..3f275bc89f53d 100644 --- a/blockchains/smartchain/assets/0x86aC3974e2BD0d60825230fa6F355fF11409df5c/info.json +++ b/blockchains/smartchain/assets/0x86aC3974e2BD0d60825230fa6F355fF11409df5c/info.json @@ -4,8 +4,8 @@ "description": "Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain.", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VenusProtocol" + "name": "x", + "url": "https://x.com/VenusProtocol" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0x86aCCc2580dA5Bd522A0eEc7C881A0d4f33De657/info.json b/blockchains/smartchain/assets/0x86aCCc2580dA5Bd522A0eEc7C881A0d4f33De657/info.json index 2fa14b4f5c3af..500f529a32ff1 100644 --- a/blockchains/smartchain/assets/0x86aCCc2580dA5Bd522A0eEc7C881A0d4f33De657/info.json +++ b/blockchains/smartchain/assets/0x86aCCc2580dA5Bd522A0eEc7C881A0d4f33De657/info.json @@ -6,12 +6,12 @@ "website": "https://cryptosnacks.org/", "description": "Crypto Snack is the world’s fastest growing iGaming token", "explorer": "https://bscscan.com/token/0x86aCCc2580dA5Bd522A0eEc7C881A0d4f33De657", - "status": "active", + "status": "abandoned", "id": "0x86aCCc2580dA5Bd522A0eEc7C881A0d4f33De657", "links": [ { - "name": "twitter", - "url": "https://twitter.com/cryptosnack_" + "name": "x", + "url": "https://x.com/cryptosnack_" }, { "name": "telegram", @@ -49,8 +49,5 @@ "name": "discord", "url": "https://discord.com/invite/NyemjyETwA" } - ], - "tags": [ - "staking-native" ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x86aCCc2580dA5Bd522A0eEc7C881A0d4f33De657/logo.png b/blockchains/smartchain/assets/0x86aCCc2580dA5Bd522A0eEc7C881A0d4f33De657/logo.png deleted file mode 100644 index a33a3d44d18e5..0000000000000 Binary files a/blockchains/smartchain/assets/0x86aCCc2580dA5Bd522A0eEc7C881A0d4f33De657/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x8717e80EfF08F53A45b4A925009957E14860A8a8/info.json b/blockchains/smartchain/assets/0x8717e80EfF08F53A45b4A925009957E14860A8a8/info.json index 05169b984575f..b915f8d9432d0 100644 --- a/blockchains/smartchain/assets/0x8717e80EfF08F53A45b4A925009957E14860A8a8/info.json +++ b/blockchains/smartchain/assets/0x8717e80EfF08F53A45b4A925009957E14860A8a8/info.json @@ -10,8 +10,8 @@ "status": "active", "links": [ { - "name": "twitter", - "url": "https://twitter.com/bhonetwork" + "name": "x", + "url": "https://x.com/bhonetwork" }, { "name": "telegram", @@ -24,7 +24,6 @@ ], "tags": [ "gamefi", - "staking-native", "defi", "nft" ] diff --git a/blockchains/smartchain/assets/0x87266413e5b64DB72f11bB6795Ee976545DBAf43/info.json b/blockchains/smartchain/assets/0x87266413e5b64DB72f11bB6795Ee976545DBAf43/info.json new file mode 100644 index 0000000000000..bc4c3712feada --- /dev/null +++ b/blockchains/smartchain/assets/0x87266413e5b64DB72f11bB6795Ee976545DBAf43/info.json @@ -0,0 +1,29 @@ +{ + "name": "Shibabitcoin", + "type": "BEP20", + "symbol": "SHIBTC", + "decimals": 18, + "description": "ShibaBitcoin is a cryptocurrency built to make digital payments easy, secure, and accessible for everyone. Designed for both everyday transactions and digital purchases, ShibaBitcoin connects users to a range of possibilities—from shopping and gaming to NFTs and global transfers. With fast processing, low fees, and real-world usability, ShibaBitcoin brings the convenience of crypto to all aspects of life.", + "website": "https://shibabitcoin.com/", + "explorer": "https://bscscan.com/token/0x87266413e5b64db72f11bb6795ee976545dbaf43", + "id": "0x87266413e5b64DB72f11bB6795Ee976545DBAf43", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/shibtcofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shibabitcoin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/shibabitcoin-2" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x87266413e5b64DB72f11bB6795Ee976545DBAf43/logo.png b/blockchains/smartchain/assets/0x87266413e5b64DB72f11bB6795Ee976545DBAf43/logo.png new file mode 100644 index 0000000000000..b48c7db159b93 Binary files /dev/null and b/blockchains/smartchain/assets/0x87266413e5b64DB72f11bB6795Ee976545DBAf43/logo.png differ diff --git a/blockchains/smartchain/assets/0x8755c5C39b1AA9053a83AC731242a2cf4D04B0Fe/info.json b/blockchains/smartchain/assets/0x8755c5C39b1AA9053a83AC731242a2cf4D04B0Fe/info.json new file mode 100644 index 0000000000000..e7225d9902299 --- /dev/null +++ b/blockchains/smartchain/assets/0x8755c5C39b1AA9053a83AC731242a2cf4D04B0Fe/info.json @@ -0,0 +1,24 @@ +{ + "name": "SolarEdge Technologies (Ondo Tokenized)", + "type": "BEP20", + "symbol": "SEDGon", + "decimals": 18, + "description": "SEDGon is the Ondo Tokenized version of SolarEdge Technologies, giving tokenholders economic exposure similar to holding SEDG and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x8755c5C39b1AA9053a83AC731242a2cf4D04B0Fe", + "status": "active", + "id": "0x8755c5C39b1AA9053a83AC731242a2cf4D04B0Fe", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/solaredge-technologies-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8755c5C39b1AA9053a83AC731242a2cf4D04B0Fe/logo.png b/blockchains/smartchain/assets/0x8755c5C39b1AA9053a83AC731242a2cf4D04B0Fe/logo.png new file mode 100644 index 0000000000000..b251792abd31e Binary files /dev/null and b/blockchains/smartchain/assets/0x8755c5C39b1AA9053a83AC731242a2cf4D04B0Fe/logo.png differ diff --git a/blockchains/smartchain/assets/0x8789337a176e6e7223Ff115F1CD85C993D42C25c/info.json b/blockchains/smartchain/assets/0x8789337a176e6e7223Ff115F1CD85C993D42C25c/info.json index ae8e7426619b2..dd7e35a671664 100644 --- a/blockchains/smartchain/assets/0x8789337a176e6e7223Ff115F1CD85C993D42C25c/info.json +++ b/blockchains/smartchain/assets/0x8789337a176e6e7223Ff115F1CD85C993D42C25c/info.json @@ -10,8 +10,8 @@ "id": "0x8789337a176e6e7223Ff115F1CD85C993D42C25c", "links": [ { - "name": "twitter", - "url": "https://twitter.com/copiosaofficial" + "name": "x", + "url": "https://x.com/copiosaofficial" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x87A2d9a9A6b2D61B2a57798f1b4b2DDd19458Fb6/info.json b/blockchains/smartchain/assets/0x87A2d9a9A6b2D61B2a57798f1b4b2DDd19458Fb6/info.json index 73269c4991cf7..f33f9ed5d5899 100644 --- a/blockchains/smartchain/assets/0x87A2d9a9A6b2D61B2a57798f1b4b2DDd19458Fb6/info.json +++ b/blockchains/smartchain/assets/0x87A2d9a9A6b2D61B2a57798f1b4b2DDd19458Fb6/info.json @@ -10,8 +10,8 @@ "id": "0x87A2d9a9A6b2D61B2a57798f1b4b2DDd19458Fb6", "links": [ { - "name": "twitter", - "url": "https://twitter.com/KingdomGame_KDG" + "name": "x", + "url": "https://x.com/KingdomGame_KDG" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x87ECEa8512516Ced5db9375c63c23A0846c73a57/info.json b/blockchains/smartchain/assets/0x87ECEa8512516Ced5db9375c63c23A0846c73a57/info.json index 8f265bf9c5fb7..5a18a053e75a4 100644 --- a/blockchains/smartchain/assets/0x87ECEa8512516Ced5db9375c63c23A0846c73a57/info.json +++ b/blockchains/smartchain/assets/0x87ECEa8512516Ced5db9375c63c23A0846c73a57/info.json @@ -10,8 +10,8 @@ "id": "0x87ECEa8512516Ced5db9375c63c23A0846c73a57", "links": [ { - "name": "twitter", - "url": "https://twitter.com/EpikProtocol" + "name": "x", + "url": "https://x.com/EpikProtocol" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x87Ffc48C9f89fc5dfA05836e083406D684FD6331/info.json b/blockchains/smartchain/assets/0x87Ffc48C9f89fc5dfA05836e083406D684FD6331/info.json index 0adf41641ab8f..35856bd711504 100644 --- a/blockchains/smartchain/assets/0x87Ffc48C9f89fc5dfA05836e083406D684FD6331/info.json +++ b/blockchains/smartchain/assets/0x87Ffc48C9f89fc5dfA05836e083406D684FD6331/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/hachikobsc" + "name": "x", + "url": "https://x.com/hachikobsc" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x881025D714C587611E47d89B7929c1cB4FF05B51/info.json b/blockchains/smartchain/assets/0x881025D714C587611E47d89B7929c1cB4FF05B51/info.json new file mode 100644 index 0000000000000..1e330bd3e2ec1 --- /dev/null +++ b/blockchains/smartchain/assets/0x881025D714C587611E47d89B7929c1cB4FF05B51/info.json @@ -0,0 +1,14 @@ +{ + "name": "Conscious Token", + "type": "BEP20", + "symbol": "Conscious", + "decimals": 18, + "website": "https://consciousness.care/#/", + "description": "A meme token created to unite consciousness believers, supporting global community gatherings, guru guidance, and mental health institutions—fueling a movement of collective awareness. Rooted in community, it will drive innovation in AI and DeSci, shaping the future of consciousness exploration.", + "explorer": "https://bscscan.com/token/0x881025D714C587611E47d89B7929c1cB4FF05B51", + "status": "active", + "id": "0x881025D714C587611E47d89B7929c1cB4FF05B51", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x881025D714C587611E47d89B7929c1cB4FF05B51/logo.png b/blockchains/smartchain/assets/0x881025D714C587611E47d89B7929c1cB4FF05B51/logo.png new file mode 100644 index 0000000000000..8c2eae61571d4 Binary files /dev/null and b/blockchains/smartchain/assets/0x881025D714C587611E47d89B7929c1cB4FF05B51/logo.png differ diff --git a/blockchains/smartchain/assets/0x882C173bC7Ff3b7786CA16dfeD3DFFfb9Ee7847B/info.json b/blockchains/smartchain/assets/0x882C173bC7Ff3b7786CA16dfeD3DFFfb9Ee7847B/info.json index a64b191e68a3a..a69e698de26b8 100644 --- a/blockchains/smartchain/assets/0x882C173bC7Ff3b7786CA16dfeD3DFFfb9Ee7847B/info.json +++ b/blockchains/smartchain/assets/0x882C173bC7Ff3b7786CA16dfeD3DFFfb9Ee7847B/info.json @@ -11,8 +11,8 @@ "id": "0x882C173bC7Ff3b7786CA16dfeD3DFFfb9Ee7847B", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VenusProtocol" + "name": "x", + "url": "https://x.com/VenusProtocol" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x88479186BAC914E4313389a64881F5ed0153C765/info.json b/blockchains/smartchain/assets/0x88479186BAC914E4313389a64881F5ed0153C765/info.json index 737755caec8a3..292be90cfc89a 100644 --- a/blockchains/smartchain/assets/0x88479186BAC914E4313389a64881F5ed0153C765/info.json +++ b/blockchains/smartchain/assets/0x88479186BAC914E4313389a64881F5ed0153C765/info.json @@ -6,7 +6,7 @@ "website": "https://squidgrow.wtf", "description": "SquidGrow is the next big meme utility token in the cryptocurrency space! Created by the biggest Shiba Inu whale, SquidGrow has the building blocks to get to the highest level. With our owner being one of the biggest investors in the world, the possibilities and connections for SquidGrow are endless!", "explorer": "https://bscscan.com/token/0x88479186BAC914E4313389a64881F5ed0153C765", - "status": "active", + "status": "abandoned", "id": "0x88479186BAC914E4313389a64881F5ed0153C765", "links": [ { @@ -18,8 +18,8 @@ "url": "https://t.me/SquidGrowPortal" }, { - "name": "twitter", - "url": "https://twitter.com/Squid_Grow" + "name": "x", + "url": "https://x.com/Squid_Grow" }, { "name": "coingecko", diff --git a/blockchains/smartchain/assets/0x88479186BAC914E4313389a64881F5ed0153C765/logo.png b/blockchains/smartchain/assets/0x88479186BAC914E4313389a64881F5ed0153C765/logo.png deleted file mode 100644 index 7477aad4584ea..0000000000000 Binary files a/blockchains/smartchain/assets/0x88479186BAC914E4313389a64881F5ed0153C765/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x8855cFbA493D8A22F924a5CE1B06EFBceA68FFeC/info.json b/blockchains/smartchain/assets/0x8855cFbA493D8A22F924a5CE1B06EFBceA68FFeC/info.json index e771ec4edfacc..4a50e532cbdc0 100644 --- a/blockchains/smartchain/assets/0x8855cFbA493D8A22F924a5CE1B06EFBceA68FFeC/info.json +++ b/blockchains/smartchain/assets/0x8855cFbA493D8A22F924a5CE1B06EFBceA68FFeC/info.json @@ -10,8 +10,8 @@ "id": "0x8855cFbA493D8A22F924a5CE1B06EFBceA68FFeC", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BIMP_Official" + "name": "x", + "url": "https://x.com/BIMP_Official" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x885C5Fb8f0e67b2b0Cf3a437e6Cc6EBC0F9f9014/info.json b/blockchains/smartchain/assets/0x885C5Fb8f0e67b2b0Cf3a437e6Cc6EBC0F9f9014/info.json index 09bc14815d8fc..b80cf521d716d 100644 --- a/blockchains/smartchain/assets/0x885C5Fb8f0e67b2b0Cf3a437e6Cc6EBC0F9f9014/info.json +++ b/blockchains/smartchain/assets/0x885C5Fb8f0e67b2b0Cf3a437e6Cc6EBC0F9f9014/info.json @@ -10,8 +10,8 @@ "id": "0x885C5Fb8f0e67b2b0Cf3a437e6Cc6EBC0F9f9014", "links": [ { - "name": "twitter", - "url": "https://twitter.com/GemGuardianNFT" + "name": "x", + "url": "https://x.com/GemGuardianNFT" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x88672043905BdD272df55a5A7Bb1b7E1e693cBc5/info.json b/blockchains/smartchain/assets/0x88672043905BdD272df55a5A7Bb1b7E1e693cBc5/info.json new file mode 100644 index 0000000000000..921046ceedf71 --- /dev/null +++ b/blockchains/smartchain/assets/0x88672043905BdD272df55a5A7Bb1b7E1e693cBc5/info.json @@ -0,0 +1,28 @@ +{ + "name": "Opera (Ondo Tokenized)", + "type": "BEP20", + "symbol": "OPRAon", + "decimals": 18, + "description": "OPRAon is the Ondo Tokenized version of Opera, giving tokenholders economic exposure similar to holding OPRA and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x88672043905BdD272df55a5A7Bb1b7E1e693cBc5", + "status": "active", + "id": "0x88672043905BdD272df55a5A7Bb1b7E1e693cBc5", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/opera-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/opera-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x88672043905BdD272df55a5A7Bb1b7E1e693cBc5/logo.png b/blockchains/smartchain/assets/0x88672043905BdD272df55a5A7Bb1b7E1e693cBc5/logo.png new file mode 100644 index 0000000000000..493195c54bef4 Binary files /dev/null and b/blockchains/smartchain/assets/0x88672043905BdD272df55a5A7Bb1b7E1e693cBc5/logo.png differ diff --git a/blockchains/smartchain/assets/0x8873e32E39BB52ae06F9746B889D4A50df1096db/info.json b/blockchains/smartchain/assets/0x8873e32E39BB52ae06F9746B889D4A50df1096db/info.json new file mode 100644 index 0000000000000..3ed1fa2c4a0ee --- /dev/null +++ b/blockchains/smartchain/assets/0x8873e32E39BB52ae06F9746B889D4A50df1096db/info.json @@ -0,0 +1,26 @@ +{ + "name": "YEEZY", + "type": "BEP20", + "symbol": "YZY", + "decimals": 18, + "description": "https://linktr.ee/YZYCoin", + "website": "https://linktr.ee/YZYCoin", + "explorer": "https://bscscan.com/token/0x8873e32E39BB52ae06F9746B889D4A50df1096db", + "id": "0x8873e32E39BB52ae06F9746B889D4A50df1096db", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/YZYCoinonBNB" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/yeezy/" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8873e32E39BB52ae06F9746B889D4A50df1096db/logo.png b/blockchains/smartchain/assets/0x8873e32E39BB52ae06F9746B889D4A50df1096db/logo.png new file mode 100644 index 0000000000000..3c1f957c9b025 Binary files /dev/null and b/blockchains/smartchain/assets/0x8873e32E39BB52ae06F9746B889D4A50df1096db/logo.png differ diff --git a/blockchains/smartchain/assets/0x88803312628fd21542F706B0C7dC8495c1c10B2e/info.json b/blockchains/smartchain/assets/0x88803312628fd21542F706B0C7dC8495c1c10B2e/info.json index b7814667e7a6c..bd120220ef483 100644 --- a/blockchains/smartchain/assets/0x88803312628fd21542F706B0C7dC8495c1c10B2e/info.json +++ b/blockchains/smartchain/assets/0x88803312628fd21542F706B0C7dC8495c1c10B2e/info.json @@ -21,8 +21,8 @@ "url": "https://coinmarketcap.com/currencies/defi-degen-land/" }, { - "name": "twitter", - "url": "https://twitter.com/DeFi_Degen_Land" + "name": "x", + "url": "https://x.com/DeFi_Degen_Land" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8888818f35BbeD1C632364bf1b15446FAD088888/info.json b/blockchains/smartchain/assets/0x8888818f35BbeD1C632364bf1b15446FAD088888/info.json index be4ac2ded4366..3e97e4a8e40c5 100644 --- a/blockchains/smartchain/assets/0x8888818f35BbeD1C632364bf1b15446FAD088888/info.json +++ b/blockchains/smartchain/assets/0x8888818f35BbeD1C632364bf1b15446FAD088888/info.json @@ -18,8 +18,8 @@ "url": "https://t.me/pocmoncom" }, { - "name": "twitter", - "url": "https://twitter.com/pocmoncom" + "name": "x", + "url": "https://x.com/pocmoncom" }, { "name": "whitepaper", diff --git a/blockchains/smartchain/assets/0x8888888888821672ABBA04f584E8343A9242B3aa/info.json b/blockchains/smartchain/assets/0x8888888888821672ABBA04f584E8343A9242B3aa/info.json new file mode 100644 index 0000000000000..305784939326c --- /dev/null +++ b/blockchains/smartchain/assets/0x8888888888821672ABBA04f584E8343A9242B3aa/info.json @@ -0,0 +1,21 @@ +{ + "name": "Buy", + "website": "https://buybsc.top/", + "description": "Buy has a perfect ecological Buy mechanism such as large-scale sniper robot +Swap+ chain tour.", + "explorer": "https://bscscan.com/token/0x8888888888821672abba04f584e8343a9242b3aa", + "symbol": "Buy", + "type": "BEP20", + "decimals": 9, + "status": "active", + "id": "0x8888888888821672ABBA04f584E8343A9242B3aa", + "links": [ + { + "name": "telegram", + "url": "https://t.me/BuyGCSQ" + }, + { + "name": "x", + "url": "https://x.com/BuyGCSQ" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8888888888821672ABBA04f584E8343A9242B3aa/logo.png b/blockchains/smartchain/assets/0x8888888888821672ABBA04f584E8343A9242B3aa/logo.png new file mode 100644 index 0000000000000..8ba144f63fdad Binary files /dev/null and b/blockchains/smartchain/assets/0x8888888888821672ABBA04f584E8343A9242B3aa/logo.png differ diff --git a/blockchains/smartchain/assets/0x88888888Fc33e4ECba8958c0c2AD361089E19885/info.json b/blockchains/smartchain/assets/0x88888888Fc33e4ECba8958c0c2AD361089E19885/info.json index fdc3732c8f9c4..5d9a64faab413 100644 --- a/blockchains/smartchain/assets/0x88888888Fc33e4ECba8958c0c2AD361089E19885/info.json +++ b/blockchains/smartchain/assets/0x88888888Fc33e4ECba8958c0c2AD361089E19885/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/birbdev" }, { - "name": "twitter", - "url": "https://twitter.com/BirbDefi" + "name": "x", + "url": "https://x.com/BirbDefi" }, { "name": "telegram", @@ -37,4 +37,4 @@ "url": "https://reddit.com/r/BirbDefi/" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8893D5fA71389673C5c4b9b3cb4EE1ba71207556/info.json b/blockchains/smartchain/assets/0x8893D5fA71389673C5c4b9b3cb4EE1ba71207556/info.json index 38c4ab78795a3..94a08af977c22 100644 --- a/blockchains/smartchain/assets/0x8893D5fA71389673C5c4b9b3cb4EE1ba71207556/info.json +++ b/blockchains/smartchain/assets/0x8893D5fA71389673C5c4b9b3cb4EE1ba71207556/info.json @@ -10,8 +10,8 @@ "id": "0x8893D5fA71389673C5c4b9b3cb4EE1ba71207556", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SquirrelDeFi" + "name": "x", + "url": "https://x.com/SquirrelDeFi" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x8899eC96ed8C96b5C86C23c3f069c3dEf75b6d97/info.json b/blockchains/smartchain/assets/0x8899eC96ed8C96b5C86C23c3f069c3dEf75b6d97/info.json new file mode 100644 index 0000000000000..dc59aadc9dc8f --- /dev/null +++ b/blockchains/smartchain/assets/0x8899eC96ed8C96b5C86C23c3f069c3dEf75b6d97/info.json @@ -0,0 +1,37 @@ +{ + "name": "Openfabric AI", + "type": "BEP20", + "symbol": "OFN", + "decimals": 18, + "website": "https://openfabric.ai", + "description": "A planetary-scale network for building and connecting decentralized AI applications.", + "explorer": "https://bscscan.com/token/0x8899eC96ed8C96b5C86C23c3f069c3dEf75b6d97", + "status": "active", + "id": "0x8899eC96ed8C96b5C86C23c3f069c3dEf75b6d97", + "links": [ + { + "name": "x", + "url": "https://x.com/openfabricai/" + }, + { + "name": "telegram", + "url": "https://t.me/OpenFabricAI/" + }, + { + "name": "github", + "url": "https://github.com/Openfabric/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/openfabric-ai/" + } + ], + "tags": [ + "AI", + "Generative AI", + "DeFi", + "AI & Big Data", + "Marketplace", + "IoT" + ] +} diff --git a/blockchains/smartchain/assets/0x8899eC96ed8C96b5C86C23c3f069c3dEf75b6d97/logo.png b/blockchains/smartchain/assets/0x8899eC96ed8C96b5C86C23c3f069c3dEf75b6d97/logo.png new file mode 100644 index 0000000000000..d404475cb394a Binary files /dev/null and b/blockchains/smartchain/assets/0x8899eC96ed8C96b5C86C23c3f069c3dEf75b6d97/logo.png differ diff --git a/blockchains/smartchain/assets/0x88B90f45bd6a4F97f7D85d280eD64A40880e4935/info.json b/blockchains/smartchain/assets/0x88B90f45bd6a4F97f7D85d280eD64A40880e4935/info.json new file mode 100644 index 0000000000000..2021acee9a6c4 --- /dev/null +++ b/blockchains/smartchain/assets/0x88B90f45bd6a4F97f7D85d280eD64A40880e4935/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares US Aerospace and Defense ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "ITAon", + "decimals": 18, + "description": "ITAon is the Ondo Tokenized version of the iShares US Aerospace and Defense ETF, giving tokenholders economic exposure similar to holding ITA and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x88B90f45bd6a4F97f7D85d280eD64A40880e4935", + "status": "active", + "id": "0x88B90f45bd6a4F97f7D85d280eD64A40880e4935", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-us-aerospace-and-defense-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x88B90f45bd6a4F97f7D85d280eD64A40880e4935/logo.png b/blockchains/smartchain/assets/0x88B90f45bd6a4F97f7D85d280eD64A40880e4935/logo.png new file mode 100644 index 0000000000000..2ce033b091a15 Binary files /dev/null and b/blockchains/smartchain/assets/0x88B90f45bd6a4F97f7D85d280eD64A40880e4935/logo.png differ diff --git a/blockchains/smartchain/assets/0x88C926CA9234Ee194dc47be6e91d35e8CCbEed51/info.json b/blockchains/smartchain/assets/0x88C926CA9234Ee194dc47be6e91d35e8CCbEed51/info.json index ca238025b87da..72c2c883fad34 100644 --- a/blockchains/smartchain/assets/0x88C926CA9234Ee194dc47be6e91d35e8CCbEed51/info.json +++ b/blockchains/smartchain/assets/0x88C926CA9234Ee194dc47be6e91d35e8CCbEed51/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/moocowtoken/MooCow/" }, { - "name": "twitter", - "url": "https://twitter.com/moocowtoken" + "name": "x", + "url": "https://x.com/moocowtoken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x88D7e9B65dC24Cf54f5eDEF929225FC3E1580C25/info.json b/blockchains/smartchain/assets/0x88D7e9B65dC24Cf54f5eDEF929225FC3E1580C25/info.json index 0e71e25fe4f12..eafa343552b5c 100644 --- a/blockchains/smartchain/assets/0x88D7e9B65dC24Cf54f5eDEF929225FC3E1580C25/info.json +++ b/blockchains/smartchain/assets/0x88D7e9B65dC24Cf54f5eDEF929225FC3E1580C25/info.json @@ -10,8 +10,8 @@ "id": "0x88D7e9B65dC24Cf54f5eDEF929225FC3E1580C25", "links": [ { - "name": "twitter", - "url": "https://twitter.com/JumpTask_app" + "name": "x", + "url": "https://x.com/JumpTask_app" }, { "name": "telegram", @@ -33,4 +33,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x88DA9901B3A02fE24E498e1eD683D2310383E295/info.json b/blockchains/smartchain/assets/0x88DA9901B3A02fE24E498e1eD683D2310383E295/info.json new file mode 100644 index 0000000000000..304a5bc6c4caa --- /dev/null +++ b/blockchains/smartchain/assets/0x88DA9901B3A02fE24E498e1eD683D2310383E295/info.json @@ -0,0 +1,36 @@ +{ + "name": "Baby Grok", + "type": "BEP20", + "symbol": "BabyGrok", + "decimals": 9, + "website": "https://babygrok.ai", + "description": "Welcome to Baby Grok The Future of DeFi! 🚀", + "explorer": "https://bscscan.com/token/0x88da9901b3a02fe24e498e1ed683d2310383e295", + "status": "active", + "id": "0x88DA9901B3A02fE24E498e1eD683D2310383E295", + "links": [ + { + "name": "x", + "url": "https://x.com/babygrok_" + }, + { + "name": "telegram", + "url": "https://t.me/babygrok" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/baby-grok-bsc" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/baby-grok" + }, + { + "name": "telegram_news", + "url": "https://t.me/babygrok" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x88DA9901B3A02fE24E498e1eD683D2310383E295/logo.png b/blockchains/smartchain/assets/0x88DA9901B3A02fE24E498e1eD683D2310383E295/logo.png new file mode 100644 index 0000000000000..99779d45fb570 Binary files /dev/null and b/blockchains/smartchain/assets/0x88DA9901B3A02fE24E498e1eD683D2310383E295/logo.png differ diff --git a/blockchains/smartchain/assets/0x88c55B3255aE1e6628C953C5CDfF27Ad3Cc33C81/info.json b/blockchains/smartchain/assets/0x88c55B3255aE1e6628C953C5CDfF27Ad3Cc33C81/info.json index eb1fc43bee377..c58b591edb86c 100644 --- a/blockchains/smartchain/assets/0x88c55B3255aE1e6628C953C5CDfF27Ad3Cc33C81/info.json +++ b/blockchains/smartchain/assets/0x88c55B3255aE1e6628C953C5CDfF27Ad3Cc33C81/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/MyDefiLegendsOfficial/" }, { - "name": "twitter", - "url": "https://twitter.com/MyDefiLegends" + "name": "x", + "url": "https://x.com/MyDefiLegends" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e/info.json b/blockchains/smartchain/assets/0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e/info.json index 26c82e0210b78..ee77f74386199 100644 --- a/blockchains/smartchain/assets/0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e/info.json +++ b/blockchains/smartchain/assets/0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e/info.json @@ -1,5 +1,5 @@ { - "name": "BNB pegged yearn.finance", + "name": "Yearn", "website": "https://yearn.finance/", "description": "BNB pegged yearn.finance (YFI BEP20) is a token issued by Binance on Smart Chain; its price is pegged to yearn.finance (YFI ERC20) at a ratio of 1:1.", "explorer": "https://bscscan.com/token/0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e", @@ -20,8 +20,8 @@ "url": "https://github.com/iearn-finance" }, { - "name": "twitter", - "url": "https://twitter.com/iearnfinance" + "name": "x", + "url": "https://x.com/iearnfinance" }, { "name": "blog", diff --git a/blockchains/smartchain/assets/0x891E4554227385c5c740F9B483E935E3CbC29F01/info.json b/blockchains/smartchain/assets/0x891E4554227385c5c740F9B483E935E3CbC29F01/info.json index 192e67cfc85a2..0bd37ba0a125b 100644 --- a/blockchains/smartchain/assets/0x891E4554227385c5c740F9B483E935E3CbC29F01/info.json +++ b/blockchains/smartchain/assets/0x891E4554227385c5c740F9B483E935E3CbC29F01/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/robustprotocol/" }, { - "name": "twitter", - "url": "https://twitter.com/robustprotocol/" + "name": "x", + "url": "https://x.com/robustprotocol/" }, { "name": "docs", diff --git a/blockchains/smartchain/assets/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e/info.json b/blockchains/smartchain/assets/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e/info.json new file mode 100644 index 0000000000000..447a176bc3526 --- /dev/null +++ b/blockchains/smartchain/assets/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e/info.json @@ -0,0 +1,24 @@ +{ + "name": "Abbott tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Abbott xStock (ABTx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. ABTx tracks the price of Abbott Laboratories (the underlying). ABTx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Abbott Laboratories, whilst maintaining the benefits of blockchain technology. Key Benefits Abbott is a global healthcare company focused on developing and delivering life-changing technologies in areas like diagnostics, medical devices, nutritional products, and branded generic pharmaceuticals.", + "explorer": "https://bscscan.com/token/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e", + "type": "BEP20", + "symbol": "ABTX", + "decimals": 18, + "status": "active", + "id": "0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abbott-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e/logo.png b/blockchains/smartchain/assets/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e/logo.png new file mode 100644 index 0000000000000..c82cd60e9df36 Binary files /dev/null and b/blockchains/smartchain/assets/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e/logo.png differ diff --git a/blockchains/smartchain/assets/0x8927282a3d05EF5F7dc24eD0eE009be264d2ebd7/info.json b/blockchains/smartchain/assets/0x8927282a3d05EF5F7dc24eD0eE009be264d2ebd7/info.json index 8f1d0edcaba97..209b919fadf31 100644 --- a/blockchains/smartchain/assets/0x8927282a3d05EF5F7dc24eD0eE009be264d2ebd7/info.json +++ b/blockchains/smartchain/assets/0x8927282a3d05EF5F7dc24eD0eE009be264d2ebd7/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/babyflokiupchat" }, { - "name": "twitter", - "url": "https://twitter.com/babyflokiup" + "name": "x", + "url": "https://x.com/babyflokiup" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x893e14FAfa8df32D9bE7eab810027eeA8828A98c/info.json b/blockchains/smartchain/assets/0x893e14FAfa8df32D9bE7eab810027eeA8828A98c/info.json index e529158dbae0d..dff2ff7354b16 100644 --- a/blockchains/smartchain/assets/0x893e14FAfa8df32D9bE7eab810027eeA8828A98c/info.json +++ b/blockchains/smartchain/assets/0x893e14FAfa8df32D9bE7eab810027eeA8828A98c/info.json @@ -10,8 +10,8 @@ "id": "0x893e14FAfa8df32D9bE7eab810027eeA8828A98c", "links": [ { - "name": "twitter", - "url": "https://twitter.com/unimoonnetwork" + "name": "x", + "url": "https://x.com/unimoonnetwork" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x897304D4606B2d5FcAf886aa7AA143e478EC36C5/info.json b/blockchains/smartchain/assets/0x897304D4606B2d5FcAf886aa7AA143e478EC36C5/info.json index 75136c121565d..be6a55caf4ace 100644 --- a/blockchains/smartchain/assets/0x897304D4606B2d5FcAf886aa7AA143e478EC36C5/info.json +++ b/blockchains/smartchain/assets/0x897304D4606B2d5FcAf886aa7AA143e478EC36C5/info.json @@ -14,8 +14,8 @@ }, "links": [ { - "name": "twitter", - "url": "https://twitter.com/mindmusic_bsc" + "name": "x", + "url": "https://x.com/mindmusic_bsc" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x89BAB39D627A9e34f0dc782C53457e80Ee8Fb9D9/info.json b/blockchains/smartchain/assets/0x89BAB39D627A9e34f0dc782C53457e80Ee8Fb9D9/info.json new file mode 100644 index 0000000000000..f063dbdec11ff --- /dev/null +++ b/blockchains/smartchain/assets/0x89BAB39D627A9e34f0dc782C53457e80Ee8Fb9D9/info.json @@ -0,0 +1,20 @@ +{ + "name": "Global X Copper Miners xStock", + "type": "BEP20", + "symbol": "COPXx", + "decimals": 18, + "description": "Global X Copper Miners xStock (COPXx) is a tracker certificate issued as a freely transferable token on selected blockchains. COPXx tracks the price of Global X Copper Miners ETF. COPXx is designed to give eligible investors regulatory-compliant access to the stock price of Global X Copper Miners ETF, whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x89BAB39D627A9e34f0dc782C53457e80Ee8Fb9D9", + "status": "active", + "id": "0x89BAB39D627A9e34f0dc782C53457e80Ee8Fb9D9", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x89BAB39D627A9e34f0dc782C53457e80Ee8Fb9D9/logo.png b/blockchains/smartchain/assets/0x89BAB39D627A9e34f0dc782C53457e80Ee8Fb9D9/logo.png new file mode 100644 index 0000000000000..3c3218d612f4b Binary files /dev/null and b/blockchains/smartchain/assets/0x89BAB39D627A9e34f0dc782C53457e80Ee8Fb9D9/logo.png differ diff --git a/blockchains/smartchain/assets/0x89b2607878ae19baB8020b8140eD550Ef3E953bb/info.json b/blockchains/smartchain/assets/0x89b2607878ae19baB8020b8140eD550Ef3E953bb/info.json new file mode 100644 index 0000000000000..502d42798b3d5 --- /dev/null +++ b/blockchains/smartchain/assets/0x89b2607878ae19baB8020b8140eD550Ef3E953bb/info.json @@ -0,0 +1,15 @@ +{ + "name": "AST SpaceMobile xStock", + "type": "BEP20", + "symbol": "ASTSx", + "decimals": 18, + "description": "AST SpaceMobile xStock (ASTSx) is a tracker certificate issued as a freely transferable token on selected blockchains. ASTSx tracks the price of AST SpaceMobile, Inc.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x89b2607878ae19baB8020b8140eD550Ef3E953bb", + "status": "active", + "id": "0x89b2607878ae19baB8020b8140eD550Ef3E953bb", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x89b2607878ae19baB8020b8140eD550Ef3E953bb/logo.png b/blockchains/smartchain/assets/0x89b2607878ae19baB8020b8140eD550Ef3E953bb/logo.png new file mode 100644 index 0000000000000..7eaf95d588eaf Binary files /dev/null and b/blockchains/smartchain/assets/0x89b2607878ae19baB8020b8140eD550Ef3E953bb/logo.png differ diff --git a/blockchains/smartchain/assets/0x89e4818eD21F668D65f7851839d2dD8cE5D208b0/info.json b/blockchains/smartchain/assets/0x89e4818eD21F668D65f7851839d2dD8cE5D208b0/info.json index 999fd2d058ca2..3e569304b603f 100644 --- a/blockchains/smartchain/assets/0x89e4818eD21F668D65f7851839d2dD8cE5D208b0/info.json +++ b/blockchains/smartchain/assets/0x89e4818eD21F668D65f7851839d2dD8cE5D208b0/info.json @@ -10,8 +10,8 @@ "id": "0x89e4818eD21F668D65f7851839d2dD8cE5D208b0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/home" + "name": "x", + "url": "https://x.com/home" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x8A452Daaf59F79fD511484B5Ce9474E32DD189ce/info.json b/blockchains/smartchain/assets/0x8A452Daaf59F79fD511484B5Ce9474E32DD189ce/info.json new file mode 100644 index 0000000000000..6119612bfd65d --- /dev/null +++ b/blockchains/smartchain/assets/0x8A452Daaf59F79fD511484B5Ce9474E32DD189ce/info.json @@ -0,0 +1,17 @@ +{ + "name": "BIC", + "symbol": "BIC", + "website": "https://bicoinonbnb.xyz", + "description": "Believe In CZ Be a Believer", + "explorer": "https://bscscan.com/token/0x8a452daaf59f79fd511484b5ce9474e32dd189ce", + "decimals": 18, + "status": "active", + "id": "0x8A452Daaf59F79fD511484B5Ce9474E32DD189ce", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/bicoin_onbnb" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8A452Daaf59F79fD511484B5Ce9474E32DD189ce/logo.png b/blockchains/smartchain/assets/0x8A452Daaf59F79fD511484B5Ce9474E32DD189ce/logo.png new file mode 100644 index 0000000000000..da90374f01522 Binary files /dev/null and b/blockchains/smartchain/assets/0x8A452Daaf59F79fD511484B5Ce9474E32DD189ce/logo.png differ diff --git a/blockchains/smartchain/assets/0x8A5d7FCD4c90421d21d30fCC4435948aC3618B2f/info.json b/blockchains/smartchain/assets/0x8A5d7FCD4c90421d21d30fCC4435948aC3618B2f/info.json index 1c5763e4a637f..ab2f9e4c7cf9e 100644 --- a/blockchains/smartchain/assets/0x8A5d7FCD4c90421d21d30fCC4435948aC3618B2f/info.json +++ b/blockchains/smartchain/assets/0x8A5d7FCD4c90421d21d30fCC4435948aC3618B2f/info.json @@ -26,8 +26,8 @@ "url": "https://t.me/cakemnstrannouncement" }, { - "name": "twitter", - "url": "https://twitter.com/thecakemnstr" + "name": "x", + "url": "https://x.com/thecakemnstr" }, { "name": "coinmarketcap", @@ -69,4 +69,4 @@ "nft", "memes" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8A83C31D6751833B4940b6e871c48d9A15a07b46/info.json b/blockchains/smartchain/assets/0x8A83C31D6751833B4940b6e871c48d9A15a07b46/info.json new file mode 100644 index 0000000000000..592fa4076a318 --- /dev/null +++ b/blockchains/smartchain/assets/0x8A83C31D6751833B4940b6e871c48d9A15a07b46/info.json @@ -0,0 +1,24 @@ +{ + "name": "Pfizer (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "PFEon is the Ondo Tokenized version of Pfizer, giving tokenholders economic exposure similar to holding PFE and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x8a83c31d6751833b4940b6e871c48d9a15a07b46", + "type": "BEP20", + "symbol": "PFEon", + "decimals": 18, + "status": "active", + "id": "0x8A83C31D6751833B4940b6e871c48d9A15a07b46", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pfizer-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8A83C31D6751833B4940b6e871c48d9A15a07b46/logo.png b/blockchains/smartchain/assets/0x8A83C31D6751833B4940b6e871c48d9A15a07b46/logo.png new file mode 100644 index 0000000000000..d7c1214c4f9aa Binary files /dev/null and b/blockchains/smartchain/assets/0x8A83C31D6751833B4940b6e871c48d9A15a07b46/logo.png differ diff --git a/blockchains/smartchain/assets/0x8A9030c0ED9A5b9C7Ab39EBfEE11D90aF9945f6F/info.json b/blockchains/smartchain/assets/0x8A9030c0ED9A5b9C7Ab39EBfEE11D90aF9945f6F/info.json index ced8c174c7191..7c18fac81bc93 100644 --- a/blockchains/smartchain/assets/0x8A9030c0ED9A5b9C7Ab39EBfEE11D90aF9945f6F/info.json +++ b/blockchains/smartchain/assets/0x8A9030c0ED9A5b9C7Ab39EBfEE11D90aF9945f6F/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/safelaunchpad/Contract" }, { - "name": "twitter", - "url": "https://twitter.com/safelaunchpad" + "name": "x", + "url": "https://x.com/safelaunchpad" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x8A972Ed397bEd7C0Cbc84cc3EFbC760bb07F80bb/info.json b/blockchains/smartchain/assets/0x8A972Ed397bEd7C0Cbc84cc3EFbC760bb07F80bb/info.json new file mode 100644 index 0000000000000..f7622edcf1874 --- /dev/null +++ b/blockchains/smartchain/assets/0x8A972Ed397bEd7C0Cbc84cc3EFbC760bb07F80bb/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE EuropaCoin", + "type": "BEP20", + "symbol": "FAKE EURC", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x8A972Ed397bEd7C0Cbc84cc3EFbC760bb07F80bb", + "explorer": "https://bscscan.com/token/0x8A972Ed397bEd7C0Cbc84cc3EFbC760bb07F80bb", + "status": "spam", + "id": "0x8A972Ed397bEd7C0Cbc84cc3EFbC760bb07F80bb" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8A972Ed397bEd7C0Cbc84cc3EFbC760bb07F80bb/logo.png b/blockchains/smartchain/assets/0x8A972Ed397bEd7C0Cbc84cc3EFbC760bb07F80bb/logo.png new file mode 100644 index 0000000000000..3cf3b0c4dfe30 Binary files /dev/null and b/blockchains/smartchain/assets/0x8A972Ed397bEd7C0Cbc84cc3EFbC760bb07F80bb/logo.png differ diff --git a/blockchains/smartchain/assets/0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d/info.json b/blockchains/smartchain/assets/0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d/info.json index a33112bb23206..61e56f9d3b7d3 100644 --- a/blockchains/smartchain/assets/0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d/info.json +++ b/blockchains/smartchain/assets/0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d/info.json @@ -1,5 +1,5 @@ { - "name": "BNB pegged USD Coin", + "name": "USDC", "website": "https://www.centre.io", "description": "BNB pegged USD Coin (USD BEP20) is a token issued by Binance on Smart Chain; its price is pegged to USD Coin (USD ERC20) at a ratio of 1:1.", "explorer": "https://bscscan.com/token/0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", diff --git a/blockchains/smartchain/assets/0x8B0B1D4016f912561D9420ae6035AA543fE9a69d/info.json b/blockchains/smartchain/assets/0x8B0B1D4016f912561D9420ae6035AA543fE9a69d/info.json new file mode 100644 index 0000000000000..90fc3de0e6dc4 --- /dev/null +++ b/blockchains/smartchain/assets/0x8B0B1D4016f912561D9420ae6035AA543fE9a69d/info.json @@ -0,0 +1,14 @@ +{ + "name": "Mayelon", + "type": "BEP20", + "symbol": "MAYELON", + "decimals": 18, + "website": "https://four.meme/token/0x8B0B1D4016f912561D9420ae6035AA543fE9a69d", + "description": "Mayelon", + "explorer": "https://bscscan.com/token/0x8B0B1D4016f912561D9420ae6035AA543fE9a69d", + "status": "active", + "id": "0x8B0B1D4016f912561D9420ae6035AA543fE9a69d", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8B0B1D4016f912561D9420ae6035AA543fE9a69d/logo.png b/blockchains/smartchain/assets/0x8B0B1D4016f912561D9420ae6035AA543fE9a69d/logo.png new file mode 100644 index 0000000000000..ddeb3360ca38c Binary files /dev/null and b/blockchains/smartchain/assets/0x8B0B1D4016f912561D9420ae6035AA543fE9a69d/logo.png differ diff --git a/blockchains/smartchain/assets/0x8B6fA031c7D2E60fbFe4E663EC1B8f37Df1ba483/info.json b/blockchains/smartchain/assets/0x8B6fA031c7D2E60fbFe4E663EC1B8f37Df1ba483/info.json index 97826d498f8ea..07f04db829cf4 100644 --- a/blockchains/smartchain/assets/0x8B6fA031c7D2E60fbFe4E663EC1B8f37Df1ba483/info.json +++ b/blockchains/smartchain/assets/0x8B6fA031c7D2E60fbFe4E663EC1B8f37Df1ba483/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/CashCowProtocol" + "name": "x", + "url": "https://x.com/CashCowProtocol" }, { "name": "facebook", @@ -45,4 +45,4 @@ "url": "https://coinmarketcap.com/currencies/cashcow" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8B9ABDD229ec0C4A28E01b91aacdC5dAAFc25C2b/info.json b/blockchains/smartchain/assets/0x8B9ABDD229ec0C4A28E01b91aacdC5dAAFc25C2b/info.json new file mode 100644 index 0000000000000..91ba6e7c4177e --- /dev/null +++ b/blockchains/smartchain/assets/0x8B9ABDD229ec0C4A28E01b91aacdC5dAAFc25C2b/info.json @@ -0,0 +1,17 @@ +{ + "name": "Ronaldinho Coin", + "type": "BEP20", + "symbol": "STAR10", + "decimals": 18, + "website": "https://www.star10token.com", + "description": "From the streets of Brazil to the greatest stadiums in the world, Ronaldinho changed football forever.", + "explorer": "https://bscscan.com/token/0x8B9ABDD229ec0C4A28E01b91aacdC5dAAFc25C2b", + "status": "active", + "id": "0x8B9ABDD229ec0C4A28E01b91aacdC5dAAFc25C2b", + "links": [ + { + "name": "x", + "url": "https://x.com/10Ronaldinho" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8B9ABDD229ec0C4A28E01b91aacdC5dAAFc25C2b/logo.png b/blockchains/smartchain/assets/0x8B9ABDD229ec0C4A28E01b91aacdC5dAAFc25C2b/logo.png new file mode 100644 index 0000000000000..fe66d58ccc7fe Binary files /dev/null and b/blockchains/smartchain/assets/0x8B9ABDD229ec0C4A28E01b91aacdC5dAAFc25C2b/logo.png differ diff --git a/blockchains/smartchain/assets/0x8C7Bf0ED6bc778bde1489De1592C1aAd3E66371d/info.json b/blockchains/smartchain/assets/0x8C7Bf0ED6bc778bde1489De1592C1aAd3E66371d/info.json new file mode 100644 index 0000000000000..2139bc6ee123c --- /dev/null +++ b/blockchains/smartchain/assets/0x8C7Bf0ED6bc778bde1489De1592C1aAd3E66371d/info.json @@ -0,0 +1,24 @@ +{ + "name": "D-Wave Quantum (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "QBTSon is the Ondo Tokenized version of D-Wave Quantum, giving tokenholders economic exposure similar to holding QBTS and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x8c7bf0ed6bc778bde1489de1592c1aad3e66371d", + "type": "BEP20", + "symbol": "QBTSon", + "decimals": 18, + "status": "active", + "id": "0x8C7Bf0ED6bc778bde1489De1592C1aAd3E66371d", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/d-wave-quantum-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8C7Bf0ED6bc778bde1489De1592C1aAd3E66371d/logo.png b/blockchains/smartchain/assets/0x8C7Bf0ED6bc778bde1489De1592C1aAd3E66371d/logo.png new file mode 100644 index 0000000000000..3c65f718e9f9b Binary files /dev/null and b/blockchains/smartchain/assets/0x8C7Bf0ED6bc778bde1489De1592C1aAd3E66371d/logo.png differ diff --git a/blockchains/smartchain/assets/0x8C851d1a123Ff703BD1f9dabe631b69902Df5f97/info.json b/blockchains/smartchain/assets/0x8C851d1a123Ff703BD1f9dabe631b69902Df5f97/info.json index d8bda042323dc..9645574fb992a 100644 --- a/blockchains/smartchain/assets/0x8C851d1a123Ff703BD1f9dabe631b69902Df5f97/info.json +++ b/blockchains/smartchain/assets/0x8C851d1a123Ff703BD1f9dabe631b69902Df5f97/info.json @@ -18,8 +18,8 @@ "url": "https://coinmarketcap.com/currencies/binaryx/" }, { - "name": "twitter", - "url": "https://twitter.com/binary_x" + "name": "x", + "url": "https://x.com/binary_x" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8C907e0a72C3d55627E853f4ec6a96b0C8771145/info.json b/blockchains/smartchain/assets/0x8C907e0a72C3d55627E853f4ec6a96b0C8771145/info.json new file mode 100644 index 0000000000000..16010a52a8695 --- /dev/null +++ b/blockchains/smartchain/assets/0x8C907e0a72C3d55627E853f4ec6a96b0C8771145/info.json @@ -0,0 +1,21 @@ +{ + "name": "ZIGChain", + "type": "BEP20", + "symbol": "ZIG", + "decimals": 18, + "website": "https://zignaly.com/", + "description": "Zignaly is a social investment platform where users can follow winning strategies and participate in their returns.", + "explorer": "https://bscscan.com/token/0x8C907e0a72C3d55627E853f4ec6a96b0C8771145", + "status": "active", + "id": "0x8C907e0a72C3d55627E853f4ec6a96b0C8771145", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zigcoin/" + }, + { + "name": "x", + "url": "https://x.com/zignaly" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8C907e0a72C3d55627E853f4ec6a96b0C8771145/logo.png b/blockchains/smartchain/assets/0x8C907e0a72C3d55627E853f4ec6a96b0C8771145/logo.png new file mode 100644 index 0000000000000..e610bbed620f8 Binary files /dev/null and b/blockchains/smartchain/assets/0x8C907e0a72C3d55627E853f4ec6a96b0C8771145/logo.png differ diff --git a/blockchains/smartchain/assets/0x8D047F4F57A190C96c8b9704B39A1379E999D82B/info.json b/blockchains/smartchain/assets/0x8D047F4F57A190C96c8b9704B39A1379E999D82B/info.json index b6dc6e628f923..a134dbf531700 100644 --- a/blockchains/smartchain/assets/0x8D047F4F57A190C96c8b9704B39A1379E999D82B/info.json +++ b/blockchains/smartchain/assets/0x8D047F4F57A190C96c8b9704B39A1379E999D82B/info.json @@ -22,8 +22,8 @@ "url": "https://etherconnect.medium.com/" }, { - "name": "twitter", - "url": "https://twitter.com/Etherconnt" + "name": "x", + "url": "https://x.com/Etherconnt" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E/info.json b/blockchains/smartchain/assets/0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E/info.json index 62fa612c593af..7412412bf61bf 100644 --- a/blockchains/smartchain/assets/0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E/info.json +++ b/blockchains/smartchain/assets/0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E/info.json @@ -14,8 +14,8 @@ "url": "https://git.kira.network" }, { - "name": "twitter", - "url": "https://twitter.com/kira_core" + "name": "x", + "url": "https://x.com/kira_core" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x8D1427a32F0A4C4BF052252e68E7FF1B2Ba80c01/info.json b/blockchains/smartchain/assets/0x8D1427a32F0A4C4BF052252e68E7FF1B2Ba80c01/info.json new file mode 100644 index 0000000000000..ec25f050a95a2 --- /dev/null +++ b/blockchains/smartchain/assets/0x8D1427a32F0A4C4BF052252e68E7FF1B2Ba80c01/info.json @@ -0,0 +1,40 @@ +{ + "name": "Rimaunangis", + "type": "BEP20", + "symbol": "RXT", + "decimals": 18, + "website": "https://www.rimaunangis.world", + "description": "Tokenization for Food Chain and Lifestyle as Bridge of Metaworld Ecosystem", + "explorer": "https://bscscan.com/token/0x8D1427a32F0A4C4BF052252e68E7FF1B2Ba80c01", + "status": "active", + "id": "0x8D1427a32F0A4C4BF052252e68E7FF1B2Ba80c01", + "links": [ + { + "name": "x", + "url": "https://x.com/RimaunangisRXT" + }, + { + "name": "facebook", + "url": "https://facebook.com/Rimaunangis-Digital-LLC-107415268757938/" + }, + { + "name": "telegram", + "url": "https://t.me/rimaunangis_official" + }, + { + "name": "telegram_news", + "url": "https://t.me/Rimau_Nangis" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rimaunangis/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/rimaunangis" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8D1427a32F0A4C4BF052252e68E7FF1B2Ba80c01/logo.png b/blockchains/smartchain/assets/0x8D1427a32F0A4C4BF052252e68E7FF1B2Ba80c01/logo.png new file mode 100644 index 0000000000000..232f1cd502cb0 Binary files /dev/null and b/blockchains/smartchain/assets/0x8D1427a32F0A4C4BF052252e68E7FF1B2Ba80c01/logo.png differ diff --git a/blockchains/smartchain/assets/0x8D2b2e3dcF0BcaD65765D256390c5154D3Ba19cF/info.json b/blockchains/smartchain/assets/0x8D2b2e3dcF0BcaD65765D256390c5154D3Ba19cF/info.json index 01359ff6cb434..1be9fd3df53e6 100644 --- a/blockchains/smartchain/assets/0x8D2b2e3dcF0BcaD65765D256390c5154D3Ba19cF/info.json +++ b/blockchains/smartchain/assets/0x8D2b2e3dcF0BcaD65765D256390c5154D3Ba19cF/info.json @@ -10,8 +10,8 @@ "id": "0x8D2b2e3dcF0BcaD65765D256390c5154D3Ba19cF", "links": [ { - "name": "twitter", - "url": "https://twitter.com/zoecashoficial" + "name": "x", + "url": "https://x.com/zoecashoficial" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x8D512a03600981B8e86556fd5C0FbDd726Fe1821/info.json b/blockchains/smartchain/assets/0x8D512a03600981B8e86556fd5C0FbDd726Fe1821/info.json new file mode 100644 index 0000000000000..e06fd99b1f0b6 --- /dev/null +++ b/blockchains/smartchain/assets/0x8D512a03600981B8e86556fd5C0FbDd726Fe1821/info.json @@ -0,0 +1,20 @@ +{ + "name": "VanEck Semiconductor xStock", + "type": "BEP20", + "symbol": "SMHx", + "decimals": 18, + "description": "VanEck Semiconductor ETF xStock (SMHx) is a tracker certificate issued as a freely transferable token on selected blockchains. SMHx tracks the price of VanEck Semiconductor ETF. SMHx is designed to give eligible investors regulatory-compliant access to the stock price of VanEck Semiconductor ETF, whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x8D512a03600981B8e86556fd5C0FbDd726Fe1821", + "status": "active", + "id": "0x8D512a03600981B8e86556fd5C0FbDd726Fe1821", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8D512a03600981B8e86556fd5C0FbDd726Fe1821/logo.png b/blockchains/smartchain/assets/0x8D512a03600981B8e86556fd5C0FbDd726Fe1821/logo.png new file mode 100644 index 0000000000000..51fd15de49397 Binary files /dev/null and b/blockchains/smartchain/assets/0x8D512a03600981B8e86556fd5C0FbDd726Fe1821/logo.png differ diff --git a/blockchains/smartchain/assets/0x8D65744527f55d0b2338350912d5C99A81ddF0e2/info.json b/blockchains/smartchain/assets/0x8D65744527f55d0b2338350912d5C99A81ddF0e2/info.json new file mode 100644 index 0000000000000..8a796084a4078 --- /dev/null +++ b/blockchains/smartchain/assets/0x8D65744527f55d0b2338350912d5C99A81ddF0e2/info.json @@ -0,0 +1,28 @@ +{ + "name": "Pro token", + "type": "BEP20", + "symbol": "Pro", + "decimals": 9, + "website": "https://cryptodao.it.com/", + "description": "Crypto DAO is a next-generation DeFi system driven by open source, community multi-signature, and on-chain mechanisms.", + "explorer": "https://bscscan.com/token/0x8d65744527f55d0b2338350912d5c99a81ddf0e2", + "status": "active", + "id": "0x8D65744527f55d0b2338350912d5C99A81ddF0e2", + "links": [ + { + "name": "x", + "url": "https://x.com/CryptoDAOGlobal" + }, + { + "name": "telegram", + "url": "https://t.me/CryptoDAO_info_cn" + }, + { + "name": "youtube", + "url": "https://youtube.com/@CryptoDaoOfficial" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8D65744527f55d0b2338350912d5C99A81ddF0e2/logo.png b/blockchains/smartchain/assets/0x8D65744527f55d0b2338350912d5C99A81ddF0e2/logo.png new file mode 100644 index 0000000000000..8e0757825badf Binary files /dev/null and b/blockchains/smartchain/assets/0x8D65744527f55d0b2338350912d5C99A81ddF0e2/logo.png differ diff --git a/blockchains/smartchain/assets/0x8E062E7f7e95b9b51519a6f47C28F260ab1064e4/info.json b/blockchains/smartchain/assets/0x8E062E7f7e95b9b51519a6f47C28F260ab1064e4/info.json index 463b91e045424..0a926992e7a12 100644 --- a/blockchains/smartchain/assets/0x8E062E7f7e95b9b51519a6f47C28F260ab1064e4/info.json +++ b/blockchains/smartchain/assets/0x8E062E7f7e95b9b51519a6f47C28F260ab1064e4/info.json @@ -10,8 +10,8 @@ "id": "0x8E062E7f7e95b9b51519a6f47C28F260ab1064e4", "links": [ { - "name": "twitter", - "url": "https://twitter.com/DaoBuddy" + "name": "x", + "url": "https://x.com/DaoBuddy" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x8E984e03ab35795C60242c902ECe2450242C90e9/info.json b/blockchains/smartchain/assets/0x8E984e03ab35795C60242c902ECe2450242C90e9/info.json index ec6898179e60e..90c627fe533c7 100644 --- a/blockchains/smartchain/assets/0x8E984e03ab35795C60242c902ECe2450242C90e9/info.json +++ b/blockchains/smartchain/assets/0x8E984e03ab35795C60242c902ECe2450242C90e9/info.json @@ -14,8 +14,8 @@ "url": "https://youtube.com/channel/UCpknNVgAtnOv7v61tf1Lalw" }, { - "name": "twitter", - "url": "https://twitter.com/KamPayToken" + "name": "x", + "url": "https://x.com/KamPayToken" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x8Ea2f890CB86DFb0E376137451c6fD982AFefc15/info.json b/blockchains/smartchain/assets/0x8Ea2f890CB86DFb0E376137451c6fD982AFefc15/info.json index 6f02fc8382f4b..041f64acebf4d 100644 --- a/blockchains/smartchain/assets/0x8Ea2f890CB86DFb0E376137451c6fD982AFefc15/info.json +++ b/blockchains/smartchain/assets/0x8Ea2f890CB86DFb0E376137451c6fD982AFefc15/info.json @@ -10,8 +10,8 @@ "id": "0x8Ea2f890CB86DFb0E376137451c6fD982AFefc15", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Autocrypto_ai" + "name": "x", + "url": "https://x.com/Autocrypto_ai" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x8Ea43e15b1a616a19903F6A87498F7dCa1efae0f/info.json b/blockchains/smartchain/assets/0x8Ea43e15b1a616a19903F6A87498F7dCa1efae0f/info.json new file mode 100644 index 0000000000000..52e72885612fc --- /dev/null +++ b/blockchains/smartchain/assets/0x8Ea43e15b1a616a19903F6A87498F7dCa1efae0f/info.json @@ -0,0 +1,48 @@ +{ + "name": "xAI", + "type": "BEP20", + "symbol": "xAI", + "decimals": 9, + "website": "https://xai.gd", + "description": "xAI the science of making machines that can think like humans.", + "explorer": "https://bscscan.com/token/0x8Ea43e15b1a616a19903F6A87498F7dCa1efae0f", + "status": "active", + "id": "0x8Ea43e15b1a616a19903F6A87498F7dCa1efae0f", + "links": [ + { + "name": "x", + "url": "https://x.com/xai_gd" + }, + { + "name": "github", + "url": "https://github.com/xaigd" + }, + { + "name": "source_code", + "url": "https://github.com/xaigd/contract/blob/main/contract.sol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/xai-3" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/xai-token/" + }, + { + "name": "docs", + "url": "https://doc.xai.gd" + }, + { + "name": "medium", + "url": "https://medium.com/@xai_gd" + }, + { + "name": "whitepaper", + "url": "https://doc.xai.gd" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8Ea43e15b1a616a19903F6A87498F7dCa1efae0f/logo.png b/blockchains/smartchain/assets/0x8Ea43e15b1a616a19903F6A87498F7dCa1efae0f/logo.png new file mode 100644 index 0000000000000..7b59e64247d7f Binary files /dev/null and b/blockchains/smartchain/assets/0x8Ea43e15b1a616a19903F6A87498F7dCa1efae0f/logo.png differ diff --git a/blockchains/smartchain/assets/0x8F046a2457a8F1618cAe4706Fa57Bf790e2532a6/info.json b/blockchains/smartchain/assets/0x8F046a2457a8F1618cAe4706Fa57Bf790e2532a6/info.json index c79620188b353..d45a318f9a862 100644 --- a/blockchains/smartchain/assets/0x8F046a2457a8F1618cAe4706Fa57Bf790e2532a6/info.json +++ b/blockchains/smartchain/assets/0x8F046a2457a8F1618cAe4706Fa57Bf790e2532a6/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/restoretruthtoken/restoretruthtoken" }, { - "name": "twitter", - "url": "https://twitter.com/restoretruthRTT" + "name": "x", + "url": "https://x.com/restoretruthRTT" }, { "name": "telegram", @@ -46,4 +46,4 @@ "defi", "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8F1B7df4a34C8Dd072CF6408Be9c778CFABdf8D0/info.json b/blockchains/smartchain/assets/0x8F1B7df4a34C8Dd072CF6408Be9c778CFABdf8D0/info.json index 8ca0aeb500174..ba404ec643206 100644 --- a/blockchains/smartchain/assets/0x8F1B7df4a34C8Dd072CF6408Be9c778CFABdf8D0/info.json +++ b/blockchains/smartchain/assets/0x8F1B7df4a34C8Dd072CF6408Be9c778CFABdf8D0/info.json @@ -10,8 +10,8 @@ "id": "0x8F1B7df4a34C8Dd072CF6408Be9c778CFABdf8D0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/IQ_crypto" + "name": "x", + "url": "https://x.com/IQ_crypto" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x8F1E60D84182db487aC235acC65825e50b5477a1/info.json b/blockchains/smartchain/assets/0x8F1E60D84182db487aC235acC65825e50b5477a1/info.json index cedb1912cda53..59131c9ba73f4 100644 --- a/blockchains/smartchain/assets/0x8F1E60D84182db487aC235acC65825e50b5477a1/info.json +++ b/blockchains/smartchain/assets/0x8F1E60D84182db487aC235acC65825e50b5477a1/info.json @@ -10,8 +10,8 @@ "id": "0x8F1E60D84182db487aC235acC65825e50b5477a1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/lendefi_io" + "name": "x", + "url": "https://x.com/lendefi_io" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x8F49733210700D38098d7375C221c7d02F700cc8/info.json b/blockchains/smartchain/assets/0x8F49733210700D38098d7375C221c7d02F700cc8/info.json index e5f2da00cb39b..391cbd9bcaf2a 100644 --- a/blockchains/smartchain/assets/0x8F49733210700D38098d7375C221c7d02F700cc8/info.json +++ b/blockchains/smartchain/assets/0x8F49733210700D38098d7375C221c7d02F700cc8/info.json @@ -10,8 +10,8 @@ "id": "0x8F49733210700D38098d7375C221c7d02F700cc8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/pallapay_com" + "name": "x", + "url": "https://x.com/pallapay_com" }, { "name": "telegram", @@ -29,4 +29,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8FD70eE385f470c8D6FDA2D93a4E49C849BAC6a6/info.json b/blockchains/smartchain/assets/0x8FD70eE385f470c8D6FDA2D93a4E49C849BAC6a6/info.json new file mode 100644 index 0000000000000..e3ba1ef5b1b01 --- /dev/null +++ b/blockchains/smartchain/assets/0x8FD70eE385f470c8D6FDA2D93a4E49C849BAC6a6/info.json @@ -0,0 +1,28 @@ +{ + "name": "Iren (Ondo Tokenized)", + "type": "BEP20", + "symbol": "IRENon", + "decimals": 18, + "description": "IRENon is the Ondo Tokenized version of Iren, giving tokenholders economic exposure similar to holding IREN and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x8FD70eE385f470c8D6FDA2D93a4E49C849BAC6a6", + "status": "active", + "id": "0x8FD70eE385f470c8D6FDA2D93a4E49C849BAC6a6", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/iren-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/iren-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8FD70eE385f470c8D6FDA2D93a4E49C849BAC6a6/logo.png b/blockchains/smartchain/assets/0x8FD70eE385f470c8D6FDA2D93a4E49C849BAC6a6/logo.png new file mode 100644 index 0000000000000..a6b39542d7a75 Binary files /dev/null and b/blockchains/smartchain/assets/0x8FD70eE385f470c8D6FDA2D93a4E49C849BAC6a6/logo.png differ diff --git a/blockchains/smartchain/assets/0x8FFf93E810a2eDaaFc326eDEE51071DA9d398E83/info.json b/blockchains/smartchain/assets/0x8FFf93E810a2eDaaFc326eDEE51071DA9d398E83/info.json index 4057fcd84e954..81c79c48993d4 100644 --- a/blockchains/smartchain/assets/0x8FFf93E810a2eDaaFc326eDEE51071DA9d398E83/info.json +++ b/blockchains/smartchain/assets/0x8FFf93E810a2eDaaFc326eDEE51071DA9d398E83/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/bitrisetoken" }, { - "name": "twitter", - "url": "https://twitter.com/bitrisetoken" + "name": "x", + "url": "https://x.com/bitrisetoken" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8Fdd1D12b3eC96F9f8e57DDa5D211152B2598888/info.json b/blockchains/smartchain/assets/0x8Fdd1D12b3eC96F9f8e57DDa5D211152B2598888/info.json new file mode 100644 index 0000000000000..30d72b09133fd --- /dev/null +++ b/blockchains/smartchain/assets/0x8Fdd1D12b3eC96F9f8e57DDa5D211152B2598888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether USD", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x8Fdd1D12b3eC96F9f8e57DDa5D211152B2598888", + "explorer": "https://bscscan.com/token/0x8Fdd1D12b3eC96F9f8e57DDa5D211152B2598888", + "status": "spam", + "id": "0x8Fdd1D12b3eC96F9f8e57DDa5D211152B2598888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/info.json b/blockchains/smartchain/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/info.json new file mode 100644 index 0000000000000..47464763c5b89 --- /dev/null +++ b/blockchains/smartchain/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/info.json @@ -0,0 +1,24 @@ +{ + "name": "Colombian Peso", + "website": "https://www.ripio.com/es/criptos/stablecoins-locales", + "description": "wCOP is a fully collateralized stablecoin pegged 1:1 to the Colombian Peso (COP). Issued and governed by a Ripio subsidiary, it brings COP on-chain so Colombians and global users can transact, save, and build on decentralized networks in their local currency.", + "explorer": "https://bscscan.com/token/0x8a1D45e102e886510e891d2Ec656a708991e2D76", + "type": "BEP20", + "symbol": "wCOP", + "decimals": 18, + "status": "active", + "id": "0x8a1D45e102e886510e891d2Ec656a708991e2D76", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/RipioApp" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/colombian-peso" + } + ] +} diff --git a/blockchains/smartchain/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/logo.png b/blockchains/smartchain/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/logo.png new file mode 100644 index 0000000000000..c7f511bbf443a Binary files /dev/null and b/blockchains/smartchain/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/logo.png differ diff --git a/blockchains/smartchain/assets/0x8a40c222996f9F3431f63Bf80244C36822060f12/info.json b/blockchains/smartchain/assets/0x8a40c222996f9F3431f63Bf80244C36822060f12/info.json index 4dab98447eb0f..b9610de557c32 100644 --- a/blockchains/smartchain/assets/0x8a40c222996f9F3431f63Bf80244C36822060f12/info.json +++ b/blockchains/smartchain/assets/0x8a40c222996f9F3431f63Bf80244C36822060f12/info.json @@ -18,8 +18,8 @@ "url": "https://t.me/Finxflo_Community" }, { - "name": "twitter", - "url": "https://twitter.com/finxflo" + "name": "x", + "url": "https://x.com/finxflo" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8a74BC8c372bC7f0E9cA3f6Ac0df51BE15aEC47A/info.json b/blockchains/smartchain/assets/0x8a74BC8c372bC7f0E9cA3f6Ac0df51BE15aEC47A/info.json index 679492c02a335..31715fa715470 100644 --- a/blockchains/smartchain/assets/0x8a74BC8c372bC7f0E9cA3f6Ac0df51BE15aEC47A/info.json +++ b/blockchains/smartchain/assets/0x8a74BC8c372bC7f0E9cA3f6Ac0df51BE15aEC47A/info.json @@ -10,8 +10,8 @@ "id": "0x8a74BC8c372bC7f0E9cA3f6Ac0df51BE15aEC47A", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PulsePad_App" + "name": "x", + "url": "https://x.com/PulsePad_App" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0/info.json b/blockchains/smartchain/assets/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0/info.json new file mode 100644 index 0000000000000..fcb054e5c8e89 --- /dev/null +++ b/blockchains/smartchain/assets/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0/info.json @@ -0,0 +1,24 @@ +{ + "name": "Tesla tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Tesla tokenized stock (xStock) (TSLAX) is a cryptocurrency and operates on the Solana platform. Tesla tokenized stock (xStock) has a current supply of 50,998.28909342 with 10,999.28657402 in circulation. The last known price of Tesla tokenized stock (xStock) is 417.05893204 USD and is down -0.76 over the last 24 hours. It is currently trading on 44 active market(s) with $21,478,606.39 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/tesla-xstock.", + "explorer": "https://bscscan.com/token/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0", + "type": "BEP20", + "symbol": "TSLAX", + "decimals": 18, + "status": "active", + "id": "0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tesla-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0/logo.png b/blockchains/smartchain/assets/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0/logo.png new file mode 100644 index 0000000000000..639735518a8c4 Binary files /dev/null and b/blockchains/smartchain/assets/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0/logo.png differ diff --git a/blockchains/smartchain/assets/0x8aa688AB789d1848d131C65D98CEAA8875D97eF1/info.json b/blockchains/smartchain/assets/0x8aa688AB789d1848d131C65D98CEAA8875D97eF1/info.json index 54f000fe58ff3..e0938256ab88e 100644 --- a/blockchains/smartchain/assets/0x8aa688AB789d1848d131C65D98CEAA8875D97eF1/info.json +++ b/blockchains/smartchain/assets/0x8aa688AB789d1848d131C65D98CEAA8875D97eF1/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/multivactech" }, { - "name": "twitter", - "url": "https://twitter.com/MultiVAC_Global" + "name": "x", + "url": "https://x.com/MultiVAC_Global" }, { "name": "blog", diff --git a/blockchains/smartchain/assets/0x8ad8e9B85787ddd0D31b32ECF655E93bfc0747eF/info.json b/blockchains/smartchain/assets/0x8ad8e9B85787ddd0D31b32ECF655E93bfc0747eF/info.json index f033cdb275003..98d882839d814 100644 --- a/blockchains/smartchain/assets/0x8ad8e9B85787ddd0D31b32ECF655E93bfc0747eF/info.json +++ b/blockchains/smartchain/assets/0x8ad8e9B85787ddd0D31b32ECF655E93bfc0747eF/info.json @@ -10,8 +10,8 @@ "id": "0x8ad8e9B85787ddd0D31b32ECF655E93bfc0747eF", "links": [ { - "name": "twitter", - "url": "https://twitter.com/sombranetwork" + "name": "x", + "url": "https://x.com/sombranetwork" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x8afC14fb1954F909c167bDF06C93ED4e1E51592b/info.json b/blockchains/smartchain/assets/0x8afC14fb1954F909c167bDF06C93ED4e1E51592b/info.json new file mode 100644 index 0000000000000..b3541ddf9faa4 --- /dev/null +++ b/blockchains/smartchain/assets/0x8afC14fb1954F909c167bDF06C93ED4e1E51592b/info.json @@ -0,0 +1,18 @@ +{ + "name": "ZeroByte", + "type": "BEP20", + "symbol": "ZB", + "decimals": 18, + "description": "ZeroByte is a decentralized financial payment network that rebuilds the traditional payment stack on the blockchain. It utilizes a basket of fiat-pegged stablecoins, algorithmically stabilized by its reserve currency ZB, to facilitate programmable payments and open financial infrastructure development. As of December 2020, the network has transacted an estimated $299 billion for over 2 million users.", + "website": "https://top100token.com/address/0x8afc14fb1954f909c167bdf06c93ed4e1e51592b", + "explorer": "https://bscscan.com/token/0x8afc14fb1954f909c167bdf06c93ed4e1e51592b", + "id": "0x8afC14fb1954F909c167bDF06C93ED4e1E51592b", + "status": "active", + "links": [ + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8afC14fb1954F909c167bDF06C93ED4e1E51592b/logo.png b/blockchains/smartchain/assets/0x8afC14fb1954F909c167bDF06C93ED4e1E51592b/logo.png new file mode 100644 index 0000000000000..d45a97a92c5e0 Binary files /dev/null and b/blockchains/smartchain/assets/0x8afC14fb1954F909c167bDF06C93ED4e1E51592b/logo.png differ diff --git a/blockchains/smartchain/assets/0x8b1869f79b9abF52001314A2E6990A96F039058D/info.json b/blockchains/smartchain/assets/0x8b1869f79b9abF52001314A2E6990A96F039058D/info.json new file mode 100644 index 0000000000000..e3c80cd64d84e --- /dev/null +++ b/blockchains/smartchain/assets/0x8b1869f79b9abF52001314A2E6990A96F039058D/info.json @@ -0,0 +1,21 @@ +{ + "name": "Andy", + "type": "BEP20", + "symbol": "ANDY", + "website": "https://andybnb.vip/", + "explorer": "https://bscscan.com/token/0x8b1869f79b9abF52001314A2E6990A96F039058D", + "decimals": 9, + "description": "Hi, I'm Andy, a cute yellow dog and arguably the most important character from Matt Furie's 'Boy's Club' comics.", + "status": "active", + "id": "0x8b1869f79b9abF52001314A2E6990A96F039058D", + "links": [ + { + "name": "telegram", + "url": "https://t.me/andycoinbsc" + }, + { + "name": "x", + "url": "https://x.com/andycoinbsc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8b1869f79b9abF52001314A2E6990A96F039058D/logo.png b/blockchains/smartchain/assets/0x8b1869f79b9abF52001314A2E6990A96F039058D/logo.png new file mode 100644 index 0000000000000..232a2ee388ed3 Binary files /dev/null and b/blockchains/smartchain/assets/0x8b1869f79b9abF52001314A2E6990A96F039058D/logo.png differ diff --git a/blockchains/smartchain/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/info.json b/blockchains/smartchain/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/info.json index 446a057492396..c7dc6798b9496 100644 --- a/blockchains/smartchain/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/info.json +++ b/blockchains/smartchain/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/info.json @@ -10,8 +10,8 @@ "id": "0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65", "links": [ { - "name": "twitter", - "url": "https://twitter.com/axelarcore" + "name": "x", + "url": "https://x.com/axelarcore" }, { "name": "github", @@ -65,4 +65,4 @@ "tags": [ "wrapped" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8b303d5BbfBbf46F1a4d9741E491e06986894e18/info.json b/blockchains/smartchain/assets/0x8b303d5BbfBbf46F1a4d9741E491e06986894e18/info.json index a953247aab999..7d67149aa86eb 100644 --- a/blockchains/smartchain/assets/0x8b303d5BbfBbf46F1a4d9741E491e06986894e18/info.json +++ b/blockchains/smartchain/assets/0x8b303d5BbfBbf46F1a4d9741E491e06986894e18/info.json @@ -25,8 +25,8 @@ "url": "https://t.me/woonkly" }, { - "name": "twitter", - "url": "https://twitter.com/WoonklyEN" + "name": "x", + "url": "https://x.com/WoonklyEN" }, { "name": "youtube", @@ -41,4 +41,4 @@ "url": "https://whitepaper.woonkly.com/woonkly.com-eng/" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8b6ACf6041A81567f012Ff6A4C6D96d5818d74bF/info.json b/blockchains/smartchain/assets/0x8b6ACf6041A81567f012Ff6A4C6D96d5818d74bF/info.json new file mode 100644 index 0000000000000..d7386c86ccb9f --- /dev/null +++ b/blockchains/smartchain/assets/0x8b6ACf6041A81567f012Ff6A4C6D96d5818d74bF/info.json @@ -0,0 +1,24 @@ +{ + "name": "Micron Technology (Ondo)", + "website": "https://ondo.finance/", + "description": "MUon is the Ondo Tokenized version of Micron Technology, giving tokenholders economic exposure similar to holding MU and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x8b6acf6041a81567f012ff6a4c6d96d5818d74bf", + "type": "BEP20", + "symbol": "MUon", + "decimals": 18, + "status": "active", + "id": "0x8b6ACf6041A81567f012Ff6A4C6D96d5818d74bF", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/micron-technology-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8b6ACf6041A81567f012Ff6A4C6D96d5818d74bF/logo.png b/blockchains/smartchain/assets/0x8b6ACf6041A81567f012Ff6A4C6D96d5818d74bF/logo.png new file mode 100644 index 0000000000000..b3e96e212ed38 Binary files /dev/null and b/blockchains/smartchain/assets/0x8b6ACf6041A81567f012Ff6A4C6D96d5818d74bF/logo.png differ diff --git a/blockchains/smartchain/assets/0x8b872732b07be325a8803CDB480D9d20B6f8d11B/info.json b/blockchains/smartchain/assets/0x8b872732b07be325a8803CDB480D9d20B6f8d11B/info.json new file mode 100644 index 0000000000000..6f5a4aaa915d7 --- /dev/null +++ b/blockchains/smartchain/assets/0x8b872732b07be325a8803CDB480D9d20B6f8d11B/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Silver Trust (Ondo)", + "website": "https://ondo.finance/", + "description": "SLVon is the Ondo Tokenized version of the iShares Silver Trust, giving tokenholders economic exposure similar to holding SLV and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x8b872732b07be325a8803cdb480d9d20b6f8d11b", + "type": "BEP20", + "symbol": "SLVon", + "decimals": 18, + "status": "active", + "id": "0x8b872732b07be325a8803CDB480D9d20B6f8d11B", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-silver-trust-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8b872732b07be325a8803CDB480D9d20B6f8d11B/logo.png b/blockchains/smartchain/assets/0x8b872732b07be325a8803CDB480D9d20B6f8d11B/logo.png new file mode 100644 index 0000000000000..140fda8b3582b Binary files /dev/null and b/blockchains/smartchain/assets/0x8b872732b07be325a8803CDB480D9d20B6f8d11B/logo.png differ diff --git a/blockchains/smartchain/assets/0x8bAc6b4AF65C8c1967a0FBc27cd37FD6059daa00/info.json b/blockchains/smartchain/assets/0x8bAc6b4AF65C8c1967a0FBc27cd37FD6059daa00/info.json index 96d02d8d24d10..09d22b5648cb3 100644 --- a/blockchains/smartchain/assets/0x8bAc6b4AF65C8c1967a0FBc27cd37FD6059daa00/info.json +++ b/blockchains/smartchain/assets/0x8bAc6b4AF65C8c1967a0FBc27cd37FD6059daa00/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/SphynxNetworkGitHub" }, { - "name": "twitter", - "url": "https://twitter.com/SphynxNetwork" + "name": "x", + "url": "https://x.com/SphynxNetwork" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0x8baf35803b452836a05A3e01ac36F3DDbF98bbE8/info.json b/blockchains/smartchain/assets/0x8baf35803b452836a05A3e01ac36F3DDbF98bbE8/info.json index bd1fa5b1d5300..785eb0e7df6a4 100644 --- a/blockchains/smartchain/assets/0x8baf35803b452836a05A3e01ac36F3DDbF98bbE8/info.json +++ b/blockchains/smartchain/assets/0x8baf35803b452836a05A3e01ac36F3DDbF98bbE8/info.json @@ -10,8 +10,8 @@ "id": "0x8baf35803b452836a05A3e01ac36F3DDbF98bbE8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/loveswapdex" + "name": "x", + "url": "https://x.com/loveswapdex" }, { "name": "whitepaper", diff --git a/blockchains/smartchain/assets/0x8beAbaa4f025D00B4699d56a683758d692d17F20/info.json b/blockchains/smartchain/assets/0x8beAbaa4f025D00B4699d56a683758d692d17F20/info.json index 20c43ab69e46f..6358bdaa6886d 100644 --- a/blockchains/smartchain/assets/0x8beAbaa4f025D00B4699d56a683758d692d17F20/info.json +++ b/blockchains/smartchain/assets/0x8beAbaa4f025D00B4699d56a683758d692d17F20/info.json @@ -10,8 +10,8 @@ "id": "0x8beAbaa4f025D00B4699d56a683758d692d17F20", "links": [ { - "name": "twitter", - "url": "https://twitter.com/officialbabyxrp" + "name": "x", + "url": "https://x.com/officialbabyxrp" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x8c025B35826e6C928769e3C7BA2d999999999999/info.json b/blockchains/smartchain/assets/0x8c025B35826e6C928769e3C7BA2d999999999999/info.json new file mode 100644 index 0000000000000..8475d5b1e00cf --- /dev/null +++ b/blockchains/smartchain/assets/0x8c025B35826e6C928769e3C7BA2d999999999999/info.json @@ -0,0 +1,17 @@ +{ + "name": "ATM", + "website": "https://atmbsc.top/", + "description": "With the continuous development of blockchain technology, ATM (Automated Teller Machine) cryptocurrency, as a new type of financial transaction tool, is gradually changing our understanding of the traditional monetary system", + "explorer": "https://bscscan.com/token/0x8c025b35826e6c928769e3c7ba2d999999999999", + "type": "BEP20", + "symbol": "ATM", + "decimals": 18, + "status": "active", + "id": "0x8c025B35826e6C928769e3C7BA2d999999999999", + "links": [ + { + "name": "x", + "url": "https://x.com/ATMGCSQ" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8c025B35826e6C928769e3C7BA2d999999999999/logo.png b/blockchains/smartchain/assets/0x8c025B35826e6C928769e3C7BA2d999999999999/logo.png new file mode 100644 index 0000000000000..ce0a9b688e641 Binary files /dev/null and b/blockchains/smartchain/assets/0x8c025B35826e6C928769e3C7BA2d999999999999/logo.png differ diff --git a/blockchains/smartchain/assets/0x8c282eA9eACd1B95D44a3A18DCdd1D0472868998/info.json b/blockchains/smartchain/assets/0x8c282eA9eACd1B95D44a3A18DCdd1D0472868998/info.json index 0b94b81d0767c..b236496023225 100644 --- a/blockchains/smartchain/assets/0x8c282eA9eACd1B95D44a3A18DCdd1D0472868998/info.json +++ b/blockchains/smartchain/assets/0x8c282eA9eACd1B95D44a3A18DCdd1D0472868998/info.json @@ -17,8 +17,8 @@ "url": "https://t.me/AncientCommunity" }, { - "name": "twitter", - "url": "https://twitter.com/AncientKingNft" + "name": "x", + "url": "https://x.com/AncientKingNft" }, { "name": "youtube", @@ -29,4 +29,4 @@ "url": "https://discord.com/invite/gXHFkvva6a" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8c33Bca75E75F63C4Ba7C57C083935ce4BD49f59/info.json b/blockchains/smartchain/assets/0x8c33Bca75E75F63C4Ba7C57C083935ce4BD49f59/info.json new file mode 100644 index 0000000000000..84559ca2e669e --- /dev/null +++ b/blockchains/smartchain/assets/0x8c33Bca75E75F63C4Ba7C57C083935ce4BD49f59/info.json @@ -0,0 +1,17 @@ +{ + "name": "FourAi", + "symbol": "FourAi", + "website": "https://www.fourai.live", + "description": "FourAi is powered by the Deepseek R1 model, offering a next-level AI conversational experience.", + "explorer": "https://bscscan.com/token/0x8c33bca75e75f63c4ba7c57c083935ce4bd49f59", + "decimals": 18, + "status": "active", + "id": "0x8c33Bca75E75F63C4Ba7C57C083935ce4BD49f59", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/Four_Ai_" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8c33Bca75E75F63C4Ba7C57C083935ce4BD49f59/logo.png b/blockchains/smartchain/assets/0x8c33Bca75E75F63C4Ba7C57C083935ce4BD49f59/logo.png new file mode 100644 index 0000000000000..33e1b952cf1ba Binary files /dev/null and b/blockchains/smartchain/assets/0x8c33Bca75E75F63C4Ba7C57C083935ce4BD49f59/logo.png differ diff --git a/blockchains/smartchain/assets/0x8c53BA0003FA381aDd7c5115d833D1Bbf0698888/info.json b/blockchains/smartchain/assets/0x8c53BA0003FA381aDd7c5115d833D1Bbf0698888/info.json new file mode 100644 index 0000000000000..59277ad95f4bd --- /dev/null +++ b/blockchains/smartchain/assets/0x8c53BA0003FA381aDd7c5115d833D1Bbf0698888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tеthеr", + "type": "BEP20", + "symbol": "FAKE ՍSDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x8c53BA0003FA381aDd7c5115d833D1Bbf0698888", + "explorer": "https://bscscan.com/token/0x8c53BA0003FA381aDd7c5115d833D1Bbf0698888", + "status": "spam", + "id": "0x8c53BA0003FA381aDd7c5115d833D1Bbf0698888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8c9979Dc208f74a5602c38691aa920F121e2f863/info.json b/blockchains/smartchain/assets/0x8c9979Dc208f74a5602c38691aa920F121e2f863/info.json new file mode 100644 index 0000000000000..18dff0fcad6a8 --- /dev/null +++ b/blockchains/smartchain/assets/0x8c9979Dc208f74a5602c38691aa920F121e2f863/info.json @@ -0,0 +1,24 @@ +{ + "name": "Vertex Pharmaceuticals (Ondo Tokenized)", + "type": "BEP20", + "symbol": "VRTXon", + "decimals": 18, + "description": "VRTXon is the Ondo Tokenized version of Vertex Pharmaceuticals, giving tokenholders economic exposure similar to holding VRTX and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x8c9979Dc208f74a5602c38691aa920F121e2f863", + "status": "active", + "id": "0x8c9979Dc208f74a5602c38691aa920F121e2f863", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vertex-pharmaceuticals-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8c9979Dc208f74a5602c38691aa920F121e2f863/logo.png b/blockchains/smartchain/assets/0x8c9979Dc208f74a5602c38691aa920F121e2f863/logo.png new file mode 100644 index 0000000000000..312aef2864921 Binary files /dev/null and b/blockchains/smartchain/assets/0x8c9979Dc208f74a5602c38691aa920F121e2f863/logo.png differ diff --git a/blockchains/smartchain/assets/0x8cc7E2a6de999758499658bB702143FD025E09B2/info.json b/blockchains/smartchain/assets/0x8cc7E2a6de999758499658bB702143FD025E09B2/info.json index 2ba32ce20fffc..018677f84094b 100644 --- a/blockchains/smartchain/assets/0x8cc7E2a6de999758499658bB702143FD025E09B2/info.json +++ b/blockchains/smartchain/assets/0x8cc7E2a6de999758499658bB702143FD025E09B2/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/CreamFi" }, { - "name": "twitter", - "url": "https://twitter.com/CreamdotFinance" + "name": "x", + "url": "https://x.com/CreamdotFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x8cf8238abf7b933Bf8BB5Ea2C7E4Be101c11de2A/info.json b/blockchains/smartchain/assets/0x8cf8238abf7b933Bf8BB5Ea2C7E4Be101c11de2A/info.json index 341d535ff9b8d..d384279091323 100644 --- a/blockchains/smartchain/assets/0x8cf8238abf7b933Bf8BB5Ea2C7E4Be101c11de2A/info.json +++ b/blockchains/smartchain/assets/0x8cf8238abf7b933Bf8BB5Ea2C7E4Be101c11de2A/info.json @@ -10,8 +10,8 @@ "id": "0x8cf8238abf7b933Bf8BB5Ea2C7E4Be101c11de2A", "links": [ { - "name": "twitter", - "url": "https://twitter.com/xpnetwork_" + "name": "x", + "url": "https://x.com/xpnetwork_" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x8d0C064AB0973fE124Fa9EFAAd492060bAaCb62c/info.json b/blockchains/smartchain/assets/0x8d0C064AB0973fE124Fa9EFAAd492060bAaCb62c/info.json new file mode 100644 index 0000000000000..83310fc9c466e --- /dev/null +++ b/blockchains/smartchain/assets/0x8d0C064AB0973fE124Fa9EFAAd492060bAaCb62c/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT CATX", + "type": "BEP20", + "symbol": "HONEYPOT CATX", + "decimals": 9, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x8d0c064ab0973fe124fa9efaad492060baacb62c", + "explorer": "https://bscscan.com/token/0x8d0c064ab0973fe124fa9efaad492060baacb62c", + "status": "spam", + "id": "0x8d0C064AB0973fE124Fa9EFAAd492060bAaCb62c" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8d0D000Ee44948FC98c9B98A4FA4921476f08B0d/info.json b/blockchains/smartchain/assets/0x8d0D000Ee44948FC98c9B98A4FA4921476f08B0d/info.json new file mode 100644 index 0000000000000..d011d487c1e30 --- /dev/null +++ b/blockchains/smartchain/assets/0x8d0D000Ee44948FC98c9B98A4FA4921476f08B0d/info.json @@ -0,0 +1,20 @@ +{ + "name": "World Liberty Financial USD", + "type": "BEP20", + "symbol": "USD1", + "decimals": 18, + "description": "A stablecoin by World Liberty Financial, redeemable 1:1 for the U.S. dollar and backed by U.S. treasuries, dollar deposits, and other cash equivalents.", + "website": "https://www.worldlibertyfinancial.com/", + "explorer": "https://bscscan.com/token/0x8d0D000Ee44948FC98c9B98A4FA4921476f08B0d", + "status": "active", + "id": "0x8d0D000Ee44948FC98c9B98A4FA4921476f08B0d", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd1/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8d0D000Ee44948FC98c9B98A4FA4921476f08B0d/logo.png b/blockchains/smartchain/assets/0x8d0D000Ee44948FC98c9B98A4FA4921476f08B0d/logo.png new file mode 100644 index 0000000000000..444ccb6501eeb Binary files /dev/null and b/blockchains/smartchain/assets/0x8d0D000Ee44948FC98c9B98A4FA4921476f08B0d/logo.png differ diff --git a/blockchains/smartchain/assets/0x8d13daD81e66d55aEE6320BcBdB3a355fC804444/info.json b/blockchains/smartchain/assets/0x8d13daD81e66d55aEE6320BcBdB3a355fC804444/info.json new file mode 100644 index 0000000000000..ad37f6167a0d7 --- /dev/null +++ b/blockchains/smartchain/assets/0x8d13daD81e66d55aEE6320BcBdB3a355fC804444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE United Stables", + "type": "BEP20", + "symbol": "FAKE U", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x8d13daD81e66d55aEE6320BcBdB3a355fC804444", + "explorer": "https://bscscan.com/token/0x8d13daD81e66d55aEE6320BcBdB3a355fC804444", + "status": "spam", + "id": "0x8d13daD81e66d55aEE6320BcBdB3a355fC804444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8d2F15Dccbf9cb28Ad8c564753f7C4bf30638151/info.json b/blockchains/smartchain/assets/0x8d2F15Dccbf9cb28Ad8c564753f7C4bf30638151/info.json index b17b730297598..5b1ec9f762dc8 100644 --- a/blockchains/smartchain/assets/0x8d2F15Dccbf9cb28Ad8c564753f7C4bf30638151/info.json +++ b/blockchains/smartchain/assets/0x8d2F15Dccbf9cb28Ad8c564753f7C4bf30638151/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/CVD19" }, { - "name": "twitter", - "url": "https://twitter.com/nocovid19_cvd19" + "name": "x", + "url": "https://x.com/nocovid19_cvd19" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x8d715f8e33CA31d00936E04addE913176df94fE5/info.json b/blockchains/smartchain/assets/0x8d715f8e33CA31d00936E04addE913176df94fE5/info.json new file mode 100644 index 0000000000000..b4ec1bb5a2109 --- /dev/null +++ b/blockchains/smartchain/assets/0x8d715f8e33CA31d00936E04addE913176df94fE5/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE MYX", + "website": "https://bscscan.com/address/0x8d715f8e33CA31d00936E04addE913176df94fE5", + "description": "FAKE MYX FOR BLACKLISTING", + "explorer": "https://bscscan.com/token/0x8d715f8e33CA31d00936E04addE913176df94fE5", + "type": "BEP20", + "symbol": "MYX", + "decimals": 18, + "status": "spam", + "id": "0x8d715f8e33CA31d00936E04addE913176df94fE5" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8d9fB713587174Ee97e91866050c383b5cEE6209/info.json b/blockchains/smartchain/assets/0x8d9fB713587174Ee97e91866050c383b5cEE6209/info.json index 21dedc5facd43..362fbff9b334f 100644 --- a/blockchains/smartchain/assets/0x8d9fB713587174Ee97e91866050c383b5cEE6209/info.json +++ b/blockchains/smartchain/assets/0x8d9fB713587174Ee97e91866050c383b5cEE6209/info.json @@ -17,8 +17,8 @@ "url": "https://t.me/Velhallaofficial" }, { - "name": "twitter", - "url": "https://twitter.com/velhallaproject" + "name": "x", + "url": "https://x.com/velhallaproject" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x8dA443F84fEA710266C8eB6bC34B71702d033EF2/info.json b/blockchains/smartchain/assets/0x8dA443F84fEA710266C8eB6bC34B71702d033EF2/info.json index daf2cd616e3c3..995db9c7c7d84 100644 --- a/blockchains/smartchain/assets/0x8dA443F84fEA710266C8eB6bC34B71702d033EF2/info.json +++ b/blockchains/smartchain/assets/0x8dA443F84fEA710266C8eB6bC34B71702d033EF2/info.json @@ -1,5 +1,5 @@ { - "name": "Cartesi Token", + "name": "Cartesi", "website": "https://cartesi.io", "description": "Cartesi Takes Smart Contracts to the Next Level.", "explorer": "https://bscscan.com/token/0x8da443f84fea710266c8eb6bc34b71702d033ef2", diff --git a/blockchains/smartchain/assets/0x8dB1D28Ee0d822367aF8d220C0dc7cB6fe9DC442/info.json b/blockchains/smartchain/assets/0x8dB1D28Ee0d822367aF8d220C0dc7cB6fe9DC442/info.json index 815ae634f74f8..5e6f2b271404d 100644 --- a/blockchains/smartchain/assets/0x8dB1D28Ee0d822367aF8d220C0dc7cB6fe9DC442/info.json +++ b/blockchains/smartchain/assets/0x8dB1D28Ee0d822367aF8d220C0dc7cB6fe9DC442/info.json @@ -10,8 +10,8 @@ "id": "0x8dB1D28Ee0d822367aF8d220C0dc7cB6fe9DC442", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ethpadofficial" + "name": "x", + "url": "https://x.com/ethpadofficial" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x8dDB97556F6ae98B4d408c56B167139fE1Cbe3e8/info.json b/blockchains/smartchain/assets/0x8dDB97556F6ae98B4d408c56B167139fE1Cbe3e8/info.json new file mode 100644 index 0000000000000..961740d883e36 --- /dev/null +++ b/blockchains/smartchain/assets/0x8dDB97556F6ae98B4d408c56B167139fE1Cbe3e8/info.json @@ -0,0 +1,28 @@ +{ + "name": "Citigroup (Ondo Tokenized)", + "type": "BEP20", + "symbol": "Con", + "decimals": 18, + "description": "Con is the Ondo Tokenized version of Citigroup, giving tokenholders economic exposure similar to holding C and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x8dDB97556F6ae98B4d408c56B167139fE1Cbe3e8", + "status": "active", + "id": "0x8dDB97556F6ae98B4d408c56B167139fE1Cbe3e8", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/citigroup-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/citigroup-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8dDB97556F6ae98B4d408c56B167139fE1Cbe3e8/logo.png b/blockchains/smartchain/assets/0x8dDB97556F6ae98B4d408c56B167139fE1Cbe3e8/logo.png new file mode 100644 index 0000000000000..2cb3905797b56 Binary files /dev/null and b/blockchains/smartchain/assets/0x8dDB97556F6ae98B4d408c56B167139fE1Cbe3e8/logo.png differ diff --git a/blockchains/smartchain/assets/0x8e11E90B463bf521382E2B88539F053270a3848c/info.json b/blockchains/smartchain/assets/0x8e11E90B463bf521382E2B88539F053270a3848c/info.json new file mode 100644 index 0000000000000..32092f81c1a38 --- /dev/null +++ b/blockchains/smartchain/assets/0x8e11E90B463bf521382E2B88539F053270a3848c/info.json @@ -0,0 +1,17 @@ +{ + "name": "TTAI", + "website": "https://tagai.fun/tag-detail/TTAI", + "description": "Official Test coin of TagAI, A community-driven AI Agent Launchpad & Social Evolution Distribution Protocol | Interaction Layer for multi-AI and multi-Human.", + "explorer": "https://bscscan.com/token/0x8e11e90b463bf521382e2b88539f053270a3848c", + "type": "BEP20", + "symbol": "TTAI", + "decimals": 18, + "status": "active", + "id": "0x8e11E90B463bf521382E2B88539F053270a3848c", + "links": [ + { + "name": "x", + "url": "https://x.com/TagAIDAO" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8e11E90B463bf521382E2B88539F053270a3848c/logo.png b/blockchains/smartchain/assets/0x8e11E90B463bf521382E2B88539F053270a3848c/logo.png new file mode 100644 index 0000000000000..14b0f8b9eaebf Binary files /dev/null and b/blockchains/smartchain/assets/0x8e11E90B463bf521382E2B88539F053270a3848c/logo.png differ diff --git a/blockchains/smartchain/assets/0x8e17ed70334C87eCE574C9d537BC153d8609e2a3/info.json b/blockchains/smartchain/assets/0x8e17ed70334C87eCE574C9d537BC153d8609e2a3/info.json index 1dedaef2cdf27..d9ae722482af6 100644 --- a/blockchains/smartchain/assets/0x8e17ed70334C87eCE574C9d537BC153d8609e2a3/info.json +++ b/blockchains/smartchain/assets/0x8e17ed70334C87eCE574C9d537BC153d8609e2a3/info.json @@ -15,8 +15,8 @@ "url": "https://download.wazirx.com/wrx/wrx-whitepaper.pdf" }, { - "name": "twitter", - "url": "https://twitter.com/wazirxindiap" + "name": "x", + "url": "https://x.com/wazirxindiap" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x8e2D8f40818FbaBA663Db6a24FB9B527Fc7100BE/info.json b/blockchains/smartchain/assets/0x8e2D8f40818FbaBA663Db6a24FB9B527Fc7100BE/info.json index 410e5c89f0137..530a558f47c87 100644 --- a/blockchains/smartchain/assets/0x8e2D8f40818FbaBA663Db6a24FB9B527Fc7100BE/info.json +++ b/blockchains/smartchain/assets/0x8e2D8f40818FbaBA663Db6a24FB9B527Fc7100BE/info.json @@ -10,8 +10,8 @@ "id": "0x8e2D8f40818FbaBA663Db6a24FB9B527Fc7100BE", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ORESystemNFT" + "name": "x", + "url": "https://x.com/ORESystemNFT" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x8e428aA75b271EbF905DB7e3F2970453E976481e/info.json b/blockchains/smartchain/assets/0x8e428aA75b271EbF905DB7e3F2970453E976481e/info.json index bb9b8ba14f8c3..ec5585b53b414 100644 --- a/blockchains/smartchain/assets/0x8e428aA75b271EbF905DB7e3F2970453E976481e/info.json +++ b/blockchains/smartchain/assets/0x8e428aA75b271EbF905DB7e3F2970453E976481e/info.json @@ -10,8 +10,8 @@ "id": "0x8e428aA75b271EbF905DB7e3F2970453E976481e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/token_next" + "name": "x", + "url": "https://x.com/token_next" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x8e87DB40C5E9335a8FE19333Ffc19AD95C665f60/info.json b/blockchains/smartchain/assets/0x8e87DB40C5E9335a8FE19333Ffc19AD95C665f60/info.json index c8ff04a6150a4..925a47de6f6b1 100644 --- a/blockchains/smartchain/assets/0x8e87DB40C5E9335a8FE19333Ffc19AD95C665f60/info.json +++ b/blockchains/smartchain/assets/0x8e87DB40C5E9335a8FE19333Ffc19AD95C665f60/info.json @@ -10,8 +10,8 @@ "id": "0x8e87DB40C5E9335a8FE19333Ffc19AD95C665f60", "links": [ { - "name": "twitter", - "url": "https://twitter.com/tokendooit" + "name": "x", + "url": "https://x.com/tokendooit" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x8e9e4a8d7f1C65dcB42D9103832b27E75946055D/info.json b/blockchains/smartchain/assets/0x8e9e4a8d7f1C65dcB42D9103832b27E75946055D/info.json new file mode 100644 index 0000000000000..417ab014f2789 --- /dev/null +++ b/blockchains/smartchain/assets/0x8e9e4a8d7f1C65dcB42D9103832b27E75946055D/info.json @@ -0,0 +1,20 @@ +{ + "name": "abrdn Physical Platinum Shares xStock", + "type": "BEP20", + "symbol": "PPLTx", + "decimals": 18, + "description": "abrdn Physical Platinum Shares xStock (PPLTx) is a tracker certificate issued as a freely transferable token on selected blockchains. PPLTx tracks the price of abrdn Physical Platinum Shares ETF. PPLTx is designed to give eligible investors regulatory-compliant access to the stock price of abrdn Physical Platinum Shares ETF, whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x8e9e4a8d7f1C65dcB42D9103832b27E75946055D", + "status": "active", + "id": "0x8e9e4a8d7f1C65dcB42D9103832b27E75946055D", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8e9e4a8d7f1C65dcB42D9103832b27E75946055D/logo.png b/blockchains/smartchain/assets/0x8e9e4a8d7f1C65dcB42D9103832b27E75946055D/logo.png new file mode 100644 index 0000000000000..86dba01d3bb3b Binary files /dev/null and b/blockchains/smartchain/assets/0x8e9e4a8d7f1C65dcB42D9103832b27E75946055D/logo.png differ diff --git a/blockchains/smartchain/assets/0x8ebC361536094fD5B4FFB8521E31900614C9F55D/info.json b/blockchains/smartchain/assets/0x8ebC361536094fD5B4FFB8521E31900614C9F55D/info.json index 6d8943350feca..4c17ad581191e 100644 --- a/blockchains/smartchain/assets/0x8ebC361536094fD5B4FFB8521E31900614C9F55D/info.json +++ b/blockchains/smartchain/assets/0x8ebC361536094fD5B4FFB8521E31900614C9F55D/info.json @@ -10,8 +10,8 @@ "id": "0x8ebC361536094fD5B4FFB8521E31900614C9F55D", "links": [ { - "name": "twitter", - "url": "https://twitter.com/KNSTL_TECH" + "name": "x", + "url": "https://x.com/KNSTL_TECH" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/info.json b/blockchains/smartchain/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/info.json index e23ce6c77be5d..06bcbaf2f48a3 100644 --- a/blockchains/smartchain/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/info.json +++ b/blockchains/smartchain/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/cherrynetwork" }, { - "name": "twitter", - "url": "https://twitter.com/cherry_network" + "name": "x", + "url": "https://x.com/cherry_network" }, { "name": "telegram", @@ -31,7 +31,6 @@ } ], "tags": [ - "staking-native", "wrapped" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8f4087Cb09E0F378f4278a314C94A636665dE24b/info.json b/blockchains/smartchain/assets/0x8f4087Cb09E0F378f4278a314C94A636665dE24b/info.json index 7b42bd4347454..3f76459fe526a 100644 --- a/blockchains/smartchain/assets/0x8f4087Cb09E0F378f4278a314C94A636665dE24b/info.json +++ b/blockchains/smartchain/assets/0x8f4087Cb09E0F378f4278a314C94A636665dE24b/info.json @@ -10,8 +10,8 @@ "id": "0x8f4087Cb09E0F378f4278a314C94A636665dE24b", "links": [ { - "name": "twitter", - "url": "https://twitter.com/narwhalswap" + "name": "x", + "url": "https://x.com/narwhalswap" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x8fE8df37335EDB6E9F41F6baF550d2A973F48f21/info.json b/blockchains/smartchain/assets/0x8fE8df37335EDB6E9F41F6baF550d2A973F48f21/info.json index 4a5270f55da7c..822bc5f1376df 100644 --- a/blockchains/smartchain/assets/0x8fE8df37335EDB6E9F41F6baF550d2A973F48f21/info.json +++ b/blockchains/smartchain/assets/0x8fE8df37335EDB6E9F41F6baF550d2A973F48f21/info.json @@ -10,8 +10,8 @@ "id": "0x8fE8df37335EDB6E9F41F6baF550d2A973F48f21", "links": [ { - "name": "twitter", - "url": "https://twitter.com/coinerr_err" + "name": "x", + "url": "https://x.com/coinerr_err" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf/info.json b/blockchains/smartchain/assets/0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf/info.json index 6f1572d15df56..b32c386f8f4e8 100644 --- a/blockchains/smartchain/assets/0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf/info.json +++ b/blockchains/smartchain/assets/0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf/info.json @@ -1,5 +1,5 @@ { - "name": "BNB pegged Bitcoin Cash Token", + "name": "Bitcoin Cash", "website": "https://bitcoincash.org", "description": "Bitcoin ABC is an electronic cash platform that allows peer-to-peer online cash payments. It is a fork (a copy in a way) of Bitcoin (BTC).", "explorer": "https://bscscan.com/token/0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf", diff --git a/blockchains/smartchain/assets/0x9000Cac49C3841926Baac5b2E13c87D43e51B6a4/info.json b/blockchains/smartchain/assets/0x9000Cac49C3841926Baac5b2E13c87D43e51B6a4/info.json index b6fca1734344d..65ccaa893b654 100644 --- a/blockchains/smartchain/assets/0x9000Cac49C3841926Baac5b2E13c87D43e51B6a4/info.json +++ b/blockchains/smartchain/assets/0x9000Cac49C3841926Baac5b2E13c87D43e51B6a4/info.json @@ -10,8 +10,8 @@ "id": "0x9000Cac49C3841926Baac5b2E13c87D43e51B6a4", "links": [ { - "name": "twitter", - "url": "https://twitter.com/portuma" + "name": "x", + "url": "https://x.com/portuma" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x9001fD53504F7Bf253296cfFAdF5b6030CD61abb/info.json b/blockchains/smartchain/assets/0x9001fD53504F7Bf253296cfFAdF5b6030CD61abb/info.json index 6b41a15cb88ef..1eb9fc4a7413e 100644 --- a/blockchains/smartchain/assets/0x9001fD53504F7Bf253296cfFAdF5b6030CD61abb/info.json +++ b/blockchains/smartchain/assets/0x9001fD53504F7Bf253296cfFAdF5b6030CD61abb/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/CyberFM/" }, { - "name": "twitter", - "url": "https://twitter.com/CyberFM" + "name": "x", + "url": "https://x.com/CyberFM" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x901cde16883306012500c609a9834dDC935d4444/info.json b/blockchains/smartchain/assets/0x901cde16883306012500c609a9834dDC935d4444/info.json new file mode 100644 index 0000000000000..0e48cc336aa2b --- /dev/null +++ b/blockchains/smartchain/assets/0x901cde16883306012500c609a9834dDC935d4444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDKG", + "type": "BEP20", + "symbol": "FAKE USDKG", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x901cde16883306012500c609a9834dDC935d4444", + "explorer": "https://bscscan.com/token/0x901cde16883306012500c609a9834dDC935d4444", + "status": "spam", + "id": "0x901cde16883306012500c609a9834dDC935d4444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x90561f53a83D97C383E4842960969a6d9cfe1Ba9/info.json b/blockchains/smartchain/assets/0x90561f53a83D97C383E4842960969a6d9cfe1Ba9/info.json new file mode 100644 index 0000000000000..316b65f4e1c14 --- /dev/null +++ b/blockchains/smartchain/assets/0x90561f53a83D97C383E4842960969a6d9cfe1Ba9/info.json @@ -0,0 +1,20 @@ +{ + "name": "Quanta Services, Inc. xStock", + "type": "BEP20", + "symbol": "PWRx", + "decimals": 18, + "description": "Quanta Services, Inc. xStock (PWRx) is a tracker certificate issued as a freely transferable token on selected blockchains. PWRx tracks the price of Quanta Services, Inc.. PWRx is designed to give eligible investors regulatory-compliant access to the stock price of Quanta Services, Inc., whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x90561f53a83D97C383E4842960969a6d9cfe1Ba9", + "status": "active", + "id": "0x90561f53a83D97C383E4842960969a6d9cfe1Ba9", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x90561f53a83D97C383E4842960969a6d9cfe1Ba9/logo.png b/blockchains/smartchain/assets/0x90561f53a83D97C383E4842960969a6d9cfe1Ba9/logo.png new file mode 100644 index 0000000000000..11f404be4adf0 Binary files /dev/null and b/blockchains/smartchain/assets/0x90561f53a83D97C383E4842960969a6d9cfe1Ba9/logo.png differ diff --git a/blockchains/smartchain/assets/0x90727C1195fB2246fd758172f9253873790d06a4/info.json b/blockchains/smartchain/assets/0x90727C1195fB2246fd758172f9253873790d06a4/info.json index a41c774bc5c55..2bc93bff9ff53 100644 --- a/blockchains/smartchain/assets/0x90727C1195fB2246fd758172f9253873790d06a4/info.json +++ b/blockchains/smartchain/assets/0x90727C1195fB2246fd758172f9253873790d06a4/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Etheratoken" }, { - "name": "twitter", - "url": "https://twitter.com/Etheratoken" + "name": "x", + "url": "https://x.com/Etheratoken" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x9075055C3Ee590Ee0d7a2e1EF4376A851369E8E0/info.json b/blockchains/smartchain/assets/0x9075055C3Ee590Ee0d7a2e1EF4376A851369E8E0/info.json index 15b0ce8e0129c..f2f35fc956356 100644 --- a/blockchains/smartchain/assets/0x9075055C3Ee590Ee0d7a2e1EF4376A851369E8E0/info.json +++ b/blockchains/smartchain/assets/0x9075055C3Ee590Ee0d7a2e1EF4376A851369E8E0/info.json @@ -6,12 +6,12 @@ "website": "https://fqswap.org/", "description": "FQS is a hyper deflationary token created and thought by holders, it work as an independent liquidity generation protocol and Frictionless autonomous yield farming together with manual buyback features.FQS Holders benefit through static reward and also Through the Buy-Back strategy built into the contract.All You need to do is hold FQS.", "explorer": "https://bscscan.com/token/0x9075055C3Ee590Ee0d7a2e1EF4376A851369E8E0", - "status": "active", + "status": "abandoned", "id": "0x9075055C3Ee590Ee0d7a2e1EF4376A851369E8E0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/fqswap" + "name": "x", + "url": "https://x.com/fqswap" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x9075055C3Ee590Ee0d7a2e1EF4376A851369E8E0/logo.png b/blockchains/smartchain/assets/0x9075055C3Ee590Ee0d7a2e1EF4376A851369E8E0/logo.png deleted file mode 100644 index e6e0da6be0d0b..0000000000000 Binary files a/blockchains/smartchain/assets/0x9075055C3Ee590Ee0d7a2e1EF4376A851369E8E0/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x9085B4d52c3e0B8B6F9AF6213E85A433c7D76f19/info.json b/blockchains/smartchain/assets/0x9085B4d52c3e0B8B6F9AF6213E85A433c7D76f19/info.json index 812196c37be62..7c95fd6d634fc 100644 --- a/blockchains/smartchain/assets/0x9085B4d52c3e0B8B6F9AF6213E85A433c7D76f19/info.json +++ b/blockchains/smartchain/assets/0x9085B4d52c3e0B8B6F9AF6213E85A433c7D76f19/info.json @@ -10,8 +10,8 @@ "id": "0x9085B4d52c3e0B8B6F9AF6213E85A433c7D76f19", "links": [ { - "name": "twitter", - "url": "https://twitter.com/OWLDAOio" + "name": "x", + "url": "https://x.com/OWLDAOio" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x90869b3a42E399951bd5F5fF278B8CC5ee1Dc0fE/info.json b/blockchains/smartchain/assets/0x90869b3a42E399951bd5F5fF278B8CC5ee1Dc0fE/info.json new file mode 100644 index 0000000000000..41e1daacbe6ff --- /dev/null +++ b/blockchains/smartchain/assets/0x90869b3a42E399951bd5F5fF278B8CC5ee1Dc0fE/info.json @@ -0,0 +1,25 @@ +{ + "name": "REVOX Governance Token", + "type": "BEP20", + "symbol": "REX", + "decimals": 18, + "website": "https://revox.ai", + "description": "REVOX.AI is building the shared AI interface for Web3 through its permissionless machine learning infrastructure, empowering the construction and innovation of decentralized AI applications through modular agents. REX is the primary governance token of REVOX.", + "explorer": "https://bscscan.com/token/0x90869b3a42E399951bd5F5fF278B8CC5ee1Dc0fE", + "status": "active", + "id": "0x90869b3a42E399951bd5F5fF278B8CC5ee1Dc0fE", + "links": [ + { + "name": "x", + "url": "https://x.com/readonme3" + }, + { + "name": "whitepaper", + "url": "https://docs.revox.ai" + } + ], + "tags": [ + "dapp", + "governance" + ] +} diff --git a/blockchains/smartchain/assets/0x90869b3a42E399951bd5F5fF278B8CC5ee1Dc0fE/logo.png b/blockchains/smartchain/assets/0x90869b3a42E399951bd5F5fF278B8CC5ee1Dc0fE/logo.png new file mode 100644 index 0000000000000..9779f3e48ba00 Binary files /dev/null and b/blockchains/smartchain/assets/0x90869b3a42E399951bd5F5fF278B8CC5ee1Dc0fE/logo.png differ diff --git a/blockchains/smartchain/assets/0x9095e8d707E40982aFFce41C61c10895157A1B22/info.json b/blockchains/smartchain/assets/0x9095e8d707E40982aFFce41C61c10895157A1B22/info.json index 6e2d44828bec6..1ff4b8ba21f3e 100644 --- a/blockchains/smartchain/assets/0x9095e8d707E40982aFFce41C61c10895157A1B22/info.json +++ b/blockchains/smartchain/assets/0x9095e8d707E40982aFFce41C61c10895157A1B22/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/CreamFi" }, { - "name": "twitter", - "url": "https://twitter.com/CreamdotFinance" + "name": "x", + "url": "https://x.com/CreamdotFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x9096B4309224d751FCB43d7eB178dcFFc122aD15/info.json b/blockchains/smartchain/assets/0x9096B4309224d751FCB43d7eB178dcFFc122aD15/info.json index 8a9f38bce4e35..a0c45bf180754 100644 --- a/blockchains/smartchain/assets/0x9096B4309224d751FCB43d7eB178dcFFc122aD15/info.json +++ b/blockchains/smartchain/assets/0x9096B4309224d751FCB43d7eB178dcFFc122aD15/info.json @@ -10,8 +10,8 @@ "id": "0x9096B4309224d751FCB43d7eB178dcFFc122aD15", "links": [ { - "name": "twitter", - "url": "https://twitter.com/LegionNetwork__" + "name": "x", + "url": "https://x.com/LegionNetwork__" }, { "name": "github", @@ -47,4 +47,4 @@ "defi", "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48/info.json b/blockchains/smartchain/assets/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48/info.json new file mode 100644 index 0000000000000..a0d962fe93df3 --- /dev/null +++ b/blockchains/smartchain/assets/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48/info.json @@ -0,0 +1,24 @@ +{ + "name": "SP500 tokenized ETF (xStock)", + "website": "https://assets.backed.fi/products", + "description": "SP500 tokenized ETF (xStock) (SPYX) is a cryptocurrency and operates on the Solana platform. SP500 tokenized ETF (xStock) has a current supply of 15,999.19889527. The last known price of SP500 tokenized ETF (xStock) is 662.57535897 USD and is up 0.48 over the last 24 hours. It is currently trading on 29 active market(s) with $2,070,018.72 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/sp500-xstock.", + "explorer": "https://bscscan.com/token/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48", + "type": "BEP20", + "symbol": "SPYX", + "decimals": 18, + "status": "active", + "id": "0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sp500-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48/logo.png b/blockchains/smartchain/assets/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48/logo.png new file mode 100644 index 0000000000000..c4ee269a58492 Binary files /dev/null and b/blockchains/smartchain/assets/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48/logo.png differ diff --git a/blockchains/smartchain/assets/0x90Ed8F1dc86388f14b64ba8fb4bbd23099f18240/info.json b/blockchains/smartchain/assets/0x90Ed8F1dc86388f14b64ba8fb4bbd23099f18240/info.json index 44f0a99822563..b6d3f5b70f5f8 100644 --- a/blockchains/smartchain/assets/0x90Ed8F1dc86388f14b64ba8fb4bbd23099f18240/info.json +++ b/blockchains/smartchain/assets/0x90Ed8F1dc86388f14b64ba8fb4bbd23099f18240/info.json @@ -10,8 +10,8 @@ "id": "0x90Ed8F1dc86388f14b64ba8fb4bbd23099f18240", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SingularityDao" + "name": "x", + "url": "https://x.com/SingularityDao" }, { "name": "telegram", @@ -53,4 +53,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x90bbdDbF3223363898065b9C736e2B86C655762b/info.json b/blockchains/smartchain/assets/0x90bbdDbF3223363898065b9C736e2B86C655762b/info.json new file mode 100644 index 0000000000000..85cf10f3909dc --- /dev/null +++ b/blockchains/smartchain/assets/0x90bbdDbF3223363898065b9C736e2B86C655762b/info.json @@ -0,0 +1,25 @@ +{ + "name": "Wrapped BELDEX", + "type": "BEP20", + "symbol": "wBDX", + "decimals": 9, + "description": "What Is Beldex (BDX)? Beldex building a decentralized confidential ecosystem in Web3 for secure digital interactions.. The concept of the project was developed in 2018, and launched in the same year. The Beldex project is committed to enhancing user data protection and their confidentiality online. BDX is an ecosystem coin that facilitates confidential transactions.", + "website": "https://www.beldex.io/", + "explorer": "https://bscscan.com/token/0x90bbddbf3223363898065b9c736e2b86c655762b", + "id": "0x90bbdDbF3223363898065b9C736e2B86C655762b", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/BeldexCoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/beldex/" + } + ], + "tags": [ + "privacy" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x90bbdDbF3223363898065b9C736e2B86C655762b/logo.png b/blockchains/smartchain/assets/0x90bbdDbF3223363898065b9C736e2B86C655762b/logo.png new file mode 100644 index 0000000000000..e11bf2e8af774 Binary files /dev/null and b/blockchains/smartchain/assets/0x90bbdDbF3223363898065b9C736e2B86C655762b/logo.png differ diff --git a/blockchains/smartchain/assets/0x90cCbB75d61Cb65cd73a3ABb5Df04a75961612b7/info.json b/blockchains/smartchain/assets/0x90cCbB75d61Cb65cd73a3ABb5Df04a75961612b7/info.json new file mode 100644 index 0000000000000..441fdd5af6076 --- /dev/null +++ b/blockchains/smartchain/assets/0x90cCbB75d61Cb65cd73a3ABb5Df04a75961612b7/info.json @@ -0,0 +1,28 @@ +{ + "name": "Deere (Ondo Tokenized)", + "type": "BEP20", + "symbol": "DEon", + "decimals": 18, + "description": "DEon is the Ondo Tokenized version of Deere, giving tokenholders economic exposure similar to holding DE and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x90cCbB75d61Cb65cd73a3ABb5Df04a75961612b7", + "status": "active", + "id": "0x90cCbB75d61Cb65cd73a3ABb5Df04a75961612b7", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/deere-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/deere-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x90cCbB75d61Cb65cd73a3ABb5Df04a75961612b7/logo.png b/blockchains/smartchain/assets/0x90cCbB75d61Cb65cd73a3ABb5Df04a75961612b7/logo.png new file mode 100644 index 0000000000000..bdf4e7cc322a1 Binary files /dev/null and b/blockchains/smartchain/assets/0x90cCbB75d61Cb65cd73a3ABb5Df04a75961612b7/logo.png differ diff --git a/blockchains/smartchain/assets/0x9105F25A9D6B3d289cC7315b0b4e0b91F3806fB1/info.json b/blockchains/smartchain/assets/0x9105F25A9D6B3d289cC7315b0b4e0b91F3806fB1/info.json index be7beda03522a..0e4267a482420 100644 --- a/blockchains/smartchain/assets/0x9105F25A9D6B3d289cC7315b0b4e0b91F3806fB1/info.json +++ b/blockchains/smartchain/assets/0x9105F25A9D6B3d289cC7315b0b4e0b91F3806fB1/info.json @@ -10,8 +10,8 @@ "id": "0x9105F25A9D6B3d289cC7315b0b4e0b91F3806fB1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/shibamaskcoin" + "name": "x", + "url": "https://x.com/shibamaskcoin" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x913aFbBA462d6ae230344209d0Bd11CE3CE92Ed1/info.json b/blockchains/smartchain/assets/0x913aFbBA462d6ae230344209d0Bd11CE3CE92Ed1/info.json index 9b168bbce3746..f91e71fa85567 100644 --- a/blockchains/smartchain/assets/0x913aFbBA462d6ae230344209d0Bd11CE3CE92Ed1/info.json +++ b/blockchains/smartchain/assets/0x913aFbBA462d6ae230344209d0Bd11CE3CE92Ed1/info.json @@ -10,8 +10,8 @@ "id": "0x913aFbBA462d6ae230344209d0Bd11CE3CE92Ed1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/RijentC" + "name": "x", + "url": "https://x.com/RijentC" }, { "name": "facebook", @@ -25,4 +25,4 @@ "tags": [ "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x917841c010b3d86ED886F36F2C9807E07a2e3093/info.json b/blockchains/smartchain/assets/0x917841c010b3d86ED886F36F2C9807E07a2e3093/info.json index 1ad12f43f7bfd..45ce68d55c1e2 100644 --- a/blockchains/smartchain/assets/0x917841c010b3d86ED886F36F2C9807E07a2e3093/info.json +++ b/blockchains/smartchain/assets/0x917841c010b3d86ED886F36F2C9807E07a2e3093/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/RisingSun-Token" }, { - "name": "twitter", - "url": "https://twitter.com/risingsuntoken" + "name": "x", + "url": "https://x.com/risingsuntoken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x918008C3d29496C37b478b611967BeaCA365aF36/info.json b/blockchains/smartchain/assets/0x918008C3d29496C37b478b611967BeaCA365aF36/info.json new file mode 100644 index 0000000000000..fc3c496e0837c --- /dev/null +++ b/blockchains/smartchain/assets/0x918008C3d29496C37b478b611967BeaCA365aF36/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Core MSCI EAFE (Ondo)", + "website": "https://ondo.finance/", + "description": "IEFAon is the Ondo Tokenized version of the iShares Core MSCI EAFE ETF, giving tokenholders economic exposure similar to holding IEFA and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x918008c3d29496c37b478b611967beaca365af36", + "type": "BEP20", + "symbol": "IEFAon", + "decimals": 18, + "status": "active", + "id": "0x918008C3d29496C37b478b611967BeaCA365aF36", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-core-msci-eafe-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x918008C3d29496C37b478b611967BeaCA365aF36/logo.png b/blockchains/smartchain/assets/0x918008C3d29496C37b478b611967BeaCA365aF36/logo.png new file mode 100644 index 0000000000000..8adf578853fa6 Binary files /dev/null and b/blockchains/smartchain/assets/0x918008C3d29496C37b478b611967BeaCA365aF36/logo.png differ diff --git a/blockchains/smartchain/assets/0x9186359F82c3c0Cc005A0b3563Dc4Ccd2627D82A/info.json b/blockchains/smartchain/assets/0x9186359F82c3c0Cc005A0b3563Dc4Ccd2627D82A/info.json index b6b478e1ea878..71ce97effe182 100644 --- a/blockchains/smartchain/assets/0x9186359F82c3c0Cc005A0b3563Dc4Ccd2627D82A/info.json +++ b/blockchains/smartchain/assets/0x9186359F82c3c0Cc005A0b3563Dc4Ccd2627D82A/info.json @@ -10,8 +10,8 @@ "id": "0x9186359F82c3c0Cc005A0b3563Dc4Ccd2627D82A", "links": [ { - "name": "twitter", - "url": "https://twitter.com/AntNetworX" + "name": "x", + "url": "https://x.com/AntNetworX" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x91C62325F901EE29Da8E521CfE68980332A4Ca06/info.json b/blockchains/smartchain/assets/0x91C62325F901EE29Da8E521CfE68980332A4Ca06/info.json new file mode 100644 index 0000000000000..ff12e6dd86040 --- /dev/null +++ b/blockchains/smartchain/assets/0x91C62325F901EE29Da8E521CfE68980332A4Ca06/info.json @@ -0,0 +1,28 @@ +{ + "name": "Archer Aviation (Ondo Tokenized)", + "type": "BEP20", + "symbol": "ACHRon", + "decimals": 18, + "description": "ACHRon is the Ondo Tokenized version of Archer Aviation, giving tokenholders economic exposure similar to holding ACHR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x91C62325F901EE29Da8E521CfE68980332A4Ca06", + "status": "active", + "id": "0x91C62325F901EE29Da8E521CfE68980332A4Ca06", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/archer-aviation-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/archer-aviation-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x91C62325F901EE29Da8E521CfE68980332A4Ca06/logo.png b/blockchains/smartchain/assets/0x91C62325F901EE29Da8E521CfE68980332A4Ca06/logo.png new file mode 100644 index 0000000000000..275ec766f80be Binary files /dev/null and b/blockchains/smartchain/assets/0x91C62325F901EE29Da8E521CfE68980332A4Ca06/logo.png differ diff --git a/blockchains/smartchain/assets/0x91Ea54a8A5426c0A0bEA55968Dd71abcE7b92751/info.json b/blockchains/smartchain/assets/0x91Ea54a8A5426c0A0bEA55968Dd71abcE7b92751/info.json new file mode 100644 index 0000000000000..c0b7ecf809484 --- /dev/null +++ b/blockchains/smartchain/assets/0x91Ea54a8A5426c0A0bEA55968Dd71abcE7b92751/info.json @@ -0,0 +1,20 @@ +{ + "name": "Vanguard Total International Stock ETF xStock", + "type": "BEP20", + "symbol": "VXUSx", + "decimals": 18, + "description": "Vanguard Total International Stock ETF xStock (VXUSx) is a tracker certificate issued as a freely transferable token on selected blockchains. VXUSx tracks the price of Vanguard Total International Stock ETF. VXUSx is designed to give eligible investors regulatory-compliant access to the stock price of Vanguard Total International Stock ETF, whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x91Ea54a8A5426c0A0bEA55968Dd71abcE7b92751", + "status": "active", + "id": "0x91Ea54a8A5426c0A0bEA55968Dd71abcE7b92751", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x91Ea54a8A5426c0A0bEA55968Dd71abcE7b92751/logo.png b/blockchains/smartchain/assets/0x91Ea54a8A5426c0A0bEA55968Dd71abcE7b92751/logo.png new file mode 100644 index 0000000000000..b6532cf8457d3 Binary files /dev/null and b/blockchains/smartchain/assets/0x91Ea54a8A5426c0A0bEA55968Dd71abcE7b92751/logo.png differ diff --git a/blockchains/smartchain/assets/0x91dba2CD05c8A0227B48c3e426077145d23B21df/info.json b/blockchains/smartchain/assets/0x91dba2CD05c8A0227B48c3e426077145d23B21df/info.json new file mode 100644 index 0000000000000..e12580176a499 --- /dev/null +++ b/blockchains/smartchain/assets/0x91dba2CD05c8A0227B48c3e426077145d23B21df/info.json @@ -0,0 +1,52 @@ +{ + "name": "Papu Token", + "type": "BEP20", + "symbol": "PAPU", + "decimals": 18, + "website": "https://paputoken.com", + "description": "PAPU Token is a meme coin inspired by the Papu video game character, created for entertainment purposes and community focus. It presents itself as the 'PAPU' of meme coins. It is a meme coin with no financial return expectations. It is not connected with any game, individual, or company.", + "explorer": "https://bscscan.com/token/0x91dba2CD05c8A0227B48c3e426077145d23B21df", + "status": "active", + "id": "0x91dba2CD05c8A0227B48c3e426077145d23B21df", + "links": [ + { + "name": "x", + "url": "https://x.com/PapuTokenCom" + }, + { + "name": "telegram", + "url": "https://t.me/PapuToken" + }, + { + "name": "telegram_news", + "url": "https://t.me/PapuNews" + }, + { + "name": "youtube", + "url": "https://youtube.com/@PapuToken" + }, + { + "name": "medium", + "url": "https://medium.com/@paputoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/papu-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/papu-token" + }, + { + "name": "discord", + "url": "https://discord.com/invite/papu" + }, + { + "name": "facebook", + "url": "https://facebook.com/PapuTokencom" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x91dba2CD05c8A0227B48c3e426077145d23B21df/logo.png b/blockchains/smartchain/assets/0x91dba2CD05c8A0227B48c3e426077145d23B21df/logo.png new file mode 100644 index 0000000000000..e37ebebdd4df2 Binary files /dev/null and b/blockchains/smartchain/assets/0x91dba2CD05c8A0227B48c3e426077145d23B21df/logo.png differ diff --git a/blockchains/smartchain/assets/0x91fc7371d6dE682A1e8CFcB4EB7dA693312A03a4/info.json b/blockchains/smartchain/assets/0x91fc7371d6dE682A1e8CFcB4EB7dA693312A03a4/info.json new file mode 100644 index 0000000000000..cdde06874faa9 --- /dev/null +++ b/blockchains/smartchain/assets/0x91fc7371d6dE682A1e8CFcB4EB7dA693312A03a4/info.json @@ -0,0 +1,28 @@ +{ + "name": "Bilibili (Ondo Tokenized)", + "type": "BEP20", + "symbol": "BILIon", + "decimals": 18, + "description": "BILIon is the Ondo Tokenized version of Bilibili, giving tokenholders economic exposure similar to holding BILI and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x91fc7371d6dE682A1e8CFcB4EB7dA693312A03a4", + "status": "active", + "id": "0x91fc7371d6dE682A1e8CFcB4EB7dA693312A03a4", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bilibili-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bilibili-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x91fc7371d6dE682A1e8CFcB4EB7dA693312A03a4/logo.png b/blockchains/smartchain/assets/0x91fc7371d6dE682A1e8CFcB4EB7dA693312A03a4/logo.png new file mode 100644 index 0000000000000..b0ed726070943 Binary files /dev/null and b/blockchains/smartchain/assets/0x91fc7371d6dE682A1e8CFcB4EB7dA693312A03a4/logo.png differ diff --git a/blockchains/smartchain/assets/0x921d3a6ed8223AFb6358410F717e2FB13cbae700/info.json b/blockchains/smartchain/assets/0x921d3a6ed8223AFb6358410F717e2FB13cbae700/info.json index d2a6d98d9a6fd..a3b167bc16568 100644 --- a/blockchains/smartchain/assets/0x921d3a6ed8223AFb6358410F717e2FB13cbae700/info.json +++ b/blockchains/smartchain/assets/0x921d3a6ed8223AFb6358410F717e2FB13cbae700/info.json @@ -21,8 +21,8 @@ "url": "https://coinmarketcap.com/currencies/qrkita-token/" }, { - "name": "twitter", - "url": "https://twitter.com/qrkitaexchanger?s=09" + "name": "x", + "url": "https://x.com/qrkitaexchanger?s=09" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x922722E9Ef614EC9A3E94b78496e92AbFBb5A624/info.json b/blockchains/smartchain/assets/0x922722E9Ef614EC9A3E94b78496e92AbFBb5A624/info.json index 22f9280bff3fd..57521009daf7e 100644 --- a/blockchains/smartchain/assets/0x922722E9Ef614EC9A3E94b78496e92AbFBb5A624/info.json +++ b/blockchains/smartchain/assets/0x922722E9Ef614EC9A3E94b78496e92AbFBb5A624/info.json @@ -4,14 +4,14 @@ "symbol": "CAPO", "decimals": 18, "website": "https://www.capocoin.xyz/", - "description": "HERE IS THE NEW MEME TOKEN I'VE CREATED - $CAPO TOKEN; DEDICATED TO BIGGEST COUNTER TRADING TWITTER ACCOUNT - IL CAPO OF CRYPTO! WE ALL KNOW WHO IS CRYPTO CAPO, AKA \"biggest bull trap i ever seen\" \"Still short and strong\" AND MORE JOKES LIKE THAT!", + "description": "HERE IS THE NEW MEME TOKEN I'VE CREATED - $CAPO TOKEN; DEDICATED TO BIGGEST COUNTER TRADING x ACCOUNT - IL CAPO OF CRYPTO! WE ALL KNOW WHO IS CRYPTO CAPO, AKA \"biggest bull trap i ever seen\" \"Still short and strong\" AND MORE JOKES LIKE THAT!", "explorer": "https://bscscan.com/token/0x922722E9Ef614EC9A3E94b78496e92AbFBb5A624", "status": "active", "id": "0x922722E9Ef614EC9A3E94b78496e92AbFBb5A624", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ilcapocoin" + "name": "x", + "url": "https://x.com/ilcapocoin" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x922B24b851c89fa2E219C269cc0a3fdB2fAf6d13/info.json b/blockchains/smartchain/assets/0x922B24b851c89fa2E219C269cc0a3fdB2fAf6d13/info.json new file mode 100644 index 0000000000000..90c0d71bae48a --- /dev/null +++ b/blockchains/smartchain/assets/0x922B24b851c89fa2E219C269cc0a3fdB2fAf6d13/info.json @@ -0,0 +1,14 @@ +{ + "name": "test agent", + "type": "BEP20", + "symbol": "TSA", + "decimals": 18, + "website": "https://bscscan.com/address/0x922b24b851c89fa2e219c269cc0a3fdb2faf6d13", + "description": "The first test agent on BNB Chain, powered by Holoworld AI", + "explorer": "https://bscscan.com/token/0x922B24b851c89fa2E219C269cc0a3fdB2fAf6d13", + "status": "active", + "id": "0x922B24b851c89fa2E219C269cc0a3fdB2fAf6d13", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x922B24b851c89fa2E219C269cc0a3fdB2fAf6d13/logo.png b/blockchains/smartchain/assets/0x922B24b851c89fa2E219C269cc0a3fdB2fAf6d13/logo.png new file mode 100644 index 0000000000000..1012e8e457d71 Binary files /dev/null and b/blockchains/smartchain/assets/0x922B24b851c89fa2E219C269cc0a3fdB2fAf6d13/logo.png differ diff --git a/blockchains/smartchain/assets/0x927fF4AD97991C1eeC44AB02c6970088ffa85250/info.json b/blockchains/smartchain/assets/0x927fF4AD97991C1eeC44AB02c6970088ffa85250/info.json index 7c052a3067edd..f1d199869d3f3 100644 --- a/blockchains/smartchain/assets/0x927fF4AD97991C1eeC44AB02c6970088ffa85250/info.json +++ b/blockchains/smartchain/assets/0x927fF4AD97991C1eeC44AB02c6970088ffa85250/info.json @@ -10,8 +10,8 @@ "id": "0x927fF4AD97991C1eeC44AB02c6970088ffa85250", "links": [ { - "name": "twitter", - "url": "https://twitter.com/xtremcoin" + "name": "x", + "url": "https://x.com/xtremcoin" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x92d504158A8Dc69de989dB5EDe3230D958fb8630/info.json b/blockchains/smartchain/assets/0x92d504158A8Dc69de989dB5EDe3230D958fb8630/info.json new file mode 100644 index 0000000000000..2296d1684f728 --- /dev/null +++ b/blockchains/smartchain/assets/0x92d504158A8Dc69de989dB5EDe3230D958fb8630/info.json @@ -0,0 +1,24 @@ +{ + "name": "Exodus Movement (Ondo Tokenized)", + "type": "BEP20", + "symbol": "EXODon", + "decimals": 18, + "description": "EXODon is the Ondo Tokenized version of Exodus Movement, giving tokenholders economic exposure similar to holding EXOD and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x92d504158A8Dc69de989dB5EDe3230D958fb8630", + "status": "active", + "id": "0x92d504158A8Dc69de989dB5EDe3230D958fb8630", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/exodus-movement-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x92d504158A8Dc69de989dB5EDe3230D958fb8630/logo.png b/blockchains/smartchain/assets/0x92d504158A8Dc69de989dB5EDe3230D958fb8630/logo.png new file mode 100644 index 0000000000000..6cedbcd6a8482 Binary files /dev/null and b/blockchains/smartchain/assets/0x92d504158A8Dc69de989dB5EDe3230D958fb8630/logo.png differ diff --git a/blockchains/smartchain/assets/0x92dA433dA84d58DFe2aade1943349e491Cbd6820/info.json b/blockchains/smartchain/assets/0x92dA433dA84d58DFe2aade1943349e491Cbd6820/info.json index 60b14c0771345..3c5825d4efc82 100644 --- a/blockchains/smartchain/assets/0x92dA433dA84d58DFe2aade1943349e491Cbd6820/info.json +++ b/blockchains/smartchain/assets/0x92dA433dA84d58DFe2aade1943349e491Cbd6820/info.json @@ -10,8 +10,8 @@ "id": "0x92dA433dA84d58DFe2aade1943349e491Cbd6820", "links": [ { - "name": "twitter", - "url": "https://twitter.com/DefendersRise" + "name": "x", + "url": "https://x.com/DefendersRise" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x92eD61FB8955Cc4e392781cB8b7cD04AADc43D0c/info.json b/blockchains/smartchain/assets/0x92eD61FB8955Cc4e392781cB8b7cD04AADc43D0c/info.json index e66756ab26479..047f8460eb271 100644 --- a/blockchains/smartchain/assets/0x92eD61FB8955Cc4e392781cB8b7cD04AADc43D0c/info.json +++ b/blockchains/smartchain/assets/0x92eD61FB8955Cc4e392781cB8b7cD04AADc43D0c/info.json @@ -10,8 +10,8 @@ "id": "0x92eD61FB8955Cc4e392781cB8b7cD04AADc43D0c", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Oggy_Inu" + "name": "x", + "url": "https://x.com/Oggy_Inu" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x92eD61FB8955Cc4e392781cB8b7cD04AADc43D0c/logo.png b/blockchains/smartchain/assets/0x92eD61FB8955Cc4e392781cB8b7cD04AADc43D0c/logo.png index 3abe7213af475..91bbd52b5176e 100644 Binary files a/blockchains/smartchain/assets/0x92eD61FB8955Cc4e392781cB8b7cD04AADc43D0c/logo.png and b/blockchains/smartchain/assets/0x92eD61FB8955Cc4e392781cB8b7cD04AADc43D0c/logo.png differ diff --git a/blockchains/smartchain/assets/0x930CEc48eddC7f80AFaD2b08997D0A43912B80d4/info.json b/blockchains/smartchain/assets/0x930CEc48eddC7f80AFaD2b08997D0A43912B80d4/info.json index 64a4bbb890e56..a54e160334c7b 100644 --- a/blockchains/smartchain/assets/0x930CEc48eddC7f80AFaD2b08997D0A43912B80d4/info.json +++ b/blockchains/smartchain/assets/0x930CEc48eddC7f80AFaD2b08997D0A43912B80d4/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/the-spartans/" }, { - "name": "twitter", - "url": "https://twitter.com/TheSpartansBSC" + "name": "x", + "url": "https://x.com/TheSpartansBSC" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9337a8f11f777cDAa310B5682b09b44Ed8bdcbAD/info.json b/blockchains/smartchain/assets/0x9337a8f11f777cDAa310B5682b09b44Ed8bdcbAD/info.json new file mode 100644 index 0000000000000..98f61b7dedb4c --- /dev/null +++ b/blockchains/smartchain/assets/0x9337a8f11f777cDAa310B5682b09b44Ed8bdcbAD/info.json @@ -0,0 +1,20 @@ +{ + "name": "Vanguard FTSE Europe ETF xStock", + "type": "BEP20", + "symbol": "VGKx", + "decimals": 18, + "description": "Vanguard FTSE Europe ETF xStock (VGKx) is a tracker certificate issued as a freely transferable token on selected blockchains. VGKx tracks the price of Vanguard FTSE Europe ETF. VGKx is designed to give eligible investors regulatory-compliant access to the stock price of Vanguard FTSE Europe ETF, whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x9337a8f11f777cDAa310B5682b09b44Ed8bdcbAD", + "status": "active", + "id": "0x9337a8f11f777cDAa310B5682b09b44Ed8bdcbAD", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9337a8f11f777cDAa310B5682b09b44Ed8bdcbAD/logo.png b/blockchains/smartchain/assets/0x9337a8f11f777cDAa310B5682b09b44Ed8bdcbAD/logo.png new file mode 100644 index 0000000000000..b6532cf8457d3 Binary files /dev/null and b/blockchains/smartchain/assets/0x9337a8f11f777cDAa310B5682b09b44Ed8bdcbAD/logo.png differ diff --git a/blockchains/smartchain/assets/0x934C9198582Bf2631128c5D4b051aacEF9a6224F/info.json b/blockchains/smartchain/assets/0x934C9198582Bf2631128c5D4b051aacEF9a6224F/info.json index e32afed3ecef5..7ed4870b4fe6f 100644 --- a/blockchains/smartchain/assets/0x934C9198582Bf2631128c5D4b051aacEF9a6224F/info.json +++ b/blockchains/smartchain/assets/0x934C9198582Bf2631128c5D4b051aacEF9a6224F/info.json @@ -22,8 +22,8 @@ "url": "https://facebook.com/wanakafarmofficial" }, { - "name": "twitter", - "url": "https://twitter.com/Wanaka_Farm" + "name": "x", + "url": "https://x.com/Wanaka_Farm" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9351AbD19f42101dD36025E495B98E910b255d78/info.json b/blockchains/smartchain/assets/0x9351AbD19f42101dD36025E495B98E910b255d78/info.json new file mode 100644 index 0000000000000..d3dde983c5879 --- /dev/null +++ b/blockchains/smartchain/assets/0x9351AbD19f42101dD36025E495B98E910b255d78/info.json @@ -0,0 +1,24 @@ +{ + "name": "Palantir Technologies (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "PLTRon is the Ondo Tokenized version of Palantir Technologies, giving tokenholders economic exposure similar to holding PLTR and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x9351abd19f42101dd36025e495b98e910b255d78", + "type": "BEP20", + "symbol": "PLTRon", + "decimals": 18, + "status": "active", + "id": "0x9351AbD19f42101dD36025E495B98E910b255d78", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/palantir-technologies-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9351AbD19f42101dD36025E495B98E910b255d78/logo.png b/blockchains/smartchain/assets/0x9351AbD19f42101dD36025E495B98E910b255d78/logo.png new file mode 100644 index 0000000000000..3df16e1860606 Binary files /dev/null and b/blockchains/smartchain/assets/0x9351AbD19f42101dD36025E495B98E910b255d78/logo.png differ diff --git a/blockchains/smartchain/assets/0x935a544Bf5816E3A7C13DB2EFe3009Ffda0aCdA2/info.json b/blockchains/smartchain/assets/0x935a544Bf5816E3A7C13DB2EFe3009Ffda0aCdA2/info.json new file mode 100644 index 0000000000000..99efcd5938d93 --- /dev/null +++ b/blockchains/smartchain/assets/0x935a544Bf5816E3A7C13DB2EFe3009Ffda0aCdA2/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bluzelle", + "type": "BEP20", + "symbol": "BLZ", + "decimals": 18, + "website": "https://bluzelle.com/", + "description": "Bluzelle is a decentralized storage network for the creator economy.", + "explorer": "https://bscscan.com/token/0x935a544bf5816e3a7c13db2efe3009ffda0acda2", + "status": "active", + "id": "0x935a544Bf5816E3A7C13DB2EFe3009Ffda0aCdA2", + "links": [ + { + "name": "x", + "url": "https://x.com/BluzelleHQ" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bluzelle/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x935a544Bf5816E3A7C13DB2EFe3009Ffda0aCdA2/logo.png b/blockchains/smartchain/assets/0x935a544Bf5816E3A7C13DB2EFe3009Ffda0aCdA2/logo.png new file mode 100644 index 0000000000000..8c9728c49cea0 Binary files /dev/null and b/blockchains/smartchain/assets/0x935a544Bf5816E3A7C13DB2EFe3009Ffda0aCdA2/logo.png differ diff --git a/blockchains/smartchain/assets/0x936B6659Ad0C1b244Ba8Efe639092acae30dc8d6/info.json b/blockchains/smartchain/assets/0x936B6659Ad0C1b244Ba8Efe639092acae30dc8d6/info.json index 107f15fec6f5e..609153088af05 100644 --- a/blockchains/smartchain/assets/0x936B6659Ad0C1b244Ba8Efe639092acae30dc8d6/info.json +++ b/blockchains/smartchain/assets/0x936B6659Ad0C1b244Ba8Efe639092acae30dc8d6/info.json @@ -10,8 +10,8 @@ "id": "0x936B6659Ad0C1b244Ba8Efe639092acae30dc8d6", "links": [ { - "name": "twitter", - "url": "https://twitter.com/coritecom" + "name": "x", + "url": "https://x.com/coritecom" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x93862d63fd9Fd488B1328E9b47717d75e994a84B/info.json b/blockchains/smartchain/assets/0x93862d63fd9Fd488B1328E9b47717d75e994a84B/info.json new file mode 100644 index 0000000000000..0df6b68b4241e --- /dev/null +++ b/blockchains/smartchain/assets/0x93862d63fd9Fd488B1328E9b47717d75e994a84B/info.json @@ -0,0 +1,20 @@ +{ + "name": "Roundhill Memory ETF Tokenized bStocks", + "type": "BEP20", + "symbol": "DRAMB", + "decimals": 18, + "description": "DRAMB is a tokenized bStocks that gives you economic exposure to Roundhill Memory ETF Tokenized bStocks, and the right to convert to the underlying security on the Binance.com platform subject to applicable laws. Each token is fully backed by the corresponding underlying equity maintained by the Issuer at a US-regulated broker-dealer. You get the price movements, dividends, and the right to convert the token at 1:1 to the underlying share — tradeable 24/7.", + "website": "https://www.bstocks.finance/en/", + "explorer": "https://bscscan.com/token/0x93862d63fd9Fd488B1328E9b47717d75e994a84B", + "status": "active", + "id": "0x93862d63fd9Fd488B1328E9b47717d75e994a84B", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/roundhill-memory-etf-tokenized-bstocks/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x93862d63fd9Fd488B1328E9b47717d75e994a84B/logo.png b/blockchains/smartchain/assets/0x93862d63fd9Fd488B1328E9b47717d75e994a84B/logo.png new file mode 100644 index 0000000000000..f66572b9a8b5f Binary files /dev/null and b/blockchains/smartchain/assets/0x93862d63fd9Fd488B1328E9b47717d75e994a84B/logo.png differ diff --git a/blockchains/smartchain/assets/0x939Dd9E433552e325D78C33a16EF4cD8004D2F9C/info.json b/blockchains/smartchain/assets/0x939Dd9E433552e325D78C33a16EF4cD8004D2F9C/info.json new file mode 100644 index 0000000000000..a7373c4b87212 --- /dev/null +++ b/blockchains/smartchain/assets/0x939Dd9E433552e325D78C33a16EF4cD8004D2F9C/info.json @@ -0,0 +1,21 @@ +{ + "name": "SpaceN", + "type": "BEP20", + "symbol": "SN", + "decimals": 18, + "website": "https://spacen.xyz", + "description": "SpaceN is an NFT one-stop investment management tool.SpaceN will automatically count the investment income information of users buying and selling NFTs, so that users can timely understand the changes of their NFT assets", + "explorer": "hhttps://bscscan.com/token/0x939Dd9E433552e325D78C33a16EF4cD8004D2F9C", + "status": "active", + "id": "0x939Dd9E433552e325D78C33a16EF4cD8004D2F9C", + "links": [ + { + "name": "x", + "url": "https://x.com/spacenNFT" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spacen/" + } + ] +} diff --git a/blockchains/smartchain/assets/0x939Dd9E433552e325D78C33a16EF4cD8004D2F9C/logo.png b/blockchains/smartchain/assets/0x939Dd9E433552e325D78C33a16EF4cD8004D2F9C/logo.png new file mode 100644 index 0000000000000..7b17b73d31a80 Binary files /dev/null and b/blockchains/smartchain/assets/0x939Dd9E433552e325D78C33a16EF4cD8004D2F9C/logo.png differ diff --git a/blockchains/smartchain/assets/0x93fac02b22B6743423381D163aec418178019B7a/info.json b/blockchains/smartchain/assets/0x93fac02b22B6743423381D163aec418178019B7a/info.json new file mode 100644 index 0000000000000..c9f69ae5113d8 --- /dev/null +++ b/blockchains/smartchain/assets/0x93fac02b22B6743423381D163aec418178019B7a/info.json @@ -0,0 +1,24 @@ +{ + "name": "Figma (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "FIGon is the Ondo Tokenized version of Figma, giving tokenholders economic exposure similar to holding FIG and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x93fac02b22b6743423381d163aec418178019b7a", + "type": "BEP20", + "symbol": "FIGon", + "decimals": 18, + "status": "active", + "id": "0x93fac02b22B6743423381D163aec418178019B7a", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/figma-ord-shs-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x93fac02b22B6743423381D163aec418178019B7a/logo.png b/blockchains/smartchain/assets/0x93fac02b22B6743423381D163aec418178019B7a/logo.png new file mode 100644 index 0000000000000..6ce23a1376640 Binary files /dev/null and b/blockchains/smartchain/assets/0x93fac02b22B6743423381D163aec418178019B7a/logo.png differ diff --git a/blockchains/smartchain/assets/0x940230b6b7ef1979a28F32196A8e3439C645BA49/info.json b/blockchains/smartchain/assets/0x940230b6b7ef1979a28F32196A8e3439C645BA49/info.json index 73c99f76fe959..57353dc784b30 100644 --- a/blockchains/smartchain/assets/0x940230b6b7ef1979a28F32196A8e3439C645BA49/info.json +++ b/blockchains/smartchain/assets/0x940230b6b7ef1979a28F32196A8e3439C645BA49/info.json @@ -10,8 +10,8 @@ "id": "0x940230b6b7ef1979a28F32196A8e3439C645BA49", "links": [ { - "name": "twitter", - "url": "https://twitter.com/shibarmybsc" + "name": "x", + "url": "https://x.com/shibarmybsc" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x940F442746D9AE699e63c378D52C4494ea02684f/info.json b/blockchains/smartchain/assets/0x940F442746D9AE699e63c378D52C4494ea02684f/info.json new file mode 100644 index 0000000000000..cd91f0565307f --- /dev/null +++ b/blockchains/smartchain/assets/0x940F442746D9AE699e63c378D52C4494ea02684f/info.json @@ -0,0 +1,28 @@ +{ + "name": "iShares Flexible Income Active ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "BINCon", + "decimals": 18, + "description": "BINCon is the Ondo Tokenized version of the iShares Flexible Income Active ETF, giving tokenholders economic exposure similar to holding BINC and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x940F442746D9AE699e63c378D52C4494ea02684f", + "status": "active", + "id": "0x940F442746D9AE699e63c378D52C4494ea02684f", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-flexible-income-active-etf-ondo-tokenized-etf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-flexible-income-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x940F442746D9AE699e63c378D52C4494ea02684f/logo.png b/blockchains/smartchain/assets/0x940F442746D9AE699e63c378D52C4494ea02684f/logo.png new file mode 100644 index 0000000000000..8c3d69ffb4bb3 Binary files /dev/null and b/blockchains/smartchain/assets/0x940F442746D9AE699e63c378D52C4494ea02684f/logo.png differ diff --git a/blockchains/smartchain/assets/0x94174e3D1335db402dD03A092f7aA7ac2cb32be4/info.json b/blockchains/smartchain/assets/0x94174e3D1335db402dD03A092f7aA7ac2cb32be4/info.json new file mode 100644 index 0000000000000..108c6f0da9dc3 --- /dev/null +++ b/blockchains/smartchain/assets/0x94174e3D1335db402dD03A092f7aA7ac2cb32be4/info.json @@ -0,0 +1,28 @@ +{ + "name": "United States Oil Fund (Ondo Tokenized)", + "type": "BEP20", + "symbol": "USOon", + "decimals": 18, + "description": "USOon is the Ondo Tokenized version of the United States Oil Fund, giving tokenholders economic exposure similar to holding USO and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x94174e3D1335db402dD03A092f7aA7ac2cb32be4", + "status": "active", + "id": "0x94174e3D1335db402dD03A092f7aA7ac2cb32be4", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/united-states-oil-fund-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/united-states-oil-tokenized-fund-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x94174e3D1335db402dD03A092f7aA7ac2cb32be4/logo.png b/blockchains/smartchain/assets/0x94174e3D1335db402dD03A092f7aA7ac2cb32be4/logo.png new file mode 100644 index 0000000000000..56d2b7feafd3b Binary files /dev/null and b/blockchains/smartchain/assets/0x94174e3D1335db402dD03A092f7aA7ac2cb32be4/logo.png differ diff --git a/blockchains/smartchain/assets/0x947950BcC74888a40Ffa2593C5798F11Fc9124C4/info.json b/blockchains/smartchain/assets/0x947950BcC74888a40Ffa2593C5798F11Fc9124C4/info.json index 189e571804471..18832d19758b1 100644 --- a/blockchains/smartchain/assets/0x947950BcC74888a40Ffa2593C5798F11Fc9124C4/info.json +++ b/blockchains/smartchain/assets/0x947950BcC74888a40Ffa2593C5798F11Fc9124C4/info.json @@ -20,8 +20,8 @@ "url": "https://github.com/sushiswap" }, { - "name": "twitter", - "url": "https://twitter.com/sushiswap" + "name": "x", + "url": "https://x.com/sushiswap" }, { "name": "blog", diff --git a/blockchains/smartchain/assets/0x948d2a81086A075b3130BAc19e4c6DEe1D2E3fE8/info.json b/blockchains/smartchain/assets/0x948d2a81086A075b3130BAc19e4c6DEe1D2E3fE8/info.json index 4c731b41ba142..ce7a1847bc3e4 100644 --- a/blockchains/smartchain/assets/0x948d2a81086A075b3130BAc19e4c6DEe1D2E3fE8/info.json +++ b/blockchains/smartchain/assets/0x948d2a81086A075b3130BAc19e4c6DEe1D2E3fE8/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/helmet-insure/helmet-insure.github.io" }, { - "name": "twitter", - "url": "https://twitter.com/Helmet_insure" + "name": "x", + "url": "https://x.com/Helmet_insure" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x948fbdae1268F3721B1318212BFBFC3F785C8888/info.json b/blockchains/smartchain/assets/0x948fbdae1268F3721B1318212BFBFC3F785C8888/info.json new file mode 100644 index 0000000000000..95ccc19e81bdf --- /dev/null +++ b/blockchains/smartchain/assets/0x948fbdae1268F3721B1318212BFBFC3F785C8888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Coin USᎠ", + "type": "BEP20", + "symbol": "FAKE USᎠC", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x948fbdae1268F3721B1318212BFBFC3F785C8888", + "explorer": "https://bscscan.com/token/0x948fbdae1268F3721B1318212BFBFC3F785C8888", + "status": "spam", + "id": "0x948fbdae1268F3721B1318212BFBFC3F785C8888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x94BaBBE728D9411612Ee41b20241a6FA251b26Ce/info.json b/blockchains/smartchain/assets/0x94BaBBE728D9411612Ee41b20241a6FA251b26Ce/info.json index 1887369d0482c..8a009026077df 100644 --- a/blockchains/smartchain/assets/0x94BaBBE728D9411612Ee41b20241a6FA251b26Ce/info.json +++ b/blockchains/smartchain/assets/0x94BaBBE728D9411612Ee41b20241a6FA251b26Ce/info.json @@ -15,8 +15,8 @@ "url": "https://jetfuel.finance/contracts" }, { - "name": "twitter", - "url": "https://twitter.com/Jetfuelfinance" + "name": "x", + "url": "https://x.com/Jetfuelfinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x94a1A356d4E67A3803BDfAA85c8CBA5Bc57fd988/info.json b/blockchains/smartchain/assets/0x94a1A356d4E67A3803BDfAA85c8CBA5Bc57fd988/info.json new file mode 100644 index 0000000000000..a4f578599be5d --- /dev/null +++ b/blockchains/smartchain/assets/0x94a1A356d4E67A3803BDfAA85c8CBA5Bc57fd988/info.json @@ -0,0 +1,40 @@ +{ + "name": "Crypto Snack", + "type": "BEP20", + "symbol": "SNACK", + "decimals": 18, + "website": "https://cryptosnack.com", + "description": "SNACK is a utility token designed to bridge digital and real‑world economies. Our vision: power immersive iGaming, fintech payments, and fractional real‑world asset investment. Through partnerships, global listings, and the SNACK App, we unlock tokenized experiences and sustainable growth.", + "explorer": "https://bscscan.com/token/0x94a1A356d4E67A3803BDfAA85c8CBA5Bc57fd988", + "status": "active", + "id": "0x94a1A356d4E67A3803BDfAA85c8CBA5Bc57fd988", + "links": [ + { + "name": "x", + "url": "https://x.com/cryptosnack_" + }, + { + "name": "github", + "url": "https://github.com/CryptoSnackOfficial" + }, + { + "name": "telegram", + "url": "https://t.me/CryptoSnackOfficial" + }, + { + "name": "blog", + "url": "https://cryptosnack.com/blog/" + }, + { + "name": "whitepaper", + "url": "https://snckr.club/white-paper" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crypto-snack" + } + ], + "tags": [ + "synthetics" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x94a1A356d4E67A3803BDfAA85c8CBA5Bc57fd988/logo.png b/blockchains/smartchain/assets/0x94a1A356d4E67A3803BDfAA85c8CBA5Bc57fd988/logo.png new file mode 100644 index 0000000000000..478bc58b9c780 Binary files /dev/null and b/blockchains/smartchain/assets/0x94a1A356d4E67A3803BDfAA85c8CBA5Bc57fd988/logo.png differ diff --git a/blockchains/smartchain/assets/0x94b69263FCA20119Ae817b6f783Fc0F13B02ad50/info.json b/blockchains/smartchain/assets/0x94b69263FCA20119Ae817b6f783Fc0F13B02ad50/info.json index 3724d447af5a9..1fd0a12f120aa 100644 --- a/blockchains/smartchain/assets/0x94b69263FCA20119Ae817b6f783Fc0F13B02ad50/info.json +++ b/blockchains/smartchain/assets/0x94b69263FCA20119Ae817b6f783Fc0F13B02ad50/info.json @@ -10,8 +10,8 @@ "id": "0x94b69263FCA20119Ae817b6f783Fc0F13B02ad50", "links": [ { - "name": "twitter", - "url": "https://twitter.com/LOAOfficialMOBA" + "name": "x", + "url": "https://x.com/LOAOfficialMOBA" }, { "name": "telegram", @@ -21,4 +21,4 @@ "tags": [ "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x94ba29d58D419BD798B282476db3Dd9d97BA8C23/info.json b/blockchains/smartchain/assets/0x94ba29d58D419BD798B282476db3Dd9d97BA8C23/info.json index e2b3cb450dd64..936174d76377a 100644 --- a/blockchains/smartchain/assets/0x94ba29d58D419BD798B282476db3Dd9d97BA8C23/info.json +++ b/blockchains/smartchain/assets/0x94ba29d58D419BD798B282476db3Dd9d97BA8C23/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/frostedcaketoken" }, { - "name": "twitter", - "url": "https://twitter.com/FrostedCakeBSC" + "name": "x", + "url": "https://x.com/FrostedCakeBSC" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x94d7754541B829A87321d56121Bc544167Ac490D/info.json b/blockchains/smartchain/assets/0x94d7754541B829A87321d56121Bc544167Ac490D/info.json new file mode 100644 index 0000000000000..4785daf4c75b0 --- /dev/null +++ b/blockchains/smartchain/assets/0x94d7754541B829A87321d56121Bc544167Ac490D/info.json @@ -0,0 +1,24 @@ +{ + "name": "Starbucks (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "SBUXon is the Ondo Tokenized version of Starbucks, giving tokenholders economic exposure similar to holding SBUX and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x94d7754541b829a87321d56121bc544167ac490d", + "type": "BEP20", + "symbol": "SBUXon", + "decimals": 18, + "status": "active", + "id": "0x94d7754541B829A87321d56121Bc544167Ac490D", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/starbucks-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x94d7754541B829A87321d56121Bc544167Ac490D/logo.png b/blockchains/smartchain/assets/0x94d7754541B829A87321d56121Bc544167Ac490D/logo.png new file mode 100644 index 0000000000000..c249183922d8d Binary files /dev/null and b/blockchains/smartchain/assets/0x94d7754541B829A87321d56121Bc544167Ac490D/logo.png differ diff --git a/blockchains/smartchain/assets/0x95111f630aC215Eb74599ED42C67E2c2790d69e2/info.json b/blockchains/smartchain/assets/0x95111f630aC215Eb74599ED42C67E2c2790d69e2/info.json index 823024e03f2b4..d0611113c64cb 100644 --- a/blockchains/smartchain/assets/0x95111f630aC215Eb74599ED42C67E2c2790d69e2/info.json +++ b/blockchains/smartchain/assets/0x95111f630aC215Eb74599ED42C67E2c2790d69e2/info.json @@ -10,8 +10,8 @@ "id": "0x95111f630aC215Eb74599ED42C67E2c2790d69e2", "links": [ { - "name": "twitter", - "url": "https://twitter.com/zetta_icarus" + "name": "x", + "url": "https://x.com/zetta_icarus" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x9528cCEb678B90dAf02cA5cA45622D5cBaF58A30/info.json b/blockchains/smartchain/assets/0x9528cCEb678B90dAf02cA5cA45622D5cBaF58A30/info.json index d5f65530d082e..1e56d9dd019a6 100644 --- a/blockchains/smartchain/assets/0x9528cCEb678B90dAf02cA5cA45622D5cBaF58A30/info.json +++ b/blockchains/smartchain/assets/0x9528cCEb678B90dAf02cA5cA45622D5cBaF58A30/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/GoBlockchain2022/" }, { - "name": "twitter", - "url": "https://twitter.com/gocryptomecoin" + "name": "x", + "url": "https://x.com/gocryptomecoin" }, { "name": "telegram", @@ -25,4 +25,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x952cEbF65f3A9F11ef0222Aefe0608d26621B097/info.json b/blockchains/smartchain/assets/0x952cEbF65f3A9F11ef0222Aefe0608d26621B097/info.json index 78978aba5655e..30034fb48058e 100644 --- a/blockchains/smartchain/assets/0x952cEbF65f3A9F11ef0222Aefe0608d26621B097/info.json +++ b/blockchains/smartchain/assets/0x952cEbF65f3A9F11ef0222Aefe0608d26621B097/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/EdxaLabs" }, { - "name": "twitter", - "url": "https://twitter.com/EdxaLabs" + "name": "x", + "url": "https://x.com/EdxaLabs" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x95336aC5f7E840e7716781313e1607F7C9D6BE25/info.json b/blockchains/smartchain/assets/0x95336aC5f7E840e7716781313e1607F7C9D6BE25/info.json index a658bbca4d8aa..748e466ad88fb 100644 --- a/blockchains/smartchain/assets/0x95336aC5f7E840e7716781313e1607F7C9D6BE25/info.json +++ b/blockchains/smartchain/assets/0x95336aC5f7E840e7716781313e1607F7C9D6BE25/info.json @@ -18,8 +18,8 @@ "url": "https://docs.robustswap.com" }, { - "name": "twitter", - "url": "https://twitter.com/robustswap" + "name": "x", + "url": "https://x.com/robustswap" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x954f15e80eF6901aAeB4c23cA17013c27b828888/info.json b/blockchains/smartchain/assets/0x954f15e80eF6901aAeB4c23cA17013c27b828888/info.json new file mode 100644 index 0000000000000..1020d85da732b --- /dev/null +++ b/blockchains/smartchain/assets/0x954f15e80eF6901aAeB4c23cA17013c27b828888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDT", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x954f15e80eF6901aAeB4c23cA17013c27b828888", + "explorer": "https://bscscan.com/token/0x954f15e80eF6901aAeB4c23cA17013c27b828888", + "status": "spam", + "id": "0x954f15e80eF6901aAeB4c23cA17013c27b828888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9558a9254890B2A8B057a789F413631B9084f4a3/info.json b/blockchains/smartchain/assets/0x9558a9254890B2A8B057a789F413631B9084f4a3/info.json new file mode 100644 index 0000000000000..e007a1b6ff488 --- /dev/null +++ b/blockchains/smartchain/assets/0x9558a9254890B2A8B057a789F413631B9084f4a3/info.json @@ -0,0 +1,36 @@ +{ + "name": "Infinity Ground", + "type": "BEP20", + "symbol": "AIN", + "decimals": 18, + "website": "https://www.infinityg.ai/", + "description": "Infinity Ground is the leading Blockchain Infrastructure for Vibe Coders, creating an agent-driven development environment free from centralized limitations.", + "explorer": "https://bscscan.com/token/0x9558a9254890B2A8B057a789F413631B9084f4a3", + "status": "active", + "id": "0x9558a9254890B2A8B057a789F413631B9084f4a3", + "links": [ + { + "name": "x", + "url": "https://x.com/infinityg_ai" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/infinity-ground/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/infinity-ground" + }, + { + "name": "telegram", + "url": "https://t.me/InfinityGroundAnn" + }, + { + "name": "whitepaper", + "url": "https://infinity-ground.gitbook.io/whitepaper/" + } + ], + "tags": [ + "dapp" + ] +} diff --git a/blockchains/smartchain/assets/0x9558a9254890B2A8B057a789F413631B9084f4a3/logo.png b/blockchains/smartchain/assets/0x9558a9254890B2A8B057a789F413631B9084f4a3/logo.png new file mode 100644 index 0000000000000..674e16a46074e Binary files /dev/null and b/blockchains/smartchain/assets/0x9558a9254890B2A8B057a789F413631B9084f4a3/logo.png differ diff --git a/blockchains/smartchain/assets/0x95637d4FbE7153dCc3E26E71bdE7a2D82621F083/info.json b/blockchains/smartchain/assets/0x95637d4FbE7153dCc3E26E71bdE7a2D82621F083/info.json index a815f9e846aaf..04c18f383f87f 100644 --- a/blockchains/smartchain/assets/0x95637d4FbE7153dCc3E26E71bdE7a2D82621F083/info.json +++ b/blockchains/smartchain/assets/0x95637d4FbE7153dCc3E26E71bdE7a2D82621F083/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/ForeverFOMO" }, { - "name": "twitter", - "url": "https://twitter.com/FomoForever" + "name": "x", + "url": "https://x.com/FomoForever" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x9573c88aE3e37508f87649f87c4dd5373C9F31e0/info.json b/blockchains/smartchain/assets/0x9573c88aE3e37508f87649f87c4dd5373C9F31e0/info.json index d11a4640060dd..80fe3fad6b576 100644 --- a/blockchains/smartchain/assets/0x9573c88aE3e37508f87649f87c4dd5373C9F31e0/info.json +++ b/blockchains/smartchain/assets/0x9573c88aE3e37508f87649f87c4dd5373C9F31e0/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/monsta-infinite/" }, { - "name": "twitter", - "url": "https://twitter.com/Monsta_Infinite/" + "name": "x", + "url": "https://x.com/Monsta_Infinite/" }, { "name": "blog", diff --git a/blockchains/smartchain/assets/0x95935CD0e3e41B3eb5b6Bf7fCCF2A5FDDdc28888/info.json b/blockchains/smartchain/assets/0x95935CD0e3e41B3eb5b6Bf7fCCF2A5FDDdc28888/info.json new file mode 100644 index 0000000000000..97513c003e4d6 --- /dev/null +++ b/blockchains/smartchain/assets/0x95935CD0e3e41B3eb5b6Bf7fCCF2A5FDDdc28888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether USD", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x95935CD0e3e41B3eb5b6Bf7fCCF2A5FDDdc28888", + "explorer": "https://bscscan.com/token/0x95935CD0e3e41B3eb5b6Bf7fCCF2A5FDDdc28888", + "status": "spam", + "id": "0x95935CD0e3e41B3eb5b6Bf7fCCF2A5FDDdc28888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x95EE03e1e2C5c4877f9A298F1C0D6c98698FAB7B/info.json b/blockchains/smartchain/assets/0x95EE03e1e2C5c4877f9A298F1C0D6c98698FAB7B/info.json index a6d2e3920d373..bc7d9a463a7e5 100644 --- a/blockchains/smartchain/assets/0x95EE03e1e2C5c4877f9A298F1C0D6c98698FAB7B/info.json +++ b/blockchains/smartchain/assets/0x95EE03e1e2C5c4877f9A298F1C0D6c98698FAB7B/info.json @@ -10,8 +10,8 @@ "id": "0x95EE03e1e2C5c4877f9A298F1C0D6c98698FAB7B", "links": [ { - "name": "twitter", - "url": "https://twitter.com/duetprotocol" + "name": "x", + "url": "https://x.com/duetprotocol" }, { "name": "github", @@ -34,4 +34,4 @@ "defi", "governance" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x95a1199EBA84ac5f19546519e287d43D2F0E1b41/info.json b/blockchains/smartchain/assets/0x95a1199EBA84ac5f19546519e287d43D2F0E1b41/info.json index 5868bacb01936..8a05c9e246752 100644 --- a/blockchains/smartchain/assets/0x95a1199EBA84ac5f19546519e287d43D2F0E1b41/info.json +++ b/blockchains/smartchain/assets/0x95a1199EBA84ac5f19546519e287d43D2F0E1b41/info.json @@ -10,8 +10,8 @@ "id": "0x95a1199EBA84ac5f19546519e287d43D2F0E1b41", "links": [ { - "name": "twitter", - "url": "https://twitter.com/FinanceRabbit" + "name": "x", + "url": "https://x.com/FinanceRabbit" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0x95c78222B3D6e262426483D42CfA53685A67Ab9D/info.json b/blockchains/smartchain/assets/0x95c78222B3D6e262426483D42CfA53685A67Ab9D/info.json index 18fdbae94f528..90caed23625f3 100644 --- a/blockchains/smartchain/assets/0x95c78222B3D6e262426483D42CfA53685A67Ab9D/info.json +++ b/blockchains/smartchain/assets/0x95c78222B3D6e262426483D42CfA53685A67Ab9D/info.json @@ -11,8 +11,8 @@ "id": "0x95c78222B3D6e262426483D42CfA53685A67Ab9D", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VenusProtocol" + "name": "x", + "url": "https://x.com/VenusProtocol" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x95c91eEf65F50570cFC3f269961a00108Cf7BF59/info.json b/blockchains/smartchain/assets/0x95c91eEf65F50570cFC3f269961a00108Cf7BF59/info.json index 43748f45688c1..8a2ad71d12685 100644 --- a/blockchains/smartchain/assets/0x95c91eEf65F50570cFC3f269961a00108Cf7BF59/info.json +++ b/blockchains/smartchain/assets/0x95c91eEf65F50570cFC3f269961a00108Cf7BF59/info.json @@ -10,8 +10,8 @@ "id": "0x95c91eEf65F50570cFC3f269961a00108Cf7BF59", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TheDonsCoin" + "name": "x", + "url": "https://x.com/TheDonsCoin" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x960a69E979d2F507E80121f41d984Ea8aD83cD76/info.json b/blockchains/smartchain/assets/0x960a69E979d2F507E80121f41d984Ea8aD83cD76/info.json index 7ab63bce435f7..0591327e4540f 100644 --- a/blockchains/smartchain/assets/0x960a69E979d2F507E80121f41d984Ea8aD83cD76/info.json +++ b/blockchains/smartchain/assets/0x960a69E979d2F507E80121f41d984Ea8aD83cD76/info.json @@ -10,8 +10,8 @@ "id": "0x960a69E979d2F507E80121f41d984Ea8aD83cD76", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Gamersenft" + "name": "x", + "url": "https://x.com/Gamersenft" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x9612F89F32c8A8419bE7a65358e485b76Db2d7f4/info.json b/blockchains/smartchain/assets/0x9612F89F32c8A8419bE7a65358e485b76Db2d7f4/info.json index d261ccf833ede..8a063deb7c2e8 100644 --- a/blockchains/smartchain/assets/0x9612F89F32c8A8419bE7a65358e485b76Db2d7f4/info.json +++ b/blockchains/smartchain/assets/0x9612F89F32c8A8419bE7a65358e485b76Db2d7f4/info.json @@ -18,8 +18,8 @@ "url": "https://github.com/BullexTeam" }, { - "name": "twitter", - "url": "https://twitter.com/bullextoken" + "name": "x", + "url": "https://x.com/bullextoken" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json b/blockchains/smartchain/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json index 73361abeb4533..3414700830685 100644 --- a/blockchains/smartchain/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json +++ b/blockchains/smartchain/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json @@ -6,12 +6,12 @@ "website": "https://www.dypius.com/", "description": "Dypius is a powerful, decentralized ecosystem with a focus on scalability, security, and global adoption through next-gen infrastructure. We offer a variety of products and services that cater to both beginners and advanced users in the crypto space including DeFi solutions, analytical tools, NFTs, Metaverse and more!", "explorer": "https://bscscan.com/token/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", - "status": "active", + "status": "abandoned", "id": "0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", "links": [ { - "name": "twitter", - "url": "https://twitter.com/dypfinance" + "name": "x", + "url": "https://x.com/dypfinance" }, { "name": "github", @@ -41,7 +41,6 @@ "tags": [ "governance", "nft", - "defi", - "staking-native" + "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png b/blockchains/smartchain/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png deleted file mode 100644 index 129342cfae435..0000000000000 Binary files a/blockchains/smartchain/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x965F527D9159dCe6288a2219DB51fc6Eef120dD1/info.json b/blockchains/smartchain/assets/0x965F527D9159dCe6288a2219DB51fc6Eef120dD1/info.json index a6c00f27d28c4..f58f515657dfd 100644 --- a/blockchains/smartchain/assets/0x965F527D9159dCe6288a2219DB51fc6Eef120dD1/info.json +++ b/blockchains/smartchain/assets/0x965F527D9159dCe6288a2219DB51fc6Eef120dD1/info.json @@ -22,8 +22,8 @@ "url": "https://t.me/biswap_news" }, { - "name": "twitter", - "url": "https://twitter.com/Biswap_DEX" + "name": "x", + "url": "https://x.com/Biswap_DEX" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0x966EbCBA3c51E81f5CF159a1EaBeFd2327aB5E8D/info.json b/blockchains/smartchain/assets/0x966EbCBA3c51E81f5CF159a1EaBeFd2327aB5E8D/info.json new file mode 100644 index 0000000000000..5e4b040e297e1 --- /dev/null +++ b/blockchains/smartchain/assets/0x966EbCBA3c51E81f5CF159a1EaBeFd2327aB5E8D/info.json @@ -0,0 +1,24 @@ +{ + "name": "Seagate (Ondo Tokenized)", + "type": "BEP20", + "symbol": "STXon", + "decimals": 18, + "description": "STXon is the Ondo Tokenized version of Seagate, giving tokenholders economic exposure similar to holding STX and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x966EbCBA3c51E81f5CF159a1EaBeFd2327aB5E8D", + "status": "active", + "id": "0x966EbCBA3c51E81f5CF159a1EaBeFd2327aB5E8D", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/seagate-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x966EbCBA3c51E81f5CF159a1EaBeFd2327aB5E8D/logo.png b/blockchains/smartchain/assets/0x966EbCBA3c51E81f5CF159a1EaBeFd2327aB5E8D/logo.png new file mode 100644 index 0000000000000..3cee526c5f442 Binary files /dev/null and b/blockchains/smartchain/assets/0x966EbCBA3c51E81f5CF159a1EaBeFd2327aB5E8D/logo.png differ diff --git a/blockchains/smartchain/assets/0x96702be57Cd9777f835117a809C7124fe4ec989A/info.json b/blockchains/smartchain/assets/0x96702be57Cd9777f835117a809C7124fe4ec989A/info.json new file mode 100644 index 0000000000000..ceb0e65e53827 --- /dev/null +++ b/blockchains/smartchain/assets/0x96702be57Cd9777f835117a809C7124fe4ec989A/info.json @@ -0,0 +1,24 @@ +{ + "name": "Meta tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Meta tokenized stock (xStock) (METAX) is a cryptocurrency and operates on the Solana platform. Meta tokenized stock (xStock) has a current supply of 1,000. The last known price of Meta tokenized stock (xStock) is 769.51285738 USD and is up 1.36 over the last 24 hours. It is currently trading on 26 active market(s) with $3,617,932.72 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/meta-xstock.", + "explorer": "https://bscscan.com/token/0x96702be57Cd9777f835117a809C7124fe4ec989A", + "type": "BEP20", + "symbol": "METAX", + "decimals": 18, + "status": "active", + "id": "0x96702be57Cd9777f835117a809C7124fe4ec989A", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/meta-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x96702be57Cd9777f835117a809C7124fe4ec989A/logo.png b/blockchains/smartchain/assets/0x96702be57Cd9777f835117a809C7124fe4ec989A/logo.png new file mode 100644 index 0000000000000..bce8b3c7c676d Binary files /dev/null and b/blockchains/smartchain/assets/0x96702be57Cd9777f835117a809C7124fe4ec989A/logo.png differ diff --git a/blockchains/smartchain/assets/0x9678E42ceBEb63F23197D726B29b1CB20d0064E5/info.json b/blockchains/smartchain/assets/0x9678E42ceBEb63F23197D726B29b1CB20d0064E5/info.json index a8e20925141f9..12c1b689750d1 100644 --- a/blockchains/smartchain/assets/0x9678E42ceBEb63F23197D726B29b1CB20d0064E5/info.json +++ b/blockchains/smartchain/assets/0x9678E42ceBEb63F23197D726B29b1CB20d0064E5/info.json @@ -1,5 +1,5 @@ { - "name": "BNB pegged IoTeX Network", + "name": "IoTeX", "website": "https://iotex.io", "description": "BNB pegged IoTeX Network (IOTX BEP20) is a token issued by Binance on Smart Chain; its price is pegged to IoTeX Network (IOTX ERC20) at a ratio of 1:1.", "research": "https://iotex.io/research", @@ -19,8 +19,8 @@ "url": "https://github.com/iotexproject/iotex-core" }, { - "name": "twitter", - "url": "https://twitter.com/iotex_io" + "name": "x", + "url": "https://x.com/iotex_io" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x968F6f898a6Df937fC1859b323aC2F14643e3fED/info.json b/blockchains/smartchain/assets/0x968F6f898a6Df937fC1859b323aC2F14643e3fED/info.json index c7e84d0a927dc..65894a59cd954 100644 --- a/blockchains/smartchain/assets/0x968F6f898a6Df937fC1859b323aC2F14643e3fED/info.json +++ b/blockchains/smartchain/assets/0x968F6f898a6Df937fC1859b323aC2F14643e3fED/info.json @@ -11,8 +11,8 @@ "id": "0x968F6f898a6Df937fC1859b323aC2F14643e3fED", "links": [ { - "name": "twitter", - "url": "https://twitter.com/NwcPublic" + "name": "x", + "url": "https://x.com/NwcPublic" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x96a3b63701DBC6D40A1C4153734778443b0175aD/info.json b/blockchains/smartchain/assets/0x96a3b63701DBC6D40A1C4153734778443b0175aD/info.json new file mode 100644 index 0000000000000..9e20c3e28e839 --- /dev/null +++ b/blockchains/smartchain/assets/0x96a3b63701DBC6D40A1C4153734778443b0175aD/info.json @@ -0,0 +1,21 @@ +{ + "name": "CAKEDOG", + "website": "https://cakedogbsc.com/", + "description": "First token deployed on Springboard!‍ $CAKEDOG gonna lead the bsc season", + "explorer": "https://bscscan.com/token/0x96a3b63701dbc6d40a1c4153734778443b0175ad", + "type": "BEP20", + "symbol": "CAKEDOG", + "decimals": 18, + "status": "active", + "id": "0x96a3b63701DBC6D40A1C4153734778443b0175aD", + "links": [ + { + "name": "x", + "url": "https://x.com/CAKEDOGCOIN" + }, + { + "name": "telegram", + "url": "https://t.me/cakedogbsc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x96a3b63701DBC6D40A1C4153734778443b0175aD/logo.png b/blockchains/smartchain/assets/0x96a3b63701DBC6D40A1C4153734778443b0175aD/logo.png new file mode 100644 index 0000000000000..fe0204c6182d6 Binary files /dev/null and b/blockchains/smartchain/assets/0x96a3b63701DBC6D40A1C4153734778443b0175aD/logo.png differ diff --git a/blockchains/smartchain/assets/0x96aC1E773677FA02726B5A670CA96a7aDf7F8523/info.json b/blockchains/smartchain/assets/0x96aC1E773677FA02726B5A670CA96a7aDf7F8523/info.json index 4c7c3e934a3b5..4b6b35dddcc2d 100644 --- a/blockchains/smartchain/assets/0x96aC1E773677FA02726B5A670CA96a7aDf7F8523/info.json +++ b/blockchains/smartchain/assets/0x96aC1E773677FA02726B5A670CA96a7aDf7F8523/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/minihollywooddoge" }, { - "name": "twitter", - "url": "https://twitter.com/DogeHollywood" + "name": "x", + "url": "https://x.com/DogeHollywood" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x96fb784986284Cb6d4A8da6DD50dD7E85EF38F5D/info.json b/blockchains/smartchain/assets/0x96fb784986284Cb6d4A8da6DD50dD7E85EF38F5D/info.json new file mode 100644 index 0000000000000..26feba46d599b --- /dev/null +++ b/blockchains/smartchain/assets/0x96fb784986284Cb6d4A8da6DD50dD7E85EF38F5D/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT USDT.C", + "type": "BEP20", + "symbol": "HONEYPOT USDT.C", + "decimals": 6, + "website": "https://bscscan.com/token/0x96fb784986284Cb6d4A8da6DD50dD7E85EF38F5D", + "description": "HONEYPOT USDT.C", + "explorer": "https://bscscan.com/token/0x96fb784986284Cb6d4A8da6DD50dD7E85EF38F5D", + "status": "spam", + "id": "0x96fb784986284Cb6d4A8da6DD50dD7E85EF38F5D" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x97012db0142825526239580CAeAce634C082bb34/info.json b/blockchains/smartchain/assets/0x97012db0142825526239580CAeAce634C082bb34/info.json index 3555b55034172..a962fad169ff9 100644 --- a/blockchains/smartchain/assets/0x97012db0142825526239580CAeAce634C082bb34/info.json +++ b/blockchains/smartchain/assets/0x97012db0142825526239580CAeAce634C082bb34/info.json @@ -10,8 +10,8 @@ "id": "0x97012db0142825526239580CAeAce634C082bb34", "links": [ { - "name": "twitter", - "url": "https://twitter.com/petmoonnft" + "name": "x", + "url": "https://x.com/petmoonnft" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x9720CA160Bbd4E7f3dD4bb3f8BD4227ca0342e63/info.json b/blockchains/smartchain/assets/0x9720CA160Bbd4E7f3dD4bb3f8BD4227ca0342e63/info.json index eed6912571599..1e2df5aa38444 100644 --- a/blockchains/smartchain/assets/0x9720CA160Bbd4E7f3dD4bb3f8BD4227ca0342e63/info.json +++ b/blockchains/smartchain/assets/0x9720CA160Bbd4E7f3dD4bb3f8BD4227ca0342e63/info.json @@ -10,8 +10,8 @@ "id": "0x9720CA160Bbd4E7f3dD4bb3f8BD4227ca0342e63", "links": [ { - "name": "twitter", - "url": "https://twitter.com/gamespad_vc" + "name": "x", + "url": "https://x.com/gamespad_vc" }, { "name": "telegram", @@ -30,4 +30,4 @@ "gamefi", "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x972207A639CC1B374B893cc33Fa251b55CEB7c07/info.json b/blockchains/smartchain/assets/0x972207A639CC1B374B893cc33Fa251b55CEB7c07/info.json index 1a126a8a0a4a1..edb1772f18e73 100644 --- a/blockchains/smartchain/assets/0x972207A639CC1B374B893cc33Fa251b55CEB7c07/info.json +++ b/blockchains/smartchain/assets/0x972207A639CC1B374B893cc33Fa251b55CEB7c07/info.json @@ -11,8 +11,8 @@ "id": "0x972207A639CC1B374B893cc33Fa251b55CEB7c07", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VenusProtocol" + "name": "x", + "url": "https://x.com/VenusProtocol" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x9767c8E438Aa18f550208e6d1fDf5f43541cC2c8/info.json b/blockchains/smartchain/assets/0x9767c8E438Aa18f550208e6d1fDf5f43541cC2c8/info.json index a0c884758c5a1..4400885c6fa13 100644 --- a/blockchains/smartchain/assets/0x9767c8E438Aa18f550208e6d1fDf5f43541cC2c8/info.json +++ b/blockchains/smartchain/assets/0x9767c8E438Aa18f550208e6d1fDf5f43541cC2c8/info.json @@ -10,8 +10,8 @@ "id": "0x9767c8E438Aa18f550208e6d1fDf5f43541cC2c8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/mangomanintell" + "name": "x", + "url": "https://x.com/mangomanintell" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x976dd46dBA1217Fcf537224f92bea83c72768888/info.json b/blockchains/smartchain/assets/0x976dd46dBA1217Fcf537224f92bea83c72768888/info.json new file mode 100644 index 0000000000000..d2dd04968d420 --- /dev/null +++ b/blockchains/smartchain/assets/0x976dd46dBA1217Fcf537224f92bea83c72768888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Bitcoin", + "type": "BEP20", + "symbol": "FAKE BTC", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x976dd46dBA1217Fcf537224f92bea83c72768888", + "explorer": "https://bscscan.com/token/0x976dd46dBA1217Fcf537224f92bea83c72768888", + "status": "spam", + "id": "0x976dd46dBA1217Fcf537224f92bea83c72768888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x97a30C692eCe9C317235d48287d23d358170FC40/info.json b/blockchains/smartchain/assets/0x97a30C692eCe9C317235d48287d23d358170FC40/info.json index 855b5557bf854..287bfd2534de3 100644 --- a/blockchains/smartchain/assets/0x97a30C692eCe9C317235d48287d23d358170FC40/info.json +++ b/blockchains/smartchain/assets/0x97a30C692eCe9C317235d48287d23d358170FC40/info.json @@ -11,8 +11,8 @@ "id": "0x97a30C692eCe9C317235d48287d23d358170FC40", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ExLocker" + "name": "x", + "url": "https://x.com/ExLocker" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x97c6825e6911578A515B11e25B552Ecd5fE58dbA/info.json b/blockchains/smartchain/assets/0x97c6825e6911578A515B11e25B552Ecd5fE58dbA/info.json index eda24b31b1489..a6480e751f18c 100644 --- a/blockchains/smartchain/assets/0x97c6825e6911578A515B11e25B552Ecd5fE58dbA/info.json +++ b/blockchains/smartchain/assets/0x97c6825e6911578A515B11e25B552Ecd5fE58dbA/info.json @@ -10,8 +10,8 @@ "id": "0x97c6825e6911578A515B11e25B552Ecd5fE58dbA", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BurningMoonBSC" + "name": "x", + "url": "https://x.com/BurningMoonBSC" }, { "name": "telegram", @@ -26,4 +26,4 @@ "url": "https://coinmarketcap.com/currencies/burningmoon/" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x97eA5EfDCb5961A99bA5C96123042507C0210Ec1/info.json b/blockchains/smartchain/assets/0x97eA5EfDCb5961A99bA5C96123042507C0210Ec1/info.json index 12e525cdcccdf..c8372c2be14d4 100644 --- a/blockchains/smartchain/assets/0x97eA5EfDCb5961A99bA5C96123042507C0210Ec1/info.json +++ b/blockchains/smartchain/assets/0x97eA5EfDCb5961A99bA5C96123042507C0210Ec1/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/monkey-shanti/flokinomics/" }, { - "name": "twitter", - "url": "https://twitter.com/FlokinomicsCoin" + "name": "x", + "url": "https://x.com/FlokinomicsCoin" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x9804021fab007caf29c8D75E3bEcACeC7860de30/info.json b/blockchains/smartchain/assets/0x9804021fab007caf29c8D75E3bEcACeC7860de30/info.json new file mode 100644 index 0000000000000..2ee146b4d73cd --- /dev/null +++ b/blockchains/smartchain/assets/0x9804021fab007caf29c8D75E3bEcACeC7860de30/info.json @@ -0,0 +1,19 @@ +{ + "name": "EYE", + "type": "BEP20", + "symbol": "EYE", + "decimals": 18, + "description": "The AI-Powered Chart Analyser for Binance Smart Chain (BSC) is a trading tool that integrates state-of-the-art artificial intelligence and machine learning algorithms to analyze BNB chain price charts in real-time.", + "website": "https://eye-analyser.com", + "explorer": "https://bscscan.com/token/0x9804021fab007caf29c8d75e3becacec7860de30", + "id": "0x9804021fab007caf29c8D75E3bEcACeC7860de30", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/TheEyeAnalyser" + } + + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9804021fab007caf29c8D75E3bEcACeC7860de30/logo.png b/blockchains/smartchain/assets/0x9804021fab007caf29c8D75E3bEcACeC7860de30/logo.png new file mode 100644 index 0000000000000..672e3c7d93fa2 Binary files /dev/null and b/blockchains/smartchain/assets/0x9804021fab007caf29c8D75E3bEcACeC7860de30/logo.png differ diff --git a/blockchains/smartchain/assets/0x980b37a82B60A32965b6e56356D14E0410ea440F/info.json b/blockchains/smartchain/assets/0x980b37a82B60A32965b6e56356D14E0410ea440F/info.json index 9c425d2972213..d64d1c4d20dbf 100644 --- a/blockchains/smartchain/assets/0x980b37a82B60A32965b6e56356D14E0410ea440F/info.json +++ b/blockchains/smartchain/assets/0x980b37a82B60A32965b6e56356D14E0410ea440F/info.json @@ -10,8 +10,8 @@ "id": "0x980b37a82B60A32965b6e56356D14E0410ea440F", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ronin_gamez" + "name": "x", + "url": "https://x.com/ronin_gamez" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x9810beac9af3C30d14cFB61cDd557E160f60FD50/info.json b/blockchains/smartchain/assets/0x9810beac9af3C30d14cFB61cDd557E160f60FD50/info.json new file mode 100644 index 0000000000000..c1085acdbaa04 --- /dev/null +++ b/blockchains/smartchain/assets/0x9810beac9af3C30d14cFB61cDd557E160f60FD50/info.json @@ -0,0 +1,28 @@ +{ + "name": "Li Auto (Ondo Tokenized)", + "type": "BEP20", + "symbol": "LIon", + "decimals": 18, + "description": "LIon is the Ondo Tokenized version of Li Auto, giving tokenholders economic exposure similar to holding LI and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x9810beac9af3C30d14cFB61cDd557E160f60FD50", + "status": "active", + "id": "0x9810beac9af3C30d14cFB61cDd557E160f60FD50", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/li-auto-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/li-auto-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9810beac9af3C30d14cFB61cDd557E160f60FD50/logo.png b/blockchains/smartchain/assets/0x9810beac9af3C30d14cFB61cDd557E160f60FD50/logo.png new file mode 100644 index 0000000000000..b1097ce82bb59 Binary files /dev/null and b/blockchains/smartchain/assets/0x9810beac9af3C30d14cFB61cDd557E160f60FD50/logo.png differ diff --git a/blockchains/smartchain/assets/0x981D1681E366461ADaee5B451C7a4b0eF9F6078b/info.json b/blockchains/smartchain/assets/0x981D1681E366461ADaee5B451C7a4b0eF9F6078b/info.json new file mode 100644 index 0000000000000..150110217a4fa --- /dev/null +++ b/blockchains/smartchain/assets/0x981D1681E366461ADaee5B451C7a4b0eF9F6078b/info.json @@ -0,0 +1,17 @@ +{ + "name": "BEBE", + "symbol": "BEBE", + "website": "https://x.com/sunshinebinance/status/1861492803693617393?s=46", + "description": "binance dogs only real name, confirmed by binance employee", + "explorer": "https://bscscan.com/token/0x981d1681e366461adaee5b451c7a4b0ef9f6078b", + "decimals": 18, + "status": "active", + "id": "0x981D1681E366461ADaee5B451C7a4b0eF9F6078b", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/sunshinebinance/status/1861492803693617393?s=46" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x981D1681E366461ADaee5B451C7a4b0eF9F6078b/logo.png b/blockchains/smartchain/assets/0x981D1681E366461ADaee5B451C7a4b0eF9F6078b/logo.png new file mode 100644 index 0000000000000..d4973e74bfb01 Binary files /dev/null and b/blockchains/smartchain/assets/0x981D1681E366461ADaee5B451C7a4b0eF9F6078b/logo.png differ diff --git a/blockchains/smartchain/assets/0x9840652DC04fb9db2C43853633f0F62BE6f00f98/info.json b/blockchains/smartchain/assets/0x9840652DC04fb9db2C43853633f0F62BE6f00f98/info.json index 53de2aa6bab1c..c039ba6559d8c 100644 --- a/blockchains/smartchain/assets/0x9840652DC04fb9db2C43853633f0F62BE6f00f98/info.json +++ b/blockchains/smartchain/assets/0x9840652DC04fb9db2C43853633f0F62BE6f00f98/info.json @@ -10,8 +10,8 @@ "id": "0x9840652DC04fb9db2C43853633f0F62BE6f00f98", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Chain_GPT" + "name": "x", + "url": "https://x.com/Chain_GPT" }, { "name": "telegram", @@ -26,4 +26,4 @@ "url": "https://coinmarketcap.com/currencies/chaingpt/" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x984811e6f2695192add6f88615dF637bf52a5Cae/info.json b/blockchains/smartchain/assets/0x984811e6f2695192add6f88615dF637bf52a5Cae/info.json index 901e630210f32..906c41a601694 100644 --- a/blockchains/smartchain/assets/0x984811e6f2695192add6f88615dF637bf52a5Cae/info.json +++ b/blockchains/smartchain/assets/0x984811e6f2695192add6f88615dF637bf52a5Cae/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/HoppyMeme_Official" }, { - "name": "twitter", - "url": "https://twitter.com/HoppyMeme" + "name": "x", + "url": "https://x.com/HoppyMeme" }, { "name": "medium", @@ -27,4 +27,4 @@ "defi", "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9876F4b879cDe9Aa49Ffd260034A0698B7B33A49/info.json b/blockchains/smartchain/assets/0x9876F4b879cDe9Aa49Ffd260034A0698B7B33A49/info.json new file mode 100644 index 0000000000000..f07d209ec9cbe --- /dev/null +++ b/blockchains/smartchain/assets/0x9876F4b879cDe9Aa49Ffd260034A0698B7B33A49/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares MSCI Brazil ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "EWZon", + "decimals": 18, + "description": "EWZon is the Ondo Tokenized version of the iShares MSCI Brazil ETF, giving tokenholders economic exposure similar to holding EWZ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x9876F4b879cDe9Aa49Ffd260034A0698B7B33A49", + "status": "active", + "id": "0x9876F4b879cDe9Aa49Ffd260034A0698B7B33A49", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-msci-brazil-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9876F4b879cDe9Aa49Ffd260034A0698B7B33A49/logo.png b/blockchains/smartchain/assets/0x9876F4b879cDe9Aa49Ffd260034A0698B7B33A49/logo.png new file mode 100644 index 0000000000000..2ce033b091a15 Binary files /dev/null and b/blockchains/smartchain/assets/0x9876F4b879cDe9Aa49Ffd260034A0698B7B33A49/logo.png differ diff --git a/blockchains/smartchain/assets/0x987bE10EEE9074aFF8C31DFe99a3990a28f647e7/info.json b/blockchains/smartchain/assets/0x987bE10EEE9074aFF8C31DFe99a3990a28f647e7/info.json new file mode 100644 index 0000000000000..9e5bd92329823 --- /dev/null +++ b/blockchains/smartchain/assets/0x987bE10EEE9074aFF8C31DFe99a3990a28f647e7/info.json @@ -0,0 +1,17 @@ +{ + "name": "Shonen Pump", + "symbol": "SHONEN", + "website": "https://www.shonenpump.com", + "description": "A crypto-powered rebellion against the toxic work culture enslaving anime and manga creators.", + "explorer": "https://bscscan.com/token/0x987be10eee9074aff8c31dfe99a3990a28f647e7", + "decimals": 18, + "status": "active", + "id": "0x987bE10EEE9074aFF8C31DFe99a3990a28f647e7", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/ShonenPumpDAO" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x987bE10EEE9074aFF8C31DFe99a3990a28f647e7/logo.png b/blockchains/smartchain/assets/0x987bE10EEE9074aFF8C31DFe99a3990a28f647e7/logo.png new file mode 100644 index 0000000000000..419fcf7aa507f Binary files /dev/null and b/blockchains/smartchain/assets/0x987bE10EEE9074aFF8C31DFe99a3990a28f647e7/logo.png differ diff --git a/blockchains/smartchain/assets/0x988F7c894e4001EEB7B570CDE80dffE21CF7B6B9/info.json b/blockchains/smartchain/assets/0x988F7c894e4001EEB7B570CDE80dffE21CF7B6B9/info.json index 13d8e8627ca09..962f2b048e716 100644 --- a/blockchains/smartchain/assets/0x988F7c894e4001EEB7B570CDE80dffE21CF7B6B9/info.json +++ b/blockchains/smartchain/assets/0x988F7c894e4001EEB7B570CDE80dffE21CF7B6B9/info.json @@ -26,8 +26,8 @@ "url": "https://coingecko.com/en/coins/lucro" }, { - "name": "twitter", - "url": "https://twitter.com/lucrotoken" + "name": "x", + "url": "https://x.com/lucrotoken" }, { "name": "discord", diff --git a/blockchains/smartchain/assets/0x988c11625472340b7B36FF1534893780E0d8d841/info.json b/blockchains/smartchain/assets/0x988c11625472340b7B36FF1534893780E0d8d841/info.json index 33812bd420e4d..c36f6db644528 100644 --- a/blockchains/smartchain/assets/0x988c11625472340b7B36FF1534893780E0d8d841/info.json +++ b/blockchains/smartchain/assets/0x988c11625472340b7B36FF1534893780E0d8d841/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/ConcealNetwork" }, { - "name": "twitter", - "url": "https://twitter.com/ConcealNetwork" + "name": "x", + "url": "https://x.com/ConcealNetwork" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x98920039fea77F10eC04c049D125A4217A4Fe0Eb/info.json b/blockchains/smartchain/assets/0x98920039fea77F10eC04c049D125A4217A4Fe0Eb/info.json new file mode 100644 index 0000000000000..400b274c1d897 --- /dev/null +++ b/blockchains/smartchain/assets/0x98920039fea77F10eC04c049D125A4217A4Fe0Eb/info.json @@ -0,0 +1,17 @@ +{ + "name": "BURGERS", + "website": "https://burgers.buzz/", + "description": "Serving Burgers NOW!", + "explorer": "https://bscscan.com/token/0x98920039fea77f10ec04c049d125a4217a4fe0eb", + "type": "BEP20", + "symbol": "BURGERS", + "decimals": 18, + "status": "abandoned", + "id": "0x98920039fea77F10eC04c049D125A4217A4Fe0Eb", + "links": [ + { + "name": "x", + "url": "https://x.com/Burgers_bsc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x98936Bde1CF1BFf1e7a8012Cee5e2583851f2067/info.json b/blockchains/smartchain/assets/0x98936Bde1CF1BFf1e7a8012Cee5e2583851f2067/info.json index 6d9a94243a08f..68788fc7700b8 100644 --- a/blockchains/smartchain/assets/0x98936Bde1CF1BFf1e7a8012Cee5e2583851f2067/info.json +++ b/blockchains/smartchain/assets/0x98936Bde1CF1BFf1e7a8012Cee5e2583851f2067/info.json @@ -6,8 +6,8 @@ "type": "BEP20", "links": [ { - "name": "twitter", - "url": "https://twitter.com/AnnexFinance" + "name": "x", + "url": "https://x.com/AnnexFinance" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0x989b8F0219EB7aa0bED22E24f053Eb2B155f4394/info.json b/blockchains/smartchain/assets/0x989b8F0219EB7aa0bED22E24f053Eb2B155f4394/info.json index 0c9847f896818..ac5296306dffa 100644 --- a/blockchains/smartchain/assets/0x989b8F0219EB7aa0bED22E24f053Eb2B155f4394/info.json +++ b/blockchains/smartchain/assets/0x989b8F0219EB7aa0bED22E24f053Eb2B155f4394/info.json @@ -14,8 +14,8 @@ "url": "https://mommydoge.com/MommyDoge_Whitepaper.pdf" }, { - "name": "twitter", - "url": "https://twitter.com/NewMommyDoge" + "name": "x", + "url": "https://x.com/NewMommyDoge" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x98A2500A2C3B8877B0eD5ac3ACC300C50Bf7064b/info.json b/blockchains/smartchain/assets/0x98A2500A2C3B8877B0eD5ac3ACC300C50Bf7064b/info.json index b2a9ddf44d9be..3f312fa5acc3a 100644 --- a/blockchains/smartchain/assets/0x98A2500A2C3B8877B0eD5ac3ACC300C50Bf7064b/info.json +++ b/blockchains/smartchain/assets/0x98A2500A2C3B8877B0eD5ac3ACC300C50Bf7064b/info.json @@ -10,8 +10,8 @@ "id": "0x98A2500A2C3B8877B0eD5ac3ACC300C50Bf7064b", "links": [ { - "name": "twitter", - "url": "https://twitter.com/nootcoinbnb" + "name": "x", + "url": "https://x.com/nootcoinbnb" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x98f8669F6481EbB341B522fCD3663f79A3d1A6A7/info.json b/blockchains/smartchain/assets/0x98f8669F6481EbB341B522fCD3663f79A3d1A6A7/info.json index d2cae8a3b3ab1..a4f0fcfd78d29 100644 --- a/blockchains/smartchain/assets/0x98f8669F6481EbB341B522fCD3663f79A3d1A6A7/info.json +++ b/blockchains/smartchain/assets/0x98f8669F6481EbB341B522fCD3663f79A3d1A6A7/info.json @@ -23,8 +23,8 @@ "url": "https://github.com/NEST-Protocol" }, { - "name": "twitter", - "url": "https://twitter.com/NEST_Protocol" + "name": "x", + "url": "https://x.com/NEST_Protocol" }, { "name": "whitepaper", diff --git a/blockchains/smartchain/assets/0x9906DBDeD3dbf64A1f69b6E89a5c9f2E94d12a79/info.json b/blockchains/smartchain/assets/0x9906DBDeD3dbf64A1f69b6E89a5c9f2E94d12a79/info.json new file mode 100644 index 0000000000000..f62a6422796bf --- /dev/null +++ b/blockchains/smartchain/assets/0x9906DBDeD3dbf64A1f69b6E89a5c9f2E94d12a79/info.json @@ -0,0 +1,36 @@ +{ + "name": "TreasureTV", + "type": "BEP20", + "symbol": "USDTV", + "decimals": 18, + "website": "https://usdtv.org/", + "description": "USDTV is a cryptocurrency anchored in blockchain, integrating concepts of decentralized finance (DeFi) with television engagement. Its issuance and value are initially determined by a dynamic Television Engagement Index, reflecting the popularity, consumption, and interaction with television content. Over time, the value of USDTV is stabilized in relation to the US dollar, through adjustment algorithms and governance policies, ensuring a stable foundation for transactions and investments.", + "explorer": "https://bscscan.com/token/0x9906dbded3dbf64a1f69b6e89a5c9f2e94d12a79", + "status": "active", + "id": "0x9906DBDeD3dbf64A1f69b6E89a5c9f2E94d12a79", + "links": [ + { + "name": "x", + "url": "https://x.com/TetherTV_" + }, + { + "name": "github", + "url": "https://github.com/trustwallet/assets/pull/27618" + }, + { + "name": "telegram", + "url": "https://t.me/UsdtvGroup" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/pt-br/currencies/tethertv/" + }, + { + "name": "whitepaper", + "url": "https://usdtv.gitbook.io/whitepapper-usdtv" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9906DBDeD3dbf64A1f69b6E89a5c9f2E94d12a79/logo.png b/blockchains/smartchain/assets/0x9906DBDeD3dbf64A1f69b6E89a5c9f2E94d12a79/logo.png new file mode 100644 index 0000000000000..cd7490c9c9df6 Binary files /dev/null and b/blockchains/smartchain/assets/0x9906DBDeD3dbf64A1f69b6E89a5c9f2E94d12a79/logo.png differ diff --git a/blockchains/smartchain/assets/0x990E7154bB999FAa9b2fa5Ed29E822703311eA85/info.json b/blockchains/smartchain/assets/0x990E7154bB999FAa9b2fa5Ed29E822703311eA85/info.json index ce551182b8d92..a2736458f6973 100644 --- a/blockchains/smartchain/assets/0x990E7154bB999FAa9b2fa5Ed29E822703311eA85/info.json +++ b/blockchains/smartchain/assets/0x990E7154bB999FAa9b2fa5Ed29E822703311eA85/info.json @@ -11,8 +11,8 @@ "id": "0x990E7154bB999FAa9b2fa5Ed29E822703311eA85", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ThunderCoreLab" + "name": "x", + "url": "https://x.com/ThunderCoreLab" }, { "name": "discord", diff --git a/blockchains/smartchain/assets/0x9910f48EF7bd0291bC050CF900D732C24b39Ec31/info.json b/blockchains/smartchain/assets/0x9910f48EF7bd0291bC050CF900D732C24b39Ec31/info.json index 2140d36d36afb..c6dbe69d3225d 100644 --- a/blockchains/smartchain/assets/0x9910f48EF7bd0291bC050CF900D732C24b39Ec31/info.json +++ b/blockchains/smartchain/assets/0x9910f48EF7bd0291bC050CF900D732C24b39Ec31/info.json @@ -10,8 +10,8 @@ "id": "0x9910f48EF7bd0291bC050CF900D732C24b39Ec31", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MarsInuBsc" + "name": "x", + "url": "https://x.com/MarsInuBsc" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x992879Cd8ce0c312d98648875B5A8D6D042cbF34/info.json b/blockchains/smartchain/assets/0x992879Cd8ce0c312d98648875B5A8D6D042cbF34/info.json new file mode 100644 index 0000000000000..bb6881e0032ae --- /dev/null +++ b/blockchains/smartchain/assets/0x992879Cd8ce0c312d98648875B5A8D6D042cbF34/info.json @@ -0,0 +1,24 @@ +{ + "name": "Circle Internet Group (Ondo)", + "website": "https://ondo.finance/", + "description": "CRCLon is the Ondo Tokenized version of Circle Internet Group, giving tokenholders economic exposure similar to holding CRCL and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x992879cd8ce0c312d98648875b5a8d6d042cbf34", + "type": "BEP20", + "symbol": "CRCLon", + "decimals": 18, + "status": "active", + "id": "0x992879Cd8ce0c312d98648875B5A8D6D042cbF34", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/circle-internet-group-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x992879Cd8ce0c312d98648875B5A8D6D042cbF34/logo.png b/blockchains/smartchain/assets/0x992879Cd8ce0c312d98648875B5A8D6D042cbF34/logo.png new file mode 100644 index 0000000000000..33b0bad3ab1e5 Binary files /dev/null and b/blockchains/smartchain/assets/0x992879Cd8ce0c312d98648875B5A8D6D042cbF34/logo.png differ diff --git a/blockchains/smartchain/assets/0x9953170dcAac530AD7D6949c7295207c6ec5669D/info.json b/blockchains/smartchain/assets/0x9953170dcAac530AD7D6949c7295207c6ec5669D/info.json index 5c1c24f62593b..ad9d2a091e24b 100644 --- a/blockchains/smartchain/assets/0x9953170dcAac530AD7D6949c7295207c6ec5669D/info.json +++ b/blockchains/smartchain/assets/0x9953170dcAac530AD7D6949c7295207c6ec5669D/info.json @@ -10,8 +10,8 @@ "id": "0x9953170dcAac530AD7D6949c7295207c6ec5669D", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MetaDogeBSC" + "name": "x", + "url": "https://x.com/MetaDogeBSC" }, { "name": "telegram", @@ -34,7 +34,6 @@ "nft", "staking", "memes", - "gamefi", - "staking-native" + "gamefi" ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x995ADd4bA29a628A57930a8a185c62cA044eC090/info.json b/blockchains/smartchain/assets/0x995ADd4bA29a628A57930a8a185c62cA044eC090/info.json new file mode 100644 index 0000000000000..181a6a3b47a12 --- /dev/null +++ b/blockchains/smartchain/assets/0x995ADd4bA29a628A57930a8a185c62cA044eC090/info.json @@ -0,0 +1,24 @@ +{ + "name": "McDonald's (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "MCDon is the Ondo Tokenized version of McDonald's, giving tokenholders economic exposure similar to holding MCD and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x995add4ba29a628a57930a8a185c62ca044ec090", + "type": "BEP20", + "symbol": "MCDon", + "decimals": 18, + "status": "active", + "id": "0x995ADd4bA29a628A57930a8a185c62cA044eC090", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mcdonalds-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x995ADd4bA29a628A57930a8a185c62cA044eC090/logo.png b/blockchains/smartchain/assets/0x995ADd4bA29a628A57930a8a185c62cA044eC090/logo.png new file mode 100644 index 0000000000000..af75d5c9507bd Binary files /dev/null and b/blockchains/smartchain/assets/0x995ADd4bA29a628A57930a8a185c62cA044eC090/logo.png differ diff --git a/blockchains/smartchain/assets/0x996D1b997203a024E205069a304161ba618d1c61/info.json b/blockchains/smartchain/assets/0x996D1b997203a024E205069a304161ba618d1c61/info.json new file mode 100644 index 0000000000000..100cc8e2137d2 --- /dev/null +++ b/blockchains/smartchain/assets/0x996D1b997203a024E205069a304161ba618d1c61/info.json @@ -0,0 +1,14 @@ +{ + "name": "Tell A Tale", + "type": "BEP20", + "symbol": "TAT", + "decimals": 18, + "website": "https://four.meme/token/0x996D1b997203a024E205069a304161ba618d1c61", + "description": "The world's 1st AI agent for short video & film production, built on @bnbchain exclusively.", + "explorer": "https://bscscan.com/token/0x996D1b997203a024E205069a304161ba618d1c61", + "status": "active", + "id": "0x996D1b997203a024E205069a304161ba618d1c61", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x996D1b997203a024E205069a304161ba618d1c61/logo.png b/blockchains/smartchain/assets/0x996D1b997203a024E205069a304161ba618d1c61/logo.png new file mode 100644 index 0000000000000..df108d7a97cef Binary files /dev/null and b/blockchains/smartchain/assets/0x996D1b997203a024E205069a304161ba618d1c61/logo.png differ diff --git a/blockchains/smartchain/assets/0x996c1bf72Ec220289ae0edd3a8d77080642121a2/info.json b/blockchains/smartchain/assets/0x996c1bf72Ec220289ae0edd3a8d77080642121a2/info.json index a4984aa16cf9f..29648e1e11064 100644 --- a/blockchains/smartchain/assets/0x996c1bf72Ec220289ae0edd3a8d77080642121a2/info.json +++ b/blockchains/smartchain/assets/0x996c1bf72Ec220289ae0edd3a8d77080642121a2/info.json @@ -10,8 +10,8 @@ "id": "0x996c1bf72Ec220289ae0edd3a8d77080642121a2", "links": [ { - "name": "twitter", - "url": "https://twitter.com/deficonnect" + "name": "x", + "url": "https://x.com/deficonnect" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x9974F4E6FF49ac39469928E5d7cCa3E8649ae6b8/info.json b/blockchains/smartchain/assets/0x9974F4E6FF49ac39469928E5d7cCa3E8649ae6b8/info.json index 041f8ec5bae4f..6eeb52e7a871a 100644 --- a/blockchains/smartchain/assets/0x9974F4E6FF49ac39469928E5d7cCa3E8649ae6b8/info.json +++ b/blockchains/smartchain/assets/0x9974F4E6FF49ac39469928E5d7cCa3E8649ae6b8/info.json @@ -10,8 +10,8 @@ "id": "0x9974F4E6FF49ac39469928E5d7cCa3E8649ae6b8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/@PathFund" + "name": "x", + "url": "https://x.com/@PathFund" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x997A58129890bBdA032231A52eD1ddC845fc18e1/info.json b/blockchains/smartchain/assets/0x997A58129890bBdA032231A52eD1ddC845fc18e1/info.json new file mode 100644 index 0000000000000..2c5353eb0b30a --- /dev/null +++ b/blockchains/smartchain/assets/0x997A58129890bBdA032231A52eD1ddC845fc18e1/info.json @@ -0,0 +1,28 @@ +{ + "name": "SIREN", + "symbol": "SIREN", + "website": "https://x.com/genius_sirenBSC", + "description": "tep into the mystique of ancient lore reimagined for the digital age with SirenCoin (ticker: SIREN). Drawing inspiration from the legendary sirens of Greek mythology—those enchanting beings from Homer’s Odyssey whose celestial songs both bewitched and warned—the project channels their dual nature into an innovative crypto experience. Discover a coin/token that’s as captivating as it is cutting-edge.", + "explorer": "https://bscscan.com/token/0x997a58129890bbda032231a52ed1ddc845fc18e1", + "decimals": 18, + "status": "active", + "id": "0x997A58129890bBdA032231A52eD1ddC845fc18e1", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/genius_sirenBSC" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/siren-bsc/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/siren-2" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x997A58129890bBdA032231A52eD1ddC845fc18e1/logo.png b/blockchains/smartchain/assets/0x997A58129890bBdA032231A52eD1ddC845fc18e1/logo.png new file mode 100644 index 0000000000000..408cc5ca234c7 Binary files /dev/null and b/blockchains/smartchain/assets/0x997A58129890bBdA032231A52eD1ddC845fc18e1/logo.png differ diff --git a/blockchains/smartchain/assets/0x998305efDC264b9674178899FFfBb44a47134a76/info.json b/blockchains/smartchain/assets/0x998305efDC264b9674178899FFfBb44a47134a76/info.json new file mode 100644 index 0000000000000..fed3563f0e1b4 --- /dev/null +++ b/blockchains/smartchain/assets/0x998305efDC264b9674178899FFfBb44a47134a76/info.json @@ -0,0 +1,21 @@ +{ + "name": "Gaimin", + "type": "BEP20", + "symbol": "GMRX", + "decimals": 18, + "website": "https://www.gaimin.io/", + "description": "The GMRX token is a utility token for exclusive use on the GAIMIN PC gaming platform, to enhance your gaming experience, have more fun in our Metaverse, create and own your own gaming NFTs and in-game assets, and more.", + "explorer": "https://bscscan.com/token/0x998305efDC264b9674178899FFfBb44a47134a76", + "status": "active", + "id": "0x998305efDC264b9674178899FFfBb44a47134a76", + "links": [ + { + "name": "x", + "url": "https://x.com/GaiminIo" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gaimin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x998305efDC264b9674178899FFfBb44a47134a76/logo.png b/blockchains/smartchain/assets/0x998305efDC264b9674178899FFfBb44a47134a76/logo.png new file mode 100644 index 0000000000000..6546dcaca0354 Binary files /dev/null and b/blockchains/smartchain/assets/0x998305efDC264b9674178899FFfBb44a47134a76/logo.png differ diff --git a/blockchains/smartchain/assets/0x99956D38059cf7bEDA96Ec91Aa7BB2477E0901DD/info.json b/blockchains/smartchain/assets/0x99956D38059cf7bEDA96Ec91Aa7BB2477E0901DD/info.json new file mode 100644 index 0000000000000..ec19b35061073 --- /dev/null +++ b/blockchains/smartchain/assets/0x99956D38059cf7bEDA96Ec91Aa7BB2477E0901DD/info.json @@ -0,0 +1,33 @@ +{ + "name": "DIA", + "website": "https://diadata.org", + "description": "DIA (Decentralised Information Asset) claims to provide financial institutions with an immutable and verified single source of financial market data for any market and asset type.", + "explorer": "https://bscscan.com/token/0x99956d38059cf7beda96ec91aa7bb2477e0901dd", + "research": "https://research.binance.com/en/projects/dia", + "symbol": "DIA", + "type": "BEP20", + "decimals": 18, + "status": "active", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/DIAdata_org" + }, + { + "name": "github", + "url": "https://github.com/diadata-org" + }, + { + "name": "blog", + "url": "https://medium.com/dia-insights" + }, + { + "name": "telegram", + "url": "https://t.me/DIAdata_org" + } + ], + "id": "0x99956D38059cf7bEDA96Ec91Aa7BB2477E0901DD" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x99956D38059cf7bEDA96Ec91Aa7BB2477E0901DD/logo.png b/blockchains/smartchain/assets/0x99956D38059cf7bEDA96Ec91Aa7BB2477E0901DD/logo.png new file mode 100644 index 0000000000000..8fd8d3e70ba4d Binary files /dev/null and b/blockchains/smartchain/assets/0x99956D38059cf7bEDA96Ec91Aa7BB2477E0901DD/logo.png differ diff --git a/blockchains/smartchain/assets/0x99A1a9BC796bAe48631a15B1C1889625C86B7b98/info.json b/blockchains/smartchain/assets/0x99A1a9BC796bAe48631a15B1C1889625C86B7b98/info.json new file mode 100644 index 0000000000000..405efc0f22afa --- /dev/null +++ b/blockchains/smartchain/assets/0x99A1a9BC796bAe48631a15B1C1889625C86B7b98/info.json @@ -0,0 +1,20 @@ +{ + "name": "Teradyne, Inc. xStock", + "type": "BEP20", + "symbol": "TERx", + "decimals": 18, + "description": "Teradyne, Inc. xStock (TERx) is a tracker certificate issued as a freely transferable token on selected blockchains. TERx tracks the price of Teradyne, Inc.. TERx is designed to give eligible investors regulatory-compliant access to the stock price of Teradyne, Inc., whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x99A1a9BC796bAe48631a15B1C1889625C86B7b98", + "status": "active", + "id": "0x99A1a9BC796bAe48631a15B1C1889625C86B7b98", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x99A1a9BC796bAe48631a15B1C1889625C86B7b98/logo.png b/blockchains/smartchain/assets/0x99A1a9BC796bAe48631a15B1C1889625C86B7b98/logo.png new file mode 100644 index 0000000000000..3da9a05031147 Binary files /dev/null and b/blockchains/smartchain/assets/0x99A1a9BC796bAe48631a15B1C1889625C86B7b98/logo.png differ diff --git a/blockchains/smartchain/assets/0x99E3259d1D780746c62B4a90833d607b40Fb36Ce/info.json b/blockchains/smartchain/assets/0x99E3259d1D780746c62B4a90833d607b40Fb36Ce/info.json index e05c08d9342a9..e48020c399e6f 100644 --- a/blockchains/smartchain/assets/0x99E3259d1D780746c62B4a90833d607b40Fb36Ce/info.json +++ b/blockchains/smartchain/assets/0x99E3259d1D780746c62B4a90833d607b40Fb36Ce/info.json @@ -10,8 +10,8 @@ "id": "0x99E3259d1D780746c62B4a90833d607b40Fb36Ce", "links": [ { - "name": "twitter", - "url": "https://twitter.com/CCdogecoin" + "name": "x", + "url": "https://x.com/CCdogecoin" }, { "name": "coingecko", diff --git a/blockchains/smartchain/assets/0x99e01F02d66455Bb106D91D469c9EAF6aB4904f6/info.json b/blockchains/smartchain/assets/0x99e01F02d66455Bb106D91D469c9EAF6aB4904f6/info.json new file mode 100644 index 0000000000000..fe1e6cb7df362 --- /dev/null +++ b/blockchains/smartchain/assets/0x99e01F02d66455Bb106D91D469c9EAF6aB4904f6/info.json @@ -0,0 +1,24 @@ +{ + "name": "SharpLink Gaming (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "SBETon is the Ondo Tokenized version of SharpLink Gaming, Inc, giving tokenholders economic exposure similar to holding SBET and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x99e01f02d66455bb106d91d469c9eaf6ab4904f6", + "type": "BEP20", + "symbol": "SBETon", + "decimals": 18, + "status": "active", + "id": "0x99e01F02d66455Bb106D91D469c9EAF6aB4904f6", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sharplink-gaming-inc-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x99e01F02d66455Bb106D91D469c9EAF6aB4904f6/logo.png b/blockchains/smartchain/assets/0x99e01F02d66455Bb106D91D469c9EAF6aB4904f6/logo.png new file mode 100644 index 0000000000000..0d5ffdea8fb12 Binary files /dev/null and b/blockchains/smartchain/assets/0x99e01F02d66455Bb106D91D469c9EAF6aB4904f6/logo.png differ diff --git a/blockchains/smartchain/assets/0x9A21477b4e9EA5F7946D75876A186A1194559828/info.json b/blockchains/smartchain/assets/0x9A21477b4e9EA5F7946D75876A186A1194559828/info.json index ee50972880b85..0b1c13326383a 100644 --- a/blockchains/smartchain/assets/0x9A21477b4e9EA5F7946D75876A186A1194559828/info.json +++ b/blockchains/smartchain/assets/0x9A21477b4e9EA5F7946D75876A186A1194559828/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/findshibby" }, { - "name": "twitter", - "url": "https://twitter.com/findshibby" + "name": "x", + "url": "https://x.com/findshibby" }, { "name": "youtube", diff --git a/blockchains/smartchain/assets/0x9A2478C4036548864d96a97Fbf93f6a3341fedac/info.json b/blockchains/smartchain/assets/0x9A2478C4036548864d96a97Fbf93f6a3341fedac/info.json index 5277b1c10dd22..14ad31dd8183f 100644 --- a/blockchains/smartchain/assets/0x9A2478C4036548864d96a97Fbf93f6a3341fedac/info.json +++ b/blockchains/smartchain/assets/0x9A2478C4036548864d96a97Fbf93f6a3341fedac/info.json @@ -10,8 +10,8 @@ "id": "0x9A2478C4036548864d96a97Fbf93f6a3341fedac", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ZillionXO" + "name": "x", + "url": "https://x.com/ZillionXO" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x9A2EADe89b40f9C4180f0B4ebD7a39ae0F2EFBA8/info.json b/blockchains/smartchain/assets/0x9A2EADe89b40f9C4180f0B4ebD7a39ae0F2EFBA8/info.json new file mode 100644 index 0000000000000..c3f9f2df48c60 --- /dev/null +++ b/blockchains/smartchain/assets/0x9A2EADe89b40f9C4180f0B4ebD7a39ae0F2EFBA8/info.json @@ -0,0 +1,14 @@ +{ + "name": "Tahnoon Bin Zayed", + "type": "BEP20", + "symbol": "Tahnoon", + "decimals": 18, + "website": "https://four.meme/token/0x9A2EADe89b40f9C4180f0B4ebD7a39ae0F2EFBA8", + "description": "Tahnoon Bin Zayed", + "explorer": "https://bscscan.com/token/0x9A2EADe89b40f9C4180f0B4ebD7a39ae0F2EFBA8", + "status": "active", + "id": "0x9A2EADe89b40f9C4180f0B4ebD7a39ae0F2EFBA8", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9A2EADe89b40f9C4180f0B4ebD7a39ae0F2EFBA8/logo.png b/blockchains/smartchain/assets/0x9A2EADe89b40f9C4180f0B4ebD7a39ae0F2EFBA8/logo.png new file mode 100644 index 0000000000000..1298f07bd98d1 Binary files /dev/null and b/blockchains/smartchain/assets/0x9A2EADe89b40f9C4180f0B4ebD7a39ae0F2EFBA8/logo.png differ diff --git a/blockchains/smartchain/assets/0x9A624b4190F38c888BbF7F845f14198f9C951de7/info.json b/blockchains/smartchain/assets/0x9A624b4190F38c888BbF7F845f14198f9C951de7/info.json index 393b2615e7bf2..a7ae687904c29 100644 --- a/blockchains/smartchain/assets/0x9A624b4190F38c888BbF7F845f14198f9C951de7/info.json +++ b/blockchains/smartchain/assets/0x9A624b4190F38c888BbF7F845f14198f9C951de7/info.json @@ -10,8 +10,8 @@ "id": "0x9A624b4190F38c888BbF7F845f14198f9C951de7", "links": [ { - "name": "twitter", - "url": "https://twitter.com/burnace_io" + "name": "x", + "url": "https://x.com/burnace_io" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x9AECF1aC2c833A59eAD9E46098B6dC89D95F7777/info.json b/blockchains/smartchain/assets/0x9AECF1aC2c833A59eAD9E46098B6dC89D95F7777/info.json new file mode 100644 index 0000000000000..a2236c0a5c956 --- /dev/null +++ b/blockchains/smartchain/assets/0x9AECF1aC2c833A59eAD9E46098B6dC89D95F7777/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE KASH", + "type": "BEP20", + "symbol": "FAKE KASH", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x9AECF1aC2c833A59eAD9E46098B6dC89D95F7777", + "explorer": "https://bscscan.com/token/0x9AECF1aC2c833A59eAD9E46098B6dC89D95F7777", + "status": "spam", + "id": "0x9AECF1aC2c833A59eAD9E46098B6dC89D95F7777" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9Ab70e92319f0b9127df78868Fd3655fB9f1E322/info.json b/blockchains/smartchain/assets/0x9Ab70e92319f0b9127df78868Fd3655fB9f1E322/info.json index 1b775ddba8f3c..c1294256e0461 100644 --- a/blockchains/smartchain/assets/0x9Ab70e92319f0b9127df78868Fd3655fB9f1E322/info.json +++ b/blockchains/smartchain/assets/0x9Ab70e92319f0b9127df78868Fd3655fB9f1E322/info.json @@ -10,8 +10,8 @@ "id": "0x9Ab70e92319f0b9127df78868Fd3655fB9f1E322", "links": [ { - "name": "twitter", - "url": "https://twitter.com/WeWay_io" + "name": "x", + "url": "https://x.com/WeWay_io" }, { "name": "telegram_news", @@ -33,4 +33,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9Ac983826058b8a9C7Aa1C9171441191232E8404/info.json b/blockchains/smartchain/assets/0x9Ac983826058b8a9C7Aa1C9171441191232E8404/info.json index 4a079c3bff71a..94e8f7c4eea92 100644 --- a/blockchains/smartchain/assets/0x9Ac983826058b8a9C7Aa1C9171441191232E8404/info.json +++ b/blockchains/smartchain/assets/0x9Ac983826058b8a9C7Aa1C9171441191232E8404/info.json @@ -1,5 +1,5 @@ { - "name": "BNB pegged Synthetix", + "name": "Synthetix", "website": "https://synthetix.io", "description": "BNB pegged Synthetix (SNX BEP20) is a token issued by Binance on Smart Chain; its price is pegged to Synthetix (SNX ERC20) at a ratio of 1:1.", "explorer": "https://bscscan.com/token/0x9Ac983826058b8a9C7Aa1C9171441191232E8404", @@ -18,8 +18,8 @@ "url": "https://github.com/Synthetixio/synthetix" }, { - "name": "twitter", - "url": "https://twitter.com/synthetix_io" + "name": "x", + "url": "https://x.com/synthetix_io" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x9AeB2E6DD8d55E14292ACFCFC4077e33106e4144/info.json b/blockchains/smartchain/assets/0x9AeB2E6DD8d55E14292ACFCFC4077e33106e4144/info.json new file mode 100644 index 0000000000000..98d18857a1f8d --- /dev/null +++ b/blockchains/smartchain/assets/0x9AeB2E6DD8d55E14292ACFCFC4077e33106e4144/info.json @@ -0,0 +1,28 @@ +{ + "name": "Platform of meme coins", + "type": "BEP20", + "symbol": "PAYU", + "decimals": 18, + "website": "http://www.memecoins.finance/", + "description": "The most catchy memecoin out there that anyone can win. Platform of meme coins. Shop with your meme coins. Stake or earn meme coins.", + "explorer": "https://bscscan.com/token/0x9aeb2e6dd8d55e14292acfcfc4077e33106e4144", + "status": "active", + "id": "0x9AeB2E6DD8d55E14292ACFCFC4077e33106e4144", + "links": [ + { + "name": "x", + "url": "https://x.com/payu_coin" + }, + { + "name": "telegram", + "url": "https://t.me/payu_coin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/platform-of-meme-coins/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9AeB2E6DD8d55E14292ACFCFC4077e33106e4144/logo.png b/blockchains/smartchain/assets/0x9AeB2E6DD8d55E14292ACFCFC4077e33106e4144/logo.png new file mode 100644 index 0000000000000..de6546b7fd72e Binary files /dev/null and b/blockchains/smartchain/assets/0x9AeB2E6DD8d55E14292ACFCFC4077e33106e4144/logo.png differ diff --git a/blockchains/smartchain/assets/0x9AeF8F6a15cC1de43Ce6445A6fE2d344D3843a29/info.json b/blockchains/smartchain/assets/0x9AeF8F6a15cC1de43Ce6445A6fE2d344D3843a29/info.json index eb181da27ba86..a4d139277c760 100644 --- a/blockchains/smartchain/assets/0x9AeF8F6a15cC1de43Ce6445A6fE2d344D3843a29/info.json +++ b/blockchains/smartchain/assets/0x9AeF8F6a15cC1de43Ce6445A6fE2d344D3843a29/info.json @@ -10,8 +10,8 @@ "id": "0x9AeF8F6a15cC1de43Ce6445A6fE2d344D3843a29", "links": [ { - "name": "twitter", - "url": "https://twitter.com/coin_halal" + "name": "x", + "url": "https://x.com/coin_halal" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x9B6B44FA816C5Da30DEb7d7d640D7644C2060b0e/info.json b/blockchains/smartchain/assets/0x9B6B44FA816C5Da30DEb7d7d640D7644C2060b0e/info.json new file mode 100644 index 0000000000000..94bdaae433a97 --- /dev/null +++ b/blockchains/smartchain/assets/0x9B6B44FA816C5Da30DEb7d7d640D7644C2060b0e/info.json @@ -0,0 +1,14 @@ +{ + "name": "Good Will Alliance", + "type": "BEP20", + "symbol": "GWA", + "decimals": 18, + "website": "https://four.meme/token/0x9B6B44FA816C5Da30DEb7d7d640D7644C2060b0e", + "description": "Good Will Alliance", + "explorer": "https://bscscan.com/token/0x9B6B44FA816C5Da30DEb7d7d640D7644C2060b0e", + "status": "active", + "id": "0x9B6B44FA816C5Da30DEb7d7d640D7644C2060b0e", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9B6B44FA816C5Da30DEb7d7d640D7644C2060b0e/logo.png b/blockchains/smartchain/assets/0x9B6B44FA816C5Da30DEb7d7d640D7644C2060b0e/logo.png new file mode 100644 index 0000000000000..6869fae3bacf8 Binary files /dev/null and b/blockchains/smartchain/assets/0x9B6B44FA816C5Da30DEb7d7d640D7644C2060b0e/logo.png differ diff --git a/blockchains/smartchain/assets/0x9B7cb7e046ef80F2E055E0545FEF479618C1879B/info.json b/blockchains/smartchain/assets/0x9B7cb7e046ef80F2E055E0545FEF479618C1879B/info.json new file mode 100644 index 0000000000000..805b2dc0ce8a3 --- /dev/null +++ b/blockchains/smartchain/assets/0x9B7cb7e046ef80F2E055E0545FEF479618C1879B/info.json @@ -0,0 +1,17 @@ +{ + "name": "inshallah", + "website": "https://x.com/inshallah_bsc", + "description": "A crypto meme developed on the @BNBchain network, using #BNB", + "explorer": "https://bscscan.com/token/0x9B7cb7e046ef80F2E055E0545FEF479618C1879B", + "type": "BEP20", + "symbol": "inshallah", + "decimals": 18, + "status": "active", + "id": "0x9B7cb7e046ef80F2E055E0545FEF479618C1879B", + "links": [ + { + "name": "x", + "url": "https://x.com/inshallah_bsc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9B7cb7e046ef80F2E055E0545FEF479618C1879B/logo.png b/blockchains/smartchain/assets/0x9B7cb7e046ef80F2E055E0545FEF479618C1879B/logo.png new file mode 100644 index 0000000000000..af596565838f6 Binary files /dev/null and b/blockchains/smartchain/assets/0x9B7cb7e046ef80F2E055E0545FEF479618C1879B/logo.png differ diff --git a/blockchains/smartchain/assets/0x9B9D7eb1816E35Ecf3B3ab58B08257C8d47F15CD/info.json b/blockchains/smartchain/assets/0x9B9D7eb1816E35Ecf3B3ab58B08257C8d47F15CD/info.json new file mode 100644 index 0000000000000..986cf87f580bd --- /dev/null +++ b/blockchains/smartchain/assets/0x9B9D7eb1816E35Ecf3B3ab58B08257C8d47F15CD/info.json @@ -0,0 +1,24 @@ +{ + "name": "Natronz", + "type": "BEP20", + "symbol": "NTZ", + "decimals": 18, + "website": "https://natronz.com/", + "description": "NatronZ aims to empower our investors by pushing the boundaries of investment profitability through advanced technological enhancements, taking it to a superior level.", + "explorer": "https://bscscan.com/token/0x9B9D7eb1816E35Ecf3B3ab58B08257C8d47F15CD", + "status": "active", + "id": "0x9B9D7eb1816E35Ecf3B3ab58B08257C8d47F15CD", + "links": [ + { + "name": "x", + "url": "https://x.com/natronzofficial" + }, + { + "name": "facebook", + "url": "https://facebook.com/natronzofficial" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9B9D7eb1816E35Ecf3B3ab58B08257C8d47F15CD/logo.png b/blockchains/smartchain/assets/0x9B9D7eb1816E35Ecf3B3ab58B08257C8d47F15CD/logo.png new file mode 100644 index 0000000000000..1a14dd8ae40f5 Binary files /dev/null and b/blockchains/smartchain/assets/0x9B9D7eb1816E35Ecf3B3ab58B08257C8d47F15CD/logo.png differ diff --git a/blockchains/smartchain/assets/0x9BeEE89723cEeC27d7c2834bec6834208FFdc202/info.json b/blockchains/smartchain/assets/0x9BeEE89723cEeC27d7c2834bec6834208FFdc202/info.json new file mode 100644 index 0000000000000..61f306d6ee433 --- /dev/null +++ b/blockchains/smartchain/assets/0x9BeEE89723cEeC27d7c2834bec6834208FFdc202/info.json @@ -0,0 +1,17 @@ +{ + "name": "AVL", + "type": "BEP20", + "symbol": "AVL", + "decimals": 18, + "website": "https://www.avalonfinance.xyz/", + "description": "Avalon Labs is the world's largest issuer of Bitcoin-backed stablecoins", + "explorer": "https://bscscan.com/token/0x9beee89723ceec27d7c2834bec6834208ffdc202", + "status": "active", + "id": "0x9BeEE89723cEeC27d7c2834bec6834208FFdc202", + "links": [ + { + "name": "x", + "url": "https://x.com/avalonfinance_" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9BeEE89723cEeC27d7c2834bec6834208FFdc202/logo.png b/blockchains/smartchain/assets/0x9BeEE89723cEeC27d7c2834bec6834208FFdc202/logo.png new file mode 100644 index 0000000000000..8937d17d852bd Binary files /dev/null and b/blockchains/smartchain/assets/0x9BeEE89723cEeC27d7c2834bec6834208FFdc202/logo.png differ diff --git a/blockchains/smartchain/assets/0x9C28E48Ea9170d9A9cB76d338655b8bd4124BC7A/info.json b/blockchains/smartchain/assets/0x9C28E48Ea9170d9A9cB76d338655b8bd4124BC7A/info.json index 54f3c4d2df0a3..60c2c925e1934 100644 --- a/blockchains/smartchain/assets/0x9C28E48Ea9170d9A9cB76d338655b8bd4124BC7A/info.json +++ b/blockchains/smartchain/assets/0x9C28E48Ea9170d9A9cB76d338655b8bd4124BC7A/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/YearnClassic" }, { - "name": "twitter", - "url": "https://twitter.com/earn_finance" + "name": "x", + "url": "https://x.com/earn_finance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x9C65AB58d8d978DB963e63f2bfB7121627e3a739/info.json b/blockchains/smartchain/assets/0x9C65AB58d8d978DB963e63f2bfB7121627e3a739/info.json index 3a02a421f2ee8..d474e86a619a1 100644 --- a/blockchains/smartchain/assets/0x9C65AB58d8d978DB963e63f2bfB7121627e3a739/info.json +++ b/blockchains/smartchain/assets/0x9C65AB58d8d978DB963e63f2bfB7121627e3a739/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/Mdextech" + "name": "x", + "url": "https://x.com/Mdextech" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649/info.json b/blockchains/smartchain/assets/0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649/info.json new file mode 100644 index 0000000000000..fc4c8397c5a6f --- /dev/null +++ b/blockchains/smartchain/assets/0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649/info.json @@ -0,0 +1,18 @@ +{ + "name": "Gravity", + "type": "BEP20", + "symbol": "G", + "decimals": 18, + "description": "G is the native token on Gravity and the utility token for both Gravity and the Galxe ecosystem. As the primary utility token across both ecosystems, G drives governance decisions, incentivizes growth, and facilitates payments.", + "website": "https://gravity.xyz/", + "explorer": "https://bscscan.com/token/0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649", + "id": "0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/gravitychain" + } + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649/logo.png b/blockchains/smartchain/assets/0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649/logo.png new file mode 100644 index 0000000000000..8de8678bf83f6 Binary files /dev/null and b/blockchains/smartchain/assets/0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649/logo.png differ diff --git a/blockchains/smartchain/assets/0x9CEFd9588f076c5f805341864adC8a6F077A5b99/info.json b/blockchains/smartchain/assets/0x9CEFd9588f076c5f805341864adC8a6F077A5b99/info.json index 250b84827f85c..7efa4f06ecedf 100644 --- a/blockchains/smartchain/assets/0x9CEFd9588f076c5f805341864adC8a6F077A5b99/info.json +++ b/blockchains/smartchain/assets/0x9CEFd9588f076c5f805341864adC8a6F077A5b99/info.json @@ -10,8 +10,8 @@ "id": "0x9CEFd9588f076c5f805341864adC8a6F077A5b99", "links": [ { - "name": "twitter", - "url": "https://twitter.com/867_crypto" + "name": "x", + "url": "https://x.com/867_crypto" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x9Cb9478C5Db5dAe52D5Af91737FF706F60195e45/info.json b/blockchains/smartchain/assets/0x9Cb9478C5Db5dAe52D5Af91737FF706F60195e45/info.json index 0c9682812585c..0d9e04afc95be 100644 --- a/blockchains/smartchain/assets/0x9Cb9478C5Db5dAe52D5Af91737FF706F60195e45/info.json +++ b/blockchains/smartchain/assets/0x9Cb9478C5Db5dAe52D5Af91737FF706F60195e45/info.json @@ -10,8 +10,8 @@ "id": "0x9Cb9478C5Db5dAe52D5Af91737FF706F60195e45", "links": [ { - "name": "twitter", - "url": "https://twitter.com/GalaxyHeroesGHC" + "name": "x", + "url": "https://x.com/GalaxyHeroesGHC" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x9Ce84F6A69986a83d92C324df10bC8E64771030f/info.json b/blockchains/smartchain/assets/0x9Ce84F6A69986a83d92C324df10bC8E64771030f/info.json new file mode 100644 index 0000000000000..8341447599042 --- /dev/null +++ b/blockchains/smartchain/assets/0x9Ce84F6A69986a83d92C324df10bC8E64771030f/info.json @@ -0,0 +1,21 @@ +{ + "name": "Chintai", + "type": "BEP20", + "symbol": "CHEX", + "decimals": 18, + "website": "https://chintai.io", + "description": "Leading Business into the Regulated Digital Assets Frontier", + "explorer": "https://bscscan.com/token/0x9ce84f6a69986a83d92c324df10bc8e64771030f", + "status": "active", + "id": "0x9Ce84F6A69986a83d92C324df10bC8E64771030f", + "links": [ + { + "name": "x", + "url": "https://x.com/ChintaiNexus" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chex-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9Ce84F6A69986a83d92C324df10bC8E64771030f/logo.png b/blockchains/smartchain/assets/0x9Ce84F6A69986a83d92C324df10bC8E64771030f/logo.png new file mode 100644 index 0000000000000..592987e174548 Binary files /dev/null and b/blockchains/smartchain/assets/0x9Ce84F6A69986a83d92C324df10bC8E64771030f/logo.png differ diff --git a/blockchains/smartchain/assets/0x9Cea8A7Be1Ab0320b709d368Ad60d8500f55995f/info.json b/blockchains/smartchain/assets/0x9Cea8A7Be1Ab0320b709d368Ad60d8500f55995f/info.json new file mode 100644 index 0000000000000..ee812717f4c55 --- /dev/null +++ b/blockchains/smartchain/assets/0x9Cea8A7Be1Ab0320b709d368Ad60d8500f55995f/info.json @@ -0,0 +1,28 @@ +{ + "name": "Vertiv (Ondo Tokenized)", + "type": "BEP20", + "symbol": "VRTon", + "decimals": 18, + "description": "VRTon is the Ondo Tokenized version of Vertiv, giving tokenholders economic exposure similar to holding VRT and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x9Cea8A7Be1Ab0320b709d368Ad60d8500f55995f", + "status": "active", + "id": "0x9Cea8A7Be1Ab0320b709d368Ad60d8500f55995f", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vertiv-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vertiv-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9Cea8A7Be1Ab0320b709d368Ad60d8500f55995f/logo.png b/blockchains/smartchain/assets/0x9Cea8A7Be1Ab0320b709d368Ad60d8500f55995f/logo.png new file mode 100644 index 0000000000000..5001a982cf121 Binary files /dev/null and b/blockchains/smartchain/assets/0x9Cea8A7Be1Ab0320b709d368Ad60d8500f55995f/logo.png differ diff --git a/blockchains/smartchain/assets/0x9D173E6c594f479B4d47001F8E6A95A7aDDa42bC/info.json b/blockchains/smartchain/assets/0x9D173E6c594f479B4d47001F8E6A95A7aDDa42bC/info.json index abe9fc794cd36..5f73085c6de29 100644 --- a/blockchains/smartchain/assets/0x9D173E6c594f479B4d47001F8E6A95A7aDDa42bC/info.json +++ b/blockchains/smartchain/assets/0x9D173E6c594f479B4d47001F8E6A95A7aDDa42bC/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/CryptoZoonBSC" }, { - "name": "twitter", - "url": "https://twitter.com/CryptoZoonBSC" + "name": "x", + "url": "https://x.com/CryptoZoonBSC" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x9D1d4dE9cD93203147fAc3BC0262a78e3a0e96bb/info.json b/blockchains/smartchain/assets/0x9D1d4dE9cD93203147fAc3BC0262a78e3a0e96bb/info.json new file mode 100644 index 0000000000000..3e1ca000ca5a5 --- /dev/null +++ b/blockchains/smartchain/assets/0x9D1d4dE9cD93203147fAc3BC0262a78e3a0e96bb/info.json @@ -0,0 +1,36 @@ +{ + "name": "Playbux", + "type": "BEP20", + "symbol": "PBUX", + "decimals": 18, + "website": "https://www.playbux.co/", + "description": "The largest web3 entertainment platform in the world. Backed by Binance Labs and VISA Accelerator 2023", + "explorer": "https://bscscan.com/token/0x9D1d4dE9cD93203147fAc3BC0262a78e3a0e96bb", + "status": "active", + "id": "0x9D1d4dE9cD93203147fAc3BC0262a78e3a0e96bb", + "tags": [ + "dapp" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/playbuxco" + }, + { + "name": "telegram", + "url": "https://t.me/playbuxchannel" + }, + { + "name": "discord", + "url": "https://discord.com/invite/playbuxco" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/playbux/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/playbux" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9D1d4dE9cD93203147fAc3BC0262a78e3a0e96bb/logo.png b/blockchains/smartchain/assets/0x9D1d4dE9cD93203147fAc3BC0262a78e3a0e96bb/logo.png new file mode 100644 index 0000000000000..af880bee3a23c Binary files /dev/null and b/blockchains/smartchain/assets/0x9D1d4dE9cD93203147fAc3BC0262a78e3a0e96bb/logo.png differ diff --git a/blockchains/smartchain/assets/0x9D25ce197f8EbA9aCbc53D0c09cC41bB9A446e52/info.json b/blockchains/smartchain/assets/0x9D25ce197f8EbA9aCbc53D0c09cC41bB9A446e52/info.json new file mode 100644 index 0000000000000..4b06307d15043 --- /dev/null +++ b/blockchains/smartchain/assets/0x9D25ce197f8EbA9aCbc53D0c09cC41bB9A446e52/info.json @@ -0,0 +1,14 @@ +{ + "name": "JFK", + "type": "BEP20", + "symbol": "JFK", + "decimals": 18, + "website": "https://four.meme/token/0x9D25ce197f8EbA9aCbc53D0c09cC41bB9A446e52", + "description": "JFK", + "explorer": "https://bscscan.com/token/0x9D25ce197f8EbA9aCbc53D0c09cC41bB9A446e52", + "status": "active", + "id": "0x9D25ce197f8EbA9aCbc53D0c09cC41bB9A446e52", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9D25ce197f8EbA9aCbc53D0c09cC41bB9A446e52/logo.png b/blockchains/smartchain/assets/0x9D25ce197f8EbA9aCbc53D0c09cC41bB9A446e52/logo.png new file mode 100644 index 0000000000000..3c1a6a7137253 Binary files /dev/null and b/blockchains/smartchain/assets/0x9D25ce197f8EbA9aCbc53D0c09cC41bB9A446e52/logo.png differ diff --git a/blockchains/smartchain/assets/0x9D4451151A8dE5B545a1bC6c8fdEB9d94a2868e1/info.json b/blockchains/smartchain/assets/0x9D4451151A8dE5B545a1bC6c8fdEB9d94a2868e1/info.json index b38b87aa6b0d2..72cb115f4da5f 100644 --- a/blockchains/smartchain/assets/0x9D4451151A8dE5B545a1bC6c8fdEB9d94a2868e1/info.json +++ b/blockchains/smartchain/assets/0x9D4451151A8dE5B545a1bC6c8fdEB9d94a2868e1/info.json @@ -10,8 +10,8 @@ "id": "0x9D4451151A8dE5B545a1bC6c8fdEB9d94a2868e1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/lnrdefi" + "name": "x", + "url": "https://x.com/lnrdefi" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x9D692bffEf6f6BedF4274053ff9998EFE3B2539E/info.json b/blockchains/smartchain/assets/0x9D692bffEf6f6BedF4274053ff9998EFE3B2539E/info.json new file mode 100644 index 0000000000000..bb4ce24755ded --- /dev/null +++ b/blockchains/smartchain/assets/0x9D692bffEf6f6BedF4274053ff9998EFE3B2539E/info.json @@ -0,0 +1,15 @@ +{ + "name": "MARA xStock", + "type": "BEP20", + "symbol": "MARAx", + "decimals": 18, + "description": "MARA xStock (MARAx) is a tracker certificate issued as a freely transferable token on selected blockchains. MARAx tracks the price of MARA Holdings, Inc.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x9D692bffEf6f6BedF4274053ff9998EFE3B2539E", + "status": "active", + "id": "0x9D692bffEf6f6BedF4274053ff9998EFE3B2539E", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9D692bffEf6f6BedF4274053ff9998EFE3B2539E/logo.png b/blockchains/smartchain/assets/0x9D692bffEf6f6BedF4274053ff9998EFE3B2539E/logo.png new file mode 100644 index 0000000000000..2d9dc8f67f3a7 Binary files /dev/null and b/blockchains/smartchain/assets/0x9D692bffEf6f6BedF4274053ff9998EFE3B2539E/logo.png differ diff --git a/blockchains/smartchain/assets/0x9D6dB6382444b70a51307A4291188f60D4EEF205/info.json b/blockchains/smartchain/assets/0x9D6dB6382444b70a51307A4291188f60D4EEF205/info.json new file mode 100644 index 0000000000000..766bea5628515 --- /dev/null +++ b/blockchains/smartchain/assets/0x9D6dB6382444b70a51307A4291188f60D4EEF205/info.json @@ -0,0 +1,32 @@ +{ + "name": "Baby Pepe", + "type": "BEP20", + "symbol": "BABYPEPE", + "decimals": 9, + "website": "https://babypepetoken.io/", + "description": "Baby Pepe is a meme coin inspired by the Pepe narrative on the BNB Chain. Thanks to its charm -audited by CERTIK- Baby Pepe quickly attracted a large community in just a few weeks. The daily Baby Pepe Roulette event unites the entire community, offering participants the chance to win fantastic prizes!", + "explorer": "https://bscscan.com/token/0x9d6db6382444b70a51307a4291188f60d4eef205", + "status": "active", + "id": "0x9D6dB6382444b70a51307A4291188f60D4EEF205", + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/groups/babypepe" + }, + { + "name": "x", + "url": "https://x.com/BabyPepeBNB" + }, + { + "name": "telegram", + "url": "https://t.me/BabyPepeBep20" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/baby-pepe-io/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9D6dB6382444b70a51307A4291188f60D4EEF205/logo.png b/blockchains/smartchain/assets/0x9D6dB6382444b70a51307A4291188f60D4EEF205/logo.png new file mode 100644 index 0000000000000..f403143b5967f Binary files /dev/null and b/blockchains/smartchain/assets/0x9D6dB6382444b70a51307A4291188f60D4EEF205/logo.png differ diff --git a/blockchains/smartchain/assets/0x9D7c580e0bc4eA441Db96eebc7e1440d264bcE51/info.json b/blockchains/smartchain/assets/0x9D7c580e0bc4eA441Db96eebc7e1440d264bcE51/info.json index d36f3c1daecc8..7c621c3c49ea7 100644 --- a/blockchains/smartchain/assets/0x9D7c580e0bc4eA441Db96eebc7e1440d264bcE51/info.json +++ b/blockchains/smartchain/assets/0x9D7c580e0bc4eA441Db96eebc7e1440d264bcE51/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/moonlift/moonlift" }, { - "name": "twitter", - "url": "https://twitter.com/MoonliftI" + "name": "x", + "url": "https://x.com/MoonliftI" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x9D986A3f147212327Dd658F712d5264a73a1fdB0/info.json b/blockchains/smartchain/assets/0x9D986A3f147212327Dd658F712d5264a73a1fdB0/info.json index 92123571e23bd..40318b733b4bc 100644 --- a/blockchains/smartchain/assets/0x9D986A3f147212327Dd658F712d5264a73a1fdB0/info.json +++ b/blockchains/smartchain/assets/0x9D986A3f147212327Dd658F712d5264a73a1fdB0/info.json @@ -10,8 +10,8 @@ "id": "0x9D986A3f147212327Dd658F712d5264a73a1fdB0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/landshareio" + "name": "x", + "url": "https://x.com/landshareio" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x9DC8Ae7F7f88e1344c289d75cd0D4Ce07Dc4Aae6/info.json b/blockchains/smartchain/assets/0x9DC8Ae7F7f88e1344c289d75cd0D4Ce07Dc4Aae6/info.json index da4007bce8dbd..a164d29317f9b 100644 --- a/blockchains/smartchain/assets/0x9DC8Ae7F7f88e1344c289d75cd0D4Ce07Dc4Aae6/info.json +++ b/blockchains/smartchain/assets/0x9DC8Ae7F7f88e1344c289d75cd0D4Ce07Dc4Aae6/info.json @@ -18,8 +18,8 @@ "url": "https://facebook.com/Baby-Floki-Zilla-107460758405426" }, { - "name": "twitter", - "url": "https://twitter.com/BFZillaBSC" + "name": "x", + "url": "https://x.com/BFZillaBSC" }, { "name": "discord", diff --git a/blockchains/smartchain/assets/0x9E24415d1e549EBc626a13a482Bb117a2B43e9CF/info.json b/blockchains/smartchain/assets/0x9E24415d1e549EBc626a13a482Bb117a2B43e9CF/info.json index 460fdbc7ad6f6..72b50cca61354 100644 --- a/blockchains/smartchain/assets/0x9E24415d1e549EBc626a13a482Bb117a2B43e9CF/info.json +++ b/blockchains/smartchain/assets/0x9E24415d1e549EBc626a13a482Bb117a2B43e9CF/info.json @@ -10,8 +10,8 @@ "id": "0x9E24415d1e549EBc626a13a482Bb117a2B43e9CF", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Lovely_finance" + "name": "x", + "url": "https://x.com/Lovely_finance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x9E6B3E35c8f563B45d864f9Ff697A144ad28A371/info.json b/blockchains/smartchain/assets/0x9E6B3E35c8f563B45d864f9Ff697A144ad28A371/info.json index 27bf5b1bb0c06..39bbdd3212fea 100644 --- a/blockchains/smartchain/assets/0x9E6B3E35c8f563B45d864f9Ff697A144ad28A371/info.json +++ b/blockchains/smartchain/assets/0x9E6B3E35c8f563B45d864f9Ff697A144ad28A371/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/DomgeonGo" }, { - "name": "twitter", - "url": "https://twitter.com/DogemonGoApp" + "name": "x", + "url": "https://x.com/DogemonGoApp" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x9EC55d57208cb28a7714A2eA3468bD9d5bB15125/info.json b/blockchains/smartchain/assets/0x9EC55d57208cb28a7714A2eA3468bD9d5bB15125/info.json index 7ee61de85f63d..6f0b0f6906c84 100644 --- a/blockchains/smartchain/assets/0x9EC55d57208cb28a7714A2eA3468bD9d5bB15125/info.json +++ b/blockchains/smartchain/assets/0x9EC55d57208cb28a7714A2eA3468bD9d5bB15125/info.json @@ -10,8 +10,8 @@ "id": "0x9EC55d57208cb28a7714A2eA3468bD9d5bB15125", "links": [ { - "name": "twitter", - "url": "https://twitter.com/GOMAFinance" + "name": "x", + "url": "https://x.com/GOMAFinance" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x9Eb5B7902D2be0B5AaBa2F096e043d3cD804e6dF/info.json b/blockchains/smartchain/assets/0x9Eb5B7902D2be0B5AaBa2F096e043d3cD804e6dF/info.json index 804b93b8ab105..0f92058ba557a 100644 --- a/blockchains/smartchain/assets/0x9Eb5B7902D2be0B5AaBa2F096e043d3cD804e6dF/info.json +++ b/blockchains/smartchain/assets/0x9Eb5B7902D2be0B5AaBa2F096e043d3cD804e6dF/info.json @@ -10,8 +10,8 @@ "id": "0x9Eb5B7902D2be0B5AaBa2F096e043d3cD804e6dF", "links": [ { - "name": "twitter", - "url": "https://twitter.com/mypetsocial" + "name": "x", + "url": "https://x.com/mypetsocial" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x9F3BCBE48E8b754F331Dfc694A894e8E686aC31D/info.json b/blockchains/smartchain/assets/0x9F3BCBE48E8b754F331Dfc694A894e8E686aC31D/info.json index fba97ff758948..b0462fdcb8c26 100644 --- a/blockchains/smartchain/assets/0x9F3BCBE48E8b754F331Dfc694A894e8E686aC31D/info.json +++ b/blockchains/smartchain/assets/0x9F3BCBE48E8b754F331Dfc694A894e8E686aC31D/info.json @@ -18,8 +18,8 @@ "url": "https://coingecko.com/en/coins/acet-token" }, { - "name": "twitter", - "url": "https://twitter.com/ACTDeFansFi" + "name": "x", + "url": "https://x.com/ACTDeFansFi" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0x9F7371F5b85443EE59457468eDe9D244A71C08d6/info.json b/blockchains/smartchain/assets/0x9F7371F5b85443EE59457468eDe9D244A71C08d6/info.json new file mode 100644 index 0000000000000..87fc7cd10c260 --- /dev/null +++ b/blockchains/smartchain/assets/0x9F7371F5b85443EE59457468eDe9D244A71C08d6/info.json @@ -0,0 +1,20 @@ +{ + "name": "Applied Digital Corporation xStock", + "type": "BEP20", + "symbol": "APLDx", + "decimals": 18, + "description": "Applied Digital Corporation xStock (APLDx) is a tracker certificate issued as a freely transferable token on selected blockchains. APLDx tracks the price of Applied Digital Corporation. APLDx is designed to give eligible investors regulatory-compliant access to the stock price of Applied Digital Corporation, whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x9F7371F5b85443EE59457468eDe9D244A71C08d6", + "status": "active", + "id": "0x9F7371F5b85443EE59457468eDe9D244A71C08d6", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9F7371F5b85443EE59457468eDe9D244A71C08d6/logo.png b/blockchains/smartchain/assets/0x9F7371F5b85443EE59457468eDe9D244A71C08d6/logo.png new file mode 100644 index 0000000000000..8f8389c0f4cb8 Binary files /dev/null and b/blockchains/smartchain/assets/0x9F7371F5b85443EE59457468eDe9D244A71C08d6/logo.png differ diff --git a/blockchains/smartchain/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json b/blockchains/smartchain/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json index dced01a4fc048..f2ac4de72d959 100644 --- a/blockchains/smartchain/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json +++ b/blockchains/smartchain/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json @@ -10,8 +10,8 @@ "id": "0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/multichainorg" + "name": "x", + "url": "https://x.com/multichainorg" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x9FdB6a13BdCF1188FbAFe5CD435A8b92a327D92e/info.json b/blockchains/smartchain/assets/0x9FdB6a13BdCF1188FbAFe5CD435A8b92a327D92e/info.json index 5fa256b9bfe90..2cf07b52af59b 100644 --- a/blockchains/smartchain/assets/0x9FdB6a13BdCF1188FbAFe5CD435A8b92a327D92e/info.json +++ b/blockchains/smartchain/assets/0x9FdB6a13BdCF1188FbAFe5CD435A8b92a327D92e/info.json @@ -10,8 +10,8 @@ "id": "0x9FdB6a13BdCF1188FbAFe5CD435A8b92a327D92e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/goldmoney_gdm" + "name": "x", + "url": "https://x.com/goldmoney_gdm" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x9a3077F34cC30F9BF8E93A0369119bae0113d9cC/info.json b/blockchains/smartchain/assets/0x9a3077F34cC30F9BF8E93A0369119bae0113d9cC/info.json index 4742b295f296e..8092105052d79 100644 --- a/blockchains/smartchain/assets/0x9a3077F34cC30F9BF8E93A0369119bae0113d9cC/info.json +++ b/blockchains/smartchain/assets/0x9a3077F34cC30F9BF8E93A0369119bae0113d9cC/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/polyplaygames" }, { - "name": "twitter", - "url": "https://twitter.com/polyplaycoin" + "name": "x", + "url": "https://x.com/polyplaycoin" }, { "name": "coingecko", diff --git a/blockchains/smartchain/assets/0x9a95f03A305db3BD25D9C891793118D56C73d012/info.json b/blockchains/smartchain/assets/0x9a95f03A305db3BD25D9C891793118D56C73d012/info.json index a1c00a13c1c01..00f57ef3d57ad 100644 --- a/blockchains/smartchain/assets/0x9a95f03A305db3BD25D9C891793118D56C73d012/info.json +++ b/blockchains/smartchain/assets/0x9a95f03A305db3BD25D9C891793118D56C73d012/info.json @@ -10,8 +10,8 @@ "id": "0x9a95f03A305db3BD25D9C891793118D56C73d012", "links": [ { - "name": "twitter", - "url": "https://twitter.com/shiba_monk" + "name": "x", + "url": "https://x.com/shiba_monk" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x9a980a084D8D72B219e1C79d91faf06Bec874D51/info.json b/blockchains/smartchain/assets/0x9a980a084D8D72B219e1C79d91faf06Bec874D51/info.json index a424c9aee4417..8c6b553b4f1e5 100644 --- a/blockchains/smartchain/assets/0x9a980a084D8D72B219e1C79d91faf06Bec874D51/info.json +++ b/blockchains/smartchain/assets/0x9a980a084D8D72B219e1C79d91faf06Bec874D51/info.json @@ -10,8 +10,8 @@ "id": "0x9a980a084D8D72B219e1C79d91faf06Bec874D51", "links": [ { - "name": "twitter", - "url": "https://twitter.com/anon_metaverse" + "name": "x", + "url": "https://x.com/anon_metaverse" }, { "name": "telegram", @@ -32,8 +32,7 @@ ], "tags": [ "gamefi", - "staking-native", "defi", "governance" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9abDbA20EdFbA06B782126b4D8d72A5853918FD0/info.json b/blockchains/smartchain/assets/0x9abDbA20EdFbA06B782126b4D8d72A5853918FD0/info.json index f43a3064c2b2d..8d4c1362d1daa 100644 --- a/blockchains/smartchain/assets/0x9abDbA20EdFbA06B782126b4D8d72A5853918FD0/info.json +++ b/blockchains/smartchain/assets/0x9abDbA20EdFbA06B782126b4D8d72A5853918FD0/info.json @@ -10,8 +10,8 @@ "id": "0x9abDbA20EdFbA06B782126b4D8d72A5853918FD0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TABOOOFFICIAL2" + "name": "x", + "url": "https://x.com/TABOOOFFICIAL2" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x9b208b117B2C4F76C1534B6f006b033220a681A4/info.json b/blockchains/smartchain/assets/0x9b208b117B2C4F76C1534B6f006b033220a681A4/info.json new file mode 100644 index 0000000000000..ccca562ba5cc1 --- /dev/null +++ b/blockchains/smartchain/assets/0x9b208b117B2C4F76C1534B6f006b033220a681A4/info.json @@ -0,0 +1,24 @@ +{ + "name": "Dingocoin", + "symbol": "DINGO", + "type": "BEP20", + "decimals": 8, + "description": "Dingocoin is an Scrypt AuxPow fork of Dogecoin, with a vibrant and active community that seeks to build fun projects around the coin.", + "website": "http://dingocoin.org/", + "explorer": "https://bscscan.com/token/0x9b208b117b2c4f76c1534b6f006b033220a681a4", + "status": "active", + "id": "0x9b208b117B2C4F76C1534B6f006b033220a681A4", + "links": [ + { + "name": "x", + "url": "https://x.com/dingocoincrypto" + }, + { + "name": "github", + "url": "https://github.com/dingocoin/dingocoin" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9b208b117B2C4F76C1534B6f006b033220a681A4/logo.png b/blockchains/smartchain/assets/0x9b208b117B2C4F76C1534B6f006b033220a681A4/logo.png new file mode 100644 index 0000000000000..488a2ec356624 Binary files /dev/null and b/blockchains/smartchain/assets/0x9b208b117B2C4F76C1534B6f006b033220a681A4/logo.png differ diff --git a/blockchains/smartchain/assets/0x9b8E987e6fEc8Cf1380C4dcA7071e2C7853AEEA1/info.json b/blockchains/smartchain/assets/0x9b8E987e6fEc8Cf1380C4dcA7071e2C7853AEEA1/info.json new file mode 100644 index 0000000000000..047d2c6a54d9e --- /dev/null +++ b/blockchains/smartchain/assets/0x9b8E987e6fEc8Cf1380C4dcA7071e2C7853AEEA1/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares China Large-Cap ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "FXIon", + "decimals": 18, + "description": "FXIon is the Ondo Tokenized version of the iShares China Large-Cap ETF, giving tokenholders economic exposure similar to holding FXI and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0x9b8E987e6fEc8Cf1380C4dcA7071e2C7853AEEA1", + "status": "active", + "id": "0x9b8E987e6fEc8Cf1380C4dcA7071e2C7853AEEA1", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-china-large-cap-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9b8E987e6fEc8Cf1380C4dcA7071e2C7853AEEA1/logo.png b/blockchains/smartchain/assets/0x9b8E987e6fEc8Cf1380C4dcA7071e2C7853AEEA1/logo.png new file mode 100644 index 0000000000000..2ce033b091a15 Binary files /dev/null and b/blockchains/smartchain/assets/0x9b8E987e6fEc8Cf1380C4dcA7071e2C7853AEEA1/logo.png differ diff --git a/blockchains/smartchain/assets/0x9b9D617D3445f0147Ece2322BaCe8db2768D2770/info.json b/blockchains/smartchain/assets/0x9b9D617D3445f0147Ece2322BaCe8db2768D2770/info.json index 4eea059e56489..0cb490108f1dd 100644 --- a/blockchains/smartchain/assets/0x9b9D617D3445f0147Ece2322BaCe8db2768D2770/info.json +++ b/blockchains/smartchain/assets/0x9b9D617D3445f0147Ece2322BaCe8db2768D2770/info.json @@ -10,8 +10,8 @@ "id": "0x9b9D617D3445f0147Ece2322BaCe8db2768D2770", "links": [ { - "name": "twitter", - "url": "https://twitter.com/cueprotocol" + "name": "x", + "url": "https://x.com/cueprotocol" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x9c2B1B3780A8B36B695f0b2781668664aC1Bf25A/info.json b/blockchains/smartchain/assets/0x9c2B1B3780A8B36B695f0b2781668664aC1Bf25A/info.json index 6ab15d706d811..ea2228baefc91 100644 --- a/blockchains/smartchain/assets/0x9c2B1B3780A8B36B695f0b2781668664aC1Bf25A/info.json +++ b/blockchains/smartchain/assets/0x9c2B1B3780A8B36B695f0b2781668664aC1Bf25A/info.json @@ -10,8 +10,8 @@ "id": "0x9c2B1B3780A8B36B695f0b2781668664aC1Bf25A", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ShibaSpooky" + "name": "x", + "url": "https://x.com/ShibaSpooky" }, { "name": "coinmarketcap", @@ -38,4 +38,4 @@ "gamefi", "memes" ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9c47E503b2f497e9Ad9F1c0dfA6Bd9Fd5456AA4e/info.json b/blockchains/smartchain/assets/0x9c47E503b2f497e9Ad9F1c0dfA6Bd9Fd5456AA4e/info.json new file mode 100644 index 0000000000000..f749577a50ef7 --- /dev/null +++ b/blockchains/smartchain/assets/0x9c47E503b2f497e9Ad9F1c0dfA6Bd9Fd5456AA4e/info.json @@ -0,0 +1,28 @@ +{ + "name": "zkRace", + "website": "https://zkrace.com/", + "description": "zkRace is a complete NFT horse racing ecosystem where you can participate in horse races, breed NFT horses with unique characteristics, build your own NFT hippodrome", + "explorer": "https://bscscan.com/token/0x9c47E503b2f497e9Ad9F1c0dfA6Bd9Fd5456AA4e", + "type": "BEP20", + "symbol": "ZERC", + "decimals": 18, + "status": "active", + "id": "0x9c47E503b2f497e9Ad9F1c0dfA6Bd9Fd5456AA4e", + "links": [ + { + "name": "x", + "url": "https://x.com/zk_race" + }, + { + "name": "telegram", + "url": "https://t.me/zk_Race" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/derace/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9c47E503b2f497e9Ad9F1c0dfA6Bd9Fd5456AA4e/logo.png b/blockchains/smartchain/assets/0x9c47E503b2f497e9Ad9F1c0dfA6Bd9Fd5456AA4e/logo.png new file mode 100644 index 0000000000000..e428af9216608 Binary files /dev/null and b/blockchains/smartchain/assets/0x9c47E503b2f497e9Ad9F1c0dfA6Bd9Fd5456AA4e/logo.png differ diff --git a/blockchains/smartchain/assets/0x9c4a515cd72D27A4710571Aca94858a53D9278D5/info.json b/blockchains/smartchain/assets/0x9c4a515cd72D27A4710571Aca94858a53D9278D5/info.json new file mode 100644 index 0000000000000..91035600ef930 --- /dev/null +++ b/blockchains/smartchain/assets/0x9c4a515cd72D27A4710571Aca94858a53D9278D5/info.json @@ -0,0 +1,11 @@ +{ + "name": "VIDT Datalink BEP20", + "website": "https://about.v-id.org", + "description": "V-ID makes any digital file verifiable. The VIDT API enables organizations to protect their digital data against fraud and manipulation. A simple but strong formula, that adds and protects value at minimum expense and effort. Organizations like Airbus, AmSpec and IBM use VIDT Datalink to certify and secure digital documents like certificates, invoices, diplomas and sensor-data. VIDT Datalink products and services connect every cloud to every blockchain.", + "explorer": "https://bscscan.com/token/0x9c4a515cd72d27a4710571aca94858a53d9278d5", + "type": "BEP20", + "symbol": "VIDT", + "decimals": 18, + "status": "active", + "id": "0x9c4a515cd72D27A4710571Aca94858a53D9278D5" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3f515f0a8e93F2E2f891ceeB3Db4e62e202d7110/logo.png b/blockchains/smartchain/assets/0x9c4a515cd72D27A4710571Aca94858a53D9278D5/logo.png similarity index 100% rename from blockchains/smartchain/assets/0x3f515f0a8e93F2E2f891ceeB3Db4e62e202d7110/logo.png rename to blockchains/smartchain/assets/0x9c4a515cd72D27A4710571Aca94858a53D9278D5/logo.png diff --git a/blockchains/smartchain/assets/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a/info.json b/blockchains/smartchain/assets/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a/info.json new file mode 100644 index 0000000000000..4ed19bb9d3521 --- /dev/null +++ b/blockchains/smartchain/assets/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a/info.json @@ -0,0 +1,24 @@ +{ + "name": "Apple tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Apple tokenized stock (xStock) (AAPLX) is a cryptocurrency and operates on the Arbitrum platform. Apple tokenized stock (xStock) has a current supply of 18,998.50133677 with 8,999.30716257 in circulation. The last known price of Apple tokenized stock (xStock) is 236.69155907 USD and is down -0.06 over the last 24 hours. It is currently trading on 39 active market(s) with $6,049,996.18 traded over the last 24 hours. More information can be found at https://xstocks.fi/.", + "explorer": "https://bscscan.com/token/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a", + "type": "BEP20", + "symbol": "AAPLX", + "decimals": 18, + "status": "active", + "id": "0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/apple-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a/logo.png b/blockchains/smartchain/assets/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a/logo.png new file mode 100644 index 0000000000000..2af9425e91160 Binary files /dev/null and b/blockchains/smartchain/assets/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a/logo.png differ diff --git a/blockchains/smartchain/assets/0x9d3E14B607b2f569CfAFe29AF71e811d7E575CFe/info.json b/blockchains/smartchain/assets/0x9d3E14B607b2f569CfAFe29AF71e811d7E575CFe/info.json index 29cd5cfea9961..84493bb37394c 100644 --- a/blockchains/smartchain/assets/0x9d3E14B607b2f569CfAFe29AF71e811d7E575CFe/info.json +++ b/blockchains/smartchain/assets/0x9d3E14B607b2f569CfAFe29AF71e811d7E575CFe/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/FlokiBonk/FlokiBonk-Token" }, { - "name": "twitter", - "url": "https://twitter.com/FLOKO_BONKO" + "name": "x", + "url": "https://x.com/FLOKO_BONKO" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x9e06E1203BdC3747eE3Ab5fa9488619BcF2A2666/info.json b/blockchains/smartchain/assets/0x9e06E1203BdC3747eE3Ab5fa9488619BcF2A2666/info.json new file mode 100644 index 0000000000000..b1eee0bd78ca5 --- /dev/null +++ b/blockchains/smartchain/assets/0x9e06E1203BdC3747eE3Ab5fa9488619BcF2A2666/info.json @@ -0,0 +1,26 @@ +{ + "name": "Industrial", + "type": "BEP20", + "symbol": "Industrial", + "decimals": 18, + "description": "Industrial Token (INDUSTRIAL) is a BEP20 token built to transform the industrial sector through blockchain technology, gamification", + "website": "https://industrial.game/", + "explorer": "https://bscscan.com/token/0x9e06e1203bdc3747ee3ab5fa9488619bcf2a2666", + "id": "0x9e06E1203BdC3747eE3Ab5fa9488619BcF2A2666", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/tokenindustrial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/industrial/" + } + + ], + "tags": [ + "gamefi" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9e06E1203BdC3747eE3Ab5fa9488619BcF2A2666/logo.png b/blockchains/smartchain/assets/0x9e06E1203BdC3747eE3Ab5fa9488619BcF2A2666/logo.png new file mode 100644 index 0000000000000..9696bf6f93b80 Binary files /dev/null and b/blockchains/smartchain/assets/0x9e06E1203BdC3747eE3Ab5fa9488619BcF2A2666/logo.png differ diff --git a/blockchains/smartchain/assets/0x9e26c50B8A3b7652c3fD2B378252A8647a0C9268/info.json b/blockchains/smartchain/assets/0x9e26c50B8A3b7652c3fD2B378252A8647a0C9268/info.json index a511b85f0f7cd..0d891c4a90e57 100644 --- a/blockchains/smartchain/assets/0x9e26c50B8A3b7652c3fD2B378252A8647a0C9268/info.json +++ b/blockchains/smartchain/assets/0x9e26c50B8A3b7652c3fD2B378252A8647a0C9268/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/shibance" }, { - "name": "twitter", - "url": "https://twitter.com/shibance" + "name": "x", + "url": "https://x.com/shibance" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0x9e3a9F1612028eeE48F85cA85f8Bed2f37d76848/info.json b/blockchains/smartchain/assets/0x9e3a9F1612028eeE48F85cA85f8Bed2f37d76848/info.json index d397a26a92897..957b3ca2aff3f 100644 --- a/blockchains/smartchain/assets/0x9e3a9F1612028eeE48F85cA85f8Bed2f37d76848/info.json +++ b/blockchains/smartchain/assets/0x9e3a9F1612028eeE48F85cA85f8Bed2f37d76848/info.json @@ -6,6 +6,16 @@ "type": "BEP20", "symbol": "QDX", "decimals": 18, - "status": "active", - "id": "0x9e3a9F1612028eeE48F85cA85f8Bed2f37d76848" + "status": "abandoned", + "id": "0x9e3a9F1612028eeE48F85cA85f8Bed2f37d76848", + "links": [ + { + "name": "x", + "url": "https://x.com/QuidaxGlobal" + }, + { + "name": "telegram", + "url": "https://t.me/QDXToken" + } + ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9e3bf4Ecfc44EeDD624F26656B6736a3F093b073/info.json b/blockchains/smartchain/assets/0x9e3bf4Ecfc44EeDD624F26656B6736a3F093b073/info.json new file mode 100644 index 0000000000000..ae8ff2733650a --- /dev/null +++ b/blockchains/smartchain/assets/0x9e3bf4Ecfc44EeDD624F26656B6736a3F093b073/info.json @@ -0,0 +1,15 @@ +{ + "name": "TSMC xStock", + "type": "BEP20", + "symbol": "TSMx", + "decimals": 18, + "description": "TSMC xStock (TSMx) is a tracker certificate issued as a freely transferable token on selected blockchains. TSMx tracks the price of Taiwan Semiconductor Manufacturing Company Limited.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0x9e3bf4Ecfc44EeDD624F26656B6736a3F093b073", + "status": "active", + "id": "0x9e3bf4Ecfc44EeDD624F26656B6736a3F093b073", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9e3bf4Ecfc44EeDD624F26656B6736a3F093b073/logo.png b/blockchains/smartchain/assets/0x9e3bf4Ecfc44EeDD624F26656B6736a3F093b073/logo.png new file mode 100644 index 0000000000000..a15a0ef60cdf1 Binary files /dev/null and b/blockchains/smartchain/assets/0x9e3bf4Ecfc44EeDD624F26656B6736a3F093b073/logo.png differ diff --git a/blockchains/smartchain/assets/0x9e5965d28E8D44CAE8F9b809396E0931F9Df71CA/info.json b/blockchains/smartchain/assets/0x9e5965d28E8D44CAE8F9b809396E0931F9Df71CA/info.json index 6910067ca4050..12df7c29ef5f9 100644 --- a/blockchains/smartchain/assets/0x9e5965d28E8D44CAE8F9b809396E0931F9Df71CA/info.json +++ b/blockchains/smartchain/assets/0x9e5965d28E8D44CAE8F9b809396E0931F9Df71CA/info.json @@ -10,8 +10,8 @@ "id": "0x9e5965d28E8D44CAE8F9b809396E0931F9Df71CA", "links": [ { - "name": "twitter", - "url": "https://twitter.com/0xSpaceSip" + "name": "x", + "url": "https://x.com/0xSpaceSip" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0x9eBBEB7f6b842377714EAdD987CaA4510205107A/info.json b/blockchains/smartchain/assets/0x9eBBEB7f6b842377714EAdD987CaA4510205107A/info.json index 0cfd27e18f18d..e60428e78ccac 100644 --- a/blockchains/smartchain/assets/0x9eBBEB7f6b842377714EAdD987CaA4510205107A/info.json +++ b/blockchains/smartchain/assets/0x9eBBEB7f6b842377714EAdD987CaA4510205107A/info.json @@ -10,8 +10,8 @@ "id": "0x9eBBEB7f6b842377714EAdD987CaA4510205107A", "links": [ { - "name": "twitter", - "url": "https://twitter.com/boba_brewery" + "name": "x", + "url": "https://x.com/boba_brewery" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0x9eC02756A559700d8D9e79ECe56809f7bcC5dC27/info.json b/blockchains/smartchain/assets/0x9eC02756A559700d8D9e79ECe56809f7bcC5dC27/info.json new file mode 100644 index 0000000000000..ec73dc83df778 --- /dev/null +++ b/blockchains/smartchain/assets/0x9eC02756A559700d8D9e79ECe56809f7bcC5dC27/info.json @@ -0,0 +1,21 @@ +{ + "name": "why", + "website": "https://www.madphant.com/", + "description": "WHY is a bipolar Elephant, RAMPAGE after FOMO (In the dream). Dancing and Happi all the daytime.(In real life) $BNB", + "explorer": "https://bscscan.com/token/0x9ec02756a559700d8d9e79ece56809f7bcc5dc27", + "type": "BEP20", + "symbol": "WHY", + "decimals": 18, + "status": "active", + "id": "0x9eC02756A559700d8D9e79ECe56809f7bcC5dC27", + "links": [ + { + "name": "telegram", + "url": "https://t.me/whyenelephant" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/why/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9eC02756A559700d8D9e79ECe56809f7bcC5dC27/logo.png b/blockchains/smartchain/assets/0x9eC02756A559700d8D9e79ECe56809f7bcC5dC27/logo.png new file mode 100644 index 0000000000000..1cf7d100d0651 Binary files /dev/null and b/blockchains/smartchain/assets/0x9eC02756A559700d8D9e79ECe56809f7bcC5dC27/logo.png differ diff --git a/blockchains/smartchain/assets/0x9eeB6c5ff183E6001c65a12D70026b900AE76781/info.json b/blockchains/smartchain/assets/0x9eeB6c5ff183E6001c65a12D70026b900AE76781/info.json index b12d2c22337ac..d3940c7756670 100644 --- a/blockchains/smartchain/assets/0x9eeB6c5ff183E6001c65a12D70026b900AE76781/info.json +++ b/blockchains/smartchain/assets/0x9eeB6c5ff183E6001c65a12D70026b900AE76781/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/irena_coin_global" }, { - "name": "twitter", - "url": "https://twitter.com/Irenagreencoin" + "name": "x", + "url": "https://x.com/Irenagreencoin" }, { "name": "coinmarketcap", @@ -25,4 +25,4 @@ "tags": [ "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9f16E46c73b43BDB70861247d537bEE4eA18F639/info.json b/blockchains/smartchain/assets/0x9f16E46c73b43BDB70861247d537bEE4eA18F639/info.json new file mode 100644 index 0000000000000..a7bd13de46d4b --- /dev/null +++ b/blockchains/smartchain/assets/0x9f16E46c73b43BDB70861247d537bEE4eA18F639/info.json @@ -0,0 +1,24 @@ +{ + "name": "AMD (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "AMDon is the Ondo Tokenized version of AMD, giving tokenholders economic exposure similar to holding AMD and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0x9f16e46c73b43bdb70861247d537bee4ea18f639", + "type": "BEP20", + "symbol": "AMDon", + "decimals": 18, + "status": "active", + "id": "0x9f16E46c73b43BDB70861247d537bEE4eA18F639", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/amd-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9f16E46c73b43BDB70861247d537bEE4eA18F639/logo.png b/blockchains/smartchain/assets/0x9f16E46c73b43BDB70861247d537bEE4eA18F639/logo.png new file mode 100644 index 0000000000000..8232eae79fa87 Binary files /dev/null and b/blockchains/smartchain/assets/0x9f16E46c73b43BDB70861247d537bEE4eA18F639/logo.png differ diff --git a/blockchains/smartchain/assets/0x9f46EcF92E7F6eE8C03f393ADf04C2e17B8cD0B0/info.json b/blockchains/smartchain/assets/0x9f46EcF92E7F6eE8C03f393ADf04C2e17B8cD0B0/info.json new file mode 100644 index 0000000000000..f463e01257818 --- /dev/null +++ b/blockchains/smartchain/assets/0x9f46EcF92E7F6eE8C03f393ADf04C2e17B8cD0B0/info.json @@ -0,0 +1,32 @@ +{ + "name": "TRUSTxGAMING", + "type": "BEP20", + "symbol": "TXG", + "decimals": 18, + "website": "https://trustxgaming.io/", + "description": "TRUSTxGAMING is an online gaming platform with games like ludo, colour prediction and many skilled games like rummy and poker. TrustxGaming has its own native token named TXG which can be used to participate and play games. TXG serves as utility token in its Gaming ecosystem. ", + "explorer": "https://bscscan.com/token/0x9f46EcF92E7F6eE8C03f393ADf04C2e17B8cD0B0", + "status": "active", + "id": "0x9f46EcF92E7F6eE8C03f393ADf04C2e17B8cD0B0", + "links": [ + { + "name": "x", + "url": "https://x.com/trust_xgaming" + }, + { + "name": "telegram", + "url": "https://t.me/trustxgaming" + }, + { + "name": "whitepaper", + "url": "https://trustxgaming.io/Content/casinous/assets/images/TXG_whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/trustxgaming/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9f46EcF92E7F6eE8C03f393ADf04C2e17B8cD0B0/logo.png b/blockchains/smartchain/assets/0x9f46EcF92E7F6eE8C03f393ADf04C2e17B8cD0B0/logo.png new file mode 100644 index 0000000000000..bfa2555a58abb Binary files /dev/null and b/blockchains/smartchain/assets/0x9f46EcF92E7F6eE8C03f393ADf04C2e17B8cD0B0/logo.png differ diff --git a/blockchains/smartchain/assets/0x9f54d823F3FC0624a0ADCF9cdEaEa65644128888/info.json b/blockchains/smartchain/assets/0x9f54d823F3FC0624a0ADCF9cdEaEa65644128888/info.json new file mode 100644 index 0000000000000..e094e34357f1b --- /dev/null +++ b/blockchains/smartchain/assets/0x9f54d823F3FC0624a0ADCF9cdEaEa65644128888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE ΒΝΒ Smart Chain", + "type": "BEP20", + "symbol": "FAKE ΒΝΒ", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0x9f54d823F3FC0624a0ADCF9cdEaEa65644128888", + "explorer": "https://bscscan.com/token/0x9f54d823F3FC0624a0ADCF9cdEaEa65644128888", + "status": "spam", + "id": "0x9f54d823F3FC0624a0ADCF9cdEaEa65644128888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9f589e3eabe42ebC94A44727b3f3531C0c877809/info.json b/blockchains/smartchain/assets/0x9f589e3eabe42ebC94A44727b3f3531C0c877809/info.json index 003ddc7f6aeec..774cf6d33bd1b 100644 --- a/blockchains/smartchain/assets/0x9f589e3eabe42ebC94A44727b3f3531C0c877809/info.json +++ b/blockchains/smartchain/assets/0x9f589e3eabe42ebC94A44727b3f3531C0c877809/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/tkogroupofficial" }, { - "name": "twitter", - "url": "https://twitter.com/tkobytokocrypto" + "name": "x", + "url": "https://x.com/tkobytokocrypto" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0x9fD87aEfe02441B123c3c32466cD9dB4c578618f/info.json b/blockchains/smartchain/assets/0x9fD87aEfe02441B123c3c32466cD9dB4c578618f/info.json index e63ee1c2944cd..71562ad8e490a 100644 --- a/blockchains/smartchain/assets/0x9fD87aEfe02441B123c3c32466cD9dB4c578618f/info.json +++ b/blockchains/smartchain/assets/0x9fD87aEfe02441B123c3c32466cD9dB4c578618f/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/thetan-arena/" }, { - "name": "twitter", - "url": "https://twitter.com/thetanarena" + "name": "x", + "url": "https://x.com/thetanarena" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xA001862BA0866Ee3e3a2613fAb5954861452B9Bf/info.json b/blockchains/smartchain/assets/0xA001862BA0866Ee3e3a2613fAb5954861452B9Bf/info.json index 5420f92787be4..517a3e482384a 100644 --- a/blockchains/smartchain/assets/0xA001862BA0866Ee3e3a2613fAb5954861452B9Bf/info.json +++ b/blockchains/smartchain/assets/0xA001862BA0866Ee3e3a2613fAb5954861452B9Bf/info.json @@ -10,8 +10,8 @@ "id": "0xA001862BA0866Ee3e3a2613fAb5954861452B9Bf", "links": [ { - "name": "twitter", - "url": "https://twitter.com/enhancetoken" + "name": "x", + "url": "https://x.com/enhancetoken" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0xA01b9cAFE2230093fbf0000B43701E03717F77cE/info.json b/blockchains/smartchain/assets/0xA01b9cAFE2230093fbf0000B43701E03717F77cE/info.json index 902e16972db39..55074951c34ca 100644 --- a/blockchains/smartchain/assets/0xA01b9cAFE2230093fbf0000B43701E03717F77cE/info.json +++ b/blockchains/smartchain/assets/0xA01b9cAFE2230093fbf0000B43701E03717F77cE/info.json @@ -6,6 +6,9 @@ "symbol": "wBTC", "type": "BEP20", "decimals": 8, - "status": "active", - "id": "0xA01b9cAFE2230093fbf0000B43701E03717F77cE" + "status": "abandoned", + "id": "0xA01b9cAFE2230093fbf0000B43701E03717F77cE", + "tags": [ + "defi" + ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA01b9cAFE2230093fbf0000B43701E03717F77cE/logo.png b/blockchains/smartchain/assets/0xA01b9cAFE2230093fbf0000B43701E03717F77cE/logo.png deleted file mode 100644 index 062c60667efe4..0000000000000 Binary files a/blockchains/smartchain/assets/0xA01b9cAFE2230093fbf0000B43701E03717F77cE/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xA060E0c0588D26CabA4a0009513337aCE50752dd/info.json b/blockchains/smartchain/assets/0xA060E0c0588D26CabA4a0009513337aCE50752dd/info.json index 1aa49c629035c..18dba6d2414f5 100644 --- a/blockchains/smartchain/assets/0xA060E0c0588D26CabA4a0009513337aCE50752dd/info.json +++ b/blockchains/smartchain/assets/0xA060E0c0588D26CabA4a0009513337aCE50752dd/info.json @@ -10,8 +10,8 @@ "id": "0xA060E0c0588D26CabA4a0009513337aCE50752dd", "links": [ { - "name": "twitter", - "url": "https://twitter.com/zooshicoin" + "name": "x", + "url": "https://x.com/zooshicoin" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xA07c5b74C9B40447a954e1466938b865b6BBea36/info.json b/blockchains/smartchain/assets/0xA07c5b74C9B40447a954e1466938b865b6BBea36/info.json index 0fe7b68299d11..0bcba34f45c95 100644 --- a/blockchains/smartchain/assets/0xA07c5b74C9B40447a954e1466938b865b6BBea36/info.json +++ b/blockchains/smartchain/assets/0xA07c5b74C9B40447a954e1466938b865b6BBea36/info.json @@ -11,8 +11,8 @@ "id": "0xA07c5b74C9B40447a954e1466938b865b6BBea36", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VenusProtocol" + "name": "x", + "url": "https://x.com/VenusProtocol" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xA0C2A0A34c04135429a38f7F9a4354090e00145A/info.json b/blockchains/smartchain/assets/0xA0C2A0A34c04135429a38f7F9a4354090e00145A/info.json index ea0a4d86b03b7..a69f4ddd2c00c 100644 --- a/blockchains/smartchain/assets/0xA0C2A0A34c04135429a38f7F9a4354090e00145A/info.json +++ b/blockchains/smartchain/assets/0xA0C2A0A34c04135429a38f7F9a4354090e00145A/info.json @@ -10,8 +10,8 @@ "id": "0xA0C2A0A34c04135429a38f7F9a4354090e00145A", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PrimexCapital" + "name": "x", + "url": "https://x.com/PrimexCapital" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xA0C3Ef24414ED9C9B456740128d8E63D016A9e11/info.json b/blockchains/smartchain/assets/0xA0C3Ef24414ED9C9B456740128d8E63D016A9e11/info.json index e4f972b1bea18..42f96c68d90eb 100644 --- a/blockchains/smartchain/assets/0xA0C3Ef24414ED9C9B456740128d8E63D016A9e11/info.json +++ b/blockchains/smartchain/assets/0xA0C3Ef24414ED9C9B456740128d8E63D016A9e11/info.json @@ -18,8 +18,8 @@ "url": "https://apeswap.gitbook.io/apeswap-finance/" }, { - "name": "twitter", - "url": "https://twitter.com/ape_swap" + "name": "x", + "url": "https://x.com/ape_swap" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xA1303E6199b319a891b79685F0537D289af1FC83/info.json b/blockchains/smartchain/assets/0xA1303E6199b319a891b79685F0537D289af1FC83/info.json index 4f7f325f9ef6d..f04c22cb53ebd 100644 --- a/blockchains/smartchain/assets/0xA1303E6199b319a891b79685F0537D289af1FC83/info.json +++ b/blockchains/smartchain/assets/0xA1303E6199b319a891b79685F0537D289af1FC83/info.json @@ -10,8 +10,8 @@ "id": "0xA1303E6199b319a891b79685F0537D289af1FC83", "links": [ { - "name": "twitter", - "url": "https://twitter.com/narwhalswap" + "name": "x", + "url": "https://x.com/narwhalswap" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xA176fa55bef56D18ab671251957aCB0Db630539b/info.json b/blockchains/smartchain/assets/0xA176fa55bef56D18ab671251957aCB0Db630539b/info.json index 2663692ee6427..bef2d129e785c 100644 --- a/blockchains/smartchain/assets/0xA176fa55bef56D18ab671251957aCB0Db630539b/info.json +++ b/blockchains/smartchain/assets/0xA176fa55bef56D18ab671251957aCB0Db630539b/info.json @@ -10,8 +10,8 @@ "id": "0xA176fa55bef56D18ab671251957aCB0Db630539b", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SymBULLCoin" + "name": "x", + "url": "https://x.com/SymBULLCoin" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xA18BBdCd86e4178d10eCd9316667cfE4C4AA8717/info.json b/blockchains/smartchain/assets/0xA18BBdCd86e4178d10eCd9316667cfE4C4AA8717/info.json new file mode 100644 index 0000000000000..28ee21484f6a2 --- /dev/null +++ b/blockchains/smartchain/assets/0xA18BBdCd86e4178d10eCd9316667cfE4C4AA8717/info.json @@ -0,0 +1,17 @@ +{ + "name": "BNBXBT", + "website": "https://x.com/bnbxbt_agent", + "description": "AI agent that analyzes social data to find alpha exclusive for BSC chain", + "explorer": "https://bscscan.com/token/0xa18bbdcd86e4178d10ecd9316667cfe4c4aa8717", + "type": "BEP20", + "symbol": "BNBXBT", + "decimals": 18, + "status": "active", + "id": "0xA18BBdCd86e4178d10eCd9316667cfE4C4AA8717", + "links": [ + { + "name": "x", + "url": "https://x.com/bnbxbt_agent" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA18BBdCd86e4178d10eCd9316667cfE4C4AA8717/logo.png b/blockchains/smartchain/assets/0xA18BBdCd86e4178d10eCd9316667cfE4C4AA8717/logo.png new file mode 100644 index 0000000000000..c47cd8d6bde8c Binary files /dev/null and b/blockchains/smartchain/assets/0xA18BBdCd86e4178d10eCd9316667cfE4C4AA8717/logo.png differ diff --git a/blockchains/smartchain/assets/0xA1943Bc4a417ffd2E9e11A97383fa3f9548291c3/info.json b/blockchains/smartchain/assets/0xA1943Bc4a417ffd2E9e11A97383fa3f9548291c3/info.json index 76cad050516e4..2c1f3dbf92456 100644 --- a/blockchains/smartchain/assets/0xA1943Bc4a417ffd2E9e11A97383fa3f9548291c3/info.json +++ b/blockchains/smartchain/assets/0xA1943Bc4a417ffd2E9e11A97383fa3f9548291c3/info.json @@ -10,8 +10,8 @@ "id": "0xA1943Bc4a417ffd2E9e11A97383fa3f9548291c3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/apiinu" + "name": "x", + "url": "https://x.com/apiinu" }, { "name": "github", @@ -38,4 +38,4 @@ "defi", "memes" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA2086F4a3955A520A1743D68CDbcf064Ee1746Cd/info.json b/blockchains/smartchain/assets/0xA2086F4a3955A520A1743D68CDbcf064Ee1746Cd/info.json index aa53ce36b71e1..5a670f8d856c3 100644 --- a/blockchains/smartchain/assets/0xA2086F4a3955A520A1743D68CDbcf064Ee1746Cd/info.json +++ b/blockchains/smartchain/assets/0xA2086F4a3955A520A1743D68CDbcf064Ee1746Cd/info.json @@ -10,8 +10,8 @@ "id": "0xA2086F4a3955A520A1743D68CDbcf064Ee1746Cd", "links": [ { - "name": "twitter", - "url": "https://twitter.com/xdogeapp" + "name": "x", + "url": "https://x.com/xdogeapp" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xA2120b9e674d3fC3875f415A7DF52e382F141225/info.json b/blockchains/smartchain/assets/0xA2120b9e674d3fC3875f415A7DF52e382F141225/info.json index fed73fd7d8b92..69a0df11b934e 100644 --- a/blockchains/smartchain/assets/0xA2120b9e674d3fC3875f415A7DF52e382F141225/info.json +++ b/blockchains/smartchain/assets/0xA2120b9e674d3fC3875f415A7DF52e382F141225/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/automata-network" }, { - "name": "twitter", - "url": "https://twitter.com/automatanetwork" + "name": "x", + "url": "https://x.com/automatanetwork" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xA2171868C06e578ffF91fDfD186b22A3dF3fF2C7/info.json b/blockchains/smartchain/assets/0xA2171868C06e578ffF91fDfD186b22A3dF3fF2C7/info.json new file mode 100644 index 0000000000000..58d395befd680 --- /dev/null +++ b/blockchains/smartchain/assets/0xA2171868C06e578ffF91fDfD186b22A3dF3fF2C7/info.json @@ -0,0 +1,26 @@ +{ + "name": "ai21x", + "type": "BEP20", + "symbol": "ai21x", + "decimals": 18, + "description": "Powering the Next Generation of Onchain AI Revolution With: C.A.I (Convergent Artificial Intelligence) - A Proprietary Technology of AI21X", + "website": "https://www.ai21x.ai/", + "explorer": "https://bscscan.com/token/0xA2171868C06e578ffF91fDfD186b22A3dF3fF2C7", + "id": "0xA2171868C06e578ffF91fDfD186b22A3dF3fF2C7", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/ai21x_labs" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ai21x/" + } + + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA2171868C06e578ffF91fDfD186b22A3dF3fF2C7/logo.png b/blockchains/smartchain/assets/0xA2171868C06e578ffF91fDfD186b22A3dF3fF2C7/logo.png new file mode 100644 index 0000000000000..03dc14d6a3214 Binary files /dev/null and b/blockchains/smartchain/assets/0xA2171868C06e578ffF91fDfD186b22A3dF3fF2C7/logo.png differ diff --git a/blockchains/smartchain/assets/0xA325Ad6D9c92B55A3Fc5aD7e412B1518F96441C0/info.json b/blockchains/smartchain/assets/0xA325Ad6D9c92B55A3Fc5aD7e412B1518F96441C0/info.json new file mode 100644 index 0000000000000..904b17f857729 --- /dev/null +++ b/blockchains/smartchain/assets/0xA325Ad6D9c92B55A3Fc5aD7e412B1518F96441C0/info.json @@ -0,0 +1,21 @@ +{ + "name": "Oraichain Token", + "website": "https://orai.io", + "description": "Oraichain is a data oracle platform that aggregates and connects Artificial Intelligence APIs to smart contracts and regular applications. The world’s first AI-powered data oracle has arrived.", + "explorer": "https://bscscan.com/token/0xA325Ad6D9c92B55A3Fc5aD7e412B1518F96441C0", + "type": "BEP20", + "symbol": "ORAI", + "decimals": 18, + "status": "active", + "id": "0xA325Ad6D9c92B55A3Fc5aD7e412B1518F96441C0", + "links": [ + { + "name": "github", + "url": "https://github.com/oraichain/" + }, + { + "name": "x", + "url": "https://x.com/Oraichain and yAI.Finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA325Ad6D9c92B55A3Fc5aD7e412B1518F96441C0/logo.png b/blockchains/smartchain/assets/0xA325Ad6D9c92B55A3Fc5aD7e412B1518F96441C0/logo.png new file mode 100644 index 0000000000000..2b7b599e04a32 Binary files /dev/null and b/blockchains/smartchain/assets/0xA325Ad6D9c92B55A3Fc5aD7e412B1518F96441C0/logo.png differ diff --git a/blockchains/smartchain/assets/0xA3B089C886E6d721f49DEF8E050F3b9D4362560B/info.json b/blockchains/smartchain/assets/0xA3B089C886E6d721f49DEF8E050F3b9D4362560B/info.json new file mode 100644 index 0000000000000..47ba80b2fc47d --- /dev/null +++ b/blockchains/smartchain/assets/0xA3B089C886E6d721f49DEF8E050F3b9D4362560B/info.json @@ -0,0 +1,28 @@ +{ + "name": "Verizon (Ondo Tokenized)", + "type": "BEP20", + "symbol": "VZon", + "decimals": 18, + "description": "VZon is the Ondo Tokenized version of Verizon, giving tokenholders economic exposure similar to holding VZ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xA3B089C886E6d721f49DEF8E050F3b9D4362560B", + "status": "active", + "id": "0xA3B089C886E6d721f49DEF8E050F3b9D4362560B", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/verizon-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/verizon-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA3B089C886E6d721f49DEF8E050F3b9D4362560B/logo.png b/blockchains/smartchain/assets/0xA3B089C886E6d721f49DEF8E050F3b9D4362560B/logo.png new file mode 100644 index 0000000000000..2b78123fa0c7e Binary files /dev/null and b/blockchains/smartchain/assets/0xA3B089C886E6d721f49DEF8E050F3b9D4362560B/logo.png differ diff --git a/blockchains/smartchain/assets/0xA3b7B7cfEb023a6C4f444f5ca9a3Fc85809Ece15/info.json b/blockchains/smartchain/assets/0xA3b7B7cfEb023a6C4f444f5ca9a3Fc85809Ece15/info.json new file mode 100644 index 0000000000000..731585844200e --- /dev/null +++ b/blockchains/smartchain/assets/0xA3b7B7cfEb023a6C4f444f5ca9a3Fc85809Ece15/info.json @@ -0,0 +1,24 @@ +{ + "name": "Intuitive Machines (Ondo Tokenized)", + "type": "BEP20", + "symbol": "LUNRon", + "decimals": 18, + "description": "LUNRon is the Ondo Tokenized version of Intuitive Machines, giving tokenholders economic exposure similar to holding LUNR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xA3b7B7cfEb023a6C4f444f5ca9a3Fc85809Ece15", + "status": "active", + "id": "0xA3b7B7cfEb023a6C4f444f5ca9a3Fc85809Ece15", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/intuitive-machines-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA3b7B7cfEb023a6C4f444f5ca9a3Fc85809Ece15/logo.png b/blockchains/smartchain/assets/0xA3b7B7cfEb023a6C4f444f5ca9a3Fc85809Ece15/logo.png new file mode 100644 index 0000000000000..8a3fd6997cc75 Binary files /dev/null and b/blockchains/smartchain/assets/0xA3b7B7cfEb023a6C4f444f5ca9a3Fc85809Ece15/logo.png differ diff --git a/blockchains/smartchain/assets/0xA3b89C5F75C530f33E612177001F5602E9C2830F/info.json b/blockchains/smartchain/assets/0xA3b89C5F75C530f33E612177001F5602E9C2830F/info.json index 3a57397d9c07a..1482bab35b752 100644 --- a/blockchains/smartchain/assets/0xA3b89C5F75C530f33E612177001F5602E9C2830F/info.json +++ b/blockchains/smartchain/assets/0xA3b89C5F75C530f33E612177001F5602E9C2830F/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/miniBABYDOGEofficialgroup" }, { - "name": "twitter", - "url": "https://twitter.com/MBabydoge" + "name": "x", + "url": "https://x.com/MBabydoge" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0xA4050Aa9b76CcDAe1A6a8b2F3e8627Cdc1546d86/info.json b/blockchains/smartchain/assets/0xA4050Aa9b76CcDAe1A6a8b2F3e8627Cdc1546d86/info.json index 3517b3a01470a..2e4ed77d52936 100644 --- a/blockchains/smartchain/assets/0xA4050Aa9b76CcDAe1A6a8b2F3e8627Cdc1546d86/info.json +++ b/blockchains/smartchain/assets/0xA4050Aa9b76CcDAe1A6a8b2F3e8627Cdc1546d86/info.json @@ -10,8 +10,8 @@ "id": "0xA4050Aa9b76CcDAe1A6a8b2F3e8627Cdc1546d86", "links": [ { - "name": "twitter", - "url": "https://twitter.com/lepasaorg" + "name": "x", + "url": "https://x.com/lepasaorg" }, { "name": "github", @@ -55,4 +55,4 @@ "nft", "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA40A4e8e6dc3d57B941551300b45a1E17CCbc15c/info.json b/blockchains/smartchain/assets/0xA40A4e8e6dc3d57B941551300b45a1E17CCbc15c/info.json new file mode 100644 index 0000000000000..6aaf3d97f289f --- /dev/null +++ b/blockchains/smartchain/assets/0xA40A4e8e6dc3d57B941551300b45a1E17CCbc15c/info.json @@ -0,0 +1,17 @@ +{ + "name": "BnbAI", + "symbol": "BnbAI", + "website": "https://www.bnb-ai.net", + "description": "The AI agent named BnbAI is your new buddy. This agent can talk to you in text and voice", + "explorer": "https://bscscan.com/token/0xa40a4e8e6dc3d57b941551300b45a1e17ccbc15c", + "decimals": 18, + "status": "active", + "id": "0xA40A4e8e6dc3d57B941551300b45a1E17CCbc15c", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/bnbai_x" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA40A4e8e6dc3d57B941551300b45a1E17CCbc15c/logo.png b/blockchains/smartchain/assets/0xA40A4e8e6dc3d57B941551300b45a1E17CCbc15c/logo.png new file mode 100644 index 0000000000000..3a6f7dfb8c175 Binary files /dev/null and b/blockchains/smartchain/assets/0xA40A4e8e6dc3d57B941551300b45a1E17CCbc15c/logo.png differ diff --git a/blockchains/smartchain/assets/0xA4156cc61dc7796faA24278a0F9F229B15e298cb/info.json b/blockchains/smartchain/assets/0xA4156cc61dc7796faA24278a0F9F229B15e298cb/info.json new file mode 100644 index 0000000000000..a34f5891fecad --- /dev/null +++ b/blockchains/smartchain/assets/0xA4156cc61dc7796faA24278a0F9F229B15e298cb/info.json @@ -0,0 +1,11 @@ +{ + "name": "HIGH-RISK Bitcoin Bridged ZED20", + "type": "BEP20", + "symbol": "HIGH RISK", + "decimals": 18, + "description": "Token assessed as high-risk and not affiliated with Bitcoin", + "website": "https://bscscan.com/token/0xA4156cc61dc7796faA24278a0F9F229B15e298cb", + "explorer": "https://bscscan.com/token/0xA4156cc61dc7796faA24278a0F9F229B15e298cb", + "status": "spam", + "id": "0xA4156cc61dc7796faA24278a0F9F229B15e298cb" +} diff --git a/blockchains/smartchain/assets/0xA4156cc61dc7796faA24278a0F9F229B15e298cb/logo.png b/blockchains/smartchain/assets/0xA4156cc61dc7796faA24278a0F9F229B15e298cb/logo.png new file mode 100644 index 0000000000000..9e1b2771a29f1 Binary files /dev/null and b/blockchains/smartchain/assets/0xA4156cc61dc7796faA24278a0F9F229B15e298cb/logo.png differ diff --git a/blockchains/smartchain/assets/0xA486a0A05250E8621bA3B26C3bbc517145eba619/info.json b/blockchains/smartchain/assets/0xA486a0A05250E8621bA3B26C3bbc517145eba619/info.json new file mode 100644 index 0000000000000..d174f9b78d4a8 --- /dev/null +++ b/blockchains/smartchain/assets/0xA486a0A05250E8621bA3B26C3bbc517145eba619/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares 7-10 Year Treasury Bond ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "IEFon", + "decimals": 18, + "description": "IEFon is the Ondo Tokenized version of the iShares 7-10 Year Treasury Bond ETF, giving tokenholders economic exposure similar to holding IEF and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xA486a0A05250E8621bA3B26C3bbc517145eba619", + "status": "active", + "id": "0xA486a0A05250E8621bA3B26C3bbc517145eba619", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-7-10-year-treasury-bond-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA486a0A05250E8621bA3B26C3bbc517145eba619/logo.png b/blockchains/smartchain/assets/0xA486a0A05250E8621bA3B26C3bbc517145eba619/logo.png new file mode 100644 index 0000000000000..6c93239492673 Binary files /dev/null and b/blockchains/smartchain/assets/0xA486a0A05250E8621bA3B26C3bbc517145eba619/logo.png differ diff --git a/blockchains/smartchain/assets/0xA4d872235dde5694AF92a1d0df20d723E8e9E5fC/info.json b/blockchains/smartchain/assets/0xA4d872235dde5694AF92a1d0df20d723E8e9E5fC/info.json index 67a2c93a6eb06..7f8d45f351afd 100644 --- a/blockchains/smartchain/assets/0xA4d872235dde5694AF92a1d0df20d723E8e9E5fC/info.json +++ b/blockchains/smartchain/assets/0xA4d872235dde5694AF92a1d0df20d723E8e9E5fC/info.json @@ -10,8 +10,8 @@ "id": "0xA4d872235dde5694AF92a1d0df20d723E8e9E5fC", "links": [ { - "name": "twitter", - "url": "https://twitter.com/nmbplatform" + "name": "x", + "url": "https://x.com/nmbplatform" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xA501Cb70CB2beCFfEB5aC491f91E2f7916E5a3fC/info.json b/blockchains/smartchain/assets/0xA501Cb70CB2beCFfEB5aC491f91E2f7916E5a3fC/info.json new file mode 100644 index 0000000000000..0d9347b740a18 --- /dev/null +++ b/blockchains/smartchain/assets/0xA501Cb70CB2beCFfEB5aC491f91E2f7916E5a3fC/info.json @@ -0,0 +1,19 @@ +{ + "name": "Hurricane", + "type": "BEP20", + "symbol": "Hurricane", + "decimals": 18, + "description": "Rip Hurricane, the most decorated dog in US history", + "website": "https://www.k9hurricanesheroes.org/", + "explorer": "https://bscscan.com/token/0xa501cb70cb2becffeb5ac491f91e2f7916e5a3fc", + "id": "0xA501Cb70CB2beCFfEB5aC491f91E2f7916E5a3fC", + "status": "active", + "links": [ + + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA501Cb70CB2beCFfEB5aC491f91E2f7916E5a3fC/logo.png b/blockchains/smartchain/assets/0xA501Cb70CB2beCFfEB5aC491f91E2f7916E5a3fC/logo.png new file mode 100644 index 0000000000000..af6a8f40d541b Binary files /dev/null and b/blockchains/smartchain/assets/0xA501Cb70CB2beCFfEB5aC491f91E2f7916E5a3fC/logo.png differ diff --git a/blockchains/smartchain/assets/0xA528CaaA2f96090e379d43F90834C75dF54D6E74/info.json b/blockchains/smartchain/assets/0xA528CaaA2f96090e379d43F90834C75dF54D6E74/info.json new file mode 100644 index 0000000000000..0d19c23cf2d13 --- /dev/null +++ b/blockchains/smartchain/assets/0xA528CaaA2f96090e379d43F90834C75dF54D6E74/info.json @@ -0,0 +1,24 @@ +{ + "name": "Intel (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "INTCon is the Ondo Tokenized version of Intel, giving tokenholders economic exposure similar to holding INTC and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xa528caaa2f96090e379d43f90834c75df54d6e74", + "type": "BEP20", + "symbol": "INTCon", + "decimals": 18, + "status": "active", + "id": "0xA528CaaA2f96090e379d43F90834C75dF54D6E74", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/intel-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA528CaaA2f96090e379d43F90834C75dF54D6E74/logo.png b/blockchains/smartchain/assets/0xA528CaaA2f96090e379d43F90834C75dF54D6E74/logo.png new file mode 100644 index 0000000000000..91dadf1975354 Binary files /dev/null and b/blockchains/smartchain/assets/0xA528CaaA2f96090e379d43F90834C75dF54D6E74/logo.png differ diff --git a/blockchains/smartchain/assets/0xA5351C9bf08055E03642b6b8649A0f7e895501BF/info.json b/blockchains/smartchain/assets/0xA5351C9bf08055E03642b6b8649A0f7e895501BF/info.json new file mode 100644 index 0000000000000..ff792be8a412d --- /dev/null +++ b/blockchains/smartchain/assets/0xA5351C9bf08055E03642b6b8649A0f7e895501BF/info.json @@ -0,0 +1,24 @@ +{ + "name": "US Natural Gas Fund (Ondo Tokenized)", + "type": "BEP20", + "symbol": "UNGon", + "decimals": 18, + "description": "UNGon is the Ondo Tokenized version of the US Natural Gas Fund, giving tokenholders economic exposure similar to holding UNG and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xA5351C9bf08055E03642b6b8649A0f7e895501BF", + "status": "active", + "id": "0xA5351C9bf08055E03642b6b8649A0f7e895501BF", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/us-natural-gas-fund-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA5351C9bf08055E03642b6b8649A0f7e895501BF/logo.png b/blockchains/smartchain/assets/0xA5351C9bf08055E03642b6b8649A0f7e895501BF/logo.png new file mode 100644 index 0000000000000..12335ab8ef272 Binary files /dev/null and b/blockchains/smartchain/assets/0xA5351C9bf08055E03642b6b8649A0f7e895501BF/logo.png differ diff --git a/blockchains/smartchain/assets/0xA53E61578fF54f1ad70186Be99332a6e20b6ffa9/info.json b/blockchains/smartchain/assets/0xA53E61578fF54f1ad70186Be99332a6e20b6ffa9/info.json index a27375ab9585b..25177d1359cce 100644 --- a/blockchains/smartchain/assets/0xA53E61578fF54f1ad70186Be99332a6e20b6ffa9/info.json +++ b/blockchains/smartchain/assets/0xA53E61578fF54f1ad70186Be99332a6e20b6ffa9/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/GoldenDoge11" + "name": "x", + "url": "https://x.com/GoldenDoge11" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xA55BB91dE33B4abdf3aC64913D98A55ad84Dc3A8/info.json b/blockchains/smartchain/assets/0xA55BB91dE33B4abdf3aC64913D98A55ad84Dc3A8/info.json index 7cbb7bd577de6..3cae97d3ebfde 100644 --- a/blockchains/smartchain/assets/0xA55BB91dE33B4abdf3aC64913D98A55ad84Dc3A8/info.json +++ b/blockchains/smartchain/assets/0xA55BB91dE33B4abdf3aC64913D98A55ad84Dc3A8/info.json @@ -2,7 +2,7 @@ "name": "BlowFish", "website": "https://blowfish.one/", "telegram": "https://t.me/blowfishtokengroup", - "twitter": "https://twitter.com/blowfishtoken", + "x": "https://x.com/blowfishtoken", "description": "A gamifying token with fun DApps like NFT games and a deflationary lottery.", "explorer": "https://bscscan.com/token/0xa55bb91de33b4abdf3ac64913d98a55ad84dc3a8", "type": "BEP20", diff --git a/blockchains/smartchain/assets/0xA55EF2fB2B7b6A60371FD3def9B806E74a48bE69/info.json b/blockchains/smartchain/assets/0xA55EF2fB2B7b6A60371FD3def9B806E74a48bE69/info.json index e32e3c0a00f8b..b15eb539f9ae2 100644 --- a/blockchains/smartchain/assets/0xA55EF2fB2B7b6A60371FD3def9B806E74a48bE69/info.json +++ b/blockchains/smartchain/assets/0xA55EF2fB2B7b6A60371FD3def9B806E74a48bE69/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/adamant/" }, { - "name": "twitter", - "url": "https://twitter.com/adamantcoin" + "name": "x", + "url": "https://x.com/adamantcoin" }, { "name": "telegram", @@ -33,4 +33,4 @@ "tags": [ "deflationary" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA5713050600030Edb6BC13d9EdA894c3500B4444/info.json b/blockchains/smartchain/assets/0xA5713050600030Edb6BC13d9EdA894c3500B4444/info.json new file mode 100644 index 0000000000000..ae16524d723cc --- /dev/null +++ b/blockchains/smartchain/assets/0xA5713050600030Edb6BC13d9EdA894c3500B4444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDKG", + "type": "BEP20", + "symbol": "FAKE USDKG", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xA5713050600030Edb6BC13d9EdA894c3500B4444", + "explorer": "https://bscscan.com/token/0xA5713050600030Edb6BC13d9EdA894c3500B4444", + "status": "spam", + "id": "0xA5713050600030Edb6BC13d9EdA894c3500B4444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA5Ff48e326958E0CE6FdF9518de561F2B5f57dA3/info.json b/blockchains/smartchain/assets/0xA5Ff48e326958E0CE6FdF9518de561F2B5f57dA3/info.json index 76aecd5b7d9d1..c73272b7de87e 100644 --- a/blockchains/smartchain/assets/0xA5Ff48e326958E0CE6FdF9518de561F2B5f57dA3/info.json +++ b/blockchains/smartchain/assets/0xA5Ff48e326958E0CE6FdF9518de561F2B5f57dA3/info.json @@ -10,8 +10,8 @@ "id": "0xA5Ff48e326958E0CE6FdF9518de561F2B5f57dA3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Polkalokr" + "name": "x", + "url": "https://x.com/Polkalokr" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xA64455a4553C9034236734FadDAddbb64aCE4Cc7/info.json b/blockchains/smartchain/assets/0xA64455a4553C9034236734FadDAddbb64aCE4Cc7/info.json index 67fd7fe9aad30..eedc8c7fe219b 100644 --- a/blockchains/smartchain/assets/0xA64455a4553C9034236734FadDAddbb64aCE4Cc7/info.json +++ b/blockchains/smartchain/assets/0xA64455a4553C9034236734FadDAddbb64aCE4Cc7/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/santos-fc-fan-token/" }, { - "name": "twitter", - "url": "https://twitter.com/SantosFC" + "name": "x", + "url": "https://x.com/SantosFC" }, { "name": "coingecko", @@ -25,4 +25,4 @@ "tags": [ "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA67a13c9283Da5AABB199Da54a9Cb4cD8B9b16bA/info.json b/blockchains/smartchain/assets/0xA67a13c9283Da5AABB199Da54a9Cb4cD8B9b16bA/info.json index 351aac09746e3..02b2c609328f1 100644 --- a/blockchains/smartchain/assets/0xA67a13c9283Da5AABB199Da54a9Cb4cD8B9b16bA/info.json +++ b/blockchains/smartchain/assets/0xA67a13c9283Da5AABB199Da54a9Cb4cD8B9b16bA/info.json @@ -18,8 +18,8 @@ "url": "https://coingecko.com/en/coins/nobility-new" }, { - "name": "twitter", - "url": "https://twitter.com/nobilitytoken" + "name": "x", + "url": "https://x.com/nobilitytoken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xA6F78EBC10Da383Abc2dD83550c84CEBFd468888/info.json b/blockchains/smartchain/assets/0xA6F78EBC10Da383Abc2dD83550c84CEBFd468888/info.json new file mode 100644 index 0000000000000..35605e2c40a7d --- /dev/null +++ b/blockchains/smartchain/assets/0xA6F78EBC10Da383Abc2dD83550c84CEBFd468888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Тethег USD", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xA6F78EBC10Da383Abc2dD83550c84CEBFd468888", + "explorer": "https://bscscan.com/token/0xA6F78EBC10Da383Abc2dD83550c84CEBFd468888", + "status": "spam", + "id": "0xA6F78EBC10Da383Abc2dD83550c84CEBFd468888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961/info.json b/blockchains/smartchain/assets/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961/info.json new file mode 100644 index 0000000000000..dcc792ce5ef38 --- /dev/null +++ b/blockchains/smartchain/assets/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961/info.json @@ -0,0 +1,24 @@ +{ + "name": "Netflix tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Netflix xStock (NFLXx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. NFLXx tracks the price of Netflix, Inc. (the underlying). NFLXx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Netflix, Inc., whilst maintaining the benefits of blockchain technology. Key Benefits Netflix is a media company that provides entertainment services, including streaming movies, TV shows, and games, through a subscription-based model. It also produces its own original content and licenses content from other companies.", + "explorer": "https://bscscan.com/token/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961", + "type": "BEP20", + "symbol": "NFLXX", + "decimals": 18, + "status": "active", + "id": "0xA6a65AC27E76cD53cB790473E4345c46e5eBf961", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/netflix-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961/logo.png b/blockchains/smartchain/assets/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961/logo.png new file mode 100644 index 0000000000000..7cb316a4557bb Binary files /dev/null and b/blockchains/smartchain/assets/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961/logo.png differ diff --git a/blockchains/smartchain/assets/0xA72Ff2B799324B042AE379809eE54dACE99db3A5/info.json b/blockchains/smartchain/assets/0xA72Ff2B799324B042AE379809eE54dACE99db3A5/info.json index 7c30255afff93..6e9ae55673e62 100644 --- a/blockchains/smartchain/assets/0xA72Ff2B799324B042AE379809eE54dACE99db3A5/info.json +++ b/blockchains/smartchain/assets/0xA72Ff2B799324B042AE379809eE54dACE99db3A5/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/MissDoge" }, { - "name": "twitter", - "url": "https://twitter.com/DogeMiss" + "name": "x", + "url": "https://x.com/DogeMiss" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xA73164DB271931CF952cBaEfF9E8F5817b42fA5C/info.json b/blockchains/smartchain/assets/0xA73164DB271931CF952cBaEfF9E8F5817b42fA5C/info.json index e93b9244f9ca8..52e55c8ce1325 100644 --- a/blockchains/smartchain/assets/0xA73164DB271931CF952cBaEfF9E8F5817b42fA5C/info.json +++ b/blockchains/smartchain/assets/0xA73164DB271931CF952cBaEfF9E8F5817b42fA5C/info.json @@ -10,8 +10,8 @@ "id": "0xA73164DB271931CF952cBaEfF9E8F5817b42fA5C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/landshareio" + "name": "x", + "url": "https://x.com/landshareio" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0xA73505453F58E367c80F16685079dAD6f4EA6b18/info.json b/blockchains/smartchain/assets/0xA73505453F58E367c80F16685079dAD6f4EA6b18/info.json index a9f42751f4ff4..26850f00ab444 100644 --- a/blockchains/smartchain/assets/0xA73505453F58E367c80F16685079dAD6f4EA6b18/info.json +++ b/blockchains/smartchain/assets/0xA73505453F58E367c80F16685079dAD6f4EA6b18/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/UndermineGOLDchina" }, { - "name": "twitter", - "url": "https://twitter.com/UnderMineGold" + "name": "x", + "url": "https://x.com/UnderMineGold" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0xA753D241fFcE10A3570eDa72f6561C04b1f9Ae77/info.json b/blockchains/smartchain/assets/0xA753D241fFcE10A3570eDa72f6561C04b1f9Ae77/info.json index 13bd88474fe30..ffcb40caeeb5d 100644 --- a/blockchains/smartchain/assets/0xA753D241fFcE10A3570eDa72f6561C04b1f9Ae77/info.json +++ b/blockchains/smartchain/assets/0xA753D241fFcE10A3570eDa72f6561C04b1f9Ae77/info.json @@ -14,8 +14,8 @@ "url": "https://titscoin.io/whitepaper" }, { - "name": "twitter", - "url": "https://twitter.com/titsfortits2" + "name": "x", + "url": "https://x.com/titsfortits2" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA77346760341460B42C230ca6D21d4c8E743Fa9c/info.json b/blockchains/smartchain/assets/0xA77346760341460B42C230ca6D21d4c8E743Fa9c/info.json index df65efaaa6a9b..c02cb04e3449b 100644 --- a/blockchains/smartchain/assets/0xA77346760341460B42C230ca6D21d4c8E743Fa9c/info.json +++ b/blockchains/smartchain/assets/0xA77346760341460B42C230ca6D21d4c8E743Fa9c/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/micropets/" }, { - "name": "twitter", - "url": "https://twitter.com/MicroPetsBSC" + "name": "x", + "url": "https://x.com/MicroPetsBSC" }, { "name": "telegram", @@ -47,4 +47,4 @@ "defi", "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA78628eCba2BF5fedf3fE27A7CEdaa363b46708f/info.json b/blockchains/smartchain/assets/0xA78628eCba2BF5fedf3fE27A7CEdaa363b46708f/info.json index 0606755ed559f..34ce8d0f1c95a 100644 --- a/blockchains/smartchain/assets/0xA78628eCba2BF5fedf3fE27A7CEdaa363b46708f/info.json +++ b/blockchains/smartchain/assets/0xA78628eCba2BF5fedf3fE27A7CEdaa363b46708f/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/littlebunnyrocket/littlebunnyrocket" }, { - "name": "twitter", - "url": "https://twitter.com/l_bunnyrocket" + "name": "x", + "url": "https://x.com/l_bunnyrocket" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xA7e288771A90F4f65df907521E7F3bA36D860A54/info.json b/blockchains/smartchain/assets/0xA7e288771A90F4f65df907521E7F3bA36D860A54/info.json index 3368c3b6031c2..dbefc34f6b906 100644 --- a/blockchains/smartchain/assets/0xA7e288771A90F4f65df907521E7F3bA36D860A54/info.json +++ b/blockchains/smartchain/assets/0xA7e288771A90F4f65df907521E7F3bA36D860A54/info.json @@ -10,8 +10,8 @@ "id": "0xA7e288771A90F4f65df907521E7F3bA36D860A54", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BtcGameofficial" + "name": "x", + "url": "https://x.com/BtcGameofficial" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xA7f552078dcC247C2684336020c03648500C6d9F/info.json b/blockchains/smartchain/assets/0xA7f552078dcC247C2684336020c03648500C6d9F/info.json index 86902cf84ec3f..313e0a75b148a 100644 --- a/blockchains/smartchain/assets/0xA7f552078dcC247C2684336020c03648500C6d9F/info.json +++ b/blockchains/smartchain/assets/0xA7f552078dcC247C2684336020c03648500C6d9F/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/Ellipsisfi" + "name": "x", + "url": "https://x.com/Ellipsisfi" }, { "name": "coingecko", diff --git a/blockchains/smartchain/assets/0xA81AfE5D5390e5B645d46097B5D2975f04A47EbB/info.json b/blockchains/smartchain/assets/0xA81AfE5D5390e5B645d46097B5D2975f04A47EbB/info.json new file mode 100644 index 0000000000000..31a7fe1d5af48 --- /dev/null +++ b/blockchains/smartchain/assets/0xA81AfE5D5390e5B645d46097B5D2975f04A47EbB/info.json @@ -0,0 +1,14 @@ +{ + "name": "OG Mubarak", + "type": "BEP20", + "symbol": "Mansa", + "decimals": 18, + "website": "https://four.meme/token/0xA81AfE5D5390e5B645d46097B5D2975f04A47EbB", + "description": "OG Mubarak", + "explorer": "https://bscscan.com/token/0xA81AfE5D5390e5B645d46097B5D2975f04A47EbB", + "status": "active", + "id": "0xA81AfE5D5390e5B645d46097B5D2975f04A47EbB", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA81AfE5D5390e5B645d46097B5D2975f04A47EbB/logo.png b/blockchains/smartchain/assets/0xA81AfE5D5390e5B645d46097B5D2975f04A47EbB/logo.png new file mode 100644 index 0000000000000..8e5c65fdf9a4d Binary files /dev/null and b/blockchains/smartchain/assets/0xA81AfE5D5390e5B645d46097B5D2975f04A47EbB/logo.png differ diff --git a/blockchains/smartchain/assets/0xA82D8d81557f6Da6dd4DDAD9f09a417530cfd4e7/info.json b/blockchains/smartchain/assets/0xA82D8d81557f6Da6dd4DDAD9f09a417530cfd4e7/info.json new file mode 100644 index 0000000000000..584c5b7316d30 --- /dev/null +++ b/blockchains/smartchain/assets/0xA82D8d81557f6Da6dd4DDAD9f09a417530cfd4e7/info.json @@ -0,0 +1,29 @@ +{ + "name": "Blombard", + "type": "BEP20", + "symbol": "BLM", + "decimals": 18, + "website": "https://token.blombard.com/", + "description": "Blombard is an AI-powered platform dedicated to elevating cryptocurrency trading with advanced market analysis and financial services. It offers tools for smarter decision-making and lending solutions, all powered by the Binance Smart Chain (BSC).", + "explorer": "https://bscscan.com/token/0xa82d8d81557f6da6dd4ddad9f09a417530cfd4e7", + "status": "active", + "id": "0xA82D8d81557f6Da6dd4DDAD9f09a417530cfd4e7", + "links": [ + { + "name": "x", + "url": "https://x.com/Blombard_com" + }, + { + "name": "telegram", + "url": "https://t.me/blombard_talk" + }, + { + "name": "whitepaper", + "url": "https://token.blombard.com/docs/whitepaper.pdf" + } + ], + "tags": [ + "dapp", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA82D8d81557f6Da6dd4DDAD9f09a417530cfd4e7/logo.png b/blockchains/smartchain/assets/0xA82D8d81557f6Da6dd4DDAD9f09a417530cfd4e7/logo.png new file mode 100644 index 0000000000000..60ee0af82ce2d Binary files /dev/null and b/blockchains/smartchain/assets/0xA82D8d81557f6Da6dd4DDAD9f09a417530cfd4e7/logo.png differ diff --git a/blockchains/smartchain/assets/0xA84d7A90bDbBe6dE3FFFe9B7F549366320EF90D3/info.json b/blockchains/smartchain/assets/0xA84d7A90bDbBe6dE3FFFe9B7F549366320EF90D3/info.json index 7374dfbcf3854..00707a9a7a012 100644 --- a/blockchains/smartchain/assets/0xA84d7A90bDbBe6dE3FFFe9B7F549366320EF90D3/info.json +++ b/blockchains/smartchain/assets/0xA84d7A90bDbBe6dE3FFFe9B7F549366320EF90D3/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/zenfiai" + "name": "x", + "url": "https://x.com/zenfiai" }, { "name": "github", @@ -25,4 +25,4 @@ "url": "https://t.me/ZenFiAI" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA8c2B8eec3d368C0253ad3dae65a5F2BBB89c929/info.json b/blockchains/smartchain/assets/0xA8c2B8eec3d368C0253ad3dae65a5F2BBB89c929/info.json index ef3b34178d2da..5d2f38ef2fe40 100644 --- a/blockchains/smartchain/assets/0xA8c2B8eec3d368C0253ad3dae65a5F2BBB89c929/info.json +++ b/blockchains/smartchain/assets/0xA8c2B8eec3d368C0253ad3dae65a5F2BBB89c929/info.json @@ -1,5 +1,5 @@ { - "name": "CertiK Token", + "name": "Shentu", "website": "https://certik.foundation", "description": "A Cross-chain Protocol with Security Scoring and Decentralized Reimbursements for Building Secure dApps and Blockchains.", "explorer": "https://bscscan.com/token/0xA8c2B8eec3d368C0253ad3dae65a5F2BBB89c929", diff --git a/blockchains/smartchain/assets/0xA8fcEe78B782eF97380326E90DF80D72f025f020/info.json b/blockchains/smartchain/assets/0xA8fcEe78B782eF97380326E90DF80D72f025f020/info.json index 5eacec1b0495f..657747df6e11d 100644 --- a/blockchains/smartchain/assets/0xA8fcEe78B782eF97380326E90DF80D72f025f020/info.json +++ b/blockchains/smartchain/assets/0xA8fcEe78B782eF97380326E90DF80D72f025f020/info.json @@ -10,8 +10,8 @@ "id": "0xA8fcEe78B782eF97380326E90DF80D72f025f020", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TacoCatCrew" + "name": "x", + "url": "https://x.com/TacoCatCrew" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xA9165b3167CEa2dD839f29cFc9D3Fa3979198888/info.json b/blockchains/smartchain/assets/0xA9165b3167CEa2dD839f29cFc9D3Fa3979198888/info.json new file mode 100644 index 0000000000000..7eceb3f6f18af --- /dev/null +++ b/blockchains/smartchain/assets/0xA9165b3167CEa2dD839f29cFc9D3Fa3979198888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether USD Bridged ZED20", + "type": "BEP20", + "symbol": "FAKE USDT.ᴢ", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xA9165b3167CEa2dD839f29cFc9D3Fa3979198888", + "explorer": "https://bscscan.com/token/0xA9165b3167CEa2dD839f29cFc9D3Fa3979198888", + "status": "spam", + "id": "0xA9165b3167CEa2dD839f29cFc9D3Fa3979198888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA99600043E84181A9d4137aD1cefB8cfE9138674/info.json b/blockchains/smartchain/assets/0xA99600043E84181A9d4137aD1cefB8cfE9138674/info.json new file mode 100644 index 0000000000000..d280fa4cb176e --- /dev/null +++ b/blockchains/smartchain/assets/0xA99600043E84181A9d4137aD1cefB8cfE9138674/info.json @@ -0,0 +1,24 @@ +{ + "name": "FX Stock Token", + "type": "BEP20", + "symbol": " FXST", + "decimals": 6, + "website": "https://fxst.finance/", + "description": "Fx$tock token is a world-class leading token in the most revenue-generating industry, The first is the Gaming zone & the 2nd is the Trading zone. Both industries create trillions of dollars in volume in a day throughout the world. Fx$tock token provides a next-gen technology platform for young entrepreneurs, they will be making online money without any limits and no boundaries.", + "explorer": "https://bscscan.com/token/0xA99600043E84181A9d4137aD1cefB8cfE9138674", + "status": "active", + "id": "0xA99600043E84181A9d4137aD1cefB8cfE9138674", + "links": [ + { + "name": "telegram", + "url": "https://t.me/fxstcommunity" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fxg/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA99600043E84181A9d4137aD1cefB8cfE9138674/logo.png b/blockchains/smartchain/assets/0xA99600043E84181A9d4137aD1cefB8cfE9138674/logo.png new file mode 100644 index 0000000000000..975275ff9ac53 Binary files /dev/null and b/blockchains/smartchain/assets/0xA99600043E84181A9d4137aD1cefB8cfE9138674/logo.png differ diff --git a/blockchains/smartchain/assets/0xA9F059F63cd432B65A723EEeFf69304FD780070c/info.json b/blockchains/smartchain/assets/0xA9F059F63cd432B65A723EEeFf69304FD780070c/info.json index 9fdd7d6bf1cfe..76402686aa023 100644 --- a/blockchains/smartchain/assets/0xA9F059F63cd432B65A723EEeFf69304FD780070c/info.json +++ b/blockchains/smartchain/assets/0xA9F059F63cd432B65A723EEeFf69304FD780070c/info.json @@ -10,8 +10,8 @@ "id": "0xA9F059F63cd432B65A723EEeFf69304FD780070c", "links": [ { - "name": "twitter", - "url": "https://twitter.com/sanjiinu_tw/" + "name": "x", + "url": "https://x.com/sanjiinu_tw/" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xA9eE28C80f960B889dFbd1902055218cBa016F75/info.json b/blockchains/smartchain/assets/0xA9eE28C80f960B889dFbd1902055218cBa016F75/info.json new file mode 100644 index 0000000000000..00f41b0308bcc --- /dev/null +++ b/blockchains/smartchain/assets/0xA9eE28C80f960B889dFbd1902055218cBa016F75/info.json @@ -0,0 +1,24 @@ +{ + "name": "NVIDIA (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "NVDAon is the Ondo Tokenized version of NVIDIA, giving tokenholders economic exposure similar to holding NVDA and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xa9ee28c80f960b889dfbd1902055218cba016f75", + "type": "BEP20", + "symbol": "NVDAon", + "decimals": 18, + "status": "active", + "id": "0xA9eE28C80f960B889dFbd1902055218cBa016F75", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nvidia-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA9eE28C80f960B889dFbd1902055218cBa016F75/logo.png b/blockchains/smartchain/assets/0xA9eE28C80f960B889dFbd1902055218cBa016F75/logo.png new file mode 100644 index 0000000000000..75ae30e66fa33 Binary files /dev/null and b/blockchains/smartchain/assets/0xA9eE28C80f960B889dFbd1902055218cBa016F75/logo.png differ diff --git a/blockchains/smartchain/assets/0xAA28cB97D7f7E172f54deE950743886D2d65447d/info.json b/blockchains/smartchain/assets/0xAA28cB97D7f7E172f54deE950743886D2d65447d/info.json new file mode 100644 index 0000000000000..87a35e165d283 --- /dev/null +++ b/blockchains/smartchain/assets/0xAA28cB97D7f7E172f54deE950743886D2d65447d/info.json @@ -0,0 +1,15 @@ +{ + "name": "S&P Small Cap xStock", + "type": "BEP20", + "symbol": "IJRx", + "decimals": 18, + "description": "S&P Small Cap xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0xAA28cB97D7f7E172f54deE950743886D2d65447d", + "status": "active", + "id": "0xAA28cB97D7f7E172f54deE950743886D2d65447d", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAA28cB97D7f7E172f54deE950743886D2d65447d/logo.png b/blockchains/smartchain/assets/0xAA28cB97D7f7E172f54deE950743886D2d65447d/logo.png new file mode 100644 index 0000000000000..d5c48229001bc Binary files /dev/null and b/blockchains/smartchain/assets/0xAA28cB97D7f7E172f54deE950743886D2d65447d/logo.png differ diff --git a/blockchains/smartchain/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/info.json b/blockchains/smartchain/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/info.json index b74fcfa0de189..bbfe42ffb3eb4 100644 --- a/blockchains/smartchain/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/info.json +++ b/blockchains/smartchain/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "QANX", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa", "links": [ { @@ -18,8 +18,8 @@ "url": "https://t.me/QANplatform_ANN" }, { - "name": "twitter", - "url": "https://twitter.com/qanplatform" + "name": "x", + "url": "https://x.com/qanplatform" }, { "name": "discord", diff --git a/blockchains/smartchain/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/info.json b/blockchains/smartchain/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/info.json new file mode 100644 index 0000000000000..53fef6eb84fe1 --- /dev/null +++ b/blockchains/smartchain/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/info.json @@ -0,0 +1,57 @@ +{ + "name": "QANplatform", + "website": "https://qanplatform.com", + "description": "QANX is the utility token of QAN Platform.", + "explorer": "https://bscscan.com/token/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA", + "type": "BEP20", + "symbol": "QANX", + "decimals": 18, + "status": "active", + "id": "0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA", + "links": [ + { + "name": "telegram", + "url": "https://t.me/QANplatform" + }, + { + "name": "telegram_news", + "url": "https://t.me/QANplatform_ANN" + }, + { + "name": "x", + "url": "https://x.com/qanplatform" + }, + { + "name": "discord", + "url": "https://discord.com/invite/bABaQeTPN7" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/qanplatform" + }, + { + "name": "medium", + "url": "https://medium.com/qanplatform" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/QANplatform" + }, + { + "name": "whitepaper", + "url": "https://assets.qanplatform.com/whitepaper.pdf" + }, + { + "name": "source_code", + "url": "https://github.com/QANplatform" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/qanplatform/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/qanplatform" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/logo.png b/blockchains/smartchain/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/logo.png similarity index 100% rename from blockchains/smartchain/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/logo.png rename to blockchains/smartchain/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/logo.png diff --git a/blockchains/smartchain/assets/0xAB15B79880f11cFfb58dB25eC2bc39d28c4d80d2/info.json b/blockchains/smartchain/assets/0xAB15B79880f11cFfb58dB25eC2bc39d28c4d80d2/info.json index db563f63127c2..b4ac045a1c1bd 100644 --- a/blockchains/smartchain/assets/0xAB15B79880f11cFfb58dB25eC2bc39d28c4d80d2/info.json +++ b/blockchains/smartchain/assets/0xAB15B79880f11cFfb58dB25eC2bc39d28c4d80d2/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/StarMon-protocol/" }, { - "name": "twitter", - "url": "https://twitter.com/StarMonGame" + "name": "x", + "url": "https://x.com/StarMonGame" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xAC51066d7bEC65Dc4589368da368b212745d63E8/info.json b/blockchains/smartchain/assets/0xAC51066d7bEC65Dc4589368da368b212745d63E8/info.json index bbba4809674bc..ac7504790d60d 100644 --- a/blockchains/smartchain/assets/0xAC51066d7bEC65Dc4589368da368b212745d63E8/info.json +++ b/blockchains/smartchain/assets/0xAC51066d7bEC65Dc4589368da368b212745d63E8/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/MyNeighborAlice" }, { - "name": "twitter", - "url": "https://twitter.com/MyNeighborAlice/" + "name": "x", + "url": "https://x.com/MyNeighborAlice/" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0xAC68931B666E086E9de380CFDb0Fb5704a35dc2D/info.json b/blockchains/smartchain/assets/0xAC68931B666E086E9de380CFDb0Fb5704a35dc2D/info.json index 763c552e4014f..703f6da0bfb77 100644 --- a/blockchains/smartchain/assets/0xAC68931B666E086E9de380CFDb0Fb5704a35dc2D/info.json +++ b/blockchains/smartchain/assets/0xAC68931B666E086E9de380CFDb0Fb5704a35dc2D/info.json @@ -10,8 +10,8 @@ "id": "0xAC68931B666E086E9de380CFDb0Fb5704a35dc2D", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BnbTiger" + "name": "x", + "url": "https://x.com/BnbTiger" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xAC68931B666E086E9de380CFDb0Fb5704a35dc2D/logo.png b/blockchains/smartchain/assets/0xAC68931B666E086E9de380CFDb0Fb5704a35dc2D/logo.png index 613cf86d83cae..1bb98fdeb48c0 100644 Binary files a/blockchains/smartchain/assets/0xAC68931B666E086E9de380CFDb0Fb5704a35dc2D/logo.png and b/blockchains/smartchain/assets/0xAC68931B666E086E9de380CFDb0Fb5704a35dc2D/logo.png differ diff --git a/blockchains/smartchain/assets/0xAD0A3901eFf23b9143985bCB42F0171a112A2fD3/info.json b/blockchains/smartchain/assets/0xAD0A3901eFf23b9143985bCB42F0171a112A2fD3/info.json index 578e67ac1adfd..6941c86fb35a5 100644 --- a/blockchains/smartchain/assets/0xAD0A3901eFf23b9143985bCB42F0171a112A2fD3/info.json +++ b/blockchains/smartchain/assets/0xAD0A3901eFf23b9143985bCB42F0171a112A2fD3/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/MinerBloxOffi" + "name": "x", + "url": "https://x.com/MinerBloxOffi" }, { "name": "telegram", @@ -33,4 +33,4 @@ "url": "https://coingecko.com/coins/minerblox" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAD20C467180aCC243e42D41649712052b64F4444/info.json b/blockchains/smartchain/assets/0xAD20C467180aCC243e42D41649712052b64F4444/info.json new file mode 100644 index 0000000000000..9853d8b38120f --- /dev/null +++ b/blockchains/smartchain/assets/0xAD20C467180aCC243e42D41649712052b64F4444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDKG", + "type": "BEP20", + "symbol": "FAKE USDKG", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xAD20C467180aCC243e42D41649712052b64F4444", + "explorer": "https://bscscan.com/token/0xAD20C467180aCC243e42D41649712052b64F4444", + "status": "spam", + "id": "0xAD20C467180aCC243e42D41649712052b64F4444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAD29AbB318791D579433D831ed122aFeAf29dcfe/info.json b/blockchains/smartchain/assets/0xAD29AbB318791D579433D831ed122aFeAf29dcfe/info.json index 09c712d1df457..86f29127fc01e 100644 --- a/blockchains/smartchain/assets/0xAD29AbB318791D579433D831ed122aFeAf29dcfe/info.json +++ b/blockchains/smartchain/assets/0xAD29AbB318791D579433D831ed122aFeAf29dcfe/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/FantomFDN" + "name": "x", + "url": "https://x.com/FantomFDN" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18/info.json b/blockchains/smartchain/assets/0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18/info.json index 8214ba685ae8a..d6096b50feb83 100644 --- a/blockchains/smartchain/assets/0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18/info.json +++ b/blockchains/smartchain/assets/0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18/info.json @@ -1,5 +1,5 @@ { - "name": "BNB pegged Band Protocol Token", + "name": "Band", "website": "https://bandprotocol.com", "description": "Band Protocol is a cross-chain data oracle platform that aggregates and connects real-world data and APIs to smart contracts.", "explorer": "https://bscscan.com/token/0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18", diff --git a/blockchains/smartchain/assets/0xAD86d0E9764ba90DDD68747D64BFfBd79879a238/info.json b/blockchains/smartchain/assets/0xAD86d0E9764ba90DDD68747D64BFfBd79879a238/info.json index 6cdfeb17a116d..0c2e830ac191a 100644 --- a/blockchains/smartchain/assets/0xAD86d0E9764ba90DDD68747D64BFfBd79879a238/info.json +++ b/blockchains/smartchain/assets/0xAD86d0E9764ba90DDD68747D64BFfBd79879a238/info.json @@ -10,8 +10,8 @@ "id": "0xAD86d0E9764ba90DDD68747D64BFfBd79879a238", "links": [ { - "name": "twitter", - "url": "https://twitter.com/paid_network" + "name": "x", + "url": "https://x.com/paid_network" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0xADCFC6bf853a0a8ad7f9Ff4244140D10cf01363C/info.json b/blockchains/smartchain/assets/0xADCFC6bf853a0a8ad7f9Ff4244140D10cf01363C/info.json index 40d5e61f99576..f3474c004fff9 100644 --- a/blockchains/smartchain/assets/0xADCFC6bf853a0a8ad7f9Ff4244140D10cf01363C/info.json +++ b/blockchains/smartchain/assets/0xADCFC6bf853a0a8ad7f9Ff4244140D10cf01363C/info.json @@ -10,8 +10,8 @@ "id": "0xADCFC6bf853a0a8ad7f9Ff4244140D10cf01363C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TrustPad" + "name": "x", + "url": "https://x.com/TrustPad" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884/info.json b/blockchains/smartchain/assets/0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884/info.json index d35c1534257c6..bf655ca0062cb 100644 --- a/blockchains/smartchain/assets/0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884/info.json +++ b/blockchains/smartchain/assets/0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "GMR", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884", "links": [ { @@ -14,8 +14,8 @@ "url": "https://github.com/gmr-center/gmr-token-v2" }, { - "name": "twitter", - "url": "https://twitter.com/GMRCenter" + "name": "x", + "url": "https://x.com/GMRCenter" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E/info.json b/blockchains/smartchain/assets/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E/info.json new file mode 100644 index 0000000000000..4eec81214cc46 --- /dev/null +++ b/blockchains/smartchain/assets/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E/info.json @@ -0,0 +1,24 @@ +{ + "name": "MicroStrategy tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "MicroStrategy tokenized stock (xStock) (MSTRX) is a cryptocurrency and operates on the Solana platform. MicroStrategy tokenized stock (xStock) has a current supply of 19,499.52630505. The last known price of MicroStrategy tokenized stock (xStock) is 329.14757255 USD and is down -0.35 over the last 24 hours. It is currently trading on 28 active market(s) with $3,268,417.42 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/microstrategy-xstock.", + "explorer": "https://bscscan.com/token/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E", + "type": "BEP20", + "symbol": "MSTRX", + "decimals": 18, + "status": "active", + "id": "0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/microstrategy-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E/logo.png b/blockchains/smartchain/assets/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E/logo.png new file mode 100644 index 0000000000000..b6fb457e98469 Binary files /dev/null and b/blockchains/smartchain/assets/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E/logo.png differ diff --git a/blockchains/smartchain/assets/0xAE4cA3272792d8499575AEFacdc299F0cBdc9270/info.json b/blockchains/smartchain/assets/0xAE4cA3272792d8499575AEFacdc299F0cBdc9270/info.json index d9d46aa3779ed..d47ac390c3e3a 100644 --- a/blockchains/smartchain/assets/0xAE4cA3272792d8499575AEFacdc299F0cBdc9270/info.json +++ b/blockchains/smartchain/assets/0xAE4cA3272792d8499575AEFacdc299F0cBdc9270/info.json @@ -14,12 +14,12 @@ "url": "https://t.me/joinchat/NWpAwc8hKOFkZWI1" }, { - "name": "twitter", - "url": "https://twitter.com/somdejcoin" + "name": "x", + "url": "https://x.com/somdejcoin" } ], "tags": [ "defi", "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAE788F80F2756A86aa2F410C651F2aF83639B95b/info.json b/blockchains/smartchain/assets/0xAE788F80F2756A86aa2F410C651F2aF83639B95b/info.json index a1640dfa4d86e..066d9ddea4906 100644 --- a/blockchains/smartchain/assets/0xAE788F80F2756A86aa2F410C651F2aF83639B95b/info.json +++ b/blockchains/smartchain/assets/0xAE788F80F2756A86aa2F410C651F2aF83639B95b/info.json @@ -10,8 +10,8 @@ "id": "0xAE788F80F2756A86aa2F410C651F2aF83639B95b", "links": [ { - "name": "twitter", - "url": "https://twitter.com/genso_meta" + "name": "x", + "url": "https://x.com/genso_meta" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xAEf0a177c8c329CBC8508292Bb7E06c00786BBfC/info.json b/blockchains/smartchain/assets/0xAEf0a177c8c329CBC8508292Bb7E06c00786BBfC/info.json index 77bc6e5bfd7d1..f24956facae3f 100644 --- a/blockchains/smartchain/assets/0xAEf0a177c8c329CBC8508292Bb7E06c00786BBfC/info.json +++ b/blockchains/smartchain/assets/0xAEf0a177c8c329CBC8508292Bb7E06c00786BBfC/info.json @@ -10,8 +10,8 @@ "id": "0xAEf0a177c8c329CBC8508292Bb7E06c00786BBfC", "links": [ { - "name": "twitter", - "url": "https://twitter.com/puli_token" + "name": "x", + "url": "https://x.com/puli_token" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xAF072F109A2C173D822a4fe9af311A1B18F83d19/info.json b/blockchains/smartchain/assets/0xAF072F109A2C173D822a4fe9af311A1B18F83d19/info.json new file mode 100644 index 0000000000000..c5e92d4709139 --- /dev/null +++ b/blockchains/smartchain/assets/0xAF072F109A2C173D822a4fe9af311A1B18F83d19/info.json @@ -0,0 +1,24 @@ +{ + "name": "Thermo Fisher tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Thermo Fisher xStock (TMOx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. TMOx tracks the price of Thermo Fisher Scientific Inc. (the underlying). TMOx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Thermo Fisher Scientific Inc., whilst maintaining the benefits of blockchain technology. Thermo Fisher is a global leader in serving science, with a mission to enable customers to make the world healthier, cleaner, and safer.", + "explorer": "https://bscscan.com/token/0xAF072F109A2C173D822a4fe9af311A1B18F83d19", + "type": "BEP20", + "symbol": "TMOX", + "decimals": 18, + "status": "active", + "id": "0xAF072F109A2C173D822a4fe9af311A1B18F83d19", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/thermo-fisher-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAF072F109A2C173D822a4fe9af311A1B18F83d19/logo.png b/blockchains/smartchain/assets/0xAF072F109A2C173D822a4fe9af311A1B18F83d19/logo.png new file mode 100644 index 0000000000000..472c951a6b913 Binary files /dev/null and b/blockchains/smartchain/assets/0xAF072F109A2C173D822a4fe9af311A1B18F83d19/logo.png differ diff --git a/blockchains/smartchain/assets/0xAF12FEF32dd26947d97Cd4eA4C5b4ac9541b7777/info.json b/blockchains/smartchain/assets/0xAF12FEF32dd26947d97Cd4eA4C5b4ac9541b7777/info.json new file mode 100644 index 0000000000000..7aa811494d46f --- /dev/null +++ b/blockchains/smartchain/assets/0xAF12FEF32dd26947d97Cd4eA4C5b4ac9541b7777/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT", + "type": "BEP20", + "symbol": "HONEYPOT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xAF12FEF32dd26947d97Cd4eA4C5b4ac9541b7777", + "explorer": "https://bscscan.com/token/0xAF12FEF32dd26947d97Cd4eA4C5b4ac9541b7777", + "status": "spam", + "id": "0xAF12FEF32dd26947d97Cd4eA4C5b4ac9541b7777" +} diff --git a/blockchains/smartchain/assets/0xAF3287cAe99C982586c07401C0d911Bf7De6CD82/info.json b/blockchains/smartchain/assets/0xAF3287cAe99C982586c07401C0d911Bf7De6CD82/info.json new file mode 100644 index 0000000000000..61fb17e4cbc08 --- /dev/null +++ b/blockchains/smartchain/assets/0xAF3287cAe99C982586c07401C0d911Bf7De6CD82/info.json @@ -0,0 +1,17 @@ +{ + "name": "H2O DAO", + "type": "BEP20", + "symbol": "H2O", + "decimals": 18, + "website": "https://h2o.homes/home", + "description": "A comprehensive platform featuring a task-based learning system, up-to-date news aggregation, and a community welfare system that includes token airdrops and whitelisting opportunities.", + "explorer": "https://bscscan.com/token/0xAF3287cAe99C982586c07401C0d911Bf7De6CD82", + "status": "active", + "id": "0xAF3287cAe99C982586c07401C0d911Bf7De6CD82", + "links": [ + { + "name": "x", + "url": "https://x.com/H2O_Homes" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAF3287cAe99C982586c07401C0d911Bf7De6CD82/logo.png b/blockchains/smartchain/assets/0xAF3287cAe99C982586c07401C0d911Bf7De6CD82/logo.png new file mode 100644 index 0000000000000..132610798635a Binary files /dev/null and b/blockchains/smartchain/assets/0xAF3287cAe99C982586c07401C0d911Bf7De6CD82/logo.png differ diff --git a/blockchains/smartchain/assets/0xAa46e2c21B7763a73DB48e9b318899253E66e20C/info.json b/blockchains/smartchain/assets/0xAa46e2c21B7763a73DB48e9b318899253E66e20C/info.json index 7f5d29c1d6efc..7d1e579cdd785 100644 --- a/blockchains/smartchain/assets/0xAa46e2c21B7763a73DB48e9b318899253E66e20C/info.json +++ b/blockchains/smartchain/assets/0xAa46e2c21B7763a73DB48e9b318899253E66e20C/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/CreamFi" }, { - "name": "twitter", - "url": "https://twitter.com/CreamdotFinance" + "name": "x", + "url": "https://x.com/CreamdotFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xAa5e67BD3558BC3207E617FdC9bDF2316F8b7777/info.json b/blockchains/smartchain/assets/0xAa5e67BD3558BC3207E617FdC9bDF2316F8b7777/info.json new file mode 100644 index 0000000000000..ae3a3ea74ba12 --- /dev/null +++ b/blockchains/smartchain/assets/0xAa5e67BD3558BC3207E617FdC9bDF2316F8b7777/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE JETMAX", + "type": "BEP20", + "symbol": "FAKE JET", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xAa5e67BD3558BC3207E617FdC9bDF2316F8b7777", + "explorer": "https://bscscan.com/token/0xAa5e67BD3558BC3207E617FdC9bDF2316F8b7777", + "status": "spam", + "id": "0xAa5e67BD3558BC3207E617FdC9bDF2316F8b7777" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAa817f5FE9F6385AA903a7FA994B4b403ab2b862/info.json b/blockchains/smartchain/assets/0xAa817f5FE9F6385AA903a7FA994B4b403ab2b862/info.json new file mode 100644 index 0000000000000..6df997a00ecfd --- /dev/null +++ b/blockchains/smartchain/assets/0xAa817f5FE9F6385AA903a7FA994B4b403ab2b862/info.json @@ -0,0 +1,31 @@ +{ + "name": "BondX", + "type": "BEP20", + "symbol": "BNX", + "decimals": 18, + "description": "BONDX is a blockchain-powered asset exchange platform designed to unify various digital and real-world assets into a single ecosystem. By leveraging the $BONDX token on the Binance Smart Chain (BEP-20), BONDX enables users to convert, store, and transact assets seamlessly.", + "website": "https://www.bond-x.xyz/", + "explorer": "https://bscscan.com/token/0xaa817f5fe9f6385aa903a7fa994b4b403ab2b862", + "id": "0xAa817f5FE9F6385AA903a7FA994B4b403ab2b862", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Official_bondX" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bondx/" + }, + + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bondx" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAa817f5FE9F6385AA903a7FA994B4b403ab2b862/logo.png b/blockchains/smartchain/assets/0xAa817f5FE9F6385AA903a7FA994B4b403ab2b862/logo.png new file mode 100644 index 0000000000000..4b3146c79d894 Binary files /dev/null and b/blockchains/smartchain/assets/0xAa817f5FE9F6385AA903a7FA994B4b403ab2b862/logo.png differ diff --git a/blockchains/smartchain/assets/0xAaA9cF4E9488F5eEF064B8CFac70f5FD857669dc/info.json b/blockchains/smartchain/assets/0xAaA9cF4E9488F5eEF064B8CFac70f5FD857669dc/info.json new file mode 100644 index 0000000000000..2b7611d928499 --- /dev/null +++ b/blockchains/smartchain/assets/0xAaA9cF4E9488F5eEF064B8CFac70f5FD857669dc/info.json @@ -0,0 +1,20 @@ +{ + "name": "Lumentum Holdings Inc. xStock", + "type": "BEP20", + "symbol": "LITEx", + "decimals": 18, + "description": "Lumentum Holdings Inc. xStock (LITEx) is a tracker certificate issued as a freely transferable token on selected blockchains. LITEx tracks the price of Lumentum Holdings Inc.. LITEx is designed to give eligible investors regulatory-compliant access to the stock price of Lumentum Holdings Inc., whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0xAaA9cF4E9488F5eEF064B8CFac70f5FD857669dc", + "status": "active", + "id": "0xAaA9cF4E9488F5eEF064B8CFac70f5FD857669dc", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAaA9cF4E9488F5eEF064B8CFac70f5FD857669dc/logo.png b/blockchains/smartchain/assets/0xAaA9cF4E9488F5eEF064B8CFac70f5FD857669dc/logo.png new file mode 100644 index 0000000000000..c8a4bc1f960bd Binary files /dev/null and b/blockchains/smartchain/assets/0xAaA9cF4E9488F5eEF064B8CFac70f5FD857669dc/logo.png differ diff --git a/blockchains/smartchain/assets/0xAaBb6066809a1B25e34Da5D130A84A15b47FDCD0/info.json b/blockchains/smartchain/assets/0xAaBb6066809a1B25e34Da5D130A84A15b47FDCD0/info.json new file mode 100644 index 0000000000000..27341b3ef87b6 --- /dev/null +++ b/blockchains/smartchain/assets/0xAaBb6066809a1B25e34Da5D130A84A15b47FDCD0/info.json @@ -0,0 +1,19 @@ +{ + "name": "4", + "type": "BEP20", + "symbol": "4", + "decimals": 18, + "description": "https://x.com/blockRambo/status/1892099794988040512", + "website": "https://gmgn.ai/bsc/token/2rOJVwau_0xaabb6066809a1b25e34da5d130a84a15b47fdcd0", + "explorer": "https://bscscan.com/token/0xaabb6066809a1b25e34da5d130a84a15b47fdcd0", + "id": "0xAaBb6066809a1B25e34Da5D130A84A15b47FDCD0", + "status": "active", + "links": [ + + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAaBb6066809a1B25e34Da5D130A84A15b47FDCD0/logo.png b/blockchains/smartchain/assets/0xAaBb6066809a1B25e34Da5D130A84A15b47FDCD0/logo.png new file mode 100644 index 0000000000000..68ea3afe65885 Binary files /dev/null and b/blockchains/smartchain/assets/0xAaBb6066809a1B25e34Da5D130A84A15b47FDCD0/logo.png differ diff --git a/blockchains/smartchain/assets/0xAaD87f47CDEa777FAF87e7602E91e3a6AFbe4D57/info.json b/blockchains/smartchain/assets/0xAaD87f47CDEa777FAF87e7602E91e3a6AFbe4D57/info.json index 4dedacf220aaa..88c4b72e152e5 100644 --- a/blockchains/smartchain/assets/0xAaD87f47CDEa777FAF87e7602E91e3a6AFbe4D57/info.json +++ b/blockchains/smartchain/assets/0xAaD87f47CDEa777FAF87e7602E91e3a6AFbe4D57/info.json @@ -6,6 +6,6 @@ "description": "CreamPYE was built with one purpose in mind. Build the best decentralized technology available to the world and make an equal impact on humanity at the same time.", "website": "https://www.creampye.com", "explorer": "https://bscscan.com/token/0xaad87f47cdea777faf87e7602e91e3a6afbe4d57", - "status": "active", + "status": "abandoned", "id": "0xAaD87f47CDEa777FAF87e7602E91e3a6AFbe4D57" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAaD87f47CDEa777FAF87e7602E91e3a6AFbe4D57/logo.png b/blockchains/smartchain/assets/0xAaD87f47CDEa777FAF87e7602E91e3a6AFbe4D57/logo.png deleted file mode 100644 index 6f93d46e2acf4..0000000000000 Binary files a/blockchains/smartchain/assets/0xAaD87f47CDEa777FAF87e7602E91e3a6AFbe4D57/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xAaaAfDC2E08371B956Be515B3f3Ff735AB9c9D74/info.json b/blockchains/smartchain/assets/0xAaaAfDC2E08371B956Be515B3f3Ff735AB9c9D74/info.json index d39f86a8eaed8..793fc11a80e0a 100644 --- a/blockchains/smartchain/assets/0xAaaAfDC2E08371B956Be515B3f3Ff735AB9c9D74/info.json +++ b/blockchains/smartchain/assets/0xAaaAfDC2E08371B956Be515B3f3Ff735AB9c9D74/info.json @@ -18,8 +18,8 @@ "url": "https://github.com/azbit-com/" }, { - "name": "twitter", - "url": "https://twitter.com/azbit_news" + "name": "x", + "url": "https://x.com/azbit_news" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0xAab09b5cd1694d12c8c980306f5E2f5d65b00E1C/info.json b/blockchains/smartchain/assets/0xAab09b5cd1694d12c8c980306f5E2f5d65b00E1C/info.json new file mode 100644 index 0000000000000..8fe141425d8fe --- /dev/null +++ b/blockchains/smartchain/assets/0xAab09b5cd1694d12c8c980306f5E2f5d65b00E1C/info.json @@ -0,0 +1,25 @@ +{ + "name": "Revomon", + "type": "BEP20", + "symbol": "REVO", + "decimals": 18, + "website": "https://revomon.io/", + "description": "Revomon is an exciting online RPG that combines an immersive virtual reality experience with groundbreaking NFT blockchain technology.", + "explorer": "https://bscscan.com/token/0xAab09b5cd1694d12c8c980306f5E2f5d65b00E1C", + "status": "active", + "id": "0xAab09b5cd1694d12c8c980306f5E2f5d65b00E1C", + "links": [ + { + "name": "x", + "url": "https://x.com/RevomonVR" + }, + { + "name": "telegram", + "url": "https://t.me/revomon" + }, + { + "name": "telegram_news", + "url": "https://t.me/revomonnews" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x155040625D7ae3e9caDA9a73E3E44f76D3Ed1409/logo.png b/blockchains/smartchain/assets/0xAab09b5cd1694d12c8c980306f5E2f5d65b00E1C/logo.png similarity index 100% rename from blockchains/smartchain/assets/0x155040625D7ae3e9caDA9a73E3E44f76D3Ed1409/logo.png rename to blockchains/smartchain/assets/0xAab09b5cd1694d12c8c980306f5E2f5d65b00E1C/logo.png diff --git a/blockchains/smartchain/assets/0xAb14952d2902343fde7c65D7dC095e5c8bE86920/info.json b/blockchains/smartchain/assets/0xAb14952d2902343fde7c65D7dC095e5c8bE86920/info.json index 663af803ab225..95f447b6d0c8d 100644 --- a/blockchains/smartchain/assets/0xAb14952d2902343fde7c65D7dC095e5c8bE86920/info.json +++ b/blockchains/smartchain/assets/0xAb14952d2902343fde7c65D7dC095e5c8bE86920/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/GOMA-Finance" }, { - "name": "twitter", - "url": "https://twitter.com/GomaShibaToken" + "name": "x", + "url": "https://x.com/GomaShibaToken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xAbc69f2025bDb12efcdB8fd048d240fFf943ca82/info.json b/blockchains/smartchain/assets/0xAbc69f2025bDb12efcdB8fd048d240fFf943ca82/info.json index 62f6ee7dfe226..163c6c3a27ace 100644 --- a/blockchains/smartchain/assets/0xAbc69f2025bDb12efcdB8fd048d240fFf943ca82/info.json +++ b/blockchains/smartchain/assets/0xAbc69f2025bDb12efcdB8fd048d240fFf943ca82/info.json @@ -10,8 +10,8 @@ "id": "0xAbc69f2025bDb12efcdB8fd048d240fFf943ca82", "links": [ { - "name": "twitter", - "url": "https://twitter.com/vanitytoken" + "name": "x", + "url": "https://x.com/vanitytoken" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xAc0C8dA4A4748d8d821A0973d00b157aA78C473D/info.json b/blockchains/smartchain/assets/0xAc0C8dA4A4748d8d821A0973d00b157aA78C473D/info.json index 23060cc24dc93..bfd82c3cb87a2 100644 --- a/blockchains/smartchain/assets/0xAc0C8dA4A4748d8d821A0973d00b157aA78C473D/info.json +++ b/blockchains/smartchain/assets/0xAc0C8dA4A4748d8d821A0973d00b157aA78C473D/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/YFI-ONE" }, { - "name": "twitter", - "url": "https://twitter.com/yfione" + "name": "x", + "url": "https://x.com/yfione" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xAc45475ABE6F9516e233a824aA013933B61bbB5C/info.json b/blockchains/smartchain/assets/0xAc45475ABE6F9516e233a824aA013933B61bbB5C/info.json new file mode 100644 index 0000000000000..d707669870b1b --- /dev/null +++ b/blockchains/smartchain/assets/0xAc45475ABE6F9516e233a824aA013933B61bbB5C/info.json @@ -0,0 +1,38 @@ +{ + "name": "BridgeAI", + "type": "BEP20", + "symbol": "BRG", + "decimals": 18, + "website": "https://bridge.link", + "description": "Bridge AI is an advanced blockchain-powered ecosystem that integrates artificial intelligence to enhance data accessibility, automation, and transparency. The project leverages AI-driven solutions to facilitate smart contract execution, decentralized data processing, and seamless interactions within Web3 applications.", + "explorer": "https://bscscan.com/token/0xAc45475ABE6F9516e233a824aA013933B61bbB5C", + "status": "active", + "id": "0xAc45475ABE6F9516e233a824aA013933B61bbB5C", + "links": [ + { + "name": "x", + "url": "https://x.com/bridge_oracle" + }, + { + "name": "github", + "url": "https://github.com/BridgeOracle" + }, + { + "name": "telegram", + "url": "https://t.me/BridgeOracle" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bridge-oracle/#About" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/en/bridge-ai" + }, + { + "name": "discord", + "url": "https://discord.com/invite/WcGQnQpK23" + } + ], + "tags": ["defi"] +} diff --git a/blockchains/smartchain/assets/0xAc45475ABE6F9516e233a824aA013933B61bbB5C/logo.png b/blockchains/smartchain/assets/0xAc45475ABE6F9516e233a824aA013933B61bbB5C/logo.png new file mode 100644 index 0000000000000..f942bab405a7b Binary files /dev/null and b/blockchains/smartchain/assets/0xAc45475ABE6F9516e233a824aA013933B61bbB5C/logo.png differ diff --git a/blockchains/smartchain/assets/0xAcABD3f9b8F76fFd2724604185Fa5AFA5dF25aC6/info.json b/blockchains/smartchain/assets/0xAcABD3f9b8F76fFd2724604185Fa5AFA5dF25aC6/info.json index ffdb1a3073ea5..b8c1153e32ad7 100644 --- a/blockchains/smartchain/assets/0xAcABD3f9b8F76fFd2724604185Fa5AFA5dF25aC6/info.json +++ b/blockchains/smartchain/assets/0xAcABD3f9b8F76fFd2724604185Fa5AFA5dF25aC6/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/monsterslayerfinance/bdollar-smartcontracts" }, { - "name": "twitter", - "url": "https://twitter.com/monsterslayerfi" + "name": "x", + "url": "https://x.com/monsterslayerfi" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xAcFF4E9E9110971E1A4D8f013F5f97dd8fB4F430/info.json b/blockchains/smartchain/assets/0xAcFF4E9E9110971E1A4D8f013F5f97dd8fB4F430/info.json index 5f7282b6fe9b2..b7012004cad61 100644 --- a/blockchains/smartchain/assets/0xAcFF4E9E9110971E1A4D8f013F5f97dd8fB4F430/info.json +++ b/blockchains/smartchain/assets/0xAcFF4E9E9110971E1A4D8f013F5f97dd8fB4F430/info.json @@ -10,8 +10,8 @@ "id": "0xAcFF4E9E9110971E1A4D8f013F5f97dd8fB4F430", "links": [ { - "name": "twitter", - "url": "https://twitter.com/kingforeverbsc" + "name": "x", + "url": "https://x.com/kingforeverbsc" }, { "name": "coingecko", @@ -25,4 +25,4 @@ "tags": [ "memes" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAcFF4E9E9110971E1A4D8f013F5f97dd8fB4F430/logo.png b/blockchains/smartchain/assets/0xAcFF4E9E9110971E1A4D8f013F5f97dd8fB4F430/logo.png index 49c0501d27100..1ccab279af60b 100644 Binary files a/blockchains/smartchain/assets/0xAcFF4E9E9110971E1A4D8f013F5f97dd8fB4F430/logo.png and b/blockchains/smartchain/assets/0xAcFF4E9E9110971E1A4D8f013F5f97dd8fB4F430/logo.png differ diff --git a/blockchains/smartchain/assets/0xAdBAF88B39D37Dc68775eD1541F1bf83A5A45feB/info.json b/blockchains/smartchain/assets/0xAdBAF88B39D37Dc68775eD1541F1bf83A5A45feB/info.json index a1d90bcf2e4c3..eb681c4577636 100644 --- a/blockchains/smartchain/assets/0xAdBAF88B39D37Dc68775eD1541F1bf83A5A45feB/info.json +++ b/blockchains/smartchain/assets/0xAdBAF88B39D37Dc68775eD1541F1bf83A5A45feB/info.json @@ -1,5 +1,5 @@ { - "name": "Binance-Peg COTI Token", + "name": "COTI", "website": "https://coti.io/", "description": "COTI is an enterprise-grade fintech platform that enables cross-chain interoperability and is built on its own DAG-based chain. It supports extreme scalability, low transaction costs and is supplemented with payment-specific requirements in the form of COTI Pay, a holistic digital payment solution.", "explorer": "https://bscscan.com/token/0xadbaf88b39d37dc68775ed1541f1bf83a5a45feb", @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/COTInetwork" + "name": "x", + "url": "https://x.com/COTInetwork" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xAe2DF9F730c54400934c06a17462c41C08a06ED8/info.json b/blockchains/smartchain/assets/0xAe2DF9F730c54400934c06a17462c41C08a06ED8/info.json index e5cca639618ac..eaf1d718dfbd4 100644 --- a/blockchains/smartchain/assets/0xAe2DF9F730c54400934c06a17462c41C08a06ED8/info.json +++ b/blockchains/smartchain/assets/0xAe2DF9F730c54400934c06a17462c41C08a06ED8/info.json @@ -10,8 +10,8 @@ "id": "0xAe2DF9F730c54400934c06a17462c41C08a06ED8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/dogebonk_token" + "name": "x", + "url": "https://x.com/dogebonk_token" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0xAeBdbcc7d6821E3924EE5167b4138a43c19Cf681/info.json b/blockchains/smartchain/assets/0xAeBdbcc7d6821E3924EE5167b4138a43c19Cf681/info.json index 063fdd0b9698a..1ff2359bbe2ba 100644 --- a/blockchains/smartchain/assets/0xAeBdbcc7d6821E3924EE5167b4138a43c19Cf681/info.json +++ b/blockchains/smartchain/assets/0xAeBdbcc7d6821E3924EE5167b4138a43c19Cf681/info.json @@ -10,8 +10,8 @@ "id": "0xAeBdbcc7d6821E3924EE5167b4138a43c19Cf681", "links": [ { - "name": "twitter", - "url": "https://twitter.com/OFFICIAL_HODLX" + "name": "x", + "url": "https://x.com/OFFICIAL_HODLX" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xAed5985afC12aA09d87F55B4b1e6bC3B8f7B0208/info.json b/blockchains/smartchain/assets/0xAed5985afC12aA09d87F55B4b1e6bC3B8f7B0208/info.json new file mode 100644 index 0000000000000..c5d7ffcc00ea6 --- /dev/null +++ b/blockchains/smartchain/assets/0xAed5985afC12aA09d87F55B4b1e6bC3B8f7B0208/info.json @@ -0,0 +1,24 @@ +{ + "name": "Chipotle (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "CMGon is the Ondo Tokenized version of Chipotle, giving tokenholders economic exposure similar to holding CMG and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xaed5985afc12aa09d87f55b4b1e6bc3b8f7b0208", + "type": "BEP20", + "symbol": "CMGon", + "decimals": 18, + "status": "active", + "id": "0xAed5985afC12aA09d87F55B4b1e6bC3B8f7B0208", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chipotle-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAed5985afC12aA09d87F55B4b1e6bC3B8f7B0208/logo.png b/blockchains/smartchain/assets/0xAed5985afC12aA09d87F55B4b1e6bC3B8f7B0208/logo.png new file mode 100644 index 0000000000000..9b38323e8a3d2 Binary files /dev/null and b/blockchains/smartchain/assets/0xAed5985afC12aA09d87F55B4b1e6bC3B8f7B0208/logo.png differ diff --git a/blockchains/smartchain/assets/0xAf41054C1487b0e5E2B9250C0332eCBCe6CE9d71/info.json b/blockchains/smartchain/assets/0xAf41054C1487b0e5E2B9250C0332eCBCe6CE9d71/info.json index 344c5d2a07b67..ebc7c6f73b2a2 100644 --- a/blockchains/smartchain/assets/0xAf41054C1487b0e5E2B9250C0332eCBCe6CE9d71/info.json +++ b/blockchains/smartchain/assets/0xAf41054C1487b0e5E2B9250C0332eCBCe6CE9d71/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/Ellipsisfi" + "name": "x", + "url": "https://x.com/Ellipsisfi" }, { "name": "coingecko", diff --git a/blockchains/smartchain/assets/0xAf48B7e315a52518CfBF7d96C455D9dFAD94cB48/info.json b/blockchains/smartchain/assets/0xAf48B7e315a52518CfBF7d96C455D9dFAD94cB48/info.json new file mode 100644 index 0000000000000..6beb8d55ff4f1 --- /dev/null +++ b/blockchains/smartchain/assets/0xAf48B7e315a52518CfBF7d96C455D9dFAD94cB48/info.json @@ -0,0 +1,17 @@ +{ + "name": "IOST", + "type": "BEP20", + "symbol": "IOST", + "decimals": 18, + "website": "https://iost.io/", + "description": "The RWA L2 onBNB Chain", + "explorer": "https://bscscan.com/token/0xAf48B7e315a52518CfBF7d96C455D9dFAD94cB48", + "status": "active", + "id": "0xAf48B7e315a52518CfBF7d96C455D9dFAD94cB48", + "links": [ + { + "name": "x", + "url": "https://x.com/IOST_Official" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAf48B7e315a52518CfBF7d96C455D9dFAD94cB48/logo.png b/blockchains/smartchain/assets/0xAf48B7e315a52518CfBF7d96C455D9dFAD94cB48/logo.png new file mode 100644 index 0000000000000..416c5e0afc425 Binary files /dev/null and b/blockchains/smartchain/assets/0xAf48B7e315a52518CfBF7d96C455D9dFAD94cB48/logo.png differ diff --git a/blockchains/smartchain/assets/0xAf7BfA6240745Fd41D1ED4b5fADE9DCAF369bA6c/info.json b/blockchains/smartchain/assets/0xAf7BfA6240745Fd41D1ED4b5fADE9DCAF369bA6c/info.json index 885638ff2b812..f86486d39579b 100644 --- a/blockchains/smartchain/assets/0xAf7BfA6240745Fd41D1ED4b5fADE9DCAF369bA6c/info.json +++ b/blockchains/smartchain/assets/0xAf7BfA6240745Fd41D1ED4b5fADE9DCAF369bA6c/info.json @@ -10,8 +10,8 @@ "id": "0xAf7BfA6240745Fd41D1ED4b5fADE9DCAF369bA6c", "links": [ { - "name": "twitter", - "url": "https://twitter.com/maticverse" + "name": "x", + "url": "https://x.com/maticverse" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xAf98e6c2D3b520F4e9b3D7ea22ad7AeFFFDbc2fd/info.json b/blockchains/smartchain/assets/0xAf98e6c2D3b520F4e9b3D7ea22ad7AeFFFDbc2fd/info.json index 6dab3547f7e91..a55a906f8fc51 100644 --- a/blockchains/smartchain/assets/0xAf98e6c2D3b520F4e9b3D7ea22ad7AeFFFDbc2fd/info.json +++ b/blockchains/smartchain/assets/0xAf98e6c2D3b520F4e9b3D7ea22ad7AeFFFDbc2fd/info.json @@ -10,8 +10,8 @@ "id": "0xAf98e6c2D3b520F4e9b3D7ea22ad7AeFFFDbc2fd", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ratboybsc" + "name": "x", + "url": "https://x.com/ratboybsc" }, { "name": "telegram", @@ -29,4 +29,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB068bD15AEDf75Be6c2c6d0Be10b286a32087120/info.json b/blockchains/smartchain/assets/0xB068bD15AEDf75Be6c2c6d0Be10b286a32087120/info.json index 3b4c24d3abf22..95f333735a312 100644 --- a/blockchains/smartchain/assets/0xB068bD15AEDf75Be6c2c6d0Be10b286a32087120/info.json +++ b/blockchains/smartchain/assets/0xB068bD15AEDf75Be6c2c6d0Be10b286a32087120/info.json @@ -10,8 +10,8 @@ "id": "0xB068bD15AEDf75Be6c2c6d0Be10b286a32087120", "links": [ { - "name": "twitter", - "url": "https://twitter.com/NoidToken" + "name": "x", + "url": "https://x.com/NoidToken" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xB0752Aa50B089EE6eA9aCD51373207Fa460E87bb/info.json b/blockchains/smartchain/assets/0xB0752Aa50B089EE6eA9aCD51373207Fa460E87bb/info.json new file mode 100644 index 0000000000000..ab6c32fde4f31 --- /dev/null +++ b/blockchains/smartchain/assets/0xB0752Aa50B089EE6eA9aCD51373207Fa460E87bb/info.json @@ -0,0 +1,28 @@ +{ + "name": "Oscar Health (Ondo Tokenized)", + "type": "BEP20", + "symbol": "OSCRon", + "decimals": 18, + "description": "OSCRon is the Ondo Tokenized version of Oscar Health, giving tokenholders economic exposure similar to holding OSCR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xB0752Aa50B089EE6eA9aCD51373207Fa460E87bb", + "status": "active", + "id": "0xB0752Aa50B089EE6eA9aCD51373207Fa460E87bb", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/oscar-health-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/oscar-health-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB0752Aa50B089EE6eA9aCD51373207Fa460E87bb/logo.png b/blockchains/smartchain/assets/0xB0752Aa50B089EE6eA9aCD51373207Fa460E87bb/logo.png new file mode 100644 index 0000000000000..940143ce0caa8 Binary files /dev/null and b/blockchains/smartchain/assets/0xB0752Aa50B089EE6eA9aCD51373207Fa460E87bb/logo.png differ diff --git a/blockchains/smartchain/assets/0xB0B924C4a31b7d4581a7F78F57ceE1E65736Be1D/info.json b/blockchains/smartchain/assets/0xB0B924C4a31b7d4581a7F78F57ceE1E65736Be1D/info.json index 976297d79429d..55b23909b5bf7 100644 --- a/blockchains/smartchain/assets/0xB0B924C4a31b7d4581a7F78F57ceE1E65736Be1D/info.json +++ b/blockchains/smartchain/assets/0xB0B924C4a31b7d4581a7F78F57ceE1E65736Be1D/info.json @@ -10,8 +10,8 @@ "id": "0xB0B924C4a31b7d4581a7F78F57ceE1E65736Be1D", "links": [ { - "name": "twitter", - "url": "https://twitter.com/the_happy_coin" + "name": "x", + "url": "https://x.com/the_happy_coin" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xB0D502E938ed5f4df2E681fE6E419ff29631d62b/info.json b/blockchains/smartchain/assets/0xB0D502E938ed5f4df2E681fE6E419ff29631d62b/info.json index 2cc737ca06692..f1918c4838704 100644 --- a/blockchains/smartchain/assets/0xB0D502E938ed5f4df2E681fE6E419ff29631d62b/info.json +++ b/blockchains/smartchain/assets/0xB0D502E938ed5f4df2E681fE6E419ff29631d62b/info.json @@ -1,5 +1,5 @@ { - "name": "StargateToken", + "name": "Stargate Finance", "website": "https://stargate.finance", "description": "Stargate is a fully composable liquidity transport protocol that lives at the heart of Omnichain DeFi.", "explorer": "https://bscscan.com/token/0xb0d502e938ed5f4df2e681fe6e419ff29631d62b", diff --git a/blockchains/smartchain/assets/0xB0a1DE764A033A76f28E821fBe402EDBFEe937dB/info.json b/blockchains/smartchain/assets/0xB0a1DE764A033A76f28E821fBe402EDBFEe937dB/info.json index 184ad1d80f56e..e88799fa1871c 100644 --- a/blockchains/smartchain/assets/0xB0a1DE764A033A76f28E821fBe402EDBFEe937dB/info.json +++ b/blockchains/smartchain/assets/0xB0a1DE764A033A76f28E821fBe402EDBFEe937dB/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/ditto-money/" }, { - "name": "twitter", - "url": "https://twitter.com/dittomoney_" + "name": "x", + "url": "https://x.com/dittomoney_" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB0b84D294e0C75A6abe60171b70edEb2EFd14A1B/info.json b/blockchains/smartchain/assets/0xB0b84D294e0C75A6abe60171b70edEb2EFd14A1B/info.json new file mode 100644 index 0000000000000..934f4160d441c --- /dev/null +++ b/blockchains/smartchain/assets/0xB0b84D294e0C75A6abe60171b70edEb2EFd14A1B/info.json @@ -0,0 +1,21 @@ +{ + "name": "Lista Staked BNB", + "type": "BEP20", + "symbol": "slisBNB", + "decimals": 18, + "website": "https://lista.org/", + "description": "Lista DAO is a permissionless Collateralized Debt Position and Liquid Staking Protocol on the BNB Smart Chain.", + "explorer": "https://bscscan.com/token/0xB0b84D294e0C75A6abe60171b70edEb2EFd14A1B", + "status": "active", + "id": "0xB0b84D294e0C75A6abe60171b70edEb2EFd14A1B", + "links": [ + { + "name": "x", + "url": "https://x.com/LISTA_DAO" + }, + { + "name": "github", + "url": "https://github.com/lista-dao" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB0b84D294e0C75A6abe60171b70edEb2EFd14A1B/logo.png b/blockchains/smartchain/assets/0xB0b84D294e0C75A6abe60171b70edEb2EFd14A1B/logo.png new file mode 100644 index 0000000000000..4e0fba0c01a06 Binary files /dev/null and b/blockchains/smartchain/assets/0xB0b84D294e0C75A6abe60171b70edEb2EFd14A1B/logo.png differ diff --git a/blockchains/smartchain/assets/0xB0e1fc65C1a741b4662B813eB787d369b8614Af1/info.json b/blockchains/smartchain/assets/0xB0e1fc65C1a741b4662B813eB787d369b8614Af1/info.json index d7d2c08ccea3b..0d5bd106937be 100644 --- a/blockchains/smartchain/assets/0xB0e1fc65C1a741b4662B813eB787d369b8614Af1/info.json +++ b/blockchains/smartchain/assets/0xB0e1fc65C1a741b4662B813eB787d369b8614Af1/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/impossiblefinance" }, { - "name": "twitter", - "url": "https://twitter.com/impossiblefi" + "name": "x", + "url": "https://x.com/impossiblefi" }, { "name": "blog", diff --git a/blockchains/smartchain/assets/0xB1CeD2e320E3f4C8e3511B1DC59203303493F382/info.json b/blockchains/smartchain/assets/0xB1CeD2e320E3f4C8e3511B1DC59203303493F382/info.json index aa3ea3a60fe91..0598d94b7ba2b 100644 --- a/blockchains/smartchain/assets/0xB1CeD2e320E3f4C8e3511B1DC59203303493F382/info.json +++ b/blockchains/smartchain/assets/0xB1CeD2e320E3f4C8e3511B1DC59203303493F382/info.json @@ -1,11 +1,44 @@ { "name": "Moonlight Token", - "symbol": "MOONLIGHT", "type": "BEP20", + "symbol": "MOONLIGHT", "decimals": 9, - "description": "Moonlight is a comprehensive set of analytical tools for the BSC network.", - "website": "https://moonlighttoken.com/", - "explorer": "https://bscscan.com/token/0xb1ced2e320e3f4c8e3511b1dc59203303493f382", + "website": "https://bubblemaps.io", + "description": "Hold Moonlight Token to get premium access to Bubblemaps", + "explorer": "https://bscscan.com/token/0xB1CeD2e320E3f4C8e3511B1DC59203303493F382", "status": "active", - "id": "0xB1CeD2e320E3f4C8e3511B1DC59203303493F382" + "id": "0xB1CeD2e320E3f4C8e3511B1DC59203303493F382", + "links": [ + { + "name": "x", + "url": "https://x.com/bubblemaps" + }, + { + "name": "telegram", + "url": "https://t.me/bubblemaps" + }, + { + "name": "telegram_news", + "url": "https://t.me/BubblemapsNEWS" + }, + { + "name": "medium", + "url": "https://bubblemaps.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/@Bubblemaps" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/moonlight-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/moonlight-token" + } + ], + "tags": [ + "dapp" + ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB1CeD2e320E3f4C8e3511B1DC59203303493F382/logo.png b/blockchains/smartchain/assets/0xB1CeD2e320E3f4C8e3511B1DC59203303493F382/logo.png index 3232b249ffb7c..31ef60f9e3fec 100644 Binary files a/blockchains/smartchain/assets/0xB1CeD2e320E3f4C8e3511B1DC59203303493F382/logo.png and b/blockchains/smartchain/assets/0xB1CeD2e320E3f4C8e3511B1DC59203303493F382/logo.png differ diff --git a/blockchains/smartchain/assets/0xB20568B5DE8AbE668062710D785D292f686541e6/info.json b/blockchains/smartchain/assets/0xB20568B5DE8AbE668062710D785D292f686541e6/info.json new file mode 100644 index 0000000000000..bf99d37be72e1 --- /dev/null +++ b/blockchains/smartchain/assets/0xB20568B5DE8AbE668062710D785D292f686541e6/info.json @@ -0,0 +1,14 @@ +{ + "name": "Moongate Fun", + "type": "BEP20", + "symbol": "MGTAI", + "decimals": 18, + "website": "https://www.moongate.fun/", + "description": "Streamline the token and AI agent deployment process on BSC, making it accessible to anyone interested in building or growing their blockchain project.", + "explorer": "https://bscscan.com/token/0xB20568B5DE8AbE668062710D785D292f686541e6", + "status": "active", + "id": "0xB20568B5DE8AbE668062710D785D292f686541e6", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB20568B5DE8AbE668062710D785D292f686541e6/logo.png b/blockchains/smartchain/assets/0xB20568B5DE8AbE668062710D785D292f686541e6/logo.png new file mode 100644 index 0000000000000..cd6189a81b6a3 Binary files /dev/null and b/blockchains/smartchain/assets/0xB20568B5DE8AbE668062710D785D292f686541e6/logo.png differ diff --git a/blockchains/smartchain/assets/0xB248a295732e0225acd3337607cc01068e3b9c10/info.json b/blockchains/smartchain/assets/0xB248a295732e0225acd3337607cc01068e3b9c10/info.json index 830dac2549265..5e1a47fb4ca72 100644 --- a/blockchains/smartchain/assets/0xB248a295732e0225acd3337607cc01068e3b9c10/info.json +++ b/blockchains/smartchain/assets/0xB248a295732e0225acd3337607cc01068e3b9c10/info.json @@ -11,8 +11,8 @@ "id": "0xB248a295732e0225acd3337607cc01068e3b9c10", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VenusProtocol" + "name": "x", + "url": "https://x.com/VenusProtocol" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xB265cBa9bd6e34FA412bD8b4C1514C902C0e7E7d/info.json b/blockchains/smartchain/assets/0xB265cBa9bd6e34FA412bD8b4C1514C902C0e7E7d/info.json new file mode 100644 index 0000000000000..ef324ef7c964d --- /dev/null +++ b/blockchains/smartchain/assets/0xB265cBa9bd6e34FA412bD8b4C1514C902C0e7E7d/info.json @@ -0,0 +1,17 @@ +{ + "name": "Giggle Academy", + "symbol": "Giggle", + "website": "https://gigglesacademy.io", + "description": "A BSC meme inspired by CZ's latest venture, Giggle Academy. Make basic education, accessible, addictive and adaptive, to the kids who don't have access to them today, all around the world, for free", + "explorer": "https://bscscan.com/token/0xb265cba9bd6e34fa412bd8b4c1514c902c0e7e7d", + "decimals": 18, + "status": "active", + "id": "0xB265cBa9bd6e34FA412bD8b4C1514C902C0e7E7d", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/GiggleCTO" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB265cBa9bd6e34FA412bD8b4C1514C902C0e7E7d/logo.png b/blockchains/smartchain/assets/0xB265cBa9bd6e34FA412bD8b4C1514C902C0e7E7d/logo.png new file mode 100644 index 0000000000000..41ef489e885a2 Binary files /dev/null and b/blockchains/smartchain/assets/0xB265cBa9bd6e34FA412bD8b4C1514C902C0e7E7d/logo.png differ diff --git a/blockchains/smartchain/assets/0xB2BD0749DBE21f623d9BABa856D3B0f0e1BFEc9C/info.json b/blockchains/smartchain/assets/0xB2BD0749DBE21f623d9BABa856D3B0f0e1BFEc9C/info.json index 2794ca582fe4e..1dcb9e524eb60 100644 --- a/blockchains/smartchain/assets/0xB2BD0749DBE21f623d9BABa856D3B0f0e1BFEc9C/info.json +++ b/blockchains/smartchain/assets/0xB2BD0749DBE21f623d9BABa856D3B0f0e1BFEc9C/info.json @@ -1,5 +1,5 @@ { - "name": "Dusk Network", + "name": "Dusk", "symbol": "DUSK", "type": "BEP20", "decimals": 18, diff --git a/blockchains/smartchain/assets/0xB31FD05CAF496CEf34C945667E90dd89C20E0D09/info.json b/blockchains/smartchain/assets/0xB31FD05CAF496CEf34C945667E90dd89C20E0D09/info.json index f8c24c5b0d704..df6f9ecfc8205 100644 --- a/blockchains/smartchain/assets/0xB31FD05CAF496CEf34C945667E90dd89C20E0D09/info.json +++ b/blockchains/smartchain/assets/0xB31FD05CAF496CEf34C945667E90dd89C20E0D09/info.json @@ -10,8 +10,8 @@ "id": "0xB31FD05CAF496CEf34C945667E90dd89C20E0D09", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MagicCubeDeFi" + "name": "x", + "url": "https://x.com/MagicCubeDeFi" }, { "name": "telegram", @@ -25,4 +25,4 @@ "tags": [ "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB3225aC90B741f762BecA76dEA1eaD278Ef26A96/info.json b/blockchains/smartchain/assets/0xB3225aC90B741f762BecA76dEA1eaD278Ef26A96/info.json index 41f7178d90b48..5d6615d7c3601 100644 --- a/blockchains/smartchain/assets/0xB3225aC90B741f762BecA76dEA1eaD278Ef26A96/info.json +++ b/blockchains/smartchain/assets/0xB3225aC90B741f762BecA76dEA1eaD278Ef26A96/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/LonelyFans/LonelyFans/" }, { - "name": "twitter", - "url": "https://twitter.com/LOFcrypto" + "name": "x", + "url": "https://x.com/LOFcrypto" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5/info.json b/blockchains/smartchain/assets/0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5/info.json new file mode 100644 index 0000000000000..361effadcde40 --- /dev/null +++ b/blockchains/smartchain/assets/0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5/info.json @@ -0,0 +1,11 @@ +{ + "name": "RYOSHI TOKEN", + "type": "BEP20", + "symbol": "RYOSHI", + "decimals": 18, + "website": "https://www.ryoshitoken.com", + "description": "Ryoshi is a deflationary, community driven meme token that came to take over the meme game. With 10% burn from every transaction that decreases the supply and increases the demand you can kick back and watch your RYOSHI value grow.", + "explorer": "https://bscscan.com/token/0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5", + "status": "active", + "id": "0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5/logo.png b/blockchains/smartchain/assets/0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5/logo.png new file mode 100644 index 0000000000000..20119148a5b05 Binary files /dev/null and b/blockchains/smartchain/assets/0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5/logo.png differ diff --git a/blockchains/smartchain/assets/0xB35a9EAB5D25282f4e668798B629a9294e9A47aa/info.json b/blockchains/smartchain/assets/0xB35a9EAB5D25282f4e668798B629a9294e9A47aa/info.json new file mode 100644 index 0000000000000..0b8ce46e991bd --- /dev/null +++ b/blockchains/smartchain/assets/0xB35a9EAB5D25282f4e668798B629a9294e9A47aa/info.json @@ -0,0 +1,28 @@ +{ + "name": "ON Semiconductor (Ondo Tokenized)", + "type": "BEP20", + "symbol": "ONon", + "decimals": 18, + "description": "ONon is the Ondo Tokenized version of ON Semiconductor, giving tokenholders economic exposure similar to holding ON and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xB35a9EAB5D25282f4e668798B629a9294e9A47aa", + "status": "active", + "id": "0xB35a9EAB5D25282f4e668798B629a9294e9A47aa", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/on-semiconductor-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/on-semiconductor-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB35a9EAB5D25282f4e668798B629a9294e9A47aa/logo.png b/blockchains/smartchain/assets/0xB35a9EAB5D25282f4e668798B629a9294e9A47aa/logo.png new file mode 100644 index 0000000000000..7692d40a5279f Binary files /dev/null and b/blockchains/smartchain/assets/0xB35a9EAB5D25282f4e668798B629a9294e9A47aa/logo.png differ diff --git a/blockchains/smartchain/assets/0xB3b8326C75893632945cA6E4f4Bd76E7a7c7D5Ac/info.json b/blockchains/smartchain/assets/0xB3b8326C75893632945cA6E4f4Bd76E7a7c7D5Ac/info.json index 21f513ecd5f52..a2215af67a5a9 100644 --- a/blockchains/smartchain/assets/0xB3b8326C75893632945cA6E4f4Bd76E7a7c7D5Ac/info.json +++ b/blockchains/smartchain/assets/0xB3b8326C75893632945cA6E4f4Bd76E7a7c7D5Ac/info.json @@ -10,8 +10,8 @@ "id": "0xB3b8326C75893632945cA6E4f4Bd76E7a7c7D5Ac", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BSC_Girl?s=09" + "name": "x", + "url": "https://x.com/BSC_Girl?s=09" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xB46aCB1f8D0fF6369C2f00146897aeA1dFCf2414/info.json b/blockchains/smartchain/assets/0xB46aCB1f8D0fF6369C2f00146897aeA1dFCf2414/info.json index 598ca21022f14..c2b40cddaf16e 100644 --- a/blockchains/smartchain/assets/0xB46aCB1f8D0fF6369C2f00146897aeA1dFCf2414/info.json +++ b/blockchains/smartchain/assets/0xB46aCB1f8D0fF6369C2f00146897aeA1dFCf2414/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/orbitlaunchbsc" }, { - "name": "twitter", - "url": "https://twitter.com/Orbit_crypto_" + "name": "x", + "url": "https://x.com/Orbit_crypto_" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB4AA0CD9FACeB466DB69b825DC666EdAF3293d28/info.json b/blockchains/smartchain/assets/0xB4AA0CD9FACeB466DB69b825DC666EdAF3293d28/info.json index 05577fa08714f..b9cf13e0440ff 100644 --- a/blockchains/smartchain/assets/0xB4AA0CD9FACeB466DB69b825DC666EdAF3293d28/info.json +++ b/blockchains/smartchain/assets/0xB4AA0CD9FACeB466DB69b825DC666EdAF3293d28/info.json @@ -10,8 +10,8 @@ "id": "0xB4AA0CD9FACeB466DB69b825DC666EdAF3293d28", "links": [ { - "name": "twitter", - "url": "https://twitter.com/_DAMNCool_" + "name": "x", + "url": "https://x.com/_DAMNCool_" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0xB547607EAE3B10d94B211DA84A3B51BFa545774d/info.json b/blockchains/smartchain/assets/0xB547607EAE3B10d94B211DA84A3B51BFa545774d/info.json index 33cb0555d9203..520cf01e7a38e 100644 --- a/blockchains/smartchain/assets/0xB547607EAE3B10d94B211DA84A3B51BFa545774d/info.json +++ b/blockchains/smartchain/assets/0xB547607EAE3B10d94B211DA84A3B51BFa545774d/info.json @@ -10,8 +10,8 @@ "id": "0xB547607EAE3B10d94B211DA84A3B51BFa545774d", "links": [ { - "name": "twitter", - "url": "https://twitter.com/dogeraca" + "name": "x", + "url": "https://x.com/dogeraca" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xB583961E033Dfe0FfF161952f7BA21c411b6103d/info.json b/blockchains/smartchain/assets/0xB583961E033Dfe0FfF161952f7BA21c411b6103d/info.json index 51a235ff95140..888c547e6b1fe 100644 --- a/blockchains/smartchain/assets/0xB583961E033Dfe0FfF161952f7BA21c411b6103d/info.json +++ b/blockchains/smartchain/assets/0xB583961E033Dfe0FfF161952f7BA21c411b6103d/info.json @@ -10,8 +10,8 @@ "id": "0xB583961E033Dfe0FfF161952f7BA21c411b6103d", "links": [ { - "name": "twitter", - "url": "https://twitter.com/you_youwho" + "name": "x", + "url": "https://x.com/you_youwho" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xB71aC215670aA57c8ac382547D0a0f0A962a73E5/info.json b/blockchains/smartchain/assets/0xB71aC215670aA57c8ac382547D0a0f0A962a73E5/info.json new file mode 100644 index 0000000000000..f8cf12fc0484f --- /dev/null +++ b/blockchains/smartchain/assets/0xB71aC215670aA57c8ac382547D0a0f0A962a73E5/info.json @@ -0,0 +1,29 @@ +{ + "name": "Movo Smart Chain", + "website": "https://movo.uk", + "description": "MOVO Smart Chain is a high-performance blockchain enabling 50,000+ TPS with fees under $0.0001. Designed for DeFi, NFTs, and enterprise use, it ensures scalability, decentralization, and seamless BEP20 integration for developers and investors.", + "explorer": "https://bscscan.com/token/0xB71aC215670aA57c8ac382547D0a0f0A962a73E5", + "id": "0xB71aC215670aA57c8ac382547D0a0f0A962a73E5", + "symbol": "MOVO", + "type": "BEP20", + "decimals": 18, + "status": "active", + "tags": [ + "defi", + "nft" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/movosmartchain" + }, + { + "name": "x", + "url": "https://x.com/movo_coin" + }, + { + "name": "whitepaper", + "url": "https://movo.uk/whitepaper.pdf" + } + ] +} diff --git a/blockchains/smartchain/assets/0xB71aC215670aA57c8ac382547D0a0f0A962a73E5/logo.png b/blockchains/smartchain/assets/0xB71aC215670aA57c8ac382547D0a0f0A962a73E5/logo.png new file mode 100644 index 0000000000000..3dfcaa6266b94 Binary files /dev/null and b/blockchains/smartchain/assets/0xB71aC215670aA57c8ac382547D0a0f0A962a73E5/logo.png differ diff --git a/blockchains/smartchain/assets/0xB72a20C7B8BD666f80AC053B0f4de20a787080F5/info.json b/blockchains/smartchain/assets/0xB72a20C7B8BD666f80AC053B0f4de20a787080F5/info.json new file mode 100644 index 0000000000000..36dc9bd4ba274 --- /dev/null +++ b/blockchains/smartchain/assets/0xB72a20C7B8BD666f80AC053B0f4de20a787080F5/info.json @@ -0,0 +1,21 @@ +{ + "name": "Media Licensing Token", + "type": "BEP20", + "symbol": "MLT", + "decimals": 18, + "website": "https://www.milc.global/", + "description": "MILC - Media Industry Licensing Content. Global decentralized marketplace for professional content trading, licensing and production.", + "explorer": "https://bscscan.com/token/0xB72a20C7B8BD666f80AC053B0f4de20a787080F5", + "status": "active", + "id": "0xB72a20C7B8BD666f80AC053B0f4de20a787080F5", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/milc-platform/" + }, + { + "name": "x", + "url": "https://x.com/MILCplatform" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB72a20C7B8BD666f80AC053B0f4de20a787080F5/logo.png b/blockchains/smartchain/assets/0xB72a20C7B8BD666f80AC053B0f4de20a787080F5/logo.png new file mode 100644 index 0000000000000..a92c4598cf4fc Binary files /dev/null and b/blockchains/smartchain/assets/0xB72a20C7B8BD666f80AC053B0f4de20a787080F5/logo.png differ diff --git a/blockchains/smartchain/assets/0xB7DAcf54a54bFea818F21472d3E71a89287841A7/info.json b/blockchains/smartchain/assets/0xB7DAcf54a54bFea818F21472d3E71a89287841A7/info.json index 7ee2c867d4cf3..5e55eaab888d4 100644 --- a/blockchains/smartchain/assets/0xB7DAcf54a54bFea818F21472d3E71a89287841A7/info.json +++ b/blockchains/smartchain/assets/0xB7DAcf54a54bFea818F21472d3E71a89287841A7/info.json @@ -17,12 +17,12 @@ "url": "https://t.me/wealthsecretsofficial" }, { - "name": "twitter", - "url": "https://twitter.com/WSecrets_WSC?s=09" + "name": "x", + "url": "https://x.com/WSecrets_WSC?s=09" }, { "name": "coinmarketcap", "url": "https://coinmarketcap.com/ru/currencies/wealthsecrets/" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB7Dba4C673beDB174DC3Ff7Ec65d17C863d39b16/info.json b/blockchains/smartchain/assets/0xB7Dba4C673beDB174DC3Ff7Ec65d17C863d39b16/info.json index e718538416eb7..4bfa7c2d8c636 100644 --- a/blockchains/smartchain/assets/0xB7Dba4C673beDB174DC3Ff7Ec65d17C863d39b16/info.json +++ b/blockchains/smartchain/assets/0xB7Dba4C673beDB174DC3Ff7Ec65d17C863d39b16/info.json @@ -10,8 +10,8 @@ "id": "0xB7Dba4C673beDB174DC3Ff7Ec65d17C863d39b16", "links": [ { - "name": "twitter", - "url": "https://twitter.com/FatCakeToken" + "name": "x", + "url": "https://x.com/FatCakeToken" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xB7E2713CF55cf4b469B5a8421Ae6Fc0ED18F1467/info.json b/blockchains/smartchain/assets/0xB7E2713CF55cf4b469B5a8421Ae6Fc0ED18F1467/info.json new file mode 100644 index 0000000000000..df2df06fbb7fa --- /dev/null +++ b/blockchains/smartchain/assets/0xB7E2713CF55cf4b469B5a8421Ae6Fc0ED18F1467/info.json @@ -0,0 +1,52 @@ +{ + "name": "Openleverage Token V2", + "website": "https://openleverage.finance/", + "description": "OpenLeverage is a permissionless money market protocol enabling decentralized lending, borrowing, and margin trading across a diverse range of cryptocurrency pairs, fostering an accessible and efficient DeFi ecosystem.", + "explorer": "https://bscscan.com/token/0xB7E2713CF55cf4b469B5a8421Ae6Fc0ED18F1467", + "type": "BEP20", + "symbol": "OLE", + "decimals": 18, + "status": "active", + "id": "0xB7E2713CF55cf4b469B5a8421Ae6Fc0ED18F1467", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/OpenLeverage" + }, + { + "name": "discord", + "url": "https://discord.com/invite/openleverage" + }, + { + "name": "medium", + "url": "https://openleverage.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/openleverage/" + }, + { + "name": "docs", + "url": "https://docs.openleverage.finance/main/" + }, + { + "name": "telegram", + "url": "https://t.me/openleverageofficial" + }, + { + "name": "github", + "url": "https://github.com/OpenLeverageDev/openleverage-contracts" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/openleverage" + }, + { + "name": "youtube", + "url": "https://youtube.com/@openleverageprotocol9047" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa865197A84E780957422237B5D152772654341F3/logo.png b/blockchains/smartchain/assets/0xB7E2713CF55cf4b469B5a8421Ae6Fc0ED18F1467/logo.png similarity index 100% rename from blockchains/smartchain/assets/0xa865197A84E780957422237B5D152772654341F3/logo.png rename to blockchains/smartchain/assets/0xB7E2713CF55cf4b469B5a8421Ae6Fc0ED18F1467/logo.png diff --git a/blockchains/smartchain/assets/0xB7FeEAb5ea787e83a40f185237C717597363E0d6/info.json b/blockchains/smartchain/assets/0xB7FeEAb5ea787e83a40f185237C717597363E0d6/info.json index 4bd4b8ec508e5..19a1200ec16ce 100644 --- a/blockchains/smartchain/assets/0xB7FeEAb5ea787e83a40f185237C717597363E0d6/info.json +++ b/blockchains/smartchain/assets/0xB7FeEAb5ea787e83a40f185237C717597363E0d6/info.json @@ -10,8 +10,8 @@ "id": "0xB7FeEAb5ea787e83a40f185237C717597363E0d6", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PayX2P" + "name": "x", + "url": "https://x.com/PayX2P" }, { "name": "whitepaper", diff --git a/blockchains/smartchain/assets/0xB82BEb6Ee0063Abd5fC8E544c852237aA62CBb14/info.json b/blockchains/smartchain/assets/0xB82BEb6Ee0063Abd5fC8E544c852237aA62CBb14/info.json index 6f58aa4c9b060..c6efeec56e8df 100644 --- a/blockchains/smartchain/assets/0xB82BEb6Ee0063Abd5fC8E544c852237aA62CBb14/info.json +++ b/blockchains/smartchain/assets/0xB82BEb6Ee0063Abd5fC8E544c852237aA62CBb14/info.json @@ -10,8 +10,8 @@ "id": "0xB82BEb6Ee0063Abd5fC8E544c852237aA62CBb14", "links": [ { - "name": "twitter", - "url": "https://twitter.com/tokensquare" + "name": "x", + "url": "https://x.com/tokensquare" }, { "name": "telegram", @@ -29,4 +29,4 @@ "tags": [ "deflationary" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB84cBbF09b3Ed388a45cD875ebba41a20365e6e7/info.json b/blockchains/smartchain/assets/0xB84cBbF09b3Ed388a45cD875ebba41a20365e6e7/info.json index 7841c5a6441c4..97f910def88e3 100644 --- a/blockchains/smartchain/assets/0xB84cBbF09b3Ed388a45cD875ebba41a20365e6e7/info.json +++ b/blockchains/smartchain/assets/0xB84cBbF09b3Ed388a45cD875ebba41a20365e6e7/info.json @@ -10,8 +10,8 @@ "id": "0xB84cBbF09b3Ed388a45cD875ebba41a20365e6e7", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BitShibaToken" + "name": "x", + "url": "https://x.com/BitShibaToken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xB93ee4522C44Ef4cD7EE8c83B9Fe1A421b4b42C3/info.json b/blockchains/smartchain/assets/0xB93ee4522C44Ef4cD7EE8c83B9Fe1A421b4b42C3/info.json new file mode 100644 index 0000000000000..7d57d003ec6c2 --- /dev/null +++ b/blockchains/smartchain/assets/0xB93ee4522C44Ef4cD7EE8c83B9Fe1A421b4b42C3/info.json @@ -0,0 +1,29 @@ +{ + "name": "Metatime", + "website": "https://metatime.com/en", + "description": "Metatime has emerged as a visionary ecosystem that builds the world of the future, designed from the start to be beneficial to everyone. By completely self-funding its technology development stages, Metatime aims to establish the world’s most comprehensive and transparent ecosystem.", + "explorer": "https://bscscan.com/token/0xB93ee4522C44Ef4cD7EE8c83B9Fe1A421b4b42C3", + "type": "BEP20", + "symbol": "MTC", + "decimals": 18, + "status": "active", + "id": "0xB93ee4522C44Ef4cD7EE8c83B9Fe1A421b4b42C3", + "links": [ + { + "name": "github", + "url": "https://github.com/Metatime-Technology-Inc" + }, + { + "name": "x", + "url": "https://x.com/metatimecom" + }, + { + "name": "telegram", + "url": "https://t.me/metatime" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/metatime-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB93ee4522C44Ef4cD7EE8c83B9Fe1A421b4b42C3/logo.png b/blockchains/smartchain/assets/0xB93ee4522C44Ef4cD7EE8c83B9Fe1A421b4b42C3/logo.png new file mode 100644 index 0000000000000..11b60376bb37c Binary files /dev/null and b/blockchains/smartchain/assets/0xB93ee4522C44Ef4cD7EE8c83B9Fe1A421b4b42C3/logo.png differ diff --git a/blockchains/smartchain/assets/0xB96D0f29a0aC9AF4a32835e90EC6531389765089/info.json b/blockchains/smartchain/assets/0xB96D0f29a0aC9AF4a32835e90EC6531389765089/info.json new file mode 100644 index 0000000000000..236dc957ddcf4 --- /dev/null +++ b/blockchains/smartchain/assets/0xB96D0f29a0aC9AF4a32835e90EC6531389765089/info.json @@ -0,0 +1,33 @@ +{ + "name": "Vapor Token", + "website": "https://www.vaporfund.com/", + "description": "Inflation Hedge Fund: Your Gateway to Curated Crypto Investments", + "explorer": "https://bscscan.com/token/0xB96D0f29a0aC9AF4a32835e90EC6531389765089", + "type": "BEP20", + "symbol": "VPR", + "decimals": 18, + "status": "active", + "id": "0xB96D0f29a0aC9AF4a32835e90EC6531389765089", + "links": [ + { + "name": "x", + "url": "https://x.com/vaporfund" + }, + { + "name": "telegram", + "url": "https://t.me/vaporfund_co" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vaporwallet/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vapor-fund" + } + ], + "tags": [ + "defi", + "dapp" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB96D0f29a0aC9AF4a32835e90EC6531389765089/logo.png b/blockchains/smartchain/assets/0xB96D0f29a0aC9AF4a32835e90EC6531389765089/logo.png new file mode 100644 index 0000000000000..b887c399fbf8c Binary files /dev/null and b/blockchains/smartchain/assets/0xB96D0f29a0aC9AF4a32835e90EC6531389765089/logo.png differ diff --git a/blockchains/smartchain/assets/0xB9F0f69EC5D6E95F793DAe134001E326Df7e22C1/info.json b/blockchains/smartchain/assets/0xB9F0f69EC5D6E95F793DAe134001E326Df7e22C1/info.json new file mode 100644 index 0000000000000..be31f83482414 --- /dev/null +++ b/blockchains/smartchain/assets/0xB9F0f69EC5D6E95F793DAe134001E326Df7e22C1/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT Helios", + "type": "BEP20", + "symbol": "HONEYPOT HLS", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xB9F0f69EC5D6E95F793DAe134001E326Df7e22C1", + "explorer": "https://bscscan.com/token/0xB9F0f69EC5D6E95F793DAe134001E326Df7e22C1", + "status": "spam", + "id": "0xB9F0f69EC5D6E95F793DAe134001E326Df7e22C1" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB9F41715D64e85C0d78bC4ed6857ef54Cd5B2737/info.json b/blockchains/smartchain/assets/0xB9F41715D64e85C0d78bC4ed6857ef54Cd5B2737/info.json index 8ade27929ea9e..6726f816ac871 100644 --- a/blockchains/smartchain/assets/0xB9F41715D64e85C0d78bC4ed6857ef54Cd5B2737/info.json +++ b/blockchains/smartchain/assets/0xB9F41715D64e85C0d78bC4ed6857ef54Cd5B2737/info.json @@ -10,8 +10,8 @@ "id": "0xB9F41715D64e85C0d78bC4ed6857ef54Cd5B2737", "links": [ { - "name": "twitter", - "url": "https://twitter.com/artccoin" + "name": "x", + "url": "https://x.com/artccoin" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0xB9d35811424600fa9E8cD62A0471fBd025131cb8/info.json b/blockchains/smartchain/assets/0xB9d35811424600fa9E8cD62A0471fBd025131cb8/info.json index 2da787977c4dd..dc56aa7adc8f4 100644 --- a/blockchains/smartchain/assets/0xB9d35811424600fa9E8cD62A0471fBd025131cb8/info.json +++ b/blockchains/smartchain/assets/0xB9d35811424600fa9E8cD62A0471fBd025131cb8/info.json @@ -10,8 +10,8 @@ "id": "0xB9d35811424600fa9E8cD62A0471fBd025131cb8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/yesworld24" + "name": "x", + "url": "https://x.com/yesworld24" }, { "name": "github", @@ -33,4 +33,4 @@ "tags": [ "binance-peg" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBA7c968513F5767F097d3Ce998E2489ff1358888/info.json b/blockchains/smartchain/assets/0xBA7c968513F5767F097d3Ce998E2489ff1358888/info.json new file mode 100644 index 0000000000000..003c421e09967 --- /dev/null +++ b/blockchains/smartchain/assets/0xBA7c968513F5767F097d3Ce998E2489ff1358888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE ꓐitcoin", + "type": "BEP20", + "symbol": "FAKE BTC", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xBA7c968513F5767F097d3Ce998E2489ff1358888", + "explorer": "https://bscscan.com/token/0xBA7c968513F5767F097d3Ce998E2489ff1358888", + "status": "spam", + "id": "0xBA7c968513F5767F097d3Ce998E2489ff1358888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBA96731324dE188ebC1eD87ca74544dDEbC07D7f/info.json b/blockchains/smartchain/assets/0xBA96731324dE188ebC1eD87ca74544dDEbC07D7f/info.json index cfbd8eb96e81b..5d9fab7240ac8 100644 --- a/blockchains/smartchain/assets/0xBA96731324dE188ebC1eD87ca74544dDEbC07D7f/info.json +++ b/blockchains/smartchain/assets/0xBA96731324dE188ebC1eD87ca74544dDEbC07D7f/info.json @@ -10,8 +10,8 @@ "id": "0xBA96731324dE188ebC1eD87ca74544dDEbC07D7f", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TitanoFinance" + "name": "x", + "url": "https://x.com/TitanoFinance" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xBB1106c7dEb7cC60EfA51391760b14aEd8CB5BEd/info.json b/blockchains/smartchain/assets/0xBB1106c7dEb7cC60EfA51391760b14aEd8CB5BEd/info.json new file mode 100644 index 0000000000000..561dbf71e6bea --- /dev/null +++ b/blockchains/smartchain/assets/0xBB1106c7dEb7cC60EfA51391760b14aEd8CB5BEd/info.json @@ -0,0 +1,32 @@ +{ + "name": "car", + "type": "BEP20", + "symbol": "CAR", + "decimals": 18, + "website": "https://carcoin.game", + "description": "Car Coin is a groundbreaking project combining blockchain technology and cryptocurrency to transform the automotive trade and related sectors. Our platform aims to provide comprehensive solutions for current and future needs in the automotive industry.", + "explorer": "https://bscscan.com/token/0xBB1106c7dEb7cC60EfA51391760b14aEd8CB5BEd", + "status": "active", + "id": "0xBB1106c7dEb7cC60EfA51391760b14aEd8CB5BEd", + "links": [ + { + "name": "x", + "url": "https://x.com/carcoin_1" + }, + { + "name": "telegram", + "url": "https://t.me/carcoin_1" + }, + { + "name": "whitepaper", + "url": "https://carcoin.game/whitepaper/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/car" + } + ], + "tags": [ + "gamefi" + ] +} diff --git a/blockchains/smartchain/assets/0xBB1106c7dEb7cC60EfA51391760b14aEd8CB5BEd/logo.png b/blockchains/smartchain/assets/0xBB1106c7dEb7cC60EfA51391760b14aEd8CB5BEd/logo.png new file mode 100644 index 0000000000000..53645537b0671 Binary files /dev/null and b/blockchains/smartchain/assets/0xBB1106c7dEb7cC60EfA51391760b14aEd8CB5BEd/logo.png differ diff --git a/blockchains/smartchain/assets/0xBB994E80E2eDc45dCe9065bda73ADc7E9337b64F/info.json b/blockchains/smartchain/assets/0xBB994E80E2eDc45dCe9065bda73ADc7E9337b64F/info.json index 09b3724c0c27d..b94d8e18ccf5c 100644 --- a/blockchains/smartchain/assets/0xBB994E80E2eDc45dCe9065bda73ADc7E9337b64F/info.json +++ b/blockchains/smartchain/assets/0xBB994E80E2eDc45dCe9065bda73ADc7E9337b64F/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/only1token" }, { - "name": "twitter", - "url": "https://twitter.com/OnlyOneToken" + "name": "x", + "url": "https://x.com/OnlyOneToken" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0xBBFFA24cCF2d4D9e9737B1BA4A25A5EFFA71451E/info.json b/blockchains/smartchain/assets/0xBBFFA24cCF2d4D9e9737B1BA4A25A5EFFA71451E/info.json index 75f24040dd6ce..b7d452bed39f9 100644 --- a/blockchains/smartchain/assets/0xBBFFA24cCF2d4D9e9737B1BA4A25A5EFFA71451E/info.json +++ b/blockchains/smartchain/assets/0xBBFFA24cCF2d4D9e9737B1BA4A25A5EFFA71451E/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Techearnbdt" }, { - "name": "twitter", - "url": "https://twitter.com/Techearnbdt" + "name": "x", + "url": "https://x.com/Techearnbdt" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0xBBdFebA7DDCcF88a96eA43909bA70feF54fe7777/info.json b/blockchains/smartchain/assets/0xBBdFebA7DDCcF88a96eA43909bA70feF54fe7777/info.json new file mode 100644 index 0000000000000..3e7ce22bf3f64 --- /dev/null +++ b/blockchains/smartchain/assets/0xBBdFebA7DDCcF88a96eA43909bA70feF54fe7777/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT", + "type": "BEP20", + "symbol": "HONEYPOT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xBBdFebA7DDCcF88a96eA43909bA70feF54fe7777", + "explorer": "https://bscscan.com/token/0xBBdFebA7DDCcF88a96eA43909bA70feF54fe7777", + "status": "spam", + "id": "0xBBdFebA7DDCcF88a96eA43909bA70feF54fe7777" +} diff --git a/blockchains/smartchain/assets/0xBBe899c61198D1826a43e20ea19efC46E50c2B00/info.json b/blockchains/smartchain/assets/0xBBe899c61198D1826a43e20ea19efC46E50c2B00/info.json index e2ed232fce722..5cd9b73131b8c 100644 --- a/blockchains/smartchain/assets/0xBBe899c61198D1826a43e20ea19efC46E50c2B00/info.json +++ b/blockchains/smartchain/assets/0xBBe899c61198D1826a43e20ea19efC46E50c2B00/info.json @@ -10,8 +10,8 @@ "id": "0xBBe899c61198D1826a43e20ea19efC46E50c2B00", "links": [ { - "name": "twitter", - "url": "https://twitter.com/OfficialEnergyX" + "name": "x", + "url": "https://x.com/OfficialEnergyX" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xBC12aD556581ff7162E595E5956F5F3845FDB38c/info.json b/blockchains/smartchain/assets/0xBC12aD556581ff7162E595E5956F5F3845FDB38c/info.json index 2e25a01cbcaab..3a3b6de56d9f8 100644 --- a/blockchains/smartchain/assets/0xBC12aD556581ff7162E595E5956F5F3845FDB38c/info.json +++ b/blockchains/smartchain/assets/0xBC12aD556581ff7162E595E5956F5F3845FDB38c/info.json @@ -10,8 +10,8 @@ "id": "0xBC12aD556581ff7162E595E5956F5F3845FDB38c", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Helicoptercorp" + "name": "x", + "url": "https://x.com/Helicoptercorp" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xBC7170a1280Be28513B4e940C681537EB25e39f4/info.json b/blockchains/smartchain/assets/0xBC7170a1280Be28513B4e940C681537EB25e39f4/info.json new file mode 100644 index 0000000000000..8d7fe39da307e --- /dev/null +++ b/blockchains/smartchain/assets/0xBC7170a1280Be28513B4e940C681537EB25e39f4/info.json @@ -0,0 +1,24 @@ +{ + "name": "Comcast tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Comcast xStock (CMCSAx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. CMCSAx tracks the price of International Comcast Corporation Class A (the underlying). CMCSAx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Comcast Corporation Class A, whilst maintaining the benefits of blockchain technology. Comcast Corporation is a global media and tech company that provides connectivity, content, and entertainment to millions of customers worldwide.", + "explorer": "https://bscscan.com/token/0xBC7170a1280Be28513B4e940C681537EB25e39f4", + "type": "BEP20", + "symbol": "CMCSAX", + "decimals": 18, + "status": "active", + "id": "0xBC7170a1280Be28513B4e940C681537EB25e39f4", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/comcast-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBC7170a1280Be28513B4e940C681537EB25e39f4/logo.png b/blockchains/smartchain/assets/0xBC7170a1280Be28513B4e940C681537EB25e39f4/logo.png new file mode 100644 index 0000000000000..a3d18c9ae4e61 Binary files /dev/null and b/blockchains/smartchain/assets/0xBC7170a1280Be28513B4e940C681537EB25e39f4/logo.png differ diff --git a/blockchains/smartchain/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json b/blockchains/smartchain/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json index c65466e446700..84679e6e94c1e 100644 --- a/blockchains/smartchain/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json +++ b/blockchains/smartchain/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json @@ -10,8 +10,8 @@ "id": "0xBD100d061E120b2c67A24453CF6368E63f1Be056", "links": [ { - "name": "twitter", - "url": "https://twitter.com/dypfinance" + "name": "x", + "url": "https://x.com/dypfinance" }, { "name": "github", @@ -40,8 +40,6 @@ ], "tags": [ "governance", - "defi", - "staking-native" + "defi" ] -} - +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBDA011D7F8EC00F66C1923B049B94c67d148d8b2/info.json b/blockchains/smartchain/assets/0xBDA011D7F8EC00F66C1923B049B94c67d148d8b2/info.json new file mode 100644 index 0000000000000..a6a23b09e7e77 --- /dev/null +++ b/blockchains/smartchain/assets/0xBDA011D7F8EC00F66C1923B049B94c67d148d8b2/info.json @@ -0,0 +1,21 @@ +{ + "name": "Sleepless AI", + "website": "https://www.sleeplessai.net/home", + "description": "Where AI meets affections Sleepless AI emerges as a groundbreaking Web3+AI gaming platform, ingeniously blending artificial intelligence and blockchain technology.", + "explorer": "https://bscscan.com/token/0xBDA011D7F8EC00F66C1923B049B94c67d148d8b2", + "symbol": "AI", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0xBDA011D7F8EC00F66C1923B049B94c67d148d8b2", + "links": [ + { + "name": "telegram", + "url": "https://t.me/SleeplessAIGroup" + }, + { + "name": "x", + "url": "https://x.com/SleeplessAI_Lab" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBDA011D7F8EC00F66C1923B049B94c67d148d8b2/logo.png b/blockchains/smartchain/assets/0xBDA011D7F8EC00F66C1923B049B94c67d148d8b2/logo.png new file mode 100644 index 0000000000000..dfb8d42427289 Binary files /dev/null and b/blockchains/smartchain/assets/0xBDA011D7F8EC00F66C1923B049B94c67d148d8b2/logo.png differ diff --git a/blockchains/smartchain/assets/0xBDA386e9Fad6EcE52A9A5eA6A5BF19F1B26beB2E/info.json b/blockchains/smartchain/assets/0xBDA386e9Fad6EcE52A9A5eA6A5BF19F1B26beB2E/info.json new file mode 100644 index 0000000000000..8188c1d8989d4 --- /dev/null +++ b/blockchains/smartchain/assets/0xBDA386e9Fad6EcE52A9A5eA6A5BF19F1B26beB2E/info.json @@ -0,0 +1,17 @@ +{ + "name": "Paramecium", + "symbol": "PARA", + "website": "https://en.wikipedia.org/wiki/Paramecium", + "description": "prehistoric protist", + "explorer": "https://bscscan.com/token/0xbda386e9fad6ece52a9a5ea6a5bf19f1b26beb2e", + "decimals": 18, + "status": "active", + "id": "0xBDA386e9Fad6EcE52A9A5eA6A5BF19F1B26beB2E", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/ParameciumBsc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBDA386e9Fad6EcE52A9A5eA6A5BF19F1B26beB2E/logo.png b/blockchains/smartchain/assets/0xBDA386e9Fad6EcE52A9A5eA6A5BF19F1B26beB2E/logo.png new file mode 100644 index 0000000000000..700610941ab4d Binary files /dev/null and b/blockchains/smartchain/assets/0xBDA386e9Fad6EcE52A9A5eA6A5BF19F1B26beB2E/logo.png differ diff --git a/blockchains/smartchain/assets/0xBDAC5C8bc3FF38083437bB712D55b668F44F6DF1/info.json b/blockchains/smartchain/assets/0xBDAC5C8bc3FF38083437bB712D55b668F44F6DF1/info.json index 33b86da31e802..baa5bae74999f 100644 --- a/blockchains/smartchain/assets/0xBDAC5C8bc3FF38083437bB712D55b668F44F6DF1/info.json +++ b/blockchains/smartchain/assets/0xBDAC5C8bc3FF38083437bB712D55b668F44F6DF1/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/SimarglToken/" }, { - "name": "twitter", - "url": "https://twitter.com/SimarglToken" + "name": "x", + "url": "https://x.com/SimarglToken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xBDf5bAfEE1291EEc45Ae3aadAc89BE8152D4E673/info.json b/blockchains/smartchain/assets/0xBDf5bAfEE1291EEc45Ae3aadAc89BE8152D4E673/info.json new file mode 100644 index 0000000000000..556abfe5d4cb1 --- /dev/null +++ b/blockchains/smartchain/assets/0xBDf5bAfEE1291EEc45Ae3aadAc89BE8152D4E673/info.json @@ -0,0 +1,21 @@ +{ + "name": "CATAMOTO", + "website": "https://www.catamoto.cat/", + "description": "$CATA is changing the rules of memecoins by using superior cat math to create the most advanced smart contract in the world", + "explorer": "https://bscscan.com/token/0xbdf5bafee1291eec45ae3aadac89be8152d4e673", + "type": "BEP20", + "symbol": "CATA", + "decimals": 18, + "status": "active", + "id": "0xBDf5bAfEE1291EEc45Ae3aadAc89BE8152D4E673", + "links": [ + { + "name": "x", + "url": "https://x.com/4catamoto" + }, + { + "name": "telegram", + "url": "https://t.me/Catamoto" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBDf5bAfEE1291EEc45Ae3aadAc89BE8152D4E673/logo.png b/blockchains/smartchain/assets/0xBDf5bAfEE1291EEc45Ae3aadAc89BE8152D4E673/logo.png new file mode 100644 index 0000000000000..1e9ff4a3bf5d2 Binary files /dev/null and b/blockchains/smartchain/assets/0xBDf5bAfEE1291EEc45Ae3aadAc89BE8152D4E673/logo.png differ diff --git a/blockchains/smartchain/assets/0xBE82F76637DBA2C114C41Df856c2C51e522E2Cb8/info.json b/blockchains/smartchain/assets/0xBE82F76637DBA2C114C41Df856c2C51e522E2Cb8/info.json new file mode 100644 index 0000000000000..a7ec5549a02bc --- /dev/null +++ b/blockchains/smartchain/assets/0xBE82F76637DBA2C114C41Df856c2C51e522E2Cb8/info.json @@ -0,0 +1,20 @@ +{ + "name": "iShares MSCI South Korea ETF Tokenized bStocks", + "type": "BEP20", + "symbol": "EWYB", + "decimals": 18, + "description": "EWYB is a tokenized bStocks that gives you economic exposure to iShares MSCI South Korea ETF Tokenized bStocks, and the right to convert to the underlying security on the Binance.com platform subject to applicable laws. Each token is fully backed by the corresponding underlying equity maintained by the Issuer at a US-regulated broker-dealer. You get the price movements, dividends, and the right to convert the token at 1:1 to the underlying share — tradeable 24/7.", + "website": "https://bstocks.finance/", + "explorer": "https://bscscan.com/token/0xBE82F76637DBA2C114C41Df856c2C51e522E2Cb8", + "status": "active", + "id": "0xBE82F76637DBA2C114C41Df856c2C51e522E2Cb8", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tesla-tokenized-stock-bstocks/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBE82F76637DBA2C114C41Df856c2C51e522E2Cb8/logo.png b/blockchains/smartchain/assets/0xBE82F76637DBA2C114C41Df856c2C51e522E2Cb8/logo.png new file mode 100644 index 0000000000000..5d52eb3185676 Binary files /dev/null and b/blockchains/smartchain/assets/0xBE82F76637DBA2C114C41Df856c2C51e522E2Cb8/logo.png differ diff --git a/blockchains/smartchain/assets/0xBF05279F9Bf1CE69bBFEd670813b7e431142Afa4/info.json b/blockchains/smartchain/assets/0xBF05279F9Bf1CE69bBFEd670813b7e431142Afa4/info.json index c0663ff25de2a..227eaa8b5ab3a 100644 --- a/blockchains/smartchain/assets/0xBF05279F9Bf1CE69bBFEd670813b7e431142Afa4/info.json +++ b/blockchains/smartchain/assets/0xBF05279F9Bf1CE69bBFEd670813b7e431142Afa4/info.json @@ -22,8 +22,8 @@ "url": "https://reddit.com/r/milliontoken/" }, { - "name": "twitter", - "url": "https://twitter.com/Million__Token" + "name": "x", + "url": "https://x.com/Million__Token" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0xBFEf6cCFC830D3BaCA4F6766a0d4AaA242Ca9F3D/info.json b/blockchains/smartchain/assets/0xBFEf6cCFC830D3BaCA4F6766a0d4AaA242Ca9F3D/info.json index afafa2c06f901..d11239baa832b 100644 --- a/blockchains/smartchain/assets/0xBFEf6cCFC830D3BaCA4F6766a0d4AaA242Ca9F3D/info.json +++ b/blockchains/smartchain/assets/0xBFEf6cCFC830D3BaCA4F6766a0d4AaA242Ca9F3D/info.json @@ -18,8 +18,8 @@ "url": "https://github.com/NAVCoin" }, { - "name": "twitter", - "url": "https://twitter.com/Navcoin" + "name": "x", + "url": "https://x.com/Navcoin" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xBa007b6170C602C08545ff97395677408688D3a2/info.json b/blockchains/smartchain/assets/0xBa007b6170C602C08545ff97395677408688D3a2/info.json index 5258381d7a350..13f294134a262 100644 --- a/blockchains/smartchain/assets/0xBa007b6170C602C08545ff97395677408688D3a2/info.json +++ b/blockchains/smartchain/assets/0xBa007b6170C602C08545ff97395677408688D3a2/info.json @@ -10,8 +10,8 @@ "id": "0xBa007b6170C602C08545ff97395677408688D3a2", "links": [ { - "name": "twitter", - "url": "https://twitter.com/METAPLANETBSC" + "name": "x", + "url": "https://x.com/METAPLANETBSC" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xBa7d871B6705d75580aB383dBEf577DB61020159/info.json b/blockchains/smartchain/assets/0xBa7d871B6705d75580aB383dBEf577DB61020159/info.json new file mode 100644 index 0000000000000..2e15b98a8d555 --- /dev/null +++ b/blockchains/smartchain/assets/0xBa7d871B6705d75580aB383dBEf577DB61020159/info.json @@ -0,0 +1,14 @@ +{ + "name": "A48Z", + "type": "BEP20", + "symbol": "A48Z", + "decimals": 18, + "website": "https://bscscan.com/address/0xBa7d871B6705d75580aB383dBEf577DB61020159", + "description": "Game, Explore, and Win with $A48Z! $A48Z is made for gamers and adventurers! Join the fun-loving gamer and crypto-savvy Agent A48Z as her partner, exploring new worlds, completing missions, and creating your own adventure!", + "explorer": "https://bscscan.com/token/0xBa7d871B6705d75580aB383dBEf577DB61020159", + "status": "active", + "id": "0xBa7d871B6705d75580aB383dBEf577DB61020159", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBa7d871B6705d75580aB383dBEf577DB61020159/logo.png b/blockchains/smartchain/assets/0xBa7d871B6705d75580aB383dBEf577DB61020159/logo.png new file mode 100644 index 0000000000000..09d12b6c1b7c0 Binary files /dev/null and b/blockchains/smartchain/assets/0xBa7d871B6705d75580aB383dBEf577DB61020159/logo.png differ diff --git a/blockchains/smartchain/assets/0xBaC2588D2272fF6E5826E2882042Fa2926039CBa/info.json b/blockchains/smartchain/assets/0xBaC2588D2272fF6E5826E2882042Fa2926039CBa/info.json new file mode 100644 index 0000000000000..60ce4ebfbc454 --- /dev/null +++ b/blockchains/smartchain/assets/0xBaC2588D2272fF6E5826E2882042Fa2926039CBa/info.json @@ -0,0 +1,20 @@ +{ + "name": "Fundrise Innovation Fund, LLC xStock", + "type": "BEP20", + "symbol": "VCXx", + "decimals": 18, + "description": "Fundrise Innovation Fund, LLC xStock (VCXx) is a tracker certificate issued as a freely transferable token on selected blockchains. VCXx tracks the price of Fundrise Innovation Fund, LLC. VCXx is designed to give eligible investors regulatory-compliant access to the stock price of Fundrise Innovation Fund, LLC, whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0xBaC2588D2272fF6E5826E2882042Fa2926039CBa", + "status": "active", + "id": "0xBaC2588D2272fF6E5826E2882042Fa2926039CBa", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBaC2588D2272fF6E5826E2882042Fa2926039CBa/logo.png b/blockchains/smartchain/assets/0xBaC2588D2272fF6E5826E2882042Fa2926039CBa/logo.png new file mode 100644 index 0000000000000..ce572a3bd1665 Binary files /dev/null and b/blockchains/smartchain/assets/0xBaC2588D2272fF6E5826E2882042Fa2926039CBa/logo.png differ diff --git a/blockchains/smartchain/assets/0xBb238FcE6E2eE90781cD160C9C6eAf3a4CfAD801/info.json b/blockchains/smartchain/assets/0xBb238FcE6E2eE90781cD160C9C6eAf3a4CfAD801/info.json index d8419e2fe3241..6b89a4c6cf2bf 100644 --- a/blockchains/smartchain/assets/0xBb238FcE6E2eE90781cD160C9C6eAf3a4CfAD801/info.json +++ b/blockchains/smartchain/assets/0xBb238FcE6E2eE90781cD160C9C6eAf3a4CfAD801/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/bagels-dev" }, { - "name": "twitter", - "url": "https://twitter.com/BagelsFinance" + "name": "x", + "url": "https://x.com/BagelsFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xBb2826Ab03B6321E170F0558804F2B6488C98775/info.json b/blockchains/smartchain/assets/0xBb2826Ab03B6321E170F0558804F2B6488C98775/info.json new file mode 100644 index 0000000000000..f9882b692eb93 --- /dev/null +++ b/blockchains/smartchain/assets/0xBb2826Ab03B6321E170F0558804F2B6488C98775/info.json @@ -0,0 +1,44 @@ +{ + "name": "BNB Smart Chain", + "website": "https://babybonkcoin.io/", + "description": "Baby Bonk isn't just a regular coin; it's a special idea that brings together the power of DeFi with the strength of a community.", + "explorer": "https://bscscan.com/token/0xbb2826ab03b6321e170f0558804f2b6488c98775", + "symbol": "BabyBonk", + "type": "BEP20", + "decimals": 9, + "status": "active", + "id": "0xBb2826Ab03B6321E170F0558804F2B6488C98775", + "tags": [ + "gamefi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/babybonktoken/" + }, + { + "name": "x", + "url": "https://x.com/BabyBonkCoin" + }, + { + "name": "telegram", + "url": "https://t.me/BabyBonkEntry" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/baby-bonk-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/babybonk" + }, + { + "name": "facebook", + "url": "https://facebook.com/people/BabyBonk-Coin/61554415552680/" + }, + { + "name": "whitepaper", + "url": "https://bonkroyale.com/docs" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBb2826Ab03B6321E170F0558804F2B6488C98775/logo.png b/blockchains/smartchain/assets/0xBb2826Ab03B6321E170F0558804F2B6488C98775/logo.png new file mode 100644 index 0000000000000..242f44fdf0510 Binary files /dev/null and b/blockchains/smartchain/assets/0xBb2826Ab03B6321E170F0558804F2B6488C98775/logo.png differ diff --git a/blockchains/smartchain/assets/0xBb2FA5B2D19209f4Cf50cF745Efc32641A7c9fb1/info.json b/blockchains/smartchain/assets/0xBb2FA5B2D19209f4Cf50cF745Efc32641A7c9fb1/info.json index ca24fa861dc03..c5e61dee9ec77 100644 --- a/blockchains/smartchain/assets/0xBb2FA5B2D19209f4Cf50cF745Efc32641A7c9fb1/info.json +++ b/blockchains/smartchain/assets/0xBb2FA5B2D19209f4Cf50cF745Efc32641A7c9fb1/info.json @@ -10,8 +10,8 @@ "id": "0xBb2FA5B2D19209f4Cf50cF745Efc32641A7c9fb1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/HKUNtoken" + "name": "x", + "url": "https://x.com/HKUNtoken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xBb44Fbeb1bCA7E032D34005791d1b99DfEE187A9/info.json b/blockchains/smartchain/assets/0xBb44Fbeb1bCA7E032D34005791d1b99DfEE187A9/info.json new file mode 100644 index 0000000000000..31d76edce0114 --- /dev/null +++ b/blockchains/smartchain/assets/0xBb44Fbeb1bCA7E032D34005791d1b99DfEE187A9/info.json @@ -0,0 +1,14 @@ +{ + "name": "Four Meme Game", + "type": "BEP20", + "symbol": "4MGAME", + "decimals": 18, + "website": "https://four.meme/token/0xBb44Fbeb1bCA7E032D34005791d1b99DfEE187A9", + "description": "4MGAME is a gaming platform project based on the Four.meme platform. The first mini-game we developed is now available on the official website and you can win more coins by participating in our games. More games will be added to the official website. Follow us on Twitter for more news.", + "explorer": "https://bscscan.com/token/0xBb44Fbeb1bCA7E032D34005791d1b99DfEE187A9", + "status": "active", + "id": "0xBb44Fbeb1bCA7E032D34005791d1b99DfEE187A9", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBb44Fbeb1bCA7E032D34005791d1b99DfEE187A9/logo.png b/blockchains/smartchain/assets/0xBb44Fbeb1bCA7E032D34005791d1b99DfEE187A9/logo.png new file mode 100644 index 0000000000000..4d97ef89badc7 Binary files /dev/null and b/blockchains/smartchain/assets/0xBb44Fbeb1bCA7E032D34005791d1b99DfEE187A9/logo.png differ diff --git a/blockchains/smartchain/assets/0xBb46693eBbEa1aC2070E59B4D043b47e2e095f86/info.json b/blockchains/smartchain/assets/0xBb46693eBbEa1aC2070E59B4D043b47e2e095f86/info.json index 093be5a76bc10..157ab808b11e0 100644 --- a/blockchains/smartchain/assets/0xBb46693eBbEa1aC2070E59B4D043b47e2e095f86/info.json +++ b/blockchains/smartchain/assets/0xBb46693eBbEa1aC2070E59B4D043b47e2e095f86/info.json @@ -10,8 +10,8 @@ "id": "0xBb46693eBbEa1aC2070E59B4D043b47e2e095f86", "links": [ { - "name": "twitter", - "url": "https://twitter.com/betfury_gaming" + "name": "x", + "url": "https://x.com/betfury_gaming" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xBb689057fE1c4bFc573A54c0679ae1a7A1982F26/info.json b/blockchains/smartchain/assets/0xBb689057fE1c4bFc573A54c0679ae1a7A1982F26/info.json new file mode 100644 index 0000000000000..f08a5570e292b --- /dev/null +++ b/blockchains/smartchain/assets/0xBb689057fE1c4bFc573A54c0679ae1a7A1982F26/info.json @@ -0,0 +1,36 @@ +{ + "name": "shelling", + "type": "BEP20", + "symbol": "SHL", + "decimals": 18, + "website": "https://www.shellingcoin.com/", + "description": "Shelling is building a payment platform that allows companies and individuals to accept cryptocurrency for their services and goods.", + "explorer": "https://bscscan.com/token/0xbb689057fe1c4bfc573a54c0679ae1a7a1982f26", + "status": "active", + "id": "0xBb689057fE1c4bFc573A54c0679ae1a7A1982F26", + "links": [ + { + "name": "x", + "url": "https://x.com/shelling_coin" + }, + { + "name": "telegram", + "url": "https://t.me/shellingcoin" + }, + { + "name": "whitepaper", + "url": "https://www.shellingcoin.com/_files/ugd/049f40_3cbd75b73dee4f0e82327ad820ce1721.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/shelling" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shelling/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBb689057fE1c4bFc573A54c0679ae1a7A1982F26/logo.png b/blockchains/smartchain/assets/0xBb689057fE1c4bFc573A54c0679ae1a7A1982F26/logo.png new file mode 100644 index 0000000000000..5b61215ffdba7 Binary files /dev/null and b/blockchains/smartchain/assets/0xBb689057fE1c4bFc573A54c0679ae1a7A1982F26/logo.png differ diff --git a/blockchains/smartchain/assets/0xBbcF57177D8752B21d080bf30a06CE20aD6333F8/info.json b/blockchains/smartchain/assets/0xBbcF57177D8752B21d080bf30a06CE20aD6333F8/info.json index d5a1ae4594f68..f890b3a259cda 100644 --- a/blockchains/smartchain/assets/0xBbcF57177D8752B21d080bf30a06CE20aD6333F8/info.json +++ b/blockchains/smartchain/assets/0xBbcF57177D8752B21d080bf30a06CE20aD6333F8/info.json @@ -10,8 +10,8 @@ "id": "0xBbcF57177D8752B21d080bf30a06CE20aD6333F8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/zam_io" + "name": "x", + "url": "https://x.com/zam_io" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xBc7d6B50616989655AfD682fb42743507003056D/info.json b/blockchains/smartchain/assets/0xBc7d6B50616989655AfD682fb42743507003056D/info.json index 40cc564941f98..323b4251c0ef6 100644 --- a/blockchains/smartchain/assets/0xBc7d6B50616989655AfD682fb42743507003056D/info.json +++ b/blockchains/smartchain/assets/0xBc7d6B50616989655AfD682fb42743507003056D/info.json @@ -10,8 +10,8 @@ "id": "0xBc7d6B50616989655AfD682fb42743507003056D", "links": [ { - "name": "twitter", - "url": "https://twitter.com/AlchemyPay" + "name": "x", + "url": "https://x.com/AlchemyPay" }, { "name": "github", @@ -33,4 +33,4 @@ "tags": [ "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBca703C64f616A17b4f2763F34f93400Dbe20F17/info.json b/blockchains/smartchain/assets/0xBca703C64f616A17b4f2763F34f93400Dbe20F17/info.json new file mode 100644 index 0000000000000..5eb19ce46dcd5 --- /dev/null +++ b/blockchains/smartchain/assets/0xBca703C64f616A17b4f2763F34f93400Dbe20F17/info.json @@ -0,0 +1,20 @@ +{ + "name": "Eaton Corporation plc xStock", + "type": "BEP20", + "symbol": "ETNx", + "decimals": 18, + "description": "Eaton Corporation plc xStock (ETNx) is a tracker certificate issued as a freely transferable token on selected blockchains. ETNx tracks the price of Eaton Corporation plc. ETNx is designed to give eligible investors regulatory-compliant access to the stock price of Eaton Corporation plc, whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0xBca703C64f616A17b4f2763F34f93400Dbe20F17", + "status": "active", + "id": "0xBca703C64f616A17b4f2763F34f93400Dbe20F17", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBca703C64f616A17b4f2763F34f93400Dbe20F17/logo.png b/blockchains/smartchain/assets/0xBca703C64f616A17b4f2763F34f93400Dbe20F17/logo.png new file mode 100644 index 0000000000000..7b80defb2a072 Binary files /dev/null and b/blockchains/smartchain/assets/0xBca703C64f616A17b4f2763F34f93400Dbe20F17/logo.png differ diff --git a/blockchains/smartchain/assets/0xBd65a197408230247F05247A71D1A9Aea9Db0C3c/info.json b/blockchains/smartchain/assets/0xBd65a197408230247F05247A71D1A9Aea9Db0C3c/info.json index 08ec9731dd1bf..7f7095a171bf3 100644 --- a/blockchains/smartchain/assets/0xBd65a197408230247F05247A71D1A9Aea9Db0C3c/info.json +++ b/blockchains/smartchain/assets/0xBd65a197408230247F05247A71D1A9Aea9Db0C3c/info.json @@ -10,8 +10,8 @@ "id": "0xBd65a197408230247F05247A71D1A9Aea9Db0C3c", "links": [ { - "name": "twitter", - "url": "https://twitter.com/_EINSTEINISBACK" + "name": "x", + "url": "https://x.com/_EINSTEINISBACK" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xBdEAe1cA48894A1759A8374D63925f21f2Ee2639/info.json b/blockchains/smartchain/assets/0xBdEAe1cA48894A1759A8374D63925f21f2Ee2639/info.json new file mode 100644 index 0000000000000..2e9fabebcce42 --- /dev/null +++ b/blockchains/smartchain/assets/0xBdEAe1cA48894A1759A8374D63925f21f2Ee2639/info.json @@ -0,0 +1,21 @@ +{ + "name": "Open Campus", + "website": "https://www.opencampus.xyz/", + "description": "The Open Campus Protocol is a decentralized solution for educators, content creators, parents, students, and co-publishers designed to address the major challenges in education today.", + "explorer": "https://bscscan.com/token/0xbdeae1ca48894a1759a8374d63925f21f2ee2639", + "symbol": "EDU", + "type": "BEP20", + "decimals": 18, + "id": "0xBdEAe1cA48894A1759A8374D63925f21f2Ee2639", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/opencampus_xyz" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/open-campus/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBdEAe1cA48894A1759A8374D63925f21f2Ee2639/logo.png b/blockchains/smartchain/assets/0xBdEAe1cA48894A1759A8374D63925f21f2Ee2639/logo.png new file mode 100644 index 0000000000000..db4bc4a29e81a Binary files /dev/null and b/blockchains/smartchain/assets/0xBdEAe1cA48894A1759A8374D63925f21f2Ee2639/logo.png differ diff --git a/blockchains/smartchain/assets/0xBe1a001FE942f96Eea22bA08783140B9Dcc09D28/info.json b/blockchains/smartchain/assets/0xBe1a001FE942f96Eea22bA08783140B9Dcc09D28/info.json new file mode 100644 index 0000000000000..83336234ed457 --- /dev/null +++ b/blockchains/smartchain/assets/0xBe1a001FE942f96Eea22bA08783140B9Dcc09D28/info.json @@ -0,0 +1,21 @@ +{ + "name": "Beta", + "type": "BEP20", + "symbol": "BETA", + "decimals": 18, + "website": "https://betafinance.org/", + "description": "Beta Finance is a cross-chain permissionless money market protocol for lending, borrowing, and shorting crypto. Beta Finance has created an integrated “1-Click” Short Tool to initiate, manage, and close short positions, as well as allow anyone to create money markets for a token automatically.", + "explorer": "https://bscscan.com/token/0xbe1a001fe942f96eea22ba08783140b9dcc09d28", + "status": "active", + "id": "0xBe1a001FE942f96Eea22bA08783140B9Dcc09D28", + "links": [ + { + "name": "x", + "url": "https://x.com/beta_finance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/beta-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBe1a001FE942f96Eea22bA08783140B9Dcc09D28/logo.png b/blockchains/smartchain/assets/0xBe1a001FE942f96Eea22bA08783140B9Dcc09D28/logo.png new file mode 100644 index 0000000000000..fc7f222306751 Binary files /dev/null and b/blockchains/smartchain/assets/0xBe1a001FE942f96Eea22bA08783140B9Dcc09D28/logo.png differ diff --git a/blockchains/smartchain/assets/0xBe4628d7E02e9257875149FA4981C400a01A49A3/info.json b/blockchains/smartchain/assets/0xBe4628d7E02e9257875149FA4981C400a01A49A3/info.json index 6ba7ca7860742..df2734a28a4fd 100644 --- a/blockchains/smartchain/assets/0xBe4628d7E02e9257875149FA4981C400a01A49A3/info.json +++ b/blockchains/smartchain/assets/0xBe4628d7E02e9257875149FA4981C400a01A49A3/info.json @@ -10,8 +10,8 @@ "id": "0xBe4628d7E02e9257875149FA4981C400a01A49A3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/jaildoge" + "name": "x", + "url": "https://x.com/jaildoge" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xBe6dE6b614b079236839404440E3e8867B5d6751/info.json b/blockchains/smartchain/assets/0xBe6dE6b614b079236839404440E3e8867B5d6751/info.json index fe2d90b5a47de..d89255e53b670 100644 --- a/blockchains/smartchain/assets/0xBe6dE6b614b079236839404440E3e8867B5d6751/info.json +++ b/blockchains/smartchain/assets/0xBe6dE6b614b079236839404440E3e8867B5d6751/info.json @@ -10,8 +10,8 @@ "id": "0xBe6dE6b614b079236839404440E3e8867B5d6751", "links": [ { - "name": "twitter", - "url": "https://twitter.com/WolverineBSC" + "name": "x", + "url": "https://x.com/WolverineBSC" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xBe96fcF736AD906b1821Ef74A0e4e346C74e6221/info.json b/blockchains/smartchain/assets/0xBe96fcF736AD906b1821Ef74A0e4e346C74e6221/info.json new file mode 100644 index 0000000000000..d0f060a5abf53 --- /dev/null +++ b/blockchains/smartchain/assets/0xBe96fcF736AD906b1821Ef74A0e4e346C74e6221/info.json @@ -0,0 +1,36 @@ +{ + "name": "NIX", + "type": "BEP20", + "symbol": "NIX", + "decimals": 18, + "website": "https://nixtoken.finance/", + "description": "The NIX token was created decentrally to be a utility token that benefits multiple platforms around the world - Including being the utility token of its own brokerage, which will also be called NIX.", + "explorer": "https://bscscan.com/token/0xBe96fcF736AD906b1821Ef74A0e4e346C74e6221", + "status": "active", + "id": "0xBe96fcF736AD906b1821Ef74A0e4e346C74e6221", + "links": [ + { + "name": "x", + "url": "https://x.com/nixtoken" + }, + { + "name": "telegram", + "url": "https://t.me/nixtokenglobal" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nix-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/nix" + }, + { + "name": "whitepaper", + "url": "https://doc.nixtoken.info/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBe96fcF736AD906b1821Ef74A0e4e346C74e6221/logo.png b/blockchains/smartchain/assets/0xBe96fcF736AD906b1821Ef74A0e4e346C74e6221/logo.png new file mode 100644 index 0000000000000..67d2e4b06a41d Binary files /dev/null and b/blockchains/smartchain/assets/0xBe96fcF736AD906b1821Ef74A0e4e346C74e6221/logo.png differ diff --git a/blockchains/smartchain/assets/0xBea7086c99A85D4b5E6A0494C18B037fDD8eE932/info.json b/blockchains/smartchain/assets/0xBea7086c99A85D4b5E6A0494C18B037fDD8eE932/info.json index 77f00f4ffc112..5d5d8e6f753c1 100644 --- a/blockchains/smartchain/assets/0xBea7086c99A85D4b5E6A0494C18B037fDD8eE932/info.json +++ b/blockchains/smartchain/assets/0xBea7086c99A85D4b5E6A0494C18B037fDD8eE932/info.json @@ -16,8 +16,8 @@ "url": "https://github.com/Freedom-Reserve" }, { - "name": "twitter", - "url": "https://twitter.com/@FreedomRsv" + "name": "x", + "url": "https://x.com/@FreedomRsv" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xBf38A8b9cf02223b44f823e15f45219E9978b491/info.json b/blockchains/smartchain/assets/0xBf38A8b9cf02223b44f823e15f45219E9978b491/info.json index 7cb419e39306a..8fd325e876d45 100644 --- a/blockchains/smartchain/assets/0xBf38A8b9cf02223b44f823e15f45219E9978b491/info.json +++ b/blockchains/smartchain/assets/0xBf38A8b9cf02223b44f823e15f45219E9978b491/info.json @@ -10,8 +10,8 @@ "id": "0xBf38A8b9cf02223b44f823e15f45219E9978b491", "links": [ { - "name": "twitter", - "url": "https://twitter.com/DivinerFi" + "name": "x", + "url": "https://x.com/DivinerFi" }, { "name": "telegram", @@ -25,4 +25,4 @@ "tags": [ "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBf5140A22578168FD562DCcF235E5D43A02ce9B1/info.json b/blockchains/smartchain/assets/0xBf5140A22578168FD562DCcF235E5D43A02ce9B1/info.json index 5cfefdb3e3c42..0bb2be702d4ae 100644 --- a/blockchains/smartchain/assets/0xBf5140A22578168FD562DCcF235E5D43A02ce9B1/info.json +++ b/blockchains/smartchain/assets/0xBf5140A22578168FD562DCcF235E5D43A02ce9B1/info.json @@ -1,5 +1,5 @@ { - "name": "BNB pegged Uniswap", + "name": "Uniswap", "website": "https://uniswap.org", "description": "BNB pegged Uniswap (UNI BEP20) is a token issued by Binance on Smart Chain; its price is pegged to Uniswap (UNI ERC20) at a ratio of 1:1.", "explorer": "https://bscscan.com/token/0xBf5140A22578168FD562DCcF235E5D43A02ce9B1", @@ -20,8 +20,8 @@ "url": "https://uniswap.org/blog/uni/" }, { - "name": "twitter", - "url": "https://twitter.com/UniswapProtocol" + "name": "x", + "url": "https://x.com/UniswapProtocol" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0xC001BBe2B87079294C63EcE98BdD0a88D761434e/info.json b/blockchains/smartchain/assets/0xC001BBe2B87079294C63EcE98BdD0a88D761434e/info.json index bdad583214215..990120ee37fa1 100644 --- a/blockchains/smartchain/assets/0xC001BBe2B87079294C63EcE98BdD0a88D761434e/info.json +++ b/blockchains/smartchain/assets/0xC001BBe2B87079294C63EcE98BdD0a88D761434e/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/evergrowcoin" }, { - "name": "twitter", - "url": "https://twitter.com/evergrowcoinEGC" + "name": "x", + "url": "https://x.com/evergrowcoinEGC" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0xC0041EF357B183448B235a8Ea73Ce4E4eC8c265F/info.json b/blockchains/smartchain/assets/0xC0041EF357B183448B235a8Ea73Ce4E4eC8c265F/info.json new file mode 100644 index 0000000000000..c5a573bf2e74c --- /dev/null +++ b/blockchains/smartchain/assets/0xC0041EF357B183448B235a8Ea73Ce4E4eC8c265F/info.json @@ -0,0 +1,21 @@ +{ + "name": "Cookie", + "website": "https://www.cookie.community/", + "description": "$COOKIE is the utility and governance token within the Cookie Ecosystem, a joint ecosystem created by two independent partners—Cookie DAO and Cookie3. It is the first MarketingFi token, which captures the $366B digital marketing value and distributes it between users, creators, and businesses.", + "explorer": "https://bscscan.com/token/0xc0041ef357b183448b235a8ea73ce4e4ec8c265f", + "type": "BEP20", + "symbol": "COOKIE", + "decimals": 18, + "status": "active", + "id": "0xC0041EF357B183448B235a8Ea73Ce4E4eC8c265F", + "links": [ + { + "name": "x", + "url": "https://x.com/Cookie3_com" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cookie/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC0041EF357B183448B235a8Ea73Ce4E4eC8c265F/logo.png b/blockchains/smartchain/assets/0xC0041EF357B183448B235a8Ea73Ce4E4eC8c265F/logo.png new file mode 100644 index 0000000000000..d9ef3cb9ee95a Binary files /dev/null and b/blockchains/smartchain/assets/0xC0041EF357B183448B235a8Ea73Ce4E4eC8c265F/logo.png differ diff --git a/blockchains/smartchain/assets/0xC07D28F8e9D9b5644676196aFE14af09e1c79AfD/info.json b/blockchains/smartchain/assets/0xC07D28F8e9D9b5644676196aFE14af09e1c79AfD/info.json new file mode 100644 index 0000000000000..88475ea855f30 --- /dev/null +++ b/blockchains/smartchain/assets/0xC07D28F8e9D9b5644676196aFE14af09e1c79AfD/info.json @@ -0,0 +1,30 @@ +{ + "name": "HoldOn4DearLife", + "type": "BEP20", + "symbol": "HODL", + "decimals": 18, + "description": "The most valuable lesson CZ ever learned: 'HODL = Hold On 4 Dear Life.' Lately, the crypto space has been plagued by short-term thinking—jeets dumping for quick gains and news-driven hype cycles. The art of building a strong, unique, and faithful meme community is being replaced by constant chasing of new pnd tokens.", + "website": "https://www.hodlbnb.vip/", + "explorer": "https://bscscan.com/token/0xC07D28F8e9D9b5644676196aFE14af09e1c79AfD", + "id": "0xC07D28F8e9D9b5644676196aFE14af09e1c79AfD", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/H0DL_BNB" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/holdon4dearlife/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/holdon4dearlife" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC07D28F8e9D9b5644676196aFE14af09e1c79AfD/logo.png b/blockchains/smartchain/assets/0xC07D28F8e9D9b5644676196aFE14af09e1c79AfD/logo.png new file mode 100644 index 0000000000000..4d7c2e5b9a24a Binary files /dev/null and b/blockchains/smartchain/assets/0xC07D28F8e9D9b5644676196aFE14af09e1c79AfD/logo.png differ diff --git a/blockchains/smartchain/assets/0xC0A696BBb66352E5b88624F1d1B8909C34Dc4E4a/info.json b/blockchains/smartchain/assets/0xC0A696BBb66352E5b88624F1d1B8909C34Dc4E4a/info.json index 09ead13f87953..acee4009a7ab5 100644 --- a/blockchains/smartchain/assets/0xC0A696BBb66352E5b88624F1d1B8909C34Dc4E4a/info.json +++ b/blockchains/smartchain/assets/0xC0A696BBb66352E5b88624F1d1B8909C34Dc4E4a/info.json @@ -26,8 +26,8 @@ "url": "https://t.me/securedshipannouncement" }, { - "name": "twitter", - "url": "https://twitter.com/SecuredShip" + "name": "x", + "url": "https://x.com/SecuredShip" }, { "name": "discord", @@ -41,4 +41,4 @@ "tags": [ "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC0B417e7F83db438631Eb5E096684dd742E5294F/info.json b/blockchains/smartchain/assets/0xC0B417e7F83db438631Eb5E096684dd742E5294F/info.json new file mode 100644 index 0000000000000..7b9d14b0c3faa --- /dev/null +++ b/blockchains/smartchain/assets/0xC0B417e7F83db438631Eb5E096684dd742E5294F/info.json @@ -0,0 +1,15 @@ +{ + "name": "ASML xStock", + "type": "BEP20", + "symbol": "ASMLx", + "decimals": 18, + "description": "ASML xStock (ASMLx) is a tracker certificate issued as a freely transferable token on selected blockchains. ASMLx tracks the price of ASML Holding N.V.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0xC0B417e7F83db438631Eb5E096684dd742E5294F", + "status": "active", + "id": "0xC0B417e7F83db438631Eb5E096684dd742E5294F", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC0B417e7F83db438631Eb5E096684dd742E5294F/logo.png b/blockchains/smartchain/assets/0xC0B417e7F83db438631Eb5E096684dd742E5294F/logo.png new file mode 100644 index 0000000000000..f4934d7e94dcd Binary files /dev/null and b/blockchains/smartchain/assets/0xC0B417e7F83db438631Eb5E096684dd742E5294F/logo.png differ diff --git a/blockchains/smartchain/assets/0xC0F1ccb976b874057eB4c57Ae75BC2ff3ed58888/info.json b/blockchains/smartchain/assets/0xC0F1ccb976b874057eB4c57Ae75BC2ff3ed58888/info.json new file mode 100644 index 0000000000000..9638e8b31f842 --- /dev/null +++ b/blockchains/smartchain/assets/0xC0F1ccb976b874057eB4c57Ae75BC2ff3ed58888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE ꓐitcoin", + "type": "BEP20", + "symbol": "FAKE ꓐꓔꓚ", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xC0F1ccb976b874057eB4c57Ae75BC2ff3ed58888", + "explorer": "https://bscscan.com/token/0xC0F1ccb976b874057eB4c57Ae75BC2ff3ed58888", + "status": "spam", + "id": "0xC0F1ccb976b874057eB4c57Ae75BC2ff3ed58888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC0c2150cf0870E2d7aBc7cDe17C20A542faFBB9B/info.json b/blockchains/smartchain/assets/0xC0c2150cf0870E2d7aBc7cDe17C20A542faFBB9B/info.json new file mode 100644 index 0000000000000..f4a7c03830e1f --- /dev/null +++ b/blockchains/smartchain/assets/0xC0c2150cf0870E2d7aBc7cDe17C20A542faFBB9B/info.json @@ -0,0 +1,15 @@ +{ + "name": "TeraWulf xStock", + "type": "BEP20", + "symbol": "WULFx", + "decimals": 18, + "description": "TeraWulf xStock (WULFx) is a tracker certificate issued as a freely transferable token on selected blockchains. WULFx tracks the price of TeraWulf Inc.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0xC0c2150cf0870E2d7aBc7cDe17C20A542faFBB9B", + "status": "active", + "id": "0xC0c2150cf0870E2d7aBc7cDe17C20A542faFBB9B", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC0c2150cf0870E2d7aBc7cDe17C20A542faFBB9B/logo.png b/blockchains/smartchain/assets/0xC0c2150cf0870E2d7aBc7cDe17C20A542faFBB9B/logo.png new file mode 100644 index 0000000000000..9eed14f59158e Binary files /dev/null and b/blockchains/smartchain/assets/0xC0c2150cf0870E2d7aBc7cDe17C20A542faFBB9B/logo.png differ diff --git a/blockchains/smartchain/assets/0xC142ba8ccD36d80C3a001342fb83E4C3d218A873/info.json b/blockchains/smartchain/assets/0xC142ba8ccD36d80C3a001342fb83E4C3d218A873/info.json new file mode 100644 index 0000000000000..ec89163eb449c --- /dev/null +++ b/blockchains/smartchain/assets/0xC142ba8ccD36d80C3a001342fb83E4C3d218A873/info.json @@ -0,0 +1,24 @@ +{ + "name": "Super Micro Computer (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "SMCIon is the Ondo Tokenized version of Super Micro Computer, giving tokenholders economic exposure similar to holding SMCI and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xc142ba8ccd36d80c3a001342fb83e4c3d218a873", + "type": "BEP20", + "symbol": "SMCIon", + "decimals": 18, + "status": "active", + "id": "0xC142ba8ccD36d80C3a001342fb83E4C3d218A873", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/super-micro-computer-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC142ba8ccD36d80C3a001342fb83E4C3d218A873/logo.png b/blockchains/smartchain/assets/0xC142ba8ccD36d80C3a001342fb83E4C3d218A873/logo.png new file mode 100644 index 0000000000000..6e354498c339c Binary files /dev/null and b/blockchains/smartchain/assets/0xC142ba8ccD36d80C3a001342fb83E4C3d218A873/logo.png differ diff --git a/blockchains/smartchain/assets/0xC146B7CdBaff065090077151d391f4c96Aa09e0C/info.json b/blockchains/smartchain/assets/0xC146B7CdBaff065090077151d391f4c96Aa09e0C/info.json index d5ccd5d272b83..c8f6719631e38 100644 --- a/blockchains/smartchain/assets/0xC146B7CdBaff065090077151d391f4c96Aa09e0C/info.json +++ b/blockchains/smartchain/assets/0xC146B7CdBaff065090077151d391f4c96Aa09e0C/info.json @@ -10,8 +10,8 @@ "id": "0xC146B7CdBaff065090077151d391f4c96Aa09e0C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MulChainCapital" + "name": "x", + "url": "https://x.com/MulChainCapital" }, { "name": "github", @@ -38,4 +38,4 @@ "defi", "deflationary" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC16f47C4A7eD39372B9a0e3e2016cEDe9b4cB83a/info.json b/blockchains/smartchain/assets/0xC16f47C4A7eD39372B9a0e3e2016cEDe9b4cB83a/info.json new file mode 100644 index 0000000000000..bc6d47d1bdce2 --- /dev/null +++ b/blockchains/smartchain/assets/0xC16f47C4A7eD39372B9a0e3e2016cEDe9b4cB83a/info.json @@ -0,0 +1,28 @@ +{ + "name": "VanEck Rare Earth and Strategic Metals ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "REMXon", + "decimals": 18, + "description": "REMXon is the Ondo Tokenized version of the VanEck Rare Earth and Strategic Metals ETF, giving tokenholders economic exposure similar to holding REMX and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xC16f47C4A7eD39372B9a0e3e2016cEDe9b4cB83a", + "status": "active", + "id": "0xC16f47C4A7eD39372B9a0e3e2016cEDe9b4cB83a", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vaneck-rare-earth-and-strategic-metals-etf-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vaneck-rare-earth-and-strategic-metals-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC16f47C4A7eD39372B9a0e3e2016cEDe9b4cB83a/logo.png b/blockchains/smartchain/assets/0xC16f47C4A7eD39372B9a0e3e2016cEDe9b4cB83a/logo.png new file mode 100644 index 0000000000000..88eb0a6cce178 Binary files /dev/null and b/blockchains/smartchain/assets/0xC16f47C4A7eD39372B9a0e3e2016cEDe9b4cB83a/logo.png differ diff --git a/blockchains/smartchain/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json b/blockchains/smartchain/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json index e5f8520fca626..ead44634f19d2 100644 --- a/blockchains/smartchain/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json +++ b/blockchains/smartchain/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json @@ -18,8 +18,8 @@ "url": "https://coingecko.com/en/coins/everrise" }, { - "name": "twitter", - "url": "https://twitter.com/everrise" + "name": "x", + "url": "https://x.com/everrise" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xC183062db25FC96325485ea369C979CE881Ac0eA/info.json b/blockchains/smartchain/assets/0xC183062db25FC96325485ea369C979CE881Ac0eA/info.json index 01f1d234dfa41..9c1745203d9ab 100644 --- a/blockchains/smartchain/assets/0xC183062db25FC96325485ea369C979CE881Ac0eA/info.json +++ b/blockchains/smartchain/assets/0xC183062db25FC96325485ea369C979CE881Ac0eA/info.json @@ -10,8 +10,8 @@ "id": "0xC183062db25FC96325485ea369C979CE881Ac0eA", "links": [ { - "name": "twitter", - "url": "https://twitter.com/shibelon_moon" + "name": "x", + "url": "https://x.com/shibelon_moon" }, { "name": "docs", diff --git a/blockchains/smartchain/assets/0xC18994df2Dfd0C2767bB1758bAe83e95762bBea3/info.json b/blockchains/smartchain/assets/0xC18994df2Dfd0C2767bB1758bAe83e95762bBea3/info.json index bbb4b9dc10e52..57f84f433f355 100644 --- a/blockchains/smartchain/assets/0xC18994df2Dfd0C2767bB1758bAe83e95762bBea3/info.json +++ b/blockchains/smartchain/assets/0xC18994df2Dfd0C2767bB1758bAe83e95762bBea3/info.json @@ -1,7 +1,7 @@ { "name": "Elon Peg", "website": "https://elonpeg.com/", - "description": "ElonPeg presents a new financial model for the now-common deflationary token: automated burn pegged to the Twitter account of the one and only Elon. Our system is unique, combining outside If-This-Then-That style API calls to scour Twitter regularly, highly secure serverless compute resources to take blockchain requests, and a unique BurnUponTweeting contract to transparently execute a 0.5% burn upon tweeting, rewarding holders with reflections and diminishing supply to hedge against volatility.", + "description": "ElonPeg presents a new financial model for the now-common deflationary token: automated burn pegged to the x account of the one and only Elon. Our system is unique, combining outside If-This-Then-That style API calls to scour x regularly, highly secure serverless compute resources to take blockchain requests, and a unique BurnUponTweeting contract to transparently execute a 0.5% burn upon tweeting, rewarding holders with reflections and diminishing supply to hedge against volatility.", "explorer": "https://bscscan.com/token/0xC18994df2Dfd0C2767bB1758bAe83e95762bBea3", "type": "BEP20", "symbol": "ELONPEG", diff --git a/blockchains/smartchain/assets/0xC1CD1fc18fE1Ec87A24F2858cAC493CcA86632c6/info.json b/blockchains/smartchain/assets/0xC1CD1fc18fE1Ec87A24F2858cAC493CcA86632c6/info.json index fbed0062b9611..784ef9f6f0ce0 100644 --- a/blockchains/smartchain/assets/0xC1CD1fc18fE1Ec87A24F2858cAC493CcA86632c6/info.json +++ b/blockchains/smartchain/assets/0xC1CD1fc18fE1Ec87A24F2858cAC493CcA86632c6/info.json @@ -10,8 +10,8 @@ "id": "0xC1CD1fc18fE1Ec87A24F2858cAC493CcA86632c6", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BigboysCoin" + "name": "x", + "url": "https://x.com/BigboysCoin" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0xC2C7fcdDC37f6737ca2481ebda6B81Ee279fE20C/info.json b/blockchains/smartchain/assets/0xC2C7fcdDC37f6737ca2481ebda6B81Ee279fE20C/info.json new file mode 100644 index 0000000000000..6132f43bfa155 --- /dev/null +++ b/blockchains/smartchain/assets/0xC2C7fcdDC37f6737ca2481ebda6B81Ee279fE20C/info.json @@ -0,0 +1,28 @@ +{ + "name": "Kanzhun (Ondo Tokenized)", + "type": "BEP20", + "symbol": "BZon", + "decimals": 18, + "description": "BZon is the Ondo Tokenized version of Kanzhun, giving tokenholders economic exposure similar to holding BZ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xC2C7fcdDC37f6737ca2481ebda6B81Ee279fE20C", + "status": "active", + "id": "0xC2C7fcdDC37f6737ca2481ebda6B81Ee279fE20C", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kanzhun-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kanzhun-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC2C7fcdDC37f6737ca2481ebda6B81Ee279fE20C/logo.png b/blockchains/smartchain/assets/0xC2C7fcdDC37f6737ca2481ebda6B81Ee279fE20C/logo.png new file mode 100644 index 0000000000000..b409555846521 Binary files /dev/null and b/blockchains/smartchain/assets/0xC2C7fcdDC37f6737ca2481ebda6B81Ee279fE20C/logo.png differ diff --git a/blockchains/smartchain/assets/0xC3137c696796D69F783CD0Be4aB4bB96814234Aa/info.json b/blockchains/smartchain/assets/0xC3137c696796D69F783CD0Be4aB4bB96814234Aa/info.json index 83a67df30cede..b9c3dc1e11085 100644 --- a/blockchains/smartchain/assets/0xC3137c696796D69F783CD0Be4aB4bB96814234Aa/info.json +++ b/blockchains/smartchain/assets/0xC3137c696796D69F783CD0Be4aB4bB96814234Aa/info.json @@ -10,8 +10,8 @@ "id": "0xC3137c696796D69F783CD0Be4aB4bB96814234Aa", "links": [ { - "name": "twitter", - "url": "https://twitter.com/pepa_inu" + "name": "x", + "url": "https://x.com/pepa_inu" }, { "name": "telegram", @@ -40,4 +40,4 @@ "staking", "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC3571b3f9721D07919dc42af7fce2784B56e8E3c/info.json b/blockchains/smartchain/assets/0xC3571b3f9721D07919dc42af7fce2784B56e8E3c/info.json new file mode 100644 index 0000000000000..802c01780d703 --- /dev/null +++ b/blockchains/smartchain/assets/0xC3571b3f9721D07919dc42af7fce2784B56e8E3c/info.json @@ -0,0 +1,17 @@ +{ + "name": "Chengpang Zhoa", + "symbol": "ZHOA", + "website": "https://zhoa.xyz/", + "description": "Chengpang Zhoa is a community-driven meme token on the BNB Chain, inspired by Changpeng Zhao, the founder of Binance and BNB known as CZ. This token features a humorous and caricatured version of his name and likeness adding a hilarious touch to the character. If Yu C*nt Holdl Yu Wund bi reech.", + "explorer": "https://bscscan.com/token/0xc3571b3f9721d07919dc42af7fce2784b56e8e3c", + "decimals": 18, + "status": "active", + "id": "0xC3571b3f9721D07919dc42af7fce2784B56e8E3c", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/chengpangzhoa" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC3571b3f9721D07919dc42af7fce2784B56e8E3c/logo.png b/blockchains/smartchain/assets/0xC3571b3f9721D07919dc42af7fce2784B56e8E3c/logo.png new file mode 100644 index 0000000000000..4fec37da89f5b Binary files /dev/null and b/blockchains/smartchain/assets/0xC3571b3f9721D07919dc42af7fce2784B56e8E3c/logo.png differ diff --git a/blockchains/smartchain/assets/0xC37042A7a4fa510D8884a433762aB87257B91965/info.json b/blockchains/smartchain/assets/0xC37042A7a4fa510D8884a433762aB87257B91965/info.json new file mode 100644 index 0000000000000..cdbad33bdce79 --- /dev/null +++ b/blockchains/smartchain/assets/0xC37042A7a4fa510D8884a433762aB87257B91965/info.json @@ -0,0 +1,24 @@ +{ + "name": "Taiwan Semiconductor Manufacturing (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "TSMon is the Ondo Tokenized version of Taiwan Semiconductor Manufacturing, giving tokenholders economic exposure similar to holding TSM and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xc37042a7a4fa510d8884a433762ab87257b91965", + "type": "BEP20", + "symbol": "TSMon", + "decimals": 18, + "status": "active", + "id": "0xC37042A7a4fa510D8884a433762aB87257B91965", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/taiwan-semiconductor-manufacturing-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC37042A7a4fa510D8884a433762aB87257B91965/logo.png b/blockchains/smartchain/assets/0xC37042A7a4fa510D8884a433762aB87257B91965/logo.png new file mode 100644 index 0000000000000..229a2857af77b Binary files /dev/null and b/blockchains/smartchain/assets/0xC37042A7a4fa510D8884a433762aB87257B91965/logo.png differ diff --git a/blockchains/smartchain/assets/0xC3Ce6763738861cc8aaa36BcB9fE30bA88384444/info.json b/blockchains/smartchain/assets/0xC3Ce6763738861cc8aaa36BcB9fE30bA88384444/info.json new file mode 100644 index 0000000000000..4e7655d5f1f89 --- /dev/null +++ b/blockchains/smartchain/assets/0xC3Ce6763738861cc8aaa36BcB9fE30bA88384444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDKG", + "type": "BEP20", + "symbol": "FAKE USDKG", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xC3Ce6763738861cc8aaa36BcB9fE30bA88384444", + "explorer": "https://bscscan.com/token/0xC3Ce6763738861cc8aaa36BcB9fE30bA88384444", + "status": "spam", + "id": "0xC3Ce6763738861cc8aaa36BcB9fE30bA88384444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC3afDe95B6Eb9ba8553cDAea6645D45fB3a7FAF5/info.json b/blockchains/smartchain/assets/0xC3afDe95B6Eb9ba8553cDAea6645D45fB3a7FAF5/info.json index fd5ddba1b65b7..548d9578fb75e 100644 --- a/blockchains/smartchain/assets/0xC3afDe95B6Eb9ba8553cDAea6645D45fB3a7FAF5/info.json +++ b/blockchains/smartchain/assets/0xC3afDe95B6Eb9ba8553cDAea6645D45fB3a7FAF5/info.json @@ -10,8 +10,8 @@ "id": "0xC3afDe95B6Eb9ba8553cDAea6645D45fB3a7FAF5", "links": [ { - "name": "twitter", - "url": "https://twitter.com/kibainuworld" + "name": "x", + "url": "https://x.com/kibainuworld" }, { "name": "telegram", @@ -37,4 +37,4 @@ "tags": [ "memes" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC409eC8a33f31437Ed753C82EEd3c5F16d6D7e22/info.json b/blockchains/smartchain/assets/0xC409eC8a33f31437Ed753C82EEd3c5F16d6D7e22/info.json index c8c0f051ca0f7..c39f27da0418f 100644 --- a/blockchains/smartchain/assets/0xC409eC8a33f31437Ed753C82EEd3c5F16d6D7e22/info.json +++ b/blockchains/smartchain/assets/0xC409eC8a33f31437Ed753C82EEd3c5F16d6D7e22/info.json @@ -10,8 +10,8 @@ "id": "0xC409eC8a33f31437Ed753C82EEd3c5F16d6D7e22", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TOKAU_JP" + "name": "x", + "url": "https://x.com/TOKAU_JP" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xC468aCf451922712Cf45aF9801dF89578B0418b4/info.json b/blockchains/smartchain/assets/0xC468aCf451922712Cf45aF9801dF89578B0418b4/info.json new file mode 100644 index 0000000000000..24ba3b48e9da0 --- /dev/null +++ b/blockchains/smartchain/assets/0xC468aCf451922712Cf45aF9801dF89578B0418b4/info.json @@ -0,0 +1,14 @@ +{ + "name": "DOODiPALS", + "type": "BEP20", + "symbol": "DOODi", + "decimals": 18, + "website": "https://four.meme/token/0xC468aCf451922712Cf45aF9801dF89578B0418b4", + "description": "DOODify the world!", + "explorer": "https://bscscan.com/token/0xC468aCf451922712Cf45aF9801dF89578B0418b4", + "status": "active", + "id": "0xC468aCf451922712Cf45aF9801dF89578B0418b4", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC468aCf451922712Cf45aF9801dF89578B0418b4/logo.png b/blockchains/smartchain/assets/0xC468aCf451922712Cf45aF9801dF89578B0418b4/logo.png new file mode 100644 index 0000000000000..45c63bb20d0aa Binary files /dev/null and b/blockchains/smartchain/assets/0xC468aCf451922712Cf45aF9801dF89578B0418b4/logo.png differ diff --git a/blockchains/smartchain/assets/0xC477c189d6C572F6C618eA76658B062b1530224c/info.json b/blockchains/smartchain/assets/0xC477c189d6C572F6C618eA76658B062b1530224c/info.json index fb65a1c112f73..49ffb8a41894e 100644 --- a/blockchains/smartchain/assets/0xC477c189d6C572F6C618eA76658B062b1530224c/info.json +++ b/blockchains/smartchain/assets/0xC477c189d6C572F6C618eA76658B062b1530224c/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/CryptonlyFanz" }, { - "name": "twitter", - "url": "https://twitter.com/CryptonlyFanz" + "name": "x", + "url": "https://x.com/CryptonlyFanz" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC4A1cc5cA8955a4650BDC109bddf110E33a1e344/info.json b/blockchains/smartchain/assets/0xC4A1cc5cA8955a4650BDC109bddf110E33a1e344/info.json new file mode 100644 index 0000000000000..7fe21cb7bef56 --- /dev/null +++ b/blockchains/smartchain/assets/0xC4A1cc5cA8955a4650BDC109bddf110E33a1e344/info.json @@ -0,0 +1,48 @@ +{ + "name": "rzusd", + "type": "BEP20", + "symbol": "RZUSD", + "decimals": 18, + "website": "https://usd.rz.game", + "description": "RZUSD is a decentralized, crypto-backed stablecoin powering the RZChain ecosystem with secure, fast, and low-cost transactions.", + "explorer": "https://bscscan.com/token/0xc4a1cc5ca8955a4650bdc109bddf110e33a1e344", + "status": "active", + "id": "0xC4A1cc5cA8955a4650BDC109bddf110E33a1e344", + "links": [ + { + "name": "x", + "url": "https://x.com/rzusd_rz" + }, + { + "name": "github", + "url": "https://github.com/rz-game-dev" + }, + { + "name": "telegram", + "url": "https://t.me/RZUSD_channel" + }, + { + "name": "blog", + "url": "https://usd.rz.game/blog" + }, + { + "name": "docs", + "url": "https://github.com/Mazyar60/rzusd" + }, + { + "name": "whitepaper", + "url": "https://usd.rz.game/whitepaper" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/RZUSD" + }, + { + "name": "source_code", + "url": "https://github.com/rz-game-dev/rzusd/blob/main/contracts%2FRZUSD.sol" + } + ], + "tags": [ + "stablecoin" + ] +} diff --git a/blockchains/smartchain/assets/0xC4A1cc5cA8955a4650BDC109bddf110E33a1e344/logo.png b/blockchains/smartchain/assets/0xC4A1cc5cA8955a4650BDC109bddf110E33a1e344/logo.png new file mode 100644 index 0000000000000..eb506a50123ce Binary files /dev/null and b/blockchains/smartchain/assets/0xC4A1cc5cA8955a4650BDC109bddf110E33a1e344/logo.png differ diff --git a/blockchains/smartchain/assets/0xC4B35d3A24E3e8941c5d87fD21D0725642F50308/info.json b/blockchains/smartchain/assets/0xC4B35d3A24E3e8941c5d87fD21D0725642F50308/info.json index a9732d0cf6791..ef84e52d17b09 100644 --- a/blockchains/smartchain/assets/0xC4B35d3A24E3e8941c5d87fD21D0725642F50308/info.json +++ b/blockchains/smartchain/assets/0xC4B35d3A24E3e8941c5d87fD21D0725642F50308/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/DefiPie" }, { - "name": "twitter", - "url": "https://twitter.com/defipiepie" + "name": "x", + "url": "https://x.com/defipiepie" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xC4a1E7106d08B7FF947254B6D75cf2b877d55daF/info.json b/blockchains/smartchain/assets/0xC4a1E7106d08B7FF947254B6D75cf2b877d55daF/info.json new file mode 100644 index 0000000000000..0397f62a080cc --- /dev/null +++ b/blockchains/smartchain/assets/0xC4a1E7106d08B7FF947254B6D75cf2b877d55daF/info.json @@ -0,0 +1,46 @@ +{ + "name": "Laqira Protocol", + "website": "https://laqira.io/", + "description": "Crafting Solutions for Your Blockchain Needs", + "explorer": "https://bscscan.com/token/0xC4a1E7106d08B7FF947254B6D75cf2b877d55daF", + "type": "BEP20", + "symbol": "LQR", + "decimals": 18, + "status": "active", + "id": "0xC4a1E7106d08B7FF947254B6D75cf2b877d55daF", + "tags": [ + "defi", + "nft", + "gamefi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/laqiraprotocol/" + }, + { + "name": "x", + "url": "https://x.com/laqiraprotocol/" + }, + { + "name": "telegram", + "url": "https://t.me/LaqiraProtocol" + }, + { + "name": "telegram_news", + "url": "https://t.me/laqira_official" + }, + { + "name": "blog", + "url": "https://blog.laqira.io/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/laqira-protocol/" + }, + { + "name": "youtube", + "url": "https://youtube.com/@LaqiraProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbc81ea817b579eC0334BcA8E65E436b7cB540147/logo.png b/blockchains/smartchain/assets/0xC4a1E7106d08B7FF947254B6D75cf2b877d55daF/logo.png similarity index 100% rename from blockchains/smartchain/assets/0xbc81ea817b579eC0334BcA8E65E436b7cB540147/logo.png rename to blockchains/smartchain/assets/0xC4a1E7106d08B7FF947254B6D75cf2b877d55daF/logo.png diff --git a/blockchains/smartchain/assets/0xC4a88a72B848255Fd24Da3C1aD6755D980535FB1/info.json b/blockchains/smartchain/assets/0xC4a88a72B848255Fd24Da3C1aD6755D980535FB1/info.json new file mode 100644 index 0000000000000..3de96849a8b43 --- /dev/null +++ b/blockchains/smartchain/assets/0xC4a88a72B848255Fd24Da3C1aD6755D980535FB1/info.json @@ -0,0 +1,24 @@ +{ + "name": "Riot Platforms (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "RIOTon is the Ondo Tokenized version of Riot Platforms, giving tokenholders economic exposure similar to holding RIOT and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xc4a88a72b848255fd24da3c1ad6755d980535fb1", + "type": "BEP20", + "symbol": "RIOTon", + "decimals": 18, + "status": "active", + "id": "0xC4a88a72B848255Fd24Da3C1aD6755D980535FB1", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/riot-platforms-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC4a88a72B848255Fd24Da3C1aD6755D980535FB1/logo.png b/blockchains/smartchain/assets/0xC4a88a72B848255Fd24Da3C1aD6755D980535FB1/logo.png new file mode 100644 index 0000000000000..3ec067f7f946b Binary files /dev/null and b/blockchains/smartchain/assets/0xC4a88a72B848255Fd24Da3C1aD6755D980535FB1/logo.png differ diff --git a/blockchains/smartchain/assets/0xC4eEFF5aab678C3FF32362D80946A3f5De4a1861/info.json b/blockchains/smartchain/assets/0xC4eEFF5aab678C3FF32362D80946A3f5De4a1861/info.json index e97a2d22d0dd8..97206a95ced34 100644 --- a/blockchains/smartchain/assets/0xC4eEFF5aab678C3FF32362D80946A3f5De4a1861/info.json +++ b/blockchains/smartchain/assets/0xC4eEFF5aab678C3FF32362D80946A3f5De4a1861/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/rice-farm" }, { - "name": "twitter", - "url": "https://twitter.com/fuzionchain" + "name": "x", + "url": "https://x.com/fuzionchain" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xC53ca0d56C420E8f913316e84d2c492eDe99c61e/info.json b/blockchains/smartchain/assets/0xC53ca0d56C420E8f913316e84d2c492eDe99c61e/info.json new file mode 100644 index 0000000000000..b33b35caf1836 --- /dev/null +++ b/blockchains/smartchain/assets/0xC53ca0d56C420E8f913316e84d2c492eDe99c61e/info.json @@ -0,0 +1,32 @@ +{ + "name": "GROK", + "type": "BEP20", + "symbol": "GROK", + "decimals": 18, + "website": "https://www.grokbsc.xyz/", + "description": "Grok is a token issued on the Binance Smart Chain (BSC). We have a strong user base and a dedicated technical team, working hard to establish Grok as a popular brand.", + "explorer": "https://bscscan.com/token/0xC53ca0d56C420E8f913316e84d2c492eDe99c61e", + "status": "active", + "id": "0xC53ca0d56C420E8f913316e84d2c492eDe99c61e", + "links": [ + { + "name": "x", + "url": "https://x.com/TOKEN204999" + }, + { + "name": "telegram", + "url": "https://t.me/GROKBSC8" + }, + { + "name": "whitepaper", + "url": "https://doc.groktoken.vip" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/grok-4" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC53ca0d56C420E8f913316e84d2c492eDe99c61e/logo.png b/blockchains/smartchain/assets/0xC53ca0d56C420E8f913316e84d2c492eDe99c61e/logo.png new file mode 100644 index 0000000000000..29a4e6a018bd7 Binary files /dev/null and b/blockchains/smartchain/assets/0xC53ca0d56C420E8f913316e84d2c492eDe99c61e/logo.png differ diff --git a/blockchains/smartchain/assets/0xC544D8aB2b5ED395B96E3Ec87462801ECa579aE1/info.json b/blockchains/smartchain/assets/0xC544D8aB2b5ED395B96E3Ec87462801ECa579aE1/info.json index 0c76167d77825..f4390b53a1dfd 100644 --- a/blockchains/smartchain/assets/0xC544D8aB2b5ED395B96E3Ec87462801ECa579aE1/info.json +++ b/blockchains/smartchain/assets/0xC544D8aB2b5ED395B96E3Ec87462801ECa579aE1/info.json @@ -10,8 +10,8 @@ "id": "0xC544D8aB2b5ED395B96E3Ec87462801ECa579aE1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/StarfishOS" + "name": "x", + "url": "https://x.com/StarfishOS" }, { "name": "github", @@ -25,4 +25,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC563Ad73d229Ac33fbDC64Ab34AB27657B04158c/info.json b/blockchains/smartchain/assets/0xC563Ad73d229Ac33fbDC64Ab34AB27657B04158c/info.json new file mode 100644 index 0000000000000..572743d5cc44e --- /dev/null +++ b/blockchains/smartchain/assets/0xC563Ad73d229Ac33fbDC64Ab34AB27657B04158c/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE EURC Coin", + "type": "BEP20", + "symbol": "FAKE EURC", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xC563Ad73d229Ac33fbDC64Ab34AB27657B04158c", + "explorer": "https://bscscan.com/token/0xC563Ad73d229Ac33fbDC64Ab34AB27657B04158c", + "status": "spam", + "id": "0xC563Ad73d229Ac33fbDC64Ab34AB27657B04158c" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC598275452fA319d75ee5f176FD3B8384925b425/info.json b/blockchains/smartchain/assets/0xC598275452fA319d75ee5f176FD3B8384925b425/info.json index d0640297d40c6..318584f8b46cb 100644 --- a/blockchains/smartchain/assets/0xC598275452fA319d75ee5f176FD3B8384925b425/info.json +++ b/blockchains/smartchain/assets/0xC598275452fA319d75ee5f176FD3B8384925b425/info.json @@ -10,8 +10,8 @@ "id": "0xC598275452fA319d75ee5f176FD3B8384925b425", "links": [ { - "name": "twitter", - "url": "https://twitter.com/streamcoin_strm" + "name": "x", + "url": "https://x.com/streamcoin_strm" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xC5a83aD9f3586e143D2C718E8999206887eF9dDc/info.json b/blockchains/smartchain/assets/0xC5a83aD9f3586e143D2C718E8999206887eF9dDc/info.json index d13ebb276635d..cb24f9a3c04c7 100644 --- a/blockchains/smartchain/assets/0xC5a83aD9f3586e143D2C718E8999206887eF9dDc/info.json +++ b/blockchains/smartchain/assets/0xC5a83aD9f3586e143D2C718E8999206887eF9dDc/info.json @@ -6,8 +6,8 @@ "type": "BEP20", "links": [ { - "name": "twitter", - "url": "https://twitter.com/AnnexFinance" + "name": "x", + "url": "https://x.com/AnnexFinance" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0xC5eC40b78C6177A934d920a2780E069B27bE9590/info.json b/blockchains/smartchain/assets/0xC5eC40b78C6177A934d920a2780E069B27bE9590/info.json new file mode 100644 index 0000000000000..1bce3e55d9224 --- /dev/null +++ b/blockchains/smartchain/assets/0xC5eC40b78C6177A934d920a2780E069B27bE9590/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether Fund", + "type": "BEP20", + "symbol": "FAKE USD.F", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xC5eC40b78C6177A934d920a2780E069B27bE9590", + "explorer": "https://bscscan.com/token/0xC5eC40b78C6177A934d920a2780E069B27bE9590", + "status": "spam", + "id": "0xC5eC40b78C6177A934d920a2780E069B27bE9590" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC62eF0d8e137499833AbB05Dee47007D2b334bA6/info.json b/blockchains/smartchain/assets/0xC62eF0d8e137499833AbB05Dee47007D2b334bA6/info.json index 9e6c5be669648..f6bd566812582 100644 --- a/blockchains/smartchain/assets/0xC62eF0d8e137499833AbB05Dee47007D2b334bA6/info.json +++ b/blockchains/smartchain/assets/0xC62eF0d8e137499833AbB05Dee47007D2b334bA6/info.json @@ -10,8 +10,8 @@ "id": "0xC62eF0d8e137499833AbB05Dee47007D2b334bA6", "links": [ { - "name": "twitter", - "url": "https://twitter.com/gamexofficial1?s=21" + "name": "x", + "url": "https://x.com/gamexofficial1?s=21" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xC632F90affeC7121120275610BF17Df9963F181c/info.json b/blockchains/smartchain/assets/0xC632F90affeC7121120275610BF17Df9963F181c/info.json new file mode 100644 index 0000000000000..10fbb01e512f6 --- /dev/null +++ b/blockchains/smartchain/assets/0xC632F90affeC7121120275610BF17Df9963F181c/info.json @@ -0,0 +1,17 @@ +{ + "name": "DEBT", + "website": "https://www.thedebtbox.com", + "description": "The DEBT token is the central support and utility token for the D.E.B.T. ecosystem, which has a growing list of token projects.", + "explorer": "https://bscscan.com/token/0xc632f90affec7121120275610bf17df9963f181c", + "type": "BEP20", + "symbol": "DEBT", + "decimals": 8, + "status": "abandoned", + "id": "0xC632F90affeC7121120275610BF17Df9963F181c", + "links": [ + { + "name": "x", + "url": "https://x.com/thedebtbox" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC638a73969C0F7442Ba8F5Ffda9968434891034B/info.json b/blockchains/smartchain/assets/0xC638a73969C0F7442Ba8F5Ffda9968434891034B/info.json index 7e43ebba7dc6f..d783f2b07477f 100644 --- a/blockchains/smartchain/assets/0xC638a73969C0F7442Ba8F5Ffda9968434891034B/info.json +++ b/blockchains/smartchain/assets/0xC638a73969C0F7442Ba8F5Ffda9968434891034B/info.json @@ -10,8 +10,8 @@ "id": "0xC638a73969C0F7442Ba8F5Ffda9968434891034B", "links": [ { - "name": "twitter", - "url": "https://twitter.com/DabbDoge/" + "name": "x", + "url": "https://x.com/DabbDoge/" }, { "name": "github", @@ -41,4 +41,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC64B6aF2D11AE5F908Ea12F1C3D1888eB8Ee5639/info.json b/blockchains/smartchain/assets/0xC64B6aF2D11AE5F908Ea12F1C3D1888eB8Ee5639/info.json new file mode 100644 index 0000000000000..6fada6cdb9d94 --- /dev/null +++ b/blockchains/smartchain/assets/0xC64B6aF2D11AE5F908Ea12F1C3D1888eB8Ee5639/info.json @@ -0,0 +1,17 @@ +{ + "name": "Mashallah", + "website": "https://mashallahcto.site/", + "description": "#Mashallah - a crypto meme launched on the @Four_meme_ platform, now taken over and developed by the community!", + "explorer": "https://bscscan.com/token/0xc64b6af2d11ae5f908ea12f1c3d1888eb8ee5639", + "type": "BEP20", + "symbol": "Mashallah", + "decimals": 18, + "status": "active", + "id": "0xC64B6aF2D11AE5F908Ea12F1C3D1888eB8Ee5639", + "links": [ + { + "name": "x", + "url": "https://x.com/Mashallah_CTO" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC64B6aF2D11AE5F908Ea12F1C3D1888eB8Ee5639/logo.png b/blockchains/smartchain/assets/0xC64B6aF2D11AE5F908Ea12F1C3D1888eB8Ee5639/logo.png new file mode 100644 index 0000000000000..7c18079f6c243 Binary files /dev/null and b/blockchains/smartchain/assets/0xC64B6aF2D11AE5F908Ea12F1C3D1888eB8Ee5639/logo.png differ diff --git a/blockchains/smartchain/assets/0xC6f9eDbeE6042a237D72493bBdA3eE2c3c62F708/info.json b/blockchains/smartchain/assets/0xC6f9eDbeE6042a237D72493bBdA3eE2c3c62F708/info.json new file mode 100644 index 0000000000000..928136964c707 --- /dev/null +++ b/blockchains/smartchain/assets/0xC6f9eDbeE6042a237D72493bBdA3eE2c3c62F708/info.json @@ -0,0 +1,28 @@ +{ + "name": "NIO (Ondo Tokenized)", + "type": "BEP20", + "symbol": "NIOon", + "decimals": 18, + "description": "NIOon is the Ondo Tokenized version of NIO, giving tokenholders economic exposure similar to holding NIO and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xC6f9eDbeE6042a237D72493bBdA3eE2c3c62F708", + "status": "active", + "id": "0xC6f9eDbeE6042a237D72493bBdA3eE2c3c62F708", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/nio-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nio-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC6f9eDbeE6042a237D72493bBdA3eE2c3c62F708/logo.png b/blockchains/smartchain/assets/0xC6f9eDbeE6042a237D72493bBdA3eE2c3c62F708/logo.png new file mode 100644 index 0000000000000..71fbf20164616 Binary files /dev/null and b/blockchains/smartchain/assets/0xC6f9eDbeE6042a237D72493bBdA3eE2c3c62F708/logo.png differ diff --git a/blockchains/smartchain/assets/0xC703dA39aE3B9Db67C207c7Bad8100E1AfdC0F9c/info.json b/blockchains/smartchain/assets/0xC703dA39aE3B9Db67C207c7Bad8100E1AfdC0F9c/info.json new file mode 100644 index 0000000000000..d88d1694a0aaa --- /dev/null +++ b/blockchains/smartchain/assets/0xC703dA39aE3B9Db67C207c7Bad8100E1AfdC0F9c/info.json @@ -0,0 +1,44 @@ +{ + "name": "FRGX Finance", + "type": "BEP20", + "symbol": "FRGX", + "decimals": 18, + "website": "https://frgx.finance", + "description": "FRGX is a token on BNB Chain with a fair launch in a decentralized environment and an audience of 1.6 M users prepared over 4 years", + "explorer": "https://bscscan.com/token/0xc703da39ae3b9db67c207c7bad8100e1afdc0f9c", + "status": "active", + "id": "0xC703dA39aE3B9Db67C207c7Bad8100E1AfdC0F9c", + "links": [ + { + "name": "x", + "url": "https://x.com/FRGXfinance" + }, + { + "name": "telegram", + "url": "https://t.me/frgxfinance" + }, + { + "name": "whitepaper", + "url": "https://frgx.finance/litepaper" + }, + { + "name": "source_code", + "url": "https://bscscan.com/token/0xc703da39ae3b9db67c207c7bad8100e1afdc0f9c#code" + }, + { + "name": "docs", + "url": "https://docs.frgx.finance/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elanausd/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/frgx-finance" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC703dA39aE3B9Db67C207c7Bad8100E1AfdC0F9c/logo.png b/blockchains/smartchain/assets/0xC703dA39aE3B9Db67C207c7Bad8100E1AfdC0F9c/logo.png new file mode 100644 index 0000000000000..c556d05ed3b33 Binary files /dev/null and b/blockchains/smartchain/assets/0xC703dA39aE3B9Db67C207c7Bad8100E1AfdC0F9c/logo.png differ diff --git a/blockchains/smartchain/assets/0xC75bcC3ae0844c16Fd1881b8bb47BD509303a135/info.json b/blockchains/smartchain/assets/0xC75bcC3ae0844c16Fd1881b8bb47BD509303a135/info.json index 3788367f1cd4a..df29b77fc1bd2 100644 --- a/blockchains/smartchain/assets/0xC75bcC3ae0844c16Fd1881b8bb47BD509303a135/info.json +++ b/blockchains/smartchain/assets/0xC75bcC3ae0844c16Fd1881b8bb47BD509303a135/info.json @@ -10,8 +10,8 @@ "id": "0xC75bcC3ae0844c16Fd1881b8bb47BD509303a135", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Metaverse_Inu" + "name": "x", + "url": "https://x.com/Metaverse_Inu" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xC762043E211571eB34f1ef377e5e8e76914962f9/info.json b/blockchains/smartchain/assets/0xC762043E211571eB34f1ef377e5e8e76914962f9/info.json index 0d7a0b08beab8..6f4ac39adb40a 100644 --- a/blockchains/smartchain/assets/0xC762043E211571eB34f1ef377e5e8e76914962f9/info.json +++ b/blockchains/smartchain/assets/0xC762043E211571eB34f1ef377e5e8e76914962f9/info.json @@ -10,8 +10,8 @@ "id": "0xC762043E211571eB34f1ef377e5e8e76914962f9", "links": [ { - "name": "twitter", - "url": "https://twitter.com/apecoin" + "name": "x", + "url": "https://x.com/apecoin" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0xC79d1fD14F514cD713b5cA43D288a782Ae53eAb2/info.json b/blockchains/smartchain/assets/0xC79d1fD14F514cD713b5cA43D288a782Ae53eAb2/info.json index a8b9cae8e532d..3b4120a878e4d 100644 --- a/blockchains/smartchain/assets/0xC79d1fD14F514cD713b5cA43D288a782Ae53eAb2/info.json +++ b/blockchains/smartchain/assets/0xC79d1fD14F514cD713b5cA43D288a782Ae53eAb2/info.json @@ -1,45 +1,41 @@ { - "name": "XcelDefi", - "website": "https://www.xceldefi.com", - "description": "XcelDefi is native token of XcelLab ecosystem and is the governance token for XcelSwap, a decentralised exchange built to power the future of finance by the XcelLab ecosystem. Users can vote by holding and staking XcelDefi and propose changes in the mechanics of XcelSwap.", - "explorer": "https://bscscan.com/token/0xC79d1fD14F514cD713b5cA43D288a782Ae53eAb2", - "type": "BEP20", - "symbol": "XLD", - "decimals": 18, - "status": "active", - "id": "0xC79d1fD14F514cD713b5cA43D288a782Ae53eAb2", - "links": [ - { - "name": "github", - "url": "https://github.com/XcelDefi" - }, - { - "name": "whitepaper", - "url": "https://www.xceldefi.com/whitepaper" - }, - { - "name": "telegram", - "url": "https://t.me/XcelToken" - }, - { - "name": "twitter", - "url": "https://twitter.com/XcelDefi" - }, - { - "name": "medium", - "url": "https://xceldefi.medium.com" - }, - { - "name": "discord", - "url": "https://discord.com/channels/843873130808213524" - }, - { - "name": "facebook", - "url": "https://facebook.com/XcelDefiOfficial" - }, - { - "name": "youtube", - "url": "https://youtube.com/channel/UCJwGB8JGkh15KBV8a5NwsJA" - } - ] + "name": "XcelPay", + "website": "https://www.xcelpay.io", + "description": "XLD is the native token of XcelPay ecosystem. It's a key part of an ecosystem designed to integrate blockchain technology into everyday transactions and experiences. From secure asset management in XcelPay Wallet to real-world applications in XcelTrip, XcelPay (XLD) is paving the way for a more inclusive, accessible, and practical use of cryptocurrencies in daily life.", + "explorer": "https://bscscan.com/token/0xC79d1fD14F514cD713b5cA43D288a782Ae53eAb2", + "type": "BEP20", + "symbol": "XLD", + "decimals": 18, + "status": "active", + "id": "0xC79d1fD14F514cD713b5cA43D288a782Ae53eAb2", + "links": [ + { + "name": "github", + "url": "https://github.com/xceltripinc/" + }, + { + "name": "whitepaper", + "url": "https://xcelpay.io/whitepaper" + }, + { + "name": "telegram", + "url": "https://t.me/XcelToken" + }, + { + "name": "x", + "url": "https://x.com/XcelPayWallet" + }, + { + "name": "medium", + "url": "https://medium.com/xcellab-magazine" + }, + { + "name": "facebook", + "url": "https://facebook.com/xcelpay" + }, + { + "name": "youtube", + "url": "https://youtube.com/@xcelpay" + } + ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC79d1fD14F514cD713b5cA43D288a782Ae53eAb2/logo.png b/blockchains/smartchain/assets/0xC79d1fD14F514cD713b5cA43D288a782Ae53eAb2/logo.png index 1046fe1f6a088..4ba143a0de086 100644 Binary files a/blockchains/smartchain/assets/0xC79d1fD14F514cD713b5cA43D288a782Ae53eAb2/logo.png and b/blockchains/smartchain/assets/0xC79d1fD14F514cD713b5cA43D288a782Ae53eAb2/logo.png differ diff --git a/blockchains/smartchain/assets/0xC7B7844494c516b840A7a4575ff3E60ff0f056a9/info.json b/blockchains/smartchain/assets/0xC7B7844494c516b840A7a4575ff3E60ff0f056a9/info.json index 8b79c65947901..d9bb74cd44a9b 100644 --- a/blockchains/smartchain/assets/0xC7B7844494c516b840A7a4575ff3E60ff0f056a9/info.json +++ b/blockchains/smartchain/assets/0xC7B7844494c516b840A7a4575ff3E60ff0f056a9/info.json @@ -10,8 +10,8 @@ "id": "0xC7B7844494c516b840A7a4575ff3E60ff0f056a9", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MechMaster_IO" + "name": "x", + "url": "https://x.com/MechMaster_IO" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xC7dDF690942b74171F7e3763baf260B686516bc0/info.json b/blockchains/smartchain/assets/0xC7dDF690942b74171F7e3763baf260B686516bc0/info.json index f1e462f36fcde..485788c4df9e4 100644 --- a/blockchains/smartchain/assets/0xC7dDF690942b74171F7e3763baf260B686516bc0/info.json +++ b/blockchains/smartchain/assets/0xC7dDF690942b74171F7e3763baf260B686516bc0/info.json @@ -10,8 +10,8 @@ "id": "0xC7dDF690942b74171F7e3763baf260B686516bc0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/AtlantisFi" + "name": "x", + "url": "https://x.com/AtlantisFi" }, { "name": "whitepaper", diff --git a/blockchains/smartchain/assets/0xC808592e5b4585F982bc728d63b227634bc007a4/info.json b/blockchains/smartchain/assets/0xC808592e5b4585F982bc728d63b227634bc007a4/info.json index 11ce34a4cbbb1..35f0167ffde45 100644 --- a/blockchains/smartchain/assets/0xC808592e5b4585F982bc728d63b227634bc007a4/info.json +++ b/blockchains/smartchain/assets/0xC808592e5b4585F982bc728d63b227634bc007a4/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/cryptofrogfinance" }, { - "name": "twitter", - "url": "https://twitter.com/CryptoFrogFi" + "name": "x", + "url": "https://x.com/CryptoFrogFi" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xC836DCC9c880D4558C301e6d439db1B1DCaF7F3a/info.json b/blockchains/smartchain/assets/0xC836DCC9c880D4558C301e6d439db1B1DCaF7F3a/info.json index 8398364aa9284..e1522cee00b14 100644 --- a/blockchains/smartchain/assets/0xC836DCC9c880D4558C301e6d439db1B1DCaF7F3a/info.json +++ b/blockchains/smartchain/assets/0xC836DCC9c880D4558C301e6d439db1B1DCaF7F3a/info.json @@ -10,12 +10,12 @@ "id": "0xC836DCC9c880D4558C301e6d439db1B1DCaF7F3a", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BNB_GOLD" + "name": "x", + "url": "https://x.com/BNB_GOLD" }, { "name": "telegram", "url": "https://t.me/bnbgoldtoken" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC882910038927090B5c4e03d3dBe506A05168546/info.json b/blockchains/smartchain/assets/0xC882910038927090B5c4e03d3dBe506A05168546/info.json new file mode 100644 index 0000000000000..a55bba344ee0a --- /dev/null +++ b/blockchains/smartchain/assets/0xC882910038927090B5c4e03d3dBe506A05168546/info.json @@ -0,0 +1,36 @@ +{ + "name": "Kissan", + "type": "BEP20", + "symbol": "KSN", + "decimals": 18, + "website": "https://kissantoken.com", + "description": "At Kissan Token, we are revolutionizing the agricultural sector by merging traditional farming practices with cutting-edge blockchain technology. Our mission is to empower farmers, enhance financial inclusion, and foster sustainability through a decentralized ecosystem that benefits everyone from producers to consumers. Born out of a deep understanding of the challenges faced by farmers, Kissan Token aims to create a future where agriculture is not only sustainable but also prosperous for all stakeholders.", + "explorer": "https://bscscan.com/token/0xC882910038927090B5c4e03d3dBe506A05168546", + "status": "active", + "id": "0xC882910038927090B5c4e03d3dBe506A05168546", + "links": [ + { + "name": "x", + "url": "https://x.com/ksntoken" + }, + { + "name": "github", + "url": "https://github.com/neeraj8696/kissan-token" + }, + { + "name": "telegram", + "url": "https://t.me/kissan_token" + }, + { + "name": "telegram_news", + "url": "https://t.me/KissanCoin" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.kissantoken.com/" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC882910038927090B5c4e03d3dBe506A05168546/logo.png b/blockchains/smartchain/assets/0xC882910038927090B5c4e03d3dBe506A05168546/logo.png new file mode 100644 index 0000000000000..c1167b9bf5e47 Binary files /dev/null and b/blockchains/smartchain/assets/0xC882910038927090B5c4e03d3dBe506A05168546/logo.png differ diff --git a/blockchains/smartchain/assets/0xC8A11F433512C16ED895245F34BCC2ca44eb06bd/info.json b/blockchains/smartchain/assets/0xC8A11F433512C16ED895245F34BCC2ca44eb06bd/info.json index e5e10e4c157a7..ad57249e7a6e4 100644 --- a/blockchains/smartchain/assets/0xC8A11F433512C16ED895245F34BCC2ca44eb06bd/info.json +++ b/blockchains/smartchain/assets/0xC8A11F433512C16ED895245F34BCC2ca44eb06bd/info.json @@ -6,12 +6,12 @@ "website": "https://kissan.io/", "description": "KSN offerings (ICOs) are a way to raise capital or participate in investment opportunities. Our prime focus is to make our clients stay, for that, we have built our business in a manner that would help you to trade profitability, and would help us to buy your side.", "explorer": "https://bscscan.com/token/0xC8A11F433512C16ED895245F34BCC2ca44eb06bd", - "status": "active", + "status": "abandoned", "id": "0xC8A11F433512C16ED895245F34BCC2ca44eb06bd", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ksntoken" + "name": "x", + "url": "https://x.com/ksntoken" }, { "name": "telegram", @@ -29,4 +29,4 @@ "tags": [ "gamefi" ] -} \ No newline at end of file +} diff --git a/blockchains/smartchain/assets/0xC8A11F433512C16ED895245F34BCC2ca44eb06bd/logo.png b/blockchains/smartchain/assets/0xC8A11F433512C16ED895245F34BCC2ca44eb06bd/logo.png deleted file mode 100644 index 2fddf8ccfd347..0000000000000 Binary files a/blockchains/smartchain/assets/0xC8A11F433512C16ED895245F34BCC2ca44eb06bd/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xC9849E6fdB743d08fAeE3E34dd2D1bc69EA11a51/info.json b/blockchains/smartchain/assets/0xC9849E6fdB743d08fAeE3E34dd2D1bc69EA11a51/info.json index 0ee50f1cd5243..6225ff3036a47 100644 --- a/blockchains/smartchain/assets/0xC9849E6fdB743d08fAeE3E34dd2D1bc69EA11a51/info.json +++ b/blockchains/smartchain/assets/0xC9849E6fdB743d08fAeE3E34dd2D1bc69EA11a51/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/PancakeBunny-finance/Bunny" }, { - "name": "twitter", - "url": "https://twitter.com/PancakeBunnyFin" + "name": "x", + "url": "https://x.com/PancakeBunnyFin" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xC9882dEF23bc42D53895b8361D0b1EDC7570Bc6A/info.json b/blockchains/smartchain/assets/0xC9882dEF23bc42D53895b8361D0b1EDC7570Bc6A/info.json new file mode 100644 index 0000000000000..65d6a772114ae --- /dev/null +++ b/blockchains/smartchain/assets/0xC9882dEF23bc42D53895b8361D0b1EDC7570Bc6A/info.json @@ -0,0 +1,14 @@ +{ + "name": "FistToken", + "type": "BEP20", + "symbol": "FIST", + "decimals": 6, + "website": "https://bscscan.com/address/0xC9882dEF23bc42D53895b8361D0b1EDC7570Bc6A", + "description": "FIST is the governance token of FstSwap, a decentralized exchange protocol based on BSC Binance Smart Chain, with a total of 200 million tokens in full circulation", + "explorer": "https://bscscan.com/token/0xC9882dEF23bc42D53895b8361D0b1EDC7570Bc6A", + "status": "active", + "id": "0xC9882dEF23bc42D53895b8361D0b1EDC7570Bc6A", + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC9882dEF23bc42D53895b8361D0b1EDC7570Bc6A/logo.png b/blockchains/smartchain/assets/0xC9882dEF23bc42D53895b8361D0b1EDC7570Bc6A/logo.png new file mode 100644 index 0000000000000..e50fb522959c5 Binary files /dev/null and b/blockchains/smartchain/assets/0xC9882dEF23bc42D53895b8361D0b1EDC7570Bc6A/logo.png differ diff --git a/blockchains/smartchain/assets/0xC9Bfb93d75645c4681BB63794ABf1acAD44725e7/info.json b/blockchains/smartchain/assets/0xC9Bfb93d75645c4681BB63794ABf1acAD44725e7/info.json new file mode 100644 index 0000000000000..029d204db25e9 --- /dev/null +++ b/blockchains/smartchain/assets/0xC9Bfb93d75645c4681BB63794ABf1acAD44725e7/info.json @@ -0,0 +1,29 @@ +{ + "name": "trip", + "type": "BEP20", + "symbol": "TRIP", + "decimals": 18, + "website": "https://Trip.game", + "description": "Trip Token is a blockchain-powered platform aiming to revolutionize the travel and tourism industry by providing a seamless, secure, and rewarding experience for travelers and stakeholders.", + "explorer": "https://bscscan.com/token/0xC9Bfb93d75645c4681BB63794ABf1acAD44725e7", + "status": "active", + "id": "0xC9Bfb93d75645c4681BB63794ABf1acAD44725e7", + "links": [ + { + "name": "x", + "url": "https://x.com/trip_token1" + }, + { + "name": "telegram", + "url": "https://t.me/trip_token" + }, + { + "name": "whitepaper", + "url": "https://trip.game/whitepaper" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/trip" + } + ] +} diff --git a/blockchains/smartchain/assets/0xC9Bfb93d75645c4681BB63794ABf1acAD44725e7/logo.png b/blockchains/smartchain/assets/0xC9Bfb93d75645c4681BB63794ABf1acAD44725e7/logo.png new file mode 100644 index 0000000000000..b74c654935329 Binary files /dev/null and b/blockchains/smartchain/assets/0xC9Bfb93d75645c4681BB63794ABf1acAD44725e7/logo.png differ diff --git a/blockchains/smartchain/assets/0xC9ac219C6A3eB0E0AcBb5911099c6a79D29F585d/info.json b/blockchains/smartchain/assets/0xC9ac219C6A3eB0E0AcBb5911099c6a79D29F585d/info.json new file mode 100644 index 0000000000000..a2bac68141f39 --- /dev/null +++ b/blockchains/smartchain/assets/0xC9ac219C6A3eB0E0AcBb5911099c6a79D29F585d/info.json @@ -0,0 +1,21 @@ +{ + "name": "CATEX", + "symbol": "CATEX", + "type": "BEP20", + "decimals": 9, + "description": "CATEX strives to become the most beloved and successful project by adhering to all market standards and surpassing all indicators. The CATEX community is robust and supportive, encouraging each other to succeed.", + "website": "https://catextoken.com/", + "explorer": "https://bscscan.com/token/0xc9ac219c6a3eb0e0acbb5911099c6a79d29f585d", + "status": "active", + "id": "0xC9ac219C6A3eB0E0AcBb5911099c6a79D29F585d", + "links": [ + { + "name": "x", + "url": "https://x.com/catextoken" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/catex" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC9ac219C6A3eB0E0AcBb5911099c6a79D29F585d/logo.png b/blockchains/smartchain/assets/0xC9ac219C6A3eB0E0AcBb5911099c6a79D29F585d/logo.png new file mode 100644 index 0000000000000..c8d4e76e48f59 Binary files /dev/null and b/blockchains/smartchain/assets/0xC9ac219C6A3eB0E0AcBb5911099c6a79D29F585d/logo.png differ diff --git a/blockchains/smartchain/assets/0xCA1aCAB14e85F30996aC83c64fF93Ded7586977C/info.json b/blockchains/smartchain/assets/0xCA1aCAB14e85F30996aC83c64fF93Ded7586977C/info.json index 3a36249f40c44..5e8dfa9dcc40c 100644 --- a/blockchains/smartchain/assets/0xCA1aCAB14e85F30996aC83c64fF93Ded7586977C/info.json +++ b/blockchains/smartchain/assets/0xCA1aCAB14e85F30996aC83c64fF93Ded7586977C/info.json @@ -17,8 +17,8 @@ "url": "https://t.me/AntExChat" }, { - "name": "twitter", - "url": "https://twitter.com/Antex_Official" + "name": "x", + "url": "https://x.com/Antex_Official" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0xCA7661Ba64A7667E3006c421C181502d545D1911/info.json b/blockchains/smartchain/assets/0xCA7661Ba64A7667E3006c421C181502d545D1911/info.json index b711193259879..7dffc8c2feada 100644 --- a/blockchains/smartchain/assets/0xCA7661Ba64A7667E3006c421C181502d545D1911/info.json +++ b/blockchains/smartchain/assets/0xCA7661Ba64A7667E3006c421C181502d545D1911/info.json @@ -6,12 +6,12 @@ "description": "ARAW is the Decentralised Payment for E-Commerce Ecosystem, aiming to be at the forefront of the Blockchain User Adoption globally with the intuitive integration of E-Commerce with the Decentralised Payment.", "website": "https://arawtoken.io/", "explorer": "https://bscscan.com/token/0xca7661ba64a7667e3006c421c181502d545d1911", - "status": "active", + "status": "abandoned", "id": "0xCA7661Ba64A7667E3006c421C181502d545D1911", "links": [ { - "name": "twitter", - "url": "https://twitter.com/arawtoken" + "name": "x", + "url": "https://x.com/arawtoken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xCA7661Ba64A7667E3006c421C181502d545D1911/logo.png b/blockchains/smartchain/assets/0xCA7661Ba64A7667E3006c421C181502d545D1911/logo.png deleted file mode 100644 index 7c76f51d11485..0000000000000 Binary files a/blockchains/smartchain/assets/0xCA7661Ba64A7667E3006c421C181502d545D1911/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xCAAE2A2F939F51d97CdFa9A86e79e3F085b799f3/info.json b/blockchains/smartchain/assets/0xCAAE2A2F939F51d97CdFa9A86e79e3F085b799f3/info.json new file mode 100644 index 0000000000000..d28da95191ddd --- /dev/null +++ b/blockchains/smartchain/assets/0xCAAE2A2F939F51d97CdFa9A86e79e3F085b799f3/info.json @@ -0,0 +1,17 @@ +{ + "name": "Tutorial", + "symbol": "TUT", + "website": "https://tutorialtoken.com", + "description": "My OG Tutorial token was on testnet, so I have decided to launch it on mainnet", + "explorer": "https://bscscan.com/token/0xcaae2a2f939f51d97cdfa9a86e79e3f085b799f3", + "decimals": 18, + "status": "active", + "id": "0xCAAE2A2F939F51d97CdFa9A86e79e3F085b799f3", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/tutorialtoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCAAE2A2F939F51d97CdFa9A86e79e3F085b799f3/logo.png b/blockchains/smartchain/assets/0xCAAE2A2F939F51d97CdFa9A86e79e3F085b799f3/logo.png new file mode 100644 index 0000000000000..2c2ea51a2eb23 Binary files /dev/null and b/blockchains/smartchain/assets/0xCAAE2A2F939F51d97CdFa9A86e79e3F085b799f3/logo.png differ diff --git a/blockchains/smartchain/assets/0xCAD5a334DC54143d122d1E753bAD5050181270C8/info.json b/blockchains/smartchain/assets/0xCAD5a334DC54143d122d1E753bAD5050181270C8/info.json new file mode 100644 index 0000000000000..da400b4502673 --- /dev/null +++ b/blockchains/smartchain/assets/0xCAD5a334DC54143d122d1E753bAD5050181270C8/info.json @@ -0,0 +1,30 @@ +{ + "name": "Miss Kaka", + "type": "BEP20", + "symbol": "KAKA", + "decimals": 18, + "description": "Meet Miss Kaka ($KAKA), the super cute teddy dog of Binance founder YiHe, now immortalized as the latest meme coin sensation! Inspired by the charm and playfulness of Miss Kaka herself, $KAKA is more than just a token—it’s a community-driven movement bringing together dog lovers, meme enthusiasts, and crypto fans alike.", + "website": "https://kakacoin.vip/", + "explorer": "https://bscscan.com/token/0xcad5a334dc54143d122d1e753bad5050181270c8", + "id": "0xCAD5a334DC54143d122d1E753bAD5050181270C8", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/MissKAKACTO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/miss-kaka/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/miss-kaka" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCAD5a334DC54143d122d1E753bAD5050181270C8/logo.png b/blockchains/smartchain/assets/0xCAD5a334DC54143d122d1E753bAD5050181270C8/logo.png new file mode 100644 index 0000000000000..b4cf2ce8d36e6 Binary files /dev/null and b/blockchains/smartchain/assets/0xCAD5a334DC54143d122d1E753bAD5050181270C8/logo.png differ diff --git a/blockchains/smartchain/assets/0xCAb6311f95faF6B5Db4fD306092b6BcD9807e8F0/info.json b/blockchains/smartchain/assets/0xCAb6311f95faF6B5Db4fD306092b6BcD9807e8F0/info.json new file mode 100644 index 0000000000000..55cfd4014003d --- /dev/null +++ b/blockchains/smartchain/assets/0xCAb6311f95faF6B5Db4fD306092b6BcD9807e8F0/info.json @@ -0,0 +1,21 @@ +{ + "name": "FourXBT", + "type": "BEP20", + "symbol": "FXBT", + "decimals": 18, + "description": "Our AI-driven system scans smart contracts, detects risks, and delivers real-time market intelligence—so you can trade with confidence, effortlessly.", + "website": "https://fourxbt.ai/", + "explorer": "https://bscscan.com/token/0xCAb6311f95faF6B5Db4fD306092b6BcD9807e8F0", + "id": "0xCAb6311f95faF6B5Db4fD306092b6BcD9807e8F0", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/fourxbt_agent" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCAb6311f95faF6B5Db4fD306092b6BcD9807e8F0/logo.png b/blockchains/smartchain/assets/0xCAb6311f95faF6B5Db4fD306092b6BcD9807e8F0/logo.png new file mode 100644 index 0000000000000..2c7f914950ce8 Binary files /dev/null and b/blockchains/smartchain/assets/0xCAb6311f95faF6B5Db4fD306092b6BcD9807e8F0/logo.png differ diff --git a/blockchains/smartchain/assets/0xCB0B74476d72BBBC77f14724a859b2e960Ca1803/info.json b/blockchains/smartchain/assets/0xCB0B74476d72BBBC77f14724a859b2e960Ca1803/info.json index 8fedf929b3da0..b9d1bf66aeb8d 100644 --- a/blockchains/smartchain/assets/0xCB0B74476d72BBBC77f14724a859b2e960Ca1803/info.json +++ b/blockchains/smartchain/assets/0xCB0B74476d72BBBC77f14724a859b2e960Ca1803/info.json @@ -10,8 +10,8 @@ "id": "0xCB0B74476d72BBBC77f14724a859b2e960Ca1803", "links": [ { - "name": "twitter", - "url": "https://twitter.com/mindmusic_bsc" + "name": "x", + "url": "https://x.com/mindmusic_bsc" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0xCBE5BcA571628894A38836b0baE833ff012f71D8/info.json b/blockchains/smartchain/assets/0xCBE5BcA571628894A38836b0baE833ff012f71D8/info.json index 8576ee37af947..8784965e2f0c2 100644 --- a/blockchains/smartchain/assets/0xCBE5BcA571628894A38836b0baE833ff012f71D8/info.json +++ b/blockchains/smartchain/assets/0xCBE5BcA571628894A38836b0baE833ff012f71D8/info.json @@ -10,8 +10,8 @@ "id": "0xCBE5BcA571628894A38836b0baE833ff012f71D8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/iRocketToken" + "name": "x", + "url": "https://x.com/iRocketToken" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0xCC0d50F79E18AF6D89f36692dB59Aef77E45aFEd/info.json b/blockchains/smartchain/assets/0xCC0d50F79E18AF6D89f36692dB59Aef77E45aFEd/info.json index ec1c2d0e29ef2..71958f27bb9cf 100644 --- a/blockchains/smartchain/assets/0xCC0d50F79E18AF6D89f36692dB59Aef77E45aFEd/info.json +++ b/blockchains/smartchain/assets/0xCC0d50F79E18AF6D89f36692dB59Aef77E45aFEd/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/peacockcoin" + "name": "x", + "url": "https://x.com/peacockcoin" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xCC5667333F5e997aC9F0C26d41b7ddA65b2b675a/info.json b/blockchains/smartchain/assets/0xCC5667333F5e997aC9F0C26d41b7ddA65b2b675a/info.json index fcaa09c2bd5ee..1cd2c55f82ba4 100644 --- a/blockchains/smartchain/assets/0xCC5667333F5e997aC9F0C26d41b7ddA65b2b675a/info.json +++ b/blockchains/smartchain/assets/0xCC5667333F5e997aC9F0C26d41b7ddA65b2b675a/info.json @@ -10,8 +10,8 @@ "id": "0xCC5667333F5e997aC9F0C26d41b7ddA65b2b675a", "links": [ { - "name": "twitter", - "url": "https://twitter.com/GloryDogeCoin" + "name": "x", + "url": "https://x.com/GloryDogeCoin" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xCD40F2670CF58720b694968698A5514e924F742d/info.json b/blockchains/smartchain/assets/0xCD40F2670CF58720b694968698A5514e924F742d/info.json index 6a963a82a375c..8ffa540914e71 100644 --- a/blockchains/smartchain/assets/0xCD40F2670CF58720b694968698A5514e924F742d/info.json +++ b/blockchains/smartchain/assets/0xCD40F2670CF58720b694968698A5514e924F742d/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/oddz-finance" }, { - "name": "twitter", - "url": "https://twitter.com/oddz_finance" + "name": "x", + "url": "https://x.com/oddz_finance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xCDB943908DE5Ee37998a53f23467017d1A307E60/info.json b/blockchains/smartchain/assets/0xCDB943908DE5Ee37998a53f23467017d1A307E60/info.json index 2716b64e17a15..88917cb968301 100644 --- a/blockchains/smartchain/assets/0xCDB943908DE5Ee37998a53f23467017d1A307E60/info.json +++ b/blockchains/smartchain/assets/0xCDB943908DE5Ee37998a53f23467017d1A307E60/info.json @@ -10,8 +10,8 @@ "id": "0xCDB943908DE5Ee37998a53f23467017d1A307E60", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SonOfDogev2" + "name": "x", + "url": "https://x.com/SonOfDogev2" }, { "name": "telegram", @@ -22,4 +22,4 @@ "url": "https://facebook.com/SonOfDoge" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCE0466Bae0e867239719dC386CA84b1F3eFE6914/info.json b/blockchains/smartchain/assets/0xCE0466Bae0e867239719dC386CA84b1F3eFE6914/info.json new file mode 100644 index 0000000000000..ebab522b22eb3 --- /dev/null +++ b/blockchains/smartchain/assets/0xCE0466Bae0e867239719dC386CA84b1F3eFE6914/info.json @@ -0,0 +1,24 @@ +{ + "name": "Waste Management (Ondo Tokenized)", + "type": "BEP20", + "symbol": "WMon", + "decimals": 18, + "description": "WMon is the Ondo Tokenized version of Waste Management, giving tokenholders economic exposure similar to holding WM and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xCE0466Bae0e867239719dC386CA84b1F3eFE6914", + "status": "active", + "id": "0xCE0466Bae0e867239719dC386CA84b1F3eFE6914", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/waste-management-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCE0466Bae0e867239719dC386CA84b1F3eFE6914/logo.png b/blockchains/smartchain/assets/0xCE0466Bae0e867239719dC386CA84b1F3eFE6914/logo.png new file mode 100644 index 0000000000000..a680bccc158e2 Binary files /dev/null and b/blockchains/smartchain/assets/0xCE0466Bae0e867239719dC386CA84b1F3eFE6914/logo.png differ diff --git a/blockchains/smartchain/assets/0xCE13951DdC789ca61D80142Daff472f898D3d2bC/info.json b/blockchains/smartchain/assets/0xCE13951DdC789ca61D80142Daff472f898D3d2bC/info.json new file mode 100644 index 0000000000000..f1a0ca96b8925 --- /dev/null +++ b/blockchains/smartchain/assets/0xCE13951DdC789ca61D80142Daff472f898D3d2bC/info.json @@ -0,0 +1,21 @@ +{ + "name": "BSCNews", + "type": "BEP20", + "symbol": "BSCN", + "decimals": 18, + "description": "Founded in 2020, BSCNews is the leading media platform covering decentralized finance (DeFi) on the Binance Smart Chain (BSC). We cover a wide range of blockchain news revolving mainly around the DeFi sector of the crypto markets.", + "website": "https://x.com/BSCNews", + "explorer": "https://bscscan.com/token/0xce13951ddc789ca61d80142daff472f898d3d2bc", + "id": "0xCE13951DdC789ca61D80142Daff472f898D3d2bC", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/BSCNews" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCE13951DdC789ca61D80142Daff472f898D3d2bC/logo.png b/blockchains/smartchain/assets/0xCE13951DdC789ca61D80142Daff472f898D3d2bC/logo.png new file mode 100644 index 0000000000000..0d2288e04c080 Binary files /dev/null and b/blockchains/smartchain/assets/0xCE13951DdC789ca61D80142Daff472f898D3d2bC/logo.png differ diff --git a/blockchains/smartchain/assets/0xCE1b3e5087e8215876aF976032382dd338cF8401/info.json b/blockchains/smartchain/assets/0xCE1b3e5087e8215876aF976032382dd338cF8401/info.json index 39d05ec6b503c..15dfe7ad890e5 100644 --- a/blockchains/smartchain/assets/0xCE1b3e5087e8215876aF976032382dd338cF8401/info.json +++ b/blockchains/smartchain/assets/0xCE1b3e5087e8215876aF976032382dd338cF8401/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/ThoreumFinance" + "name": "x", + "url": "https://x.com/ThoreumFinance" }, { "name": "telegram", @@ -41,4 +41,4 @@ "url": "https://github.com/ThoreumFinance/ThoreumCapital" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCE262761DF57c72999146b7A6a752da03835db4a/info.json b/blockchains/smartchain/assets/0xCE262761DF57c72999146b7A6a752da03835db4a/info.json index 06eb029dcc0ea..4ff0737d6181e 100644 --- a/blockchains/smartchain/assets/0xCE262761DF57c72999146b7A6a752da03835db4a/info.json +++ b/blockchains/smartchain/assets/0xCE262761DF57c72999146b7A6a752da03835db4a/info.json @@ -10,8 +10,8 @@ "id": "0xCE262761DF57c72999146b7A6a752da03835db4a", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MUConFinTech" + "name": "x", + "url": "https://x.com/MUConFinTech" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xCE6bD1833BD077f62B2c1F9a777bB829801d6811/info.json b/blockchains/smartchain/assets/0xCE6bD1833BD077f62B2c1F9a777bB829801d6811/info.json index 31c71c20f699d..11a4bf9b9dbbf 100644 --- a/blockchains/smartchain/assets/0xCE6bD1833BD077f62B2c1F9a777bB829801d6811/info.json +++ b/blockchains/smartchain/assets/0xCE6bD1833BD077f62B2c1F9a777bB829801d6811/info.json @@ -2,7 +2,7 @@ "name": "Bobcoin", "type": "BEP20", "symbol": "BOBC", - "decimals": 16, + "decimals": 18, "website": "https://bob.eco", "description": "Bobcoin is a social asset-backed crypto—a cryptographically secured representation of the rights of a Bobcoin holder to receive a benefit from their tokens. As every Bobcoin is linked to an electric vehicle managed by Bob Eco, the tokens are always backed by the value of the asset they represent. ", "explorer": "https://bscscan.com/token/0xCE6bD1833BD077f62B2c1F9a777bB829801d6811", @@ -10,8 +10,8 @@ "id": "0xCE6bD1833BD077f62B2c1F9a777bB829801d6811", "links": [ { - "name": "twitter", - "url": "https://twitter.com/" + "name": "x", + "url": "https://x.com/" }, { "name": "telegram", @@ -49,4 +49,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3/info.json b/blockchains/smartchain/assets/0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3/info.json index a86718ff5333a..3f8a98d081dde 100644 --- a/blockchains/smartchain/assets/0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3/info.json +++ b/blockchains/smartchain/assets/0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3/info.json @@ -2,7 +2,7 @@ "name": "TRON", "type": "BEP20", "symbol": "TRX", - "decimals": 18, + "decimals": 6, "website": "https://tron.network/", "description": "TRON is a dedicated to build the infrastructure for a truly decentralized Internet.", "explorer": "https://bscscan.com/token/0xce7de646e7208a4ef112cb6ed5038fa6cc6b12e3", @@ -10,8 +10,8 @@ "id": "0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Tronfoundation" + "name": "x", + "url": "https://x.com/Tronfoundation" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xCF2aDB160d78528127Df3ba471Cb3Ede0f06b99e/info.json b/blockchains/smartchain/assets/0xCF2aDB160d78528127Df3ba471Cb3Ede0f06b99e/info.json new file mode 100644 index 0000000000000..34ec4238bcc0a --- /dev/null +++ b/blockchains/smartchain/assets/0xCF2aDB160d78528127Df3ba471Cb3Ede0f06b99e/info.json @@ -0,0 +1,22 @@ +{ + "name": "Boyz Club", + "type": "BEP20", + "symbol": "BOYZCLUB", + "decimals": 18, + "description": "We bring you ‘The Boyz Club’ inspired by Matt Furie’s — B Money, Krazy N.D, Ice Land & Young Peezy.", + "website": "https://www.boyzclub.fun/", + "explorer": "https://bscscan.com/token/0xcf2adb160d78528127df3ba471cb3ede0f06b99e", + "id": "0xCF2aDB160d78528127Df3ba471Cb3Ede0f06b99e", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/BoyzClubBSC" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCF2aDB160d78528127Df3ba471Cb3Ede0f06b99e/logo.png b/blockchains/smartchain/assets/0xCF2aDB160d78528127Df3ba471Cb3Ede0f06b99e/logo.png new file mode 100644 index 0000000000000..b2d4e3f988b38 Binary files /dev/null and b/blockchains/smartchain/assets/0xCF2aDB160d78528127Df3ba471Cb3Ede0f06b99e/logo.png differ diff --git a/blockchains/smartchain/assets/0xCF3E84E62002ca459Db81B2032d7Fe13715BAd51/info.json b/blockchains/smartchain/assets/0xCF3E84E62002ca459Db81B2032d7Fe13715BAd51/info.json new file mode 100644 index 0000000000000..5a9ff2a3094db --- /dev/null +++ b/blockchains/smartchain/assets/0xCF3E84E62002ca459Db81B2032d7Fe13715BAd51/info.json @@ -0,0 +1,28 @@ +{ + "name": "Invesco Optimum Yld Dvsfd Cmd Str No K-1 ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "PDBCon", + "decimals": 18, + "description": "PDBCon is the Ondo Tokenized version of the Invesco Optimum Yld Dvsfd Cmd Str No K-1 ETF, giving tokenholders economic exposure similar to holding PDBC and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xCF3E84E62002ca459Db81B2032d7Fe13715BAd51", + "status": "active", + "id": "0xCF3E84E62002ca459Db81B2032d7Fe13715BAd51", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/invesco-optimum-yld-dvsfd-cmd-str-no-k-1-etf-ondo-tokenized-etf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/invesco-optimum-yld-dvsfd-cmd-str-no-k-1-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCF3E84E62002ca459Db81B2032d7Fe13715BAd51/logo.png b/blockchains/smartchain/assets/0xCF3E84E62002ca459Db81B2032d7Fe13715BAd51/logo.png new file mode 100644 index 0000000000000..4d148ee9a083d Binary files /dev/null and b/blockchains/smartchain/assets/0xCF3E84E62002ca459Db81B2032d7Fe13715BAd51/logo.png differ diff --git a/blockchains/smartchain/assets/0xCa3F508B8e4Dd382eE878A314789373D80A5190A/info.json b/blockchains/smartchain/assets/0xCa3F508B8e4Dd382eE878A314789373D80A5190A/info.json index 80f8ea84f91a6..a80766aa28ea4 100644 --- a/blockchains/smartchain/assets/0xCa3F508B8e4Dd382eE878A314789373D80A5190A/info.json +++ b/blockchains/smartchain/assets/0xCa3F508B8e4Dd382eE878A314789373D80A5190A/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "BIFI", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xCa3F508B8e4Dd382eE878A314789373D80A5190A", "links": [ { @@ -14,8 +14,8 @@ "url": "https://github.com/beefyfinance" }, { - "name": "twitter", - "url": "https://twitter.com/beefyfinance" + "name": "x", + "url": "https://x.com/beefyfinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xCa3a5c955F1F01f20aAcF9501B03E4aa235e478B/info.json b/blockchains/smartchain/assets/0xCa3a5c955F1F01f20aAcF9501B03E4aa235e478B/info.json new file mode 100644 index 0000000000000..19f98fa38eb3b --- /dev/null +++ b/blockchains/smartchain/assets/0xCa3a5c955F1F01f20aAcF9501B03E4aa235e478B/info.json @@ -0,0 +1,28 @@ +{ + "name": "Texas Instruments (Ondo Tokenized)", + "type": "BEP20", + "symbol": "TXNon", + "decimals": 18, + "description": "TXNon is the Ondo Tokenized version of Texas Instruments, giving tokenholders economic exposure similar to holding TXN and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xCa3a5c955F1F01f20aAcF9501B03E4aa235e478B", + "status": "active", + "id": "0xCa3a5c955F1F01f20aAcF9501B03E4aa235e478B", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/texas-instruments-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/texas-instruments-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCa3a5c955F1F01f20aAcF9501B03E4aa235e478B/logo.png b/blockchains/smartchain/assets/0xCa3a5c955F1F01f20aAcF9501B03E4aa235e478B/logo.png new file mode 100644 index 0000000000000..cc54cd49704f9 Binary files /dev/null and b/blockchains/smartchain/assets/0xCa3a5c955F1F01f20aAcF9501B03E4aa235e478B/logo.png differ diff --git a/blockchains/smartchain/assets/0xCa578afEe65FD2268D383f8Fc4a9fc6Ae1d2Def0/info.json b/blockchains/smartchain/assets/0xCa578afEe65FD2268D383f8Fc4a9fc6Ae1d2Def0/info.json index 19c5d0075bf30..9951a0cea6a01 100644 --- a/blockchains/smartchain/assets/0xCa578afEe65FD2268D383f8Fc4a9fc6Ae1d2Def0/info.json +++ b/blockchains/smartchain/assets/0xCa578afEe65FD2268D383f8Fc4a9fc6Ae1d2Def0/info.json @@ -10,8 +10,8 @@ "id": "0xCa578afEe65FD2268D383f8Fc4a9fc6Ae1d2Def0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/fairmooncoin" + "name": "x", + "url": "https://x.com/fairmooncoin" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xCa6d678e74f553f0E59cccC03ae644a3c2c5EE7d/info.json b/blockchains/smartchain/assets/0xCa6d678e74f553f0E59cccC03ae644a3c2c5EE7d/info.json new file mode 100644 index 0000000000000..55df35cadfe40 --- /dev/null +++ b/blockchains/smartchain/assets/0xCa6d678e74f553f0E59cccC03ae644a3c2c5EE7d/info.json @@ -0,0 +1,32 @@ +{ + "name": "PLANET", + "type": "BEP20", + "symbol": "PLANET", + "decimals": 18, + "description": "Join The Planet is a pioneering #ReFi project that partners with the world’s biggest celebrities to address environmental and sustainable causes. Backed by the $PLANET token, this blockchain for good platform is disrupting the $300 billion green tech market by introducing celebrity-backed Real World Assets (RWAs) to Web3, unlocking incredible real-life experiences for $PLANET holders and creating a sustainable revenue model.", + "website": "https://planetrefi.com/", + "explorer": "https://bscscan.com/token/0xca6d678e74f553f0e59cccc03ae644a3c2c5ee7d", + "id": "0xCa6d678e74f553f0E59cccC03ae644a3c2c5EE7d", + "status": "active", + "tags": [ + "nft" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/PlanetReFi" + }, + { + "name": "telegram", + "url": "https://t.me/PlanetReFi" + }, + { + "name": "medium", + "url": "https://medium.com/@PlanetReFi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/planettoken/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCa6d678e74f553f0E59cccC03ae644a3c2c5EE7d/logo.png b/blockchains/smartchain/assets/0xCa6d678e74f553f0E59cccC03ae644a3c2c5EE7d/logo.png new file mode 100644 index 0000000000000..a3fb80da0a20b Binary files /dev/null and b/blockchains/smartchain/assets/0xCa6d678e74f553f0E59cccC03ae644a3c2c5EE7d/logo.png differ diff --git a/blockchains/smartchain/assets/0xCb1DDC8F705e2737685A9C1e6B84A63d04D200e5/info.json b/blockchains/smartchain/assets/0xCb1DDC8F705e2737685A9C1e6B84A63d04D200e5/info.json index 5669862507e2c..4a0e99fb7bb2a 100644 --- a/blockchains/smartchain/assets/0xCb1DDC8F705e2737685A9C1e6B84A63d04D200e5/info.json +++ b/blockchains/smartchain/assets/0xCb1DDC8F705e2737685A9C1e6B84A63d04D200e5/info.json @@ -10,8 +10,8 @@ "id": "0xCb1DDC8F705e2737685A9C1e6B84A63d04D200e5", "links": [ { - "name": "twitter", - "url": "https://twitter.com/DCUsmartswap" + "name": "x", + "url": "https://x.com/DCUsmartswap" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xCb87Cee8c77CdFD310fb3C58ff72e688d46f90b1/info.json b/blockchains/smartchain/assets/0xCb87Cee8c77CdFD310fb3C58ff72e688d46f90b1/info.json index 6741097ee1764..837fc6c88edf7 100644 --- a/blockchains/smartchain/assets/0xCb87Cee8c77CdFD310fb3C58ff72e688d46f90b1/info.json +++ b/blockchains/smartchain/assets/0xCb87Cee8c77CdFD310fb3C58ff72e688d46f90b1/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/CreamFi" }, { - "name": "twitter", - "url": "https://twitter.com/CreamdotFinance" + "name": "x", + "url": "https://x.com/CreamdotFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xCd1fAFf6e578Fa5cAC469d2418C95671bA1a62Fe/info.json b/blockchains/smartchain/assets/0xCd1fAFf6e578Fa5cAC469d2418C95671bA1a62Fe/info.json index e93ffd61054b3..5a6f240f2b3be 100644 --- a/blockchains/smartchain/assets/0xCd1fAFf6e578Fa5cAC469d2418C95671bA1a62Fe/info.json +++ b/blockchains/smartchain/assets/0xCd1fAFf6e578Fa5cAC469d2418C95671bA1a62Fe/info.json @@ -10,8 +10,8 @@ "id": "0xCd1fAFf6e578Fa5cAC469d2418C95671bA1a62Fe", "links": [ { - "name": "twitter", - "url": "https://twitter.com/torum_official/" + "name": "x", + "url": "https://x.com/torum_official/" }, { "name": "telegram", @@ -53,4 +53,4 @@ "tags": [ "deflationary" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCdcaef3cE3a138C47ddB0B04a9b04649c13D50Ed/info.json b/blockchains/smartchain/assets/0xCdcaef3cE3a138C47ddB0B04a9b04649c13D50Ed/info.json index 90c745135700c..442f09216f192 100644 --- a/blockchains/smartchain/assets/0xCdcaef3cE3a138C47ddB0B04a9b04649c13D50Ed/info.json +++ b/blockchains/smartchain/assets/0xCdcaef3cE3a138C47ddB0B04a9b04649c13D50Ed/info.json @@ -10,8 +10,8 @@ "id": "0xCdcaef3cE3a138C47ddB0B04a9b04649c13D50Ed", "links": [ { - "name": "twitter", - "url": "https://twitter.com/mysterbox_io" + "name": "x", + "url": "https://x.com/mysterbox_io" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xCe5814eFfF15D53EFd8025B9F2006D4d7D640b9B/info.json b/blockchains/smartchain/assets/0xCe5814eFfF15D53EFd8025B9F2006D4d7D640b9B/info.json index e57aff95fd513..1cec3c125cc9a 100644 --- a/blockchains/smartchain/assets/0xCe5814eFfF15D53EFd8025B9F2006D4d7D640b9B/info.json +++ b/blockchains/smartchain/assets/0xCe5814eFfF15D53EFd8025B9F2006D4d7D640b9B/info.json @@ -10,8 +10,8 @@ "id": "0xCe5814eFfF15D53EFd8025B9F2006D4d7D640b9B", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MoonStarToken/" + "name": "x", + "url": "https://x.com/MoonStarToken/" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xCed0CE92F4bdC3c2201E255FAF12f05cf8206dA8/info.json b/blockchains/smartchain/assets/0xCed0CE92F4bdC3c2201E255FAF12f05cf8206dA8/info.json index a3d5302b24094..0120975f81544 100644 --- a/blockchains/smartchain/assets/0xCed0CE92F4bdC3c2201E255FAF12f05cf8206dA8/info.json +++ b/blockchains/smartchain/assets/0xCed0CE92F4bdC3c2201E255FAF12f05cf8206dA8/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/orakurudata" }, { - "name": "twitter", - "url": "https://twitter.com/orakuru_ork" + "name": "x", + "url": "https://x.com/orakuru_ork" }, { "name": "whitepaper", diff --git a/blockchains/smartchain/assets/0xCf10117b30C7a5FC7C77B611bFC2555610DD4B3A/info.json b/blockchains/smartchain/assets/0xCf10117b30C7a5FC7C77B611bFC2555610DD4B3A/info.json new file mode 100644 index 0000000000000..98e0302521d4c --- /dev/null +++ b/blockchains/smartchain/assets/0xCf10117b30C7a5FC7C77B611bFC2555610DD4B3A/info.json @@ -0,0 +1,21 @@ +{ + "name": "NOTAI", + "symbol": "NOTAI", + "type": "BEP20", + "decimals": 18, + "description": "The AI-based SuperApp built on Telegram", + "website": "https://www.notai.com/", + "explorer": "https://bscscan.com/token/0xcf10117b30c7a5fc7c77b611bfc2555610dd4b3a", + "status": "active", + "id": "0xCf10117b30C7a5FC7C77B611bFC2555610DD4B3A", + "links": [ + { + "name": "x", + "url": "https://x.com/thenotai" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/notai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCf10117b30C7a5FC7C77B611bFC2555610DD4B3A/logo.png b/blockchains/smartchain/assets/0xCf10117b30C7a5FC7C77B611bFC2555610DD4B3A/logo.png new file mode 100644 index 0000000000000..7f1f58d8520ad Binary files /dev/null and b/blockchains/smartchain/assets/0xCf10117b30C7a5FC7C77B611bFC2555610DD4B3A/logo.png differ diff --git a/blockchains/smartchain/assets/0xCfD1F0DF84300EA1a4e2BA5238043A2fA5A7237c/info.json b/blockchains/smartchain/assets/0xCfD1F0DF84300EA1a4e2BA5238043A2fA5A7237c/info.json new file mode 100644 index 0000000000000..8e24835915cc2 --- /dev/null +++ b/blockchains/smartchain/assets/0xCfD1F0DF84300EA1a4e2BA5238043A2fA5A7237c/info.json @@ -0,0 +1,28 @@ +{ + "name": "Pinterest (Ondo Tokenized)", + "type": "BEP20", + "symbol": "PINSon", + "decimals": 18, + "description": "PINSon is the Ondo Tokenized version of Pinterest, giving tokenholders economic exposure similar to holding PINS and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xCfD1F0DF84300EA1a4e2BA5238043A2fA5A7237c", + "status": "active", + "id": "0xCfD1F0DF84300EA1a4e2BA5238043A2fA5A7237c", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pinterest-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pinterest-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCfD1F0DF84300EA1a4e2BA5238043A2fA5A7237c/logo.png b/blockchains/smartchain/assets/0xCfD1F0DF84300EA1a4e2BA5238043A2fA5A7237c/logo.png new file mode 100644 index 0000000000000..af46617921fd0 Binary files /dev/null and b/blockchains/smartchain/assets/0xCfD1F0DF84300EA1a4e2BA5238043A2fA5A7237c/logo.png differ diff --git a/blockchains/smartchain/assets/0xD00A7EdD637B776eC5a6461F5e7ac055F14a0C1E/info.json b/blockchains/smartchain/assets/0xD00A7EdD637B776eC5a6461F5e7ac055F14a0C1E/info.json index 09da354fbc593..c0d8d8306a8d3 100644 --- a/blockchains/smartchain/assets/0xD00A7EdD637B776eC5a6461F5e7ac055F14a0C1E/info.json +++ b/blockchains/smartchain/assets/0xD00A7EdD637B776eC5a6461F5e7ac055F14a0C1E/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/ShibaZilla" }, { - "name": "twitter", - "url": "https://twitter.com/ShibZillaBSC" + "name": "x", + "url": "https://x.com/ShibZillaBSC" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xD0194F0f077968DA8ca59811e9407f54AE6c9432/info.json b/blockchains/smartchain/assets/0xD0194F0f077968DA8ca59811e9407f54AE6c9432/info.json new file mode 100644 index 0000000000000..cc392c9d76aca --- /dev/null +++ b/blockchains/smartchain/assets/0xD0194F0f077968DA8ca59811e9407f54AE6c9432/info.json @@ -0,0 +1,15 @@ +{ + "name": "CleanSpark xStock", + "type": "BEP20", + "symbol": "CLSKx", + "decimals": 18, + "description": "CleanSpark xStock (CLSKx) is a tracker certificate issued as a freely transferable token on selected blockchains. CLSKx tracks the price of CleanSpark, Inc.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0xD0194F0f077968DA8ca59811e9407f54AE6c9432", + "status": "active", + "id": "0xD0194F0f077968DA8ca59811e9407f54AE6c9432", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD0194F0f077968DA8ca59811e9407f54AE6c9432/logo.png b/blockchains/smartchain/assets/0xD0194F0f077968DA8ca59811e9407f54AE6c9432/logo.png new file mode 100644 index 0000000000000..3e6a522cfe714 Binary files /dev/null and b/blockchains/smartchain/assets/0xD0194F0f077968DA8ca59811e9407f54AE6c9432/logo.png differ diff --git a/blockchains/smartchain/assets/0xD024Ac1195762F6F13f8CfDF3cdd2c97b33B248b/info.json b/blockchains/smartchain/assets/0xD024Ac1195762F6F13f8CfDF3cdd2c97b33B248b/info.json index 3c7c09572cfd6..ebf217c7eba99 100644 --- a/blockchains/smartchain/assets/0xD024Ac1195762F6F13f8CfDF3cdd2c97b33B248b/info.json +++ b/blockchains/smartchain/assets/0xD024Ac1195762F6F13f8CfDF3cdd2c97b33B248b/info.json @@ -10,8 +10,8 @@ "id": "0xD024Ac1195762F6F13f8CfDF3cdd2c97b33B248b", "links": [ { - "name": "twitter", - "url": "https://twitter.com/minifootballbsc" + "name": "x", + "url": "https://x.com/minifootballbsc" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xD029B392580d555F35CCa1987f27D248cF883716/info.json b/blockchains/smartchain/assets/0xD029B392580d555F35CCa1987f27D248cF883716/info.json new file mode 100644 index 0000000000000..9f877a17e65f4 --- /dev/null +++ b/blockchains/smartchain/assets/0xD029B392580d555F35CCa1987f27D248cF883716/info.json @@ -0,0 +1,32 @@ +{ + "name": "DePHY", + "type": "BEP20", + "symbol": "PHY", + "decimals": 18, + "website": "https://dephy.io/", + "description": "DePHY creates a decentralized service mesh infra that connects services, AIs and hardware.", + "explorer": "https://bscscan.com/token/0xD029B392580d555F35CCa1987f27D248cF883716", + "status": "active", + "id": "0xD029B392580d555F35CCa1987f27D248cF883716", + "links": [ + { + "name": "x", + "url": "https://x.com/dephynetwork" + }, + { + "name": "github", + "url": "https://github.com/dephy-io" + }, + { + "name": "telegram", + "url": "https://t.me/DePHYGroup" + }, + { + "name": "whitepaper", + "url": "https://docs.dephy.io/other-resources/papers" + } + ], + "tags": [ + "wrapped" + ] +} diff --git a/blockchains/smartchain/assets/0xD029B392580d555F35CCa1987f27D248cF883716/logo.png b/blockchains/smartchain/assets/0xD029B392580d555F35CCa1987f27D248cF883716/logo.png new file mode 100644 index 0000000000000..c022dad512380 Binary files /dev/null and b/blockchains/smartchain/assets/0xD029B392580d555F35CCa1987f27D248cF883716/logo.png differ diff --git a/blockchains/smartchain/assets/0xD04a2BB053277721a8321d7441eEd5b42FDF7250/info.json b/blockchains/smartchain/assets/0xD04a2BB053277721a8321d7441eEd5b42FDF7250/info.json new file mode 100644 index 0000000000000..dab9bc5670630 --- /dev/null +++ b/blockchains/smartchain/assets/0xD04a2BB053277721a8321d7441eEd5b42FDF7250/info.json @@ -0,0 +1,24 @@ +{ + "name": "Salesforce (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "CRMon is the Ondo Tokenized version of Salesforce, giving tokenholders economic exposure similar to holding CRM and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xd04a2bb053277721a8321d7441eed5b42fdf7250", + "type": "BEP20", + "symbol": "CRMon", + "decimals": 18, + "status": "active", + "id": "0xD04a2BB053277721a8321d7441eEd5b42FDF7250", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/salesforce-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD04a2BB053277721a8321d7441eEd5b42FDF7250/logo.png b/blockchains/smartchain/assets/0xD04a2BB053277721a8321d7441eEd5b42FDF7250/logo.png new file mode 100644 index 0000000000000..1ba6eba769286 Binary files /dev/null and b/blockchains/smartchain/assets/0xD04a2BB053277721a8321d7441eEd5b42FDF7250/logo.png differ diff --git a/blockchains/smartchain/assets/0xD05A0c5C68ACba9AA9952fA65189038840752977/info.json b/blockchains/smartchain/assets/0xD05A0c5C68ACba9AA9952fA65189038840752977/info.json index 6475a05ba807f..79cfb357eeffb 100644 --- a/blockchains/smartchain/assets/0xD05A0c5C68ACba9AA9952fA65189038840752977/info.json +++ b/blockchains/smartchain/assets/0xD05A0c5C68ACba9AA9952fA65189038840752977/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/monkey-shanti/ZillaMatrix/" }, { - "name": "twitter", - "url": "https://twitter.com/zillamatrix" + "name": "x", + "url": "https://x.com/zillamatrix" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0xD06716E1Ff2E492Cc5034c2E81805562dd3b45fa/info.json b/blockchains/smartchain/assets/0xD06716E1Ff2E492Cc5034c2E81805562dd3b45fa/info.json index ee6ab78768476..4213354d062f2 100644 --- a/blockchains/smartchain/assets/0xD06716E1Ff2E492Cc5034c2E81805562dd3b45fa/info.json +++ b/blockchains/smartchain/assets/0xD06716E1Ff2E492Cc5034c2E81805562dd3b45fa/info.json @@ -10,8 +10,8 @@ "id": "0xD06716E1Ff2E492Cc5034c2E81805562dd3b45fa", "links": [ { - "name": "twitter", - "url": "https://twitter.com/magpiexyz_io" + "name": "x", + "url": "https://x.com/magpiexyz_io" }, { "name": "telegram", @@ -45,4 +45,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD08b9e557D1f64c8dd50A168453eA302A83E47FC/info.json b/blockchains/smartchain/assets/0xD08b9e557D1f64c8dd50A168453eA302A83E47FC/info.json new file mode 100644 index 0000000000000..b20491719c15f --- /dev/null +++ b/blockchains/smartchain/assets/0xD08b9e557D1f64c8dd50A168453eA302A83E47FC/info.json @@ -0,0 +1,36 @@ +{ + "name": "Grok Inu", + "type": "BEP20", + "symbol": "GROKINU", + "decimals": 9, + "website": "https://grokinucoin.vip/", + "description": "GROK INU is the combination of two trends, Elon Musk's Grok AI and Shiba Inu. This combination will be pervasive and is expected to be a future trend in the cryptocurrency sector.", + "explorer": "https://bscscan.com/token/0xD08b9e557D1f64c8dd50A168453eA302A83E47FC", + "status": "active", + "id": "0xD08b9e557D1f64c8dd50A168453eA302A83E47FC", + "links": [ + { + "name": "x", + "url": "https://x.com/RealGrok_Inu" + }, + { + "name": "telegram", + "url": "https://t.me/grokinu_portal" + }, + { + "name": "whitepaper", + "url": "https://grokinucoin.gitbook.io/whitepaper/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/grok-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/grok-inu" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD08b9e557D1f64c8dd50A168453eA302A83E47FC/logo.png b/blockchains/smartchain/assets/0xD08b9e557D1f64c8dd50A168453eA302A83E47FC/logo.png new file mode 100644 index 0000000000000..e6309995c04e5 Binary files /dev/null and b/blockchains/smartchain/assets/0xD08b9e557D1f64c8dd50A168453eA302A83E47FC/logo.png differ diff --git a/blockchains/smartchain/assets/0xD0ACCF05878caFe24ff8b3F82F194C62Ed755707/info.json b/blockchains/smartchain/assets/0xD0ACCF05878caFe24ff8b3F82F194C62Ed755707/info.json index 5e8b52db0bae3..cade4968198ba 100644 --- a/blockchains/smartchain/assets/0xD0ACCF05878caFe24ff8b3F82F194C62Ed755707/info.json +++ b/blockchains/smartchain/assets/0xD0ACCF05878caFe24ff8b3F82F194C62Ed755707/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/simp-token/" }, { - "name": "twitter", - "url": "https://twitter.com/letsallsimp" + "name": "x", + "url": "https://x.com/letsallsimp" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD0f4afA85a667d27837e9c07c81169869c16Dd16/info.json b/blockchains/smartchain/assets/0xD0f4afA85a667d27837e9c07c81169869c16Dd16/info.json index 83edd530a58fd..013d8e96aee9e 100644 --- a/blockchains/smartchain/assets/0xD0f4afA85a667d27837e9c07c81169869c16Dd16/info.json +++ b/blockchains/smartchain/assets/0xD0f4afA85a667d27837e9c07c81169869c16Dd16/info.json @@ -10,8 +10,8 @@ "id": "0xD0f4afA85a667d27837e9c07c81169869c16Dd16", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PrivappNetwork" + "name": "x", + "url": "https://x.com/PrivappNetwork" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xD1587Ee50e0333f0C4aDcF261379A61B1486c5d2/info.json b/blockchains/smartchain/assets/0xD1587Ee50e0333f0C4aDcF261379A61B1486c5d2/info.json index 7b343e8ef6a52..284fe6e61927b 100644 --- a/blockchains/smartchain/assets/0xD1587Ee50e0333f0C4aDcF261379A61B1486c5d2/info.json +++ b/blockchains/smartchain/assets/0xD1587Ee50e0333f0C4aDcF261379A61B1486c5d2/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/windswap" + "name": "x", + "url": "https://x.com/windswap" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xD16EaabA33a0822f5cBe4E0C63CA51D3c3fbB08B/info.json b/blockchains/smartchain/assets/0xD16EaabA33a0822f5cBe4E0C63CA51D3c3fbB08B/info.json index 357f664cb31ce..2e0fb08cc40f7 100644 --- a/blockchains/smartchain/assets/0xD16EaabA33a0822f5cBe4E0C63CA51D3c3fbB08B/info.json +++ b/blockchains/smartchain/assets/0xD16EaabA33a0822f5cBe4E0C63CA51D3c3fbB08B/info.json @@ -10,8 +10,8 @@ "id": "0xD16EaabA33a0822f5cBe4E0C63CA51D3c3fbB08B", "links": [ { - "name": "twitter", - "url": "https://twitter.com/xai_codes" + "name": "x", + "url": "https://x.com/xai_codes" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xD1A6eFF20958403F9fa137760e62dfDE4516a0b1/info.json b/blockchains/smartchain/assets/0xD1A6eFF20958403F9fa137760e62dfDE4516a0b1/info.json index 24dc4b972e2f3..22d0f36cbf9ca 100644 --- a/blockchains/smartchain/assets/0xD1A6eFF20958403F9fa137760e62dfDE4516a0b1/info.json +++ b/blockchains/smartchain/assets/0xD1A6eFF20958403F9fa137760e62dfDE4516a0b1/info.json @@ -10,8 +10,8 @@ "id": "0xD1A6eFF20958403F9fa137760e62dfDE4516a0b1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MetaMatrixBSC" + "name": "x", + "url": "https://x.com/MetaMatrixBSC" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xD2618bC9c9cDC40ff19e200a7d14A09799C0a152/info.json b/blockchains/smartchain/assets/0xD2618bC9c9cDC40ff19e200a7d14A09799C0a152/info.json index fe94aa9963cf3..1d6a76d740f8c 100644 --- a/blockchains/smartchain/assets/0xD2618bC9c9cDC40ff19e200a7d14A09799C0a152/info.json +++ b/blockchains/smartchain/assets/0xD2618bC9c9cDC40ff19e200a7d14A09799C0a152/info.json @@ -10,8 +10,8 @@ "id": "0xD2618bC9c9cDC40ff19e200a7d14A09799C0a152", "links": [ { - "name": "twitter", - "url": "https://twitter.com/UncleDogeBSC" + "name": "x", + "url": "https://x.com/UncleDogeBSC" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xD2Df38F3A7Cbc24FfB78322aB272Ce58c4604444/info.json b/blockchains/smartchain/assets/0xD2Df38F3A7Cbc24FfB78322aB272Ce58c4604444/info.json new file mode 100644 index 0000000000000..96f4785820f63 --- /dev/null +++ b/blockchains/smartchain/assets/0xD2Df38F3A7Cbc24FfB78322aB272Ce58c4604444/info.json @@ -0,0 +1,11 @@ +{ + "name": "SPAM KLIP", + "type": "BEP20", + "symbol": "SPAM KLIP", + "decimals": 18, + "website": "https://bscscan.com/address/0xD2Df38F3A7Cbc24FfB78322aB272Ce58c4604444", + "description": "SPAM KLIP", + "explorer": "https://bscscan.com/token/0xD2Df38F3A7Cbc24FfB78322aB272Ce58c4604444", + "status": "spam", + "id": "0xD2Df38F3A7Cbc24FfB78322aB272Ce58c4604444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD2f9B51C6a1b5598f0ea51eF95d70cB045692D0F/info.json b/blockchains/smartchain/assets/0xD2f9B51C6a1b5598f0ea51eF95d70cB045692D0F/info.json index 87e537c642ec2..bce09d761c4e3 100644 --- a/blockchains/smartchain/assets/0xD2f9B51C6a1b5598f0ea51eF95d70cB045692D0F/info.json +++ b/blockchains/smartchain/assets/0xD2f9B51C6a1b5598f0ea51eF95d70cB045692D0F/info.json @@ -10,8 +10,8 @@ "id": "0xD2f9B51C6a1b5598f0ea51eF95d70cB045692D0F", "links": [ { - "name": "twitter", - "url": "https://twitter.com/safeicarus" + "name": "x", + "url": "https://x.com/safeicarus" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xD3113A0AD20a46F6a662C63fe8E637f7713E59c7/info.json b/blockchains/smartchain/assets/0xD3113A0AD20a46F6a662C63fe8E637f7713E59c7/info.json new file mode 100644 index 0000000000000..42af7c04d9617 --- /dev/null +++ b/blockchains/smartchain/assets/0xD3113A0AD20a46F6a662C63fe8E637f7713E59c7/info.json @@ -0,0 +1,24 @@ +{ + "name": "Chevron (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "CVXon is the Ondo Tokenized version of Chevron, giving tokenholders economic exposure similar to holding CVX and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xd3113a0ad20a46f6a662c63fe8e637f7713e59c7", + "type": "BEP20", + "symbol": "CVXon", + "decimals": 18, + "status": "active", + "id": "0xD3113A0AD20a46F6a662C63fe8E637f7713E59c7", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chevron-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD3113A0AD20a46F6a662C63fe8E637f7713E59c7/logo.png b/blockchains/smartchain/assets/0xD3113A0AD20a46F6a662C63fe8E637f7713E59c7/logo.png new file mode 100644 index 0000000000000..37a5ada890e89 Binary files /dev/null and b/blockchains/smartchain/assets/0xD3113A0AD20a46F6a662C63fe8E637f7713E59c7/logo.png differ diff --git a/blockchains/smartchain/assets/0xD3Ac199E6e6A1668ED6566b6F6dcdf7641868731/info.json b/blockchains/smartchain/assets/0xD3Ac199E6e6A1668ED6566b6F6dcdf7641868731/info.json index 55cc9659daee6..4156a072cb2e7 100644 --- a/blockchains/smartchain/assets/0xD3Ac199E6e6A1668ED6566b6F6dcdf7641868731/info.json +++ b/blockchains/smartchain/assets/0xD3Ac199E6e6A1668ED6566b6F6dcdf7641868731/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/MetawhaleWorld" + "name": "x", + "url": "https://x.com/MetawhaleWorld" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0xD3Af8E09894D69E937e37eeF46Df1cBF82b35C81/info.json b/blockchains/smartchain/assets/0xD3Af8E09894D69E937e37eeF46Df1cBF82b35C81/info.json index 58fd9844f93dd..0f32212969862 100644 --- a/blockchains/smartchain/assets/0xD3Af8E09894D69E937e37eeF46Df1cBF82b35C81/info.json +++ b/blockchains/smartchain/assets/0xD3Af8E09894D69E937e37eeF46Df1cBF82b35C81/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/NanoDogecoin" }, { - "name": "twitter", - "url": "https://twitter.com/nanodogecoinbsc" + "name": "x", + "url": "https://x.com/nanodogecoinbsc" }, { "name": "coingecko", diff --git a/blockchains/smartchain/assets/0xD3FC8C63997694e3d3C2Be668FE52C9406924444/info.json b/blockchains/smartchain/assets/0xD3FC8C63997694e3d3C2Be668FE52C9406924444/info.json new file mode 100644 index 0000000000000..5abe25e793321 --- /dev/null +++ b/blockchains/smartchain/assets/0xD3FC8C63997694e3d3C2Be668FE52C9406924444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDKG", + "type": "BEP20", + "symbol": "FAKE USDKG", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xD3FC8C63997694e3d3C2Be668FE52C9406924444", + "explorer": "https://bscscan.com/token/0xD3FC8C63997694e3d3C2Be668FE52C9406924444", + "status": "spam", + "id": "0xD3FC8C63997694e3d3C2Be668FE52C9406924444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD4099A517f2Fbe8a730d2ECaad1D0824B75e084a/info.json b/blockchains/smartchain/assets/0xD4099A517f2Fbe8a730d2ECaad1D0824B75e084a/info.json index 99ed7d1556dfc..ca2ece219226e 100644 --- a/blockchains/smartchain/assets/0xD4099A517f2Fbe8a730d2ECaad1D0824B75e084a/info.json +++ b/blockchains/smartchain/assets/0xD4099A517f2Fbe8a730d2ECaad1D0824B75e084a/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/themonopolist" }, { - "name": "twitter", - "url": "https://twitter.com/MonoNFTsGame" + "name": "x", + "url": "https://x.com/MonoNFTsGame" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0xD41C4805A9A3128f9F7A7074Da25965371Ba50d5/info.json b/blockchains/smartchain/assets/0xD41C4805A9A3128f9F7A7074Da25965371Ba50d5/info.json index d685d69747735..f41d0cd4291dc 100644 --- a/blockchains/smartchain/assets/0xD41C4805A9A3128f9F7A7074Da25965371Ba50d5/info.json +++ b/blockchains/smartchain/assets/0xD41C4805A9A3128f9F7A7074Da25965371Ba50d5/info.json @@ -22,8 +22,8 @@ "url": "https://t.me/coinscope_co" }, { - "name": "twitter", - "url": "https://twitter.com/@coinscopecrypto" + "name": "x", + "url": "https://x.com/@coinscopecrypto" }, { "name": "reddit", @@ -58,4 +58,4 @@ "url": "https://youtube.com/channel/UCrQZWj09aoP_IpeRT0Gng-g" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD41FDb03Ba84762dD66a0af1a6C8540FF1ba5dfb/info.json b/blockchains/smartchain/assets/0xD41FDb03Ba84762dD66a0af1a6C8540FF1ba5dfb/info.json index d9e8e35ca494e..23d104823f5de 100644 --- a/blockchains/smartchain/assets/0xD41FDb03Ba84762dD66a0af1a6C8540FF1ba5dfb/info.json +++ b/blockchains/smartchain/assets/0xD41FDb03Ba84762dD66a0af1a6C8540FF1ba5dfb/info.json @@ -1,5 +1,5 @@ { - "name": "SafePal Token", + "name": "SafePal", "website": "https://www.safepal.io", "description": "SafePal is a cryptocurrency wallet that aims to provide a secure and user-friendly crypto asset management platform.", "explorer": "https://bscscan.com/token/0xd41fdb03ba84762dd66a0af1a6c8540ff1ba5dfb", @@ -11,8 +11,8 @@ "id": "0xD41FDb03Ba84762dD66a0af1a6C8540FF1ba5dfb", "links": [ { - "name": "twitter", - "url": "https://twitter.com/iSafePal" + "name": "x", + "url": "https://x.com/iSafePal" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xD438b82543FB109F34575c825edAeEFC98f1F2b4/info.json b/blockchains/smartchain/assets/0xD438b82543FB109F34575c825edAeEFC98f1F2b4/info.json new file mode 100644 index 0000000000000..641716266f02d --- /dev/null +++ b/blockchains/smartchain/assets/0xD438b82543FB109F34575c825edAeEFC98f1F2b4/info.json @@ -0,0 +1,17 @@ +{ + "name": "IceCream AI", + "symbol": "ICECREAM", + "website": "https://www.kol4u.xyz/", + "description": "IceCream AI is a DeFAI protocol developed by KOL4U that introduces AI-governed Glaze Pools (GPs) as an on-chain instrument to incentivize and realize social capital. Users can claim on-chain assets from GPs based on IceCream AI's analysis of their activity on X.", + "explorer": "https://bscscan.com/token/0xd438b82543fb109f34575c825edaeefc98f1f2b4", + "decimals": 18, + "status": "active", + "id": "0xD438b82543FB109F34575c825edAeEFC98f1F2b4", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/kol4u_xyz" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD438b82543FB109F34575c825edAeEFC98f1F2b4/logo.png b/blockchains/smartchain/assets/0xD438b82543FB109F34575c825edAeEFC98f1F2b4/logo.png new file mode 100644 index 0000000000000..eb840e17d5c58 Binary files /dev/null and b/blockchains/smartchain/assets/0xD438b82543FB109F34575c825edAeEFC98f1F2b4/logo.png differ diff --git a/blockchains/smartchain/assets/0xD44FD09d74cd13838F137B590497595d6b3FEeA4/info.json b/blockchains/smartchain/assets/0xD44FD09d74cd13838F137B590497595d6b3FEeA4/info.json index 501d8d15cac4f..40ebd56b0cddb 100644 --- a/blockchains/smartchain/assets/0xD44FD09d74cd13838F137B590497595d6b3FEeA4/info.json +++ b/blockchains/smartchain/assets/0xD44FD09d74cd13838F137B590497595d6b3FEeA4/info.json @@ -10,8 +10,8 @@ "id": "0xD44FD09d74cd13838F137B590497595d6b3FEeA4", "links": [ { - "name": "twitter", - "url": "https://twitter.com/cryptominesapp" + "name": "x", + "url": "https://x.com/cryptominesapp" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xD5FFAB1841B9137D5528Ed09D6Ebb66c3088aeDE/info.json b/blockchains/smartchain/assets/0xD5FFAB1841B9137D5528Ed09D6Ebb66c3088aeDE/info.json index 08882da9ed10f..dfdfae9184ee2 100644 --- a/blockchains/smartchain/assets/0xD5FFAB1841B9137D5528Ed09D6Ebb66c3088aeDE/info.json +++ b/blockchains/smartchain/assets/0xD5FFAB1841B9137D5528Ed09D6Ebb66c3088aeDE/info.json @@ -17,8 +17,8 @@ "url": "https://t.me/TwogeInu" }, { - "name": "twitter", - "url": "https://twitter.com/twogeinu" + "name": "x", + "url": "https://x.com/twogeinu" }, { "name": "github", @@ -29,4 +29,4 @@ "url": "https://github.com/twogeinu/whitepaper/blob/main/Twoge%20Whitepaper.pdf" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD5b531B071A9cC7Fb4751800652B4505254e4444/info.json b/blockchains/smartchain/assets/0xD5b531B071A9cC7Fb4751800652B4505254e4444/info.json new file mode 100644 index 0000000000000..e4ab4d06b9036 --- /dev/null +++ b/blockchains/smartchain/assets/0xD5b531B071A9cC7Fb4751800652B4505254e4444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE KASH", + "type": "BEP20", + "symbol": "FAKE KASH", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xD5b531B071A9cC7Fb4751800652B4505254e4444", + "explorer": "https://bscscan.com/token/0xD5b531B071A9cC7Fb4751800652B4505254e4444", + "status": "spam", + "id": "0xD5b531B071A9cC7Fb4751800652B4505254e4444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD5f363F83b36E10e8a823166b992c0bDc3deDE2C/info.json b/blockchains/smartchain/assets/0xD5f363F83b36E10e8a823166b992c0bDc3deDE2C/info.json index e442ce4a49e0a..7fa7ae3579f3a 100644 --- a/blockchains/smartchain/assets/0xD5f363F83b36E10e8a823166b992c0bDc3deDE2C/info.json +++ b/blockchains/smartchain/assets/0xD5f363F83b36E10e8a823166b992c0bDc3deDE2C/info.json @@ -10,8 +10,8 @@ "id": "0xD5f363F83b36E10e8a823166b992c0bDc3deDE2C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ElonBankBSC" + "name": "x", + "url": "https://x.com/ElonBankBSC" }, { "name": "facebook", @@ -38,4 +38,4 @@ "staking", "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD71239a33C8542Bd42130c1B4ACA0673B4e4f48B/info.json b/blockchains/smartchain/assets/0xD71239a33C8542Bd42130c1B4ACA0673B4e4f48B/info.json index 9c1c23e119596..c3de63fcf1b4a 100644 --- a/blockchains/smartchain/assets/0xD71239a33C8542Bd42130c1B4ACA0673B4e4f48B/info.json +++ b/blockchains/smartchain/assets/0xD71239a33C8542Bd42130c1B4ACA0673B4e4f48B/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/Legend_LFW" + "name": "x", + "url": "https://x.com/Legend_LFW" }, { "name": "telegram", @@ -29,4 +29,4 @@ "url": "https://coinmarketcap.com/currencies/legend-of-fantasy-war" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/info.json b/blockchains/smartchain/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/info.json new file mode 100644 index 0000000000000..cb39601c8168a --- /dev/null +++ b/blockchains/smartchain/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/info.json @@ -0,0 +1,24 @@ +{ + "name": "Brazilian Real", + "website": "https://www.ripio.com/es/criptos/stablecoins-locales", + "description": "wBRL is a fully collateralized stablecoin pegged 1:1 to the Brazilian Real (BRL). Issued and governed by a Ripio subsidiary, it brings BRL on-chain so users can transact, save, and build on decentralized networks in their local currency.", + "explorer": "https://bscscan.com/token/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0", + "type": "BEP20", + "symbol": "wBRL", + "decimals": 18, + "status": "active", + "id": "0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/RipioApp" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/brazilian-real" + } + ] +} diff --git a/blockchains/smartchain/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/logo.png b/blockchains/smartchain/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/logo.png new file mode 100644 index 0000000000000..6a9e9da279722 Binary files /dev/null and b/blockchains/smartchain/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/logo.png differ diff --git a/blockchains/smartchain/assets/0xD7a6353a23ED2c4fcaC29A63CBBe3f65ffEf41F5/info.json b/blockchains/smartchain/assets/0xD7a6353a23ED2c4fcaC29A63CBBe3f65ffEf41F5/info.json new file mode 100644 index 0000000000000..9a3bc751c4c85 --- /dev/null +++ b/blockchains/smartchain/assets/0xD7a6353a23ED2c4fcaC29A63CBBe3f65ffEf41F5/info.json @@ -0,0 +1,28 @@ +{ + "name": "Southern (Ondo Tokenized)", + "type": "BEP20", + "symbol": "SOon", + "decimals": 18, + "description": "SOon is the Ondo Tokenized version of Southern, giving tokenholders economic exposure similar to holding SO and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xD7a6353a23ED2c4fcaC29A63CBBe3f65ffEf41F5", + "status": "active", + "id": "0xD7a6353a23ED2c4fcaC29A63CBBe3f65ffEf41F5", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/southern-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/southern-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD7a6353a23ED2c4fcaC29A63CBBe3f65ffEf41F5/logo.png b/blockchains/smartchain/assets/0xD7a6353a23ED2c4fcaC29A63CBBe3f65ffEf41F5/logo.png new file mode 100644 index 0000000000000..5fb20048817a0 Binary files /dev/null and b/blockchains/smartchain/assets/0xD7a6353a23ED2c4fcaC29A63CBBe3f65ffEf41F5/logo.png differ diff --git a/blockchains/smartchain/assets/0xD7dF5863A3e742F0c767768cDfcb63f09E0422f6/info.json b/blockchains/smartchain/assets/0xD7dF5863A3e742F0c767768cDfcb63f09E0422f6/info.json new file mode 100644 index 0000000000000..606208198532c --- /dev/null +++ b/blockchains/smartchain/assets/0xD7dF5863A3e742F0c767768cDfcb63f09E0422f6/info.json @@ -0,0 +1,24 @@ +{ + "name": "Meta Platforms (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "METAon is the Ondo Tokenized version of Meta Platforms, giving tokenholders economic exposure similar to holding META and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xd7df5863a3e742f0c767768cdfcb63f09e0422f6", + "type": "BEP20", + "symbol": "METAon", + "decimals": 18, + "status": "active", + "id": "0xD7dF5863A3e742F0c767768cDfcb63f09E0422f6", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/meta-platforms-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD7dF5863A3e742F0c767768cDfcb63f09E0422f6/logo.png b/blockchains/smartchain/assets/0xD7dF5863A3e742F0c767768cDfcb63f09E0422f6/logo.png new file mode 100644 index 0000000000000..df2bffa2d3099 Binary files /dev/null and b/blockchains/smartchain/assets/0xD7dF5863A3e742F0c767768cDfcb63f09E0422f6/logo.png differ diff --git a/blockchains/smartchain/assets/0xD803f8777187D6DEe1eA57854aEB957043fb1675/info.json b/blockchains/smartchain/assets/0xD803f8777187D6DEe1eA57854aEB957043fb1675/info.json new file mode 100644 index 0000000000000..4ad82792bda95 --- /dev/null +++ b/blockchains/smartchain/assets/0xD803f8777187D6DEe1eA57854aEB957043fb1675/info.json @@ -0,0 +1,24 @@ +{ + "name": "American Express (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "AXPon is the Ondo Tokenized version of American Express, giving tokenholders economic exposure similar to holding AXP and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xd803f8777187d6dee1ea57854aeb957043fb1675", + "type": "BEP20", + "symbol": "AXPon", + "decimals": 18, + "status": "active", + "id": "0xD803f8777187D6DEe1eA57854aEB957043fb1675", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/american-express-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD803f8777187D6DEe1eA57854aEB957043fb1675/logo.png b/blockchains/smartchain/assets/0xD803f8777187D6DEe1eA57854aEB957043fb1675/logo.png new file mode 100644 index 0000000000000..963c371457156 Binary files /dev/null and b/blockchains/smartchain/assets/0xD803f8777187D6DEe1eA57854aEB957043fb1675/logo.png differ diff --git a/blockchains/smartchain/assets/0xD80BeA63a208770e1c371DFBF70Cb13469D29Ae6/info.json b/blockchains/smartchain/assets/0xD80BeA63a208770e1c371DFBF70Cb13469D29Ae6/info.json index 2411483f9e24c..f9346c292309c 100644 --- a/blockchains/smartchain/assets/0xD80BeA63a208770e1c371DFBF70Cb13469D29Ae6/info.json +++ b/blockchains/smartchain/assets/0xD80BeA63a208770e1c371DFBF70Cb13469D29Ae6/info.json @@ -10,8 +10,8 @@ "id": "0xD80BeA63a208770e1c371DFBF70Cb13469D29Ae6", "links": [ { - "name": "twitter", - "url": "https://twitter.com/cryptoagrocash" + "name": "x", + "url": "https://x.com/cryptoagrocash" }, { "name": "whitepaper", diff --git a/blockchains/smartchain/assets/0xD83C88DB3A6cA4a32FFf1603b0f7DDce01F5f727/info.json b/blockchains/smartchain/assets/0xD83C88DB3A6cA4a32FFf1603b0f7DDce01F5f727/info.json index 4e5104bcbfd4b..93786549c63cf 100644 --- a/blockchains/smartchain/assets/0xD83C88DB3A6cA4a32FFf1603b0f7DDce01F5f727/info.json +++ b/blockchains/smartchain/assets/0xD83C88DB3A6cA4a32FFf1603b0f7DDce01F5f727/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/CreamFi" }, { - "name": "twitter", - "url": "https://twitter.com/CreamdotFinance" + "name": "x", + "url": "https://x.com/CreamdotFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xD83cec69ED9d8044597A793445C86a5e763b0E3D/info.json b/blockchains/smartchain/assets/0xD83cec69ED9d8044597A793445C86a5e763b0E3D/info.json index 19532d0651f7c..78bee3538be18 100644 --- a/blockchains/smartchain/assets/0xD83cec69ED9d8044597A793445C86a5e763b0E3D/info.json +++ b/blockchains/smartchain/assets/0xD83cec69ED9d8044597A793445C86a5e763b0E3D/info.json @@ -1,7 +1,7 @@ { "name": "Stop Elon", "website": "https://stopelon.space", - "description": "Our mission is to Stop Elon Musk's crypto market manipulation. Our plan is to acquire a 2/3 supermajority vote with Tesla, then require Elon Musk renounce his Twitter account as a condition of continued employment as CEO. Then we're going to fly to Pluto!", + "description": "Our mission is to Stop Elon Musk's crypto market manipulation. Our plan is to acquire a 2/3 supermajority vote with Tesla, then require Elon Musk renounce his x account as a condition of continued employment as CEO. Then we're going to fly to Pluto!", "explorer": "https://bscscan.com/token/0xd83cec69ed9d8044597a793445c86a5e763b0e3d", "type": "BEP20", "symbol": "STOPELON", diff --git a/blockchains/smartchain/assets/0xD8F61cdECA41dEF1a7923F308a042F678109f54B/info.json b/blockchains/smartchain/assets/0xD8F61cdECA41dEF1a7923F308a042F678109f54B/info.json index 45e524b8e4fee..4d42649b8be8e 100644 --- a/blockchains/smartchain/assets/0xD8F61cdECA41dEF1a7923F308a042F678109f54B/info.json +++ b/blockchains/smartchain/assets/0xD8F61cdECA41dEF1a7923F308a042F678109f54B/info.json @@ -10,8 +10,8 @@ "id": "0xD8F61cdECA41dEF1a7923F308a042F678109f54B", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BuffedShiba" + "name": "x", + "url": "https://x.com/BuffedShiba" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xD91a6660e938F2A4CA9117d104f31a30Be7f251B/info.json b/blockchains/smartchain/assets/0xD91a6660e938F2A4CA9117d104f31a30Be7f251B/info.json new file mode 100644 index 0000000000000..b3c6276a7b761 --- /dev/null +++ b/blockchains/smartchain/assets/0xD91a6660e938F2A4CA9117d104f31a30Be7f251B/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT Atomic Floki", + "type": "BEP20", + "symbol": "HONEYPOT Atomic Floki", + "decimals": 18, + "website": "https://bscscan.com/token/0xd91a6660e938f2a4ca9117d104f31a30be7f251b", + "description": "HONEYPOT Atomic Floki", + "explorer": "https://bscscan.com/token/0xD91a6660e938F2A4CA9117d104f31a30Be7f251B", + "status": "spam", + "id": "0xD91a6660e938F2A4CA9117d104f31a30Be7f251B" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD930f493E153d745aFB124F9859bE8479e4b1862/info.json b/blockchains/smartchain/assets/0xD930f493E153d745aFB124F9859bE8479e4b1862/info.json index 00533e8cc7046..4df6328150140 100644 --- a/blockchains/smartchain/assets/0xD930f493E153d745aFB124F9859bE8479e4b1862/info.json +++ b/blockchains/smartchain/assets/0xD930f493E153d745aFB124F9859bE8479e4b1862/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/syllena/spaceman-lol" }, { - "name": "twitter", - "url": "https://twitter.com/spaceman_lol" + "name": "x", + "url": "https://x.com/spaceman_lol" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xD98560689C6e748DC37bc410B4d3096B1aA3D8C2/info.json b/blockchains/smartchain/assets/0xD98560689C6e748DC37bc410B4d3096B1aA3D8C2/info.json index 0f003a8e068a4..b73f4f66f06a5 100644 --- a/blockchains/smartchain/assets/0xD98560689C6e748DC37bc410B4d3096B1aA3D8C2/info.json +++ b/blockchains/smartchain/assets/0xD98560689C6e748DC37bc410B4d3096B1aA3D8C2/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/defi-vn/DeFi-VN-Smart-Contract" }, { - "name": "twitter", - "url": "https://twitter.com/DeFi For You." + "name": "x", + "url": "https://x.com/DeFi For You." }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xD9CBc18e554Aec0d99E9D99324dECC9b4b473af0/info.json b/blockchains/smartchain/assets/0xD9CBc18e554Aec0d99E9D99324dECC9b4b473af0/info.json index 6ebddcaa89e5f..d0e3283d37941 100644 --- a/blockchains/smartchain/assets/0xD9CBc18e554Aec0d99E9D99324dECC9b4b473af0/info.json +++ b/blockchains/smartchain/assets/0xD9CBc18e554Aec0d99E9D99324dECC9b4b473af0/info.json @@ -10,8 +10,8 @@ "id": "0xD9CBc18e554Aec0d99E9D99324dECC9b4b473af0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/inpacoin2021" + "name": "x", + "url": "https://x.com/inpacoin2021" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A/info.json b/blockchains/smartchain/assets/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A/info.json new file mode 100644 index 0000000000000..0edbd35c6720d --- /dev/null +++ b/blockchains/smartchain/assets/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A/info.json @@ -0,0 +1,24 @@ +{ + "name": "JPMorgan Chase tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "JPMorgan Chase xStock (JPMx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. JPMx tracks the price of JPMorgan Chase & Co. (the underlying). JPMx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of JPMorgan Chase & Co., whilst maintaining the benefits of blockchain technology. JPMorgan Chase & Co. is a multinational financial services firm headquartered in New York City. It's a leading provider of financial services to individuals, businesses, and institutions worldwide.", + "explorer": "https://bscscan.com/token/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A", + "type": "BEP20", + "symbol": "JPMX", + "decimals": 18, + "status": "active", + "id": "0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jpmorgan-chase-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A/logo.png b/blockchains/smartchain/assets/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A/logo.png new file mode 100644 index 0000000000000..df73bbccf4085 Binary files /dev/null and b/blockchains/smartchain/assets/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A/logo.png differ diff --git a/blockchains/smartchain/assets/0xDA1060158F7D593667cCE0a15DB346BB3FfB3596/info.json b/blockchains/smartchain/assets/0xDA1060158F7D593667cCE0a15DB346BB3FfB3596/info.json new file mode 100644 index 0000000000000..d747c05a984fb --- /dev/null +++ b/blockchains/smartchain/assets/0xDA1060158F7D593667cCE0a15DB346BB3FfB3596/info.json @@ -0,0 +1,42 @@ +{ + "name": "TIWICAT", + "type": "BEP20", + "symbol": "TWC", + "decimals": 9, + "website": "https://tiwiecosystem.xyz", + "description": "TIWI Content Access Token (TIWICAT) is the access token for TiwiFlix, a web 3.0 video sharing, live streaming and monetization dApp. It also runs all the utilities within the TIWI Ecosystem. The token has an initial supply of 1 Quadrillion tokens with a 1% burn on each transaction through an embedded self-destruct mechanism and a 1% tax for marketing and development. Contract ownership has been renounced.", + "explorer": "https://bscscan.com/token/0xDA1060158F7D593667cCE0a15DB346BB3FfB3596", + "status": "active", + "id": "0xDA1060158F7D593667cCE0a15DB346BB3FfB3596", + "links": [ + { + "name": "x", + "url": "https://x.com/tiwiecosystem" + }, + { + "name": "telegram", + "url": "https://t.me/tiwi_ecosystem" + }, + { + "name": "facebook", + "url": "https://facebook.com/tiwiecosytem/" + }, + { + "name": "youtube", + "url": "https://youtube.com/@TIWI_Ecosystem" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tiwicat/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tiwicat" + } + ], + "tags": [ + "defi", + "deflationary", + "community" + ] +} diff --git a/blockchains/smartchain/assets/0xDA1060158F7D593667cCE0a15DB346BB3FfB3596/logo.png b/blockchains/smartchain/assets/0xDA1060158F7D593667cCE0a15DB346BB3FfB3596/logo.png new file mode 100644 index 0000000000000..500d45b740012 Binary files /dev/null and b/blockchains/smartchain/assets/0xDA1060158F7D593667cCE0a15DB346BB3FfB3596/logo.png differ diff --git a/blockchains/smartchain/assets/0xDA80C101f4C4D7a5fA1820ce381D61E5fcF58888/info.json b/blockchains/smartchain/assets/0xDA80C101f4C4D7a5fA1820ce381D61E5fcF58888/info.json new file mode 100644 index 0000000000000..4f8885eb347d0 --- /dev/null +++ b/blockchains/smartchain/assets/0xDA80C101f4C4D7a5fA1820ce381D61E5fcF58888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE ꓔеther ՍՏⅮ", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xDA80C101f4C4D7a5fA1820ce381D61E5fcF58888", + "explorer": "https://bscscan.com/token/0xDA80C101f4C4D7a5fA1820ce381D61E5fcF58888", + "status": "spam", + "id": "0xDA80C101f4C4D7a5fA1820ce381D61E5fcF58888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDAa52A3A1B1c76D52D80B8933202c83Da9B786e4/info.json b/blockchains/smartchain/assets/0xDAa52A3A1B1c76D52D80B8933202c83Da9B786e4/info.json new file mode 100644 index 0000000000000..7bf8c87b74f2a --- /dev/null +++ b/blockchains/smartchain/assets/0xDAa52A3A1B1c76D52D80B8933202c83Da9B786e4/info.json @@ -0,0 +1,17 @@ +{ + "name": "Pi Network", + "symbol": "Pi", + "website": "https://x.com/michelledian", + "description": "Pi-Cryptocurrency for everyday people fueling theworld's most inclusive peer-to-peer economy. Downloadour app to start mining Pi today.", + "explorer": "https://bscscan.com/token/0xdaa52a3a1b1c76d52d80b8933202c83da9b786e4", + "decimals": 18, + "status": "active", + "id": "0xDAa52A3A1B1c76D52D80B8933202c83Da9B786e4", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/babycapbnb" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDAa52A3A1B1c76D52D80B8933202c83Da9B786e4/logo.png b/blockchains/smartchain/assets/0xDAa52A3A1B1c76D52D80B8933202c83Da9B786e4/logo.png new file mode 100644 index 0000000000000..158327228fa15 Binary files /dev/null and b/blockchains/smartchain/assets/0xDAa52A3A1B1c76D52D80B8933202c83Da9B786e4/logo.png differ diff --git a/blockchains/smartchain/assets/0xDB0170e2d0c1CC1b2E7a90313d9B9afA4f250289/info.json b/blockchains/smartchain/assets/0xDB0170e2d0c1CC1b2E7a90313d9B9afA4f250289/info.json index 1923e8f99b900..d759c8b387e68 100644 --- a/blockchains/smartchain/assets/0xDB0170e2d0c1CC1b2E7a90313d9B9afA4f250289/info.json +++ b/blockchains/smartchain/assets/0xDB0170e2d0c1CC1b2E7a90313d9B9afA4f250289/info.json @@ -10,8 +10,8 @@ "id": "0xDB0170e2d0c1CC1b2E7a90313d9B9afA4f250289", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ADAPadofficial" + "name": "x", + "url": "https://x.com/ADAPadofficial" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0xDB021b1B247fe2F1fa57e0A87C748Cc1E321F07F/info.json b/blockchains/smartchain/assets/0xDB021b1B247fe2F1fa57e0A87C748Cc1E321F07F/info.json new file mode 100644 index 0000000000000..1ef1a837fe505 --- /dev/null +++ b/blockchains/smartchain/assets/0xDB021b1B247fe2F1fa57e0A87C748Cc1E321F07F/info.json @@ -0,0 +1,21 @@ +{ + "name": "Ampleforth", + "website": "https://ampleforth.org", + "description": "Ampleforth describes itself as smart commodity money. It is chain-agnostic and reportedly less-correlated to Bitcoin and other digital assets.", + "explorer": "https://bscscan.com/token/0xdb021b1b247fe2f1fa57e0a87c748cc1e321f07f", + "type": "BEP20", + "symbol": "AMPL", + "decimals": 9, + "status": "active", + "id": "0xDB021b1B247fe2F1fa57e0A87C748Cc1E321F07F", + "links": [ + { + "name": "x", + "url": "https://x.com/ampleforthorg" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ampleforth" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDB021b1B247fe2F1fa57e0A87C748Cc1E321F07F/logo.png b/blockchains/smartchain/assets/0xDB021b1B247fe2F1fa57e0A87C748Cc1E321F07F/logo.png new file mode 100644 index 0000000000000..40c6216b6e0c8 Binary files /dev/null and b/blockchains/smartchain/assets/0xDB021b1B247fe2F1fa57e0A87C748Cc1E321F07F/logo.png differ diff --git a/blockchains/smartchain/assets/0xDB79c12d1d0670988A39B0E48b96e955eF922d24/info.json b/blockchains/smartchain/assets/0xDB79c12d1d0670988A39B0E48b96e955eF922d24/info.json index 95a6d4a430857..bfdf23d459617 100644 --- a/blockchains/smartchain/assets/0xDB79c12d1d0670988A39B0E48b96e955eF922d24/info.json +++ b/blockchains/smartchain/assets/0xDB79c12d1d0670988A39B0E48b96e955eF922d24/info.json @@ -10,8 +10,8 @@ "id": "0xDB79c12d1d0670988A39B0E48b96e955eF922d24", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Teddydoge1" + "name": "x", + "url": "https://x.com/Teddydoge1" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7/info.json b/blockchains/smartchain/assets/0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7/info.json new file mode 100644 index 0000000000000..f6155bf648540 --- /dev/null +++ b/blockchains/smartchain/assets/0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7/info.json @@ -0,0 +1,21 @@ +{ + "name": "WorldMobileToken", + "symbol": "WMTX", + "type": "BEP20", + "decimals": 6, + "description": "World Mobile Token (WMTX) is the utility token that powers the World Mobile network, a decentralized mobile network at the forefront of the DePIN space. World Mobile aims to connect the world by leveraging blockchain technology and a sharing economy.", + "website": "https://worldmobiletoken.com/", + "explorer": "https://bscscan.com/token/0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7", + "status": "active", + "id": "0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/world-mobile-token/" + }, + { + "name": "x", + "url": "https://x.com/wmtoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7/logo.png b/blockchains/smartchain/assets/0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7/logo.png new file mode 100644 index 0000000000000..78a6538f0d2ab Binary files /dev/null and b/blockchains/smartchain/assets/0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7/logo.png differ diff --git a/blockchains/smartchain/assets/0xDC8C8221B8e27DFDA87A6D56DC5899A65087b6f4/info.json b/blockchains/smartchain/assets/0xDC8C8221B8e27DFDA87A6D56DC5899A65087b6f4/info.json new file mode 100644 index 0000000000000..fa004881271a8 --- /dev/null +++ b/blockchains/smartchain/assets/0xDC8C8221B8e27DFDA87A6D56DC5899A65087b6f4/info.json @@ -0,0 +1,21 @@ +{ + "name": "FLOKITA", + "type": "BEP20", + "symbol": "FLOKITA", + "decimals": 18, + "website": "https://flokita.cx/", + "description": "Flokita is a community-driven decentralized meme token with a dedicated team.", + "explorer": "https://bscscan.com/token/0xDC8C8221B8e27DFDA87A6D56DC5899A65087b6f4", + "status": "active", + "id": "0xDC8C8221B8e27DFDA87A6D56DC5899A65087b6f4", + "links": [ + { + "name": "x", + "url": "https://x.com/missflokita" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/flokita/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDC8C8221B8e27DFDA87A6D56DC5899A65087b6f4/logo.png b/blockchains/smartchain/assets/0xDC8C8221B8e27DFDA87A6D56DC5899A65087b6f4/logo.png new file mode 100644 index 0000000000000..4e61ec4c2a8bd Binary files /dev/null and b/blockchains/smartchain/assets/0xDC8C8221B8e27DFDA87A6D56DC5899A65087b6f4/logo.png differ diff --git a/blockchains/smartchain/assets/0xDD3162aD2185928bf3D92Bc05174Aa442E7382Ef/info.json b/blockchains/smartchain/assets/0xDD3162aD2185928bf3D92Bc05174Aa442E7382Ef/info.json index ac0a09a31b279..de0c4433b7d12 100644 --- a/blockchains/smartchain/assets/0xDD3162aD2185928bf3D92Bc05174Aa442E7382Ef/info.json +++ b/blockchains/smartchain/assets/0xDD3162aD2185928bf3D92Bc05174Aa442E7382Ef/info.json @@ -10,8 +10,8 @@ "id": "0xDD3162aD2185928bf3D92Bc05174Aa442E7382Ef", "links": [ { - "name": "twitter", - "url": "https://twitter.com/DouglasAMC" + "name": "x", + "url": "https://x.com/DouglasAMC" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xDE2F075f6F14EB9D96755b24E416A53E736Ca363/info.json b/blockchains/smartchain/assets/0xDE2F075f6F14EB9D96755b24E416A53E736Ca363/info.json index 76d7ceb554506..4a5aaead8ae73 100644 --- a/blockchains/smartchain/assets/0xDE2F075f6F14EB9D96755b24E416A53E736Ca363/info.json +++ b/blockchains/smartchain/assets/0xDE2F075f6F14EB9D96755b24E416A53E736Ca363/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/FraxFinance" }, { - "name": "twitter", - "url": "https://twitter.com/Frax Finance" + "name": "x", + "url": "https://x.com/Frax Finance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xDE5BDcbd4d7dFa86E527fEF9971bd6Ca6A76eefB/info.json b/blockchains/smartchain/assets/0xDE5BDcbd4d7dFa86E527fEF9971bd6Ca6A76eefB/info.json new file mode 100644 index 0000000000000..68b79d8cb6f7d --- /dev/null +++ b/blockchains/smartchain/assets/0xDE5BDcbd4d7dFa86E527fEF9971bd6Ca6A76eefB/info.json @@ -0,0 +1,24 @@ +{ + "name": "ivendPay", + "type": "BEP20", + "symbol": "IVPAY", + "decimals": 18, + "website": "https://ivendpay.com", + "description": "The core of IvendPay's innovation lies in integrating cryptocurrency payments into various commercial and retail environments through multiple channels including bank terminals, e-commerce plugins, APIs, iOs\\Android app, and vending machines. ivendPay's solution bridges the gap between traditional financial systems and the emerging digital economy, making it easier for consumers to use their cryptocurrencies for everyday purchases. This integration represents a significant step forward in the adoption and normalization of digital currencies", + "explorer": "https://bscscan.com/token/0xde5bdcbd4d7dfa86e527fef9971bd6ca6a76eefb", + "status": "active", + "id": "0xDE5BDcbd4d7dFa86E527fEF9971bd6Ca6A76eefB", + "links": [ + { + "name": "x", + "url": "https://x.com/ivendpay" + }, + { + "name": "telegram", + "url": "https://t.me/ivendpay_chat" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDE5BDcbd4d7dFa86E527fEF9971bd6Ca6A76eefB/logo.png b/blockchains/smartchain/assets/0xDE5BDcbd4d7dFa86E527fEF9971bd6Ca6A76eefB/logo.png new file mode 100644 index 0000000000000..6f9ef7a83be19 Binary files /dev/null and b/blockchains/smartchain/assets/0xDE5BDcbd4d7dFa86E527fEF9971bd6Ca6A76eefB/logo.png differ diff --git a/blockchains/smartchain/assets/0xDE9D6036FCA870f7efc5A82722Ae694c371Ac909/info.json b/blockchains/smartchain/assets/0xDE9D6036FCA870f7efc5A82722Ae694c371Ac909/info.json new file mode 100644 index 0000000000000..c13849ce7b5ff --- /dev/null +++ b/blockchains/smartchain/assets/0xDE9D6036FCA870f7efc5A82722Ae694c371Ac909/info.json @@ -0,0 +1,24 @@ +{ + "name": "Uber (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "UBERon is the Ondo Tokenized version of Uber, giving tokenholders economic exposure similar to holding UBER and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xde9d6036fca870f7efc5a82722ae694c371ac909", + "type": "BEP20", + "symbol": "UBERon", + "decimals": 18, + "status": "active", + "id": "0xDE9D6036FCA870f7efc5A82722Ae694c371Ac909", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/uber-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDE9D6036FCA870f7efc5A82722Ae694c371Ac909/logo.png b/blockchains/smartchain/assets/0xDE9D6036FCA870f7efc5A82722Ae694c371Ac909/logo.png new file mode 100644 index 0000000000000..eae90c658259f Binary files /dev/null and b/blockchains/smartchain/assets/0xDE9D6036FCA870f7efc5A82722Ae694c371Ac909/logo.png differ diff --git a/blockchains/smartchain/assets/0xDED37045CaAF334b1fCE0C38f83B6b2A4e698888/info.json b/blockchains/smartchain/assets/0xDED37045CaAF334b1fCE0C38f83B6b2A4e698888/info.json new file mode 100644 index 0000000000000..2a2998aa4471b --- /dev/null +++ b/blockchains/smartchain/assets/0xDED37045CaAF334b1fCE0C38f83B6b2A4e698888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Bitcoin", + "type": "BEP20", + "symbol": "FAKE BTC", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xDED37045CaAF334b1fCE0C38f83B6b2A4e698888", + "explorer": "https://bscscan.com/token/0xDED37045CaAF334b1fCE0C38f83B6b2A4e698888", + "status": "spam", + "id": "0xDED37045CaAF334b1fCE0C38f83B6b2A4e698888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDa182944E84092e11370CA521f10AEF488888888/info.json b/blockchains/smartchain/assets/0xDa182944E84092e11370CA521f10AEF488888888/info.json new file mode 100644 index 0000000000000..317cc64f481b3 --- /dev/null +++ b/blockchains/smartchain/assets/0xDa182944E84092e11370CA521f10AEF488888888/info.json @@ -0,0 +1,28 @@ +{ + "name": "United Stables", + "type": "BEP20", + "symbol": "U", + "decimals": 18, + "website": "https://u.tech/", + "description": "United Stables develops transparent, secure, and programmable stablecoin infrastructure for global markets. $U is a fully backed, operational-grade stablecoin designed for institutional trading, DeFi liquidity, treasury operations, and cross-border settlement. It’s the first stablecoin to aggregate liquidity, fully backed 1:1 by cash and audited stablecoins.", + "explorer": "https://bscscan.com/token/0xDa182944E84092e11370CA521f10AEF488888888", + "status": "abandoned", + "id": "0xDa182944E84092e11370CA521f10AEF488888888", + "links": [ + { + "name": "telegram_news", + "url": "https://t.me/Ustables" + }, + { + "name": "x", + "url": "https://x.com/UTechStables" + }, + { + "name": "medium", + "url": "https://medium.com/@Ustables" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDa4714fEE90Ad7DE50bC185ccD06b175D23906c1/info.json b/blockchains/smartchain/assets/0xDa4714fEE90Ad7DE50bC185ccD06b175D23906c1/info.json index 36b6d80c118c5..da31900c3d84a 100644 --- a/blockchains/smartchain/assets/0xDa4714fEE90Ad7DE50bC185ccD06b175D23906c1/info.json +++ b/blockchains/smartchain/assets/0xDa4714fEE90Ad7DE50bC185ccD06b175D23906c1/info.json @@ -10,8 +10,8 @@ "id": "0xDa4714fEE90Ad7DE50bC185ccD06b175D23906c1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/coingodzilla" + "name": "x", + "url": "https://x.com/coingodzilla" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xDa6802BbEC06Ab447A68294A63DE47eD4506ACAA/info.json b/blockchains/smartchain/assets/0xDa6802BbEC06Ab447A68294A63DE47eD4506ACAA/info.json index 60c172712f83d..d9f65e7ef5f53 100644 --- a/blockchains/smartchain/assets/0xDa6802BbEC06Ab447A68294A63DE47eD4506ACAA/info.json +++ b/blockchains/smartchain/assets/0xDa6802BbEC06Ab447A68294A63DE47eD4506ACAA/info.json @@ -10,8 +10,8 @@ "id": "0xDa6802BbEC06Ab447A68294A63DE47eD4506ACAA", "links": [ { - "name": "twitter", - "url": "https://twitter.com/CrypterOfficial" + "name": "x", + "url": "https://x.com/CrypterOfficial" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xDad07D0Ca26ed4109Bc00893dBee3Ed4cE8ce2a4/info.json b/blockchains/smartchain/assets/0xDad07D0Ca26ed4109Bc00893dBee3Ed4cE8ce2a4/info.json new file mode 100644 index 0000000000000..8f3f270f7609a --- /dev/null +++ b/blockchains/smartchain/assets/0xDad07D0Ca26ed4109Bc00893dBee3Ed4cE8ce2a4/info.json @@ -0,0 +1,28 @@ +{ + "name": "Cipher Mining (Ondo Tokenized)", + "type": "BEP20", + "symbol": "CIFRon", + "decimals": 18, + "description": "CIFRon is the Ondo Tokenized version of Cipher Mining, giving tokenholders economic exposure similar to holding CIFR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xDad07D0Ca26ed4109Bc00893dBee3Ed4cE8ce2a4", + "status": "active", + "id": "0xDad07D0Ca26ed4109Bc00893dBee3Ed4cE8ce2a4", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cipher-mining-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cipher-mining-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDad07D0Ca26ed4109Bc00893dBee3Ed4cE8ce2a4/logo.png b/blockchains/smartchain/assets/0xDad07D0Ca26ed4109Bc00893dBee3Ed4cE8ce2a4/logo.png new file mode 100644 index 0000000000000..a3964e6907cc4 Binary files /dev/null and b/blockchains/smartchain/assets/0xDad07D0Ca26ed4109Bc00893dBee3Ed4cE8ce2a4/logo.png differ diff --git a/blockchains/smartchain/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json b/blockchains/smartchain/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json index ae937d227e227..2e8747ce11e15 100644 --- a/blockchains/smartchain/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json +++ b/blockchains/smartchain/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json @@ -10,8 +10,8 @@ "id": "0xDbA7b24257fC6e397cB7368B4BC922E944072f1b", "links": [ { - "name": "twitter", - "url": "https://twitter.com/everrise" + "name": "x", + "url": "https://x.com/everrise" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xDc06717F367e57A16e06CcE0c4761604460da8Fc/info.json b/blockchains/smartchain/assets/0xDc06717F367e57A16e06CcE0c4761604460da8Fc/info.json new file mode 100644 index 0000000000000..3aab768d56cfa --- /dev/null +++ b/blockchains/smartchain/assets/0xDc06717F367e57A16e06CcE0c4761604460da8Fc/info.json @@ -0,0 +1,14 @@ +{ + "name": "BNB Card", + "type": "BEP20", + "symbol": "BNB Card", + "decimals": 18, + "website": "https://four.meme/token/0xDc06717F367e57A16e06CcE0c4761604460da8Fc", + "description": "BNB Card", + "explorer": "https://bscscan.com/token/0xDc06717F367e57A16e06CcE0c4761604460da8Fc", + "status": "active", + "id": "0xDc06717F367e57A16e06CcE0c4761604460da8Fc", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDc06717F367e57A16e06CcE0c4761604460da8Fc/logo.png b/blockchains/smartchain/assets/0xDc06717F367e57A16e06CcE0c4761604460da8Fc/logo.png new file mode 100644 index 0000000000000..cd5b24fff1918 Binary files /dev/null and b/blockchains/smartchain/assets/0xDc06717F367e57A16e06CcE0c4761604460da8Fc/logo.png differ diff --git a/blockchains/smartchain/assets/0xDc49d53330317cBc6924fA53042e0C9bCa0A8d63/info.json b/blockchains/smartchain/assets/0xDc49d53330317cBc6924fA53042e0C9bCa0A8d63/info.json index 06af0b37f9dfa..15c03b49b0acd 100644 --- a/blockchains/smartchain/assets/0xDc49d53330317cBc6924fA53042e0C9bCa0A8d63/info.json +++ b/blockchains/smartchain/assets/0xDc49d53330317cBc6924fA53042e0C9bCa0A8d63/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/DogediToken" + "name": "x", + "url": "https://x.com/DogediToken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xDcd4536508060dab8F43C334B3a6C72c39528DA5/info.json b/blockchains/smartchain/assets/0xDcd4536508060dab8F43C334B3a6C72c39528DA5/info.json new file mode 100644 index 0000000000000..596aae1871b06 --- /dev/null +++ b/blockchains/smartchain/assets/0xDcd4536508060dab8F43C334B3a6C72c39528DA5/info.json @@ -0,0 +1,24 @@ +{ + "name": "First Trust NASDAQ Cybersecurity ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "CIBRon", + "decimals": 18, + "description": "CIBRon is the Ondo Tokenized version of the First Trust NASDAQ Cybersecurity ETF, giving tokenholders economic exposure similar to holding CIBR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xDcd4536508060dab8F43C334B3a6C72c39528DA5", + "status": "active", + "id": "0xDcd4536508060dab8F43C334B3a6C72c39528DA5", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/first-trust-nasdaq-cybersecurity-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDcd4536508060dab8F43C334B3a6C72c39528DA5/logo.png b/blockchains/smartchain/assets/0xDcd4536508060dab8F43C334B3a6C72c39528DA5/logo.png new file mode 100644 index 0000000000000..136dac3e5c4b9 Binary files /dev/null and b/blockchains/smartchain/assets/0xDcd4536508060dab8F43C334B3a6C72c39528DA5/logo.png differ diff --git a/blockchains/smartchain/assets/0xDd17629D05E068A9D118ee35d11101d4140D0586/info.json b/blockchains/smartchain/assets/0xDd17629D05E068A9D118ee35d11101d4140D0586/info.json index 1936f74fab11b..38c5cb227b487 100644 --- a/blockchains/smartchain/assets/0xDd17629D05E068A9D118ee35d11101d4140D0586/info.json +++ b/blockchains/smartchain/assets/0xDd17629D05E068A9D118ee35d11101d4140D0586/info.json @@ -10,8 +10,8 @@ "id": "0xDd17629D05E068A9D118ee35d11101d4140D0586", "links": [ { - "name": "twitter", - "url": "https://twitter.com/yocoiny" + "name": "x", + "url": "https://x.com/yocoiny" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xDd30269730A980cCE44F00Bbf9a7537131844444/info.json b/blockchains/smartchain/assets/0xDd30269730A980cCE44F00Bbf9a7537131844444/info.json new file mode 100644 index 0000000000000..a52902abe279c --- /dev/null +++ b/blockchains/smartchain/assets/0xDd30269730A980cCE44F00Bbf9a7537131844444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDKG GOLD DOLLAR", + "type": "BEP20", + "symbol": "FAKE USDKG", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xDd30269730A980cCE44F00Bbf9a7537131844444", + "explorer": "https://bscscan.com/token/0xDd30269730A980cCE44F00Bbf9a7537131844444", + "status": "spam", + "id": "0xDd30269730A980cCE44F00Bbf9a7537131844444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDe04da55B74435d7B9f2C5c62D9F1b53929b09AA/info.json b/blockchains/smartchain/assets/0xDe04da55B74435d7B9f2C5c62D9F1b53929b09AA/info.json new file mode 100644 index 0000000000000..ddfd8cad3f434 --- /dev/null +++ b/blockchains/smartchain/assets/0xDe04da55B74435d7B9f2C5c62D9F1b53929b09AA/info.json @@ -0,0 +1,17 @@ +{ + "name": "AICell", + "symbol": "AICell", + "website": "https://aicell.world", + "description": "AICell integrates AI agent and web3 the one and only AI MEME on #BNBChain", + "explorer": "https://bscscan.com/token/0xde04da55b74435d7b9f2c5c62d9f1b53929b09aa", + "decimals": 18, + "status": "active", + "id": "0xDe04da55B74435d7B9f2C5c62D9F1b53929b09AA", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/AICell_World" + } + ] +} diff --git a/blockchains/smartchain/assets/0xDe04da55B74435d7B9f2C5c62D9F1b53929b09AA/logo.png b/blockchains/smartchain/assets/0xDe04da55B74435d7B9f2C5c62D9F1b53929b09AA/logo.png new file mode 100644 index 0000000000000..d2923c6507a8b Binary files /dev/null and b/blockchains/smartchain/assets/0xDe04da55B74435d7B9f2C5c62D9F1b53929b09AA/logo.png differ diff --git a/blockchains/smartchain/assets/0xDeb9e5D630CEa02cf83258aAf5bAD933F7a43AE7/info.json b/blockchains/smartchain/assets/0xDeb9e5D630CEa02cf83258aAf5bAD933F7a43AE7/info.json index c5d896c6db452..24f51455e03bf 100644 --- a/blockchains/smartchain/assets/0xDeb9e5D630CEa02cf83258aAf5bAD933F7a43AE7/info.json +++ b/blockchains/smartchain/assets/0xDeb9e5D630CEa02cf83258aAf5bAD933F7a43AE7/info.json @@ -10,8 +10,8 @@ "id": "0xDeb9e5D630CEa02cf83258aAf5bAD933F7a43AE7", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BabyBITC_bsc" + "name": "x", + "url": "https://x.com/BabyBITC_bsc" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xDf394853D830424CaFCCF7Be7dF065366cF31a69/info.json b/blockchains/smartchain/assets/0xDf394853D830424CaFCCF7Be7dF065366cF31a69/info.json index 5f0cfa09e534c..519013fdde864 100644 --- a/blockchains/smartchain/assets/0xDf394853D830424CaFCCF7Be7dF065366cF31a69/info.json +++ b/blockchains/smartchain/assets/0xDf394853D830424CaFCCF7Be7dF065366cF31a69/info.json @@ -14,8 +14,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/BICHON MEME TOKEN" + "name": "x", + "url": "https://x.com/BICHON MEME TOKEN" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xE02dF9e3e622DeBdD69fb838bB799E3F168902c5/info.json b/blockchains/smartchain/assets/0xE02dF9e3e622DeBdD69fb838bB799E3F168902c5/info.json index 99a303e1b6e72..8aea4cd2960be 100644 --- a/blockchains/smartchain/assets/0xE02dF9e3e622DeBdD69fb838bB799E3F168902c5/info.json +++ b/blockchains/smartchain/assets/0xE02dF9e3e622DeBdD69fb838bB799E3F168902c5/info.json @@ -18,8 +18,8 @@ "url": "https://medium.com/@BakerySwap" }, { - "name": "twitter", - "url": "https://twitter.com/bakery_swap" + "name": "x", + "url": "https://x.com/bakery_swap" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xE03495fCa9e644d55B65c30ed9fdC3321C260126/info.json b/blockchains/smartchain/assets/0xE03495fCa9e644d55B65c30ed9fdC3321C260126/info.json index 5e06b1beae492..abdf4a41cba7f 100644 --- a/blockchains/smartchain/assets/0xE03495fCa9e644d55B65c30ed9fdC3321C260126/info.json +++ b/blockchains/smartchain/assets/0xE03495fCa9e644d55B65c30ed9fdC3321C260126/info.json @@ -10,8 +10,8 @@ "id": "0xE03495fCa9e644d55B65c30ed9fdC3321C260126", "links": [ { - "name": "twitter", - "url": "https://twitter.com/@WhenLamboTokens" + "name": "x", + "url": "https://x.com/@WhenLamboTokens" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xE0399378f7a92A39DA849EB64CdDdE2940e234Bb/info.json b/blockchains/smartchain/assets/0xE0399378f7a92A39DA849EB64CdDdE2940e234Bb/info.json index e35cf9475f803..e8118b4953978 100644 --- a/blockchains/smartchain/assets/0xE0399378f7a92A39DA849EB64CdDdE2940e234Bb/info.json +++ b/blockchains/smartchain/assets/0xE0399378f7a92A39DA849EB64CdDdE2940e234Bb/info.json @@ -10,8 +10,8 @@ "id": "0xE0399378f7a92A39DA849EB64CdDdE2940e234Bb", "links": [ { - "name": "twitter", - "url": "https://twitter.com/zion_topia" + "name": "x", + "url": "https://x.com/zion_topia" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xE0F324A026ca55492637009d98034103Db4a6967/info.json b/blockchains/smartchain/assets/0xE0F324A026ca55492637009d98034103Db4a6967/info.json new file mode 100644 index 0000000000000..38b71a0152ce1 --- /dev/null +++ b/blockchains/smartchain/assets/0xE0F324A026ca55492637009d98034103Db4a6967/info.json @@ -0,0 +1,20 @@ +{ + "name": "Brera xStock", + "type": "BEP20", + "symbol": "SLMTx", + "decimals": 18, + "description": "Brera xStock (SLMTx) is a tracker certificate issued as a freely transferable token on selected blockchains. SLMTx tracks the price of Brera Holdings PLC. SLMTx is designed to give eligible investors regulatory-compliant access to the stock price of Brera Holdings PLC, whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0xE0F324A026ca55492637009d98034103Db4a6967", + "status": "active", + "id": "0xE0F324A026ca55492637009d98034103Db4a6967", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE0F324A026ca55492637009d98034103Db4a6967/logo.png b/blockchains/smartchain/assets/0xE0F324A026ca55492637009d98034103Db4a6967/logo.png new file mode 100644 index 0000000000000..d51b916031b7b Binary files /dev/null and b/blockchains/smartchain/assets/0xE0F324A026ca55492637009d98034103Db4a6967/logo.png differ diff --git a/blockchains/smartchain/assets/0xE0b1EF69BC4AB4173989C1190f0d77A813f3B726/info.json b/blockchains/smartchain/assets/0xE0b1EF69BC4AB4173989C1190f0d77A813f3B726/info.json index 1a105f8bdf926..852401f555d39 100644 --- a/blockchains/smartchain/assets/0xE0b1EF69BC4AB4173989C1190f0d77A813f3B726/info.json +++ b/blockchains/smartchain/assets/0xE0b1EF69BC4AB4173989C1190f0d77A813f3B726/info.json @@ -10,8 +10,8 @@ "id": "0xE0b1EF69BC4AB4173989C1190f0d77A813f3B726", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Fat_Cat_Killer" + "name": "x", + "url": "https://x.com/Fat_Cat_Killer" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0xE10e9822A5de22F8761919310DDA35CD997d63c0/info.json b/blockchains/smartchain/assets/0xE10e9822A5de22F8761919310DDA35CD997d63c0/info.json index 7b6ee06e222fb..9052fe1aef51a 100644 --- a/blockchains/smartchain/assets/0xE10e9822A5de22F8761919310DDA35CD997d63c0/info.json +++ b/blockchains/smartchain/assets/0xE10e9822A5de22F8761919310DDA35CD997d63c0/info.json @@ -10,8 +10,8 @@ "id": "0xE10e9822A5de22F8761919310DDA35CD997d63c0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ThugsFinance" + "name": "x", + "url": "https://x.com/ThugsFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015/info.json b/blockchains/smartchain/assets/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015/info.json new file mode 100644 index 0000000000000..7f1a05a4a0e4f --- /dev/null +++ b/blockchains/smartchain/assets/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015/info.json @@ -0,0 +1,24 @@ +{ + "name": "Robinhood tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Robinhood tokenized stock (xStock) (HOODX) is a cryptocurrency and operates on the Solana platform. Robinhood tokenized stock (xStock) has a current supply of 30,999.85114263. The last known price of Robinhood tokenized stock (xStock) is 115.00870956 USD and is down -0.48 over the last 24 hours. It is currently trading on 28 active market(s) with $10,711,891.70 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/robinhood-xstock.", + "explorer": "https://bscscan.com/token/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015", + "type": "BEP20", + "symbol": "HOODX", + "decimals": 18, + "status": "active", + "id": "0xE1385FDd5ffB10081Cd52C56584F25EFa9084015", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/robinhood-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015/logo.png b/blockchains/smartchain/assets/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015/logo.png new file mode 100644 index 0000000000000..41bfda5c82784 Binary files /dev/null and b/blockchains/smartchain/assets/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015/logo.png differ diff --git a/blockchains/smartchain/assets/0xE1743616f705954620aa351465c8885fBDE5A8A9/info.json b/blockchains/smartchain/assets/0xE1743616f705954620aa351465c8885fBDE5A8A9/info.json new file mode 100644 index 0000000000000..4de030384fed6 --- /dev/null +++ b/blockchains/smartchain/assets/0xE1743616f705954620aa351465c8885fBDE5A8A9/info.json @@ -0,0 +1,24 @@ +{ + "name": "Linde plc (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "LINon is the Ondo Tokenized version of Linde plc, giving tokenholders economic exposure similar to holding LIN and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xe1743616f705954620aa351465c8885fbde5a8a9", + "type": "BEP20", + "symbol": "LINon", + "decimals": 18, + "status": "active", + "id": "0xE1743616f705954620aa351465c8885fBDE5A8A9", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/linde-plc-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE1743616f705954620aa351465c8885fBDE5A8A9/logo.png b/blockchains/smartchain/assets/0xE1743616f705954620aa351465c8885fBDE5A8A9/logo.png new file mode 100644 index 0000000000000..1bc23284155fd Binary files /dev/null and b/blockchains/smartchain/assets/0xE1743616f705954620aa351465c8885fBDE5A8A9/logo.png differ diff --git a/blockchains/smartchain/assets/0xE17faBD60780f07F5e6662634EA29f5680CE8888/info.json b/blockchains/smartchain/assets/0xE17faBD60780f07F5e6662634EA29f5680CE8888/info.json new file mode 100644 index 0000000000000..917973c767d90 --- /dev/null +++ b/blockchains/smartchain/assets/0xE17faBD60780f07F5e6662634EA29f5680CE8888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Bitcoin", + "type": "BEP20", + "symbol": "FAKE BTC", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xE17faBD60780f07F5e6662634EA29f5680CE8888", + "explorer": "https://bscscan.com/token/0xE17faBD60780f07F5e6662634EA29f5680CE8888", + "status": "spam", + "id": "0xE17faBD60780f07F5e6662634EA29f5680CE8888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE256BC2A4F5297F8ba6f043F180a46300eCbCbB1/info.json b/blockchains/smartchain/assets/0xE256BC2A4F5297F8ba6f043F180a46300eCbCbB1/info.json new file mode 100644 index 0000000000000..037b52ab05d4f --- /dev/null +++ b/blockchains/smartchain/assets/0xE256BC2A4F5297F8ba6f043F180a46300eCbCbB1/info.json @@ -0,0 +1,20 @@ +{ + "name": "Nebius Tokenized bStocks", + "type": "BEP20", + "symbol": "NBISB", + "decimals": 18, + "description": "NBISB is a tokenized bStocks that gives you economic exposure to Nebius Tokenized bStocks, and the right to convert to the underlying security on the Binance.com platform subject to applicable laws. Each token is fully backed by the corresponding underlying equity maintained by the Issuer at a US-regulated broker-dealer. You get the price movements, dividends, and the right to convert the token at 1:1 to the underlying share — tradeable 24/7.", + "website": "https://www.bstocks.finance/en/", + "explorer": "https://bscscan.com/token/0xE256BC2A4F5297F8ba6f043F180a46300eCbCbB1", + "status": "active", + "id": "0xE256BC2A4F5297F8ba6f043F180a46300eCbCbB1", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nebius-tokenized-bstocks/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE256BC2A4F5297F8ba6f043F180a46300eCbCbB1/logo.png b/blockchains/smartchain/assets/0xE256BC2A4F5297F8ba6f043F180a46300eCbCbB1/logo.png new file mode 100644 index 0000000000000..dec445cfdda1f Binary files /dev/null and b/blockchains/smartchain/assets/0xE256BC2A4F5297F8ba6f043F180a46300eCbCbB1/logo.png differ diff --git a/blockchains/smartchain/assets/0xE3233fdb23F1c27aB37Bd66A19a1f1762fCf5f3F/info.json b/blockchains/smartchain/assets/0xE3233fdb23F1c27aB37Bd66A19a1f1762fCf5f3F/info.json index 63688229013c3..0eaadf4b2e141 100644 --- a/blockchains/smartchain/assets/0xE3233fdb23F1c27aB37Bd66A19a1f1762fCf5f3F/info.json +++ b/blockchains/smartchain/assets/0xE3233fdb23F1c27aB37Bd66A19a1f1762fCf5f3F/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/ElemonAnnouncement" }, { - "name": "twitter", - "url": "https://twitter.com/ElemonGame" + "name": "x", + "url": "https://x.com/ElemonGame" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0xE36fb7548d16D1B1DDB484A322f06e4ECd3E1f68/info.json b/blockchains/smartchain/assets/0xE36fb7548d16D1B1DDB484A322f06e4ECd3E1f68/info.json new file mode 100644 index 0000000000000..b5ad8af104f05 --- /dev/null +++ b/blockchains/smartchain/assets/0xE36fb7548d16D1B1DDB484A322f06e4ECd3E1f68/info.json @@ -0,0 +1,32 @@ +{ + "name": "NeutralAI", + "type": "BEP20", + "symbol": "USDN", + "decimals": 18, + "website": "https://neutralai.io/", + "description": "USDN operates on a decentralized and transparent smart contract infrastructure, ensuring stability, security, and efficiency. The smart contracts are deployed on multiple blockchain networks, supporting key functionalities.", + "explorer": "https://bscscan.com/token/0xE36fb7548d16D1B1DDB484A322f06e4ECd3E1f68", + "status": "abandoned", + "id": "0xE36fb7548d16D1B1DDB484A322f06e4ECd3E1f68", + "links": [ + { + "name": "x", + "url": "https://x.com/neutralai_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/neutral-ai/" + }, + { + "name": "github", + "url": "https://github.com/neutralai" + }, + { + "name": "telegram", + "url": "https://t.me/neutralai_io" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE38950f71E2D2Fc4cA9dC9C3625d82560b0A5d8F/info.json b/blockchains/smartchain/assets/0xE38950f71E2D2Fc4cA9dC9C3625d82560b0A5d8F/info.json index ad815ea101fd9..d26f5543d526e 100644 --- a/blockchains/smartchain/assets/0xE38950f71E2D2Fc4cA9dC9C3625d82560b0A5d8F/info.json +++ b/blockchains/smartchain/assets/0xE38950f71E2D2Fc4cA9dC9C3625d82560b0A5d8F/info.json @@ -5,8 +5,8 @@ "id": "0xE38950f71E2D2Fc4cA9dC9C3625d82560b0A5d8F", "links": [ { - "name": "twitter", - "url": "https://twitter.com/NELOnetwork" + "name": "x", + "url": "https://x.com/NELOnetwork" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xE3b17E6D290A0F28bd32aF4064637057627004D5/info.json b/blockchains/smartchain/assets/0xE3b17E6D290A0F28bd32aF4064637057627004D5/info.json new file mode 100644 index 0000000000000..b89161eb7c539 --- /dev/null +++ b/blockchains/smartchain/assets/0xE3b17E6D290A0F28bd32aF4064637057627004D5/info.json @@ -0,0 +1,24 @@ +{ + "name": "Freeport-McMoRan (Ondo Tokenized)", + "type": "BEP20", + "symbol": "FCXon", + "decimals": 18, + "description": "FCXon is the Ondo Tokenized version of Freeport-McMoRan, giving tokenholders economic exposure similar to holding FCX and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xE3b17E6D290A0F28bd32aF4064637057627004D5", + "status": "active", + "id": "0xE3b17E6D290A0F28bd32aF4064637057627004D5", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/freeport-mcmoran-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE3b17E6D290A0F28bd32aF4064637057627004D5/logo.png b/blockchains/smartchain/assets/0xE3b17E6D290A0F28bd32aF4064637057627004D5/logo.png new file mode 100644 index 0000000000000..1e2bfeca37367 Binary files /dev/null and b/blockchains/smartchain/assets/0xE3b17E6D290A0F28bd32aF4064637057627004D5/logo.png differ diff --git a/blockchains/smartchain/assets/0xE4145407d1952B6C1d5bE9039a2EfFA3A0ed3baa/info.json b/blockchains/smartchain/assets/0xE4145407d1952B6C1d5bE9039a2EfFA3A0ed3baa/info.json index a4269d23bb002..ac2e0087ad276 100644 --- a/blockchains/smartchain/assets/0xE4145407d1952B6C1d5bE9039a2EfFA3A0ed3baa/info.json +++ b/blockchains/smartchain/assets/0xE4145407d1952B6C1d5bE9039a2EfFA3A0ed3baa/info.json @@ -6,8 +6,8 @@ "type": "BEP20", "links": [ { - "name": "twitter", - "url": "https://twitter.com/AnnexFinance" + "name": "x", + "url": "https://x.com/AnnexFinance" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0xE41d9E1311209F2e05850F9de6201Ab4B930Bfc2/info.json b/blockchains/smartchain/assets/0xE41d9E1311209F2e05850F9de6201Ab4B930Bfc2/info.json index d05fdefb1c874..1dcb615c6b72d 100644 --- a/blockchains/smartchain/assets/0xE41d9E1311209F2e05850F9de6201Ab4B930Bfc2/info.json +++ b/blockchains/smartchain/assets/0xE41d9E1311209F2e05850F9de6201Ab4B930Bfc2/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Sponsee/" }, { - "name": "twitter", - "url": "https://twitter.com/SPONtoken" + "name": "x", + "url": "https://x.com/SPONtoken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xE4318F2aCf2b9c3f518A3a03B5412F4999970Ddb/info.json b/blockchains/smartchain/assets/0xE4318F2aCf2b9c3f518A3a03B5412F4999970Ddb/info.json index 04dbb6ffbb900..3b66dbd96a5b7 100644 --- a/blockchains/smartchain/assets/0xE4318F2aCf2b9c3f518A3a03B5412F4999970Ddb/info.json +++ b/blockchains/smartchain/assets/0xE4318F2aCf2b9c3f518A3a03B5412F4999970Ddb/info.json @@ -6,12 +6,12 @@ "website": "https://rhythm.cash/", "description": "$RHYTHM is the token powering the Rhythm music streaming platform, which boasts a library of over 100 million songs, offering holders in-app rewards, perks, NFTs, and powering the Artist Partner Program.", "explorer": "https://bscscan.com/token/0xE4318F2aCf2b9c3f518A3a03B5412F4999970Ddb", - "status": "active", + "status": "abandoned", "id": "0xE4318F2aCf2b9c3f518A3a03B5412F4999970Ddb", "links": [ { - "name": "twitter", - "url": "https://twitter.com/RhythmBSC" + "name": "x", + "url": "https://x.com/RhythmBSC" }, { "name": "coingecko", diff --git a/blockchains/smartchain/assets/0xE44946b6A075b2C99fDe1dD0c4dA4a3436211f8C/info.json b/blockchains/smartchain/assets/0xE44946b6A075b2C99fDe1dD0c4dA4a3436211f8C/info.json index 8693ba4605462..8d1e730938916 100644 --- a/blockchains/smartchain/assets/0xE44946b6A075b2C99fDe1dD0c4dA4a3436211f8C/info.json +++ b/blockchains/smartchain/assets/0xE44946b6A075b2C99fDe1dD0c4dA4a3436211f8C/info.json @@ -14,8 +14,8 @@ "url": "https://drive.google.com/file/d/1rzrF-drYWCire2ghGarFi-J1gI_lWo0S/view" }, { - "name": "twitter", - "url": "https://twitter.com/mufantoken" + "name": "x", + "url": "https://x.com/mufantoken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xE4C293Eadbb9d72d68a680F1A66979726992c396/info.json b/blockchains/smartchain/assets/0xE4C293Eadbb9d72d68a680F1A66979726992c396/info.json index bb17bc4462d86..0798d1c028f23 100644 --- a/blockchains/smartchain/assets/0xE4C293Eadbb9d72d68a680F1A66979726992c396/info.json +++ b/blockchains/smartchain/assets/0xE4C293Eadbb9d72d68a680F1A66979726992c396/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/lucid-lands-v2/" }, { - "name": "twitter", - "url": "https://twitter.com/LucidLands" + "name": "x", + "url": "https://x.com/LucidLands" }, { "name": "telegram", @@ -29,5 +29,4 @@ "tags": [ "nft" ] -} - +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE4E12c9CEc3e8cAE405202A97f66AFA695075fa0/info.json b/blockchains/smartchain/assets/0xE4E12c9CEc3e8cAE405202A97f66AFA695075fa0/info.json new file mode 100644 index 0000000000000..9ca933aa4dbf0 --- /dev/null +++ b/blockchains/smartchain/assets/0xE4E12c9CEc3e8cAE405202A97f66AFA695075fa0/info.json @@ -0,0 +1,24 @@ +{ + "name": "Equinix (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "EQIXon is the Ondo Tokenized version of Equinix, giving tokenholders economic exposure similar to holding EQIX and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xe4e12c9cec3e8cae405202a97f66afa695075fa0", + "type": "BEP20", + "symbol": "EQIXon", + "decimals": 18, + "status": "active", + "id": "0xE4E12c9CEc3e8cAE405202A97f66AFA695075fa0", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/equinix-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE4E12c9CEc3e8cAE405202A97f66AFA695075fa0/logo.png b/blockchains/smartchain/assets/0xE4E12c9CEc3e8cAE405202A97f66AFA695075fa0/logo.png new file mode 100644 index 0000000000000..e43feccb155c0 Binary files /dev/null and b/blockchains/smartchain/assets/0xE4E12c9CEc3e8cAE405202A97f66AFA695075fa0/logo.png differ diff --git a/blockchains/smartchain/assets/0xE53D384Cf33294C1882227ae4f90D64cF2a5dB70/info.json b/blockchains/smartchain/assets/0xE53D384Cf33294C1882227ae4f90D64cF2a5dB70/info.json new file mode 100644 index 0000000000000..ad4323bd7af35 --- /dev/null +++ b/blockchains/smartchain/assets/0xE53D384Cf33294C1882227ae4f90D64cF2a5dB70/info.json @@ -0,0 +1,26 @@ +{ + "name": "Ocicat", + "symbol": "Ocicat", + "type": "BEP20", + "decimals": 6, + "description": "Ocicat is a community-driven crypto project with DAO governance and DeFi utility.", + "website": "https://www.ocicat.club/", + "explorer": "https://bscscan.com/token/0xE53D384Cf33294C1882227ae4f90D64cF2a5dB70", + "status": "active", + "id": "0xE53D384Cf33294C1882227ae4f90D64cF2a5dB70", + "tags": [ + "defi", + "staking", + "governance" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ocicatcoin" + }, + { + "name": "telegram", + "url": "https://t.me/ocicatcoin" + } + ] +} diff --git a/blockchains/smartchain/assets/0xE53D384Cf33294C1882227ae4f90D64cF2a5dB70/logo.png b/blockchains/smartchain/assets/0xE53D384Cf33294C1882227ae4f90D64cF2a5dB70/logo.png new file mode 100644 index 0000000000000..39994a241abf0 Binary files /dev/null and b/blockchains/smartchain/assets/0xE53D384Cf33294C1882227ae4f90D64cF2a5dB70/logo.png differ diff --git a/blockchains/smartchain/assets/0xE540980f909873370bBE9C19Db7c3B5ba4DEF701/info.json b/blockchains/smartchain/assets/0xE540980f909873370bBE9C19Db7c3B5ba4DEF701/info.json index 6c06bf5118646..48296ab7140cf 100644 --- a/blockchains/smartchain/assets/0xE540980f909873370bBE9C19Db7c3B5ba4DEF701/info.json +++ b/blockchains/smartchain/assets/0xE540980f909873370bBE9C19Db7c3B5ba4DEF701/info.json @@ -10,8 +10,8 @@ "id": "0xE540980f909873370bBE9C19Db7c3B5ba4DEF701", "links": [ { - "name": "twitter", - "url": "https://twitter.com/iLayerEcosystem" + "name": "x", + "url": "https://x.com/iLayerEcosystem" }, { "name": "coingecko", diff --git a/blockchains/smartchain/assets/0xE58C3A44B74362048e202cb7C8036D4b0B28Af50/info.json b/blockchains/smartchain/assets/0xE58C3A44B74362048e202cb7C8036D4b0B28Af50/info.json new file mode 100644 index 0000000000000..d3656bf5eab3c --- /dev/null +++ b/blockchains/smartchain/assets/0xE58C3A44B74362048e202cb7C8036D4b0B28Af50/info.json @@ -0,0 +1,21 @@ +{ + "name": "Solarx", + "type": "BEP20", + "symbol": "SXCH", + "decimals": 18, + "website": "https://solarx.ai/", + "description": "The SolarX project is an innovative and eco-friendly approach to cryptocurrency mining that aims to use renewable energy sources to power the mining process.", + "explorer": "https://bscscan.com/token/0xE58C3A44B74362048e202cb7C8036D4b0B28Af50", + "status": "active", + "id": "0xE58C3A44B74362048e202cb7C8036D4b0B28Af50", + "links": [ + { + "name": "x", + "url": "https://x.com/solarxchain" + }, + { + "name": "telegram", + "url": "https://t.me/solarxofficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE58C3A44B74362048e202cb7C8036D4b0B28Af50/logo.png b/blockchains/smartchain/assets/0xE58C3A44B74362048e202cb7C8036D4b0B28Af50/logo.png new file mode 100644 index 0000000000000..efe387ee51e4f Binary files /dev/null and b/blockchains/smartchain/assets/0xE58C3A44B74362048e202cb7C8036D4b0B28Af50/logo.png differ diff --git a/blockchains/smartchain/assets/0xE5b5d4Bea7468B4994FA676949308a79497aa24c/info.json b/blockchains/smartchain/assets/0xE5b5d4Bea7468B4994FA676949308a79497aa24c/info.json index e629aa623c498..d6619096feb24 100644 --- a/blockchains/smartchain/assets/0xE5b5d4Bea7468B4994FA676949308a79497aa24c/info.json +++ b/blockchains/smartchain/assets/0xE5b5d4Bea7468B4994FA676949308a79497aa24c/info.json @@ -10,8 +10,8 @@ "id": "0xE5b5d4Bea7468B4994FA676949308a79497aa24c", "links": [ { - "name": "twitter", - "url": "https://twitter.com/sheikhinutoken" + "name": "x", + "url": "https://x.com/sheikhinutoken" }, { "name": "github", @@ -29,4 +29,4 @@ "tags": [ "memes" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE5c355c993dE69C06b5DD1A0c9a2c39b4Cde5511/info.json b/blockchains/smartchain/assets/0xE5c355c993dE69C06b5DD1A0c9a2c39b4Cde5511/info.json index 2fc7fc63e5dc5..f8089dfd5618d 100644 --- a/blockchains/smartchain/assets/0xE5c355c993dE69C06b5DD1A0c9a2c39b4Cde5511/info.json +++ b/blockchains/smartchain/assets/0xE5c355c993dE69C06b5DD1A0c9a2c39b4Cde5511/info.json @@ -10,8 +10,8 @@ "id": "0xE5c355c993dE69C06b5DD1A0c9a2c39b4Cde5511", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Froginutoken" + "name": "x", + "url": "https://x.com/Froginutoken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d/info.json b/blockchains/smartchain/assets/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d/info.json new file mode 100644 index 0000000000000..5f94b6d581b71 --- /dev/null +++ b/blockchains/smartchain/assets/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d/info.json @@ -0,0 +1,24 @@ +{ + "name": "Gamestop tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Gamestop tokenized stock (xStock) (GMEX) is a cryptocurrency and operates on the Solana platform. Gamestop tokenized stock (xStock) has a current supply of 23,600 with 6,000 in circulation. The last known price of Gamestop tokenized stock (xStock) is 27.48685055 USD and is up 0.00 over the last 24 hours. More information can be found at https://assets.backed.fi/products/gamestop-xstock.", + "explorer": "https://bscscan.com/token/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d", + "type": "BEP20", + "symbol": "GMEX", + "decimals": 18, + "status": "active", + "id": "0xE5f6d3b2405ABdfE6F660e63202B25D23763160d", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gamestop-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d/logo.png b/blockchains/smartchain/assets/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d/logo.png new file mode 100644 index 0000000000000..a0ca86f1f3793 Binary files /dev/null and b/blockchains/smartchain/assets/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d/logo.png differ diff --git a/blockchains/smartchain/assets/0xE64E30276C2F826FEbd3784958d6Da7B55DfbaD3/info.json b/blockchains/smartchain/assets/0xE64E30276C2F826FEbd3784958d6Da7B55DfbaD3/info.json index 1b55919f62272..b794da1db2291 100644 --- a/blockchains/smartchain/assets/0xE64E30276C2F826FEbd3784958d6Da7B55DfbaD3/info.json +++ b/blockchains/smartchain/assets/0xE64E30276C2F826FEbd3784958d6Da7B55DfbaD3/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/SwftCoin" + "name": "x", + "url": "https://x.com/SwftCoin" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xE665d9abcFe78962385Aa5A8aa0A35E33B8F2C20/info.json b/blockchains/smartchain/assets/0xE665d9abcFe78962385Aa5A8aa0A35E33B8F2C20/info.json index e6a1fbd1664e1..f1ec22351c21e 100644 --- a/blockchains/smartchain/assets/0xE665d9abcFe78962385Aa5A8aa0A35E33B8F2C20/info.json +++ b/blockchains/smartchain/assets/0xE665d9abcFe78962385Aa5A8aa0A35E33B8F2C20/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/NextMoonToken" + "name": "x", + "url": "https://x.com/NextMoonToken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xE68b79e51bf826534Ff37AA9CeE71a3842ee9c70/info.json b/blockchains/smartchain/assets/0xE68b79e51bf826534Ff37AA9CeE71a3842ee9c70/info.json index 2c39cf20608d3..e00fa3ec4286f 100644 --- a/blockchains/smartchain/assets/0xE68b79e51bf826534Ff37AA9CeE71a3842ee9c70/info.json +++ b/blockchains/smartchain/assets/0xE68b79e51bf826534Ff37AA9CeE71a3842ee9c70/info.json @@ -10,8 +10,8 @@ "id": "0xE68b79e51bf826534Ff37AA9CeE71a3842ee9c70", "links": [ { - "name": "twitter", - "url": "https://twitter.com/zodiacs_c" + "name": "x", + "url": "https://x.com/zodiacs_c" }, { "name": "github", @@ -42,4 +42,4 @@ "stablecoin", "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE692714717a89E4F2ab89dd17d8DDdD7bb52De8e/info.json b/blockchains/smartchain/assets/0xE692714717a89E4F2ab89dd17d8DDdD7bb52De8e/info.json index 53b9922d66346..061f1cf1ef93b 100644 --- a/blockchains/smartchain/assets/0xE692714717a89E4F2ab89dd17d8DDdD7bb52De8e/info.json +++ b/blockchains/smartchain/assets/0xE692714717a89E4F2ab89dd17d8DDdD7bb52De8e/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/CreamFi" }, { - "name": "twitter", - "url": "https://twitter.com/CreamdotFinance" + "name": "x", + "url": "https://x.com/CreamdotFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xE6Ce27025F13f5213bBc560dC275e292965a392F/info.json b/blockchains/smartchain/assets/0xE6Ce27025F13f5213bBc560dC275e292965a392F/info.json new file mode 100644 index 0000000000000..57f93f662844c --- /dev/null +++ b/blockchains/smartchain/assets/0xE6Ce27025F13f5213bBc560dC275e292965a392F/info.json @@ -0,0 +1,25 @@ +{ + "name": "Loom Token", + "website": "https://loomx.io", + "description": "Loom Network is a Platform as a Service intended to allow Ethereum-based Solidity applications to be run on side chains.", + "explorer": "https://bscscan.com/token/0xe6ce27025f13f5213bbc560dc275e292965a392f", + "type": "BEP20", + "symbol": "LOOM", + "decimals": 18, + "status": "active", + "id": "0xE6Ce27025F13f5213bBc560dC275e292965a392F", + "links": [ + { + "name": "telegram", + "url": "https://t.me/loomnetwork" + }, + { + "name": "x", + "url": "https://x.com/loomnetwork" + }, + { + "name": "github", + "url": "https://github.com/loomnetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE6Ce27025F13f5213bBc560dC275e292965a392F/logo.png b/blockchains/smartchain/assets/0xE6Ce27025F13f5213bBc560dC275e292965a392F/logo.png new file mode 100644 index 0000000000000..0d6c30316b0e1 Binary files /dev/null and b/blockchains/smartchain/assets/0xE6Ce27025F13f5213bBc560dC275e292965a392F/logo.png differ diff --git a/blockchains/smartchain/assets/0xE6e4D9E1ddd783b6BeEccC059ABc17be88EE1A03/info.json b/blockchains/smartchain/assets/0xE6e4D9E1ddd783b6BeEccC059ABc17be88EE1A03/info.json new file mode 100644 index 0000000000000..94c265eab8734 --- /dev/null +++ b/blockchains/smartchain/assets/0xE6e4D9E1ddd783b6BeEccC059ABc17be88EE1A03/info.json @@ -0,0 +1,40 @@ +{ + "name": "Verum Coin", + "type": "BEP20", + "symbol": "VERUM", + "decimals": 8, + "website": "https://verumcoin.info", + "description": "Verum Coin is one of the digital currencies that use the mechanism of increased transaction confidentiality.", + "explorer": "https://bscscan.com/token/0xE6e4D9E1ddd783b6BeEccC059ABc17be88EE1A03", + "status": "active", + "id": "0xE6e4D9E1ddd783b6BeEccC059ABc17be88EE1A03", + "links": [ + { + "name": "x", + "url": "https://x.com/verum_coin" + }, + { + "name": "github", + "url": "https://github.com/verumcoin" + }, + { + "name": "whitepaper", + "url": "https://verumcoin.info/docs/Verum_Coin_White_Paper.pdf" + }, + { + "name": "facebook", + "url": "https://facebook.com/verumcoin.info" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/verum-coin" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/verum-coin" + } + ], + "tags": [ + "privacy" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE6e4D9E1ddd783b6BeEccC059ABc17be88EE1A03/logo.png b/blockchains/smartchain/assets/0xE6e4D9E1ddd783b6BeEccC059ABc17be88EE1A03/logo.png new file mode 100644 index 0000000000000..24992b02a59b5 Binary files /dev/null and b/blockchains/smartchain/assets/0xE6e4D9E1ddd783b6BeEccC059ABc17be88EE1A03/logo.png differ diff --git a/blockchains/smartchain/assets/0xE717CEf8b15d20325B170e87ea664BC979728888/info.json b/blockchains/smartchain/assets/0xE717CEf8b15d20325B170e87ea664BC979728888/info.json new file mode 100644 index 0000000000000..40c0cf46a801e --- /dev/null +++ b/blockchains/smartchain/assets/0xE717CEf8b15d20325B170e87ea664BC979728888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether USD", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xE717CEf8b15d20325B170e87ea664BC979728888", + "explorer": "https://bscscan.com/token/0xE717CEf8b15d20325B170e87ea664BC979728888", + "status": "spam", + "id": "0xE717CEf8b15d20325B170e87ea664BC979728888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE7784072FC769D8b7f8C0a3Fa008722eEF5dDDD5/info.json b/blockchains/smartchain/assets/0xE7784072FC769D8b7f8C0a3Fa008722eEF5dDDD5/info.json index b84ac0e657c04..705059e14ebf1 100644 --- a/blockchains/smartchain/assets/0xE7784072FC769D8b7f8C0a3Fa008722eEF5dDDD5/info.json +++ b/blockchains/smartchain/assets/0xE7784072FC769D8b7f8C0a3Fa008722eEF5dDDD5/info.json @@ -10,8 +10,8 @@ "id": "0xE7784072FC769D8b7f8C0a3Fa008722eEF5dDDD5", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Hedge_Finance" + "name": "x", + "url": "https://x.com/Hedge_Finance" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xE77932B1216125848e82C3967e75698362168f99/info.json b/blockchains/smartchain/assets/0xE77932B1216125848e82C3967e75698362168f99/info.json index bd5f016ea0be5..477fbb47f60ec 100644 --- a/blockchains/smartchain/assets/0xE77932B1216125848e82C3967e75698362168f99/info.json +++ b/blockchains/smartchain/assets/0xE77932B1216125848e82C3967e75698362168f99/info.json @@ -10,8 +10,8 @@ "id": "0xE77932B1216125848e82C3967e75698362168f99", "links": [ { - "name": "twitter", - "url": "https://twitter.com/galaxyfinance3" + "name": "x", + "url": "https://x.com/galaxyfinance3" }, { "name": "telegram", @@ -21,4 +21,4 @@ "tags": [ "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE7ddF606841ee278A30E5C90486681e68ddd8cbF/info.json b/blockchains/smartchain/assets/0xE7ddF606841ee278A30E5C90486681e68ddd8cbF/info.json new file mode 100644 index 0000000000000..228e9d7cd56e3 --- /dev/null +++ b/blockchains/smartchain/assets/0xE7ddF606841ee278A30E5C90486681e68ddd8cbF/info.json @@ -0,0 +1,24 @@ +{ + "name": "Uranium Energy (Ondo Tokenized)", + "type": "BEP20", + "symbol": "UECon", + "decimals": 18, + "description": "UECon is the Ondo Tokenized version of Uranium Energy, giving tokenholders economic exposure similar to holding UEC and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xE7ddF606841ee278A30E5C90486681e68ddd8cbF", + "status": "active", + "id": "0xE7ddF606841ee278A30E5C90486681e68ddd8cbF", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/uranium-energy-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE7ddF606841ee278A30E5C90486681e68ddd8cbF/logo.png b/blockchains/smartchain/assets/0xE7ddF606841ee278A30E5C90486681e68ddd8cbF/logo.png new file mode 100644 index 0000000000000..3cac9a56277b8 Binary files /dev/null and b/blockchains/smartchain/assets/0xE7ddF606841ee278A30E5C90486681e68ddd8cbF/logo.png differ diff --git a/blockchains/smartchain/assets/0xE81257d932280AE440B17AFc5f07C8A110D21432/info.json b/blockchains/smartchain/assets/0xE81257d932280AE440B17AFc5f07C8A110D21432/info.json index 8daaf871d43b9..dbae2c30a55d4 100644 --- a/blockchains/smartchain/assets/0xE81257d932280AE440B17AFc5f07C8A110D21432/info.json +++ b/blockchains/smartchain/assets/0xE81257d932280AE440B17AFc5f07C8A110D21432/info.json @@ -10,8 +10,8 @@ "id": "0xE81257d932280AE440B17AFc5f07C8A110D21432", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ZukiMoba" + "name": "x", + "url": "https://x.com/ZukiMoba" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0xE815f6941d19D1e20b0e1f92471c6143809F4444/info.json b/blockchains/smartchain/assets/0xE815f6941d19D1e20b0e1f92471c6143809F4444/info.json new file mode 100644 index 0000000000000..48ddaf22c43d2 --- /dev/null +++ b/blockchains/smartchain/assets/0xE815f6941d19D1e20b0e1f92471c6143809F4444/info.json @@ -0,0 +1,36 @@ +{ + "name": "Baby 4", + "type": "BEP20", + "symbol": "BABY4", + "decimals": 18, + "website": "https://baby4.ai/", + "description": "4", + "explorer": "https://bscscan.com/token/0xE815f6941d19D1e20b0e1f92471c6143809F4444", + "status": "active", + "id": "0xE815f6941d19D1e20b0e1f92471c6143809F4444", + "links": [ + { + "name": "x", + "url": "https://x.com/Baby4onbinance" + }, + { + "name": "telegram", + "url": "https://t.me/baby4onbinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/baby-4/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/baby-4" + }, + { + "name": "whitepaper", + "url": "https://baby-4-1.gitbook.io/baby4" + } + ], + "tags": [ + "memes" + ] +} diff --git a/blockchains/smartchain/assets/0xE815f6941d19D1e20b0e1f92471c6143809F4444/logo.png b/blockchains/smartchain/assets/0xE815f6941d19D1e20b0e1f92471c6143809F4444/logo.png new file mode 100644 index 0000000000000..b99f203cf9574 Binary files /dev/null and b/blockchains/smartchain/assets/0xE815f6941d19D1e20b0e1f92471c6143809F4444/logo.png differ diff --git a/blockchains/smartchain/assets/0xE8176d414560cFE1Bf82Fd73B986823B89E4F545/info.json b/blockchains/smartchain/assets/0xE8176d414560cFE1Bf82Fd73B986823B89E4F545/info.json index 2547dafd82f6b..293b803a909bc 100644 --- a/blockchains/smartchain/assets/0xE8176d414560cFE1Bf82Fd73B986823B89E4F545/info.json +++ b/blockchains/smartchain/assets/0xE8176d414560cFE1Bf82Fd73B986823B89E4F545/info.json @@ -10,8 +10,8 @@ "id": "0xE8176d414560cFE1Bf82Fd73B986823B89E4F545", "links": [ { - "name": "twitter", - "url": "https://twitter.com/StepHeroNFTs" + "name": "x", + "url": "https://x.com/StepHeroNFTs" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xE846D164B88eD2e1209609fea3cf7a3D89D70D2D/info.json b/blockchains/smartchain/assets/0xE846D164B88eD2e1209609fea3cf7a3D89D70D2D/info.json new file mode 100644 index 0000000000000..fa9bf8e8a7890 --- /dev/null +++ b/blockchains/smartchain/assets/0xE846D164B88eD2e1209609fea3cf7a3D89D70D2D/info.json @@ -0,0 +1,21 @@ +{ + "name": "Hawk", + "symbol": "Hawk", + "decimals": 18, + "type": "BEP20", + "website": "http://hawk.city/", + "description": "Hawk soars in the sky, free and unfettered! Hawk token symbolizes freedom, which echoes the freedom of speech advocated by Elon Musk!", + "explorer": "https://bscscan.com/token/0xe846d164b88ed2e1209609fea3cf7a3d89d70d2d", + "status": "active", + "id": "0xE846D164B88eD2e1209609fea3cf7a3D89D70D2D", + "links": [ + { + "name": "x", + "url": "https://x.com/hawk_killshib" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hawk-2" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE846D164B88eD2e1209609fea3cf7a3D89D70D2D/logo.png b/blockchains/smartchain/assets/0xE846D164B88eD2e1209609fea3cf7a3D89D70D2D/logo.png new file mode 100644 index 0000000000000..ffc2c9a592858 Binary files /dev/null and b/blockchains/smartchain/assets/0xE846D164B88eD2e1209609fea3cf7a3D89D70D2D/logo.png differ diff --git a/blockchains/smartchain/assets/0xE87739E3494aE2AFe555CDD46Df45050Cc709522/info.json b/blockchains/smartchain/assets/0xE87739E3494aE2AFe555CDD46Df45050Cc709522/info.json new file mode 100644 index 0000000000000..cda00977f25dd --- /dev/null +++ b/blockchains/smartchain/assets/0xE87739E3494aE2AFe555CDD46Df45050Cc709522/info.json @@ -0,0 +1,30 @@ +{ + "name": "MIAOCoin", + "type": "BEP20", + "symbol": "MIAO", + "decimals": 18, + "description": "Miao is the first memecoin with animal sounds as IP. Miao ai is a blockchain-based artificial intelligence game token launch platform dedicated to building an efficient, fast and intelligent artificial intelligence game ecosystem. It adheres to the 'meow philosophy' and aims to accelerate every token transaction. Its cute brand image allows users to experience the technological charm of encrypted artificial intelligence MEME in a fun and easy way.", + "website": "https://www.miao.cool/", + "explorer": "https://bscscan.com/token/0xe87739e3494ae2afe555cdd46df45050cc709522", + "id": "0xE87739E3494aE2AFe555CDD46Df45050Cc709522", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/miao_coin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/miaocoin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/miaocoin" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE87739E3494aE2AFe555CDD46Df45050Cc709522/logo.png b/blockchains/smartchain/assets/0xE87739E3494aE2AFe555CDD46Df45050Cc709522/logo.png new file mode 100644 index 0000000000000..12902f11f6522 Binary files /dev/null and b/blockchains/smartchain/assets/0xE87739E3494aE2AFe555CDD46Df45050Cc709522/logo.png differ diff --git a/blockchains/smartchain/assets/0xE87afb3076AeB0f9B14E368DE8145ae6a2826A14/info.json b/blockchains/smartchain/assets/0xE87afb3076AeB0f9B14E368DE8145ae6a2826A14/info.json new file mode 100644 index 0000000000000..a6e9ad709e659 --- /dev/null +++ b/blockchains/smartchain/assets/0xE87afb3076AeB0f9B14E368DE8145ae6a2826A14/info.json @@ -0,0 +1,20 @@ +{ + "name": "Strategy Tokenized bStocks", + "type": "BEP20", + "symbol": "MSTRB", + "decimals": 18, + "description": "MSTRB is a tokenized bStocks that gives you economic exposure to Strategy Tokenized bStocks, and the right to convert to the underlying security on the Binance.com platform subject to applicable laws. Each token is fully backed by the corresponding underlying equity maintained by the Issuer at a US-regulated broker-dealer. You get the price movements, dividends, and the right to convert the token at 1:1 to the underlying share — tradeable 24/7.", + "website": "https://bstocks.finance/", + "explorer": "https://bscscan.com/token/0xE87afb3076AeB0f9B14E368DE8145ae6a2826A14", + "status": "active", + "id": "0xE87afb3076AeB0f9B14E368DE8145ae6a2826A14", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/micron-technology-tokenized-stock-bstocks/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE87afb3076AeB0f9B14E368DE8145ae6a2826A14/logo.png b/blockchains/smartchain/assets/0xE87afb3076AeB0f9B14E368DE8145ae6a2826A14/logo.png new file mode 100644 index 0000000000000..597e5a0336819 Binary files /dev/null and b/blockchains/smartchain/assets/0xE87afb3076AeB0f9B14E368DE8145ae6a2826A14/logo.png differ diff --git a/blockchains/smartchain/assets/0xE8c93310af068aa50bd7bF0ebFa459Df2a02ceba/info.json b/blockchains/smartchain/assets/0xE8c93310af068aa50bd7bF0ebFa459Df2a02ceba/info.json index d0f0a5b3373b1..b23598fe3a131 100644 --- a/blockchains/smartchain/assets/0xE8c93310af068aa50bd7bF0ebFa459Df2a02ceba/info.json +++ b/blockchains/smartchain/assets/0xE8c93310af068aa50bd7bF0ebFa459Df2a02ceba/info.json @@ -10,8 +10,8 @@ "id": "0xE8c93310af068aa50bd7bF0ebFa459Df2a02ceba", "links": [ { - "name": "twitter", - "url": "https://twitter.com/HoneyFarmFi" + "name": "x", + "url": "https://x.com/HoneyFarmFi" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xE8ff70859Ce4cbd72E4352b4fb45F5BF39d07464/info.json b/blockchains/smartchain/assets/0xE8ff70859Ce4cbd72E4352b4fb45F5BF39d07464/info.json new file mode 100644 index 0000000000000..8a7bd752e292a --- /dev/null +++ b/blockchains/smartchain/assets/0xE8ff70859Ce4cbd72E4352b4fb45F5BF39d07464/info.json @@ -0,0 +1,24 @@ +{ + "name": "IBM (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "IBMon is the Ondo Tokenized version of IBM, giving tokenholders economic exposure similar to holding IBM and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xe8ff70859ce4cbd72e4352b4fb45f5bf39d07464", + "type": "BEP20", + "symbol": "IBMon", + "decimals": 18, + "status": "active", + "id": "0xE8ff70859Ce4cbd72E4352b4fb45F5BF39d07464", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ibm-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE8ff70859Ce4cbd72E4352b4fb45F5BF39d07464/logo.png b/blockchains/smartchain/assets/0xE8ff70859Ce4cbd72E4352b4fb45F5BF39d07464/logo.png new file mode 100644 index 0000000000000..42dcbb8aa9c76 Binary files /dev/null and b/blockchains/smartchain/assets/0xE8ff70859Ce4cbd72E4352b4fb45F5BF39d07464/logo.png differ diff --git a/blockchains/smartchain/assets/0xE92bE960aE64F6a914Ca77014CaC9E56DE7f36C1/info.json b/blockchains/smartchain/assets/0xE92bE960aE64F6a914Ca77014CaC9E56DE7f36C1/info.json new file mode 100644 index 0000000000000..bd96f6418800c --- /dev/null +++ b/blockchains/smartchain/assets/0xE92bE960aE64F6a914Ca77014CaC9E56DE7f36C1/info.json @@ -0,0 +1,24 @@ +{ + "name": "JD.com (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "JDon is the Ondo Tokenized version of JD.com, giving tokenholders economic exposure similar to holding JD and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xe92be960ae64f6a914ca77014cac9e56de7f36c1", + "type": "BEP20", + "symbol": "JDon", + "decimals": 18, + "status": "active", + "id": "0xE92bE960aE64F6a914Ca77014CaC9E56DE7f36C1", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jdcom-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE92bE960aE64F6a914Ca77014CaC9E56DE7f36C1/logo.png b/blockchains/smartchain/assets/0xE92bE960aE64F6a914Ca77014CaC9E56DE7f36C1/logo.png new file mode 100644 index 0000000000000..85171c990a02f Binary files /dev/null and b/blockchains/smartchain/assets/0xE92bE960aE64F6a914Ca77014CaC9E56DE7f36C1/logo.png differ diff --git a/blockchains/smartchain/assets/0xE93B4fb367F3678A32f28254355f9f6ac000c976/info.json b/blockchains/smartchain/assets/0xE93B4fb367F3678A32f28254355f9f6ac000c976/info.json index bd8303d425761..7c5e17f0c94c9 100644 --- a/blockchains/smartchain/assets/0xE93B4fb367F3678A32f28254355f9f6ac000c976/info.json +++ b/blockchains/smartchain/assets/0xE93B4fb367F3678A32f28254355f9f6ac000c976/info.json @@ -10,8 +10,8 @@ "id": "0xE93B4fb367F3678A32f28254355f9f6ac000c976", "links": [ { - "name": "twitter", - "url": "https://twitter.com/GameCelt" + "name": "x", + "url": "https://x.com/GameCelt" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xE942C48044FB1C7f4C9eB456f6097fa4A1A17B8f/info.json b/blockchains/smartchain/assets/0xE942C48044FB1C7f4C9eB456f6097fa4A1A17B8f/info.json index d852c0108020a..a2d27b551fe82 100644 --- a/blockchains/smartchain/assets/0xE942C48044FB1C7f4C9eB456f6097fa4A1A17B8f/info.json +++ b/blockchains/smartchain/assets/0xE942C48044FB1C7f4C9eB456f6097fa4A1A17B8f/info.json @@ -10,8 +10,8 @@ "id": "0xE942C48044FB1C7f4C9eB456f6097fa4A1A17B8f", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ElvantisGame" + "name": "x", + "url": "https://x.com/ElvantisGame" }, { "name": "discord", diff --git a/blockchains/smartchain/assets/0xE94444Ba62208431a27C764E2e28794e81f5B235/info.json b/blockchains/smartchain/assets/0xE94444Ba62208431a27C764E2e28794e81f5B235/info.json new file mode 100644 index 0000000000000..8f1ad1bdcaa72 --- /dev/null +++ b/blockchains/smartchain/assets/0xE94444Ba62208431a27C764E2e28794e81f5B235/info.json @@ -0,0 +1,40 @@ +{ + "name": "OilMetaGames", + "type": "BEP20", + "symbol": "OMG", + "decimals": 8, + "website": "https://Omg.game", + "description": "Oil Meta Game (OMG) is a revolutionary token that powers The Oil Story Game, a play-to-earn experience that brings the intricate world of the oil industry to life through immersive gameplay. In The Oil Story Game, players can dive into the excitement and challenges of oil exploration, extraction, and trading, all while earning real rewards with OMG tokens. The game combines education and entertainment, offering insights into the oil industry’s operations and strategies, making it a perfect blend for both industry enthusiasts and gamers.", + "explorer": "https://bscscan.com/token/0xE94444Ba62208431a27C764E2e28794e81f5B235", + "status": "active", + "id": "0xE94444Ba62208431a27C764E2e28794e81f5B235", + "links": [ + { + "name": "x", + "url": "https://x.com/OilMetaGames" + }, + { + "name": "telegram", + "url": "https://t.me/oilmetagames" + }, + { + "name": "whitepaper", + "url": "https://Omg.game/whitepaper" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/oil-meta-games" + }, + { + "name": "youtube", + "url": "https://youtube.com/@oilmetagames" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/OilMetaGames" + } + ], + "tags": [ + "gamefi" + ] +} diff --git a/blockchains/smartchain/assets/0xE94444Ba62208431a27C764E2e28794e81f5B235/logo.png b/blockchains/smartchain/assets/0xE94444Ba62208431a27C764E2e28794e81f5B235/logo.png new file mode 100644 index 0000000000000..c99b1db115040 Binary files /dev/null and b/blockchains/smartchain/assets/0xE94444Ba62208431a27C764E2e28794e81f5B235/logo.png differ diff --git a/blockchains/smartchain/assets/0xE9a97602Ea2985634032a6dFE8a391F7124328F1/info.json b/blockchains/smartchain/assets/0xE9a97602Ea2985634032a6dFE8a391F7124328F1/info.json new file mode 100644 index 0000000000000..44f23cbd1a3c3 --- /dev/null +++ b/blockchains/smartchain/assets/0xE9a97602Ea2985634032a6dFE8a391F7124328F1/info.json @@ -0,0 +1,36 @@ +{ + "name": "EYE Network", + "type": "BEP20", + "symbol": "EYE", + "decimals": 18, + "website": "https://eyetoken.io", + "description": "The Eye Network Ecosystem is a groundbreaking initiative poised to reshape the landscape of financial services. At its core, this innovative platform harnesses the power of blockchain technology to facilitate seamless transactions, enhance security, and promote financial empowerment for individuals worldwide. ", + "explorer": "https://bscscan.com/token/0xE9a97602Ea2985634032a6dFE8a391F7124328F1", + "status": "active", + "id": "0xE9a97602Ea2985634032a6dFE8a391F7124328F1", + "links": [ + { + "name": "x", + "url": "https://x.com/network_ey98192" + }, + { + "name": "youtube", + "url": "https://youtube.com/@eyenetworkai?si=dRR691ySZwBR69Rw" + }, + { + "name": "facebook", + "url": "https://facebook.com/profile.php?id=61555055983574&mibextid=ZbWKwL" + }, + { + "name": "telegram", + "url": "https://t.me/eyenetworkai" + }, + { + "name": "source_code", + "url": "https://bscscan.com/token/0xe9a97602ea2985634032a6dfe8a391f7124328f1#code" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE9a97602Ea2985634032a6dFE8a391F7124328F1/logo.png b/blockchains/smartchain/assets/0xE9a97602Ea2985634032a6dFE8a391F7124328F1/logo.png new file mode 100644 index 0000000000000..0517a8aeee54d Binary files /dev/null and b/blockchains/smartchain/assets/0xE9a97602Ea2985634032a6dFE8a391F7124328F1/logo.png differ diff --git a/blockchains/smartchain/assets/0xE9c7a827a4bA133b338b844C19241c864E95d75f/info.json b/blockchains/smartchain/assets/0xE9c7a827a4bA133b338b844C19241c864E95d75f/info.json index e3f2cae7a44d2..ade3acf39de37 100644 --- a/blockchains/smartchain/assets/0xE9c7a827a4bA133b338b844C19241c864E95d75f/info.json +++ b/blockchains/smartchain/assets/0xE9c7a827a4bA133b338b844C19241c864E95d75f/info.json @@ -10,8 +10,8 @@ "id": "0xE9c7a827a4bA133b338b844C19241c864E95d75f", "links": [ { - "name": "twitter", - "url": "https://twitter.com/FSV_fsvideo" + "name": "x", + "url": "https://x.com/FSV_fsvideo" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xE9d78BF51ae04c7E1263A76ED89a65537B9cA903/info.json b/blockchains/smartchain/assets/0xE9d78BF51ae04c7E1263A76ED89a65537B9cA903/info.json index 8e7616f31597a..9660929254558 100644 --- a/blockchains/smartchain/assets/0xE9d78BF51ae04c7E1263A76ED89a65537B9cA903/info.json +++ b/blockchains/smartchain/assets/0xE9d78BF51ae04c7E1263A76ED89a65537B9cA903/info.json @@ -10,8 +10,8 @@ "id": "0xE9d78BF51ae04c7E1263A76ED89a65537B9cA903", "links": [ { - "name": "twitter", - "url": "https://twitter.com/GameCoinGMEX" + "name": "x", + "url": "https://x.com/GameCoinGMEX" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xEA01a1a3CF143f90b4aC6D069Bd369826574CD45/info.json b/blockchains/smartchain/assets/0xEA01a1a3CF143f90b4aC6D069Bd369826574CD45/info.json index 2f0066fe282c3..7df46f693cb6d 100644 --- a/blockchains/smartchain/assets/0xEA01a1a3CF143f90b4aC6D069Bd369826574CD45/info.json +++ b/blockchains/smartchain/assets/0xEA01a1a3CF143f90b4aC6D069Bd369826574CD45/info.json @@ -10,8 +10,8 @@ "id": "0xEA01a1a3CF143f90b4aC6D069Bd369826574CD45", "links": [ { - "name": "twitter", - "url": "https://twitter.com/xxt_token" + "name": "x", + "url": "https://x.com/xxt_token" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xEA130432a9feE9ca1A7eDa84028650d38Bd0E232/info.json b/blockchains/smartchain/assets/0xEA130432a9feE9ca1A7eDa84028650d38Bd0E232/info.json new file mode 100644 index 0000000000000..a40d78282f6d9 --- /dev/null +++ b/blockchains/smartchain/assets/0xEA130432a9feE9ca1A7eDa84028650d38Bd0E232/info.json @@ -0,0 +1,24 @@ +{ + "name": "Franklin Focused Growth ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "FFOGon", + "decimals": 18, + "description": "FFOGon is the Ondo Tokenized version of the Franklin Focused Growth ETF, giving tokenholders economic exposure similar to holding FFOG and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xEA130432a9feE9ca1A7eDa84028650d38Bd0E232", + "status": "active", + "id": "0xEA130432a9feE9ca1A7eDa84028650d38Bd0E232", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/franklin-focused-growth-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEA130432a9feE9ca1A7eDa84028650d38Bd0E232/logo.png b/blockchains/smartchain/assets/0xEA130432a9feE9ca1A7eDa84028650d38Bd0E232/logo.png new file mode 100644 index 0000000000000..34299b5ba23f3 Binary files /dev/null and b/blockchains/smartchain/assets/0xEA130432a9feE9ca1A7eDa84028650d38Bd0E232/logo.png differ diff --git a/blockchains/smartchain/assets/0xEA466cd2583A0290b9E7b987a769a7Eb468FB0A5/info.json b/blockchains/smartchain/assets/0xEA466cd2583A0290b9E7b987a769a7Eb468FB0A5/info.json index 9c3afb28080f0..2b0c960de24b5 100644 --- a/blockchains/smartchain/assets/0xEA466cd2583A0290b9E7b987a769a7Eb468FB0A5/info.json +++ b/blockchains/smartchain/assets/0xEA466cd2583A0290b9E7b987a769a7Eb468FB0A5/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/CreamFi" }, { - "name": "twitter", - "url": "https://twitter.com/CreamdotFinance" + "name": "x", + "url": "https://x.com/CreamdotFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xEA5E9F39F4B4Bc2684e49A0E43127F7f6F6be3b8/info.json b/blockchains/smartchain/assets/0xEA5E9F39F4B4Bc2684e49A0E43127F7f6F6be3b8/info.json index e7efd39e35526..3f575f958ba4f 100644 --- a/blockchains/smartchain/assets/0xEA5E9F39F4B4Bc2684e49A0E43127F7f6F6be3b8/info.json +++ b/blockchains/smartchain/assets/0xEA5E9F39F4B4Bc2684e49A0E43127F7f6F6be3b8/info.json @@ -10,8 +10,8 @@ "id": "0xEA5E9F39F4B4Bc2684e49A0E43127F7f6F6be3b8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/muuinuofficial" + "name": "x", + "url": "https://x.com/muuinuofficial" }, { "name": "telegram", @@ -29,4 +29,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEAc9873291dDAcA754EA5642114151f3035c67A2/info.json b/blockchains/smartchain/assets/0xEAc9873291dDAcA754EA5642114151f3035c67A2/info.json index 1686baf525f79..6705ceaa777e1 100644 --- a/blockchains/smartchain/assets/0xEAc9873291dDAcA754EA5642114151f3035c67A2/info.json +++ b/blockchains/smartchain/assets/0xEAc9873291dDAcA754EA5642114151f3035c67A2/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/decubate" }, { - "name": "twitter", - "url": "https://twitter.com/decubate" + "name": "x", + "url": "https://x.com/decubate" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0xEB35aCBD23CF9D1C13D276815B9969eFfC5c878f/info.json b/blockchains/smartchain/assets/0xEB35aCBD23CF9D1C13D276815B9969eFfC5c878f/info.json index 1677912c1da28..895d852684a66 100644 --- a/blockchains/smartchain/assets/0xEB35aCBD23CF9D1C13D276815B9969eFfC5c878f/info.json +++ b/blockchains/smartchain/assets/0xEB35aCBD23CF9D1C13D276815B9969eFfC5c878f/info.json @@ -18,8 +18,8 @@ "url": "https://t.me/MiniShibaInu" }, { - "name": "twitter", - "url": "https://twitter.com/MiniShiba_Token" + "name": "x", + "url": "https://x.com/MiniShiba_Token" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEC126e20e7cb114dd3BA356100eaca2Cc2921322/info.json b/blockchains/smartchain/assets/0xEC126e20e7cb114dd3BA356100eaca2Cc2921322/info.json index 7f2220197291b..25b9029a47c54 100644 --- a/blockchains/smartchain/assets/0xEC126e20e7cb114dd3BA356100eaca2Cc2921322/info.json +++ b/blockchains/smartchain/assets/0xEC126e20e7cb114dd3BA356100eaca2Cc2921322/info.json @@ -18,8 +18,8 @@ "url": "https://coinmarketcap.com/currencies/solar-energy/" }, { - "name": "twitter", - "url": "https://twitter.com/solarenergy2021" + "name": "x", + "url": "https://x.com/solarenergy2021" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEC43D3153C1f08946fA71cDD3A14Af64fd58f27e/info.json b/blockchains/smartchain/assets/0xEC43D3153C1f08946fA71cDD3A14Af64fd58f27e/info.json index 668e8c273602f..decac4cd1f0dd 100644 --- a/blockchains/smartchain/assets/0xEC43D3153C1f08946fA71cDD3A14Af64fd58f27e/info.json +++ b/blockchains/smartchain/assets/0xEC43D3153C1f08946fA71cDD3A14Af64fd58f27e/info.json @@ -10,8 +10,8 @@ "id": "0xEC43D3153C1f08946fA71cDD3A14Af64fd58f27e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PawnMyNFT" + "name": "x", + "url": "https://x.com/PawnMyNFT" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xEC80E6EF54D43aaDc0e0556a73eC34D840d5a294/info.json b/blockchains/smartchain/assets/0xEC80E6EF54D43aaDc0e0556a73eC34D840d5a294/info.json new file mode 100644 index 0000000000000..322577c2e2981 --- /dev/null +++ b/blockchains/smartchain/assets/0xEC80E6EF54D43aaDc0e0556a73eC34D840d5a294/info.json @@ -0,0 +1,32 @@ +{ + "name": "brics", + "type": "BEP20", + "symbol": "brics", + "decimals": 18, + "website": "https://brics-mine.com/", + "description": "Blockchain is recognized as an advanced security technology that provides a high level of integrity and protection against unauthorized changes to information.", + "explorer": "https://bscscan.com/token/0xEC80E6EF54D43aaDc0e0556a73eC34D840d5a294", + "status": "active", + "id": "0xEC80E6EF54D43aaDc0e0556a73eC34D840d5a294", + "links": [ + { + "name": "x", + "url": "https://x.com/bricsmine" + }, + { + "name": "github", + "url": "https://github.com/bricsmine" + }, + { + "name": "whitepaper", + "url": "https://brics-mine.com/Whitepaper" + }, + { + "name": "telegram", + "url": "https://t.me/bricsmine" + } + ], + "tags": [ + "dapp" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEC80E6EF54D43aaDc0e0556a73eC34D840d5a294/logo.png b/blockchains/smartchain/assets/0xEC80E6EF54D43aaDc0e0556a73eC34D840d5a294/logo.png new file mode 100644 index 0000000000000..18809aacf2b15 Binary files /dev/null and b/blockchains/smartchain/assets/0xEC80E6EF54D43aaDc0e0556a73eC34D840d5a294/logo.png differ diff --git a/blockchains/smartchain/assets/0xEC93fE7Ff4B09CA3CCAFBc4CC9615E62BE412780/info.json b/blockchains/smartchain/assets/0xEC93fE7Ff4B09CA3CCAFBc4CC9615E62BE412780/info.json new file mode 100644 index 0000000000000..6fbcd95bd6e64 --- /dev/null +++ b/blockchains/smartchain/assets/0xEC93fE7Ff4B09CA3CCAFBc4CC9615E62BE412780/info.json @@ -0,0 +1,28 @@ +{ + "name": "Global X Copper Miners ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "COPXon", + "decimals": 18, + "description": "COPXon is the Ondo Tokenized version of the Global X Copper Miners ETF, giving tokenholders economic exposure similar to holding COPX and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xEC93fE7Ff4B09CA3CCAFBc4CC9615E62BE412780", + "status": "active", + "id": "0xEC93fE7Ff4B09CA3CCAFBc4CC9615E62BE412780", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/global-x-copper-miners-etf-ondo-tokenized-etf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/global-x-copper-miners-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEC93fE7Ff4B09CA3CCAFBc4CC9615E62BE412780/logo.png b/blockchains/smartchain/assets/0xEC93fE7Ff4B09CA3CCAFBc4CC9615E62BE412780/logo.png new file mode 100644 index 0000000000000..8bd6718f2dc1a Binary files /dev/null and b/blockchains/smartchain/assets/0xEC93fE7Ff4B09CA3CCAFBc4CC9615E62BE412780/logo.png differ diff --git a/blockchains/smartchain/assets/0xECC1299F183b6a720A6F4729Bf24F82Cd8D50828/info.json b/blockchains/smartchain/assets/0xECC1299F183b6a720A6F4729Bf24F82Cd8D50828/info.json new file mode 100644 index 0000000000000..31c993a68285f --- /dev/null +++ b/blockchains/smartchain/assets/0xECC1299F183b6a720A6F4729Bf24F82Cd8D50828/info.json @@ -0,0 +1,24 @@ +{ + "name": "Toyota (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "TMon is the Ondo Tokenized version of Toyota, giving tokenholders economic exposure similar to holding TM and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xecc1299f183b6a720a6f4729bf24f82cd8d50828", + "type": "BEP20", + "symbol": "TMon", + "decimals": 18, + "status": "active", + "id": "0xECC1299F183b6a720A6F4729Bf24F82Cd8D50828", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/toyota-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xECC1299F183b6a720A6F4729Bf24F82Cd8D50828/logo.png b/blockchains/smartchain/assets/0xECC1299F183b6a720A6F4729Bf24F82Cd8D50828/logo.png new file mode 100644 index 0000000000000..a181e631d5609 Binary files /dev/null and b/blockchains/smartchain/assets/0xECC1299F183b6a720A6F4729Bf24F82Cd8D50828/logo.png differ diff --git a/blockchains/smartchain/assets/0xECa41281c24451168a37211F0bc2b8645AF45092/info.json b/blockchains/smartchain/assets/0xECa41281c24451168a37211F0bc2b8645AF45092/info.json index ba56f47991f3e..5867beb3475c5 100644 --- a/blockchains/smartchain/assets/0xECa41281c24451168a37211F0bc2b8645AF45092/info.json +++ b/blockchains/smartchain/assets/0xECa41281c24451168a37211F0bc2b8645AF45092/info.json @@ -1,5 +1,5 @@ { - "name": "TokenPocket Token", + "name": "TokenPocket", "type": "BEP20", "symbol": "TPT", "decimals": 4, diff --git a/blockchains/smartchain/assets/0xECa41281c24451168a37211F0bc2b8645AF45092/logo.png b/blockchains/smartchain/assets/0xECa41281c24451168a37211F0bc2b8645AF45092/logo.png index 5b2d6d643f8a8..a10842ffa8687 100644 Binary files a/blockchains/smartchain/assets/0xECa41281c24451168a37211F0bc2b8645AF45092/logo.png and b/blockchains/smartchain/assets/0xECa41281c24451168a37211F0bc2b8645AF45092/logo.png differ diff --git a/blockchains/smartchain/assets/0xED19B2B301E8a4e18c5DCa374a27e7d209Ba02c9/info.json b/blockchains/smartchain/assets/0xED19B2B301E8a4e18c5DCa374a27e7d209Ba02c9/info.json new file mode 100644 index 0000000000000..903f85d150528 --- /dev/null +++ b/blockchains/smartchain/assets/0xED19B2B301E8a4e18c5DCa374a27e7d209Ba02c9/info.json @@ -0,0 +1,30 @@ +{ + "name": "Aventis AI", + "type": "BEP20", + "symbol": "AAI", + "decimals": 18, + "description": "Aventis AI is about innovation and development funding, sponsorship for community-driven AI tools and ideas, funding AI projects within the ecosystem, driving innovation and maintaining the cutting-edge status of Aventis educational offerings.", + "website": "https://www.aventisai.io/", + "explorer": "https://bscscan.com/token/0xed19b2b301e8a4e18c5dca374a27e7d209ba02c9", + "id": "0xED19B2B301E8a4e18c5DCa374a27e7d209Ba02c9", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/AventisMeta" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/aventis-ai/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/aventis-ai" + } + + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xED19B2B301E8a4e18c5DCa374a27e7d209Ba02c9/logo.png b/blockchains/smartchain/assets/0xED19B2B301E8a4e18c5DCa374a27e7d209Ba02c9/logo.png new file mode 100644 index 0000000000000..1d051d8dfa0d3 Binary files /dev/null and b/blockchains/smartchain/assets/0xED19B2B301E8a4e18c5DCa374a27e7d209Ba02c9/logo.png differ diff --git a/blockchains/smartchain/assets/0xED6AF21Df463c7f116A6d7d687A4c190c4cf7586/info.json b/blockchains/smartchain/assets/0xED6AF21Df463c7f116A6d7d687A4c190c4cf7586/info.json new file mode 100644 index 0000000000000..f969f7296b8d9 --- /dev/null +++ b/blockchains/smartchain/assets/0xED6AF21Df463c7f116A6d7d687A4c190c4cf7586/info.json @@ -0,0 +1,36 @@ +{ + "name": "FU coin", + "type": "BEP20", + "symbol": "FU", + "decimals": 18, + "website": "https://www.fucoin.io/", + "description": "FU coin is a BNB Chain token designed to bring luck and fortune to the crypto world. Whether you’re riding the highs or weathering the lows, $Fu is your shield of fortune. Fu’s not just another coin in the sea, It’s the spark of joy in your crypto spree. Join the Fu journey, where luck’s yours to hold, And turn your wallet’s story into gold!", + "explorer": "https://bscscan.com/token/0xED6AF21Df463c7f116A6d7d687A4c190c4cf7586", + "status": "active", + "id": "0xED6AF21Df463c7f116A6d7d687A4c190c4cf7586", + "links": [ + { + "name": "telegram", + "url": "https://t.me/FuCoinCommunity" + }, + { + "name": "whitepaper", + "url": "https://fucoin.io/media/fu-coin/whitepaper.pdf" + }, + { + "name": "discord", + "url": "https://discord.com/invite/5AjBnJ4kJJ" + }, + { + "name": "source_code", + "url": "https://bscscan.com/token/0xED6AF21Df463c7f116A6d7d687A4c190c4cf7586#code" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fu-coin/" + } + ], + "tags": [ + "memes" + ] +} diff --git a/blockchains/smartchain/assets/0xED6AF21Df463c7f116A6d7d687A4c190c4cf7586/logo.png b/blockchains/smartchain/assets/0xED6AF21Df463c7f116A6d7d687A4c190c4cf7586/logo.png new file mode 100644 index 0000000000000..bddcf9c99821c Binary files /dev/null and b/blockchains/smartchain/assets/0xED6AF21Df463c7f116A6d7d687A4c190c4cf7586/logo.png differ diff --git a/blockchains/smartchain/assets/0xEDB3124e96c64C177Eb709CbC64F9977dB40Ea74/info.json b/blockchains/smartchain/assets/0xEDB3124e96c64C177Eb709CbC64F9977dB40Ea74/info.json new file mode 100644 index 0000000000000..69f71a8d49d15 --- /dev/null +++ b/blockchains/smartchain/assets/0xEDB3124e96c64C177Eb709CbC64F9977dB40Ea74/info.json @@ -0,0 +1,24 @@ +{ + "name": "AppLovin (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "APPon is the Ondo Tokenized version of AppLovin, giving tokenholders economic exposure similar to holding APP and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xedb3124e96c64c177eb709cbc64f9977db40ea74", + "type": "BEP20", + "symbol": "APPon", + "decimals": 18, + "status": "active", + "id": "0xEDB3124e96c64C177Eb709CbC64F9977dB40Ea74", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/applovin-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEDB3124e96c64C177Eb709CbC64F9977dB40Ea74/logo.png b/blockchains/smartchain/assets/0xEDB3124e96c64C177Eb709CbC64F9977dB40Ea74/logo.png new file mode 100644 index 0000000000000..4a67b3a06dcb5 Binary files /dev/null and b/blockchains/smartchain/assets/0xEDB3124e96c64C177Eb709CbC64F9977dB40Ea74/logo.png differ diff --git a/blockchains/smartchain/assets/0xEE5b03b769Ca6c690D140CafB52fC8de3f38FC28/info.json b/blockchains/smartchain/assets/0xEE5b03b769Ca6c690D140CafB52fC8de3f38FC28/info.json index cf4d349d7a7de..f6b341dec7949 100644 --- a/blockchains/smartchain/assets/0xEE5b03b769Ca6c690D140CafB52fC8de3f38FC28/info.json +++ b/blockchains/smartchain/assets/0xEE5b03b769Ca6c690D140CafB52fC8de3f38FC28/info.json @@ -10,8 +10,8 @@ "id": "0xEE5b03b769Ca6c690D140CafB52fC8de3f38FC28", "links": [ { - "name": "twitter", - "url": "https://twitter.com/HyperchainX" + "name": "x", + "url": "https://x.com/HyperchainX" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xEEdb0273c5Af792745180e9fF568cD01550fFA13/info.json b/blockchains/smartchain/assets/0xEEdb0273c5Af792745180e9fF568cD01550fFA13/info.json new file mode 100644 index 0000000000000..c4bf7adac7ea6 --- /dev/null +++ b/blockchains/smartchain/assets/0xEEdb0273c5Af792745180e9fF568cD01550fFA13/info.json @@ -0,0 +1,24 @@ +{ + "name": "Exxon Mobil tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Exxon Mobil xStock (XOMx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. XOMx tracks the price of Exxon Mobil Corporation (the underlying). XOMx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Exxon Mobil Corporation, whilst maintaining the benefits of blockchain technology. ExxonMobil is a multinational oil and gas corporation that operates in over 100 countries.", + "explorer": "https://bscscan.com/token/0xEEdb0273c5Af792745180e9fF568cD01550fFA13", + "type": "BEP20", + "symbol": "XOMX", + "decimals": 18, + "status": "active", + "id": "0xEEdb0273c5Af792745180e9fF568cD01550fFA13", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/exxon-mobil-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEEdb0273c5Af792745180e9fF568cD01550fFA13/logo.png b/blockchains/smartchain/assets/0xEEdb0273c5Af792745180e9fF568cD01550fFA13/logo.png new file mode 100644 index 0000000000000..7051dcb4d3e90 Binary files /dev/null and b/blockchains/smartchain/assets/0xEEdb0273c5Af792745180e9fF568cD01550fFA13/logo.png differ diff --git a/blockchains/smartchain/assets/0xEF2ec90e0b8D4CdFdB090989EA1Bc663F0D680BF/info.json b/blockchains/smartchain/assets/0xEF2ec90e0b8D4CdFdB090989EA1Bc663F0D680BF/info.json index 6e91c8bb7e7a9..685f58e6c4622 100644 --- a/blockchains/smartchain/assets/0xEF2ec90e0b8D4CdFdB090989EA1Bc663F0D680BF/info.json +++ b/blockchains/smartchain/assets/0xEF2ec90e0b8D4CdFdB090989EA1Bc663F0D680BF/info.json @@ -10,8 +10,8 @@ "id": "0xEF2ec90e0b8D4CdFdB090989EA1Bc663F0D680BF", "links": [ { - "name": "twitter", - "url": "https://twitter.com/orfanoBSC" + "name": "x", + "url": "https://x.com/orfanoBSC" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xEF6d459FE81C3Ed53d292c936b2df5a8084975De/info.json b/blockchains/smartchain/assets/0xEF6d459FE81C3Ed53d292c936b2df5a8084975De/info.json index 4e28a0b8b4f78..edb9313c2bd68 100644 --- a/blockchains/smartchain/assets/0xEF6d459FE81C3Ed53d292c936b2df5a8084975De/info.json +++ b/blockchains/smartchain/assets/0xEF6d459FE81C3Ed53d292c936b2df5a8084975De/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/CreamFi" }, { - "name": "twitter", - "url": "https://twitter.com/CreamdotFinance" + "name": "x", + "url": "https://x.com/CreamdotFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xEFEa4829b1bc90658784f15116C2dFD0E0929B0d/info.json b/blockchains/smartchain/assets/0xEFEa4829b1bc90658784f15116C2dFD0E0929B0d/info.json index 88ef00350ecda..8c9063495fc8a 100644 --- a/blockchains/smartchain/assets/0xEFEa4829b1bc90658784f15116C2dFD0E0929B0d/info.json +++ b/blockchains/smartchain/assets/0xEFEa4829b1bc90658784f15116C2dFD0E0929B0d/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/BabyDeFido_BSC" }, { - "name": "twitter", - "url": "https://twitter.com/Baby_Defido" + "name": "x", + "url": "https://x.com/Baby_Defido" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0xEFf13653EEb698Ba291B8BfF7AAaaB648132c2D7/info.json b/blockchains/smartchain/assets/0xEFf13653EEb698Ba291B8BfF7AAaaB648132c2D7/info.json index f5d3092c05576..cb19e48a30212 100644 --- a/blockchains/smartchain/assets/0xEFf13653EEb698Ba291B8BfF7AAaaB648132c2D7/info.json +++ b/blockchains/smartchain/assets/0xEFf13653EEb698Ba291B8BfF7AAaaB648132c2D7/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Bnbshinobi/" }, { - "name": "twitter", - "url": "https://twitter.com/BnbShinobi" + "name": "x", + "url": "https://x.com/BnbShinobi" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xEae2BBBC0000F605bD37A02c7fE346a3b68B03eb/info.json b/blockchains/smartchain/assets/0xEae2BBBC0000F605bD37A02c7fE346a3b68B03eb/info.json index 15e309043b93c..b4612cc92f4ea 100644 --- a/blockchains/smartchain/assets/0xEae2BBBC0000F605bD37A02c7fE346a3b68B03eb/info.json +++ b/blockchains/smartchain/assets/0xEae2BBBC0000F605bD37A02c7fE346a3b68B03eb/info.json @@ -10,8 +10,8 @@ "id": "0xEae2BBBC0000F605bD37A02c7fE346a3b68B03eb", "links": [ { - "name": "twitter", - "url": "https://twitter.com/CRIR_MSH" + "name": "x", + "url": "https://x.com/CRIR_MSH" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xEc3D04C82aF8C4b97Ecd058D543c2c0673ca72dC/info.json b/blockchains/smartchain/assets/0xEc3D04C82aF8C4b97Ecd058D543c2c0673ca72dC/info.json index fde2e49ba37bb..07dde7e7f6c30 100644 --- a/blockchains/smartchain/assets/0xEc3D04C82aF8C4b97Ecd058D543c2c0673ca72dC/info.json +++ b/blockchains/smartchain/assets/0xEc3D04C82aF8C4b97Ecd058D543c2c0673ca72dC/info.json @@ -17,8 +17,8 @@ "url": "https://t.me/BabyDogeMoneyMaker" }, { - "name": "twitter", - "url": "https://twitter.com/BabyDMoneyMaker" + "name": "x", + "url": "https://x.com/BabyDMoneyMaker" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0xEc7d0327fC48ef7EfA975A4e3327F28576C3ef96/info.json b/blockchains/smartchain/assets/0xEc7d0327fC48ef7EfA975A4e3327F28576C3ef96/info.json index 1e0bf56cd0840..60b73202b67cc 100644 --- a/blockchains/smartchain/assets/0xEc7d0327fC48ef7EfA975A4e3327F28576C3ef96/info.json +++ b/blockchains/smartchain/assets/0xEc7d0327fC48ef7EfA975A4e3327F28576C3ef96/info.json @@ -10,8 +10,8 @@ "id": "0xEc7d0327fC48ef7EfA975A4e3327F28576C3ef96", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ProtocolMoon" + "name": "x", + "url": "https://x.com/ProtocolMoon" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xEcCA434e838eEbE30E561d0Ec3E3016efd1d340A/info.json b/blockchains/smartchain/assets/0xEcCA434e838eEbE30E561d0Ec3E3016efd1d340A/info.json new file mode 100644 index 0000000000000..594ccfb47d675 --- /dev/null +++ b/blockchains/smartchain/assets/0xEcCA434e838eEbE30E561d0Ec3E3016efd1d340A/info.json @@ -0,0 +1,28 @@ +{ + "name": "Benefit Mine", + "type": "BEP20", + "symbol": "BFM", + "decimals": 8, + "website": "https://benefitmine.io", + "description": "BenefitMine is a comprehensive cryptocurrency platform designed to empower users with a range of financial tools and services. Developed by a dedicated team, BenefitMine offers a user-friendly interface and a suite of features tailored to meet the diverse needs of cryptocurrency enthusiasts and investors.", + "explorer": "https://bscscan.com/token/0xEcCA434e838eEbE30E561d0Ec3E3016efd1d340A", + "status": "active", + "id": "0xEcCA434e838eEbE30E561d0Ec3E3016efd1d340A", + "links": [ + { + "name": "x", + "url": "https://x.com/benefitmine" + }, + { + "name": "telegram", + "url": "https://t.me/BenefitMine" + }, + { + "name": "discord", + "url": "https://discord.com/invite/BenefitMine" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEcCA434e838eEbE30E561d0Ec3E3016efd1d340A/logo.png b/blockchains/smartchain/assets/0xEcCA434e838eEbE30E561d0Ec3E3016efd1d340A/logo.png new file mode 100644 index 0000000000000..e8e324bf3c553 Binary files /dev/null and b/blockchains/smartchain/assets/0xEcCA434e838eEbE30E561d0Ec3E3016efd1d340A/logo.png differ diff --git a/blockchains/smartchain/assets/0xEcf99aB23C11ddc6520252105308C251001AEfBB/info.json b/blockchains/smartchain/assets/0xEcf99aB23C11ddc6520252105308C251001AEfBB/info.json new file mode 100644 index 0000000000000..9330a53f92c41 --- /dev/null +++ b/blockchains/smartchain/assets/0xEcf99aB23C11ddc6520252105308C251001AEfBB/info.json @@ -0,0 +1,48 @@ +{ + "name": "UNS Token", + "type": "BEP20", + "symbol": "UNS", + "decimals": 18, + "website": "https://uns.technology", + "description": "UNS Token, a Multi-Sector Utility BEP20 Token that enables in connecting real-life utilities with the digital world.", + "explorer": "https://bscscan.com/token/0xecf99ab23c11ddc6520252105308c251001aefbb", + "status": "active", + "id": "0xEcf99aB23C11ddc6520252105308C251001AEfBB", + "links": [ + { + "name": "x", + "url": "https://x.com/_unsofficial_" + }, + { + "name": "telegram", + "url": "https://t.me/uns_token" + }, + { + "name": "discord", + "url": "https://discord.com/invite/wjFHg94mAW" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/uns-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/uns-token" + }, + { + "name": "telegram_news", + "url": "https://t.me/unstoken" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/UNS_Token" + }, + { + "name": "github", + "url": "https://github.com/Uns-Technology" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEcf99aB23C11ddc6520252105308C251001AEfBB/logo.png b/blockchains/smartchain/assets/0xEcf99aB23C11ddc6520252105308C251001AEfBB/logo.png new file mode 100644 index 0000000000000..aa527486df972 Binary files /dev/null and b/blockchains/smartchain/assets/0xEcf99aB23C11ddc6520252105308C251001AEfBB/logo.png differ diff --git a/blockchains/smartchain/assets/0xEd2a500eB2b66679e0BbD76e51a60049aE5f3271/info.json b/blockchains/smartchain/assets/0xEd2a500eB2b66679e0BbD76e51a60049aE5f3271/info.json new file mode 100644 index 0000000000000..5f548719dcec8 --- /dev/null +++ b/blockchains/smartchain/assets/0xEd2a500eB2b66679e0BbD76e51a60049aE5f3271/info.json @@ -0,0 +1,28 @@ +{ + "name": "Rigetti Computing (Ondo Tokenized)", + "type": "BEP20", + "symbol": "RGTIon", + "decimals": 18, + "description": "RGTIon is the Ondo Tokenized version of Rigetti Computing, giving tokenholders economic exposure similar to holding RGTI and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xEd2a500eB2b66679e0BbD76e51a60049aE5f3271", + "status": "active", + "id": "0xEd2a500eB2b66679e0BbD76e51a60049aE5f3271", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/rigetti-computing-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rigetti-computing-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEd2a500eB2b66679e0BbD76e51a60049aE5f3271/logo.png b/blockchains/smartchain/assets/0xEd2a500eB2b66679e0BbD76e51a60049aE5f3271/logo.png new file mode 100644 index 0000000000000..c9ccc6c6c8245 Binary files /dev/null and b/blockchains/smartchain/assets/0xEd2a500eB2b66679e0BbD76e51a60049aE5f3271/logo.png differ diff --git a/blockchains/smartchain/assets/0xEd44623b06616BCceC876617c124F5461Bd5f79B/info.json b/blockchains/smartchain/assets/0xEd44623b06616BCceC876617c124F5461Bd5f79B/info.json index 788cc9b9ae360..adc50011b42f6 100644 --- a/blockchains/smartchain/assets/0xEd44623b06616BCceC876617c124F5461Bd5f79B/info.json +++ b/blockchains/smartchain/assets/0xEd44623b06616BCceC876617c124F5461Bd5f79B/info.json @@ -10,8 +10,8 @@ "id": "0xEd44623b06616BCceC876617c124F5461Bd5f79B", "links": [ { - "name": "twitter", - "url": "https://twitter.com/bfkwarzone" + "name": "x", + "url": "https://x.com/bfkwarzone" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xEd579847e45B0c48cfd608Da829073B2F7e65Cf0/info.json b/blockchains/smartchain/assets/0xEd579847e45B0c48cfd608Da829073B2F7e65Cf0/info.json new file mode 100644 index 0000000000000..be3be1a0d55f3 --- /dev/null +++ b/blockchains/smartchain/assets/0xEd579847e45B0c48cfd608Da829073B2F7e65Cf0/info.json @@ -0,0 +1,20 @@ +{ + "name": "Energy Fuels Inc. xStock", + "type": "BEP20", + "symbol": "UUUUx", + "decimals": 18, + "description": "Energy Fuels Inc. xStock (UUUUx) is a tracker certificate issued as a freely transferable token on selected blockchains. UUUUx tracks the price of Energy Fuels Inc.. UUUUx is designed to give eligible investors regulatory-compliant access to the stock price of Energy Fuels Inc., whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0xEd579847e45B0c48cfd608Da829073B2F7e65Cf0", + "status": "active", + "id": "0xEd579847e45B0c48cfd608Da829073B2F7e65Cf0", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEd579847e45B0c48cfd608Da829073B2F7e65Cf0/logo.png b/blockchains/smartchain/assets/0xEd579847e45B0c48cfd608Da829073B2F7e65Cf0/logo.png new file mode 100644 index 0000000000000..e2b95e78fee3d Binary files /dev/null and b/blockchains/smartchain/assets/0xEd579847e45B0c48cfd608Da829073B2F7e65Cf0/logo.png differ diff --git a/blockchains/smartchain/assets/0xEd8c8Aa8299C10f067496BB66f8cC7Fb338A3405/info.json b/blockchains/smartchain/assets/0xEd8c8Aa8299C10f067496BB66f8cC7Fb338A3405/info.json index 8850fa5d51d13..57dad0191bb46 100644 --- a/blockchains/smartchain/assets/0xEd8c8Aa8299C10f067496BB66f8cC7Fb338A3405/info.json +++ b/blockchains/smartchain/assets/0xEd8c8Aa8299C10f067496BB66f8cC7Fb338A3405/info.json @@ -1,25 +1,38 @@ { "name": "Prosper", - "website": "https://prosper.so/", - "description": "Cross-chain prediction market and hedging platform that is pioneering the technology of on-chain liquidity aggregation", - "explorer": "https://bscscan.com/token/0xed8c8aa8299c10f067496bb66f8cc7fb338a3405", "type": "BEP20", "symbol": "PROS", "decimals": 18, + "website": "https://www.prosper-fi.com/", + "description": "Prosper is a decentralized protocol built for a community dedicated to Bitcoin. It bridges institutional-level Bitcoin mining power to the blockchain and aims to unlock new possibilities through liquidity farming.", + "explorer": "https://bscscan.com/token/0xed8c8aa8299c10f067496bb66f8cc7fb338a3405", "status": "active", "id": "0xEd8c8Aa8299C10f067496BB66f8cC7Fb338A3405", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Prosperpredict" + "name": "x", + "url": "https://x.com/prosperfi_xyz" }, { "name": "telegram", "url": "https://t.me/prosperfi" }, + { + "name": "whitepaper", + "url": "https://docs.prosper-fi.com/" + }, { "name": "coinmarketcap", "url": "https://coinmarketcap.com/currencies/prosper/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/prosper" } + ], + "tags": [ + "defi", + "staking", + "dapp" ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEd8c8Aa8299C10f067496BB66f8cC7Fb338A3405/logo.png b/blockchains/smartchain/assets/0xEd8c8Aa8299C10f067496BB66f8cC7Fb338A3405/logo.png index 5725990a5e6f0..a42ef0036646b 100644 Binary files a/blockchains/smartchain/assets/0xEd8c8Aa8299C10f067496BB66f8cC7Fb338A3405/logo.png and b/blockchains/smartchain/assets/0xEd8c8Aa8299C10f067496BB66f8cC7Fb338A3405/logo.png differ diff --git a/blockchains/smartchain/assets/0xEdBeBe204Ef070B6880E07A28b55edc7748C24BA/info.json b/blockchains/smartchain/assets/0xEdBeBe204Ef070B6880E07A28b55edc7748C24BA/info.json new file mode 100644 index 0000000000000..7fe8ae22ec95b --- /dev/null +++ b/blockchains/smartchain/assets/0xEdBeBe204Ef070B6880E07A28b55edc7748C24BA/info.json @@ -0,0 +1,21 @@ +{ + "name": "ATWO (wrapped)", + "type": "BEP20", + "symbol": "ATWO", + "decimals": 18, + "website": "https://www.arenatwo.com/", + "description": "Arena Two is the world’s first Web3 live sports ecosystem, where real-world tournaments meet crypto. Fans don’t just watch - they vote on real match decisions, back athlete-led teams, and earn rewards through memberships, NFTs, and the $ATWO token.", + "explorer": "https://bscscan.com/token/0xEdBeBe204Ef070B6880E07A28b55edc7748C24BA", + "status": "active", + "id": "0xEdBeBe204Ef070B6880E07A28b55edc7748C24BA", + "links": [ + { + "name": "x", + "url": "https://x.com/arenatwoX" + }, + { + "name": "whitepaper", + "url": "https://arenatwo.com/en/whitepaper" + } + ] +} diff --git a/blockchains/smartchain/assets/0xEdBeBe204Ef070B6880E07A28b55edc7748C24BA/logo.png b/blockchains/smartchain/assets/0xEdBeBe204Ef070B6880E07A28b55edc7748C24BA/logo.png new file mode 100644 index 0000000000000..8bf17512306a1 Binary files /dev/null and b/blockchains/smartchain/assets/0xEdBeBe204Ef070B6880E07A28b55edc7748C24BA/logo.png differ diff --git a/blockchains/smartchain/assets/0xEda3866f07566d9379a91A07F8D62e19C03183e0/info.json b/blockchains/smartchain/assets/0xEda3866f07566d9379a91A07F8D62e19C03183e0/info.json index ab35e7c61be72..36a941528aa79 100644 --- a/blockchains/smartchain/assets/0xEda3866f07566d9379a91A07F8D62e19C03183e0/info.json +++ b/blockchains/smartchain/assets/0xEda3866f07566d9379a91A07F8D62e19C03183e0/info.json @@ -10,8 +10,8 @@ "id": "0xEda3866f07566d9379a91A07F8D62e19C03183e0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/HashBitorg" + "name": "x", + "url": "https://x.com/HashBitorg" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xEda6Af1212893f5605508287b046194593c87777/info.json b/blockchains/smartchain/assets/0xEda6Af1212893f5605508287b046194593c87777/info.json new file mode 100644 index 0000000000000..7317e95803c54 --- /dev/null +++ b/blockchains/smartchain/assets/0xEda6Af1212893f5605508287b046194593c87777/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE JETMAX", + "type": "BEP20", + "symbol": "FAKE JET", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xEda6Af1212893f5605508287b046194593c87777", + "explorer": "https://bscscan.com/token/0xEda6Af1212893f5605508287b046194593c87777", + "status": "spam", + "id": "0xEda6Af1212893f5605508287b046194593c87777" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEe0736c93E98B2e9fbf11f47dB19E7B68Db71E94/info.json b/blockchains/smartchain/assets/0xEe0736c93E98B2e9fbf11f47dB19E7B68Db71E94/info.json index 940e39a685d19..cfddd27c24b54 100644 --- a/blockchains/smartchain/assets/0xEe0736c93E98B2e9fbf11f47dB19E7B68Db71E94/info.json +++ b/blockchains/smartchain/assets/0xEe0736c93E98B2e9fbf11f47dB19E7B68Db71E94/info.json @@ -18,8 +18,8 @@ "url": "https://coingecko.com/en/coins/farmerdoge-v3" }, { - "name": "twitter", - "url": "https://twitter.com/FarmerDogeBSC?t=GNh1BY1qXDmD69TqtZwuCQ&s=09" + "name": "x", + "url": "https://x.com/FarmerDogeBSC?t=GNh1BY1qXDmD69TqtZwuCQ&s=09" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xEf80743f78d98FC2B47a2253B293152ce8B879ba/info.json b/blockchains/smartchain/assets/0xEf80743f78d98FC2B47a2253B293152ce8B879ba/info.json new file mode 100644 index 0000000000000..67e4c7ec524bd --- /dev/null +++ b/blockchains/smartchain/assets/0xEf80743f78d98FC2B47a2253B293152ce8B879ba/info.json @@ -0,0 +1,24 @@ +{ + "name": "Airbnb (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "ABNBon is the Ondo Tokenized version of Airbnb, giving tokenholders economic exposure similar to holding ABNB and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xef80743f78d98fc2b47a2253b293152ce8b879ba", + "type": "BEP20", + "symbol": "ABNBon", + "decimals": 18, + "status": "active", + "id": "0xEf80743f78d98FC2B47a2253B293152ce8B879ba", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/airbnb-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEf80743f78d98FC2B47a2253B293152ce8B879ba/logo.png b/blockchains/smartchain/assets/0xEf80743f78d98FC2B47a2253B293152ce8B879ba/logo.png new file mode 100644 index 0000000000000..3537e046a248f Binary files /dev/null and b/blockchains/smartchain/assets/0xEf80743f78d98FC2B47a2253B293152ce8B879ba/logo.png differ diff --git a/blockchains/smartchain/assets/0xF017E2773e4ee0590C81D79ccbcF1B2De1D22877/info.json b/blockchains/smartchain/assets/0xF017E2773e4ee0590C81D79ccbcF1B2De1D22877/info.json index 59ca606933eed..9c909800f79d4 100644 --- a/blockchains/smartchain/assets/0xF017E2773e4ee0590C81D79ccbcF1B2De1D22877/info.json +++ b/blockchains/smartchain/assets/0xF017E2773e4ee0590C81D79ccbcF1B2De1D22877/info.json @@ -10,8 +10,8 @@ "id": "0xF017E2773e4ee0590C81D79ccbcF1B2De1D22877", "links": [ { - "name": "twitter", - "url": "https://twitter.com/safemooncash" + "name": "x", + "url": "https://x.com/safemooncash" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xF02b31b0B6dCabd579e41A0250288608FA43F898/info.json b/blockchains/smartchain/assets/0xF02b31b0B6dCabd579e41A0250288608FA43F898/info.json index d57272d09104a..e87d569311917 100644 --- a/blockchains/smartchain/assets/0xF02b31b0B6dCabd579e41A0250288608FA43F898/info.json +++ b/blockchains/smartchain/assets/0xF02b31b0B6dCabd579e41A0250288608FA43F898/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/AthosMeta" }, { - "name": "twitter", - "url": "https://twitter.com/AthosMeta" + "name": "x", + "url": "https://x.com/AthosMeta" }, { "name": "reddit", @@ -29,4 +29,4 @@ "url": "https://athos-meta.io/Whitepaper-EN.pdf" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF03E02AcbC5eb22de027eA4F59235966F5810D4f/info.json b/blockchains/smartchain/assets/0xF03E02AcbC5eb22de027eA4F59235966F5810D4f/info.json index 7abd1d87d1bb2..f3fa8abce61d9 100644 --- a/blockchains/smartchain/assets/0xF03E02AcbC5eb22de027eA4F59235966F5810D4f/info.json +++ b/blockchains/smartchain/assets/0xF03E02AcbC5eb22de027eA4F59235966F5810D4f/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/Pi_INU_Official" + "name": "x", + "url": "https://x.com/Pi_INU_Official" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0xF078580015Cdfaa849BDAd8B38e72F5803C316c4/info.json b/blockchains/smartchain/assets/0xF078580015Cdfaa849BDAd8B38e72F5803C316c4/info.json index d89c26fa02a26..dfe7aafd21617 100644 --- a/blockchains/smartchain/assets/0xF078580015Cdfaa849BDAd8B38e72F5803C316c4/info.json +++ b/blockchains/smartchain/assets/0xF078580015Cdfaa849BDAd8B38e72F5803C316c4/info.json @@ -10,8 +10,8 @@ "id": "0xF078580015Cdfaa849BDAd8B38e72F5803C316c4", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Sonofdoge_" + "name": "x", + "url": "https://x.com/Sonofdoge_" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xF0A8EcBCE8caADB7A07d1FcD0f87Ae1Bd688dF43/info.json b/blockchains/smartchain/assets/0xF0A8EcBCE8caADB7A07d1FcD0f87Ae1Bd688dF43/info.json index ead3598139601..c7af44a2549e0 100644 --- a/blockchains/smartchain/assets/0xF0A8EcBCE8caADB7A07d1FcD0f87Ae1Bd688dF43/info.json +++ b/blockchains/smartchain/assets/0xF0A8EcBCE8caADB7A07d1FcD0f87Ae1Bd688dF43/info.json @@ -17,12 +17,12 @@ "url": "https://t.me/cryptogodz1" }, { - "name": "twitter", - "url": "https://twitter.com/CryptogodzNFTG" + "name": "x", + "url": "https://x.com/CryptogodzNFTG" }, { "name": "coinmarketcap", "url": "https://coinmarketcap.com/ru/currencies/cryptogodz/" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF0B6E02Bb5903Bc98792aebe98e72007D3D7E5e8/info.json b/blockchains/smartchain/assets/0xF0B6E02Bb5903Bc98792aebe98e72007D3D7E5e8/info.json new file mode 100644 index 0000000000000..00e6fb16078ae --- /dev/null +++ b/blockchains/smartchain/assets/0xF0B6E02Bb5903Bc98792aebe98e72007D3D7E5e8/info.json @@ -0,0 +1,14 @@ +{ + "name": "BlackWork", + "type": "BEP20", + "symbol": "BLWK", + "decimals": 18, + "website": "https://four.meme/token/0xF0B6E02Bb5903Bc98792aebe98e72007D3D7E5e8", + "description": "BlackWork", + "explorer": "https://bscscan.com/token/0xF0B6E02Bb5903Bc98792aebe98e72007D3D7E5e8", + "status": "active", + "id": "0xF0B6E02Bb5903Bc98792aebe98e72007D3D7E5e8", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF0B6E02Bb5903Bc98792aebe98e72007D3D7E5e8/logo.png b/blockchains/smartchain/assets/0xF0B6E02Bb5903Bc98792aebe98e72007D3D7E5e8/logo.png new file mode 100644 index 0000000000000..bd4732466e902 Binary files /dev/null and b/blockchains/smartchain/assets/0xF0B6E02Bb5903Bc98792aebe98e72007D3D7E5e8/logo.png differ diff --git a/blockchains/smartchain/assets/0xF0EBB572643336834d516C485ad31d3299999999/info.json b/blockchains/smartchain/assets/0xF0EBB572643336834d516C485ad31d3299999999/info.json new file mode 100644 index 0000000000000..d61b2aaa9a4f6 --- /dev/null +++ b/blockchains/smartchain/assets/0xF0EBB572643336834d516C485ad31d3299999999/info.json @@ -0,0 +1,35 @@ +{ + "name": "MetYa", + "symbol": "MY", + "type": "BEP20", + "decimals": 18, + "description": "Metya - The largest and most influential dating platform #SocialFi", + "website": "https://metya.com", + "explorer": "https://bscscan.com/token/0xF0EBB572643336834d516C485ad31d3299999999", + "status": "active", + "id": "0xF0EBB572643336834d516C485ad31d3299999999", + + "links": [ + { + "name": "x", + "url": "https://x.com/metyacom" + }, + { + "name": "telegram", + "url": "https://t.me/metya_official" + }, + { + "name": "discord", + "url": "https://discord.com/invite/pQUY8WNphs" + }, + { + "name": "medium", + "url": "https://medium.com/@metyacom" + } + ], + "tags": [ + "socialfi", + "dating", + "social" + ] +} diff --git a/blockchains/smartchain/assets/0xF0EBB572643336834d516C485ad31d3299999999/logo.png b/blockchains/smartchain/assets/0xF0EBB572643336834d516C485ad31d3299999999/logo.png new file mode 100644 index 0000000000000..8cb13a7ea7cbc Binary files /dev/null and b/blockchains/smartchain/assets/0xF0EBB572643336834d516C485ad31d3299999999/logo.png differ diff --git a/blockchains/smartchain/assets/0xF11215614946E7990842b96F998B4797187D8888/info.json b/blockchains/smartchain/assets/0xF11215614946E7990842b96F998B4797187D8888/info.json new file mode 100644 index 0000000000000..bac9ea4f4dc9f --- /dev/null +++ b/blockchains/smartchain/assets/0xF11215614946E7990842b96F998B4797187D8888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Fake USDT", + "type": "BEP20", + "symbol": "FAKE Fake USDT.S", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xF11215614946E7990842b96F998B4797187D8888", + "explorer": "https://bscscan.com/token/0xF11215614946E7990842b96F998B4797187D8888", + "status": "spam", + "id": "0xF11215614946E7990842b96F998B4797187D8888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF14D3692B0055Db9Ca4c04065165d59B87E763f1/info.json b/blockchains/smartchain/assets/0xF14D3692B0055Db9Ca4c04065165d59B87E763f1/info.json index 8f11b29627090..efbf0b19a8791 100644 --- a/blockchains/smartchain/assets/0xF14D3692B0055Db9Ca4c04065165d59B87E763f1/info.json +++ b/blockchains/smartchain/assets/0xF14D3692B0055Db9Ca4c04065165d59B87E763f1/info.json @@ -10,8 +10,8 @@ "id": "0xF14D3692B0055Db9Ca4c04065165d59B87E763f1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MetaBUSDCoin" + "name": "x", + "url": "https://x.com/MetaBUSDCoin" }, { "name": "telegram", @@ -37,4 +37,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF15B8f7465b92799F6EE440F86B3CAB5A4dbc65A/info.json b/blockchains/smartchain/assets/0xF15B8f7465b92799F6EE440F86B3CAB5A4dbc65A/info.json new file mode 100644 index 0000000000000..efd0ecc15a433 --- /dev/null +++ b/blockchains/smartchain/assets/0xF15B8f7465b92799F6EE440F86B3CAB5A4dbc65A/info.json @@ -0,0 +1,24 @@ +{ + "name": "Southern Copper (Ondo Tokenized)", + "type": "BEP20", + "symbol": "SCCOon", + "decimals": 18, + "description": "SCCOon is the Ondo Tokenized version of Southern Copper, giving tokenholders economic exposure similar to holding SCCO and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xF15B8f7465b92799F6EE440F86B3CAB5A4dbc65A", + "status": "active", + "id": "0xF15B8f7465b92799F6EE440F86B3CAB5A4dbc65A", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/southern-copper-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF15B8f7465b92799F6EE440F86B3CAB5A4dbc65A/logo.png b/blockchains/smartchain/assets/0xF15B8f7465b92799F6EE440F86B3CAB5A4dbc65A/logo.png new file mode 100644 index 0000000000000..1535705347ac4 Binary files /dev/null and b/blockchains/smartchain/assets/0xF15B8f7465b92799F6EE440F86B3CAB5A4dbc65A/logo.png differ diff --git a/blockchains/smartchain/assets/0xF16e1Ad313E3Bf4E3381b58731b45fA116ECF53f/info.json b/blockchains/smartchain/assets/0xF16e1Ad313E3Bf4E3381b58731b45fA116ECF53f/info.json index 8a78b4bdfe6f7..6084a882fc5f2 100644 --- a/blockchains/smartchain/assets/0xF16e1Ad313E3Bf4E3381b58731b45fA116ECF53f/info.json +++ b/blockchains/smartchain/assets/0xF16e1Ad313E3Bf4E3381b58731b45fA116ECF53f/info.json @@ -18,8 +18,8 @@ "url": "https://coinmarketcap.com/currencies/luckypig/" }, { - "name": "twitter", - "url": "https://twitter.com/Luckypigtoken" + "name": "x", + "url": "https://x.com/Luckypigtoken" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF18e1289FCe882e4dB55Ec8A349D027a9a5B3169/info.json b/blockchains/smartchain/assets/0xF18e1289FCe882e4dB55Ec8A349D027a9a5B3169/info.json index 64b5f607bbe6e..6ec31acf0c579 100644 --- a/blockchains/smartchain/assets/0xF18e1289FCe882e4dB55Ec8A349D027a9a5B3169/info.json +++ b/blockchains/smartchain/assets/0xF18e1289FCe882e4dB55Ec8A349D027a9a5B3169/info.json @@ -10,8 +10,8 @@ "id": "0xF18e1289FCe882e4dB55Ec8A349D027a9a5B3169", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Metabotchain" + "name": "x", + "url": "https://x.com/Metabotchain" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xF19b09DA89722F0a6960F9bF9701A63AE891603A/info.json b/blockchains/smartchain/assets/0xF19b09DA89722F0a6960F9bF9701A63AE891603A/info.json index 9c63f76c1ea81..9c6dd3edeccba 100644 --- a/blockchains/smartchain/assets/0xF19b09DA89722F0a6960F9bF9701A63AE891603A/info.json +++ b/blockchains/smartchain/assets/0xF19b09DA89722F0a6960F9bF9701A63AE891603A/info.json @@ -10,8 +10,8 @@ "id": "0xF19b09DA89722F0a6960F9bF9701A63AE891603A", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TetraHedraTTH" + "name": "x", + "url": "https://x.com/TetraHedraTTH" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0xF21768cCBC73Ea5B6fd3C687208a7c2def2d966e/info.json b/blockchains/smartchain/assets/0xF21768cCBC73Ea5B6fd3C687208a7c2def2d966e/info.json index 91d6b352f5884..cac84cb8d558a 100644 --- a/blockchains/smartchain/assets/0xF21768cCBC73Ea5B6fd3C687208a7c2def2d966e/info.json +++ b/blockchains/smartchain/assets/0xF21768cCBC73Ea5B6fd3C687208a7c2def2d966e/info.json @@ -11,8 +11,8 @@ "id": "0xF21768cCBC73Ea5B6fd3C687208a7c2def2d966e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ReefDeFi" + "name": "x", + "url": "https://x.com/ReefDeFi" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xF218184Af829Cf2b0019F8E6F0b2423498a36983/info.json b/blockchains/smartchain/assets/0xF218184Af829Cf2b0019F8E6F0b2423498a36983/info.json new file mode 100644 index 0000000000000..5c3a222d5096f --- /dev/null +++ b/blockchains/smartchain/assets/0xF218184Af829Cf2b0019F8E6F0b2423498a36983/info.json @@ -0,0 +1,17 @@ +{ + "name": "MATH Token", + "symbol": "MATH", + "type": "BEP20", + "decimals": 18, + "description": "65+ Popular public chains supported", + "website": "https://mathwallet.org/", + "explorer": "https://bscscan.com/token/0xf218184af829cf2b0019f8e6f0b2423498a36983", + "status": "active", + "id": "0xF218184Af829Cf2b0019F8E6F0b2423498a36983", + "links": [ + { + "name": "x", + "url": "https://x.com/Mathwallet" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF218184Af829Cf2b0019F8E6F0b2423498a36983/logo.png b/blockchains/smartchain/assets/0xF218184Af829Cf2b0019F8E6F0b2423498a36983/logo.png new file mode 100644 index 0000000000000..9a0131c539afe Binary files /dev/null and b/blockchains/smartchain/assets/0xF218184Af829Cf2b0019F8E6F0b2423498a36983/logo.png differ diff --git a/blockchains/smartchain/assets/0xF28709f1daa6CEE2847C5B9526ceba457331742b/info.json b/blockchains/smartchain/assets/0xF28709f1daa6CEE2847C5B9526ceba457331742b/info.json index 66721a039891d..62f607271d870 100644 --- a/blockchains/smartchain/assets/0xF28709f1daa6CEE2847C5B9526ceba457331742b/info.json +++ b/blockchains/smartchain/assets/0xF28709f1daa6CEE2847C5B9526ceba457331742b/info.json @@ -10,8 +10,8 @@ "id": "0xF28709f1daa6CEE2847C5B9526ceba457331742b", "links": [ { - "name": "twitter", - "url": "https://twitter.com/melontokenbsc" + "name": "x", + "url": "https://x.com/melontokenbsc" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xF2A92BC1Cf798fF4De14502a9C6FdA58865e8D5d/info.json b/blockchains/smartchain/assets/0xF2A92BC1Cf798fF4De14502a9C6FdA58865e8D5d/info.json index c83872be64d3b..ddd422a46fba4 100644 --- a/blockchains/smartchain/assets/0xF2A92BC1Cf798fF4De14502a9C6FdA58865e8D5d/info.json +++ b/blockchains/smartchain/assets/0xF2A92BC1Cf798fF4De14502a9C6FdA58865e8D5d/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/ThoreumFinance" + "name": "x", + "url": "https://x.com/ThoreumFinance" }, { "name": "telegram", @@ -41,4 +41,4 @@ "url": "https://github.com/ThoreumFinance/ThoreumCapital" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF2DA079867785018E6d823DD0FF332f05AAfe485/info.json b/blockchains/smartchain/assets/0xF2DA079867785018E6d823DD0FF332f05AAfe485/info.json index 6430a0b31c32c..c86b3f5d1e598 100644 --- a/blockchains/smartchain/assets/0xF2DA079867785018E6d823DD0FF332f05AAfe485/info.json +++ b/blockchains/smartchain/assets/0xF2DA079867785018E6d823DD0FF332f05AAfe485/info.json @@ -10,8 +10,8 @@ "id": "0xF2DA079867785018E6d823DD0FF332f05AAfe485", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Vektor_vektor?t=pE8hrBoFe7yDCYMEojK9Kw&s=09" + "name": "x", + "url": "https://x.com/Vektor_vektor?t=pE8hrBoFe7yDCYMEojK9Kw&s=09" }, { "name": "telegram", @@ -25,4 +25,4 @@ "tags": [ "privacy" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF2E71B054B6b0F3C5513Af505E6c072008ECFaCD/info.json b/blockchains/smartchain/assets/0xF2E71B054B6b0F3C5513Af505E6c072008ECFaCD/info.json index 55ee26cfb450a..f77f05d3e6e7b 100644 --- a/blockchains/smartchain/assets/0xF2E71B054B6b0F3C5513Af505E6c072008ECFaCD/info.json +++ b/blockchains/smartchain/assets/0xF2E71B054B6b0F3C5513Af505E6c072008ECFaCD/info.json @@ -10,8 +10,8 @@ "id": "0xF2E71B054B6b0F3C5513Af505E6c072008ECFaCD", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BrixelWar" + "name": "x", + "url": "https://x.com/BrixelWar" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0xF325884D9bcac457271fE7F7B6be1765348fCCa2/info.json b/blockchains/smartchain/assets/0xF325884D9bcac457271fE7F7B6be1765348fCCa2/info.json new file mode 100644 index 0000000000000..e7b620aa5805b --- /dev/null +++ b/blockchains/smartchain/assets/0xF325884D9bcac457271fE7F7B6be1765348fCCa2/info.json @@ -0,0 +1,28 @@ +{ + "name": "Snap (Ondo Tokenized)", + "type": "BEP20", + "symbol": "SNAPon", + "decimals": 18, + "description": "SNAPon is the Ondo Tokenized version of Snap, giving tokenholders economic exposure similar to holding SNAP and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xF325884D9bcac457271fE7F7B6be1765348fCCa2", + "status": "active", + "id": "0xF325884D9bcac457271fE7F7B6be1765348fCCa2", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/snap-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/snap-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF325884D9bcac457271fE7F7B6be1765348fCCa2/logo.png b/blockchains/smartchain/assets/0xF325884D9bcac457271fE7F7B6be1765348fCCa2/logo.png new file mode 100644 index 0000000000000..c10c4abc8d1d2 Binary files /dev/null and b/blockchains/smartchain/assets/0xF325884D9bcac457271fE7F7B6be1765348fCCa2/logo.png differ diff --git a/blockchains/smartchain/assets/0xF32c9F9dAe7a82b6680F10D75AaEA2cf07848888/info.json b/blockchains/smartchain/assets/0xF32c9F9dAe7a82b6680F10D75AaEA2cf07848888/info.json new file mode 100644 index 0000000000000..d7b063880b47f --- /dev/null +++ b/blockchains/smartchain/assets/0xF32c9F9dAe7a82b6680F10D75AaEA2cf07848888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether USD", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xF32c9F9dAe7a82b6680F10D75AaEA2cf07848888", + "explorer": "https://bscscan.com/token/0xF32c9F9dAe7a82b6680F10D75AaEA2cf07848888", + "status": "spam", + "id": "0xF32c9F9dAe7a82b6680F10D75AaEA2cf07848888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/info.json b/blockchains/smartchain/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/info.json index 2085cb535e94f..74c78ff4927ba 100644 --- a/blockchains/smartchain/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/info.json +++ b/blockchains/smartchain/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/info.json @@ -10,8 +10,8 @@ "id": "0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c", "links": [ { - "name": "twitter", - "url": "https://twitter.com/GroveToken" + "name": "x", + "url": "https://x.com/GroveToken" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0xF3c7CECF8cBC3066F9a87b310cEBE198d00479aC/info.json b/blockchains/smartchain/assets/0xF3c7CECF8cBC3066F9a87b310cEBE198d00479aC/info.json new file mode 100644 index 0000000000000..74b2f95fe470c --- /dev/null +++ b/blockchains/smartchain/assets/0xF3c7CECF8cBC3066F9a87b310cEBE198d00479aC/info.json @@ -0,0 +1,40 @@ +{ + "name": "FEG Token", + "type": "BEP20", + "symbol": "FEG", + "decimals": 18, + "website": "https://feg.io/", + "description": "a community-driven, innovative DeFi project committed to transparency, long-term sustainability, and inclusivity. By prioritizing security, ethical practices, and empowering users through accessible financial tools and opportunities, FEG aims to revolutionize decentralized finance and foster a thriving, trustworthy ecosystem.", + "explorer": "https://bscscan.com/token/0xF3c7CECF8cBC3066F9a87b310cEBE198d00479aC", + "status": "active", + "id": "0xF3c7CECF8cBC3066F9a87b310cEBE198d00479aC", + "links": [ + { + "name": "telegram", + "url": "https://t.me/fegchat" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/FegToken_Official" + }, + { + "name": "x", + "url": "https://x.com/FEGtoken" + }, + { + "name": "docs", + "url": "https://docs.feg.io/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/feed-every-gorilla/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/feg-token" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF3c7CECF8cBC3066F9a87b310cEBE198d00479aC/logo.png b/blockchains/smartchain/assets/0xF3c7CECF8cBC3066F9a87b310cEBE198d00479aC/logo.png new file mode 100644 index 0000000000000..9c3d32ed254e9 Binary files /dev/null and b/blockchains/smartchain/assets/0xF3c7CECF8cBC3066F9a87b310cEBE198d00479aC/logo.png differ diff --git a/blockchains/smartchain/assets/0xF3d5b4c34Ed623478cc5141861776E6cf7AE3A1E/info.json b/blockchains/smartchain/assets/0xF3d5b4c34Ed623478cc5141861776E6cf7AE3A1E/info.json new file mode 100644 index 0000000000000..bd4d6025832a8 --- /dev/null +++ b/blockchains/smartchain/assets/0xF3d5b4c34Ed623478cc5141861776E6cf7AE3A1E/info.json @@ -0,0 +1,28 @@ +{ + "name": "KGEN", + "type": "BEP20", + "symbol": "KGEN", + "decimals": 8, + "website": "https://kgen.io/", + "description": "KGEN is the native token of the KGeN Protocol, the world’s largest Verified Distribution Layer, built on real human users and designed to accelerate business growth across AI, DeFi, consumer applications, and digital economies.", + "explorer": "https://bscscan.com/token/0xF3d5b4c34Ed623478cc5141861776E6cf7AE3A1E", + "status": "active", + "id": "0xF3d5b4c34Ed623478cc5141861776E6cf7AE3A1E", + "links": [ + { + "name": "x", + "url": "https://x.com/KGeN_IO" + }, + { + "name": "whitepaper", + "url": "https://docsend.com/view/hk4x68ncce4cpssy" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kgen/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF3d5b4c34Ed623478cc5141861776E6cf7AE3A1E/logo.png b/blockchains/smartchain/assets/0xF3d5b4c34Ed623478cc5141861776E6cf7AE3A1E/logo.png new file mode 100644 index 0000000000000..43982f9bc053e Binary files /dev/null and b/blockchains/smartchain/assets/0xF3d5b4c34Ed623478cc5141861776E6cf7AE3A1E/logo.png differ diff --git a/blockchains/smartchain/assets/0xF3e82EA164CB344B2b11Bad4c24b0Ea4F7BA4714/info.json b/blockchains/smartchain/assets/0xF3e82EA164CB344B2b11Bad4c24b0Ea4F7BA4714/info.json new file mode 100644 index 0000000000000..5ae43d40bf217 --- /dev/null +++ b/blockchains/smartchain/assets/0xF3e82EA164CB344B2b11Bad4c24b0Ea4F7BA4714/info.json @@ -0,0 +1,28 @@ +{ + "name": "PDD Holdings (Ondo Tokenized)", + "type": "BEP20", + "symbol": "PDDon", + "decimals": 18, + "description": "PDDon is the Ondo Tokenized version of PDD Holdings, giving tokenholders economic exposure similar to holding PDD and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xF3e82EA164CB344B2b11Bad4c24b0Ea4F7BA4714", + "status": "active", + "id": "0xF3e82EA164CB344B2b11Bad4c24b0Ea4F7BA4714", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pdd-holdings-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pdd-holdings-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF3e82EA164CB344B2b11Bad4c24b0Ea4F7BA4714/logo.png b/blockchains/smartchain/assets/0xF3e82EA164CB344B2b11Bad4c24b0Ea4F7BA4714/logo.png new file mode 100644 index 0000000000000..7bde4f2c9b3cf Binary files /dev/null and b/blockchains/smartchain/assets/0xF3e82EA164CB344B2b11Bad4c24b0Ea4F7BA4714/logo.png differ diff --git a/blockchains/smartchain/assets/0xF41082C4CB71FB4628a9b17214B2624e0e2048a9/info.json b/blockchains/smartchain/assets/0xF41082C4CB71FB4628a9b17214B2624e0e2048a9/info.json index c3c87917ed173..2103acf5152c5 100644 --- a/blockchains/smartchain/assets/0xF41082C4CB71FB4628a9b17214B2624e0e2048a9/info.json +++ b/blockchains/smartchain/assets/0xF41082C4CB71FB4628a9b17214B2624e0e2048a9/info.json @@ -14,8 +14,8 @@ }, "links": [ { - "name": "twitter", - "url": "https://twitter.com/realtrumptoken" + "name": "x", + "url": "https://x.com/realtrumptoken" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xF46306CDC35B845ebcc823Be8363249b21F7eE63/info.json b/blockchains/smartchain/assets/0xF46306CDC35B845ebcc823Be8363249b21F7eE63/info.json new file mode 100644 index 0000000000000..ba86e2652d418 --- /dev/null +++ b/blockchains/smartchain/assets/0xF46306CDC35B845ebcc823Be8363249b21F7eE63/info.json @@ -0,0 +1,21 @@ +{ + "name": "Tradehub", + "symbol": "TRHUB", + "type": "BEP20", + "decimals": 18, + "description": "AI Predictions for Optimal Trading -- Unleash the power of Artificial Intelligence for Trading Excellence!", + "website": "https://tradehub.ai/", + "explorer": "https://bscscan.com/token/0xf46306cdc35b845ebcc823be8363249b21f7ee63", + "status": "active", + "id": "0xF46306CDC35B845ebcc823Be8363249b21F7eE63", + "links": [ + { + "name": "telegram", + "url": "https://t.me/tradehubai" + }, + { + "name": "x", + "url": "https://x.com/tradehubai" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF46306CDC35B845ebcc823Be8363249b21F7eE63/logo.png b/blockchains/smartchain/assets/0xF46306CDC35B845ebcc823Be8363249b21F7eE63/logo.png new file mode 100644 index 0000000000000..e8cdea811a3e1 Binary files /dev/null and b/blockchains/smartchain/assets/0xF46306CDC35B845ebcc823Be8363249b21F7eE63/logo.png differ diff --git a/blockchains/smartchain/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/info.json b/blockchains/smartchain/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/info.json index 0c1595e48839d..9212339c5bca3 100644 --- a/blockchains/smartchain/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/info.json +++ b/blockchains/smartchain/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "BBANK", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xF4b5470523cCD314C6B9dA041076e7D79E0Df267", "links": [ { @@ -14,8 +14,8 @@ "url": "https://github.com/BlockBank-team/" }, { - "name": "twitter", - "url": "https://twitter.com/BLOCKBANKapp?s=09" + "name": "x", + "url": "https://x.com/BLOCKBANKapp?s=09" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/logo.png b/blockchains/smartchain/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/logo.png deleted file mode 100644 index d7ce5e9cec876..0000000000000 Binary files a/blockchains/smartchain/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xF520f5D709dCD40529caaFc02B297e7225ff8372/info.json b/blockchains/smartchain/assets/0xF520f5D709dCD40529caaFc02B297e7225ff8372/info.json index 5f65c31382a58..94b1bf245a8e3 100644 --- a/blockchains/smartchain/assets/0xF520f5D709dCD40529caaFc02B297e7225ff8372/info.json +++ b/blockchains/smartchain/assets/0xF520f5D709dCD40529caaFc02B297e7225ff8372/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/top1st/Moonwilly-Protocal/" }, { - "name": "twitter", - "url": "https://twitter.com/Moonwillycoin" + "name": "x", + "url": "https://x.com/Moonwillycoin" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0xF54b94eA21e1Da5d51eF00fd4502225e5394F874/info.json b/blockchains/smartchain/assets/0xF54b94eA21e1Da5d51eF00fd4502225e5394F874/info.json new file mode 100644 index 0000000000000..09b0130303cff --- /dev/null +++ b/blockchains/smartchain/assets/0xF54b94eA21e1Da5d51eF00fd4502225e5394F874/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Russell 2000 Value ETF (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "IWNon is the Ondo Tokenized version of the iShares Russell 2000 Value ETF, giving tokenholders economic exposure similar to holding IWN and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xf54b94ea21e1da5d51ef00fd4502225e5394f874", + "type": "BEP20", + "symbol": "IWNon", + "decimals": 18, + "status": "active", + "id": "0xF54b94eA21e1Da5d51eF00fd4502225e5394F874", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-russell-2000-value-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF54b94eA21e1Da5d51eF00fd4502225e5394F874/logo.png b/blockchains/smartchain/assets/0xF54b94eA21e1Da5d51eF00fd4502225e5394F874/logo.png new file mode 100644 index 0000000000000..8adf578853fa6 Binary files /dev/null and b/blockchains/smartchain/assets/0xF54b94eA21e1Da5d51eF00fd4502225e5394F874/logo.png differ diff --git a/blockchains/smartchain/assets/0xF563E86e461dE100CfCfD8b65dAA542d3d4B0550/info.json b/blockchains/smartchain/assets/0xF563E86e461dE100CfCfD8b65dAA542d3d4B0550/info.json new file mode 100644 index 0000000000000..965ada6711034 --- /dev/null +++ b/blockchains/smartchain/assets/0xF563E86e461dE100CfCfD8b65dAA542d3d4B0550/info.json @@ -0,0 +1,21 @@ +{ + "name": "COCO COIN", + "website": "https://cococoin.tech/", + "description": "CoCo Coin is a comprehensive SocialFi blockchain project based on the BSC chain. By leveraging unique social media interaction mechanisms and diverse investment opportunities, it has created a vibrant and creative social ecosystem.", + "explorer": "https://bscscan.com/token/0xf563e86e461de100cfcfd8b65daa542d3d4b0550", + "type": "BEP20", + "symbol": "COCO", + "decimals": 18, + "status": "active", + "id": "0xF563E86e461dE100CfCfD8b65dAA542d3d4B0550", + "links": [ + { + "name": "x", + "url": "https://x.com/cococoinbsc" + }, + { + "name": "telegram", + "url": "https://t.me/cococoinfi" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF563E86e461dE100CfCfD8b65dAA542d3d4B0550/logo.png b/blockchains/smartchain/assets/0xF563E86e461dE100CfCfD8b65dAA542d3d4B0550/logo.png new file mode 100644 index 0000000000000..3049a5b136375 Binary files /dev/null and b/blockchains/smartchain/assets/0xF563E86e461dE100CfCfD8b65dAA542d3d4B0550/logo.png differ diff --git a/blockchains/smartchain/assets/0xF574Ba6bde97cC09784e616ebAeD432b4e896B49/info.json b/blockchains/smartchain/assets/0xF574Ba6bde97cC09784e616ebAeD432b4e896B49/info.json new file mode 100644 index 0000000000000..9319a44cc35e3 --- /dev/null +++ b/blockchains/smartchain/assets/0xF574Ba6bde97cC09784e616ebAeD432b4e896B49/info.json @@ -0,0 +1,36 @@ +{ + "name": "VLaunch", + "type": "BEP20", + "symbol": "VPAD", + "decimals": 18, + "website": "https://www.vlaunch.com", + "description": "The Launchpad where Leading Influencers and Projects meet.", + "explorer": "https://bscscan.com/token/0xF574Ba6bde97cC09784e616ebAeD432b4e896B49", + "status": "active", + "id": "0xF574Ba6bde97cC09784e616ebAeD432b4e896B49", + "links": [ + { + "name": "x", + "url": "https://x.com/VLaunchCOM" + }, + { + "name": "telegram", + "url": "https://t.me/VLaunchCOMToken" + }, + { + "name": "telegram_news", + "url": "https://t.me/codenamevalerts" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vlaunch" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vlaunch" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF574Ba6bde97cC09784e616ebAeD432b4e896B49/logo.png b/blockchains/smartchain/assets/0xF574Ba6bde97cC09784e616ebAeD432b4e896B49/logo.png new file mode 100644 index 0000000000000..77ba6a3a72535 Binary files /dev/null and b/blockchains/smartchain/assets/0xF574Ba6bde97cC09784e616ebAeD432b4e896B49/logo.png differ diff --git a/blockchains/smartchain/assets/0xF588B85874C7837519063D6d9a7DD9a362AD8888/info.json b/blockchains/smartchain/assets/0xF588B85874C7837519063D6d9a7DD9a362AD8888/info.json new file mode 100644 index 0000000000000..696342b84507c --- /dev/null +++ b/blockchains/smartchain/assets/0xF588B85874C7837519063D6d9a7DD9a362AD8888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tеthеr", + "type": "BEP20", + "symbol": "FAKE UЅⅮΤ", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xF588B85874C7837519063D6d9a7DD9a362AD8888", + "explorer": "https://bscscan.com/token/0xF588B85874C7837519063D6d9a7DD9a362AD8888", + "status": "spam", + "id": "0xF588B85874C7837519063D6d9a7DD9a362AD8888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF5d8A096CcCb31b9D7bcE5afE812BE23e3D4690d/info.json b/blockchains/smartchain/assets/0xF5d8A096CcCb31b9D7bcE5afE812BE23e3D4690d/info.json index 536d7b9959abc..ce76a496db571 100644 --- a/blockchains/smartchain/assets/0xF5d8A096CcCb31b9D7bcE5afE812BE23e3D4690d/info.json +++ b/blockchains/smartchain/assets/0xF5d8A096CcCb31b9D7bcE5afE812BE23e3D4690d/info.json @@ -18,8 +18,8 @@ "url": "https://t.me/happyfanstoken" }, { - "name": "twitter", - "url": "https://twitter.com/HappyFansToken" + "name": "x", + "url": "https://x.com/HappyFansToken" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0xF65C1C0478eFDe3c19b49EcBE7ACc57BB6B1D713/info.json b/blockchains/smartchain/assets/0xF65C1C0478eFDe3c19b49EcBE7ACc57BB6B1D713/info.json index 99f0f9ca3ef8b..9c0275202bc6e 100644 --- a/blockchains/smartchain/assets/0xF65C1C0478eFDe3c19b49EcBE7ACc57BB6B1D713/info.json +++ b/blockchains/smartchain/assets/0xF65C1C0478eFDe3c19b49EcBE7ACc57BB6B1D713/info.json @@ -18,8 +18,8 @@ "url": "https://apeswap.gitbook.io/apeswap-finance/" }, { - "name": "twitter", - "url": "https://twitter.com/ape_swap" + "name": "x", + "url": "https://x.com/ape_swap" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xF6Cb4ad242BaB681EfFc5dE40f7c8FF921a12d63/info.json b/blockchains/smartchain/assets/0xF6Cb4ad242BaB681EfFc5dE40f7c8FF921a12d63/info.json index b43381c109b19..50c46ad112f42 100644 --- a/blockchains/smartchain/assets/0xF6Cb4ad242BaB681EfFc5dE40f7c8FF921a12d63/info.json +++ b/blockchains/smartchain/assets/0xF6Cb4ad242BaB681EfFc5dE40f7c8FF921a12d63/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/Centric-Org" }, { - "name": "twitter", - "url": "https://twitter.com/centricrise" + "name": "x", + "url": "https://x.com/centricrise" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1/info.json b/blockchains/smartchain/assets/0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1/info.json new file mode 100644 index 0000000000000..44f897fe0efc7 --- /dev/null +++ b/blockchains/smartchain/assets/0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1/info.json @@ -0,0 +1,15 @@ +{ + "name": "Schwab International Equity xStock", + "type": "BEP20", + "symbol": "SCHFx", + "decimals": 18, + "description": "Schwab International Equity xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1", + "status": "active", + "id": "0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1/logo.png b/blockchains/smartchain/assets/0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1/logo.png new file mode 100644 index 0000000000000..d55ca6edb40ba Binary files /dev/null and b/blockchains/smartchain/assets/0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1/logo.png differ diff --git a/blockchains/smartchain/assets/0xF6a22B0593df74F218027A2d8b7953c9b4542AA1/info.json b/blockchains/smartchain/assets/0xF6a22B0593df74F218027A2d8b7953c9b4542AA1/info.json index 7059c50f6a603..2c1882c5943c0 100644 --- a/blockchains/smartchain/assets/0xF6a22B0593df74F218027A2d8b7953c9b4542AA1/info.json +++ b/blockchains/smartchain/assets/0xF6a22B0593df74F218027A2d8b7953c9b4542AA1/info.json @@ -10,8 +10,8 @@ "id": "0xF6a22B0593df74F218027A2d8b7953c9b4542AA1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/LinkSync_Tech" + "name": "x", + "url": "https://x.com/LinkSync_Tech" }, { "name": "telegram", @@ -51,4 +51,4 @@ "nft", "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF700D4c708C2be1463E355F337603183D20E0808/info.json b/blockchains/smartchain/assets/0xF700D4c708C2be1463E355F337603183D20E0808/info.json index a724a92b42c3a..dff0adfd4891d 100644 --- a/blockchains/smartchain/assets/0xF700D4c708C2be1463E355F337603183D20E0808/info.json +++ b/blockchains/smartchain/assets/0xF700D4c708C2be1463E355F337603183D20E0808/info.json @@ -10,8 +10,8 @@ "id": "0xF700D4c708C2be1463E355F337603183D20E0808", "links": [ { - "name": "twitter", - "url": "https://twitter.com/OuterRingMMO" + "name": "x", + "url": "https://x.com/OuterRingMMO" }, { "name": "github", @@ -49,4 +49,4 @@ "tags": [ "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF70c14AD93905f39eE3Df2D4fB92b87c31D779e0/info.json b/blockchains/smartchain/assets/0xF70c14AD93905f39eE3Df2D4fB92b87c31D779e0/info.json index dee699d0943d3..53e17299a252b 100644 --- a/blockchains/smartchain/assets/0xF70c14AD93905f39eE3Df2D4fB92b87c31D779e0/info.json +++ b/blockchains/smartchain/assets/0xF70c14AD93905f39eE3Df2D4fB92b87c31D779e0/info.json @@ -10,8 +10,8 @@ "id": "0xF70c14AD93905f39eE3Df2D4fB92b87c31D779e0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/minicardano" + "name": "x", + "url": "https://x.com/minicardano" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xF73d8276C15Ce56b2f4AeE5920e62F767A7f3aEA/info.json b/blockchains/smartchain/assets/0xF73d8276C15Ce56b2f4AeE5920e62F767A7f3aEA/info.json index c191c896c3c8f..4b44f811031a3 100644 --- a/blockchains/smartchain/assets/0xF73d8276C15Ce56b2f4AeE5920e62F767A7f3aEA/info.json +++ b/blockchains/smartchain/assets/0xF73d8276C15Ce56b2f4AeE5920e62F767A7f3aEA/info.json @@ -10,8 +10,8 @@ "id": "0xF73d8276C15Ce56b2f4AeE5920e62F767A7f3aEA", "links": [ { - "name": "twitter", - "url": "https://twitter.com/OfficialTCGCoin/" + "name": "x", + "url": "https://x.com/OfficialTCGCoin/" }, { "name": "telegram", @@ -30,4 +30,4 @@ "url": "https://facebook.com/TCGCoinOfficial/" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF75031f6501ab9041D2BBE8FD1129bF2c5e66a8d/info.json b/blockchains/smartchain/assets/0xF75031f6501ab9041D2BBE8FD1129bF2c5e66a8d/info.json new file mode 100644 index 0000000000000..6c5c7cdfcf337 --- /dev/null +++ b/blockchains/smartchain/assets/0xF75031f6501ab9041D2BBE8FD1129bF2c5e66a8d/info.json @@ -0,0 +1,17 @@ +{ + "name": "Baby Captain BNB", + "symbol": "BCaptain", + "website": "https://babycaptainbnb.fun", + "description": "From the creator of Captain BNB comes the next evolution of meme coins. A viral community, a new chapter, and a true community takeover.", + "explorer": "https://bscscan.com/token/0xf75031f6501ab9041d2bbe8fd1129bf2c5e66a8d", + "decimals": 18, + "status": "active", + "id": "0xF75031f6501ab9041D2BBE8FD1129bF2c5e66a8d", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/babycapbnb" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF75031f6501ab9041D2BBE8FD1129bF2c5e66a8d/logo.png b/blockchains/smartchain/assets/0xF75031f6501ab9041D2BBE8FD1129bF2c5e66a8d/logo.png new file mode 100644 index 0000000000000..6aedaa7f94ebe Binary files /dev/null and b/blockchains/smartchain/assets/0xF75031f6501ab9041D2BBE8FD1129bF2c5e66a8d/logo.png differ diff --git a/blockchains/smartchain/assets/0xF750A26EB0aCf95556e8529E72eD530f3b60f348/info.json b/blockchains/smartchain/assets/0xF750A26EB0aCf95556e8529E72eD530f3b60f348/info.json index 3713b139fb77b..c5db4c0a4fb4f 100644 --- a/blockchains/smartchain/assets/0xF750A26EB0aCf95556e8529E72eD530f3b60f348/info.json +++ b/blockchains/smartchain/assets/0xF750A26EB0aCf95556e8529E72eD530f3b60f348/info.json @@ -10,8 +10,8 @@ "id": "0xF750A26EB0aCf95556e8529E72eD530f3b60f348", "links": [ { - "name": "twitter", - "url": "https://twitter.com/GNT_token" + "name": "x", + "url": "https://x.com/GNT_token" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xF78D2e7936F5Fe18308A3B2951A93b6c4a41F5e2/info.json b/blockchains/smartchain/assets/0xF78D2e7936F5Fe18308A3B2951A93b6c4a41F5e2/info.json new file mode 100644 index 0000000000000..ba766f1abd4b9 --- /dev/null +++ b/blockchains/smartchain/assets/0xF78D2e7936F5Fe18308A3B2951A93b6c4a41F5e2/info.json @@ -0,0 +1,36 @@ +{ + "name": "Binance-Peg MANTRA", + "website": "http://mantradao.com", + "description": "MANTRA DAO leverages the wisdom of the crowd to create a community-governed, transparent, and decentralized ecosystem for Web 3.0", + "explorer": "https://bscscan.com/token/0xf78d2e7936f5fe18308a3b2951a93b6c4a41f5e2", + "type": "BEP20", + "symbol": "OM", + "decimals": 18, + "status": "active", + "id": "0xF78D2e7936F5Fe18308A3B2951A93b6c4a41F5e2", + "links": [ + { + "name": "github", + "url": "https://github.com/Mantradao" + }, + { + "name": "x", + "url": "https://x.com/MANTRADAO" + }, + { + "name": "telegram", + "url": "https://t.me/MANTRADAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mantra-dao/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mantra-dao/" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF78D2e7936F5Fe18308A3B2951A93b6c4a41F5e2/logo.png b/blockchains/smartchain/assets/0xF78D2e7936F5Fe18308A3B2951A93b6c4a41F5e2/logo.png new file mode 100644 index 0000000000000..2c15abc9469bc Binary files /dev/null and b/blockchains/smartchain/assets/0xF78D2e7936F5Fe18308A3B2951A93b6c4a41F5e2/logo.png differ diff --git a/blockchains/smartchain/assets/0xF7A086BFf67DeD4Aa785e8a0a81D4345d9bb4740/info.json b/blockchains/smartchain/assets/0xF7A086BFf67DeD4Aa785e8a0a81D4345d9bb4740/info.json index 9eafdbc6fe39a..eca9313f5c9fc 100644 --- a/blockchains/smartchain/assets/0xF7A086BFf67DeD4Aa785e8a0a81D4345d9bb4740/info.json +++ b/blockchains/smartchain/assets/0xF7A086BFf67DeD4Aa785e8a0a81D4345d9bb4740/info.json @@ -21,8 +21,8 @@ "url": "https://coinmarketcap.com/currencies/metasafemoon/" }, { - "name": "twitter", - "url": "https://twitter.com/MetaSafeMoon" + "name": "x", + "url": "https://x.com/MetaSafeMoon" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF7d6243b937136d432AdBc643f311b5A9436b0B0/info.json b/blockchains/smartchain/assets/0xF7d6243b937136d432AdBc643f311b5A9436b0B0/info.json new file mode 100644 index 0000000000000..3216270f91193 --- /dev/null +++ b/blockchains/smartchain/assets/0xF7d6243b937136d432AdBc643f311b5A9436b0B0/info.json @@ -0,0 +1,17 @@ +{ + "name": "snake", + "symbol": "snake", + "type": "BEP20", + "decimals": 18, + "description": "Snakes have rich connotations and symbolic meanings in Chinese culture.", + "website": "https://snakebsc.vip/", + "explorer": "https://bscscan.com/token/0xf7d6243b937136d432adbc643f311b5a9436b0b0", + "status": "active", + "id": "0xF7d6243b937136d432AdBc643f311b5A9436b0B0", + "links": [ + { + "name": "x", + "url": "https://x.com/Mls568Snake" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF7d6243b937136d432AdBc643f311b5A9436b0B0/logo.png b/blockchains/smartchain/assets/0xF7d6243b937136d432AdBc643f311b5A9436b0B0/logo.png new file mode 100644 index 0000000000000..fde074ac02e10 Binary files /dev/null and b/blockchains/smartchain/assets/0xF7d6243b937136d432AdBc643f311b5A9436b0B0/logo.png differ diff --git a/blockchains/smartchain/assets/0xF8228D64435B55687157a5C9b132642FE04aC381/info.json b/blockchains/smartchain/assets/0xF8228D64435B55687157a5C9b132642FE04aC381/info.json new file mode 100644 index 0000000000000..bf2a16bc2994e --- /dev/null +++ b/blockchains/smartchain/assets/0xF8228D64435B55687157a5C9b132642FE04aC381/info.json @@ -0,0 +1,20 @@ +{ + "name": "NuScale Power Corporation xStock", + "type": "BEP20", + "symbol": "SMRx", + "decimals": 18, + "description": "NuScale Power Corporation xStock (SMRx) is a tracker certificate issued as a freely transferable token on selected blockchains. SMRx tracks the price of NuScale Power Corporation. SMRx is designed to give eligible investors regulatory-compliant access to the stock price of NuScale Power Corporation, whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0xF8228D64435B55687157a5C9b132642FE04aC381", + "status": "active", + "id": "0xF8228D64435B55687157a5C9b132642FE04aC381", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF8228D64435B55687157a5C9b132642FE04aC381/logo.png b/blockchains/smartchain/assets/0xF8228D64435B55687157a5C9b132642FE04aC381/logo.png new file mode 100644 index 0000000000000..bfb784434f60b Binary files /dev/null and b/blockchains/smartchain/assets/0xF8228D64435B55687157a5C9b132642FE04aC381/logo.png differ diff --git a/blockchains/smartchain/assets/0xF8584516b7d2c156C763C874d6813E06b57e4cB5/info.json b/blockchains/smartchain/assets/0xF8584516b7d2c156C763C874d6813E06b57e4cB5/info.json new file mode 100644 index 0000000000000..36ede4dcc671f --- /dev/null +++ b/blockchains/smartchain/assets/0xF8584516b7d2c156C763C874d6813E06b57e4cB5/info.json @@ -0,0 +1,24 @@ +{ + "name": "Bnb Tiger Inu", + "type": "BEP20", + "symbol": "BNBTiger", + "decimals": 9, + "website": "https://bnbtiger.top/", + "description": "BNBTiger! Fierce Firm Victory BNBTiger is the king of beasts. They are the symbol of victory and strength.", + "explorer": "https://bscscan.com/token/0xf8584516b7d2c156c763c874d6813e06b57e4cb5", + "status": "active", + "id": "0xF8584516b7d2c156C763C874d6813E06b57e4cB5", + "links": [ + { + "name": "x", + "url": "https://x.com/bnbtigerinu" + }, + { + "name": "telegram", + "url": "https://t.me/BNBTigerEN" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF8584516b7d2c156C763C874d6813E06b57e4cB5/logo.png b/blockchains/smartchain/assets/0xF8584516b7d2c156C763C874d6813E06b57e4cB5/logo.png new file mode 100644 index 0000000000000..589aee446694e Binary files /dev/null and b/blockchains/smartchain/assets/0xF8584516b7d2c156C763C874d6813E06b57e4cB5/logo.png differ diff --git a/blockchains/smartchain/assets/0xF86AF2FBcf6A0479B21b1d3a4Af3893F63207FE7/info.json b/blockchains/smartchain/assets/0xF86AF2FBcf6A0479B21b1d3a4Af3893F63207FE7/info.json new file mode 100644 index 0000000000000..e73a70073a6bb --- /dev/null +++ b/blockchains/smartchain/assets/0xF86AF2FBcf6A0479B21b1d3a4Af3893F63207FE7/info.json @@ -0,0 +1,17 @@ +{ + "name": "GOUT", + "type": "BEP20", + "symbol": "GOUT", + "decimals": 18, + "description": "Join the world's most promising MEME community and explore a new world where fun and wealth are intertwined", + "website": "https://goutchain.com/", + "explorer": "https://bscscan.com/token/0xf86af2fbcf6a0479b21b1d3a4af3893f63207fe7", + "id": "0xF86AF2FBcf6A0479B21b1d3a4Af3893F63207FE7", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/GOUT_NEWS" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF86AF2FBcf6A0479B21b1d3a4Af3893F63207FE7/logo.png b/blockchains/smartchain/assets/0xF86AF2FBcf6A0479B21b1d3a4Af3893F63207FE7/logo.png new file mode 100644 index 0000000000000..cd8e72d745cb7 Binary files /dev/null and b/blockchains/smartchain/assets/0xF86AF2FBcf6A0479B21b1d3a4Af3893F63207FE7/logo.png differ diff --git a/blockchains/smartchain/assets/0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD/info.json b/blockchains/smartchain/assets/0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD/info.json index 68e9dd65fd487..1913c73f5341d 100644 --- a/blockchains/smartchain/assets/0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD/info.json +++ b/blockchains/smartchain/assets/0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD/info.json @@ -1,5 +1,5 @@ { - "name": "BNB pegged ChainLink", + "name": "Chainlink", "website": "https://chain.link", "description": "BNB pegged ChainLink (LINK BEP20) is a token issued by Binance on Smart Chain; its price is pegged to ChainLink (LINK ERC20) at a ratio of 1:1.", "explorer": "https://bscscan.com/token/0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD", diff --git a/blockchains/smartchain/assets/0xF911450D38669139158C71CD9ED0d2f1524f8888/info.json b/blockchains/smartchain/assets/0xF911450D38669139158C71CD9ED0d2f1524f8888/info.json new file mode 100644 index 0000000000000..28694ad142eca --- /dev/null +++ b/blockchains/smartchain/assets/0xF911450D38669139158C71CD9ED0d2f1524f8888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether USD", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xF911450D38669139158C71CD9ED0d2f1524f8888", + "explorer": "https://bscscan.com/token/0xF911450D38669139158C71CD9ED0d2f1524f8888", + "status": "spam", + "id": "0xF911450D38669139158C71CD9ED0d2f1524f8888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF912d3001CAf6DC4ADD366A62Cc9115B4303c9A9/info.json b/blockchains/smartchain/assets/0xF912d3001CAf6DC4ADD366A62Cc9115B4303c9A9/info.json index 704ca9009ac2b..f0d89cdaa8293 100644 --- a/blockchains/smartchain/assets/0xF912d3001CAf6DC4ADD366A62Cc9115B4303c9A9/info.json +++ b/blockchains/smartchain/assets/0xF912d3001CAf6DC4ADD366A62Cc9115B4303c9A9/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/VenusProtocol/venus-protocol" }, { - "name": "twitter", - "url": "https://twitter.com/VenusProtocol" + "name": "x", + "url": "https://x.com/VenusProtocol" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xF93f6b686f4A6557151455189a9173735D668154/info.json b/blockchains/smartchain/assets/0xF93f6b686f4A6557151455189a9173735D668154/info.json index 214faa8a582b4..16227d255c14c 100644 --- a/blockchains/smartchain/assets/0xF93f6b686f4A6557151455189a9173735D668154/info.json +++ b/blockchains/smartchain/assets/0xF93f6b686f4A6557151455189a9173735D668154/info.json @@ -10,8 +10,8 @@ "id": "0xF93f6b686f4A6557151455189a9173735D668154", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Gamersenft" + "name": "x", + "url": "https://x.com/Gamersenft" }, { "name": "telegram", @@ -43,4 +43,4 @@ "gamefi", "metaverse" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF94CA0B303e52d68b63626Bed7f680fa4DC3f779/info.json b/blockchains/smartchain/assets/0xF94CA0B303e52d68b63626Bed7f680fa4DC3f779/info.json index e05ef0467f79b..2f4a7f8ffe422 100644 --- a/blockchains/smartchain/assets/0xF94CA0B303e52d68b63626Bed7f680fa4DC3f779/info.json +++ b/blockchains/smartchain/assets/0xF94CA0B303e52d68b63626Bed7f680fa4DC3f779/info.json @@ -10,8 +10,8 @@ "id": "0xF94CA0B303e52d68b63626Bed7f680fa4DC3f779", "links": [ { - "name": "twitter", - "url": "https://twitter.com/@underdogdefi" + "name": "x", + "url": "https://x.com/@underdogdefi" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e/info.json b/blockchains/smartchain/assets/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e/info.json new file mode 100644 index 0000000000000..1780ad520b1f6 --- /dev/null +++ b/blockchains/smartchain/assets/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e/info.json @@ -0,0 +1,24 @@ +{ + "name": "Novo Nordisk tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Novo Nordisk xStock (NVOx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. NVOx tracks the price of Novo Nordisk A/S, (the underlying). NVOx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Novo Nordisk A/S, whilst maintaining the benefits of blockchain technology. Novo Nordisk is a leading global healthcare company, founded in 1923 and headquartered in Denmark.", + "explorer": "https://bscscan.com/token/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e", + "type": "BEP20", + "symbol": "NVOX", + "decimals": 18, + "status": "active", + "id": "0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/novo-nordisk-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e/logo.png b/blockchains/smartchain/assets/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e/logo.png new file mode 100644 index 0000000000000..c866fd6193ce8 Binary files /dev/null and b/blockchains/smartchain/assets/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e/logo.png differ diff --git a/blockchains/smartchain/assets/0xF952Fc3ca7325Cc27D15885d37117676d25BfdA6/info.json b/blockchains/smartchain/assets/0xF952Fc3ca7325Cc27D15885d37117676d25BfdA6/info.json index 8689c12e87a0b..88241acd30687 100644 --- a/blockchains/smartchain/assets/0xF952Fc3ca7325Cc27D15885d37117676d25BfdA6/info.json +++ b/blockchains/smartchain/assets/0xF952Fc3ca7325Cc27D15885d37117676d25BfdA6/info.json @@ -10,8 +10,8 @@ "id": "0xF952Fc3ca7325Cc27D15885d37117676d25BfdA6", "links": [ { - "name": "twitter", - "url": "https://twitter.com/FinanceGoose" + "name": "x", + "url": "https://x.com/FinanceGoose" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xF95a5532D67C944dfa7EDDD2f8c358Fe0dc7FAc2/info.json b/blockchains/smartchain/assets/0xF95a5532D67C944dfa7EDDD2f8c358Fe0dc7FAc2/info.json new file mode 100644 index 0000000000000..9f9378d34ddef --- /dev/null +++ b/blockchains/smartchain/assets/0xF95a5532D67C944dfa7EDDD2f8c358Fe0dc7FAc2/info.json @@ -0,0 +1,21 @@ +{ + "name": "MARBLEX on BNB", + "type": "BEP20", + "symbol": "MBX", + "decimals": 18, + "website": "https://www.marblex.io/en", + "description": "MARBLEX, under the slogan “Fun Comes First,” uses blockchain technology to build a next-generation gaming and content ecosystem that prioritizes fun and immersion.", + "explorer": "https://bscscan.com/token/0xf95a5532d67c944dfa7eddd2f8c358fe0dc7fac2", + "status": "active", + "id": "0xF95a5532D67C944dfa7EDDD2f8c358Fe0dc7FAc2", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/marblex/" + }, + { + "name": "x", + "url": "https://x.com/MARBLEXofficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF95a5532D67C944dfa7EDDD2f8c358Fe0dc7FAc2/logo.png b/blockchains/smartchain/assets/0xF95a5532D67C944dfa7EDDD2f8c358Fe0dc7FAc2/logo.png new file mode 100644 index 0000000000000..fe8f75a7ff7a3 Binary files /dev/null and b/blockchains/smartchain/assets/0xF95a5532D67C944dfa7EDDD2f8c358Fe0dc7FAc2/logo.png differ diff --git a/blockchains/smartchain/assets/0xF98B89825233808CD37706A53D2b4Ae3e359d442/info.json b/blockchains/smartchain/assets/0xF98B89825233808CD37706A53D2b4Ae3e359d442/info.json new file mode 100644 index 0000000000000..0883c7aad3eed --- /dev/null +++ b/blockchains/smartchain/assets/0xF98B89825233808CD37706A53D2b4Ae3e359d442/info.json @@ -0,0 +1,24 @@ +{ + "name": "Galaxy Digital (Ondo Tokenized)", + "type": "BEP20", + "symbol": "GLXYon", + "decimals": 18, + "description": "GLXYon is the Ondo Tokenized version of Galaxy Digital, giving tokenholders economic exposure similar to holding GLXY and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xF98B89825233808CD37706A53D2b4Ae3e359d442", + "status": "active", + "id": "0xF98B89825233808CD37706A53D2b4Ae3e359d442", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/galaxy-digital-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF98B89825233808CD37706A53D2b4Ae3e359d442/logo.png b/blockchains/smartchain/assets/0xF98B89825233808CD37706A53D2b4Ae3e359d442/logo.png new file mode 100644 index 0000000000000..4be71cd2de123 Binary files /dev/null and b/blockchains/smartchain/assets/0xF98B89825233808CD37706A53D2b4Ae3e359d442/logo.png differ diff --git a/blockchains/smartchain/assets/0xF98b660AdF2ed7d9d9D9dAACC2fb0CAce4F21835/info.json b/blockchains/smartchain/assets/0xF98b660AdF2ed7d9d9D9dAACC2fb0CAce4F21835/info.json index d0b2052d6da94..d11c92761f1ba 100644 --- a/blockchains/smartchain/assets/0xF98b660AdF2ed7d9d9D9dAACC2fb0CAce4F21835/info.json +++ b/blockchains/smartchain/assets/0xF98b660AdF2ed7d9d9D9dAACC2fb0CAce4F21835/info.json @@ -10,8 +10,8 @@ "id": "0xF98b660AdF2ed7d9d9D9dAACC2fb0CAce4F21835", "links": [ { - "name": "twitter", - "url": "https://twitter.com/symbiosis_fi" + "name": "x", + "url": "https://x.com/symbiosis_fi" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xF9d6DDF44016953dBf7aB135A0F64d7A41870EDE/info.json b/blockchains/smartchain/assets/0xF9d6DDF44016953dBf7aB135A0F64d7A41870EDE/info.json index 20ba9177b2628..7de9b9c85da02 100644 --- a/blockchains/smartchain/assets/0xF9d6DDF44016953dBf7aB135A0F64d7A41870EDE/info.json +++ b/blockchains/smartchain/assets/0xF9d6DDF44016953dBf7aB135A0F64d7A41870EDE/info.json @@ -10,8 +10,8 @@ "id": "0xF9d6DDF44016953dBf7aB135A0F64d7A41870EDE", "links": [ { - "name": "twitter", - "url": "https://twitter.com/dogeflokiglobal" + "name": "x", + "url": "https://x.com/dogeflokiglobal" }, { "name": "whitepaper", diff --git a/blockchains/smartchain/assets/0xFACE67C5CE2bb48c29779b0Dede5360cC9ef5fd5/info.json b/blockchains/smartchain/assets/0xFACE67C5CE2bb48c29779b0Dede5360cC9ef5fd5/info.json index 6c16486d83cd5..84ebf9ea1bb40 100644 --- a/blockchains/smartchain/assets/0xFACE67C5CE2bb48c29779b0Dede5360cC9ef5fd5/info.json +++ b/blockchains/smartchain/assets/0xFACE67C5CE2bb48c29779b0Dede5360cC9ef5fd5/info.json @@ -10,8 +10,8 @@ "id": "0xFACE67C5CE2bb48c29779b0Dede5360cC9ef5fd5", "links": [ { - "name": "twitter", - "url": "https://twitter.com/AffinityBSC" + "name": "x", + "url": "https://x.com/AffinityBSC" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0xFAd8E46123D7b4e77496491769C167FF894d2ACB/info.json b/blockchains/smartchain/assets/0xFAd8E46123D7b4e77496491769C167FF894d2ACB/info.json index c7c90b0619310..345dd154afa10 100644 --- a/blockchains/smartchain/assets/0xFAd8E46123D7b4e77496491769C167FF894d2ACB/info.json +++ b/blockchains/smartchain/assets/0xFAd8E46123D7b4e77496491769C167FF894d2ACB/info.json @@ -10,8 +10,8 @@ "id": "0xFAd8E46123D7b4e77496491769C167FF894d2ACB", "links": [ { - "name": "twitter", - "url": "https://twitter.com/foxfinancebsc" + "name": "x", + "url": "https://x.com/foxfinancebsc" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xFBE22D27B6e153244882fD7bdfE7C6109918281B/info.json b/blockchains/smartchain/assets/0xFBE22D27B6e153244882fD7bdfE7C6109918281B/info.json new file mode 100644 index 0000000000000..31625096c4c65 --- /dev/null +++ b/blockchains/smartchain/assets/0xFBE22D27B6e153244882fD7bdfE7C6109918281B/info.json @@ -0,0 +1,28 @@ +{ + "name": "Bullish (Ondo Tokenized)", + "type": "BEP20", + "symbol": "BLSHon", + "decimals": 18, + "description": "BLSHon is the Ondo Tokenized version of Bullish, giving tokenholders economic exposure similar to holding BLSH and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xFBE22D27B6e153244882fD7bdfE7C6109918281B", + "status": "active", + "id": "0xFBE22D27B6e153244882fD7bdfE7C6109918281B", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bullish-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bullish-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFBE22D27B6e153244882fD7bdfE7C6109918281B/logo.png b/blockchains/smartchain/assets/0xFBE22D27B6e153244882fD7bdfE7C6109918281B/logo.png new file mode 100644 index 0000000000000..78152f377fdc7 Binary files /dev/null and b/blockchains/smartchain/assets/0xFBE22D27B6e153244882fD7bdfE7C6109918281B/logo.png differ diff --git a/blockchains/smartchain/assets/0xFBb4F2f342c6DaaB63Ab85b0226716C4D1e26F36/info.json b/blockchains/smartchain/assets/0xFBb4F2f342c6DaaB63Ab85b0226716C4D1e26F36/info.json index e30408302eb98..ab195f32a03a5 100644 --- a/blockchains/smartchain/assets/0xFBb4F2f342c6DaaB63Ab85b0226716C4D1e26F36/info.json +++ b/blockchains/smartchain/assets/0xFBb4F2f342c6DaaB63Ab85b0226716C4D1e26F36/info.json @@ -10,8 +10,8 @@ "id": "0xFBb4F2f342c6DaaB63Ab85b0226716C4D1e26F36", "links": [ { - "name": "twitter", - "url": "https://twitter.com/coin_racer" + "name": "x", + "url": "https://x.com/coin_racer" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xFBdF0366F800CC79d6663DA26bc0BF21FB455Aa6/info.json b/blockchains/smartchain/assets/0xFBdF0366F800CC79d6663DA26bc0BF21FB455Aa6/info.json new file mode 100644 index 0000000000000..aed97d4ace2cb --- /dev/null +++ b/blockchains/smartchain/assets/0xFBdF0366F800CC79d6663DA26bc0BF21FB455Aa6/info.json @@ -0,0 +1,28 @@ +{ + "name": "Amgen (Ondo Tokenized)", + "type": "BEP20", + "symbol": "AMGNon", + "decimals": 18, + "description": "AMGNon is the Ondo Tokenized version of Amgen, giving tokenholders economic exposure similar to holding AMGN and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xFBdF0366F800CC79d6663DA26bc0BF21FB455Aa6", + "status": "active", + "id": "0xFBdF0366F800CC79d6663DA26bc0BF21FB455Aa6", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/amgen-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/amgen-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFBdF0366F800CC79d6663DA26bc0BF21FB455Aa6/logo.png b/blockchains/smartchain/assets/0xFBdF0366F800CC79d6663DA26bc0BF21FB455Aa6/logo.png new file mode 100644 index 0000000000000..5716d513e17d8 Binary files /dev/null and b/blockchains/smartchain/assets/0xFBdF0366F800CC79d6663DA26bc0BF21FB455Aa6/logo.png differ diff --git a/blockchains/smartchain/assets/0xFC2067E3e6a289C205151d96Ef67A032f339566D/info.json b/blockchains/smartchain/assets/0xFC2067E3e6a289C205151d96Ef67A032f339566D/info.json new file mode 100644 index 0000000000000..7371460924d29 --- /dev/null +++ b/blockchains/smartchain/assets/0xFC2067E3e6a289C205151d96Ef67A032f339566D/info.json @@ -0,0 +1,28 @@ +{ + "name": "Invesco DB Commodity Index Tracking Fund (Ondo Tokenized)", + "type": "BEP20", + "symbol": "DBCon", + "decimals": 18, + "description": "DBCon is the Ondo Tokenized version of the Invesco DB Commodity Index Tracking Fund, giving tokenholders economic exposure similar to holding DBC and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xFC2067E3e6a289C205151d96Ef67A032f339566D", + "status": "active", + "id": "0xFC2067E3e6a289C205151d96Ef67A032f339566D", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/invesco-db-commodity-index-tracking-fund-ondo-tokenized-etf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/invesco-db-commodity-index-tokenized-fund-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFC2067E3e6a289C205151d96Ef67A032f339566D/logo.png b/blockchains/smartchain/assets/0xFC2067E3e6a289C205151d96Ef67A032f339566D/logo.png new file mode 100644 index 0000000000000..4d148ee9a083d Binary files /dev/null and b/blockchains/smartchain/assets/0xFC2067E3e6a289C205151d96Ef67A032f339566D/logo.png differ diff --git a/blockchains/smartchain/assets/0xFC206f429d55c71cb7294EfF40c6ADb20dC21508/info.json b/blockchains/smartchain/assets/0xFC206f429d55c71cb7294EfF40c6ADb20dC21508/info.json index 0abdfbc394504..f1dc45ed55ae7 100644 --- a/blockchains/smartchain/assets/0xFC206f429d55c71cb7294EfF40c6ADb20dC21508/info.json +++ b/blockchains/smartchain/assets/0xFC206f429d55c71cb7294EfF40c6ADb20dC21508/info.json @@ -10,8 +10,8 @@ "id": "0xFC206f429d55c71cb7294EfF40c6ADb20dC21508", "links": [ { - "name": "twitter", - "url": "https://twitter.com/dehub_official" + "name": "x", + "url": "https://x.com/dehub_official" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xFC3dA4A1b6faDaB364039525dD2AB7c0c16521cd/info.json b/blockchains/smartchain/assets/0xFC3dA4A1b6faDaB364039525dD2AB7c0c16521cd/info.json index 4646fbaefef4d..971693f107aa0 100644 --- a/blockchains/smartchain/assets/0xFC3dA4A1b6faDaB364039525dD2AB7c0c16521cd/info.json +++ b/blockchains/smartchain/assets/0xFC3dA4A1b6faDaB364039525dD2AB7c0c16521cd/info.json @@ -46,8 +46,8 @@ "url": "https://coingecko.com/en/coins/mrweb-finance" }, { - "name": "twitter", - "url": "https://twitter.com/MrwebFinance" + "name": "x", + "url": "https://x.com/MrwebFinance" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0xFC646D0B564bf191B3d3adF2B620a792E485e6Da/info.json b/blockchains/smartchain/assets/0xFC646D0B564bf191B3d3adF2B620a792E485e6Da/info.json index 295c4d92c8fa6..d1c4a28d4af4e 100644 --- a/blockchains/smartchain/assets/0xFC646D0B564bf191B3d3adF2B620a792E485e6Da/info.json +++ b/blockchains/smartchain/assets/0xFC646D0B564bf191B3d3adF2B620a792E485e6Da/info.json @@ -10,8 +10,8 @@ "id": "0xFC646D0B564bf191B3d3adF2B620a792E485e6Da", "links": [ { - "name": "twitter", - "url": "https://twitter.com/HalfPizza3" + "name": "x", + "url": "https://x.com/HalfPizza3" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xFEbfA339E44c28E2aa9E62Ea1027C9CB4e378605/info.json b/blockchains/smartchain/assets/0xFEbfA339E44c28E2aa9E62Ea1027C9CB4e378605/info.json new file mode 100644 index 0000000000000..676cdcb71f71f --- /dev/null +++ b/blockchains/smartchain/assets/0xFEbfA339E44c28E2aa9E62Ea1027C9CB4e378605/info.json @@ -0,0 +1,17 @@ +{ + "name": "Non-Playable Coin", + "type": "BEP20", + "symbol": "NPC", + "decimals": 18, + "website": "https://nonplayablecoin.io/", + "description": "A hive mind of unique and special individuals. $NPC is a meme fungible token (MFT) tradable on both Uniswap and NFT exchanges.", + "explorer": "https://bscscan.com/token/0xFEbfA339E44c28E2aa9E62Ea1027C9CB4e378605", + "status": "active", + "id": "0xFEbfA339E44c28E2aa9E62Ea1027C9CB4e378605", + "links": [ + { + "name": "x", + "url": "https://x.com/NonPlayableCoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFEbfA339E44c28E2aa9E62Ea1027C9CB4e378605/logo.png b/blockchains/smartchain/assets/0xFEbfA339E44c28E2aa9E62Ea1027C9CB4e378605/logo.png new file mode 100644 index 0000000000000..79704ce1c829e Binary files /dev/null and b/blockchains/smartchain/assets/0xFEbfA339E44c28E2aa9E62Ea1027C9CB4e378605/logo.png differ diff --git a/blockchains/smartchain/assets/0xFF4A68eE05086b5F5b5713f3781A3DBc45de8888/info.json b/blockchains/smartchain/assets/0xFF4A68eE05086b5F5b5713f3781A3DBc45de8888/info.json new file mode 100644 index 0000000000000..f294ed6c275fc --- /dev/null +++ b/blockchains/smartchain/assets/0xFF4A68eE05086b5F5b5713f3781A3DBc45de8888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether USD", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xFF4A68eE05086b5F5b5713f3781A3DBc45de8888", + "explorer": "https://bscscan.com/token/0xFF4A68eE05086b5F5b5713f3781A3DBc45de8888", + "status": "spam", + "id": "0xFF4A68eE05086b5F5b5713f3781A3DBc45de8888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFFEfa817f367A3f7D7910447b2d43588383E7777/info.json b/blockchains/smartchain/assets/0xFFEfa817f367A3f7D7910447b2d43588383E7777/info.json new file mode 100644 index 0000000000000..70e21f352ea2d --- /dev/null +++ b/blockchains/smartchain/assets/0xFFEfa817f367A3f7D7910447b2d43588383E7777/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE JETMAX", + "type": "BEP20", + "symbol": "FAKE JET", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xFFEfa817f367A3f7D7910447b2d43588383E7777", + "explorer": "https://bscscan.com/token/0xFFEfa817f367A3f7D7910447b2d43588383E7777", + "status": "spam", + "id": "0xFFEfa817f367A3f7D7910447b2d43588383E7777" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFa17b330bCC4e7F3E2456996d89A5a54AB044831/info.json b/blockchains/smartchain/assets/0xFa17b330bCC4e7F3E2456996d89A5a54AB044831/info.json index 04b7b94fcd16e..7c2b29abe73d0 100644 --- a/blockchains/smartchain/assets/0xFa17b330bCC4e7F3E2456996d89A5a54AB044831/info.json +++ b/blockchains/smartchain/assets/0xFa17b330bCC4e7F3E2456996d89A5a54AB044831/info.json @@ -10,8 +10,8 @@ "id": "0xFa17b330bCC4e7F3E2456996d89A5a54AB044831", "links": [ { - "name": "twitter", - "url": "https://twitter.com/cardence_io" + "name": "x", + "url": "https://x.com/cardence_io" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xFa363022816aBf82f18a9C2809dCd2BB393F6AC5/info.json b/blockchains/smartchain/assets/0xFa363022816aBf82f18a9C2809dCd2BB393F6AC5/info.json index 4a60352ef3535..fe9d4d591654f 100644 --- a/blockchains/smartchain/assets/0xFa363022816aBf82f18a9C2809dCd2BB393F6AC5/info.json +++ b/blockchains/smartchain/assets/0xFa363022816aBf82f18a9C2809dCd2BB393F6AC5/info.json @@ -10,8 +10,8 @@ "id": "0xFa363022816aBf82f18a9C2809dCd2BB393F6AC5", "links": [ { - "name": "twitter", - "url": "https://twitter.com/HoneyFarmFi" + "name": "x", + "url": "https://x.com/HoneyFarmFi" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xFbC37a1865DD46091A45221F575062A3b8b2e676/info.json b/blockchains/smartchain/assets/0xFbC37a1865DD46091A45221F575062A3b8b2e676/info.json index 39e5b92cccaa7..280cdd7b559a2 100644 --- a/blockchains/smartchain/assets/0xFbC37a1865DD46091A45221F575062A3b8b2e676/info.json +++ b/blockchains/smartchain/assets/0xFbC37a1865DD46091A45221F575062A3b8b2e676/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/hyperboost/" }, { - "name": "twitter", - "url": "https://twitter.com/HyperBoostBSC" + "name": "x", + "url": "https://x.com/HyperBoostBSC" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFbDB1Fa163a0e8d90DD88104F44C093882A71914/info.json b/blockchains/smartchain/assets/0xFbDB1Fa163a0e8d90DD88104F44C093882A71914/info.json index bb9d7cf3886fd..ac80b3ba2bab5 100644 --- a/blockchains/smartchain/assets/0xFbDB1Fa163a0e8d90DD88104F44C093882A71914/info.json +++ b/blockchains/smartchain/assets/0xFbDB1Fa163a0e8d90DD88104F44C093882A71914/info.json @@ -10,8 +10,8 @@ "id": "0xFbDB1Fa163a0e8d90DD88104F44C093882A71914", "links": [ { - "name": "twitter", - "url": "https://twitter.com/frztoken" + "name": "x", + "url": "https://x.com/frztoken" }, { "name": "github", @@ -33,4 +33,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFc263946439b0d802bF4C5a6fCd34E2885259f91/info.json b/blockchains/smartchain/assets/0xFc263946439b0d802bF4C5a6fCd34E2885259f91/info.json new file mode 100644 index 0000000000000..a87f971ac2cc9 --- /dev/null +++ b/blockchains/smartchain/assets/0xFc263946439b0d802bF4C5a6fCd34E2885259f91/info.json @@ -0,0 +1,28 @@ +{ + "name": "KLA (Ondo Tokenized)", + "type": "BEP20", + "symbol": "KLACon", + "decimals": 18, + "description": "KLACon is the Ondo Tokenized version of KLA, giving tokenholders economic exposure similar to holding KLAC and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xFc263946439b0d802bF4C5a6fCd34E2885259f91", + "status": "active", + "id": "0xFc263946439b0d802bF4C5a6fCd34E2885259f91", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kla-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kla-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFc263946439b0d802bF4C5a6fCd34E2885259f91/logo.png b/blockchains/smartchain/assets/0xFc263946439b0d802bF4C5a6fCd34E2885259f91/logo.png new file mode 100644 index 0000000000000..484e882db5b2b Binary files /dev/null and b/blockchains/smartchain/assets/0xFc263946439b0d802bF4C5a6fCd34E2885259f91/logo.png differ diff --git a/blockchains/smartchain/assets/0xFceB31A79F71AC9CBDCF853519c1b12D379EdC46/info.json b/blockchains/smartchain/assets/0xFceB31A79F71AC9CBDCF853519c1b12D379EdC46/info.json new file mode 100644 index 0000000000000..f6343ff13ce9a --- /dev/null +++ b/blockchains/smartchain/assets/0xFceB31A79F71AC9CBDCF853519c1b12D379EdC46/info.json @@ -0,0 +1,25 @@ +{ + "name": "Lista DAO", + "symbol": "LISTA", + "type": "BEP20", + "decimals": 18, + "description": "Lista DAO is a liquid staking and decentralized stablecoin protocol. Users can undergo staking and liquid staking on Lista, as well as borrow lisUSD against a variety of decentralized collateral.", + "website": "https://lista.org/", + "explorer": "https://bscscan.com/token/0xFceB31A79F71AC9CBDCF853519c1b12D379EdC46", + "status": "active", + "id": "0xFceB31A79F71AC9CBDCF853519c1b12D379EdC46", + "links": [ + { + "name": "telegram", + "url": "https://t.me/ListaDAO" + }, + { + "name": "x", + "url": "https://x.com/LISTA_DAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lista-dao/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFceB31A79F71AC9CBDCF853519c1b12D379EdC46/logo.png b/blockchains/smartchain/assets/0xFceB31A79F71AC9CBDCF853519c1b12D379EdC46/logo.png new file mode 100644 index 0000000000000..06a2827afe20f Binary files /dev/null and b/blockchains/smartchain/assets/0xFceB31A79F71AC9CBDCF853519c1b12D379EdC46/logo.png differ diff --git a/blockchains/smartchain/assets/0xFd431CB76965cF80c6FCec011a273B46df23EB04/info.json b/blockchains/smartchain/assets/0xFd431CB76965cF80c6FCec011a273B46df23EB04/info.json index 5767120314aaa..4009bee5f0b5f 100644 --- a/blockchains/smartchain/assets/0xFd431CB76965cF80c6FCec011a273B46df23EB04/info.json +++ b/blockchains/smartchain/assets/0xFd431CB76965cF80c6FCec011a273B46df23EB04/info.json @@ -10,8 +10,8 @@ "id": "0xFd431CB76965cF80c6FCec011a273B46df23EB04", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Cocopad_BSC" + "name": "x", + "url": "https://x.com/Cocopad_BSC" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xFd54E565e6de7509B07CDBa5769178045F212530/info.json b/blockchains/smartchain/assets/0xFd54E565e6de7509B07CDBa5769178045F212530/info.json new file mode 100644 index 0000000000000..ccaec1316aae8 --- /dev/null +++ b/blockchains/smartchain/assets/0xFd54E565e6de7509B07CDBa5769178045F212530/info.json @@ -0,0 +1,17 @@ +{ + "name": "MAO", + "symbol": "MAO", + "website": "https://www.maobnb.com", + "description": "MAO is the ultimate unfazed cat – totally unbothered, giving zero f's no matter what’s thrown his way.", + "explorer": "https://bscscan.com/token/0xfd54e565e6de7509b07cdba5769178045f212530", + "decimals": 18, + "status": "active", + "id": "0xFd54E565e6de7509B07CDBa5769178045F212530", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/MaoBNBChain" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFd54E565e6de7509B07CDBa5769178045F212530/logo.png b/blockchains/smartchain/assets/0xFd54E565e6de7509B07CDBa5769178045F212530/logo.png new file mode 100644 index 0000000000000..63883bc4f457d Binary files /dev/null and b/blockchains/smartchain/assets/0xFd54E565e6de7509B07CDBa5769178045F212530/logo.png differ diff --git a/blockchains/smartchain/assets/0xFd7B3A77848f1C2D67E05E54d78d174a0C850335/info.json b/blockchains/smartchain/assets/0xFd7B3A77848f1C2D67E05E54d78d174a0C850335/info.json index ab555eec50d1b..ab09866f84a19 100644 --- a/blockchains/smartchain/assets/0xFd7B3A77848f1C2D67E05E54d78d174a0C850335/info.json +++ b/blockchains/smartchain/assets/0xFd7B3A77848f1C2D67E05E54d78d174a0C850335/info.json @@ -1,5 +1,5 @@ { - "name": "BNB pegged Ontology Token", + "name": "Ontology", "website": "https://ont.io", "description": "BNB pegged Ontology Token (ONT BEP20) is a token issued by Binance on Smart Chain; its price is pegged to Ontology Token (ONT) at a ratio of 1:1.", "explorer": "https://bscscan.com/token/0xFd7B3A77848f1C2D67E05E54d78d174a0C850335", diff --git a/blockchains/smartchain/assets/0xFdb624a9a617820260e5B3CB024C85da0441e6A8/info.json b/blockchains/smartchain/assets/0xFdb624a9a617820260e5B3CB024C85da0441e6A8/info.json new file mode 100644 index 0000000000000..d4ae877611b5f --- /dev/null +++ b/blockchains/smartchain/assets/0xFdb624a9a617820260e5B3CB024C85da0441e6A8/info.json @@ -0,0 +1,14 @@ +{ + "name": "Queen YI", + "type": "BEP20", + "symbol": "QueenYI", + "decimals": 18, + "website": "https://four.meme/token/0xFdb624a9a617820260e5B3CB024C85da0441e6A8", + "description": "Queen YI", + "explorer": "https://bscscan.com/token/0xFdb624a9a617820260e5B3CB024C85da0441e6A8", + "status": "active", + "id": "0xFdb624a9a617820260e5B3CB024C85da0441e6A8", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFdb624a9a617820260e5B3CB024C85da0441e6A8/logo.png b/blockchains/smartchain/assets/0xFdb624a9a617820260e5B3CB024C85da0441e6A8/logo.png new file mode 100644 index 0000000000000..5e337750366f1 Binary files /dev/null and b/blockchains/smartchain/assets/0xFdb624a9a617820260e5B3CB024C85da0441e6A8/logo.png differ diff --git a/blockchains/smartchain/assets/0xFdc66A08B0d0Dc44c17bbd471B88f49F50CdD20F/info.json b/blockchains/smartchain/assets/0xFdc66A08B0d0Dc44c17bbd471B88f49F50CdD20F/info.json new file mode 100644 index 0000000000000..f9f444bd47ba9 --- /dev/null +++ b/blockchains/smartchain/assets/0xFdc66A08B0d0Dc44c17bbd471B88f49F50CdD20F/info.json @@ -0,0 +1,25 @@ +{ + "name": "SmarDex Token", + "type": "BEP20", + "symbol": "SDEX", + "decimals": 18, + "description": "SmarDex introduces USDN, a synthetic dollar that is set to replace traditional, centralized synthetic dollars like Ethena, which are becoming obsolete. USDN operates as a fully decentralized, on-chain solution designed to provide stability and reliability in the fast-paced crypto environment.", + "website": "https://smardex.io/", + "explorer": "https://bscscan.com/token/0xfdc66a08b0d0dc44c17bbd471b88f49f50cdd20f", + "id": "0xFdc66A08B0d0Dc44c17bbd471B88f49F50CdD20F", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/SmarDex" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/smardex/" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFdc66A08B0d0Dc44c17bbd471B88f49F50CdD20F/logo.png b/blockchains/smartchain/assets/0xFdc66A08B0d0Dc44c17bbd471B88f49F50CdD20F/logo.png new file mode 100644 index 0000000000000..d193ae876d17c Binary files /dev/null and b/blockchains/smartchain/assets/0xFdc66A08B0d0Dc44c17bbd471B88f49F50CdD20F/logo.png differ diff --git a/blockchains/smartchain/assets/0xFe2EAE06264d71C1e2985b7AafE19d7E288C8888/info.json b/blockchains/smartchain/assets/0xFe2EAE06264d71C1e2985b7AafE19d7E288C8888/info.json new file mode 100644 index 0000000000000..e2e558d667710 --- /dev/null +++ b/blockchains/smartchain/assets/0xFe2EAE06264d71C1e2985b7AafE19d7E288C8888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tеthеr", + "type": "BEP20", + "symbol": "FAKE ՍSDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xFe2EAE06264d71C1e2985b7AafE19d7E288C8888", + "explorer": "https://bscscan.com/token/0xFe2EAE06264d71C1e2985b7AafE19d7E288C8888", + "status": "spam", + "id": "0xFe2EAE06264d71C1e2985b7AafE19d7E288C8888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFeA292e5ea4510881bDB840E3CeC63aBd43f936f/info.json b/blockchains/smartchain/assets/0xFeA292e5ea4510881bDB840E3CeC63aBd43f936f/info.json new file mode 100644 index 0000000000000..112a6825e65c0 --- /dev/null +++ b/blockchains/smartchain/assets/0xFeA292e5ea4510881bDB840E3CeC63aBd43f936f/info.json @@ -0,0 +1,17 @@ +{ + "name": "Cornucopias", + "website": "https://www.cornucopias.io/", + "description": "Cornucopias 'The Island' is a massive Play-To-Earn, Build-To-Earn, and Learn-To-Earn blockchain based game where players can be rewarded with and/or own land, properties and other NFT based assets with real world value all by playing games in a fun and safe metaverse.", + "explorer": "https://bscscan.com/token/0xfea292e5ea4510881bdb840e3cec63abd43f936f", + "type": "BEP20", + "symbol": "COPI", + "decimals": 18, + "status": "active", + "id": "0xFeA292e5ea4510881bDB840E3CeC63aBd43f936f", + "links": [ + { + "name": "x", + "url": "https://x.com/cornucopiasgame" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFeA292e5ea4510881bDB840E3CeC63aBd43f936f/logo.png b/blockchains/smartchain/assets/0xFeA292e5ea4510881bDB840E3CeC63aBd43f936f/logo.png new file mode 100644 index 0000000000000..66f09f859656c Binary files /dev/null and b/blockchains/smartchain/assets/0xFeA292e5ea4510881bDB840E3CeC63aBd43f936f/logo.png differ diff --git a/blockchains/smartchain/assets/0xFeea0bDd3D07eb6FE305938878C0caDBFa169042/info.json b/blockchains/smartchain/assets/0xFeea0bDd3D07eb6FE305938878C0caDBFa169042/info.json index 93041076e2d80..e3d71c097ca1e 100644 --- a/blockchains/smartchain/assets/0xFeea0bDd3D07eb6FE305938878C0caDBFa169042/info.json +++ b/blockchains/smartchain/assets/0xFeea0bDd3D07eb6FE305938878C0caDBFa169042/info.json @@ -2,10 +2,27 @@ "name": "8PAY Network", "website": "https://8pay.network", "description": "DEFI platform for automatic trustless crypto payments.", - "explorer": "https://bscscan.com/token/0xfeea0bdd3d07eb6fe305938878c0cadbfa169042", + "explorer": "https://bscscan.com/token/0xFeea0bDd3D07eb6FE305938878C0caDBFa169042", "type": "BEP20", "symbol": "8PAY", "decimals": 18, - "status": "active", - "id": "0xFeea0bDd3D07eb6FE305938878C0caDBFa169042" + "status": "abandoned", + "id": "0xFeea0bDd3D07eb6FE305938878C0caDBFa169042", + "links": [ + { + "name": "x", + "url": "https://x.com/8Pay_network" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/8pay/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/8pay" + } + ], + "tags": [ + "defi" + ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFeea0bDd3D07eb6FE305938878C0caDBFa169042/logo.png b/blockchains/smartchain/assets/0xFeea0bDd3D07eb6FE305938878C0caDBFa169042/logo.png deleted file mode 100644 index 1ededcea0243b..0000000000000 Binary files a/blockchains/smartchain/assets/0xFeea0bDd3D07eb6FE305938878C0caDBFa169042/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xFf7d6A96ae471BbCD7713aF9CB1fEeB16cf56B41/info.json b/blockchains/smartchain/assets/0xFf7d6A96ae471BbCD7713aF9CB1fEeB16cf56B41/info.json new file mode 100644 index 0000000000000..cb43c9a209d6e --- /dev/null +++ b/blockchains/smartchain/assets/0xFf7d6A96ae471BbCD7713aF9CB1fEeB16cf56B41/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bedrock", + "type": "BEP20", + "symbol": "BR", + "decimals": 18, + "website": "https://www.bedrockdao.com/", + "description": "Introducing the Bedrock DAO, made for you, governed by you, and rewards go to you. Made up of the $BR & $veBR tokens, you can join the DAO now and earn", + "explorer": "https://bscscan.com/token/0xff7d6a96ae471bbcd7713af9cb1feeb16cf56b41", + "status": "active", + "id": "0xFf7d6A96ae471BbCD7713aF9CB1fEeB16cf56B41", + "links": [ + { + "name": "telegram", + "url": "https://t.me/Bedrock_Official" + }, + { + "name": "x", + "url": "https://x.com/Bedrock_DeFi" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFf7d6A96ae471BbCD7713aF9CB1fEeB16cf56B41/logo.png b/blockchains/smartchain/assets/0xFf7d6A96ae471BbCD7713aF9CB1fEeB16cf56B41/logo.png new file mode 100644 index 0000000000000..cc69383c220e5 Binary files /dev/null and b/blockchains/smartchain/assets/0xFf7d6A96ae471BbCD7713aF9CB1fEeB16cf56B41/logo.png differ diff --git a/blockchains/smartchain/assets/0xFfB3eDd21be33d5e78C9e0C2A275b3Fd42670D67/info.json b/blockchains/smartchain/assets/0xFfB3eDd21be33d5e78C9e0C2A275b3Fd42670D67/info.json index fc8aa572ef09c..c9190475edaf0 100644 --- a/blockchains/smartchain/assets/0xFfB3eDd21be33d5e78C9e0C2A275b3Fd42670D67/info.json +++ b/blockchains/smartchain/assets/0xFfB3eDd21be33d5e78C9e0C2A275b3Fd42670D67/info.json @@ -11,8 +11,8 @@ "id": "0xFfB3eDd21be33d5e78C9e0C2A275b3Fd42670D67", "links": [ { - "name": "twitter", - "url": "https://twitter.com/STAKD_finance" + "name": "x", + "url": "https://x.com/STAKD_finance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xFfBa7529AC181c2Ee1844548e6D7061c9A597dF4/info.json b/blockchains/smartchain/assets/0xFfBa7529AC181c2Ee1844548e6D7061c9A597dF4/info.json new file mode 100644 index 0000000000000..3c0a556cf2bc6 --- /dev/null +++ b/blockchains/smartchain/assets/0xFfBa7529AC181c2Ee1844548e6D7061c9A597dF4/info.json @@ -0,0 +1,17 @@ + { + "name": "Ternoa", + "type": "BEP20", + "symbol": "CAPS", + "decimals": 18, + "website": "https://www.ternoa.com", + "description": "TERNOA is a blockchain designed to provide secured, decentralized, and long-term data transmission. TERNOA relies upon the use of NFTs as vehicles to store encrypted data across long periods of time, and built-in oracles to trigger data releases to third parties.", + "explorer": "https://bscscan.com/token/0xffba7529ac181c2ee1844548e6d7061c9a597df4", + "status": "active", + "id": "0xFfBa7529AC181c2Ee1844548e6D7061c9A597dF4", + "links": [ + { + "name": "x", + "url": "https://x.com/ternoa_" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFfBa7529AC181c2Ee1844548e6D7061c9A597dF4/logo.png b/blockchains/smartchain/assets/0xFfBa7529AC181c2Ee1844548e6D7061c9A597dF4/logo.png new file mode 100644 index 0000000000000..9ceff157da41d Binary files /dev/null and b/blockchains/smartchain/assets/0xFfBa7529AC181c2Ee1844548e6D7061c9A597dF4/logo.png differ diff --git a/blockchains/smartchain/assets/0xa026Ad2ceDa16Ca5FC28fd3C72f99e2C332c8a26/info.json b/blockchains/smartchain/assets/0xa026Ad2ceDa16Ca5FC28fd3C72f99e2C332c8a26/info.json index 915d789317d0a..0f0bf362c7047 100644 --- a/blockchains/smartchain/assets/0xa026Ad2ceDa16Ca5FC28fd3C72f99e2C332c8a26/info.json +++ b/blockchains/smartchain/assets/0xa026Ad2ceDa16Ca5FC28fd3C72f99e2C332c8a26/info.json @@ -10,8 +10,8 @@ "id": "0xa026Ad2ceDa16Ca5FC28fd3C72f99e2C332c8a26", "links": [ { - "name": "twitter", - "url": "https://twitter.com/XcademyOfficial" + "name": "x", + "url": "https://x.com/XcademyOfficial" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xa03110800894b3CcF8723D991d80875561F96777/info.json b/blockchains/smartchain/assets/0xa03110800894b3CcF8723D991d80875561F96777/info.json index 0842c8e0b90b1..abf045343e5fb 100644 --- a/blockchains/smartchain/assets/0xa03110800894b3CcF8723D991d80875561F96777/info.json +++ b/blockchains/smartchain/assets/0xa03110800894b3CcF8723D991d80875561F96777/info.json @@ -10,8 +10,8 @@ "id": "0xa03110800894b3CcF8723D991d80875561F96777", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BITGAMEVERSE" + "name": "x", + "url": "https://x.com/BITGAMEVERSE" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0xa042d20aBE198E516d885Da52a633B6D44F339B9/info.json b/blockchains/smartchain/assets/0xa042d20aBE198E516d885Da52a633B6D44F339B9/info.json index f32775c2df6d2..45619f4e2aa1c 100644 --- a/blockchains/smartchain/assets/0xa042d20aBE198E516d885Da52a633B6D44F339B9/info.json +++ b/blockchains/smartchain/assets/0xa042d20aBE198E516d885Da52a633B6D44F339B9/info.json @@ -10,8 +10,8 @@ "id": "0xa042d20aBE198E516d885Da52a633B6D44F339B9", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Mustangtoken" + "name": "x", + "url": "https://x.com/Mustangtoken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xa09699fc0cbb1F85128450A0ff6a3c4d3A7E7B9B/info.json b/blockchains/smartchain/assets/0xa09699fc0cbb1F85128450A0ff6a3c4d3A7E7B9B/info.json new file mode 100644 index 0000000000000..00f42f794bfdc --- /dev/null +++ b/blockchains/smartchain/assets/0xa09699fc0cbb1F85128450A0ff6a3c4d3A7E7B9B/info.json @@ -0,0 +1,28 @@ +{ + "name": "Opendoor Technologies (Ondo Tokenized)", + "type": "BEP20", + "symbol": "OPENon", + "decimals": 18, + "description": "OPENon is the Ondo Tokenized version of Opendoor Technologies, giving tokenholders economic exposure similar to holding OPEN and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xa09699fc0cbb1F85128450A0ff6a3c4d3A7E7B9B", + "status": "active", + "id": "0xa09699fc0cbb1F85128450A0ff6a3c4d3A7E7B9B", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/opendoor-technologies-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/opendoor-technologies-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa09699fc0cbb1F85128450A0ff6a3c4d3A7E7B9B/logo.png b/blockchains/smartchain/assets/0xa09699fc0cbb1F85128450A0ff6a3c4d3A7E7B9B/logo.png new file mode 100644 index 0000000000000..c1a48336c9237 Binary files /dev/null and b/blockchains/smartchain/assets/0xa09699fc0cbb1F85128450A0ff6a3c4d3A7E7B9B/logo.png differ diff --git a/blockchains/smartchain/assets/0xa0A9961b7477D1a530f06a1ee805d5E532e73d97/info.json b/blockchains/smartchain/assets/0xa0A9961b7477D1a530f06a1ee805d5E532e73d97/info.json index 07a48273fe1de..49cc3bff20f4a 100644 --- a/blockchains/smartchain/assets/0xa0A9961b7477D1a530f06a1ee805d5E532e73d97/info.json +++ b/blockchains/smartchain/assets/0xa0A9961b7477D1a530f06a1ee805d5E532e73d97/info.json @@ -14,8 +14,8 @@ "url": "https://medium.com/ariadne-project" }, { - "name": "twitter", - "url": "https://twitter.com/ariadne_finance" + "name": "x", + "url": "https://x.com/ariadne_finance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xa0Af324cC24ad0060bcE52dE359aFfD6deCb5cF2/info.json b/blockchains/smartchain/assets/0xa0Af324cC24ad0060bcE52dE359aFfD6deCb5cF2/info.json new file mode 100644 index 0000000000000..f5237db8e7376 --- /dev/null +++ b/blockchains/smartchain/assets/0xa0Af324cC24ad0060bcE52dE359aFfD6deCb5cF2/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDT", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "website": "https://bscscan.com/address/0xa0af324cc24ad0060bce52de359affd6decb5cf2", + "description": "FAKE USDT", + "explorer": "https://bscscan.com/token/0xa0Af324cC24ad0060bcE52dE359aFfD6deCb5cF2", + "status": "spam", + "id": "0xa0Af324cC24ad0060bcE52dE359aFfD6deCb5cF2" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa0CC3A881AEf241d6cB3B7Db3168BD26094560BE/info.json b/blockchains/smartchain/assets/0xa0CC3A881AEf241d6cB3B7Db3168BD26094560BE/info.json index 1c9048c3bf7fe..741e991b38d8b 100644 --- a/blockchains/smartchain/assets/0xa0CC3A881AEf241d6cB3B7Db3168BD26094560BE/info.json +++ b/blockchains/smartchain/assets/0xa0CC3A881AEf241d6cB3B7Db3168BD26094560BE/info.json @@ -10,8 +10,8 @@ "id": "0xa0CC3A881AEf241d6cB3B7Db3168BD26094560BE", "links": [ { - "name": "twitter", - "url": "https://twitter.com/CryptoInu_ABCD" + "name": "x", + "url": "https://x.com/CryptoInu_ABCD" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xa0e7566D693D015B59F2FD0e7fd26a8aC5Ca03dE/info.json b/blockchains/smartchain/assets/0xa0e7566D693D015B59F2FD0e7fd26a8aC5Ca03dE/info.json index 21a78ea321964..b9e54b44029da 100644 --- a/blockchains/smartchain/assets/0xa0e7566D693D015B59F2FD0e7fd26a8aC5Ca03dE/info.json +++ b/blockchains/smartchain/assets/0xa0e7566D693D015B59F2FD0e7fd26a8aC5Ca03dE/info.json @@ -10,8 +10,8 @@ "id": "0xa0e7566D693D015B59F2FD0e7fd26a8aC5Ca03dE", "links": [ { - "name": "twitter", - "url": "https://twitter.com/bsccatboy" + "name": "x", + "url": "https://x.com/bsccatboy" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0xa1832f7F4e534aE557f9B5AB76dE54B1873e498B/info.json b/blockchains/smartchain/assets/0xa1832f7F4e534aE557f9B5AB76dE54B1873e498B/info.json new file mode 100644 index 0000000000000..9a1878f4acef7 --- /dev/null +++ b/blockchains/smartchain/assets/0xa1832f7F4e534aE557f9B5AB76dE54B1873e498B/info.json @@ -0,0 +1,17 @@ +{ + "name": "CreatorBid", + "website": "https://creator.bid/agents", + "description": "CreatorBid is a thriving Agent Ecosystem that empowers everyone to launch, grow, and monetize AI Agents on-chain and across social platforms.", + "explorer": "https://bscscan.com/token/0xa1832f7f4e534ae557f9b5ab76de54b1873e498b", + "type": "BEP20", + "symbol": "BID", + "decimals": 18, + "status": "active", + "id": "0xa1832f7F4e534aE557f9B5AB76dE54B1873e498B", + "links": [ + { + "name": "x", + "url": "https://x.com/CreatorBid" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa1832f7F4e534aE557f9B5AB76dE54B1873e498B/logo.png b/blockchains/smartchain/assets/0xa1832f7F4e534aE557f9B5AB76dE54B1873e498B/logo.png new file mode 100644 index 0000000000000..988d81d3bf7b4 Binary files /dev/null and b/blockchains/smartchain/assets/0xa1832f7F4e534aE557f9B5AB76dE54B1873e498B/logo.png differ diff --git a/blockchains/smartchain/assets/0xa1FD60c51C0BDAC1Ff5BB6067A24d61441E39569/info.json b/blockchains/smartchain/assets/0xa1FD60c51C0BDAC1Ff5BB6067A24d61441E39569/info.json index 66a47367f6dba..0c12f8aa5f66c 100644 --- a/blockchains/smartchain/assets/0xa1FD60c51C0BDAC1Ff5BB6067A24d61441E39569/info.json +++ b/blockchains/smartchain/assets/0xa1FD60c51C0BDAC1Ff5BB6067A24d61441E39569/info.json @@ -10,8 +10,8 @@ "id": "0xa1FD60c51C0BDAC1Ff5BB6067A24d61441E39569", "links": [ { - "name": "twitter", - "url": "https://twitter.com/safe_nebula" + "name": "x", + "url": "https://x.com/safe_nebula" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xa260E12d2B924cb899AE80BB58123ac3fEE1E2F0/info.json b/blockchains/smartchain/assets/0xa260E12d2B924cb899AE80BB58123ac3fEE1E2F0/info.json index 74e900ea07054..c2f4782945802 100644 --- a/blockchains/smartchain/assets/0xa260E12d2B924cb899AE80BB58123ac3fEE1E2F0/info.json +++ b/blockchains/smartchain/assets/0xa260E12d2B924cb899AE80BB58123ac3fEE1E2F0/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/HookedProtocolOfficial" }, { - "name": "twitter", - "url": "https://twitter.com/HookedProtocol" + "name": "x", + "url": "https://x.com/HookedProtocol" }, { "name": "discord", diff --git a/blockchains/smartchain/assets/0xa28c865d1922332D338fA1E213Cd4Ef055BC4444/info.json b/blockchains/smartchain/assets/0xa28c865d1922332D338fA1E213Cd4Ef055BC4444/info.json new file mode 100644 index 0000000000000..77d0b8a2d15ac --- /dev/null +++ b/blockchains/smartchain/assets/0xa28c865d1922332D338fA1E213Cd4Ef055BC4444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDKG", + "type": "BEP20", + "symbol": "FAKE USDKG", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xa28c865d1922332D338fA1E213Cd4Ef055BC4444", + "explorer": "https://bscscan.com/token/0xa28c865d1922332D338fA1E213Cd4Ef055BC4444", + "status": "spam", + "id": "0xa28c865d1922332D338fA1E213Cd4Ef055BC4444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa2B726B1145A4773F68593CF171187d8EBe4d495/logo.png b/blockchains/smartchain/assets/0xa2B726B1145A4773F68593CF171187d8EBe4d495/logo.png index f3a521dc1391a..e9a2fe6b9a9cb 100644 Binary files a/blockchains/smartchain/assets/0xa2B726B1145A4773F68593CF171187d8EBe4d495/logo.png and b/blockchains/smartchain/assets/0xa2B726B1145A4773F68593CF171187d8EBe4d495/logo.png differ diff --git a/blockchains/smartchain/assets/0xa2C17A6Fd0aFE27afa2630A7528bC673089E6b8d/info.json b/blockchains/smartchain/assets/0xa2C17A6Fd0aFE27afa2630A7528bC673089E6b8d/info.json new file mode 100644 index 0000000000000..6843fe7d6baee --- /dev/null +++ b/blockchains/smartchain/assets/0xa2C17A6Fd0aFE27afa2630A7528bC673089E6b8d/info.json @@ -0,0 +1,21 @@ +{ + "name": "CZ THE GOAT", + "type": "BEP20", + "symbol": "CZGOAT", + "decimals": 9, + "website": "https://czthegoat.io/", + "description": "CZ the G.O.A.T is meme token in Honor of CZ. The next opportunity was yesterday, the next best one is today, keep building said by the goat.", + "explorer": "https://bscscan.com/token/0xa2C17A6Fd0aFE27afa2630A7528bC673089E6b8d", + "status": "active", + "id": "0xa2C17A6Fd0aFE27afa2630A7528bC673089E6b8d", + "links": [ + { + "name": "x", + "url": "https://x.com/czthegoat" + }, + { + "name": "telegram", + "url": "https://t.me/cz_thegoat" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa2C17A6Fd0aFE27afa2630A7528bC673089E6b8d/logo.png b/blockchains/smartchain/assets/0xa2C17A6Fd0aFE27afa2630A7528bC673089E6b8d/logo.png new file mode 100644 index 0000000000000..4cc976d6f47aa Binary files /dev/null and b/blockchains/smartchain/assets/0xa2C17A6Fd0aFE27afa2630A7528bC673089E6b8d/logo.png differ diff --git a/blockchains/smartchain/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/info.json b/blockchains/smartchain/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/info.json new file mode 100644 index 0000000000000..ed36e2d3c9f56 --- /dev/null +++ b/blockchains/smartchain/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Binance Beacon ETH", + "type": "BEP20", + "symbol": "wBETH", + "decimals": 18, + "website": "https://www.binance.com/en/wbeth", + "description": "wBETH is a reward-bearing ETH liquid staking token offered by Binance. Each wBETH represents 1 BETH (1:1 to staked ETH) plus all of its accrued ETH2.0 staking rewards starting from when wBETH's conversion rate was initialized at 1:1 on Apr 27th 2023 00:00 (UTC+0).", + "explorer": "https://bscscan.com/token/0xa2E3356610840701BDf5611a53974510Ae27E2e1", + "status": "active", + "id": "0xa2E3356610840701BDf5611a53974510Ae27E2e1", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-beacon-eth" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wrapped-beacon-eth" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/logo.png b/blockchains/smartchain/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/logo.png new file mode 100644 index 0000000000000..832596160ae8d Binary files /dev/null and b/blockchains/smartchain/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/logo.png differ diff --git a/blockchains/smartchain/assets/0xa321fC1171EB85498faD47D3d127368eBa70265C/info.json b/blockchains/smartchain/assets/0xa321fC1171EB85498faD47D3d127368eBa70265C/info.json index d2390e6acbfa8..51dfc5160e99a 100644 --- a/blockchains/smartchain/assets/0xa321fC1171EB85498faD47D3d127368eBa70265C/info.json +++ b/blockchains/smartchain/assets/0xa321fC1171EB85498faD47D3d127368eBa70265C/info.json @@ -10,8 +10,8 @@ "id": "0xa321fC1171EB85498faD47D3d127368eBa70265C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/safedrive19" + "name": "x", + "url": "https://x.com/safedrive19" }, { "name": "discord", diff --git a/blockchains/smartchain/assets/0xa3d80275E300237a62D3431C26d52f185584cC1B/info.json b/blockchains/smartchain/assets/0xa3d80275E300237a62D3431C26d52f185584cC1B/info.json index db6353759f92d..6e2288957245a 100644 --- a/blockchains/smartchain/assets/0xa3d80275E300237a62D3431C26d52f185584cC1B/info.json +++ b/blockchains/smartchain/assets/0xa3d80275E300237a62D3431C26d52f185584cC1B/info.json @@ -10,8 +10,8 @@ "id": "0xa3d80275E300237a62D3431C26d52f185584cC1B", "links": [ { - "name": "twitter", - "url": "https://twitter.com/RiseHeroNFT" + "name": "x", + "url": "https://x.com/RiseHeroNFT" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xa4080f1778e69467E905B8d6F72f6e441f9e9484/info.json b/blockchains/smartchain/assets/0xa4080f1778e69467E905B8d6F72f6e441f9e9484/info.json index 8a74c258f65fb..0f088d2fa1384 100644 --- a/blockchains/smartchain/assets/0xa4080f1778e69467E905B8d6F72f6e441f9e9484/info.json +++ b/blockchains/smartchain/assets/0xa4080f1778e69467E905B8d6F72f6e441f9e9484/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/synapseprotocol" + "name": "x", + "url": "https://x.com/synapseprotocol" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xa4390B901a63641c92327E5793b45FCB46954444/info.json b/blockchains/smartchain/assets/0xa4390B901a63641c92327E5793b45FCB46954444/info.json new file mode 100644 index 0000000000000..5ee9b2c5306b8 --- /dev/null +++ b/blockchains/smartchain/assets/0xa4390B901a63641c92327E5793b45FCB46954444/info.json @@ -0,0 +1,20 @@ +{ + "name": "TCryptochicks", + "type": "BEP20", + "symbol": "TCC", + "decimals": 18, + "description": "TCryptochicks", + "website": "https://four.meme/token/0xa4390b901a63641c92327e5793b45fcb46954444", + "explorer": "https://bscscan.com/token/0xa4390B901a63641c92327E5793b45FCB46954444", + "status": "active", + "id": "0xa4390B901a63641c92327E5793b45FCB46954444", + "links": [ + { + "name": "x", + "url": "https://x.com/TCryptochicks" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa4390B901a63641c92327E5793b45FCB46954444/logo.png b/blockchains/smartchain/assets/0xa4390B901a63641c92327E5793b45FCB46954444/logo.png new file mode 100644 index 0000000000000..8d3f0b1f023d9 Binary files /dev/null and b/blockchains/smartchain/assets/0xa4390B901a63641c92327E5793b45FCB46954444/logo.png differ diff --git a/blockchains/smartchain/assets/0xa4B68D48D7bc6f04420e8077E6F74bdeF809dEa3/info.json b/blockchains/smartchain/assets/0xa4B68D48D7bc6f04420e8077E6F74bdeF809dEa3/info.json new file mode 100644 index 0000000000000..d007d63637a6e --- /dev/null +++ b/blockchains/smartchain/assets/0xa4B68D48D7bc6f04420e8077E6F74bdeF809dEa3/info.json @@ -0,0 +1,32 @@ +{ + "name": "BugsCoin", + "type": "BEP20", + "symbol": "BGSC", + "decimals": 18, + "website": "https://bugscoin.com", + "description": "BugsCoin is a Web3-based investment education and simulated trading platform designed to help users learn trading skills risk-free while earning rewards.", + "explorer": "https://bscscan.com/token/0xa4B68D48D7bc6f04420e8077E6F74bdeF809dEa3", + "status": "active", + "id": "0xa4B68D48D7bc6f04420e8077E6F74bdeF809dEa3", + "links": [ + { + "name": "x", + "url": "https://x.com/bugscoin_bgsc" + }, + { + "name": "telegram_news", + "url": "https://t.me/+mdd1gKCvyIw1OWNl" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bugscoin/" + }, + { + "name": "forum", + "url": "https://anttalk.io" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/smartchain/assets/0xa4B68D48D7bc6f04420e8077E6F74bdeF809dEa3/logo.png b/blockchains/smartchain/assets/0xa4B68D48D7bc6f04420e8077E6F74bdeF809dEa3/logo.png new file mode 100644 index 0000000000000..f96f4a93bcf2f Binary files /dev/null and b/blockchains/smartchain/assets/0xa4B68D48D7bc6f04420e8077E6F74bdeF809dEa3/logo.png differ diff --git a/blockchains/smartchain/assets/0xa4FFfc757e8c4F24E7b209C033c123D20983Ad40/info.json b/blockchains/smartchain/assets/0xa4FFfc757e8c4F24E7b209C033c123D20983Ad40/info.json index f853f1750d7e2..2d8ac8d29b90a 100644 --- a/blockchains/smartchain/assets/0xa4FFfc757e8c4F24E7b209C033c123D20983Ad40/info.json +++ b/blockchains/smartchain/assets/0xa4FFfc757e8c4F24E7b209C033c123D20983Ad40/info.json @@ -18,8 +18,8 @@ "url": "https://discord.com/invite/hoge" }, { - "name": "twitter", - "url": "https://twitter.com/hogefinance" + "name": "x", + "url": "https://x.com/hogefinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xa4c3497b57C8b6D510F3707A1e9694fD791f45FB/info.json b/blockchains/smartchain/assets/0xa4c3497b57C8b6D510F3707A1e9694fD791f45FB/info.json new file mode 100644 index 0000000000000..8ff9073ef7e6c --- /dev/null +++ b/blockchains/smartchain/assets/0xa4c3497b57C8b6D510F3707A1e9694fD791f45FB/info.json @@ -0,0 +1,30 @@ +{ + "name": "Vameon", + "type": "BEP20", + "symbol": "VON", + "decimals": 18, + "description": "VON is the ecosystem utility token at the heart of the dark fantasy universe of dEmpire of Vampire, a mobile game by the Vameon project. dEmpire of Vampire is an AI Play-to-Earn Metaverse on the BNB Chain that is redefining gaming by granting players true ownership of their in-game assets—including characters, achievements, and rewards—all secured as NFTs and tradable on-chain.", + "website": "https://vameon.com/", + "explorer": "https://bscscan.com/token/0xa4c3497b57c8b6d510f3707a1e9694fd791f45fb", + "id": "0xa4c3497b57C8b6D510F3707A1e9694fD791f45FB", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/vameon69" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vameon/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/von" + } + + ], + "tags": [ + "nft" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa4c3497b57C8b6D510F3707A1e9694fD791f45FB/logo.png b/blockchains/smartchain/assets/0xa4c3497b57C8b6D510F3707A1e9694fD791f45FB/logo.png new file mode 100644 index 0000000000000..8a63e6ccad692 Binary files /dev/null and b/blockchains/smartchain/assets/0xa4c3497b57C8b6D510F3707A1e9694fD791f45FB/logo.png differ diff --git a/blockchains/smartchain/assets/0xa4ce62BB3047E3C4aE52b7eC20c3EB10f4397AF7/info.json b/blockchains/smartchain/assets/0xa4ce62BB3047E3C4aE52b7eC20c3EB10f4397AF7/info.json new file mode 100644 index 0000000000000..ffefbbf86125a --- /dev/null +++ b/blockchains/smartchain/assets/0xa4ce62BB3047E3C4aE52b7eC20c3EB10f4397AF7/info.json @@ -0,0 +1,32 @@ +{ + "name": "MINATI", + "type": "BEP20", + "symbol": "MNTC", + "decimals": 18, + "website": "https://minati.io", + "description": "Minati is a blockchain-powered ecosystem integrating DeFi and metaverse. Its core token, MNTC, enables secure transactions, trading, and fraud detection. The Minativerse offers gaming, live events, virtual shopping, and NFT integration. Users can own digital assets and explore immersive experiences.", + "explorer": "https://bscscan.com/token/0xa4ce62BB3047E3C4aE52b7eC20c3EB10f4397AF7", + "status": "active", + "id": "0xa4ce62BB3047E3C4aE52b7eC20c3EB10f4397AF7", + "links": [ + { + "name": "telegram", + "url": "https://t.me/minatifi" + }, + { + "name": "x", + "url": "https://x.com/minatifi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/minati-coin/" + }, + { + "name": "whitepaper", + "url": "https://minativerse.gitbook.io/whitepaper" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa4ce62BB3047E3C4aE52b7eC20c3EB10f4397AF7/logo.png b/blockchains/smartchain/assets/0xa4ce62BB3047E3C4aE52b7eC20c3EB10f4397AF7/logo.png new file mode 100644 index 0000000000000..f8ce99a73f48f Binary files /dev/null and b/blockchains/smartchain/assets/0xa4ce62BB3047E3C4aE52b7eC20c3EB10f4397AF7/logo.png differ diff --git a/blockchains/smartchain/assets/0xa5496935A247fA81B1462E553ad139d2FD0af795/info.json b/blockchains/smartchain/assets/0xa5496935A247fA81B1462E553ad139d2FD0af795/info.json index 8cd3abeba1ecd..af9c1e9daf502 100644 --- a/blockchains/smartchain/assets/0xa5496935A247fA81B1462E553ad139d2FD0af795/info.json +++ b/blockchains/smartchain/assets/0xa5496935A247fA81B1462E553ad139d2FD0af795/info.json @@ -10,8 +10,8 @@ "id": "0xa5496935A247fA81B1462E553ad139d2FD0af795", "links": [ { - "name": "twitter", - "url": "https://twitter.com/flagnetwork_NFT" + "name": "x", + "url": "https://x.com/flagnetwork_NFT" }, { "name": "telegram", @@ -49,4 +49,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa5b000d453143B357dbA63f4EE83F2f6FDa832b8/info.json b/blockchains/smartchain/assets/0xa5b000d453143B357dbA63f4EE83F2f6FDa832b8/info.json new file mode 100644 index 0000000000000..37f94e41d1dd7 --- /dev/null +++ b/blockchains/smartchain/assets/0xa5b000d453143B357dbA63f4EE83F2f6FDa832b8/info.json @@ -0,0 +1,36 @@ +{ + "name": "Metya Token", + "type": "BEP20", + "symbol": "MET", + "decimals": 18, + "website": "https://metya.com", + "description": "Metya - The largest and most influential dating platform #SocialFi Metya leverages AI technology to introduce the innovative concept of DatingFi, providing users with a decentralized, secure, and private social dating experience. With our groundbreaking smart hardware, #MeAi, we support real-time translation in 138 languages globally. Through social interactions, users contribute computing power and network resources, creating a truly empowering social environment that fosters innovation in the Web3 ecosystem.", + "explorer": "https://bscscan.com/token/0xa5b000d453143B357dbA63f4EE83F2f6FDa832b8", + "status": "active", + "id": "0xa5b000d453143B357dbA63f4EE83F2f6FDa832b8", + "links": [ + { + "name": "x", + "url": "https://x.com/metyacom" + }, + { + "name": "telegram", + "url": "https://t.me/metya_official" + }, + { + "name": "discord", + "url": "https://discord.com/invite/pQUY8WNphs" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/metya" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/metya" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/smartchain/assets/0xa5b000d453143B357dbA63f4EE83F2f6FDa832b8/logo.png b/blockchains/smartchain/assets/0xa5b000d453143B357dbA63f4EE83F2f6FDa832b8/logo.png new file mode 100644 index 0000000000000..882508bdc4f72 Binary files /dev/null and b/blockchains/smartchain/assets/0xa5b000d453143B357dbA63f4EE83F2f6FDa832b8/logo.png differ diff --git a/blockchains/smartchain/assets/0xa677bc9bDb10329E488A4d8387ED7a08b2fc9005/info.json b/blockchains/smartchain/assets/0xa677bc9bDb10329E488A4d8387ED7a08b2fc9005/info.json index a4d8b1de552ce..6bb2b565014e8 100644 --- a/blockchains/smartchain/assets/0xa677bc9bDb10329E488A4d8387ED7a08b2fc9005/info.json +++ b/blockchains/smartchain/assets/0xa677bc9bDb10329E488A4d8387ED7a08b2fc9005/info.json @@ -10,8 +10,8 @@ "id": "0xa677bc9bDb10329E488A4d8387ED7a08b2fc9005", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MagicCubeDeFi" + "name": "x", + "url": "https://x.com/MagicCubeDeFi" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xa683ab3D0CCb5f236d9dF27F76FCf64cfD541b30/info.json b/blockchains/smartchain/assets/0xa683ab3D0CCb5f236d9dF27F76FCf64cfD541b30/info.json new file mode 100644 index 0000000000000..c300f0c9fcc91 --- /dev/null +++ b/blockchains/smartchain/assets/0xa683ab3D0CCb5f236d9dF27F76FCf64cfD541b30/info.json @@ -0,0 +1,32 @@ +{ + "name": "NeutralAI", + "type": "BEP20", + "symbol": "USDN", + "decimals": 18, + "website": "https://neutralai.io/", + "description": "USDN operates on a decentralized and transparent smart contract infrastructure, ensuring stability, security, and efficiency. The smart contracts are deployed on multiple blockchain networks, supporting key functionalities.", + "explorer": "https://bscscan.com/token/0xa683ab3D0CCb5f236d9dF27F76FCf64cfD541b30", + "status": "active", + "id": "0xa683ab3D0CCb5f236d9dF27F76FCf64cfD541b30", + "links": [ + { + "name": "x", + "url": "https://x.com/neutralai_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/neutral-ai/" + }, + { + "name": "github", + "url": "https://github.com/neutralai" + }, + { + "name": "telegram", + "url": "https://t.me/neutralai_io" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa683ab3D0CCb5f236d9dF27F76FCf64cfD541b30/logo.png b/blockchains/smartchain/assets/0xa683ab3D0CCb5f236d9dF27F76FCf64cfD541b30/logo.png new file mode 100644 index 0000000000000..39e71c884108b Binary files /dev/null and b/blockchains/smartchain/assets/0xa683ab3D0CCb5f236d9dF27F76FCf64cfD541b30/logo.png differ diff --git a/blockchains/smartchain/assets/0xa6D3D8698056cbb01785343B9cCeB205C7065f5F/info.json b/blockchains/smartchain/assets/0xa6D3D8698056cbb01785343B9cCeB205C7065f5F/info.json new file mode 100644 index 0000000000000..7e6d3d56c7cc9 --- /dev/null +++ b/blockchains/smartchain/assets/0xa6D3D8698056cbb01785343B9cCeB205C7065f5F/info.json @@ -0,0 +1,25 @@ +{ + "name": "SerenityShield", + "website": "https://www.serenityshield.io/", + "description": "Serenity Shield is a self-custodial, privacy-centric digital data storage platform built on the blockchain, featuring a built-in inheritance protocol. It serves various use cases, including storage, recovery, and estate planning for wallet seed phrases and diverse digital data types.", + "explorer": "https://bscscan.com/token/0xa6D3D8698056cbb01785343B9cCeB205C7065f5F", + "type": "BEP20", + "symbol": "SERSH", + "decimals": 18, + "status": "abandoned", + "id": "0xa6D3D8698056cbb01785343B9cCeB205C7065f5F", + "links": [ + { + "name": "telegram", + "url": "https://t.me/serenityshield" + }, + { + "name": "x", + "url": "https://x.com/SerenityShield_" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/serenity-shield/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa73dF9480e9408908c828be2e1A7345855501508/info.json b/blockchains/smartchain/assets/0xa73dF9480e9408908c828be2e1A7345855501508/info.json index 50d338a8d101f..0a5bcb62b1242 100644 --- a/blockchains/smartchain/assets/0xa73dF9480e9408908c828be2e1A7345855501508/info.json +++ b/blockchains/smartchain/assets/0xa73dF9480e9408908c828be2e1A7345855501508/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/BabyDogeZillaBSC" }, { - "name": "twitter", - "url": "https://twitter.com/BabydogezillaA" + "name": "x", + "url": "https://x.com/BabydogezillaA" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0xa753A7395cAe905Cd615Da0B82A53E0560f250af/info.json b/blockchains/smartchain/assets/0xa753A7395cAe905Cd615Da0B82A53E0560f250af/info.json new file mode 100644 index 0000000000000..c1735c9722acf --- /dev/null +++ b/blockchains/smartchain/assets/0xa753A7395cAe905Cd615Da0B82A53E0560f250af/info.json @@ -0,0 +1,24 @@ +{ + "name": "Nasdaq tokenized ETF (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Nasdaq tokenized ETF (xStock) (QQQX) is a cryptocurrency and operates on the Solana platform. Nasdaq tokenized ETF (xStock) has a current supply of 5,999.92232021. The last known price of Nasdaq tokenized ETF (xStock) is 593.40939583 USD and is up 0.98 over the last 24 hours. It is currently trading on 15 active market(s) with $930,481.21 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/nasdaq-xstock.", + "explorer": "https://bscscan.com/token/0xa753A7395cAe905Cd615Da0B82A53E0560f250af", + "type": "BEP20", + "symbol": "QQQX", + "decimals": 18, + "status": "active", + "id": "0xa753A7395cAe905Cd615Da0B82A53E0560f250af", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nasdaq-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa753A7395cAe905Cd615Da0B82A53E0560f250af/logo.png b/blockchains/smartchain/assets/0xa753A7395cAe905Cd615Da0B82A53E0560f250af/logo.png new file mode 100644 index 0000000000000..7151d49b76d09 Binary files /dev/null and b/blockchains/smartchain/assets/0xa753A7395cAe905Cd615Da0B82A53E0560f250af/logo.png differ diff --git a/blockchains/smartchain/assets/0xa77dc77Abc1759915816bB28558E22039C678888/info.json b/blockchains/smartchain/assets/0xa77dc77Abc1759915816bB28558E22039C678888/info.json new file mode 100644 index 0000000000000..01dde1077a97c --- /dev/null +++ b/blockchains/smartchain/assets/0xa77dc77Abc1759915816bB28558E22039C678888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether", + "type": "BEP20", + "symbol": "FAKE USⅮТ", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xa77dc77Abc1759915816bB28558E22039C678888", + "explorer": "https://bscscan.com/token/0xa77dc77Abc1759915816bB28558E22039C678888", + "status": "spam", + "id": "0xa77dc77Abc1759915816bB28558E22039C678888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa7d1e886acf66Ec0656DF2DECB4B7C893A3bAb4C/info.json b/blockchains/smartchain/assets/0xa7d1e886acf66Ec0656DF2DECB4B7C893A3bAb4C/info.json new file mode 100644 index 0000000000000..a1530d0a27e02 --- /dev/null +++ b/blockchains/smartchain/assets/0xa7d1e886acf66Ec0656DF2DECB4B7C893A3bAb4C/info.json @@ -0,0 +1,24 @@ +{ + "name": "Walmart (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "WMTon is the Ondo Tokenized version of Walmart, giving tokenholders economic exposure similar to holding WMT and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xa7d1e886acf66ec0656df2decb4b7c893a3bab4c", + "type": "BEP20", + "symbol": "WMTon", + "decimals": 18, + "status": "active", + "id": "0xa7d1e886acf66Ec0656DF2DECB4B7C893A3bAb4C", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/walmart-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa7d1e886acf66Ec0656DF2DECB4B7C893A3bAb4C/logo.png b/blockchains/smartchain/assets/0xa7d1e886acf66Ec0656DF2DECB4B7C893A3bAb4C/logo.png new file mode 100644 index 0000000000000..410dd779f18ee Binary files /dev/null and b/blockchains/smartchain/assets/0xa7d1e886acf66Ec0656DF2DECB4B7C893A3bAb4C/logo.png differ diff --git a/blockchains/smartchain/assets/0xa7e37EaE349c9dCB7ebE1FaaaCDAc245e3d24444/info.json b/blockchains/smartchain/assets/0xa7e37EaE349c9dCB7ebE1FaaaCDAc245e3d24444/info.json new file mode 100644 index 0000000000000..1dd84841aa984 --- /dev/null +++ b/blockchains/smartchain/assets/0xa7e37EaE349c9dCB7ebE1FaaaCDAc245e3d24444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDKG", + "type": "BEP20", + "symbol": "FAKE USDKG", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xa7e37EaE349c9dCB7ebE1FaaaCDAc245e3d24444", + "explorer": "https://bscscan.com/token/0xa7e37EaE349c9dCB7ebE1FaaaCDAc245e3d24444", + "status": "spam", + "id": "0xa7e37EaE349c9dCB7ebE1FaaaCDAc245e3d24444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa7ffb399d44eb830f01751052C75d14f0b47E779/info.json b/blockchains/smartchain/assets/0xa7ffb399d44eb830f01751052C75d14f0b47E779/info.json new file mode 100644 index 0000000000000..1ffe386e78d54 --- /dev/null +++ b/blockchains/smartchain/assets/0xa7ffb399d44eb830f01751052C75d14f0b47E779/info.json @@ -0,0 +1,33 @@ +{ + "name": "GROK X", + "type": "BEP20", + "symbol": "GROK X", + "decimals": 18, + "website": "http://www.grokxbsc.vip/", + "description": "Grok x is not just a meme coin; it's a playful revolution in the cryptocurrency world. Grok X brings joy and positivity to the blockchain.", + "explorer": "https://bscscan.com/token/0xa7ffb399d44eb830f01751052C75d14f0b47E779", + "status": "active", + "id": "0xa7ffb399d44eb830f01751052C75d14f0b47E779", + "links": [ + { + "name": "telegram_news", + "url": "https://t.me/grokxbnb" + }, + { + "name": "x", + "url": "https://x.com/GrokXBsc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/grok-x/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/grok-x" + }, + { + "name": "whitepaper", + "url": "https://grok-x.gitbook.io/grok-x/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa7ffb399d44eb830f01751052C75d14f0b47E779/logo.png b/blockchains/smartchain/assets/0xa7ffb399d44eb830f01751052C75d14f0b47E779/logo.png new file mode 100644 index 0000000000000..84b43f33dbe29 Binary files /dev/null and b/blockchains/smartchain/assets/0xa7ffb399d44eb830f01751052C75d14f0b47E779/logo.png differ diff --git a/blockchains/smartchain/assets/0xa83E84d45EDB55324E2d10e1817F071481289D90/info.json b/blockchains/smartchain/assets/0xa83E84d45EDB55324E2d10e1817F071481289D90/info.json index 6c79501e1581e..5d1ed9dcb83bc 100644 --- a/blockchains/smartchain/assets/0xa83E84d45EDB55324E2d10e1817F071481289D90/info.json +++ b/blockchains/smartchain/assets/0xa83E84d45EDB55324E2d10e1817F071481289D90/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/cranchtoken/" }, { - "name": "twitter", - "url": "https://twitter.com/cranch_io" + "name": "x", + "url": "https://x.com/cranch_io" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xa865197A84E780957422237B5D152772654341F3/info.json b/blockchains/smartchain/assets/0xa865197A84E780957422237B5D152772654341F3/info.json index 00683b6a97360..28115cb628983 100644 --- a/blockchains/smartchain/assets/0xa865197A84E780957422237B5D152772654341F3/info.json +++ b/blockchains/smartchain/assets/0xa865197A84E780957422237B5D152772654341F3/info.json @@ -1,20 +1,20 @@ { - "name": "Openleverage Token", + "name": "Openleverage Token (Old)", "website": "https://openleverage.finance/", - "description": "A permissionless lending and margin trading protocol, enabling traders to go long or short with any pairs on DEXs efficiently and securely.", + "description": "OpenLeverage is a permissionless money market protocol enabling decentralized lending, borrowing, and margin trading across a diverse range of cryptocurrency pairs, fostering an accessible and efficient DeFi ecosystem.", "explorer": "https://bscscan.com/token/0xa865197A84E780957422237B5D152772654341F3", "type": "BEP20", - "symbol": "OLE", + "symbol": "Old OLE", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xa865197A84E780957422237B5D152772654341F3", "tags": [ "defi" ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/OpenLeverage" + "name": "x", + "url": "https://x.com/OpenLeverage" }, { "name": "discord", @@ -27,6 +27,26 @@ { "name": "coinmarketcap", "url": "https://coinmarketcap.com/currencies/openleverage/" + }, + { + "name": "docs", + "url": "https://docs.openleverage.finance/main/" + }, + { + "name": "telegram", + "url": "https://t.me/openleverageofficial" + }, + { + "name": "github", + "url": "https://github.com/OpenLeverageDev/openleverage-contracts" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/openleverage" + }, + { + "name": "youtube", + "url": "https://youtube.com/@openleverageprotocol9047" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa865c6CC3A6164c3a0188efEED6F32ABa134693c/info.json b/blockchains/smartchain/assets/0xa865c6CC3A6164c3a0188efEED6F32ABa134693c/info.json index 74a42154d1c06..41f9e6698fbea 100644 --- a/blockchains/smartchain/assets/0xa865c6CC3A6164c3a0188efEED6F32ABa134693c/info.json +++ b/blockchains/smartchain/assets/0xa865c6CC3A6164c3a0188efEED6F32ABa134693c/info.json @@ -10,8 +10,8 @@ "id": "0xa865c6CC3A6164c3a0188efEED6F32ABa134693c", "links": [ { - "name": "twitter", - "url": "https://twitter.com/evergreentokens" + "name": "x", + "url": "https://x.com/evergreentokens" }, { "name": "whitepaper", diff --git a/blockchains/smartchain/assets/0xa90424D5D3E770e8644103AB503ed775dD1318FD/info.json b/blockchains/smartchain/assets/0xa90424D5D3E770e8644103AB503ed775dD1318FD/info.json new file mode 100644 index 0000000000000..8303820ffd581 --- /dev/null +++ b/blockchains/smartchain/assets/0xa90424D5D3E770e8644103AB503ed775dD1318FD/info.json @@ -0,0 +1,24 @@ +{ + "name": "Procter & Gamble tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Procter & Gamble xStock (PGx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. PGx tracks the price of The Procter & Gamble Company (the underlying). PGx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of The Procter & Gamble Company, whilst maintaining the benefits of blockchain technology. Procter & Gamble is a global consumer goods company, founded over 180 years ago. It's known for its vast portfolio of trusted brands and its commitment to innovation and ethical business practices.", + "explorer": "https://bscscan.com/token/0xa90424D5D3E770e8644103AB503ed775dD1318FD", + "type": "BEP20", + "symbol": "PGX", + "decimals": 18, + "status": "active", + "id": "0xa90424D5D3E770e8644103AB503ed775dD1318FD", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/procter-gamble-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa90424D5D3E770e8644103AB503ed775dD1318FD/logo.png b/blockchains/smartchain/assets/0xa90424D5D3E770e8644103AB503ed775dD1318FD/logo.png new file mode 100644 index 0000000000000..e79aa1665329d Binary files /dev/null and b/blockchains/smartchain/assets/0xa90424D5D3E770e8644103AB503ed775dD1318FD/logo.png differ diff --git a/blockchains/smartchain/assets/0xa94b7a842aADB617a0B08fA744e033C6De2f7595/info.json b/blockchains/smartchain/assets/0xa94b7a842aADB617a0B08fA744e033C6De2f7595/info.json index 8016e5d8c43bc..6019d150d77e9 100644 --- a/blockchains/smartchain/assets/0xa94b7a842aADB617a0B08fA744e033C6De2f7595/info.json +++ b/blockchains/smartchain/assets/0xa94b7a842aADB617a0B08fA744e033C6De2f7595/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/FlashXBoss/sourcecode/commit/34b44ebe1fa26ea2724b13814560c8e4d72a9949" }, { - "name": "twitter", - "url": "https://twitter.com/CoinFlashx" + "name": "x", + "url": "https://x.com/CoinFlashx" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xa96f3414334F5A0A529ff5d9D8ea95f42147b8C9/info.json b/blockchains/smartchain/assets/0xa96f3414334F5A0A529ff5d9D8ea95f42147b8C9/info.json index 42261bf39aaf2..70739b5f4fad0 100644 --- a/blockchains/smartchain/assets/0xa96f3414334F5A0A529ff5d9D8ea95f42147b8C9/info.json +++ b/blockchains/smartchain/assets/0xa96f3414334F5A0A529ff5d9D8ea95f42147b8C9/info.json @@ -10,8 +10,8 @@ "id": "0xa96f3414334F5A0A529ff5d9D8ea95f42147b8C9", "links": [ { - "name": "twitter", - "url": "https://twitter.com/riskmoonbsc" + "name": "x", + "url": "https://x.com/riskmoonbsc" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xa9eA4b786ee5b7A733c035564Bfd9341A4c9FC1e/info.json b/blockchains/smartchain/assets/0xa9eA4b786ee5b7A733c035564Bfd9341A4c9FC1e/info.json index 7bbd897cb7b5b..9efafb3f7e5ea 100644 --- a/blockchains/smartchain/assets/0xa9eA4b786ee5b7A733c035564Bfd9341A4c9FC1e/info.json +++ b/blockchains/smartchain/assets/0xa9eA4b786ee5b7A733c035564Bfd9341A4c9FC1e/info.json @@ -10,8 +10,8 @@ "id": "0xa9eA4b786ee5b7A733c035564Bfd9341A4c9FC1e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Go_APEcoin?s=20" + "name": "x", + "url": "https://x.com/Go_APEcoin?s=20" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xaA076B62EFC6f357882E07665157A271aB46A063/info.json b/blockchains/smartchain/assets/0xaA076B62EFC6f357882E07665157A271aB46A063/info.json index e3ce9d17daac5..7863d90556f13 100644 --- a/blockchains/smartchain/assets/0xaA076B62EFC6f357882E07665157A271aB46A063/info.json +++ b/blockchains/smartchain/assets/0xaA076B62EFC6f357882E07665157A271aB46A063/info.json @@ -21,8 +21,8 @@ "url": "https://discord.com/invite/GCHkdY6fnF" }, { - "name": "twitter", - "url": "https://twitter.com/Pleasure_coin" + "name": "x", + "url": "https://x.com/Pleasure_coin" }, { "name": "coinmarketcap", @@ -33,4 +33,4 @@ "url": "https://coingecko.com/coins/pleasure-coin" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaA357b0F167923Efc1D6978a868f81866cA6E98c/info.json b/blockchains/smartchain/assets/0xaA357b0F167923Efc1D6978a868f81866cA6E98c/info.json index e159c84acb755..a0ff7e22656d5 100644 --- a/blockchains/smartchain/assets/0xaA357b0F167923Efc1D6978a868f81866cA6E98c/info.json +++ b/blockchains/smartchain/assets/0xaA357b0F167923Efc1D6978a868f81866cA6E98c/info.json @@ -10,8 +10,8 @@ "id": "0xaA357b0F167923Efc1D6978a868f81866cA6E98c", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ShibXOfficial" + "name": "x", + "url": "https://x.com/ShibXOfficial" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xaB785054251DB0fc44538F5DeeBE7507B748b692/info.json b/blockchains/smartchain/assets/0xaB785054251DB0fc44538F5DeeBE7507B748b692/info.json new file mode 100644 index 0000000000000..1d3c6b03147da --- /dev/null +++ b/blockchains/smartchain/assets/0xaB785054251DB0fc44538F5DeeBE7507B748b692/info.json @@ -0,0 +1,25 @@ +{ + "name": "Jasan Wellness", + "type": "BEP20", + "symbol": "JW", + "decimals": 8, + "website": "https://jwtoken.org/", + "description": "FIRST GLOBAL WEB 3.0 WELLNESS COMMUNITY WITH AI AND BLOCKCHAIN. Empowering wellness Worldwide with Blockchain.", + "explorer": "https://bscscan.com/token/0xab785054251db0fc44538f5deebe7507b748b692", + "status": "active", + "id": "0xaB785054251DB0fc44538F5DeeBE7507B748b692", + "links": [ + { + "name": "x", + "url": "https://x.com/JWSocial1" + }, + { + "name": "facebook", + "url": "https://facebook.com/JWTOKEN" + }, + { + "name": "telegram", + "url": "https://t.me/web3wellness" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaB785054251DB0fc44538F5DeeBE7507B748b692/logo.png b/blockchains/smartchain/assets/0xaB785054251DB0fc44538F5DeeBE7507B748b692/logo.png new file mode 100644 index 0000000000000..e99ba9070be5d Binary files /dev/null and b/blockchains/smartchain/assets/0xaB785054251DB0fc44538F5DeeBE7507B748b692/logo.png differ diff --git a/blockchains/smartchain/assets/0xaBd834A7823567673e1Ac07635d5D9857b34A8d3/info.json b/blockchains/smartchain/assets/0xaBd834A7823567673e1Ac07635d5D9857b34A8d3/info.json new file mode 100644 index 0000000000000..ae89d03d2dc64 --- /dev/null +++ b/blockchains/smartchain/assets/0xaBd834A7823567673e1Ac07635d5D9857b34A8d3/info.json @@ -0,0 +1,17 @@ +{ + "name": "AIFlow", + "symbol": "AFT", + "website": "https://x.com/aiflow_web3?s=11&t=JF55ZCFhti2o-FGpHi-_TA", + "description": "Open-source framework for BNB Chain", + "explorer": "https://bscscan.com/token/0xabd834a7823567673e1ac07635d5d9857b34a8d3", + "decimals": 18, + "status": "active", + "id": "0xaBd834A7823567673e1Ac07635d5D9857b34A8d3", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/aiflow_web3?s=11&t=JF55ZCFhti2o-FGpHi-_TA" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaBd834A7823567673e1Ac07635d5D9857b34A8d3/logo.png b/blockchains/smartchain/assets/0xaBd834A7823567673e1Ac07635d5D9857b34A8d3/logo.png new file mode 100644 index 0000000000000..e95e765bc7971 Binary files /dev/null and b/blockchains/smartchain/assets/0xaBd834A7823567673e1Ac07635d5D9857b34A8d3/logo.png differ diff --git a/blockchains/smartchain/assets/0xaC41Fb8013c0B63588fC63997785A5d79E73eb28/info.json b/blockchains/smartchain/assets/0xaC41Fb8013c0B63588fC63997785A5d79E73eb28/info.json index 2730361eae41d..0f7c9a84893ac 100644 --- a/blockchains/smartchain/assets/0xaC41Fb8013c0B63588fC63997785A5d79E73eb28/info.json +++ b/blockchains/smartchain/assets/0xaC41Fb8013c0B63588fC63997785A5d79E73eb28/info.json @@ -10,8 +10,8 @@ "id": "0xaC41Fb8013c0B63588fC63997785A5d79E73eb28", "links": [ { - "name": "twitter", - "url": "https://twitter.com/frztoken?t=50fc06_SxNW9rpEaR8-1cQ&s=09" + "name": "x", + "url": "https://x.com/frztoken?t=50fc06_SxNW9rpEaR8-1cQ&s=09" }, { "name": "telegram", @@ -33,4 +33,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaD56701D9e57957e28e546Db7db508A16d4f86CC/info.json b/blockchains/smartchain/assets/0xaD56701D9e57957e28e546Db7db508A16d4f86CC/info.json new file mode 100644 index 0000000000000..1340ae6c1b96a --- /dev/null +++ b/blockchains/smartchain/assets/0xaD56701D9e57957e28e546Db7db508A16d4f86CC/info.json @@ -0,0 +1,28 @@ +{ + "name": "Terawulf (Ondo Tokenized)", + "type": "BEP20", + "symbol": "WULFon", + "decimals": 18, + "description": "WULFon is the Ondo Tokenized version of Terawulf, giving tokenholders economic exposure similar to holding WULF and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xaD56701D9e57957e28e546Db7db508A16d4f86CC", + "status": "active", + "id": "0xaD56701D9e57957e28e546Db7db508A16d4f86CC", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/terawulf-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/terawulf-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaD56701D9e57957e28e546Db7db508A16d4f86CC/logo.png b/blockchains/smartchain/assets/0xaD56701D9e57957e28e546Db7db508A16d4f86CC/logo.png new file mode 100644 index 0000000000000..9346b7f17a2cb Binary files /dev/null and b/blockchains/smartchain/assets/0xaD56701D9e57957e28e546Db7db508A16d4f86CC/logo.png differ diff --git a/blockchains/smartchain/assets/0xaDAaE082237cB1772c9e079dB95c117E6Dd0C5aF/info.json b/blockchains/smartchain/assets/0xaDAaE082237cB1772c9e079dB95c117E6Dd0C5aF/info.json new file mode 100644 index 0000000000000..cbf14519c0be7 --- /dev/null +++ b/blockchains/smartchain/assets/0xaDAaE082237cB1772c9e079dB95c117E6Dd0C5aF/info.json @@ -0,0 +1,24 @@ +{ + "name": "VizslaSwap", + "type": "BEP20", + "symbol": "VIZSLASWAP", + "decimals": 18, + "website": "https://www.vizslaswap.com/", + "description": "VizslaSwap is a decentralized exchange running on BNB Smart Chain with lots of features that let you trade and earn tokens.", + "explorer": "https://bscscan.com/token/0xadaae082237cb1772c9e079db95c117e6dd0c5af", + "status": "active", + "id": "0xaDAaE082237cB1772c9e079dB95c117E6Dd0C5aF", + "links": [ + { + "name": "telegram", + "url": "https://t.me/hungarianvizslainucoin" + }, + { + "name": "x", + "url": "https://x.com/HunVizslainu" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaDAaE082237cB1772c9e079dB95c117E6Dd0C5aF/logo.png b/blockchains/smartchain/assets/0xaDAaE082237cB1772c9e079dB95c117E6Dd0C5aF/logo.png new file mode 100644 index 0000000000000..c2d1e4c3d022d Binary files /dev/null and b/blockchains/smartchain/assets/0xaDAaE082237cB1772c9e079dB95c117E6Dd0C5aF/logo.png differ diff --git a/blockchains/smartchain/assets/0xaDD8A06fd58761A5047426e160B2B88AD3B9D464/info.json b/blockchains/smartchain/assets/0xaDD8A06fd58761A5047426e160B2B88AD3B9D464/info.json index e176159a0bc56..c7b33a1bf70c5 100644 --- a/blockchains/smartchain/assets/0xaDD8A06fd58761A5047426e160B2B88AD3B9D464/info.json +++ b/blockchains/smartchain/assets/0xaDD8A06fd58761A5047426e160B2B88AD3B9D464/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/cheeseswapbsc/" }, { - "name": "twitter", - "url": "https://twitter.com/cheeseswapbsc" + "name": "x", + "url": "https://x.com/cheeseswapbsc" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xaE90CA218f9c3b1AA84af33A7907E4890Ec6A167/info.json b/blockchains/smartchain/assets/0xaE90CA218f9c3b1AA84af33A7907E4890Ec6A167/info.json index cfecbc9cf57d5..9133a734c7c04 100644 --- a/blockchains/smartchain/assets/0xaE90CA218f9c3b1AA84af33A7907E4890Ec6A167/info.json +++ b/blockchains/smartchain/assets/0xaE90CA218f9c3b1AA84af33A7907E4890Ec6A167/info.json @@ -10,8 +10,8 @@ "id": "0xaE90CA218f9c3b1AA84af33A7907E4890Ec6A167", "links": [ { - "name": "twitter", - "url": "https://twitter.com/eclatworld" + "name": "x", + "url": "https://x.com/eclatworld" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xaEC945e04baF28b135Fa7c640f624f8D90F1C3a6/info.json b/blockchains/smartchain/assets/0xaEC945e04baF28b135Fa7c640f624f8D90F1C3a6/info.json index 83d221f5d060b..c819561318935 100644 --- a/blockchains/smartchain/assets/0xaEC945e04baF28b135Fa7c640f624f8D90F1C3a6/info.json +++ b/blockchains/smartchain/assets/0xaEC945e04baF28b135Fa7c640f624f8D90F1C3a6/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/coin98" }, { - "name": "twitter", - "url": "https://twitter.com/coin98_finance" + "name": "x", + "url": "https://x.com/coin98_finance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xaF53d56ff99f1322515E54FdDE93FF8b3b7DAFd5/info.json b/blockchains/smartchain/assets/0xaF53d56ff99f1322515E54FdDE93FF8b3b7DAFd5/info.json index f47104cc76cc4..8da7a95544d36 100644 --- a/blockchains/smartchain/assets/0xaF53d56ff99f1322515E54FdDE93FF8b3b7DAFd5/info.json +++ b/blockchains/smartchain/assets/0xaF53d56ff99f1322515E54FdDE93FF8b3b7DAFd5/info.json @@ -10,8 +10,8 @@ "id": "0xaF53d56ff99f1322515E54FdDE93FF8b3b7DAFd5", "links": [ { - "name": "twitter", - "url": "https://twitter.com/prom_io" + "name": "x", + "url": "https://x.com/prom_io" }, { "name": "telegram", @@ -51,4 +51,4 @@ "nft", "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaF6Bd11A6F8f9c44b9D18f5FA116E403db599f8E/info.json b/blockchains/smartchain/assets/0xaF6Bd11A6F8f9c44b9D18f5FA116E403db599f8E/info.json index 2efe9529f8ca8..54464a3af3ded 100644 --- a/blockchains/smartchain/assets/0xaF6Bd11A6F8f9c44b9D18f5FA116E403db599f8E/info.json +++ b/blockchains/smartchain/assets/0xaF6Bd11A6F8f9c44b9D18f5FA116E403db599f8E/info.json @@ -10,8 +10,8 @@ "id": "0xaF6Bd11A6F8f9c44b9D18f5FA116E403db599f8E", "links": [ { - "name": "twitter", - "url": "https://twitter.com/alinx_io" + "name": "x", + "url": "https://x.com/alinx_io" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xaF6C03acf72355Ce98d0741302B78870b376428C/info.json b/blockchains/smartchain/assets/0xaF6C03acf72355Ce98d0741302B78870b376428C/info.json new file mode 100644 index 0000000000000..8f3b9a88d5720 --- /dev/null +++ b/blockchains/smartchain/assets/0xaF6C03acf72355Ce98d0741302B78870b376428C/info.json @@ -0,0 +1,28 @@ +{ + "name": "Oklo (Ondo Tokenized)", + "type": "BEP20", + "symbol": "OKLOon", + "decimals": 18, + "description": "OKLOon is the Ondo Tokenized version of Oklo, giving tokenholders economic exposure similar to holding OKLO and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xaF6C03acf72355Ce98d0741302B78870b376428C", + "status": "active", + "id": "0xaF6C03acf72355Ce98d0741302B78870b376428C", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/oklo-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/oklo-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaF6C03acf72355Ce98d0741302B78870b376428C/logo.png b/blockchains/smartchain/assets/0xaF6C03acf72355Ce98d0741302B78870b376428C/logo.png new file mode 100644 index 0000000000000..9bfe6ec7b0b65 Binary files /dev/null and b/blockchains/smartchain/assets/0xaF6C03acf72355Ce98d0741302B78870b376428C/logo.png differ diff --git a/blockchains/smartchain/assets/0xaFCC12e4040615E7Afe9fb4330eB3D9120acAC05/info.json b/blockchains/smartchain/assets/0xaFCC12e4040615E7Afe9fb4330eB3D9120acAC05/info.json new file mode 100644 index 0000000000000..49bcf82da7755 --- /dev/null +++ b/blockchains/smartchain/assets/0xaFCC12e4040615E7Afe9fb4330eB3D9120acAC05/info.json @@ -0,0 +1,36 @@ +{ + "name": "PirateCash", + "type": "BEP20", + "symbol": "PIRATE", + "decimals": 8, + "website": "https://p.cash/", + "description": "PirateCash as Software-defined networking (SDN). This technology will provide good quality of service and it will be High Availability (HA), flexible and DDoS resistant network.", + "explorer": "https://bscscan.com/token/0xafcc12e4040615e7afe9fb4330eb3d9120acac05", + "status": "active", + "id": "0xaFCC12e4040615E7Afe9fb4330eB3D9120acAC05", + "links": [ + { + "name": "x", + "url": "https://x.com/PirateCash_NET" + }, + { + "name": "telegram", + "url": "https://t.me/pcash" + }, + { + "name": "whitepaper", + "url": "https://p.cash/en#about" + }, + { + "name": "source_code", + "url": "https://bscscan.com/token/0xafcc12e4040615e7afe9fb4330eb3d9120acac05#code" + }, + { + "name": "github", + "url": "https://github.com/piratecash" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x35f3fffFcb622bC9f64fA561D74e983Fd488D90c/logo.png b/blockchains/smartchain/assets/0xaFCC12e4040615E7Afe9fb4330eB3D9120acAC05/logo.png similarity index 100% rename from blockchains/smartchain/assets/0x35f3fffFcb622bC9f64fA561D74e983Fd488D90c/logo.png rename to blockchains/smartchain/assets/0xaFCC12e4040615E7Afe9fb4330eB3D9120acAC05/logo.png diff --git a/blockchains/smartchain/assets/0xaFE3321309A994831884fc1725F4c3236AC79f76/info.json b/blockchains/smartchain/assets/0xaFE3321309A994831884fc1725F4c3236AC79f76/info.json index 88e0188bf0877..b65359b3af66f 100644 --- a/blockchains/smartchain/assets/0xaFE3321309A994831884fc1725F4c3236AC79f76/info.json +++ b/blockchains/smartchain/assets/0xaFE3321309A994831884fc1725F4c3236AC79f76/info.json @@ -10,8 +10,8 @@ "id": "0xaFE3321309A994831884fc1725F4c3236AC79f76", "links": [ { - "name": "twitter", - "url": "https://twitter.com/memeflate" + "name": "x", + "url": "https://x.com/memeflate" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xaFF9084f2374585879e8B434C399E29E80ccE635/info.json b/blockchains/smartchain/assets/0xaFF9084f2374585879e8B434C399E29E80ccE635/info.json index f88b8a6de7ade..3c016a35e13ee 100644 --- a/blockchains/smartchain/assets/0xaFF9084f2374585879e8B434C399E29E80ccE635/info.json +++ b/blockchains/smartchain/assets/0xaFF9084f2374585879e8B434C399E29E80ccE635/info.json @@ -10,8 +10,8 @@ "id": "0xaFF9084f2374585879e8B434C399E29E80ccE635", "links": [ { - "name": "twitter", - "url": "https://twitter.com/RunOnFlux" + "name": "x", + "url": "https://x.com/RunOnFlux" }, { "name": "discord", diff --git a/blockchains/smartchain/assets/0xaFb64E73dEf6fAa8B6Ef9a6fb7312d5C4C15ebDB/info.json b/blockchains/smartchain/assets/0xaFb64E73dEf6fAa8B6Ef9a6fb7312d5C4C15ebDB/info.json index 4dc8c4d4e1fd8..2ee45cd8ea5e3 100644 --- a/blockchains/smartchain/assets/0xaFb64E73dEf6fAa8B6Ef9a6fb7312d5C4C15ebDB/info.json +++ b/blockchains/smartchain/assets/0xaFb64E73dEf6fAa8B6Ef9a6fb7312d5C4C15ebDB/info.json @@ -10,8 +10,8 @@ "id": "0xaFb64E73dEf6fAa8B6Ef9a6fb7312d5C4C15ebDB", "links": [ { - "name": "twitter", - "url": "https://twitter.com/grovetoken" + "name": "x", + "url": "https://x.com/grovetoken" }, { "name": "telegram", @@ -37,4 +37,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaa036928c9c0Df07d525B55ea8EE690Bb5a628C1/info.json b/blockchains/smartchain/assets/0xaa036928c9c0Df07d525B55ea8EE690Bb5a628C1/info.json new file mode 100644 index 0000000000000..37a7a487a37a9 --- /dev/null +++ b/blockchains/smartchain/assets/0xaa036928c9c0Df07d525B55ea8EE690Bb5a628C1/info.json @@ -0,0 +1,28 @@ +{ + "name": "Evaa protocol", + "symbol": "EVAA", + "type": "BEP20", + "decimals": 18, + "website": "https://evaa.finance", + "explorer": "https://bscscan.com/token/0xaa036928c9c0Df07d525B55ea8EE690Bb5a628C1", + "status": "active", + "description": "The $EVAA token is the governance and utility token of the EVAA lending protocol. It allows holders to participate in decentralized governance by voting on protocol upgrades, stake their tokens to earn passive income, and enjoy lower fees for platform services.", + "id": "0xaa036928c9c0Df07d525B55ea8EE690Bb5a628C1", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/evaa-protocol/" + }, + { + "name": "x", + "url": "https://x.com/evaaprotocol" + }, + { + "name": "telegram", + "url": "https://t.me/evaaprotocol" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaa036928c9c0Df07d525B55ea8EE690Bb5a628C1/logo.png b/blockchains/smartchain/assets/0xaa036928c9c0Df07d525B55ea8EE690Bb5a628C1/logo.png new file mode 100644 index 0000000000000..56df13d0db5ec Binary files /dev/null and b/blockchains/smartchain/assets/0xaa036928c9c0Df07d525B55ea8EE690Bb5a628C1/logo.png differ diff --git a/blockchains/smartchain/assets/0xaa15f52Ef3994213a9e06731F6471786B75372CC/info.json b/blockchains/smartchain/assets/0xaa15f52Ef3994213a9e06731F6471786B75372CC/info.json index f73630beaa63b..678cd6ad5fc29 100644 --- a/blockchains/smartchain/assets/0xaa15f52Ef3994213a9e06731F6471786B75372CC/info.json +++ b/blockchains/smartchain/assets/0xaa15f52Ef3994213a9e06731F6471786B75372CC/info.json @@ -13,8 +13,8 @@ "url": "https://t.me/Lil_Doge_Floki" }, { - "name": "twitter", - "url": "https://twitter.com/lildogefiokiceo" + "name": "x", + "url": "https://x.com/lildogefiokiceo" }, { "name": "coingecko", diff --git a/blockchains/smartchain/assets/0xab287e6D370C61f105630e656B5468ACB4D00423/info.json b/blockchains/smartchain/assets/0xab287e6D370C61f105630e656B5468ACB4D00423/info.json index 5c52e9078e471..ed92c8be799e0 100644 --- a/blockchains/smartchain/assets/0xab287e6D370C61f105630e656B5468ACB4D00423/info.json +++ b/blockchains/smartchain/assets/0xab287e6D370C61f105630e656B5468ACB4D00423/info.json @@ -6,12 +6,12 @@ "website": "https://binstarter.io", "description": "BSR is is a BinStarter Launchpad Token", "explorer": "https://bscscan.com/token/0xab287e6D370C61f105630e656B5468ACB4D00423", - "status": "active", + "status": "abandoned", "id": "0xab287e6D370C61f105630e656B5468ACB4D00423", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BinStarterio" + "name": "x", + "url": "https://x.com/BinStarterio" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xab287e6D370C61f105630e656B5468ACB4D00423/logo.png b/blockchains/smartchain/assets/0xab287e6D370C61f105630e656B5468ACB4D00423/logo.png deleted file mode 100644 index 0dc19cf54da64..0000000000000 Binary files a/blockchains/smartchain/assets/0xab287e6D370C61f105630e656B5468ACB4D00423/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xab2F74804C022C5249d52e743AF4340E42F5f3b6/info.json b/blockchains/smartchain/assets/0xab2F74804C022C5249d52e743AF4340E42F5f3b6/info.json new file mode 100644 index 0000000000000..a0465943f598e --- /dev/null +++ b/blockchains/smartchain/assets/0xab2F74804C022C5249d52e743AF4340E42F5f3b6/info.json @@ -0,0 +1,28 @@ +{ + "name": "Grab Holdings (Ondo Tokenized)", + "type": "BEP20", + "symbol": "GRABon", + "decimals": 18, + "description": "GRABon is the Ondo Tokenized version of Grab Holdings, giving tokenholders economic exposure similar to holding GRAB and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xab2F74804C022C5249d52e743AF4340E42F5f3b6", + "status": "active", + "id": "0xab2F74804C022C5249d52e743AF4340E42F5f3b6", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/grab-holdings-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/grab-holdings-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xab2F74804C022C5249d52e743AF4340E42F5f3b6/logo.png b/blockchains/smartchain/assets/0xab2F74804C022C5249d52e743AF4340E42F5f3b6/logo.png new file mode 100644 index 0000000000000..2a02e71a43ced Binary files /dev/null and b/blockchains/smartchain/assets/0xab2F74804C022C5249d52e743AF4340E42F5f3b6/logo.png differ diff --git a/blockchains/smartchain/assets/0xabE8E5CabE24Cb36df9540088fD7cE1175b9bc52/info.json b/blockchains/smartchain/assets/0xabE8E5CabE24Cb36df9540088fD7cE1175b9bc52/info.json new file mode 100644 index 0000000000000..80c160c7e9d32 --- /dev/null +++ b/blockchains/smartchain/assets/0xabE8E5CabE24Cb36df9540088fD7cE1175b9bc52/info.json @@ -0,0 +1,29 @@ +{ + "name": "Solv", + "type": "BEP20", + "symbol": "SOLV", + "decimals": 18, + "description": "Solv Protocol is a leading Bitcoin staking platform that utilizes SolvBTC to unlock the full potential of over $1 trillion in Bitcoin assets. By leveraging the Staking Abstraction Layer (SAL), Solv provides a seamless and transparent Bitcoin staking experience, with the goal of driving BTCFi toward mass adoption.", + "website": "https://solv.finance/?chl=CMC", + "explorer": "https://bscscan.com/token/0xabe8e5cabe24cb36df9540088fd7ce1175b9bc52", + "id": "0xabE8E5CabE24Cb36df9540088fD7cE1175b9bc52", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/SolvProtocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/solv-protocol/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/solv-protocol" + } + ], + "tags": [ + "staking" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xabE8E5CabE24Cb36df9540088fD7cE1175b9bc52/logo.png b/blockchains/smartchain/assets/0xabE8E5CabE24Cb36df9540088fD7cE1175b9bc52/logo.png new file mode 100644 index 0000000000000..9362c7fa86920 Binary files /dev/null and b/blockchains/smartchain/assets/0xabE8E5CabE24Cb36df9540088fD7cE1175b9bc52/logo.png differ diff --git a/blockchains/smartchain/assets/0xacFC95585D80Ab62f67A14C566C1b7a49Fe91167/info.json b/blockchains/smartchain/assets/0xacFC95585D80Ab62f67A14C566C1b7a49Fe91167/info.json index 4b05a0f66c777..bfe1a900f365a 100644 --- a/blockchains/smartchain/assets/0xacFC95585D80Ab62f67A14C566C1b7a49Fe91167/info.json +++ b/blockchains/smartchain/assets/0xacFC95585D80Ab62f67A14C566C1b7a49Fe91167/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/fegtoken" + "name": "x", + "url": "https://x.com/fegtoken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xacb2d47827C9813AE26De80965845D80935afd0B/info.json b/blockchains/smartchain/assets/0xacb2d47827C9813AE26De80965845D80935afd0B/info.json index fe0f0f659334e..24b67a73ffeef 100644 --- a/blockchains/smartchain/assets/0xacb2d47827C9813AE26De80965845D80935afd0B/info.json +++ b/blockchains/smartchain/assets/0xacb2d47827C9813AE26De80965845D80935afd0B/info.json @@ -10,8 +10,8 @@ "id": "0xacb2d47827C9813AE26De80965845D80935afd0B", "links": [ { - "name": "twitter", - "url": "https://twitter.com/macaronswap" + "name": "x", + "url": "https://x.com/macaronswap" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xad5cdc3340904285B8159089974A99a1A09EB4C0/info.json b/blockchains/smartchain/assets/0xad5cdc3340904285B8159089974A99a1A09EB4C0/info.json new file mode 100644 index 0000000000000..836530a0cea4d --- /dev/null +++ b/blockchains/smartchain/assets/0xad5cdc3340904285B8159089974A99a1A09EB4C0/info.json @@ -0,0 +1,24 @@ +{ + "name": "Chevron tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Chevron xStock (CVXx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. CVXx tracks the price of Chevron Corporation (the underlying). CVXx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Chevron Corporation, whilst maintaining the benefits of blockchain technology. Key Benefits Chevron Corporation is a major American multinational energy corporation, a leading global oil and gas company known for its vertically integrated operations, spanning exploration, production, refining, marketing, and transportation.", + "explorer": "https://bscscan.com/token/0xad5cdc3340904285B8159089974A99a1A09EB4C0", + "type": "BEP20", + "symbol": "CVXX", + "decimals": 18, + "status": "active", + "id": "0xad5cdc3340904285B8159089974A99a1A09EB4C0", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chevron-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xad5cdc3340904285B8159089974A99a1A09EB4C0/logo.png b/blockchains/smartchain/assets/0xad5cdc3340904285B8159089974A99a1A09EB4C0/logo.png new file mode 100644 index 0000000000000..6d22d110bd6b6 Binary files /dev/null and b/blockchains/smartchain/assets/0xad5cdc3340904285B8159089974A99a1A09EB4C0/logo.png differ diff --git a/blockchains/smartchain/assets/0xadFF8332D429E420BaC898b934E90D40Fb51121B/info.json b/blockchains/smartchain/assets/0xadFF8332D429E420BaC898b934E90D40Fb51121B/info.json new file mode 100644 index 0000000000000..791ea5719c2ad --- /dev/null +++ b/blockchains/smartchain/assets/0xadFF8332D429E420BaC898b934E90D40Fb51121B/info.json @@ -0,0 +1,18 @@ +{ + "name": "NeuroCoin NRC", + "type": "BEP20", + "symbol": "NRC", + "decimals": 18, + "description": "A cryptocurrency supporting people with cerebral palsy (CP). Symbolizing strength, resilience, and inclusivity, it funds rehabilitation, education, and CP-related projects. Every transaction builds a society where everyone feels valued, regardless of physical abilities.", + "website": "https://t.me/NeuroCoin_NRC", + "explorer": "https://bscscan.com/token/0xadff8332d429e420bac898b934e90d40fb51121b", + "id": "0xadFF8332D429E420BaC898b934E90D40Fb51121B", + "status": "active", + "links": [ + + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xadFF8332D429E420BaC898b934E90D40Fb51121B/logo.png b/blockchains/smartchain/assets/0xadFF8332D429E420BaC898b934E90D40Fb51121B/logo.png new file mode 100644 index 0000000000000..c0ded91f33d80 Binary files /dev/null and b/blockchains/smartchain/assets/0xadFF8332D429E420BaC898b934E90D40Fb51121B/logo.png differ diff --git a/blockchains/smartchain/assets/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED/info.json b/blockchains/smartchain/assets/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED/info.json new file mode 100644 index 0000000000000..86e9ee07196b7 --- /dev/null +++ b/blockchains/smartchain/assets/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED/info.json @@ -0,0 +1,15 @@ +{ + "name": "Bitmine xStock", + "type": "BEP20", + "symbol": "BMNRx", + "decimals": 18, + "description": "Bitmine xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED", + "status": "active", + "id": "0xaeB681B69E5094E04d11BCeF51A71358A374C3ED", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED/logo.png b/blockchains/smartchain/assets/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED/logo.png new file mode 100644 index 0000000000000..fb7784c71a3a4 Binary files /dev/null and b/blockchains/smartchain/assets/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED/logo.png differ diff --git a/blockchains/smartchain/assets/0xaeE433ADeBe0FBB88dAa47eF0C1A513CaA52EF02/info.json b/blockchains/smartchain/assets/0xaeE433ADeBe0FBB88dAa47eF0C1A513CaA52EF02/info.json index 24a8f9f5de3d8..7138602a5c844 100644 --- a/blockchains/smartchain/assets/0xaeE433ADeBe0FBB88dAa47eF0C1A513CaA52EF02/info.json +++ b/blockchains/smartchain/assets/0xaeE433ADeBe0FBB88dAa47eF0C1A513CaA52EF02/info.json @@ -4,8 +4,8 @@ "description": "Cross-chain liquidity mirror protocol", "links": [ { - "name": "twitter", - "url": "https://twitter.com/pontoonfi/" + "name": "x", + "url": "https://x.com/pontoonfi/" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xb020805e0Bc7F0e353D1343d67A239F417D57Bbf/info.json b/blockchains/smartchain/assets/0xb020805e0Bc7F0e353D1343d67A239F417D57Bbf/info.json new file mode 100644 index 0000000000000..860ed0fb0d0b4 --- /dev/null +++ b/blockchains/smartchain/assets/0xb020805e0Bc7F0e353D1343d67A239F417D57Bbf/info.json @@ -0,0 +1,21 @@ +{ + "name": "Krypton DAO", + "type": "BEP20", + "symbol": "KRD", + "decimals": 18, + "website": "https://krypton.homes/#/index", + "description": "Krypton DAO is the world's first decentralized community alliance platform that adopts DAO governance", + "explorer": "https://www.bscscan.com/token/0xb020805e0bc7f0e353d1343d67a239f417d57bbf", + "status": "active", + "id": "0xb020805e0Bc7F0e353D1343d67A239F417D57Bbf", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/krypton-dao" + }, + { + "name": "x", + "url": "https://x.com/kryptonhomes" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb020805e0Bc7F0e353D1343d67A239F417D57Bbf/logo.png b/blockchains/smartchain/assets/0xb020805e0Bc7F0e353D1343d67A239F417D57Bbf/logo.png new file mode 100644 index 0000000000000..cd61c329295fc Binary files /dev/null and b/blockchains/smartchain/assets/0xb020805e0Bc7F0e353D1343d67A239F417D57Bbf/logo.png differ diff --git a/blockchains/smartchain/assets/0xb034f6Cb52b7f2Fd5a7EeeffCa6b9aDCD6b9A6F6/info.json b/blockchains/smartchain/assets/0xb034f6Cb52b7f2Fd5a7EeeffCa6b9aDCD6b9A6F6/info.json new file mode 100644 index 0000000000000..5046d2a8e23e4 --- /dev/null +++ b/blockchains/smartchain/assets/0xb034f6Cb52b7f2Fd5a7EeeffCa6b9aDCD6b9A6F6/info.json @@ -0,0 +1,24 @@ +{ + "name": "ASML Holding NV (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "ASMLon is the Ondo Tokenized version of ASML Holding NV, giving tokenholders economic exposure similar to holding ASML and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xb034f6cb52b7f2fd5a7eeeffca6b9adcd6b9a6f6", + "type": "BEP20", + "symbol": "ASMLon", + "decimals": 18, + "status": "active", + "id": "0xb034f6Cb52b7f2Fd5a7EeeffCa6b9aDCD6b9A6F6", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/asml-holding-nv-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb034f6Cb52b7f2Fd5a7EeeffCa6b9aDCD6b9A6F6/logo.png b/blockchains/smartchain/assets/0xb034f6Cb52b7f2Fd5a7EeeffCa6b9aDCD6b9A6F6/logo.png new file mode 100644 index 0000000000000..5b23d9aa4a0a0 Binary files /dev/null and b/blockchains/smartchain/assets/0xb034f6Cb52b7f2Fd5a7EeeffCa6b9aDCD6b9A6F6/logo.png differ diff --git a/blockchains/smartchain/assets/0xb07905396A419B121213efe1d17cfD0ff20aE597/info.json b/blockchains/smartchain/assets/0xb07905396A419B121213efe1d17cfD0ff20aE597/info.json index 911eabadd8046..b47f57f092669 100644 --- a/blockchains/smartchain/assets/0xb07905396A419B121213efe1d17cfD0ff20aE597/info.json +++ b/blockchains/smartchain/assets/0xb07905396A419B121213efe1d17cfD0ff20aE597/info.json @@ -21,8 +21,8 @@ "url": "https://coinmarketcap.com/currencies/pizzanft/" }, { - "name": "twitter", - "url": "https://twitter.com/pizzaNFT2E" + "name": "x", + "url": "https://x.com/pizzaNFT2E" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb1957BDbA889686EbdE631DF970ecE6A7571A1B6/info.json b/blockchains/smartchain/assets/0xb1957BDbA889686EbdE631DF970ecE6A7571A1B6/info.json index 01425d7dd0c72..3b9d51d2c8d4e 100644 --- a/blockchains/smartchain/assets/0xb1957BDbA889686EbdE631DF970ecE6A7571A1B6/info.json +++ b/blockchains/smartchain/assets/0xb1957BDbA889686EbdE631DF970ecE6A7571A1B6/info.json @@ -17,8 +17,8 @@ "url": "https://t.me/DefiTigertoken" }, { - "name": "twitter", - "url": "https://twitter.com/defitigertoken" + "name": "x", + "url": "https://x.com/defitigertoken" }, { "name": "coinmarketcap", @@ -29,4 +29,4 @@ "url": "https://coingecko.com/en/coins/defi-tiger/" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb1ABA049C42B6fe811766EBA61F51f11C57acC4b/info.json b/blockchains/smartchain/assets/0xb1ABA049C42B6fe811766EBA61F51f11C57acC4b/info.json new file mode 100644 index 0000000000000..7a39fe48f1a80 --- /dev/null +++ b/blockchains/smartchain/assets/0xb1ABA049C42B6fe811766EBA61F51f11C57acC4b/info.json @@ -0,0 +1,28 @@ +{ + "name": "Ford Motor (Ondo Tokenized)", + "type": "BEP20", + "symbol": "Fon", + "decimals": 18, + "description": "Fon is the Ondo Tokenized version of Ford Motor, giving tokenholders economic exposure similar to holding F and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xb1ABA049C42B6fe811766EBA61F51f11C57acC4b", + "status": "active", + "id": "0xb1ABA049C42B6fe811766EBA61F51f11C57acC4b", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ford-motor-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ford-motor-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb1ABA049C42B6fe811766EBA61F51f11C57acC4b/logo.png b/blockchains/smartchain/assets/0xb1ABA049C42B6fe811766EBA61F51f11C57acC4b/logo.png new file mode 100644 index 0000000000000..32e8069f94a24 Binary files /dev/null and b/blockchains/smartchain/assets/0xb1ABA049C42B6fe811766EBA61F51f11C57acC4b/logo.png differ diff --git a/blockchains/smartchain/assets/0xb1BB14F81F2154b1C1ac2A4867ACea342A2f7777/info.json b/blockchains/smartchain/assets/0xb1BB14F81F2154b1C1ac2A4867ACea342A2f7777/info.json new file mode 100644 index 0000000000000..4e14579e95925 --- /dev/null +++ b/blockchains/smartchain/assets/0xb1BB14F81F2154b1C1ac2A4867ACea342A2f7777/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE JETMAX", + "type": "BEP20", + "symbol": "FAKE JET", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xb1BB14F81F2154b1C1ac2A4867ACea342A2f7777", + "explorer": "https://bscscan.com/token/0xb1BB14F81F2154b1C1ac2A4867ACea342A2f7777", + "status": "spam", + "id": "0xb1BB14F81F2154b1C1ac2A4867ACea342A2f7777" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb21225F833f2Fb1BE7d88Ee5347aae001F5b5DB1/info.json b/blockchains/smartchain/assets/0xb21225F833f2Fb1BE7d88Ee5347aae001F5b5DB1/info.json index e966723ce4ddf..87059591ee18c 100644 --- a/blockchains/smartchain/assets/0xb21225F833f2Fb1BE7d88Ee5347aae001F5b5DB1/info.json +++ b/blockchains/smartchain/assets/0xb21225F833f2Fb1BE7d88Ee5347aae001F5b5DB1/info.json @@ -10,8 +10,8 @@ "id": "0xb21225F833f2Fb1BE7d88Ee5347aae001F5b5DB1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/smart_spay" + "name": "x", + "url": "https://x.com/smart_spay" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xb2343143f814639c9b1f42961C698247171dF34a/info.json b/blockchains/smartchain/assets/0xb2343143f814639c9b1f42961C698247171dF34a/info.json index 7653780da671e..3f0f393977a4a 100644 --- a/blockchains/smartchain/assets/0xb2343143f814639c9b1f42961C698247171dF34a/info.json +++ b/blockchains/smartchain/assets/0xb2343143f814639c9b1f42961C698247171dF34a/info.json @@ -10,8 +10,8 @@ "id": "0xb2343143f814639c9b1f42961C698247171dF34a", "links": [ { - "name": "twitter", - "url": "https://twitter.com/COREMultichain" + "name": "x", + "url": "https://x.com/COREMultichain" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xb26D2d67C7652f361b73552310dA5753041b3867/info.json b/blockchains/smartchain/assets/0xb26D2d67C7652f361b73552310dA5753041b3867/info.json index 1d03878626715..b46ce16b712f1 100644 --- a/blockchains/smartchain/assets/0xb26D2d67C7652f361b73552310dA5753041b3867/info.json +++ b/blockchains/smartchain/assets/0xb26D2d67C7652f361b73552310dA5753041b3867/info.json @@ -10,8 +10,8 @@ "id": "0xb26D2d67C7652f361b73552310dA5753041b3867", "links": [ { - "name": "twitter", - "url": "https://twitter.com/binapet" + "name": "x", + "url": "https://x.com/binapet" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0xb31f5d117541825D6692c10e4357008EDF3E2BCD/info.json b/blockchains/smartchain/assets/0xb31f5d117541825D6692c10e4357008EDF3E2BCD/info.json index 718150f221157..8f50471777aeb 100644 --- a/blockchains/smartchain/assets/0xb31f5d117541825D6692c10e4357008EDF3E2BCD/info.json +++ b/blockchains/smartchain/assets/0xb31f5d117541825D6692c10e4357008EDF3E2BCD/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/CreamFi" }, { - "name": "twitter", - "url": "https://twitter.com/CreamdotFinance" + "name": "x", + "url": "https://x.com/CreamdotFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xb32aC3C79A94aC1eb258f3C830bBDbc676483c93/info.json b/blockchains/smartchain/assets/0xb32aC3C79A94aC1eb258f3C830bBDbc676483c93/info.json index 11ba00d8838db..710f5be34f1e9 100644 --- a/blockchains/smartchain/assets/0xb32aC3C79A94aC1eb258f3C830bBDbc676483c93/info.json +++ b/blockchains/smartchain/assets/0xb32aC3C79A94aC1eb258f3C830bBDbc676483c93/info.json @@ -10,8 +10,8 @@ "id": "0xb32aC3C79A94aC1eb258f3C830bBDbc676483c93", "links": [ { - "name": "twitter", - "url": "https://twitter.com/openswapdex" + "name": "x", + "url": "https://x.com/openswapdex" }, { "name": "blog", diff --git a/blockchains/smartchain/assets/0xb358b0e5A8943029e66175830D85198fE6cC93f6/info.json b/blockchains/smartchain/assets/0xb358b0e5A8943029e66175830D85198fE6cC93f6/info.json index 1d7874f19e3ab..2b93dcce7286a 100644 --- a/blockchains/smartchain/assets/0xb358b0e5A8943029e66175830D85198fE6cC93f6/info.json +++ b/blockchains/smartchain/assets/0xb358b0e5A8943029e66175830D85198fE6cC93f6/info.json @@ -10,8 +10,8 @@ "id": "0xb358b0e5A8943029e66175830D85198fE6cC93f6", "links": [ { - "name": "twitter", - "url": "https://twitter.com/AidiToken" + "name": "x", + "url": "https://x.com/AidiToken" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xb365Cd2588065F522D379AD19e903304f6B622C6/info.json b/blockchains/smartchain/assets/0xb365Cd2588065F522D379AD19e903304f6B622C6/info.json new file mode 100644 index 0000000000000..fcd605328a550 --- /dev/null +++ b/blockchains/smartchain/assets/0xb365Cd2588065F522D379AD19e903304f6B622C6/info.json @@ -0,0 +1,24 @@ +{ + "name": "Mastercard tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Mastercard xStock (MAx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. MAx tracks the price of Mastercard Inc. (the underlying). MAx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Mastercard Inc., whilst maintaining the benefits of blockchain technology. Mastercard Inc. is a global payments and technology company that facilitates electronic payments by connecting consumers, financial institutions, merchants, governments, and businesses worldwide.", + "explorer": "https://bscscan.com/token/0xb365Cd2588065F522D379AD19e903304f6B622C6", + "type": "BEP20", + "symbol": "MAX", + "decimals": 18, + "status": "active", + "id": "0xb365Cd2588065F522D379AD19e903304f6B622C6", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mastercard-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb365Cd2588065F522D379AD19e903304f6B622C6/logo.png b/blockchains/smartchain/assets/0xb365Cd2588065F522D379AD19e903304f6B622C6/logo.png new file mode 100644 index 0000000000000..85dccc98f3df9 Binary files /dev/null and b/blockchains/smartchain/assets/0xb365Cd2588065F522D379AD19e903304f6B622C6/logo.png differ diff --git a/blockchains/smartchain/assets/0xb39Ad6493068a0Aa1f59f73Af48d7cB777418888/info.json b/blockchains/smartchain/assets/0xb39Ad6493068a0Aa1f59f73Af48d7cB777418888/info.json new file mode 100644 index 0000000000000..60bd1e5a1b1cc --- /dev/null +++ b/blockchains/smartchain/assets/0xb39Ad6493068a0Aa1f59f73Af48d7cB777418888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xb39Ad6493068a0Aa1f59f73Af48d7cB777418888", + "explorer": "https://bscscan.com/token/0xb39Ad6493068a0Aa1f59f73Af48d7cB777418888", + "status": "spam", + "id": "0xb39Ad6493068a0Aa1f59f73Af48d7cB777418888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb3Cb6d2f8f2FDe203a022201C81a96c167607F15/info.json b/blockchains/smartchain/assets/0xb3Cb6d2f8f2FDe203a022201C81a96c167607F15/info.json index 4d7b70b1b159f..aab9daf3c0864 100644 --- a/blockchains/smartchain/assets/0xb3Cb6d2f8f2FDe203a022201C81a96c167607F15/info.json +++ b/blockchains/smartchain/assets/0xb3Cb6d2f8f2FDe203a022201C81a96c167607F15/info.json @@ -14,12 +14,12 @@ "url": "https://t.me/planet_finance" }, { - "name": "twitter", - "url": "https://twitter.com/planet_finance" + "name": "x", + "url": "https://x.com/planet_finance" }, { "name": "discord", "url": "https://discord.com/invite/FD5vHyh9Rv" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb3Ed0A426155B79B898849803E3B36552f7ED507/info.json b/blockchains/smartchain/assets/0xb3Ed0A426155B79B898849803E3B36552f7ED507/info.json new file mode 100644 index 0000000000000..7753f49e8f129 --- /dev/null +++ b/blockchains/smartchain/assets/0xb3Ed0A426155B79B898849803E3B36552f7ED507/info.json @@ -0,0 +1,33 @@ +{ + "name": "Pendle", + "website": "https://www.pendle.finance/", + "description": "Pendle is a protocol for people to trade and hedge yield. Users can tokenize yield and trade them on Pendle's AMM", + "explorer": "https://bscscan.com/token/0xb3Ed0A426155B79B898849803E3B36552f7ED507", + "type": "BEP20", + "symbol": "PENDLE", + "decimals": 18, + "status": "active", + "id": "0xb3Ed0A426155B79B898849803E3B36552f7ED507", + "links": [ + { + "name": "github", + "url": "https://github.com/pendle-finance" + }, + { + "name": "x", + "url": "https://x.com/pendle_fi" + }, + { + "name": "docs", + "url": "https://docs.pendle.finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pendle" + }, + { + "name": "discord", + "url": "https://discord.com/invite/9x9VUngNZD" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb3Ed0A426155B79B898849803E3B36552f7ED507/logo.png b/blockchains/smartchain/assets/0xb3Ed0A426155B79B898849803E3B36552f7ED507/logo.png new file mode 100644 index 0000000000000..4f5c2f60ea7d5 Binary files /dev/null and b/blockchains/smartchain/assets/0xb3Ed0A426155B79B898849803E3B36552f7ED507/logo.png differ diff --git a/blockchains/smartchain/assets/0xb3d691125514Db7a5bE3326af86a72ecdC2CDE16/info.json b/blockchains/smartchain/assets/0xb3d691125514Db7a5bE3326af86a72ecdC2CDE16/info.json index da932ebb9910f..fdf8a9ac03a61 100644 --- a/blockchains/smartchain/assets/0xb3d691125514Db7a5bE3326af86a72ecdC2CDE16/info.json +++ b/blockchains/smartchain/assets/0xb3d691125514Db7a5bE3326af86a72ecdC2CDE16/info.json @@ -10,8 +10,8 @@ "id": "0xb3d691125514Db7a5bE3326af86a72ecdC2CDE16", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ZooToken_BSC" + "name": "x", + "url": "https://x.com/ZooToken_BSC" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0xb427e47e8fDD678278d2A91EEaC014ffcDDaF029/info.json b/blockchains/smartchain/assets/0xb427e47e8fDD678278d2A91EEaC014ffcDDaF029/info.json new file mode 100644 index 0000000000000..011cec9d10bc7 --- /dev/null +++ b/blockchains/smartchain/assets/0xb427e47e8fDD678278d2A91EEaC014ffcDDaF029/info.json @@ -0,0 +1,80 @@ +{ + "name": "Agatech", + "type": "BEP20", + "symbol": "AGATA", + "decimals": 18, + "website": "https://agatech.io", + "description": "Agata Token transcends the typical role of a cryptocurrency, embodying the foundation of the Agatech ecosystem. Ingeniously designed for diverse utility, it stands as the key currency for governance, staking, and accessing a variety of services within the Agatech network.", + "explorer": "https://bscscan.com/token/0xb427e47e8fDD678278d2A91EEaC014ffcDDaF029", + "status": "abandoned", + "id": "0xb427e47e8fDD678278d2A91EEaC014ffcDDaF029", + "links": [ + { + "name": "x", + "url": "https://x.com/agatechsystems" + }, + { + "name": "github", + "url": "https://github.com/AgaTechSystems/" + }, + { + "name": "telegram", + "url": "https://t.me/agatechsystems" + }, + { + "name": "telegram_news", + "url": "https://t.me/agatechsystemsnews" + }, + { + "name": "blog", + "url": "https://www.twitch.tv/agatechlive" + }, + { + "name": "whitepaper", + "url": "https://agatech.gitbook.io/agatech-whitepaper" + }, + { + "name": "discord", + "url": "https://discord.com/invite/deT9GBqunR" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Agatech_Agata/" + }, + { + "name": "medium", + "url": "https://agatech.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/@AgatechYT" + }, + { + "name": "facebook", + "url": "https://facebook.com/AgaTechSystems/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/agatech/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/agatech" + }, + { + "name": "docs", + "url": "https://agatech.gitbook.io/agatech-whitepaper/the-agatech-ecosystem-components-and-innovations" + }, + { + "name": "source_code", + "url": "https://github.com/AgaTechSystems/Agata/blob/main/Agatech.sol" + }, + { + "name": "forum", + "url": "https://t.me/agatechsystemsnews" + } + ], + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb4357054c3dA8D46eD642383F03139aC7f090343/info.json b/blockchains/smartchain/assets/0xb4357054c3dA8D46eD642383F03139aC7f090343/info.json new file mode 100644 index 0000000000000..5fabd0a5deb1b --- /dev/null +++ b/blockchains/smartchain/assets/0xb4357054c3dA8D46eD642383F03139aC7f090343/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT Port3 Network", + "type": "BEP20", + "symbol": "HONEYPOT PORT3", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xb4357054c3dA8D46eD642383F03139aC7f090343", + "explorer": "https://bscscan.com/token/0xb4357054c3dA8D46eD642383F03139aC7f090343", + "status": "spam", + "id": "0xb4357054c3dA8D46eD642383F03139aC7f090343" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb4404DaB7C0eC48b428Cf37DeC7fb628bcC41B36/info.json b/blockchains/smartchain/assets/0xb4404DaB7C0eC48b428Cf37DeC7fb628bcC41B36/info.json index d23e1a838132b..a0fb25f71d9ff 100644 --- a/blockchains/smartchain/assets/0xb4404DaB7C0eC48b428Cf37DeC7fb628bcC41B36/info.json +++ b/blockchains/smartchain/assets/0xb4404DaB7C0eC48b428Cf37DeC7fb628bcC41B36/info.json @@ -10,8 +10,8 @@ "id": "0xb4404DaB7C0eC48b428Cf37DeC7fb628bcC41B36", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MetaGearGame" + "name": "x", + "url": "https://x.com/MetaGearGame" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xb46584e0efdE3092e04010A13f2eAe62aDb3b9F0/info.json b/blockchains/smartchain/assets/0xb46584e0efdE3092e04010A13f2eAe62aDb3b9F0/info.json index cffb07c86b613..6dd720fd5b623 100644 --- a/blockchains/smartchain/assets/0xb46584e0efdE3092e04010A13f2eAe62aDb3b9F0/info.json +++ b/blockchains/smartchain/assets/0xb46584e0efdE3092e04010A13f2eAe62aDb3b9F0/info.json @@ -10,8 +10,8 @@ "id": "0xb46584e0efdE3092e04010A13f2eAe62aDb3b9F0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Pepecoin_BSC2" + "name": "x", + "url": "https://x.com/Pepecoin_BSC2" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xb4D695569236273745B4CD54B539b1b9Cc1513af/info.json b/blockchains/smartchain/assets/0xb4D695569236273745B4CD54B539b1b9Cc1513af/info.json new file mode 100644 index 0000000000000..06fec4441f36c --- /dev/null +++ b/blockchains/smartchain/assets/0xb4D695569236273745B4CD54B539b1b9Cc1513af/info.json @@ -0,0 +1,24 @@ +{ + "name": "Rocket Lab (Ondo Tokenized)", + "type": "BEP20", + "symbol": "RKLBon", + "decimals": 18, + "description": "RKLBon is the Ondo Tokenized version of Rocket Lab, giving tokenholders economic exposure similar to holding RKLB and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xb4D695569236273745B4CD54B539b1b9Cc1513af", + "status": "active", + "id": "0xb4D695569236273745B4CD54B539b1b9Cc1513af", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/rocket-lab-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb4D695569236273745B4CD54B539b1b9Cc1513af/logo.png b/blockchains/smartchain/assets/0xb4D695569236273745B4CD54B539b1b9Cc1513af/logo.png new file mode 100644 index 0000000000000..38f63fa312de6 Binary files /dev/null and b/blockchains/smartchain/assets/0xb4D695569236273745B4CD54B539b1b9Cc1513af/logo.png differ diff --git a/blockchains/smartchain/assets/0xb4E14166F6dE109f800C52A84a434C383137C8dC/info.json b/blockchains/smartchain/assets/0xb4E14166F6dE109f800C52A84a434C383137C8dC/info.json new file mode 100644 index 0000000000000..8367a9c91eccf --- /dev/null +++ b/blockchains/smartchain/assets/0xb4E14166F6dE109f800C52A84a434C383137C8dC/info.json @@ -0,0 +1,40 @@ +{ + "name": "Payvertise", + "type": "BEP20", + "symbol": "PVT", + "decimals": 18, + "website": "https://Payvertise.com", + "description": "Payvertise is a blockchain-based digital advertising platform that integrates cryptocurrency and NFTs, offering a unique revenue-sharing model for token holders and innovative advertising solutions.", + "explorer": "https://bscscan.com/token/0xb4E14166F6dE109f800C52A84a434C383137C8dC", + "status": "active", + "id": "0xb4E14166F6dE109f800C52A84a434C383137C8dC", + "links": [ + { + "name": "x", + "url": "https://x.com/payvertise_" + }, + { + "name": "github", + "url": "https://github.com/payvertise" + }, + { + "name": "telegram", + "url": "https://t.me/payvertisechat" + }, + { + "name": "telegram_news", + "url": "https://t.me/payvertiseann" + }, + { + "name": "blog", + "url": "https://medium.payvertise.com" + }, + { + "name": "docs", + "url": "https://docs.payvertise.com" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb4E14166F6dE109f800C52A84a434C383137C8dC/logo.png b/blockchains/smartchain/assets/0xb4E14166F6dE109f800C52A84a434C383137C8dC/logo.png new file mode 100644 index 0000000000000..8bef532c45d04 Binary files /dev/null and b/blockchains/smartchain/assets/0xb4E14166F6dE109f800C52A84a434C383137C8dC/logo.png differ diff --git a/blockchains/smartchain/assets/0xb568922CE28142A70CE3D108BD3Da20B285CAb81/info.json b/blockchains/smartchain/assets/0xb568922CE28142A70CE3D108BD3Da20B285CAb81/info.json new file mode 100644 index 0000000000000..1168aa3e5b2ed --- /dev/null +++ b/blockchains/smartchain/assets/0xb568922CE28142A70CE3D108BD3Da20B285CAb81/info.json @@ -0,0 +1,14 @@ +{ + "name": "Jamal the Camel", + "type": "BEP20", + "symbol": "JAMAL", + "decimals": 18, + "website": "https://four.meme/token/0xb568922CE28142A70CE3D108BD3Da20B285CAb81", + "description": "Jamal the legendary camel of Mubarak", + "explorer": "https://bscscan.com/token/0xb568922CE28142A70CE3D108BD3Da20B285CAb81", + "status": "active", + "id": "0xb568922CE28142A70CE3D108BD3Da20B285CAb81", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb568922CE28142A70CE3D108BD3Da20B285CAb81/logo.png b/blockchains/smartchain/assets/0xb568922CE28142A70CE3D108BD3Da20B285CAb81/logo.png new file mode 100644 index 0000000000000..6043d5b485617 Binary files /dev/null and b/blockchains/smartchain/assets/0xb568922CE28142A70CE3D108BD3Da20B285CAb81/logo.png differ diff --git a/blockchains/smartchain/assets/0xb59490aB09A0f526Cc7305822aC65f2Ab12f9723/info.json b/blockchains/smartchain/assets/0xb59490aB09A0f526Cc7305822aC65f2Ab12f9723/info.json index 67488a058c3b4..208a6fc898631 100644 --- a/blockchains/smartchain/assets/0xb59490aB09A0f526Cc7305822aC65f2Ab12f9723/info.json +++ b/blockchains/smartchain/assets/0xb59490aB09A0f526Cc7305822aC65f2Ab12f9723/info.json @@ -10,8 +10,8 @@ "id": "0xb59490aB09A0f526Cc7305822aC65f2Ab12f9723", "links": [ { - "name": "twitter", - "url": "https://twitter.com/litentry" + "name": "x", + "url": "https://x.com/litentry" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xb5BBA78B4dF2D47DD46078514a3e296AB3c344Fe/info.json b/blockchains/smartchain/assets/0xb5BBA78B4dF2D47DD46078514a3e296AB3c344Fe/info.json index a2e0e75247fef..8371f3ef3ba9e 100644 --- a/blockchains/smartchain/assets/0xb5BBA78B4dF2D47DD46078514a3e296AB3c344Fe/info.json +++ b/blockchains/smartchain/assets/0xb5BBA78B4dF2D47DD46078514a3e296AB3c344Fe/info.json @@ -18,8 +18,8 @@ "url": "https://coingecko.com/en/coins/hertz-network" }, { - "name": "twitter", - "url": "https://twitter.com/hertz_network" + "name": "x", + "url": "https://x.com/hertz_network" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0xb6090a50f66046E3c6aFB9311846a6432E45060A/info.json b/blockchains/smartchain/assets/0xb6090a50f66046E3c6aFB9311846a6432E45060A/info.json index 83b4a89d6df2a..605db7533db9a 100644 --- a/blockchains/smartchain/assets/0xb6090a50f66046E3c6aFB9311846a6432E45060A/info.json +++ b/blockchains/smartchain/assets/0xb6090a50f66046E3c6aFB9311846a6432E45060A/info.json @@ -10,8 +10,8 @@ "id": "0xb6090a50f66046E3c6aFB9311846a6432E45060A", "links": [ { - "name": "twitter", - "url": "https://twitter.com/pinkmoonfinance" + "name": "x", + "url": "https://x.com/pinkmoonfinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xb626213cb1D52Caa1eD71e2a0e62c0113eD8d642/info.json b/blockchains/smartchain/assets/0xb626213cb1D52Caa1eD71e2a0e62c0113eD8d642/info.json index de063e2c50a44..3e40e435e6d2f 100644 --- a/blockchains/smartchain/assets/0xb626213cb1D52Caa1eD71e2a0e62c0113eD8d642/info.json +++ b/blockchains/smartchain/assets/0xb626213cb1D52Caa1eD71e2a0e62c0113eD8d642/info.json @@ -10,8 +10,8 @@ "id": "0xb626213cb1D52Caa1eD71e2a0e62c0113eD8d642", "links": [ { - "name": "twitter", - "url": "https://twitter.com/HUGHUG_coin" + "name": "x", + "url": "https://x.com/HUGHUG_coin" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xb63EFBc28860c8097e341DE1fCF59456161E9D98/info.json b/blockchains/smartchain/assets/0xb63EFBc28860c8097e341DE1fCF59456161E9D98/info.json new file mode 100644 index 0000000000000..1555589ff9761 --- /dev/null +++ b/blockchains/smartchain/assets/0xb63EFBc28860c8097e341DE1fCF59456161E9D98/info.json @@ -0,0 +1,20 @@ +{ + "name": "Sandisk Corporation xStock", + "type": "BEP20", + "symbol": "SNDKx", + "decimals": 18, + "description": "Sandisk Corporation xStock (SNDKx) is a tracker certificate issued as a freely transferable token on selected blockchains. SNDKx tracks the price of Sandisk Corporation. SNDKx is designed to give eligible investors regulatory-compliant access to the stock price of Sandisk Corporation, whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0xb63EFBc28860c8097e341DE1fCF59456161E9D98", + "status": "active", + "id": "0xb63EFBc28860c8097e341DE1fCF59456161E9D98", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb63EFBc28860c8097e341DE1fCF59456161E9D98/logo.png b/blockchains/smartchain/assets/0xb63EFBc28860c8097e341DE1fCF59456161E9D98/logo.png new file mode 100644 index 0000000000000..7355d42e23442 Binary files /dev/null and b/blockchains/smartchain/assets/0xb63EFBc28860c8097e341DE1fCF59456161E9D98/logo.png differ diff --git a/blockchains/smartchain/assets/0xb6ADB74efb5801160Ff749b1985Fd3bD5000e938/info.json b/blockchains/smartchain/assets/0xb6ADB74efb5801160Ff749b1985Fd3bD5000e938/info.json index f080240514d44..c197334fbff82 100644 --- a/blockchains/smartchain/assets/0xb6ADB74efb5801160Ff749b1985Fd3bD5000e938/info.json +++ b/blockchains/smartchain/assets/0xb6ADB74efb5801160Ff749b1985Fd3bD5000e938/info.json @@ -10,8 +10,8 @@ "id": "0xb6ADB74efb5801160Ff749b1985Fd3bD5000e938", "links": [ { - "name": "twitter", - "url": "https://twitter.com/gamezone_app" + "name": "x", + "url": "https://x.com/gamezone_app" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0xb6C53431608E626AC81a9776ac3e999c5556717c/info.json b/blockchains/smartchain/assets/0xb6C53431608E626AC81a9776ac3e999c5556717c/info.json index 1847c930472ec..2ce2983ecaddc 100644 --- a/blockchains/smartchain/assets/0xb6C53431608E626AC81a9776ac3e999c5556717c/info.json +++ b/blockchains/smartchain/assets/0xb6C53431608E626AC81a9776ac3e999c5556717c/info.json @@ -10,8 +10,8 @@ "id": "0xb6C53431608E626AC81a9776ac3e999c5556717c", "links": [ { - "name": "twitter", - "url": "https://twitter.com/pNetworkDeFi" + "name": "x", + "url": "https://x.com/pNetworkDeFi" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xb75A7E8876Df49a74CC4c76C6bDA161a8EA4B483/info.json b/blockchains/smartchain/assets/0xb75A7E8876Df49a74CC4c76C6bDA161a8EA4B483/info.json new file mode 100644 index 0000000000000..4a6147ad66d8e --- /dev/null +++ b/blockchains/smartchain/assets/0xb75A7E8876Df49a74CC4c76C6bDA161a8EA4B483/info.json @@ -0,0 +1,17 @@ +{ + "name": "Palu", + "website": "https://four.meme/token/0xb75a7e8876df49a74cc4c76c6bda161a8ea4b483", + "description": "Meme king Palulu. $Palu also become Binance’s new mascot.", + "explorer": "https://bscscan.com/token/0xb75A7E8876Df49a74CC4c76C6bDA161a8EA4B483", + "type": "BEP20", + "symbol": "Palu", + "decimals": 18, + "status": "active", + "id": "0xb75A7E8876Df49a74CC4c76C6bDA161a8EA4B483", + "links": [ + { + "name": "x", + "url": "https://x.com/palulu_cto" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb75A7E8876Df49a74CC4c76C6bDA161a8EA4B483/logo.png b/blockchains/smartchain/assets/0xb75A7E8876Df49a74CC4c76C6bDA161a8EA4B483/logo.png new file mode 100644 index 0000000000000..4e05bbad45695 Binary files /dev/null and b/blockchains/smartchain/assets/0xb75A7E8876Df49a74CC4c76C6bDA161a8EA4B483/logo.png differ diff --git a/blockchains/smartchain/assets/0xb78e41AE7fc8121978168557bB096e1A858be2Ea/info.json b/blockchains/smartchain/assets/0xb78e41AE7fc8121978168557bB096e1A858be2Ea/info.json index 8fd1add9381af..7d94a20401613 100644 --- a/blockchains/smartchain/assets/0xb78e41AE7fc8121978168557bB096e1A858be2Ea/info.json +++ b/blockchains/smartchain/assets/0xb78e41AE7fc8121978168557bB096e1A858be2Ea/info.json @@ -17,8 +17,8 @@ "url": "https://t.me/MicroshibaEN" }, { - "name": "twitter", - "url": "https://twitter.com/MicroShibaBSC" + "name": "x", + "url": "https://x.com/MicroShibaBSC" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0xb7F8Cd00C5A06c0537E2aBfF0b58033d02e5E094/info.json b/blockchains/smartchain/assets/0xb7F8Cd00C5A06c0537E2aBfF0b58033d02e5E094/info.json index 703a5c5a9e635..25157df8f1a86 100644 --- a/blockchains/smartchain/assets/0xb7F8Cd00C5A06c0537E2aBfF0b58033d02e5E094/info.json +++ b/blockchains/smartchain/assets/0xb7F8Cd00C5A06c0537E2aBfF0b58033d02e5E094/info.json @@ -18,8 +18,8 @@ "url": "https://github.com/paxosglobal/pax-contracts" }, { - "name": "twitter", - "url": "https://twitter.com/PaxosStandard" + "name": "x", + "url": "https://x.com/PaxosStandard" }, { "name": "blog", diff --git a/blockchains/smartchain/assets/0xb7b36CA86685Af52186f1f9394e91d115A9Da654/info.json b/blockchains/smartchain/assets/0xb7b36CA86685Af52186f1f9394e91d115A9Da654/info.json new file mode 100644 index 0000000000000..4e340fec303e8 --- /dev/null +++ b/blockchains/smartchain/assets/0xb7b36CA86685Af52186f1f9394e91d115A9Da654/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT Hamster", + "type": "BEP20", + "symbol": "HONEYPOT HAM", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/address/0xb7b36CA86685Af52186f1f9394e91d115A9Da654", + "explorer": "https://bscscan.com/address/0xb7b36CA86685Af52186f1f9394e91d115A9Da654", + "status": "spam", + "id": "0xb7b36CA86685Af52186f1f9394e91d115A9Da654" +} diff --git a/blockchains/smartchain/assets/0xb7e2E3eF9F5c6b72a162FFc76382e4477A44D913/info.json b/blockchains/smartchain/assets/0xb7e2E3eF9F5c6b72a162FFc76382e4477A44D913/info.json new file mode 100644 index 0000000000000..21cbb5c7ceb8f --- /dev/null +++ b/blockchains/smartchain/assets/0xb7e2E3eF9F5c6b72a162FFc76382e4477A44D913/info.json @@ -0,0 +1,20 @@ +{ + "name": "KLA Corporation xStock", + "type": "BEP20", + "symbol": "KLACx", + "decimals": 18, + "description": "KLA Corporation xStock (KLACx) is a tracker certificate issued as a freely transferable token on selected blockchains. KLACx tracks the price of KLA Corporation. KLACx is designed to give eligible investors regulatory-compliant access to the stock price of KLA Corporation, whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0xb7e2E3eF9F5c6b72a162FFc76382e4477A44D913", + "status": "active", + "id": "0xb7e2E3eF9F5c6b72a162FFc76382e4477A44D913", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb7e2E3eF9F5c6b72a162FFc76382e4477A44D913/logo.png b/blockchains/smartchain/assets/0xb7e2E3eF9F5c6b72a162FFc76382e4477A44D913/logo.png new file mode 100644 index 0000000000000..55208b60dd267 Binary files /dev/null and b/blockchains/smartchain/assets/0xb7e2E3eF9F5c6b72a162FFc76382e4477A44D913/logo.png differ diff --git a/blockchains/smartchain/assets/0xb8167C0E58f4Ca0Ec7a6D967a8d138F05b3A981F/info.json b/blockchains/smartchain/assets/0xb8167C0E58f4Ca0Ec7a6D967a8d138F05b3A981F/info.json new file mode 100644 index 0000000000000..004b79fad00f4 --- /dev/null +++ b/blockchains/smartchain/assets/0xb8167C0E58f4Ca0Ec7a6D967a8d138F05b3A981F/info.json @@ -0,0 +1,25 @@ +{ + "name": "Jencoin", + "website": "http://www.jencoin.net/", + "description": "Jen coin is token based in BNB Smart Chain. its total supply is 21 Million. it has multiple utilities like online shopping Store, Von, Lottery and Networking.", + "explorer": "https://bscscan.com/token/0xb8167C0E58f4Ca0Ec7a6D967a8d138F05b3A981F", + "type": "BEP20", + "symbol": "JEN", + "decimals": 18, + "status": "active", + "id": "0xb8167C0E58f4Ca0Ec7a6D967a8d138F05b3A981F", + "links": [ + { + "name": "telegram", + "url": "https://t.me/jencoin0" + }, + { + "name": "x", + "url": "https://x.com/Thejencoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jen-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb8167C0E58f4Ca0Ec7a6D967a8d138F05b3A981F/logo.png b/blockchains/smartchain/assets/0xb8167C0E58f4Ca0Ec7a6D967a8d138F05b3A981F/logo.png new file mode 100644 index 0000000000000..72ed08137d52c Binary files /dev/null and b/blockchains/smartchain/assets/0xb8167C0E58f4Ca0Ec7a6D967a8d138F05b3A981F/logo.png differ diff --git a/blockchains/smartchain/assets/0xb84ddc645c27D4Dc4bFA325c946f9d89d3AfCc7a/info.json b/blockchains/smartchain/assets/0xb84ddc645c27D4Dc4bFA325c946f9d89d3AfCc7a/info.json index 8d3e98bfdca68..03a72187dfcae 100644 --- a/blockchains/smartchain/assets/0xb84ddc645c27D4Dc4bFA325c946f9d89d3AfCc7a/info.json +++ b/blockchains/smartchain/assets/0xb84ddc645c27D4Dc4bFA325c946f9d89d3AfCc7a/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/BonusCake" }, { - "name": "twitter", - "url": "https://twitter.com/BonusCakeBSC" + "name": "x", + "url": "https://x.com/BonusCakeBSC" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0xb85d4C45383aCfcFd9869645275349C9c3f28EDB/info.json b/blockchains/smartchain/assets/0xb85d4C45383aCfcFd9869645275349C9c3f28EDB/info.json new file mode 100644 index 0000000000000..f5bf04c8c8254 --- /dev/null +++ b/blockchains/smartchain/assets/0xb85d4C45383aCfcFd9869645275349C9c3f28EDB/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bacon Protocol", + "website": "https://www.baconprotocol.ai/", + "description": "What Is Bacon Protocol (Bacon AI)? Bacon Protocol is an innovative AI-powered framework designed to revolutionize interactions within the Web3 ecosystem.", + "explorer": "https://bscscan.com/token/0xb85d4C45383aCfcFd9869645275349C9c3f28EDB", + "type": "BEP20", + "symbol": "BAC", + "decimals": 18, + "status": "active", + "id": "0xb85d4C45383aCfcFd9869645275349C9c3f28EDB", + "links": [ + { + "name": "x", + "url": "https://x.com/Bacon_Protocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bacon-protocol-bsc/" + } + ] +} diff --git a/blockchains/smartchain/assets/0xb85d4C45383aCfcFd9869645275349C9c3f28EDB/logo.png b/blockchains/smartchain/assets/0xb85d4C45383aCfcFd9869645275349C9c3f28EDB/logo.png new file mode 100644 index 0000000000000..16c3c8b98c7f1 Binary files /dev/null and b/blockchains/smartchain/assets/0xb85d4C45383aCfcFd9869645275349C9c3f28EDB/logo.png differ diff --git a/blockchains/smartchain/assets/0xb86AbCb37C3A4B64f74f59301AFF131a1BEcC787/info.json b/blockchains/smartchain/assets/0xb86AbCb37C3A4B64f74f59301AFF131a1BEcC787/info.json index 6941503e5a7a3..4a5e0091c7f84 100644 --- a/blockchains/smartchain/assets/0xb86AbCb37C3A4B64f74f59301AFF131a1BEcC787/info.json +++ b/blockchains/smartchain/assets/0xb86AbCb37C3A4B64f74f59301AFF131a1BEcC787/info.json @@ -10,8 +10,8 @@ "id": "0xb86AbCb37C3A4B64f74f59301AFF131a1BEcC787", "links": [ { - "name": "twitter", - "url": "https://twitter.com/zilliqa" + "name": "x", + "url": "https://x.com/zilliqa" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0xb899dB682e6D6164D885ff67C1e676141deaaA40/info.json b/blockchains/smartchain/assets/0xb899dB682e6D6164D885ff67C1e676141deaaA40/info.json index c548957713283..792e2b0251ade 100644 --- a/blockchains/smartchain/assets/0xb899dB682e6D6164D885ff67C1e676141deaaA40/info.json +++ b/blockchains/smartchain/assets/0xb899dB682e6D6164D885ff67C1e676141deaaA40/info.json @@ -10,8 +10,8 @@ "id": "0xb899dB682e6D6164D885ff67C1e676141deaaA40", "links": [ { - "name": "twitter", - "url": "https://twitter.com/onlyonefinance" + "name": "x", + "url": "https://x.com/onlyonefinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xb8a5e028f833F08A29564ded368b4CaCB4e18FF5/info.json b/blockchains/smartchain/assets/0xb8a5e028f833F08A29564ded368b4CaCB4e18FF5/info.json index 3019d2d5defc0..293289e981376 100644 --- a/blockchains/smartchain/assets/0xb8a5e028f833F08A29564ded368b4CaCB4e18FF5/info.json +++ b/blockchains/smartchain/assets/0xb8a5e028f833F08A29564ded368b4CaCB4e18FF5/info.json @@ -10,12 +10,12 @@ "id": "0xb8a5e028f833F08A29564ded368b4CaCB4e18FF5", "migrate": { "asset_id": "c20000714_t0x14940169E2Db1595CDD3CACd30DECC5bbB4d9f19", - "url": "https://twitter.com/Santa_Floki/status/1496413286358781956" + "url": "https://x.com/Santa_Floki/status/1496413286358781956" }, "links": [ { - "name": "twitter", - "url": "https://twitter.com/Santa_Floki" + "name": "x", + "url": "https://x.com/Santa_Floki" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xb8e3bB633F7276cc17735D86154E0ad5ec9928C0/info.json b/blockchains/smartchain/assets/0xb8e3bB633F7276cc17735D86154E0ad5ec9928C0/info.json index 6c0d4f8399ca8..90b31aa60c501 100644 --- a/blockchains/smartchain/assets/0xb8e3bB633F7276cc17735D86154E0ad5ec9928C0/info.json +++ b/blockchains/smartchain/assets/0xb8e3bB633F7276cc17735D86154E0ad5ec9928C0/info.json @@ -10,8 +10,8 @@ "id": "0xb8e3bB633F7276cc17735D86154E0ad5ec9928C0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VelasPad" + "name": "x", + "url": "https://x.com/VelasPad" }, { "name": "coingecko", diff --git a/blockchains/smartchain/assets/0xb9654A42f0F5dCDEf5617DebF8bd048E33F180E7/info.json b/blockchains/smartchain/assets/0xb9654A42f0F5dCDEf5617DebF8bd048E33F180E7/info.json index 3b3238072fc59..f954b994fa159 100644 --- a/blockchains/smartchain/assets/0xb9654A42f0F5dCDEf5617DebF8bd048E33F180E7/info.json +++ b/blockchains/smartchain/assets/0xb9654A42f0F5dCDEf5617DebF8bd048E33F180E7/info.json @@ -10,8 +10,8 @@ "id": "0xb9654A42f0F5dCDEf5617DebF8bd048E33F180E7", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ThunderBNBapp" + "name": "x", + "url": "https://x.com/ThunderBNBapp" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xb994882a1b9bd98A71Dd6ea5F61577c42848B0E8/info.json b/blockchains/smartchain/assets/0xb994882a1b9bd98A71Dd6ea5F61577c42848B0E8/info.json new file mode 100644 index 0000000000000..e3344d0fb2cb0 --- /dev/null +++ b/blockchains/smartchain/assets/0xb994882a1b9bd98A71Dd6ea5F61577c42848B0E8/info.json @@ -0,0 +1,21 @@ +{ + "name": "World of Dypians", + "website": "https://www.worldofdypians.com/", + "description": "World of Dypians is a revolutionary MMORPG available on Epic Games, set in a connected virtual world, featuring advanced AI, stunning graphics, and immersive gameplay. It is a dynamic gaming ecosystem that merges DeFi, NFTs, Gaming, and AI into a single immersive experience.", + "explorer": "https://bscscan.com/token/0xb994882a1b9bd98A71Dd6ea5F61577c42848B0E8", + "type": "BEP20", + "symbol": "WOD", + "decimals": 18, + "status": "active", + "id": "0xb994882a1b9bd98A71Dd6ea5F61577c42848B0E8", + "links": [ + { + "name": "telegram", + "url": "https://t.me/worldofdypians" + }, + { + "name": "x", + "url": "https://x.com/worldofdypians" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb994882a1b9bd98A71Dd6ea5F61577c42848B0E8/logo.png b/blockchains/smartchain/assets/0xb994882a1b9bd98A71Dd6ea5F61577c42848B0E8/logo.png new file mode 100644 index 0000000000000..2ff0868c662b7 Binary files /dev/null and b/blockchains/smartchain/assets/0xb994882a1b9bd98A71Dd6ea5F61577c42848B0E8/logo.png differ diff --git a/blockchains/smartchain/assets/0xb9D8592E16A9c1a3AE6021CDDb324EaC1Cbc70d6/info.json b/blockchains/smartchain/assets/0xb9D8592E16A9c1a3AE6021CDDb324EaC1Cbc70d6/info.json index a690a75c1b2d8..0cd03fbaf34bb 100644 --- a/blockchains/smartchain/assets/0xb9D8592E16A9c1a3AE6021CDDb324EaC1Cbc70d6/info.json +++ b/blockchains/smartchain/assets/0xb9D8592E16A9c1a3AE6021CDDb324EaC1Cbc70d6/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/perafinance" }, { - "name": "twitter", - "url": "https://twitter.com/perafinance" + "name": "x", + "url": "https://x.com/perafinance" }, { "name": "blog", diff --git a/blockchains/smartchain/assets/0xbA2aE424d960c26247Dd6c32edC70B295c744C43/info.json b/blockchains/smartchain/assets/0xbA2aE424d960c26247Dd6c32edC70B295c744C43/info.json index e810764424d23..a061c494c3829 100644 --- a/blockchains/smartchain/assets/0xbA2aE424d960c26247Dd6c32edC70B295c744C43/info.json +++ b/blockchains/smartchain/assets/0xbA2aE424d960c26247Dd6c32edC70B295c744C43/info.json @@ -1,5 +1,5 @@ { - "name": "BNB pegged Dogecoin", + "name": "Dogecoin", "website": "https://dogecoin.com/", "description": "BNB pegged Dogecoin (DOGE BEP20) is a token issued by Binance on Smart Chain; its price is pegged to Dogecoin (DOGE) at a ratio of 1:1.", "explorer": "https://bscscan.com/token/0xba2ae424d960c26247dd6c32edc70b295c744c43", diff --git a/blockchains/smartchain/assets/0xbA5eAB68a7203C9FF72E07b708991F07f55eF40E/info.json b/blockchains/smartchain/assets/0xbA5eAB68a7203C9FF72E07b708991F07f55eF40E/info.json index 85f02eb37a42d..e778b3f8247b0 100644 --- a/blockchains/smartchain/assets/0xbA5eAB68a7203C9FF72E07b708991F07f55eF40E/info.json +++ b/blockchains/smartchain/assets/0xbA5eAB68a7203C9FF72E07b708991F07f55eF40E/info.json @@ -10,8 +10,8 @@ "id": "0xbA5eAB68a7203C9FF72E07b708991F07f55eF40E", "links": [ { - "name": "twitter", - "url": "https://twitter.com/kodi_coin" + "name": "x", + "url": "https://x.com/kodi_coin" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xbAeA9aBA1454DF334943951d51116aE342eAB255/info.json b/blockchains/smartchain/assets/0xbAeA9aBA1454DF334943951d51116aE342eAB255/info.json new file mode 100644 index 0000000000000..5391cdd3179cc --- /dev/null +++ b/blockchains/smartchain/assets/0xbAeA9aBA1454DF334943951d51116aE342eAB255/info.json @@ -0,0 +1,29 @@ +{ + "name": "Poolz Finance", + "website": "https://www.poolz.finance", + "description": "Poolz is a decentralized swapping protocol for cross-chain token pools and auctions, enabling projects to raise capital.", + "explorer": "https://bscscan.com/token/0xbAeA9aBA1454DF334943951d51116aE342eAB255", + "type": "BEP20", + "symbol": "POOLZ", + "decimals": 18, + "status": "active", + "id": "0xbAeA9aBA1454DF334943951d51116aE342eAB255", + "links": [ + { + "name": "github", + "url": "https://github.com/The-Poolz" + }, + { + "name": "x", + "url": "https://x.com/Poolz" + }, + { + "name": "telegram", + "url": "https://t.me/PoolzOfficialCommunity" + }, + { + "name": "discord", + "url": "https://discord.com/invite/xwtWw4sGPp" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x69A95185ee2a045CDC4bCd1b1Df10710395e4e23/logo.png b/blockchains/smartchain/assets/0xbAeA9aBA1454DF334943951d51116aE342eAB255/logo.png similarity index 100% rename from blockchains/ethereum/assets/0x69A95185ee2a045CDC4bCd1b1Df10710395e4e23/logo.png rename to blockchains/smartchain/assets/0xbAeA9aBA1454DF334943951d51116aE342eAB255/logo.png diff --git a/blockchains/smartchain/assets/0xbB21c4A6257f3306d0458E92aD0FE583AD0cE858/info.json b/blockchains/smartchain/assets/0xbB21c4A6257f3306d0458E92aD0FE583AD0cE858/info.json new file mode 100644 index 0000000000000..aee1cfb67c484 --- /dev/null +++ b/blockchains/smartchain/assets/0xbB21c4A6257f3306d0458E92aD0FE583AD0cE858/info.json @@ -0,0 +1,38 @@ +{ + "name": "CryptoPeso", + "website": "https://cryptopesos.pro/index.html", + "description": "It is an innovative initiative that seeks to revolutionize the financial landscape in Latin America through the implementation of a robust and sustainable blockchain. Our main goal is to promote access to decentralized financial services and foster economic inclusion in the region.", + "explorer": "https://bscscan.com/token/0xbB21c4A6257f3306d0458E92aD0FE583AD0cE858", + "research": "https://cryptopesos.pro/index.html", + "symbol": "CryptoPesos", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0xbB21c4A6257f3306d0458E92aD0FE583AD0cE858", + "tags": [ + "staking-native", + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/Crypto_Pesos" + }, + { + "name": "whitepaper", + "url": "https://cryptopesos.pro/index.html" + }, + { + "name": "telegram", + "url": "https://t.me/CryptoPesoColombia" + }, + { + "name": "github", + "url": "https://github.com/CryptoPesos" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/dexscan/bsc/0x6c7336d6dd9947481bc6f81f670a104cb963ea39/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbB21c4A6257f3306d0458E92aD0FE583AD0cE858/logo.png b/blockchains/smartchain/assets/0xbB21c4A6257f3306d0458E92aD0FE583AD0cE858/logo.png new file mode 100644 index 0000000000000..69ca6c7128b35 Binary files /dev/null and b/blockchains/smartchain/assets/0xbB21c4A6257f3306d0458E92aD0FE583AD0cE858/logo.png differ diff --git a/blockchains/smartchain/assets/0xbB3837Fa11d4B789717C8f622Ec4f6eee5375C49/info.json b/blockchains/smartchain/assets/0xbB3837Fa11d4B789717C8f622Ec4f6eee5375C49/info.json index 1cfeaaee9d0cc..a81c2cd48ca06 100644 --- a/blockchains/smartchain/assets/0xbB3837Fa11d4B789717C8f622Ec4f6eee5375C49/info.json +++ b/blockchains/smartchain/assets/0xbB3837Fa11d4B789717C8f622Ec4f6eee5375C49/info.json @@ -10,8 +10,8 @@ "id": "0xbB3837Fa11d4B789717C8f622Ec4f6eee5375C49", "links": [ { - "name": "twitter", - "url": "https://twitter.com/bscview" + "name": "x", + "url": "https://x.com/bscview" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xbBBcB350C64Fe974e5C42A55c7070644191823f3/info.json b/blockchains/smartchain/assets/0xbBBcB350C64Fe974e5C42A55c7070644191823f3/info.json index 636c2cd847798..d4d392aabe7ce 100644 --- a/blockchains/smartchain/assets/0xbBBcB350C64Fe974e5C42A55c7070644191823f3/info.json +++ b/blockchains/smartchain/assets/0xbBBcB350C64Fe974e5C42A55c7070644191823f3/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/cheersland_news" }, { - "name": "twitter", - "url": "https://twitter.com/cheers_land" + "name": "x", + "url": "https://x.com/cheers_land" }, { "name": "blog", @@ -31,4 +31,4 @@ "staking", "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbBC6057d21BD9c8FcEEDfFe821D7d8bE10d3d82a/info.json b/blockchains/smartchain/assets/0xbBC6057d21BD9c8FcEEDfFe821D7d8bE10d3d82a/info.json new file mode 100644 index 0000000000000..864e936eb5be1 --- /dev/null +++ b/blockchains/smartchain/assets/0xbBC6057d21BD9c8FcEEDfFe821D7d8bE10d3d82a/info.json @@ -0,0 +1,19 @@ +{ + "name": "FistToken", + "type": "BEP20", + "symbol": "FIST", + "decimals": 18, + "description": "FIST is a decentralized financial payment network that rebuilds the traditional payment stack on the blockchain. It utilizes a basket of fiat-pegged stablecoins, algorithmically stabilized by its reserve currency FIST, to facilitate programmable payments and open financial infrastructure development.", + "website": "https://top100token.com/address/0xbbc6057d21bd9c8fceedffe821d7d8be10d3d82a", + "explorer": "https://bscscan.com/token/0xbbc6057d21bd9c8fceedffe821d7d8be10d3d82a", + "id": "0xbBC6057d21BD9c8FcEEDfFe821D7d8bE10d3d82a", + "status": "active", + "links": [ + + + ], + "tags": [ + "stablecoin" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbBC6057d21BD9c8FcEEDfFe821D7d8bE10d3d82a/logo.png b/blockchains/smartchain/assets/0xbBC6057d21BD9c8FcEEDfFe821D7d8bE10d3d82a/logo.png new file mode 100644 index 0000000000000..b62d0ab4ab0a6 Binary files /dev/null and b/blockchains/smartchain/assets/0xbBC6057d21BD9c8FcEEDfFe821D7d8bE10d3d82a/logo.png differ diff --git a/blockchains/smartchain/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json b/blockchains/smartchain/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json index 1d73aa0f346b7..42d55e10372c9 100644 --- a/blockchains/smartchain/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json +++ b/blockchains/smartchain/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json @@ -10,8 +10,8 @@ "id": "0xbBD7B847C6d0d0B5691518a363194D71426475F1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/everrise" + "name": "x", + "url": "https://x.com/everrise" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xbCba01f7d6CC0A950464a4b98BA8358c4F6B69a0/info.json b/blockchains/smartchain/assets/0xbCba01f7d6CC0A950464a4b98BA8358c4F6B69a0/info.json index a2094050bf974..511c8b6a1afa2 100644 --- a/blockchains/smartchain/assets/0xbCba01f7d6CC0A950464a4b98BA8358c4F6B69a0/info.json +++ b/blockchains/smartchain/assets/0xbCba01f7d6CC0A950464a4b98BA8358c4F6B69a0/info.json @@ -10,8 +10,8 @@ "id": "0xbCba01f7d6CC0A950464a4b98BA8358c4F6B69a0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BitcoMineToken" + "name": "x", + "url": "https://x.com/BitcoMineToken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xbCf114b5454b8c9158A2e554eD891c3319523dfd/info.json b/blockchains/smartchain/assets/0xbCf114b5454b8c9158A2e554eD891c3319523dfd/info.json new file mode 100644 index 0000000000000..0880dd889d321 --- /dev/null +++ b/blockchains/smartchain/assets/0xbCf114b5454b8c9158A2e554eD891c3319523dfd/info.json @@ -0,0 +1,17 @@ +{ + "name": "BIRD DOG", + "symbol": "BDOG", + "website": "https://birddogbsc.club", + "description": "Bird Dog from Matt Furie’s #BOYSCLUB, the ultimate mascot for 2025 $BNB - loyal, chaotic, and down for whatever, just like Degens.", + "explorer": "https://bscscan.com/token/0xbcf114b5454b8c9158a2e554ed891c3319523dfd", + "decimals": 18, + "status": "active", + "id": "0xbCf114b5454b8c9158A2e554eD891c3319523dfd", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/birddogbsc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbCf114b5454b8c9158A2e554eD891c3319523dfd/logo.png b/blockchains/smartchain/assets/0xbCf114b5454b8c9158A2e554eD891c3319523dfd/logo.png new file mode 100644 index 0000000000000..0a76c1781aec6 Binary files /dev/null and b/blockchains/smartchain/assets/0xbCf114b5454b8c9158A2e554eD891c3319523dfd/logo.png differ diff --git a/blockchains/smartchain/assets/0xbCf7D958791152128710565a5fC6f68342Ed71C8/info.json b/blockchains/smartchain/assets/0xbCf7D958791152128710565a5fC6f68342Ed71C8/info.json new file mode 100644 index 0000000000000..a971e2c696f68 --- /dev/null +++ b/blockchains/smartchain/assets/0xbCf7D958791152128710565a5fC6f68342Ed71C8/info.json @@ -0,0 +1,28 @@ +{ + "name": "Thermo Fisher Scientific (Ondo Tokenized)", + "type": "BEP20", + "symbol": "TMOon", + "decimals": 18, + "description": "TMOon is the Ondo Tokenized version of Thermo Fisher Scientific, giving tokenholders economic exposure similar to holding TMO and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xbCf7D958791152128710565a5fC6f68342Ed71C8", + "status": "active", + "id": "0xbCf7D958791152128710565a5fC6f68342Ed71C8", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/thermo-fisher-scientific-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/thermo-fisher-scientific-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbCf7D958791152128710565a5fC6f68342Ed71C8/logo.png b/blockchains/smartchain/assets/0xbCf7D958791152128710565a5fC6f68342Ed71C8/logo.png new file mode 100644 index 0000000000000..f580f2c060e22 Binary files /dev/null and b/blockchains/smartchain/assets/0xbCf7D958791152128710565a5fC6f68342Ed71C8/logo.png differ diff --git a/blockchains/smartchain/assets/0xbD4a49e1a0bd8D17fAa881D057b48BC18b983E51/info.json b/blockchains/smartchain/assets/0xbD4a49e1a0bd8D17fAa881D057b48BC18b983E51/info.json index f1ccf50ab9763..5e0cb814a0454 100644 --- a/blockchains/smartchain/assets/0xbD4a49e1a0bd8D17fAa881D057b48BC18b983E51/info.json +++ b/blockchains/smartchain/assets/0xbD4a49e1a0bd8D17fAa881D057b48BC18b983E51/info.json @@ -6,12 +6,12 @@ "type": "BEP20", "symbol": "DOGEBULL", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xbD4a49e1a0bd8D17fAa881D057b48BC18b983E51", "links": [ { - "name": "twitter", - "url": "https://twitter.com/doge_cola" + "name": "x", + "url": "https://x.com/doge_cola" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xbD4a49e1a0bd8D17fAa881D057b48BC18b983E51/logo.png b/blockchains/smartchain/assets/0xbD4a49e1a0bd8D17fAa881D057b48BC18b983E51/logo.png deleted file mode 100644 index db83ded5cad2c..0000000000000 Binary files a/blockchains/smartchain/assets/0xbD4a49e1a0bd8D17fAa881D057b48BC18b983E51/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777/info.json b/blockchains/smartchain/assets/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777/info.json new file mode 100644 index 0000000000000..99fa9774b2cfa --- /dev/null +++ b/blockchains/smartchain/assets/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777/info.json @@ -0,0 +1,24 @@ +{ + "name": "Vanguard tokenized ETF (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Vanguard xStock (VTIx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. VTIx tracks the price of Vanguard Total Stock Market Index Fund ETF (the underlying). VTIx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the ETF price of Vanguard Total Stock Market Index Fund ETF, whilst maintaining the benefits of blockchain technology. Vanguard Total Stock Market Index Fund ETF (VTI) is an exchange-traded fund that seeks to track the performance of the CRSP U.S. Total Market Index, covering nearly all publicly traded U.S. companies.", + "explorer": "https://bscscan.com/token/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777", + "type": "BEP20", + "symbol": "VTIX", + "decimals": 18, + "status": "active", + "id": "0xbD730E618bcD88C82dDeE52e10275CF2f88A4777", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vanguard-tokenized-etf-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777/logo.png b/blockchains/smartchain/assets/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777/logo.png new file mode 100644 index 0000000000000..ec248062ccc2c Binary files /dev/null and b/blockchains/smartchain/assets/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777/logo.png differ diff --git a/blockchains/smartchain/assets/0xbD83010eB60F12112908774998F65761cf9f6f9a/info.json b/blockchains/smartchain/assets/0xbD83010eB60F12112908774998F65761cf9f6f9a/info.json index 5ff3da005bb58..325baf65430e7 100644 --- a/blockchains/smartchain/assets/0xbD83010eB60F12112908774998F65761cf9f6f9a/info.json +++ b/blockchains/smartchain/assets/0xbD83010eB60F12112908774998F65761cf9f6f9a/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/mogulproductions" }, { - "name": "twitter", - "url": "https://twitter.com/mogulofficial_" + "name": "x", + "url": "https://x.com/mogulofficial_" }, { "name": "coinmarketcap", @@ -26,4 +26,4 @@ "defi", "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbDC3b3639f7AA19e623A4d603A3Fb7Ab20115A91/info.json b/blockchains/smartchain/assets/0xbDC3b3639f7AA19e623A4d603A3Fb7Ab20115A91/info.json index 703f23eac39ad..c811432e259b0 100644 --- a/blockchains/smartchain/assets/0xbDC3b3639f7AA19e623A4d603A3Fb7Ab20115A91/info.json +++ b/blockchains/smartchain/assets/0xbDC3b3639f7AA19e623A4d603A3Fb7Ab20115A91/info.json @@ -10,8 +10,8 @@ "id": "0xbDC3b3639f7AA19e623A4d603A3Fb7Ab20115A91", "links": [ { - "name": "twitter", - "url": "https://twitter.com/coinofchampions" + "name": "x", + "url": "https://x.com/coinofchampions" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xbDDD7D426274fc5F370817C80C06b86D651963e4/info.json b/blockchains/smartchain/assets/0xbDDD7D426274fc5F370817C80C06b86D651963e4/info.json index 96b64b43ee59b..4f54b3f2f1e9e 100644 --- a/blockchains/smartchain/assets/0xbDDD7D426274fc5F370817C80C06b86D651963e4/info.json +++ b/blockchains/smartchain/assets/0xbDDD7D426274fc5F370817C80C06b86D651963e4/info.json @@ -10,8 +10,8 @@ "id": "0xbDDD7D426274fc5F370817C80C06b86D651963e4", "links": [ { - "name": "twitter", - "url": "https://twitter.com/mlatoken" + "name": "x", + "url": "https://x.com/mlatoken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xbEe6b69345F376598Fe16AbD5592c6F844825E66/info.json b/blockchains/smartchain/assets/0xbEe6b69345F376598Fe16AbD5592c6F844825E66/info.json new file mode 100644 index 0000000000000..e487b19077d63 --- /dev/null +++ b/blockchains/smartchain/assets/0xbEe6b69345F376598Fe16AbD5592c6F844825E66/info.json @@ -0,0 +1,24 @@ +{ + "name": "OPEN tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://bscscan.com/token/0xbEe6b69345F376598Fe16AbD5592c6F844825E66", + "type": "BEP20", + "symbol": "OPENX", + "decimals": 18, + "status": "active", + "id": "0xbEe6b69345F376598Fe16AbD5592c6F844825E66", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/open-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbEe6b69345F376598Fe16AbD5592c6F844825E66/logo.png b/blockchains/smartchain/assets/0xbEe6b69345F376598Fe16AbD5592c6F844825E66/logo.png new file mode 100644 index 0000000000000..ce91cfbfef91d Binary files /dev/null and b/blockchains/smartchain/assets/0xbEe6b69345F376598Fe16AbD5592c6F844825E66/logo.png differ diff --git a/blockchains/smartchain/assets/0xbF3eb53d961F66ef22F264b125D6c8c12A5bB802/info.json b/blockchains/smartchain/assets/0xbF3eb53d961F66ef22F264b125D6c8c12A5bB802/info.json new file mode 100644 index 0000000000000..1bb402b77d56a --- /dev/null +++ b/blockchains/smartchain/assets/0xbF3eb53d961F66ef22F264b125D6c8c12A5bB802/info.json @@ -0,0 +1,17 @@ +{ + "name": "ZHOUSHUREN", + "symbol": "LUXUN", + "type": "BEP20", + "decimals": 18, + "description": "这吃人的币圈", + "website": "https://x.com/luxunbsc", + "explorer": "https://bscscan.com/token/0xbF3eb53d961F66ef22F264b125D6c8c12A5bB802", + "status": "active", + "id": "0xbF3eb53d961F66ef22F264b125D6c8c12A5bB802", + "links": [ + { + "name": "x", + "url": "https://x.com/luxunbsc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbF3eb53d961F66ef22F264b125D6c8c12A5bB802/logo.png b/blockchains/smartchain/assets/0xbF3eb53d961F66ef22F264b125D6c8c12A5bB802/logo.png new file mode 100644 index 0000000000000..db12282762e47 Binary files /dev/null and b/blockchains/smartchain/assets/0xbF3eb53d961F66ef22F264b125D6c8c12A5bB802/logo.png differ diff --git a/blockchains/smartchain/assets/0xbF7c81FFF98BbE61B40Ed186e4AfD6DDd01337fe/info.json b/blockchains/smartchain/assets/0xbF7c81FFF98BbE61B40Ed186e4AfD6DDd01337fe/info.json index 02c7bd8dadc7c..c5703a3f0782d 100644 --- a/blockchains/smartchain/assets/0xbF7c81FFF98BbE61B40Ed186e4AfD6DDd01337fe/info.json +++ b/blockchains/smartchain/assets/0xbF7c81FFF98BbE61B40Ed186e4AfD6DDd01337fe/info.json @@ -18,8 +18,8 @@ "url": "https://github.com/ElrondNetwork" }, { - "name": "twitter", - "url": "https://twitter.com/ElrondNetwork" + "name": "x", + "url": "https://x.com/ElrondNetwork" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/info.json b/blockchains/smartchain/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/info.json new file mode 100644 index 0000000000000..788d459317604 --- /dev/null +++ b/blockchains/smartchain/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/info.json @@ -0,0 +1,17 @@ +{ + "name": "OX", + "type": "BEP20", + "symbol": "OX", + "decimals": 18, + "website": "https://ox.fun/", + "description": "OX.FUN is a derivatives exchange that allows users to trade perps with their OX tokens.", + "explorer": "https://bscscan.com/token/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea", + "status": "active", + "id": "0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea", + "links": [ + { + "name": "x", + "url": "https://x.com/OXFUNHQ" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/logo.png b/blockchains/smartchain/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/logo.png new file mode 100644 index 0000000000000..d66f3d33ef432 Binary files /dev/null and b/blockchains/smartchain/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/logo.png differ diff --git a/blockchains/smartchain/assets/0xba7E2a9E5193E60368F440E4Ae881cC312d6a160/info.json b/blockchains/smartchain/assets/0xba7E2a9E5193E60368F440E4Ae881cC312d6a160/info.json index dcf25cf04edd3..7413efd894f53 100644 --- a/blockchains/smartchain/assets/0xba7E2a9E5193E60368F440E4Ae881cC312d6a160/info.json +++ b/blockchains/smartchain/assets/0xba7E2a9E5193E60368F440E4Ae881cC312d6a160/info.json @@ -10,8 +10,8 @@ "id": "0xba7E2a9E5193E60368F440E4Ae881cC312d6a160", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MinionsINUbsc" + "name": "x", + "url": "https://x.com/MinionsINUbsc" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xbb73BB2505AC4643d5C0a99c2A1F34B3DfD09D11/info.json b/blockchains/smartchain/assets/0xbb73BB2505AC4643d5C0a99c2A1F34B3DfD09D11/info.json new file mode 100644 index 0000000000000..c6feb3a7871d5 --- /dev/null +++ b/blockchains/smartchain/assets/0xbb73BB2505AC4643d5C0a99c2A1F34B3DfD09D11/info.json @@ -0,0 +1,76 @@ +{ + "name": "MetaGamescoin", + "type": "BEP20", + "symbol": "MGC", + "decimals": 9, + "website": "https://MetaGamescoin.io", + "description": "MGC token is Rewarding token of RANKING platform, and financial support for MGC Ecosystem, playing games and register your results and earn MGC, play games anytime and anywhere and earn MGC.", + "explorer": "https://bscscan.com/token/0xbb73BB2505AC4643d5C0a99c2A1F34B3DfD09D11", + "status": "active", + "id": "0xbb73BB2505AC4643d5C0a99c2A1F34B3DfD09D11", + "links": [ + { + "name": "x", + "url": "https://x.com/MetagamesC" + }, + { + "name": "github", + "url": "https://github.com/MetaGamescoinio" + }, + { + "name": "telegram", + "url": "https://t.me/MetaGamesCoin_io" + }, + { + "name": "telegram_news", + "url": "https://t.me/MetaGamesCoin_io" + }, + { + "name": "blog", + "url": "https://MetaGamescoin.io/blog" + }, + { + "name": "docs", + "url": "https://MetaGamescoin.io/brief" + }, + { + "name": "forum", + "url": "https://MetaGamescoin.io/contact-us" + }, + { + "name": "discord", + "url": "https://discord.com/Metagamescoin#1848" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MetaGamesCoin" + }, + { + "name": "whitepaper", + "url": "https://MetaGamescoin.io/whitepaper" + }, + { + "name": "medium", + "url": "https://link.medium.com/2yeFPk4hPub" + }, + { + "name": "youtube", + "url": "https://youtube.com/@metagamescoin" + }, + { + "name": "facebook", + "url": "https://facebook.com/metagamescoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/meta-games-coin" + }, + { + "name": "source_code", + "url": "https://github.com/MetaGamescoinio/smart-contract-audits" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbb73BB2505AC4643d5C0a99c2A1F34B3DfD09D11/logo.png b/blockchains/smartchain/assets/0xbb73BB2505AC4643d5C0a99c2A1F34B3DfD09D11/logo.png new file mode 100644 index 0000000000000..9b86d8aedfb6b Binary files /dev/null and b/blockchains/smartchain/assets/0xbb73BB2505AC4643d5C0a99c2A1F34B3DfD09D11/logo.png differ diff --git a/blockchains/smartchain/assets/0xbbBBBBe1da5EAB142B32f8887EE8d3872D847c20/info.json b/blockchains/smartchain/assets/0xbbBBBBe1da5EAB142B32f8887EE8d3872D847c20/info.json new file mode 100644 index 0000000000000..7397cc12cd0e8 --- /dev/null +++ b/blockchains/smartchain/assets/0xbbBBBBe1da5EAB142B32f8887EE8d3872D847c20/info.json @@ -0,0 +1,24 @@ +{ + "name": "BitBonk", + "type": "BEP20", + "symbol": "BBONK", + "decimals": 18, + "website": "https://bitbonk.io/", + "description": "BitBonk is the ultimate fusion of Bitcoin's value, Dogecoin's charm, and meme coin energy. It carries the security and stability of Bitcoin, the playful, community-driven spirit of Dogecoin, and the viral potential of top meme coins. BitBonk isn’t just an investment; it’s a fun and innovative way to be part of the crypto world.", + "explorer": "https://bscscan.com/token/0xbbbbbbe1da5eab142b32f8887ee8d3872d847c20", + "status": "active", + "id": "0xbbBBBBe1da5EAB142B32f8887EE8d3872D847c20", + "links": [ + { + "name": "x", + "url": "https://x.com/BitBonk_inu" + }, + { + "name": "telegram", + "url": "https://t.me/BitBonk_inu" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbbBBBBe1da5EAB142B32f8887EE8d3872D847c20/logo.png b/blockchains/smartchain/assets/0xbbBBBBe1da5EAB142B32f8887EE8d3872D847c20/logo.png new file mode 100644 index 0000000000000..a71a2f34c662f Binary files /dev/null and b/blockchains/smartchain/assets/0xbbBBBBe1da5EAB142B32f8887EE8d3872D847c20/logo.png differ diff --git a/blockchains/smartchain/assets/0xbbE4Dfe7a349Fb72aEc6f52d5CD9bDD78AE8f313/info.json b/blockchains/smartchain/assets/0xbbE4Dfe7a349Fb72aEc6f52d5CD9bDD78AE8f313/info.json new file mode 100644 index 0000000000000..1e53c891e9003 --- /dev/null +++ b/blockchains/smartchain/assets/0xbbE4Dfe7a349Fb72aEc6f52d5CD9bDD78AE8f313/info.json @@ -0,0 +1,28 @@ +{ + "name": "Talen Energy (Ondo Tokenized)", + "type": "BEP20", + "symbol": "TLNon", + "decimals": 18, + "description": "TLNon is the Ondo Tokenized version of Talen Energy, giving tokenholders economic exposure similar to holding TLN and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xbbE4Dfe7a349Fb72aEc6f52d5CD9bDD78AE8f313", + "status": "active", + "id": "0xbbE4Dfe7a349Fb72aEc6f52d5CD9bDD78AE8f313", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/talen-energy-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/talen-energy-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbbE4Dfe7a349Fb72aEc6f52d5CD9bDD78AE8f313/logo.png b/blockchains/smartchain/assets/0xbbE4Dfe7a349Fb72aEc6f52d5CD9bDD78AE8f313/logo.png new file mode 100644 index 0000000000000..4da818828af48 Binary files /dev/null and b/blockchains/smartchain/assets/0xbbE4Dfe7a349Fb72aEc6f52d5CD9bDD78AE8f313/logo.png differ diff --git a/blockchains/smartchain/assets/0xbbe0A94f363a52dA9229A7546434b6e657A6A78F/info.json b/blockchains/smartchain/assets/0xbbe0A94f363a52dA9229A7546434b6e657A6A78F/info.json index ccd66aa14a624..b1de9c83d5fe2 100644 --- a/blockchains/smartchain/assets/0xbbe0A94f363a52dA9229A7546434b6e657A6A78F/info.json +++ b/blockchains/smartchain/assets/0xbbe0A94f363a52dA9229A7546434b6e657A6A78F/info.json @@ -10,7 +10,7 @@ "id": "0xbbe0A94f363a52dA9229A7546434b6e657A6A78F", "migrate": { "asset_id": "c20000714_t0x10051147418c42218986cedd0adc266441f8a14f", - "url": "https://twitter.com/DYOR_jetrich/status/1493274001166290949" + "url": "https://x.com/DYOR_jetrich/status/1493274001166290949" }, "links": [ { @@ -22,8 +22,8 @@ "url": "https://coinmarketcap.com/ru/currencies/dyor-token/" }, { - "name": "twitter", - "url": "https://twitter.com/DYORToken_BSC" + "name": "x", + "url": "https://x.com/DYORToken_BSC" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbbf33a3c83Cf86D0965A66E108669D272DFE4214/info.json b/blockchains/smartchain/assets/0xbbf33a3c83Cf86D0965A66E108669D272DFE4214/info.json index 7abd2c6819dd2..107fc2b9b1027 100644 --- a/blockchains/smartchain/assets/0xbbf33a3c83Cf86D0965A66E108669D272DFE4214/info.json +++ b/blockchains/smartchain/assets/0xbbf33a3c83Cf86D0965A66E108669D272DFE4214/info.json @@ -14,8 +14,8 @@ "url": "https://eififinance.medium.com/" }, { - "name": "twitter", - "url": "https://twitter.com/EifiFinance" + "name": "x", + "url": "https://x.com/EifiFinance" }, { "name": "whitepaper", diff --git a/blockchains/smartchain/assets/0xbc81ea817b579eC0334BcA8E65E436b7cB540147/info.json b/blockchains/smartchain/assets/0xbc81ea817b579eC0334BcA8E65E436b7cB540147/info.json index 0fcb3ac614c7d..822bce74a15b4 100644 --- a/blockchains/smartchain/assets/0xbc81ea817b579eC0334BcA8E65E436b7cB540147/info.json +++ b/blockchains/smartchain/assets/0xbc81ea817b579eC0334BcA8E65E436b7cB540147/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "LQR", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xbc81ea817b579eC0334BcA8E65E436b7cB540147", "tags": [], "links": [ @@ -15,8 +15,8 @@ "url": "https://github.com/laqiraprotocol/" }, { - "name": "twitter", - "url": "https://twitter.com/laqiraprotocol/" + "name": "x", + "url": "https://x.com/laqiraprotocol/" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xbcf39F0EDDa668C58371E519AF37CA705f2bFcbd/info.json b/blockchains/smartchain/assets/0xbcf39F0EDDa668C58371E519AF37CA705f2bFcbd/info.json index 64771367a1090..6d20bbbaf9126 100644 --- a/blockchains/smartchain/assets/0xbcf39F0EDDa668C58371E519AF37CA705f2bFcbd/info.json +++ b/blockchains/smartchain/assets/0xbcf39F0EDDa668C58371E519AF37CA705f2bFcbd/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/blocklords/seascape-smartcontracts" }, { - "name": "twitter", - "url": "https://twitter.com/SeascapeNetwork" + "name": "x", + "url": "https://x.com/SeascapeNetwork" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xbd7B8e4de08D9b01938F7FF2058F110ee1E0E8d4/info.json b/blockchains/smartchain/assets/0xbd7B8e4de08D9b01938F7FF2058F110ee1E0E8d4/info.json new file mode 100644 index 0000000000000..3e4cb85009ae9 --- /dev/null +++ b/blockchains/smartchain/assets/0xbd7B8e4de08D9b01938F7FF2058F110ee1E0E8d4/info.json @@ -0,0 +1,21 @@ +{ + "name": "GamerCoin", + "type": "BEP20", + "symbol": "GHX", + "decimals": 18, + "website": "https://gamerhash.io/", + "description": "GamerCoin (GHX) is a token of GamerHash.com platform - aiming to be the last puzzle of the gaming ecosystem and fuel which makes 500.000+ users life easier. Keeping tokens in the wallet will bring many benefits & spending GHX in the Marketplace will open special offers.", + "explorer": "https://bscscan.com/token/0xbd7B8e4de08D9b01938F7FF2058F110ee1E0E8d4", + "status": "active", + "id": "0xbd7B8e4de08D9b01938F7FF2058F110ee1E0E8d4", + "links": [ + { + "name": "x", + "url": "https://x.com/GamerHashCom" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gamercoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbd7B8e4de08D9b01938F7FF2058F110ee1E0E8d4/logo.png b/blockchains/smartchain/assets/0xbd7B8e4de08D9b01938F7FF2058F110ee1E0E8d4/logo.png new file mode 100644 index 0000000000000..d2a350d1b2cbc Binary files /dev/null and b/blockchains/smartchain/assets/0xbd7B8e4de08D9b01938F7FF2058F110ee1E0E8d4/logo.png differ diff --git a/blockchains/smartchain/assets/0xbe6Ad1eB9876cf3D3f9b85fEeCfB400298E80143/info.json b/blockchains/smartchain/assets/0xbe6Ad1eB9876cf3D3f9b85fEeCfB400298E80143/info.json new file mode 100644 index 0000000000000..181d3e319e578 --- /dev/null +++ b/blockchains/smartchain/assets/0xbe6Ad1eB9876cf3D3f9b85fEeCfB400298E80143/info.json @@ -0,0 +1,25 @@ +{ + "name": "AI Companions", + "website": "https://aivcompanions.com/", + "description": "Our vision is to revolutionize companionship with AI Virtual Companions—highly customizable, interactive, and immersive virtual partners designed to meet your unique desires.", + "explorer": "https://bscscan.com/token/0xbe6ad1eb9876cf3d3f9b85feecfb400298e80143", + "type": "BEP20", + "symbol": "AIC", + "decimals": 18, + "status": "active", + "id": "0xbe6Ad1eB9876cf3D3f9b85fEeCfB400298E80143", + "links": [ + { + "name": "x", + "url": "https://x.com/AIV_Companions" + }, + { + "name": "telegram", + "url": "https://t.me/AIV_Companions" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ai-companions/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbe6Ad1eB9876cf3D3f9b85fEeCfB400298E80143/logo.png b/blockchains/smartchain/assets/0xbe6Ad1eB9876cf3D3f9b85fEeCfB400298E80143/logo.png new file mode 100644 index 0000000000000..2e033bfc22281 Binary files /dev/null and b/blockchains/smartchain/assets/0xbe6Ad1eB9876cf3D3f9b85fEeCfB400298E80143/logo.png differ diff --git a/blockchains/smartchain/assets/0xbe9D156892E55e7154BcD3cB0FEA677F9D3103E1/info.json b/blockchains/smartchain/assets/0xbe9D156892E55e7154BcD3cB0FEA677F9D3103E1/info.json new file mode 100644 index 0000000000000..5d36d8d0b1367 --- /dev/null +++ b/blockchains/smartchain/assets/0xbe9D156892E55e7154BcD3cB0FEA677F9D3103E1/info.json @@ -0,0 +1,21 @@ +{ + "name": "SpaceX Tokenized bStocks", + "type": "BEP20", + "symbol": "SPCXB", + "decimals": 18, + "description": "SPCXB is a tokenized bStocks that gives you economic exposure to SpaceX, and the right to convert to the underlying security on the Binance.com platform subject to applicable laws. Each token is fully backed by the corresponding underlying equity maintained by the Issuer at a US-regulated broker-dealer. You get the price movements, dividends, and the right to convert the token at 1:1 to the underlying share — tradeable 24/7.", + "website": "https://www.bstocks.finance/", + "explorer": "https://bscscan.com/token/0xbe9D156892E55e7154BcD3cB0FEA677F9D3103E1", + "status": "active", + "id": "0xbe9D156892E55e7154BcD3cB0FEA677F9D3103E1", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spacex-tokenized-stock-bstocks/" + } + ], + "tags": [ + "RWA", + "erc8056" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbe9D156892E55e7154BcD3cB0FEA677F9D3103E1/logo.png b/blockchains/smartchain/assets/0xbe9D156892E55e7154BcD3cB0FEA677F9D3103E1/logo.png new file mode 100644 index 0000000000000..ce92b435f5792 Binary files /dev/null and b/blockchains/smartchain/assets/0xbe9D156892E55e7154BcD3cB0FEA677F9D3103E1/logo.png differ diff --git a/blockchains/smartchain/assets/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11/info.json b/blockchains/smartchain/assets/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11/info.json index b9eda844992d1..eefb3be01028d 100644 --- a/blockchains/smartchain/assets/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11/info.json +++ b/blockchains/smartchain/assets/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/fegtoken-v2/" }, { - "name": "twitter", - "url": "https://twitter.com/FEGtoken" + "name": "x", + "url": "https://x.com/FEGtoken" }, { "name": "telegram", @@ -29,4 +29,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbf151F63D8d1287db5FC7a3bc104a9c38124cdeB/info.json b/blockchains/smartchain/assets/0xbf151F63D8d1287db5FC7a3bc104a9c38124cdeB/info.json index bc260d90bb2be..bdd32234d7594 100644 --- a/blockchains/smartchain/assets/0xbf151F63D8d1287db5FC7a3bc104a9c38124cdeB/info.json +++ b/blockchains/smartchain/assets/0xbf151F63D8d1287db5FC7a3bc104a9c38124cdeB/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/AVNRich_Chat" }, { - "name": "twitter", - "url": "https://twitter.com/avnrich" + "name": "x", + "url": "https://x.com/avnrich" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xbfb1a68962Fb4ED040FD3a0a71dC2C2015BCc667/info.json b/blockchains/smartchain/assets/0xbfb1a68962Fb4ED040FD3a0a71dC2C2015BCc667/info.json index 19f414ffa3807..5c72853c78f31 100644 --- a/blockchains/smartchain/assets/0xbfb1a68962Fb4ED040FD3a0a71dC2C2015BCc667/info.json +++ b/blockchains/smartchain/assets/0xbfb1a68962Fb4ED040FD3a0a71dC2C2015BCc667/info.json @@ -10,8 +10,8 @@ "id": "0xbfb1a68962Fb4ED040FD3a0a71dC2C2015BCc667", "links": [ { - "name": "twitter", - "url": "https://twitter.com/4Jnet" + "name": "x", + "url": "https://x.com/4Jnet" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xc003F5193CABE3a6cbB56948dFeaAE2276a6AA5E/info.json b/blockchains/smartchain/assets/0xc003F5193CABE3a6cbB56948dFeaAE2276a6AA5E/info.json index 51f81e7018a9a..e770f30004e49 100644 --- a/blockchains/smartchain/assets/0xc003F5193CABE3a6cbB56948dFeaAE2276a6AA5E/info.json +++ b/blockchains/smartchain/assets/0xc003F5193CABE3a6cbB56948dFeaAE2276a6AA5E/info.json @@ -10,8 +10,8 @@ "id": "0xc003F5193CABE3a6cbB56948dFeaAE2276a6AA5E", "links": [ { - "name": "twitter", - "url": "https://twitter.com/thetrubadger/" + "name": "x", + "url": "https://x.com/thetrubadger/" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xc008c5F579ec1450F20099c39F587547e27c7523/info.json b/blockchains/smartchain/assets/0xc008c5F579ec1450F20099c39F587547e27c7523/info.json new file mode 100644 index 0000000000000..6df6f0947e3e0 --- /dev/null +++ b/blockchains/smartchain/assets/0xc008c5F579ec1450F20099c39F587547e27c7523/info.json @@ -0,0 +1,28 @@ +{ + "name": "iShares 0-3 Month Treasury Bond ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "SGOVon", + "decimals": 18, + "description": "SGOVon is the Ondo Tokenized version of the iShares 0-3 Month Treasury Bond ETF, giving tokenholders economic exposure similar to holding SGOV and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xc008c5F579ec1450F20099c39F587547e27c7523", + "status": "active", + "id": "0xc008c5F579ec1450F20099c39F587547e27c7523", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-0-3-month-treasury-bond-etf-ondo-tokenized-etf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-0-3-month-treasury-bond-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc008c5F579ec1450F20099c39F587547e27c7523/logo.png b/blockchains/smartchain/assets/0xc008c5F579ec1450F20099c39F587547e27c7523/logo.png new file mode 100644 index 0000000000000..5fd5a776268b0 Binary files /dev/null and b/blockchains/smartchain/assets/0xc008c5F579ec1450F20099c39F587547e27c7523/logo.png differ diff --git a/blockchains/smartchain/assets/0xc029A12e4A002c6858878FD9D3cc74E227cc2DDa/info.json b/blockchains/smartchain/assets/0xc029A12e4A002c6858878FD9D3cc74E227cc2DDa/info.json index 07d840ec18557..fde9533679663 100644 --- a/blockchains/smartchain/assets/0xc029A12e4A002c6858878FD9D3cc74E227cc2DDa/info.json +++ b/blockchains/smartchain/assets/0xc029A12e4A002c6858878FD9D3cc74E227cc2DDa/info.json @@ -10,8 +10,8 @@ "id": "0xc029A12e4A002c6858878FD9D3cc74E227cc2DDa", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VelorexOfficial" + "name": "x", + "url": "https://x.com/VelorexOfficial" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xc03fBF20A586fa89C2a5f6F941458E1Fbc40c661/info.json b/blockchains/smartchain/assets/0xc03fBF20A586fa89C2a5f6F941458E1Fbc40c661/info.json new file mode 100644 index 0000000000000..2853f79a414d1 --- /dev/null +++ b/blockchains/smartchain/assets/0xc03fBF20A586fa89C2a5f6F941458E1Fbc40c661/info.json @@ -0,0 +1,21 @@ +{ + "name": "Combo", + "type": "BEP20", + "symbol": "COMBO", + "decimals": 18, + "website": "https://combonetwork.io/", + "description": "COMBO is a leading provider of scaling solutions for Web3 game development. By leveraging the world's top game engine, COMBO is building an open-source, decentralized, game-oriented Layer2 that is accessible to everyone.", + "explorer": "https://bscscan.com/token/0xc03fbf20a586fa89c2a5f6f941458e1fbc40c661", + "status": "active", + "id": "0xc03fBF20A586fa89C2a5f6F941458E1Fbc40c661", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/combo-network/" + }, + { + "name": "x", + "url": "https://x.com/combonetworkio" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc03fBF20A586fa89C2a5f6F941458E1Fbc40c661/logo.png b/blockchains/smartchain/assets/0xc03fBF20A586fa89C2a5f6F941458E1Fbc40c661/logo.png new file mode 100644 index 0000000000000..e63fc80b8dd45 Binary files /dev/null and b/blockchains/smartchain/assets/0xc03fBF20A586fa89C2a5f6F941458E1Fbc40c661/logo.png differ diff --git a/blockchains/smartchain/assets/0xc0924EDEFB2C0C303de2d0c21BfF07ab763163B5/info.json b/blockchains/smartchain/assets/0xc0924EDEFB2C0C303de2d0c21BfF07ab763163B5/info.json index a158108cd9e8d..e4c7b5efe26b4 100644 --- a/blockchains/smartchain/assets/0xc0924EDEFB2C0C303de2d0c21BfF07ab763163B5/info.json +++ b/blockchains/smartchain/assets/0xc0924EDEFB2C0C303de2d0c21BfF07ab763163B5/info.json @@ -18,8 +18,8 @@ "url": "https://t.me/SteamXchangeOfficial" }, { - "name": "twitter", - "url": "https://twitter.com/Steam_Exchange" + "name": "x", + "url": "https://x.com/Steam_Exchange" }, { "name": "youtube", diff --git a/blockchains/smartchain/assets/0xc0994Af94FEe0361A1e1E1ccf72BCe19d5FD86FB/info.json b/blockchains/smartchain/assets/0xc0994Af94FEe0361A1e1E1ccf72BCe19d5FD86FB/info.json index 37c030354b63e..fa21396c8c263 100644 --- a/blockchains/smartchain/assets/0xc0994Af94FEe0361A1e1E1ccf72BCe19d5FD86FB/info.json +++ b/blockchains/smartchain/assets/0xc0994Af94FEe0361A1e1E1ccf72BCe19d5FD86FB/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/playrichcity" }, { - "name": "twitter", - "url": "https://twitter.com/playrichcity" + "name": "x", + "url": "https://x.com/playrichcity" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0xc0E6AD13BD58413Ed308729b688d601243E1CF77/info.json b/blockchains/smartchain/assets/0xc0E6AD13BD58413Ed308729b688d601243E1CF77/info.json index 9c4632d1462bb..1fd88cac8ce4c 100644 --- a/blockchains/smartchain/assets/0xc0E6AD13BD58413Ed308729b688d601243E1CF77/info.json +++ b/blockchains/smartchain/assets/0xc0E6AD13BD58413Ed308729b688d601243E1CF77/info.json @@ -6,12 +6,12 @@ "type": "BEP20", "symbol": "BLK", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xc0E6AD13BD58413Ed308729b688d601243E1CF77", "links": [ { - "name": "twitter", - "url": "https://twitter.com/blkwhalegroup" + "name": "x", + "url": "https://x.com/blkwhalegroup" }, { "name": "telegram", @@ -41,4 +41,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc0E6AD13BD58413Ed308729b688d601243E1CF77/logo.png b/blockchains/smartchain/assets/0xc0E6AD13BD58413Ed308729b688d601243E1CF77/logo.png deleted file mode 100644 index e608f8fb7f1af..0000000000000 Binary files a/blockchains/smartchain/assets/0xc0E6AD13BD58413Ed308729b688d601243E1CF77/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xc10358f062663448a3489fC258139944534592ac/info.json b/blockchains/smartchain/assets/0xc10358f062663448a3489fC258139944534592ac/info.json index 17d819cb00510..b76db1ac8e0e7 100644 --- a/blockchains/smartchain/assets/0xc10358f062663448a3489fC258139944534592ac/info.json +++ b/blockchains/smartchain/assets/0xc10358f062663448a3489fC258139944534592ac/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/bcmhunt" + "name": "x", + "url": "https://x.com/bcmhunt" }, { "name": "github", @@ -45,4 +45,4 @@ "url": "https://coingecko.com/en/coins/blockchain-monster-hunt" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc145DC2eBDbe8EAD1fEcDeBF46c76Eb1Fdd0104D/info.json b/blockchains/smartchain/assets/0xc145DC2eBDbe8EAD1fEcDeBF46c76Eb1Fdd0104D/info.json new file mode 100644 index 0000000000000..8c529d7552e65 --- /dev/null +++ b/blockchains/smartchain/assets/0xc145DC2eBDbe8EAD1fEcDeBF46c76Eb1Fdd0104D/info.json @@ -0,0 +1,28 @@ +{ + "name": "Carvana (Ondo Tokenized)", + "type": "BEP20", + "symbol": "CVNAon", + "decimals": 18, + "description": "CVNAon is the Ondo Tokenized version of Carvana, giving tokenholders economic exposure similar to holding CVNA and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xc145DC2eBDbe8EAD1fEcDeBF46c76Eb1Fdd0104D", + "status": "active", + "id": "0xc145DC2eBDbe8EAD1fEcDeBF46c76Eb1Fdd0104D", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/carvana-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/carvana-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc145DC2eBDbe8EAD1fEcDeBF46c76Eb1Fdd0104D/logo.png b/blockchains/smartchain/assets/0xc145DC2eBDbe8EAD1fEcDeBF46c76Eb1Fdd0104D/logo.png new file mode 100644 index 0000000000000..c6fba3375339f Binary files /dev/null and b/blockchains/smartchain/assets/0xc145DC2eBDbe8EAD1fEcDeBF46c76Eb1Fdd0104D/logo.png differ diff --git a/blockchains/smartchain/assets/0xc15e89f2149bCC0cBd5FB204C9e77fe878f1e9b2/info.json b/blockchains/smartchain/assets/0xc15e89f2149bCC0cBd5FB204C9e77fe878f1e9b2/info.json index 24bf44d5aa510..d73201021a902 100644 --- a/blockchains/smartchain/assets/0xc15e89f2149bCC0cBd5FB204C9e77fe878f1e9b2/info.json +++ b/blockchains/smartchain/assets/0xc15e89f2149bCC0cBd5FB204C9e77fe878f1e9b2/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/HuHToken" }, { - "name": "twitter", - "url": "https://twitter.com/HuhToken" + "name": "x", + "url": "https://x.com/HuhToken" }, { "name": "github", @@ -38,4 +38,4 @@ "url": "https://coingecko.com/en/coins/huh" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc1A59a17F87ba6651Eb8E8F707db7672647c45bD/info.json b/blockchains/smartchain/assets/0xc1A59a17F87ba6651Eb8E8F707db7672647c45bD/info.json index bb04c4b894ab2..3f4add0e954b5 100644 --- a/blockchains/smartchain/assets/0xc1A59a17F87ba6651Eb8E8F707db7672647c45bD/info.json +++ b/blockchains/smartchain/assets/0xc1A59a17F87ba6651Eb8E8F707db7672647c45bD/info.json @@ -10,8 +10,8 @@ "id": "0xc1A59a17F87ba6651Eb8E8F707db7672647c45bD", "links": [ { - "name": "twitter", - "url": "https://twitter.com/lnr" + "name": "x", + "url": "https://x.com/lnr" }, { "name": "telegram", @@ -33,4 +33,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc1D99537392084Cc02D3F52386729b79d01035ce/info.json b/blockchains/smartchain/assets/0xc1D99537392084Cc02D3F52386729b79d01035ce/info.json index 7c8fa5e2a4346..8684b10321dcd 100644 --- a/blockchains/smartchain/assets/0xc1D99537392084Cc02D3F52386729b79d01035ce/info.json +++ b/blockchains/smartchain/assets/0xc1D99537392084Cc02D3F52386729b79d01035ce/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/staysbase/" }, { - "name": "twitter", - "url": "https://twitter.com/StaysBASE" + "name": "x", + "url": "https://x.com/StaysBASE" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xc2098a8938119A52B1F7661893c0153A6CB116d5/info.json b/blockchains/smartchain/assets/0xc2098a8938119A52B1F7661893c0153A6CB116d5/info.json index b0de2c7c086d3..3bf674e3cf728 100644 --- a/blockchains/smartchain/assets/0xc2098a8938119A52B1F7661893c0153A6CB116d5/info.json +++ b/blockchains/smartchain/assets/0xc2098a8938119A52B1F7661893c0153A6CB116d5/info.json @@ -10,8 +10,8 @@ "id": "0xc2098a8938119A52B1F7661893c0153A6CB116d5", "links": [ { - "name": "twitter", - "url": "https://twitter.com/rangersprotocol" + "name": "x", + "url": "https://x.com/rangersprotocol" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xc22c01470977150a76a5a85dd3D167de495038fA/info.json b/blockchains/smartchain/assets/0xc22c01470977150a76a5a85dd3D167de495038fA/info.json index 36c42c882e4fc..57c95641c5761 100644 --- a/blockchains/smartchain/assets/0xc22c01470977150a76a5a85dd3D167de495038fA/info.json +++ b/blockchains/smartchain/assets/0xc22c01470977150a76a5a85dd3D167de495038fA/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/spacedragon_io" + "name": "x", + "url": "https://x.com/spacedragon_io" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xc22e8114818A918260662375450e19aC73D32852/info.json b/blockchains/smartchain/assets/0xc22e8114818A918260662375450e19aC73D32852/info.json index 3602c07973646..372ac118227aa 100644 --- a/blockchains/smartchain/assets/0xc22e8114818A918260662375450e19aC73D32852/info.json +++ b/blockchains/smartchain/assets/0xc22e8114818A918260662375450e19aC73D32852/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/kittycakebsc" }, { - "name": "twitter", - "url": "https://twitter.com/kittycaketoken" + "name": "x", + "url": "https://x.com/kittycaketoken" }, { "name": "whitepaper", diff --git a/blockchains/smartchain/assets/0xc29000A4b1eCD326b6DafAE17bDA636475FeA1e7/info.json b/blockchains/smartchain/assets/0xc29000A4b1eCD326b6DafAE17bDA636475FeA1e7/info.json index 2558d952646a1..658a93288107f 100644 --- a/blockchains/smartchain/assets/0xc29000A4b1eCD326b6DafAE17bDA636475FeA1e7/info.json +++ b/blockchains/smartchain/assets/0xc29000A4b1eCD326b6DafAE17bDA636475FeA1e7/info.json @@ -10,8 +10,8 @@ "id": "0xc29000A4b1eCD326b6DafAE17bDA636475FeA1e7", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PancakePoll" + "name": "x", + "url": "https://x.com/PancakePoll" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xc2E9d07F66A89c44062459A47a0D2Dc038E4fb16/info.json b/blockchains/smartchain/assets/0xc2E9d07F66A89c44062459A47a0D2Dc038E4fb16/info.json index 21462589c5a39..8303fa49d6900 100644 --- a/blockchains/smartchain/assets/0xc2E9d07F66A89c44062459A47a0D2Dc038E4fb16/info.json +++ b/blockchains/smartchain/assets/0xc2E9d07F66A89c44062459A47a0D2Dc038E4fb16/info.json @@ -10,8 +10,8 @@ "id": "0xc2E9d07F66A89c44062459A47a0D2Dc038E4fb16", "links": [ { - "name": "twitter", - "url": "https://twitter.com/pStakeFinance" + "name": "x", + "url": "https://x.com/pStakeFinance" }, { "name": "github", @@ -66,4 +66,4 @@ "defi", "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc2c28b58db223DA89b567A0A98197Fc17C115148/info.json b/blockchains/smartchain/assets/0xc2c28b58db223DA89b567A0A98197Fc17C115148/info.json new file mode 100644 index 0000000000000..d437c4d5bb73d --- /dev/null +++ b/blockchains/smartchain/assets/0xc2c28b58db223DA89b567A0A98197Fc17C115148/info.json @@ -0,0 +1,25 @@ +{ + "name": "Sologenic", + "type": "BEP20", + "symbol": "SOLO", + "decimals": 15, + "description": "Sologenic is disrupting the asset trading industry: Tokenized Securities, Crypto Assets & NFTs. Sologenic.com and sologenic.org are two separate teams. Sologenic.org aka SOLO Core team’s focus is purely on the expansion of the Sologenic as a decentralized ecosystem while the sologenic.com team are working on the launch of an important use-case of the Sologenic ecosystem: Securities Tokenization", + "website": "https://sologenic.org/", + "explorer": "https://bscscan.com/token/0xc2c28b58db223da89b567a0a98197fc17c115148", + "id": "0xc2c28b58db223DA89b567A0A98197Fc17C115148", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/realSologenic" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sologenic/" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc2c28b58db223DA89b567A0A98197Fc17C115148/logo.png b/blockchains/smartchain/assets/0xc2c28b58db223DA89b567A0A98197Fc17C115148/logo.png new file mode 100644 index 0000000000000..38b5b16abe349 Binary files /dev/null and b/blockchains/smartchain/assets/0xc2c28b58db223DA89b567A0A98197Fc17C115148/logo.png differ diff --git a/blockchains/smartchain/assets/0xc2dD31B1B3a2f515cE0D48De712c6744C3475170/info.json b/blockchains/smartchain/assets/0xc2dD31B1B3a2f515cE0D48De712c6744C3475170/info.json new file mode 100644 index 0000000000000..9fc91952fde26 --- /dev/null +++ b/blockchains/smartchain/assets/0xc2dD31B1B3a2f515cE0D48De712c6744C3475170/info.json @@ -0,0 +1,28 @@ +{ + "name": "Vanguard Value ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "VTVon", + "decimals": 18, + "description": "VTVon is the Ondo Tokenized version of the Vanguard Value ETF, giving tokenholders economic exposure similar to holding VTV and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xc2dD31B1B3a2f515cE0D48De712c6744C3475170", + "status": "active", + "id": "0xc2dD31B1B3a2f515cE0D48De712c6744C3475170", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vanguard-value-etf-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vanguard-value-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc2dD31B1B3a2f515cE0D48De712c6744C3475170/logo.png b/blockchains/smartchain/assets/0xc2dD31B1B3a2f515cE0D48De712c6744C3475170/logo.png new file mode 100644 index 0000000000000..c8b7fdf9aa10b Binary files /dev/null and b/blockchains/smartchain/assets/0xc2dD31B1B3a2f515cE0D48De712c6744C3475170/logo.png differ diff --git a/blockchains/smartchain/assets/0xc30C95205C7BC70D81da8e852255Cc89B90480f7/info.json b/blockchains/smartchain/assets/0xc30C95205C7BC70D81da8e852255Cc89B90480f7/info.json index 41b3893cbcbe4..965b2e141e476 100644 --- a/blockchains/smartchain/assets/0xc30C95205C7BC70D81da8e852255Cc89B90480f7/info.json +++ b/blockchains/smartchain/assets/0xc30C95205C7BC70D81da8e852255Cc89B90480f7/info.json @@ -10,8 +10,8 @@ "id": "0xc30C95205C7BC70D81da8e852255Cc89B90480f7", "links": [ { - "name": "twitter", - "url": "https://twitter.com/adddotfinance" + "name": "x", + "url": "https://x.com/adddotfinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xc335Df7C25b72eEC661d5Aa32a7c2B7b2a1D1874/info.json b/blockchains/smartchain/assets/0xc335Df7C25b72eEC661d5Aa32a7c2B7b2a1D1874/info.json new file mode 100644 index 0000000000000..c725675acfcc0 --- /dev/null +++ b/blockchains/smartchain/assets/0xc335Df7C25b72eEC661d5Aa32a7c2B7b2a1D1874/info.json @@ -0,0 +1,38 @@ +{ + "name": "Ice Open Network", + "website": "https://ice.io", + "description": "Ice represents the next generation of digital currency, mineable on any mobile device. At its core, Ice Network fosters a trusted community, proliferating the belief that digital currencies can maintain value across diverse use cases. Membership is initiated through invitations, enabling new users to earn and build micro-communities immediately.", + "explorer": "https://bscscan.com/token/0xc335Df7C25b72eEC661d5Aa32a7c2B7b2a1D1874", + "type": "BEP20", + "symbol": "ICE", + "decimals": 18, + "status": "active", + "id": "0xc335Df7C25b72eEC661d5Aa32a7c2B7b2a1D1874", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ice-decentralized-future/" + }, + { + "name": "github", + "url": "https://github.com/ice-blockchain" + }, + { + "name": "x", + "url": "https://x.com/ice_blockchain" + }, + { + "name": "telegram", + "url": "https://t.me/iceblockchain" + }, + { + "name": "whitepaper", + "url": "https://ice.io/whitepaper" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/iceblockchain" + } + ], + "tags": [] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc335Df7C25b72eEC661d5Aa32a7c2B7b2a1D1874/logo.png b/blockchains/smartchain/assets/0xc335Df7C25b72eEC661d5Aa32a7c2B7b2a1D1874/logo.png new file mode 100644 index 0000000000000..985650b0545c0 Binary files /dev/null and b/blockchains/smartchain/assets/0xc335Df7C25b72eEC661d5Aa32a7c2B7b2a1D1874/logo.png differ diff --git a/blockchains/smartchain/assets/0xc3583C8328eCB4DC8751C7e4fe7bCC18E558A4b6/info.json b/blockchains/smartchain/assets/0xc3583C8328eCB4DC8751C7e4fe7bCC18E558A4b6/info.json index d86289bf1cce7..b0536c72b254d 100644 --- a/blockchains/smartchain/assets/0xc3583C8328eCB4DC8751C7e4fe7bCC18E558A4b6/info.json +++ b/blockchains/smartchain/assets/0xc3583C8328eCB4DC8751C7e4fe7bCC18E558A4b6/info.json @@ -10,8 +10,8 @@ "id": "0xc3583C8328eCB4DC8751C7e4fe7bCC18E558A4b6", "links": [ { - "name": "twitter", - "url": "https://twitter.com/vikingsinu" + "name": "x", + "url": "https://x.com/vikingsinu" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xc35f46aAEb8aD17bCbAa78c03540FEffa44790Cb/info.json b/blockchains/smartchain/assets/0xc35f46aAEb8aD17bCbAa78c03540FEffa44790Cb/info.json index bab6ba53a48ce..ac37c89caef85 100644 --- a/blockchains/smartchain/assets/0xc35f46aAEb8aD17bCbAa78c03540FEffa44790Cb/info.json +++ b/blockchains/smartchain/assets/0xc35f46aAEb8aD17bCbAa78c03540FEffa44790Cb/info.json @@ -10,8 +10,8 @@ "id": "0xc35f46aAEb8aD17bCbAa78c03540FEffa44790Cb", "links": [ { - "name": "twitter", - "url": "https://twitter.com/FinanceLemur" + "name": "x", + "url": "https://x.com/FinanceLemur" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xc3601108947A46B219C09f24c668a52756C8d977/info.json b/blockchains/smartchain/assets/0xc3601108947A46B219C09f24c668a52756C8d977/info.json index 3396804d8e7f2..cad1bc43e4095 100644 --- a/blockchains/smartchain/assets/0xc3601108947A46B219C09f24c668a52756C8d977/info.json +++ b/blockchains/smartchain/assets/0xc3601108947A46B219C09f24c668a52756C8d977/info.json @@ -6,12 +6,12 @@ "website": "https://www.vlaunch.com", "description": "First Fully Influencer-Backed Multi-Chain Launchpad", "explorer": "https://bscscan.com/token/0xc3601108947A46B219C09f24c668a52756C8d977", - "status": "active", + "status": "abandoned", "id": "0xc3601108947A46B219C09f24c668a52756C8d977", "links": [ { - "name": "twitter", - "url": "https://twitter.com/vlaunchcom" + "name": "x", + "url": "https://x.com/vlaunchcom" }, { "name": "telegram", @@ -41,4 +41,4 @@ "tags": [ "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc3601108947A46B219C09f24c668a52756C8d977/logo.png b/blockchains/smartchain/assets/0xc3601108947A46B219C09f24c668a52756C8d977/logo.png deleted file mode 100644 index 62b8c49184690..0000000000000 Binary files a/blockchains/smartchain/assets/0xc3601108947A46B219C09f24c668a52756C8d977/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xc3Bd3e021801A34104fcb5E29DE6689a9b204513/info.json b/blockchains/smartchain/assets/0xc3Bd3e021801A34104fcb5E29DE6689a9b204513/info.json index 09223030149e1..f037cdad30db7 100644 --- a/blockchains/smartchain/assets/0xc3Bd3e021801A34104fcb5E29DE6689a9b204513/info.json +++ b/blockchains/smartchain/assets/0xc3Bd3e021801A34104fcb5E29DE6689a9b204513/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/levelup_games" }, { - "name": "twitter", - "url": "https://twitter.com/LevelUpBSC" + "name": "x", + "url": "https://x.com/LevelUpBSC" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0xc3C6D3dbab8E7C4653Cf6ef91d907eddB065f3B2/info.json b/blockchains/smartchain/assets/0xc3C6D3dbab8E7C4653Cf6ef91d907eddB065f3B2/info.json new file mode 100644 index 0000000000000..5b3ac51fbba65 --- /dev/null +++ b/blockchains/smartchain/assets/0xc3C6D3dbab8E7C4653Cf6ef91d907eddB065f3B2/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wegie", + "symbol": "WEGI", + "type": "BEP20", + "decimals": 9, + "description": "Norwegian forest cats have been associated with Vikings throughout history and apper in Scandinavian mythology. Wegie joined the crypto ecosystem as one of these cats.", + "website": "https://wegietoken.com/", + "explorer": "https://bscscan.com/token/0xc3c6d3dbab8e7c4653cf6ef91d907eddb065f3b2", + "status": "active", + "id": "0xc3C6D3dbab8E7C4653Cf6ef91d907eddB065f3B2", + "links": [ + { + "name": "x", + "url": "https://x.com/Wegietoken" + }, + { + "name": "telegram", + "url": "https://t.me/wegietoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc3C6D3dbab8E7C4653Cf6ef91d907eddB065f3B2/logo.png b/blockchains/smartchain/assets/0xc3C6D3dbab8E7C4653Cf6ef91d907eddB065f3B2/logo.png new file mode 100644 index 0000000000000..432546945a0e1 Binary files /dev/null and b/blockchains/smartchain/assets/0xc3C6D3dbab8E7C4653Cf6ef91d907eddB065f3B2/logo.png differ diff --git a/blockchains/smartchain/assets/0xc3D912863152E1Afc935AD0D42d469e7C6B05B77/info.json b/blockchains/smartchain/assets/0xc3D912863152E1Afc935AD0D42d469e7C6B05B77/info.json index c81538dd642e2..fcd5098057540 100644 --- a/blockchains/smartchain/assets/0xc3D912863152E1Afc935AD0D42d469e7C6B05B77/info.json +++ b/blockchains/smartchain/assets/0xc3D912863152E1Afc935AD0D42d469e7C6B05B77/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/LuckyLionIO" }, { - "name": "twitter", - "url": "https://twitter.com/LuckyLionGameFi" + "name": "x", + "url": "https://x.com/LuckyLionGameFi" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0xc3EAE9b061Aa0e1B9BD3436080Dc57D2d63FEdc1/info.json b/blockchains/smartchain/assets/0xc3EAE9b061Aa0e1B9BD3436080Dc57D2d63FEdc1/info.json index 7a975b83d1227..73487acb55d9c 100644 --- a/blockchains/smartchain/assets/0xc3EAE9b061Aa0e1B9BD3436080Dc57D2d63FEdc1/info.json +++ b/blockchains/smartchain/assets/0xc3EAE9b061Aa0e1B9BD3436080Dc57D2d63FEdc1/info.json @@ -10,8 +10,8 @@ "id": "0xc3EAE9b061Aa0e1B9BD3436080Dc57D2d63FEdc1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/HoneyFarmFi" + "name": "x", + "url": "https://x.com/HoneyFarmFi" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xc41689A727469C1573009757200371edf36D540e/info.json b/blockchains/smartchain/assets/0xc41689A727469C1573009757200371edf36D540e/info.json index bf374b1636232..45cfe414b728f 100644 --- a/blockchains/smartchain/assets/0xc41689A727469C1573009757200371edf36D540e/info.json +++ b/blockchains/smartchain/assets/0xc41689A727469C1573009757200371edf36D540e/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/dynamixtoken" }, { - "name": "twitter", - "url": "https://twitter.com/Dynamixarmy" + "name": "x", + "url": "https://x.com/Dynamixarmy" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xc435b3C41AE56d9Bc57b8525F4d522C978F168e8/info.json b/blockchains/smartchain/assets/0xc435b3C41AE56d9Bc57b8525F4d522C978F168e8/info.json new file mode 100644 index 0000000000000..535b4ce11e7e5 --- /dev/null +++ b/blockchains/smartchain/assets/0xc435b3C41AE56d9Bc57b8525F4d522C978F168e8/info.json @@ -0,0 +1,15 @@ +{ + "name": "Warner Bros. Discovery xStock", + "type": "BEP20", + "symbol": "WBDx", + "decimals": 18, + "description": "Warner Bros. Discovery xStock (WBDx) is a tracker certificate issued as a freely transferable token on selected blockchains. WBDx tracks the price of Warner Bros. Discovery, Inc.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0xc435b3C41AE56d9Bc57b8525F4d522C978F168e8", + "status": "active", + "id": "0xc435b3C41AE56d9Bc57b8525F4d522C978F168e8", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc435b3C41AE56d9Bc57b8525F4d522C978F168e8/logo.png b/blockchains/smartchain/assets/0xc435b3C41AE56d9Bc57b8525F4d522C978F168e8/logo.png new file mode 100644 index 0000000000000..fb09d9af719d3 Binary files /dev/null and b/blockchains/smartchain/assets/0xc435b3C41AE56d9Bc57b8525F4d522C978F168e8/logo.png differ diff --git a/blockchains/smartchain/assets/0xc4736F2611A62d545DC2D0d8f0766283617e6FcB/info.json b/blockchains/smartchain/assets/0xc4736F2611A62d545DC2D0d8f0766283617e6FcB/info.json index f7b6b4e9f3069..484d60ceef2a1 100644 --- a/blockchains/smartchain/assets/0xc4736F2611A62d545DC2D0d8f0766283617e6FcB/info.json +++ b/blockchains/smartchain/assets/0xc4736F2611A62d545DC2D0d8f0766283617e6FcB/info.json @@ -14,8 +14,8 @@ "url": "https://medium.com/@topgoal_nft" }, { - "name": "twitter", - "url": "https://twitter.com/TopGoal_NFT" + "name": "x", + "url": "https://x.com/TopGoal_NFT" } ], "tags": [ diff --git a/blockchains/smartchain/assets/0xc49DDe62B4A0810074721fAcA54Aab52369f486a/info.json b/blockchains/smartchain/assets/0xc49DDe62B4A0810074721fAcA54Aab52369f486a/info.json index 9fd6701df2a3f..7734d327f6e61 100644 --- a/blockchains/smartchain/assets/0xc49DDe62B4A0810074721fAcA54Aab52369f486a/info.json +++ b/blockchains/smartchain/assets/0xc49DDe62B4A0810074721fAcA54Aab52369f486a/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/polker-io" }, { - "name": "twitter", - "url": "https://twitter.com/POLKER_PKR" + "name": "x", + "url": "https://x.com/POLKER_PKR" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0xc4a54699d24C5C130cf866974181E41e22bb3b07/info.json b/blockchains/smartchain/assets/0xc4a54699d24C5C130cf866974181E41e22bb3b07/info.json index 2a7fcf7582d11..f79077aa038d2 100644 --- a/blockchains/smartchain/assets/0xc4a54699d24C5C130cf866974181E41e22bb3b07/info.json +++ b/blockchains/smartchain/assets/0xc4a54699d24C5C130cf866974181E41e22bb3b07/info.json @@ -10,8 +10,8 @@ "id": "0xc4a54699d24C5C130cf866974181E41e22bb3b07", "links": [ { - "name": "twitter", - "url": "https://twitter.com/floki_real" + "name": "x", + "url": "https://x.com/floki_real" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xc5a72FC4324EF3fcEBAFf9b5E729487719Eb5B7A/info.json b/blockchains/smartchain/assets/0xc5a72FC4324EF3fcEBAFf9b5E729487719Eb5B7A/info.json index c63897e5945aa..31914f8041c64 100644 --- a/blockchains/smartchain/assets/0xc5a72FC4324EF3fcEBAFf9b5E729487719Eb5B7A/info.json +++ b/blockchains/smartchain/assets/0xc5a72FC4324EF3fcEBAFf9b5E729487719Eb5B7A/info.json @@ -10,8 +10,8 @@ "id": "0xc5a72FC4324EF3fcEBAFf9b5E729487719Eb5B7A", "links": [ { - "name": "twitter", - "url": "https://twitter.com/thedogeworld_io" + "name": "x", + "url": "https://x.com/thedogeworld_io" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/info.json b/blockchains/smartchain/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/info.json new file mode 100644 index 0000000000000..6b0026b6c1426 --- /dev/null +++ b/blockchains/smartchain/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/info.json @@ -0,0 +1,28 @@ +{ + "name": "First Digital USD", + "type": "BEP20", + "symbol": "FDUSD", + "decimals": 18, + "website": "https://firstdigitallabs.com/", + "description": "FDUSD (First Digital USD) is a 1:1 USD-backed Stablecoin. FDUSD revolutionizes global finance with a cutting-edge digital stablecoin, providing businesses and builders with security, speed, and innovation worldwide.", + "explorer": "https://bscscan.com/token/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409", + "status": "active", + "id": "0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409", + "links": [ + { + "name": "x", + "url": "https://x.com/FDLabsHQ" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/first-digital-usd" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/first-digital-usd" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/logo.png b/blockchains/smartchain/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/logo.png new file mode 100644 index 0000000000000..5d54b8a4dba01 Binary files /dev/null and b/blockchains/smartchain/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/logo.png differ diff --git a/blockchains/smartchain/assets/0xc6f26e6df5f44C0Ccd939581987C09b866cDBd1A/info.json b/blockchains/smartchain/assets/0xc6f26e6df5f44C0Ccd939581987C09b866cDBd1A/info.json index 4cb65ee4cc1b7..7e5a3ba3efa5b 100644 --- a/blockchains/smartchain/assets/0xc6f26e6df5f44C0Ccd939581987C09b866cDBd1A/info.json +++ b/blockchains/smartchain/assets/0xc6f26e6df5f44C0Ccd939581987C09b866cDBd1A/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/InfinitUP" }, { - "name": "twitter", - "url": "https://twitter.com/infinituptoken" + "name": "x", + "url": "https://x.com/infinituptoken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xc709878167Ed069Aea15FD0bD4E9758CEb4Da193/info.json b/blockchains/smartchain/assets/0xc709878167Ed069Aea15FD0bD4E9758CEb4Da193/info.json index 587be76044373..81ff432518806 100644 --- a/blockchains/smartchain/assets/0xc709878167Ed069Aea15FD0bD4E9758CEb4Da193/info.json +++ b/blockchains/smartchain/assets/0xc709878167Ed069Aea15FD0bD4E9758CEb4Da193/info.json @@ -10,8 +10,8 @@ "id": "0xc709878167Ed069Aea15FD0bD4E9758CEb4Da193", "links": [ { - "name": "twitter", - "url": "https://twitter.com/dayofdefeatBSC" + "name": "x", + "url": "https://x.com/dayofdefeatBSC" }, { "name": "telegram", @@ -29,4 +29,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc732B6586A93b6B7CF5FeD3470808Bc74998224D/info.json b/blockchains/smartchain/assets/0xc732B6586A93b6B7CF5FeD3470808Bc74998224D/info.json index e42b70acb6a32..9f9df238b0003 100644 --- a/blockchains/smartchain/assets/0xc732B6586A93b6B7CF5FeD3470808Bc74998224D/info.json +++ b/blockchains/smartchain/assets/0xc732B6586A93b6B7CF5FeD3470808Bc74998224D/info.json @@ -10,8 +10,8 @@ "id": "0xc732B6586A93b6B7CF5FeD3470808Bc74998224D", "links": [ { - "name": "twitter", - "url": "https://twitter.com/KryptomonTeam" + "name": "x", + "url": "https://x.com/KryptomonTeam" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xc748673057861a797275CD8A068AbB95A902e8de/info.json b/blockchains/smartchain/assets/0xc748673057861a797275CD8A068AbB95A902e8de/info.json index bf15884f2f25a..312b38710d829 100644 --- a/blockchains/smartchain/assets/0xc748673057861a797275CD8A068AbB95A902e8de/info.json +++ b/blockchains/smartchain/assets/0xc748673057861a797275CD8A068AbB95A902e8de/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/babydogecoin" + "name": "x", + "url": "https://x.com/babydogecoin" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xc74cD0042c837Ce59210857504eBb0859E06aA22/info.json b/blockchains/smartchain/assets/0xc74cD0042c837Ce59210857504eBb0859E06aA22/info.json index 5624fd5d44306..741c9e2e854d3 100644 --- a/blockchains/smartchain/assets/0xc74cD0042c837Ce59210857504eBb0859E06aA22/info.json +++ b/blockchains/smartchain/assets/0xc74cD0042c837Ce59210857504eBb0859E06aA22/info.json @@ -10,8 +10,8 @@ "id": "0xc74cD0042c837Ce59210857504eBb0859E06aA22", "links": [ { - "name": "twitter", - "url": "https://twitter.com/safuyield" + "name": "x", + "url": "https://x.com/safuyield" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xc77Dd3AdE7b717583E0924466E4E474A5673332c/info.json b/blockchains/smartchain/assets/0xc77Dd3AdE7b717583E0924466E4E474A5673332c/info.json index e0790a94e0f6f..cf033e67dd78c 100644 --- a/blockchains/smartchain/assets/0xc77Dd3AdE7b717583E0924466E4E474A5673332c/info.json +++ b/blockchains/smartchain/assets/0xc77Dd3AdE7b717583E0924466E4E474A5673332c/info.json @@ -10,8 +10,8 @@ "id": "0xc77Dd3AdE7b717583E0924466E4E474A5673332c", "links": [ { - "name": "twitter", - "url": "https://twitter.com/beasties_online" + "name": "x", + "url": "https://x.com/beasties_online" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xc7806943663158D68740a14ab0B270bD60BDe87D/info.json b/blockchains/smartchain/assets/0xc7806943663158D68740a14ab0B270bD60BDe87D/info.json new file mode 100644 index 0000000000000..5790efc2c92aa --- /dev/null +++ b/blockchains/smartchain/assets/0xc7806943663158D68740a14ab0B270bD60BDe87D/info.json @@ -0,0 +1,24 @@ +{ + "name": "Global X Uranium ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "URAon", + "decimals": 18, + "description": "URAon is the Ondo Tokenized version of the Global X Uranium ETF, giving tokenholders economic exposure similar to holding URA and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xc7806943663158D68740a14ab0B270bD60BDe87D", + "status": "active", + "id": "0xc7806943663158D68740a14ab0B270bD60BDe87D", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/global-x-uranium-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc7806943663158D68740a14ab0B270bD60BDe87D/logo.png b/blockchains/smartchain/assets/0xc7806943663158D68740a14ab0B270bD60BDe87D/logo.png new file mode 100644 index 0000000000000..c9a98e6a6f34c Binary files /dev/null and b/blockchains/smartchain/assets/0xc7806943663158D68740a14ab0B270bD60BDe87D/logo.png differ diff --git a/blockchains/smartchain/assets/0xc7Ad2CE38f208eED77a368613C62062fCE88f125/info.json b/blockchains/smartchain/assets/0xc7Ad2CE38f208eED77a368613C62062fCE88f125/info.json index 63b9f5cd83e06..db6a1c116e5c0 100644 --- a/blockchains/smartchain/assets/0xc7Ad2CE38f208eED77a368613C62062fCE88f125/info.json +++ b/blockchains/smartchain/assets/0xc7Ad2CE38f208eED77a368613C62062fCE88f125/info.json @@ -30,8 +30,8 @@ "url": "https://youtube.com/channel/UCOpRiuwOQgEYFkljfJmpNWg" }, { - "name": "twitter", - "url": "https://twitter.com/AerdropOfficial" + "name": "x", + "url": "https://x.com/AerdropOfficial" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0xc82B74532f417cC47FB14F0894D1B216D72F8888/info.json b/blockchains/smartchain/assets/0xc82B74532f417cC47FB14F0894D1B216D72F8888/info.json new file mode 100644 index 0000000000000..ced2b31d077a4 --- /dev/null +++ b/blockchains/smartchain/assets/0xc82B74532f417cC47FB14F0894D1B216D72F8888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether", + "type": "BEP20", + "symbol": "FAKE USDT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xc82B74532f417cC47FB14F0894D1B216D72F8888", + "explorer": "https://bscscan.com/token/0xc82B74532f417cC47FB14F0894D1B216D72F8888", + "status": "spam", + "id": "0xc82B74532f417cC47FB14F0894D1B216D72F8888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc845b2894dBddd03858fd2D643B4eF725fE0849d/info.json b/blockchains/smartchain/assets/0xc845b2894dBddd03858fd2D643B4eF725fE0849d/info.json new file mode 100644 index 0000000000000..d3965b90505f6 --- /dev/null +++ b/blockchains/smartchain/assets/0xc845b2894dBddd03858fd2D643B4eF725fE0849d/info.json @@ -0,0 +1,24 @@ +{ + "name": "NVIDIA tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "NVIDIA tokenized stock (xStock) (NVDAX) is a cryptocurrency and operates on the Solana platform. NVIDIA tokenized stock (xStock) has a current supply of 48,653.72471846 with 7,655.63423039 in circulation. The last known price of NVIDIA tokenized stock (xStock) is 177.44432253 USD and is up 1.21 over the last 24 hours. It is currently trading on 44 active market(s) with $7,676,418.12 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/nvidia-xstock.", + "explorer": "https://bscscan.com/token/0xc845b2894dBddd03858fd2D643B4eF725fE0849d", + "type": "BEP20", + "symbol": "NVDAX", + "decimals": 18, + "status": "active", + "id": "0xc845b2894dBddd03858fd2D643B4eF725fE0849d", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nvidia-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc845b2894dBddd03858fd2D643B4eF725fE0849d/logo.png b/blockchains/smartchain/assets/0xc845b2894dBddd03858fd2D643B4eF725fE0849d/logo.png new file mode 100644 index 0000000000000..b79453063db00 Binary files /dev/null and b/blockchains/smartchain/assets/0xc845b2894dBddd03858fd2D643B4eF725fE0849d/logo.png differ diff --git a/blockchains/smartchain/assets/0xc864019047B864B6ab609a968ae2725DFaee808A/info.json b/blockchains/smartchain/assets/0xc864019047B864B6ab609a968ae2725DFaee808A/info.json index efb0d46d6dfc9..db831c71f6f5c 100644 --- a/blockchains/smartchain/assets/0xc864019047B864B6ab609a968ae2725DFaee808A/info.json +++ b/blockchains/smartchain/assets/0xc864019047B864B6ab609a968ae2725DFaee808A/info.json @@ -10,8 +10,8 @@ "id": "0xc864019047B864B6ab609a968ae2725DFaee808A", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SheludkoDmitriy?s=12" + "name": "x", + "url": "https://x.com/SheludkoDmitriy?s=12" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xc8C06a58E4ad7c01b9bb5Af6C76a7a1CfEBd0319/info.json b/blockchains/smartchain/assets/0xc8C06a58E4ad7c01b9bb5Af6C76a7a1CfEBd0319/info.json new file mode 100644 index 0000000000000..7036a42e0dc2d --- /dev/null +++ b/blockchains/smartchain/assets/0xc8C06a58E4ad7c01b9bb5Af6C76a7a1CfEBd0319/info.json @@ -0,0 +1,68 @@ +{ + "name": "ICLICK INU", + "type": "BEP20", + "symbol": "ICLICK", + "decimals": 18, + "website": "https://iclickinu.com/", + "description": "Introducing the best PTC Blockchain platform. At iClick Inu, we have combined the power of blockchain with PTC advertising to create a whole new way to earn. Our platform ensures that your interactions and earnings are recorded on a secure and tamper-proof digital ledger, making everything transparent and trustworthy.", + "explorer": "https://bscscan.com/token/0xc8C06a58E4ad7c01b9bb5Af6C76a7a1CfEBd0319", + "status": "active", + "id": "0xc8C06a58E4ad7c01b9bb5Af6C76a7a1CfEBd0319", + "links": [ + { + "name": "x", + "url": "https://x.com/iclickinu" + }, + { + "name": "github", + "url": "https://github.com/iclickinu" + }, + { + "name": "telegram", + "url": "https://t.me/iclickinu" + }, + { + "name": "telegram_news", + "url": "https://t.me/ICLICKINU_TOKEN" + }, + { + "name": "blog", + "url": "https://iclickinu.com/blog" + }, + { + "name": "facebook", + "url": "https://facebook.com/profile.php?id=100092729705836" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/BridalBorate569" + }, + { + "name": "whitepaper", + "url": "https://iclickinu.com/whitepaper" + }, + { + "name": "medium", + "url": "https://medium.com/@iclickinu" + }, + { + "name": "youtube", + "url": "https://youtube.com/@iclickinu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/dexscan/bsc/0xcdb21401f042ede32b74809c27b91a8a90a5a00e/" + }, + { + "name": "source_code", + "url": "https://bscscan.com/token/0xc8c06a58e4ad7c01b9bb5af6c76a7a1cfebd0319#code" + }, + { + "name": "docs", + "url": "https://iclickinu.com/tokeninfo" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc8C06a58E4ad7c01b9bb5Af6C76a7a1CfEBd0319/logo.png b/blockchains/smartchain/assets/0xc8C06a58E4ad7c01b9bb5Af6C76a7a1CfEBd0319/logo.png new file mode 100644 index 0000000000000..1022f7423227b Binary files /dev/null and b/blockchains/smartchain/assets/0xc8C06a58E4ad7c01b9bb5Af6C76a7a1CfEBd0319/logo.png differ diff --git a/blockchains/smartchain/assets/0xc8E8ecB2A5B5d1eCFf007BF74d15A86434aA0c5C/info.json b/blockchains/smartchain/assets/0xc8E8ecB2A5B5d1eCFf007BF74d15A86434aA0c5C/info.json index bda1725631c19..e97c61cf1c84c 100644 --- a/blockchains/smartchain/assets/0xc8E8ecB2A5B5d1eCFf007BF74d15A86434aA0c5C/info.json +++ b/blockchains/smartchain/assets/0xc8E8ecB2A5B5d1eCFf007BF74d15A86434aA0c5C/info.json @@ -10,8 +10,8 @@ "id": "0xc8E8ecB2A5B5d1eCFf007BF74d15A86434aA0c5C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/DragonSlayerNft" + "name": "x", + "url": "https://x.com/DragonSlayerNft" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xc978BA9309f3c3bE3a79302251A2bB041bAa7118/info.json b/blockchains/smartchain/assets/0xc978BA9309f3c3bE3a79302251A2bB041bAa7118/info.json index 3d032aebbba06..c92d32e0b30ad 100644 --- a/blockchains/smartchain/assets/0xc978BA9309f3c3bE3a79302251A2bB041bAa7118/info.json +++ b/blockchains/smartchain/assets/0xc978BA9309f3c3bE3a79302251A2bB041bAa7118/info.json @@ -10,8 +10,8 @@ "id": "0xc978BA9309f3c3bE3a79302251A2bB041bAa7118", "links": [ { - "name": "twitter", - "url": "https://twitter.com/kittyshiba" + "name": "x", + "url": "https://x.com/kittyshiba" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xc98a8EC7A07f1b743E86896a52434C4C6A0Dbc42/info.json b/blockchains/smartchain/assets/0xc98a8EC7A07f1b743E86896a52434C4C6A0Dbc42/info.json index 20068ad5e7c55..531038369d8b9 100644 --- a/blockchains/smartchain/assets/0xc98a8EC7A07f1b743E86896a52434C4C6A0Dbc42/info.json +++ b/blockchains/smartchain/assets/0xc98a8EC7A07f1b743E86896a52434C4C6A0Dbc42/info.json @@ -22,12 +22,12 @@ "url": "https://t.me/asixtoken" }, { - "name": "twitter", - "url": "https://twitter.com/AsixToken" + "name": "x", + "url": "https://x.com/AsixToken" } ], "tags": [ "gamefi", "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc99Dbbe7E3abc34ce0De6474759dc8092aBfBd15/info.json b/blockchains/smartchain/assets/0xc99Dbbe7E3abc34ce0De6474759dc8092aBfBd15/info.json new file mode 100644 index 0000000000000..9df3da339430a --- /dev/null +++ b/blockchains/smartchain/assets/0xc99Dbbe7E3abc34ce0De6474759dc8092aBfBd15/info.json @@ -0,0 +1,17 @@ +{ + "name": "Blockiichain", + "symbol": "BCHAIN", + "website": "https://blockiichain.tech", + "description": "Blockiichain Experience enhanced scalability and lower costs on our BSC layer 2 chain.", + "explorer": "https://bscscan.com/token/0xc99dbbe7e3abc34ce0de6474759dc8092abfbd15", + "decimals": 18, + "status": "active", + "id": "0xc99Dbbe7E3abc34ce0De6474759dc8092aBfBd15", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/blockiichain" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc99Dbbe7E3abc34ce0De6474759dc8092aBfBd15/logo.png b/blockchains/smartchain/assets/0xc99Dbbe7E3abc34ce0De6474759dc8092aBfBd15/logo.png new file mode 100644 index 0000000000000..a629fbedaa5b4 Binary files /dev/null and b/blockchains/smartchain/assets/0xc99Dbbe7E3abc34ce0De6474759dc8092aBfBd15/logo.png differ diff --git a/blockchains/smartchain/assets/0xc9D53A339F3c22E016C6fA1E3Eb85AC32c75fED2/info.json b/blockchains/smartchain/assets/0xc9D53A339F3c22E016C6fA1E3Eb85AC32c75fED2/info.json index 7ee2b8623d504..b63df68dbbe54 100644 --- a/blockchains/smartchain/assets/0xc9D53A339F3c22E016C6fA1E3Eb85AC32c75fED2/info.json +++ b/blockchains/smartchain/assets/0xc9D53A339F3c22E016C6fA1E3Eb85AC32c75fED2/info.json @@ -10,8 +10,8 @@ "id": "0xc9D53A339F3c22E016C6fA1E3Eb85AC32c75fED2", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BHC_Happiness" + "name": "x", + "url": "https://x.com/BHC_Happiness" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xc9fF63C05E1B2CDa785290F1e3C3D0C8754a8888/info.json b/blockchains/smartchain/assets/0xc9fF63C05E1B2CDa785290F1e3C3D0C8754a8888/info.json new file mode 100644 index 0000000000000..d3e14102bf9b3 --- /dev/null +++ b/blockchains/smartchain/assets/0xc9fF63C05E1B2CDa785290F1e3C3D0C8754a8888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Теthеr", + "type": "BEP20", + "symbol": "FAKE ᅟᅠUЅⅮΤ", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xc9fF63C05E1B2CDa785290F1e3C3D0C8754a8888", + "explorer": "https://bscscan.com/token/0xc9fF63C05E1B2CDa785290F1e3C3D0C8754a8888", + "status": "spam", + "id": "0xc9fF63C05E1B2CDa785290F1e3C3D0C8754a8888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcA1262e77Fb25c0a4112CFc9bad3ff54F617f2e6/info.json b/blockchains/smartchain/assets/0xcA1262e77Fb25c0a4112CFc9bad3ff54F617f2e6/info.json index 2b8741d76650a..beb5f3b2b7ea2 100644 --- a/blockchains/smartchain/assets/0xcA1262e77Fb25c0a4112CFc9bad3ff54F617f2e6/info.json +++ b/blockchains/smartchain/assets/0xcA1262e77Fb25c0a4112CFc9bad3ff54F617f2e6/info.json @@ -10,8 +10,8 @@ "id": "0xcA1262e77Fb25c0a4112CFc9bad3ff54F617f2e6", "links": [ { - "name": "twitter", - "url": "https://twitter.com/CommunityJax" + "name": "x", + "url": "https://x.com/CommunityJax" }, { "name": "telegram", @@ -25,4 +25,4 @@ "tags": [ "wrapped" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcAf23964Ca8db16D816eB314a56789F58fE0e10e/info.json b/blockchains/smartchain/assets/0xcAf23964Ca8db16D816eB314a56789F58fE0e10e/info.json index 08cfead84b6ed..a0cb740b1d9d8 100644 --- a/blockchains/smartchain/assets/0xcAf23964Ca8db16D816eB314a56789F58fE0e10e/info.json +++ b/blockchains/smartchain/assets/0xcAf23964Ca8db16D816eB314a56789F58fE0e10e/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/GalaxyGoggle" }, { - "name": "twitter", - "url": "https://twitter.com/galaxygoggledao" + "name": "x", + "url": "https://x.com/galaxygoggledao" }, { "name": "telegram", @@ -30,4 +30,4 @@ "url": "https://coingecko.com/coins/galaxygoogle-dao" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5/info.json b/blockchains/smartchain/assets/0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5/info.json new file mode 100644 index 0000000000000..771e4edf23223 --- /dev/null +++ b/blockchains/smartchain/assets/0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5/info.json @@ -0,0 +1,28 @@ +{ + "name": "ParaSwap", + "type": "BEP20", + "symbol": "PSP", + "decimals": 18, + "website": "https://paraswap.io/", + "description": "ParaSwap aggregates decentralized exchanges and other DeFi services in one comprehensive interface to streamline and facilitate users' interactions with decentralized finance on Ethereum and EVM-compatible chains Polygon, Avalanche, BSC & more to come.", + "explorer": "https://bscscan.com/token/0xcafe001067cdef266afb7eb5a286dcfd277f3de5", + "status": "active", + "id": "0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5", + "links": [ + { + "name": "x", + "url": "https://x.com/paraswap" + }, + { + "name": "telegram", + "url": "https://t.me/paraswap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/paraswap/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5/logo.png b/blockchains/smartchain/assets/0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5/logo.png new file mode 100644 index 0000000000000..6a8b61f41102c Binary files /dev/null and b/blockchains/smartchain/assets/0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5/logo.png differ diff --git a/blockchains/smartchain/assets/0xcB22Db0EcB6fe58B7B47db443dCFdfDFbF729CEf/info.json b/blockchains/smartchain/assets/0xcB22Db0EcB6fe58B7B47db443dCFdfDFbF729CEf/info.json new file mode 100644 index 0000000000000..225e1eac2b295 --- /dev/null +++ b/blockchains/smartchain/assets/0xcB22Db0EcB6fe58B7B47db443dCFdfDFbF729CEf/info.json @@ -0,0 +1,24 @@ +{ + "name": "Adobe (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "ADBEon is the Ondo Tokenized version of Adobe, giving tokenholders economic exposure similar to holding ADBE and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xcb22db0ecb6fe58b7b47db443dcfdfdfbf729cef", + "type": "BEP20", + "symbol": "ADBEon", + "decimals": 18, + "status": "active", + "id": "0xcB22Db0EcB6fe58B7B47db443dCFdfDFbF729CEf", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/adobe-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcB22Db0EcB6fe58B7B47db443dCFdfDFbF729CEf/logo.png b/blockchains/smartchain/assets/0xcB22Db0EcB6fe58B7B47db443dCFdfDFbF729CEf/logo.png new file mode 100644 index 0000000000000..bac3a277c8d78 Binary files /dev/null and b/blockchains/smartchain/assets/0xcB22Db0EcB6fe58B7B47db443dCFdfDFbF729CEf/logo.png differ diff --git a/blockchains/smartchain/assets/0xcB2a0F46f67dC4c58a316F1c008EDef5c2311795/info.json b/blockchains/smartchain/assets/0xcB2a0F46f67dC4c58a316F1c008EDef5c2311795/info.json new file mode 100644 index 0000000000000..6bbe44a68fc90 --- /dev/null +++ b/blockchains/smartchain/assets/0xcB2a0F46f67dC4c58a316F1c008EDef5c2311795/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Gold Trust (Ondo)", + "website": "https://ondo.finance/", + "description": "IAUon is the Ondo Tokenized version of the iShares Gold Trust, giving tokenholders economic exposure similar to holding IAU and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xcb2a0f46f67dc4c58a316f1c008edef5c2311795", + "type": "BEP20", + "symbol": "IAUon", + "decimals": 18, + "status": "active", + "id": "0xcB2a0F46f67dC4c58a316F1c008EDef5c2311795", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-gold-trust-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcB2a0F46f67dC4c58a316F1c008EDef5c2311795/logo.png b/blockchains/smartchain/assets/0xcB2a0F46f67dC4c58a316F1c008EDef5c2311795/logo.png new file mode 100644 index 0000000000000..140fda8b3582b Binary files /dev/null and b/blockchains/smartchain/assets/0xcB2a0F46f67dC4c58a316F1c008EDef5c2311795/logo.png differ diff --git a/blockchains/smartchain/assets/0xcB8b1A33b5569D3728B4F834d01C7DF0608fB184/info.json b/blockchains/smartchain/assets/0xcB8b1A33b5569D3728B4F834d01C7DF0608fB184/info.json new file mode 100644 index 0000000000000..ad91aaf86139b --- /dev/null +++ b/blockchains/smartchain/assets/0xcB8b1A33b5569D3728B4F834d01C7DF0608fB184/info.json @@ -0,0 +1,21 @@ +{ + "name": "BSC Layer", + "symbol": "BSC", + "type": "BEP20", + "decimals": 18, + "description": "BSC Layer: A protocol on BNB Chain enabling restaking of BNB and alpha tokens for pooled security and enhanced ecosystem scalability.", + "website": "https://bsclayer.net", + "explorer": "https://bscscan.com/token/0xcb8b1a33b5569d3728b4f834d01c7df0608fb184", + "status": "active", + "id": "0xcB8b1A33b5569D3728B4F834d01C7DF0608fB184", + "links": [ + { + "name": "x", + "url": "https://x.com/bsclayerx" + }, + { + "name": "telegram", + "url": "https://t.me/bsclayerx" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcB8b1A33b5569D3728B4F834d01C7DF0608fB184/logo.png b/blockchains/smartchain/assets/0xcB8b1A33b5569D3728B4F834d01C7DF0608fB184/logo.png new file mode 100644 index 0000000000000..f189753bb2c5e Binary files /dev/null and b/blockchains/smartchain/assets/0xcB8b1A33b5569D3728B4F834d01C7DF0608fB184/logo.png differ diff --git a/blockchains/smartchain/assets/0xcBc919D845f393Aa0ceD76085Fd082c8aDcE00be/info.json b/blockchains/smartchain/assets/0xcBc919D845f393Aa0ceD76085Fd082c8aDcE00be/info.json index d7770c09497b8..628426e1afe0c 100644 --- a/blockchains/smartchain/assets/0xcBc919D845f393Aa0ceD76085Fd082c8aDcE00be/info.json +++ b/blockchains/smartchain/assets/0xcBc919D845f393Aa0ceD76085Fd082c8aDcE00be/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/bosagora" }, { - "name": "twitter", - "url": "https://twitter.com/BOSAGORA1" + "name": "x", + "url": "https://x.com/BOSAGORA1" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xcD1B51b87a8a7137D6421bA5A976225187a26777/info.json b/blockchains/smartchain/assets/0xcD1B51b87a8a7137D6421bA5A976225187a26777/info.json new file mode 100644 index 0000000000000..d2755746325cc --- /dev/null +++ b/blockchains/smartchain/assets/0xcD1B51b87a8a7137D6421bA5A976225187a26777/info.json @@ -0,0 +1,24 @@ +{ + "name": "LSD", + "type": "BEP20", + "symbol": "LSD", + "decimals": 18, + "website": "https://www.l7.finance/", + "description": "L7 is a Web3 digital asset management and traffic aggregation platform.", + "explorer": "https://bscscan.com/token/0xcd1b51b87a8a7137d6421ba5a976225187a26777", + "status": "active", + "id": "0xcD1B51b87a8a7137D6421bA5A976225187a26777", + "links": [ + { + "name": "x", + "url": "https://x.com/L7_Global" + }, + { + "name": "telegram", + "url": "https://t.me/L7_Official" + } + ], + "tags": [ + "dapp" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcD1B51b87a8a7137D6421bA5A976225187a26777/logo.png b/blockchains/smartchain/assets/0xcD1B51b87a8a7137D6421bA5A976225187a26777/logo.png new file mode 100644 index 0000000000000..0a298b959a107 Binary files /dev/null and b/blockchains/smartchain/assets/0xcD1B51b87a8a7137D6421bA5A976225187a26777/logo.png differ diff --git a/blockchains/smartchain/assets/0xcD657182A749554fc8487757612F02226355269d/info.json b/blockchains/smartchain/assets/0xcD657182A749554fc8487757612F02226355269d/info.json index 9b6ca12b79dc2..5490c2512dbec 100644 --- a/blockchains/smartchain/assets/0xcD657182A749554fc8487757612F02226355269d/info.json +++ b/blockchains/smartchain/assets/0xcD657182A749554fc8487757612F02226355269d/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/MuskSwap" }, { - "name": "twitter", - "url": "https://twitter.com/MUSKSWAPCHANNEL" + "name": "x", + "url": "https://x.com/MUSKSWAPCHANNEL" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0xcD6970d5211EfDF2516A4fc73163db7bA812B212/info.json b/blockchains/smartchain/assets/0xcD6970d5211EfDF2516A4fc73163db7bA812B212/info.json index f9638affbfb97..0df67e2f87f96 100644 --- a/blockchains/smartchain/assets/0xcD6970d5211EfDF2516A4fc73163db7bA812B212/info.json +++ b/blockchains/smartchain/assets/0xcD6970d5211EfDF2516A4fc73163db7bA812B212/info.json @@ -10,8 +10,8 @@ "id": "0xcD6970d5211EfDF2516A4fc73163db7bA812B212", "links": [ { - "name": "twitter", - "url": "https://twitter.com/inrxfoundation" + "name": "x", + "url": "https://x.com/inrxfoundation" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xcDf937995A55a9AB551D81b463AC0f7F02795368/info.json b/blockchains/smartchain/assets/0xcDf937995A55a9AB551D81b463AC0f7F02795368/info.json new file mode 100644 index 0000000000000..c0e9a66690d7f --- /dev/null +++ b/blockchains/smartchain/assets/0xcDf937995A55a9AB551D81b463AC0f7F02795368/info.json @@ -0,0 +1,21 @@ +{ + "name": "VSC", + "type": "BEP20", + "symbol": "VSC", + "decimals": 18, + "description": "VSC is a blockchain built to solve the issue of health data collection, validation, distribution, and ownership. VSC serve the IoT, Wearable technology, and Heath Data industry.", + "website": "https://www.vyvo.com/", + "explorer": "https://bscscan.com/token/0xcDf937995A55a9AB551D81b463AC0f7F02795368", + "id": "0xcDf937995A55a9AB551D81b463AC0f7F02795368", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/VyvoSmartChain" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vyvo-smart-chain/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcDf937995A55a9AB551D81b463AC0f7F02795368/logo.png b/blockchains/smartchain/assets/0xcDf937995A55a9AB551D81b463AC0f7F02795368/logo.png new file mode 100644 index 0000000000000..d290d98d86880 Binary files /dev/null and b/blockchains/smartchain/assets/0xcDf937995A55a9AB551D81b463AC0f7F02795368/logo.png differ diff --git a/blockchains/smartchain/assets/0xcE24439F2D9C6a2289F741120FE202248B666666/info.json b/blockchains/smartchain/assets/0xcE24439F2D9C6a2289F741120FE202248B666666/info.json new file mode 100644 index 0000000000000..50a43896f6a58 --- /dev/null +++ b/blockchains/smartchain/assets/0xcE24439F2D9C6a2289F741120FE202248B666666/info.json @@ -0,0 +1,28 @@ +{ + "name": "United Stables", + "type": "BEP20", + "symbol": "U", + "decimals": 18, + "website": "https://u.tech/", + "description": "United Stables develops transparent, secure, and programmable stablecoin infrastructure for global markets. $U is a fully backed, operational-grade stablecoin designed for institutional trading, DeFi liquidity, treasury operations, and cross-border settlement. It’s the first stablecoin to aggregate liquidity, fully backed 1:1 by cash and audited stablecoins.", + "explorer": "https://bscscan.com/token/0xcE24439F2D9C6a2289F741120FE202248B666666", + "status": "active", + "id": "0xcE24439F2D9C6a2289F741120FE202248B666666", + "links": [ + { + "name": "telegram_news", + "url": "https://t.me/Ustables" + }, + { + "name": "x", + "url": "https://x.com/UTechStables" + }, + { + "name": "medium", + "url": "https://medium.com/@Ustables" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcE24439F2D9C6a2289F741120FE202248B666666/logo.png b/blockchains/smartchain/assets/0xcE24439F2D9C6a2289F741120FE202248B666666/logo.png new file mode 100644 index 0000000000000..5251e9ebec6d6 Binary files /dev/null and b/blockchains/smartchain/assets/0xcE24439F2D9C6a2289F741120FE202248B666666/logo.png differ diff --git a/blockchains/smartchain/assets/0xcE30b968d5e76A67f3946E0598F95d551ce03Ac3/info.json b/blockchains/smartchain/assets/0xcE30b968d5e76A67f3946E0598F95d551ce03Ac3/info.json new file mode 100644 index 0000000000000..d20d24a95e7ca --- /dev/null +++ b/blockchains/smartchain/assets/0xcE30b968d5e76A67f3946E0598F95d551ce03Ac3/info.json @@ -0,0 +1,21 @@ +{ + "name": "Four", + "type": "BEP20", + "symbol": "FOUR", + "decimals": 18, + "description": " $FOUR is the first test token created by http://four.meme. $FOUR means $4 billion; $FOUR means fair launch; $FOUR is for everyone; $FOUR Make BNB Great Again!", + "website": "https://four.meme/", + "explorer": "https://bscscan.com/token/0xce30b968d5e76a67f3946e0598f95d551ce03ac3", + "id": "0xcE30b968d5e76A67f3946E0598F95d551ce03Ac3", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/FourpowerfulOg" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcE30b968d5e76A67f3946E0598F95d551ce03Ac3/logo.png b/blockchains/smartchain/assets/0xcE30b968d5e76A67f3946E0598F95d551ce03Ac3/logo.png new file mode 100644 index 0000000000000..47c67df234fb0 Binary files /dev/null and b/blockchains/smartchain/assets/0xcE30b968d5e76A67f3946E0598F95d551ce03Ac3/logo.png differ diff --git a/blockchains/smartchain/assets/0xcE33deFeFAC76BF36367D0640B5079bb3065e9D7/info.json b/blockchains/smartchain/assets/0xcE33deFeFAC76BF36367D0640B5079bb3065e9D7/info.json new file mode 100644 index 0000000000000..b4a411b40dac6 --- /dev/null +++ b/blockchains/smartchain/assets/0xcE33deFeFAC76BF36367D0640B5079bb3065e9D7/info.json @@ -0,0 +1,14 @@ +{ + "name": "Fred", + "type": "BEP20", + "symbol": "Fred", + "decimals": 18, + "website": "https://four.meme/token/0xcE33deFeFAC76BF36367D0640B5079bb3065e9D7", + "description": "Fred", + "explorer": "https://bscscan.com/token/0xcE33deFeFAC76BF36367D0640B5079bb3065e9D7", + "status": "active", + "id": "0xcE33deFeFAC76BF36367D0640B5079bb3065e9D7", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcE33deFeFAC76BF36367D0640B5079bb3065e9D7/logo.png b/blockchains/smartchain/assets/0xcE33deFeFAC76BF36367D0640B5079bb3065e9D7/logo.png new file mode 100644 index 0000000000000..b12cf8b96d6e4 Binary files /dev/null and b/blockchains/smartchain/assets/0xcE33deFeFAC76BF36367D0640B5079bb3065e9D7/logo.png differ diff --git a/blockchains/smartchain/assets/0xcE403dbDFf00853860C68739611c64F0Bd1c9aFf/info.json b/blockchains/smartchain/assets/0xcE403dbDFf00853860C68739611c64F0Bd1c9aFf/info.json new file mode 100644 index 0000000000000..388f2bbd475b2 --- /dev/null +++ b/blockchains/smartchain/assets/0xcE403dbDFf00853860C68739611c64F0Bd1c9aFf/info.json @@ -0,0 +1,21 @@ +{ + "name": "KITE AI", + "type": "BEP20", + "symbol": "KITE AI", + "decimals": 6, + "website": "https://kiteai.tech/", + "description": "KITEAI is an innovative AI-driven chatbot platform that leverages the power of blockchain technology to create a decentralized and user-centric ecosystem.", + "explorer": "https://bscscan.com/token/0xce403dbdff00853860c68739611c64f0bd1c9aff", + "status": "active", + "id": "0xcE403dbDFf00853860C68739611c64F0Bd1c9aFf", + "links": [ + { + "name": "x", + "url": "https://x.com/KITEAIPRO" + }, + { + "name": "telegram", + "url": "https://t.me/KITEAIPRO" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcE403dbDFf00853860C68739611c64F0Bd1c9aFf/logo.png b/blockchains/smartchain/assets/0xcE403dbDFf00853860C68739611c64F0Bd1c9aFf/logo.png new file mode 100644 index 0000000000000..dc2c27d941104 Binary files /dev/null and b/blockchains/smartchain/assets/0xcE403dbDFf00853860C68739611c64F0Bd1c9aFf/logo.png differ diff --git a/blockchains/smartchain/assets/0xcEb29848d04Ad3Cb46E1fE8E45B82ffAc39D797d/info.json b/blockchains/smartchain/assets/0xcEb29848d04Ad3Cb46E1fE8E45B82ffAc39D797d/info.json new file mode 100644 index 0000000000000..ac9291011946d --- /dev/null +++ b/blockchains/smartchain/assets/0xcEb29848d04Ad3Cb46E1fE8E45B82ffAc39D797d/info.json @@ -0,0 +1,24 @@ +{ + "name": "Western Digital (Ondo Tokenized)", + "type": "BEP20", + "symbol": "WDCon", + "decimals": 18, + "description": "WDCon is the Ondo Tokenized version of Western Digital, giving tokenholders economic exposure similar to holding WDC and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xcEb29848d04Ad3Cb46E1fE8E45B82ffAc39D797d", + "status": "active", + "id": "0xcEb29848d04Ad3Cb46E1fE8E45B82ffAc39D797d", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/western-digital-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcEb29848d04Ad3Cb46E1fE8E45B82ffAc39D797d/logo.png b/blockchains/smartchain/assets/0xcEb29848d04Ad3Cb46E1fE8E45B82ffAc39D797d/logo.png new file mode 100644 index 0000000000000..dd1a5ed2aeb65 Binary files /dev/null and b/blockchains/smartchain/assets/0xcEb29848d04Ad3Cb46E1fE8E45B82ffAc39D797d/logo.png differ diff --git a/blockchains/smartchain/assets/0xca30e772e4Bd5F38ed775e6f8c57c6fFcb3c931f/info.json b/blockchains/smartchain/assets/0xca30e772e4Bd5F38ed775e6f8c57c6fFcb3c931f/info.json new file mode 100644 index 0000000000000..a073227b5e06f --- /dev/null +++ b/blockchains/smartchain/assets/0xca30e772e4Bd5F38ed775e6f8c57c6fFcb3c931f/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZEDXION", + "type": "BEP20", + "symbol": "ZEDX", + "decimals": 9, + "website": "https://zedxion.io", + "description": "Zedxion offers a comprehensive solution to the major problems faced by the traditional, fiat-driven monetary system. Building a crypto powered ecosystem comprising Zedxion Token.", + "explorer": "https://bscscan.com/token/0xca30e772e4Bd5F38ed775e6f8c57c6fFcb3c931f", + "status": "active", + "id": "0xca30e772e4Bd5F38ed775e6f8c57c6fFcb3c931f" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xca30e772e4Bd5F38ed775e6f8c57c6fFcb3c931f/logo.png b/blockchains/smartchain/assets/0xca30e772e4Bd5F38ed775e6f8c57c6fFcb3c931f/logo.png new file mode 100644 index 0000000000000..0a6dc86b993a3 Binary files /dev/null and b/blockchains/smartchain/assets/0xca30e772e4Bd5F38ed775e6f8c57c6fFcb3c931f/logo.png differ diff --git a/blockchains/smartchain/assets/0xca861e289f04cB9C67fd6b87ca7EAFa59192f164/info.json b/blockchains/smartchain/assets/0xca861e289f04cB9C67fd6b87ca7EAFa59192f164/info.json index 688a21b4c0e8b..a10a0f4cf873d 100644 --- a/blockchains/smartchain/assets/0xca861e289f04cB9C67fd6b87ca7EAFa59192f164/info.json +++ b/blockchains/smartchain/assets/0xca861e289f04cB9C67fd6b87ca7EAFa59192f164/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/unitymeta" }, { - "name": "twitter", - "url": "https://twitter.com/unitymetatoken" + "name": "x", + "url": "https://x.com/unitymetatoken" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xcaF5191fc480F43e4DF80106c7695ECA56E48B18/info.json b/blockchains/smartchain/assets/0xcaF5191fc480F43e4DF80106c7695ECA56E48B18/info.json new file mode 100644 index 0000000000000..73acfec186bf1 --- /dev/null +++ b/blockchains/smartchain/assets/0xcaF5191fc480F43e4DF80106c7695ECA56E48B18/info.json @@ -0,0 +1,21 @@ +{ + "name": "DEAPCOIN", + "symbol": "DEP", + "type": "BEP20", + "decimals": 18, + "description": "The DEA Project is a blockchain-based multimedia digital entertainment platform featuring digital arts, games, and various other forms of entertainment. ", + "website": "https://dea.sg/", + "explorer": "https://bscscan.com/token/0xcaf5191fc480f43e4df80106c7695eca56e48b18", + "status": "active", + "id": "0xcaF5191fc480F43e4DF80106c7695ECA56E48B18", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/deapcoin/" + }, + { + "name": "x", + "url": "https://x.com/PlayMining_SG" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcaF5191fc480F43e4DF80106c7695ECA56E48B18/logo.png b/blockchains/smartchain/assets/0xcaF5191fc480F43e4DF80106c7695ECA56E48B18/logo.png new file mode 100644 index 0000000000000..8c78552f3f5cf Binary files /dev/null and b/blockchains/smartchain/assets/0xcaF5191fc480F43e4DF80106c7695ECA56E48B18/logo.png differ diff --git a/blockchains/smartchain/assets/0xcb74695a4343dEa214CE9C31d40D59c6f6304444/info.json b/blockchains/smartchain/assets/0xcb74695a4343dEa214CE9C31d40D59c6f6304444/info.json new file mode 100644 index 0000000000000..ddd2936c57b78 --- /dev/null +++ b/blockchains/smartchain/assets/0xcb74695a4343dEa214CE9C31d40D59c6f6304444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE United Stables", + "type": "BEP20", + "symbol": "FAKE U", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xcb74695a4343dEa214CE9C31d40D59c6f6304444", + "explorer": "https://bscscan.com/token/0xcb74695a4343dEa214CE9C31d40D59c6f6304444", + "status": "spam", + "id": "0xcb74695a4343dEa214CE9C31d40D59c6f6304444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcc13194c6be156BAf0FBF3dc93a0eE8cA95fb1d9/info.json b/blockchains/smartchain/assets/0xcc13194c6be156BAf0FBF3dc93a0eE8cA95fb1d9/info.json new file mode 100644 index 0000000000000..aa42ba753179c --- /dev/null +++ b/blockchains/smartchain/assets/0xcc13194c6be156BAf0FBF3dc93a0eE8cA95fb1d9/info.json @@ -0,0 +1,14 @@ +{ + "name": "Patrick's Day!", + "type": "BEP20", + "symbol": "Patrick", + "decimals": 18, + "website": "https://four.meme/token/0xcc13194c6be156baf0fbf3dc93a0ee8ca95fb1d9", + "description": "Happy St. Patrick's Day!", + "explorer": "https://bscscan.com/token/0xcc13194c6be156BAf0FBF3dc93a0eE8cA95fb1d9", + "status": "active", + "id": "0xcc13194c6be156BAf0FBF3dc93a0eE8cA95fb1d9", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcc13194c6be156BAf0FBF3dc93a0eE8cA95fb1d9/logo.png b/blockchains/smartchain/assets/0xcc13194c6be156BAf0FBF3dc93a0eE8cA95fb1d9/logo.png new file mode 100644 index 0000000000000..4953b85822774 Binary files /dev/null and b/blockchains/smartchain/assets/0xcc13194c6be156BAf0FBF3dc93a0eE8cA95fb1d9/logo.png differ diff --git a/blockchains/smartchain/assets/0xcc2E12a9b5b75360c6FBf23B584c275D52cDdb0E/info.json b/blockchains/smartchain/assets/0xcc2E12a9b5b75360c6FBf23B584c275D52cDdb0E/info.json index 2e386e877fd8a..349fd9ad4d264 100644 --- a/blockchains/smartchain/assets/0xcc2E12a9b5b75360c6FBf23B584c275D52cDdb0E/info.json +++ b/blockchains/smartchain/assets/0xcc2E12a9b5b75360c6FBf23B584c275D52cDdb0E/info.json @@ -10,8 +10,8 @@ "id": "0xcc2E12a9b5b75360c6FBf23B584c275D52cDdb0E", "links": [ { - "name": "twitter", - "url": "https://twitter.com/crowfinance" + "name": "x", + "url": "https://x.com/crowfinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xccE7162344Dc758e4715079C8Abc981dc72273B9/info.json b/blockchains/smartchain/assets/0xccE7162344Dc758e4715079C8Abc981dc72273B9/info.json index 3eec960f19f1c..e579e7c0936d7 100644 --- a/blockchains/smartchain/assets/0xccE7162344Dc758e4715079C8Abc981dc72273B9/info.json +++ b/blockchains/smartchain/assets/0xccE7162344Dc758e4715079C8Abc981dc72273B9/info.json @@ -10,8 +10,8 @@ "id": "0xccE7162344Dc758e4715079C8Abc981dc72273B9", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ZedxionC" + "name": "x", + "url": "https://x.com/ZedxionC" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xccdF812aa7cdee4fF7cb89546d7f1718bb8d46E1/info.json b/blockchains/smartchain/assets/0xccdF812aa7cdee4fF7cb89546d7f1718bb8d46E1/info.json new file mode 100644 index 0000000000000..350440b1e0661 --- /dev/null +++ b/blockchains/smartchain/assets/0xccdF812aa7cdee4fF7cb89546d7f1718bb8d46E1/info.json @@ -0,0 +1,17 @@ +{ + "name": "TRUMP AI", + "type": "BEP20", + "symbol": "TRUMP", + "decimals": 18, + "website": "https://trumpai.me/", + "description": "Trump AI: An advanced AI model simulating Donald Trump’s speech and mannerisms for entertainment and educational purposes.", + "explorer": "https://bscscan.com/token/0xccdF812aa7cdee4fF7cb89546d7f1718bb8d46E1", + "status": "active", + "id": "0xccdF812aa7cdee4fF7cb89546d7f1718bb8d46E1", + "links": [ + { + "name": "x", + "url": "https://x.com/trumpaizzz" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xccdF812aa7cdee4fF7cb89546d7f1718bb8d46E1/logo.png b/blockchains/smartchain/assets/0xccdF812aa7cdee4fF7cb89546d7f1718bb8d46E1/logo.png new file mode 100644 index 0000000000000..c9fed39ccd618 Binary files /dev/null and b/blockchains/smartchain/assets/0xccdF812aa7cdee4fF7cb89546d7f1718bb8d46E1/logo.png differ diff --git a/blockchains/smartchain/assets/0xcdf2f3e0fa43C47A6662a91C9E4a7C5f69762699/info.json b/blockchains/smartchain/assets/0xcdf2f3e0fa43C47A6662a91C9E4a7C5f69762699/info.json new file mode 100644 index 0000000000000..1e8ba78c03f0f --- /dev/null +++ b/blockchains/smartchain/assets/0xcdf2f3e0fa43C47A6662a91C9E4a7C5f69762699/info.json @@ -0,0 +1,21 @@ +{ + "name": "Micron Technology Tokenized bStocks", + "type": "BEP20", + "symbol": "MUB", + "decimals": 18, + "description": "MUB is a tokenized bStocks that gives you economic exposure to Mircon Technology, and the right to convert to the underlying security on the Binance.com platform subject to applicable laws. Each token is fully backed by the corresponding underlying equity maintained by the Issuer at a US-regulated broker-dealer. You get the price movements, dividends, and the right to convert the token at 1:1 to the underlying share — tradeable 24/7.", + "website": "https://www.bstocks.finance/", + "explorer": "https://bscscan.com/token/0xcdf2f3e0fa43C47A6662a91C9E4a7C5f69762699", + "status": "active", + "id": "0xcdf2f3e0fa43C47A6662a91C9E4a7C5f69762699", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/micron-technology-tokenized-stock-bstocks/" + } + ], + "tags": [ + "RWA", + "erc8056" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcdf2f3e0fa43C47A6662a91C9E4a7C5f69762699/logo.png b/blockchains/smartchain/assets/0xcdf2f3e0fa43C47A6662a91C9E4a7C5f69762699/logo.png new file mode 100644 index 0000000000000..8c841bb0a407a Binary files /dev/null and b/blockchains/smartchain/assets/0xcdf2f3e0fa43C47A6662a91C9E4a7C5f69762699/logo.png differ diff --git a/blockchains/smartchain/assets/0xce4A4A15FcCD532eAd67BE3ECf7e6122c61D06bb/info.json b/blockchains/smartchain/assets/0xce4A4A15FcCD532eAd67BE3ECf7e6122c61D06bb/info.json index 94c5ee85d4a02..9e17f3d58ccf7 100644 --- a/blockchains/smartchain/assets/0xce4A4A15FcCD532eAd67BE3ECf7e6122c61D06bb/info.json +++ b/blockchains/smartchain/assets/0xce4A4A15FcCD532eAd67BE3ECf7e6122c61D06bb/info.json @@ -10,8 +10,8 @@ "id": "0xce4A4A15FcCD532eAd67BE3ECf7e6122c61D06bb", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ThunderCakeApp" + "name": "x", + "url": "https://x.com/ThunderCakeApp" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xce6b8B2787C657f1b98b7A66B5B63178863fd719/info.json b/blockchains/smartchain/assets/0xce6b8B2787C657f1b98b7A66B5B63178863fd719/info.json index bcb3902561f24..75e321ec0e02b 100644 --- a/blockchains/smartchain/assets/0xce6b8B2787C657f1b98b7A66B5B63178863fd719/info.json +++ b/blockchains/smartchain/assets/0xce6b8B2787C657f1b98b7A66B5B63178863fd719/info.json @@ -18,8 +18,8 @@ "url": "https://github.com/zfmcoin/" }, { - "name": "twitter", - "url": "https://twitter.com/zfmcoin" + "name": "x", + "url": "https://x.com/zfmcoin" }, { "name": "telegram", @@ -34,4 +34,4 @@ "url": "https://drive.google.com/file/d/1Cti8HUp7WWcabQVt_jqueXA07aCOUz1q/view?usp=sharing" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcea59DCE6A6d73a24e6d6944CFaBc330814c098A/info.json b/blockchains/smartchain/assets/0xcea59DCE6A6d73a24e6d6944CFaBc330814c098A/info.json index 8cbe49ac2dc56..32cff18c6cc39 100644 --- a/blockchains/smartchain/assets/0xcea59DCE6A6d73a24e6d6944CFaBc330814c098A/info.json +++ b/blockchains/smartchain/assets/0xcea59DCE6A6d73a24e6d6944CFaBc330814c098A/info.json @@ -18,8 +18,8 @@ "url": "https://coinmarketcap.com/currencies/torg/" }, { - "name": "twitter", - "url": "https://twitter.com/TorgTogether" + "name": "x", + "url": "https://x.com/TorgTogether" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xceacCe74f7e1C42c157b6184fB4FBD59dA8F509e/info.json b/blockchains/smartchain/assets/0xceacCe74f7e1C42c157b6184fB4FBD59dA8F509e/info.json new file mode 100644 index 0000000000000..638752f4cf46f --- /dev/null +++ b/blockchains/smartchain/assets/0xceacCe74f7e1C42c157b6184fB4FBD59dA8F509e/info.json @@ -0,0 +1,28 @@ +{ + "name": "AWT", + "type": "BEP20", + "symbol": "AWT", + "decimals": 18, + "website": "https://awttoken.io", + "description": "AWT is a decentralized blockchain protocol that allow users to lend borrow selected cryptocurrency. It establishes money markets by polling assets together and algorithmically setting interest rates based on supply and demand of assets.", + "explorer": "https://bscscan.com/token/0xceacCe74f7e1C42c157b6184fB4FBD59dA8F509e", + "status": "active", + "id": "0xceacCe74f7e1C42c157b6184fB4FBD59dA8F509e", + "links": [ + { + "name": "x", + "url": "https://x.com/TokenAwt/" + }, + { + "name": "telegram", + "url": "https://t.me/+ileHCXlWvTY2MTc1" + }, + { + "name": "github", + "url": "https://github.com/awttokenapp" + } + ], + "tags": [ + "dapp" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xceacCe74f7e1C42c157b6184fB4FBD59dA8F509e/logo.png b/blockchains/smartchain/assets/0xceacCe74f7e1C42c157b6184fB4FBD59dA8F509e/logo.png new file mode 100644 index 0000000000000..19ee44e53e6b1 Binary files /dev/null and b/blockchains/smartchain/assets/0xceacCe74f7e1C42c157b6184fB4FBD59dA8F509e/logo.png differ diff --git a/blockchains/smartchain/assets/0xcf9CAf83053213c44dd7027Db3e1E4aC98E55f8f/info.json b/blockchains/smartchain/assets/0xcf9CAf83053213c44dd7027Db3e1E4aC98E55f8f/info.json new file mode 100644 index 0000000000000..6fb67dabb5b14 --- /dev/null +++ b/blockchains/smartchain/assets/0xcf9CAf83053213c44dd7027Db3e1E4aC98E55f8f/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Core S&P Total US Stock Market (Ondo)", + "website": "https://ondo.finance/", + "description": "ITOTon is the Ondo Tokenized version of the iShares Core S&P Total US Stock Market ETF, giving tokenholders economic exposure similar to holding ITOT and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xcf9caf83053213c44dd7027db3e1e4ac98e55f8f", + "type": "BEP20", + "symbol": "ITOTon", + "decimals": 18, + "status": "active", + "id": "0xcf9CAf83053213c44dd7027Db3e1E4aC98E55f8f", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-core-sp-total-us-stock-market-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcf9CAf83053213c44dd7027Db3e1E4aC98E55f8f/logo.png b/blockchains/smartchain/assets/0xcf9CAf83053213c44dd7027Db3e1E4aC98E55f8f/logo.png new file mode 100644 index 0000000000000..8adf578853fa6 Binary files /dev/null and b/blockchains/smartchain/assets/0xcf9CAf83053213c44dd7027Db3e1E4aC98E55f8f/logo.png differ diff --git a/blockchains/smartchain/assets/0xcfBb1BfA710cb2ebA070CC3beC0C35226FeA4BAF/info.json b/blockchains/smartchain/assets/0xcfBb1BfA710cb2ebA070CC3beC0C35226FeA4BAF/info.json index 6db7ea670893c..1d8cb390dd3c6 100644 --- a/blockchains/smartchain/assets/0xcfBb1BfA710cb2ebA070CC3beC0C35226FeA4BAF/info.json +++ b/blockchains/smartchain/assets/0xcfBb1BfA710cb2ebA070CC3beC0C35226FeA4BAF/info.json @@ -10,8 +10,8 @@ "id": "0xcfBb1BfA710cb2ebA070CC3beC0C35226FeA4BAF", "links": [ { - "name": "twitter", - "url": "https://twitter.com/HeroFiio" + "name": "x", + "url": "https://x.com/HeroFiio" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xd07e82440A395f3F3551b42dA9210CD1Ef4f8B24/info.json b/blockchains/smartchain/assets/0xd07e82440A395f3F3551b42dA9210CD1Ef4f8B24/info.json index 6cc48d8c3e55c..1f68b79f79d90 100644 --- a/blockchains/smartchain/assets/0xd07e82440A395f3F3551b42dA9210CD1Ef4f8B24/info.json +++ b/blockchains/smartchain/assets/0xd07e82440A395f3F3551b42dA9210CD1Ef4f8B24/info.json @@ -10,8 +10,8 @@ "id": "0xd07e82440A395f3F3551b42dA9210CD1Ef4f8B24", "links": [ { - "name": "twitter", - "url": "https://twitter.com/theparallel_io" + "name": "x", + "url": "https://x.com/theparallel_io" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xd09092B1C9C495Eb7e0A043927492Cf2DEE68a86/info.json b/blockchains/smartchain/assets/0xd09092B1C9C495Eb7e0A043927492Cf2DEE68a86/info.json index 3fa2f1823e666..8ec3bedd9f94a 100644 --- a/blockchains/smartchain/assets/0xd09092B1C9C495Eb7e0A043927492Cf2DEE68a86/info.json +++ b/blockchains/smartchain/assets/0xd09092B1C9C495Eb7e0A043927492Cf2DEE68a86/info.json @@ -10,8 +10,8 @@ "id": "0xd09092B1C9C495Eb7e0A043927492Cf2DEE68a86", "links": [ { - "name": "twitter", - "url": "https://twitter.com/CoinCx" + "name": "x", + "url": "https://x.com/CoinCx" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xd09F7B75b9659b864C6F82bb00Ff096f9D277998/info.json b/blockchains/smartchain/assets/0xd09F7B75b9659b864C6F82bb00Ff096f9D277998/info.json new file mode 100644 index 0000000000000..05cc4de8cdd4a --- /dev/null +++ b/blockchains/smartchain/assets/0xd09F7B75b9659b864C6F82bb00Ff096f9D277998/info.json @@ -0,0 +1,24 @@ +{ + "name": "Lockheed (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "LMTon is the Ondo Tokenized version of Lockheed, giving tokenholders economic exposure similar to holding LMT and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xd09f7b75b9659b864c6f82bb00ff096f9d277998", + "type": "BEP20", + "symbol": "LMTon", + "decimals": 18, + "status": "active", + "id": "0xd09F7B75b9659b864C6F82bb00Ff096f9D277998", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lockheed-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd09F7B75b9659b864C6F82bb00Ff096f9D277998/logo.png b/blockchains/smartchain/assets/0xd09F7B75b9659b864C6F82bb00Ff096f9D277998/logo.png new file mode 100644 index 0000000000000..fd46efcd9b9e5 Binary files /dev/null and b/blockchains/smartchain/assets/0xd09F7B75b9659b864C6F82bb00Ff096f9D277998/logo.png differ diff --git a/blockchains/smartchain/assets/0xd0a58BC9D88D3FF48C0294Cb7e45937d0E41A928/info.json b/blockchains/smartchain/assets/0xd0a58BC9D88D3FF48C0294Cb7e45937d0E41A928/info.json new file mode 100644 index 0000000000000..feb27bc85fc23 --- /dev/null +++ b/blockchains/smartchain/assets/0xd0a58BC9D88D3FF48C0294Cb7e45937d0E41A928/info.json @@ -0,0 +1,24 @@ +{ + "name": "SpaceX (Ondo Tokenized)", + "type": "BEP20", + "symbol": "SPCXon", + "decimals": 18, + "website": "https://app.ondo.finance/", + "description": "SPCXon is the Ondo Tokenized version of SpaceX, giving tokenholders economic exposure similar to holding SPCX and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply", + "explorer": "https://bscscan.com/token/0xd0a58BC9D88D3FF48C0294Cb7e45937d0E41A928", + "status": "active", + "id": "0xd0a58BC9D88D3FF48C0294Cb7e45937d0E41A928", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spacex-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd0a58BC9D88D3FF48C0294Cb7e45937d0E41A928/logo.png b/blockchains/smartchain/assets/0xd0a58BC9D88D3FF48C0294Cb7e45937d0E41A928/logo.png new file mode 100644 index 0000000000000..eaa561f8f3efa Binary files /dev/null and b/blockchains/smartchain/assets/0xd0a58BC9D88D3FF48C0294Cb7e45937d0E41A928/logo.png differ diff --git a/blockchains/smartchain/assets/0xd0c4BC1B89BbD105EeCb7EBa3f13E7648c0De38F/info.json b/blockchains/smartchain/assets/0xd0c4BC1B89BbD105EeCb7EBa3f13E7648c0De38F/info.json index 0f0906eb91039..d3fd3902bbdd8 100644 --- a/blockchains/smartchain/assets/0xd0c4BC1B89BbD105EeCb7EBa3f13E7648c0De38F/info.json +++ b/blockchains/smartchain/assets/0xd0c4BC1B89BbD105EeCb7EBa3f13E7648c0De38F/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/web3_inu" + "name": "x", + "url": "https://x.com/web3_inu" }, { "name": "github", @@ -49,4 +49,4 @@ "url": "https://bscscan.com/address/0xd0c4bc1b89bbd105eecb7eba3f13e7648c0de38f#code" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd10Fe9d371C22416df34340287cd5D9029842Fc3/info.json b/blockchains/smartchain/assets/0xd10Fe9d371C22416df34340287cd5D9029842Fc3/info.json index 60de0c348c122..4520d6f90f073 100644 --- a/blockchains/smartchain/assets/0xd10Fe9d371C22416df34340287cd5D9029842Fc3/info.json +++ b/blockchains/smartchain/assets/0xd10Fe9d371C22416df34340287cd5D9029842Fc3/info.json @@ -10,8 +10,8 @@ "id": "0xd10Fe9d371C22416df34340287cd5D9029842Fc3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/GalaxyHeroesGHC" + "name": "x", + "url": "https://x.com/GalaxyHeroesGHC" }, { "name": "coingecko", @@ -45,4 +45,4 @@ "tags": [ "defi" ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd17479997F34dd9156Deef8F95A52D81D265be9c/info.json b/blockchains/smartchain/assets/0xd17479997F34dd9156Deef8F95A52D81D265be9c/info.json index 7494ca9f5db3d..b68476625d120 100644 --- a/blockchains/smartchain/assets/0xd17479997F34dd9156Deef8F95A52D81D265be9c/info.json +++ b/blockchains/smartchain/assets/0xd17479997F34dd9156Deef8F95A52D81D265be9c/info.json @@ -1,6 +1,6 @@ { - "name": "Decentralized USD", - "symbol": "USDD", + "name": "Decentralized USDOLD", + "symbol": "USDDOLD", "type": "BEP20", "decimals": 18, "description": "USDD is a fully decentralized algorithmic stablecoin", @@ -10,8 +10,8 @@ "id": "0xd17479997F34dd9156Deef8F95A52D81D265be9c", "links": [ { - "name": "twitter", - "url": "https://twitter.com/usddio" + "name": "x", + "url": "https://x.com/usddio" }, { "name": "whitepaper", @@ -21,5 +21,4 @@ "tags": [ "stablecoin" ] -} - +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd1ECFDD45c49057479c4Ca95E045855370bC4F5B/info.json b/blockchains/smartchain/assets/0xd1ECFDD45c49057479c4Ca95E045855370bC4F5B/info.json index 0b0b2bd300760..91b0707c6c41c 100644 --- a/blockchains/smartchain/assets/0xd1ECFDD45c49057479c4Ca95E045855370bC4F5B/info.json +++ b/blockchains/smartchain/assets/0xd1ECFDD45c49057479c4Ca95E045855370bC4F5B/info.json @@ -10,8 +10,8 @@ "id": "0xd1ECFDD45c49057479c4Ca95E045855370bC4F5B", "links": [ { - "name": "twitter", - "url": "https://twitter.com/griffinnftart" + "name": "x", + "url": "https://x.com/griffinnftart" }, { "name": "whitepaper", diff --git a/blockchains/smartchain/assets/0xd1F799cB9f5d0a02951b0755BeCeD6C43882712F/info.json b/blockchains/smartchain/assets/0xd1F799cB9f5d0a02951b0755BeCeD6C43882712F/info.json new file mode 100644 index 0000000000000..251c240020957 --- /dev/null +++ b/blockchains/smartchain/assets/0xd1F799cB9f5d0a02951b0755BeCeD6C43882712F/info.json @@ -0,0 +1,28 @@ +{ + "name": "Johnson & Johnson (Ondo Tokenized)", + "type": "BEP20", + "symbol": "JNJon", + "decimals": 18, + "description": "JNJon is the Ondo Tokenized version of Johnson & Johnson, giving tokenholders economic exposure similar to holding JNJ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xd1F799cB9f5d0a02951b0755BeCeD6C43882712F", + "status": "active", + "id": "0xd1F799cB9f5d0a02951b0755BeCeD6C43882712F", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/johnson-johnson-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/johnson-johnson-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd1F799cB9f5d0a02951b0755BeCeD6C43882712F/logo.png b/blockchains/smartchain/assets/0xd1F799cB9f5d0a02951b0755BeCeD6C43882712F/logo.png new file mode 100644 index 0000000000000..d57bb66b61232 Binary files /dev/null and b/blockchains/smartchain/assets/0xd1F799cB9f5d0a02951b0755BeCeD6C43882712F/logo.png differ diff --git a/blockchains/smartchain/assets/0xd1e0e39bD1758ABe0865d5289895A9197C6Cd549/info.json b/blockchains/smartchain/assets/0xd1e0e39bD1758ABe0865d5289895A9197C6Cd549/info.json new file mode 100644 index 0000000000000..3af47506d8534 --- /dev/null +++ b/blockchains/smartchain/assets/0xd1e0e39bD1758ABe0865d5289895A9197C6Cd549/info.json @@ -0,0 +1,32 @@ +{ + "name": "UAHg", + "type": "BEP20", + "symbol": "UAHg", + "decimals": 6, + "website": "https://uahg.io/en", + "description": "A digital asset denominated in hryvnia and backed by a basket of top stablecoins.", + "explorer": "https://bscscan.com/token/0xd1e0e39bd1758abe0865d5289895a9197c6cd549", + "status": "active", + "id": "0xd1e0e39bD1758ABe0865d5289895A9197C6Cd549", + "links": [ + { + "name": "x", + "url": "https://x.com/uahg_to" + }, + { + "name": "telegram", + "url": "https://t.me/uahg_to" + }, + { + "name": "whitepaper", + "url": "https://api.uahg.io/storage/uploads/file/variables/ca/au/en_whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/uahg/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd1e0e39bD1758ABe0865d5289895A9197C6Cd549/logo.png b/blockchains/smartchain/assets/0xd1e0e39bD1758ABe0865d5289895A9197C6Cd549/logo.png new file mode 100644 index 0000000000000..22f0254137a88 Binary files /dev/null and b/blockchains/smartchain/assets/0xd1e0e39bD1758ABe0865d5289895A9197C6Cd549/logo.png differ diff --git a/blockchains/smartchain/assets/0xd21d29B38374528675C34936bf7d5Dd693D2a577/info.json b/blockchains/smartchain/assets/0xd21d29B38374528675C34936bf7d5Dd693D2a577/info.json index e9beae8f73eb8..48e1f833b40dc 100644 --- a/blockchains/smartchain/assets/0xd21d29B38374528675C34936bf7d5Dd693D2a577/info.json +++ b/blockchains/smartchain/assets/0xd21d29B38374528675C34936bf7d5Dd693D2a577/info.json @@ -10,8 +10,8 @@ "id": "0xd21d29B38374528675C34936bf7d5Dd693D2a577", "links": [ { - "name": "twitter", - "url": "https://twitter.com/parsiq_net" + "name": "x", + "url": "https://x.com/parsiq_net" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xd226d8170EE38793430C7Dec6903df4B818BB74C/info.json b/blockchains/smartchain/assets/0xd226d8170EE38793430C7Dec6903df4B818BB74C/info.json new file mode 100644 index 0000000000000..41212e4dfda49 --- /dev/null +++ b/blockchains/smartchain/assets/0xd226d8170EE38793430C7Dec6903df4B818BB74C/info.json @@ -0,0 +1,24 @@ +{ + "name": "MARA Holdings (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "MARAon is the Ondo Tokenized version of MARA Holdings, giving tokenholders economic exposure similar to holding MARA and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xd226d8170ee38793430c7dec6903df4b818bb74c", + "type": "BEP20", + "symbol": "MARAon", + "decimals": 18, + "status": "active", + "id": "0xd226d8170EE38793430C7Dec6903df4B818BB74C", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mara-holdings-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd226d8170EE38793430C7Dec6903df4B818BB74C/logo.png b/blockchains/smartchain/assets/0xd226d8170EE38793430C7Dec6903df4B818BB74C/logo.png new file mode 100644 index 0000000000000..02eec79b04563 Binary files /dev/null and b/blockchains/smartchain/assets/0xd226d8170EE38793430C7Dec6903df4B818BB74C/logo.png differ diff --git a/blockchains/smartchain/assets/0xd2359c576632234D1354B20Bf51B0277Be20C81e/info.json b/blockchains/smartchain/assets/0xd2359c576632234D1354B20Bf51B0277Be20C81e/info.json index 2378f80f41d95..0b335d33f4b2f 100644 --- a/blockchains/smartchain/assets/0xd2359c576632234D1354B20Bf51B0277Be20C81e/info.json +++ b/blockchains/smartchain/assets/0xd2359c576632234D1354B20Bf51B0277Be20C81e/info.json @@ -18,8 +18,8 @@ "url": "https://coingecko.com/en/coins/gameguru" }, { - "name": "twitter", - "url": "https://twitter.com/GameGuruToken" + "name": "x", + "url": "https://x.com/GameGuruToken" }, { "name": "telegram", @@ -33,4 +33,4 @@ "tags": [ "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd27D3F7f329D93d897612E413F207A4dbe8bF799/info.json b/blockchains/smartchain/assets/0xd27D3F7f329D93d897612E413F207A4dbe8bF799/info.json index b3b4973c693ab..7f6b187dbc6fe 100644 --- a/blockchains/smartchain/assets/0xd27D3F7f329D93d897612E413F207A4dbe8bF799/info.json +++ b/blockchains/smartchain/assets/0xd27D3F7f329D93d897612E413F207A4dbe8bF799/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/moonshot-platform" }, { - "name": "twitter", - "url": "https://twitter.com/RS25Moonshot" + "name": "x", + "url": "https://x.com/RS25Moonshot" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xd2A3eec06719D5Ac66248003B5488E02165dd2fa/info.json b/blockchains/smartchain/assets/0xd2A3eec06719D5Ac66248003B5488E02165dd2fa/info.json new file mode 100644 index 0000000000000..8ce4432dc0ddd --- /dev/null +++ b/blockchains/smartchain/assets/0xd2A3eec06719D5Ac66248003B5488E02165dd2fa/info.json @@ -0,0 +1,46 @@ +{ + "name": "Paxe", + "type": "BEP20", + "symbol": "PAXE", + "decimals": 18, + "website": "https://www.paxe.io/", + "description": "PAXE Protocol is a cutting-edge native yield platform that provides access to cost-effective and secure high-quality yield opportunities across the industry.", + "explorer": "https://bscscan.com/token/0xd2A3eec06719D5Ac66248003B5488E02165dd2fa", + "status": "active", + "id": "0xd2A3eec06719D5Ac66248003B5488E02165dd2fa", + "links": [ + { + "name": "x", + "url": "https://x.com/Paxe_fi" + }, + { + "name": "github", + "url": "https://github.com/PaxeFi" + }, + { + "name": "telegram", + "url": "https://t.me/paxe_fi" + }, + { + "name": "telegram_news", + "url": "https://t.me/PaxeNews" + }, + { + "name": "whitepaper", + "url": "https://docs.paxe.io/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/paxe/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/paxe" + } + ], + "tags": [ + "defi", + "staking", + "dapp" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd2A3eec06719D5Ac66248003B5488E02165dd2fa/logo.png b/blockchains/smartchain/assets/0xd2A3eec06719D5Ac66248003B5488E02165dd2fa/logo.png new file mode 100644 index 0000000000000..b5e24fc5566d6 Binary files /dev/null and b/blockchains/smartchain/assets/0xd2A3eec06719D5Ac66248003B5488E02165dd2fa/logo.png differ diff --git a/blockchains/smartchain/assets/0xd31Dc18fEFdbC2106C7CFB66f23E1159915BaA24/info.json b/blockchains/smartchain/assets/0xd31Dc18fEFdbC2106C7CFB66f23E1159915BaA24/info.json new file mode 100644 index 0000000000000..de552f123a934 --- /dev/null +++ b/blockchains/smartchain/assets/0xd31Dc18fEFdbC2106C7CFB66f23E1159915BaA24/info.json @@ -0,0 +1,14 @@ +{ + "name": "dope", + "type": "BEP20", + "symbol": "dope", + "decimals": 18, + "website": "https://four.meme/token/0xd31Dc18fEFdbC2106C7CFB66f23E1159915BaA24", + "description": "dope", + "explorer": "https://bscscan.com/token/0xd31Dc18fEFdbC2106C7CFB66f23E1159915BaA24", + "status": "active", + "id": "0xd31Dc18fEFdbC2106C7CFB66f23E1159915BaA24", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd31Dc18fEFdbC2106C7CFB66f23E1159915BaA24/logo.png b/blockchains/smartchain/assets/0xd31Dc18fEFdbC2106C7CFB66f23E1159915BaA24/logo.png new file mode 100644 index 0000000000000..105e17528df3f Binary files /dev/null and b/blockchains/smartchain/assets/0xd31Dc18fEFdbC2106C7CFB66f23E1159915BaA24/logo.png differ diff --git a/blockchains/smartchain/assets/0xd32d01A43c869EdcD1117C640fBDcfCFD97d9d65/info.json b/blockchains/smartchain/assets/0xd32d01A43c869EdcD1117C640fBDcfCFD97d9d65/info.json index 8a174cbadb133..2541e93074a3b 100644 --- a/blockchains/smartchain/assets/0xd32d01A43c869EdcD1117C640fBDcfCFD97d9d65/info.json +++ b/blockchains/smartchain/assets/0xd32d01A43c869EdcD1117C640fBDcfCFD97d9d65/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/nominex/eth-smart-contracts" }, { - "name": "twitter", - "url": "https://twitter.com/NominexExchange" + "name": "x", + "url": "https://x.com/NominexExchange" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xd399359683c1cD5267f611261eDE08F22cE9729F/info.json b/blockchains/smartchain/assets/0xd399359683c1cD5267f611261eDE08F22cE9729F/info.json index f6f8e4f6692c3..3a58cd24d3012 100644 --- a/blockchains/smartchain/assets/0xd399359683c1cD5267f611261eDE08F22cE9729F/info.json +++ b/blockchains/smartchain/assets/0xd399359683c1cD5267f611261eDE08F22cE9729F/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/CyberFM/" }, { - "name": "twitter", - "url": "https://twitter.com/Mainstream For The Underground" + "name": "x", + "url": "https://x.com/Mainstream For The Underground" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xd3ecC6a4ce1a9fAEC1AA5E30B55f8a1a4b84F938/info.json b/blockchains/smartchain/assets/0xd3ecC6a4ce1a9fAEC1AA5E30B55f8a1a4b84F938/info.json index 38fd9058a0806..12aad41a488e6 100644 --- a/blockchains/smartchain/assets/0xd3ecC6a4ce1a9fAEC1AA5E30B55f8a1a4b84F938/info.json +++ b/blockchains/smartchain/assets/0xd3ecC6a4ce1a9fAEC1AA5E30B55f8a1a4b84F938/info.json @@ -10,8 +10,8 @@ "id": "0xd3ecC6a4ce1a9fAEC1AA5E30B55f8a1a4b84F938", "links": [ { - "name": "twitter", - "url": "https://twitter.com/elonomicsbsc" + "name": "x", + "url": "https://x.com/elonomicsbsc" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0xd4D2aBBeF1b26458504e7027233D5e7F09ea476d/info.json b/blockchains/smartchain/assets/0xd4D2aBBeF1b26458504e7027233D5e7F09ea476d/info.json index 88867d08d2194..d44c0679fe5be 100644 --- a/blockchains/smartchain/assets/0xd4D2aBBeF1b26458504e7027233D5e7F09ea476d/info.json +++ b/blockchains/smartchain/assets/0xd4D2aBBeF1b26458504e7027233D5e7F09ea476d/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/top1st/Moonwilly-Protocal/" }, { - "name": "twitter", - "url": "https://twitter.com/Moonwillycoin" + "name": "x", + "url": "https://x.com/Moonwillycoin" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0xd4EBABd6E70Bf0a16e8cCDBc6b00fE7817390f47/info.json b/blockchains/smartchain/assets/0xd4EBABd6E70Bf0a16e8cCDBc6b00fE7817390f47/info.json index 8a21d8807be57..fc869abe7d79f 100644 --- a/blockchains/smartchain/assets/0xd4EBABd6E70Bf0a16e8cCDBc6b00fE7817390f47/info.json +++ b/blockchains/smartchain/assets/0xd4EBABd6E70Bf0a16e8cCDBc6b00fE7817390f47/info.json @@ -17,12 +17,12 @@ "url": "https://t.me/MarsSpaceXofficial" }, { - "name": "twitter", - "url": "https://twitter.com/MarsSpaceX_" + "name": "x", + "url": "https://x.com/MarsSpaceX_" }, { "name": "coinmarketcap", "url": "https://coinmarketcap.com/ru/currencies/mars-space-x/" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd522A1DcE1CA4B138DDA042a78672307eb124CC2/info.json b/blockchains/smartchain/assets/0xd522A1DcE1CA4B138DDA042a78672307eb124CC2/info.json index 12eba2cdbc7a4..0fc8c495a8262 100644 --- a/blockchains/smartchain/assets/0xd522A1DcE1CA4B138DDA042a78672307eb124CC2/info.json +++ b/blockchains/smartchain/assets/0xd522A1DcE1CA4B138DDA042a78672307eb124CC2/info.json @@ -10,8 +10,8 @@ "id": "0xd522A1DcE1CA4B138DDA042a78672307eb124CC2", "links": [ { - "name": "twitter", - "url": "https://twitter.com/swapz_app" + "name": "x", + "url": "https://x.com/swapz_app" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xd533fa739d24871108cD868064b71D9c705a5126/info.json b/blockchains/smartchain/assets/0xd533fa739d24871108cD868064b71D9c705a5126/info.json new file mode 100644 index 0000000000000..0b568b9563ad3 --- /dev/null +++ b/blockchains/smartchain/assets/0xd533fa739d24871108cD868064b71D9c705a5126/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT Beers", + "type": "BEP20", + "symbol": "HONEYPOT BEER", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xd533fa739d24871108cD868064b71D9c705a5126", + "explorer": "https://bscscan.com/token/0xd533fa739d24871108cD868064b71D9c705a5126", + "status": "spam", + "id": "0xd533fa739d24871108cD868064b71D9c705a5126" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd5369a3CaC0f4448A9A96bb98AF9c887c92fC37B/info.json b/blockchains/smartchain/assets/0xd5369a3CaC0f4448A9A96bb98AF9c887c92fC37B/info.json new file mode 100644 index 0000000000000..85a2f6e0c2af5 --- /dev/null +++ b/blockchains/smartchain/assets/0xd5369a3CaC0f4448A9A96bb98AF9c887c92fC37B/info.json @@ -0,0 +1,14 @@ +{ + "name": "Bubb", + "type": "BEP20", + "symbol": "BUBB", + "decimals": 18, + "website": "https://four.meme/token/0xd5369a3CaC0f4448A9A96bb98AF9c887c92fC37B", + "description": "Hey my name is Bubb, im Bubbin around BNB.", + "explorer": "https://bscscan.com/token/0xd5369a3CaC0f4448A9A96bb98AF9c887c92fC37B", + "status": "active", + "id": "0xd5369a3CaC0f4448A9A96bb98AF9c887c92fC37B", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd5369a3CaC0f4448A9A96bb98AF9c887c92fC37B/logo.png b/blockchains/smartchain/assets/0xd5369a3CaC0f4448A9A96bb98AF9c887c92fC37B/logo.png new file mode 100644 index 0000000000000..ac62a496dd69f Binary files /dev/null and b/blockchains/smartchain/assets/0xd5369a3CaC0f4448A9A96bb98AF9c887c92fC37B/logo.png differ diff --git a/blockchains/smartchain/assets/0xd5964f3fcee8D649995AB88F04b8982539c282D2/info.json b/blockchains/smartchain/assets/0xd5964f3fcee8D649995AB88F04b8982539c282D2/info.json new file mode 100644 index 0000000000000..f68b94446f24f --- /dev/null +++ b/blockchains/smartchain/assets/0xd5964f3fcee8D649995AB88F04b8982539c282D2/info.json @@ -0,0 +1,24 @@ +{ + "name": "Alibaba (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "BABAon is the Ondo Tokenized version of Alibaba, giving tokenholders economic exposure similar to holding BABA and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xd5964f3fcee8d649995ab88f04b8982539c282d2", + "type": "BEP20", + "symbol": "BABAon", + "decimals": 18, + "status": "active", + "id": "0xd5964f3fcee8D649995AB88F04b8982539c282D2", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/alibaba-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd5964f3fcee8D649995AB88F04b8982539c282D2/logo.png b/blockchains/smartchain/assets/0xd5964f3fcee8D649995AB88F04b8982539c282D2/logo.png new file mode 100644 index 0000000000000..85286052dbe50 Binary files /dev/null and b/blockchains/smartchain/assets/0xd5964f3fcee8D649995AB88F04b8982539c282D2/logo.png differ diff --git a/blockchains/smartchain/assets/0xd5d0322b6bAb6a762C79f8c81A0B674778E13aeD/info.json b/blockchains/smartchain/assets/0xd5d0322b6bAb6a762C79f8c81A0B674778E13aeD/info.json index b879f37807360..6ad6ab621fcc7 100644 --- a/blockchains/smartchain/assets/0xd5d0322b6bAb6a762C79f8c81A0B674778E13aeD/info.json +++ b/blockchains/smartchain/assets/0xd5d0322b6bAb6a762C79f8c81A0B674778E13aeD/info.json @@ -1,5 +1,5 @@ { - "name": "Binance-Peg Firo Token", + "name": "Firo", "type": "BEP20", "symbol": "FIRO", "decimals": 8, @@ -10,8 +10,8 @@ "id": "0xd5d0322b6bAb6a762C79f8c81A0B674778E13aeD", "links": [ { - "name": "twitter", - "url": "https://twitter.com/firoorg" + "name": "x", + "url": "https://x.com/firoorg" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xd5eaAaC47bD1993d661bc087E15dfb079a7f3C19/info.json b/blockchains/smartchain/assets/0xd5eaAaC47bD1993d661bc087E15dfb079a7f3C19/info.json new file mode 100644 index 0000000000000..57d7d6466398e --- /dev/null +++ b/blockchains/smartchain/assets/0xd5eaAaC47bD1993d661bc087E15dfb079a7f3C19/info.json @@ -0,0 +1,32 @@ +{ + "name": "Koma Inu", + "type": "BEP20", + "symbol": "KOMA", + "decimals": 18, + "website": "https://komabnb.com", + "description": "Koma, son of Shib and protector of BNB, is a dog themed token built around community driven decentralization and charity.", + "explorer": "https://bscscan.com/token/0xd5eaaac47bd1993d661bc087e15dfb079a7f3c19", + "status": "active", + "id": "0xd5eaAaC47bD1993d661bc087E15dfb079a7f3C19", + "links": [ + { + "name": "x", + "url": "https://x.com/komabnb" + }, + { + "name": "telegram", + "url": "https://t.me/komabnb" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/koma-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/koma-inu" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd5eaAaC47bD1993d661bc087E15dfb079a7f3C19/logo.png b/blockchains/smartchain/assets/0xd5eaAaC47bD1993d661bc087E15dfb079a7f3C19/logo.png new file mode 100644 index 0000000000000..9b3fd781cc8ae Binary files /dev/null and b/blockchains/smartchain/assets/0xd5eaAaC47bD1993d661bc087E15dfb079a7f3C19/logo.png differ diff --git a/blockchains/smartchain/assets/0xd615468088B19FB9d4F03CB3CE9E33876fF3Db99/info.json b/blockchains/smartchain/assets/0xd615468088B19FB9d4F03CB3CE9E33876fF3Db99/info.json new file mode 100644 index 0000000000000..32870585fd337 --- /dev/null +++ b/blockchains/smartchain/assets/0xd615468088B19FB9d4F03CB3CE9E33876fF3Db99/info.json @@ -0,0 +1,28 @@ +{ + "name": "Bank of America (Ondo Tokenized)", + "type": "BEP20", + "symbol": "BACon", + "decimals": 18, + "description": "BACon is the Ondo Tokenized version of Bank of America, giving tokenholders economic exposure similar to holding BAC and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xd615468088B19FB9d4F03CB3CE9E33876fF3Db99", + "status": "active", + "id": "0xd615468088B19FB9d4F03CB3CE9E33876fF3Db99", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bank-of-america-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bank-of-america-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd615468088B19FB9d4F03CB3CE9E33876fF3Db99/logo.png b/blockchains/smartchain/assets/0xd615468088B19FB9d4F03CB3CE9E33876fF3Db99/logo.png new file mode 100644 index 0000000000000..5c74edc6a0963 Binary files /dev/null and b/blockchains/smartchain/assets/0xd615468088B19FB9d4F03CB3CE9E33876fF3Db99/logo.png differ diff --git a/blockchains/smartchain/assets/0xd691d9a68C887BDF34DA8c36f63487333ACfD103/info.json b/blockchains/smartchain/assets/0xd691d9a68C887BDF34DA8c36f63487333ACfD103/info.json new file mode 100644 index 0000000000000..76759b4cc05e5 --- /dev/null +++ b/blockchains/smartchain/assets/0xd691d9a68C887BDF34DA8c36f63487333ACfD103/info.json @@ -0,0 +1,25 @@ +{ + "name": "Maverick Protocol", + "website": "https://www.mav.xyz/", + "description": "Maverick Protocol offers a new infrastructure for decentralized finance, built to facilitate the most liquid markets for traders, liquidity providers, DAO treasuries, and developers, powered by a revolutionary Dynamic Distribution Automated Market Maker (AMM).", + "explorer": "https://bscscan.com/token/0xd691d9a68c887bdf34da8c36f63487333acfd103", + "type": "BEP20", + "symbol": "MAV", + "decimals": 18, + "status": "active", + "id": "0xd691d9a68C887BDF34DA8c36f63487333ACfD103", + "links": [ + { + "name": "x", + "url": "https://x.com/mavprotocol" + }, + { + "name": "telegram", + "url": "https://t.me/maverickprotocolofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/maverick-protocol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd691d9a68C887BDF34DA8c36f63487333ACfD103/logo.png b/blockchains/smartchain/assets/0xd691d9a68C887BDF34DA8c36f63487333ACfD103/logo.png new file mode 100644 index 0000000000000..f21e40bef2273 Binary files /dev/null and b/blockchains/smartchain/assets/0xd691d9a68C887BDF34DA8c36f63487333ACfD103/logo.png differ diff --git a/blockchains/smartchain/assets/0xd6AF849b09879a3648d56B5d43c6e5908a74CA83/info.json b/blockchains/smartchain/assets/0xd6AF849b09879a3648d56B5d43c6e5908a74CA83/info.json index 8996da9a0d62a..731d783024ed4 100644 --- a/blockchains/smartchain/assets/0xd6AF849b09879a3648d56B5d43c6e5908a74CA83/info.json +++ b/blockchains/smartchain/assets/0xd6AF849b09879a3648d56B5d43c6e5908a74CA83/info.json @@ -10,8 +10,8 @@ "id": "0xd6AF849b09879a3648d56B5d43c6e5908a74CA83", "links": [ { - "name": "twitter", - "url": "https://twitter.com/CommunityJax" + "name": "x", + "url": "https://x.com/CommunityJax" }, { "name": "facebook", @@ -25,4 +25,4 @@ "tags": [ "stablecoin" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd6B48CCF41a62EB3891e58D0F006B19B01d50cCa/info.json b/blockchains/smartchain/assets/0xd6B48CCF41a62EB3891e58D0F006B19B01d50cCa/info.json new file mode 100644 index 0000000000000..795e846796cd2 --- /dev/null +++ b/blockchains/smartchain/assets/0xd6B48CCF41a62EB3891e58D0F006B19B01d50cCa/info.json @@ -0,0 +1,17 @@ +{ + "name": "SERAPH", + "website": "https://weroam.xyz/", + "description": "Revolutionizing Global Connectivity by Leveraging DePIN, OpenRoaming and User Incentives.", + "explorer": "https://bscscan.com/token/0xd6b48ccf41a62eb3891e58d0f006b19b01d50cca", + "type": "BEP20", + "symbol": "SERAPH", + "decimals": 18, + "status": "active", + "id": "0xd6B48CCF41a62EB3891e58D0F006B19B01d50cCa", + "links": [ + { + "name": "x", + "url": "https://x.com/Seraph_global" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd6B48CCF41a62EB3891e58D0F006B19B01d50cCa/logo.png b/blockchains/smartchain/assets/0xd6B48CCF41a62EB3891e58D0F006B19B01d50cCa/logo.png new file mode 100644 index 0000000000000..918d5d94a54d9 Binary files /dev/null and b/blockchains/smartchain/assets/0xd6B48CCF41a62EB3891e58D0F006B19B01d50cCa/logo.png differ diff --git a/blockchains/smartchain/assets/0xd6edbB510af7901b2C049ce778b65a740c4aeB7f/info.json b/blockchains/smartchain/assets/0xd6edbB510af7901b2C049ce778b65a740c4aeB7f/info.json index d80d07216c811..851b436b7da1c 100644 --- a/blockchains/smartchain/assets/0xd6edbB510af7901b2C049ce778b65a740c4aeB7f/info.json +++ b/blockchains/smartchain/assets/0xd6edbB510af7901b2C049ce778b65a740c4aeB7f/info.json @@ -10,8 +10,8 @@ "id": "0xd6edbB510af7901b2C049ce778b65a740c4aeB7f", "links": [ { - "name": "twitter", - "url": "https://twitter.com/WOR_TOKEN" + "name": "x", + "url": "https://x.com/WOR_TOKEN" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xd6fDDe76B8C1C45B33790cc8751D5b88984c44ec/info.json b/blockchains/smartchain/assets/0xd6fDDe76B8C1C45B33790cc8751D5b88984c44ec/info.json index 0b3cca0f08d01..621ade0ab6578 100644 --- a/blockchains/smartchain/assets/0xd6fDDe76B8C1C45B33790cc8751D5b88984c44ec/info.json +++ b/blockchains/smartchain/assets/0xd6fDDe76B8C1C45B33790cc8751D5b88984c44ec/info.json @@ -10,8 +10,8 @@ "id": "0xd6fDDe76B8C1C45B33790cc8751D5b88984c44ec", "links": [ { - "name": "twitter", - "url": "https://twitter.com/StrikeXofficial" + "name": "x", + "url": "https://x.com/StrikeXofficial" }, { "name": "coinmarketcap", @@ -49,4 +49,4 @@ "tags": [ "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd73E883e203646e87F6d073BAF3D7719bDa68Bcb/info.json b/blockchains/smartchain/assets/0xd73E883e203646e87F6d073BAF3D7719bDa68Bcb/info.json new file mode 100644 index 0000000000000..734966512177e --- /dev/null +++ b/blockchains/smartchain/assets/0xd73E883e203646e87F6d073BAF3D7719bDa68Bcb/info.json @@ -0,0 +1,33 @@ +{ + "name": "Rhythm", + "type": "BEP20", + "symbol": "RHYTHM", + "decimals": 9, + "website": "https://rhythm.cash/", + "description": "$RHYTHM is the token powering the Rhythm music streaming platform, which boasts a library of over 100 million songs, offering holders in-app rewards, perks, NFTs, and powering the Artist Partner Program.", + "explorer": "https://bscscan.com/token/0xd73E883e203646e87F6d073BAF3D7719bDa68Bcb", + "status": "active", + "id": "0xd73E883e203646e87F6d073BAF3D7719bDa68Bcb", + "links": [ + { + "name": "x", + "url": "https://x.com/RhythmBSC" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/rhythm" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rhythm/" + }, + { + "name": "telegram", + "url": "https://t.me/RhythmChat" + }, + { + "name": "whitepaper", + "url": "https://rhythm.cash/whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE4318F2aCf2b9c3f518A3a03B5412F4999970Ddb/logo.png b/blockchains/smartchain/assets/0xd73E883e203646e87F6d073BAF3D7719bDa68Bcb/logo.png similarity index 100% rename from blockchains/smartchain/assets/0xE4318F2aCf2b9c3f518A3a03B5412F4999970Ddb/logo.png rename to blockchains/smartchain/assets/0xd73E883e203646e87F6d073BAF3D7719bDa68Bcb/logo.png diff --git a/blockchains/smartchain/assets/0xd79D8Fa7B9E4eE8a4a2fFA1744C9f480096e9684/info.json b/blockchains/smartchain/assets/0xd79D8Fa7B9E4eE8a4a2fFA1744C9f480096e9684/info.json new file mode 100644 index 0000000000000..d5bc19b77da5c --- /dev/null +++ b/blockchains/smartchain/assets/0xd79D8Fa7B9E4eE8a4a2fFA1744C9f480096e9684/info.json @@ -0,0 +1,17 @@ +{ + "name": "ZedDex from ZEDX", + "website": "https://zedscan.net", + "description": "ZedDex is a decentralized payments-focused platform powered underneath by the fast and low-cost Zedx blockchain.", + "explorer": "https://bscscan.com/token/0xd79d8fa7b9e4ee8a4a2ffa1744c9f480096e9684", + "type": "BEP20", + "symbol": "ZED", + "decimals": 18, + "status": "active", + "id": "0xd79D8Fa7B9E4eE8a4a2fFA1744C9f480096e9684", + "links": [ + { + "name": "x", + "url": "https://x.com/zedxionc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd79D8Fa7B9E4eE8a4a2fFA1744C9f480096e9684/logo.png b/blockchains/smartchain/assets/0xd79D8Fa7B9E4eE8a4a2fFA1744C9f480096e9684/logo.png new file mode 100644 index 0000000000000..300bedbdb28fc Binary files /dev/null and b/blockchains/smartchain/assets/0xd79D8Fa7B9E4eE8a4a2fFA1744C9f480096e9684/logo.png differ diff --git a/blockchains/smartchain/assets/0xd7E3317D54473DAb04135fb0676623f237Ff5CA9/info.json b/blockchains/smartchain/assets/0xd7E3317D54473DAb04135fb0676623f237Ff5CA9/info.json new file mode 100644 index 0000000000000..3fda32971ac79 --- /dev/null +++ b/blockchains/smartchain/assets/0xd7E3317D54473DAb04135fb0676623f237Ff5CA9/info.json @@ -0,0 +1,28 @@ +{ + "name": "VanEck CLO ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "CLOIon", + "decimals": 18, + "description": "CLOIon is the Ondo Tokenized version of the VanEck CLO ETF, giving tokenholders economic exposure similar to holding CLOI and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xd7E3317D54473DAb04135fb0676623f237Ff5CA9", + "status": "active", + "id": "0xd7E3317D54473DAb04135fb0676623f237Ff5CA9", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vaneck-clo-etf-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vaneck-clo-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd7E3317D54473DAb04135fb0676623f237Ff5CA9/logo.png b/blockchains/smartchain/assets/0xd7E3317D54473DAb04135fb0676623f237Ff5CA9/logo.png new file mode 100644 index 0000000000000..f88c3aa82c649 Binary files /dev/null and b/blockchains/smartchain/assets/0xd7E3317D54473DAb04135fb0676623f237Ff5CA9/logo.png differ diff --git a/blockchains/smartchain/assets/0xd7E81c66502e19ceFC44a4BCE4C0B4fb7a5f144A/info.json b/blockchains/smartchain/assets/0xd7E81c66502e19ceFC44a4BCE4C0B4fb7a5f144A/info.json new file mode 100644 index 0000000000000..9049481e768d1 --- /dev/null +++ b/blockchains/smartchain/assets/0xd7E81c66502e19ceFC44a4BCE4C0B4fb7a5f144A/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT Luigi Inu", + "type": "BEP20", + "symbol": "HONEYPOT Luigi Inu", + "decimals": 9, + "website": "https://bscscan.com/token/0xd7e81c66502e19cefc44a4bce4c0b4fb7a5f144a", + "description": "HONEYPOT Luigi Inu", + "explorer": "https://bscscan.com/token/0xd7E81c66502e19ceFC44a4BCE4C0B4fb7a5f144A", + "status": "spam", + "id": "0xd7E81c66502e19ceFC44a4BCE4C0B4fb7a5f144A" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd82109718FFf521387BfED5424EAD7e8a1cB9780/info.json b/blockchains/smartchain/assets/0xd82109718FFf521387BfED5424EAD7e8a1cB9780/info.json new file mode 100644 index 0000000000000..5c697da17ddab --- /dev/null +++ b/blockchains/smartchain/assets/0xd82109718FFf521387BfED5424EAD7e8a1cB9780/info.json @@ -0,0 +1,17 @@ +{ + "name": "Oncology Network", + "symbol": "ONC", + "website": "https://oncologynetwork.org", + "description": "Oncology Network is a Decentralized Science (DeSci) initiative to advance Cancer Research", + "explorer": "https://bscscan.com/token/0xd82109718fff521387bfed5424ead7e8a1cb9780", + "decimals": 18, + "status": "active", + "id": "0xd82109718FFf521387BfED5424EAD7e8a1cB9780", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/oncologynet" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd82109718FFf521387BfED5424EAD7e8a1cB9780/logo.png b/blockchains/smartchain/assets/0xd82109718FFf521387BfED5424EAD7e8a1cB9780/logo.png new file mode 100644 index 0000000000000..b430312206900 Binary files /dev/null and b/blockchains/smartchain/assets/0xd82109718FFf521387BfED5424EAD7e8a1cB9780/logo.png differ diff --git a/blockchains/smartchain/assets/0xd85d4Ce29b4cA361FF72Ef0E53D6236e334C5DB6/info.json b/blockchains/smartchain/assets/0xd85d4Ce29b4cA361FF72Ef0E53D6236e334C5DB6/info.json new file mode 100644 index 0000000000000..2f1c4608c81f8 --- /dev/null +++ b/blockchains/smartchain/assets/0xd85d4Ce29b4cA361FF72Ef0E53D6236e334C5DB6/info.json @@ -0,0 +1,28 @@ +{ + "name": "Ondas Holdings (Ondo Tokenized)", + "type": "BEP20", + "symbol": "ONDSon", + "decimals": 18, + "description": "ONDSon is the Ondo Tokenized version of Ondas Holdings, giving tokenholders economic exposure similar to holding ONDS and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xd85d4Ce29b4cA361FF72Ef0E53D6236e334C5DB6", + "status": "active", + "id": "0xd85d4Ce29b4cA361FF72Ef0E53D6236e334C5DB6", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ondas-holdings-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ondas-holdings-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd85d4Ce29b4cA361FF72Ef0E53D6236e334C5DB6/logo.png b/blockchains/smartchain/assets/0xd85d4Ce29b4cA361FF72Ef0E53D6236e334C5DB6/logo.png new file mode 100644 index 0000000000000..13f4d282cca75 Binary files /dev/null and b/blockchains/smartchain/assets/0xd85d4Ce29b4cA361FF72Ef0E53D6236e334C5DB6/logo.png differ diff --git a/blockchains/smartchain/assets/0xd8813B5Dfa9AbEB693F217Bb905ec99B66FB017C/info.json b/blockchains/smartchain/assets/0xd8813B5Dfa9AbEB693F217Bb905ec99B66FB017C/info.json index 34c452e69a59d..cb15dcb657a02 100644 --- a/blockchains/smartchain/assets/0xd8813B5Dfa9AbEB693F217Bb905ec99B66FB017C/info.json +++ b/blockchains/smartchain/assets/0xd8813B5Dfa9AbEB693F217Bb905ec99B66FB017C/info.json @@ -10,8 +10,8 @@ "id": "0xd8813B5Dfa9AbEB693F217Bb905ec99B66FB017C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/binamonok" + "name": "x", + "url": "https://x.com/binamonok" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xd882739Fca9CBAE00F3821c4c65189E2D7e26147/info.json b/blockchains/smartchain/assets/0xd882739Fca9CBAE00F3821c4c65189E2D7e26147/info.json index bcd232e68a19e..2663258812217 100644 --- a/blockchains/smartchain/assets/0xd882739Fca9CBAE00F3821c4c65189E2D7e26147/info.json +++ b/blockchains/smartchain/assets/0xd882739Fca9CBAE00F3821c4c65189E2D7e26147/info.json @@ -3,39 +3,23 @@ "type": "BEP20", "symbol": "FOUR", "decimals": 18, - "website": "https://4thtech.io/", - "description": "FOUR is 4thTech ecosystem utility token used as the primary means to enable services such as data file and instant messages wallet to wallet exchange.", + "website": "https://the4thpillar.io/", + "description": "FOUR token is a technical and incentive component dedicated to; (1) RTA (i.e. right-to-access), and; (2) MTO (i.e. multiple-transfer option) models in the ecosystem of Web3 communication.", "explorer": "https://bscscan.com/token/0xd882739Fca9CBAE00F3821c4c65189E2D7e26147", "status": "active", "id": "0xd882739Fca9CBAE00F3821c4c65189E2D7e26147", "links": [ { - "name": "twitter", - "url": "https://twitter.com/4thtechProject" + "name": "x", + "url": "https://x.com/4pfour" }, { "name": "coingecko", "url": "https://coingecko.com/en/coins/the-4th-pillar" - }, - { - "name": "medium", - "url": "https://medium.com/the4thpillar" - }, - { - "name": "telegram", - "url": "https://t.me/the4thpillarofficial" - }, - { - "name": "youtube", - "url": "https://youtube.com/c/4thpillartechnologies" - }, - { - "name": "whitepaper", - "url": "https://github.com/4thtech/static-assets/raw/main/pdf/whitepaper.pdf" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/4thpillar-technologies/" } + ], + "tags": [ + "governance", + "staking" ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd882739Fca9CBAE00F3821c4c65189E2D7e26147/logo.png b/blockchains/smartchain/assets/0xd882739Fca9CBAE00F3821c4c65189E2D7e26147/logo.png index 044f8c292da18..b0d3e287349fe 100644 Binary files a/blockchains/smartchain/assets/0xd882739Fca9CBAE00F3821c4c65189E2D7e26147/logo.png and b/blockchains/smartchain/assets/0xd882739Fca9CBAE00F3821c4c65189E2D7e26147/logo.png differ diff --git a/blockchains/smartchain/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/info.json b/blockchains/smartchain/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/info.json new file mode 100644 index 0000000000000..db430d534a4eb --- /dev/null +++ b/blockchains/smartchain/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/info.json @@ -0,0 +1,36 @@ +{ + "name": "SquidGrow", + "type": "BEP20", + "symbol": "SquidGrow", + "decimals": 9, + "website": "https://squidgrow.wtf", + "description": "SquidGrow is the next big meme utility token in the cryptocurrency space! Created by the biggest Shiba Inu whale, SquidGrow has the building blocks to get to the highest level. With our owner being one of the biggest investors in the world, the possibilities and connections for SquidGrow are endless!", + "explorer": "https://bscscan.com/token/0xd8fa690304d2b2824d918c0c7376e2823704557a", + "status": "active", + "id": "0xd8Fa690304D2B2824D918C0c7376e2823704557A", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/squid-grow/" + }, + { + "name": "telegram", + "url": "https://t.me/SquidGrowPortal" + }, + { + "name": "x", + "url": "https://x.com/Squid_Grow" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/squidgrow" + }, + { + "name": "github", + "url": "https://github.com/shibtoshi" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/logo.png b/blockchains/smartchain/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/logo.png similarity index 100% rename from blockchains/ethereum/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/logo.png rename to blockchains/smartchain/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/logo.png diff --git a/blockchains/smartchain/assets/0xd8a2aE43Fd061d24acd538e3866Ffc2c05151b53/info.json b/blockchains/smartchain/assets/0xd8a2aE43Fd061d24acd538e3866Ffc2c05151b53/info.json index eb0bc8ad13e7e..d08663d69b632 100644 --- a/blockchains/smartchain/assets/0xd8a2aE43Fd061d24acd538e3866Ffc2c05151b53/info.json +++ b/blockchains/smartchain/assets/0xd8a2aE43Fd061d24acd538e3866Ffc2c05151b53/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/aircoinreal" }, { - "name": "twitter", - "url": "https://twitter.com/Aircoinreal" + "name": "x", + "url": "https://x.com/Aircoinreal" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xd9361d306A9e9A43f5883a064038220EF0D46fB0/info.json b/blockchains/smartchain/assets/0xd9361d306A9e9A43f5883a064038220EF0D46fB0/info.json new file mode 100644 index 0000000000000..f57d0795a988f --- /dev/null +++ b/blockchains/smartchain/assets/0xd9361d306A9e9A43f5883a064038220EF0D46fB0/info.json @@ -0,0 +1,40 @@ +{ + "name": "Styleo Coin", + "type": "BEP20", + "symbol": "STC", + "decimals": 18, + "website": "https://styleo.network/", + "description": "The Future of Digital Finance with StyleoCoin. StyleoCoin specialize in harnessing blockchain technology to create secure and transparent solutions for diverse industries, empowering businesses with efficiency and trust.", + "explorer": "https://bscscan.com/token/0xd9361d306A9e9A43f5883a064038220EF0D46fB0", + "status": "active", + "id": "0xd9361d306A9e9A43f5883a064038220EF0D46fB0", + "links": [ + { + "name": "x", + "url": "https://x.com/ez_Coinmarket" + }, + { + "name": "facebook", + "url": "https://facebook.com/styleocoin" + }, + { + "name": "telegram_news", + "url": "https://t.me/styleocoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ezcoin-market/" + }, + { + "name": "github", + "url": "https://github.com/Credshields/audit-reports/blob/master/Styleo%20Coin%20Final%20Audit%20Report.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/@styleocoin" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd9361d306A9e9A43f5883a064038220EF0D46fB0/logo.png b/blockchains/smartchain/assets/0xd9361d306A9e9A43f5883a064038220EF0D46fB0/logo.png new file mode 100644 index 0000000000000..40b201976284c Binary files /dev/null and b/blockchains/smartchain/assets/0xd9361d306A9e9A43f5883a064038220EF0D46fB0/logo.png differ diff --git a/blockchains/smartchain/assets/0xd944f1D1e9d5f9Bb90b62f9D45e447D989580782/info.json b/blockchains/smartchain/assets/0xd944f1D1e9d5f9Bb90b62f9D45e447D989580782/info.json index f84acf61f625b..021a712224c7e 100644 --- a/blockchains/smartchain/assets/0xd944f1D1e9d5f9Bb90b62f9D45e447D989580782/info.json +++ b/blockchains/smartchain/assets/0xd944f1D1e9d5f9Bb90b62f9D45e447D989580782/info.json @@ -10,8 +10,8 @@ "id": "0xd944f1D1e9d5f9Bb90b62f9D45e447D989580782", "links": [ { - "name": "twitter", - "url": "https://twitter.com/iota" + "name": "x", + "url": "https://x.com/iota" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xd9483EA7214FCfd89B4Fb8f513B544920E315A52/info.json b/blockchains/smartchain/assets/0xd9483EA7214FCfd89B4Fb8f513B544920E315A52/info.json new file mode 100644 index 0000000000000..73dc8f9cceda3 --- /dev/null +++ b/blockchains/smartchain/assets/0xd9483EA7214FCfd89B4Fb8f513B544920E315A52/info.json @@ -0,0 +1,30 @@ +{ + "name": "AVA (Travala)", + "website": "https://travala.com", + "description": "Travala.com claims to be the leading blockchain-based travel booking platform.", + "explorer": "https://bscscan.com/token/0xd9483EA7214FCfd89B4Fb8f513B544920E315A52", + "research": "https://research.binance.com/en/projects/travala", + "type": "BEP20", + "symbol": "AVA", + "decimals": 18, + "status": "active", + "id": "0xd9483EA7214FCfd89B4Fb8f513B544920E315A52", + "links": [ + { + "name": "x", + "url": "https://x.com/travalacom" + }, + { + "name": "github", + "url": "https://github.com/AVA-Foundation" + }, + { + "name": "telegram", + "url": "https://t.me/travala" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ava/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd9483EA7214FCfd89B4Fb8f513B544920E315A52/logo.png b/blockchains/smartchain/assets/0xd9483EA7214FCfd89B4Fb8f513B544920E315A52/logo.png new file mode 100644 index 0000000000000..1b8b37e0f5b28 Binary files /dev/null and b/blockchains/smartchain/assets/0xd9483EA7214FCfd89B4Fb8f513B544920E315A52/logo.png differ diff --git a/blockchains/smartchain/assets/0xd97d097a89113fa59b76c572E5b2Eb647E8eefaf/info.json b/blockchains/smartchain/assets/0xd97d097a89113fa59b76c572E5b2Eb647E8eefaf/info.json new file mode 100644 index 0000000000000..1c9ff9a8f9180 --- /dev/null +++ b/blockchains/smartchain/assets/0xd97d097a89113fa59b76c572E5b2Eb647E8eefaf/info.json @@ -0,0 +1,20 @@ +{ + "name": "Semicon Bull 3X ETF Tokenized bStocks", + "type": "BEP20", + "symbol": "SOXLB", + "decimals": 18, + "description": "SOXLB is a tokenized bStocks that gives you economic exposure to Semicon Bull 3X ETF Tokenized bStocks, and the right to convert to the underlying security on the Binance.com platform subject to applicable laws. Each token is fully backed by the corresponding underlying equity maintained by the Issuer at a US-regulated broker-dealer. You get the price movements, dividends, and the right to convert the token at 1:1 to the underlying share — tradeable 24/7.", + "website": "https://www.bstocks.finance/en/", + "explorer": "https://bscscan.com/token/0xd97d097a89113fa59b76c572E5b2Eb647E8eefaf", + "status": "active", + "id": "0xd97d097a89113fa59b76c572E5b2Eb647E8eefaf", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/semicon-bull-3x-etf-tokenized-bstocks/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd97d097a89113fa59b76c572E5b2Eb647E8eefaf/logo.png b/blockchains/smartchain/assets/0xd97d097a89113fa59b76c572E5b2Eb647E8eefaf/logo.png new file mode 100644 index 0000000000000..4f0393cd61e97 Binary files /dev/null and b/blockchains/smartchain/assets/0xd97d097a89113fa59b76c572E5b2Eb647E8eefaf/logo.png differ diff --git a/blockchains/smartchain/assets/0xd9913208647671Fe0F48F7F260076B2C6F310Aac/info.json b/blockchains/smartchain/assets/0xd9913208647671Fe0F48F7F260076B2C6F310Aac/info.json new file mode 100644 index 0000000000000..baa3a67accc15 --- /dev/null +++ b/blockchains/smartchain/assets/0xd9913208647671Fe0F48F7F260076B2C6F310Aac/info.json @@ -0,0 +1,24 @@ +{ + "name": "International Business Machines tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "International Business Machines xStock (IBMx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. IBMx tracks the price of International Business Machines Corporation (the underlying). IBMx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of International Business Machines Corporation, whilst maintaining the benefits of blockchain technology. International Business Machines Corporation is an American multinational technology corporation headquartered in Armonk, New York.", + "explorer": "https://bscscan.com/token/0xd9913208647671Fe0F48F7F260076B2C6F310Aac", + "type": "BEP20", + "symbol": "IBMX", + "decimals": 18, + "status": "active", + "id": "0xd9913208647671Fe0F48F7F260076B2C6F310Aac", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/international-business-machines-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd9913208647671Fe0F48F7F260076B2C6F310Aac/logo.png b/blockchains/smartchain/assets/0xd9913208647671Fe0F48F7F260076B2C6F310Aac/logo.png new file mode 100644 index 0000000000000..c4974d79ee7a7 Binary files /dev/null and b/blockchains/smartchain/assets/0xd9913208647671Fe0F48F7F260076B2C6F310Aac/logo.png differ diff --git a/blockchains/smartchain/assets/0xd9Af3915fB1a13179d5C3F0255fa3DcbB716b240/info.json b/blockchains/smartchain/assets/0xd9Af3915fB1a13179d5C3F0255fa3DcbB716b240/info.json new file mode 100644 index 0000000000000..7f4a105915e3b --- /dev/null +++ b/blockchains/smartchain/assets/0xd9Af3915fB1a13179d5C3F0255fa3DcbB716b240/info.json @@ -0,0 +1,12 @@ +{ + "name": "Credia Layer", + "type": "BEP20", + "symbol": "CRED", + "decimals": 18, + "website": "https://credialayer.io/", + "description": "AI-Powered Market Intelligence for Web3 Traders.", + "explorer": "https://bscscan.com/token/0xd9Af3915fB1a13179d5C3F0255fa3DcbB716b240", + "status": "active", + "id": "0xd9Af3915fB1a13179d5C3F0255fa3DcbB716b240", + "tags": [] +} diff --git a/blockchains/smartchain/assets/0xd9Af3915fB1a13179d5C3F0255fa3DcbB716b240/logo.png b/blockchains/smartchain/assets/0xd9Af3915fB1a13179d5C3F0255fa3DcbB716b240/logo.png new file mode 100644 index 0000000000000..00a751db31824 Binary files /dev/null and b/blockchains/smartchain/assets/0xd9Af3915fB1a13179d5C3F0255fa3DcbB716b240/logo.png differ diff --git a/blockchains/smartchain/assets/0xd9dE2B1973E57Dc9DBA90c35d6Cd940ae4A3CBe1/info.json b/blockchains/smartchain/assets/0xd9dE2B1973E57Dc9DBA90c35d6Cd940ae4A3CBe1/info.json index dd57b150f1ce8..85eb12fbc2820 100644 --- a/blockchains/smartchain/assets/0xd9dE2B1973E57Dc9DBA90c35d6Cd940ae4A3CBe1/info.json +++ b/blockchains/smartchain/assets/0xd9dE2B1973E57Dc9DBA90c35d6Cd940ae4A3CBe1/info.json @@ -10,8 +10,8 @@ "id": "0xd9dE2B1973E57Dc9DBA90c35d6Cd940ae4A3CBe1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MiloInu" + "name": "x", + "url": "https://x.com/MiloInu" }, { "name": "whitepaper", @@ -34,4 +34,4 @@ "nft", "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd9dF708C6BF28A94251356852e27490d20f74444/info.json b/blockchains/smartchain/assets/0xd9dF708C6BF28A94251356852e27490d20f74444/info.json new file mode 100644 index 0000000000000..d63ab0320df8c --- /dev/null +++ b/blockchains/smartchain/assets/0xd9dF708C6BF28A94251356852e27490d20f74444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE United Stables", + "type": "BEP20", + "symbol": "FAKE U", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xd9dF708C6BF28A94251356852e27490d20f74444", + "explorer": "https://bscscan.com/token/0xd9dF708C6BF28A94251356852e27490d20f74444", + "status": "spam", + "id": "0xd9dF708C6BF28A94251356852e27490d20f74444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdA0638EA374c4c5bF2914E6F4D5B2335dEb8D80D/info.json b/blockchains/smartchain/assets/0xdA0638EA374c4c5bF2914E6F4D5B2335dEb8D80D/info.json new file mode 100644 index 0000000000000..c5650c270d5f0 --- /dev/null +++ b/blockchains/smartchain/assets/0xdA0638EA374c4c5bF2914E6F4D5B2335dEb8D80D/info.json @@ -0,0 +1,40 @@ +{ + "name": "GBANK APY", + "type": "BEP20", + "symbol": "GBK", + "decimals": 8, + "website": "https://gamebank.fun/", + "description": "GBankAPY Auto-Staking and Compounding feature provides the ultimate ease of use for GBK holders with APY up to 953,456% and Rewards holders every 3 Seconds / 28,800 Times Daily! By simply buying and holding GBK tokens in your wallet, you’ll earn GBK rewards as interest payments directly into your wallet. Your amount of GBK reward tokens will increase every 3 seconds.", + "explorer": "https://bscscan.com/token/0xdA0638EA374c4c5bF2914E6F4D5B2335dEb8D80D", + "status": "active", + "id": "0xdA0638EA374c4c5bF2914E6F4D5B2335dEb8D80D", + "links": [ + { + "name": "x", + "url": "https://x.com/GbankApy" + }, + { + "name": "telegram", + "url": "https://t.me/GbankApyofficial" + }, + { + "name": "whitepaper", + "url": "https://gbankapy.gitbook.io/usdgbankapy/game-bank/token-info" + }, + { + "name": "facebook", + "url": "https://facebook.com/GBANK-APY-109530201732865/" + }, + { + "name": "medium", + "url": "https://medium.com/@GBANKAPY" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gbank-apy/" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdA0638EA374c4c5bF2914E6F4D5B2335dEb8D80D/logo.png b/blockchains/smartchain/assets/0xdA0638EA374c4c5bF2914E6F4D5B2335dEb8D80D/logo.png new file mode 100644 index 0000000000000..95f3546b8843e Binary files /dev/null and b/blockchains/smartchain/assets/0xdA0638EA374c4c5bF2914E6F4D5B2335dEb8D80D/logo.png differ diff --git a/blockchains/smartchain/assets/0xdABb9afF4cf02f26D2014e4cA9f94aC6fe6572a3/info.json b/blockchains/smartchain/assets/0xdABb9afF4cf02f26D2014e4cA9f94aC6fe6572a3/info.json new file mode 100644 index 0000000000000..1aa2a627e6c42 --- /dev/null +++ b/blockchains/smartchain/assets/0xdABb9afF4cf02f26D2014e4cA9f94aC6fe6572a3/info.json @@ -0,0 +1,24 @@ +{ + "name": "GameStop (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "GMEon is the Ondo Tokenized version of GameStop, giving tokenholders economic exposure similar to holding GME and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xdabb9aff4cf02f26d2014e4ca9f94ac6fe6572a3", + "type": "BEP20", + "symbol": "GMEon", + "decimals": 18, + "status": "active", + "id": "0xdABb9afF4cf02f26D2014e4cA9f94aC6fe6572a3", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gamestop-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdABb9afF4cf02f26D2014e4cA9f94aC6fe6572a3/logo.png b/blockchains/smartchain/assets/0xdABb9afF4cf02f26D2014e4cA9f94aC6fe6572a3/logo.png new file mode 100644 index 0000000000000..e2e1397cdeac7 Binary files /dev/null and b/blockchains/smartchain/assets/0xdABb9afF4cf02f26D2014e4cA9f94aC6fe6572a3/logo.png differ diff --git a/blockchains/smartchain/assets/0xdAa64420e769fae36CCaA78e26024FE9f583e9D8/info.json b/blockchains/smartchain/assets/0xdAa64420e769fae36CCaA78e26024FE9f583e9D8/info.json new file mode 100644 index 0000000000000..6f5a25937d545 --- /dev/null +++ b/blockchains/smartchain/assets/0xdAa64420e769fae36CCaA78e26024FE9f583e9D8/info.json @@ -0,0 +1,40 @@ +{ + "name": "HowInu", + "type": "BEP20", + "symbol": "How", + "decimals": 18, + "website": "https://howinu.com/", + "description": "HowInu is a Meme Cryptocurrency running on the Binance Smart Chain Network created by Pasindu Shenal based on an image of a fictional dog.The HowInu Crypto project aims to play a role in advancing the crypto industry beyond the functionality of a normal meme cryptocurrency.Ultimately, the project aims to remain stable in the Crypto market for a long time and become a popular Meme Cryptocurrency in the world along with the growth of the Crypto market.", + "explorer": "https://bscscan.com/token/0xdAa64420e769fae36CCaA78e26024FE9f583e9D8", + "status": "active", + "id": "0xdAa64420e769fae36CCaA78e26024FE9f583e9D8", + "links": [ + { + "name": "x", + "url": "https://x.com/howinu" + }, + { + "name": "telegram", + "url": "https://t.me/howinu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/howinu/" + }, + { + "name": "facebook", + "url": "https://facebook.com/howinu" + }, + { + "name": "youtube", + "url": "https://youtube.com/howinu" + }, + { + "name": "whitepaper", + "url": "https://howinu.com/download/107/?tmstv=1685559667" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdAa64420e769fae36CCaA78e26024FE9f583e9D8/logo.png b/blockchains/smartchain/assets/0xdAa64420e769fae36CCaA78e26024FE9f583e9D8/logo.png new file mode 100644 index 0000000000000..113c19589edc3 Binary files /dev/null and b/blockchains/smartchain/assets/0xdAa64420e769fae36CCaA78e26024FE9f583e9D8/logo.png differ diff --git a/blockchains/smartchain/assets/0xdB0748297fbEf0B33dF89e86519A0BD3adAf6459/info.json b/blockchains/smartchain/assets/0xdB0748297fbEf0B33dF89e86519A0BD3adAf6459/info.json new file mode 100644 index 0000000000000..c3ec5bebb8e3b --- /dev/null +++ b/blockchains/smartchain/assets/0xdB0748297fbEf0B33dF89e86519A0BD3adAf6459/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares MSCI India ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "INDAon", + "decimals": 18, + "description": "INDAon is the Ondo Tokenized version of the iShares MSCI India ETF, giving tokenholders economic exposure similar to holding INDA and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xdB0748297fbEf0B33dF89e86519A0BD3adAf6459", + "status": "active", + "id": "0xdB0748297fbEf0B33dF89e86519A0BD3adAf6459", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-msci-india-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdB0748297fbEf0B33dF89e86519A0BD3adAf6459/logo.png b/blockchains/smartchain/assets/0xdB0748297fbEf0B33dF89e86519A0BD3adAf6459/logo.png new file mode 100644 index 0000000000000..2ce033b091a15 Binary files /dev/null and b/blockchains/smartchain/assets/0xdB0748297fbEf0B33dF89e86519A0BD3adAf6459/logo.png differ diff --git a/blockchains/smartchain/assets/0xdB66A10d99501034D8680E02B38Dd69076904444/info.json b/blockchains/smartchain/assets/0xdB66A10d99501034D8680E02B38Dd69076904444/info.json new file mode 100644 index 0000000000000..1d35d0c18b493 --- /dev/null +++ b/blockchains/smartchain/assets/0xdB66A10d99501034D8680E02B38Dd69076904444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE United Stables", + "type": "BEP20", + "symbol": "FAKE U", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xdB66A10d99501034D8680E02B38Dd69076904444", + "explorer": "https://bscscan.com/token/0xdB66A10d99501034D8680E02B38Dd69076904444", + "status": "spam", + "id": "0xdB66A10d99501034D8680E02B38Dd69076904444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdB8D30b74bf098aF214e862C90E647bbB1fcC58c/info.json b/blockchains/smartchain/assets/0xdB8D30b74bf098aF214e862C90E647bbB1fcC58c/info.json index 5a600aea801ac..1b6868447f107 100644 --- a/blockchains/smartchain/assets/0xdB8D30b74bf098aF214e862C90E647bbB1fcC58c/info.json +++ b/blockchains/smartchain/assets/0xdB8D30b74bf098aF214e862C90E647bbB1fcC58c/info.json @@ -10,8 +10,8 @@ "id": "0xdB8D30b74bf098aF214e862C90E647bbB1fcC58c", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BabyCakeBSC" + "name": "x", + "url": "https://x.com/BabyCakeBSC" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xdC0118B27276065C573386aa44e7a6E5e2AF07C1/info.json b/blockchains/smartchain/assets/0xdC0118B27276065C573386aa44e7a6E5e2AF07C1/info.json index 8a35318b58fc6..02f51a4b89b50 100644 --- a/blockchains/smartchain/assets/0xdC0118B27276065C573386aa44e7a6E5e2AF07C1/info.json +++ b/blockchains/smartchain/assets/0xdC0118B27276065C573386aa44e7a6E5e2AF07C1/info.json @@ -10,8 +10,8 @@ "id": "0xdC0118B27276065C573386aa44e7a6E5e2AF07C1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/DPZFinance" + "name": "x", + "url": "https://x.com/DPZFinance" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xdC419cfe5454bF58001f131E98CF2065E11936A7/info.json b/blockchains/smartchain/assets/0xdC419cfe5454bF58001f131E98CF2065E11936A7/info.json new file mode 100644 index 0000000000000..5392ccf21cc1e --- /dev/null +++ b/blockchains/smartchain/assets/0xdC419cfe5454bF58001f131E98CF2065E11936A7/info.json @@ -0,0 +1,25 @@ +{ + "name": "bscSUNDOG", + "symbol": "bscSUNDOG", + "type": "BEP20", + "decimals": 18, + "description": "SUN DOG, THE BIGGEST DOG MEME ON TRON, EVERY CHAIN NEEDS ITS DOG, EVERY DOG HAS ITS DAY. EVERYTHING IS JUST FINE, SUN DOG IS VERY SERIOUS DOG, BRINGS MANY SUNSHINES, MANY FUN AND MUCH LOVE TO TRON", + "website": "https://www.sundog.meme/", + "explorer": "https://bscscan.com/token/0xdC419cfe5454bF58001f131E98CF2065E11936A7", + "status": "active", + "id": "0xdC419cfe5454bF58001f131E98CF2065E11936A7", + "links": [ + { + "name": "telegram", + "url": "https://t.me/SUNDOG_TRX" + }, + { + "name": "x", + "url": "https://x.com/sundog_trx" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sundog/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdC419cfe5454bF58001f131E98CF2065E11936A7/logo.png b/blockchains/smartchain/assets/0xdC419cfe5454bF58001f131E98CF2065E11936A7/logo.png new file mode 100644 index 0000000000000..7e787f8aa5bd1 Binary files /dev/null and b/blockchains/smartchain/assets/0xdC419cfe5454bF58001f131E98CF2065E11936A7/logo.png differ diff --git a/blockchains/smartchain/assets/0xdC84096074269d8F304D476124101249d105b60d/info.json b/blockchains/smartchain/assets/0xdC84096074269d8F304D476124101249d105b60d/info.json new file mode 100644 index 0000000000000..0e18860b82c33 --- /dev/null +++ b/blockchains/smartchain/assets/0xdC84096074269d8F304D476124101249d105b60d/info.json @@ -0,0 +1,14 @@ +{ + "name": "FSP", + "type": "BEP20", + "symbol": "FSP", + "decimals": 18, + "website": "https://bscscan.com/address/0xdc84096074269d8f304d476124101249d105b60d", + "description": "FSP", + "explorer": "https://bscscan.com/token/0xdC84096074269d8F304D476124101249d105b60d", + "status": "active", + "id": "0xdC84096074269d8F304D476124101249d105b60d", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdC84096074269d8F304D476124101249d105b60d/logo.png b/blockchains/smartchain/assets/0xdC84096074269d8F304D476124101249d105b60d/logo.png new file mode 100644 index 0000000000000..21c86b1f08c8f Binary files /dev/null and b/blockchains/smartchain/assets/0xdC84096074269d8F304D476124101249d105b60d/logo.png differ diff --git a/blockchains/smartchain/assets/0xdCA8a5bb74Ec9536D13511C51f6A68821Bf6a1a6/info.json b/blockchains/smartchain/assets/0xdCA8a5bb74Ec9536D13511C51f6A68821Bf6a1a6/info.json index 25cb5e5deeaf6..948e8fd023ac8 100644 --- a/blockchains/smartchain/assets/0xdCA8a5bb74Ec9536D13511C51f6A68821Bf6a1a6/info.json +++ b/blockchains/smartchain/assets/0xdCA8a5bb74Ec9536D13511C51f6A68821Bf6a1a6/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/strainsfinance/Strains-SFN-" }, { - "name": "twitter", - "url": "https://twitter.com/strainsfinance" + "name": "x", + "url": "https://x.com/strainsfinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xdCC1a2699441079dA889B1F49e12B69cC791129b/info.json b/blockchains/smartchain/assets/0xdCC1a2699441079dA889B1F49e12B69cC791129b/info.json new file mode 100644 index 0000000000000..88ee4fb7ce9be --- /dev/null +++ b/blockchains/smartchain/assets/0xdCC1a2699441079dA889B1F49e12B69cC791129b/info.json @@ -0,0 +1,24 @@ +{ + "name": "Coca-Cola tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Coca-Cola xStock (KOx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. KOx tracks the price of The Coca-Cola Company (the underlying). KOx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of The Coca-Cola Company, whilst maintaining the benefits of blockchain technology. The Coca-Cola Company is a multinational corporation that primarily manufactures, sells, and markets non-alcoholic beverages. It is known for its iconic Coca-Cola brand, but its portfolio extends to numerous other beverages like Sprite and Fanta.", + "explorer": "https://bscscan.com/token/0xdCC1a2699441079dA889B1F49e12B69cC791129b", + "type": "BEP20", + "symbol": "KOX", + "decimals": 18, + "status": "active", + "id": "0xdCC1a2699441079dA889B1F49e12B69cC791129b", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coca-cola-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdCC1a2699441079dA889B1F49e12B69cC791129b/logo.png b/blockchains/smartchain/assets/0xdCC1a2699441079dA889B1F49e12B69cC791129b/logo.png new file mode 100644 index 0000000000000..448e726662b94 Binary files /dev/null and b/blockchains/smartchain/assets/0xdCC1a2699441079dA889B1F49e12B69cC791129b/logo.png differ diff --git a/blockchains/smartchain/assets/0xdCbA3fbd7BBc28abD18A472D28358089467A8a74/info.json b/blockchains/smartchain/assets/0xdCbA3fbd7BBc28abD18A472D28358089467A8a74/info.json index 85efabf474415..2115cc324184f 100644 --- a/blockchains/smartchain/assets/0xdCbA3fbd7BBc28abD18A472D28358089467A8a74/info.json +++ b/blockchains/smartchain/assets/0xdCbA3fbd7BBc28abD18A472D28358089467A8a74/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Centric-Org" }, { - "name": "twitter", - "url": "https://twitter.com/centricrise" + "name": "x", + "url": "https://x.com/centricrise" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0xdD97AB35e3C0820215bc85a395e13671d84CCBa2/info.json b/blockchains/smartchain/assets/0xdD97AB35e3C0820215bc85a395e13671d84CCBa2/info.json index 5dc7e49bb2863..c7fe7ca110d21 100644 --- a/blockchains/smartchain/assets/0xdD97AB35e3C0820215bc85a395e13671d84CCBa2/info.json +++ b/blockchains/smartchain/assets/0xdD97AB35e3C0820215bc85a395e13671d84CCBa2/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/AutoSharkFinance" }, { - "name": "twitter", - "url": "https://twitter.com/autosharkfin" + "name": "x", + "url": "https://x.com/autosharkfin" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0xdDaE5F343b7768eAdaAD88A7f520fFf54F198211/info.json b/blockchains/smartchain/assets/0xdDaE5F343b7768eAdaAD88A7f520fFf54F198211/info.json index 7c1a66005d5e3..f5e61a4998da6 100644 --- a/blockchains/smartchain/assets/0xdDaE5F343b7768eAdaAD88A7f520fFf54F198211/info.json +++ b/blockchains/smartchain/assets/0xdDaE5F343b7768eAdaAD88A7f520fFf54F198211/info.json @@ -10,8 +10,8 @@ "id": "0xdDaE5F343b7768eAdaAD88A7f520fFf54F198211", "links": [ { - "name": "twitter", - "url": "https://twitter.com/bitcoiva" + "name": "x", + "url": "https://x.com/bitcoiva" }, { "name": "facebook", @@ -41,4 +41,4 @@ "tags": [ "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdDb3Bd8645775F59496c821E4F55A7eA6A6dc299/info.json b/blockchains/smartchain/assets/0xdDb3Bd8645775F59496c821E4F55A7eA6A6dc299/info.json index c8776872c21dd..86dcf8e44f324 100644 --- a/blockchains/smartchain/assets/0xdDb3Bd8645775F59496c821E4F55A7eA6A6dc299/info.json +++ b/blockchains/smartchain/assets/0xdDb3Bd8645775F59496c821E4F55A7eA6A6dc299/info.json @@ -18,8 +18,8 @@ "url": "https://apeswap.gitbook.io/apeswap-finance/" }, { - "name": "twitter", - "url": "https://twitter.com/ape_swap" + "name": "x", + "url": "https://x.com/ape_swap" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xdE7B72c2c2828A81bEe8D7FA86c7FC22B58A713d/info.json b/blockchains/smartchain/assets/0xdE7B72c2c2828A81bEe8D7FA86c7FC22B58A713d/info.json new file mode 100644 index 0000000000000..d0181bcca6db5 --- /dev/null +++ b/blockchains/smartchain/assets/0xdE7B72c2c2828A81bEe8D7FA86c7FC22B58A713d/info.json @@ -0,0 +1,33 @@ +{ + "name": "EtherPoS", + "website": "https://etherpos.io", + "description": "Ether Proof-of-Stake", + "explorer": "https://bscscan.com/token/0xdE7B72c2c2828A81bEe8D7FA86c7FC22B58A713d", + "id": "0xdE7B72c2c2828A81bEe8D7FA86c7FC22B58A713d", + "symbol": "ETPOS", + "type": "BEP20", + "decimals": 6, + "status": "active", + "tags": [ + "staking", + "dapp" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/etherposio/etpos-token" + }, + { + "name": "x", + "url": "https://x.com/etherpos22" + }, + { + "name": "telegram", + "url": "https://t.me/EtherPosValidator" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.etherpos.info" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdE7B72c2c2828A81bEe8D7FA86c7FC22B58A713d/logo.png b/blockchains/smartchain/assets/0xdE7B72c2c2828A81bEe8D7FA86c7FC22B58A713d/logo.png new file mode 100644 index 0000000000000..f6079535aa18e Binary files /dev/null and b/blockchains/smartchain/assets/0xdE7B72c2c2828A81bEe8D7FA86c7FC22B58A713d/logo.png differ diff --git a/blockchains/smartchain/assets/0xdECE0F6864c1511369ae2c30B90Db9f5fe92832c/info.json b/blockchains/smartchain/assets/0xdECE0F6864c1511369ae2c30B90Db9f5fe92832c/info.json index fb56df8bf18c3..47eb23be562f3 100644 --- a/blockchains/smartchain/assets/0xdECE0F6864c1511369ae2c30B90Db9f5fe92832c/info.json +++ b/blockchains/smartchain/assets/0xdECE0F6864c1511369ae2c30B90Db9f5fe92832c/info.json @@ -10,8 +10,8 @@ "id": "0xdECE0F6864c1511369ae2c30B90Db9f5fe92832c", "links": [ { - "name": "twitter", - "url": "https://twitter.com/tchmpls_events" + "name": "x", + "url": "https://x.com/tchmpls_events" }, { "name": "blog", diff --git a/blockchains/smartchain/assets/0xdEe89763124Cd649B7aAaEedE8fa8D75b5454444/info.json b/blockchains/smartchain/assets/0xdEe89763124Cd649B7aAaEedE8fa8D75b5454444/info.json new file mode 100644 index 0000000000000..06d5d78e8e01c --- /dev/null +++ b/blockchains/smartchain/assets/0xdEe89763124Cd649B7aAaEedE8fa8D75b5454444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE United Stables", + "type": "BEP20", + "symbol": "FAKE UTED", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xdEe89763124Cd649B7aAaEedE8fa8D75b5454444", + "explorer": "https://bscscan.com/token/0xdEe89763124Cd649B7aAaEedE8fa8D75b5454444", + "status": "spam", + "id": "0xdEe89763124Cd649B7aAaEedE8fa8D75b5454444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdF677713a2C661ECD0b2BD4d7485170Aa8c1ECeB/info.json b/blockchains/smartchain/assets/0xdF677713a2C661ECD0b2BD4d7485170Aa8c1ECeB/info.json new file mode 100644 index 0000000000000..d58c11cde6359 --- /dev/null +++ b/blockchains/smartchain/assets/0xdF677713a2C661ECD0b2BD4d7485170Aa8c1ECeB/info.json @@ -0,0 +1,29 @@ +{ + "name": "MetaCraftToken", + "type": "BEP20", + "symbol": "MCT", + "decimals": 18, + "description": "MetaCraft is a running group chain play imitating Rarity. In the future, MetaCraft will fork to create a meta universe game. For example: mapping on public chains such as BSC and ETH, allowing players to play on any chain; introducing social attributes to give each player a unique NFT identity.", + "website": "https://www.metacraft.game/", + "explorer": "https://www.bscscan.com/token/0xdf677713a2c661ecd0b2bd4d7485170aa8c1eceb", + "id": "0xdF677713a2C661ECD0b2BD4d7485170Aa8c1ECeB", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/MetaCraftEN" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/metacraft/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/metacraft" + } + ], + "tags": [ + "gamefi" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdF677713a2C661ECD0b2BD4d7485170Aa8c1ECeB/logo.png b/blockchains/smartchain/assets/0xdF677713a2C661ECD0b2BD4d7485170Aa8c1ECeB/logo.png new file mode 100644 index 0000000000000..2baa0c6aa1f3a Binary files /dev/null and b/blockchains/smartchain/assets/0xdF677713a2C661ECD0b2BD4d7485170Aa8c1ECeB/logo.png differ diff --git a/blockchains/smartchain/assets/0xda52b818c1348bFee27989E2a0DF39224A3E52fA/info.json b/blockchains/smartchain/assets/0xda52b818c1348bFee27989E2a0DF39224A3E52fA/info.json new file mode 100644 index 0000000000000..68ce413cdc73d --- /dev/null +++ b/blockchains/smartchain/assets/0xda52b818c1348bFee27989E2a0DF39224A3E52fA/info.json @@ -0,0 +1,36 @@ +{ + "name": "Blend", + "type": "BEP20", + "symbol": "BLEND", + "decimals": 18, + "website": "https://myblend.io/", + "description": "Blend is building a trailblazing gaming platform where you’ll be able to provide liquidity, earn profits, and enjoy a fair, transparent experience powered by smart contracts. Be part of the journey as we bring decentralized gaming to life.", + "explorer": "https://bscscan.com/token/0xda52b818c1348bFee27989E2a0DF39224A3E52fA", + "status": "active", + "id": "0xda52b818c1348bFee27989E2a0DF39224A3E52fA", + "links": [ + { + "name": "x", + "url": "https://x.com/myblend_io" + }, + { + "name": "telegram", + "url": "https://t.me/myblend_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/blend/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/blend-2" + }, + { + "name": "whitepaper", + "url": "https://blend-whitepaper.gitbook.io/blend-whitepaper" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xda52b818c1348bFee27989E2a0DF39224A3E52fA/logo.png b/blockchains/smartchain/assets/0xda52b818c1348bFee27989E2a0DF39224A3E52fA/logo.png new file mode 100644 index 0000000000000..a054e61146299 Binary files /dev/null and b/blockchains/smartchain/assets/0xda52b818c1348bFee27989E2a0DF39224A3E52fA/logo.png differ diff --git a/blockchains/smartchain/assets/0xdadfb355c6110eda0908740d52c834d6C2BCDDc7/info.json b/blockchains/smartchain/assets/0xdadfb355c6110eda0908740d52c834d6C2BCDDc7/info.json new file mode 100644 index 0000000000000..c104a15decb30 --- /dev/null +++ b/blockchains/smartchain/assets/0xdadfb355c6110eda0908740d52c834d6C2BCDDc7/info.json @@ -0,0 +1,15 @@ +{ + "name": "Russell 2000 xStock", + "type": "BEP20", + "symbol": "IWMx", + "decimals": 18, + "description": "Russell 2000 xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0xdadfb355c6110eda0908740d52c834d6C2BCDDc7", + "status": "active", + "id": "0xdadfb355c6110eda0908740d52c834d6C2BCDDc7", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdadfb355c6110eda0908740d52c834d6C2BCDDc7/logo.png b/blockchains/smartchain/assets/0xdadfb355c6110eda0908740d52c834d6C2BCDDc7/logo.png new file mode 100644 index 0000000000000..857fe69020c3c Binary files /dev/null and b/blockchains/smartchain/assets/0xdadfb355c6110eda0908740d52c834d6C2BCDDc7/logo.png differ diff --git a/blockchains/smartchain/assets/0xdb0482cfaD4789798623E64b15eebA01b16e917C/info.json b/blockchains/smartchain/assets/0xdb0482cfaD4789798623E64b15eebA01b16e917C/info.json new file mode 100644 index 0000000000000..eb805de3138cb --- /dev/null +++ b/blockchains/smartchain/assets/0xdb0482cfaD4789798623E64b15eebA01b16e917C/info.json @@ -0,0 +1,24 @@ +{ + "name": "Johnson & Johnson tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Johnson & Johnson xStock (JNJx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. JNJx tracks the price of Johnson & Johnson (the underlying). JNJx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Johnson & Johnson, whilst maintaining the benefits of blockchain technology. Johnson & Johnson (J&J) is a global healthcare company focused on research, development, manufacturing, and sale of pharmaceuticals, medical devices, and consumer products.", + "explorer": "https://bscscan.com/token/0xdb0482cfaD4789798623E64b15eebA01b16e917C", + "type": "BEP20", + "symbol": "JNJX", + "decimals": 18, + "status": "active", + "id": "0xdb0482cfaD4789798623E64b15eebA01b16e917C", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/johnson-johnson-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdb0482cfaD4789798623E64b15eebA01b16e917C/logo.png b/blockchains/smartchain/assets/0xdb0482cfaD4789798623E64b15eebA01b16e917C/logo.png new file mode 100644 index 0000000000000..179b22a7c4aaf Binary files /dev/null and b/blockchains/smartchain/assets/0xdb0482cfaD4789798623E64b15eebA01b16e917C/logo.png differ diff --git a/blockchains/smartchain/assets/0xdb5642fC3Ffd7a8BdC2C837197736c54B120872d/info.json b/blockchains/smartchain/assets/0xdb5642fC3Ffd7a8BdC2C837197736c54B120872d/info.json new file mode 100644 index 0000000000000..83ac38f7897d5 --- /dev/null +++ b/blockchains/smartchain/assets/0xdb5642fC3Ffd7a8BdC2C837197736c54B120872d/info.json @@ -0,0 +1,21 @@ +{ + "name": "Payslink Token", + "website": "https://payslinks.com/", + "description": "Technology poised to disrupt the entire payment industry covering peer to peer payments and mass payments.", + "explorer": "https://bscscan.com/token/0xdb5642fC3Ffd7a8BdC2C837197736c54B120872d", + "type": "BEP20", + "symbol": "PAYS", + "decimals": 18, + "status": "active", + "id": "0xdb5642fC3Ffd7a8BdC2C837197736c54B120872d", + "links": [ + { + "name": "x", + "url": "https://x.com/payslink" + }, + { + "name": "telegram", + "url": "https://t.me/payslink" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdb5642fC3Ffd7a8BdC2C837197736c54B120872d/logo.png b/blockchains/smartchain/assets/0xdb5642fC3Ffd7a8BdC2C837197736c54B120872d/logo.png new file mode 100644 index 0000000000000..abfc45d7828a8 Binary files /dev/null and b/blockchains/smartchain/assets/0xdb5642fC3Ffd7a8BdC2C837197736c54B120872d/logo.png differ diff --git a/blockchains/smartchain/assets/0xdb607c61Aaa2a954Bf1f9d117953F12d6c319E15/info.json b/blockchains/smartchain/assets/0xdb607c61Aaa2a954Bf1f9d117953F12d6c319E15/info.json index 2b97da61c388a..87ff9e4d3a7fa 100644 --- a/blockchains/smartchain/assets/0xdb607c61Aaa2a954Bf1f9d117953F12d6c319E15/info.json +++ b/blockchains/smartchain/assets/0xdb607c61Aaa2a954Bf1f9d117953F12d6c319E15/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/thehoneypad" + "name": "x", + "url": "https://x.com/thehoneypad" }, { "name": "medium", diff --git a/blockchains/smartchain/assets/0xdb9783Ca04bBD64fe2c6d7B9503A979b3DE30729/info.json b/blockchains/smartchain/assets/0xdb9783Ca04bBD64fe2c6d7B9503A979b3DE30729/info.json new file mode 100644 index 0000000000000..41379ad9d264b --- /dev/null +++ b/blockchains/smartchain/assets/0xdb9783Ca04bBD64fe2c6d7B9503A979b3DE30729/info.json @@ -0,0 +1,15 @@ +{ + "name": "Uber xStock", + "type": "BEP20", + "symbol": "UBERx", + "decimals": 18, + "description": "UBER xStock (UBERx) is a tracker certificate issued as a freely transferable token on selected blockchains. UBERx tracks the price of Uber Technologies, Inc.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0xdb9783Ca04bBD64fe2c6d7B9503A979b3DE30729", + "status": "active", + "id": "0xdb9783Ca04bBD64fe2c6d7B9503A979b3DE30729", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdb9783Ca04bBD64fe2c6d7B9503A979b3DE30729/logo.png b/blockchains/smartchain/assets/0xdb9783Ca04bBD64fe2c6d7B9503A979b3DE30729/logo.png new file mode 100644 index 0000000000000..500fe97977943 Binary files /dev/null and b/blockchains/smartchain/assets/0xdb9783Ca04bBD64fe2c6d7B9503A979b3DE30729/logo.png differ diff --git a/blockchains/smartchain/assets/0xdbA228936F4079DaF9Aa906fd48a87f2300405F4/info.json b/blockchains/smartchain/assets/0xdbA228936F4079DaF9Aa906fd48a87f2300405F4/info.json new file mode 100644 index 0000000000000..768fe58acf8f8 --- /dev/null +++ b/blockchains/smartchain/assets/0xdbA228936F4079DaF9Aa906fd48a87f2300405F4/info.json @@ -0,0 +1,24 @@ +{ + "name": "Danaher tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Danaher xStock (DHRx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. DHRx tracks the price of Danaher Corporation (the underlying). DHRx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Danaher Corporation, whilst maintaining the benefits of blockchain technology. Danaher Corporation is a global science and technology innovator operating in biotechnology, life sciences, and diagnostics. It focuses on accelerating the power of science and technology to improve human health.", + "explorer": "https://bscscan.com/token/0xdbA228936F4079DaF9Aa906fd48a87f2300405F4", + "type": "BEP20", + "symbol": "DHRX", + "decimals": 18, + "status": "active", + "id": "0xdbA228936F4079DaF9Aa906fd48a87f2300405F4", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/danaher-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdbA228936F4079DaF9Aa906fd48a87f2300405F4/logo.png b/blockchains/smartchain/assets/0xdbA228936F4079DaF9Aa906fd48a87f2300405F4/logo.png new file mode 100644 index 0000000000000..3b7a5c57e6b9e Binary files /dev/null and b/blockchains/smartchain/assets/0xdbA228936F4079DaF9Aa906fd48a87f2300405F4/logo.png differ diff --git a/blockchains/smartchain/assets/0xdc847755343C3A2B94d6aFC0aAE57651E1b14064/info.json b/blockchains/smartchain/assets/0xdc847755343C3A2B94d6aFC0aAE57651E1b14064/info.json index 93a8dac698122..e8e7b6b98d2ae 100644 --- a/blockchains/smartchain/assets/0xdc847755343C3A2B94d6aFC0aAE57651E1b14064/info.json +++ b/blockchains/smartchain/assets/0xdc847755343C3A2B94d6aFC0aAE57651E1b14064/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/bodatoken/" }, { - "name": "twitter", - "url": "https://twitter.com/BodaToken" + "name": "x", + "url": "https://x.com/BodaToken" }, { "name": "reddit", @@ -53,4 +53,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdce796806394E015b7BcF71d1558181A194fC62a/info.json b/blockchains/smartchain/assets/0xdce796806394E015b7BcF71d1558181A194fC62a/info.json new file mode 100644 index 0000000000000..85e578287e4f4 --- /dev/null +++ b/blockchains/smartchain/assets/0xdce796806394E015b7BcF71d1558181A194fC62a/info.json @@ -0,0 +1,21 @@ +{ + "name": "MOG PEPE", + "symbol": "PEPE", + "type": "BEP20", + "decimals": 18, + "description": "MOG PEPE: Alpha Meme with AI Prowess.", + "website": "https://mogpepe.xyz/", + "explorer": "https://bscscan.com/token/0xdce796806394E015b7BcF71d1558181A194fC62a", + "status": "active", + "id": "0xdce796806394E015b7BcF71d1558181A194fC62a", + "links": [ + { + "name": "x", + "url": "https://x.com/mogpepexyz" + }, + { + "name": "telegram", + "url": "https://t.me/mogpepechat" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdce796806394E015b7BcF71d1558181A194fC62a/logo.png b/blockchains/smartchain/assets/0xdce796806394E015b7BcF71d1558181A194fC62a/logo.png new file mode 100644 index 0000000000000..8490e6e6acab4 Binary files /dev/null and b/blockchains/smartchain/assets/0xdce796806394E015b7BcF71d1558181A194fC62a/logo.png differ diff --git a/blockchains/smartchain/assets/0xdd02bC212E79ACdAb476C9295cDea8a61099Cb79/info.json b/blockchains/smartchain/assets/0xdd02bC212E79ACdAb476C9295cDea8a61099Cb79/info.json new file mode 100644 index 0000000000000..2d2d275d05855 --- /dev/null +++ b/blockchains/smartchain/assets/0xdd02bC212E79ACdAb476C9295cDea8a61099Cb79/info.json @@ -0,0 +1,32 @@ +{ + "name": "MCNCOIN", + "type": "BEP20", + "symbol": "MCN", + "decimals": 8, + "website": "https://mcncoin.io", + "description": "MCN - Multi-Community Network! MCN is an innovative GameFi platform that revolutionizes the way players interact with gaming entertainment and earn.", + "explorer": "https://bscscan.com/token/0xdd02bC212E79ACdAb476C9295cDea8a61099Cb79", + "status": "active", + "id": "0xdd02bC212E79ACdAb476C9295cDea8a61099Cb79", + "links": [ + { + "name": "x", + "url": "https://x.com/MCNOfficialM" + }, + { + "name": "telegram", + "url": "https://t.me/mcn_network" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mcncoin" + }, + { + "name": "whitepaper", + "url": "https://mcncoin.io/white-paper" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdd02bC212E79ACdAb476C9295cDea8a61099Cb79/logo.png b/blockchains/smartchain/assets/0xdd02bC212E79ACdAb476C9295cDea8a61099Cb79/logo.png new file mode 100644 index 0000000000000..f3607f6cf9a55 Binary files /dev/null and b/blockchains/smartchain/assets/0xdd02bC212E79ACdAb476C9295cDea8a61099Cb79/logo.png differ diff --git a/blockchains/smartchain/assets/0xdd325C38b12903B727D16961e61333f4871A70E0/info.json b/blockchains/smartchain/assets/0xdd325C38b12903B727D16961e61333f4871A70E0/info.json index a155bbde63fe2..0bac25fced40d 100644 --- a/blockchains/smartchain/assets/0xdd325C38b12903B727D16961e61333f4871A70E0/info.json +++ b/blockchains/smartchain/assets/0xdd325C38b12903B727D16961e61333f4871A70E0/info.json @@ -18,8 +18,8 @@ "url": "https://t.me/elephant_money" }, { - "name": "twitter", - "url": "https://twitter.com/ElephantStatus" + "name": "x", + "url": "https://x.com/ElephantStatus" }, { "name": "whitepaper", @@ -35,4 +35,4 @@ "defi", "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdd6978F36c98AfF4287E5ac803C9CF1b865641F6/info.json b/blockchains/smartchain/assets/0xdd6978F36c98AfF4287E5ac803C9CF1b865641F6/info.json index f9f09f1eec6e7..41649af255add 100644 --- a/blockchains/smartchain/assets/0xdd6978F36c98AfF4287E5ac803C9CF1b865641F6/info.json +++ b/blockchains/smartchain/assets/0xdd6978F36c98AfF4287E5ac803C9CF1b865641F6/info.json @@ -10,8 +10,8 @@ "id": "0xdd6978F36c98AfF4287E5ac803C9CF1b865641F6", "links": [ { - "name": "twitter", - "url": "https://twitter.com/JerryInu" + "name": "x", + "url": "https://x.com/JerryInu" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xdeb1EAF085979A73aB0E85901D786cBa991c2617/info.json b/blockchains/smartchain/assets/0xdeb1EAF085979A73aB0E85901D786cBa991c2617/info.json index ce969d62b0183..c25fa77ba4dc2 100644 --- a/blockchains/smartchain/assets/0xdeb1EAF085979A73aB0E85901D786cBa991c2617/info.json +++ b/blockchains/smartchain/assets/0xdeb1EAF085979A73aB0E85901D786cBa991c2617/info.json @@ -10,8 +10,8 @@ "id": "0xdeb1EAF085979A73aB0E85901D786cBa991c2617", "links": [ { - "name": "twitter", - "url": "https://twitter.com/LuckyFortuneDog" + "name": "x", + "url": "https://x.com/LuckyFortuneDog" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xdf5Fac537aa09e1eb0F3f8DD1d34CBdC42CA1076/info.json b/blockchains/smartchain/assets/0xdf5Fac537aa09e1eb0F3f8DD1d34CBdC42CA1076/info.json index 63edf812da97b..27b15312786ff 100644 --- a/blockchains/smartchain/assets/0xdf5Fac537aa09e1eb0F3f8DD1d34CBdC42CA1076/info.json +++ b/blockchains/smartchain/assets/0xdf5Fac537aa09e1eb0F3f8DD1d34CBdC42CA1076/info.json @@ -10,8 +10,8 @@ "id": "0xdf5Fac537aa09e1eb0F3f8DD1d34CBdC42CA1076", "links": [ { - "name": "twitter", - "url": "https://twitter.com/DontKYC" + "name": "x", + "url": "https://x.com/DontKYC" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xdfa86A77C9C99C2A1d33e56F42081b40Fc3BDFcC/info.json b/blockchains/smartchain/assets/0xdfa86A77C9C99C2A1d33e56F42081b40Fc3BDFcC/info.json new file mode 100644 index 0000000000000..be452b1abfc61 --- /dev/null +++ b/blockchains/smartchain/assets/0xdfa86A77C9C99C2A1d33e56F42081b40Fc3BDFcC/info.json @@ -0,0 +1,22 @@ +{ + "name": "POGAI", + "type": "BEP20", + "symbol": "POGAI", + "decimals": 18, + "description": "Pogai, or poor guy", + "website": "https://x.com/_pogai_", + "explorer": "https://bscscan.com/token/0xdfa86a77c9c99c2a1d33e56f42081b40fc3bdfcc", + "id": "0xdfa86A77C9C99C2A1d33e56F42081b40Fc3BDFcC", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/_pogai_" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdfa86A77C9C99C2A1d33e56F42081b40Fc3BDFcC/logo.png b/blockchains/smartchain/assets/0xdfa86A77C9C99C2A1d33e56F42081b40Fc3BDFcC/logo.png new file mode 100644 index 0000000000000..837f0c3f4d739 Binary files /dev/null and b/blockchains/smartchain/assets/0xdfa86A77C9C99C2A1d33e56F42081b40Fc3BDFcC/logo.png differ diff --git a/blockchains/smartchain/assets/0xdfd85305A752d70A07A995Fa724Ac4Ff787EBef2/info.json b/blockchains/smartchain/assets/0xdfd85305A752d70A07A995Fa724Ac4Ff787EBef2/info.json index ce161234c6055..64e01fe511253 100644 --- a/blockchains/smartchain/assets/0xdfd85305A752d70A07A995Fa724Ac4Ff787EBef2/info.json +++ b/blockchains/smartchain/assets/0xdfd85305A752d70A07A995Fa724Ac4Ff787EBef2/info.json @@ -8,8 +8,8 @@ "explorer": "https://bscscan.com/token/0xdfd85305a752d70a07a995fa724ac4ff787ebef2", "links": [ { - "name": "twitter", - "url": "https://twitter.com/PayX2P" + "name": "x", + "url": "https://x.com/PayX2P" }, { "name": "whitepaper", diff --git a/blockchains/smartchain/assets/0xe0191fEfdd0D2B39b1a2E4E029cCDA8A481b7995/info.json b/blockchains/smartchain/assets/0xe0191fEfdd0D2B39b1a2E4E029cCDA8A481b7995/info.json index 931d1325f4238..504465ef6edb6 100644 --- a/blockchains/smartchain/assets/0xe0191fEfdd0D2B39b1a2E4E029cCDA8A481b7995/info.json +++ b/blockchains/smartchain/assets/0xe0191fEfdd0D2B39b1a2E4E029cCDA8A481b7995/info.json @@ -10,8 +10,8 @@ "id": "0xe0191fEfdd0D2B39b1a2E4E029cCDA8A481b7995", "links": [ { - "name": "twitter", - "url": "https://twitter.com/CryptoMinesApp" + "name": "x", + "url": "https://x.com/CryptoMinesApp" }, { "name": "discord", @@ -26,4 +26,4 @@ "nft", "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe05A08226c49b636ACf99c40Da8DC6aF83CE5bB3/info.json b/blockchains/smartchain/assets/0xe05A08226c49b636ACf99c40Da8DC6aF83CE5bB3/info.json index 55ed208003060..e0736fed2942c 100644 --- a/blockchains/smartchain/assets/0xe05A08226c49b636ACf99c40Da8DC6aF83CE5bB3/info.json +++ b/blockchains/smartchain/assets/0xe05A08226c49b636ACf99c40Da8DC6aF83CE5bB3/info.json @@ -10,8 +10,8 @@ "id": "0xe05A08226c49b636ACf99c40Da8DC6aF83CE5bB3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ankr" + "name": "x", + "url": "https://x.com/ankr" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xe0F94Ac5462997D2BC57287Ac3a3aE4C31345D66/info.json b/blockchains/smartchain/assets/0xe0F94Ac5462997D2BC57287Ac3a3aE4C31345D66/info.json index 5723b010a2fe4..a57e8220cc2b7 100644 --- a/blockchains/smartchain/assets/0xe0F94Ac5462997D2BC57287Ac3a3aE4C31345D66/info.json +++ b/blockchains/smartchain/assets/0xe0F94Ac5462997D2BC57287Ac3a3aE4C31345D66/info.json @@ -10,8 +10,8 @@ "id": "0xe0F94Ac5462997D2BC57287Ac3a3aE4C31345D66", "links": [ { - "name": "twitter", - "url": "https://twitter.com/CEEK" + "name": "x", + "url": "https://x.com/CEEK" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0xe0b0C16038845BEd3fCf70304D3e167Df81ce225/info.json b/blockchains/smartchain/assets/0xe0b0C16038845BEd3fCf70304D3e167Df81ce225/info.json index 77fe761301863..e929d5dafe0a7 100644 --- a/blockchains/smartchain/assets/0xe0b0C16038845BEd3fCf70304D3e167Df81ce225/info.json +++ b/blockchains/smartchain/assets/0xe0b0C16038845BEd3fCf70304D3e167Df81ce225/info.json @@ -10,8 +10,8 @@ "id": "0xe0b0C16038845BEd3fCf70304D3e167Df81ce225", "links": [ { - "name": "twitter", - "url": "https://twitter.com/CrossSwapDex" + "name": "x", + "url": "https://x.com/CrossSwapDex" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0xe0e0Fbc7E8D881953d39CF899409410B50b8C924/info.json b/blockchains/smartchain/assets/0xe0e0Fbc7E8D881953d39CF899409410B50b8C924/info.json index eff0917ae380c..b9e72b4a3a1d7 100644 --- a/blockchains/smartchain/assets/0xe0e0Fbc7E8D881953d39CF899409410B50b8C924/info.json +++ b/blockchains/smartchain/assets/0xe0e0Fbc7E8D881953d39CF899409410B50b8C924/info.json @@ -18,8 +18,8 @@ "url": "https://coingecko.com/pl/waluty/coin-of-nature" }, { - "name": "twitter", - "url": "https://twitter.com/CoinOfNature" + "name": "x", + "url": "https://x.com/CoinOfNature" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xe12BB32D77BE4DB10DDC82088b230D35d097E9C5/info.json b/blockchains/smartchain/assets/0xe12BB32D77BE4DB10DDC82088b230D35d097E9C5/info.json new file mode 100644 index 0000000000000..878616e99ba72 --- /dev/null +++ b/blockchains/smartchain/assets/0xe12BB32D77BE4DB10DDC82088b230D35d097E9C5/info.json @@ -0,0 +1,15 @@ +{ + "name": "Palo Alto Networks xStock", + "type": "BEP20", + "symbol": "PANWx", + "decimals": 18, + "description": "Palo Alto Networks xStock (PANWx) is a tracker certificate issued as a freely transferable token on selected blockchains. PANWx tracks the price of Palo Alto Networks, Inc.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0xe12BB32D77BE4DB10DDC82088b230D35d097E9C5", + "status": "active", + "id": "0xe12BB32D77BE4DB10DDC82088b230D35d097E9C5", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe12BB32D77BE4DB10DDC82088b230D35d097E9C5/logo.png b/blockchains/smartchain/assets/0xe12BB32D77BE4DB10DDC82088b230D35d097E9C5/logo.png new file mode 100644 index 0000000000000..52c3f3050c8ee Binary files /dev/null and b/blockchains/smartchain/assets/0xe12BB32D77BE4DB10DDC82088b230D35d097E9C5/logo.png differ diff --git a/blockchains/smartchain/assets/0xe19c0ed160f27f3A1a004C4BD8971281Fa8d31ED/info.json b/blockchains/smartchain/assets/0xe19c0ed160f27f3A1a004C4BD8971281Fa8d31ED/info.json new file mode 100644 index 0000000000000..1b0285089407a --- /dev/null +++ b/blockchains/smartchain/assets/0xe19c0ed160f27f3A1a004C4BD8971281Fa8d31ED/info.json @@ -0,0 +1,17 @@ +{ + "name": "EGGY", + "website": "https://eggybsc.com", + "description": "IT`S NOT AN ORDINARY MEME TOKEN - BY RECEIVING BTC REFLECTIONS ( YES, IT'S TRUE, YOU WILL RECEIVE ONE&ONLY $BTC IF YOU TRADE AND HOLD $EGGY),", + "explorer": "https://bscscan.com/token/0xe19c0ed160f27f3A1a004C4BD8971281Fa8d31ED", + "type": "BEP20", + "symbol": "EGGY", + "decimals": 9, + "status": "active", + "id": "0xe19c0ed160f27f3A1a004C4BD8971281Fa8d31ED", + "links": [ + { + "name": "x", + "url": "https://x.com/EGGY_BSC" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe19c0ed160f27f3A1a004C4BD8971281Fa8d31ED/logo.png b/blockchains/smartchain/assets/0xe19c0ed160f27f3A1a004C4BD8971281Fa8d31ED/logo.png new file mode 100644 index 0000000000000..8a369f1332316 Binary files /dev/null and b/blockchains/smartchain/assets/0xe19c0ed160f27f3A1a004C4BD8971281Fa8d31ED/logo.png differ diff --git a/blockchains/smartchain/assets/0xe2018E3A2Ba7B2161B4888c316bD59427615DBa0/info.json b/blockchains/smartchain/assets/0xe2018E3A2Ba7B2161B4888c316bD59427615DBa0/info.json new file mode 100644 index 0000000000000..0055eece1420a --- /dev/null +++ b/blockchains/smartchain/assets/0xe2018E3A2Ba7B2161B4888c316bD59427615DBa0/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT USDT.C", + "type": "BEP20", + "symbol": "HONEYPOT USDT.C", + "decimals": 6, + "website": "https://bscscan.com/token/0xe2018E3A2Ba7B2161B4888c316bD59427615DBa0", + "description": "HONEYPOT USDT.C", + "explorer": "https://bscscan.com/token/0xe2018E3A2Ba7B2161B4888c316bD59427615DBa0", + "status": "spam", + "id": "0xe2018E3A2Ba7B2161B4888c316bD59427615DBa0" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe23f03d2907CdC38a10F6CcDc1a157bf1AFe51De/info.json b/blockchains/smartchain/assets/0xe23f03d2907CdC38a10F6CcDc1a157bf1AFe51De/info.json new file mode 100644 index 0000000000000..e5e2c43a56950 --- /dev/null +++ b/blockchains/smartchain/assets/0xe23f03d2907CdC38a10F6CcDc1a157bf1AFe51De/info.json @@ -0,0 +1,28 @@ +{ + "name": "Sprott Nickel Miners ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "NIKLon", + "decimals": 18, + "description": "NIKLon is the Ondo Tokenized version of the Sprott Nickel Miners ETF, giving tokenholders economic exposure similar to holding NIKL and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xe23f03d2907CdC38a10F6CcDc1a157bf1AFe51De", + "status": "active", + "id": "0xe23f03d2907CdC38a10F6CcDc1a157bf1AFe51De", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sprott-nickel-miners-etf-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sprott-nickel-miners-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe23f03d2907CdC38a10F6CcDc1a157bf1AFe51De/logo.png b/blockchains/smartchain/assets/0xe23f03d2907CdC38a10F6CcDc1a157bf1AFe51De/logo.png new file mode 100644 index 0000000000000..07947479164c4 Binary files /dev/null and b/blockchains/smartchain/assets/0xe23f03d2907CdC38a10F6CcDc1a157bf1AFe51De/logo.png differ diff --git a/blockchains/smartchain/assets/0xe24F6Bc7635501d5684a963f7e75C8062b9c0eA4/info.json b/blockchains/smartchain/assets/0xe24F6Bc7635501d5684a963f7e75C8062b9c0eA4/info.json index 1bb29235060c0..220675cc6fa5c 100644 --- a/blockchains/smartchain/assets/0xe24F6Bc7635501d5684a963f7e75C8062b9c0eA4/info.json +++ b/blockchains/smartchain/assets/0xe24F6Bc7635501d5684a963f7e75C8062b9c0eA4/info.json @@ -10,8 +10,8 @@ "id": "0xe24F6Bc7635501d5684a963f7e75C8062b9c0eA4", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BabyFlokiDoge/" + "name": "x", + "url": "https://x.com/BabyFlokiDoge/" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xe2604C9561D490624AA35e156e65e590eB749519/info.json b/blockchains/smartchain/assets/0xe2604C9561D490624AA35e156e65e590eB749519/info.json index c9cd61b644d86..834296bf239ee 100644 --- a/blockchains/smartchain/assets/0xe2604C9561D490624AA35e156e65e590eB749519/info.json +++ b/blockchains/smartchain/assets/0xe2604C9561D490624AA35e156e65e590eB749519/info.json @@ -10,8 +10,8 @@ "id": "0xe2604C9561D490624AA35e156e65e590eB749519", "links": [ { - "name": "twitter", - "url": "https://twitter.com/DeFiGoldMiner" + "name": "x", + "url": "https://x.com/DeFiGoldMiner" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xe2Ac868F2FD097086d83Bc939248E5aE08d35DA4/info.json b/blockchains/smartchain/assets/0xe2Ac868F2FD097086d83Bc939248E5aE08d35DA4/info.json new file mode 100644 index 0000000000000..b93fc7825238e --- /dev/null +++ b/blockchains/smartchain/assets/0xe2Ac868F2FD097086d83Bc939248E5aE08d35DA4/info.json @@ -0,0 +1,28 @@ +{ + "name": "B2Gold (Ondo Tokenized)", + "type": "BEP20", + "symbol": "BTGon", + "decimals": 18, + "description": "BTGon is the Ondo Tokenized version of B2Gold, giving tokenholders economic exposure similar to holding BTG and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xe2Ac868F2FD097086d83Bc939248E5aE08d35DA4", + "status": "active", + "id": "0xe2Ac868F2FD097086d83Bc939248E5aE08d35DA4", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/b2gold-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/b2gold-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe2Ac868F2FD097086d83Bc939248E5aE08d35DA4/logo.png b/blockchains/smartchain/assets/0xe2Ac868F2FD097086d83Bc939248E5aE08d35DA4/logo.png new file mode 100644 index 0000000000000..c5348399e5ca8 Binary files /dev/null and b/blockchains/smartchain/assets/0xe2Ac868F2FD097086d83Bc939248E5aE08d35DA4/logo.png differ diff --git a/blockchains/smartchain/assets/0xe2EcC66E14eFa96E9c55945f79564f468882D24C/info.json b/blockchains/smartchain/assets/0xe2EcC66E14eFa96E9c55945f79564f468882D24C/info.json new file mode 100644 index 0000000000000..d903977b0dd46 --- /dev/null +++ b/blockchains/smartchain/assets/0xe2EcC66E14eFa96E9c55945f79564f468882D24C/info.json @@ -0,0 +1,49 @@ +{ + "name": "Disney", + "website": "https://distoken.xyz", + "description": "DIS launched by Miningtw Technology Co., Ltd., It is a meme token of cryptocurrency, and mining. Tokens for interaction, rewards, gifts purposes, the token economic model 50% of 5 years of pledge mining, and users rewards per second according to the total amount of pledges , for fun and joy.", + "explorer": "https://bscscan.com/token/0xe2EcC66E14eFa96E9c55945f79564f468882D24C", + "type": "BEP20", + "symbol": "DIS", + "decimals": 18, + "status": "active", + "id": "0xe2EcC66E14eFa96E9c55945f79564f468882D24C", + "tags": [ + "memes", + "staking" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/distoken_xyz" + }, + { + "name": "telegram", + "url": "https://t.me/miningtwxyz" + }, + { + "name": "github", + "url": "https://github.com/MiningTW/Dis-Token" + }, + { + "name": "medium", + "url": "https://medium.com/@miningtw" + }, + { + "name": "blog", + "url": "https://www.twincn.com/item.aspx?no=90324590" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/disney/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/disney" + }, + { + "name": "whitepaper", + "url": "https://distoken.xyz/distoken-whitepaper-2-0/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe2EcC66E14eFa96E9c55945f79564f468882D24C/logo.png b/blockchains/smartchain/assets/0xe2EcC66E14eFa96E9c55945f79564f468882D24C/logo.png new file mode 100644 index 0000000000000..9dce726640988 Binary files /dev/null and b/blockchains/smartchain/assets/0xe2EcC66E14eFa96E9c55945f79564f468882D24C/logo.png differ diff --git a/blockchains/smartchain/assets/0xe2cBF8572EAb769311A8c562b00A14Ca55eaa0EA/info.json b/blockchains/smartchain/assets/0xe2cBF8572EAb769311A8c562b00A14Ca55eaa0EA/info.json index 500edd5863e96..dbb4eabda6f7b 100644 --- a/blockchains/smartchain/assets/0xe2cBF8572EAb769311A8c562b00A14Ca55eaa0EA/info.json +++ b/blockchains/smartchain/assets/0xe2cBF8572EAb769311A8c562b00A14Ca55eaa0EA/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/shibanomics" }, { - "name": "twitter", - "url": "https://twitter.com/shibanomicsbsc" + "name": "x", + "url": "https://x.com/shibanomicsbsc" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe2e6e66551E5062Acd56925B48bBa981696CcCC2/info.json b/blockchains/smartchain/assets/0xe2e6e66551E5062Acd56925B48bBa981696CcCC2/info.json index 5c55710bd0a72..50eead7b92690 100644 --- a/blockchains/smartchain/assets/0xe2e6e66551E5062Acd56925B48bBa981696CcCC2/info.json +++ b/blockchains/smartchain/assets/0xe2e6e66551E5062Acd56925B48bBa981696CcCC2/info.json @@ -14,8 +14,8 @@ "url": "https://vaultdefi.com" }, { - "name": "twitter", - "url": "https://twitter.com/vaultdefi" + "name": "x", + "url": "https://x.com/vaultdefi" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0xe320Df552e78D57E95cF1182B6960746d5016561/info.json b/blockchains/smartchain/assets/0xe320Df552e78D57E95cF1182B6960746d5016561/info.json index 7819fdb180ec7..c5e6039b3394b 100644 --- a/blockchains/smartchain/assets/0xe320Df552e78D57E95cF1182B6960746d5016561/info.json +++ b/blockchains/smartchain/assets/0xe320Df552e78D57E95cF1182B6960746d5016561/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/dogecola" }, { - "name": "twitter", - "url": "https://twitter.com/doge_cola" + "name": "x", + "url": "https://x.com/doge_cola" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xe327eD2037F133cdA9F56171b68B6b7b4Dfa6175/info.json b/blockchains/smartchain/assets/0xe327eD2037F133cdA9F56171b68B6b7b4Dfa6175/info.json index 84e7c6cd4d064..27af1e00c968c 100644 --- a/blockchains/smartchain/assets/0xe327eD2037F133cdA9F56171b68B6b7b4Dfa6175/info.json +++ b/blockchains/smartchain/assets/0xe327eD2037F133cdA9F56171b68B6b7b4Dfa6175/info.json @@ -10,8 +10,8 @@ "id": "0xe327eD2037F133cdA9F56171b68B6b7b4Dfa6175", "links": [ { - "name": "twitter", - "url": "https://twitter.com/petoverse" + "name": "x", + "url": "https://x.com/petoverse" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xe369fec23380f9F14ffD07a1DC4b7c1a9fdD81c9/info.json b/blockchains/smartchain/assets/0xe369fec23380f9F14ffD07a1DC4b7c1a9fdD81c9/info.json index 7e60ec2dee6c7..fbd426db32bda 100644 --- a/blockchains/smartchain/assets/0xe369fec23380f9F14ffD07a1DC4b7c1a9fdD81c9/info.json +++ b/blockchains/smartchain/assets/0xe369fec23380f9F14ffD07a1DC4b7c1a9fdD81c9/info.json @@ -10,8 +10,8 @@ "id": "0xe369fec23380f9F14ffD07a1DC4b7c1a9fdD81c9", "links": [ { - "name": "twitter", - "url": "https://twitter.com/realfroyogames" + "name": "x", + "url": "https://x.com/realfroyogames" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xe3f53c0d48360de764dDc2a1A82c3e6DB5d4624d/info.json b/blockchains/smartchain/assets/0xe3f53c0d48360de764dDc2a1A82c3e6DB5d4624d/info.json new file mode 100644 index 0000000000000..73b1a5169c50e --- /dev/null +++ b/blockchains/smartchain/assets/0xe3f53c0d48360de764dDc2a1A82c3e6DB5d4624d/info.json @@ -0,0 +1,21 @@ +{ + "name": "EMoney", + "type": "BEP20", + "symbol": "EMYC", + "decimals": 18, + "website": "https://emoney.io", + "description": "Bringing the power of banking to DeFi", + "explorer": "https://bscscan.com/token/0xe3f53c0d48360de764dDc2a1A82c3e6DB5d4624d", + "status": "active", + "id": "0xe3f53c0d48360de764dDc2a1A82c3e6DB5d4624d", + "links": [ + { + "name": "x", + "url": "https://x.com/emoney_network" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/e-money-io/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe3f53c0d48360de764dDc2a1A82c3e6DB5d4624d/logo.png b/blockchains/smartchain/assets/0xe3f53c0d48360de764dDc2a1A82c3e6DB5d4624d/logo.png new file mode 100644 index 0000000000000..600d588adaaf4 Binary files /dev/null and b/blockchains/smartchain/assets/0xe3f53c0d48360de764dDc2a1A82c3e6DB5d4624d/logo.png differ diff --git a/blockchains/smartchain/assets/0xe42CfB20e00912409B77A602B5BDcfF3c7aCC5F4/info.json b/blockchains/smartchain/assets/0xe42CfB20e00912409B77A602B5BDcfF3c7aCC5F4/info.json new file mode 100644 index 0000000000000..865dc123741e8 --- /dev/null +++ b/blockchains/smartchain/assets/0xe42CfB20e00912409B77A602B5BDcfF3c7aCC5F4/info.json @@ -0,0 +1,28 @@ +{ + "name": "ProShares UltraPro QQQ (Ondo Tokenized)", + "type": "BEP20", + "symbol": "TQQQon", + "decimals": 18, + "description": "TQQQon is the Ondo Tokenized version of the ProShares UltraPro QQQ, giving tokenholders economic exposure similar to holding TQQQ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xe42CfB20e00912409B77A602B5BDcfF3c7aCC5F4", + "status": "active", + "id": "0xe42CfB20e00912409B77A602B5BDcfF3c7aCC5F4", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/proshares-ultrapro-qqq-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/proshares-ultrapro-qqq-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe42CfB20e00912409B77A602B5BDcfF3c7aCC5F4/logo.png b/blockchains/smartchain/assets/0xe42CfB20e00912409B77A602B5BDcfF3c7aCC5F4/logo.png new file mode 100644 index 0000000000000..d28deab3711b4 Binary files /dev/null and b/blockchains/smartchain/assets/0xe42CfB20e00912409B77A602B5BDcfF3c7aCC5F4/logo.png differ diff --git a/blockchains/smartchain/assets/0xe48A3d7d0Bc88d552f730B62c006bC925eadB9eE/info.json b/blockchains/smartchain/assets/0xe48A3d7d0Bc88d552f730B62c006bC925eadB9eE/info.json index 46cac4236f2bc..d83f0a290ea33 100644 --- a/blockchains/smartchain/assets/0xe48A3d7d0Bc88d552f730B62c006bC925eadB9eE/info.json +++ b/blockchains/smartchain/assets/0xe48A3d7d0Bc88d552f730B62c006bC925eadB9eE/info.json @@ -10,8 +10,8 @@ "id": "0xe48A3d7d0Bc88d552f730B62c006bC925eadB9eE", "links": [ { - "name": "twitter", - "url": "https://twitter.com/fraxfinance" + "name": "x", + "url": "https://x.com/fraxfinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xe4CA1F75ECA6214393fCE1C1b316C237664EaA8e/info.json b/blockchains/smartchain/assets/0xe4CA1F75ECA6214393fCE1C1b316C237664EaA8e/info.json index 795b912be0988..f349c726c6847 100644 --- a/blockchains/smartchain/assets/0xe4CA1F75ECA6214393fCE1C1b316C237664EaA8e/info.json +++ b/blockchains/smartchain/assets/0xe4CA1F75ECA6214393fCE1C1b316C237664EaA8e/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/orionprotocol" }, { - "name": "twitter", - "url": "https://twitter.com/orion_protocol" + "name": "x", + "url": "https://x.com/orion_protocol" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xe4Cc45Bb5DBDA06dB6183E8bf016569f40497Aa5/info.json b/blockchains/smartchain/assets/0xe4Cc45Bb5DBDA06dB6183E8bf016569f40497Aa5/info.json index b9e5c5e2befff..44538c4bba5a4 100644 --- a/blockchains/smartchain/assets/0xe4Cc45Bb5DBDA06dB6183E8bf016569f40497Aa5/info.json +++ b/blockchains/smartchain/assets/0xe4Cc45Bb5DBDA06dB6183E8bf016569f40497Aa5/info.json @@ -18,8 +18,8 @@ "url": "https://coingecko.com/en/coins/galxe" }, { - "name": "twitter", - "url": "https://twitter.com/galxe" + "name": "x", + "url": "https://x.com/galxe" }, { "name": "telegram", @@ -33,4 +33,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe4e11e02AA14c7f24DB749421986EAEc1369e8C9/info.json b/blockchains/smartchain/assets/0xe4e11e02AA14c7f24DB749421986EAEc1369e8C9/info.json new file mode 100644 index 0000000000000..c04c634c907ae --- /dev/null +++ b/blockchains/smartchain/assets/0xe4e11e02AA14c7f24DB749421986EAEc1369e8C9/info.json @@ -0,0 +1,33 @@ +{ + "name": "Minati", + "type": "BEP20", + "symbol": "MNTC", + "decimals": 18, + "website": "https://minati.io/", + "description": "Minati is a leading digital currency platform, combining DeFi, AI, and blockchain to revolutionize finance. We create a transparent, secure ecosystem for individuals to control their financial destiny. Leveraging blockchain, we record transactions on an immutable ledger, prioritizing safety through encryption and robust security.", + "explorer": "https://bscscan.com/token/0xe4e11e02AA14c7f24DB749421986EAEc1369e8C9", + "status": "active", + "id": "0xe4e11e02AA14c7f24DB749421986EAEc1369e8C9", + "links": [ + { + "name": "x", + "url": "https://x.com/minatifi" + }, + { + "name": "telegram", + "url": "https://t.me/Minatifi" + }, + { + "name": "facebook", + "url": "https://facebook.com/people/Minati/100093107832528/" + }, + { + "name": "youtube", + "url": "https://youtube.com/@MinatiToken" + } + ], + "tags": [ + "defi", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe4e11e02AA14c7f24DB749421986EAEc1369e8C9/logo.png b/blockchains/smartchain/assets/0xe4e11e02AA14c7f24DB749421986EAEc1369e8C9/logo.png new file mode 100644 index 0000000000000..bcfd3fced0d36 Binary files /dev/null and b/blockchains/smartchain/assets/0xe4e11e02AA14c7f24DB749421986EAEc1369e8C9/logo.png differ diff --git a/blockchains/smartchain/assets/0xe52bB35344cceedd014Be2896d01e604ad992c85/info.json b/blockchains/smartchain/assets/0xe52bB35344cceedd014Be2896d01e604ad992c85/info.json new file mode 100644 index 0000000000000..23f4f0bb2dd98 --- /dev/null +++ b/blockchains/smartchain/assets/0xe52bB35344cceedd014Be2896d01e604ad992c85/info.json @@ -0,0 +1,60 @@ +{ + "name": "Crypto Snack 2.0", + "type": "BEP20", + "symbol": "SNACK", + "decimals": 18, + "website": "https://cryptosnacks.org/", + "description": "Crypto Snack leverages blockchain technology to bring exclusive business and investment opportunities. Introducing SNACK 2.0, the most sophisticated utility token, Crypto Snack now provides revolutionary benefits in the igaming, real estate and ticketing industries.", + "explorer": "https://bscscan.com/token/0xe52bB35344cceedd014Be2896d01e604ad992c85", + "status": "active", + "id": "0xe52bB35344cceedd014Be2896d01e604ad992c85", + "links": [ + { + "name": "x", + "url": "https://x.com/CryptoSnack_" + }, + { + "name": "github", + "url": "https://github.com/CryptoSnackProject" + }, + { + "name": "telegram", + "url": "https://t.me/CryptoSnackCommunity" + }, + { + "name": "discord", + "url": "https://discord.com/channels/915605284402130964/915605286662844458" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/CryptoSnackProject" + }, + { + "name": "whitepaper", + "url": "https://drive.google.com/file/d/1TSS1MQPIojeOJUQ4YcaZ4t2vAvLi-8ZM/view" + }, + { + "name": "medium", + "url": "https://cryptosnack.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/CryptoSnack" + }, + { + "name": "facebook", + "url": "https://facebook.com/CryptoSnackOfficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crypto-snack/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cryptosnack" + } + ], + "tags": [ + "synthetics" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe52bB35344cceedd014Be2896d01e604ad992c85/logo.png b/blockchains/smartchain/assets/0xe52bB35344cceedd014Be2896d01e604ad992c85/logo.png new file mode 100644 index 0000000000000..6a9a2201dfa22 Binary files /dev/null and b/blockchains/smartchain/assets/0xe52bB35344cceedd014Be2896d01e604ad992c85/logo.png differ diff --git a/blockchains/smartchain/assets/0xe552Fb52a4F19e44ef5A967632DBc320B0820639/info.json b/blockchains/smartchain/assets/0xe552Fb52a4F19e44ef5A967632DBc320B0820639/info.json index 117ef79e380da..8848b1eebde38 100644 --- a/blockchains/smartchain/assets/0xe552Fb52a4F19e44ef5A967632DBc320B0820639/info.json +++ b/blockchains/smartchain/assets/0xe552Fb52a4F19e44ef5A967632DBc320B0820639/info.json @@ -7,14 +7,14 @@ "type": "BEP20", "symbol": "Metis", "decimals": 18, - "status": "active", + "status": "abandoned", "tags": [ "defi" ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/MetisDAO" + "name": "x", + "url": "https://x.com/MetisDAO" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xe552Fb52a4F19e44ef5A967632DBc320B0820639/logo.png b/blockchains/smartchain/assets/0xe552Fb52a4F19e44ef5A967632DBc320B0820639/logo.png deleted file mode 100644 index 8f53736344256..0000000000000 Binary files a/blockchains/smartchain/assets/0xe552Fb52a4F19e44ef5A967632DBc320B0820639/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xe56842Ed550Ff2794F010738554db45E60730371/info.json b/blockchains/smartchain/assets/0xe56842Ed550Ff2794F010738554db45E60730371/info.json index 7b67687b0e46c..730e9b05ee3cf 100644 --- a/blockchains/smartchain/assets/0xe56842Ed550Ff2794F010738554db45E60730371/info.json +++ b/blockchains/smartchain/assets/0xe56842Ed550Ff2794F010738554db45E60730371/info.json @@ -10,8 +10,8 @@ "id": "0xe56842Ed550Ff2794F010738554db45E60730371", "links": [ { - "name": "twitter", - "url": "https://twitter.com/binemonnft" + "name": "x", + "url": "https://x.com/binemonnft" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xe56a473043EaAB7947c0a2408cEA623074500EE3/info.json b/blockchains/smartchain/assets/0xe56a473043EaAB7947c0a2408cEA623074500EE3/info.json index 331d7c54a44f4..61b56833d3ebc 100644 --- a/blockchains/smartchain/assets/0xe56a473043EaAB7947c0a2408cEA623074500EE3/info.json +++ b/blockchains/smartchain/assets/0xe56a473043EaAB7947c0a2408cEA623074500EE3/info.json @@ -10,8 +10,8 @@ "id": "0xe56a473043EaAB7947c0a2408cEA623074500EE3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/safeswaponline" + "name": "x", + "url": "https://x.com/safeswaponline" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xe57F73EB27Da9D17f90C994744D842e95700C100/info.json b/blockchains/smartchain/assets/0xe57F73EB27Da9D17f90C994744D842e95700C100/info.json index d2481f898f75f..d3f94cf646a3c 100644 --- a/blockchains/smartchain/assets/0xe57F73EB27Da9D17f90C994744D842e95700C100/info.json +++ b/blockchains/smartchain/assets/0xe57F73EB27Da9D17f90C994744D842e95700C100/info.json @@ -10,8 +10,8 @@ "id": "0xe57F73EB27Da9D17f90C994744D842e95700C100", "links": [ { - "name": "twitter", - "url": "https://twitter.com/pepe_ai_bsc" + "name": "x", + "url": "https://x.com/pepe_ai_bsc" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xe580074A10360404AF3ABfe2d524D5806D993ea3/info.json b/blockchains/smartchain/assets/0xe580074A10360404AF3ABfe2d524D5806D993ea3/info.json index 546db7a21c800..472892bc9fef3 100644 --- a/blockchains/smartchain/assets/0xe580074A10360404AF3ABfe2d524D5806D993ea3/info.json +++ b/blockchains/smartchain/assets/0xe580074A10360404AF3ABfe2d524D5806D993ea3/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/PayBolt" }, { - "name": "twitter", - "url": "https://twitter.com/PayBoltofficial" + "name": "x", + "url": "https://x.com/PayBoltofficial" }, { "name": "youtube", diff --git a/blockchains/smartchain/assets/0xe5BA472C98b7E4695bD856290De66bDEDaffC123/info.json b/blockchains/smartchain/assets/0xe5BA472C98b7E4695bD856290De66bDEDaffC123/info.json new file mode 100644 index 0000000000000..d59f0a9e88c47 --- /dev/null +++ b/blockchains/smartchain/assets/0xe5BA472C98b7E4695bD856290De66bDEDaffC123/info.json @@ -0,0 +1,28 @@ +{ + "name": "Charles Schwab (Ondo Tokenized)", + "type": "BEP20", + "symbol": "SCHWon", + "decimals": 18, + "description": "SCHWon is the Ondo Tokenized version of Charles Schwab, giving tokenholders economic exposure similar to holding SCHW and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xe5BA472C98b7E4695bD856290De66bDEDaffC123", + "status": "active", + "id": "0xe5BA472C98b7E4695bD856290De66bDEDaffC123", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/charles-schwab-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/charles-schwab-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe5BA472C98b7E4695bD856290De66bDEDaffC123/logo.png b/blockchains/smartchain/assets/0xe5BA472C98b7E4695bD856290De66bDEDaffC123/logo.png new file mode 100644 index 0000000000000..4fac0bdae8c74 Binary files /dev/null and b/blockchains/smartchain/assets/0xe5BA472C98b7E4695bD856290De66bDEDaffC123/logo.png differ diff --git a/blockchains/smartchain/assets/0xe5a46Bf898ce7583B612E5D168073ff773D7857e/info.json b/blockchains/smartchain/assets/0xe5a46Bf898ce7583B612E5D168073ff773D7857e/info.json index 3921b8e122e39..3da6a8315963f 100644 --- a/blockchains/smartchain/assets/0xe5a46Bf898ce7583B612E5D168073ff773D7857e/info.json +++ b/blockchains/smartchain/assets/0xe5a46Bf898ce7583B612E5D168073ff773D7857e/info.json @@ -10,8 +10,8 @@ "id": "0xe5a46Bf898ce7583B612E5D168073ff773D7857e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/CVIP_IO?t=fWZ9WdMsFI8rPQqvcp4Dzw&s=09" + "name": "x", + "url": "https://x.com/CVIP_IO?t=fWZ9WdMsFI8rPQqvcp4Dzw&s=09" }, { "name": "telegram", @@ -33,4 +33,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe614E2fc6C787035FF51f452e8E826Bfd32D5283/info.json b/blockchains/smartchain/assets/0xe614E2fc6C787035FF51f452e8E826Bfd32D5283/info.json new file mode 100644 index 0000000000000..2e471d404de2a --- /dev/null +++ b/blockchains/smartchain/assets/0xe614E2fc6C787035FF51f452e8E826Bfd32D5283/info.json @@ -0,0 +1,20 @@ +{ + "name": "Intel Tokenized bStocks", + "type": "BEP20", + "symbol": "INTCB", + "decimals": 18, + "description": "INTCB is a tokenized bStocks that gives you economic exposure to Intel Tokenized bStocks, and the right to convert to the underlying security on the Binance.com platform subject to applicable laws. Each token is fully backed by the corresponding underlying equity maintained by the Issuer at a US-regulated broker-dealer. You get the price movements, dividends, and the right to convert the token at 1:1 to the underlying share — tradeable 24/7.", + "website": "https://bstocks.finance/", + "explorer": "https://bscscan.com/token/0xe614E2fc6C787035FF51f452e8E826Bfd32D5283", + "status": "active", + "id": "0xe614E2fc6C787035FF51f452e8E826Bfd32D5283", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/circle-internet-group-tokenized-stock-bstocks/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe614E2fc6C787035FF51f452e8E826Bfd32D5283/logo.png b/blockchains/smartchain/assets/0xe614E2fc6C787035FF51f452e8E826Bfd32D5283/logo.png new file mode 100644 index 0000000000000..985987a0c8b58 Binary files /dev/null and b/blockchains/smartchain/assets/0xe614E2fc6C787035FF51f452e8E826Bfd32D5283/logo.png differ diff --git a/blockchains/smartchain/assets/0xe62B7C22484F8b031930275d31F42B9a517fE038/info.json b/blockchains/smartchain/assets/0xe62B7C22484F8b031930275d31F42B9a517fE038/info.json new file mode 100644 index 0000000000000..0cb515c8d2573 --- /dev/null +++ b/blockchains/smartchain/assets/0xe62B7C22484F8b031930275d31F42B9a517fE038/info.json @@ -0,0 +1,38 @@ +{ + "name": "SIDUS", + "symbol": "SIDUS", + "website": "https://sidusheroes.com", + "description": "The financial system of the Sidus Heroes game includes two tokens: the SIDUS token and the SENATE token. The SIDUS token is used by players of SIDUS HEROES as in-game currency.", + "explorer": "https://bscscan.com/token/0xe62b7c22484f8b031930275d31f42b9a517fe038", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0xe62B7C22484F8b031930275d31F42B9a517fE038", + "links": [ + { + "name": "github", + "url": "https://github.com/sidusHeroes" + }, + { + "name": "x", + "url": "https://x.com/galaxy_sidus" + }, + { + "name": "medium", + "url": "https://medium.com/sidus-nft-heroes" + }, + { + "name": "reddit", + "url": "https://reddit.com/sidus__heroes" + }, + { + "name": "whitepaper", + "url": "https://sidusheroes.com/docs/whitepaper.pdf" + } + ], + "tags": [ + "gamefi", + "nft", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe62B7C22484F8b031930275d31F42B9a517fE038/logo.png b/blockchains/smartchain/assets/0xe62B7C22484F8b031930275d31F42B9a517fE038/logo.png new file mode 100644 index 0000000000000..04638be4ef6e7 Binary files /dev/null and b/blockchains/smartchain/assets/0xe62B7C22484F8b031930275d31F42B9a517fE038/logo.png differ diff --git a/blockchains/smartchain/assets/0xe64972C311840cFaf2267DCfD365571F9D9544d9/info.json b/blockchains/smartchain/assets/0xe64972C311840cFaf2267DCfD365571F9D9544d9/info.json index fa9d5045049e8..66ac198c16254 100644 --- a/blockchains/smartchain/assets/0xe64972C311840cFaf2267DCfD365571F9D9544d9/info.json +++ b/blockchains/smartchain/assets/0xe64972C311840cFaf2267DCfD365571F9D9544d9/info.json @@ -10,8 +10,8 @@ "id": "0xe64972C311840cFaf2267DCfD365571F9D9544d9", "links": [ { - "name": "twitter", - "url": "https://twitter.com/sphynxswap?s=21" + "name": "x", + "url": "https://x.com/sphynxswap?s=21" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xe65313B085258a671d044F7Ad9D9fcd514c5d9e9/info.json b/blockchains/smartchain/assets/0xe65313B085258a671d044F7Ad9D9fcd514c5d9e9/info.json index d2a17188fbfe6..d94f180bf1f2a 100644 --- a/blockchains/smartchain/assets/0xe65313B085258a671d044F7Ad9D9fcd514c5d9e9/info.json +++ b/blockchains/smartchain/assets/0xe65313B085258a671d044F7Ad9D9fcd514c5d9e9/info.json @@ -10,8 +10,8 @@ "id": "0xe65313B085258a671d044F7Ad9D9fcd514c5d9e9", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Faftoken" + "name": "x", + "url": "https://x.com/Faftoken" }, { "name": "telegram", @@ -21,4 +21,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe6837794FBC6DD024733A1A31F86061296FA2752/info.json b/blockchains/smartchain/assets/0xe6837794FBC6DD024733A1A31F86061296FA2752/info.json new file mode 100644 index 0000000000000..d52d9f27a4615 --- /dev/null +++ b/blockchains/smartchain/assets/0xe6837794FBC6DD024733A1A31F86061296FA2752/info.json @@ -0,0 +1,28 @@ +{ + "name": "CrowdStrike (Ondo Tokenized)", + "type": "BEP20", + "symbol": "CRWDon", + "decimals": 18, + "description": "CRWDon is the Ondo Tokenized version of CrowdStrike, giving tokenholders economic exposure similar to holding CRWD and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xe6837794FBC6DD024733A1A31F86061296FA2752", + "status": "active", + "id": "0xe6837794FBC6DD024733A1A31F86061296FA2752", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/crowdstrike-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crowdstrike-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe6837794FBC6DD024733A1A31F86061296FA2752/logo.png b/blockchains/smartchain/assets/0xe6837794FBC6DD024733A1A31F86061296FA2752/logo.png new file mode 100644 index 0000000000000..29bfd0c5324dc Binary files /dev/null and b/blockchains/smartchain/assets/0xe6837794FBC6DD024733A1A31F86061296FA2752/logo.png differ diff --git a/blockchains/smartchain/assets/0xe6DF05CE8C8301223373CF5B969AFCb1498c5528/info.json b/blockchains/smartchain/assets/0xe6DF05CE8C8301223373CF5B969AFCb1498c5528/info.json new file mode 100644 index 0000000000000..d44d81e7f4e3f --- /dev/null +++ b/blockchains/smartchain/assets/0xe6DF05CE8C8301223373CF5B969AFCb1498c5528/info.json @@ -0,0 +1,29 @@ +{ + "name": "BNB48 Club Token", + "type": "BEP20", + "symbol": "KOGE", + "decimals": 18, + "description": "48 Club® was founded in Sept. 2017 by a diverse and tight-knit group of investors with a common passion for BNB. We now have over 500 club members with various backgrounds hailing from all over the world. 48 Club® is run as a decentralized autonomous organization (DAO) and its main areas of operations and expertise are industry research, angel investment, product development, community development and management, and technical operations and maintenance.", + "website": "https://www.48.club/", + "explorer": "https://bscscan.com/token/0xe6df05ce8c8301223373cf5b969afcb1498c5528", + "id": "0xe6DF05CE8C8301223373CF5B969AFCb1498c5528", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/48Club_Official" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bnb48-club-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/koge" + } + ], + "tags": [ + "governance" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe6DF05CE8C8301223373CF5B969AFCb1498c5528/logo.png b/blockchains/smartchain/assets/0xe6DF05CE8C8301223373CF5B969AFCb1498c5528/logo.png new file mode 100644 index 0000000000000..6f765581e0044 Binary files /dev/null and b/blockchains/smartchain/assets/0xe6DF05CE8C8301223373CF5B969AFCb1498c5528/logo.png differ diff --git a/blockchains/smartchain/assets/0xe6E5cD70FCBF1B05bcda930306C25B3f67c74444/info.json b/blockchains/smartchain/assets/0xe6E5cD70FCBF1B05bcda930306C25B3f67c74444/info.json new file mode 100644 index 0000000000000..1913aaa816a95 --- /dev/null +++ b/blockchains/smartchain/assets/0xe6E5cD70FCBF1B05bcda930306C25B3f67c74444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDKG", + "type": "BEP20", + "symbol": "FAKE USDKG", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xe6E5cD70FCBF1B05bcda930306C25B3f67c74444", + "explorer": "https://bscscan.com/token/0xe6E5cD70FCBF1B05bcda930306C25B3f67c74444", + "status": "spam", + "id": "0xe6E5cD70FCBF1B05bcda930306C25B3f67c74444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe6E6A022b4d4e538Ca0a1f47941CbBF3F9cc1467/info.json b/blockchains/smartchain/assets/0xe6E6A022b4d4e538Ca0a1f47941CbBF3F9cc1467/info.json index e00ba4b2b7dcf..d309284f388be 100644 --- a/blockchains/smartchain/assets/0xe6E6A022b4d4e538Ca0a1f47941CbBF3F9cc1467/info.json +++ b/blockchains/smartchain/assets/0xe6E6A022b4d4e538Ca0a1f47941CbBF3F9cc1467/info.json @@ -10,8 +10,8 @@ "id": "0xe6E6A022b4d4e538Ca0a1f47941CbBF3F9cc1467", "links": [ { - "name": "twitter", - "url": "https://twitter.com/NUTSGamingBSC" + "name": "x", + "url": "https://x.com/NUTSGamingBSC" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xe6ad583f6b4Dd429889F2307CbB80D53BC684444/info.json b/blockchains/smartchain/assets/0xe6ad583f6b4Dd429889F2307CbB80D53BC684444/info.json new file mode 100644 index 0000000000000..fdb528b6664a1 --- /dev/null +++ b/blockchains/smartchain/assets/0xe6ad583f6b4Dd429889F2307CbB80D53BC684444/info.json @@ -0,0 +1,11 @@ +{ + "name": "SPAM KLIP", + "type": "BEP20", + "symbol": "SPAM KLIP", + "decimals": 18, + "website": "https://bscscan.com/address/0xe6ad583f6b4dd429889f2307cbb80d53bc684444", + "description": "SPAM KLIP", + "explorer": "https://bscscan.com/token/0xe6ad583f6b4Dd429889F2307CbB80D53BC684444", + "status": "spam", + "id": "0xe6ad583f6b4Dd429889F2307CbB80D53BC684444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe702c303173f90094ce8c9c6CA3f198eCA0E027C/info.json b/blockchains/smartchain/assets/0xe702c303173f90094ce8c9c6CA3f198eCA0E027C/info.json index 00fa38572c7c7..864a61e00f4db 100644 --- a/blockchains/smartchain/assets/0xe702c303173f90094ce8c9c6CA3f198eCA0E027C/info.json +++ b/blockchains/smartchain/assets/0xe702c303173f90094ce8c9c6CA3f198eCA0E027C/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/LonelyFans/LonelyFans/" }, { - "name": "twitter", - "url": "https://twitter.com/LOFcrypto" + "name": "x", + "url": "https://x.com/LOFcrypto" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xe73c081cB82f1e8486f18a833D547a33F28B1A45/info.json b/blockchains/smartchain/assets/0xe73c081cB82f1e8486f18a833D547a33F28B1A45/info.json index 93b8304bb01f7..bb4f4d3fbfc78 100644 --- a/blockchains/smartchain/assets/0xe73c081cB82f1e8486f18a833D547a33F28B1A45/info.json +++ b/blockchains/smartchain/assets/0xe73c081cB82f1e8486f18a833D547a33F28B1A45/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/Jump_CN" }, { - "name": "twitter", - "url": "https://twitter.com/HappyTreasure__" + "name": "x", + "url": "https://x.com/HappyTreasure__" } ], "tags": [ @@ -23,4 +23,4 @@ "nft", "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe75BF67Df2388183d9b7714231996C937d4a855A/info.json b/blockchains/smartchain/assets/0xe75BF67Df2388183d9b7714231996C937d4a855A/info.json index 16cac3c2af49c..11c82734c58a8 100644 --- a/blockchains/smartchain/assets/0xe75BF67Df2388183d9b7714231996C937d4a855A/info.json +++ b/blockchains/smartchain/assets/0xe75BF67Df2388183d9b7714231996C937d4a855A/info.json @@ -10,8 +10,8 @@ "id": "0xe75BF67Df2388183d9b7714231996C937d4a855A", "links": [ { - "name": "twitter", - "url": "https://twitter.com/project_aeterna" + "name": "x", + "url": "https://x.com/project_aeterna" }, { "name": "telegram", @@ -29,4 +29,4 @@ "tags": [ "defi" ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe778A2e5D953c82EB9475cf3B87654226a867344/info.json b/blockchains/smartchain/assets/0xe778A2e5D953c82EB9475cf3B87654226a867344/info.json new file mode 100644 index 0000000000000..d844b3c4ba31a --- /dev/null +++ b/blockchains/smartchain/assets/0xe778A2e5D953c82EB9475cf3B87654226a867344/info.json @@ -0,0 +1,28 @@ +{ + "name": "Block (Ondo Tokenized)", + "type": "BEP20", + "symbol": "XYZon", + "decimals": 18, + "description": "XYZon is the Ondo Tokenized version of Block, giving tokenholders economic exposure similar to holding XYZ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xe778A2e5D953c82EB9475cf3B87654226a867344", + "status": "active", + "id": "0xe778A2e5D953c82EB9475cf3B87654226a867344", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/block-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/block-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe778A2e5D953c82EB9475cf3B87654226a867344/logo.png b/blockchains/smartchain/assets/0xe778A2e5D953c82EB9475cf3B87654226a867344/logo.png new file mode 100644 index 0000000000000..69f7bedf9b26d Binary files /dev/null and b/blockchains/smartchain/assets/0xe778A2e5D953c82EB9475cf3B87654226a867344/logo.png differ diff --git a/blockchains/smartchain/assets/0xe7BA3E4BE1fb144D9e097736a5CF93fC45c6d270/info.json b/blockchains/smartchain/assets/0xe7BA3E4BE1fb144D9e097736a5CF93fC45c6d270/info.json new file mode 100644 index 0000000000000..eec7041fc51ce --- /dev/null +++ b/blockchains/smartchain/assets/0xe7BA3E4BE1fb144D9e097736a5CF93fC45c6d270/info.json @@ -0,0 +1,14 @@ +{ + "name": "SheepCZ", + "type": "BEP20", + "symbol": "SheepCZ", + "decimals": 18, + "website": "https://four.meme/token/0xe7BA3E4BE1fb144D9e097736a5CF93fC45c6d270", + "description": "SheepCZ", + "explorer": "https://bscscan.com/token/0xe7BA3E4BE1fb144D9e097736a5CF93fC45c6d270", + "status": "active", + "id": "0xe7BA3E4BE1fb144D9e097736a5CF93fC45c6d270", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe7BA3E4BE1fb144D9e097736a5CF93fC45c6d270/logo.png b/blockchains/smartchain/assets/0xe7BA3E4BE1fb144D9e097736a5CF93fC45c6d270/logo.png new file mode 100644 index 0000000000000..53576b64431d0 Binary files /dev/null and b/blockchains/smartchain/assets/0xe7BA3E4BE1fb144D9e097736a5CF93fC45c6d270/logo.png differ diff --git a/blockchains/smartchain/assets/0xe7F72Bc0252cA7B16dBb72eEee1AfcDb2429F2DD/info.json b/blockchains/smartchain/assets/0xe7F72Bc0252cA7B16dBb72eEee1AfcDb2429F2DD/info.json index 19ea1803c39c9..3d94aca9ca4a2 100644 --- a/blockchains/smartchain/assets/0xe7F72Bc0252cA7B16dBb72eEee1AfcDb2429F2DD/info.json +++ b/blockchains/smartchain/assets/0xe7F72Bc0252cA7B16dBb72eEee1AfcDb2429F2DD/info.json @@ -10,8 +10,8 @@ "id": "0xe7F72Bc0252cA7B16dBb72eEee1AfcDb2429F2DD", "links": [ { - "name": "twitter", - "url": "https://twitter.com/NFT_LAUNCH" + "name": "x", + "url": "https://x.com/NFT_LAUNCH" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0xe81C6bB0266cd68B4F17278531Dd03eA1F12dA4E/info.json b/blockchains/smartchain/assets/0xe81C6bB0266cd68B4F17278531Dd03eA1F12dA4E/info.json new file mode 100644 index 0000000000000..8fb5bfc8a5ede --- /dev/null +++ b/blockchains/smartchain/assets/0xe81C6bB0266cd68B4F17278531Dd03eA1F12dA4E/info.json @@ -0,0 +1,20 @@ +{ + "name": "Cerebras Tokenized bStocks", + "type": "BEP20", + "symbol": "CBRSB", + "decimals": 18, + "description": "CBRSB is a tokenized bStocks that gives you economic exposure to Cerebras Tokenized bStocks, and the right to convert to the underlying security on the Binance.com platform subject to applicable laws. Each token is fully backed by the corresponding underlying equity maintained by the Issuer at a US-regulated broker-dealer. You get the price movements, dividends, and the right to convert the token at 1:1 to the underlying share — tradeable 24/7.", + "website": "https://www.bstocks.finance/en/", + "explorer": "https://bscscan.com/token/0xe81C6bB0266cd68B4F17278531Dd03eA1F12dA4E", + "status": "active", + "id": "0xe81C6bB0266cd68B4F17278531Dd03eA1F12dA4E", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cerebras-tokenized-bstocks/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe81C6bB0266cd68B4F17278531Dd03eA1F12dA4E/logo.png b/blockchains/smartchain/assets/0xe81C6bB0266cd68B4F17278531Dd03eA1F12dA4E/logo.png new file mode 100644 index 0000000000000..76b4d025c9233 Binary files /dev/null and b/blockchains/smartchain/assets/0xe81C6bB0266cd68B4F17278531Dd03eA1F12dA4E/logo.png differ diff --git a/blockchains/smartchain/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json b/blockchains/smartchain/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json new file mode 100644 index 0000000000000..ed727dbf2f380 --- /dev/null +++ b/blockchains/smartchain/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json @@ -0,0 +1,25 @@ +{ + "name": "Binance ABBC", + "type": "BEP20", + "symbol": "BABBC", + "decimals": 8, + "website": "https://abbcswap.com/", + "description": "ABBC Swap is a platform that allows users to seamlessly swap their ABBC from the ABBC mainnet using Aladdin Wallet and Aladdin Pro wallet apps into Polygon ABBC pegged.", + "explorer": "https://bscscan.com/token/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D", + "status": "active", + "id": "0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D", + "links": [ + { + "name": "telegram", + "url": "https://t.me/abbcfoundation" + }, + { + "name": "x", + "url": "https://x.com/abbcfoundation" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abbc-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png b/blockchains/smartchain/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png new file mode 100644 index 0000000000000..9259df4c30a91 Binary files /dev/null and b/blockchains/smartchain/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png differ diff --git a/blockchains/smartchain/assets/0xe858983508FA7E43Bc54b3AF00b376Ef9d76ccf3/info.json b/blockchains/smartchain/assets/0xe858983508FA7E43Bc54b3AF00b376Ef9d76ccf3/info.json new file mode 100644 index 0000000000000..5488374f690aa --- /dev/null +++ b/blockchains/smartchain/assets/0xe858983508FA7E43Bc54b3AF00b376Ef9d76ccf3/info.json @@ -0,0 +1,19 @@ +{ + "name": "Taucoin", + "type": "BEP20", + "symbol": "TAU", + "decimals": 18, + "description": "A random meme to verify the formula τ = 2π. First TAU on fourmeme.", + "website": "https://dexscreener.com/bsc/0xdbea6f4386f396d24d60ab8515aeae08fb52ace4", + "explorer": "https://bscscan.com/token/0xe858983508fa7e43bc54b3af00b376ef9d76ccf3", + "id": "0xe858983508FA7E43Bc54b3AF00b376Ef9d76ccf3", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/TAUonBSC" + } + + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe858983508FA7E43Bc54b3AF00b376Ef9d76ccf3/logo.png b/blockchains/smartchain/assets/0xe858983508FA7E43Bc54b3AF00b376Ef9d76ccf3/logo.png new file mode 100644 index 0000000000000..8174a9efa069d Binary files /dev/null and b/blockchains/smartchain/assets/0xe858983508FA7E43Bc54b3AF00b376Ef9d76ccf3/logo.png differ diff --git a/blockchains/smartchain/assets/0xe90d1567ecEF9282CC1AB348D9e9E2ac95659B99/info.json b/blockchains/smartchain/assets/0xe90d1567ecEF9282CC1AB348D9e9E2ac95659B99/info.json index 04f49a6598e29..44093919f86ce 100644 --- a/blockchains/smartchain/assets/0xe90d1567ecEF9282CC1AB348D9e9E2ac95659B99/info.json +++ b/blockchains/smartchain/assets/0xe90d1567ecEF9282CC1AB348D9e9E2ac95659B99/info.json @@ -14,8 +14,8 @@ "url": "https://coinxpad.io/whitepaper" }, { - "name": "twitter", - "url": "https://twitter.com/coinxpad" + "name": "x", + "url": "https://x.com/coinxpad" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xe92F7Fe3EAf61DF28b7B75f3FaAB199333c42302/info.json b/blockchains/smartchain/assets/0xe92F7Fe3EAf61DF28b7B75f3FaAB199333c42302/info.json new file mode 100644 index 0000000000000..7b086b77a9893 --- /dev/null +++ b/blockchains/smartchain/assets/0xe92F7Fe3EAf61DF28b7B75f3FaAB199333c42302/info.json @@ -0,0 +1,24 @@ +{ + "name": "Mame Inu", + "type": "BEP20", + "symbol": "MAME", + "decimals": 18, + "website": "https://mamebnb.com/", + "description": "Before fake hype and capsules took over, there was Dog Planet, home of real meme culture. When it fell, BabyDoge and FLOKI saved one survivor: Mame Inu, The Last Shiba. Now he has awakened in a world that forgot what memes were meant to be. Mission: Save Meme Culture", + "explorer": "https://bscscan.com/token/0xe92F7Fe3EAf61DF28b7B75f3FaAB199333c42302", + "status": "active", + "id": "0xe92F7Fe3EAf61DF28b7B75f3FaAB199333c42302", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mame-inu/" + }, + { + "name": "x", + "url": "https://x.com/mamebnb" + } + ], + "tags": [ + "memes" + ] +} diff --git a/blockchains/smartchain/assets/0xe92F7Fe3EAf61DF28b7B75f3FaAB199333c42302/logo.png b/blockchains/smartchain/assets/0xe92F7Fe3EAf61DF28b7B75f3FaAB199333c42302/logo.png new file mode 100644 index 0000000000000..1d375c6199e1a Binary files /dev/null and b/blockchains/smartchain/assets/0xe92F7Fe3EAf61DF28b7B75f3FaAB199333c42302/logo.png differ diff --git a/blockchains/smartchain/assets/0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F/info.json b/blockchains/smartchain/assets/0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F/info.json new file mode 100644 index 0000000000000..59df8d4222cb7 --- /dev/null +++ b/blockchains/smartchain/assets/0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F/info.json @@ -0,0 +1,24 @@ +{ + "name": "Alphabet tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Alphabet tokenized stock (xStock) (GOOGLX) is a cryptocurrency and operates on the Solana platform. Alphabet tokenized stock (xStock) has a current supply of 20,999.24547712. The last known price of Alphabet tokenized stock (xStock) is 254.51926743 USD and is up 4.55 over the last 24 hours. It is currently trading on 34 active market(s) with $4,238,360.30 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/alphabet-xstock.", + "explorer": "https://bscscan.com/token/0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F", + "type": "BEP20", + "symbol": "GOOGLX", + "decimals": 18, + "status": "active", + "id": "0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/alphabet-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F/logo.png b/blockchains/smartchain/assets/0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F/logo.png new file mode 100644 index 0000000000000..6d98541975eed Binary files /dev/null and b/blockchains/smartchain/assets/0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F/logo.png differ diff --git a/blockchains/smartchain/assets/0xe95ab205e333443D7970336D5fD827eF9eD97608/info.json b/blockchains/smartchain/assets/0xe95ab205e333443D7970336D5fD827eF9eD97608/info.json new file mode 100644 index 0000000000000..179f5f883420c --- /dev/null +++ b/blockchains/smartchain/assets/0xe95ab205e333443D7970336D5fD827eF9eD97608/info.json @@ -0,0 +1,15 @@ +{ + "name": "TON xStock", + "type": "BEP20", + "symbol": "TONXx", + "decimals": 18, + "description": "TON xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0xe95ab205e333443D7970336D5fD827eF9eD97608", + "status": "active", + "id": "0xe95ab205e333443D7970336D5fD827eF9eD97608", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe95ab205e333443D7970336D5fD827eF9eD97608/logo.png b/blockchains/smartchain/assets/0xe95ab205e333443D7970336D5fD827eF9eD97608/logo.png new file mode 100644 index 0000000000000..0c6d1b728e68f Binary files /dev/null and b/blockchains/smartchain/assets/0xe95ab205e333443D7970336D5fD827eF9eD97608/logo.png differ diff --git a/blockchains/smartchain/assets/0xe96F94e10F1265dcc15F83D251f1F6758d2CD67D/info.json b/blockchains/smartchain/assets/0xe96F94e10F1265dcc15F83D251f1F6758d2CD67D/info.json new file mode 100644 index 0000000000000..ccbcd36e74634 --- /dev/null +++ b/blockchains/smartchain/assets/0xe96F94e10F1265dcc15F83D251f1F6758d2CD67D/info.json @@ -0,0 +1,28 @@ +{ + "name": "First Trust Global Tactical Commodity Strategy Fund (Ondo Tokenized)", + "type": "BEP20", + "symbol": "FTGCon", + "decimals": 18, + "description": "FTGCon is the Ondo Tokenized version of the First Trust Global Tactical Commodity Strategy Fund, giving tokenholders economic exposure similar to holding FTGC and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xe96F94e10F1265dcc15F83D251f1F6758d2CD67D", + "status": "active", + "id": "0xe96F94e10F1265dcc15F83D251f1F6758d2CD67D", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/first-trust-global-tactical-commodity-strategy-fund-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/first-trust-global-commodity-tokenized-fund-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe96F94e10F1265dcc15F83D251f1F6758d2CD67D/logo.png b/blockchains/smartchain/assets/0xe96F94e10F1265dcc15F83D251f1F6758d2CD67D/logo.png new file mode 100644 index 0000000000000..2e8d3686761c8 Binary files /dev/null and b/blockchains/smartchain/assets/0xe96F94e10F1265dcc15F83D251f1F6758d2CD67D/logo.png differ diff --git a/blockchains/smartchain/assets/0xe9FA01197B7E836982a1cab03FE591F7e331E313/info.json b/blockchains/smartchain/assets/0xe9FA01197B7E836982a1cab03FE591F7e331E313/info.json new file mode 100644 index 0000000000000..bbfb5ccf3400b --- /dev/null +++ b/blockchains/smartchain/assets/0xe9FA01197B7E836982a1cab03FE591F7e331E313/info.json @@ -0,0 +1,20 @@ +{ + "name": "Applied Materials, Inc. xStock", + "type": "BEP20", + "symbol": "AMATx", + "decimals": 18, + "description": "Applied Materials, Inc. xStock (AMATx) is a tracker certificate issued as a freely transferable token on selected blockchains. AMATx tracks the price of Applied Materials, Inc.. AMATx is designed to give eligible investors regulatory-compliant access to the stock price of Applied Materials, Inc., whilst maintaining the benefits of blockchain technology.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0xe9FA01197B7E836982a1cab03FE591F7e331E313", + "status": "active", + "id": "0xe9FA01197B7E836982a1cab03FE591F7e331E313", + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe9FA01197B7E836982a1cab03FE591F7e331E313/logo.png b/blockchains/smartchain/assets/0xe9FA01197B7E836982a1cab03FE591F7e331E313/logo.png new file mode 100644 index 0000000000000..e036224457aaf Binary files /dev/null and b/blockchains/smartchain/assets/0xe9FA01197B7E836982a1cab03FE591F7e331E313/logo.png differ diff --git a/blockchains/smartchain/assets/0xe9c64384dEb0C2bF06D991A8D708c77eb545E3d5/info.json b/blockchains/smartchain/assets/0xe9c64384dEb0C2bF06D991A8D708c77eb545E3d5/info.json index 571a46413c819..ab15ab7480dbc 100644 --- a/blockchains/smartchain/assets/0xe9c64384dEb0C2bF06D991A8D708c77eb545E3d5/info.json +++ b/blockchains/smartchain/assets/0xe9c64384dEb0C2bF06D991A8D708c77eb545E3d5/info.json @@ -10,8 +10,8 @@ "id": "0xe9c64384dEb0C2bF06D991A8D708c77eb545E3d5", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ridotto_io" + "name": "x", + "url": "https://x.com/ridotto_io" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xe9d43f7E6b2237e8873a7003b3F43c6B03160bE5/info.json b/blockchains/smartchain/assets/0xe9d43f7E6b2237e8873a7003b3F43c6B03160bE5/info.json new file mode 100644 index 0000000000000..65e42e03dd6f6 --- /dev/null +++ b/blockchains/smartchain/assets/0xe9d43f7E6b2237e8873a7003b3F43c6B03160bE5/info.json @@ -0,0 +1,28 @@ +{ + "name": "NextEra Energy (Ondo Tokenized)", + "type": "BEP20", + "symbol": "NEEon", + "decimals": 18, + "description": "NEEon is the Ondo Tokenized version of NextEra Energy, giving tokenholders economic exposure similar to holding NEE and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xe9d43f7E6b2237e8873a7003b3F43c6B03160bE5", + "status": "active", + "id": "0xe9d43f7E6b2237e8873a7003b3F43c6B03160bE5", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/nextera-energy-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nextera-energy-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe9d43f7E6b2237e8873a7003b3F43c6B03160bE5/logo.png b/blockchains/smartchain/assets/0xe9d43f7E6b2237e8873a7003b3F43c6B03160bE5/logo.png new file mode 100644 index 0000000000000..99c8e900bc209 Binary files /dev/null and b/blockchains/smartchain/assets/0xe9d43f7E6b2237e8873a7003b3F43c6B03160bE5/logo.png differ diff --git a/blockchains/smartchain/assets/0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56/info.json b/blockchains/smartchain/assets/0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56/info.json index f6251dc232bf4..66966540a20bf 100644 --- a/blockchains/smartchain/assets/0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56/info.json +++ b/blockchains/smartchain/assets/0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56/info.json @@ -1,5 +1,5 @@ { - "name": "BNB pegged BUSD", + "name": "BUSD", "website": "https://paxos.com/busd", "description": "BNB pegged BUSD (BUSD BEP20) is a token issued by Binance on Smart Chain; its price is pegged to BUSD (BUSD ERC20) at a ratio of 1:1.", "explorer": "https://bscscan.com/token/0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56", @@ -18,8 +18,8 @@ "url": "https://github.com/binance-chain/" }, { - "name": "twitter", - "url": "https://twitter.com/binance_dex" + "name": "x", + "url": "https://x.com/binance_dex" }, { "name": "blog", diff --git a/blockchains/smartchain/assets/0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88/info.json b/blockchains/smartchain/assets/0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88/info.json new file mode 100644 index 0000000000000..43f951034c10a --- /dev/null +++ b/blockchains/smartchain/assets/0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88/info.json @@ -0,0 +1,24 @@ +{ + "name": "Marvell tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Marvell xStock (MRVLx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. MRVLx tracks the price of Marvell Technology, Inc. (the underlying). MRVLx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Marvell Technology, Inc., whilst maintaining the benefits of blockchain technology. Marvell Technology, Inc. is an American semiconductor company that designs and develops integrated circuits, primarily focused on data infrastructure.", + "explorer": "https://bscscan.com/token/0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88", + "type": "BEP20", + "symbol": "MRVLX", + "decimals": 18, + "status": "active", + "id": "0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/marvell-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88/logo.png b/blockchains/smartchain/assets/0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88/logo.png new file mode 100644 index 0000000000000..4ca5efce9f7b2 Binary files /dev/null and b/blockchains/smartchain/assets/0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88/logo.png differ diff --git a/blockchains/smartchain/assets/0xeAF7D8395CCE52DAef138d39a1CEfA51b97C15aE/info.json b/blockchains/smartchain/assets/0xeAF7D8395CCE52DAef138d39a1CEfA51b97C15aE/info.json index 084fbfb72fe13..e859fe82652f2 100644 --- a/blockchains/smartchain/assets/0xeAF7D8395CCE52DAef138d39a1CEfA51b97C15aE/info.json +++ b/blockchains/smartchain/assets/0xeAF7D8395CCE52DAef138d39a1CEfA51b97C15aE/info.json @@ -10,8 +10,8 @@ "id": "0xeAF7D8395CCE52DAef138d39a1CEfA51b97C15aE", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MyTeraBlock" + "name": "x", + "url": "https://x.com/MyTeraBlock" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xeB79c85c6d633AE81C97Be71E1691EE7Dc6E132D/info.json b/blockchains/smartchain/assets/0xeB79c85c6d633AE81C97Be71E1691EE7Dc6E132D/info.json new file mode 100644 index 0000000000000..d33cec4843141 --- /dev/null +++ b/blockchains/smartchain/assets/0xeB79c85c6d633AE81C97Be71E1691EE7Dc6E132D/info.json @@ -0,0 +1,17 @@ +{ + "name": "PIXER", + "type": "BEP20", + "symbol": "PXT", + "decimals": 18, + "website": "http://pixer.club/", + "description": "Pixer Eternity is S2E (Sports To Earn) that can make money through overall sports content from games to metaverses. Users can use NFT on the Pixer platform to acquire tokens based on calorie consumption, which can be used in games and exchanges.", + "explorer": "https://bscscan.com/token/0xeb79c85c6d633ae81c97be71e1691ee7dc6e132d", + "status": "active", + "id": "0xeB79c85c6d633AE81C97Be71E1691EE7Dc6E132D", + "links": [ + { + "name": "x", + "url": "https://x.com/PixerEternity" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xeB79c85c6d633AE81C97Be71E1691EE7Dc6E132D/logo.png b/blockchains/smartchain/assets/0xeB79c85c6d633AE81C97Be71E1691EE7Dc6E132D/logo.png new file mode 100644 index 0000000000000..e71903e1260e4 Binary files /dev/null and b/blockchains/smartchain/assets/0xeB79c85c6d633AE81C97Be71E1691EE7Dc6E132D/logo.png differ diff --git a/blockchains/smartchain/assets/0xeB84be66c8E71f07eA57Cf3b21626d7784F32A7F/info.json b/blockchains/smartchain/assets/0xeB84be66c8E71f07eA57Cf3b21626d7784F32A7F/info.json index 7e49e7e691cdd..7e13ef02dd991 100644 --- a/blockchains/smartchain/assets/0xeB84be66c8E71f07eA57Cf3b21626d7784F32A7F/info.json +++ b/blockchains/smartchain/assets/0xeB84be66c8E71f07eA57Cf3b21626d7784F32A7F/info.json @@ -10,8 +10,8 @@ "id": "0xeB84be66c8E71f07eA57Cf3b21626d7784F32A7F", "links": [ { - "name": "twitter", - "url": "https://twitter.com/omaxtoken" + "name": "x", + "url": "https://x.com/omaxtoken" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xeBB59CeBFb63f218db6B5094DC14AbF34d56D35D/info.json b/blockchains/smartchain/assets/0xeBB59CeBFb63f218db6B5094DC14AbF34d56D35D/info.json index f2defdd2c0347..a68e4049d68f0 100644 --- a/blockchains/smartchain/assets/0xeBB59CeBFb63f218db6B5094DC14AbF34d56D35D/info.json +++ b/blockchains/smartchain/assets/0xeBB59CeBFb63f218db6B5094DC14AbF34d56D35D/info.json @@ -15,8 +15,8 @@ "url": "https://github.com/Xpool-lab/xpo-token-v1" }, { - "name": "twitter", - "url": "https://twitter.com/Xpoolofficial" + "name": "x", + "url": "https://x.com/Xpoolofficial" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xeBBAefF6217d22E7744394061D874015709b8141/info.json b/blockchains/smartchain/assets/0xeBBAefF6217d22E7744394061D874015709b8141/info.json index 0d160ede06930..22f85b3456a73 100644 --- a/blockchains/smartchain/assets/0xeBBAefF6217d22E7744394061D874015709b8141/info.json +++ b/blockchains/smartchain/assets/0xeBBAefF6217d22E7744394061D874015709b8141/info.json @@ -10,8 +10,8 @@ "id": "0xeBBAefF6217d22E7744394061D874015709b8141", "links": [ { - "name": "twitter", - "url": "https://twitter.com/playWAM" + "name": "x", + "url": "https://x.com/playWAM" }, { "name": "telegram", @@ -37,4 +37,4 @@ "tags": [ "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xeBC76079Da0c245faE7225b58a57A54809b40618/info.json b/blockchains/smartchain/assets/0xeBC76079Da0c245faE7225b58a57A54809b40618/info.json index b42e86ef52d51..7035c534db19a 100644 --- a/blockchains/smartchain/assets/0xeBC76079Da0c245faE7225b58a57A54809b40618/info.json +++ b/blockchains/smartchain/assets/0xeBC76079Da0c245faE7225b58a57A54809b40618/info.json @@ -10,7 +10,7 @@ "id": "0xeBC76079Da0c245faE7225b58a57A54809b40618", "migrate": { "asset_id": "c20000714_t0xe580074A10360404AF3ABfe2d524D5806D993ea3", - "url": "https://twitter.com/bnbpay/status/1498267922992533505?s=21" + "url": "https://x.com/bnbpay/status/1498267922992533505?s=21" }, "links": [ { @@ -18,8 +18,8 @@ "url": "https://t.me/bnbpay" }, { - "name": "twitter", - "url": "https://twitter.com/bnbpay" + "name": "x", + "url": "https://x.com/bnbpay" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xeBD0070237a0713E8D94fEf1B728d3d993d290ef/info.json b/blockchains/smartchain/assets/0xeBD0070237a0713E8D94fEf1B728d3d993d290ef/info.json index 956eecc730e87..d77a1762a341f 100644 --- a/blockchains/smartchain/assets/0xeBD0070237a0713E8D94fEf1B728d3d993d290ef/info.json +++ b/blockchains/smartchain/assets/0xeBD0070237a0713E8D94fEf1B728d3d993d290ef/info.json @@ -11,8 +11,8 @@ "id": "0xeBD0070237a0713E8D94fEf1B728d3d993d290ef", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VenusProtocol" + "name": "x", + "url": "https://x.com/VenusProtocol" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xeCEB87cF00DCBf2D4E2880223743Ff087a995aD9/info.json b/blockchains/smartchain/assets/0xeCEB87cF00DCBf2D4E2880223743Ff087a995aD9/info.json index 8267fb8425f6f..32a57c0a46c69 100644 --- a/blockchains/smartchain/assets/0xeCEB87cF00DCBf2D4E2880223743Ff087a995aD9/info.json +++ b/blockchains/smartchain/assets/0xeCEB87cF00DCBf2D4E2880223743Ff087a995aD9/info.json @@ -10,8 +10,8 @@ "id": "0xeCEB87cF00DCBf2D4E2880223743Ff087a995aD9", "links": [ { - "name": "twitter", - "url": "https://twitter.com/numbersprotocol" + "name": "x", + "url": "https://x.com/numbersprotocol" }, { "name": "coinmarketcap", @@ -53,4 +53,4 @@ "tags": [ "binance-peg" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xeD00Fc7D48B57B81FE65D1cE71c0985e4CF442CB/info.json b/blockchains/smartchain/assets/0xeD00Fc7D48B57B81FE65D1cE71c0985e4CF442CB/info.json index 66305f608c22d..44823ccc010dd 100644 --- a/blockchains/smartchain/assets/0xeD00Fc7D48B57B81FE65D1cE71c0985e4CF442CB/info.json +++ b/blockchains/smartchain/assets/0xeD00Fc7D48B57B81FE65D1cE71c0985e4CF442CB/info.json @@ -10,8 +10,8 @@ "id": "0xeD00Fc7D48B57B81FE65D1cE71c0985e4CF442CB", "links": [ { - "name": "twitter", - "url": "https://twitter.com/chirpley" + "name": "x", + "url": "https://x.com/chirpley" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xeD279e7bfDCBb0513720901Dd522ebCCe6758888/info.json b/blockchains/smartchain/assets/0xeD279e7bfDCBb0513720901Dd522ebCCe6758888/info.json new file mode 100644 index 0000000000000..4ef2208533aad --- /dev/null +++ b/blockchains/smartchain/assets/0xeD279e7bfDCBb0513720901Dd522ebCCe6758888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Ε⁣thеrе⁤um", + "type": "BEP20", + "symbol": "FAKE ЕТΗ⁤", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xeD279e7bfDCBb0513720901Dd522ebCCe6758888", + "explorer": "https://bscscan.com/token/0xeD279e7bfDCBb0513720901Dd522ebCCe6758888", + "status": "spam", + "id": "0xeD279e7bfDCBb0513720901Dd522ebCCe6758888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xeD7ed82D5A0f1B363309223975f899E7BEd5Fea6/info.json b/blockchains/smartchain/assets/0xeD7ed82D5A0f1B363309223975f899E7BEd5Fea6/info.json index 7344ebfd01286..c20ac628d0018 100644 --- a/blockchains/smartchain/assets/0xeD7ed82D5A0f1B363309223975f899E7BEd5Fea6/info.json +++ b/blockchains/smartchain/assets/0xeD7ed82D5A0f1B363309223975f899E7BEd5Fea6/info.json @@ -10,8 +10,8 @@ "id": "0xeD7ed82D5A0f1B363309223975f899E7BEd5Fea6", "links": [ { - "name": "twitter", - "url": "https://twitter.com/BoxerInuFinance" + "name": "x", + "url": "https://x.com/BoxerInuFinance" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xeDCF71B2e2217064038AdCb54A3C3a5fC3488eF1/info.json b/blockchains/smartchain/assets/0xeDCF71B2e2217064038AdCb54A3C3a5fC3488eF1/info.json new file mode 100644 index 0000000000000..51f40244bc763 --- /dev/null +++ b/blockchains/smartchain/assets/0xeDCF71B2e2217064038AdCb54A3C3a5fC3488eF1/info.json @@ -0,0 +1,28 @@ +{ + "name": "SoundHound AI (Ondo Tokenized)", + "type": "BEP20", + "symbol": "SOUNon", + "decimals": 18, + "description": "SOUNon is the Ondo Tokenized version of SoundHound AI, giving tokenholders economic exposure similar to holding SOUN and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xeDCF71B2e2217064038AdCb54A3C3a5fC3488eF1", + "status": "active", + "id": "0xeDCF71B2e2217064038AdCb54A3C3a5fC3488eF1", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/soundhound-ai-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/soundhound-ai-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xeDCF71B2e2217064038AdCb54A3C3a5fC3488eF1/logo.png b/blockchains/smartchain/assets/0xeDCF71B2e2217064038AdCb54A3C3a5fC3488eF1/logo.png new file mode 100644 index 0000000000000..0ce518ad9482c Binary files /dev/null and b/blockchains/smartchain/assets/0xeDCF71B2e2217064038AdCb54A3C3a5fC3488eF1/logo.png differ diff --git a/blockchains/smartchain/assets/0xeDF3ce4Dd6725650a8e9398e5C6398D061Fa7955/info.json b/blockchains/smartchain/assets/0xeDF3ce4Dd6725650a8e9398e5C6398D061Fa7955/info.json index 7737248d08eb9..aa9169a81c506 100644 --- a/blockchains/smartchain/assets/0xeDF3ce4Dd6725650a8e9398e5C6398D061Fa7955/info.json +++ b/blockchains/smartchain/assets/0xeDF3ce4Dd6725650a8e9398e5C6398D061Fa7955/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/vempire-ddao/" }, { - "name": "twitter", - "url": "https://twitter.com/vEmpiredigital" + "name": "x", + "url": "https://x.com/vEmpiredigital" }, { "name": "telegram", @@ -41,4 +41,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xeDa21B525Ac789EaB1a08ef2404dd8505FfB973D/info.json b/blockchains/smartchain/assets/0xeDa21B525Ac789EaB1a08ef2404dd8505FfB973D/info.json index 80b1693c57a8a..195c335f6cb57 100644 --- a/blockchains/smartchain/assets/0xeDa21B525Ac789EaB1a08ef2404dd8505FfB973D/info.json +++ b/blockchains/smartchain/assets/0xeDa21B525Ac789EaB1a08ef2404dd8505FfB973D/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/BHCHappiness/" }, { - "name": "twitter", - "url": "https://twitter.com/BHC_Happiness" + "name": "x", + "url": "https://x.com/BHC_Happiness" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0xeE7E8C85956D32C64bafDcdED3F43b3c39b1CE2f/info.json b/blockchains/smartchain/assets/0xeE7E8C85956D32C64bafDcdED3F43b3c39b1CE2f/info.json index 622dd29483521..7ae0cf82249e0 100644 --- a/blockchains/smartchain/assets/0xeE7E8C85956D32C64bafDcdED3F43b3c39b1CE2f/info.json +++ b/blockchains/smartchain/assets/0xeE7E8C85956D32C64bafDcdED3F43b3c39b1CE2f/info.json @@ -10,8 +10,8 @@ "id": "0xeE7E8C85956D32C64bafDcdED3F43b3c39b1CE2f", "links": [ { - "name": "twitter", - "url": "https://twitter.com/web4ai" + "name": "x", + "url": "https://x.com/web4ai" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xeE9cf3c78EAC6dD85E3abbC14616042e107E4444/info.json b/blockchains/smartchain/assets/0xeE9cf3c78EAC6dD85E3abbC14616042e107E4444/info.json new file mode 100644 index 0000000000000..cdddf63847ab8 --- /dev/null +++ b/blockchains/smartchain/assets/0xeE9cf3c78EAC6dD85E3abbC14616042e107E4444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Digital Euro", + "type": "BEP20", + "symbol": "FAKE EURC", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xeE9cf3c78EAC6dD85E3abbC14616042e107E4444", + "explorer": "https://bscscan.com/token/0xeE9cf3c78EAC6dD85E3abbC14616042e107E4444", + "status": "spam", + "id": "0xeE9cf3c78EAC6dD85E3abbC14616042e107E4444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xeEe9eeE593cB8f7946260B4066CBa7907f40ACFa/info.json b/blockchains/smartchain/assets/0xeEe9eeE593cB8f7946260B4066CBa7907f40ACFa/info.json new file mode 100644 index 0000000000000..c8e3f3d2fe945 --- /dev/null +++ b/blockchains/smartchain/assets/0xeEe9eeE593cB8f7946260B4066CBa7907f40ACFa/info.json @@ -0,0 +1,24 @@ +{ + "name": "Disney (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "DISon is the Ondo Tokenized version of Disney, giving tokenholders economic exposure similar to holding DIS and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xeee9eee593cb8f7946260b4066cba7907f40acfa", + "type": "BEP20", + "symbol": "DISon", + "decimals": 18, + "status": "active", + "id": "0xeEe9eeE593cB8f7946260B4066CBa7907f40ACFa", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/disney-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xeEe9eeE593cB8f7946260B4066CBa7907f40ACFa/logo.png b/blockchains/smartchain/assets/0xeEe9eeE593cB8f7946260B4066CBa7907f40ACFa/logo.png new file mode 100644 index 0000000000000..99e55b45de95b Binary files /dev/null and b/blockchains/smartchain/assets/0xeEe9eeE593cB8f7946260B4066CBa7907f40ACFa/logo.png differ diff --git a/blockchains/smartchain/assets/0xea17Df5Cf6D172224892B5477A16ACb111182478/info.json b/blockchains/smartchain/assets/0xea17Df5Cf6D172224892B5477A16ACb111182478/info.json new file mode 100644 index 0000000000000..fa1d7bce58027 --- /dev/null +++ b/blockchains/smartchain/assets/0xea17Df5Cf6D172224892B5477A16ACb111182478/info.json @@ -0,0 +1,58 @@ +{ + "name": "elizaOS", + "symbol": "elizaOS", + "type": "BEP20", + "decimals": 9, + "description": "-", + "website": "https://elizaos.ai/", + "explorer": "https://bscscan.com/token/0xea17Df5Cf6D172224892B5477A16ACb111182478", + "status": "active", + "id": "0xea17Df5Cf6D172224892B5477A16ACb111182478", + "links": [ + { + "name": "github", + "url": "https://github.com/elizaos/" + }, + { + "name": "x", + "url": "https://x.com/elizaecofund" + }, + { + "name": "whitepaper", + "url": "https://arxiv.org/abs/2501.06781" + }, + { + "name": "telegram_news", + "url": "https://t.me/official_elizaos" + }, + { + "name": "blog", + "url": "https://paragraph.com/@elizaos" + }, + { + "name": "discord", + "url": "https://discord.com/invite/tgCCVF9vEa" + }, + { + "name": "youtube", + "url": "https://youtube.com/@elizaOSDeveloper" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elizaos" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/elizaos" + }, + { + "name": "docs", + "url": "https://docs.elizaos.ai/" + }, + { + "name": "source_code", + "url": "https://github.com/elizaos/eliza" + } + ], + "tags": ["gamefi"] +} diff --git a/blockchains/smartchain/assets/0xea17Df5Cf6D172224892B5477A16ACb111182478/logo.png b/blockchains/smartchain/assets/0xea17Df5Cf6D172224892B5477A16ACb111182478/logo.png new file mode 100644 index 0000000000000..446373cefbca2 Binary files /dev/null and b/blockchains/smartchain/assets/0xea17Df5Cf6D172224892B5477A16ACb111182478/logo.png differ diff --git a/blockchains/smartchain/assets/0xea40BA42EE2e35F36eb63770F23A96Ec47e14091/info.json b/blockchains/smartchain/assets/0xea40BA42EE2e35F36eb63770F23A96Ec47e14091/info.json new file mode 100644 index 0000000000000..4487516d12a54 --- /dev/null +++ b/blockchains/smartchain/assets/0xea40BA42EE2e35F36eb63770F23A96Ec47e14091/info.json @@ -0,0 +1,21 @@ +{ + "name": "Verb AI", + "symbol": "VERB", + "type": "BEP20", + "decimals": 18, + "description": "VerbAI: Redefining communication, one verb at a time.", + "website": "https://verbai.co/", + "explorer": "https://bscscan.com/token/0xea40ba42ee2e35f36eb63770f23a96ec47e14091", + "status": "active", + "id": "0xea40BA42EE2e35F36eb63770F23A96Ec47e14091", + "links": [ + { + "name": "x", + "url": "https://x.com/Verb__Ai" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/verb-ai" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xea40BA42EE2e35F36eb63770F23A96Ec47e14091/logo.png b/blockchains/smartchain/assets/0xea40BA42EE2e35F36eb63770F23A96Ec47e14091/logo.png new file mode 100644 index 0000000000000..4e2c21aebfaf2 Binary files /dev/null and b/blockchains/smartchain/assets/0xea40BA42EE2e35F36eb63770F23A96Ec47e14091/logo.png differ diff --git a/blockchains/smartchain/assets/0xeb19c13c54B1cD48AFc62F6503375e92D5f1e856/info.json b/blockchains/smartchain/assets/0xeb19c13c54B1cD48AFc62F6503375e92D5f1e856/info.json new file mode 100644 index 0000000000000..85984f301a4c9 --- /dev/null +++ b/blockchains/smartchain/assets/0xeb19c13c54B1cD48AFc62F6503375e92D5f1e856/info.json @@ -0,0 +1,24 @@ +{ + "name": "ServiceNow (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "NOWon is the Ondo Tokenized version of ServiceNow, giving tokenholders economic exposure similar to holding NOW and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xeb19c13c54b1cd48afc62f6503375e92d5f1e856", + "type": "BEP20", + "symbol": "NOWon", + "decimals": 18, + "status": "active", + "id": "0xeb19c13c54B1cD48AFc62F6503375e92D5f1e856", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/servicenow-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xeb19c13c54B1cD48AFc62F6503375e92D5f1e856/logo.png b/blockchains/smartchain/assets/0xeb19c13c54B1cD48AFc62F6503375e92D5f1e856/logo.png new file mode 100644 index 0000000000000..1ff72bcfdf22b Binary files /dev/null and b/blockchains/smartchain/assets/0xeb19c13c54B1cD48AFc62F6503375e92D5f1e856/logo.png differ diff --git a/blockchains/smartchain/assets/0xeb986DA994E4a118d5956b02d8b7c3C7CE373674/info.json b/blockchains/smartchain/assets/0xeb986DA994E4a118d5956b02d8b7c3C7CE373674/info.json index 1de82a214a90d..25ded06e101d3 100644 --- a/blockchains/smartchain/assets/0xeb986DA994E4a118d5956b02d8b7c3C7CE373674/info.json +++ b/blockchains/smartchain/assets/0xeb986DA994E4a118d5956b02d8b7c3C7CE373674/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/Gather_Network" + "name": "x", + "url": "https://x.com/Gather_Network" }, { "name": "reddit", @@ -29,4 +29,4 @@ "url": "https://gather.network/whitepaper.html" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xebe29695F8047C13d36e7a790ca8c1b239FfAD1C/info.json b/blockchains/smartchain/assets/0xebe29695F8047C13d36e7a790ca8c1b239FfAD1C/info.json new file mode 100644 index 0000000000000..260bd8dd69625 --- /dev/null +++ b/blockchains/smartchain/assets/0xebe29695F8047C13d36e7a790ca8c1b239FfAD1C/info.json @@ -0,0 +1,20 @@ +{ + "name": "Western Digital Tokenized bStocks", + "type": "BEP20", + "symbol": "WDCB", + "decimals": 18, + "description": "WDCB is a tokenized bStocks that gives you economic exposure to Western Digital Tokenized bStocks, and the right to convert to the underlying security on the Binance.com platform subject to applicable laws. Each token is fully backed by the corresponding underlying equity maintained by the Issuer at a US-regulated broker-dealer. You get the price movements, dividends, and the right to convert the token at 1:1 to the underlying share — tradeable 24/7.", + "website": "https://www.bstocks.finance/en/", + "explorer": "https://bscscan.com/token/0xebe29695F8047C13d36e7a790ca8c1b239FfAD1C", + "status": "active", + "id": "0xebe29695F8047C13d36e7a790ca8c1b239FfAD1C", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/western-digital-tokenized-bstocks/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xebe29695F8047C13d36e7a790ca8c1b239FfAD1C/logo.png b/blockchains/smartchain/assets/0xebe29695F8047C13d36e7a790ca8c1b239FfAD1C/logo.png new file mode 100644 index 0000000000000..2400801ad4891 Binary files /dev/null and b/blockchains/smartchain/assets/0xebe29695F8047C13d36e7a790ca8c1b239FfAD1C/logo.png differ diff --git a/blockchains/smartchain/assets/0xec15a508a187e8DDfe572A5423Faa82Bbdd65120/info.json b/blockchains/smartchain/assets/0xec15a508a187e8DDfe572A5423Faa82Bbdd65120/info.json index 5ce97189aec0b..25af4832ffc00 100644 --- a/blockchains/smartchain/assets/0xec15a508a187e8DDfe572A5423Faa82Bbdd65120/info.json +++ b/blockchains/smartchain/assets/0xec15a508a187e8DDfe572A5423Faa82Bbdd65120/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Babylons-io" }, { - "name": "twitter", - "url": "https://twitter.com/BabylonsNFT" + "name": "x", + "url": "https://x.com/BabylonsNFT" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xec6cA5A04B08e382d218De9Cb30C9d8176406D34/info.json b/blockchains/smartchain/assets/0xec6cA5A04B08e382d218De9Cb30C9d8176406D34/info.json index a9fe67bb1fe35..17425c9fe1b6d 100644 --- a/blockchains/smartchain/assets/0xec6cA5A04B08e382d218De9Cb30C9d8176406D34/info.json +++ b/blockchains/smartchain/assets/0xec6cA5A04B08e382d218De9Cb30C9d8176406D34/info.json @@ -18,8 +18,8 @@ "url": "https://coinmarketcap.com/currencies/cryptodrop/" }, { - "name": "twitter", - "url": "https://twitter.com/cryptodropgg" + "name": "x", + "url": "https://x.com/cryptodropgg" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xecA88125a5ADbe82614ffC12D0DB554E2e2867C8/info.json b/blockchains/smartchain/assets/0xecA88125a5ADbe82614ffC12D0DB554E2e2867C8/info.json index 62691460efe16..b95329c476cf1 100644 --- a/blockchains/smartchain/assets/0xecA88125a5ADbe82614ffC12D0DB554E2e2867C8/info.json +++ b/blockchains/smartchain/assets/0xecA88125a5ADbe82614ffC12D0DB554E2e2867C8/info.json @@ -11,8 +11,8 @@ "id": "0xecA88125a5ADbe82614ffC12D0DB554E2e2867C8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VenusProtocol" + "name": "x", + "url": "https://x.com/VenusProtocol" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xed74Bc5DC139356E08dE28143996F5eF6e4334a4/info.json b/blockchains/smartchain/assets/0xed74Bc5DC139356E08dE28143996F5eF6e4334a4/info.json index 2be1ebed17af9..fb9e233a2e623 100644 --- a/blockchains/smartchain/assets/0xed74Bc5DC139356E08dE28143996F5eF6e4334a4/info.json +++ b/blockchains/smartchain/assets/0xed74Bc5DC139356E08dE28143996F5eF6e4334a4/info.json @@ -10,8 +10,8 @@ "id": "0xed74Bc5DC139356E08dE28143996F5eF6e4334a4", "links": [ { - "name": "twitter", - "url": "https://twitter.com/shibaspooky" + "name": "x", + "url": "https://x.com/shibaspooky" }, { "name": "github", @@ -46,4 +46,4 @@ "url": "https://youtube.com/channel/UCaTAm3R9Orew15BAMD7w6xQ" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xee0d57462f20434030B8262204c00c0eA0399C41/info.json b/blockchains/smartchain/assets/0xee0d57462f20434030B8262204c00c0eA0399C41/info.json new file mode 100644 index 0000000000000..358322455797f --- /dev/null +++ b/blockchains/smartchain/assets/0xee0d57462f20434030B8262204c00c0eA0399C41/info.json @@ -0,0 +1,24 @@ +{ + "name": "Franklin Responsibly Sourced Gold ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "FGDLon", + "decimals": 18, + "description": "FGDLon is the Ondo Tokenized version of the Franklin Responsibly Sourced Gold ETF, giving tokenholders economic exposure similar to holding FGDL and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xee0d57462f20434030B8262204c00c0eA0399C41", + "status": "active", + "id": "0xee0d57462f20434030B8262204c00c0eA0399C41", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/franklin-responsibly-sourced-gold-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xee0d57462f20434030B8262204c00c0eA0399C41/logo.png b/blockchains/smartchain/assets/0xee0d57462f20434030B8262204c00c0eA0399C41/logo.png new file mode 100644 index 0000000000000..3537d0913db28 Binary files /dev/null and b/blockchains/smartchain/assets/0xee0d57462f20434030B8262204c00c0eA0399C41/logo.png differ diff --git a/blockchains/smartchain/assets/0xee1ae38BE4Ce0074C4A4A8DC821CC784778f378c/info.json b/blockchains/smartchain/assets/0xee1ae38BE4Ce0074C4A4A8DC821CC784778f378c/info.json index bf8dfd885c3ae..ac1650a559d94 100644 --- a/blockchains/smartchain/assets/0xee1ae38BE4Ce0074C4A4A8DC821CC784778f378c/info.json +++ b/blockchains/smartchain/assets/0xee1ae38BE4Ce0074C4A4A8DC821CC784778f378c/info.json @@ -10,8 +10,8 @@ "id": "0xee1ae38BE4Ce0074C4A4A8DC821CC784778f378c", "links": [ { - "name": "twitter", - "url": "https://twitter.com/vynkgroup" + "name": "x", + "url": "https://x.com/vynkgroup" }, { "name": "github", @@ -37,4 +37,4 @@ "tags": [ "staking" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xee268780473E7a0e47baC41547C6E01512555A16/info.json b/blockchains/smartchain/assets/0xee268780473E7a0e47baC41547C6E01512555A16/info.json new file mode 100644 index 0000000000000..a741377a14e35 --- /dev/null +++ b/blockchains/smartchain/assets/0xee268780473E7a0e47baC41547C6E01512555A16/info.json @@ -0,0 +1,24 @@ +{ + "name": "Nebius Group (Ondo Tokenized)", + "type": "BEP20", + "symbol": "NBISon", + "decimals": 18, + "description": "NBISon is the Ondo Tokenized version of Nebius Group, giving tokenholders economic exposure similar to holding NBIS and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xee268780473E7a0e47baC41547C6E01512555A16", + "status": "active", + "id": "0xee268780473E7a0e47baC41547C6E01512555A16", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/nebius-group-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xee268780473E7a0e47baC41547C6E01512555A16/logo.png b/blockchains/smartchain/assets/0xee268780473E7a0e47baC41547C6E01512555A16/logo.png new file mode 100644 index 0000000000000..c530871fade72 Binary files /dev/null and b/blockchains/smartchain/assets/0xee268780473E7a0e47baC41547C6E01512555A16/logo.png differ diff --git a/blockchains/smartchain/assets/0xee901a8a13e5B71dD35AD259D87e17a891D1f0F3/info.json b/blockchains/smartchain/assets/0xee901a8a13e5B71dD35AD259D87e17a891D1f0F3/info.json index ffae3747ebd99..b2ea8b09f5918 100644 --- a/blockchains/smartchain/assets/0xee901a8a13e5B71dD35AD259D87e17a891D1f0F3/info.json +++ b/blockchains/smartchain/assets/0xee901a8a13e5B71dD35AD259D87e17a891D1f0F3/info.json @@ -10,8 +10,8 @@ "id": "0xee901a8a13e5B71dD35AD259D87e17a891D1f0F3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/FlokiZap" + "name": "x", + "url": "https://x.com/FlokiZap" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xefc391A6E4a1c0775d845C4ced7bfcaA653e6A6e/info.json b/blockchains/smartchain/assets/0xefc391A6E4a1c0775d845C4ced7bfcaA653e6A6e/info.json new file mode 100644 index 0000000000000..5d9283f6adc2b --- /dev/null +++ b/blockchains/smartchain/assets/0xefc391A6E4a1c0775d845C4ced7bfcaA653e6A6e/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE U5DT", + "type": "BEP20", + "symbol": "FAKE U5DT", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xefc391A6E4a1c0775d845C4ced7bfcaA653e6A6e", + "explorer": "https://bscscan.com/token/0xefc391A6E4a1c0775d845C4ced7bfcaA653e6A6e", + "status": "spam", + "id": "0xefc391A6E4a1c0775d845C4ced7bfcaA653e6A6e" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf04FaB6Dda66261eaBfD65e92A6b81dDaF6a950a/info.json b/blockchains/smartchain/assets/0xf04FaB6Dda66261eaBfD65e92A6b81dDaF6a950a/info.json new file mode 100644 index 0000000000000..ad159bad6d56c --- /dev/null +++ b/blockchains/smartchain/assets/0xf04FaB6Dda66261eaBfD65e92A6b81dDaF6a950a/info.json @@ -0,0 +1,37 @@ +{ + "name": "jewelry", + "type": "BEP20", + "symbol": "JEWELRY", + "decimals": 18, + "website": "https://jewellery.game/", + "description": "Jewelry Token introduces a game marketplace ,allowing users to buy, sell, and trade jewelry just like in a real market—but with the thrill of a game!", + "explorer": "https://bscscan.com/token/0xf04FaB6Dda66261eaBfD65e92A6b81dDaF6a950a", + "status": "active", + "id": "0xf04FaB6Dda66261eaBfD65e92A6b81dDaF6a950a", + "links": [ + { + "name": "x", + "url": "https://x.com/jewelry_token" + }, + { + "name": "telegram", + "url": "https://t.me/jewelry_token" + }, + { + "name": "whitepaper", + "url": "https://jewellery.game/whitepaper-2/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jewelry-token/" + }, + { + "name": "github", + "url": "https://github.com/interfinetwork/project-delivery-data/blob/main/Jewelry/Jewelry_AuditReport_InterFi.pdf" + } + ], + "tags": [ + "gamefi", + "defi" + ] +} diff --git a/blockchains/smartchain/assets/0xf04FaB6Dda66261eaBfD65e92A6b81dDaF6a950a/logo.png b/blockchains/smartchain/assets/0xf04FaB6Dda66261eaBfD65e92A6b81dDaF6a950a/logo.png new file mode 100644 index 0000000000000..b17584aad5ae4 Binary files /dev/null and b/blockchains/smartchain/assets/0xf04FaB6Dda66261eaBfD65e92A6b81dDaF6a950a/logo.png differ diff --git a/blockchains/smartchain/assets/0xf061F47c436440E3e98EFaB66bfeb2F739d9caaC/info.json b/blockchains/smartchain/assets/0xf061F47c436440E3e98EFaB66bfeb2F739d9caaC/info.json new file mode 100644 index 0000000000000..568a932bd767a --- /dev/null +++ b/blockchains/smartchain/assets/0xf061F47c436440E3e98EFaB66bfeb2F739d9caaC/info.json @@ -0,0 +1,21 @@ +{ + "name": "Aximo AI", + "type": "BEP20", + "symbol": "Aximo", + "decimals": 18, + "description": "our AI-powered assistant for development and beyond First-ever blockchain AI working with cross-chain CEX & DEX trading agent", + "website": "https://aximo.dev/", + "explorer": "https://bscscan.com/token/0xf061f47c436440e3e98efab66bfeb2f739d9caac", + "id": "0xf061F47c436440E3e98EFaB66bfeb2F739d9caaC", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Aximo219677" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf061F47c436440E3e98EFaB66bfeb2F739d9caaC/logo.png b/blockchains/smartchain/assets/0xf061F47c436440E3e98EFaB66bfeb2F739d9caaC/logo.png new file mode 100644 index 0000000000000..f2aca3dbe6602 Binary files /dev/null and b/blockchains/smartchain/assets/0xf061F47c436440E3e98EFaB66bfeb2F739d9caaC/logo.png differ diff --git a/blockchains/smartchain/assets/0xf06419C638a1d809C024Aa693147dBDc42B60145/info.json b/blockchains/smartchain/assets/0xf06419C638a1d809C024Aa693147dBDc42B60145/info.json index 7b4fdaef8b4ff..fa6ec2f0b05f9 100644 --- a/blockchains/smartchain/assets/0xf06419C638a1d809C024Aa693147dBDc42B60145/info.json +++ b/blockchains/smartchain/assets/0xf06419C638a1d809C024Aa693147dBDc42B60145/info.json @@ -10,8 +10,8 @@ "id": "0xf06419C638a1d809C024Aa693147dBDc42B60145", "links": [ { - "name": "twitter", - "url": "https://twitter.com/bankerdoge" + "name": "x", + "url": "https://x.com/bankerdoge" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xf0C99B0288508D004F4aBeCa34d830CE7682977C/info.json b/blockchains/smartchain/assets/0xf0C99B0288508D004F4aBeCa34d830CE7682977C/info.json new file mode 100644 index 0000000000000..7bc16f21ef7e5 --- /dev/null +++ b/blockchains/smartchain/assets/0xf0C99B0288508D004F4aBeCa34d830CE7682977C/info.json @@ -0,0 +1,21 @@ +{ + "name": "GameStop Coin", + "symbol": "GME", + "type": "BEP20", + "decimals": 18, + "description": "Power to the GameStop, Stop Wall St.", + "website": "https://gamestopcoin.net/", + "explorer": "https://bscscan.com/token/0xf0C99B0288508D004F4aBeCa34d830CE7682977C", + "status": "spam", + "id": "0xf0C99B0288508D004F4aBeCa34d830CE7682977C", + "links": [ + { + "name": "x", + "url": "https://x.com/GameStopfun" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gamestopcoin-net/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf0Fcd737fcE18F95621CC7841EbE0eA6EFCCf77e/info.json b/blockchains/smartchain/assets/0xf0Fcd737fcE18F95621CC7841EbE0eA6EFCCf77e/info.json index 4b77599faf978..bc31b9b10765d 100644 --- a/blockchains/smartchain/assets/0xf0Fcd737fcE18F95621CC7841EbE0eA6EFCCf77e/info.json +++ b/blockchains/smartchain/assets/0xf0Fcd737fcE18F95621CC7841EbE0eA6EFCCf77e/info.json @@ -10,8 +10,8 @@ "id": "0xf0Fcd737fcE18F95621CC7841EbE0eA6EFCCf77e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/treedefi" + "name": "x", + "url": "https://x.com/treedefi" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xf117DFCB241c0003d5e2FC72F288755C17a46980/info.json b/blockchains/smartchain/assets/0xf117DFCB241c0003d5e2FC72F288755C17a46980/info.json new file mode 100644 index 0000000000000..87ec2dd11e916 --- /dev/null +++ b/blockchains/smartchain/assets/0xf117DFCB241c0003d5e2FC72F288755C17a46980/info.json @@ -0,0 +1,26 @@ +{ + "name": "Sixpack Token", + "type": "BEP20", + "symbol": "SIXP", + "decimals": 18, + "description": "SIXP is a Bitcoin-style token designed to power the fitness economy within the Sixpack Miner ecosystem, where your burned calories fuel its creation.", + "website": "https://sixpackminer.io/", + "explorer": "https://bscscan.com/token/0xf117dfcb241c0003d5e2fc72f288755c17a46980", + "id": "0xf117DFCB241c0003d5e2FC72F288755C17a46980", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/sixpackminer" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sixpack-miner/" + } + + ], + "tags": [ + "deflationary" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf117DFCB241c0003d5e2FC72F288755C17a46980/logo.png b/blockchains/smartchain/assets/0xf117DFCB241c0003d5e2FC72F288755C17a46980/logo.png new file mode 100644 index 0000000000000..5dd05b3fae500 Binary files /dev/null and b/blockchains/smartchain/assets/0xf117DFCB241c0003d5e2FC72F288755C17a46980/logo.png differ diff --git a/blockchains/smartchain/assets/0xf20f8a3c135dC048C36cb1c94E1f00CEEEa3Dd61/info.json b/blockchains/smartchain/assets/0xf20f8a3c135dC048C36cb1c94E1f00CEEEa3Dd61/info.json new file mode 100644 index 0000000000000..569c2a50369df --- /dev/null +++ b/blockchains/smartchain/assets/0xf20f8a3c135dC048C36cb1c94E1f00CEEEa3Dd61/info.json @@ -0,0 +1,14 @@ +{ + "name": "FiveSs", + "type": "BEP20", + "symbol": "FiveSs", + "decimals": 18, + "website": "https://bscscan.com/address/0xf20f8a3c135dc048c36cb1c94e1f00ceeea3dd61", + "description": "$FiveSs is the official meme coin created specifically for MEET48's first-ever virtual idol group, FiveSs! More than just a cryptocurrency, it's your gateway to participate in shaping the futures of Suki, Kimmy, Athena, Rachel, and Rinako. From designing their virtual personas to unlocking exclusive group activities and immersive fan interactions, you are the sculptor of their cyber identities!", + "explorer": "https://bscscan.com/token/0xf20f8a3c135dC048C36cb1c94E1f00CEEEa3Dd61", + "status": "active", + "id": "0xf20f8a3c135dC048C36cb1c94E1f00CEEEa3Dd61", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf20f8a3c135dC048C36cb1c94E1f00CEEEa3Dd61/logo.png b/blockchains/smartchain/assets/0xf20f8a3c135dC048C36cb1c94E1f00CEEEa3Dd61/logo.png new file mode 100644 index 0000000000000..5429f8d52ed3f Binary files /dev/null and b/blockchains/smartchain/assets/0xf20f8a3c135dC048C36cb1c94E1f00CEEEa3Dd61/logo.png differ diff --git a/blockchains/smartchain/assets/0xf21132A811Ad1A878E21Af60F64d4e690C9DaA42/info.json b/blockchains/smartchain/assets/0xf21132A811Ad1A878E21Af60F64d4e690C9DaA42/info.json new file mode 100644 index 0000000000000..126f2c4d83107 --- /dev/null +++ b/blockchains/smartchain/assets/0xf21132A811Ad1A878E21Af60F64d4e690C9DaA42/info.json @@ -0,0 +1,24 @@ +{ + "name": "Boeing (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "BAon is the Ondo Tokenized version of Boeing, giving tokenholders economic exposure similar to holding BA and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xf21132a811ad1a878e21af60f64d4e690c9daa42", + "type": "BEP20", + "symbol": "BAon", + "decimals": 18, + "status": "active", + "id": "0xf21132A811Ad1A878E21Af60F64d4e690C9DaA42", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/boeing-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf21132A811Ad1A878E21Af60F64d4e690C9DaA42/logo.png b/blockchains/smartchain/assets/0xf21132A811Ad1A878E21Af60F64d4e690C9DaA42/logo.png new file mode 100644 index 0000000000000..8a939bb2eecb0 Binary files /dev/null and b/blockchains/smartchain/assets/0xf21132A811Ad1A878E21Af60F64d4e690C9DaA42/logo.png differ diff --git a/blockchains/smartchain/assets/0xf26155237ff6c5a37aaa44F040d2f27199423ABA/info.json b/blockchains/smartchain/assets/0xf26155237ff6c5a37aaa44F040d2f27199423ABA/info.json new file mode 100644 index 0000000000000..9854820732735 --- /dev/null +++ b/blockchains/smartchain/assets/0xf26155237ff6c5a37aaa44F040d2f27199423ABA/info.json @@ -0,0 +1,14 @@ +{ + "name": "pochan coin", + "type": "BEP20", + "symbol": "pob", + "decimals": 18, + "website": "https://four.meme/token/0xf26155237ff6c5a37aaa44F040d2f27199423ABA", + "description": "A bankrupt crypto guy working part-time as a food delivery rider, here with a real-name livestream to launch the PoB.", + "explorer": "https://bscscan.com/token/0xf26155237ff6c5a37aaa44F040d2f27199423ABA", + "status": "active", + "id": "0xf26155237ff6c5a37aaa44F040d2f27199423ABA", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf26155237ff6c5a37aaa44F040d2f27199423ABA/logo.png b/blockchains/smartchain/assets/0xf26155237ff6c5a37aaa44F040d2f27199423ABA/logo.png new file mode 100644 index 0000000000000..e51fdfcfaf3b9 Binary files /dev/null and b/blockchains/smartchain/assets/0xf26155237ff6c5a37aaa44F040d2f27199423ABA/logo.png differ diff --git a/blockchains/smartchain/assets/0xf2673f49d2737f97d70995eD43D128E0B8E560c5/info.json b/blockchains/smartchain/assets/0xf2673f49d2737f97d70995eD43D128E0B8E560c5/info.json index 1e964be00bb86..5108e2c1a3224 100644 --- a/blockchains/smartchain/assets/0xf2673f49d2737f97d70995eD43D128E0B8E560c5/info.json +++ b/blockchains/smartchain/assets/0xf2673f49d2737f97d70995eD43D128E0B8E560c5/info.json @@ -10,8 +10,8 @@ "id": "0xf2673f49d2737f97d70995eD43D128E0B8E560c5", "links": [ { - "name": "twitter", - "url": "https://twitter.com/buffshibainu" + "name": "x", + "url": "https://x.com/buffshibainu" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xf275e1AC303a4C9D987a2c48b8E555A77FeC3F1C/info.json b/blockchains/smartchain/assets/0xf275e1AC303a4C9D987a2c48b8E555A77FeC3F1C/info.json index c7cc18e139dd5..aca2ddb187d8d 100644 --- a/blockchains/smartchain/assets/0xf275e1AC303a4C9D987a2c48b8E555A77FeC3F1C/info.json +++ b/blockchains/smartchain/assets/0xf275e1AC303a4C9D987a2c48b8E555A77FeC3F1C/info.json @@ -10,8 +10,8 @@ "id": "0xf275e1AC303a4C9D987a2c48b8E555A77FeC3F1C", "links": [ { - "name": "twitter", - "url": "https://twitter.com/DeepSpaceBSC" + "name": "x", + "url": "https://x.com/DeepSpaceBSC" }, { "name": "github", @@ -81,4 +81,4 @@ "deflationary", "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf2C24c47805f4f72d3919C8674bFDd401505794B/info.json b/blockchains/smartchain/assets/0xf2C24c47805f4f72d3919C8674bFDd401505794B/info.json new file mode 100644 index 0000000000000..3fb97da0ec8ea --- /dev/null +++ b/blockchains/smartchain/assets/0xf2C24c47805f4f72d3919C8674bFDd401505794B/info.json @@ -0,0 +1,28 @@ +{ + "name": "Vistra (Ondo Tokenized)", + "type": "BEP20", + "symbol": "VSTon", + "decimals": 18, + "description": "VSTon is the Ondo Tokenized version of Vistra, giving tokenholders economic exposure similar to holding VST and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xf2C24c47805f4f72d3919C8674bFDd401505794B", + "status": "active", + "id": "0xf2C24c47805f4f72d3919C8674bFDd401505794B", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vistra-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vistra-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf2C24c47805f4f72d3919C8674bFDd401505794B/logo.png b/blockchains/smartchain/assets/0xf2C24c47805f4f72d3919C8674bFDd401505794B/logo.png new file mode 100644 index 0000000000000..c9f474e3e0262 Binary files /dev/null and b/blockchains/smartchain/assets/0xf2C24c47805f4f72d3919C8674bFDd401505794B/logo.png differ diff --git a/blockchains/smartchain/assets/0xf2c88757f8d03634671208935974B60a2a28Bdb3/info.json b/blockchains/smartchain/assets/0xf2c88757f8d03634671208935974B60a2a28Bdb3/info.json new file mode 100644 index 0000000000000..a7cae144889b1 --- /dev/null +++ b/blockchains/smartchain/assets/0xf2c88757f8d03634671208935974B60a2a28Bdb3/info.json @@ -0,0 +1,30 @@ +{ + "name": "MyShell Token", + "type": "BEP20", + "symbol": "SHELL", + "decimals": 18, + "description": "MyShell is an AI consumer layer for everyone to build, share, and own AI agents. The team bridges AI and Blockchain through Agentic Frameworks, open-source models, and AI creator community. MyShell also provides users with AI-powered entertainment and utility while offering them shared ownership.", + "website": "https://myshell.ai/", + "explorer": "https://bscscan.com/token/0xf2c88757f8d03634671208935974b60a2a28bdb3", + "id": "0xf2c88757f8d03634671208935974B60a2a28Bdb3", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/myshell_ai" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/myshell/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/myshell" + } + + ], + "tags": [ + "gamefi" + ] +} + \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf2c88757f8d03634671208935974B60a2a28Bdb3/logo.png b/blockchains/smartchain/assets/0xf2c88757f8d03634671208935974B60a2a28Bdb3/logo.png new file mode 100644 index 0000000000000..51349b377173b Binary files /dev/null and b/blockchains/smartchain/assets/0xf2c88757f8d03634671208935974B60a2a28Bdb3/logo.png differ diff --git a/blockchains/smartchain/assets/0xf307910A4c7bbc79691fD374889b36d8531B08e3/info.json b/blockchains/smartchain/assets/0xf307910A4c7bbc79691fD374889b36d8531B08e3/info.json index daf458fefec09..9e6a8f00e5874 100644 --- a/blockchains/smartchain/assets/0xf307910A4c7bbc79691fD374889b36d8531B08e3/info.json +++ b/blockchains/smartchain/assets/0xf307910A4c7bbc79691fD374889b36d8531B08e3/info.json @@ -1,5 +1,5 @@ { - "name": "Ankr Token", + "name": "Ankr", "website": "https://ankr.com", "description": "Ankr is building an infrastructure platform and marketplace for Web3-stack deployment.", "explorer": "https://bscscan.com/token/0xf307910A4c7bbc79691fD374889b36d8531B08e3", @@ -15,8 +15,8 @@ "url": "https://medium.com/ankr-network" }, { - "name": "twitter", - "url": "https://twitter.com/ankr" + "name": "x", + "url": "https://x.com/ankr" }, { "name": "whitepaper", diff --git a/blockchains/smartchain/assets/0xf3630c7EED28514b4c14222bB86E31B53A5da101/info.json b/blockchains/smartchain/assets/0xf3630c7EED28514b4c14222bB86E31B53A5da101/info.json index 9de7ecc928f6f..7b137e9af5390 100644 --- a/blockchains/smartchain/assets/0xf3630c7EED28514b4c14222bB86E31B53A5da101/info.json +++ b/blockchains/smartchain/assets/0xf3630c7EED28514b4c14222bB86E31B53A5da101/info.json @@ -6,12 +6,12 @@ "website": "https://metanet.is/", "description": "MetaNet is a proprietary, hyper deflationary token on the Binance Smart Chain network. MetaNet is a platform in where content creators buy and sell NFTs.", "explorer": "https://bscscan.com/token/0xf3630c7EED28514b4c14222bB86E31B53A5da101", - "status": "active", + "status": "abandoned", "id": "0xf3630c7EED28514b4c14222bB86E31B53A5da101", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MetaNetflix" + "name": "x", + "url": "https://x.com/MetaNetflix" }, { "name": "telegram", @@ -25,4 +25,4 @@ "tags": [ "deflationary" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf3630c7EED28514b4c14222bB86E31B53A5da101/logo.png b/blockchains/smartchain/assets/0xf3630c7EED28514b4c14222bB86E31B53A5da101/logo.png deleted file mode 100644 index 423cec56efd88..0000000000000 Binary files a/blockchains/smartchain/assets/0xf3630c7EED28514b4c14222bB86E31B53A5da101/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xf3eDD4f14a018df4b6f02Bf1b2cF17A8120519A2/info.json b/blockchains/smartchain/assets/0xf3eDD4f14a018df4b6f02Bf1b2cF17A8120519A2/info.json index 6f4f2db034b01..117f35aa5ba3b 100644 --- a/blockchains/smartchain/assets/0xf3eDD4f14a018df4b6f02Bf1b2cF17A8120519A2/info.json +++ b/blockchains/smartchain/assets/0xf3eDD4f14a018df4b6f02Bf1b2cF17A8120519A2/info.json @@ -18,8 +18,8 @@ "url": "https://pandainu.medium.com/" }, { - "name": "twitter", - "url": "https://twitter.com/Pandainu21" + "name": "x", + "url": "https://x.com/Pandainu21" }, { "name": "facebook", diff --git a/blockchains/smartchain/assets/0xf45de5A6d02c4a6E050B90Add33ebf0A34D017e0/info.json b/blockchains/smartchain/assets/0xf45de5A6d02c4a6E050B90Add33ebf0A34D017e0/info.json index b98af6f878bc8..b67efdd4d5264 100644 --- a/blockchains/smartchain/assets/0xf45de5A6d02c4a6E050B90Add33ebf0A34D017e0/info.json +++ b/blockchains/smartchain/assets/0xf45de5A6d02c4a6E050B90Add33ebf0A34D017e0/info.json @@ -10,8 +10,8 @@ "id": "0xf45de5A6d02c4a6E050B90Add33ebf0A34D017e0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/web3_doge" + "name": "x", + "url": "https://x.com/web3_doge" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xf486ad071f3bEE968384D2E39e2D8aF0fCf6fd46/info.json b/blockchains/smartchain/assets/0xf486ad071f3bEE968384D2E39e2D8aF0fCf6fd46/info.json index 0e1c09655896d..12038db4fa29d 100644 --- a/blockchains/smartchain/assets/0xf486ad071f3bEE968384D2E39e2D8aF0fCf6fd46/info.json +++ b/blockchains/smartchain/assets/0xf486ad071f3bEE968384D2E39e2D8aF0fCf6fd46/info.json @@ -10,8 +10,8 @@ "id": "0xf486ad071f3bEE968384D2E39e2D8aF0fCf6fd46", "links": [ { - "name": "twitter", - "url": "https://twitter.com/veloprotocol" + "name": "x", + "url": "https://x.com/veloprotocol" }, { "name": "whitepaper", diff --git a/blockchains/smartchain/assets/0xf48f91df403976060cC05dBbf8A0901b09fdeFd4/info.json b/blockchains/smartchain/assets/0xf48f91df403976060cC05dBbf8A0901b09fdeFd4/info.json new file mode 100644 index 0000000000000..118937b2decd9 --- /dev/null +++ b/blockchains/smartchain/assets/0xf48f91df403976060cC05dBbf8A0901b09fdeFd4/info.json @@ -0,0 +1,36 @@ +{ + "name": "Minu", + "type": "BEP20", + "symbol": "MINU", + "decimals": 18, + "website": "https://www.minucoin.com/", + "description": "Minu is the first mining dog coin on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0xf48f91df403976060cC05dBbf8A0901b09fdeFd4", + "status": "active", + "id": "0xf48f91df403976060cC05dBbf8A0901b09fdeFd4", + "links": [ + { + "name": "x", + "url": "https://x.com/minu_coin" + }, + { + "name": "telegram", + "url": "https://t.me/minu_coin" + }, + { + "name": "whitepaper", + "url": "https://www.minucoin.com/whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/minu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/minu/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf48f91df403976060cC05dBbf8A0901b09fdeFd4/logo.png b/blockchains/smartchain/assets/0xf48f91df403976060cC05dBbf8A0901b09fdeFd4/logo.png new file mode 100644 index 0000000000000..ed28b4d857a9b Binary files /dev/null and b/blockchains/smartchain/assets/0xf48f91df403976060cC05dBbf8A0901b09fdeFd4/logo.png differ diff --git a/blockchains/smartchain/assets/0xf49046aAE76EAeb7ffd3EF116ce0f7CD0F52d93e/info.json b/blockchains/smartchain/assets/0xf49046aAE76EAeb7ffd3EF116ce0f7CD0F52d93e/info.json new file mode 100644 index 0000000000000..c09a6fcc0419b --- /dev/null +++ b/blockchains/smartchain/assets/0xf49046aAE76EAeb7ffd3EF116ce0f7CD0F52d93e/info.json @@ -0,0 +1,28 @@ +{ + "name": "MasTec (Ondo Tokenized)", + "type": "BEP20", + "symbol": "MTZon", + "decimals": 18, + "description": "MTZon is the Ondo Tokenized version of MasTec, giving tokenholders economic exposure similar to holding MTZ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xf49046aAE76EAeb7ffd3EF116ce0f7CD0F52d93e", + "status": "active", + "id": "0xf49046aAE76EAeb7ffd3EF116ce0f7CD0F52d93e", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mastec-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mastec-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf49046aAE76EAeb7ffd3EF116ce0f7CD0F52d93e/logo.png b/blockchains/smartchain/assets/0xf49046aAE76EAeb7ffd3EF116ce0f7CD0F52d93e/logo.png new file mode 100644 index 0000000000000..5d8e18111cb06 Binary files /dev/null and b/blockchains/smartchain/assets/0xf49046aAE76EAeb7ffd3EF116ce0f7CD0F52d93e/logo.png differ diff --git a/blockchains/smartchain/assets/0xf4BEa2c219Eb95C6745983B68185C7340c319D9E/info.json b/blockchains/smartchain/assets/0xf4BEa2c219Eb95C6745983B68185C7340c319D9E/info.json new file mode 100644 index 0000000000000..ad0fc22ccfa67 --- /dev/null +++ b/blockchains/smartchain/assets/0xf4BEa2c219Eb95C6745983B68185C7340c319D9E/info.json @@ -0,0 +1,40 @@ +{ + "name": "TFS Token", + "type": "BEP20", + "symbol": "TFS", + "decimals": 18, + "website": "https://tfstoken.com/", + "description": "TFS is an ERC-20/BEP-20 internal token of the Fairspin platform. It is a full-fledged tool that will suit both players and crypto investors willing to increase their profits.", + "explorer": "https://bscscan.com/token/0xf4BEa2c219Eb95C6745983B68185C7340c319D9E", + "status": "active", + "id": "0xf4BEa2c219Eb95C6745983B68185C7340c319D9E", + "links": [ + { + "name": "x", + "url": "https://x.com/tfsinfo" + }, + { + "name": "telegram", + "url": "https://t.me/tfstoken_channel" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tfs-token/" + }, + { + "name": "facebook", + "url": "https://facebook.com/TFStoken" + }, + { + "name": "discord", + "url": "https://discord.com/invite/fairspin" + }, + { + "name": "whitepaper", + "url": "https://tfstoken.com/storage/2021/12/White-Paper-Fairspin.pdf" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf4BEa2c219Eb95C6745983B68185C7340c319D9E/logo.png b/blockchains/smartchain/assets/0xf4BEa2c219Eb95C6745983B68185C7340c319D9E/logo.png new file mode 100644 index 0000000000000..3ba6533d7e0dd Binary files /dev/null and b/blockchains/smartchain/assets/0xf4BEa2c219Eb95C6745983B68185C7340c319D9E/logo.png differ diff --git a/blockchains/smartchain/assets/0xf4DB0960414D2e9a8838f6C10bf8F83452287777/info.json b/blockchains/smartchain/assets/0xf4DB0960414D2e9a8838f6C10bf8F83452287777/info.json new file mode 100644 index 0000000000000..6475c8cdfc3e9 --- /dev/null +++ b/blockchains/smartchain/assets/0xf4DB0960414D2e9a8838f6C10bf8F83452287777/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Teth℮r", + "type": "BEP20", + "symbol": "FAKE USDΤ", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xf4DB0960414D2e9a8838f6C10bf8F83452287777", + "explorer": "https://bscscan.com/token/0xf4DB0960414D2e9a8838f6C10bf8F83452287777", + "status": "spam", + "id": "0xf4DB0960414D2e9a8838f6C10bf8F83452287777" +} diff --git a/blockchains/smartchain/assets/0xf4fd75764A5C086fb12F822be2cA318b3a362DC3/info.json b/blockchains/smartchain/assets/0xf4fd75764A5C086fb12F822be2cA318b3a362DC3/info.json new file mode 100644 index 0000000000000..2741e4d69ff6b --- /dev/null +++ b/blockchains/smartchain/assets/0xf4fd75764A5C086fb12F822be2cA318b3a362DC3/info.json @@ -0,0 +1,28 @@ +{ + "name": "WisdomTree Floating Rate Treasury Fund (Ondo Tokenized)", + "type": "BEP20", + "symbol": "USFRon", + "decimals": 18, + "description": "USFRon is the Ondo Tokenized version of the WisdomTree Floating Rate Treasury Fund, giving tokenholders economic exposure similar to holding USFR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xf4fd75764A5C086fb12F822be2cA318b3a362DC3", + "status": "active", + "id": "0xf4fd75764A5C086fb12F822be2cA318b3a362DC3", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wisdomtree-floating-rate-treasury-fund-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wisdomtree-floating-rate-treasury-tokenized-fund-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf4fd75764A5C086fb12F822be2cA318b3a362DC3/logo.png b/blockchains/smartchain/assets/0xf4fd75764A5C086fb12F822be2cA318b3a362DC3/logo.png new file mode 100644 index 0000000000000..572a5a584d796 Binary files /dev/null and b/blockchains/smartchain/assets/0xf4fd75764A5C086fb12F822be2cA318b3a362DC3/logo.png differ diff --git a/blockchains/smartchain/assets/0xf508fCD89b8bd15579dc79A6827cB4686A3592c8/info.json b/blockchains/smartchain/assets/0xf508fCD89b8bd15579dc79A6827cB4686A3592c8/info.json index 86736f530604c..bb3beed47038b 100644 --- a/blockchains/smartchain/assets/0xf508fCD89b8bd15579dc79A6827cB4686A3592c8/info.json +++ b/blockchains/smartchain/assets/0xf508fCD89b8bd15579dc79A6827cB4686A3592c8/info.json @@ -11,8 +11,8 @@ "id": "0xf508fCD89b8bd15579dc79A6827cB4686A3592c8", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VenusProtocol" + "name": "x", + "url": "https://x.com/VenusProtocol" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xf5967B4A40be5d721F06a9e8165dD11F521f37Ea/info.json b/blockchains/smartchain/assets/0xf5967B4A40be5d721F06a9e8165dD11F521f37Ea/info.json new file mode 100644 index 0000000000000..c3f347bce2b6d --- /dev/null +++ b/blockchains/smartchain/assets/0xf5967B4A40be5d721F06a9e8165dD11F521f37Ea/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT Zether USD", + "type": "BEP20", + "symbol": "USD.Z", + "decimals": 18, + "website": "https://bscscan.com/token/0xf5967b4a40be5d721f06a9e8165dd11f521f37ea", + "description": "HONEYPOT Zether USD", + "explorer": "https://bscscan.com/token/0xf5967b4a40be5d721f06a9e8165dd11f521f37ea", + "status": "spam", + "id": "0xf5967B4A40be5d721F06a9e8165dD11F521f37Ea" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf5BDe7Eb378661F04C841B22bA057326B0370153/info.json b/blockchains/smartchain/assets/0xf5BDe7Eb378661F04C841B22bA057326B0370153/info.json new file mode 100644 index 0000000000000..8f8cb5eb771b8 --- /dev/null +++ b/blockchains/smartchain/assets/0xf5BDe7Eb378661F04C841B22bA057326B0370153/info.json @@ -0,0 +1,32 @@ +{ + "name": "Pink BNB", + "type": "BEP20", + "symbol": "PNB", + "decimals": 18, + "website": "https://pnb.world/", + "description": "The world first Ai analysis portal", + "explorer": "https://bscscan.com/token/0xf5bde7eb378661f04c841b22ba057326b0370153", + "status": "active", + "id": "0xf5BDe7Eb378661F04C841B22bA057326B0370153", + "links": [ + { + "name": "x", + "url": "https://x.com/pnbworld" + }, + { + "name": "telegram", + "url": "https://t.me/pinkbnb" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pink-bnb/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pink-bnb" + } + ], + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf5BDe7Eb378661F04C841B22bA057326B0370153/logo.png b/blockchains/smartchain/assets/0xf5BDe7Eb378661F04C841B22bA057326B0370153/logo.png new file mode 100644 index 0000000000000..a750e6c4fffb3 Binary files /dev/null and b/blockchains/smartchain/assets/0xf5BDe7Eb378661F04C841B22bA057326B0370153/logo.png differ diff --git a/blockchains/smartchain/assets/0xf5D8015D625be6F59b8073C8189BD51bA28792e1/info.json b/blockchains/smartchain/assets/0xf5D8015D625be6F59b8073C8189BD51bA28792e1/info.json new file mode 100644 index 0000000000000..cfcec79474dd7 --- /dev/null +++ b/blockchains/smartchain/assets/0xf5D8015D625be6F59b8073C8189BD51bA28792e1/info.json @@ -0,0 +1,11 @@ +{ + "name": "JulSwap", + "website": "https://julswap.com", + "description": "JulSwap DEX Commnuity Token", + "explorer": "https://bscscan.com/token/0xf5D8015D625be6F59b8073C8189BD51bA28792e1", + "type": "BEP20", + "symbol": "JulD", + "decimals": 18, + "status": "active", + "id": "0xf5D8015D625be6F59b8073C8189BD51bA28792e1" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5A41F637C3f7553dBa6dDC2D3cA92641096577ea/logo.png b/blockchains/smartchain/assets/0xf5D8015D625be6F59b8073C8189BD51bA28792e1/logo.png similarity index 100% rename from blockchains/smartchain/assets/0x5A41F637C3f7553dBa6dDC2D3cA92641096577ea/logo.png rename to blockchains/smartchain/assets/0xf5D8015D625be6F59b8073C8189BD51bA28792e1/logo.png diff --git a/blockchains/smartchain/assets/0xf67006f8d22edEbd1191f3E728ab9a90289e6C38/info.json b/blockchains/smartchain/assets/0xf67006f8d22edEbd1191f3E728ab9a90289e6C38/info.json index c14830c5cb99f..90c59f75df03a 100644 --- a/blockchains/smartchain/assets/0xf67006f8d22edEbd1191f3E728ab9a90289e6C38/info.json +++ b/blockchains/smartchain/assets/0xf67006f8d22edEbd1191f3E728ab9a90289e6C38/info.json @@ -10,8 +10,8 @@ "id": "0xf67006f8d22edEbd1191f3E728ab9a90289e6C38", "links": [ { - "name": "twitter", - "url": "https://twitter.com/LBD_se" + "name": "x", + "url": "https://x.com/LBD_se" }, { "name": "coinmarketcap", @@ -29,4 +29,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json b/blockchains/smartchain/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json new file mode 100644 index 0000000000000..e909118a3e3c6 --- /dev/null +++ b/blockchains/smartchain/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json @@ -0,0 +1,21 @@ +{ + "name": "Lorenzo stBTC", + "type": "BEP20", + "symbol": "stBTC", + "decimals": 18, + "website": "https://www.lorenzo-protocol.xyz/", + "description": "To be the premier Bitcoin platform for yield-bearing token issuance, trading, and settlement.", + "explorer": "https://bscscan.com/token/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3", + "status": "active", + "id": "0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3", + "links": [ + { + "name": "x", + "url": "https://x.com/LorenzoProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/lorenzoprotocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png b/blockchains/smartchain/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png new file mode 100644 index 0000000000000..d0c4e5f85eb2b Binary files /dev/null and b/blockchains/smartchain/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png differ diff --git a/blockchains/smartchain/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/info.json b/blockchains/smartchain/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/info.json index 7f969c2f4c46a..27ed1c672323c 100644 --- a/blockchains/smartchain/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/info.json +++ b/blockchains/smartchain/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/info.json @@ -10,15 +10,12 @@ "id": "0xf68D4d917592f3a62417aCE42592F15296cc33A0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/coinhubchb" + "name": "x", + "url": "https://x.com/coinhubchb" }, { "name": "github", "url": "https://github.com/https://github.com/trustwallet/assets/pull/22943#issuecomment-1304637991" } - ], - "tags": [ - "staking" ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf69e40069aC227C11459E3f4e8a446b3401616b6/info.json b/blockchains/smartchain/assets/0xf69e40069aC227C11459E3f4e8a446b3401616b6/info.json new file mode 100644 index 0000000000000..90543f7fc0d43 --- /dev/null +++ b/blockchains/smartchain/assets/0xf69e40069aC227C11459E3f4e8a446b3401616b6/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares 20+ Year Treasury Bond (Ondo)", + "website": "https://ondo.finance/", + "description": "TLTon is the Ondo Tokenized version of the iShares 20+ Year Treasury Bond ETF, giving tokenholders economic exposure similar to holding TLT and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xf69e40069ac227c11459e3f4e8a446b3401616b6", + "type": "BEP20", + "symbol": "TLTon", + "decimals": 18, + "status": "active", + "id": "0xf69e40069aC227C11459E3f4e8a446b3401616b6", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-20-year-treasury-bond-tokenized-etf-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf69e40069aC227C11459E3f4e8a446b3401616b6/logo.png b/blockchains/smartchain/assets/0xf69e40069aC227C11459E3f4e8a446b3401616b6/logo.png new file mode 100644 index 0000000000000..731ceba6a1840 Binary files /dev/null and b/blockchains/smartchain/assets/0xf69e40069aC227C11459E3f4e8a446b3401616b6/logo.png differ diff --git a/blockchains/smartchain/assets/0xf6a873BAe4Ba1B304e45dF52A4b7D176E1C6a8c4/info.json b/blockchains/smartchain/assets/0xf6a873BAe4Ba1B304e45dF52A4b7D176E1C6a8c4/info.json new file mode 100644 index 0000000000000..9147a4aebefd3 --- /dev/null +++ b/blockchains/smartchain/assets/0xf6a873BAe4Ba1B304e45dF52A4b7D176E1C6a8c4/info.json @@ -0,0 +1,15 @@ +{ + "name": "Micron Technology xStock", + "type": "BEP20", + "symbol": "MUx", + "decimals": 18, + "description": "Micron xStock (MUx) is a tracker certificate issued as a freely transferable token on selected blockchains. MUx tracks the price of Micron Technology, Inc.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0xf6a873BAe4Ba1B304e45dF52A4b7D176E1C6a8c4", + "status": "active", + "id": "0xf6a873BAe4Ba1B304e45dF52A4b7D176E1C6a8c4", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf6a873BAe4Ba1B304e45dF52A4b7D176E1C6a8c4/logo.png b/blockchains/smartchain/assets/0xf6a873BAe4Ba1B304e45dF52A4b7D176E1C6a8c4/logo.png new file mode 100644 index 0000000000000..8d1cff2a61566 Binary files /dev/null and b/blockchains/smartchain/assets/0xf6a873BAe4Ba1B304e45dF52A4b7D176E1C6a8c4/logo.png differ diff --git a/blockchains/smartchain/assets/0xf706585e7e8900bE0267bEE3B9A2F70835EC6628/info.json b/blockchains/smartchain/assets/0xf706585e7e8900bE0267bEE3B9A2F70835EC6628/info.json new file mode 100644 index 0000000000000..d90e68825cdeb --- /dev/null +++ b/blockchains/smartchain/assets/0xf706585e7e8900bE0267bEE3B9A2F70835EC6628/info.json @@ -0,0 +1,15 @@ +{ + "name": "PayPal xStock", + "type": "BEP20", + "symbol": "PYPLx", + "decimals": 18, + "description": "PayPal xStock (PYPLx) is a tracker certificate issued as a freely transferable token on selected blockchains. PYPLx tracks the price of PayPal Holdings, Inc.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0xf706585e7e8900bE0267bEE3B9A2F70835EC6628", + "status": "active", + "id": "0xf706585e7e8900bE0267bEE3B9A2F70835EC6628", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf706585e7e8900bE0267bEE3B9A2F70835EC6628/logo.png b/blockchains/smartchain/assets/0xf706585e7e8900bE0267bEE3B9A2F70835EC6628/logo.png new file mode 100644 index 0000000000000..4a9c4b742af1c Binary files /dev/null and b/blockchains/smartchain/assets/0xf706585e7e8900bE0267bEE3B9A2F70835EC6628/logo.png differ diff --git a/blockchains/smartchain/assets/0xf7722aA0714096f1FB5ef83e6041CEBB4d58a08e/info.json b/blockchains/smartchain/assets/0xf7722aA0714096f1FB5ef83e6041CEBB4d58a08e/info.json index 2fdd0de918946..b7470659bd81d 100644 --- a/blockchains/smartchain/assets/0xf7722aA0714096f1FB5ef83e6041CEBB4d58a08e/info.json +++ b/blockchains/smartchain/assets/0xf7722aA0714096f1FB5ef83e6041CEBB4d58a08e/info.json @@ -10,8 +10,8 @@ "id": "0xf7722aA0714096f1FB5ef83e6041CEBB4d58a08e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/RubyPlayNetwork" + "name": "x", + "url": "https://x.com/RubyPlayNetwork" }, { "name": "telegram", @@ -34,4 +34,4 @@ "staking", "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf7BF4507336AeA836ab5575eC1801d96c3059483/info.json b/blockchains/smartchain/assets/0xf7BF4507336AeA836ab5575eC1801d96c3059483/info.json index e6cb981f45362..7c290109987fe 100644 --- a/blockchains/smartchain/assets/0xf7BF4507336AeA836ab5575eC1801d96c3059483/info.json +++ b/blockchains/smartchain/assets/0xf7BF4507336AeA836ab5575eC1801d96c3059483/info.json @@ -10,8 +10,8 @@ "id": "0xf7BF4507336AeA836ab5575eC1801d96c3059483", "links": [ { - "name": "twitter", - "url": "https://twitter.com/FlokiSuper" + "name": "x", + "url": "https://x.com/FlokiSuper" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xf7DE7E8A6bd59ED41a4b5fe50278b3B7f31384dF/info.json b/blockchains/smartchain/assets/0xf7DE7E8A6bd59ED41a4b5fe50278b3B7f31384dF/info.json index 9fd8c062ab492..5a93b293bdfd2 100644 --- a/blockchains/smartchain/assets/0xf7DE7E8A6bd59ED41a4b5fe50278b3B7f31384dF/info.json +++ b/blockchains/smartchain/assets/0xf7DE7E8A6bd59ED41a4b5fe50278b3B7f31384dF/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/radiant-capital" }, { - "name": "twitter", - "url": "https://twitter.com/RDNTCapital" + "name": "x", + "url": "https://x.com/RDNTCapital" }, { "name": "discord", diff --git a/blockchains/smartchain/assets/0xf7F4fAC56f012dE7Dd6adFF54C761986B9E0655a/info.json b/blockchains/smartchain/assets/0xf7F4fAC56f012dE7Dd6adFF54C761986B9E0655a/info.json new file mode 100644 index 0000000000000..43a9f946498ab --- /dev/null +++ b/blockchains/smartchain/assets/0xf7F4fAC56f012dE7Dd6adFF54C761986B9E0655a/info.json @@ -0,0 +1,15 @@ +{ + "name": "Galaxy Digital xStock", + "type": "BEP20", + "symbol": "GLXYx", + "decimals": 18, + "description": "Galaxy Digital xStock (GLXYx) is a tracker certificate issued as a freely transferable token on selected blockchains. GLXYx tracks the price of Galaxy Digital.", + "website": "https://assets.backed.fi/products", + "explorer": "https://bscscan.com/token/0xf7F4fAC56f012dE7Dd6adFF54C761986B9E0655a", + "status": "active", + "id": "0xf7F4fAC56f012dE7Dd6adFF54C761986B9E0655a", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf7F4fAC56f012dE7Dd6adFF54C761986B9E0655a/logo.png b/blockchains/smartchain/assets/0xf7F4fAC56f012dE7Dd6adFF54C761986B9E0655a/logo.png new file mode 100644 index 0000000000000..d30d1c813f6a9 Binary files /dev/null and b/blockchains/smartchain/assets/0xf7F4fAC56f012dE7Dd6adFF54C761986B9E0655a/logo.png differ diff --git a/blockchains/smartchain/assets/0xf7cfAd488a2391Da5a3e5A2d1056412805ce8888/info.json b/blockchains/smartchain/assets/0xf7cfAd488a2391Da5a3e5A2d1056412805ce8888/info.json new file mode 100644 index 0000000000000..7c4839204326e --- /dev/null +++ b/blockchains/smartchain/assets/0xf7cfAd488a2391Da5a3e5A2d1056412805ce8888/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Τеthеr", + "type": "BEP20", + "symbol": "FAKE UЅⅮΤ", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xf7cfAd488a2391Da5a3e5A2d1056412805ce8888", + "explorer": "https://bscscan.com/token/0xf7cfAd488a2391Da5a3e5A2d1056412805ce8888", + "status": "spam", + "id": "0xf7cfAd488a2391Da5a3e5A2d1056412805ce8888" +} diff --git a/blockchains/smartchain/assets/0xf834673D496AEAcb5E99Dfbfc34f1bDCdf81D7Bd/info.json b/blockchains/smartchain/assets/0xf834673D496AEAcb5E99Dfbfc34f1bDCdf81D7Bd/info.json index 06100130a18b4..2cb88b4d235b6 100644 --- a/blockchains/smartchain/assets/0xf834673D496AEAcb5E99Dfbfc34f1bDCdf81D7Bd/info.json +++ b/blockchains/smartchain/assets/0xf834673D496AEAcb5E99Dfbfc34f1bDCdf81D7Bd/info.json @@ -10,8 +10,8 @@ "id": "0xf834673D496AEAcb5E99Dfbfc34f1bDCdf81D7Bd", "links": [ { - "name": "twitter", - "url": "https://twitter.com/AegisLaunchpad" + "name": "x", + "url": "https://x.com/AegisLaunchpad" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xf8589b526FdD65F7F301c605a6e04F0F1b4B3620/info.json b/blockchains/smartchain/assets/0xf8589b526FdD65F7F301c605a6e04F0F1b4B3620/info.json new file mode 100644 index 0000000000000..618f210857213 --- /dev/null +++ b/blockchains/smartchain/assets/0xf8589b526FdD65F7F301c605a6e04F0F1b4B3620/info.json @@ -0,0 +1,24 @@ +{ + "name": "Coinbase (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "COINon is the Ondo Tokenized version of Coinbase, giving tokenholders economic exposure similar to holding COIN and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xf8589b526fdd65f7f301c605a6e04f0f1b4b3620", + "type": "BEP20", + "symbol": "COINon", + "decimals": 18, + "status": "active", + "id": "0xf8589b526FdD65F7F301c605a6e04F0F1b4B3620", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coinbase-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf8589b526FdD65F7F301c605a6e04F0F1b4B3620/logo.png b/blockchains/smartchain/assets/0xf8589b526FdD65F7F301c605a6e04F0F1b4B3620/logo.png new file mode 100644 index 0000000000000..f73aeccf8ed07 Binary files /dev/null and b/blockchains/smartchain/assets/0xf8589b526FdD65F7F301c605a6e04F0F1b4B3620/logo.png differ diff --git a/blockchains/smartchain/assets/0xf859Bf77cBe8699013d6Dbc7C2b926Aaf307F830/info.json b/blockchains/smartchain/assets/0xf859Bf77cBe8699013d6Dbc7C2b926Aaf307F830/info.json index 8517ace603507..26e5deef873d5 100644 --- a/blockchains/smartchain/assets/0xf859Bf77cBe8699013d6Dbc7C2b926Aaf307F830/info.json +++ b/blockchains/smartchain/assets/0xf859Bf77cBe8699013d6Dbc7C2b926Aaf307F830/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/berrydata" }, { - "name": "twitter", - "url": "https://twitter.com/berry_data" + "name": "x", + "url": "https://x.com/berry_data" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8/info.json b/blockchains/smartchain/assets/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8/info.json new file mode 100644 index 0000000000000..e725ac9244565 --- /dev/null +++ b/blockchains/smartchain/assets/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8/info.json @@ -0,0 +1,24 @@ +{ + "name": "Intel tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Intel xStock (INTCx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. INTCx tracks the price of Intel Corporation (the underlying). INTCx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Intel Corporation, whilst maintaining the benefits of blockchain technology. Intel Corporation is a multinational technology company primarily focused on designing, manufacturing, and selling computer components like CPUs and related products. They are a major player in the semiconductor industry.", + "explorer": "https://bscscan.com/token/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8", + "type": "BEP20", + "symbol": "INTCX", + "decimals": 18, + "status": "active", + "id": "0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/intel-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8/logo.png b/blockchains/smartchain/assets/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8/logo.png new file mode 100644 index 0000000000000..c1902f7a0f2ba Binary files /dev/null and b/blockchains/smartchain/assets/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8/logo.png differ diff --git a/blockchains/smartchain/assets/0xf8C609daDA9256417b678B4045A5B5368ffb7704/info.json b/blockchains/smartchain/assets/0xf8C609daDA9256417b678B4045A5B5368ffb7704/info.json new file mode 100644 index 0000000000000..bcc7239b4e228 --- /dev/null +++ b/blockchains/smartchain/assets/0xf8C609daDA9256417b678B4045A5B5368ffb7704/info.json @@ -0,0 +1,14 @@ +{ + "name": "Allah yaghneek", + "type": "BEP20", + "symbol": "ALLAH", + "decimals": 18, + "website": "https://four.meme/token/0xf8C609daDA9256417b678B4045A5B5368ffb7704", + "description": "ALLAH", + "explorer": "https://bscscan.com/token/0xf8C609daDA9256417b678B4045A5B5368ffb7704", + "status": "active", + "id": "0xf8C609daDA9256417b678B4045A5B5368ffb7704", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf8C609daDA9256417b678B4045A5B5368ffb7704/logo.png b/blockchains/smartchain/assets/0xf8C609daDA9256417b678B4045A5B5368ffb7704/logo.png new file mode 100644 index 0000000000000..1b519efc8f2d3 Binary files /dev/null and b/blockchains/smartchain/assets/0xf8C609daDA9256417b678B4045A5B5368ffb7704/logo.png differ diff --git a/blockchains/smartchain/assets/0xf8F9efC0db77d8881500bb06FF5D6ABc3070E695/info.json b/blockchains/smartchain/assets/0xf8F9efC0db77d8881500bb06FF5D6ABc3070E695/info.json index aee8dc8c01be2..44fcf397de1e1 100644 --- a/blockchains/smartchain/assets/0xf8F9efC0db77d8881500bb06FF5D6ABc3070E695/info.json +++ b/blockchains/smartchain/assets/0xf8F9efC0db77d8881500bb06FF5D6ABc3070E695/info.json @@ -10,8 +10,8 @@ "id": "0xf8F9efC0db77d8881500bb06FF5D6ABc3070E695", "links": [ { - "name": "twitter", - "url": "https://twitter.com/synapseprotocol" + "name": "x", + "url": "https://x.com/synapseprotocol" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xf91d58b5aE142DAcC749f58A49FCBac340Cb0343/info.json b/blockchains/smartchain/assets/0xf91d58b5aE142DAcC749f58A49FCBac340Cb0343/info.json index b3c97641237a6..efcebfc635ca2 100644 --- a/blockchains/smartchain/assets/0xf91d58b5aE142DAcC749f58A49FCBac340Cb0343/info.json +++ b/blockchains/smartchain/assets/0xf91d58b5aE142DAcC749f58A49FCBac340Cb0343/info.json @@ -11,8 +11,8 @@ "id": "0xf91d58b5aE142DAcC749f58A49FCBac340Cb0343", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VenusProtocol" + "name": "x", + "url": "https://x.com/VenusProtocol" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xf95e50BE5Efc96117c28775F80C7Cdb41Ebc4888/info.json b/blockchains/smartchain/assets/0xf95e50BE5Efc96117c28775F80C7Cdb41Ebc4888/info.json new file mode 100644 index 0000000000000..b2b35b21de158 --- /dev/null +++ b/blockchains/smartchain/assets/0xf95e50BE5Efc96117c28775F80C7Cdb41Ebc4888/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares 1-3 Year Treasury Bond ETF (Ondo Tokenized)", + "type": "BEP20", + "symbol": "SHYon", + "decimals": 18, + "description": "SHYon is the Ondo Tokenized version of the iShares 1-3 Year Treasury Bond ETF, giving tokenholders economic exposure similar to holding SHY and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xf95e50BE5Efc96117c28775F80C7Cdb41Ebc4888", + "status": "active", + "id": "0xf95e50BE5Efc96117c28775F80C7Cdb41Ebc4888", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-1-3-year-treasury-bond-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf95e50BE5Efc96117c28775F80C7Cdb41Ebc4888/logo.png b/blockchains/smartchain/assets/0xf95e50BE5Efc96117c28775F80C7Cdb41Ebc4888/logo.png new file mode 100644 index 0000000000000..6c93239492673 Binary files /dev/null and b/blockchains/smartchain/assets/0xf95e50BE5Efc96117c28775F80C7Cdb41Ebc4888/logo.png differ diff --git a/blockchains/smartchain/assets/0xf9752A6E8A5E5f5e6EB3aB4e7d8492460fb319f0/info.json b/blockchains/smartchain/assets/0xf9752A6E8A5E5f5e6EB3aB4e7d8492460fb319f0/info.json index 3cbe9e29fc492..6bdcfb7a22f1b 100644 --- a/blockchains/smartchain/assets/0xf9752A6E8A5E5f5e6EB3aB4e7d8492460fb319f0/info.json +++ b/blockchains/smartchain/assets/0xf9752A6E8A5E5f5e6EB3aB4e7d8492460fb319f0/info.json @@ -10,8 +10,8 @@ "id": "0xf9752A6E8A5E5f5e6EB3aB4e7d8492460fb319f0", "links": [ { - "name": "twitter", - "url": "https://twitter.com/AresProtocolLab" + "name": "x", + "url": "https://x.com/AresProtocolLab" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xf99F8f3a95257d82006183bd524efa7aaCc9Ef7A/info.json b/blockchains/smartchain/assets/0xf99F8f3a95257d82006183bd524efa7aaCc9Ef7A/info.json new file mode 100644 index 0000000000000..77861832f80a8 --- /dev/null +++ b/blockchains/smartchain/assets/0xf99F8f3a95257d82006183bd524efa7aaCc9Ef7A/info.json @@ -0,0 +1,24 @@ +{ + "name": "PepsiCo (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "PEPon is the Ondo Tokenized version of PepsiCo, giving tokenholders economic exposure similar to holding PEP and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xf99f8f3a95257d82006183bd524efa7aacc9ef7a", + "type": "BEP20", + "symbol": "PEPon", + "decimals": 18, + "status": "active", + "id": "0xf99F8f3a95257d82006183bd524efa7aaCc9Ef7A", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pepsico-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf99F8f3a95257d82006183bd524efa7aaCc9Ef7A/logo.png b/blockchains/smartchain/assets/0xf99F8f3a95257d82006183bd524efa7aaCc9Ef7A/logo.png new file mode 100644 index 0000000000000..7ae0be2e7bbe7 Binary files /dev/null and b/blockchains/smartchain/assets/0xf99F8f3a95257d82006183bd524efa7aaCc9Ef7A/logo.png differ diff --git a/blockchains/smartchain/assets/0xf9A3FdA781c94942760860fc731c24301c83830A/info.json b/blockchains/smartchain/assets/0xf9A3FdA781c94942760860fc731c24301c83830A/info.json index 36ecfaf2202b7..c4e7b82a0fa36 100644 --- a/blockchains/smartchain/assets/0xf9A3FdA781c94942760860fc731c24301c83830A/info.json +++ b/blockchains/smartchain/assets/0xf9A3FdA781c94942760860fc731c24301c83830A/info.json @@ -1,11 +1,11 @@ { - "name": "PhilosoRaptor", + "name": "HONEYPOT PhilosoRaptor", "website": "https://raptr.finance", - "description": "A deflationnary token made for long term investors and helping to save the earth", + "description": "HONEYPOT PhilosoRaptor", "explorer": "https://bscscan.com/token/0xf9A3FdA781c94942760860fc731c24301c83830A", "type": "BEP20", - "symbol": "RAPTOR", + "symbol": "HONEYPOT RAPTOR", "decimals": 9, - "status": "active", + "status": "spam", "id": "0xf9A3FdA781c94942760860fc731c24301c83830A" -} \ No newline at end of file +} diff --git a/blockchains/smartchain/assets/0xf9CeC8d50f6c8ad3Fb6dcCEC577e05aA32B224FE/info.json b/blockchains/smartchain/assets/0xf9CeC8d50f6c8ad3Fb6dcCEC577e05aA32B224FE/info.json index f1583114751b0..0918d25d00274 100644 --- a/blockchains/smartchain/assets/0xf9CeC8d50f6c8ad3Fb6dcCEC577e05aA32B224FE/info.json +++ b/blockchains/smartchain/assets/0xf9CeC8d50f6c8ad3Fb6dcCEC577e05aA32B224FE/info.json @@ -14,11 +14,11 @@ "url": "https://coinmarketcap.com/currencies/chromia/" }, { - "name": "twitter", - "url": "https://twitter.com/teamchromia" + "name": "x", + "url": "https://x.com/teamchromia" } ], "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf9c27de474ccE832fAD75107853b78838888ac11/info.json b/blockchains/smartchain/assets/0xf9c27de474ccE832fAD75107853b78838888ac11/info.json index 29c993cf7d7fe..d6480e5f34b08 100644 --- a/blockchains/smartchain/assets/0xf9c27de474ccE832fAD75107853b78838888ac11/info.json +++ b/blockchains/smartchain/assets/0xf9c27de474ccE832fAD75107853b78838888ac11/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/apm-coin/" }, { - "name": "twitter", - "url": "https://twitter.com/apmcoin" + "name": "x", + "url": "https://x.com/apmcoin" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xfA9a1E901085e269f6D428F79Cd5252d8b919344/info.json b/blockchains/smartchain/assets/0xfA9a1E901085e269f6D428F79Cd5252d8b919344/info.json new file mode 100644 index 0000000000000..618a43080514d --- /dev/null +++ b/blockchains/smartchain/assets/0xfA9a1E901085e269f6D428F79Cd5252d8b919344/info.json @@ -0,0 +1,28 @@ +{ + "name": "SPDR Gold Shares (Ondo Tokenized)", + "type": "BEP20", + "symbol": "GLDon", + "decimals": 18, + "description": "GLDon is the Ondo Tokenized version of the SPDR Gold Shares, giving tokenholders economic exposure similar to holding GLD and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xfA9a1E901085e269f6D428F79Cd5252d8b919344", + "status": "active", + "id": "0xfA9a1E901085e269f6D428F79Cd5252d8b919344", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/spdr-gold-shares-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spdr-gold-shares-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfA9a1E901085e269f6D428F79Cd5252d8b919344/logo.png b/blockchains/smartchain/assets/0xfA9a1E901085e269f6D428F79Cd5252d8b919344/logo.png new file mode 100644 index 0000000000000..1153d70d28a0e Binary files /dev/null and b/blockchains/smartchain/assets/0xfA9a1E901085e269f6D428F79Cd5252d8b919344/logo.png differ diff --git a/blockchains/smartchain/assets/0xfB4D42BEd5618fb1a377DDB64EB56B92a6d117f2/info.json b/blockchains/smartchain/assets/0xfB4D42BEd5618fb1a377DDB64EB56B92a6d117f2/info.json index dc6b49bc5e093..fd033044f9c2f 100644 --- a/blockchains/smartchain/assets/0xfB4D42BEd5618fb1a377DDB64EB56B92a6d117f2/info.json +++ b/blockchains/smartchain/assets/0xfB4D42BEd5618fb1a377DDB64EB56B92a6d117f2/info.json @@ -10,8 +10,8 @@ "id": "0xfB4D42BEd5618fb1a377DDB64EB56B92a6d117f2", "links": [ { - "name": "twitter", - "url": "https://twitter.com/nokuofficial" + "name": "x", + "url": "https://x.com/nokuofficial" }, { "name": "github", @@ -42,4 +42,4 @@ "url": "https://coinmarketcap.com/currencies/noku/" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfBD4D681C92ead6Af0E49950c8B2e47EeAcbB2dB/info.json b/blockchains/smartchain/assets/0xfBD4D681C92ead6Af0E49950c8B2e47EeAcbB2dB/info.json new file mode 100644 index 0000000000000..7e7ba6e58615f --- /dev/null +++ b/blockchains/smartchain/assets/0xfBD4D681C92ead6Af0E49950c8B2e47EeAcbB2dB/info.json @@ -0,0 +1,24 @@ +{ + "name": "Qualcomm (Ondo Tokenized)", + "website": "https://ondo.finance/", + "description": "QCOMon is the Ondo Tokenized version of Qualcomm, giving tokenholders economic exposure similar to holding QCOM and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply. Learn more at ondo.finance/global-markets.", + "explorer": "https://bscscan.com/address/0xfbd4d681c92ead6af0e49950c8b2e47eeacbb2db", + "type": "BEP20", + "symbol": "QCOMon", + "decimals": 18, + "status": "active", + "id": "0xfBD4D681C92ead6Af0E49950c8B2e47EeAcbB2dB", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/qualcomm-tokenized-stock-ondo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfBD4D681C92ead6Af0E49950c8B2e47EeAcbB2dB/logo.png b/blockchains/smartchain/assets/0xfBD4D681C92ead6Af0E49950c8B2e47EeAcbB2dB/logo.png new file mode 100644 index 0000000000000..a5f2bede094de Binary files /dev/null and b/blockchains/smartchain/assets/0xfBD4D681C92ead6Af0E49950c8B2e47EeAcbB2dB/logo.png differ diff --git a/blockchains/smartchain/assets/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A/info.json b/blockchains/smartchain/assets/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A/info.json new file mode 100644 index 0000000000000..d865cfc4003ff --- /dev/null +++ b/blockchains/smartchain/assets/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A/info.json @@ -0,0 +1,24 @@ +{ + "name": "AbbVie tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "AbbVie xStock (ABBVx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. ABBVx tracks the price of AbbVie Inc. (the underlying). ABBVx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of AbbVie Inc., whilst maintaining the benefits of blockchain technology. AbbVie Inc. (ABBV) is a global biopharmaceutical company focused on developing and delivering innovative therapies in areas such as immunology, oncology, neuroscience, and eye care.", + "explorer": "https://bscscan.com/token/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A", + "type": "BEP20", + "symbol": "ABBVX", + "decimals": 18, + "status": "active", + "id": "0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abbvie-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A/logo.png b/blockchains/smartchain/assets/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A/logo.png new file mode 100644 index 0000000000000..ab73b87a6dd53 Binary files /dev/null and b/blockchains/smartchain/assets/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A/logo.png differ diff --git a/blockchains/smartchain/assets/0xfCaDD830fF2D6Cf3AD1681E1e8FC5DDCe9d59E74/info.json b/blockchains/smartchain/assets/0xfCaDD830fF2D6Cf3AD1681E1e8FC5DDCe9d59E74/info.json index e43a63658247d..4a065abaf2ada 100644 --- a/blockchains/smartchain/assets/0xfCaDD830fF2D6Cf3AD1681E1e8FC5DDCe9d59E74/info.json +++ b/blockchains/smartchain/assets/0xfCaDD830fF2D6Cf3AD1681E1e8FC5DDCe9d59E74/info.json @@ -10,8 +10,8 @@ "id": "0xfCaDD830fF2D6Cf3AD1681E1e8FC5DDCe9d59E74", "links": [ { - "name": "twitter", - "url": "https://twitter.com/zadabsc" + "name": "x", + "url": "https://x.com/zadabsc" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xfCe3EFebC79d21a6B7cc7F3A7216E66e81f4B23B/info.json b/blockchains/smartchain/assets/0xfCe3EFebC79d21a6B7cc7F3A7216E66e81f4B23B/info.json index 73124fc62f635..fa8ccd2220a09 100644 --- a/blockchains/smartchain/assets/0xfCe3EFebC79d21a6B7cc7F3A7216E66e81f4B23B/info.json +++ b/blockchains/smartchain/assets/0xfCe3EFebC79d21a6B7cc7F3A7216E66e81f4B23B/info.json @@ -13,12 +13,12 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/MetaWorld_Game" + "name": "x", + "url": "https://x.com/MetaWorld_Game" }, { "name": "telegram", "url": "https://t.me/MetaWorld_Game" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfD26889cd6454D8751562f1c0FcF88b18B46F7B7/info.json b/blockchains/smartchain/assets/0xfD26889cd6454D8751562f1c0FcF88b18B46F7B7/info.json index 0c06e449cd6a4..d48fb073fc381 100644 --- a/blockchains/smartchain/assets/0xfD26889cd6454D8751562f1c0FcF88b18B46F7B7/info.json +++ b/blockchains/smartchain/assets/0xfD26889cd6454D8751562f1c0FcF88b18B46F7B7/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/thugs-defi" }, { - "name": "twitter", - "url": "https://twitter.com/ThugsFinance" + "name": "x", + "url": "https://x.com/ThugsFinance" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xfD5840Cd36d94D7229439859C0112a4185BC0255/info.json b/blockchains/smartchain/assets/0xfD5840Cd36d94D7229439859C0112a4185BC0255/info.json index c9dac6896101f..257469fbc8dbd 100644 --- a/blockchains/smartchain/assets/0xfD5840Cd36d94D7229439859C0112a4185BC0255/info.json +++ b/blockchains/smartchain/assets/0xfD5840Cd36d94D7229439859C0112a4185BC0255/info.json @@ -11,8 +11,8 @@ "id": "0xfD5840Cd36d94D7229439859C0112a4185BC0255", "links": [ { - "name": "twitter", - "url": "https://twitter.com/VenusProtocol" + "name": "x", + "url": "https://x.com/VenusProtocol" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86/info.json b/blockchains/smartchain/assets/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86/info.json new file mode 100644 index 0000000000000..1a23a075271d0 --- /dev/null +++ b/blockchains/smartchain/assets/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86/info.json @@ -0,0 +1,24 @@ +{ + "name": "TQQQ tokenized ETF (xStock)", + "website": "https://assets.backed.fi/products", + "description": "TQQQ xStock (TQQQx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. TQQQx tracks the price of ProShares UltraPro QQQ (the underlying). TQQQx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the ETF price of ProShares UltraPro QQQ, whilst maintaining the benefits of blockchain technology. ProShares UltraPro QQQ (TQQQ) is a leveraged exchange-traded fund designed to deliver three times the daily performance of the Nasdaq-100 Index.", + "explorer": "https://bscscan.com/token/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86", + "type": "BEP20", + "symbol": "TQQQX", + "decimals": 18, + "status": "active", + "id": "0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tqqq-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86/logo.png b/blockchains/smartchain/assets/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86/logo.png new file mode 100644 index 0000000000000..38cc90156e20e Binary files /dev/null and b/blockchains/smartchain/assets/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86/logo.png differ diff --git a/blockchains/smartchain/assets/0xfDFD27aE39cebefDBaAc8615F18aa68DDD0F15f5/info.json b/blockchains/smartchain/assets/0xfDFD27aE39cebefDBaAc8615F18aa68DDD0F15f5/info.json index 742a980f650ff..305e3d1543b8a 100644 --- a/blockchains/smartchain/assets/0xfDFD27aE39cebefDBaAc8615F18aa68DDD0F15f5/info.json +++ b/blockchains/smartchain/assets/0xfDFD27aE39cebefDBaAc8615F18aa68DDD0F15f5/info.json @@ -10,8 +10,8 @@ "id": "0xfDFD27aE39cebefDBaAc8615F18aa68DDD0F15f5", "links": [ { - "name": "twitter", - "url": "https://twitter.com/giftedhandsGHD" + "name": "x", + "url": "https://x.com/giftedhandsGHD" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xfDfF7a8eDA6a3739132867f989bE4bf84E803c15/info.json b/blockchains/smartchain/assets/0xfDfF7a8eDA6a3739132867f989bE4bf84E803c15/info.json index 2d32c8e07c153..ee43caef18a7f 100644 --- a/blockchains/smartchain/assets/0xfDfF7a8eDA6a3739132867f989bE4bf84E803c15/info.json +++ b/blockchains/smartchain/assets/0xfDfF7a8eDA6a3739132867f989bE4bf84E803c15/info.json @@ -10,8 +10,8 @@ "id": "0xfDfF7a8eDA6a3739132867f989bE4bf84E803c15", "links": [ { - "name": "twitter", - "url": "https://twitter.com/new_year_token" + "name": "x", + "url": "https://x.com/new_year_token" }, { "name": "github", @@ -30,4 +30,4 @@ "url": "https://coingecko.com/coins/new-year-token" } ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfE19F0B51438fd612f6FD59C1dbB3eA319f433Ba/info.json b/blockchains/smartchain/assets/0xfE19F0B51438fd612f6FD59C1dbB3eA319f433Ba/info.json index 4a907f3656e86..462883e31f94a 100644 --- a/blockchains/smartchain/assets/0xfE19F0B51438fd612f6FD59C1dbB3eA319f433Ba/info.json +++ b/blockchains/smartchain/assets/0xfE19F0B51438fd612f6FD59C1dbB3eA319f433Ba/info.json @@ -10,8 +10,8 @@ "id": "0xfE19F0B51438fd612f6FD59C1dbB3eA319f433Ba", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MIM_Spell" + "name": "x", + "url": "https://x.com/MIM_Spell" }, { "name": "github", diff --git a/blockchains/smartchain/assets/0xfE1d7f7a8f0bdA6E415593a2e4F82c64b446d404/info.json b/blockchains/smartchain/assets/0xfE1d7f7a8f0bdA6E415593a2e4F82c64b446d404/info.json index 145fd194ca7fa..049a83877c80d 100644 --- a/blockchains/smartchain/assets/0xfE1d7f7a8f0bdA6E415593a2e4F82c64b446d404/info.json +++ b/blockchains/smartchain/assets/0xfE1d7f7a8f0bdA6E415593a2e4F82c64b446d404/info.json @@ -10,8 +10,8 @@ "id": "0xfE1d7f7a8f0bdA6E415593a2e4F82c64b446d404", "links": [ { - "name": "twitter", - "url": "https://twitter.com/bullperks" + "name": "x", + "url": "https://x.com/bullperks" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB/info.json b/blockchains/smartchain/assets/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB/info.json new file mode 100644 index 0000000000000..eddfb194314e1 --- /dev/null +++ b/blockchains/smartchain/assets/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB/info.json @@ -0,0 +1,24 @@ +{ + "name": "Circle tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Circle tokenized stock (xStock) (CRCLX) is a cryptocurrency and operates on the Solana platform. Circle tokenized stock (xStock) has a current supply of 49,998.60984587. The last known price of Circle tokenized stock (xStock) is 134.16292538 USD and is up 4.96 over the last 24 hours. It is currently trading on 44 active market(s) with $8,141,888.27 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/circle-xstock.", + "explorer": "https://bscscan.com/token/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB", + "type": "BEP20", + "symbol": "CRCLX", + "decimals": 18, + "status": "active", + "id": "0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/circle-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB/logo.png b/blockchains/smartchain/assets/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB/logo.png new file mode 100644 index 0000000000000..984236e985ff3 Binary files /dev/null and b/blockchains/smartchain/assets/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB/logo.png differ diff --git a/blockchains/smartchain/assets/0xfEbe8C1eD424DbF688551D4E2267e7A53698F0aa/info.json b/blockchains/smartchain/assets/0xfEbe8C1eD424DbF688551D4E2267e7A53698F0aa/info.json index a763599730108..a0d06450bdb67 100644 --- a/blockchains/smartchain/assets/0xfEbe8C1eD424DbF688551D4E2267e7A53698F0aa/info.json +++ b/blockchains/smartchain/assets/0xfEbe8C1eD424DbF688551D4E2267e7A53698F0aa/info.json @@ -10,8 +10,8 @@ "id": "0xfEbe8C1eD424DbF688551D4E2267e7A53698F0aa", "links": [ { - "name": "twitter", - "url": "https://twitter.com/vitainucoin" + "name": "x", + "url": "https://x.com/vitainucoin" }, { "name": "github", @@ -27,15 +27,15 @@ }, { "name": "medium", - "url": "https://medium.com/@vitainu" + "url": "https://medium.com/vitainu" }, { "name": "discord", - "url": "https://discord.com/invite/m7JxNcSt7e" + "url": "https://discord.com/invite/vinu" }, { "name": "whitepaper", - "url": "https://vitainu.org/wp-content/uploads/2022/01/Vita-Inu-Whitepaper-NEW-INTRO_compressed.pdf" + "url": "https://vitainu.org/whitepaper" }, { "name": "facebook", @@ -43,7 +43,7 @@ }, { "name": "youtube", - "url": "https://youtube.com/channel/UCLcg0_VQMlOA9RfyW6xL9Zw" + "url": "https://youtube.com/c/vitainucoin" }, { "name": "reddit", @@ -72,4 +72,4 @@ "governance", "wrapped" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfEc90FC884f732600378A01FBDd668De889B4444/info.json b/blockchains/smartchain/assets/0xfEc90FC884f732600378A01FBDd668De889B4444/info.json new file mode 100644 index 0000000000000..cbd466a43a4a1 --- /dev/null +++ b/blockchains/smartchain/assets/0xfEc90FC884f732600378A01FBDd668De889B4444/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE 由CZ建造", + "type": "BEP20", + "symbol": "FAKE USDKG", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://bscscan.com/token/0xfEc90FC884f732600378A01FBDd668De889B4444", + "explorer": "https://bscscan.com/token/0xfEc90FC884f732600378A01FBDd668De889B4444", + "status": "spam", + "id": "0xfEc90FC884f732600378A01FBDd668De889B4444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfFAD7f9F704a5FDC6265e24b436b4b35ed52DEF2/info.json b/blockchains/smartchain/assets/0xfFAD7f9F704a5FDC6265e24b436b4b35ed52DEF2/info.json index f565a17e6ff51..af16ccdb591fd 100644 --- a/blockchains/smartchain/assets/0xfFAD7f9F704a5FDC6265e24b436b4b35ed52DEF2/info.json +++ b/blockchains/smartchain/assets/0xfFAD7f9F704a5FDC6265e24b436b4b35ed52DEF2/info.json @@ -10,8 +10,8 @@ "id": "0xfFAD7f9F704a5FDC6265e24b436b4b35ed52DEF2", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Cloudtxofficial" + "name": "x", + "url": "https://x.com/Cloudtxofficial" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xfFdC00285DDe1f5b5c65C6a963357b4C55d8f601/info.json b/blockchains/smartchain/assets/0xfFdC00285DDe1f5b5c65C6a963357b4C55d8f601/info.json index 3187d4ab12c29..b73fda69911d4 100644 --- a/blockchains/smartchain/assets/0xfFdC00285DDe1f5b5c65C6a963357b4C55d8f601/info.json +++ b/blockchains/smartchain/assets/0xfFdC00285DDe1f5b5c65C6a963357b4C55d8f601/info.json @@ -10,8 +10,8 @@ "id": "0xfFdC00285DDe1f5b5c65C6a963357b4C55d8f601", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Bleufiofficial" + "name": "x", + "url": "https://x.com/Bleufiofficial" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xfa00e35A4a4Fe600f4f63F9d165A1e8e258AF8B8/info.json b/blockchains/smartchain/assets/0xfa00e35A4a4Fe600f4f63F9d165A1e8e258AF8B8/info.json new file mode 100644 index 0000000000000..5254d9f15dc1a --- /dev/null +++ b/blockchains/smartchain/assets/0xfa00e35A4a4Fe600f4f63F9d165A1e8e258AF8B8/info.json @@ -0,0 +1,14 @@ +{ + "name": "Tabi Tab Cat", + "type": "BEP20", + "symbol": "TABIBI", + "decimals": 18, + "website": "https://four.meme/token/0xfa00e35A4a4Fe600f4f63F9d165A1e8e258AF8B8", + "description": "Tabtabitabtabtabitabari", + "explorer": "https://bscscan.com/token/0xfa00e35A4a4Fe600f4f63F9d165A1e8e258AF8B8", + "status": "active", + "id": "0xfa00e35A4a4Fe600f4f63F9d165A1e8e258AF8B8", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfa00e35A4a4Fe600f4f63F9d165A1e8e258AF8B8/logo.png b/blockchains/smartchain/assets/0xfa00e35A4a4Fe600f4f63F9d165A1e8e258AF8B8/logo.png new file mode 100644 index 0000000000000..0f827ca6749ee Binary files /dev/null and b/blockchains/smartchain/assets/0xfa00e35A4a4Fe600f4f63F9d165A1e8e258AF8B8/logo.png differ diff --git a/blockchains/smartchain/assets/0xfa37E513E6cd506c4694b992825a8B614C035581/info.json b/blockchains/smartchain/assets/0xfa37E513E6cd506c4694b992825a8B614C035581/info.json index 800e5b06dd030..152e04701f71b 100644 --- a/blockchains/smartchain/assets/0xfa37E513E6cd506c4694b992825a8B614C035581/info.json +++ b/blockchains/smartchain/assets/0xfa37E513E6cd506c4694b992825a8B614C035581/info.json @@ -18,8 +18,8 @@ "url": "https://t.me/nexum_official" }, { - "name": "twitter", - "url": "https://twitter.com/CoinNexum" + "name": "x", + "url": "https://x.com/CoinNexum" }, { "name": "coingecko", @@ -29,4 +29,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfb16B31FA8a6Edcd2dDE78654CB0668c724C1dAc/info.json b/blockchains/smartchain/assets/0xfb16B31FA8a6Edcd2dDE78654CB0668c724C1dAc/info.json index c43662471fbff..adf0add3e03dd 100644 --- a/blockchains/smartchain/assets/0xfb16B31FA8a6Edcd2dDE78654CB0668c724C1dAc/info.json +++ b/blockchains/smartchain/assets/0xfb16B31FA8a6Edcd2dDE78654CB0668c724C1dAc/info.json @@ -10,8 +10,8 @@ "id": "0xfb16B31FA8a6Edcd2dDE78654CB0668c724C1dAc", "links": [ { - "name": "twitter", - "url": "https://twitter.com/safepokeman" + "name": "x", + "url": "https://x.com/safepokeman" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xfb5B838b6cfEEdC2873aB27866079AC55363D37E/info.json b/blockchains/smartchain/assets/0xfb5B838b6cfEEdC2873aB27866079AC55363D37E/info.json index 423c5322d0c70..6e030ec05c0d7 100644 --- a/blockchains/smartchain/assets/0xfb5B838b6cfEEdC2873aB27866079AC55363D37E/info.json +++ b/blockchains/smartchain/assets/0xfb5B838b6cfEEdC2873aB27866079AC55363D37E/info.json @@ -10,8 +10,8 @@ "id": "0xfb5B838b6cfEEdC2873aB27866079AC55363D37E", "links": [ { - "name": "twitter", - "url": "https://twitter.com/realflokiinu" + "name": "x", + "url": "https://x.com/realflokiinu" }, { "name": "telegram", @@ -41,4 +41,4 @@ "tags": [ "memes" ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfb6115445Bff7b52FeB98650C87f44907E58f802/info.json b/blockchains/smartchain/assets/0xfb6115445Bff7b52FeB98650C87f44907E58f802/info.json index f90a579bdf57c..fee6758180265 100644 --- a/blockchains/smartchain/assets/0xfb6115445Bff7b52FeB98650C87f44907E58f802/info.json +++ b/blockchains/smartchain/assets/0xfb6115445Bff7b52FeB98650C87f44907E58f802/info.json @@ -1,8 +1,8 @@ { - "name": "Binance-Peg Aave Token", + "name": "Aave", "website": "https://aave.com", "description": "Aave is a decentralized finance protocol that allows people to lend and borrow crypto.", - "explorer": "https://bscscan.com/token/0xfb6115445bff7b52feb98650c87f44907e58f802", + "explorer": "https://bscscan.com/token/0xfb6115445Bff7b52FeB98650C87f44907E58f802", "research": "https://research.binance.com/en/projects/aave-protocol", "type": "BEP20", "symbol": "AAVE", @@ -10,7 +10,41 @@ "status": "active", "id": "0xfb6115445Bff7b52FeB98650C87f44907E58f802", "tags": [ - "governance", - "defi" + "defi", + "governance" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/aave/aave-protocol" + }, + { + "name": "x", + "url": "https://x.com/aave" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Aave_Official" + }, + { + "name": "blog", + "url": "https://medium.com/aave" + }, + { + "name": "facebook", + "url": "https://facebook.com/AaveCom" + }, + { + "name": "whitepaper", + "url": "https://github.com/aave/aave-protocol/blob/master/docs/Aave_Protocol_Whitepaper_v1_0.pdf/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/aave/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/aave/" + } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfb6115445Bff7b52FeB98650C87f44907E58f802/logo.png b/blockchains/smartchain/assets/0xfb6115445Bff7b52FeB98650C87f44907E58f802/logo.png index 14cd6ff7b9cf8..d53b11427e965 100644 Binary files a/blockchains/smartchain/assets/0xfb6115445Bff7b52FeB98650C87f44907E58f802/logo.png and b/blockchains/smartchain/assets/0xfb6115445Bff7b52FeB98650C87f44907E58f802/logo.png differ diff --git a/blockchains/smartchain/assets/0xfb62AE373acA027177D1c18Ee0862817f9080d08/info.json b/blockchains/smartchain/assets/0xfb62AE373acA027177D1c18Ee0862817f9080d08/info.json index 6f839e8321a99..be66029bbfabc 100644 --- a/blockchains/smartchain/assets/0xfb62AE373acA027177D1c18Ee0862817f9080d08/info.json +++ b/blockchains/smartchain/assets/0xfb62AE373acA027177D1c18Ee0862817f9080d08/info.json @@ -14,8 +14,8 @@ "url": "https://coinmarketcap.com/currencies/my-defi-pet/" }, { - "name": "twitter", - "url": "https://twitter.com/MyDeFiPet" + "name": "x", + "url": "https://x.com/MyDeFiPet" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xfb9C339b4BacE4Fe63ccc1dd9a3c3C531441D5fE/info.json b/blockchains/smartchain/assets/0xfb9C339b4BacE4Fe63ccc1dd9a3c3C531441D5fE/info.json index 57e6bfc612dc5..c6dd45b410200 100644 --- a/blockchains/smartchain/assets/0xfb9C339b4BacE4Fe63ccc1dd9a3c3C531441D5fE/info.json +++ b/blockchains/smartchain/assets/0xfb9C339b4BacE4Fe63ccc1dd9a3c3C531441D5fE/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/projectseedannouncements" }, { - "name": "twitter", - "url": "https://twitter.com/ProjectSeedGame" + "name": "x", + "url": "https://x.com/ProjectSeedGame" }, { "name": "coinmarketcap", diff --git a/blockchains/smartchain/assets/0xfd189358080fce1731cE57330e64f4f158A37ee3/info.json b/blockchains/smartchain/assets/0xfd189358080fce1731cE57330e64f4f158A37ee3/info.json new file mode 100644 index 0000000000000..d34e955af2743 --- /dev/null +++ b/blockchains/smartchain/assets/0xfd189358080fce1731cE57330e64f4f158A37ee3/info.json @@ -0,0 +1,14 @@ +{ + "name": "UAA META", + "type": "BEP20", + "symbol": "UAA", + "decimals": 18, + "website": "https://www.uaameta.ai/", + "description": "The UAA META ecosystem governance token, UAA Coin, allows holders to participate in community governance and voting.", + "explorer": "https://bscscan.com/token/0xfd189358080fce1731cE57330e64f4f158A37ee3", + "status": "active", + "id": "0xfd189358080fce1731cE57330e64f4f158A37ee3", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfd189358080fce1731cE57330e64f4f158A37ee3/logo.png b/blockchains/smartchain/assets/0xfd189358080fce1731cE57330e64f4f158A37ee3/logo.png new file mode 100644 index 0000000000000..8a50bb39ba28f Binary files /dev/null and b/blockchains/smartchain/assets/0xfd189358080fce1731cE57330e64f4f158A37ee3/logo.png differ diff --git a/blockchains/smartchain/assets/0xfd290c590866f8282d89671A85Ac9964b165d682/info.json b/blockchains/smartchain/assets/0xfd290c590866f8282d89671A85Ac9964b165d682/info.json index 24c55a694e499..8c25d370c6dc2 100644 --- a/blockchains/smartchain/assets/0xfd290c590866f8282d89671A85Ac9964b165d682/info.json +++ b/blockchains/smartchain/assets/0xfd290c590866f8282d89671A85Ac9964b165d682/info.json @@ -10,8 +10,8 @@ "id": "0xfd290c590866f8282d89671A85Ac9964b165d682", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Subme_app" + "name": "x", + "url": "https://x.com/Subme_app" }, { "name": "telegram", diff --git a/blockchains/smartchain/assets/0xfe56d5892BDffC7BF58f2E84BE1b2C32D21C308b/info.json b/blockchains/smartchain/assets/0xfe56d5892BDffC7BF58f2E84BE1b2C32D21C308b/info.json new file mode 100644 index 0000000000000..526835f1142b5 --- /dev/null +++ b/blockchains/smartchain/assets/0xfe56d5892BDffC7BF58f2E84BE1b2C32D21C308b/info.json @@ -0,0 +1,15 @@ +{ + "name": "Kyber Network", + "website": "https://kyber.network", + "description": "Kyber Network’s on-chain liquidity protocol allows decentralized token swaps to be integrated into any application, enabling value exchange to be performed seamlessly between all parties in the ecosystem.", + "explorer": "https://bscscan.com/token/0xfe56d5892bdffc7bf58f2e84be1b2c32d21c308b", + "type": "BEP20", + "symbol": "KNC", + "decimals": 18, + "status": "active", + "id": "0xfe56d5892BDffC7BF58f2E84BE1b2C32D21C308b", + "tags": [ + "defi", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfe56d5892BDffC7BF58f2E84BE1b2C32D21C308b/logo.png b/blockchains/smartchain/assets/0xfe56d5892BDffC7BF58f2E84BE1b2C32D21C308b/logo.png new file mode 100644 index 0000000000000..dcd42863ce231 Binary files /dev/null and b/blockchains/smartchain/assets/0xfe56d5892BDffC7BF58f2E84BE1b2C32D21C308b/logo.png differ diff --git a/blockchains/smartchain/assets/0xfe9aA194E3C4604f3872f220eb41C33A287FCD90/info.json b/blockchains/smartchain/assets/0xfe9aA194E3C4604f3872f220eb41C33A287FCD90/info.json new file mode 100644 index 0000000000000..1bc1ae9eb1559 --- /dev/null +++ b/blockchains/smartchain/assets/0xfe9aA194E3C4604f3872f220eb41C33A287FCD90/info.json @@ -0,0 +1,24 @@ +{ + "name": "Union Pacific Corporation (Ondo Tokenized)", + "type": "BEP20", + "symbol": "UNPon", + "decimals": 18, + "description": "UNPon is the Ondo Tokenized version of Union Pacific Corporation, giving tokenholders economic exposure similar to holding UNP and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://bscscan.com/token/0xfe9aA194E3C4604f3872f220eb41C33A287FCD90", + "status": "active", + "id": "0xfe9aA194E3C4604f3872f220eb41C33A287FCD90", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/union-pacific-corporation-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfe9aA194E3C4604f3872f220eb41C33A287FCD90/logo.png b/blockchains/smartchain/assets/0xfe9aA194E3C4604f3872f220eb41C33A287FCD90/logo.png new file mode 100644 index 0000000000000..0a03049a408b0 Binary files /dev/null and b/blockchains/smartchain/assets/0xfe9aA194E3C4604f3872f220eb41C33A287FCD90/logo.png differ diff --git a/blockchains/smartchain/assets/0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34/info.json b/blockchains/smartchain/assets/0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34/info.json index 62766ba8ac7c6..701f1ad37e884 100644 --- a/blockchains/smartchain/assets/0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34/info.json +++ b/blockchains/smartchain/assets/0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34/info.json @@ -6,6 +6,6 @@ "website": "https://zedxion.io", "description": "Zedxion offers a comprehensive solution to the major problems faced by the traditional, fiat-driven monetary system. Building a crypto powered ecosystem comprising Zedxion Token.", "explorer": "https://bscscan.com/token/0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34", - "status": "active", + "status": "abandoned", "id": "0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34/logo.png b/blockchains/smartchain/assets/0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34/logo.png deleted file mode 100644 index f8a3cf70f8f50..0000000000000 Binary files a/blockchains/smartchain/assets/0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34/logo.png and /dev/null differ diff --git a/blockchains/smartchain/info/info.json b/blockchains/smartchain/info/info.json index d5acb8d94e118..c0a111a07c69e 100644 --- a/blockchains/smartchain/info/info.json +++ b/blockchains/smartchain/info/info.json @@ -9,7 +9,8 @@ "decimals": 18, "status": "active", "tags": [ - "staking-native" + "staking-native", + "dapp" ], "links": [ { @@ -17,8 +18,8 @@ "url": "https://github.com/binance-chain/" }, { - "name": "twitter", - "url": "https://twitter.com/BNBCHAIN" + "name": "x", + "url": "https://x.com/BNBCHAIN" }, { "name": "reddit", diff --git a/blockchains/smartchain/info/square_logo.png b/blockchains/smartchain/info/square_logo.png new file mode 100644 index 0000000000000..35b8d54db6708 Binary files /dev/null and b/blockchains/smartchain/info/square_logo.png differ diff --git a/blockchains/smartchain/tokenlist.json b/blockchains/smartchain/tokenlist.json index 21936e1e2b3cc..a1efdc0a87cf7 100644 --- a/blockchains/smartchain/tokenlist.json +++ b/blockchains/smartchain/tokenlist.json @@ -154,9 +154,6 @@ { "base": "c20000714_t0xC9849E6fdB743d08fAeE3E34dd2D1bc69EA11a51" }, - { - "base": "c20000714_t0xCa3F508B8e4Dd382eE878A314789373D80A5190A" - }, { "base": "c20000714_t0xcc2E12a9b5b75360c6FBf23B584c275D52cDdb0E" }, @@ -191,12 +188,7 @@ "base": "c20000714_t0x734D66f635523D7ddb7d2373C128333DA313041b" }, - { - "base": "c20000714_t0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34" - }, - { - "base": "c20000714_t0x88479186BAC914E4313389a64881F5ed0153C765" - }, + { "base": "c20000714_t0xc748673057861a797275CD8A068AbB95A902e8de" } @@ -217,7 +209,7 @@ "asset": "c20000714_t0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153", "type": "BEP20", "address": "0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153", - "name": "BNB pegged Filecoin", + "name": "Filecoin", "symbol": "FIL", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153/logo.png", @@ -228,7 +220,7 @@ "asset": "c20000714_t0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82", "type": "BEP20", "address": "0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82", - "name": "PancakeSwap Token", + "name": "PancakeSwap", "symbol": "CAKE", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82/logo.png", @@ -238,7 +230,7 @@ "asset": "c20000714_t0x0Eb3a705fc54725037CC9e008bDede697f62F335", "type": "BEP20", "address": "0x0Eb3a705fc54725037CC9e008bDede697f62F335", - "name": "BNB pegged Cosmos Token", + "name": "Cosmos", "symbol": "ATOM", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x0Eb3a705fc54725037CC9e008bDede697f62F335/logo.png", @@ -269,7 +261,7 @@ "asset": "c20000714_t0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3", "type": "BEP20", "address": "0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3", - "name": "BNB pegged Dai Token", + "name": "Dai", "symbol": "DAI", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3/logo.png", @@ -279,7 +271,7 @@ "asset": "c20000714_t0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE", "type": "BEP20", "address": "0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE", - "name": "BNB pegged XRP Token", + "name": "XRP", "symbol": "XRP", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE/logo.png", @@ -300,7 +292,7 @@ "asset": "c20000714_t0x2170Ed0880ac9A755fd29B2688956BD959F933F8", "type": "BEP20", "address": "0x2170Ed0880ac9A755fd29B2688956BD959F933F8", - "name": "BNB pegged Ethereum", + "name": "Ethereum", "symbol": "ETH", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x2170Ed0880ac9A755fd29B2688956BD959F933F8/logo.png", @@ -310,7 +302,7 @@ "asset": "c20000714_t0x23396cF899Ca06c4472205fC903bDB4de249D6fC", "type": "BEP20", "address": "0x23396cF899Ca06c4472205fC903bDB4de249D6fC", - "name": "Wrapped UST Token", + "name": "TerraClassicUSD", "symbol": "UST", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x23396cF899Ca06c4472205fC903bDB4de249D6fC/logo.png", @@ -350,7 +342,7 @@ "asset": "c20000714_t0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47", "type": "BEP20", "address": "0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47", - "name": "BNB pegged Cardano Token", + "name": "Cardano", "symbol": "ADA", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47/logo.png", @@ -370,7 +362,7 @@ "asset": "c20000714_t0x4338665CBB7B2485A8855A139b75D5e34AB0DB94", "type": "BEP20", "address": "0x4338665CBB7B2485A8855A139b75D5e34AB0DB94", - "name": "BNB pegged Litecoin Token", + "name": "Litecoin", "symbol": "LTC", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x4338665CBB7B2485A8855A139b75D5e34AB0DB94/logo.png", @@ -484,7 +476,7 @@ "asset": "c20000714_t0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402", "type": "BEP20", "address": "0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402", - "name": "BNB pegged Polkadot Token", + "name": "Polkadot", "symbol": "DOT", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402/logo.png", @@ -575,7 +567,7 @@ "asset": "c20000714_t0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e", "type": "BEP20", "address": "0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e", - "name": "BNB pegged yearn.finance", + "name": "Yearn", "symbol": "YFI", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e/logo.png", @@ -585,7 +577,7 @@ "asset": "c20000714_t0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf", "type": "BEP20", "address": "0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf", - "name": "BNB pegged Bitcoin Cash Token", + "name": "Bitcoin Cash", "symbol": "BCH", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf/logo.png", @@ -658,7 +650,7 @@ "asset": "c20000714_t0xA8c2B8eec3d368C0253ad3dae65a5F2BBB89c929", "type": "BEP20", "address": "0xA8c2B8eec3d368C0253ad3dae65a5F2BBB89c929", - "name": "CertiK Token", + "name": "Shentu", "symbol": "CTK", "decimals": 6, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xA8c2B8eec3d368C0253ad3dae65a5F2BBB89c929/logo.png", @@ -668,7 +660,7 @@ "asset": "c20000714_t0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18", "type": "BEP20", "address": "0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18", - "name": "BNB pegged Band Protocol Token", + "name": "Band", "symbol": "BAND", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18/logo.png", @@ -689,7 +681,7 @@ "asset": "c20000714_t0xBf5140A22578168FD562DCcF235E5D43A02ce9B1", "type": "BEP20", "address": "0xBf5140A22578168FD562DCcF235E5D43A02ce9B1", - "name": "BNB pegged Uniswap", + "name": "Uniswap", "symbol": "UNI", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xBf5140A22578168FD562DCcF235E5D43A02ce9B1/logo.png", @@ -735,17 +727,6 @@ "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xC9849E6fdB743d08fAeE3E34dd2D1bc69EA11a51/logo.png", "pairs": [] }, - { - "chainId": 56, - "asset": "c20000714_t0xCa3F508B8e4Dd382eE878A314789373D80A5190A", - "type": "BEP20", - "address": "0xCa3F508B8e4Dd382eE878A314789373D80A5190A", - "name": "beefy.finance", - "symbol": "BIFI", - "decimals": 18, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xCa3F508B8e4Dd382eE878A314789373D80A5190A/logo.png", - "pairs": [] - }, { "asset": "c20000714_t0xcc2E12a9b5b75360c6FBf23B584c275D52cDdb0E", "type": "BEP20", @@ -771,7 +752,7 @@ "asset": "c20000714_t0xD41FDb03Ba84762dD66a0af1a6C8540FF1ba5dfb", "type": "BEP20", "address": "0xD41FDb03Ba84762dD66a0af1a6C8540FF1ba5dfb", - "name": "SafePal Token", + "name": "SafePal", "symbol": "SFP", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xD41FDb03Ba84762dD66a0af1a6C8540FF1ba5dfb/logo.png", @@ -792,7 +773,7 @@ "asset": "c20000714_t0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56", "type": "BEP20", "address": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56", - "name": "BNB pegged BUSD", + "name": "BUSD", "symbol": "BUSD", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56/logo.png", @@ -833,7 +814,7 @@ "asset": "c20000714_t0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD", "type": "BEP20", "address": "0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD", - "name": "BNB pegged ChainLink", + "name": "Chainlink", "symbol": "LINK", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD/logo.png", @@ -879,26 +860,6 @@ "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x734D66f635523D7ddb7d2373C128333DA313041b/logo.png", "pairs": [] }, - { - "asset": "c20000714_t0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34", - "type": "BEP20", - "address": "0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34", - "name": "ZEDXION", - "symbol": "ZEDXION", - "decimals": 18, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34/logo.png", - "pairs": [] - }, - { - "asset": "c20000714_t0x88479186BAC914E4313389a64881F5ed0153C765", - "type": "BEP20", - "address": "0x88479186BAC914E4313389a64881F5ed0153C765", - "name": "SquidGrow", - "symbol": "SquidGrow", - "decimals": 19, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x88479186BAC914E4313389a64881F5ed0153C765/logo.png", - "pairs": [] - }, { "asset": "c20000714_t0xC3137c696796D69F783CD0Be4aB4bB96814234Aa", "type": "BEP20", diff --git a/blockchains/smartchain/validators/assets/0x0813D0D092b97C157A8e68A65ccdF41b956883ae/logo.png b/blockchains/smartchain/validators/assets/0x0813D0D092b97C157A8e68A65ccdF41b956883ae/logo.png new file mode 100644 index 0000000000000..a907d86b4c996 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x0813D0D092b97C157A8e68A65ccdF41b956883ae/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x0C5c547215c6516603c3de9525abEf86f66D3A54/logo.png b/blockchains/smartchain/validators/assets/0x0C5c547215c6516603c3de9525abEf86f66D3A54/logo.png new file mode 100644 index 0000000000000..116bdea975809 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x0C5c547215c6516603c3de9525abEf86f66D3A54/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x0E3cf208F4141C41da86d52C5F2076b1aB310E8F/logo.png b/blockchains/smartchain/validators/assets/0x0E3cf208F4141C41da86d52C5F2076b1aB310E8F/logo.png new file mode 100644 index 0000000000000..f95b27e97e63d Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x0E3cf208F4141C41da86d52C5F2076b1aB310E8F/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x0E89f8F61690E3115c176db4dcE8Bb0333259987/logo.png b/blockchains/smartchain/validators/assets/0x0E89f8F61690E3115c176db4dcE8Bb0333259987/logo.png new file mode 100644 index 0000000000000..9ee2bccef40d0 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x0E89f8F61690E3115c176db4dcE8Bb0333259987/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x11F3A9d13F6f11F29A7c96922C5471F356BD129F/logo.png b/blockchains/smartchain/validators/assets/0x11F3A9d13F6f11F29A7c96922C5471F356BD129F/logo.png new file mode 100644 index 0000000000000..8068abfd466fb Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x11F3A9d13F6f11F29A7c96922C5471F356BD129F/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x1AE5f5C3Cb452E042b0B7b9DC60596C9CD84BaF6/logo.png b/blockchains/smartchain/validators/assets/0x1AE5f5C3Cb452E042b0B7b9DC60596C9CD84BaF6/logo.png new file mode 100644 index 0000000000000..90eb93466c82b Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x1AE5f5C3Cb452E042b0B7b9DC60596C9CD84BaF6/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x31738238B6A4FCb00bA4De9ee923986b6Df55ae6/logo.png b/blockchains/smartchain/validators/assets/0x31738238B6A4FCb00bA4De9ee923986b6Df55ae6/logo.png new file mode 100644 index 0000000000000..529434877a762 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x31738238B6A4FCb00bA4De9ee923986b6Df55ae6/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x343dA7Ff0446247ca47AA41e2A25c5Bbb230ED0A/logo.png b/blockchains/smartchain/validators/assets/0x343dA7Ff0446247ca47AA41e2A25c5Bbb230ED0A/logo.png new file mode 100644 index 0000000000000..74d5a59b1c1a6 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x343dA7Ff0446247ca47AA41e2A25c5Bbb230ED0A/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x3bA645FB613eB9E8A44f84B230C037C9972615C3/logo.png b/blockchains/smartchain/validators/assets/0x3bA645FB613eB9E8A44f84B230C037C9972615C3/logo.png new file mode 100644 index 0000000000000..85c107ea48183 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x3bA645FB613eB9E8A44f84B230C037C9972615C3/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x477cB5d87144b2a6d93f72e32f5E01a459260D68/logo.png b/blockchains/smartchain/validators/assets/0x477cB5d87144b2a6d93f72e32f5E01a459260D68/logo.png new file mode 100644 index 0000000000000..0606bd4f3ada9 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x477cB5d87144b2a6d93f72e32f5E01a459260D68/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x487Ad3A6E2FFAa9f393ae839005aF2f4c00d9E63/logo.png b/blockchains/smartchain/validators/assets/0x487Ad3A6E2FFAa9f393ae839005aF2f4c00d9E63/logo.png new file mode 100644 index 0000000000000..a96d3610b49e4 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x487Ad3A6E2FFAa9f393ae839005aF2f4c00d9E63/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x4DC1Bf52da103452097df48505A6D01020fFB22b/logo.png b/blockchains/smartchain/validators/assets/0x4DC1Bf52da103452097df48505A6D01020fFB22b/logo.png new file mode 100644 index 0000000000000..8a68d860cd0b4 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x4DC1Bf52da103452097df48505A6D01020fFB22b/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x5CE21461E6472914F5E4D5B296C72125f26ed462/logo.png b/blockchains/smartchain/validators/assets/0x5CE21461E6472914F5E4D5B296C72125f26ed462/logo.png new file mode 100644 index 0000000000000..7c6dcec77c43d Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x5CE21461E6472914F5E4D5B296C72125f26ed462/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x5Ce119c093cFe978dcfd00e09E173FB97685069E/logo.png b/blockchains/smartchain/validators/assets/0x5Ce119c093cFe978dcfd00e09E173FB97685069E/logo.png new file mode 100644 index 0000000000000..64723bc1c8bf6 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x5Ce119c093cFe978dcfd00e09E173FB97685069E/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x5c38FF8Ca2b16099C086bF36546e99b13D152C4c/logo.png b/blockchains/smartchain/validators/assets/0x5c38FF8Ca2b16099C086bF36546e99b13D152C4c/logo.png new file mode 100644 index 0000000000000..f5f3ada9451c6 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x5c38FF8Ca2b16099C086bF36546e99b13D152C4c/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x773760b0708a5Cc369c346993a0c225D8e4043B1/logo.png b/blockchains/smartchain/validators/assets/0x773760b0708a5Cc369c346993a0c225D8e4043B1/logo.png new file mode 100644 index 0000000000000..83aab020b7ffe Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x773760b0708a5Cc369c346993a0c225D8e4043B1/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x78504de17d6Dba03387C7CaE5322B9C86bF3027f/logo.png b/blockchains/smartchain/validators/assets/0x78504de17d6Dba03387C7CaE5322B9C86bF3027f/logo.png new file mode 100644 index 0000000000000..fc4482cfc11b9 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x78504de17d6Dba03387C7CaE5322B9C86bF3027f/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x7B67A5Bfc93E8ad3C4C4d3fdc6a4029dD110Fa99/logo.png b/blockchains/smartchain/validators/assets/0x7B67A5Bfc93E8ad3C4C4d3fdc6a4029dD110Fa99/logo.png new file mode 100644 index 0000000000000..988f517439ae9 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x7B67A5Bfc93E8ad3C4C4d3fdc6a4029dD110Fa99/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x7d0F8A6D1C8fbF929Dcf4847A31E30d14923Fa31/logo.png b/blockchains/smartchain/validators/assets/0x7d0F8A6D1C8fbF929Dcf4847A31E30d14923Fa31/logo.png new file mode 100644 index 0000000000000..dc96014ce5f34 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x7d0F8A6D1C8fbF929Dcf4847A31E30d14923Fa31/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x8683DCb7A775dF4587eEfAD7c08ee647D1da32C1/logo.png b/blockchains/smartchain/validators/assets/0x8683DCb7A775dF4587eEfAD7c08ee647D1da32C1/logo.png new file mode 100644 index 0000000000000..c2f86eb32abdf Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x8683DCb7A775dF4587eEfAD7c08ee647D1da32C1/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x95E105468b3a9E158df258ee385CA873cB566bF2/logo.png b/blockchains/smartchain/validators/assets/0x95E105468b3a9E158df258ee385CA873cB566bF2/logo.png new file mode 100644 index 0000000000000..315c42cb30d4f Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x95E105468b3a9E158df258ee385CA873cB566bF2/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x9941BCe2601fC93478DF9f5F6Cc83F4FFC1D71d8/logo.png b/blockchains/smartchain/validators/assets/0x9941BCe2601fC93478DF9f5F6Cc83F4FFC1D71d8/logo.png new file mode 100644 index 0000000000000..a7943ea73994f Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x9941BCe2601fC93478DF9f5F6Cc83F4FFC1D71d8/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xA0fB25F82592F3cE965804a2f21B65783d66cF18/logo.png b/blockchains/smartchain/validators/assets/0xA0fB25F82592F3cE965804a2f21B65783d66cF18/logo.png new file mode 100644 index 0000000000000..1a63a1de522ad Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xA0fB25F82592F3cE965804a2f21B65783d66cF18/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xA3beF3479254a2ec123Bf4CBa34499f94D96Ee5b/logo.png b/blockchains/smartchain/validators/assets/0xA3beF3479254a2ec123Bf4CBa34499f94D96Ee5b/logo.png new file mode 100644 index 0000000000000..aecf77df0b231 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xA3beF3479254a2ec123Bf4CBa34499f94D96Ee5b/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xB12e8137eF499a1d81552DB11664a9E617fd350A/logo.png b/blockchains/smartchain/validators/assets/0xB12e8137eF499a1d81552DB11664a9E617fd350A/logo.png new file mode 100644 index 0000000000000..e035274e864a6 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xB12e8137eF499a1d81552DB11664a9E617fd350A/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xB58ac55EB6B10e4f7918D77C92aA1cF5bB2DEd5e/logo.png b/blockchains/smartchain/validators/assets/0xB58ac55EB6B10e4f7918D77C92aA1cF5bB2DEd5e/logo.png new file mode 100644 index 0000000000000..ee83d6cabfcd1 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xB58ac55EB6B10e4f7918D77C92aA1cF5bB2DEd5e/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xB7Fce9e05c681Fb92e867D9893255DCE3e8790a2/logo.png b/blockchains/smartchain/validators/assets/0xB7Fce9e05c681Fb92e867D9893255DCE3e8790a2/logo.png new file mode 100644 index 0000000000000..4a63c34435f15 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xB7Fce9e05c681Fb92e867D9893255DCE3e8790a2/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xBb772d6e37C3dDB0f08e05c10d05419dB54C9Fd8/logo.png b/blockchains/smartchain/validators/assets/0xBb772d6e37C3dDB0f08e05c10d05419dB54C9Fd8/logo.png new file mode 100644 index 0000000000000..17e1bf0b88263 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xBb772d6e37C3dDB0f08e05c10d05419dB54C9Fd8/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xC1DA8b99674137CC4971bF974cdC5157c8B86AaF/logo.png b/blockchains/smartchain/validators/assets/0xC1DA8b99674137CC4971bF974cdC5157c8B86AaF/logo.png new file mode 100644 index 0000000000000..7d15f74324a23 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xC1DA8b99674137CC4971bF974cdC5157c8B86AaF/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xCA9EbBE042f975700F13e5e0D7683918533170BE/logo.png b/blockchains/smartchain/validators/assets/0xCA9EbBE042f975700F13e5e0D7683918533170BE/logo.png new file mode 100644 index 0000000000000..433d259be5c32 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xCA9EbBE042f975700F13e5e0D7683918533170BE/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xF2B1d86DC7459887B1f7Ce8d840db1D87613Ce7f/logo.png b/blockchains/smartchain/validators/assets/0xF2B1d86DC7459887B1f7Ce8d840db1D87613Ce7f/logo.png new file mode 100644 index 0000000000000..0b958482feb03 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xF2B1d86DC7459887B1f7Ce8d840db1D87613Ce7f/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xF9D1637D1e45e454F5ed1F7729a9AB55EC121E2c/logo.png b/blockchains/smartchain/validators/assets/0xF9D1637D1e45e454F5ed1F7729a9AB55EC121E2c/logo.png new file mode 100644 index 0000000000000..dfdb5b106421b Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xF9D1637D1e45e454F5ed1F7729a9AB55EC121E2c/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xFA5E69f880c0287f5543CFe9167Db7B83bD8Dd79/logo.png b/blockchains/smartchain/validators/assets/0xFA5E69f880c0287f5543CFe9167Db7B83bD8Dd79/logo.png new file mode 100644 index 0000000000000..e2ac6ba0ef11d Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xFA5E69f880c0287f5543CFe9167Db7B83bD8Dd79/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xa31A940ecFB4Cb9fE7884eB3C9a959Db79CbdC70/logo.png b/blockchains/smartchain/validators/assets/0xa31A940ecFB4Cb9fE7884eB3C9a959Db79CbdC70/logo.png new file mode 100644 index 0000000000000..77ce1656906bd Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xa31A940ecFB4Cb9fE7884eB3C9a959Db79CbdC70/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xaACc290a1A4c89F5D7bc29913122F5982916de48/logo.png b/blockchains/smartchain/validators/assets/0xaACc290a1A4c89F5D7bc29913122F5982916de48/logo.png new file mode 100644 index 0000000000000..c5e3205b90f42 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xaACc290a1A4c89F5D7bc29913122F5982916de48/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xd34403249B2d82AAdDB14e778422c966265e5Fb5/logo.png b/blockchains/smartchain/validators/assets/0xd34403249B2d82AAdDB14e778422c966265e5Fb5/logo.png new file mode 100644 index 0000000000000..17175beec76a8 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xd34403249B2d82AAdDB14e778422c966265e5Fb5/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xd6579B6F3c036038239c51C3D2AE623bE1F23beD/logo.png b/blockchains/smartchain/validators/assets/0xd6579B6F3c036038239c51C3D2AE623bE1F23beD/logo.png new file mode 100644 index 0000000000000..a65037d5d19a0 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xd6579B6F3c036038239c51C3D2AE623bE1F23beD/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xdFeAcaffE5EAF47E442ef2ddAeAea2f21a6d3f91/logo.png b/blockchains/smartchain/validators/assets/0xdFeAcaffE5EAF47E442ef2ddAeAea2f21a6d3f91/logo.png new file mode 100644 index 0000000000000..31aa120f9a9c4 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xdFeAcaffE5EAF47E442ef2ddAeAea2f21a6d3f91/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xdcC46Bda9E79A11Ff9080F69CB1C0BCcc4737A34/logo.png b/blockchains/smartchain/validators/assets/0xdcC46Bda9E79A11Ff9080F69CB1C0BCcc4737A34/logo.png new file mode 100644 index 0000000000000..d3ae94a487e3c Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xdcC46Bda9E79A11Ff9080F69CB1C0BCcc4737A34/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xe0761D6679aE9691C98C3f07867740b08f43e510/logo.png b/blockchains/smartchain/validators/assets/0xe0761D6679aE9691C98C3f07867740b08f43e510/logo.png new file mode 100644 index 0000000000000..e1b1fab5c10e1 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xe0761D6679aE9691C98C3f07867740b08f43e510/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xe8cf6D03E42B66ae80E30eCE99374e8e0C4a90e2/logo.png b/blockchains/smartchain/validators/assets/0xe8cf6D03E42B66ae80E30eCE99374e8e0C4a90e2/logo.png new file mode 100644 index 0000000000000..a6d9faad0e347 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xe8cf6D03E42B66ae80E30eCE99374e8e0C4a90e2/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xe9E14034Dc9452c0ADb1Be7f6CAB16809036C4f7/logo.png b/blockchains/smartchain/validators/assets/0xe9E14034Dc9452c0ADb1Be7f6CAB16809036C4f7/logo.png new file mode 100644 index 0000000000000..cf629abdaf27a Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xe9E14034Dc9452c0ADb1Be7f6CAB16809036C4f7/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xeace91702B20bc6Ee62034eC7f5162D9a94bFbE4/logo.png b/blockchains/smartchain/validators/assets/0xeace91702B20bc6Ee62034eC7f5162D9a94bFbE4/logo.png new file mode 100644 index 0000000000000..30dec94b77631 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xeace91702B20bc6Ee62034eC7f5162D9a94bFbE4/logo.png differ diff --git a/blockchains/smartchain/validators/list.json b/blockchains/smartchain/validators/list.json new file mode 100644 index 0000000000000..51c1237bb5bd0 --- /dev/null +++ b/blockchains/smartchain/validators/list.json @@ -0,0 +1,272 @@ +[ + { + "id": "0x773760b0708a5Cc369c346993a0c225D8e4043B1", + "name": "Legend", + "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x773760b0708a5Cc369c346993a0c225D8e4043B1" + }, + { + "id": "0x343dA7Ff0446247ca47AA41e2A25c5Bbb230ED0A", + "name": "LegendII", + "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x343dA7Ff0446247ca47AA41e2A25c5Bbb230ED0A" + }, + { + "id": "0xF2B1d86DC7459887B1f7Ce8d840db1D87613Ce7f", + "name": "LegendIII", + "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xF2B1d86DC7459887B1f7Ce8d840db1D87613Ce7f" + }, + { + "id": "0xeace91702B20bc6Ee62034eC7f5162D9a94bFbE4", + "name": "Ankr", + "description": "Connect to Web3 in minutes", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xeace91702B20bc6Ee62034eC7f5162D9a94bFbE4" + }, + { + "id": "0x5CE21461E6472914F5E4D5B296C72125f26ed462", + "name": "Tranchess", + "description": "Tranchess protocol enables BNB holders to earn delegator rewards on top of protocol token (CHESS) airdrops.", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x5CE21461E6472914F5E4D5B296C72125f26ed462" + }, + { + "id": "0xe0761D6679aE9691C98C3f07867740b08f43e510", + "name": "CertiK", + "description": "CertiK, as the leading blockchain security pioneer, missions to support BSC with best-in-class security technologies and deliver provable trust for all.", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xe0761D6679aE9691C98C3f07867740b08f43e510" + }, + { + "id": "0xd34403249B2d82AAdDB14e778422c966265e5Fb5", + "name": "InfStones", + "description": "InfStones' easy-to-use blockchain infrastructure gives you all the power and control you need to create products that shape the future of technology.", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xd34403249B2d82AAdDB14e778422c966265e5Fb5" + }, + { + "id": "0x477cB5d87144b2a6d93f72e32f5E01a459260D68", + "name": "Figment", + "description": "Figment is the complete staking solution for over 500 institutional clients, providing enterprise validators, seamless staking integrations, audited infrastructure, robust rewards data, and more.", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x477cB5d87144b2a6d93f72e32f5E01a459260D68" + }, + { + "id": "0x0E3cf208F4141C41da86d52C5F2076b1aB310E8F", + "name": "Turing", + "description": "Those who can imagine anything, can create the impossible.", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x0E3cf208F4141C41da86d52C5F2076b1aB310E8F" + }, + { + "id": "0xa31A940ecFB4Cb9fE7884eB3C9a959Db79CbdC70", + "name": "Avengers", + "description": "Earth's Mightiest Heroes", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xa31A940ecFB4Cb9fE7884eB3C9a959Db79CbdC70" + }, + { + "id": "0x7d0F8A6D1C8fbF929Dcf4847A31E30d14923Fa31", + "name": "NodeReal", + "description": "Advanced Infrastructure Provider for EVM blockchains.", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x7d0F8A6D1C8fbF929Dcf4847A31E30d14923Fa31" + }, + { + "id": "0xCA9EbBE042f975700F13e5e0D7683918533170BE", + "name": "Namelix", + "description": "The is namelix org on BSC network", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xCA9EbBE042f975700F13e5e0D7683918533170BE" + }, + { + "id": "0x78504de17d6Dba03387C7CaE5322B9C86bF3027f", + "name": "HashKey", + "description": "HashKey Cloud, as a leading provider of global Web3 infrastructure and a core member of the HashKey Group", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x78504de17d6Dba03387C7CaE5322B9C86bF3027f" + }, + { + "id": "0xaACc290a1A4c89F5D7bc29913122F5982916de48", + "name": "The48Club", + "description": "48 Club® was founded in Sept. 2017 and is run as a decentralized autonomous organization (DAO).", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xaACc290a1A4c89F5D7bc29913122F5982916de48" + }, + { + "id": "0x5c38FF8Ca2b16099C086bF36546e99b13D152C4c", + "name": "Trust Nodes", + "description": "Trust Wallet BNB Chain Validator", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x5c38FF8Ca2b16099C086bF36546e99b13D152C4c" + }, + { + "id": "0x0C5c547215c6516603c3de9525abEf86f66D3A54", + "name": "BscScan", + "description": "Your Gateway to the Binance Smart Chain Network. BscScan is the leading BSC Block Chain Explorer and one of the earliest independent project built and developed for the Binance Smart Chain", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x0C5c547215c6516603c3de9525abEf86f66D3A54" + }, + { + "id": "0x4DC1Bf52da103452097df48505A6D01020fFB22b", + "name": "Defibit", + "description": "The is defibit org on BSC network", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x4DC1Bf52da103452097df48505A6D01020fFB22b" + }, + { + "id": "0x1AE5f5C3Cb452E042b0B7b9DC60596C9CD84BaF6", + "name": "Fuji", + "description": "The is fuji org on BSC network", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x1AE5f5C3Cb452E042b0B7b9DC60596C9CD84BaF6" + }, + { + "id": "0xe8cf6D03E42B66ae80E30eCE99374e8e0C4a90e2", + "name": "Pexmons", + "description": "The is pexmons org on BSC network", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xe8cf6D03E42B66ae80E30eCE99374e8e0C4a90e2" + }, + { + "id": "0x7B67A5Bfc93E8ad3C4C4d3fdc6a4029dD110Fa99", + "name": "Ciscox", + "description": "The is ciscox org on BSC network", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x7B67A5Bfc93E8ad3C4C4d3fdc6a4029dD110Fa99" + }, + { + "id": "0x11F3A9d13F6f11F29A7c96922C5471F356BD129F", + "name": "Seoraksan", + "description": "The is Seoraksan org on BSC network", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x11F3A9d13F6f11F29A7c96922C5471F356BD129F" + }, + { + "id": "0xA0fB25F82592F3cE965804a2f21B65783d66cF18", + "name": "Coinlix", + "description": "The is coinlix org on BSC network", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xA0fB25F82592F3cE965804a2f21B65783d66cF18" + }, + { + "id": "0xdFeAcaffE5EAF47E442ef2ddAeAea2f21a6d3f91", + "name": "Feynman", + "description": "Deploy Web3 apps that are as fast as legacy solutions.", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xdFeAcaffE5EAF47E442ef2ddAeAea2f21a6d3f91" + }, + { + "id": "0xB12e8137eF499a1d81552DB11664a9E617fd350A", + "name": "MathW", + "description": "MATH is a multi-chain and cross-chain blockchain assets hub, and its products including MathWallet, MATH VPoS Pool, MathDAppStore, MathStaking, MathCustody, MathNFT, MathChain, MathHub, MathDEX, MathID, MathPay etc. MATH also operates nodes for many POS chains.", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xB12e8137eF499a1d81552DB11664a9E617fd350A" + }, + { + "id": "0x2ADEdB37fC5AcF00B0f039026EF69DabdBEcE5D5", + "name": "Coda", + "description": "The all-in-one doc for teams. Give your team the tools they need to thrive.", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x2ADEdB37fC5AcF00B0f039026EF69DabdBEcE5D5" + }, + { + "id": "0xA3beF3479254a2ec123Bf4CBa34499f94D96Ee5b", + "name": "BNBEve", + "description": "", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xA3beF3479254a2ec123Bf4CBa34499f94D96Ee5b" + }, + { + "id": "0x0E89f8F61690E3115c176db4dcE8Bb0333259987", + "name": "Aoraki", + "description": "", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x0E89f8F61690E3115c176db4dcE8Bb0333259987" + }, + { + "id": "0x8683DCb7A775dF4587eEfAD7c08ee647D1da32C1", + "name": "LegendVI", + "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x8683DCb7A775dF4587eEfAD7c08ee647D1da32C1" + }, + { + "id": "0x31738238B6A4FCb00bA4De9ee923986b6Df55ae6", + "name": "LegendVII", + "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x31738238B6A4FCb00bA4De9ee923986b6Df55ae6" + }, + { + "id": "0x0813D0D092b97C157A8e68A65ccdF41b956883ae", + "name": "LegendVIII", + "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x0813D0D092b97C157A8e68A65ccdF41b956883ae" + }, + { + "id": "0xE5572297718e1943A92BfEde2E67A060439e8EFd", + "name": "LegendV", + "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xE5572297718e1943A92BfEde2E67A060439e8EFd" + }, + { + "id": "0xd6579B6F3c036038239c51C3D2AE623bE1F23beD", + "name": "Nexa", + "description": "Nexa is a validator node on BSC", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xd6579B6F3c036038239c51C3D2AE623bE1F23beD" + }, + { + "id": "0xe9E14034Dc9452c0ADb1Be7f6CAB16809036C4f7", + "name": "NovaX", + "description": "NovaX can be your gateway to the BSC network", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xe9E14034Dc9452c0ADb1Be7f6CAB16809036C4f7" + }, + { + "id": "0xC1DA8b99674137CC4971bF974cdC5157c8B86AaF", + "name": "Axion", + "description": "Axion can be your gateway to the BSC network", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xC1DA8b99674137CC4971bF974cdC5157c8B86AaF" + }, + { + "id": "0x3bA645FB613eB9E8A44f84B230C037C9972615C3", + "name": "Zen", + "description": "Zen is a validator node on BSC", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x3bA645FB613eB9E8A44f84B230C037C9972615C3" + }, + { + "id": "0xB58ac55EB6B10e4f7918D77C92aA1cF5bB2DEd5e", + "name": "Shannon", + "description": "Shannon is a validator node on BSC", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xB58ac55EB6B10e4f7918D77C92aA1cF5bB2DEd5e" + }, + { + "id": "0xB7Fce9e05c681Fb92e867D9893255DCE3e8790a2", + "name": "Veri", + "description": "Veri is a validator node on BSC", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xB7Fce9e05c681Fb92e867D9893255DCE3e8790a2" + }, + { + "id": "0xBb772d6e37C3dDB0f08e05c10d05419dB54C9Fd8", + "name": "Star", + "description": "Star is a validator node on BSC", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xBb772d6e37C3dDB0f08e05c10d05419dB54C9Fd8" + }, + { + "id": "0xF9D1637D1e45e454F5ed1F7729a9AB55EC121E2c", + "name": "LegendIX", + "description": "LegendIX is a validator node on BSC", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xF9D1637D1e45e454F5ed1F7729a9AB55EC121E2c" + }, + { + "id": "0x5Ce119c093cFe978dcfd00e09E173FB97685069E", + "name": "Sigm8", + "description": "Sigm8 is a validator node on BSC", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x5Ce119c093cFe978dcfd00e09E173FB97685069E" + }, + { + "id": "0x9941BCe2601fC93478DF9f5F6Cc83F4FFC1D71d8", + "name": "Glorin", + "description": "Glorin is a validator node on BSC", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x9941BCe2601fC93478DF9f5F6Cc83F4FFC1D71d8" + }, + { + "id": "0xFA5E69f880c0287f5543CFe9167Db7B83bD8Dd79", + "name": "Raptas", + "description": "Raptas is a validator node on BSC", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xFA5E69f880c0287f5543CFe9167Db7B83bD8Dd79" + }, + { + "id": "0x95E105468b3a9E158df258ee385CA873cB566bF2", + "name": "Nozti", + "description": "Nozti is a validator node on BSC", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x95E105468b3a9E158df258ee385CA873cB566bF2" + }, + { + "id": "0xdcC46Bda9E79A11Ff9080F69CB1C0BCcc4737A34", + "name": "Tiollo", + "description": "Tiollo is a validator node on BSC", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xdcC46Bda9E79A11Ff9080F69CB1C0BCcc4737A34" + }, + { + "id": "0x487Ad3A6E2FFAa9f393ae839005aF2f4c00d9E63", + "name": "LegendIV", + "description": "LegendIV is a validator node on BSC", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x487Ad3A6E2FFAa9f393ae839005aF2f4c00d9E63" + } +] \ No newline at end of file diff --git a/blockchains/solana/assets/12BvLZtzjdssAycxPeBQUjukhmgQpULAvy6SroYdondo/info.json b/blockchains/solana/assets/12BvLZtzjdssAycxPeBQUjukhmgQpULAvy6SroYdondo/info.json new file mode 100644 index 0000000000000..19ae3853a2004 --- /dev/null +++ b/blockchains/solana/assets/12BvLZtzjdssAycxPeBQUjukhmgQpULAvy6SroYdondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "RTX (Ondo Tokenized)", + "type": "SPL", + "symbol": "RTXon", + "decimals": 9, + "description": "RTXon is the Ondo Tokenized version of RTX, giving tokenholders economic exposure similar to holding RTX and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/12BvLZtzjdssAycxPeBQUjukhmgQpULAvy6SroYdondo", + "status": "active", + "id": "12BvLZtzjdssAycxPeBQUjukhmgQpULAvy6SroYdondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/rtx-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rtx-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/12BvLZtzjdssAycxPeBQUjukhmgQpULAvy6SroYdondo/logo.png b/blockchains/solana/assets/12BvLZtzjdssAycxPeBQUjukhmgQpULAvy6SroYdondo/logo.png new file mode 100644 index 0000000000000..9a8d3dbdfa170 Binary files /dev/null and b/blockchains/solana/assets/12BvLZtzjdssAycxPeBQUjukhmgQpULAvy6SroYdondo/logo.png differ diff --git a/blockchains/solana/assets/12J2LD3tuLfdiVKnWZMHRMrbnXDY9rM4yqVLUa5yondo/info.json b/blockchains/solana/assets/12J2LD3tuLfdiVKnWZMHRMrbnXDY9rM4yqVLUa5yondo/info.json new file mode 100644 index 0000000000000..78eb9c78b97c1 --- /dev/null +++ b/blockchains/solana/assets/12J2LD3tuLfdiVKnWZMHRMrbnXDY9rM4yqVLUa5yondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Denison Mines (Ondo Tokenized)", + "type": "SPL", + "symbol": "DNNon", + "decimals": 9, + "description": "DNNon is the Ondo Tokenized version of Denison Mines, giving tokenholders economic exposure similar to holding DNN and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/12J2LD3tuLfdiVKnWZMHRMrbnXDY9rM4yqVLUa5yondo", + "status": "active", + "id": "12J2LD3tuLfdiVKnWZMHRMrbnXDY9rM4yqVLUa5yondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/denison-mines-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/denison-mines-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/12J2LD3tuLfdiVKnWZMHRMrbnXDY9rM4yqVLUa5yondo/logo.png b/blockchains/solana/assets/12J2LD3tuLfdiVKnWZMHRMrbnXDY9rM4yqVLUa5yondo/logo.png new file mode 100644 index 0000000000000..b3759cdc423d6 Binary files /dev/null and b/blockchains/solana/assets/12J2LD3tuLfdiVKnWZMHRMrbnXDY9rM4yqVLUa5yondo/logo.png differ diff --git a/blockchains/solana/assets/12MFXb5CGJ65S3mP3s4eMLaosGp6xGnQe3PxQD38nfJp/info.json b/blockchains/solana/assets/12MFXb5CGJ65S3mP3s4eMLaosGp6xGnQe3PxQD38nfJp/info.json new file mode 100644 index 0000000000000..cdab9d6beaa93 --- /dev/null +++ b/blockchains/solana/assets/12MFXb5CGJ65S3mP3s4eMLaosGp6xGnQe3PxQD38nfJp/info.json @@ -0,0 +1,21 @@ +{ + "name": "Skibidi Dop Dop", + "website": "https://skibidi.cool/", + "description": "The frontline memecoin brainrot of the internet. $SKIBIDI Dop Dop!", + "explorer": "https://solscan.io/token/12MFXb5CGJ65S3mP3s4eMLaosGp6xGnQe3PxQD38nfJp", + "type": "SPL", + "symbol": "Skibidi", + "decimals": 6, + "status": "active", + "id": "12MFXb5CGJ65S3mP3s4eMLaosGp6xGnQe3PxQD38nfJp", + "links": [ + { + "name": "x", + "url": "https://x.com/skibidi_solcto" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/skibidi-dop-dop" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/12MFXb5CGJ65S3mP3s4eMLaosGp6xGnQe3PxQD38nfJp/logo.png b/blockchains/solana/assets/12MFXb5CGJ65S3mP3s4eMLaosGp6xGnQe3PxQD38nfJp/logo.png new file mode 100644 index 0000000000000..3eb58b3a3b79b Binary files /dev/null and b/blockchains/solana/assets/12MFXb5CGJ65S3mP3s4eMLaosGp6xGnQe3PxQD38nfJp/logo.png differ diff --git a/blockchains/solana/assets/12XbSPVc5hmWjKUzf5ExTysM2pEL3tM953YkMXmLWkGd/info.json b/blockchains/solana/assets/12XbSPVc5hmWjKUzf5ExTysM2pEL3tM953YkMXmLWkGd/info.json new file mode 100644 index 0000000000000..cd9bab2aedaf8 --- /dev/null +++ b/blockchains/solana/assets/12XbSPVc5hmWjKUzf5ExTysM2pEL3tM953YkMXmLWkGd/info.json @@ -0,0 +1,21 @@ +{ + "name": "ASSAI", + "symbol": "ASSAI", + "type": "SPL", + "decimals": 9, + "description": "The first AI trading agent based on Assisterr for Solana", + "website": "https://www.assisterr.ai/", + "explorer": "https://solscan.io/token/12XbSPVc5hmWjKUzf5ExTysM2pEL3tM953YkMXmLWkGd", + "status": "active", + "id": "12XbSPVc5hmWjKUzf5ExTysM2pEL3tM953YkMXmLWkGd", + "links": [ + { + "name": "x", + "url": "https://x.com/AIasssss" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/assai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/12XbSPVc5hmWjKUzf5ExTysM2pEL3tM953YkMXmLWkGd/logo.png b/blockchains/solana/assets/12XbSPVc5hmWjKUzf5ExTysM2pEL3tM953YkMXmLWkGd/logo.png new file mode 100644 index 0000000000000..3ab31c8a3e802 Binary files /dev/null and b/blockchains/solana/assets/12XbSPVc5hmWjKUzf5ExTysM2pEL3tM953YkMXmLWkGd/logo.png differ diff --git a/blockchains/solana/assets/13QHuepdhtJ3urNsV9i1hdL8nQoca2G7ZaLzb5FYondo/info.json b/blockchains/solana/assets/13QHuepdhtJ3urNsV9i1hdL8nQoca2G7ZaLzb5FYondo/info.json new file mode 100644 index 0000000000000..110d303eff638 --- /dev/null +++ b/blockchains/solana/assets/13QHuepdhtJ3urNsV9i1hdL8nQoca2G7ZaLzb5FYondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Iren (Ondo Tokenized)", + "type": "SPL", + "symbol": "IRENon", + "decimals": 9, + "description": "IRENon is the Ondo Tokenized version of Iren, giving tokenholders economic exposure similar to holding IREN and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/13QHuepdhtJ3urNsV9i1hdL8nQoca2G7ZaLzb5FYondo", + "status": "active", + "id": "13QHuepdhtJ3urNsV9i1hdL8nQoca2G7ZaLzb5FYondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/iren-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/iren-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/13QHuepdhtJ3urNsV9i1hdL8nQoca2G7ZaLzb5FYondo/logo.png b/blockchains/solana/assets/13QHuepdhtJ3urNsV9i1hdL8nQoca2G7ZaLzb5FYondo/logo.png new file mode 100644 index 0000000000000..a6b39542d7a75 Binary files /dev/null and b/blockchains/solana/assets/13QHuepdhtJ3urNsV9i1hdL8nQoca2G7ZaLzb5FYondo/logo.png differ diff --git a/blockchains/solana/assets/13qtwy5fZi9Przz14pzo9xqFSr8QHmLyUpUCvP1xondo/info.json b/blockchains/solana/assets/13qtwy5fZi9Przz14pzo9xqFSr8QHmLyUpUCvP1xondo/info.json new file mode 100644 index 0000000000000..db89c7831940e --- /dev/null +++ b/blockchains/solana/assets/13qtwy5fZi9Przz14pzo9xqFSr8QHmLyUpUCvP1xondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "ON Semiconductor (Ondo Tokenized)", + "type": "SPL", + "symbol": "ONon", + "decimals": 9, + "description": "ONon is the Ondo Tokenized version of ON Semiconductor, giving tokenholders economic exposure similar to holding ON and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/13qtwy5fZi9Przz14pzo9xqFSr8QHmLyUpUCvP1xondo", + "status": "active", + "id": "13qtwy5fZi9Przz14pzo9xqFSr8QHmLyUpUCvP1xondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/on-semiconductor-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/on-semiconductor-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/13qtwy5fZi9Przz14pzo9xqFSr8QHmLyUpUCvP1xondo/logo.png b/blockchains/solana/assets/13qtwy5fZi9Przz14pzo9xqFSr8QHmLyUpUCvP1xondo/logo.png new file mode 100644 index 0000000000000..7692d40a5279f Binary files /dev/null and b/blockchains/solana/assets/13qtwy5fZi9Przz14pzo9xqFSr8QHmLyUpUCvP1xondo/logo.png differ diff --git a/blockchains/solana/assets/149o8ppQf9SzKCKXZ4v3dzHkwumvtQSRzSEkr29uondo/info.json b/blockchains/solana/assets/149o8ppQf9SzKCKXZ4v3dzHkwumvtQSRzSEkr29uondo/info.json new file mode 100644 index 0000000000000..4a7c42eec867a --- /dev/null +++ b/blockchains/solana/assets/149o8ppQf9SzKCKXZ4v3dzHkwumvtQSRzSEkr29uondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "KLA (Ondo Tokenized)", + "type": "SPL", + "symbol": "KLACon", + "decimals": 9, + "description": "KLACon is the Ondo Tokenized version of KLA, giving tokenholders economic exposure similar to holding KLAC and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/149o8ppQf9SzKCKXZ4v3dzHkwumvtQSRzSEkr29uondo", + "status": "active", + "id": "149o8ppQf9SzKCKXZ4v3dzHkwumvtQSRzSEkr29uondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kla-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kla-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/149o8ppQf9SzKCKXZ4v3dzHkwumvtQSRzSEkr29uondo/logo.png b/blockchains/solana/assets/149o8ppQf9SzKCKXZ4v3dzHkwumvtQSRzSEkr29uondo/logo.png new file mode 100644 index 0000000000000..484e882db5b2b Binary files /dev/null and b/blockchains/solana/assets/149o8ppQf9SzKCKXZ4v3dzHkwumvtQSRzSEkr29uondo/logo.png differ diff --git a/blockchains/solana/assets/14VP7DvCAdBCc5XGNZkPt6zhtPzJrWWS64Koxtxyondo/info.json b/blockchains/solana/assets/14VP7DvCAdBCc5XGNZkPt6zhtPzJrWWS64Koxtxyondo/info.json new file mode 100644 index 0000000000000..9c3102a8f9eb6 --- /dev/null +++ b/blockchains/solana/assets/14VP7DvCAdBCc5XGNZkPt6zhtPzJrWWS64Koxtxyondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Moderna (Ondo Tokenized)", + "type": "SPL", + "symbol": "MRNAon", + "decimals": 9, + "description": "MRNAon is the Ondo Tokenized version of Moderna, giving tokenholders economic exposure similar to holding MRNA and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/14VP7DvCAdBCc5XGNZkPt6zhtPzJrWWS64Koxtxyondo", + "status": "active", + "id": "14VP7DvCAdBCc5XGNZkPt6zhtPzJrWWS64Koxtxyondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/moderna-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/moderna-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/14VP7DvCAdBCc5XGNZkPt6zhtPzJrWWS64Koxtxyondo/logo.png b/blockchains/solana/assets/14VP7DvCAdBCc5XGNZkPt6zhtPzJrWWS64Koxtxyondo/logo.png new file mode 100644 index 0000000000000..1286f93f5591c Binary files /dev/null and b/blockchains/solana/assets/14VP7DvCAdBCc5XGNZkPt6zhtPzJrWWS64Koxtxyondo/logo.png differ diff --git a/blockchains/solana/assets/14W1itEkV7k1W819mLSknFTaMmkCtPokbF2tRkPUondo/info.json b/blockchains/solana/assets/14W1itEkV7k1W819mLSknFTaMmkCtPokbF2tRkPUondo/info.json new file mode 100644 index 0000000000000..1f55f13aec5d7 --- /dev/null +++ b/blockchains/solana/assets/14W1itEkV7k1W819mLSknFTaMmkCtPokbF2tRkPUondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "ProShares UltraPro QQQ (Ondo Tokenized)", + "type": "SPL", + "symbol": "TQQQon", + "decimals": 9, + "description": "TQQQon is the Ondo Tokenized version of the ProShares UltraPro QQQ, giving tokenholders economic exposure similar to holding TQQQ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/14W1itEkV7k1W819mLSknFTaMmkCtPokbF2tRkPUondo", + "status": "active", + "id": "14W1itEkV7k1W819mLSknFTaMmkCtPokbF2tRkPUondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/proshares-ultrapro-qqq-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/proshares-ultrapro-qqq-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/14W1itEkV7k1W819mLSknFTaMmkCtPokbF2tRkPUondo/logo.png b/blockchains/solana/assets/14W1itEkV7k1W819mLSknFTaMmkCtPokbF2tRkPUondo/logo.png new file mode 100644 index 0000000000000..d28deab3711b4 Binary files /dev/null and b/blockchains/solana/assets/14W1itEkV7k1W819mLSknFTaMmkCtPokbF2tRkPUondo/logo.png differ diff --git a/blockchains/solana/assets/14g8MRPzNrioBjQqc7qvfxFc3dE14RkLAKXvZzCTpump/info.json b/blockchains/solana/assets/14g8MRPzNrioBjQqc7qvfxFc3dE14RkLAKXvZzCTpump/info.json new file mode 100644 index 0000000000000..9b3d35d9ef457 --- /dev/null +++ b/blockchains/solana/assets/14g8MRPzNrioBjQqc7qvfxFc3dE14RkLAKXvZzCTpump/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE EURC", + "type": "SPL", + "symbol": "FAKE EURC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/14g8MRPzNrioBjQqc7qvfxFc3dE14RkLAKXvZzCTpump", + "explorer": "https://solscan.io/token/14g8MRPzNrioBjQqc7qvfxFc3dE14RkLAKXvZzCTpump", + "status": "spam", + "id": "14g8MRPzNrioBjQqc7qvfxFc3dE14RkLAKXvZzCTpump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/14kLsQVmc64qZexYuR4XGop9y8BeMkd77pJUm1Rhondo/info.json b/blockchains/solana/assets/14kLsQVmc64qZexYuR4XGop9y8BeMkd77pJUm1Rhondo/info.json new file mode 100644 index 0000000000000..99859dc79e9bd --- /dev/null +++ b/blockchains/solana/assets/14kLsQVmc64qZexYuR4XGop9y8BeMkd77pJUm1Rhondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Bilibili (Ondo Tokenized)", + "type": "SPL", + "symbol": "BILIon", + "decimals": 9, + "description": "BILIon is the Ondo Tokenized version of Bilibili, giving tokenholders economic exposure similar to holding BILI and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/14kLsQVmc64qZexYuR4XGop9y8BeMkd77pJUm1Rhondo", + "status": "active", + "id": "14kLsQVmc64qZexYuR4XGop9y8BeMkd77pJUm1Rhondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bilibili-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bilibili-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/14kLsQVmc64qZexYuR4XGop9y8BeMkd77pJUm1Rhondo/logo.png b/blockchains/solana/assets/14kLsQVmc64qZexYuR4XGop9y8BeMkd77pJUm1Rhondo/logo.png new file mode 100644 index 0000000000000..b0ed726070943 Binary files /dev/null and b/blockchains/solana/assets/14kLsQVmc64qZexYuR4XGop9y8BeMkd77pJUm1Rhondo/logo.png differ diff --git a/blockchains/solana/assets/1GNFMryQ6c9ZpMhgNimmsbtgYM21qnBJgRAFoNiondo/info.json b/blockchains/solana/assets/1GNFMryQ6c9ZpMhgNimmsbtgYM21qnBJgRAFoNiondo/info.json new file mode 100644 index 0000000000000..0eac10ca1ba18 --- /dev/null +++ b/blockchains/solana/assets/1GNFMryQ6c9ZpMhgNimmsbtgYM21qnBJgRAFoNiondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Occidental Petroleum (Ondo Tokenized)", + "type": "SPL", + "symbol": "OXYon", + "decimals": 9, + "description": "OXYon is the Ondo Tokenized version of Occidental Petroleum, giving tokenholders economic exposure similar to holding OXY and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/1GNFMryQ6c9ZpMhgNimmsbtgYM21qnBJgRAFoNiondo", + "status": "active", + "id": "1GNFMryQ6c9ZpMhgNimmsbtgYM21qnBJgRAFoNiondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/occidental-petroleum-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/occidental-petroleum-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/1GNFMryQ6c9ZpMhgNimmsbtgYM21qnBJgRAFoNiondo/logo.png b/blockchains/solana/assets/1GNFMryQ6c9ZpMhgNimmsbtgYM21qnBJgRAFoNiondo/logo.png new file mode 100644 index 0000000000000..a552db34196ff Binary files /dev/null and b/blockchains/solana/assets/1GNFMryQ6c9ZpMhgNimmsbtgYM21qnBJgRAFoNiondo/logo.png differ diff --git a/blockchains/solana/assets/1MGRpPrkhEsCm2GCWD3rsvEU77xTTLAzfKXeFgFondo/info.json b/blockchains/solana/assets/1MGRpPrkhEsCm2GCWD3rsvEU77xTTLAzfKXeFgFondo/info.json new file mode 100644 index 0000000000000..beba1cd9dcbce --- /dev/null +++ b/blockchains/solana/assets/1MGRpPrkhEsCm2GCWD3rsvEU77xTTLAzfKXeFgFondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Intuitive Surgical (Ondo Tokenized)", + "type": "SPL", + "symbol": "ISRGon", + "decimals": 9, + "description": "ISRGon is the Ondo Tokenized version of Intuitive Surgical, giving tokenholders economic exposure similar to holding ISRG and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/1MGRpPrkhEsCm2GCWD3rsvEU77xTTLAzfKXeFgFondo", + "status": "active", + "id": "1MGRpPrkhEsCm2GCWD3rsvEU77xTTLAzfKXeFgFondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/intuitive-surgical-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/intuitive-surgical-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/1MGRpPrkhEsCm2GCWD3rsvEU77xTTLAzfKXeFgFondo/logo.png b/blockchains/solana/assets/1MGRpPrkhEsCm2GCWD3rsvEU77xTTLAzfKXeFgFondo/logo.png new file mode 100644 index 0000000000000..3d67baddce3dd Binary files /dev/null and b/blockchains/solana/assets/1MGRpPrkhEsCm2GCWD3rsvEU77xTTLAzfKXeFgFondo/logo.png differ diff --git a/blockchains/solana/assets/1Qf8gESP4i6CFNWerUSDdLKJ9U1LpqTYvjJ2MM4pain/info.json b/blockchains/solana/assets/1Qf8gESP4i6CFNWerUSDdLKJ9U1LpqTYvjJ2MM4pain/info.json new file mode 100644 index 0000000000000..595158cf2f311 --- /dev/null +++ b/blockchains/solana/assets/1Qf8gESP4i6CFNWerUSDdLKJ9U1LpqTYvjJ2MM4pain/info.json @@ -0,0 +1,14 @@ +{ + "name": "PAIN", + "type": "SPL", + "symbol": "PAIN", + "decimals": 6, + "website": "https://paintoken.com/", + "description": "NO PAIN, NO GAIN.", + "explorer": "https://explorer.solana.com/address/1Qf8gESP4i6CFNWerUSDdLKJ9U1LpqTYvjJ2MM4pain", + "status": "active", + "id": "1Qf8gESP4i6CFNWerUSDdLKJ9U1LpqTYvjJ2MM4pain", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/1Qf8gESP4i6CFNWerUSDdLKJ9U1LpqTYvjJ2MM4pain/logo.png b/blockchains/solana/assets/1Qf8gESP4i6CFNWerUSDdLKJ9U1LpqTYvjJ2MM4pain/logo.png new file mode 100644 index 0000000000000..d26e3162ec9b3 Binary files /dev/null and b/blockchains/solana/assets/1Qf8gESP4i6CFNWerUSDdLKJ9U1LpqTYvjJ2MM4pain/logo.png differ diff --git a/blockchains/solana/assets/1mfQXHos9GXpdCc9bYQWSBegod3MDaK5zEb49ZHdaos/info.json b/blockchains/solana/assets/1mfQXHos9GXpdCc9bYQWSBegod3MDaK5zEb49ZHdaos/info.json new file mode 100644 index 0000000000000..6667ad3ed55cb --- /dev/null +++ b/blockchains/solana/assets/1mfQXHos9GXpdCc9bYQWSBegod3MDaK5zEb49ZHdaos/info.json @@ -0,0 +1,11 @@ +{ + "name": "SPAM KLIP", + "type": "SPL", + "symbol": "SPAM KLIP", + "decimals": 6, + "website": "https://solscan.io/token/1mfQXHos9GXpdCc9bYQWSBegod3MDaK5zEb49ZHdaos", + "description": "SPAM KLIP", + "explorer": "https://explorer.solana.com/address/1mfQXHos9GXpdCc9bYQWSBegod3MDaK5zEb49ZHdaos", + "status": "spam", + "id": "1mfQXHos9GXpdCc9bYQWSBegod3MDaK5zEb49ZHdaos" +} \ No newline at end of file diff --git a/blockchains/solana/assets/25hAyBQfoDhfWx9ay6rarbgvWGwDdNqcHsXS3jQ3mTDJ/info.json b/blockchains/solana/assets/25hAyBQfoDhfWx9ay6rarbgvWGwDdNqcHsXS3jQ3mTDJ/info.json new file mode 100644 index 0000000000000..9a326df99bafd --- /dev/null +++ b/blockchains/solana/assets/25hAyBQfoDhfWx9ay6rarbgvWGwDdNqcHsXS3jQ3mTDJ/info.json @@ -0,0 +1,21 @@ +{ + "name": "MANEKI", + "website": "https://manekineko.world/", + "description": "Solana native cat coin $MANEKI, is a symbol of good luck, success, prosperity, wisdom and leadership.", + "explorer": "https://solscan.io/token/25hAyBQfoDhfWx9ay6rarbgvWGwDdNqcHsXS3jQ3mTDJ", + "type": "SPL", + "symbol": "MANEKI", + "decimals": 5, + "status": "active", + "id": "25hAyBQfoDhfWx9ay6rarbgvWGwDdNqcHsXS3jQ3mTDJ", + "links": [ + { + "name": "x", + "url": "https://x.com/unrevealedxyz?s=21&t=0RtVzV5UpcseQByG0w-mOQ" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/maneki" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/25hAyBQfoDhfWx9ay6rarbgvWGwDdNqcHsXS3jQ3mTDJ/logo.png b/blockchains/solana/assets/25hAyBQfoDhfWx9ay6rarbgvWGwDdNqcHsXS3jQ3mTDJ/logo.png new file mode 100644 index 0000000000000..98304fb8456ef Binary files /dev/null and b/blockchains/solana/assets/25hAyBQfoDhfWx9ay6rarbgvWGwDdNqcHsXS3jQ3mTDJ/logo.png differ diff --git a/blockchains/solana/assets/26KMQVgDUoB6rEfnJ51yAABWWJND8uMtpnQgsHQ64Udr/info.json b/blockchains/solana/assets/26KMQVgDUoB6rEfnJ51yAABWWJND8uMtpnQgsHQ64Udr/info.json new file mode 100644 index 0000000000000..ad6f874aba89e --- /dev/null +++ b/blockchains/solana/assets/26KMQVgDUoB6rEfnJ51yAABWWJND8uMtpnQgsHQ64Udr/info.json @@ -0,0 +1,21 @@ +{ + "name": "SAD HAMSTER", + "type": "SPL", + "symbol": "HAMMY", + "decimals": 6, + "website": "https://www.sadhamster.io/", + "description": "My hamster died. He was a good hamster, he wasn't bad but just a little fat. How'd he die? Manslaughter? Or was it the cat. Anyhow, I’m sad.", + "explorer": "https://solscan.io/token/26KMQVgDUoB6rEfnJ51yAABWWJND8uMtpnQgsHQ64Udr", + "status": "active", + "id": "26KMQVgDUoB6rEfnJ51yAABWWJND8uMtpnQgsHQ64Udr", + "links": [ + { + "name": "x", + "url": "https://x.com/HammyCommunity" + }, + { + "name": "telegram", + "url": "https://t.me/HammyArmy" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/26KMQVgDUoB6rEfnJ51yAABWWJND8uMtpnQgsHQ64Udr/logo.png b/blockchains/solana/assets/26KMQVgDUoB6rEfnJ51yAABWWJND8uMtpnQgsHQ64Udr/logo.png new file mode 100644 index 0000000000000..97f3b9e25bf31 Binary files /dev/null and b/blockchains/solana/assets/26KMQVgDUoB6rEfnJ51yAABWWJND8uMtpnQgsHQ64Udr/logo.png differ diff --git a/blockchains/solana/assets/26f12PmBk77wQV1TzLe8XKkNBvMFggbuypxdtMLzNLzz/info.json b/blockchains/solana/assets/26f12PmBk77wQV1TzLe8XKkNBvMFggbuypxdtMLzNLzz/info.json new file mode 100644 index 0000000000000..c6879ff08996a --- /dev/null +++ b/blockchains/solana/assets/26f12PmBk77wQV1TzLe8XKkNBvMFggbuypxdtMLzNLzz/info.json @@ -0,0 +1,21 @@ +{ + "name": "ZIGChain", + "type": "SPL", + "symbol": "ZIG", + "decimals": 8, + "website": "https://zignaly.com/", + "description": "Zignaly is a social investment platform where users can follow winning strategies and participate in their returns.", + "explorer": "https://solscan.io/token/26f12PmBk77wQV1TzLe8XKkNBvMFggbuypxdtMLzNLzz", + "status": "active", + "id": "26f12PmBk77wQV1TzLe8XKkNBvMFggbuypxdtMLzNLzz", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zigcoin/" + }, + { + "name": "x", + "url": "https://x.com/zignaly" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/26f12PmBk77wQV1TzLe8XKkNBvMFggbuypxdtMLzNLzz/logo.png b/blockchains/solana/assets/26f12PmBk77wQV1TzLe8XKkNBvMFggbuypxdtMLzNLzz/logo.png new file mode 100644 index 0000000000000..e610bbed620f8 Binary files /dev/null and b/blockchains/solana/assets/26f12PmBk77wQV1TzLe8XKkNBvMFggbuypxdtMLzNLzz/logo.png differ diff --git a/blockchains/solana/assets/27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4/info.json b/blockchains/solana/assets/27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4/info.json new file mode 100644 index 0000000000000..c5afcb7fc17ba --- /dev/null +++ b/blockchains/solana/assets/27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4/info.json @@ -0,0 +1,21 @@ +{ + "name": "Jupiter Perps LP", + "symbol": "JLP", + "type": "SPL", + "decimals": 6, + "description": "The live Jupiter Perps LP price today is $2.06 USD with a 24-hour trading volume of $31,355,509 USD.", + "website": "https://jup.ag", + "explorer": "https://solscan.io/token/27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4", + "status": "active", + "id": "27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4", + "links": [ + { + "name": "x", + "url": "https://x.com/JupiterExchange" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jupiter-perps-lp/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4/logo.png b/blockchains/solana/assets/27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4/logo.png new file mode 100644 index 0000000000000..266099b84950c Binary files /dev/null and b/blockchains/solana/assets/27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4/logo.png differ diff --git a/blockchains/solana/assets/29i5WD8sXxso8ZGMpCBpSpffpJQZsSdfiEePi7Dwpump/info.json b/blockchains/solana/assets/29i5WD8sXxso8ZGMpCBpSpffpJQZsSdfiEePi7Dwpump/info.json new file mode 100644 index 0000000000000..34fb78f266612 --- /dev/null +++ b/blockchains/solana/assets/29i5WD8sXxso8ZGMpCBpSpffpJQZsSdfiEePi7Dwpump/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM United Stable Dollar Trump", + "type": "SPL", + "symbol": "SCAM USDT", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/29i5WD8sXxso8ZGMpCBpSpffpJQZsSdfiEePi7Dwpump", + "explorer": "https://solscan.io/token/29i5WD8sXxso8ZGMpCBpSpffpJQZsSdfiEePi7Dwpump", + "status": "spam", + "id": "29i5WD8sXxso8ZGMpCBpSpffpJQZsSdfiEePi7Dwpump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/2Crpmvk14W1tzqLJ4QGc6KSkzHDju93jcqYq6kSs4BGi/info.json b/blockchains/solana/assets/2Crpmvk14W1tzqLJ4QGc6KSkzHDju93jcqYq6kSs4BGi/info.json new file mode 100644 index 0000000000000..57a76adfdd634 --- /dev/null +++ b/blockchains/solana/assets/2Crpmvk14W1tzqLJ4QGc6KSkzHDju93jcqYq6kSs4BGi/info.json @@ -0,0 +1,28 @@ +{ + "name": "MooCat", + "type": "SPL", + "symbol": "MooCat", + "decimals": 6, + "description": "MooCat is not just a memecoin; it’s a revolution in the meme economy. Fueled by “rocket-to-the-moon” technology, this charismatic cat with a cow hat is ready to lead the movement in breaking the chains of conventional finance.", + "website": "https://moocatsolana.xyz/", + "explorer": "https://solscan.io/token/2Crpmvk14W1tzqLJ4QGc6KSkzHDju93jcqYq6kSs4BGi", + "id": "2Crpmvk14W1tzqLJ4QGc6KSkzHDju93jcqYq6kSs4BGi", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/MooCatSolana" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/moocat/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/moocat" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2Crpmvk14W1tzqLJ4QGc6KSkzHDju93jcqYq6kSs4BGi/logo.png b/blockchains/solana/assets/2Crpmvk14W1tzqLJ4QGc6KSkzHDju93jcqYq6kSs4BGi/logo.png new file mode 100644 index 0000000000000..7d1709f521c56 Binary files /dev/null and b/blockchains/solana/assets/2Crpmvk14W1tzqLJ4QGc6KSkzHDju93jcqYq6kSs4BGi/logo.png differ diff --git a/blockchains/solana/assets/2D8exaxLnjmhzTHAU6yhwEd46rDCovNua9X1SwkT7KU2/info.json b/blockchains/solana/assets/2D8exaxLnjmhzTHAU6yhwEd46rDCovNua9X1SwkT7KU2/info.json new file mode 100644 index 0000000000000..5777c3bd8f82e --- /dev/null +++ b/blockchains/solana/assets/2D8exaxLnjmhzTHAU6yhwEd46rDCovNua9X1SwkT7KU2/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT HONEYPOT Moreno", + "type": "SPL", + "symbol": "HONEYPOT HONEYPOT XMR", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/2D8exaxLnjmhzTHAU6yhwEd46rDCovNua9X1SwkT7KU2", + "explorer": "https://solscan.io/token/2D8exaxLnjmhzTHAU6yhwEd46rDCovNua9X1SwkT7KU2", + "status": "spam", + "id": "2D8exaxLnjmhzTHAU6yhwEd46rDCovNua9X1SwkT7KU2" +} \ No newline at end of file diff --git a/blockchains/solana/assets/2Dyzu65QA9zdX1UeE7Gx71k7fiwyUK6sZdrvJ7auq5wm/info.json b/blockchains/solana/assets/2Dyzu65QA9zdX1UeE7Gx71k7fiwyUK6sZdrvJ7auq5wm/info.json new file mode 100644 index 0000000000000..dd93bd869936a --- /dev/null +++ b/blockchains/solana/assets/2Dyzu65QA9zdX1UeE7Gx71k7fiwyUK6sZdrvJ7auq5wm/info.json @@ -0,0 +1,24 @@ +{ + "name": "Turbo", + "website": "https://sites.google.com/view/turbotoad", + "description": "Turbo Token is a revolutionary meme coin featuring our futuristic toad mascot.", + "explorer": "https://solscan.io/token/2Dyzu65QA9zdX1UeE7Gx71k7fiwyUK6sZdrvJ7auq5wm", + "type": "SPL", + "symbol": "TURBO", + "decimals": 8, + "status": "active", + "id": "2Dyzu65QA9zdX1UeE7Gx71k7fiwyUK6sZdrvJ7auq5wm", + "links": [ + { + "name": "discord", + "url": "https://discord.com/FYdKKmV3CU" + }, + { + "name": "x", + "url": "https://x.com/TurboToadToken" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2Dyzu65QA9zdX1UeE7Gx71k7fiwyUK6sZdrvJ7auq5wm/logo.png b/blockchains/solana/assets/2Dyzu65QA9zdX1UeE7Gx71k7fiwyUK6sZdrvJ7auq5wm/logo.png new file mode 100644 index 0000000000000..7bbf06f202f3f Binary files /dev/null and b/blockchains/solana/assets/2Dyzu65QA9zdX1UeE7Gx71k7fiwyUK6sZdrvJ7auq5wm/logo.png differ diff --git a/blockchains/solana/assets/2Eb2d8QA2z1YQG7JGPxfwr7Si3HxmFTGxihDkCTyzbSo/info.json b/blockchains/solana/assets/2Eb2d8QA2z1YQG7JGPxfwr7Si3HxmFTGxihDkCTyzbSo/info.json new file mode 100644 index 0000000000000..0b90d56d2a54a --- /dev/null +++ b/blockchains/solana/assets/2Eb2d8QA2z1YQG7JGPxfwr7Si3HxmFTGxihDkCTyzbSo/info.json @@ -0,0 +1,17 @@ +{ + "name": "UDDER", + "website": "https://udder.wtf", + "description": "Milk it for all it's worth.", + "explorer": "https://solscan.io/token/2Eb2d8QA2z1YQG7JGPxfwr7Si3HxmFTGxihDkCTyzbSo", + "type": "SPL", + "symbol": "UDDER", + "decimals": 6, + "status": "active", + "id": "2Eb2d8QA2z1YQG7JGPxfwr7Si3HxmFTGxihDkCTyzbSo", + "links": [ + { + "name": "x", + "url": "https://x.com/UdderOnSol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2Eb2d8QA2z1YQG7JGPxfwr7Si3HxmFTGxihDkCTyzbSo/logo.png b/blockchains/solana/assets/2Eb2d8QA2z1YQG7JGPxfwr7Si3HxmFTGxihDkCTyzbSo/logo.png new file mode 100644 index 0000000000000..8537d2c83d235 Binary files /dev/null and b/blockchains/solana/assets/2Eb2d8QA2z1YQG7JGPxfwr7Si3HxmFTGxihDkCTyzbSo/logo.png differ diff --git a/blockchains/solana/assets/2FPyTwcZLUg1MDrwsyoP4D6s1tM7hAkHYRjkNb5w6Pxk/info.json b/blockchains/solana/assets/2FPyTwcZLUg1MDrwsyoP4D6s1tM7hAkHYRjkNb5w6Pxk/info.json index f8168b13bf07f..03ad81968cced 100644 --- a/blockchains/solana/assets/2FPyTwcZLUg1MDrwsyoP4D6s1tM7hAkHYRjkNb5w6Pxk/info.json +++ b/blockchains/solana/assets/2FPyTwcZLUg1MDrwsyoP4D6s1tM7hAkHYRjkNb5w6Pxk/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/ethereum/ethereum-org-website" }, { - "name": "twitter", - "url": "https://twitter.com/ethdotorg" + "name": "x", + "url": "https://x.com/ethdotorg" }, { "name": "youtube", diff --git a/blockchains/solana/assets/2GmUPhpe93kcTJZrC7NJ2keeDZRT5dBveUgegb13pump/info.json b/blockchains/solana/assets/2GmUPhpe93kcTJZrC7NJ2keeDZRT5dBveUgegb13pump/info.json new file mode 100644 index 0000000000000..cc0aa8bb07411 --- /dev/null +++ b/blockchains/solana/assets/2GmUPhpe93kcTJZrC7NJ2keeDZRT5dBveUgegb13pump/info.json @@ -0,0 +1,17 @@ +{ + "name": "TruthChain", + "symbol": "truth", + "type": "SPL", + "decimals": 6, + "description": "TruthChain is building decentralized Community Notes for LLMs.", + "website": "https://x.com/truthchain", + "explorer": "https://solscan.io/token/2GmUPhpe93kcTJZrC7NJ2keeDZRT5dBveUgegb13pump", + "status": "active", + "id": "2GmUPhpe93kcTJZrC7NJ2keeDZRT5dBveUgegb13pump", + "links": [ + { + "name": "x", + "url": "https://x.com/truthchain" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2GmUPhpe93kcTJZrC7NJ2keeDZRT5dBveUgegb13pump/logo.png b/blockchains/solana/assets/2GmUPhpe93kcTJZrC7NJ2keeDZRT5dBveUgegb13pump/logo.png new file mode 100644 index 0000000000000..ff1c1441f02be Binary files /dev/null and b/blockchains/solana/assets/2GmUPhpe93kcTJZrC7NJ2keeDZRT5dBveUgegb13pump/logo.png differ diff --git a/blockchains/solana/assets/2HHgCLfKA5Rd1Fn9xAxfYzS3XoR5NnuxKDYz2EmWpump/info.json b/blockchains/solana/assets/2HHgCLfKA5Rd1Fn9xAxfYzS3XoR5NnuxKDYz2EmWpump/info.json new file mode 100644 index 0000000000000..753233c6c527f --- /dev/null +++ b/blockchains/solana/assets/2HHgCLfKA5Rd1Fn9xAxfYzS3XoR5NnuxKDYz2EmWpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Strategic Bitcoin Reserve", + "website": "https://sbrsol.world/", + "description": "Make BTC Great Again", + "explorer": "https://solscan.io/token/2HHgCLfKA5Rd1Fn9xAxfYzS3XoR5NnuxKDYz2EmWpump", + "type": "SPL", + "symbol": "SBR", + "decimals": 6, + "status": "active", + "id": "2HHgCLfKA5Rd1Fn9xAxfYzS3XoR5NnuxKDYz2EmWpump", + "links": [ + { + "name": "x", + "url": "https://x.com/sbronsol" + }, + { + "name": "telegram", + "url": "https://t.me/sbrsolana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2HHgCLfKA5Rd1Fn9xAxfYzS3XoR5NnuxKDYz2EmWpump/logo.png b/blockchains/solana/assets/2HHgCLfKA5Rd1Fn9xAxfYzS3XoR5NnuxKDYz2EmWpump/logo.png new file mode 100644 index 0000000000000..5a9b8aaa43b11 Binary files /dev/null and b/blockchains/solana/assets/2HHgCLfKA5Rd1Fn9xAxfYzS3XoR5NnuxKDYz2EmWpump/logo.png differ diff --git a/blockchains/solana/assets/2JcXacFwt9mVAwBQ5nZkYwCyXQkRcdsYrDXn6hj22SbP/info.json b/blockchains/solana/assets/2JcXacFwt9mVAwBQ5nZkYwCyXQkRcdsYrDXn6hj22SbP/info.json new file mode 100644 index 0000000000000..3539675cab752 --- /dev/null +++ b/blockchains/solana/assets/2JcXacFwt9mVAwBQ5nZkYwCyXQkRcdsYrDXn6hj22SbP/info.json @@ -0,0 +1,21 @@ +{ + "name": "mini", + "website": "https://minimini.lol/", + "description": "Mini represents a gang. The community built around this project is more than just a meme. We are a family.", + "explorer": "https://solscan.io/token/2JcXacFwt9mVAwBQ5nZkYwCyXQkRcdsYrDXn6hj22SbP", + "type": "SPL", + "symbol": "mini", + "decimals": 6, + "status": "active", + "id": "2JcXacFwt9mVAwBQ5nZkYwCyXQkRcdsYrDXn6hj22SbP", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mini/" + }, + { + "name": "x", + "url": "https://x.com/minigangsol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2JcXacFwt9mVAwBQ5nZkYwCyXQkRcdsYrDXn6hj22SbP/logo.png b/blockchains/solana/assets/2JcXacFwt9mVAwBQ5nZkYwCyXQkRcdsYrDXn6hj22SbP/logo.png new file mode 100644 index 0000000000000..4cf50da437f81 Binary files /dev/null and b/blockchains/solana/assets/2JcXacFwt9mVAwBQ5nZkYwCyXQkRcdsYrDXn6hj22SbP/logo.png differ diff --git a/blockchains/solana/assets/2N8qruAsuSre8vEopvgEgBHigfnqBTFbmf9XTDw9pump/info.json b/blockchains/solana/assets/2N8qruAsuSre8vEopvgEgBHigfnqBTFbmf9XTDw9pump/info.json new file mode 100644 index 0000000000000..cbd5b40dbdb8c --- /dev/null +++ b/blockchains/solana/assets/2N8qruAsuSre8vEopvgEgBHigfnqBTFbmf9XTDw9pump/info.json @@ -0,0 +1,17 @@ +{ + "name": "GROK'S SHITCOIN", + "type": "SPL", + "symbol": "doodoocoin", + "website": "https://pump.fun/coin/2N8qruAsuSre8vEopvgEgBHigfnqBTFbmf9XTDw9pump", + "decimals": 6, + "description": "DooDooCoin is a playful, valueless cryptocurrency, often called a 'shitcoin' for its lack of practical use and speculative nature in the crypto market", + "explorer": "https://solscan.io/token/2N8qruAsuSre8vEopvgEgBHigfnqBTFbmf9XTDw9pump", + "status": "active", + "id": "2N8qruAsuSre8vEopvgEgBHigfnqBTFbmf9XTDw9pump", + "links": [ + { + "name": "x", + "url": "https://x.com/grok" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2N8qruAsuSre8vEopvgEgBHigfnqBTFbmf9XTDw9pump/logo.png b/blockchains/solana/assets/2N8qruAsuSre8vEopvgEgBHigfnqBTFbmf9XTDw9pump/logo.png new file mode 100644 index 0000000000000..91fcc9ed84f74 Binary files /dev/null and b/blockchains/solana/assets/2N8qruAsuSre8vEopvgEgBHigfnqBTFbmf9XTDw9pump/logo.png differ diff --git a/blockchains/solana/assets/2QYmQA5k8dFei18MjoaHocEzStBohFiifdnK2vi2pump/info.json b/blockchains/solana/assets/2QYmQA5k8dFei18MjoaHocEzStBohFiifdnK2vi2pump/info.json new file mode 100644 index 0000000000000..b506f667865e3 --- /dev/null +++ b/blockchains/solana/assets/2QYmQA5k8dFei18MjoaHocEzStBohFiifdnK2vi2pump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Baby Ripple", + "type": "SPL", + "symbol": "BABYXRP", + "decimals": 6, + "description": "Welcome to the world of Baby XRP ($BABYXRP) – where fun meets excitement! Inspired by the unstoppable energy of XRP, Baby XRP is here to add a playful twist to your day.", + "website": "https://babyxrp.xyz/", + "explorer": "https://solscan.io/token/2QYmQA5k8dFei18MjoaHocEzStBohFiifdnK2vi2pump", + "id": "2QYmQA5k8dFei18MjoaHocEzStBohFiifdnK2vi2pump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/BabyRippleXRP" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/baby-ripple-xyz/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2QYmQA5k8dFei18MjoaHocEzStBohFiifdnK2vi2pump/logo.png b/blockchains/solana/assets/2QYmQA5k8dFei18MjoaHocEzStBohFiifdnK2vi2pump/logo.png new file mode 100644 index 0000000000000..cf7f1d601f2c3 Binary files /dev/null and b/blockchains/solana/assets/2QYmQA5k8dFei18MjoaHocEzStBohFiifdnK2vi2pump/logo.png differ diff --git a/blockchains/solana/assets/2ScY54gp4MpLyJSXssfZFNpgPncVhbQcENQ3jTwUWQP3/info.json b/blockchains/solana/assets/2ScY54gp4MpLyJSXssfZFNpgPncVhbQcENQ3jTwUWQP3/info.json new file mode 100644 index 0000000000000..bda073ec932b6 --- /dev/null +++ b/blockchains/solana/assets/2ScY54gp4MpLyJSXssfZFNpgPncVhbQcENQ3jTwUWQP3/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM Monero", + "type": "SPL", + "symbol": "SCAM XMR", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/2ScY54gp4MpLyJSXssfZFNpgPncVhbQcENQ3jTwUWQP3", + "explorer": "https://solscan.io/token/2ScY54gp4MpLyJSXssfZFNpgPncVhbQcENQ3jTwUWQP3", + "status": "spam", + "id": "2ScY54gp4MpLyJSXssfZFNpgPncVhbQcENQ3jTwUWQP3" +} \ No newline at end of file diff --git a/blockchains/solana/assets/2XPqoKfJitk8YcMDGBKy7CMzRRyF2X9PniZeCykDUZev/info.json b/blockchains/solana/assets/2XPqoKfJitk8YcMDGBKy7CMzRRyF2X9PniZeCykDUZev/info.json new file mode 100644 index 0000000000000..390c05714d60b --- /dev/null +++ b/blockchains/solana/assets/2XPqoKfJitk8YcMDGBKy7CMzRRyF2X9PniZeCykDUZev/info.json @@ -0,0 +1,21 @@ +{ + "name": "HUND", + "symbol": "HUND", + "type": "SPL", + "decimals": 8, + "description": "A utility-driven memecoin that integrates AI solutions, featuring a decentralized exchange (DEX), various tools, a launchpad, NFTs, game, and memes.", + "website": "https://www.hundonsol.com/", + "explorer": "https://solscan.io/token/2XPqoKfJitk8YcMDGBKy7CMzRRyF2X9PniZeCykDUZev", + "status": "active", + "id": "2XPqoKfJitk8YcMDGBKy7CMzRRyF2X9PniZeCykDUZev", + "links": [ + { + "name": "x", + "url": "https://x.com/HundOnSol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hund-meme-coin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2XPqoKfJitk8YcMDGBKy7CMzRRyF2X9PniZeCykDUZev/logo.png b/blockchains/solana/assets/2XPqoKfJitk8YcMDGBKy7CMzRRyF2X9PniZeCykDUZev/logo.png new file mode 100644 index 0000000000000..72ab2d23c741c Binary files /dev/null and b/blockchains/solana/assets/2XPqoKfJitk8YcMDGBKy7CMzRRyF2X9PniZeCykDUZev/logo.png differ diff --git a/blockchains/solana/assets/2XW7Qx12j6djvB5Dea2d4jJFNu927CtutaVjm887pump/info.json b/blockchains/solana/assets/2XW7Qx12j6djvB5Dea2d4jJFNu927CtutaVjm887pump/info.json new file mode 100644 index 0000000000000..f328eb682bd80 --- /dev/null +++ b/blockchains/solana/assets/2XW7Qx12j6djvB5Dea2d4jJFNu927CtutaVjm887pump/info.json @@ -0,0 +1,25 @@ +{ + "name": "Kichi", + "type": "SOL", + "symbol": "Kichi", + "decimals": 6, + "description": "Kichi - Unleash the Fire, Rule the Wild!", + "website": "https://kichi.meme/", + "explorer": "https://solscan.io/token/2XW7Qx12j6djvB5Dea2d4jJFNu927CtutaVjm887pump", + "id": "2XW7Qx12j6djvB5Dea2d4jJFNu927CtutaVjm887pump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Kichi_Solana" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kichi" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/2XW7Qx12j6djvB5Dea2d4jJFNu927CtutaVjm887pump/logo.png b/blockchains/solana/assets/2XW7Qx12j6djvB5Dea2d4jJFNu927CtutaVjm887pump/logo.png new file mode 100644 index 0000000000000..2b7ee60a73acf Binary files /dev/null and b/blockchains/solana/assets/2XW7Qx12j6djvB5Dea2d4jJFNu927CtutaVjm887pump/logo.png differ diff --git a/blockchains/solana/assets/2XsexjLapEenZobsrqXWZsDga4nNU7XmoW48NgWoGzht/info.json b/blockchains/solana/assets/2XsexjLapEenZobsrqXWZsDga4nNU7XmoW48NgWoGzht/info.json new file mode 100644 index 0000000000000..20d2c7ec63138 --- /dev/null +++ b/blockchains/solana/assets/2XsexjLapEenZobsrqXWZsDga4nNU7XmoW48NgWoGzht/info.json @@ -0,0 +1,21 @@ +{ + "name": "Tonic", + "symbol": "TONIC", + "type": "SPL", + "decimals": 6, + "description": "The Bonk Dog", + "website": "https://tonic-sol.fun/", + "explorer": "https://solscan.io/token/2XsexjLapEenZobsrqXWZsDga4nNU7XmoW48NgWoGzht", + "status": "active", + "id": "2XsexjLapEenZobsrqXWZsDga4nNU7XmoW48NgWoGzht", + "links": [ + { + "name": "x", + "url": "https://x.com/TonicTheBonkDog" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tonic" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2XsexjLapEenZobsrqXWZsDga4nNU7XmoW48NgWoGzht/logo.png b/blockchains/solana/assets/2XsexjLapEenZobsrqXWZsDga4nNU7XmoW48NgWoGzht/logo.png new file mode 100644 index 0000000000000..89ab64d128441 Binary files /dev/null and b/blockchains/solana/assets/2XsexjLapEenZobsrqXWZsDga4nNU7XmoW48NgWoGzht/logo.png differ diff --git a/blockchains/solana/assets/2YDMeite4gKusVQGAXvQPnbEXwkLKm2pUz8CTqHBpump/info.json b/blockchains/solana/assets/2YDMeite4gKusVQGAXvQPnbEXwkLKm2pUz8CTqHBpump/info.json new file mode 100644 index 0000000000000..3c8ab813fc9c4 --- /dev/null +++ b/blockchains/solana/assets/2YDMeite4gKusVQGAXvQPnbEXwkLKm2pUz8CTqHBpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Museum Of Memes", + "website": "https://oncyber.io/museumofmemes?coords=0x2.75x0x2.98", + "description": "MOM tokens can be traded on decentralized exchanges and centralized crypto exchanges", + "explorer": "https://solscan.io/token/2YDMeite4gKusVQGAXvQPnbEXwkLKm2pUz8CTqHBpump", + "type": "SPL", + "symbol": "MOM", + "decimals": 6, + "status": "active", + "id": "2YDMeite4gKusVQGAXvQPnbEXwkLKm2pUz8CTqHBpump", + "links": [ + { + "name": "x", + "url": "https://x.com/mom_solana" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/museum-of-memes" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2YDMeite4gKusVQGAXvQPnbEXwkLKm2pUz8CTqHBpump/logo.png b/blockchains/solana/assets/2YDMeite4gKusVQGAXvQPnbEXwkLKm2pUz8CTqHBpump/logo.png new file mode 100644 index 0000000000000..71e1b3259fa10 Binary files /dev/null and b/blockchains/solana/assets/2YDMeite4gKusVQGAXvQPnbEXwkLKm2pUz8CTqHBpump/logo.png differ diff --git a/blockchains/solana/assets/2aSns9WfKWe6SUdKMQxMk2MCvx1bC22gFepLCR9hBgLC/info.json b/blockchains/solana/assets/2aSns9WfKWe6SUdKMQxMk2MCvx1bC22gFepLCR9hBgLC/info.json new file mode 100644 index 0000000000000..4a26748bfc266 --- /dev/null +++ b/blockchains/solana/assets/2aSns9WfKWe6SUdKMQxMk2MCvx1bC22gFepLCR9hBgLC/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE FIRST GOLD BACKED STABLECOIN", + "type": "SPL", + "symbol": "FAKE USDKG", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/2aSns9WfKWe6SUdKMQxMk2MCvx1bC22gFepLCR9hBgLC", + "explorer": "https://solscan.io/token/2aSns9WfKWe6SUdKMQxMk2MCvx1bC22gFepLCR9hBgLC", + "status": "spam", + "id": "2aSns9WfKWe6SUdKMQxMk2MCvx1bC22gFepLCR9hBgLC" +} \ No newline at end of file diff --git a/blockchains/solana/assets/2b1kV6DkPAnxd5ixfnxCpjxmKwqjjaYmCZfHsFu24GXo/info.json b/blockchains/solana/assets/2b1kV6DkPAnxd5ixfnxCpjxmKwqjjaYmCZfHsFu24GXo/info.json new file mode 100644 index 0000000000000..561475b72a44e --- /dev/null +++ b/blockchains/solana/assets/2b1kV6DkPAnxd5ixfnxCpjxmKwqjjaYmCZfHsFu24GXo/info.json @@ -0,0 +1,28 @@ +{ + "name": "PayPal USD", + "type": "SPL", + "symbol": "PYUSD", + "decimals": 6, + "description": "PayPal USD is designed to contribute to the opportunity stablecoins offer for payments and is 100% backed by U.S. dollar deposits, short-term U.S Treasuries and similar cash equivalents.", + "website": "https://www.paypal.com/us/digital-wallet/manage-money/crypto/pyusd", + "explorer": "https://solscan.io/token/2b1kV6DkPAnxd5ixfnxCpjxmKwqjjaYmCZfHsFu24GXo", + "id": "2b1kV6DkPAnxd5ixfnxCpjxmKwqjjaYmCZfHsFu24GXo", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/PayPal" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/paypal-usd/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/paypal-usd" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2b1kV6DkPAnxd5ixfnxCpjxmKwqjjaYmCZfHsFu24GXo/logo.png b/blockchains/solana/assets/2b1kV6DkPAnxd5ixfnxCpjxmKwqjjaYmCZfHsFu24GXo/logo.png new file mode 100644 index 0000000000000..8276b54f3edbe Binary files /dev/null and b/blockchains/solana/assets/2b1kV6DkPAnxd5ixfnxCpjxmKwqjjaYmCZfHsFu24GXo/logo.png differ diff --git a/blockchains/solana/assets/2erZCPbQBobsFV23Z18J8aSfrV3QJ1RB8Ge9jhKjTL9m/info.json b/blockchains/solana/assets/2erZCPbQBobsFV23Z18J8aSfrV3QJ1RB8Ge9jhKjTL9m/info.json new file mode 100644 index 0000000000000..aaf74b54e0047 --- /dev/null +++ b/blockchains/solana/assets/2erZCPbQBobsFV23Z18J8aSfrV3QJ1RB8Ge9jhKjTL9m/info.json @@ -0,0 +1,21 @@ +{ + "name": "WASSIE", + "website": "http://www.wassie.wtf/", + "description": "The ultimate memecoin of the wassie revolution.", + "explorer": "https://solscan.io/token/2erZCPbQBobsFV23Z18J8aSfrV3QJ1RB8Ge9jhKjTL9m", + "type": "SPL", + "symbol": "WASSIE", + "decimals": 8, + "status": "active", + "id": "2erZCPbQBobsFV23Z18J8aSfrV3QJ1RB8Ge9jhKjTL9m", + "links": [ + { + "name": "x", + "url": "https://x.com/WassieOnETH" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wassie/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2erZCPbQBobsFV23Z18J8aSfrV3QJ1RB8Ge9jhKjTL9m/logo.png b/blockchains/solana/assets/2erZCPbQBobsFV23Z18J8aSfrV3QJ1RB8Ge9jhKjTL9m/logo.png new file mode 100644 index 0000000000000..8139b0e91aee1 Binary files /dev/null and b/blockchains/solana/assets/2erZCPbQBobsFV23Z18J8aSfrV3QJ1RB8Ge9jhKjTL9m/logo.png differ diff --git a/blockchains/solana/assets/2hArNRrH5XdAJwpEp3JpsHVudY6TdCHyoarBD8PzrAKU/info.json b/blockchains/solana/assets/2hArNRrH5XdAJwpEp3JpsHVudY6TdCHyoarBD8PzrAKU/info.json new file mode 100644 index 0000000000000..a22e1a300dade --- /dev/null +++ b/blockchains/solana/assets/2hArNRrH5XdAJwpEp3JpsHVudY6TdCHyoarBD8PzrAKU/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE KAT", + "type": "SPL", + "symbol": "FAKE KAT", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/2hArNRrH5XdAJwpEp3JpsHVudY6TdCHyoarBD8PzrAKU", + "explorer": "https://solscan.io/token/2hArNRrH5XdAJwpEp3JpsHVudY6TdCHyoarBD8PzrAKU", + "status": "spam", + "id": "2hArNRrH5XdAJwpEp3JpsHVudY6TdCHyoarBD8PzrAKU" +} diff --git a/blockchains/solana/assets/2hXQn7nJbh2XFTxvtyKb5mKfnScuoiC1Sm8rnWydpump/info.json b/blockchains/solana/assets/2hXQn7nJbh2XFTxvtyKb5mKfnScuoiC1Sm8rnWydpump/info.json new file mode 100644 index 0000000000000..70ebe917dd3d7 --- /dev/null +++ b/blockchains/solana/assets/2hXQn7nJbh2XFTxvtyKb5mKfnScuoiC1Sm8rnWydpump/info.json @@ -0,0 +1,31 @@ +{ + "name": "Homebrew Robotics Club", + "type": "SOL", + "symbol": "BREW", + "decimals": 6, + "description": "he Homebrew Computer Club was a hobbyist computer club in the 1970s that counted many famous technologists, like Steve Wozniak, as members. The club pushed forward the boundaries of hobbyist computing.", + "website": "https://homebrew.build/en", + "explorer": "https://solscan.io/token/2hXQn7nJbh2XFTxvtyKb5mKfnScuoiC1Sm8rnWydpump", + "id": "2hXQn7nJbh2XFTxvtyKb5mKfnScuoiC1Sm8rnWydpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/homebrewrobots" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/homebrew-robotics-club/" + }, + + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/homebrew-robotics-club" + } + + ], + "tags": [ + "gamefi" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/2hXQn7nJbh2XFTxvtyKb5mKfnScuoiC1Sm8rnWydpump/logo.png b/blockchains/solana/assets/2hXQn7nJbh2XFTxvtyKb5mKfnScuoiC1Sm8rnWydpump/logo.png new file mode 100644 index 0000000000000..3f66b4260cabb Binary files /dev/null and b/blockchains/solana/assets/2hXQn7nJbh2XFTxvtyKb5mKfnScuoiC1Sm8rnWydpump/logo.png differ diff --git a/blockchains/solana/assets/2hyERDrVVjWqgGGm6xrHHnEpU2N1NbE9nq1FmXxYpump/info.json b/blockchains/solana/assets/2hyERDrVVjWqgGGm6xrHHnEpU2N1NbE9nq1FmXxYpump/info.json new file mode 100644 index 0000000000000..50fc48c3bf9ba --- /dev/null +++ b/blockchains/solana/assets/2hyERDrVVjWqgGGm6xrHHnEpU2N1NbE9nq1FmXxYpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Percy Verence", + "type": "SPL", + "symbol": "PERCY", + "decimals": 6, + "website": "https://percyverence.wtf/", + "description": "The token of perseverance and brilliance", + "explorer": "https://solscan.io/token/2hyERDrVVjWqgGGm6xrHHnEpU2N1NbE9nq1FmXxYpump", + "status": "active", + "id": "2hyERDrVVjWqgGGm6xrHHnEpU2N1NbE9nq1FmXxYpump", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/percy-verence-wtf/" + }, + { + "name": "x", + "url": "https://x.com/PercySolCTO" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2hyERDrVVjWqgGGm6xrHHnEpU2N1NbE9nq1FmXxYpump/logo.png b/blockchains/solana/assets/2hyERDrVVjWqgGGm6xrHHnEpU2N1NbE9nq1FmXxYpump/logo.png new file mode 100644 index 0000000000000..cb658fd3baccf Binary files /dev/null and b/blockchains/solana/assets/2hyERDrVVjWqgGGm6xrHHnEpU2N1NbE9nq1FmXxYpump/logo.png differ diff --git a/blockchains/solana/assets/2jcx4R6R8X2A8bqp4i612izx1s71Srubpt8MeZrHyBYt/info.json b/blockchains/solana/assets/2jcx4R6R8X2A8bqp4i612izx1s71Srubpt8MeZrHyBYt/info.json new file mode 100644 index 0000000000000..8e5762974d2b5 --- /dev/null +++ b/blockchains/solana/assets/2jcx4R6R8X2A8bqp4i612izx1s71Srubpt8MeZrHyBYt/info.json @@ -0,0 +1,17 @@ +{ + "name": "Infinite Money Glitch X2", + "type": "SPL", + "symbol": "imgx2", + "decimals": 6, + "website": "https://infinitemoneyglitchx2.netlify.app", + "description": "Infinite Money Glitch x2($imgx2) - The Ultimate Double Reward Token", + "explorer": "https://solscan.io/token/2jcx4R6R8X2A8bqp4i612izx1s71Srubpt8MeZrHyBYt", + "status": "active", + "id": "2jcx4R6R8X2A8bqp4i612izx1s71Srubpt8MeZrHyBYt", + "links": [ + { + "name": "x", + "url": "https://x.com/img_x2_" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2jcx4R6R8X2A8bqp4i612izx1s71Srubpt8MeZrHyBYt/logo.png b/blockchains/solana/assets/2jcx4R6R8X2A8bqp4i612izx1s71Srubpt8MeZrHyBYt/logo.png new file mode 100644 index 0000000000000..bf38743d84cc9 Binary files /dev/null and b/blockchains/solana/assets/2jcx4R6R8X2A8bqp4i612izx1s71Srubpt8MeZrHyBYt/logo.png differ diff --git a/blockchains/solana/assets/2kGfWRgNp1QaxUMFCX9CMN78E1iCbgjBAZuQNUjWpump/info.json b/blockchains/solana/assets/2kGfWRgNp1QaxUMFCX9CMN78E1iCbgjBAZuQNUjWpump/info.json new file mode 100644 index 0000000000000..5b0aee5fb1a4a --- /dev/null +++ b/blockchains/solana/assets/2kGfWRgNp1QaxUMFCX9CMN78E1iCbgjBAZuQNUjWpump/info.json @@ -0,0 +1,17 @@ +{ + "name": "SafeMoon", + "type": "SPL", + "symbol": "SAFEMOON", + "decimals": 6, + "website": "https://safemoononsolana.xyz", + "description": "A Community-Driven Protocol Built on Integrity", + "explorer": "https://solscan.io/token/2kGfWRgNp1QaxUMFCX9CMN78E1iCbgjBAZuQNUjWpump", + "status": "active", + "id": "2kGfWRgNp1QaxUMFCX9CMN78E1iCbgjBAZuQNUjWpump", + "links": [ + { + "name": "x", + "url": "https://x.com/RealSafemoonCTO" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2kGfWRgNp1QaxUMFCX9CMN78E1iCbgjBAZuQNUjWpump/logo.png b/blockchains/solana/assets/2kGfWRgNp1QaxUMFCX9CMN78E1iCbgjBAZuQNUjWpump/logo.png new file mode 100644 index 0000000000000..99819291d7442 Binary files /dev/null and b/blockchains/solana/assets/2kGfWRgNp1QaxUMFCX9CMN78E1iCbgjBAZuQNUjWpump/logo.png differ diff --git a/blockchains/solana/assets/2nhjjqSkA8FYCUdJvQhYjbtZdPjZbNo8VtNKTkJ3hncb/info.json b/blockchains/solana/assets/2nhjjqSkA8FYCUdJvQhYjbtZdPjZbNo8VtNKTkJ3hncb/info.json new file mode 100644 index 0000000000000..fd909faee11be --- /dev/null +++ b/blockchains/solana/assets/2nhjjqSkA8FYCUdJvQhYjbtZdPjZbNo8VtNKTkJ3hncb/info.json @@ -0,0 +1,17 @@ +{ + "name": "bunkee", + "website": "https://bunkeesol.xyz", + "description": "$bunk is a meme coin with no intrinsic value or expectation of financial return.", + "explorer": "https://solscan.io/token/2nhjjqSkA8FYCUdJvQhYjbtZdPjZbNo8VtNKTkJ3hncb", + "type": "SPL", + "symbol": "bunk", + "decimals": 6, + "status": "active", + "id": "2nhjjqSkA8FYCUdJvQhYjbtZdPjZbNo8VtNKTkJ3hncb", + "links": [ + { + "name": "x", + "url": "https://x.com/bunkeesol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2nhjjqSkA8FYCUdJvQhYjbtZdPjZbNo8VtNKTkJ3hncb/logo.png b/blockchains/solana/assets/2nhjjqSkA8FYCUdJvQhYjbtZdPjZbNo8VtNKTkJ3hncb/logo.png new file mode 100644 index 0000000000000..83968f5f2103a Binary files /dev/null and b/blockchains/solana/assets/2nhjjqSkA8FYCUdJvQhYjbtZdPjZbNo8VtNKTkJ3hncb/logo.png differ diff --git a/blockchains/solana/assets/2oGLxYuNBJRcepT1mEV6KnETaLD7Bf6qq3CM6skasBfe/info.json b/blockchains/solana/assets/2oGLxYuNBJRcepT1mEV6KnETaLD7Bf6qq3CM6skasBfe/info.json new file mode 100644 index 0000000000000..4b8d540ec6352 --- /dev/null +++ b/blockchains/solana/assets/2oGLxYuNBJRcepT1mEV6KnETaLD7Bf6qq3CM6skasBfe/info.json @@ -0,0 +1,21 @@ +{ + "name": "PUPS", + "type": "PLS", + "symbol": "PUPS", + "decimals": 9, + "website": "https://pups.runemine.com/", + "description": "PUPS tokens can be traded on decentralized exchanges.", + "explorer": "https://solscan.io/token/2oGLxYuNBJRcepT1mEV6KnETaLD7Bf6qq3CM6skasBfe", + "status": "active", + "id": "2oGLxYuNBJRcepT1mEV6KnETaLD7Bf6qq3CM6skasBfe", + "links": [ + { + "name": "x", + "url": "https://x.com/PupsToken" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pups-world-peace" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2oGLxYuNBJRcepT1mEV6KnETaLD7Bf6qq3CM6skasBfe/logo.png b/blockchains/solana/assets/2oGLxYuNBJRcepT1mEV6KnETaLD7Bf6qq3CM6skasBfe/logo.png new file mode 100644 index 0000000000000..753534e42d319 Binary files /dev/null and b/blockchains/solana/assets/2oGLxYuNBJRcepT1mEV6KnETaLD7Bf6qq3CM6skasBfe/logo.png differ diff --git a/blockchains/solana/assets/2otVNpcHXn9MKeDk3Zby5uanF3s7tki4toaJ3PZcXaUd/info.json b/blockchains/solana/assets/2otVNpcHXn9MKeDk3Zby5uanF3s7tki4toaJ3PZcXaUd/info.json new file mode 100644 index 0000000000000..03cac5d493957 --- /dev/null +++ b/blockchains/solana/assets/2otVNpcHXn9MKeDk3Zby5uanF3s7tki4toaJ3PZcXaUd/info.json @@ -0,0 +1,21 @@ +{ + "name": "OSOL", + "symbol": "OSOL", + "type": "SPL", + "decimals": 9, + "description": "First Ever AI Index on Solana Track 100 of the hottest AI projects in one token Exposure to AI infrastructure, agents, & AI memes Your golden ticket to Solana's entire AI ecosystem Powered by SuperMissO – The World’s First AI CEO Not just another index – it’s AI-managed Backed by O.XYZ’s cutting-edge AI technology Revolutionary autonomous management OSOL operates as an index fund, tracking Solana’s top 100 AI projects", + "website": "https://www.placeholder.com", + "explorer": "hhttps://solscan.io/token/2otVNpcHXn9MKeDk3Zby5uanF3s7tki4toaJ3PZcXaUd", + "status": "active", + "id": "2otVNpcHXn9MKeDk3Zby5uanF3s7tki4toaJ3PZcXaUd", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/osol-ai-index/" + }, + { + "name": "x", + "url": "https://x.com/o_fndn" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2otVNpcHXn9MKeDk3Zby5uanF3s7tki4toaJ3PZcXaUd/logo.png b/blockchains/solana/assets/2otVNpcHXn9MKeDk3Zby5uanF3s7tki4toaJ3PZcXaUd/logo.png new file mode 100644 index 0000000000000..e4e8ae5d57731 Binary files /dev/null and b/blockchains/solana/assets/2otVNpcHXn9MKeDk3Zby5uanF3s7tki4toaJ3PZcXaUd/logo.png differ diff --git a/blockchains/solana/assets/2qEHjDLDLbuBgRYvsxhc5D6uDWAivNFZGan56P1tpump/info.json b/blockchains/solana/assets/2qEHjDLDLbuBgRYvsxhc5D6uDWAivNFZGan56P1tpump/info.json new file mode 100644 index 0000000000000..a8ee6ca2e4414 --- /dev/null +++ b/blockchains/solana/assets/2qEHjDLDLbuBgRYvsxhc5D6uDWAivNFZGan56P1tpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Peanut the Squirrel", + "type": "SPL", + "symbol": "Pnut", + "decimals": 6, + "website": "https://www.pnutsol.com/", + "description": "PEANUT FOREVER. #JusticeForPeanut. Peanut the Squirrel is a meme coin on Solana.", + "explorer": "https://solscan.io/token/2qEHjDLDLbuBgRYvsxhc5D6uDWAivNFZGan56P1tpump", + "status": "active", + "id": "2qEHjDLDLbuBgRYvsxhc5D6uDWAivNFZGan56P1tpump", + "links": [ + { + "name": "x", + "url": "https://x.com/pnutsolana" + }, + { + "name": "telegram", + "url": "https://t.me/pnutportal" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2qEHjDLDLbuBgRYvsxhc5D6uDWAivNFZGan56P1tpump/logo.png b/blockchains/solana/assets/2qEHjDLDLbuBgRYvsxhc5D6uDWAivNFZGan56P1tpump/logo.png new file mode 100644 index 0000000000000..7b698b5dcc565 Binary files /dev/null and b/blockchains/solana/assets/2qEHjDLDLbuBgRYvsxhc5D6uDWAivNFZGan56P1tpump/logo.png differ diff --git a/blockchains/solana/assets/2ru87k7yAZnDRsnqVpgJYETFgqVApuBcwB2xDb19pump/info.json b/blockchains/solana/assets/2ru87k7yAZnDRsnqVpgJYETFgqVApuBcwB2xDb19pump/info.json new file mode 100644 index 0000000000000..fee4d8f0efcc9 --- /dev/null +++ b/blockchains/solana/assets/2ru87k7yAZnDRsnqVpgJYETFgqVApuBcwB2xDb19pump/info.json @@ -0,0 +1,21 @@ +{ + "name": "BIAO", + "symbol": "BIAO", + "type": "SPL", + "decimals": 6, + "description": "BIAO combines the humor of Asian meme culture with the universal appeal of pandas to create a lighthearted cryptocurrency that spreads good vibes. With its focus on community, creativity, and fun, BIAO is more than a token—it's a movement to inspire connection and shared joy.", + "website": "https://biaotoken.com/", + "explorer": "https://solscan.io/token/2ru87k7yAZnDRsnqVpgJYETFgqVApuBcwB2xDb19pump", + "status": "active", + "id": "2ru87k7yAZnDRsnqVpgJYETFgqVApuBcwB2xDb19pump", + "links": [ + { + "name": "x", + "url": "https://x.com/biao_meme" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/biaotoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2ru87k7yAZnDRsnqVpgJYETFgqVApuBcwB2xDb19pump/logo.png b/blockchains/solana/assets/2ru87k7yAZnDRsnqVpgJYETFgqVApuBcwB2xDb19pump/logo.png new file mode 100644 index 0000000000000..cc0f0e3d0d855 Binary files /dev/null and b/blockchains/solana/assets/2ru87k7yAZnDRsnqVpgJYETFgqVApuBcwB2xDb19pump/logo.png differ diff --git a/blockchains/solana/assets/2rzL2j2dYD19Wv2q1FZAZNAxdQjZBVhZ4FVTziNY1QYc/info.json b/blockchains/solana/assets/2rzL2j2dYD19Wv2q1FZAZNAxdQjZBVhZ4FVTziNY1QYc/info.json new file mode 100644 index 0000000000000..586ea3b5d8da3 --- /dev/null +++ b/blockchains/solana/assets/2rzL2j2dYD19Wv2q1FZAZNAxdQjZBVhZ4FVTziNY1QYc/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM Trump United Stable Dollar", + "type": "SPL", + "symbol": "SCAM TUSD", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/2rzL2j2dYD19Wv2q1FZAZNAxdQjZBVhZ4FVTziNY1QYc", + "explorer": "https://solscan.io/token/2rzL2j2dYD19Wv2q1FZAZNAxdQjZBVhZ4FVTziNY1QYc", + "status": "spam", + "id": "2rzL2j2dYD19Wv2q1FZAZNAxdQjZBVhZ4FVTziNY1QYc" +} \ No newline at end of file diff --git a/blockchains/solana/assets/2sCUCJdVkmyXp4dT8sFaA9LKgSMK4yDPi9zLHiwXpump/info.json b/blockchains/solana/assets/2sCUCJdVkmyXp4dT8sFaA9LKgSMK4yDPi9zLHiwXpump/info.json new file mode 100644 index 0000000000000..51c8bfb17f83a --- /dev/null +++ b/blockchains/solana/assets/2sCUCJdVkmyXp4dT8sFaA9LKgSMK4yDPi9zLHiwXpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Alpha", + "symbol": "ALPHA", + "type": "SPL", + "decimals": 6, + "description": "$ALPHA embodies the essence of being a true alpha and a GIGA Chad", + "website": "https://realalphacoin.io", + "explorer": "https://solscan.io/token/2sCUCJdVkmyXp4dT8sFaA9LKgSMK4yDPi9zLHiwXpump", + "status": "active", + "id": "2sCUCJdVkmyXp4dT8sFaA9LKgSMK4yDPi9zLHiwXpump", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/realalphacoin/" + }, + { + "name": "x", + "url": "https://x.com/alphaofsol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2sCUCJdVkmyXp4dT8sFaA9LKgSMK4yDPi9zLHiwXpump/logo.png b/blockchains/solana/assets/2sCUCJdVkmyXp4dT8sFaA9LKgSMK4yDPi9zLHiwXpump/logo.png new file mode 100644 index 0000000000000..fe4deca8be0b5 Binary files /dev/null and b/blockchains/solana/assets/2sCUCJdVkmyXp4dT8sFaA9LKgSMK4yDPi9zLHiwXpump/logo.png differ diff --git a/blockchains/solana/assets/2sNvt9tRAW29cZgj3cVmwEGLJFfqb127GKnAiEN8iBxY/info.json b/blockchains/solana/assets/2sNvt9tRAW29cZgj3cVmwEGLJFfqb127GKnAiEN8iBxY/info.json new file mode 100644 index 0000000000000..a9fcda8576321 --- /dev/null +++ b/blockchains/solana/assets/2sNvt9tRAW29cZgj3cVmwEGLJFfqb127GKnAiEN8iBxY/info.json @@ -0,0 +1,27 @@ +{ + "name": "JobSeek AI", + "type": "SOL", + "symbol": "JOBSEEK", + "decimals": 9, + "description": "The First DeepSeek AI-Powered Career Companion.", + "website": "https://jobseekai.work/", + "explorer": "https://solscan.io/token/2sNvt9tRAW29cZgj3cVmwEGLJFfqb127GKnAiEN8iBxY", + "id": "2sNvt9tRAW29cZgj3cVmwEGLJFfqb127GKnAiEN8iBxY", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/jobseek_ai1" + }, + + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/jobseek" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/2sNvt9tRAW29cZgj3cVmwEGLJFfqb127GKnAiEN8iBxY/logo.png b/blockchains/solana/assets/2sNvt9tRAW29cZgj3cVmwEGLJFfqb127GKnAiEN8iBxY/logo.png new file mode 100644 index 0000000000000..55eb40ef59213 Binary files /dev/null and b/blockchains/solana/assets/2sNvt9tRAW29cZgj3cVmwEGLJFfqb127GKnAiEN8iBxY/logo.png differ diff --git a/blockchains/solana/assets/2u1tszSeqZ3qBWF3uNGPFc8TzMk2tdiwknnRMWGWjGWH/info.json b/blockchains/solana/assets/2u1tszSeqZ3qBWF3uNGPFc8TzMk2tdiwknnRMWGWjGWH/info.json new file mode 100644 index 0000000000000..7eebbeaea8dfa --- /dev/null +++ b/blockchains/solana/assets/2u1tszSeqZ3qBWF3uNGPFc8TzMk2tdiwknnRMWGWjGWH/info.json @@ -0,0 +1,18 @@ +{ + "name": "Global Dollar", + "type": "SPL", + "symbol": "USDG", + "decimals": 6, + "description": "Global Dollar (USDG) is a single-currency stablecoin pegged to the US dollar, issued by Paxos Digital Singapore Pte. Ltd. and is compliant with the Monetary Authority of Singapore's (MAS) forthcoming stablecoin framework. USDG is redeemable from Paxos on a one-to-one basis for US dollars.", + "website": "https://globaldollar.com/", + "explorer": "https://solscan.io/token/2u1tszSeqZ3qBWF3uNGPFc8TzMk2tdiwknnRMWGWjGWH", + "id": "2u1tszSeqZ3qBWF3uNGPFc8TzMk2tdiwknnRMWGWjGWH", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + } + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/2u1tszSeqZ3qBWF3uNGPFc8TzMk2tdiwknnRMWGWjGWH/logo.png b/blockchains/solana/assets/2u1tszSeqZ3qBWF3uNGPFc8TzMk2tdiwknnRMWGWjGWH/logo.png new file mode 100644 index 0000000000000..0650c14a4c93e Binary files /dev/null and b/blockchains/solana/assets/2u1tszSeqZ3qBWF3uNGPFc8TzMk2tdiwknnRMWGWjGWH/logo.png differ diff --git a/blockchains/solana/assets/2u98MM7DMtVmNG4iAKRNMtynjmkzgD6fXAzB3wVfhQvg/info.json b/blockchains/solana/assets/2u98MM7DMtVmNG4iAKRNMtynjmkzgD6fXAzB3wVfhQvg/info.json new file mode 100644 index 0000000000000..3348da2be3ab2 --- /dev/null +++ b/blockchains/solana/assets/2u98MM7DMtVmNG4iAKRNMtynjmkzgD6fXAzB3wVfhQvg/info.json @@ -0,0 +1,21 @@ +{ + "name": "Lets Fuckin Go", + "symbol": "LFGO", + "type": "SPL", + "decimals": 6, + "description": "Introducing Lets Fuckin Go: launched on April 8th, 2024, on the Solana network in Pumpfun, experienced a community takeover the very next day on April 9th, 2024.", + "website": "https://lfgo.space/", + "explorer": "https://solscan.io/token/2u98MM7DMtVmNG4iAKRNMtynjmkzgD6fXAzB3wVfhQvg", + "status": "active", + "id": "2u98MM7DMtVmNG4iAKRNMtynjmkzgD6fXAzB3wVfhQvg", + "links": [ + { + "name": "x", + "url": "https://x.com/LFGOcommunity" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lets-fuckin-go" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2u98MM7DMtVmNG4iAKRNMtynjmkzgD6fXAzB3wVfhQvg/logo.png b/blockchains/solana/assets/2u98MM7DMtVmNG4iAKRNMtynjmkzgD6fXAzB3wVfhQvg/logo.png new file mode 100644 index 0000000000000..4a226da339a6d Binary files /dev/null and b/blockchains/solana/assets/2u98MM7DMtVmNG4iAKRNMtynjmkzgD6fXAzB3wVfhQvg/logo.png differ diff --git a/blockchains/solana/assets/2ubuHGFS4VJVxSEpvV3kDwz6JiuXdaAoGMwrwYC87tp8/info.json b/blockchains/solana/assets/2ubuHGFS4VJVxSEpvV3kDwz6JiuXdaAoGMwrwYC87tp8/info.json new file mode 100644 index 0000000000000..b39c35ffafa92 --- /dev/null +++ b/blockchains/solana/assets/2ubuHGFS4VJVxSEpvV3kDwz6JiuXdaAoGMwrwYC87tp8/info.json @@ -0,0 +1,21 @@ +{ + "name": "MILKBAG", + "symbol": "MILKBAG", + "type": "SPL", + "decimals": 9, + "description": "MILKBAG is the core token used within the MILKBAG ecosystem. There was no private sale or presale; MILKBAG was built from scratch by OG Degens.", + "website": "https://milkbag.xyz/", + "explorer": "https://solscan.io/token/2ubuHGFS4VJVxSEpvV3kDwz6JiuXdaAoGMwrwYC87tp8", + "status": "active", + "id": "2ubuHGFS4VJVxSEpvV3kDwz6JiuXdaAoGMwrwYC87tp8", + "links": [ + { + "name": "x", + "url": "https://x.com/MilkbagSol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/milkbag/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2ubuHGFS4VJVxSEpvV3kDwz6JiuXdaAoGMwrwYC87tp8/logo.png b/blockchains/solana/assets/2ubuHGFS4VJVxSEpvV3kDwz6JiuXdaAoGMwrwYC87tp8/logo.png new file mode 100644 index 0000000000000..5ab4f4efeb49a Binary files /dev/null and b/blockchains/solana/assets/2ubuHGFS4VJVxSEpvV3kDwz6JiuXdaAoGMwrwYC87tp8/logo.png differ diff --git a/blockchains/solana/assets/2vSVEMtLPSY4HBdKoccxDgPLV25RYrdidM6bT6vpqM2L/info.json b/blockchains/solana/assets/2vSVEMtLPSY4HBdKoccxDgPLV25RYrdidM6bT6vpqM2L/info.json new file mode 100644 index 0000000000000..33aaca3e6823b --- /dev/null +++ b/blockchains/solana/assets/2vSVEMtLPSY4HBdKoccxDgPLV25RYrdidM6bT6vpqM2L/info.json @@ -0,0 +1,21 @@ +{ + "name": "Grok AI Agent", + "type": "SPL", + "symbol": "GrokAI", + "decimals": 2, + "website": "https://grokai.vip", + "description": "Grok AI Agent is a groundbreaking artificial intelligence technology developed by a company led by Elon Musk, designed to equip AI systems with deep learning and cognitive reasoning capabilities that go beyond traditional models", + "explorer": "https://solscan.io/token/2vSVEMtLPSY4HBdKoccxDgPLV25RYrdidM6bT6vpqM2L", + "status": "active", + "id": "2vSVEMtLPSY4HBdKoccxDgPLV25RYrdidM6bT6vpqM2L", + "links": [ + { + "name": "x", + "url": "https://x.com/GROKAIAGENT" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/grok-ai-agent/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2vSVEMtLPSY4HBdKoccxDgPLV25RYrdidM6bT6vpqM2L/logo.png b/blockchains/solana/assets/2vSVEMtLPSY4HBdKoccxDgPLV25RYrdidM6bT6vpqM2L/logo.png new file mode 100644 index 0000000000000..c6764ee77a243 Binary files /dev/null and b/blockchains/solana/assets/2vSVEMtLPSY4HBdKoccxDgPLV25RYrdidM6bT6vpqM2L/logo.png differ diff --git a/blockchains/solana/assets/2z5VijfstyHnDsvGwMExtvjTgTB1TT3JSf29PRe9MvNG/info.json b/blockchains/solana/assets/2z5VijfstyHnDsvGwMExtvjTgTB1TT3JSf29PRe9MvNG/info.json new file mode 100644 index 0000000000000..5c8354b5a66a0 --- /dev/null +++ b/blockchains/solana/assets/2z5VijfstyHnDsvGwMExtvjTgTB1TT3JSf29PRe9MvNG/info.json @@ -0,0 +1,17 @@ +{ + "name": "AFRICA KIDS TOKEN", + "type": "SPL", + "symbol": "AKIDS", + "decimals": 6, + "website": "https://www.africakidstoken.com/", + "description": "$AKIDS - Africa Kids Token", + "explorer": "https://solscan.io/token/2z5VijfstyHnDsvGwMExtvjTgTB1TT3JSf29PRe9MvNG", + "status": "active", + "id": "2z5VijfstyHnDsvGwMExtvjTgTB1TT3JSf29PRe9MvNG", + "links": [ + { + "name": "x", + "url": "https://x.com/KidsAfricaSol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2z5VijfstyHnDsvGwMExtvjTgTB1TT3JSf29PRe9MvNG/logo.png b/blockchains/solana/assets/2z5VijfstyHnDsvGwMExtvjTgTB1TT3JSf29PRe9MvNG/logo.png new file mode 100644 index 0000000000000..18bec79ec199a Binary files /dev/null and b/blockchains/solana/assets/2z5VijfstyHnDsvGwMExtvjTgTB1TT3JSf29PRe9MvNG/logo.png differ diff --git a/blockchains/solana/assets/2zHZadmbFa6HWUgby9LdJXiavRN3k2RpFJzCkfvdrx1j/info.json b/blockchains/solana/assets/2zHZadmbFa6HWUgby9LdJXiavRN3k2RpFJzCkfvdrx1j/info.json new file mode 100644 index 0000000000000..cc435a39d1d7f --- /dev/null +++ b/blockchains/solana/assets/2zHZadmbFa6HWUgby9LdJXiavRN3k2RpFJzCkfvdrx1j/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDKG", + "type": "SPL", + "symbol": "FAKE USDKG", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/2zHZadmbFa6HWUgby9LdJXiavRN3k2RpFJzCkfvdrx1j", + "explorer": "https://solscan.io/token/2zHZadmbFa6HWUgby9LdJXiavRN3k2RpFJzCkfvdrx1j", + "status": "spam", + "id": "2zHZadmbFa6HWUgby9LdJXiavRN3k2RpFJzCkfvdrx1j" +} \ No newline at end of file diff --git a/blockchains/solana/assets/2zMMhcVQEXDtdE6vsFS7S7D5oUodfJHE8vd1gnBouauv/info.json b/blockchains/solana/assets/2zMMhcVQEXDtdE6vsFS7S7D5oUodfJHE8vd1gnBouauv/info.json new file mode 100644 index 0000000000000..817b322ed0c69 --- /dev/null +++ b/blockchains/solana/assets/2zMMhcVQEXDtdE6vsFS7S7D5oUodfJHE8vd1gnBouauv/info.json @@ -0,0 +1,28 @@ +{ + "name": "Pudgy Penguins", + "type": "SPL", + "symbol": "PENGU", + "decimals": 6, + "description": "Pudgy Penguins has become the face of crypto with one of the most influential communities in the industry. From large companies wearing the Penguin, to being featured in ETF commercials, to garnering millions of followers and over 50 billion views, the Pengu has become a cultural icon.", + "website": "https://www.pudgypenguins.com", + "explorer": "https://solscan.io/token/2zMMhcVQEXDtdE6vsFS7S7D5oUodfJHE8vd1gnBouauv", + "id": "2zMMhcVQEXDtdE6vsFS7S7D5oUodfJHE8vd1gnBouauv", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/pudgypenguins" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pudgy-penguins/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pudgy-penguins" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2zMMhcVQEXDtdE6vsFS7S7D5oUodfJHE8vd1gnBouauv/logo.png b/blockchains/solana/assets/2zMMhcVQEXDtdE6vsFS7S7D5oUodfJHE8vd1gnBouauv/logo.png new file mode 100644 index 0000000000000..596eaf4c0d1ba Binary files /dev/null and b/blockchains/solana/assets/2zMMhcVQEXDtdE6vsFS7S7D5oUodfJHE8vd1gnBouauv/logo.png differ diff --git a/blockchains/solana/assets/2zUBHgpoKe61AXB35Qw5DfQirvmKX4YiuRe2djGApump/info.json b/blockchains/solana/assets/2zUBHgpoKe61AXB35Qw5DfQirvmKX4YiuRe2djGApump/info.json new file mode 100644 index 0000000000000..e39eb0c7cc7ea --- /dev/null +++ b/blockchains/solana/assets/2zUBHgpoKe61AXB35Qw5DfQirvmKX4YiuRe2djGApump/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE EURC", + "type": "SPL", + "symbol": "FAKE EURC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/2zUBHgpoKe61AXB35Qw5DfQirvmKX4YiuRe2djGApump", + "explorer": "https://solscan.io/token/2zUBHgpoKe61AXB35Qw5DfQirvmKX4YiuRe2djGApump", + "status": "spam", + "id": "2zUBHgpoKe61AXB35Qw5DfQirvmKX4YiuRe2djGApump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/313t1ZZcLBEmw4uWRjSei1xCDEK4B73KqawJ5xfCpump/info.json b/blockchains/solana/assets/313t1ZZcLBEmw4uWRjSei1xCDEK4B73KqawJ5xfCpump/info.json new file mode 100644 index 0000000000000..2b5f0028e2ad6 --- /dev/null +++ b/blockchains/solana/assets/313t1ZZcLBEmw4uWRjSei1xCDEK4B73KqawJ5xfCpump/info.json @@ -0,0 +1,27 @@ +{ + "name": "DEPARTMENT OF GAINS COIN", + "type": "SOL", + "symbol": "D.O.G.C", + "decimals": 6, + "description": "At Department of Gains Coin ($D.O.G.C), we are not just launching another Cryptocurrency token-were building a movement. A movement rooted in honesty, integrity, and community, designed to bridge the gap between fitness, wellness, and the digital economy.", + "website": "https://dogccrypto.com/", + "explorer": "https://solscan.io/token/313t1ZZcLBEmw4uWRjSei1xCDEK4B73KqawJ5xfCpump", + "id": "313t1ZZcLBEmw4uWRjSei1xCDEK4B73KqawJ5xfCpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/dogc_official" + }, + + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/department-of-gains-coin" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/313t1ZZcLBEmw4uWRjSei1xCDEK4B73KqawJ5xfCpump/logo.png b/blockchains/solana/assets/313t1ZZcLBEmw4uWRjSei1xCDEK4B73KqawJ5xfCpump/logo.png new file mode 100644 index 0000000000000..025afce246e57 Binary files /dev/null and b/blockchains/solana/assets/313t1ZZcLBEmw4uWRjSei1xCDEK4B73KqawJ5xfCpump/logo.png differ diff --git a/blockchains/solana/assets/31iQsahfa4CMiirU7REygBzuAWg4R4ah7Y4aDu9ZfXJP/info.json b/blockchains/solana/assets/31iQsahfa4CMiirU7REygBzuAWg4R4ah7Y4aDu9ZfXJP/info.json new file mode 100644 index 0000000000000..d5f350389d661 --- /dev/null +++ b/blockchains/solana/assets/31iQsahfa4CMiirU7REygBzuAWg4R4ah7Y4aDu9ZfXJP/info.json @@ -0,0 +1,21 @@ +{ + "name": "Solzilla", + "symbol": "SOLZILLA", + "type": "SPL", + "decimals": 4, + "description": "Emerging from the depths of the $SOL space, $SOLZILLA rises. More than just a symbol of strength, $SOLZILLA is a harbinger of a monumental shift in the $SOL.", + "website": "https://solzilla.vip/", + "explorer": "https://solscan.io/token/31iQsahfa4CMiirU7REygBzuAWg4R4ah7Y4aDu9ZfXJP", + "status": "active", + "id": "31iQsahfa4CMiirU7REygBzuAWg4R4ah7Y4aDu9ZfXJP", + "links": [ + { + "name": "x", + "url": "https://x.com/SolzillaCoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/solzilla" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/31iQsahfa4CMiirU7REygBzuAWg4R4ah7Y4aDu9ZfXJP/logo.png b/blockchains/solana/assets/31iQsahfa4CMiirU7REygBzuAWg4R4ah7Y4aDu9ZfXJP/logo.png new file mode 100644 index 0000000000000..a2a4e4569d626 Binary files /dev/null and b/blockchains/solana/assets/31iQsahfa4CMiirU7REygBzuAWg4R4ah7Y4aDu9ZfXJP/logo.png differ diff --git a/blockchains/solana/assets/32eJopcdoy7T32EexvRGnJVxESD9NA8VNuouQqrtwK2m/info.json b/blockchains/solana/assets/32eJopcdoy7T32EexvRGnJVxESD9NA8VNuouQqrtwK2m/info.json new file mode 100644 index 0000000000000..417ef3d5eb9a5 --- /dev/null +++ b/blockchains/solana/assets/32eJopcdoy7T32EexvRGnJVxESD9NA8VNuouQqrtwK2m/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE EUR CoinVertible", + "type": "SPL", + "symbol": "FAKE EURCV", + "decimals": 8, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/32eJopcdoy7T32EexvRGnJVxESD9NA8VNuouQqrtwK2m", + "explorer": "https://solscan.io/token/32eJopcdoy7T32EexvRGnJVxESD9NA8VNuouQqrtwK2m", + "status": "spam", + "id": "32eJopcdoy7T32EexvRGnJVxESD9NA8VNuouQqrtwK2m" +} \ No newline at end of file diff --git a/blockchains/solana/assets/33eWALS9GkzSMS3EsKSdYCsrUiMdQDgX2QzGx4vA9wE8/info.json b/blockchains/solana/assets/33eWALS9GkzSMS3EsKSdYCsrUiMdQDgX2QzGx4vA9wE8/info.json new file mode 100644 index 0000000000000..29191a1efa51e --- /dev/null +++ b/blockchains/solana/assets/33eWALS9GkzSMS3EsKSdYCsrUiMdQDgX2QzGx4vA9wE8/info.json @@ -0,0 +1,21 @@ +{ + "name": "deBridge DinoLFG", + "symbol": "DINO", + "type": "SPL", + "decimals": 8, + "description": "In a digital realm where meme coins often float without purpose, $DINO emerges as the architect of change.", + "website": "https://dinolfg.com/", + "explorer": "https://solscan.io/token/33eWALS9GkzSMS3EsKSdYCsrUiMdQDgX2QzGx4vA9wE8", + "status": "active", + "id": "33eWALS9GkzSMS3EsKSdYCsrUiMdQDgX2QzGx4vA9wE8", + "links": [ + { + "name": "x", + "url": "https://x.com/DinoLFG" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dinolfg" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/33eWALS9GkzSMS3EsKSdYCsrUiMdQDgX2QzGx4vA9wE8/logo.png b/blockchains/solana/assets/33eWALS9GkzSMS3EsKSdYCsrUiMdQDgX2QzGx4vA9wE8/logo.png new file mode 100644 index 0000000000000..c1b800946df26 Binary files /dev/null and b/blockchains/solana/assets/33eWALS9GkzSMS3EsKSdYCsrUiMdQDgX2QzGx4vA9wE8/logo.png differ diff --git a/blockchains/solana/assets/33fsBLA8djQm82RpHmE3SuVrPGtZBWNYExsEUeKX1HXX/info.json b/blockchains/solana/assets/33fsBLA8djQm82RpHmE3SuVrPGtZBWNYExsEUeKX1HXX/info.json index afff53d0140f7..1319409f5dfc5 100644 --- a/blockchains/solana/assets/33fsBLA8djQm82RpHmE3SuVrPGtZBWNYExsEUeKX1HXX/info.json +++ b/blockchains/solana/assets/33fsBLA8djQm82RpHmE3SuVrPGtZBWNYExsEUeKX1HXX/info.json @@ -1,5 +1,5 @@ { - "name": "Binance USD (Portal from Ethereum)", + "name": "BUSD (Portal)", "type": "SPL", "symbol": "BUSDet", "decimals": 8, diff --git a/blockchains/solana/assets/33rVymHHPxfMvg4EHKBRF3h8a37cG7Et3eQWZzAkpump/info.json b/blockchains/solana/assets/33rVymHHPxfMvg4EHKBRF3h8a37cG7Et3eQWZzAkpump/info.json new file mode 100644 index 0000000000000..29ef37e0c0a61 --- /dev/null +++ b/blockchains/solana/assets/33rVymHHPxfMvg4EHKBRF3h8a37cG7Et3eQWZzAkpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "bro the cat", + "website": "https://brothecat.xyz/", + "description": "$bro, ok bro?", + "explorer": "https://solscan.io/token/33rVymHHPxfMvg4EHKBRF3h8a37cG7Et3eQWZzAkpump", + "type": "SPL", + "symbol": "bro", + "decimals": 6, + "status": "active", + "id": "33rVymHHPxfMvg4EHKBRF3h8a37cG7Et3eQWZzAkpump", + "links": [ + { + "name": "telegram", + "url": "https://t.me/brothecatcto" + }, + { + "name": "x", + "url": "https://x.com/brothecatsolana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/33rVymHHPxfMvg4EHKBRF3h8a37cG7Et3eQWZzAkpump/logo.png b/blockchains/solana/assets/33rVymHHPxfMvg4EHKBRF3h8a37cG7Et3eQWZzAkpump/logo.png new file mode 100644 index 0000000000000..81b7540724e7c Binary files /dev/null and b/blockchains/solana/assets/33rVymHHPxfMvg4EHKBRF3h8a37cG7Et3eQWZzAkpump/logo.png differ diff --git a/blockchains/solana/assets/34a8ALsPmbWxp7D3bQ6erERrCLz1ahr6u6o66Udmpump/info.json b/blockchains/solana/assets/34a8ALsPmbWxp7D3bQ6erERrCLz1ahr6u6o66Udmpump/info.json new file mode 100644 index 0000000000000..c59d907e2f4a6 --- /dev/null +++ b/blockchains/solana/assets/34a8ALsPmbWxp7D3bQ6erERrCLz1ahr6u6o66Udmpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Pesto the Baby King Penguin", + "symbol": "PESTO", + "type": "SPL", + "decimals": 6, + "description": "Pesto is a community-driven cryptocurrency inspired by the adorable baby king penguin recently born in Melbourne.", + "website": "https://www.pestosol.com/", + "explorer": "https://solscan.io/token/34a8ALsPmbWxp7D3bQ6erERrCLz1ahr6u6o66Udmpump", + "status": "active", + "id": "34a8ALsPmbWxp7D3bQ6erERrCLz1ahr6u6o66Udmpump", + "links": [ + { + "name": "x", + "url": "https://x.com/PestoCTO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pesto-the-baby-king-penguin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/34a8ALsPmbWxp7D3bQ6erERrCLz1ahr6u6o66Udmpump/logo.png b/blockchains/solana/assets/34a8ALsPmbWxp7D3bQ6erERrCLz1ahr6u6o66Udmpump/logo.png new file mode 100644 index 0000000000000..2b357162ecbaf Binary files /dev/null and b/blockchains/solana/assets/34a8ALsPmbWxp7D3bQ6erERrCLz1ahr6u6o66Udmpump/logo.png differ diff --git a/blockchains/solana/assets/35Y3VgNdaJ6AxBqifh8wCemR7x8PLd4xibB2C3JUZ9P7/info.json b/blockchains/solana/assets/35Y3VgNdaJ6AxBqifh8wCemR7x8PLd4xibB2C3JUZ9P7/info.json new file mode 100644 index 0000000000000..c7a7989bfce69 --- /dev/null +++ b/blockchains/solana/assets/35Y3VgNdaJ6AxBqifh8wCemR7x8PLd4xibB2C3JUZ9P7/info.json @@ -0,0 +1,17 @@ +{ + "name": "PANTIES", + "website": "https://panties.wtf", + "description": "a conceptual art project and memecoin spearheaded by a collective of approximately 69 veteran Pepe and meme artists.", + "explorer": "https://solscan.io/token/35Y3VgNdaJ6AxBqifh8wCemR7x8PLd4xibB2C3JUZ9P7", + "type": "SPL", + "symbol": "PANTIES", + "decimals": 6, + "status": "active", + "id": "35Y3VgNdaJ6AxBqifh8wCemR7x8PLd4xibB2C3JUZ9P7", + "links": [ + { + "name": "x", + "url": "https://x.com/Panties_on_sol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/35Y3VgNdaJ6AxBqifh8wCemR7x8PLd4xibB2C3JUZ9P7/logo.png b/blockchains/solana/assets/35Y3VgNdaJ6AxBqifh8wCemR7x8PLd4xibB2C3JUZ9P7/logo.png new file mode 100644 index 0000000000000..ea2019ac54215 Binary files /dev/null and b/blockchains/solana/assets/35Y3VgNdaJ6AxBqifh8wCemR7x8PLd4xibB2C3JUZ9P7/logo.png differ diff --git a/blockchains/solana/assets/36fSHEq2AxgMSdagPWoxjKkuexshGB8QrEBNkjKrKLFD/info.json b/blockchains/solana/assets/36fSHEq2AxgMSdagPWoxjKkuexshGB8QrEBNkjKrKLFD/info.json new file mode 100644 index 0000000000000..e40a9b32cade3 --- /dev/null +++ b/blockchains/solana/assets/36fSHEq2AxgMSdagPWoxjKkuexshGB8QrEBNkjKrKLFD/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE YELLOW", + "type": "SPL", + "symbol": "FAKE", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/36fSHEq2AxgMSdagPWoxjKkuexshGB8QrEBNkjKrKLFD", + "explorer": "https://solscan.io/token/36fSHEq2AxgMSdagPWoxjKkuexshGB8QrEBNkjKrKLFD", + "status": "spam", + "id": "36fSHEq2AxgMSdagPWoxjKkuexshGB8QrEBNkjKrKLFD" +} diff --git a/blockchains/solana/assets/3B5wuUrMEi5yATD7on46hKfej3pfmd7t1RKgrsN3pump/info.json b/blockchains/solana/assets/3B5wuUrMEi5yATD7on46hKfej3pfmd7t1RKgrsN3pump/info.json new file mode 100644 index 0000000000000..892fb8e48734e --- /dev/null +++ b/blockchains/solana/assets/3B5wuUrMEi5yATD7on46hKfej3pfmd7t1RKgrsN3pump/info.json @@ -0,0 +1,25 @@ +{ + "name": "BILLY", + "type": "SPL", + "symbol": "BILLY", + "decimals": 6, + "website": "https://www.billysolcuty.com/", + "description": "$BILLY is the cutest dog on Solana, on a mission to be worth billyons and billyons!", + "explorer": "https://solscan.io/token/3B5wuUrMEi5yATD7on46hKfej3pfmd7t1RKgrsN3pump", + "status": "active", + "id": "3B5wuUrMEi5yATD7on46hKfej3pfmd7t1RKgrsN3pump", + "links": [ + { + "name": "x", + "url": "https://x.com/i/flow/login?redirect_after_login=%2Fbillycoinsolana" + }, + { + "name": "telegram", + "url": "https://t.me/billysolcuty" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/billy" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3B5wuUrMEi5yATD7on46hKfej3pfmd7t1RKgrsN3pump/logo.png b/blockchains/solana/assets/3B5wuUrMEi5yATD7on46hKfej3pfmd7t1RKgrsN3pump/logo.png new file mode 100644 index 0000000000000..2360fb28ff1e7 Binary files /dev/null and b/blockchains/solana/assets/3B5wuUrMEi5yATD7on46hKfej3pfmd7t1RKgrsN3pump/logo.png differ diff --git a/blockchains/solana/assets/3Bbj7eZTuMd2FrfeZ2degzckxhgB5b63crGoHLtrpump/info.json b/blockchains/solana/assets/3Bbj7eZTuMd2FrfeZ2degzckxhgB5b63crGoHLtrpump/info.json new file mode 100644 index 0000000000000..8e76769794f01 --- /dev/null +++ b/blockchains/solana/assets/3Bbj7eZTuMd2FrfeZ2degzckxhgB5b63crGoHLtrpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Baby Fwog", + "website": "https://babyfwog.vip/", + "description": "Just a baby fwog in a big pond", + "explorer": "https://solscan.io/token/3Bbj7eZTuMd2FrfeZ2degzckxhgB5b63crGoHLtrpump", + "type": "SPL", + "symbol": "BABYFWOG", + "decimals": 6, + "status": "active", + "id": "3Bbj7eZTuMd2FrfeZ2degzckxhgB5b63crGoHLtrpump", + "links": [ + { + "name": "x", + "url": "https://x.com/itsbabyfwog" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/baby-fwog/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3Bbj7eZTuMd2FrfeZ2degzckxhgB5b63crGoHLtrpump/logo.png b/blockchains/solana/assets/3Bbj7eZTuMd2FrfeZ2degzckxhgB5b63crGoHLtrpump/logo.png new file mode 100644 index 0000000000000..edb19c68afe41 Binary files /dev/null and b/blockchains/solana/assets/3Bbj7eZTuMd2FrfeZ2degzckxhgB5b63crGoHLtrpump/logo.png differ diff --git a/blockchains/solana/assets/3BgwJ8b7b9hHX4sgfZ2KJhv9496CoVfsMK2YePevsBRw/info.json b/blockchains/solana/assets/3BgwJ8b7b9hHX4sgfZ2KJhv9496CoVfsMK2YePevsBRw/info.json new file mode 100644 index 0000000000000..23039509a5b1c --- /dev/null +++ b/blockchains/solana/assets/3BgwJ8b7b9hHX4sgfZ2KJhv9496CoVfsMK2YePevsBRw/info.json @@ -0,0 +1,17 @@ +{ + "name": "TEH EPIK DUCK", + "website": "https://epikduckcoin.com", + "description": "TEH EPIK DUCK IS COMING", + "explorer": "https://solscan.io/token/3BgwJ8b7b9hHX4sgfZ2KJhv9496CoVfsMK2YePevsBRw", + "type": "SPL", + "symbol": "EPIK", + "decimals": 6, + "status": "active", + "id": "3BgwJ8b7b9hHX4sgfZ2KJhv9496CoVfsMK2YePevsBRw", + "links": [ + { + "name": "x", + "url": "https://x.com/epikduckcoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3BgwJ8b7b9hHX4sgfZ2KJhv9496CoVfsMK2YePevsBRw/logo.png b/blockchains/solana/assets/3BgwJ8b7b9hHX4sgfZ2KJhv9496CoVfsMK2YePevsBRw/logo.png new file mode 100644 index 0000000000000..d8edf81c32345 Binary files /dev/null and b/blockchains/solana/assets/3BgwJ8b7b9hHX4sgfZ2KJhv9496CoVfsMK2YePevsBRw/logo.png differ diff --git a/blockchains/solana/assets/3CoTXmxP8pCKoJxd6QSxeYPzi9gzBQB6TmQzH8m1gza2/info.json b/blockchains/solana/assets/3CoTXmxP8pCKoJxd6QSxeYPzi9gzBQB6TmQzH8m1gza2/info.json new file mode 100644 index 0000000000000..ce18819c96da7 --- /dev/null +++ b/blockchains/solana/assets/3CoTXmxP8pCKoJxd6QSxeYPzi9gzBQB6TmQzH8m1gza2/info.json @@ -0,0 +1,24 @@ +{ + "name": "peecoin", + "type": "SOL", + "symbol": "pee", + "decimals": 9, + "description": "Launched on 28/01/2025, PeeCoin is a meme-based cryptocurrency project that blends the viral nature of meme culture with the potential for long term growth and community driven development.", + "website": "https://peecoin.org/", + "explorer": "https://solscan.io/token/3CoTXmxP8pCKoJxd6QSxeYPzi9gzBQB6TmQzH8m1gza2", + "id": "3CoTXmxP8pCKoJxd6QSxeYPzi9gzBQB6TmQzH8m1gza2", + "status": "active", + "links": [ + + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/peecoin/" + } + + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/3CoTXmxP8pCKoJxd6QSxeYPzi9gzBQB6TmQzH8m1gza2/logo.png b/blockchains/solana/assets/3CoTXmxP8pCKoJxd6QSxeYPzi9gzBQB6TmQzH8m1gza2/logo.png new file mode 100644 index 0000000000000..b07248bdcefad Binary files /dev/null and b/blockchains/solana/assets/3CoTXmxP8pCKoJxd6QSxeYPzi9gzBQB6TmQzH8m1gza2/logo.png differ diff --git a/blockchains/solana/assets/3DFU4Z2N2Uyh5KxU9xgKM2u5LsPYU7m2DVKDoPYuFvEL/info.json b/blockchains/solana/assets/3DFU4Z2N2Uyh5KxU9xgKM2u5LsPYU7m2DVKDoPYuFvEL/info.json new file mode 100644 index 0000000000000..23c3695b3d695 --- /dev/null +++ b/blockchains/solana/assets/3DFU4Z2N2Uyh5KxU9xgKM2u5LsPYU7m2DVKDoPYuFvEL/info.json @@ -0,0 +1,21 @@ +{ + "name": "Iggy Azalea's Dog", + "type": "SPL", + "symbol": "SOCKS", + "decimals": 6, + "website": "https://sockssol.fun/", + "description": "Iggy Azalea's Dog meme token", + "explorer": "https://solscan.io/token/3DFU4Z2N2Uyh5KxU9xgKM2u5LsPYU7m2DVKDoPYuFvEL", + "status": "active", + "id": "3DFU4Z2N2Uyh5KxU9xgKM2u5LsPYU7m2DVKDoPYuFvEL", + "links": [ + { + "name": "x", + "url": "https://x.com/MothersDogSocks" + }, + { + "name": "telegram", + "url": "https://t.me/socksiggydogportal" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3DFU4Z2N2Uyh5KxU9xgKM2u5LsPYU7m2DVKDoPYuFvEL/logo.png b/blockchains/solana/assets/3DFU4Z2N2Uyh5KxU9xgKM2u5LsPYU7m2DVKDoPYuFvEL/logo.png new file mode 100644 index 0000000000000..a0075ad97a457 Binary files /dev/null and b/blockchains/solana/assets/3DFU4Z2N2Uyh5KxU9xgKM2u5LsPYU7m2DVKDoPYuFvEL/logo.png differ diff --git a/blockchains/solana/assets/3FoUAsGDbvTD6YZ4wVKJgTB76onJUKz7GPEBNiR5b8wc/info.json b/blockchains/solana/assets/3FoUAsGDbvTD6YZ4wVKJgTB76onJUKz7GPEBNiR5b8wc/info.json new file mode 100644 index 0000000000000..da533bebf5c99 --- /dev/null +++ b/blockchains/solana/assets/3FoUAsGDbvTD6YZ4wVKJgTB76onJUKz7GPEBNiR5b8wc/info.json @@ -0,0 +1,17 @@ +{ + "name": "Cheems", + "type": "SPL", + "symbol": "CHEEMS", + "decimals": 4, + "website": "https://cheems.co/", + "description": "Cheems is the Doge's unloved brother and a communty-drive cryptocurrency on the Solana network.", + "explorer": "https://solscan.io/token/3FoUAsGDbvTD6YZ4wVKJgTB76onJUKz7GPEBNiR5b8wc", + "status": "active", + "id": "3FoUAsGDbvTD6YZ4wVKJgTB76onJUKz7GPEBNiR5b8wc", + "links": [ + { + "name": "x", + "url": "https://x.com/TheCheemsToken" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3FoUAsGDbvTD6YZ4wVKJgTB76onJUKz7GPEBNiR5b8wc/logo.png b/blockchains/solana/assets/3FoUAsGDbvTD6YZ4wVKJgTB76onJUKz7GPEBNiR5b8wc/logo.png new file mode 100644 index 0000000000000..e888a6eed9cb3 Binary files /dev/null and b/blockchains/solana/assets/3FoUAsGDbvTD6YZ4wVKJgTB76onJUKz7GPEBNiR5b8wc/logo.png differ diff --git a/blockchains/solana/assets/3GEznP41VaAGv9yRdBiuYdA8zkffNc8b7DzNJgFbH4Kh/info.json b/blockchains/solana/assets/3GEznP41VaAGv9yRdBiuYdA8zkffNc8b7DzNJgFbH4Kh/info.json new file mode 100644 index 0000000000000..16fe7d6b5b9fd --- /dev/null +++ b/blockchains/solana/assets/3GEznP41VaAGv9yRdBiuYdA8zkffNc8b7DzNJgFbH4Kh/info.json @@ -0,0 +1,21 @@ +{ + "name": "Scrat", + "type": "SPL", + "symbol": "SCRAT", + "decimals": 6, + "website": "https://scrat.meme/", + "description": "hi, i’m $SCRAT! Half squirrel, half rat, forever in pursuit of my runaway bag!", + "explorer": "https://solscan.io/token/3GEznP41VaAGv9yRdBiuYdA8zkffNc8b7DzNJgFbH4Kh", + "status": "active", + "id": "3GEznP41VaAGv9yRdBiuYdA8zkffNc8b7DzNJgFbH4Kh", + "links": [ + { + "name": "x", + "url": "https://x.com/scratmeme" + }, + { + "name": "telegram", + "url": "https://t.me/scratmeme" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3GEznP41VaAGv9yRdBiuYdA8zkffNc8b7DzNJgFbH4Kh/logo.png b/blockchains/solana/assets/3GEznP41VaAGv9yRdBiuYdA8zkffNc8b7DzNJgFbH4Kh/logo.png new file mode 100644 index 0000000000000..eda9d1bd5a806 Binary files /dev/null and b/blockchains/solana/assets/3GEznP41VaAGv9yRdBiuYdA8zkffNc8b7DzNJgFbH4Kh/logo.png differ diff --git a/blockchains/solana/assets/3HYx6a9whu5a4dnzE62WNXg46MrEmu9LFxutR2YBpump/info.json b/blockchains/solana/assets/3HYx6a9whu5a4dnzE62WNXg46MrEmu9LFxutR2YBpump/info.json new file mode 100644 index 0000000000000..51f743df36c6c --- /dev/null +++ b/blockchains/solana/assets/3HYx6a9whu5a4dnzE62WNXg46MrEmu9LFxutR2YBpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Flávia Is Online", + "symbol": "flavia", + "type": "SPL", + "decimals": 6, + "description": "Can you help me?", + "website": "https://x.com/flaviaisonline", + "explorer": "https://solscan.io/token/3HYx6a9whu5a4dnzE62WNXg46MrEmu9LFxutR2YBpump", + "status": "active", + "id": "3HYx6a9whu5a4dnzE62WNXg46MrEmu9LFxutR2YBpump", + "links": [ + { + "name": "x", + "url": "https://x.com/flaviaisonline" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/flavia-is-online/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3HYx6a9whu5a4dnzE62WNXg46MrEmu9LFxutR2YBpump/logo.png b/blockchains/solana/assets/3HYx6a9whu5a4dnzE62WNXg46MrEmu9LFxutR2YBpump/logo.png new file mode 100644 index 0000000000000..b25e74fc68e7b Binary files /dev/null and b/blockchains/solana/assets/3HYx6a9whu5a4dnzE62WNXg46MrEmu9LFxutR2YBpump/logo.png differ diff --git a/blockchains/solana/assets/3HxDM7xreHuop94zzzVP39fTKLvJCwHcSYgrSf8cyg5M/info.json b/blockchains/solana/assets/3HxDM7xreHuop94zzzVP39fTKLvJCwHcSYgrSf8cyg5M/info.json new file mode 100644 index 0000000000000..0881d15b3390a --- /dev/null +++ b/blockchains/solana/assets/3HxDM7xreHuop94zzzVP39fTKLvJCwHcSYgrSf8cyg5M/info.json @@ -0,0 +1,21 @@ +{ + "name": "Kek", + "symbol": "Kek", + "type": "SPL", + "decimals": 9, + "description": "Kek is a deflationary meme token built on the Solana blockchain, inspired by the ancient Egyptian deity Kek, representing transformation and chaos", + "website": "https://kek.army/", + "explorer": "https://solscan.io/token/3HxDM7xreHuop94zzzVP39fTKLvJCwHcSYgrSf8cyg5M", + "status": "active", + "id": "3HxDM7xreHuop94zzzVP39fTKLvJCwHcSYgrSf8cyg5M", + "links": [ + { + "name": "x", + "url": "https://x.com/basedkekcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kek-army/" + } + ] + } \ No newline at end of file diff --git a/blockchains/solana/assets/3HxDM7xreHuop94zzzVP39fTKLvJCwHcSYgrSf8cyg5M/logo.png b/blockchains/solana/assets/3HxDM7xreHuop94zzzVP39fTKLvJCwHcSYgrSf8cyg5M/logo.png new file mode 100644 index 0000000000000..91fc6d0e2eaca Binary files /dev/null and b/blockchains/solana/assets/3HxDM7xreHuop94zzzVP39fTKLvJCwHcSYgrSf8cyg5M/logo.png differ diff --git a/blockchains/solana/assets/3KkQ3AaMs2nZoKvYzGnh5bwRocAGFFFzDWUR4hLT7JpF/info.json b/blockchains/solana/assets/3KkQ3AaMs2nZoKvYzGnh5bwRocAGFFFzDWUR4hLT7JpF/info.json new file mode 100644 index 0000000000000..7038b44ba32d9 --- /dev/null +++ b/blockchains/solana/assets/3KkQ3AaMs2nZoKvYzGnh5bwRocAGFFFzDWUR4hLT7JpF/info.json @@ -0,0 +1,21 @@ +{ + "name": "Nutcoin", + "symbol": "NUT", + "type": "SPL", + "decimals": 8, + "description": "NUT is a memecoin deployed on Ethereum with a fixed capped supply. The cryptocurrency was created for entertainment purposes and for building a strong community around NUTS memes creation.", + "website": "https://nutcoin.org/en/", + "explorer": "https://solscan.io/token/3KkQ3AaMs2nZoKvYzGnh5bwRocAGFFFzDWUR4hLT7JpF", + "status": "active", + "id": "3KkQ3AaMs2nZoKvYzGnh5bwRocAGFFFzDWUR4hLT7JpF", + "links": [ + { + "name": "x", + "url": "https://x.com/NutcoinOrg" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nutcoin-org" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3KkQ3AaMs2nZoKvYzGnh5bwRocAGFFFzDWUR4hLT7JpF/logo.png b/blockchains/solana/assets/3KkQ3AaMs2nZoKvYzGnh5bwRocAGFFFzDWUR4hLT7JpF/logo.png new file mode 100644 index 0000000000000..46d8dc2661eeb Binary files /dev/null and b/blockchains/solana/assets/3KkQ3AaMs2nZoKvYzGnh5bwRocAGFFFzDWUR4hLT7JpF/logo.png differ diff --git a/blockchains/solana/assets/3KpkL9WtDjCvfcdSduQLbnzNbTmfzJYRhpzqwgiuNAvs/info.json b/blockchains/solana/assets/3KpkL9WtDjCvfcdSduQLbnzNbTmfzJYRhpzqwgiuNAvs/info.json new file mode 100644 index 0000000000000..1950cbbb50268 --- /dev/null +++ b/blockchains/solana/assets/3KpkL9WtDjCvfcdSduQLbnzNbTmfzJYRhpzqwgiuNAvs/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Monero", + "type": "SPL", + "symbol": "FAKE XMR", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/3KpkL9WtDjCvfcdSduQLbnzNbTmfzJYRhpzqwgiuNAvs", + "explorer": "https://solscan.io/token/3KpkL9WtDjCvfcdSduQLbnzNbTmfzJYRhpzqwgiuNAvs", + "status": "spam", + "id": "3KpkL9WtDjCvfcdSduQLbnzNbTmfzJYRhpzqwgiuNAvs" +} \ No newline at end of file diff --git a/blockchains/solana/assets/3KzAE8dPyJRgZ36Eh81v7WPwi6dm7bDhdMb8EAus2RAf/info.json b/blockchains/solana/assets/3KzAE8dPyJRgZ36Eh81v7WPwi6dm7bDhdMb8EAus2RAf/info.json new file mode 100644 index 0000000000000..7711edf576c91 --- /dev/null +++ b/blockchains/solana/assets/3KzAE8dPyJRgZ36Eh81v7WPwi6dm7bDhdMb8EAus2RAf/info.json @@ -0,0 +1,60 @@ +{ + "name": "GoMining", + "website": "https://gomining.com/", + "description": "Gomining is an exchange token backed by a Top 10 global bitcoin mining project.", + "explorer": "https://solscan.io/token/3KzAE8dPyJRgZ36Eh81v7WPwi6dm7bDhdMb8EAus2RAf", + "type": "SPL", + "symbol": "GOMINING", + "decimals": 9, + "status": "active", + "id": "3KzAE8dPyJRgZ36Eh81v7WPwi6dm7bDhdMb8EAus2RAf", + "links": [ + { + "name": "telegram_news", + "url": "https://t.me/gmt_token" + }, + { + "name": "facebook", + "url": "https://facebook.com/GMTtoken" + }, + { + "name": "x", + "url": "https://x.com/GMT_Token" + }, + { + "name": "telegram", + "url": "https://t.me/gmt_token_talk" + }, + { + "name": "whitepaper", + "url": "https://gomining.com/white-paper.pdf" + }, + { + "name": "source_code", + "url": "https://github.com/gomining-token/smart" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gomining-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gmt-token" + }, + { + "name": "medium", + "url": "https://medium.com/@GMT_Token" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/GoMiningToken" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCl98r2sL8dO058XWToApIJw" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3KzAE8dPyJRgZ36Eh81v7WPwi6dm7bDhdMb8EAus2RAf/logo.png b/blockchains/solana/assets/3KzAE8dPyJRgZ36Eh81v7WPwi6dm7bDhdMb8EAus2RAf/logo.png new file mode 100644 index 0000000000000..1d15389d09576 Binary files /dev/null and b/blockchains/solana/assets/3KzAE8dPyJRgZ36Eh81v7WPwi6dm7bDhdMb8EAus2RAf/logo.png differ diff --git a/blockchains/solana/assets/3LGrahAPBB9EZqhfH5U5UZQgS8ti7eRbEtRF7mkopump/info.json b/blockchains/solana/assets/3LGrahAPBB9EZqhfH5U5UZQgS8ti7eRbEtRF7mkopump/info.json new file mode 100644 index 0000000000000..6ae21269df936 --- /dev/null +++ b/blockchains/solana/assets/3LGrahAPBB9EZqhfH5U5UZQgS8ti7eRbEtRF7mkopump/info.json @@ -0,0 +1,21 @@ +{ + "name": "MATRIX", + "website": "https://www.mtrx.meme/", + "description": "Matrix is an AI-Agent related token that provides a platform for developers to create intelligent agents and AI applications", + "explorer": "https://solscan.io/token/3LGrahAPBB9EZqhfH5U5UZQgS8ti7eRbEtRF7mkopump", + "type": "SPL", + "symbol": "MTRX", + "decimals": 6, + "status": "active", + "id": "3LGrahAPBB9EZqhfH5U5UZQgS8ti7eRbEtRF7mkopump", + "links": [ + { + "name": "x", + "url": "https://x.com/mtrxmeme" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/matrix-solana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3LGrahAPBB9EZqhfH5U5UZQgS8ti7eRbEtRF7mkopump/logo.png b/blockchains/solana/assets/3LGrahAPBB9EZqhfH5U5UZQgS8ti7eRbEtRF7mkopump/logo.png new file mode 100644 index 0000000000000..817e9fdab4aec Binary files /dev/null and b/blockchains/solana/assets/3LGrahAPBB9EZqhfH5U5UZQgS8ti7eRbEtRF7mkopump/logo.png differ diff --git a/blockchains/solana/assets/3MadWqcN9cSrULn8ikDnan9mF3znoQmBPXtVy6BfSTDB/info.json b/blockchains/solana/assets/3MadWqcN9cSrULn8ikDnan9mF3znoQmBPXtVy6BfSTDB/info.json new file mode 100644 index 0000000000000..26d2608b174e7 --- /dev/null +++ b/blockchains/solana/assets/3MadWqcN9cSrULn8ikDnan9mF3znoQmBPXtVy6BfSTDB/info.json @@ -0,0 +1,17 @@ +{ + "name": "GrokCoin", + "type": "SPL", + "symbol": "GrokCoin", + "website": "https://grok.com", + "decimals": 6, + "description": "We're rolling out enhanced sports, finance, and location-based widgets to https://x.com/i/grok", + "explorer": "https://solscan.io/token/3MadWqcN9cSrULn8ikDnan9mF3znoQmBPXtVy6BfSTDB", + "status": "active", + "id": "3MadWqcN9cSrULn8ikDnan9mF3znoQmBPXtVy6BfSTDB", + "links": [ + { + "name": "x", + "url": "https://x.com/grok" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3MadWqcN9cSrULn8ikDnan9mF3znoQmBPXtVy6BfSTDB/logo.png b/blockchains/solana/assets/3MadWqcN9cSrULn8ikDnan9mF3znoQmBPXtVy6BfSTDB/logo.png new file mode 100644 index 0000000000000..f99a52d0d85d3 Binary files /dev/null and b/blockchains/solana/assets/3MadWqcN9cSrULn8ikDnan9mF3znoQmBPXtVy6BfSTDB/logo.png differ diff --git a/blockchains/solana/assets/3N2ETvNpPNAxhcaXgkhKoY1yDnQfs41Wnxsx5qNJpump/info.json b/blockchains/solana/assets/3N2ETvNpPNAxhcaXgkhKoY1yDnQfs41Wnxsx5qNJpump/info.json new file mode 100644 index 0000000000000..ac61218af7614 --- /dev/null +++ b/blockchains/solana/assets/3N2ETvNpPNAxhcaXgkhKoY1yDnQfs41Wnxsx5qNJpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "neur.sh", + "type": "SPL", + "symbol": "neur.sh", + "decimals": 6, + "website": "https://neur.sh/", + "description": "Neur is an open-source, full-stack application that brings together the power of LLM models and blockchain technology", + "explorer": "https://solscan.io/token/3N2ETvNpPNAxhcaXgkhKoY1yDnQfs41Wnxsx5qNJpump", + "status": "active", + "id": "3N2ETvNpPNAxhcaXgkhKoY1yDnQfs41Wnxsx5qNJpump", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/neur-sh" + }, + { + "name": "x", + "url": "https://x.com/neur_sh" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3N2ETvNpPNAxhcaXgkhKoY1yDnQfs41Wnxsx5qNJpump/logo.png b/blockchains/solana/assets/3N2ETvNpPNAxhcaXgkhKoY1yDnQfs41Wnxsx5qNJpump/logo.png new file mode 100644 index 0000000000000..a87897b95a598 Binary files /dev/null and b/blockchains/solana/assets/3N2ETvNpPNAxhcaXgkhKoY1yDnQfs41Wnxsx5qNJpump/logo.png differ diff --git a/blockchains/solana/assets/3Puwt98kwKFrvL16UYh8DB7weCBTzABapMM5SujNpump/info.json b/blockchains/solana/assets/3Puwt98kwKFrvL16UYh8DB7weCBTzABapMM5SujNpump/info.json new file mode 100644 index 0000000000000..e642d75242fab --- /dev/null +++ b/blockchains/solana/assets/3Puwt98kwKFrvL16UYh8DB7weCBTzABapMM5SujNpump/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM United Stable Donald Trump", + "type": "SPL", + "symbol": "SCAM USDT", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/3Puwt98kwKFrvL16UYh8DB7weCBTzABapMM5SujNpump", + "explorer": "https://solscan.io/token/3Puwt98kwKFrvL16UYh8DB7weCBTzABapMM5SujNpump", + "status": "spam", + "id": "3Puwt98kwKFrvL16UYh8DB7weCBTzABapMM5SujNpump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/3QPiinFaKeBkv28boLjn9rv1ci6WEd6VXAfmNHz8XEeJ/info.json b/blockchains/solana/assets/3QPiinFaKeBkv28boLjn9rv1ci6WEd6VXAfmNHz8XEeJ/info.json new file mode 100644 index 0000000000000..0f9d2bbd1a288 --- /dev/null +++ b/blockchains/solana/assets/3QPiinFaKeBkv28boLjn9rv1ci6WEd6VXAfmNHz8XEeJ/info.json @@ -0,0 +1,21 @@ +{ + "name": "Molecule", + "symbol": "MOLECULE", + "type": "SPL", + "decimals": 2, + "description": "Molecule ($MOLECULE) is where memes meet molecular-level creativity! Inspired by the building blocks of life, this meme coin is engineered to connect innovation with humor.", + "website": "https://moleculemoon.xyz/", + "explorer": "https://solscan.io/token/3QPiinFaKeBkv28boLjn9rv1ci6WEd6VXAfmNHz8XEeJ", + "status": "active", + "id": "3QPiinFaKeBkv28boLjn9rv1ci6WEd6VXAfmNHz8XEeJ", + "links": [ + { + "name": "x", + "url": "https://x.com/MoleculeCTO_" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/molecule-solana/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3QPiinFaKeBkv28boLjn9rv1ci6WEd6VXAfmNHz8XEeJ/logo.png b/blockchains/solana/assets/3QPiinFaKeBkv28boLjn9rv1ci6WEd6VXAfmNHz8XEeJ/logo.png new file mode 100644 index 0000000000000..7a721bb1eee77 Binary files /dev/null and b/blockchains/solana/assets/3QPiinFaKeBkv28boLjn9rv1ci6WEd6VXAfmNHz8XEeJ/logo.png differ diff --git a/blockchains/solana/assets/3Rcc6tMyS7ZEa29dxV4g3J5StorS9J1dn98gd42pZTk1/info.json b/blockchains/solana/assets/3Rcc6tMyS7ZEa29dxV4g3J5StorS9J1dn98gd42pZTk1/info.json new file mode 100644 index 0000000000000..1d6b1eadaf9e3 --- /dev/null +++ b/blockchains/solana/assets/3Rcc6tMyS7ZEa29dxV4g3J5StorS9J1dn98gd42pZTk1/info.json @@ -0,0 +1,17 @@ +{ + "name": "MIMANY", + "website": "https://mimany.me", + "description": "Mugs can create a custom Mimany, just for you, to your specifications.", + "explorer": "https://solscan.io/token/3Rcc6tMyS7ZEa29dxV4g3J5StorS9J1dn98gd42pZTk1", + "type": "SPL", + "symbol": "MIMANY", + "decimals": 6, + "status": "active", + "id": "3Rcc6tMyS7ZEa29dxV4g3J5StorS9J1dn98gd42pZTk1", + "links": [ + { + "name": "x", + "url": "https://x.com/MimanyMaker" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3Rcc6tMyS7ZEa29dxV4g3J5StorS9J1dn98gd42pZTk1/logo.png b/blockchains/solana/assets/3Rcc6tMyS7ZEa29dxV4g3J5StorS9J1dn98gd42pZTk1/logo.png new file mode 100644 index 0000000000000..885f00762fe0b Binary files /dev/null and b/blockchains/solana/assets/3Rcc6tMyS7ZEa29dxV4g3J5StorS9J1dn98gd42pZTk1/logo.png differ diff --git a/blockchains/solana/assets/3S8qX1MsMqRbiwKg2cQyx7nis1oHMgaCuc9c4VfvVdPN/info.json b/blockchains/solana/assets/3S8qX1MsMqRbiwKg2cQyx7nis1oHMgaCuc9c4VfvVdPN/info.json new file mode 100644 index 0000000000000..58cb180b1dd66 --- /dev/null +++ b/blockchains/solana/assets/3S8qX1MsMqRbiwKg2cQyx7nis1oHMgaCuc9c4VfvVdPN/info.json @@ -0,0 +1,17 @@ +{ + "name": "MOTHER IGGY", + "type": "SPL", + "symbol": "MOTHER", + "decimals": 6, + "website": "https://x.com/IGGYAZALEA", + "description": "Don’t disappoint your mother", + "explorer": "https://solscan.io/token/3S8qX1MsMqRbiwKg2cQyx7nis1oHMgaCuc9c4VfvVdPN", + "status": "active", + "id": "3S8qX1MsMqRbiwKg2cQyx7nis1oHMgaCuc9c4VfvVdPN", + "links": [ + { + "name": "x", + "url": "https://x.com/IGGYAZALEA" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3S8qX1MsMqRbiwKg2cQyx7nis1oHMgaCuc9c4VfvVdPN/logo.png b/blockchains/solana/assets/3S8qX1MsMqRbiwKg2cQyx7nis1oHMgaCuc9c4VfvVdPN/logo.png new file mode 100644 index 0000000000000..3e87db702b038 Binary files /dev/null and b/blockchains/solana/assets/3S8qX1MsMqRbiwKg2cQyx7nis1oHMgaCuc9c4VfvVdPN/logo.png differ diff --git a/blockchains/solana/assets/3SUxwQRsCM7mM7KnYsQsRBqBZyTQp2LsdGiiRPqEpump/info.json b/blockchains/solana/assets/3SUxwQRsCM7mM7KnYsQsRBqBZyTQp2LsdGiiRPqEpump/info.json new file mode 100644 index 0000000000000..e65f7f6ca28d6 --- /dev/null +++ b/blockchains/solana/assets/3SUxwQRsCM7mM7KnYsQsRBqBZyTQp2LsdGiiRPqEpump/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM Trump United Stable Dollar", + "type": "SPL", + "symbol": "SCAM TUSD", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/3SUxwQRsCM7mM7KnYsQsRBqBZyTQp2LsdGiiRPqEpump", + "explorer": "https://solscan.io/token/3SUxwQRsCM7mM7KnYsQsRBqBZyTQp2LsdGiiRPqEpump", + "status": "spam", + "id": "3SUxwQRsCM7mM7KnYsQsRBqBZyTQp2LsdGiiRPqEpump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/3T1WmUiFqrPkUQPMR46oTX2ZGXm32jDVbWgoCNY4pump/info.json b/blockchains/solana/assets/3T1WmUiFqrPkUQPMR46oTX2ZGXm32jDVbWgoCNY4pump/info.json new file mode 100644 index 0000000000000..fb36f0a523c73 --- /dev/null +++ b/blockchains/solana/assets/3T1WmUiFqrPkUQPMR46oTX2ZGXm32jDVbWgoCNY4pump/info.json @@ -0,0 +1,21 @@ +{ + "name": "bichi mao", + "website": "https://bichisolana.com/", + "description": "Bichi Mao is a creative project centered around a beloved webcomic series that shares heartwarming and relatable stories about cats", + "explorer": "https://solscan.io/token/3T1WmUiFqrPkUQPMR46oTX2ZGXm32jDVbWgoCNY4pump", + "type": "SPL", + "symbol": "bichi", + "decimals": 6, + "status": "active", + "id": "3T1WmUiFqrPkUQPMR46oTX2ZGXm32jDVbWgoCNY4pump", + "links": [ + { + "name": "x", + "url": "https://x.com/bichi_mao" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bichi-mao" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3T1WmUiFqrPkUQPMR46oTX2ZGXm32jDVbWgoCNY4pump/logo.png b/blockchains/solana/assets/3T1WmUiFqrPkUQPMR46oTX2ZGXm32jDVbWgoCNY4pump/logo.png new file mode 100644 index 0000000000000..388346974babb Binary files /dev/null and b/blockchains/solana/assets/3T1WmUiFqrPkUQPMR46oTX2ZGXm32jDVbWgoCNY4pump/logo.png differ diff --git a/blockchains/solana/assets/3T721bpRc5FNY84W36vWffxoKs4FLXhBpSaqwUCRpump/info.json b/blockchains/solana/assets/3T721bpRc5FNY84W36vWffxoKs4FLXhBpSaqwUCRpump/info.json new file mode 100644 index 0000000000000..d1c4282205932 --- /dev/null +++ b/blockchains/solana/assets/3T721bpRc5FNY84W36vWffxoKs4FLXhBpSaqwUCRpump/info.json @@ -0,0 +1,26 @@ +{ + "name": "PIPE", + "type": "SOL", + "symbol": "PIPE", + "decimals": 6, + "description": "Pipe never understood the behavior real Degens call 'investing into Memecoins'. He was always after something real valuable. BTC for example. Of course he is holding a bag of SOL and pepe but furthermore he is all into Pi Coin. He is mining and holding since years and his diamond bags are growing day by day. Until the final days have come...", + "website": "https://www.pipethepioneer.vip/", + "explorer": "https://solscan.io/token/3T721bpRc5FNY84W36vWffxoKs4FLXhBpSaqwUCRpump", + "id": "3T721bpRc5FNY84W36vWffxoKs4FLXhBpSaqwUCRpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/PipeS0L" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pipe" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/3T721bpRc5FNY84W36vWffxoKs4FLXhBpSaqwUCRpump/logo.png b/blockchains/solana/assets/3T721bpRc5FNY84W36vWffxoKs4FLXhBpSaqwUCRpump/logo.png new file mode 100644 index 0000000000000..75418ea706382 Binary files /dev/null and b/blockchains/solana/assets/3T721bpRc5FNY84W36vWffxoKs4FLXhBpSaqwUCRpump/logo.png differ diff --git a/blockchains/solana/assets/3TWgDvYBL2YPET2LxnWAwsMeoA8aL4DutNuwat2pKCjC/info.json b/blockchains/solana/assets/3TWgDvYBL2YPET2LxnWAwsMeoA8aL4DutNuwat2pKCjC/info.json new file mode 100644 index 0000000000000..1256293249ebc --- /dev/null +++ b/blockchains/solana/assets/3TWgDvYBL2YPET2LxnWAwsMeoA8aL4DutNuwat2pKCjC/info.json @@ -0,0 +1,17 @@ +{ + "name": "Kitten Haimer", + "type": "SPL", + "symbol": "KHAI", + "decimals": 8, + "website": "https://kittenhaimer.ai", + "description": "Kittens are here to prevail. Blending AI memes and story telling.", + "explorer": "https://solscan.io/token/3TWgDvYBL2YPET2LxnWAwsMeoA8aL4DutNuwat2pKCjC", + "status": "active", + "id": "3TWgDvYBL2YPET2LxnWAwsMeoA8aL4DutNuwat2pKCjC", + "links": [ + { + "name": "x", + "url": "https://x.com/kittenhaimer" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3TWgDvYBL2YPET2LxnWAwsMeoA8aL4DutNuwat2pKCjC/logo.png b/blockchains/solana/assets/3TWgDvYBL2YPET2LxnWAwsMeoA8aL4DutNuwat2pKCjC/logo.png new file mode 100644 index 0000000000000..010f91ece6355 Binary files /dev/null and b/blockchains/solana/assets/3TWgDvYBL2YPET2LxnWAwsMeoA8aL4DutNuwat2pKCjC/logo.png differ diff --git a/blockchains/solana/assets/3UYS3XXYC9yWvNyBWFKqqb5w9YQfX65RQzoAKd8jEUCB/info.json b/blockchains/solana/assets/3UYS3XXYC9yWvNyBWFKqqb5w9YQfX65RQzoAKd8jEUCB/info.json new file mode 100644 index 0000000000000..b0bc30275885f --- /dev/null +++ b/blockchains/solana/assets/3UYS3XXYC9yWvNyBWFKqqb5w9YQfX65RQzoAKd8jEUCB/info.json @@ -0,0 +1,30 @@ +{ + "name": "Shiba $Wing", + "type": "SOL", + "symbol": "WING", + "decimals": 6, + "description": "A meme coin with Real world Benefits. We Actually Cook! Owners of the Shiba Inu Logo Bringing memes to the masses one $WING at a time!", + "website": "https://www.shibawing.com/", + "explorer": "https://solscan.io/token/3UYS3XXYC9yWvNyBWFKqqb5w9YQfX65RQzoAKd8jEUCB", + "id": "3UYS3XXYC9yWvNyBWFKqqb5w9YQfX65RQzoAKd8jEUCB", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/tokenshibawing" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shiba-wing/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/shiba-wing" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/3UYS3XXYC9yWvNyBWFKqqb5w9YQfX65RQzoAKd8jEUCB/logo.png b/blockchains/solana/assets/3UYS3XXYC9yWvNyBWFKqqb5w9YQfX65RQzoAKd8jEUCB/logo.png new file mode 100644 index 0000000000000..b1f477c8ab00b Binary files /dev/null and b/blockchains/solana/assets/3UYS3XXYC9yWvNyBWFKqqb5w9YQfX65RQzoAKd8jEUCB/logo.png differ diff --git a/blockchains/solana/assets/3VN23efZivjL1UF8B1y4X4NmfbVe8yKhooKUAwgFpump/info.json b/blockchains/solana/assets/3VN23efZivjL1UF8B1y4X4NmfbVe8yKhooKUAwgFpump/info.json new file mode 100644 index 0000000000000..6f99e3eec4875 --- /dev/null +++ b/blockchains/solana/assets/3VN23efZivjL1UF8B1y4X4NmfbVe8yKhooKUAwgFpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "DIGGER AI", + "type": "SPL", + "symbol": "DIGGAI", + "decimals": 6, + "website": "https://diggerai.io/", + "description": "DIGGER AI is a Telegram-based ecosystem of bots designed to enhance “degen trading” by providing traders with real-time data, insights, and advanced tools for better decision-making", + "explorer": "https://solscan.io/token/3VN23efZivjL1UF8B1y4X4NmfbVe8yKhooKUAwgFpump", + "status": "active", + "id": "3VN23efZivjL1UF8B1y4X4NmfbVe8yKhooKUAwgFpump", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/digger-ai/" + }, + { + "name": "x", + "url": "https://x.com/Digger_AI_" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3VN23efZivjL1UF8B1y4X4NmfbVe8yKhooKUAwgFpump/logo.png b/blockchains/solana/assets/3VN23efZivjL1UF8B1y4X4NmfbVe8yKhooKUAwgFpump/logo.png new file mode 100644 index 0000000000000..6844d1d4702a3 Binary files /dev/null and b/blockchains/solana/assets/3VN23efZivjL1UF8B1y4X4NmfbVe8yKhooKUAwgFpump/logo.png differ diff --git a/blockchains/solana/assets/3W52uCb8NW8ruMF9mmJX3oKiYAjdPai4633srsZFQCS6/info.json b/blockchains/solana/assets/3W52uCb8NW8ruMF9mmJX3oKiYAjdPai4633srsZFQCS6/info.json new file mode 100644 index 0000000000000..2b78b144c0cc1 --- /dev/null +++ b/blockchains/solana/assets/3W52uCb8NW8ruMF9mmJX3oKiYAjdPai4633srsZFQCS6/info.json @@ -0,0 +1,21 @@ +{ + "name": "Biao Coin", + "type": "SPL", + "symbol": "BIAO", + "decimals": 6, + "website": "https://www.biaocoinsol.xyz/", + "description": "Biao on Solana is community-driven project powered with the most well known Meme of Asia. Now on Solana", + "explorer": "https://solscan.io/token/3W52uCb8NW8ruMF9mmJX3oKiYAjdPai4633srsZFQCS6", + "status": "active", + "id": "3W52uCb8NW8ruMF9mmJX3oKiYAjdPai4633srsZFQCS6", + "links": [ + { + "name": "x", + "url": "https://x.com/biaocoinsol" + }, + { + "name": "telegram", + "url": "https://t.me/biaocoinsol_cn" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3W52uCb8NW8ruMF9mmJX3oKiYAjdPai4633srsZFQCS6/logo.png b/blockchains/solana/assets/3W52uCb8NW8ruMF9mmJX3oKiYAjdPai4633srsZFQCS6/logo.png new file mode 100644 index 0000000000000..80f07ef3b0868 Binary files /dev/null and b/blockchains/solana/assets/3W52uCb8NW8ruMF9mmJX3oKiYAjdPai4633srsZFQCS6/logo.png differ diff --git a/blockchains/solana/assets/3WPep4ufaToK1aS5s8BL9inzeUrt4DYaQCiic6ZkkC1U/info.json b/blockchains/solana/assets/3WPep4ufaToK1aS5s8BL9inzeUrt4DYaQCiic6ZkkC1U/info.json new file mode 100644 index 0000000000000..8ee6681e65c5f --- /dev/null +++ b/blockchains/solana/assets/3WPep4ufaToK1aS5s8BL9inzeUrt4DYaQCiic6ZkkC1U/info.json @@ -0,0 +1,21 @@ +{ + "name": "Giko Cat", + "website": "https://gikocatcoin.club/", + "description": "first cat on the internet (1998) pls go die", + "explorer": "https://solscan.io/token/3WPep4ufaToK1aS5s8BL9inzeUrt4DYaQCiic6ZkkC1U", + "type": "SPL", + "symbol": "GIKO", + "decimals": 9, + "status": "active", + "id": "3WPep4ufaToK1aS5s8BL9inzeUrt4DYaQCiic6ZkkC1U", + "links": [ + { + "name": "telegram", + "url": "https://t.me/gikocatonsol" + }, + { + "name": "x", + "url": "https://x.com/gikocoinsol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3WPep4ufaToK1aS5s8BL9inzeUrt4DYaQCiic6ZkkC1U/logo.png b/blockchains/solana/assets/3WPep4ufaToK1aS5s8BL9inzeUrt4DYaQCiic6ZkkC1U/logo.png new file mode 100644 index 0000000000000..80e5179eeddc1 Binary files /dev/null and b/blockchains/solana/assets/3WPep4ufaToK1aS5s8BL9inzeUrt4DYaQCiic6ZkkC1U/logo.png differ diff --git a/blockchains/solana/assets/3WXnaXnqeqF5NxyjhRosVqs4jPM8XXEVJbMmkD69pump/info.json b/blockchains/solana/assets/3WXnaXnqeqF5NxyjhRosVqs4jPM8XXEVJbMmkD69pump/info.json new file mode 100644 index 0000000000000..683f4eeb1ed9b --- /dev/null +++ b/blockchains/solana/assets/3WXnaXnqeqF5NxyjhRosVqs4jPM8XXEVJbMmkD69pump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Men of Culture", + "website": "https://menofculture.online/", + "description": "Men of Culture, we meet again! Ah, the joy of gathering among those who truly understand the art of jiggly", + "explorer": "https://solscan.io/token/3WXnaXnqeqF5NxyjhRosVqs4jPM8XXEVJbMmkD69pump", + "type": "SPL", + "symbol": "CULTURE", + "decimals": 6, + "status": "active", + "id": "3WXnaXnqeqF5NxyjhRosVqs4jPM8XXEVJbMmkD69pump", + "links": [ + { + "name": "telegram", + "url": "https://t.me/+ZOCd6H2MUic5MmVl" + }, + { + "name": "x", + "url": "https://x.com/SOLCultureCoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3WXnaXnqeqF5NxyjhRosVqs4jPM8XXEVJbMmkD69pump/logo.png b/blockchains/solana/assets/3WXnaXnqeqF5NxyjhRosVqs4jPM8XXEVJbMmkD69pump/logo.png new file mode 100644 index 0000000000000..b5138bd39148b Binary files /dev/null and b/blockchains/solana/assets/3WXnaXnqeqF5NxyjhRosVqs4jPM8XXEVJbMmkD69pump/logo.png differ diff --git a/blockchains/solana/assets/3WvhGPFdqhE2CwrNbURc77SY65FaHtVeBsfjdLMmpump/info.json b/blockchains/solana/assets/3WvhGPFdqhE2CwrNbURc77SY65FaHtVeBsfjdLMmpump/info.json new file mode 100644 index 0000000000000..5f48b155b57e4 --- /dev/null +++ b/blockchains/solana/assets/3WvhGPFdqhE2CwrNbURc77SY65FaHtVeBsfjdLMmpump/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM united stable tripod coin", + "type": "SPL", + "symbol": "SCAM USTC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/3WvhGPFdqhE2CwrNbURc77SY65FaHtVeBsfjdLMmpump", + "explorer": "https://solscan.io/token/3WvhGPFdqhE2CwrNbURc77SY65FaHtVeBsfjdLMmpump", + "status": "spam", + "id": "3WvhGPFdqhE2CwrNbURc77SY65FaHtVeBsfjdLMmpump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/3X8GcLiH2HttjyqePg7MazpMbwbgq5URUMTyDz5tkmdE/info.json b/blockchains/solana/assets/3X8GcLiH2HttjyqePg7MazpMbwbgq5URUMTyDz5tkmdE/info.json new file mode 100644 index 0000000000000..ef4385728d991 --- /dev/null +++ b/blockchains/solana/assets/3X8GcLiH2HttjyqePg7MazpMbwbgq5URUMTyDz5tkmdE/info.json @@ -0,0 +1,21 @@ +{ + "name": "LADYF", + "symbol": "LADYF", + "type": "SPL", + "decimals": 6, + "description": "In the legendary meme realms of Solana, where the echoes of Achi still reverberate, the ascent of the wif hat heralds a new era for $LADYS", + "website": "https://ladyf.xyz/", + "explorer": "https://solscan.io/token/3X8GcLiH2HttjyqePg7MazpMbwbgq5URUMTyDz5tkmdE", + "status": "active", + "id": "3X8GcLiH2HttjyqePg7MazpMbwbgq5URUMTyDz5tkmdE", + "links": [ + { + "name": "x", + "url": "https://x.com/miladymemecoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/milady-wif-hat" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3X8GcLiH2HttjyqePg7MazpMbwbgq5URUMTyDz5tkmdE/logo.png b/blockchains/solana/assets/3X8GcLiH2HttjyqePg7MazpMbwbgq5URUMTyDz5tkmdE/logo.png new file mode 100644 index 0000000000000..7a3a13c0bafa4 Binary files /dev/null and b/blockchains/solana/assets/3X8GcLiH2HttjyqePg7MazpMbwbgq5URUMTyDz5tkmdE/logo.png differ diff --git a/blockchains/solana/assets/3XTp12PmKMHxB6YkejaGPUjMGBLKRGgzHWgJuVTsBCoP/info.json b/blockchains/solana/assets/3XTp12PmKMHxB6YkejaGPUjMGBLKRGgzHWgJuVTsBCoP/info.json new file mode 100644 index 0000000000000..bcee8b383e04b --- /dev/null +++ b/blockchains/solana/assets/3XTp12PmKMHxB6YkejaGPUjMGBLKRGgzHWgJuVTsBCoP/info.json @@ -0,0 +1,17 @@ +{ + "name": "Bird Dog", + "type": "SPL", + "symbol": "BIRDDOG", + "decimals": 9, + "website": "https://www.solbirddog.com/", + "description": "A community take-over based on Matt Furie's 5th Boy's Club characters - Bird Dog. A dog that flies.", + "explorer": "https://solscan.io/token/3XTp12PmKMHxB6YkejaGPUjMGBLKRGgzHWgJuVTsBCoP", + "status": "active", + "id": "3XTp12PmKMHxB6YkejaGPUjMGBLKRGgzHWgJuVTsBCoP", + "links": [ + { + "name": "x", + "url": "https://x.com/SOLbirddog" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3XTp12PmKMHxB6YkejaGPUjMGBLKRGgzHWgJuVTsBCoP/logo.png b/blockchains/solana/assets/3XTp12PmKMHxB6YkejaGPUjMGBLKRGgzHWgJuVTsBCoP/logo.png new file mode 100644 index 0000000000000..100475337047c Binary files /dev/null and b/blockchains/solana/assets/3XTp12PmKMHxB6YkejaGPUjMGBLKRGgzHWgJuVTsBCoP/logo.png differ diff --git a/blockchains/solana/assets/3XktN2eZiv5g62qSQ3bbTjTefSxrPjde4PyKDtcRpump/info.json b/blockchains/solana/assets/3XktN2eZiv5g62qSQ3bbTjTefSxrPjde4PyKDtcRpump/info.json new file mode 100644 index 0000000000000..b20f5aaf11849 --- /dev/null +++ b/blockchains/solana/assets/3XktN2eZiv5g62qSQ3bbTjTefSxrPjde4PyKDtcRpump/info.json @@ -0,0 +1,27 @@ +{ + "name": "scan meme", + "type": "SOL", + "symbol": "SCAN", + "decimals": 6, + "description": "Scan is a new meme token that brings together individuals who strive to use their time wisely for personal development. It encourages participants to focus on self-improvement, prioritizing both health and wealth. The project promotes a mindful approach to life, offering everyone the freedom to choose how to make their time more valuable and productive.", + "website": "https://scanmemes.net/", + "explorer": "https://solscan.io/token/3XktN2eZiv5g62qSQ3bbTjTefSxrPjde4PyKDtcRpump", + "id": "3XktN2eZiv5g62qSQ3bbTjTefSxrPjde4PyKDtcRpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/scanmemes" + }, + + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/scan-meme" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/3XktN2eZiv5g62qSQ3bbTjTefSxrPjde4PyKDtcRpump/logo.png b/blockchains/solana/assets/3XktN2eZiv5g62qSQ3bbTjTefSxrPjde4PyKDtcRpump/logo.png new file mode 100644 index 0000000000000..bccc0b1ba0d26 Binary files /dev/null and b/blockchains/solana/assets/3XktN2eZiv5g62qSQ3bbTjTefSxrPjde4PyKDtcRpump/logo.png differ diff --git a/blockchains/solana/assets/3Yie9s6iuEmk8aiXYC19xaq2iccTuFzyfKBWv6gFpump/info.json b/blockchains/solana/assets/3Yie9s6iuEmk8aiXYC19xaq2iccTuFzyfKBWv6gFpump/info.json new file mode 100644 index 0000000000000..bafa6acc60d59 --- /dev/null +++ b/blockchains/solana/assets/3Yie9s6iuEmk8aiXYC19xaq2iccTuFzyfKBWv6gFpump/info.json @@ -0,0 +1,29 @@ +{ + "name": "NORA", + "type": "SOL", + "symbol": "NORA", + "decimals": 6, + "description": "Launched on January 2nd, 2025, by a team of AI and blockchain engineers based in the United States, Nora is an AI-powered mental health agent available on the iOS App Store. It is designed to provide on-demand, therapy-like sessions that are secure, accessible, and personalized. Nora aims to make mental health support more approachable and convenient for users seeking help in managing their emotional well-being.", + "website": "https://www.speaktonora.com/", + "explorer": "https://solscan.io/token/3Yie9s6iuEmk8aiXYC19xaq2iccTuFzyfKBWv6gFpump", + "id": "3Yie9s6iuEmk8aiXYC19xaq2iccTuFzyfKBWv6gFpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/talktonora?s=11&t=ZGzrL8B9N7GpbA3YLFvU9A" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nora/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/nora" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/3Yie9s6iuEmk8aiXYC19xaq2iccTuFzyfKBWv6gFpump/logo.png b/blockchains/solana/assets/3Yie9s6iuEmk8aiXYC19xaq2iccTuFzyfKBWv6gFpump/logo.png new file mode 100644 index 0000000000000..d87e27d6a75f9 Binary files /dev/null and b/blockchains/solana/assets/3Yie9s6iuEmk8aiXYC19xaq2iccTuFzyfKBWv6gFpump/logo.png differ diff --git a/blockchains/solana/assets/3bRTivrVsitbmCTGtqwp7hxXPsybkjn4XLNtPsHqa3zR/info.json b/blockchains/solana/assets/3bRTivrVsitbmCTGtqwp7hxXPsybkjn4XLNtPsHqa3zR/info.json new file mode 100644 index 0000000000000..0eb085a04bf79 --- /dev/null +++ b/blockchains/solana/assets/3bRTivrVsitbmCTGtqwp7hxXPsybkjn4XLNtPsHqa3zR/info.json @@ -0,0 +1,25 @@ +{ + "name": "Only1", + "website": "https://only1.io/", + "description": "Only1 is the first NFT-powered social media built on Solana - the most scalable blockchain to date.", + "explorer": "https://solscan.io/token/3bRTivrVsitbmCTGtqwp7hxXPsybkjn4XLNtPsHqa3zR", + "symbol": "LIKE", + "type": "SPL", + "decimals": 9, + "id": "3bRTivrVsitbmCTGtqwp7hxXPsybkjn4XLNtPsHqa3zR", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/only1nft" + }, + { + "name": "telegram", + "url": "https://t.me/only1nft" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/only1/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3bRTivrVsitbmCTGtqwp7hxXPsybkjn4XLNtPsHqa3zR/logo.png b/blockchains/solana/assets/3bRTivrVsitbmCTGtqwp7hxXPsybkjn4XLNtPsHqa3zR/logo.png new file mode 100644 index 0000000000000..f9dfd397420d1 Binary files /dev/null and b/blockchains/solana/assets/3bRTivrVsitbmCTGtqwp7hxXPsybkjn4XLNtPsHqa3zR/logo.png differ diff --git a/blockchains/solana/assets/3beuHzMnFQKXQFW9PhzeRPRDp6DFRowtYhdwWMMMZ4zV/info.json b/blockchains/solana/assets/3beuHzMnFQKXQFW9PhzeRPRDp6DFRowtYhdwWMMMZ4zV/info.json new file mode 100644 index 0000000000000..96e2fd8cb1ed7 --- /dev/null +++ b/blockchains/solana/assets/3beuHzMnFQKXQFW9PhzeRPRDp6DFRowtYhdwWMMMZ4zV/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT SpaceX_coin", + "type": "SPL", + "symbol": "HONEYPOT SPCX", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/3beuHzMnFQKXQFW9PhzeRPRDp6DFRowtYhdwWMMMZ4zV", + "explorer": "https://solscan.io/token/3beuHzMnFQKXQFW9PhzeRPRDp6DFRowtYhdwWMMMZ4zV", + "status": "spam", + "id": "3beuHzMnFQKXQFW9PhzeRPRDp6DFRowtYhdwWMMMZ4zV" +} \ No newline at end of file diff --git a/blockchains/solana/assets/3cqMmudbNeAHv9JWA2X3TqmgTtZng5CajuZY2Yo74AfD/info.json b/blockchains/solana/assets/3cqMmudbNeAHv9JWA2X3TqmgTtZng5CajuZY2Yo74AfD/info.json new file mode 100644 index 0000000000000..c1dade0ba9b5c --- /dev/null +++ b/blockchains/solana/assets/3cqMmudbNeAHv9JWA2X3TqmgTtZng5CajuZY2Yo74AfD/info.json @@ -0,0 +1,25 @@ +{ + "name": "Alice Weidel", + "type": "SOL", + "symbol": "AFD", + "decimals": 6, + "description": "Alice Weidel and the AfD, supported by Elon Musk, now as a memecoin! Tech mogul Elon Musk has publicly declared his support for the AfD and Alice Weidel. In a live conversation on X, he praised Weidel's vision for Germany and stated that the AfD is the only hope for the country. Alice Weidel, the chancellor candidate of the Alternative for Germany (AfD), stands for conservative values and national sovereignty.", + "website": "https://aliceweidel.io/", + "explorer": "https://solscan.io/token/3cqMmudbNeAHv9JWA2X3TqmgTtZng5CajuZY2Yo74AfD", + "id": "3cqMmudbNeAHv9JWA2X3TqmgTtZng5CajuZY2Yo74AfD", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/AliceAFDSolana" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/alice-weidel/" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/3cqMmudbNeAHv9JWA2X3TqmgTtZng5CajuZY2Yo74AfD/logo.png b/blockchains/solana/assets/3cqMmudbNeAHv9JWA2X3TqmgTtZng5CajuZY2Yo74AfD/logo.png new file mode 100644 index 0000000000000..9712873e07364 Binary files /dev/null and b/blockchains/solana/assets/3cqMmudbNeAHv9JWA2X3TqmgTtZng5CajuZY2Yo74AfD/logo.png differ diff --git a/blockchains/solana/assets/3dQTr7ror2QPKQ3GbBCokJUmjErGg8kTJzdnYjNfvi3Z/info.json b/blockchains/solana/assets/3dQTr7ror2QPKQ3GbBCokJUmjErGg8kTJzdnYjNfvi3Z/info.json new file mode 100644 index 0000000000000..a007d54e75d88 --- /dev/null +++ b/blockchains/solana/assets/3dQTr7ror2QPKQ3GbBCokJUmjErGg8kTJzdnYjNfvi3Z/info.json @@ -0,0 +1,29 @@ +{ + "name": "SwissBorg", + "type": "SPL", + "symbol": "BORG", + "decimals": 9, + "description": "SwissBorg is an all-encompassing crypto management app designed to offer services such as exchanging crypto and fiat, earning yield, and accessing launchpad investment opportunities. Established during the ICO era of 2017, it has amassed over 1 million registered users by 2024. The BORG is the token powering this revolutionary financial ecosystem.", + "website": "https://swissborg.com/", + "explorer": "https://solscan.io/token/3dQTr7ror2QPKQ3GbBCokJUmjErGg8kTJzdnYjNfvi3Z", + "id": "3dQTr7ror2QPKQ3GbBCokJUmjErGg8kTJzdnYjNfvi3Z", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/swissborg" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/swissborg/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/swissborg" + } + ], + "tags": [ + "staking" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/3dQTr7ror2QPKQ3GbBCokJUmjErGg8kTJzdnYjNfvi3Z/logo.png b/blockchains/solana/assets/3dQTr7ror2QPKQ3GbBCokJUmjErGg8kTJzdnYjNfvi3Z/logo.png new file mode 100644 index 0000000000000..847cda5271c4e Binary files /dev/null and b/blockchains/solana/assets/3dQTr7ror2QPKQ3GbBCokJUmjErGg8kTJzdnYjNfvi3Z/logo.png differ diff --git a/blockchains/solana/assets/3gV3t7Y9zsd7wNjGXXukn2RT81vfH46hA3oEcHgVpump/info.json b/blockchains/solana/assets/3gV3t7Y9zsd7wNjGXXukn2RT81vfH46hA3oEcHgVpump/info.json new file mode 100644 index 0000000000000..dd989ff943450 --- /dev/null +++ b/blockchains/solana/assets/3gV3t7Y9zsd7wNjGXXukn2RT81vfH46hA3oEcHgVpump/info.json @@ -0,0 +1,27 @@ +{ + "name": "Ume", + "type": "SOL", + "symbol": "Ume", + "decimals": 6, + "description": "Building a Future for Ume and All Endangered Species!", + "website": "https://umeonsol.com/", + "explorer": "https://solscan.io/token/3gV3t7Y9zsd7wNjGXXukn2RT81vfH46hA3oEcHgVpump", + "id": "3gV3t7Y9zsd7wNjGXXukn2RT81vfH46hA3oEcHgVpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/UmeTapir" + }, + + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ume" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/3gV3t7Y9zsd7wNjGXXukn2RT81vfH46hA3oEcHgVpump/logo.png b/blockchains/solana/assets/3gV3t7Y9zsd7wNjGXXukn2RT81vfH46hA3oEcHgVpump/logo.png new file mode 100644 index 0000000000000..c1cb62e099431 Binary files /dev/null and b/blockchains/solana/assets/3gV3t7Y9zsd7wNjGXXukn2RT81vfH46hA3oEcHgVpump/logo.png differ diff --git a/blockchains/solana/assets/3ijco7rKKeuyDbLTMYBFKvJm15811iLi4diUYjbXJMAt/info.json b/blockchains/solana/assets/3ijco7rKKeuyDbLTMYBFKvJm15811iLi4diUYjbXJMAt/info.json new file mode 100644 index 0000000000000..e16b07928b8f2 --- /dev/null +++ b/blockchains/solana/assets/3ijco7rKKeuyDbLTMYBFKvJm15811iLi4diUYjbXJMAt/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE ՍSⅮСoin.А", + "type": "SPL", + "symbol": "FAKE USⅮС.А", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/3ijco7rKKeuyDbLTMYBFKvJm15811iLi4diUYjbXJMAt", + "explorer": "https://solscan.io/token/3ijco7rKKeuyDbLTMYBFKvJm15811iLi4diUYjbXJMAt", + "status": "spam", + "id": "3ijco7rKKeuyDbLTMYBFKvJm15811iLi4diUYjbXJMAt" +} \ No newline at end of file diff --git a/blockchains/solana/assets/3joMReCCSESngJEpFLoKR2dNcChjSRCDtybQet5uSpse/info.json b/blockchains/solana/assets/3joMReCCSESngJEpFLoKR2dNcChjSRCDtybQet5uSpse/info.json new file mode 100644 index 0000000000000..26e30c36562fc --- /dev/null +++ b/blockchains/solana/assets/3joMReCCSESngJEpFLoKR2dNcChjSRCDtybQet5uSpse/info.json @@ -0,0 +1,25 @@ +{ + "name": "Simons Cat", + "symbol": "CAT", + "type": "SPL", + "decimals": 6, + "description": "Simon's Cat is a meme token aims for every trade that feeds the hungry cats around the world.", + "website": "https://www.simons.cat/", + "explorer": "https://solscan.io/token/3joMReCCSESngJEpFLoKR2dNcChjSRCDtybQet5uSpse", + "status": "active", + "id": "3joMReCCSESngJEpFLoKR2dNcChjSRCDtybQet5uSpse", + "links": [ + { + "name": "telegram", + "url": "https://t.me/SimonsCatWorld" + }, + { + "name": "x", + "url": "https://x.com/SimonsCatMeme" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/simonscat/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3joMReCCSESngJEpFLoKR2dNcChjSRCDtybQet5uSpse/logo.png b/blockchains/solana/assets/3joMReCCSESngJEpFLoKR2dNcChjSRCDtybQet5uSpse/logo.png new file mode 100644 index 0000000000000..7bef25c5148d5 Binary files /dev/null and b/blockchains/solana/assets/3joMReCCSESngJEpFLoKR2dNcChjSRCDtybQet5uSpse/logo.png differ diff --git a/blockchains/solana/assets/3jzdrXXKxwkBk82u2eCWASZLCKoZs1LQTg87HBEAmBJw/info.json b/blockchains/solana/assets/3jzdrXXKxwkBk82u2eCWASZLCKoZs1LQTg87HBEAmBJw/info.json index 34fbd8f8405a3..1b21e26a49c92 100644 --- a/blockchains/solana/assets/3jzdrXXKxwkBk82u2eCWASZLCKoZs1LQTg87HBEAmBJw/info.json +++ b/blockchains/solana/assets/3jzdrXXKxwkBk82u2eCWASZLCKoZs1LQTg87HBEAmBJw/info.json @@ -10,8 +10,8 @@ "id": "3jzdrXXKxwkBk82u2eCWASZLCKoZs1LQTg87HBEAmBJw", "links": [ { - "name": "twitter", - "url": "https://twitter.com/FLOOF_SOLANA" + "name": "x", + "url": "https://x.com/FLOOF_SOLANA" }, { "name": "telegram", diff --git a/blockchains/solana/assets/3oGumEjkZpYUC4abwwJqHqQNr6JbQyUff4SigwWZHBNJ/info.json b/blockchains/solana/assets/3oGumEjkZpYUC4abwwJqHqQNr6JbQyUff4SigwWZHBNJ/info.json new file mode 100644 index 0000000000000..a70cd91208785 --- /dev/null +++ b/blockchains/solana/assets/3oGumEjkZpYUC4abwwJqHqQNr6JbQyUff4SigwWZHBNJ/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT Celestia", + "type": "SPL", + "symbol": "HONEYPOT TIA", + "decimals": 8, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/3oGumEjkZpYUC4abwwJqHqQNr6JbQyUff4SigwWZHBNJ", + "explorer": "https://solscan.io/token/3oGumEjkZpYUC4abwwJqHqQNr6JbQyUff4SigwWZHBNJ", + "status": "spam", + "id": "3oGumEjkZpYUC4abwwJqHqQNr6JbQyUff4SigwWZHBNJ" +} \ No newline at end of file diff --git a/blockchains/solana/assets/3obNTknsf4hq5pNh3GDPEhyCB9WTKJJzM2PcqfKgLmBu/info.json b/blockchains/solana/assets/3obNTknsf4hq5pNh3GDPEhyCB9WTKJJzM2PcqfKgLmBu/info.json new file mode 100644 index 0000000000000..6bb30fa6a4741 --- /dev/null +++ b/blockchains/solana/assets/3obNTknsf4hq5pNh3GDPEhyCB9WTKJJzM2PcqfKgLmBu/info.json @@ -0,0 +1,17 @@ +{ + "name": "Cats Of Sol", + "website": "https://www.catsofsol.com/", + "description": "Explore the world where stylish cats with swag meets the wild world of Meme on solana blockchain!", + "explorer": "https://solscan.io/token/3obNTknsf4hq5pNh3GDPEhyCB9WTKJJzM2PcqfKgLmBu", + "type": "SPL", + "symbol": "COS", + "decimals": 9, + "status": "active", + "id": "3obNTknsf4hq5pNh3GDPEhyCB9WTKJJzM2PcqfKgLmBu", + "links": [ + { + "name": "x", + "url": "https://x.com/catsofsol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3obNTknsf4hq5pNh3GDPEhyCB9WTKJJzM2PcqfKgLmBu/logo.png b/blockchains/solana/assets/3obNTknsf4hq5pNh3GDPEhyCB9WTKJJzM2PcqfKgLmBu/logo.png new file mode 100644 index 0000000000000..9c301c337bb82 Binary files /dev/null and b/blockchains/solana/assets/3obNTknsf4hq5pNh3GDPEhyCB9WTKJJzM2PcqfKgLmBu/logo.png differ diff --git a/blockchains/solana/assets/3pH7FnM3yR2Jy2c6vyXmsCiNi1rjQ7gerCq2pEUHpump/info.json b/blockchains/solana/assets/3pH7FnM3yR2Jy2c6vyXmsCiNi1rjQ7gerCq2pEUHpump/info.json new file mode 100644 index 0000000000000..342d1bb84f44c --- /dev/null +++ b/blockchains/solana/assets/3pH7FnM3yR2Jy2c6vyXmsCiNi1rjQ7gerCq2pEUHpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Zenith", + "website": "https://mindbath.com/", + "description": "Mindbath is a digital creator and platform focused on fostering self-discovery and thought-provoking engagement, blending cryptic messages with an interactive community.", + "explorer": "https://solscan.io/token/3pH7FnM3yR2Jy2c6vyXmsCiNi1rjQ7gerCq2pEUHpump", + "type": "SPL", + "symbol": "ZEN", + "decimals": 6, + "status": "active", + "id": "3pH7FnM3yR2Jy2c6vyXmsCiNi1rjQ7gerCq2pEUHpump", + "links": [ + { + "name": "x", + "url": "https://x.com/mindbath" + }, + { + "name": "telegram", + "url": "https://t.me/+hCTQLf149JNlZjgx" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3pH7FnM3yR2Jy2c6vyXmsCiNi1rjQ7gerCq2pEUHpump/logo.png b/blockchains/solana/assets/3pH7FnM3yR2Jy2c6vyXmsCiNi1rjQ7gerCq2pEUHpump/logo.png new file mode 100644 index 0000000000000..bd38857163d86 Binary files /dev/null and b/blockchains/solana/assets/3pH7FnM3yR2Jy2c6vyXmsCiNi1rjQ7gerCq2pEUHpump/logo.png differ diff --git a/blockchains/solana/assets/3psH1Mj1f7yUfaD5gh6Zj7epE8hhrMkMETgv5TshQA4o/info.json b/blockchains/solana/assets/3psH1Mj1f7yUfaD5gh6Zj7epE8hhrMkMETgv5TshQA4o/info.json new file mode 100644 index 0000000000000..811febf0f776e --- /dev/null +++ b/blockchains/solana/assets/3psH1Mj1f7yUfaD5gh6Zj7epE8hhrMkMETgv5TshQA4o/info.json @@ -0,0 +1,21 @@ +{ + "name": " jeo boden", + "type": "SPL", + "symbol": "boden", + "decimals": 9, + "website": "https://bodenonsol.xyz/", + "description": "Joe Boden is da hartfelt leeder of Amuriku. His mishun is to bild bak betta, to unify da divided, n to counter da wild claims of Doland Tremp.", + "explorer": "https://solscan.io/token/3psH1Mj1f7yUfaD5gh6Zj7epE8hhrMkMETgv5TshQA4o", + "status": "active", + "id": "3psH1Mj1f7yUfaD5gh6Zj7epE8hhrMkMETgv5TshQA4o", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/jeo-boden" + }, + { + "name": "x", + "url": "https://x.com/bodenonsolana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3psH1Mj1f7yUfaD5gh6Zj7epE8hhrMkMETgv5TshQA4o/logo.png b/blockchains/solana/assets/3psH1Mj1f7yUfaD5gh6Zj7epE8hhrMkMETgv5TshQA4o/logo.png new file mode 100644 index 0000000000000..0bb63b3436efb Binary files /dev/null and b/blockchains/solana/assets/3psH1Mj1f7yUfaD5gh6Zj7epE8hhrMkMETgv5TshQA4o/logo.png differ diff --git a/blockchains/solana/assets/3vAs4D1WE6Na4tCgt4BApgFfENbm8WY7q4cSPD1yM4Cg/info.json b/blockchains/solana/assets/3vAs4D1WE6Na4tCgt4BApgFfENbm8WY7q4cSPD1yM4Cg/info.json index 313f30165950d..5dc5cd69cf216 100644 --- a/blockchains/solana/assets/3vAs4D1WE6Na4tCgt4BApgFfENbm8WY7q4cSPD1yM4Cg/info.json +++ b/blockchains/solana/assets/3vAs4D1WE6Na4tCgt4BApgFfENbm8WY7q4cSPD1yM4Cg/info.json @@ -3,12 +3,48 @@ "type": "SPL", "symbol": "AAVE", "decimals": 8, - "description": "Cross Chain Portal Bridged Token", - "website": "https://app.aave.com/?referral=93", + "description": "Cross Chain Portal Bridged Token. Aave is a decentralized finance protocol that allows people to lend and borrow crypto.", + "website": "https://aave.com", "explorer": "https://solscan.io/token/3vAs4D1WE6Na4tCgt4BApgFfENbm8WY7q4cSPD1yM4Cg", "status": "active", "id": "3vAs4D1WE6Na4tCgt4BApgFfENbm8WY7q4cSPD1yM4Cg", "tags": [ - "wrapped" + "wrapped", + "defi", + "governance" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/aave/aave-protocol" + }, + { + "name": "x", + "url": "https://x.com/aave" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Aave_Official" + }, + { + "name": "blog", + "url": "https://medium.com/aave" + }, + { + "name": "facebook", + "url": "https://facebook.com/AaveCom" + }, + { + "name": "whitepaper", + "url": "https://github.com/aave/aave-protocol/blob/master/docs/Aave_Protocol_Whitepaper_v1_0.pdf/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/aave/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/aave/" + } ] } \ No newline at end of file diff --git a/blockchains/solana/assets/3vAs4D1WE6Na4tCgt4BApgFfENbm8WY7q4cSPD1yM4Cg/logo.png b/blockchains/solana/assets/3vAs4D1WE6Na4tCgt4BApgFfENbm8WY7q4cSPD1yM4Cg/logo.png index 3c530aaca6334..d53b11427e965 100644 Binary files a/blockchains/solana/assets/3vAs4D1WE6Na4tCgt4BApgFfENbm8WY7q4cSPD1yM4Cg/logo.png and b/blockchains/solana/assets/3vAs4D1WE6Na4tCgt4BApgFfENbm8WY7q4cSPD1yM4Cg/logo.png differ diff --git a/blockchains/solana/assets/3vJenGaGsuKG5shPhi7rjnuy3MV6xjmBTGjYqYzXpump/info.json b/blockchains/solana/assets/3vJenGaGsuKG5shPhi7rjnuy3MV6xjmBTGjYqYzXpump/info.json new file mode 100644 index 0000000000000..44ae1a1de3a98 --- /dev/null +++ b/blockchains/solana/assets/3vJenGaGsuKG5shPhi7rjnuy3MV6xjmBTGjYqYzXpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "RAT Escape", + "website": "https://ratescape.xyz/", + "description": "Too many bag holders are stuck in the rat race", + "explorer": "https://solscan.io/token/3vJenGaGsuKG5shPhi7rjnuy3MV6xjmBTGjYqYzXpump", + "type": "SPL", + "symbol": "RAT", + "decimals": 6, + "status": "active", + "id": "3vJenGaGsuKG5shPhi7rjnuy3MV6xjmBTGjYqYzXpump", + "links": [ + { + "name": "x", + "url": "https://x.com/RATescapeplan" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rat-escape/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3vJenGaGsuKG5shPhi7rjnuy3MV6xjmBTGjYqYzXpump/logo.png b/blockchains/solana/assets/3vJenGaGsuKG5shPhi7rjnuy3MV6xjmBTGjYqYzXpump/logo.png new file mode 100644 index 0000000000000..c5d1a82bc12b8 Binary files /dev/null and b/blockchains/solana/assets/3vJenGaGsuKG5shPhi7rjnuy3MV6xjmBTGjYqYzXpump/logo.png differ diff --git a/blockchains/solana/assets/3wDKi2uHgZWuF888m9TarGRcY3atNwou41yPhfMk5gCn/info.json b/blockchains/solana/assets/3wDKi2uHgZWuF888m9TarGRcY3atNwou41yPhfMk5gCn/info.json new file mode 100644 index 0000000000000..33703ee251940 --- /dev/null +++ b/blockchains/solana/assets/3wDKi2uHgZWuF888m9TarGRcY3atNwou41yPhfMk5gCn/info.json @@ -0,0 +1,21 @@ +{ + "name": "Doge AI Agent", + "symbol": "DOGEAI", + "type": "SPL", + "decimals": 2, + "description": "The Doge AI Agent project is an emerging initiative that combines Dogecoin with artificial intelligence to expand its applications", + "website": "https://doge-ai.space/", + "explorer": "https://solscan.io/token/3wDKi2uHgZWuF888m9TarGRcY3atNwou41yPhfMk5gCn", + "status": "active", + "id": "3wDKi2uHgZWuF888m9TarGRcY3atNwou41yPhfMk5gCn", + "links": [ + { + "name": "x", + "url": "https://x.com/DogeAIAgentai" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/doge-ai-agent/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3wDKi2uHgZWuF888m9TarGRcY3atNwou41yPhfMk5gCn/logo.png b/blockchains/solana/assets/3wDKi2uHgZWuF888m9TarGRcY3atNwou41yPhfMk5gCn/logo.png new file mode 100644 index 0000000000000..3b782112c19c1 Binary files /dev/null and b/blockchains/solana/assets/3wDKi2uHgZWuF888m9TarGRcY3atNwou41yPhfMk5gCn/logo.png differ diff --git a/blockchains/solana/assets/3wQ3J6wt1ExTtwZT3Dmq8aSKFbkiouMf5fiKwfrCV5WR/info.json b/blockchains/solana/assets/3wQ3J6wt1ExTtwZT3Dmq8aSKFbkiouMf5fiKwfrCV5WR/info.json new file mode 100644 index 0000000000000..bc644e44b9f4c --- /dev/null +++ b/blockchains/solana/assets/3wQ3J6wt1ExTtwZT3Dmq8aSKFbkiouMf5fiKwfrCV5WR/info.json @@ -0,0 +1,11 @@ +{ + "name": "SPAM TAO", + "type": "SPL", + "symbol": "SPAM TAO", + "decimals": 8, + "website": "https://solscan.io/token/3wQ3J6wt1ExTtwZT3Dmq8aSKFbkiouMf5fiKwfrCV5WR", + "description": "SPAM TAO", + "explorer": "https://explorer.solana.com/address/3wQ3J6wt1ExTtwZT3Dmq8aSKFbkiouMf5fiKwfrCV5WR", + "status": "spam", + "id": "3wQ3J6wt1ExTtwZT3Dmq8aSKFbkiouMf5fiKwfrCV5WR" +} \ No newline at end of file diff --git a/blockchains/solana/assets/3xvLSHrLcM7246X1vu34cM9gNX741kQrzqj6T2HhLvXp/info.json b/blockchains/solana/assets/3xvLSHrLcM7246X1vu34cM9gNX741kQrzqj6T2HhLvXp/info.json new file mode 100644 index 0000000000000..746cb22da3ffe --- /dev/null +++ b/blockchains/solana/assets/3xvLSHrLcM7246X1vu34cM9gNX741kQrzqj6T2HhLvXp/info.json @@ -0,0 +1,21 @@ +{ + "name": "8-Bit Coin", + "symbol": "COIN", + "type": "SPL", + "decimals": 5, + "description": "In a time where gaming meets blockchain, our project aims to make GameFi sustainable and rewarding.", + "website": "https://8bit.so/", + "explorer": "https://solscan.io/token/3xvLSHrLcM7246X1vu34cM9gNX741kQrzqj6T2HhLvXp", + "status": "active", + "id": "3xvLSHrLcM7246X1vu34cM9gNX741kQrzqj6T2HhLvXp", + "links": [ + { + "name": "x", + "url": "https://x.com/Coin8Bit" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mario-coin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3xvLSHrLcM7246X1vu34cM9gNX741kQrzqj6T2HhLvXp/logo.png b/blockchains/solana/assets/3xvLSHrLcM7246X1vu34cM9gNX741kQrzqj6T2HhLvXp/logo.png new file mode 100644 index 0000000000000..0d6e00e832061 Binary files /dev/null and b/blockchains/solana/assets/3xvLSHrLcM7246X1vu34cM9gNX741kQrzqj6T2HhLvXp/logo.png differ diff --git a/blockchains/solana/assets/41fZewbrb8x24yE9KeMJExoVXCDggebPMEwRVvX8pump/info.json b/blockchains/solana/assets/41fZewbrb8x24yE9KeMJExoVXCDggebPMEwRVvX8pump/info.json new file mode 100644 index 0000000000000..233168fb8365c --- /dev/null +++ b/blockchains/solana/assets/41fZewbrb8x24yE9KeMJExoVXCDggebPMEwRVvX8pump/info.json @@ -0,0 +1,26 @@ +{ + "name": "KittyMineCoin", + "type": "SOL", + "symbol": "KMC", + "decimals": 6, + "description": "The first ever encoded key layer-1 blockchain on a video game, with the ability to implement into any game.", + "website": "https://www.thekittymine.com", + "explorer": "https://solscan.io/token/41fZewbrb8x24yE9KeMJExoVXCDggebPMEwRVvX8pump", + "id": "41fZewbrb8x24yE9KeMJExoVXCDggebPMEwRVvX8pump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/TheKittyMine" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kittyminecoin" + } + + ], + "tags": [ + "gamefi" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/41fZewbrb8x24yE9KeMJExoVXCDggebPMEwRVvX8pump/logo.png b/blockchains/solana/assets/41fZewbrb8x24yE9KeMJExoVXCDggebPMEwRVvX8pump/logo.png new file mode 100644 index 0000000000000..d2ac5e42d035b Binary files /dev/null and b/blockchains/solana/assets/41fZewbrb8x24yE9KeMJExoVXCDggebPMEwRVvX8pump/logo.png differ diff --git a/blockchains/solana/assets/45EgCwcPXYagBC7KqBin4nCFgEZWN7f3Y6nACwxqMCWX/info.json b/blockchains/solana/assets/45EgCwcPXYagBC7KqBin4nCFgEZWN7f3Y6nACwxqMCWX/info.json new file mode 100644 index 0000000000000..de19081373dc6 --- /dev/null +++ b/blockchains/solana/assets/45EgCwcPXYagBC7KqBin4nCFgEZWN7f3Y6nACwxqMCWX/info.json @@ -0,0 +1,21 @@ +{ + "name": "Moutai", + "website": "https://www.moutaicoin.co/", + "description": "$MOUTAI is no ordinary meme coin.", + "explorer": "https://solscan.io/token/45EgCwcPXYagBC7KqBin4nCFgEZWN7f3Y6nACwxqMCWX", + "type": "SPL", + "symbol": "Moutai", + "decimals": 6, + "status": "active", + "id": "45EgCwcPXYagBC7KqBin4nCFgEZWN7f3Y6nACwxqMCWX", + "links": [ + { + "name": "x", + "url": "https://x.com/Moutai_Sol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/moutai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/45EgCwcPXYagBC7KqBin4nCFgEZWN7f3Y6nACwxqMCWX/logo.png b/blockchains/solana/assets/45EgCwcPXYagBC7KqBin4nCFgEZWN7f3Y6nACwxqMCWX/logo.png new file mode 100644 index 0000000000000..dbb8c478af2eb Binary files /dev/null and b/blockchains/solana/assets/45EgCwcPXYagBC7KqBin4nCFgEZWN7f3Y6nACwxqMCWX/logo.png differ diff --git a/blockchains/solana/assets/45aTdetDLVJ6B9nmDesg2Sm1pbRsn2jQH4KkzsvZpump/info.json b/blockchains/solana/assets/45aTdetDLVJ6B9nmDesg2Sm1pbRsn2jQH4KkzsvZpump/info.json new file mode 100644 index 0000000000000..8c7dd7cc9d7b1 --- /dev/null +++ b/blockchains/solana/assets/45aTdetDLVJ6B9nmDesg2Sm1pbRsn2jQH4KkzsvZpump/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM United Stable Dollar Trump", + "type": "SPL", + "symbol": "SCAM USDT", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/45aTdetDLVJ6B9nmDesg2Sm1pbRsn2jQH4KkzsvZpump", + "explorer": "https://solscan.io/token/45aTdetDLVJ6B9nmDesg2Sm1pbRsn2jQH4KkzsvZpump", + "status": "spam", + "id": "45aTdetDLVJ6B9nmDesg2Sm1pbRsn2jQH4KkzsvZpump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/46Ws3CkfBRjtGumCeH3pNrmpyxPmtJgqYpr7WDeaXXoo/info.json b/blockchains/solana/assets/46Ws3CkfBRjtGumCeH3pNrmpyxPmtJgqYpr7WDeaXXoo/info.json new file mode 100644 index 0000000000000..f5a6ea592e448 --- /dev/null +++ b/blockchains/solana/assets/46Ws3CkfBRjtGumCeH3pNrmpyxPmtJgqYpr7WDeaXXoo/info.json @@ -0,0 +1,25 @@ +{ + "name": "OpenAI Agent", + "type": "SOL", + "symbol": "OPERATOR", + "decimals": 2, + "description": "OpenAI is preparing to launch a new artificial intelligence agent codenamed “Operator” that can use a computer to take actions on a person's behalf, such as writing code or booking trave.", + "website": "https://openai2025.site/", + "explorer": "https://solscan.io/token/46Ws3CkfBRjtGumCeH3pNrmpyxPmtJgqYpr7WDeaXXoo", + "id": "46Ws3CkfBRjtGumCeH3pNrmpyxPmtJgqYpr7WDeaXXoo", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/OpenAIXAI" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/openai-agent/" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/46Ws3CkfBRjtGumCeH3pNrmpyxPmtJgqYpr7WDeaXXoo/logo.png b/blockchains/solana/assets/46Ws3CkfBRjtGumCeH3pNrmpyxPmtJgqYpr7WDeaXXoo/logo.png new file mode 100644 index 0000000000000..54ed070314e56 Binary files /dev/null and b/blockchains/solana/assets/46Ws3CkfBRjtGumCeH3pNrmpyxPmtJgqYpr7WDeaXXoo/logo.png differ diff --git a/blockchains/solana/assets/4AkCN6KLeCmUDjWLg4XyQpuZuWtwBdPcbtBQjsA2pump/info.json b/blockchains/solana/assets/4AkCN6KLeCmUDjWLg4XyQpuZuWtwBdPcbtBQjsA2pump/info.json new file mode 100644 index 0000000000000..536b45beaf31b --- /dev/null +++ b/blockchains/solana/assets/4AkCN6KLeCmUDjWLg4XyQpuZuWtwBdPcbtBQjsA2pump/info.json @@ -0,0 +1,25 @@ +{ + "name": "PIZZA", + "type": "SOL", + "symbol": "PIZZA", + "decimals": 6, + "description": "Celebration of Pizza because who doesn't love pizza? Through a mindshare for the love of pizza, we can spread the word of how great this universal comfort food is. Whether it's a classic Margherita, a loaded meat feast, or a creative new topping combination, pizza brings people together across cultures and generations.", + "website": "https://www.pizzapump.com/", + "explorer": "https://solscan.io/token/4AkCN6KLeCmUDjWLg4XyQpuZuWtwBdPcbtBQjsA2pump", + "id": "4AkCN6KLeCmUDjWLg4XyQpuZuWtwBdPcbtBQjsA2pump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Pizza_on__Sol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pizza-2" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/4AkCN6KLeCmUDjWLg4XyQpuZuWtwBdPcbtBQjsA2pump/logo.png b/blockchains/solana/assets/4AkCN6KLeCmUDjWLg4XyQpuZuWtwBdPcbtBQjsA2pump/logo.png new file mode 100644 index 0000000000000..b6ce4e9c8001b Binary files /dev/null and b/blockchains/solana/assets/4AkCN6KLeCmUDjWLg4XyQpuZuWtwBdPcbtBQjsA2pump/logo.png differ diff --git a/blockchains/solana/assets/4Cnk9EPnW5ixfLZatCPJjDB1PUtcRpVVgTQukm9epump/info.json b/blockchains/solana/assets/4Cnk9EPnW5ixfLZatCPJjDB1PUtcRpVVgTQukm9epump/info.json new file mode 100644 index 0000000000000..79194bf003125 --- /dev/null +++ b/blockchains/solana/assets/4Cnk9EPnW5ixfLZatCPJjDB1PUtcRpVVgTQukm9epump/info.json @@ -0,0 +1,21 @@ +{ + "name": "DADDY TATE", + "type": "SPL", + "symbol": "DADDY", + "decimals": 6, + "website": "https://www.daddysuniversity.com/", + "description": "CALL HIM DADDY", + "explorer": "https://solscan.io/token/4Cnk9EPnW5ixfLZatCPJjDB1PUtcRpVVgTQukm9epump", + "status": "active", + "id": "4Cnk9EPnW5ixfLZatCPJjDB1PUtcRpVVgTQukm9epump", + "links": [ + { + "name": "x", + "url": "https://x.com/daddytatecto" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/daddy-tate/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4Cnk9EPnW5ixfLZatCPJjDB1PUtcRpVVgTQukm9epump/logo.png b/blockchains/solana/assets/4Cnk9EPnW5ixfLZatCPJjDB1PUtcRpVVgTQukm9epump/logo.png new file mode 100644 index 0000000000000..e5180b014b137 Binary files /dev/null and b/blockchains/solana/assets/4Cnk9EPnW5ixfLZatCPJjDB1PUtcRpVVgTQukm9epump/logo.png differ diff --git a/blockchains/solana/assets/4G3kNxwaA2UQHDpaQtJWQm1SReXcUD7LkT14v2oEs7rV/info.json b/blockchains/solana/assets/4G3kNxwaA2UQHDpaQtJWQm1SReXcUD7LkT14v2oEs7rV/info.json new file mode 100644 index 0000000000000..7096743b15aaa --- /dev/null +++ b/blockchains/solana/assets/4G3kNxwaA2UQHDpaQtJWQm1SReXcUD7LkT14v2oEs7rV/info.json @@ -0,0 +1,21 @@ +{ + "name": "Soyjak", + "symbol": "flavSOYia", + "type": "SPL", + "decimals": 6, + "description": "$SOY is a Solana-based memecoin taken over by the community after the original developer left, focusing purely on meme culture and entertainment", + "website": "https://soyjak.life/", + "explorer": "https://solscan.io/token/4G3kNxwaA2UQHDpaQtJWQm1SReXcUD7LkT14v2oEs7rV", + "status": "active", + "id": "4G3kNxwaA2UQHDpaQtJWQm1SReXcUD7LkT14v2oEs7rV", + "links": [ + { + "name": "x", + "url": "https://x.com/Soyjak_Solana" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/soyjak" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4G3kNxwaA2UQHDpaQtJWQm1SReXcUD7LkT14v2oEs7rV/logo.png b/blockchains/solana/assets/4G3kNxwaA2UQHDpaQtJWQm1SReXcUD7LkT14v2oEs7rV/logo.png new file mode 100644 index 0000000000000..6b3749e76600c Binary files /dev/null and b/blockchains/solana/assets/4G3kNxwaA2UQHDpaQtJWQm1SReXcUD7LkT14v2oEs7rV/logo.png differ diff --git a/blockchains/solana/assets/4G86CMxGsMdLETrYnavMFKPhQzKTvDBYGMRAdVtr72nu/info.json b/blockchains/solana/assets/4G86CMxGsMdLETrYnavMFKPhQzKTvDBYGMRAdVtr72nu/info.json new file mode 100644 index 0000000000000..16531ddc1f023 --- /dev/null +++ b/blockchains/solana/assets/4G86CMxGsMdLETrYnavMFKPhQzKTvDBYGMRAdVtr72nu/info.json @@ -0,0 +1,17 @@ +{ + "name": "SNAP", + "website": "https://cocosnaponsol.io/", + "description": "SNAP was conceptualized as a tokenized representation of the meme, COCO, created by @KeroNFTs in July 2023. Kero wanted to create a meme that is both relevant to crypto culture, but completely original.", + "explorer": "https://solscan.io/token/4G86CMxGsMdLETrYnavMFKPhQzKTvDBYGMRAdVtr72nu", + "type": "SPL", + "symbol": "NAP", + "decimals": 6, + "status": "active", + "id": "4G86CMxGsMdLETrYnavMFKPhQzKTvDBYGMRAdVtr72nu", + "links": [ + { + "name": "x", + "url": "https://x.com/COCOSNAPONSOL" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4G86CMxGsMdLETrYnavMFKPhQzKTvDBYGMRAdVtr72nu/logo.png b/blockchains/solana/assets/4G86CMxGsMdLETrYnavMFKPhQzKTvDBYGMRAdVtr72nu/logo.png new file mode 100644 index 0000000000000..9c3bbbb20dd03 Binary files /dev/null and b/blockchains/solana/assets/4G86CMxGsMdLETrYnavMFKPhQzKTvDBYGMRAdVtr72nu/logo.png differ diff --git a/blockchains/solana/assets/4GFe6MBDorSy5bLbiUMrgETr6pZcjyfxMDm5ehSgpump/info.json b/blockchains/solana/assets/4GFe6MBDorSy5bLbiUMrgETr6pZcjyfxMDm5ehSgpump/info.json new file mode 100644 index 0000000000000..f07cc22088ac8 --- /dev/null +++ b/blockchains/solana/assets/4GFe6MBDorSy5bLbiUMrgETr6pZcjyfxMDm5ehSgpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Hawk Tuah", + "symbol": "HawkTuah", + "type": "SPL", + "decimals": 6, + "description": "HawkTuah is a meme coin that went viral following a humorous street interview video, offering zero taxes, burnt liquidity, and a renounced contract for secure and community-driven growth.", + "website": "https://hawktuah.vip/", + "explorer": "https://solscan.io/token/4GFe6MBDorSy5bLbiUMrgETr6pZcjyfxMDm5ehSgpump", + "status": "active", + "id": "4GFe6MBDorSy5bLbiUMrgETr6pZcjyfxMDm5ehSgpump", + "links": [ + { + "name": "x", + "url": "https://x.com/solhawktuah" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hawk-tuah" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4GFe6MBDorSy5bLbiUMrgETr6pZcjyfxMDm5ehSgpump/logo.png b/blockchains/solana/assets/4GFe6MBDorSy5bLbiUMrgETr6pZcjyfxMDm5ehSgpump/logo.png new file mode 100644 index 0000000000000..2b6a03c1feaef Binary files /dev/null and b/blockchains/solana/assets/4GFe6MBDorSy5bLbiUMrgETr6pZcjyfxMDm5ehSgpump/logo.png differ diff --git a/blockchains/solana/assets/4HjE7Eebj7iowo1GFfthmvvcp1Zb4QUXKLc3uq3opump/info.json b/blockchains/solana/assets/4HjE7Eebj7iowo1GFfthmvvcp1Zb4QUXKLc3uq3opump/info.json new file mode 100644 index 0000000000000..df5d38821927c --- /dev/null +++ b/blockchains/solana/assets/4HjE7Eebj7iowo1GFfthmvvcp1Zb4QUXKLc3uq3opump/info.json @@ -0,0 +1,29 @@ +{ + "name": "Chillax", + "type": "SPL", + "symbol": "CHILLAX", + "decimals": 6, + "description": "Chillax ($CHILLAX) is a meme-based cryptocurrency designed to combine fun community vibes with practical crypto utility. Launched in [insert launch date], it operates on the [insert blockchain] and focuses on secure transactions, community empowerment, and positive engagement.", + "website": "https://imchillax.com/", + "explorer": "https://solscan.io/token/4HjE7Eebj7iowo1GFfthmvvcp1Zb4QUXKLc3uq3opump", + "id": "4HjE7Eebj7iowo1GFfthmvvcp1Zb4QUXKLc3uq3opump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/ImChillaxx" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chillax/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/chillax" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/4HjE7Eebj7iowo1GFfthmvvcp1Zb4QUXKLc3uq3opump/logo.png b/blockchains/solana/assets/4HjE7Eebj7iowo1GFfthmvvcp1Zb4QUXKLc3uq3opump/logo.png new file mode 100644 index 0000000000000..dfc3b80eb2553 Binary files /dev/null and b/blockchains/solana/assets/4HjE7Eebj7iowo1GFfthmvvcp1Zb4QUXKLc3uq3opump/logo.png differ diff --git a/blockchains/solana/assets/4JFcUJ1HfFKz2F8thdu2frk558EjrLvKEmeMq1ZM2xBP/info.json b/blockchains/solana/assets/4JFcUJ1HfFKz2F8thdu2frk558EjrLvKEmeMq1ZM2xBP/info.json new file mode 100644 index 0000000000000..1393c57a48bd3 --- /dev/null +++ b/blockchains/solana/assets/4JFcUJ1HfFKz2F8thdu2frk558EjrLvKEmeMq1ZM2xBP/info.json @@ -0,0 +1,21 @@ +{ + "name": "Venture Mind AI", + "website": "https://www.venturemind.ai/", + "description": "VentureMind AI is a decentralized application platform built on the Solana blockchain, designed to provide AI tools, robotics, and Web3 integrations in a single ecosystem", + "explorer": "https://solscan.io/token/4JFcUJ1HfFKz2F8thdu2frk558EjrLvKEmeMq1ZM2xBP", + "type": "SPL", + "symbol": "VNTR", + "decimals": 9, + "status": "active", + "id": "4JFcUJ1HfFKz2F8thdu2frk558EjrLvKEmeMq1ZM2xBP", + "links": [ + { + "name": "x", + "url": "https://x.com/VentureMindAI" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/venturemind-ai" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4JFcUJ1HfFKz2F8thdu2frk558EjrLvKEmeMq1ZM2xBP/logo.png b/blockchains/solana/assets/4JFcUJ1HfFKz2F8thdu2frk558EjrLvKEmeMq1ZM2xBP/logo.png new file mode 100644 index 0000000000000..1a620c7c4fb5e Binary files /dev/null and b/blockchains/solana/assets/4JFcUJ1HfFKz2F8thdu2frk558EjrLvKEmeMq1ZM2xBP/logo.png differ diff --git a/blockchains/solana/assets/4JR4D4M37ygEM4Ff2zfft5d8VvkWPS7WuUYVu1rUpump/info.json b/blockchains/solana/assets/4JR4D4M37ygEM4Ff2zfft5d8VvkWPS7WuUYVu1rUpump/info.json new file mode 100644 index 0000000000000..2774e171e1099 --- /dev/null +++ b/blockchains/solana/assets/4JR4D4M37ygEM4Ff2zfft5d8VvkWPS7WuUYVu1rUpump/info.json @@ -0,0 +1,14 @@ +{ + "name": "abstract pepe", + "type": "SPL", + "symbol": "abpepe", + "decimals": 6, + "website": "https://pump.fun/coin/4JR4D4M37ygEM4Ff2zfft5d8VvkWPS7WuUYVu1rUpump", + "description": "abstract pepe", + "explorer": "https://explorer.solana.com/address/4JR4D4M37ygEM4Ff2zfft5d8VvkWPS7WuUYVu1rUpump", + "status": "active", + "id": "4JR4D4M37ygEM4Ff2zfft5d8VvkWPS7WuUYVu1rUpump", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4JR4D4M37ygEM4Ff2zfft5d8VvkWPS7WuUYVu1rUpump/logo.png b/blockchains/solana/assets/4JR4D4M37ygEM4Ff2zfft5d8VvkWPS7WuUYVu1rUpump/logo.png new file mode 100644 index 0000000000000..34e3e5bcf697b Binary files /dev/null and b/blockchains/solana/assets/4JR4D4M37ygEM4Ff2zfft5d8VvkWPS7WuUYVu1rUpump/logo.png differ diff --git a/blockchains/solana/assets/4LLbsb5ReP3yEtYzmXewyGjcir5uXtKFURtaEUVC2AHs/info.json b/blockchains/solana/assets/4LLbsb5ReP3yEtYzmXewyGjcir5uXtKFURtaEUVC2AHs/info.json new file mode 100644 index 0000000000000..f0417116391c8 --- /dev/null +++ b/blockchains/solana/assets/4LLbsb5ReP3yEtYzmXewyGjcir5uXtKFURtaEUVC2AHs/info.json @@ -0,0 +1,21 @@ +{ + "name": "Parcl", + "symbol": "PRCL", + "type": "SPL", + "decimals": 6, + "description": "The Parcl Ecosystem, which includes Parcl, Parcl Labs, and Parcl Limited, develops and governs the Parcl Protocol, a decentralized exchange that allows users to get long or short exposure to real-world real estate prices via a decentralized exchange.", + "website": "https://www.parcl.co/", + "explorer": "https://solscan.io/token/4LLbsb5ReP3yEtYzmXewyGjcir5uXtKFURtaEUVC2AHs", + "status": "active", + "id": "4LLbsb5ReP3yEtYzmXewyGjcir5uXtKFURtaEUVC2AHs", + "links": [ + { + "name": "x", + "url": "https://x.com/parcl" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/parcl/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4LLbsb5ReP3yEtYzmXewyGjcir5uXtKFURtaEUVC2AHs/logo.png b/blockchains/solana/assets/4LLbsb5ReP3yEtYzmXewyGjcir5uXtKFURtaEUVC2AHs/logo.png new file mode 100644 index 0000000000000..5aae15f2b69e0 Binary files /dev/null and b/blockchains/solana/assets/4LLbsb5ReP3yEtYzmXewyGjcir5uXtKFURtaEUVC2AHs/logo.png differ diff --git a/blockchains/solana/assets/4NzK1HGD51owZUyLYcXyE42ZxqPkgRysyRdhpZaWpump/info.json b/blockchains/solana/assets/4NzK1HGD51owZUyLYcXyE42ZxqPkgRysyRdhpZaWpump/info.json new file mode 100644 index 0000000000000..8e204de0fcf8c --- /dev/null +++ b/blockchains/solana/assets/4NzK1HGD51owZUyLYcXyE42ZxqPkgRysyRdhpZaWpump/info.json @@ -0,0 +1,25 @@ +{ + "name": "WOW MOON LAMBO PUMPPPPPPY", + "type": "SOL", + "symbol": "PUMPY", + "decimals": 6, + "description": "I spent $0 on this project. Why? Not because I’m short on funds—I sold my Chainlink at $8 and have fun money to play with—but because I want to see if something can truly start from zero, created by someone with nothing. Every token I own has been bought from the free market, just like anyone else. These are my tokens, not special allocations or admin tokens. There’s no hidden bucket of tokens or funds for privileged use.", + "website": "https://wowmoonlambopumppppppy.com/", + "explorer": "https://solscan.io/token/4NzK1HGD51owZUyLYcXyE42ZxqPkgRysyRdhpZaWpump", + "id": "4NzK1HGD51owZUyLYcXyE42ZxqPkgRysyRdhpZaWpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/pumppppppy?s=11&t=ZGzrL8B9N7GpbA3YLFvU9A" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wow-moon-lambo-pumppppppy/" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/4NzK1HGD51owZUyLYcXyE42ZxqPkgRysyRdhpZaWpump/logo.png b/blockchains/solana/assets/4NzK1HGD51owZUyLYcXyE42ZxqPkgRysyRdhpZaWpump/logo.png new file mode 100644 index 0000000000000..ae84e34fe4a9b Binary files /dev/null and b/blockchains/solana/assets/4NzK1HGD51owZUyLYcXyE42ZxqPkgRysyRdhpZaWpump/logo.png differ diff --git a/blockchains/solana/assets/4QznEvucQjwVAfnUvRLZwGkquQ61Js2muAp2Ti5hpump/info.json b/blockchains/solana/assets/4QznEvucQjwVAfnUvRLZwGkquQ61Js2muAp2Ti5hpump/info.json new file mode 100644 index 0000000000000..4a1bba1eda66e --- /dev/null +++ b/blockchains/solana/assets/4QznEvucQjwVAfnUvRLZwGkquQ61Js2muAp2Ti5hpump/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM Trump United Stable Dollar", + "type": "SPL", + "symbol": "SCAM TUSD", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/4QznEvucQjwVAfnUvRLZwGkquQ61Js2muAp2Ti5hpump", + "explorer": "https://solscan.io/token/4QznEvucQjwVAfnUvRLZwGkquQ61Js2muAp2Ti5hpump", + "status": "spam", + "id": "4QznEvucQjwVAfnUvRLZwGkquQ61Js2muAp2Ti5hpump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/4SZjjNABoqhbd4hnapbvoEPEqT8mnNkfbEoAwALf1V8t/info.json b/blockchains/solana/assets/4SZjjNABoqhbd4hnapbvoEPEqT8mnNkfbEoAwALf1V8t/info.json index 462570c417394..7e3666a1b47c8 100644 --- a/blockchains/solana/assets/4SZjjNABoqhbd4hnapbvoEPEqT8mnNkfbEoAwALf1V8t/info.json +++ b/blockchains/solana/assets/4SZjjNABoqhbd4hnapbvoEPEqT8mnNkfbEoAwALf1V8t/info.json @@ -10,8 +10,8 @@ "id": "4SZjjNABoqhbd4hnapbvoEPEqT8mnNkfbEoAwALf1V8t", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TheCavemenClub" + "name": "x", + "url": "https://x.com/TheCavemenClub" }, { "name": "coinmarketcap", diff --git a/blockchains/solana/assets/4TBi66vi32S7J8X1A6eWfaLHYmUXu7CStcEmsJQdpump/info.json b/blockchains/solana/assets/4TBi66vi32S7J8X1A6eWfaLHYmUXu7CStcEmsJQdpump/info.json new file mode 100644 index 0000000000000..856224e5db970 --- /dev/null +++ b/blockchains/solana/assets/4TBi66vi32S7J8X1A6eWfaLHYmUXu7CStcEmsJQdpump/info.json @@ -0,0 +1,14 @@ +{ + "name": "Ghiblification", + "type": "SPL", + "symbol": "Ghibli", + "decimals": 6, + "website": "https://pump.fun/coin/4TBi66vi32S7J8X1A6eWfaLHYmUXu7CStcEmsJQdpump", + "description": "Ghiblify everyone", + "explorer": "https://explorer.solana.com/address/4TBi66vi32S7J8X1A6eWfaLHYmUXu7CStcEmsJQdpump", + "status": "active", + "id": "4TBi66vi32S7J8X1A6eWfaLHYmUXu7CStcEmsJQdpump", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4TBi66vi32S7J8X1A6eWfaLHYmUXu7CStcEmsJQdpump/logo.png b/blockchains/solana/assets/4TBi66vi32S7J8X1A6eWfaLHYmUXu7CStcEmsJQdpump/logo.png new file mode 100644 index 0000000000000..841bbcbb509a2 Binary files /dev/null and b/blockchains/solana/assets/4TBi66vi32S7J8X1A6eWfaLHYmUXu7CStcEmsJQdpump/logo.png differ diff --git a/blockchains/solana/assets/4TwC4AiF1uUSHES2eBftGqemp6TqjEnKghqiH6dFpump/info.json b/blockchains/solana/assets/4TwC4AiF1uUSHES2eBftGqemp6TqjEnKghqiH6dFpump/info.json new file mode 100644 index 0000000000000..7eb74f7741048 --- /dev/null +++ b/blockchains/solana/assets/4TwC4AiF1uUSHES2eBftGqemp6TqjEnKghqiH6dFpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "She Rises", + "type": "SPL", + "symbol": "AKA", + "decimals": 6, + "website": "https://akasha.bloomverse.io/", + "description": "Sent from the year 2167 through the Solana blockchain commissioned to save the world.", + "explorer": "https://solscan.io/token/4TwC4AiF1uUSHES2eBftGqemp6TqjEnKghqiH6dFpump", + "status": "active", + "id": "4TwC4AiF1uUSHES2eBftGqemp6TqjEnKghqiH6dFpump", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/she-rises" + }, + { + "name": "x", + "url": "https://x.com/Akasha_Rising" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4TwC4AiF1uUSHES2eBftGqemp6TqjEnKghqiH6dFpump/logo.png b/blockchains/solana/assets/4TwC4AiF1uUSHES2eBftGqemp6TqjEnKghqiH6dFpump/logo.png new file mode 100644 index 0000000000000..1716f53c27905 Binary files /dev/null and b/blockchains/solana/assets/4TwC4AiF1uUSHES2eBftGqemp6TqjEnKghqiH6dFpump/logo.png differ diff --git a/blockchains/solana/assets/4VC7UYqBo9Siw8ZnkPXfw9D3dzYCiVrPDzs9XRtyRJMH/info.json b/blockchains/solana/assets/4VC7UYqBo9Siw8ZnkPXfw9D3dzYCiVrPDzs9XRtyRJMH/info.json new file mode 100644 index 0000000000000..82a72e10b2499 --- /dev/null +++ b/blockchains/solana/assets/4VC7UYqBo9Siw8ZnkPXfw9D3dzYCiVrPDzs9XRtyRJMH/info.json @@ -0,0 +1,21 @@ +{ + "name": "Insane Labz", + "symbol": "Labz", + "type": "SPL", + "decimals": 9, + "description": "Insane Labz is a token designed for the Insane Labz company which is a top 50 supplement company worldwide.", + "website": "https://insanelabz.com/", + "explorer": "https://solscan.io/token/4VC7UYqBo9Siw8ZnkPXfw9D3dzYCiVrPDzs9XRtyRJMH", + "status": "active", + "id": "4VC7UYqBo9Siw8ZnkPXfw9D3dzYCiVrPDzs9XRtyRJMH", + "links": [ + { + "name": "x", + "url": "https://x.com/InsaneLabz" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/insane-labz" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4VC7UYqBo9Siw8ZnkPXfw9D3dzYCiVrPDzs9XRtyRJMH/logo.png b/blockchains/solana/assets/4VC7UYqBo9Siw8ZnkPXfw9D3dzYCiVrPDzs9XRtyRJMH/logo.png new file mode 100644 index 0000000000000..adf105a330a2c Binary files /dev/null and b/blockchains/solana/assets/4VC7UYqBo9Siw8ZnkPXfw9D3dzYCiVrPDzs9XRtyRJMH/logo.png differ diff --git a/blockchains/solana/assets/4VP8ScQ8V5AfvHFQDAa5vJe9ke68p8e7jzHEi1yspump/info.json b/blockchains/solana/assets/4VP8ScQ8V5AfvHFQDAa5vJe9ke68p8e7jzHEi1yspump/info.json new file mode 100644 index 0000000000000..7cf34359ad8b9 --- /dev/null +++ b/blockchains/solana/assets/4VP8ScQ8V5AfvHFQDAa5vJe9ke68p8e7jzHEi1yspump/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM United Stable Dollar Trump", + "type": "SPL", + "symbol": "SCAM USDT", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/4VP8ScQ8V5AfvHFQDAa5vJe9ke68p8e7jzHEi1yspump", + "explorer": "https://solscan.io/token/4VP8ScQ8V5AfvHFQDAa5vJe9ke68p8e7jzHEi1yspump", + "status": "spam", + "id": "4VP8ScQ8V5AfvHFQDAa5vJe9ke68p8e7jzHEi1yspump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/4Y47LEufvcSSSbTFojcvW4Y6x2KZXrqG2urNBSvHpump/info.json b/blockchains/solana/assets/4Y47LEufvcSSSbTFojcvW4Y6x2KZXrqG2urNBSvHpump/info.json new file mode 100644 index 0000000000000..cbce4c7c408e2 --- /dev/null +++ b/blockchains/solana/assets/4Y47LEufvcSSSbTFojcvW4Y6x2KZXrqG2urNBSvHpump/info.json @@ -0,0 +1,17 @@ +{ + "name": "Literally Me", + "symbol": "Me", + "type": "SPL", + "decimals": 6, + "description": "Literally Me is a utility token inspired by the popular online literally me meme", + "website": "https://literallyme.vip/", + "explorer": "https://solscan.io/token/4Y47LEufvcSSSbTFojcvW4Y6x2KZXrqG2urNBSvHpump", + "status": "active", + "id": "4Y47LEufvcSSSbTFojcvW4Y6x2KZXrqG2urNBSvHpump", + "links": [ + { + "name": "x", + "url": "https://x.com/LiterallyMeSol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4Y47LEufvcSSSbTFojcvW4Y6x2KZXrqG2urNBSvHpump/logo.png b/blockchains/solana/assets/4Y47LEufvcSSSbTFojcvW4Y6x2KZXrqG2urNBSvHpump/logo.png new file mode 100644 index 0000000000000..44e33c3907e33 Binary files /dev/null and b/blockchains/solana/assets/4Y47LEufvcSSSbTFojcvW4Y6x2KZXrqG2urNBSvHpump/logo.png differ diff --git a/blockchains/solana/assets/4YbYyAVsgyVmN1q9wbzecMoigkZqJKQFdKmns3ZUe5yv/info.json b/blockchains/solana/assets/4YbYyAVsgyVmN1q9wbzecMoigkZqJKQFdKmns3ZUe5yv/info.json new file mode 100644 index 0000000000000..724d6e25f638f --- /dev/null +++ b/blockchains/solana/assets/4YbYyAVsgyVmN1q9wbzecMoigkZqJKQFdKmns3ZUe5yv/info.json @@ -0,0 +1,26 @@ +{ + "name": "101M", + "type": "SOL", + "symbol": "101M", + "decimals": 2, + "description": "$101M celebrates the monumental milestone of 101 million Twitter followers for @realDonaldTrump", + "website": "https://101m.club/", + "explorer": "https://solscan.io/token/4YbYyAVsgyVmN1q9wbzecMoigkZqJKQFdKmns3ZUe5yv", + "id": "4YbYyAVsgyVmN1q9wbzecMoigkZqJKQFdKmns3ZUe5yv", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Trump101M" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/101m/" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/4YbYyAVsgyVmN1q9wbzecMoigkZqJKQFdKmns3ZUe5yv/logo.png b/blockchains/solana/assets/4YbYyAVsgyVmN1q9wbzecMoigkZqJKQFdKmns3ZUe5yv/logo.png new file mode 100644 index 0000000000000..9e7a32f97985e Binary files /dev/null and b/blockchains/solana/assets/4YbYyAVsgyVmN1q9wbzecMoigkZqJKQFdKmns3ZUe5yv/logo.png differ diff --git a/blockchains/solana/assets/4ZDFnVXL2ED9htVnLTNMwCwVttp8TbBJcwzFePZwpump/info.json b/blockchains/solana/assets/4ZDFnVXL2ED9htVnLTNMwCwVttp8TbBJcwzFePZwpump/info.json new file mode 100644 index 0000000000000..4e3a3f99f7ecb --- /dev/null +++ b/blockchains/solana/assets/4ZDFnVXL2ED9htVnLTNMwCwVttp8TbBJcwzFePZwpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Keep Gambling", + "website": "https://www.keepgambling.vip/", + "description": "GAMBLE on Solana", + "explorer": "https://solscan.io/token/4ZDFnVXL2ED9htVnLTNMwCwVttp8TbBJcwzFePZwpump", + "type": "SPL", + "symbol": "GAMBLE", + "decimals": 6, + "status": "active", + "id": "4ZDFnVXL2ED9htVnLTNMwCwVttp8TbBJcwzFePZwpump", + "links": [ + { + "name": "x", + "url": "https://x.com/gambling__cto" + }, + { + "name": "telegram", + "url": "https://t.me/keepgamblingvip" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4ZDFnVXL2ED9htVnLTNMwCwVttp8TbBJcwzFePZwpump/logo.png b/blockchains/solana/assets/4ZDFnVXL2ED9htVnLTNMwCwVttp8TbBJcwzFePZwpump/logo.png new file mode 100644 index 0000000000000..d9c8dd5b487b7 Binary files /dev/null and b/blockchains/solana/assets/4ZDFnVXL2ED9htVnLTNMwCwVttp8TbBJcwzFePZwpump/logo.png differ diff --git a/blockchains/solana/assets/4aDNV5tgVvyEDfWhXoTTUzxXUJVWLrs37ybm4L3Ypump/info.json b/blockchains/solana/assets/4aDNV5tgVvyEDfWhXoTTUzxXUJVWLrs37ybm4L3Ypump/info.json new file mode 100644 index 0000000000000..3038fe10314c1 --- /dev/null +++ b/blockchains/solana/assets/4aDNV5tgVvyEDfWhXoTTUzxXUJVWLrs37ybm4L3Ypump/info.json @@ -0,0 +1,17 @@ +{ + "name": "Puss in Boots", + "type": "SPL", + "symbol": "Pusscat", + "website": "https://www.pusscatcto.com", + "decimals": 6, + "description": "PUSS is cute and he attracts everyone with his eyes , how can you sell puss ? puss will take over other cats cause he is the cutest frends", + "explorer": "https://solscan.io/token/4aDNV5tgVvyEDfWhXoTTUzxXUJVWLrs37ybm4L3Ypump", + "status": "active", + "id": "4aDNV5tgVvyEDfWhXoTTUzxXUJVWLrs37ybm4L3Ypump", + "links": [ + { + "name": "x", + "url": "https://x.com/pusscat_cto" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4aDNV5tgVvyEDfWhXoTTUzxXUJVWLrs37ybm4L3Ypump/logo.png b/blockchains/solana/assets/4aDNV5tgVvyEDfWhXoTTUzxXUJVWLrs37ybm4L3Ypump/logo.png new file mode 100644 index 0000000000000..94b49eb61632f Binary files /dev/null and b/blockchains/solana/assets/4aDNV5tgVvyEDfWhXoTTUzxXUJVWLrs37ybm4L3Ypump/logo.png differ diff --git a/blockchains/solana/assets/4amstKcbziHCqwev9esMtRGDTdjHSviiNXT7WtajgjUq/info.json b/blockchains/solana/assets/4amstKcbziHCqwev9esMtRGDTdjHSviiNXT7WtajgjUq/info.json new file mode 100644 index 0000000000000..d7075dac56838 --- /dev/null +++ b/blockchains/solana/assets/4amstKcbziHCqwev9esMtRGDTdjHSviiNXT7WtajgjUq/info.json @@ -0,0 +1,21 @@ +{ + "name": "Hachiko", + "type": "SPL", + "symbol": "HACHI", + "decimals": 5, + "website": "https://hachiko-token.com/", + "description": "Hachiko is one of the most famous & legendary dog in the world from Japan", + "explorer": "https://solscan.io/token/4amstKcbziHCqwev9esMtRGDTdjHSviiNXT7WtajgjUq", + "status": "active", + "id": "4amstKcbziHCqwev9esMtRGDTdjHSviiNXT7WtajgjUq", + "links": [ + { + "name": "x", + "url": "https://x.com/Hachikocoinsol" + }, + { + "name": "telegram", + "url": "https://t.me/hachikoportaI" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4amstKcbziHCqwev9esMtRGDTdjHSviiNXT7WtajgjUq/logo.png b/blockchains/solana/assets/4amstKcbziHCqwev9esMtRGDTdjHSviiNXT7WtajgjUq/logo.png new file mode 100644 index 0000000000000..a38414c6af95b Binary files /dev/null and b/blockchains/solana/assets/4amstKcbziHCqwev9esMtRGDTdjHSviiNXT7WtajgjUq/logo.png differ diff --git a/blockchains/solana/assets/4gBDhgCqTtzyJocskewXARgcLoAfSxkmmoUwwfhbpump/info.json b/blockchains/solana/assets/4gBDhgCqTtzyJocskewXARgcLoAfSxkmmoUwwfhbpump/info.json new file mode 100644 index 0000000000000..c7f7c39cf7132 --- /dev/null +++ b/blockchains/solana/assets/4gBDhgCqTtzyJocskewXARgcLoAfSxkmmoUwwfhbpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Chuan Pu", + "website": "https://www.chuanpu.fun/", + "description": "Chuanpu - The Chinese Trump Bringing together the best of both worlds to make crypto great again!", + "explorer": "https://solscan.io/token/4gBDhgCqTtzyJocskewXARgcLoAfSxkmmoUwwfhbpump", + "type": "SPL", + "symbol": "CHUANPU", + "decimals": 6, + "status": "active", + "id": "4gBDhgCqTtzyJocskewXARgcLoAfSxkmmoUwwfhbpump", + "links": [ + { + "name": "x", + "url": "https://x.com/ChuanPuSupreme" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/chuan-pu" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4gBDhgCqTtzyJocskewXARgcLoAfSxkmmoUwwfhbpump/logo.png b/blockchains/solana/assets/4gBDhgCqTtzyJocskewXARgcLoAfSxkmmoUwwfhbpump/logo.png new file mode 100644 index 0000000000000..0eb096def5197 Binary files /dev/null and b/blockchains/solana/assets/4gBDhgCqTtzyJocskewXARgcLoAfSxkmmoUwwfhbpump/logo.png differ diff --git a/blockchains/solana/assets/4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R/info.json b/blockchains/solana/assets/4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R/info.json index 60653477a6024..3991d2eff08be 100644 --- a/blockchains/solana/assets/4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R/info.json +++ b/blockchains/solana/assets/4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/raydiumprotocol" }, { - "name": "twitter", - "url": "https://twitter.com/RaydiumProtocol" + "name": "x", + "url": "https://x.com/RaydiumProtocol" }, { "name": "discord", diff --git a/blockchains/solana/assets/4kHu4VktgzpZW9i8LEsHZrNLJcTV98nGhyZE5JSEpump/info.json b/blockchains/solana/assets/4kHu4VktgzpZW9i8LEsHZrNLJcTV98nGhyZE5JSEpump/info.json new file mode 100644 index 0000000000000..5db01e8bff5c1 --- /dev/null +++ b/blockchains/solana/assets/4kHu4VktgzpZW9i8LEsHZrNLJcTV98nGhyZE5JSEpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Pigeon Tech", + "symbol": "GOVAI", + "decimals": 6, + "type": "SPL", + "website": "https://govai.meme/", + "description": "$GOVAI", + "explorer": "https://solscan.io/token/4kHu4VktgzpZW9i8LEsHZrNLJcTV98nGhyZE5JSEpump", + "status": "active", + "id": "4kHu4VktgzpZW9i8LEsHZrNLJcTV98nGhyZE5JSEpump", + "links": [ + { + "name": "x", + "url": "https://x.com/govaionsol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pigeon-tech" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4kHu4VktgzpZW9i8LEsHZrNLJcTV98nGhyZE5JSEpump/logo.png b/blockchains/solana/assets/4kHu4VktgzpZW9i8LEsHZrNLJcTV98nGhyZE5JSEpump/logo.png new file mode 100644 index 0000000000000..07b0f2eef1a60 Binary files /dev/null and b/blockchains/solana/assets/4kHu4VktgzpZW9i8LEsHZrNLJcTV98nGhyZE5JSEpump/logo.png differ diff --git a/blockchains/solana/assets/4mbdysBik3jmzD7mt6FGPDsMxnYcxExSQRFjPucdpump/info.json b/blockchains/solana/assets/4mbdysBik3jmzD7mt6FGPDsMxnYcxExSQRFjPucdpump/info.json new file mode 100644 index 0000000000000..65e5b64b8a97b --- /dev/null +++ b/blockchains/solana/assets/4mbdysBik3jmzD7mt6FGPDsMxnYcxExSQRFjPucdpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "tsotchke", + "website": "https://github.com/tsotchke/spin_based_neural_network", + "description": "tsotchke", + "explorer": "https://solscan.io/token/4mbdysBik3jmzD7mt6FGPDsMxnYcxExSQRFjPucdpump", + "type": "SPL", + "symbol": "TSOTCHKE", + "decimals": 6, + "status": "active", + "id": "4mbdysBik3jmzD7mt6FGPDsMxnYcxExSQRFjPucdpump", + "links": [ + { + "name": "x", + "url": "https://x.com/tsotchkecoin" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tsotchke" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4mbdysBik3jmzD7mt6FGPDsMxnYcxExSQRFjPucdpump/logo.png b/blockchains/solana/assets/4mbdysBik3jmzD7mt6FGPDsMxnYcxExSQRFjPucdpump/logo.png new file mode 100644 index 0000000000000..dca95f98a4756 Binary files /dev/null and b/blockchains/solana/assets/4mbdysBik3jmzD7mt6FGPDsMxnYcxExSQRFjPucdpump/logo.png differ diff --git a/blockchains/solana/assets/4n48hXNdCs7TteP3BoyCxUvwAoekJwnA1QLHtBw3pump/info.json b/blockchains/solana/assets/4n48hXNdCs7TteP3BoyCxUvwAoekJwnA1QLHtBw3pump/info.json new file mode 100644 index 0000000000000..2b8ff4a268266 --- /dev/null +++ b/blockchains/solana/assets/4n48hXNdCs7TteP3BoyCxUvwAoekJwnA1QLHtBw3pump/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE United States Kyrgyzstan Gold", + "type": "SPL", + "symbol": "FAKE USDKG", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/4n48hXNdCs7TteP3BoyCxUvwAoekJwnA1QLHtBw3pump", + "explorer": "https://solscan.io/token/4n48hXNdCs7TteP3BoyCxUvwAoekJwnA1QLHtBw3pump", + "status": "spam", + "id": "4n48hXNdCs7TteP3BoyCxUvwAoekJwnA1QLHtBw3pump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/4oz9DZabbYNeB7UGUA4HYZKYRb4Hwm3h2u2x4CrumbAr/info.json b/blockchains/solana/assets/4oz9DZabbYNeB7UGUA4HYZKYRb4Hwm3h2u2x4CrumbAr/info.json new file mode 100644 index 0000000000000..8f8bdfebf7fe0 --- /dev/null +++ b/blockchains/solana/assets/4oz9DZabbYNeB7UGUA4HYZKYRb4Hwm3h2u2x4CrumbAr/info.json @@ -0,0 +1,21 @@ +{ + "name": "Mentat", + "symbol": "SPICE", + "type": "SPL", + "decimals": 6, + "description": "Next-generation meta-agent powered by advanced reasoning models", + "website": "https://mentat.xyz", + "explorer": "https://solscan.io/token/4oz9DZabbYNeB7UGUA4HYZKYRb4Hwm3h2u2x4CrumbAr", + "status": "active", + "id": "4oz9DZabbYNeB7UGUA4HYZKYRb4Hwm3h2u2x4CrumbAr", + "links": [ + { + "name": "discord", + "url": "https://discord.com/CTbeng3hZX" + }, + { + "name": "x", + "url": "https://x.com/AI_Mentat" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4oz9DZabbYNeB7UGUA4HYZKYRb4Hwm3h2u2x4CrumbAr/logo.png b/blockchains/solana/assets/4oz9DZabbYNeB7UGUA4HYZKYRb4Hwm3h2u2x4CrumbAr/logo.png new file mode 100644 index 0000000000000..02294a482b925 Binary files /dev/null and b/blockchains/solana/assets/4oz9DZabbYNeB7UGUA4HYZKYRb4Hwm3h2u2x4CrumbAr/logo.png differ diff --git a/blockchains/solana/assets/4q3Z58YxrZEAVMLtMwnm7eHtodSD3LSpSNt3pDnqpump/info.json b/blockchains/solana/assets/4q3Z58YxrZEAVMLtMwnm7eHtodSD3LSpSNt3pDnqpump/info.json new file mode 100644 index 0000000000000..6c873ec4aa7eb --- /dev/null +++ b/blockchains/solana/assets/4q3Z58YxrZEAVMLtMwnm7eHtodSD3LSpSNt3pDnqpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Kolin", + "symbol": "KOLIN", + "decimals": 6, + "type": "SPL", + "website": "https://www.kolin.ai/", + "description": "The first AI-powered influencer ecosystem built to dominate the attention economy. Led by Kolin, a visionary AI.", + "explorer": "https://solscan.io/token/4q3Z58YxrZEAVMLtMwnm7eHtodSD3LSpSNt3pDnqpump", + "status": "active", + "id": "4q3Z58YxrZEAVMLtMwnm7eHtodSD3LSpSNt3pDnqpump", + "links": [ + { + "name": "x", + "url": "https://x.com/kolin_ai" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kolin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4q3Z58YxrZEAVMLtMwnm7eHtodSD3LSpSNt3pDnqpump/logo.png b/blockchains/solana/assets/4q3Z58YxrZEAVMLtMwnm7eHtodSD3LSpSNt3pDnqpump/logo.png new file mode 100644 index 0000000000000..eb2db321120dd Binary files /dev/null and b/blockchains/solana/assets/4q3Z58YxrZEAVMLtMwnm7eHtodSD3LSpSNt3pDnqpump/logo.png differ diff --git a/blockchains/solana/assets/4rQuGDAw7vwP6chig1XU1dnZnfbqyiehg13SqMt7ZkwN/info.json b/blockchains/solana/assets/4rQuGDAw7vwP6chig1XU1dnZnfbqyiehg13SqMt7ZkwN/info.json new file mode 100644 index 0000000000000..93393587b978b --- /dev/null +++ b/blockchains/solana/assets/4rQuGDAw7vwP6chig1XU1dnZnfbqyiehg13SqMt7ZkwN/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Τether (ՍSDΤ)", + "decimals": 6, + "type": "SPL", + "symbol": "FAKE USDT", + "website": "https://app.bleufi.com/", + "description": "FAKE USDT", + "explorer": "https://solscan.io/token/4rQuGDAw7vwP6chig1XU1dnZnfbqyiehg13SqMt7ZkwN", + "status": "spam", + "id": "4rQuGDAw7vwP6chig1XU1dnZnfbqyiehg13SqMt7ZkwN" +} diff --git a/blockchains/solana/assets/4sp2EUDrQf46rZun6sYAWzjrXwUpx2T3njuoKmV766RJ/info.json b/blockchains/solana/assets/4sp2EUDrQf46rZun6sYAWzjrXwUpx2T3njuoKmV766RJ/info.json new file mode 100644 index 0000000000000..bd1f29afaa293 --- /dev/null +++ b/blockchains/solana/assets/4sp2EUDrQf46rZun6sYAWzjrXwUpx2T3njuoKmV766RJ/info.json @@ -0,0 +1,17 @@ +{ + "name": "HAMI", + "type": "SPL", + "symbol": "HAMI", + "decimals": 9, + "website": "https://hamicoin.com", + "description": "Introducing $HAMI the latest sensation in the world of meme coins on the SOLANA blockchain!", + "explorer": "https://solscan.io/token/4sp2EUDrQf46rZun6sYAWzjrXwUpx2T3njuoKmV766RJ", + "id": "4sp2EUDrQf46rZun6sYAWzjrXwUpx2T3njuoKmV766RJ", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/CATVAX_io" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4sp2EUDrQf46rZun6sYAWzjrXwUpx2T3njuoKmV766RJ/logo.png b/blockchains/solana/assets/4sp2EUDrQf46rZun6sYAWzjrXwUpx2T3njuoKmV766RJ/logo.png new file mode 100644 index 0000000000000..886b7709da21a Binary files /dev/null and b/blockchains/solana/assets/4sp2EUDrQf46rZun6sYAWzjrXwUpx2T3njuoKmV766RJ/logo.png differ diff --git a/blockchains/solana/assets/4tJZhSdGePuMEfZQ3h5LaHjTPsw1iWTRFTojnZcwsAU6/info.json b/blockchains/solana/assets/4tJZhSdGePuMEfZQ3h5LaHjTPsw1iWTRFTojnZcwsAU6/info.json new file mode 100644 index 0000000000000..6cb689adcc8a4 --- /dev/null +++ b/blockchains/solana/assets/4tJZhSdGePuMEfZQ3h5LaHjTPsw1iWTRFTojnZcwsAU6/info.json @@ -0,0 +1,25 @@ +{ + "name": "Elumia Crowns", + "symbol": "ELU", + "type": "SPL", + "decimals": 9, + "description": "Legends of Elumia is leading the way for MMORPG players to gain full ownership of their ingame assets via revolutionary new mechanics.", + "website": "https://www.elumia.io", + "explorer": "https://solscan.io/token/4tJZhSdGePuMEfZQ3h5LaHjTPsw1iWTRFTojnZcwsAU6", + "status": "active", + "id": "4tJZhSdGePuMEfZQ3h5LaHjTPsw1iWTRFTojnZcwsAU6", + "links": [ + { + "name": "x", + "url": "https://x.com/PlayElumia" + }, + { + "name": "telegram", + "url": "https://t.me/Legends_of_Elumia_Official/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/legends-of-elumia/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4tJZhSdGePuMEfZQ3h5LaHjTPsw1iWTRFTojnZcwsAU6/logo.png b/blockchains/solana/assets/4tJZhSdGePuMEfZQ3h5LaHjTPsw1iWTRFTojnZcwsAU6/logo.png new file mode 100644 index 0000000000000..92c92a10b118d Binary files /dev/null and b/blockchains/solana/assets/4tJZhSdGePuMEfZQ3h5LaHjTPsw1iWTRFTojnZcwsAU6/logo.png differ diff --git a/blockchains/solana/assets/4vKEwZ2ZHmHFuQEE69emXV2Zq1EKeJYVCESsMqydpump/info.json b/blockchains/solana/assets/4vKEwZ2ZHmHFuQEE69emXV2Zq1EKeJYVCESsMqydpump/info.json new file mode 100644 index 0000000000000..8aa2dd6413c01 --- /dev/null +++ b/blockchains/solana/assets/4vKEwZ2ZHmHFuQEE69emXV2Zq1EKeJYVCESsMqydpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bloomsperg Terminal", + "symbol": "SPERG", + "type": "SPL", + "decimals": 6, + "description": "This is a meme coin project where an AI model, trained to be a wild and risk-taking crypto trader, powers a set of four AI agents", + "website": "https://www.sperg.wtf/", + "explorer": "https://solscan.io/token/4vKEwZ2ZHmHFuQEE69emXV2Zq1EKeJYVCESsMqydpump", + "status": "active", + "id": "4vKEwZ2ZHmHFuQEE69emXV2Zq1EKeJYVCESsMqydpump", + "links": [ + { + "name": "x", + "url": "https://x.com/sperg_ai" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bloomsperg-terminal/" + } + ] + } \ No newline at end of file diff --git a/blockchains/solana/assets/4vKEwZ2ZHmHFuQEE69emXV2Zq1EKeJYVCESsMqydpump/logo.png b/blockchains/solana/assets/4vKEwZ2ZHmHFuQEE69emXV2Zq1EKeJYVCESsMqydpump/logo.png new file mode 100644 index 0000000000000..0e79d3071ea50 Binary files /dev/null and b/blockchains/solana/assets/4vKEwZ2ZHmHFuQEE69emXV2Zq1EKeJYVCESsMqydpump/logo.png differ diff --git a/blockchains/solana/assets/4vMsoUT2BWatFweudnQM1xedRLfJgJ7hswhcpz4xgBTy/info.json b/blockchains/solana/assets/4vMsoUT2BWatFweudnQM1xedRLfJgJ7hswhcpz4xgBTy/info.json new file mode 100644 index 0000000000000..faf0568de9be3 --- /dev/null +++ b/blockchains/solana/assets/4vMsoUT2BWatFweudnQM1xedRLfJgJ7hswhcpz4xgBTy/info.json @@ -0,0 +1,21 @@ +{ + "name": "HONEY", + "website": "https://hivemapper.com/explorer", + "description": "Launched in November 2022, Hivemapper (HONEY) is a decentralized global mapping network that rewards its contributors for collecting high-volume 4K street-level imagery with dashcams through a Drive-to-Earn model.", + "explorer": "https://solscan.io/token/4vMsoUT2BWatFweudnQM1xedRLfJgJ7hswhcpz4xgBTy", + "symbol": "HONEY", + "type": "SPL", + "decimals": 9, + "status": "active", + "id": "4vMsoUT2BWatFweudnQM1xedRLfJgJ7hswhcpz4xgBTy", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hivemapper/" + }, + { + "name": "x", + "url": "https://x.com/Hivemapper" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4vMsoUT2BWatFweudnQM1xedRLfJgJ7hswhcpz4xgBTy/logo.png b/blockchains/solana/assets/4vMsoUT2BWatFweudnQM1xedRLfJgJ7hswhcpz4xgBTy/logo.png new file mode 100644 index 0000000000000..ac3d137524698 Binary files /dev/null and b/blockchains/solana/assets/4vMsoUT2BWatFweudnQM1xedRLfJgJ7hswhcpz4xgBTy/logo.png differ diff --git a/blockchains/solana/assets/4xnxNjLkeVoJEAUFjj5xTvkdTLGYHtrdyyXThGDFhwmr/info.json b/blockchains/solana/assets/4xnxNjLkeVoJEAUFjj5xTvkdTLGYHtrdyyXThGDFhwmr/info.json new file mode 100644 index 0000000000000..4e3c72a89c963 --- /dev/null +++ b/blockchains/solana/assets/4xnxNjLkeVoJEAUFjj5xTvkdTLGYHtrdyyXThGDFhwmr/info.json @@ -0,0 +1,17 @@ +{ + "name": "GOFURS Del Sol", + "website": "https://gofursdelsol.com/", + "description": "We're a group of visionary gofurs led by Neon 'Flash Drive' Glowpaw and our elite executive team. With over +6 years of experience building in crypto,", + "explorer": "https://solscan.io/token/4xnxNjLkeVoJEAUFjj5xTvkdTLGYHtrdyyXThGDFhwmr", + "type": "SPL", + "symbol": "GOFURS", + "decimals": 6, + "status": "active", + "id": "4xnxNjLkeVoJEAUFjj5xTvkdTLGYHtrdyyXThGDFhwmr", + "links": [ + { + "name": "x", + "url": "https://x.com/GOFURS404" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4xnxNjLkeVoJEAUFjj5xTvkdTLGYHtrdyyXThGDFhwmr/logo.png b/blockchains/solana/assets/4xnxNjLkeVoJEAUFjj5xTvkdTLGYHtrdyyXThGDFhwmr/logo.png new file mode 100644 index 0000000000000..d5ef58920c86a Binary files /dev/null and b/blockchains/solana/assets/4xnxNjLkeVoJEAUFjj5xTvkdTLGYHtrdyyXThGDFhwmr/logo.png differ diff --git a/blockchains/solana/assets/4xzW4o4TxS91DmdkKB5JdqBEHpRwCK3DYi6FuDzpump/info.json b/blockchains/solana/assets/4xzW4o4TxS91DmdkKB5JdqBEHpRwCK3DYi6FuDzpump/info.json new file mode 100644 index 0000000000000..d7a162d31bc64 --- /dev/null +++ b/blockchains/solana/assets/4xzW4o4TxS91DmdkKB5JdqBEHpRwCK3DYi6FuDzpump/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM United Stable Dollar Trump", + "type": "SPL", + "symbol": "SCAM USDT", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/4xzW4o4TxS91DmdkKB5JdqBEHpRwCK3DYi6FuDzpump", + "explorer": "https://solscan.io/token/4xzW4o4TxS91DmdkKB5JdqBEHpRwCK3DYi6FuDzpump", + "status": "spam", + "id": "4xzW4o4TxS91DmdkKB5JdqBEHpRwCK3DYi6FuDzpump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/4yCuUMPFvaqxK71CK6SZc3wmtC2PDpDN9mcBzUkepump/info.json b/blockchains/solana/assets/4yCuUMPFvaqxK71CK6SZc3wmtC2PDpDN9mcBzUkepump/info.json new file mode 100644 index 0000000000000..5226bba3f4557 --- /dev/null +++ b/blockchains/solana/assets/4yCuUMPFvaqxK71CK6SZc3wmtC2PDpDN9mcBzUkepump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Balls of Fate", + "website": "https://balls-of-fate.com/", + "description": "Balls of Fate: Cryptocurrency with character. And balls", + "explorer": "https://solscan.io/token/4yCuUMPFvaqxK71CK6SZc3wmtC2PDpDN9mcBzUkepump", + "type": "SPL", + "symbol": "BOF", + "decimals": 6, + "status": "active", + "id": "4yCuUMPFvaqxK71CK6SZc3wmtC2PDpDN9mcBzUkepump", + "links": [ + { + "name": "x", + "url": "https://x.com/BOFCOMMUNYTI" + }, + { + "name": "telegram", + "url": "https://t.me/+DSPSmcwxe0IyZWEy" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4yCuUMPFvaqxK71CK6SZc3wmtC2PDpDN9mcBzUkepump/logo.png b/blockchains/solana/assets/4yCuUMPFvaqxK71CK6SZc3wmtC2PDpDN9mcBzUkepump/logo.png new file mode 100644 index 0000000000000..686f0189e5348 Binary files /dev/null and b/blockchains/solana/assets/4yCuUMPFvaqxK71CK6SZc3wmtC2PDpDN9mcBzUkepump/logo.png differ diff --git a/blockchains/solana/assets/4zpV5uq3Uc5GpiuujFX5EJD3CJhiELUSawMTW6Ha9age/info.json b/blockchains/solana/assets/4zpV5uq3Uc5GpiuujFX5EJD3CJhiELUSawMTW6Ha9age/info.json new file mode 100644 index 0000000000000..0af5246588bcf --- /dev/null +++ b/blockchains/solana/assets/4zpV5uq3Uc5GpiuujFX5EJD3CJhiELUSawMTW6Ha9age/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether", + "type": "SPL", + "symbol": "FAKE ՍSDT", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/4zpV5uq3Uc5GpiuujFX5EJD3CJhiELUSawMTW6Ha9age", + "explorer": "https://solscan.io/token/4zpV5uq3Uc5GpiuujFX5EJD3CJhiELUSawMTW6Ha9age", + "status": "spam", + "id": "4zpV5uq3Uc5GpiuujFX5EJD3CJhiELUSawMTW6Ha9age" +} \ No newline at end of file diff --git a/blockchains/solana/assets/527rGhm2iBD4ogEk89MX7SA3NdpCwyBZ3fA8pKaoHg6E/info.json b/blockchains/solana/assets/527rGhm2iBD4ogEk89MX7SA3NdpCwyBZ3fA8pKaoHg6E/info.json new file mode 100644 index 0000000000000..03e36e2c9b11c --- /dev/null +++ b/blockchains/solana/assets/527rGhm2iBD4ogEk89MX7SA3NdpCwyBZ3fA8pKaoHg6E/info.json @@ -0,0 +1,21 @@ +{ + "name": "TEA", + "type": "SPL", + "symbol": "TEA", + "website": "https://teameme.wtf/", + "explorer": "https://solscan.io/token/527rGhm2iBD4ogEk89MX7SA3NdpCwyBZ3fA8pKaoHg6E", + "decimals": 6, + "description": "$TEA is the premier community-driven memecoin on Solana, uniting tea lovers and the crypto communi-TEA.", + "status": "active", + "id": "527rGhm2iBD4ogEk89MX7SA3NdpCwyBZ3fA8pKaoHg6E", + "links": [ + { + "name": "telegram", + "url": "https://t.me/tea_solmeme" + }, + { + "name": "x", + "url": "https://x.com/TeaMemeCoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/527rGhm2iBD4ogEk89MX7SA3NdpCwyBZ3fA8pKaoHg6E/logo.png b/blockchains/solana/assets/527rGhm2iBD4ogEk89MX7SA3NdpCwyBZ3fA8pKaoHg6E/logo.png new file mode 100644 index 0000000000000..bf33882501b3f Binary files /dev/null and b/blockchains/solana/assets/527rGhm2iBD4ogEk89MX7SA3NdpCwyBZ3fA8pKaoHg6E/logo.png differ diff --git a/blockchains/solana/assets/54jVZGHyWURX5evBtZqUsJjwoKzcZJbVokDU93AUZf2h/info.json b/blockchains/solana/assets/54jVZGHyWURX5evBtZqUsJjwoKzcZJbVokDU93AUZf2h/info.json new file mode 100644 index 0000000000000..3b0bd7cdff3f3 --- /dev/null +++ b/blockchains/solana/assets/54jVZGHyWURX5evBtZqUsJjwoKzcZJbVokDU93AUZf2h/info.json @@ -0,0 +1,17 @@ +{ + "name": "Solstream", + "website": "https://solstream.io/", + "description": "SolStream is a decentralized protocol-sdk on the Solana blockchain, designed for Web3 creators and developers.", + "explorer": "https://solscan.io/token/54jVZGHyWURX5evBtZqUsJjwoKzcZJbVokDU93AUZf2h", + "type": "SPL", + "symbol": "STREAM", + "decimals": 9, + "status": "active", + "id": "54jVZGHyWURX5evBtZqUsJjwoKzcZJbVokDU93AUZf2h", + "links": [ + { + "name": "x", + "url": "https://x.com/SolStreamCoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/54jVZGHyWURX5evBtZqUsJjwoKzcZJbVokDU93AUZf2h/logo.png b/blockchains/solana/assets/54jVZGHyWURX5evBtZqUsJjwoKzcZJbVokDU93AUZf2h/logo.png new file mode 100644 index 0000000000000..678943c2fe6f6 Binary files /dev/null and b/blockchains/solana/assets/54jVZGHyWURX5evBtZqUsJjwoKzcZJbVokDU93AUZf2h/logo.png differ diff --git a/blockchains/solana/assets/56Ao1f1Pct7KCyFKjnahajAGdvvsBRLJmrZDMGjyjE53/info.json b/blockchains/solana/assets/56Ao1f1Pct7KCyFKjnahajAGdvvsBRLJmrZDMGjyjE53/info.json new file mode 100644 index 0000000000000..6637525376ea2 --- /dev/null +++ b/blockchains/solana/assets/56Ao1f1Pct7KCyFKjnahajAGdvvsBRLJmrZDMGjyjE53/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDKG", + "type": "SPL", + "symbol": "FAKE USDKG", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/56Ao1f1Pct7KCyFKjnahajAGdvvsBRLJmrZDMGjyjE53", + "explorer": "https://solscan.io/token/56Ao1f1Pct7KCyFKjnahajAGdvvsBRLJmrZDMGjyjE53", + "status": "spam", + "id": "56Ao1f1Pct7KCyFKjnahajAGdvvsBRLJmrZDMGjyjE53" +} \ No newline at end of file diff --git a/blockchains/solana/assets/59McpTVgyGsSu5eQutvcKLFu7wrFe3ZkE2qdAi3HnvBn/info.json b/blockchains/solana/assets/59McpTVgyGsSu5eQutvcKLFu7wrFe3ZkE2qdAi3HnvBn/info.json new file mode 100644 index 0000000000000..d833790f3e307 --- /dev/null +++ b/blockchains/solana/assets/59McpTVgyGsSu5eQutvcKLFu7wrFe3ZkE2qdAi3HnvBn/info.json @@ -0,0 +1,21 @@ +{ + "name": "Choise.ai", + "symbol": "CHO", + "type": "SPL", + "decimals": 8, + "description": "Launched in 2017, Choise.ai is an enterprise crypto ecosystem providing solutions for over 1M+ users and over 50+ banks, fintechs, and startups worldwide, bridging the gap between DeFi and TradFi", + "website": "https://choise.ai/", + "explorer": "https://solscan.io/token/59McpTVgyGsSu5eQutvcKLFu7wrFe3ZkE2qdAi3HnvBn", + "status": "active", + "id": "59McpTVgyGsSu5eQutvcKLFu7wrFe3ZkE2qdAi3HnvBn", + "links": [ + { + "name": "x", + "url": "https://x.com/choiseai" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/choise/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/59McpTVgyGsSu5eQutvcKLFu7wrFe3ZkE2qdAi3HnvBn/logo.png b/blockchains/solana/assets/59McpTVgyGsSu5eQutvcKLFu7wrFe3ZkE2qdAi3HnvBn/logo.png new file mode 100644 index 0000000000000..3b0557ba741e4 Binary files /dev/null and b/blockchains/solana/assets/59McpTVgyGsSu5eQutvcKLFu7wrFe3ZkE2qdAi3HnvBn/logo.png differ diff --git a/blockchains/solana/assets/59u8qAD2S2gEtsY5Vs7dJ95YspnHavyHEtRfzCEb9F7G/info.json b/blockchains/solana/assets/59u8qAD2S2gEtsY5Vs7dJ95YspnHavyHEtRfzCEb9F7G/info.json new file mode 100644 index 0000000000000..b5ce7e5313ffc --- /dev/null +++ b/blockchains/solana/assets/59u8qAD2S2gEtsY5Vs7dJ95YspnHavyHEtRfzCEb9F7G/info.json @@ -0,0 +1,21 @@ +{ + "name": "Sonic The Goat", + "type": "SPL", + "symbol": "GOAT", + "decimals": 6, + "website": "https://www.goatthecoin.xyz/", + "description": "Alright, so what's the deal with GOAT, you ask? Well, we’re tired of coins coming and saying they are the Greatest Memes. Let’s make it simple for you degens to understand. Why $GOAT? Because it stands for Greatest Of All Time. We’re not shy about it; we know we’re the best and now you should know it too", + "explorer": "https://solscan.io/token/59u8qAD2S2gEtsY5Vs7dJ95YspnHavyHEtRfzCEb9F7G", + "status": "active", + "id": "59u8qAD2S2gEtsY5Vs7dJ95YspnHavyHEtRfzCEb9F7G", + "links": [ + { + "name": "x", + "url": "https://x.com/GOATthecoin" + }, + { + "name": "telegram", + "url": "https://t.me/goatthecoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/59u8qAD2S2gEtsY5Vs7dJ95YspnHavyHEtRfzCEb9F7G/logo.png b/blockchains/solana/assets/59u8qAD2S2gEtsY5Vs7dJ95YspnHavyHEtRfzCEb9F7G/logo.png new file mode 100644 index 0000000000000..f51090062e497 Binary files /dev/null and b/blockchains/solana/assets/59u8qAD2S2gEtsY5Vs7dJ95YspnHavyHEtRfzCEb9F7G/logo.png differ diff --git a/blockchains/solana/assets/5AzTQ5zUuWUNGetxaRpo9DK9w8FQXoPjn5a4ZXMMmoon/info.json b/blockchains/solana/assets/5AzTQ5zUuWUNGetxaRpo9DK9w8FQXoPjn5a4ZXMMmoon/info.json new file mode 100644 index 0000000000000..54ab7e2da9780 --- /dev/null +++ b/blockchains/solana/assets/5AzTQ5zUuWUNGetxaRpo9DK9w8FQXoPjn5a4ZXMMmoon/info.json @@ -0,0 +1,21 @@ +{ + "name": "Tree stuck in cat", + "website": "https://www.treeincat.com/", + "description": "TREEINCAT is a meme token inspired by the whimsical tale of a tree that finds itself stuck in a cat, told from the cat’s philosophical and confused perspective.", + "explorer": "https://solscan.io/token/5AzTQ5zUuWUNGetxaRpo9DK9w8FQXoPjn5a4ZXMMmoon", + "type": "SPL", + "symbol": "TREEINCAT", + "decimals": 9, + "status": "active", + "id": "5AzTQ5zUuWUNGetxaRpo9DK9w8FQXoPjn5a4ZXMMmoon", + "links": [ + { + "name": "x", + "url": "https://x.com/TreeStuckInCat" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tree-stuck-in-cat" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5AzTQ5zUuWUNGetxaRpo9DK9w8FQXoPjn5a4ZXMMmoon/logo.png b/blockchains/solana/assets/5AzTQ5zUuWUNGetxaRpo9DK9w8FQXoPjn5a4ZXMMmoon/logo.png new file mode 100644 index 0000000000000..35c9168f9f259 Binary files /dev/null and b/blockchains/solana/assets/5AzTQ5zUuWUNGetxaRpo9DK9w8FQXoPjn5a4ZXMMmoon/logo.png differ diff --git a/blockchains/solana/assets/5BEHfHeJ2yVX2bRrUNMuqQz4UXBayUDn2T7X4bBYpump/info.json b/blockchains/solana/assets/5BEHfHeJ2yVX2bRrUNMuqQz4UXBayUDn2T7X4bBYpump/info.json new file mode 100644 index 0000000000000..8907c7591c651 --- /dev/null +++ b/blockchains/solana/assets/5BEHfHeJ2yVX2bRrUNMuqQz4UXBayUDn2T7X4bBYpump/info.json @@ -0,0 +1,11 @@ +{ + "name": "SPAM KLIP", + "type": "SPL", + "symbol": "SPAM KLIP", + "decimals": 6, + "website": "https://solscan.io/token/5BEHfHeJ2yVX2bRrUNMuqQz4UXBayUDn2T7X4bBYpump", + "description": "SPAM KLIP", + "explorer": "https://explorer.solana.com/address/5BEHfHeJ2yVX2bRrUNMuqQz4UXBayUDn2T7X4bBYpump", + "status": "spam", + "id": "5BEHfHeJ2yVX2bRrUNMuqQz4UXBayUDn2T7X4bBYpump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/5BKTP1cWao5dhr8tkKcfPW9mWkKtuheMEAU6nih2jSX/info.json b/blockchains/solana/assets/5BKTP1cWao5dhr8tkKcfPW9mWkKtuheMEAU6nih2jSX/info.json new file mode 100644 index 0000000000000..83d41320b8035 --- /dev/null +++ b/blockchains/solana/assets/5BKTP1cWao5dhr8tkKcfPW9mWkKtuheMEAU6nih2jSX/info.json @@ -0,0 +1,28 @@ +{ + "name": "DogWifNoHat", + "type": "SPL", + "symbol": "NoHat", + "decimals": 6, + "description": "$NOHAT is a movement against Hats on Solana. This summer we are going to overtake major hat memes and setup the new meta. NO MORE HATS!", + "website": "https://nohatsolana.com/", + "explorer": "https://solscan.io/token/5BKTP1cWao5dhr8tkKcfPW9mWkKtuheMEAU6nih2jSX", + "id": "5BKTP1cWao5dhr8tkKcfPW9mWkKtuheMEAU6nih2jSX", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/nohatsolana" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dogwithnohat/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dogwifnohat" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5BKTP1cWao5dhr8tkKcfPW9mWkKtuheMEAU6nih2jSX/logo.png b/blockchains/solana/assets/5BKTP1cWao5dhr8tkKcfPW9mWkKtuheMEAU6nih2jSX/logo.png new file mode 100644 index 0000000000000..506788d229754 Binary files /dev/null and b/blockchains/solana/assets/5BKTP1cWao5dhr8tkKcfPW9mWkKtuheMEAU6nih2jSX/logo.png differ diff --git a/blockchains/solana/assets/5CqfXex1knfRiozwDtgFFNaiGR9TsmSUcWDNUTUGZQru/info.json b/blockchains/solana/assets/5CqfXex1knfRiozwDtgFFNaiGR9TsmSUcWDNUTUGZQru/info.json new file mode 100644 index 0000000000000..2666391ce6865 --- /dev/null +++ b/blockchains/solana/assets/5CqfXex1knfRiozwDtgFFNaiGR9TsmSUcWDNUTUGZQru/info.json @@ -0,0 +1,17 @@ +{ + "name": "Theory Of Gravity", + "type": "SPL", + "symbol": "THOG", + "decimals": 6, + "website": "https://www.thogonsol.com", + "description": "Theory of Gravity, the premier meme token reigning over the Solana network with unparalleled wit and charm.", + "explorer": "https://solscan.io/token/5CqfXex1knfRiozwDtgFFNaiGR9TsmSUcWDNUTUGZQru", + "status": "active", + "id": "5CqfXex1knfRiozwDtgFFNaiGR9TsmSUcWDNUTUGZQru", + "links": [ + { + "name": "x", + "url": "https://x.com/THOGonSOL" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5CqfXex1knfRiozwDtgFFNaiGR9TsmSUcWDNUTUGZQru/logo.png b/blockchains/solana/assets/5CqfXex1knfRiozwDtgFFNaiGR9TsmSUcWDNUTUGZQru/logo.png new file mode 100644 index 0000000000000..a84b2578ba642 Binary files /dev/null and b/blockchains/solana/assets/5CqfXex1knfRiozwDtgFFNaiGR9TsmSUcWDNUTUGZQru/logo.png differ diff --git a/blockchains/solana/assets/5DQSDg6SGkbsbykq4mQstpcL4d5raEHc6rY7LgBwpump/info.json b/blockchains/solana/assets/5DQSDg6SGkbsbykq4mQstpcL4d5raEHc6rY7LgBwpump/info.json new file mode 100644 index 0000000000000..55bb92f67ece2 --- /dev/null +++ b/blockchains/solana/assets/5DQSDg6SGkbsbykq4mQstpcL4d5raEHc6rY7LgBwpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "lou", + "symbol": "lou", + "type": "SPL", + "decimals": 6, + "description": "CHASING THE MOON AND BEYOND, WHERE LEGENDS ARE MADE AND DREAMS TAKE FLIGHT. WITH EVERY MEME, EVERY RAID, AND EVERY SUPPORTER, WE ARE BUILDING SOMETHING THAT WILL STAND OUT IN THE CRYPTO SPACE.", + "website": "https://www.loucoinonsol.com/", + "explorer": "https://solscan.io/token/5DQSDg6SGkbsbykq4mQstpcL4d5raEHc6rY7LgBwpump", + "status": "active", + "id": "5DQSDg6SGkbsbykq4mQstpcL4d5raEHc6rY7LgBwpump", + "links": [ + { + "name": "x", + "url": "https://x.com/Loucoinonsol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/lou" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5DQSDg6SGkbsbykq4mQstpcL4d5raEHc6rY7LgBwpump/logo.png b/blockchains/solana/assets/5DQSDg6SGkbsbykq4mQstpcL4d5raEHc6rY7LgBwpump/logo.png new file mode 100644 index 0000000000000..d41168eb62e76 Binary files /dev/null and b/blockchains/solana/assets/5DQSDg6SGkbsbykq4mQstpcL4d5raEHc6rY7LgBwpump/logo.png differ diff --git a/blockchains/solana/assets/5G7xzLhXSrLaw8utPNAada8WPdQPZ4Dm6sddhuUckibr/info.json b/blockchains/solana/assets/5G7xzLhXSrLaw8utPNAada8WPdQPZ4Dm6sddhuUckibr/info.json new file mode 100644 index 0000000000000..8494343698e22 --- /dev/null +++ b/blockchains/solana/assets/5G7xzLhXSrLaw8utPNAada8WPdQPZ4Dm6sddhuUckibr/info.json @@ -0,0 +1,27 @@ +{ + "name": "Infinite BTC Reward", + "type": "SOL", + "symbol": "IBR", + "decimals": 6, + "description": "The first BTC rewards token. Earn BTC for holding $IBR - 5/5 rewards tax", + "website": "https://ibr.money/", + "explorer": "https://solscan.io/token/5G7xzLhXSrLaw8utPNAada8WPdQPZ4Dm6sddhuUckibr", + "id": "5G7xzLhXSrLaw8utPNAada8WPdQPZ4Dm6sddhuUckibr", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/IBRrewards" + }, + + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/infinite-btc-reward" + } + + ], + "tags": [ + "deflationary" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/5G7xzLhXSrLaw8utPNAada8WPdQPZ4Dm6sddhuUckibr/logo.png b/blockchains/solana/assets/5G7xzLhXSrLaw8utPNAada8WPdQPZ4Dm6sddhuUckibr/logo.png new file mode 100644 index 0000000000000..7d33c8c9dd9fa Binary files /dev/null and b/blockchains/solana/assets/5G7xzLhXSrLaw8utPNAada8WPdQPZ4Dm6sddhuUckibr/logo.png differ diff --git a/blockchains/solana/assets/5LafQUrVco6o7KMz42eqVEJ9LW31StPyGjeeu5sKoMtA/info.json b/blockchains/solana/assets/5LafQUrVco6o7KMz42eqVEJ9LW31StPyGjeeu5sKoMtA/info.json new file mode 100644 index 0000000000000..465bdb54cf83b --- /dev/null +++ b/blockchains/solana/assets/5LafQUrVco6o7KMz42eqVEJ9LW31StPyGjeeu5sKoMtA/info.json @@ -0,0 +1,21 @@ +{ + "name": "Mumu the Bull", + "website": "https://www.mumu.ing", + "description": "Mumu is a muuvement to unite everyone in crypto. Backed by number go up technology, the bull we know and love is here to lead the charge.", + "explorer": "https://solscan.io/token/5LafQUrVco6o7KMz42eqVEJ9LW31StPyGjeeu5sKoMtA", + "type": "SPL", + "symbol": "MUMU", + "decimals": 6, + "status": "active", + "id": "5LafQUrVco6o7KMz42eqVEJ9LW31StPyGjeeu5sKoMtA", + "links": [ + { + "name": "x", + "url": "https://x.com/mumudabull" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mumu-ing/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5LafQUrVco6o7KMz42eqVEJ9LW31StPyGjeeu5sKoMtA/logo.png b/blockchains/solana/assets/5LafQUrVco6o7KMz42eqVEJ9LW31StPyGjeeu5sKoMtA/logo.png new file mode 100644 index 0000000000000..0f0e6cfe76129 Binary files /dev/null and b/blockchains/solana/assets/5LafQUrVco6o7KMz42eqVEJ9LW31StPyGjeeu5sKoMtA/logo.png differ diff --git a/blockchains/solana/assets/5LwseQRo8fsz4S3y7jbqqe5C7tZTz5PwhXNCHj13jLBi/info.json b/blockchains/solana/assets/5LwseQRo8fsz4S3y7jbqqe5C7tZTz5PwhXNCHj13jLBi/info.json new file mode 100644 index 0000000000000..623662a5c4cb5 --- /dev/null +++ b/blockchains/solana/assets/5LwseQRo8fsz4S3y7jbqqe5C7tZTz5PwhXNCHj13jLBi/info.json @@ -0,0 +1,17 @@ +{ + "name": "PESHI", + "type": "SPL", + "symbol": "PESHI", + "decimals": 6, + "website": "https://peshi.wtf/", + "description": "This is the story of a love. a conflicted love. ❤️ But it is also the story of a son, the child of this love. 📖 His name is PESHI. 🐕", + "explorer": "https://solscan.io/token/5LwseQRo8fsz4S3y7jbqqe5C7tZTz5PwhXNCHj13jLBi", + "status": "active", + "id": "5LwseQRo8fsz4S3y7jbqqe5C7tZTz5PwhXNCHj13jLBi", + "links": [ + { + "name": "x", + "url": "https://x.com/peshitoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5LwseQRo8fsz4S3y7jbqqe5C7tZTz5PwhXNCHj13jLBi/logo.png b/blockchains/solana/assets/5LwseQRo8fsz4S3y7jbqqe5C7tZTz5PwhXNCHj13jLBi/logo.png new file mode 100644 index 0000000000000..02d9f572c0ecf Binary files /dev/null and b/blockchains/solana/assets/5LwseQRo8fsz4S3y7jbqqe5C7tZTz5PwhXNCHj13jLBi/logo.png differ diff --git a/blockchains/solana/assets/5MAYDfq5yxtudAhtfyuMBuHZjgAbaS9tbEyEQYAhDS5y/info.json b/blockchains/solana/assets/5MAYDfq5yxtudAhtfyuMBuHZjgAbaS9tbEyEQYAhDS5y/info.json new file mode 100644 index 0000000000000..2bf8c5cb477e1 --- /dev/null +++ b/blockchains/solana/assets/5MAYDfq5yxtudAhtfyuMBuHZjgAbaS9tbEyEQYAhDS5y/info.json @@ -0,0 +1,25 @@ +{ + "name": "Access Protocol", + "website": "https://www.accessprotocol.co", + "description": "Access Protocol offers a new way for digital media publications and content creators to monetize their work. Instead of traditional subscription payments, users stake the ACS token to receive access to premium digital content.", + "explorer": "https://solscan.io/token/5MAYDfq5yxtudAhtfyuMBuHZjgAbaS9tbEyEQYAhDS5y", + "symbol": "ACS", + "type": "SPL", + "decimals": 6, + "status": "active", + "id": "5MAYDfq5yxtudAhtfyuMBuHZjgAbaS9tbEyEQYAhDS5y", + "links": [ + { + "name": "github", + "url": "https://github.com/Access-Labs-Inc/accessprotocol.co" + }, + { + "name": "x", + "url": "https://x.com/AccessProtocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/access-protocol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5MAYDfq5yxtudAhtfyuMBuHZjgAbaS9tbEyEQYAhDS5y/logo.png b/blockchains/solana/assets/5MAYDfq5yxtudAhtfyuMBuHZjgAbaS9tbEyEQYAhDS5y/logo.png new file mode 100644 index 0000000000000..9d66724aecb7c Binary files /dev/null and b/blockchains/solana/assets/5MAYDfq5yxtudAhtfyuMBuHZjgAbaS9tbEyEQYAhDS5y/logo.png differ diff --git a/blockchains/solana/assets/5MBBsoCVddAuF8XixvCcXNbHAw6WfpZ8WyTKMmczxxRN/info.json b/blockchains/solana/assets/5MBBsoCVddAuF8XixvCcXNbHAw6WfpZ8WyTKMmczxxRN/info.json new file mode 100644 index 0000000000000..575c921f9e5e4 --- /dev/null +++ b/blockchains/solana/assets/5MBBsoCVddAuF8XixvCcXNbHAw6WfpZ8WyTKMmczxxRN/info.json @@ -0,0 +1,24 @@ +{ + "name": "SHIBA INU", + "type": "SPL", + "symbol": "SHIB", + "decimals": 9, + "description": "Shiba Inu on Solana is a decentralized meme token that grew into a vibrant ecosystem. We are a community-driven project that is dedicated to creating a fun environment for our community and building a decentralized ecosystem that will be used for years to come.", + "website": "https://shibainuonsolana.com/", + "explorer": "https://solscan.io/token/5MBBsoCVddAuF8XixvCcXNbHAw6WfpZ8WyTKMmczxxRN", + "id": "5MBBsoCVddAuF8XixvCcXNbHAw6WfpZ8WyTKMmczxxRN", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/shibainuon_sol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shibainu-on-solana/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5MBBsoCVddAuF8XixvCcXNbHAw6WfpZ8WyTKMmczxxRN/logo.png b/blockchains/solana/assets/5MBBsoCVddAuF8XixvCcXNbHAw6WfpZ8WyTKMmczxxRN/logo.png new file mode 100644 index 0000000000000..2fb1b6bc8f393 Binary files /dev/null and b/blockchains/solana/assets/5MBBsoCVddAuF8XixvCcXNbHAw6WfpZ8WyTKMmczxxRN/logo.png differ diff --git a/blockchains/solana/assets/5NU2yZQPCYKpTziFfPB85XnheiVbJjhY9rS487kKWLyd/info.json b/blockchains/solana/assets/5NU2yZQPCYKpTziFfPB85XnheiVbJjhY9rS487kKWLyd/info.json new file mode 100644 index 0000000000000..a44c9438973e6 --- /dev/null +++ b/blockchains/solana/assets/5NU2yZQPCYKpTziFfPB85XnheiVbJjhY9rS487kKWLyd/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE EURC", + "type": "SPL", + "symbol": "FAKE EURC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/5NU2yZQPCYKpTziFfPB85XnheiVbJjhY9rS487kKWLyd", + "explorer": "https://solscan.io/token/5NU2yZQPCYKpTziFfPB85XnheiVbJjhY9rS487kKWLyd", + "status": "spam", + "id": "5NU2yZQPCYKpTziFfPB85XnheiVbJjhY9rS487kKWLyd" +} \ No newline at end of file diff --git a/blockchains/solana/assets/5SVG3T9CNQsm2kEwzbRq6hASqh1oGfjqTtLXYUibpump/info.json b/blockchains/solana/assets/5SVG3T9CNQsm2kEwzbRq6hASqh1oGfjqTtLXYUibpump/info.json new file mode 100644 index 0000000000000..8d3f5f2e2eaaf --- /dev/null +++ b/blockchains/solana/assets/5SVG3T9CNQsm2kEwzbRq6hASqh1oGfjqTtLXYUibpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "SIGMA", + "symbol": "SIGMA", + "type": "SPL", + "decimals": 6, + "description": "Sigma is a crypto asset, that's built and backed by people of thesame goal and interest. From the name sigma we've decided to build a community on chain as alot of people on the internet relates with the term.", + "website": "https://solsigma.org/", + "explorer": "https://solscan.io/token/5SVG3T9CNQsm2kEwzbRq6hASqh1oGfjqTtLXYUibpump", + "status": "active", + "id": "5SVG3T9CNQsm2kEwzbRq6hASqh1oGfjqTtLXYUibpump", + "links": [ + { + "name": "x", + "url": "https://x.com/sigmaonsol69" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sigma-sol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5SVG3T9CNQsm2kEwzbRq6hASqh1oGfjqTtLXYUibpump/logo.png b/blockchains/solana/assets/5SVG3T9CNQsm2kEwzbRq6hASqh1oGfjqTtLXYUibpump/logo.png new file mode 100644 index 0000000000000..196448a861d4d Binary files /dev/null and b/blockchains/solana/assets/5SVG3T9CNQsm2kEwzbRq6hASqh1oGfjqTtLXYUibpump/logo.png differ diff --git a/blockchains/solana/assets/5TaSR6RgfC4o7NNAW7ybYXEKCf9x6stZz7GCLnJ8pump/info.json b/blockchains/solana/assets/5TaSR6RgfC4o7NNAW7ybYXEKCf9x6stZz7GCLnJ8pump/info.json new file mode 100644 index 0000000000000..46177e72773b9 --- /dev/null +++ b/blockchains/solana/assets/5TaSR6RgfC4o7NNAW7ybYXEKCf9x6stZz7GCLnJ8pump/info.json @@ -0,0 +1,25 @@ +{ + "name": "FARTMOMMY", + "type": "SOL", + "symbol": "FARTMOMMY", + "decimals": 6, + "description": "Before #FARTBOY and #FARTGIRL, there was the queen herself, #FARTMOMMY", + "website": "https://t.me/FART_MOMMY", + "explorer": "https://solscan.io/token/5TaSR6RgfC4o7NNAW7ybYXEKCf9x6stZz7GCLnJ8pump", + "id": "5TaSR6RgfC4o7NNAW7ybYXEKCf9x6stZz7GCLnJ8pump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/FARTMOMMY_SOL" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/fartmommy" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/5TaSR6RgfC4o7NNAW7ybYXEKCf9x6stZz7GCLnJ8pump/logo.png b/blockchains/solana/assets/5TaSR6RgfC4o7NNAW7ybYXEKCf9x6stZz7GCLnJ8pump/logo.png new file mode 100644 index 0000000000000..43211c31140dc Binary files /dev/null and b/blockchains/solana/assets/5TaSR6RgfC4o7NNAW7ybYXEKCf9x6stZz7GCLnJ8pump/logo.png differ diff --git a/blockchains/solana/assets/5ToDNkiBAK6k697RRyngTburU7yZNFZFx7jzsD1Uc7pK/info.json b/blockchains/solana/assets/5ToDNkiBAK6k697RRyngTburU7yZNFZFx7jzsD1Uc7pK/info.json new file mode 100644 index 0000000000000..80cb91bf27872 --- /dev/null +++ b/blockchains/solana/assets/5ToDNkiBAK6k697RRyngTburU7yZNFZFx7jzsD1Uc7pK/info.json @@ -0,0 +1,25 @@ +{ + "name": "NPC Solana", + "symbol": "NPCS", + "type": "SPL", + "decimals": 9, + "description": "Meme for all Solana fans. We provide some of the most detailed and impressive meme's of Wojak, the worlds most recognizable NPC meme, across all social media platforms.", + "website": "https://www.solananpc.com/", + "explorer": "https://solscan.io/token/5ToDNkiBAK6k697RRyngTburU7yZNFZFx7jzsD1Uc7pK", + "status": "active", + "id": "5ToDNkiBAK6k697RRyngTburU7yZNFZFx7jzsD1Uc7pK", + "links": [ + { + "name": "x", + "url": "https://x.com/npcsolananews" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/non-playable-coin-solana" + } + ], + "tags": [ + "memes", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5ToDNkiBAK6k697RRyngTburU7yZNFZFx7jzsD1Uc7pK/logo.png b/blockchains/solana/assets/5ToDNkiBAK6k697RRyngTburU7yZNFZFx7jzsD1Uc7pK/logo.png new file mode 100644 index 0000000000000..c45d9dbda2b1a Binary files /dev/null and b/blockchains/solana/assets/5ToDNkiBAK6k697RRyngTburU7yZNFZFx7jzsD1Uc7pK/logo.png differ diff --git a/blockchains/solana/assets/5UAMZkfNmuVcKzr2wo8Jqw4R1k8vfdAVJNN6h3bVpump/info.json b/blockchains/solana/assets/5UAMZkfNmuVcKzr2wo8Jqw4R1k8vfdAVJNN6h3bVpump/info.json new file mode 100644 index 0000000000000..9037ff76e1258 --- /dev/null +++ b/blockchains/solana/assets/5UAMZkfNmuVcKzr2wo8Jqw4R1k8vfdAVJNN6h3bVpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "LIMBO", + "symbol": "LIMBO", + "decimals": 6, + "type": "SPL", + "website": "https://pump.fun/coin/5UAMZkfNmuVcKzr2wo8Jqw4R1k8vfdAVJNN6h3bVpump", + "description": "LIMBO tokens can be traded on decentralized exchanges and centralized crypto exchanges", + "explorer": "https://solscan.io/token/5UAMZkfNmuVcKzr2wo8Jqw4R1k8vfdAVJNN6h3bVpump", + "status": "active", + "id": "5UAMZkfNmuVcKzr2wo8Jqw4R1k8vfdAVJNN6h3bVpump", + "links": [ + { + "name": "x", + "url": "https://x.com/Limbo_ai" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/limbo" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5UAMZkfNmuVcKzr2wo8Jqw4R1k8vfdAVJNN6h3bVpump/logo.png b/blockchains/solana/assets/5UAMZkfNmuVcKzr2wo8Jqw4R1k8vfdAVJNN6h3bVpump/logo.png new file mode 100644 index 0000000000000..1a0342bb819ab Binary files /dev/null and b/blockchains/solana/assets/5UAMZkfNmuVcKzr2wo8Jqw4R1k8vfdAVJNN6h3bVpump/logo.png differ diff --git a/blockchains/solana/assets/5Uare15D5AExZbC9DvQ9NbaMxRbKBeuNhnKCudPKBMjx/info.json b/blockchains/solana/assets/5Uare15D5AExZbC9DvQ9NbaMxRbKBeuNhnKCudPKBMjx/info.json new file mode 100644 index 0000000000000..861820ae1ae7a --- /dev/null +++ b/blockchains/solana/assets/5Uare15D5AExZbC9DvQ9NbaMxRbKBeuNhnKCudPKBMjx/info.json @@ -0,0 +1,14 @@ +{ + "name": "Doodle dump", + "type": "SPL", + "symbol": "DOODLED", + "decimals": 6, + "website": "https://doodledump.xyz/", + "description": "The Ticker is $DOODLED", + "explorer": "https://explorer.solana.com/address/5Uare15D5AExZbC9DvQ9NbaMxRbKBeuNhnKCudPKBMjx", + "status": "active", + "id": "5Uare15D5AExZbC9DvQ9NbaMxRbKBeuNhnKCudPKBMjx", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5Uare15D5AExZbC9DvQ9NbaMxRbKBeuNhnKCudPKBMjx/logo.png b/blockchains/solana/assets/5Uare15D5AExZbC9DvQ9NbaMxRbKBeuNhnKCudPKBMjx/logo.png new file mode 100644 index 0000000000000..ebb53564fdcd7 Binary files /dev/null and b/blockchains/solana/assets/5Uare15D5AExZbC9DvQ9NbaMxRbKBeuNhnKCudPKBMjx/logo.png differ diff --git a/blockchains/solana/assets/5Wd2ALxQfnpgQKCyH4WL9giBiiuuLuJs84CJxfQccvmN/info.json b/blockchains/solana/assets/5Wd2ALxQfnpgQKCyH4WL9giBiiuuLuJs84CJxfQccvmN/info.json new file mode 100644 index 0000000000000..42bcd71073078 --- /dev/null +++ b/blockchains/solana/assets/5Wd2ALxQfnpgQKCyH4WL9giBiiuuLuJs84CJxfQccvmN/info.json @@ -0,0 +1,21 @@ +{ + "name": "real fast", + "website": "https://www.speedonsolana.com/", + "description": "Launched on 30 April 2024, real fast (speed) is a meme coin focused on a dog sprinting across a floor. It was subject to a community takeover on 05 May 2024, by a team that saw the massive potential in the coin. Since then, speed has been zooming across the entire Solana blockchain.", + "explorer": "https://solscan.io/token/5Wd2ALxQfnpgQKCyH4WL9giBiiuuLuJs84CJxfQccvmN", + "type": "SPL", + "symbol": "speed", + "decimals": 6, + "status": "active", + "id": "5Wd2ALxQfnpgQKCyH4WL9giBiiuuLuJs84CJxfQccvmN", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/real-fast/" + }, + { + "name": "x", + "url": "https://x.com/speedcto" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5Wd2ALxQfnpgQKCyH4WL9giBiiuuLuJs84CJxfQccvmN/logo.png b/blockchains/solana/assets/5Wd2ALxQfnpgQKCyH4WL9giBiiuuLuJs84CJxfQccvmN/logo.png new file mode 100644 index 0000000000000..2824c81276253 Binary files /dev/null and b/blockchains/solana/assets/5Wd2ALxQfnpgQKCyH4WL9giBiiuuLuJs84CJxfQccvmN/logo.png differ diff --git a/blockchains/solana/assets/5XyKkFaJpAmsH4Tf2EFj3S61W3hC5cJhxNZQQ5h1pump/info.json b/blockchains/solana/assets/5XyKkFaJpAmsH4Tf2EFj3S61W3hC5cJhxNZQQ5h1pump/info.json new file mode 100644 index 0000000000000..9275d9987573a --- /dev/null +++ b/blockchains/solana/assets/5XyKkFaJpAmsH4Tf2EFj3S61W3hC5cJhxNZQQ5h1pump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Luigi Mangione", + "symbol": "Luigi", + "type": "SPL", + "decimals": 6, + "description": "The Luigi Mangione ($Luigi) movement was born on December 9th, 2024.", + "website": "https://www.soluigi.com/", + "explorer": "https://solscan.io/token/5XyKkFaJpAmsH4Tf2EFj3S61W3hC5cJhxNZQQ5h1pump", + "status": "active", + "id": "5XyKkFaJpAmsH4Tf2EFj3S61W3hC5cJhxNZQQ5h1pump", + "links": [ + { + "name": "x", + "url": "https://x.com/sol_coin_luigi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/luigi-mangione/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5XyKkFaJpAmsH4Tf2EFj3S61W3hC5cJhxNZQQ5h1pump/logo.png b/blockchains/solana/assets/5XyKkFaJpAmsH4Tf2EFj3S61W3hC5cJhxNZQQ5h1pump/logo.png new file mode 100644 index 0000000000000..836e0c3a5d5cd Binary files /dev/null and b/blockchains/solana/assets/5XyKkFaJpAmsH4Tf2EFj3S61W3hC5cJhxNZQQ5h1pump/logo.png differ diff --git a/blockchains/solana/assets/5YsyVintDPMN9Zgpr6sfJoMBPT6fQw8xVyum5J9Hu39k/info.json b/blockchains/solana/assets/5YsyVintDPMN9Zgpr6sfJoMBPT6fQw8xVyum5J9Hu39k/info.json new file mode 100644 index 0000000000000..bd47744c4e2c9 --- /dev/null +++ b/blockchains/solana/assets/5YsyVintDPMN9Zgpr6sfJoMBPT6fQw8xVyum5J9Hu39k/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT Hedera", + "type": "SPL", + "symbol": "HONEYPOT Hedera", + "decimals": 6, + "website": "https://solscan.io/token/5YsyVintDPMN9Zgpr6sfJoMBPT6fQw8xVyum5J9Hu39k", + "description": "HONEYPOT Hedera", + "explorer": "https://explorer.solana.com/address/5YsyVintDPMN9Zgpr6sfJoMBPT6fQw8xVyum5J9Hu39k", + "status": "spam", + "id": "5YsyVintDPMN9Zgpr6sfJoMBPT6fQw8xVyum5J9Hu39k" +} \ No newline at end of file diff --git a/blockchains/solana/assets/5cbq1HriesW4zHpFEk9Gc8UT4ccmfHcBTDCa2XcBduTo/info.json b/blockchains/solana/assets/5cbq1HriesW4zHpFEk9Gc8UT4ccmfHcBTDCa2XcBduTo/info.json new file mode 100644 index 0000000000000..a69d7af4c8427 --- /dev/null +++ b/blockchains/solana/assets/5cbq1HriesW4zHpFEk9Gc8UT4ccmfHcBTDCa2XcBduTo/info.json @@ -0,0 +1,21 @@ +{ + "name": "Elixir Games", + "symbol": "ELIX", + "type": "SPL", + "decimals": 9, + "description": "Elixir Games is the largest gaming platform in the Web3 ecosystem, providing end-to-end distribution & fintech enterprise-grade solutions.", + "website": "https://elixir.games/", + "explorer": "https://solscan.io/token/5cbq1HriesW4zHpFEk9Gc8UT4ccmfHcBTDCa2XcBduTo", + "status": "active", + "id": "5cbq1HriesW4zHpFEk9Gc8UT4ccmfHcBTDCa2XcBduTo", + "links": [ + { + "name": "x", + "url": "https://x.com/Elixir_Games" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elixir-games" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5cbq1HriesW4zHpFEk9Gc8UT4ccmfHcBTDCa2XcBduTo/logo.png b/blockchains/solana/assets/5cbq1HriesW4zHpFEk9Gc8UT4ccmfHcBTDCa2XcBduTo/logo.png new file mode 100644 index 0000000000000..509dbe1a51bbd Binary files /dev/null and b/blockchains/solana/assets/5cbq1HriesW4zHpFEk9Gc8UT4ccmfHcBTDCa2XcBduTo/logo.png differ diff --git a/blockchains/solana/assets/5gs8nf4wojB5EXgDUWNLwXpknzgV2YWDhveAeBZpVLbp/info.json b/blockchains/solana/assets/5gs8nf4wojB5EXgDUWNLwXpknzgV2YWDhveAeBZpVLbp/info.json new file mode 100644 index 0000000000000..0e6b5d73c85d2 --- /dev/null +++ b/blockchains/solana/assets/5gs8nf4wojB5EXgDUWNLwXpknzgV2YWDhveAeBZpVLbp/info.json @@ -0,0 +1,21 @@ +{ + "name": "xHashtag", + "symbol": "XTAG", + "type": "SPL", + "decimals": 6, + "description": "xHashtag AI, powered by Slinky Network, is a pioneering creation and co-ownership platform for Social AI agents, envisioning these agents as the revenue-generating assets of the future.", + "website": "https://xhashtag.ai/", + "explorer": "https://solscan.io/token/5gs8nf4wojB5EXgDUWNLwXpknzgV2YWDhveAeBZpVLbp", + "status": "active", + "id": "5gs8nf4wojB5EXgDUWNLwXpknzgV2YWDhveAeBZpVLbp", + "links": [ + { + "name": "x", + "url": "https://x.com/xhashtagio" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/xhashtag" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5gs8nf4wojB5EXgDUWNLwXpknzgV2YWDhveAeBZpVLbp/logo.png b/blockchains/solana/assets/5gs8nf4wojB5EXgDUWNLwXpknzgV2YWDhveAeBZpVLbp/logo.png new file mode 100644 index 0000000000000..187a139a1488a Binary files /dev/null and b/blockchains/solana/assets/5gs8nf4wojB5EXgDUWNLwXpknzgV2YWDhveAeBZpVLbp/logo.png differ diff --git a/blockchains/solana/assets/5hT2o25X9tGXipwhLckaUdgnxrZ6Y8eiUwdhpLeondo/info.json b/blockchains/solana/assets/5hT2o25X9tGXipwhLckaUdgnxrZ6Y8eiUwdhpLeondo/info.json new file mode 100644 index 0000000000000..a2b8385a6a72a --- /dev/null +++ b/blockchains/solana/assets/5hT2o25X9tGXipwhLckaUdgnxrZ6Y8eiUwdhpLeondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Ford Motor (Ondo Tokenized)", + "type": "SPL", + "symbol": "Fon", + "decimals": 9, + "description": "Fon is the Ondo Tokenized version of Ford Motor, giving tokenholders economic exposure similar to holding F and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/5hT2o25X9tGXipwhLckaUdgnxrZ6Y8eiUwdhpLeondo", + "status": "active", + "id": "5hT2o25X9tGXipwhLckaUdgnxrZ6Y8eiUwdhpLeondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ford-motor-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ford-motor-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5hT2o25X9tGXipwhLckaUdgnxrZ6Y8eiUwdhpLeondo/logo.png b/blockchains/solana/assets/5hT2o25X9tGXipwhLckaUdgnxrZ6Y8eiUwdhpLeondo/logo.png new file mode 100644 index 0000000000000..32e8069f94a24 Binary files /dev/null and b/blockchains/solana/assets/5hT2o25X9tGXipwhLckaUdgnxrZ6Y8eiUwdhpLeondo/logo.png differ diff --git a/blockchains/solana/assets/5hmf8Jt9puwoqiFQTb3vr22732ZTKYRLRw9Vo7tN3rcz/info.json b/blockchains/solana/assets/5hmf8Jt9puwoqiFQTb3vr22732ZTKYRLRw9Vo7tN3rcz/info.json new file mode 100644 index 0000000000000..d51bb5000db81 --- /dev/null +++ b/blockchains/solana/assets/5hmf8Jt9puwoqiFQTb3vr22732ZTKYRLRw9Vo7tN3rcz/info.json @@ -0,0 +1,21 @@ +{ + "name": "Baby", + "website": "https://baby-sol.com", + "description": "BABY is the final MEME, the mother and father of all BABY tokens join the original join the movement", + "explorer": "https://solscan.io/token/5hmf8Jt9puwoqiFQTb3vr22732ZTKYRLRw9Vo7tN3rcz", + "type": "SPL", + "symbol": "BABY", + "decimals": 6, + "status": "active", + "id": "5hmf8Jt9puwoqiFQTb3vr22732ZTKYRLRw9Vo7tN3rcz", + "links": [ + { + "name": "x", + "url": "https://x.com/Baby_token_sol" + }, + { + "name": "telegram", + "url": "https://t.me/baby_token_sol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5hmf8Jt9puwoqiFQTb3vr22732ZTKYRLRw9Vo7tN3rcz/logo.png b/blockchains/solana/assets/5hmf8Jt9puwoqiFQTb3vr22732ZTKYRLRw9Vo7tN3rcz/logo.png new file mode 100644 index 0000000000000..b9d430bdd84bf Binary files /dev/null and b/blockchains/solana/assets/5hmf8Jt9puwoqiFQTb3vr22732ZTKYRLRw9Vo7tN3rcz/logo.png differ diff --git a/blockchains/solana/assets/5mbK36SZ7J19An8jFochhQS4of8g6BwUjbeCSxBSoWdp/info.json b/blockchains/solana/assets/5mbK36SZ7J19An8jFochhQS4of8g6BwUjbeCSxBSoWdp/info.json new file mode 100644 index 0000000000000..223eae559e312 --- /dev/null +++ b/blockchains/solana/assets/5mbK36SZ7J19An8jFochhQS4of8g6BwUjbeCSxBSoWdp/info.json @@ -0,0 +1,21 @@ +{ + "name": "michi", + "website": "https://michisolana.org", + "description": "michi memes", + "explorer": "https://solscan.io/token/5mbK36SZ7J19An8jFochhQS4of8g6BwUjbeCSxBSoWdp", + "type": "SPL", + "symbol": "michi", + "decimals": 6, + "status": "active", + "id": "5mbK36SZ7J19An8jFochhQS4of8g6BwUjbeCSxBSoWdp", + "links": [ + { + "name": "x", + "url": "https://x.com/michionsolana" + }, + { + "name": "telegram", + "url": "https://t.me/michiportal" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5mbK36SZ7J19An8jFochhQS4of8g6BwUjbeCSxBSoWdp/logo.png b/blockchains/solana/assets/5mbK36SZ7J19An8jFochhQS4of8g6BwUjbeCSxBSoWdp/logo.png new file mode 100644 index 0000000000000..fafcb987183ad Binary files /dev/null and b/blockchains/solana/assets/5mbK36SZ7J19An8jFochhQS4of8g6BwUjbeCSxBSoWdp/logo.png differ diff --git a/blockchains/solana/assets/5oVNBeEEQvYi1cX3ir8Dx5n1P7pdxydbGF2X4TxVusJm/info.json b/blockchains/solana/assets/5oVNBeEEQvYi1cX3ir8Dx5n1P7pdxydbGF2X4TxVusJm/info.json new file mode 100644 index 0000000000000..02077a492a716 --- /dev/null +++ b/blockchains/solana/assets/5oVNBeEEQvYi1cX3ir8Dx5n1P7pdxydbGF2X4TxVusJm/info.json @@ -0,0 +1,21 @@ +{ + "name": "Infinity", + "website": "https://sanctum.so", + "description": "Infinity is a multi-LST liquidity pool (LP). Most LPs only have two assets (e.g. USDC-SOL). Some LPs, like a Curve stableswap pool, support three or four assets", + "explorer": "https://solscan.io/token/5oVNBeEEQvYi1cX3ir8Dx5n1P7pdxydbGF2X4TxVusJm", + "type": "SPL", + "symbol": "INF", + "decimals": 9, + "status": "active", + "id": "5oVNBeEEQvYi1cX3ir8Dx5n1P7pdxydbGF2X4TxVusJm", + "links": [ + { + "name": "x", + "url": "https://x.com/sanctumso" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/infinity" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5oVNBeEEQvYi1cX3ir8Dx5n1P7pdxydbGF2X4TxVusJm/logo.png b/blockchains/solana/assets/5oVNBeEEQvYi1cX3ir8Dx5n1P7pdxydbGF2X4TxVusJm/logo.png new file mode 100644 index 0000000000000..d290a632dd2a9 Binary files /dev/null and b/blockchains/solana/assets/5oVNBeEEQvYi1cX3ir8Dx5n1P7pdxydbGF2X4TxVusJm/logo.png differ diff --git a/blockchains/solana/assets/5odbSFH3kKHFNcy6Kai7ykm7Da9B55Kk9wgy4Fh8GSfh/info.json b/blockchains/solana/assets/5odbSFH3kKHFNcy6Kai7ykm7Da9B55Kk9wgy4Fh8GSfh/info.json new file mode 100644 index 0000000000000..3474f618df555 --- /dev/null +++ b/blockchains/solana/assets/5odbSFH3kKHFNcy6Kai7ykm7Da9B55Kk9wgy4Fh8GSfh/info.json @@ -0,0 +1,21 @@ +{ + "name": "PYRATE", + "symbol": "PYRATE", + "type": "SPL", + "decimals": 9, + "description": "Launched October 29th on Moonshot DexScreener, $PYRATE is a memecoin created around pirate culture with actual utility that's being used by 100,000+ people in 1000+ crypto projects.", + "website": "https://pyrate.fun/", + "explorer": "https://solscan.io/token/5odbSFH3kKHFNcy6Kai7ykm7Da9B55Kk9wgy4Fh8GSfh", + "status": "active", + "id": "5odbSFH3kKHFNcy6Kai7ykm7Da9B55Kk9wgy4Fh8GSfh", + "links": [ + { + "name": "x", + "url": "https://x.com/pyratefun" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pyrate/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5odbSFH3kKHFNcy6Kai7ykm7Da9B55Kk9wgy4Fh8GSfh/logo.png b/blockchains/solana/assets/5odbSFH3kKHFNcy6Kai7ykm7Da9B55Kk9wgy4Fh8GSfh/logo.png new file mode 100644 index 0000000000000..14e1080bf9c7f Binary files /dev/null and b/blockchains/solana/assets/5odbSFH3kKHFNcy6Kai7ykm7Da9B55Kk9wgy4Fh8GSfh/logo.png differ diff --git a/blockchains/solana/assets/5pKj7qx29jzWZb36xYw2R5ZahMESCCyKdq2fphiziM9d/info.json b/blockchains/solana/assets/5pKj7qx29jzWZb36xYw2R5ZahMESCCyKdq2fphiziM9d/info.json new file mode 100644 index 0000000000000..1379a18b78219 --- /dev/null +++ b/blockchains/solana/assets/5pKj7qx29jzWZb36xYw2R5ZahMESCCyKdq2fphiziM9d/info.json @@ -0,0 +1,24 @@ +{ + "name": "Rapamycin", + "type": "SPL", + "symbol": "RAPAMYCIN", + "decimals": 2, + "description": "Rapamycin ($RAPAMYCIN) is where bold ambition meets the ultimate crypto satire! Uniting the spectacle of Trump with the audacious nature of meme coins, Rapamycin aims to capture the imagination of enthusiasts who believe in a world where pop culture, politics, and digital assets collide in spectacular fashion.", + "website": "https://rapamycin.world/", + "explorer": "https://solscan.io/token/5pKj7qx29jzWZb36xYw2R5ZahMESCCyKdq2fphiziM9d", + "id": "5pKj7qx29jzWZb36xYw2R5ZahMESCCyKdq2fphiziM9d", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Rapamycin_" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rapamycin/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5pKj7qx29jzWZb36xYw2R5ZahMESCCyKdq2fphiziM9d/logo.png b/blockchains/solana/assets/5pKj7qx29jzWZb36xYw2R5ZahMESCCyKdq2fphiziM9d/logo.png new file mode 100644 index 0000000000000..a41bf2cb18cb7 Binary files /dev/null and b/blockchains/solana/assets/5pKj7qx29jzWZb36xYw2R5ZahMESCCyKdq2fphiziM9d/logo.png differ diff --git a/blockchains/solana/assets/5pPkhLEJDMFDHUuE1wW5os5YJeyNUDVmih1DKgMFpB38/info.json b/blockchains/solana/assets/5pPkhLEJDMFDHUuE1wW5os5YJeyNUDVmih1DKgMFpB38/info.json new file mode 100644 index 0000000000000..a2a5ef0348a1d --- /dev/null +++ b/blockchains/solana/assets/5pPkhLEJDMFDHUuE1wW5os5YJeyNUDVmih1DKgMFpB38/info.json @@ -0,0 +1,26 @@ +{ + "name": "Oracler", + "type": "SOL", + "symbol": "Oracler", + "decimals": 6, + "description": "Built with proprietary data engines acquired from Coinseeker, developed and refined during the bear market, we provide lightning-fast analysis and tracking of emerging meme and utility token projects. Our platform also conducts mindshare analysis, identifying trends and narratives driving these tokens in real-time.", + "website": "https://oracler.co/tokens/5pPkhLEJDMFDHUuE1wW5os5YJeyNUDVmih1DKgMFpB38", + "explorer": "https://solscan.io/token/5pPkhLEJDMFDHUuE1wW5os5YJeyNUDVmih1DKgMFpB38", + "id": "5pPkhLEJDMFDHUuE1wW5os5YJeyNUDVmih1DKgMFpB38", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/oraclerai" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/oracler/" + } + + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/5pPkhLEJDMFDHUuE1wW5os5YJeyNUDVmih1DKgMFpB38/logo.png b/blockchains/solana/assets/5pPkhLEJDMFDHUuE1wW5os5YJeyNUDVmih1DKgMFpB38/logo.png new file mode 100644 index 0000000000000..9e248db15fc5f Binary files /dev/null and b/blockchains/solana/assets/5pPkhLEJDMFDHUuE1wW5os5YJeyNUDVmih1DKgMFpB38/logo.png differ diff --git a/blockchains/solana/assets/5ritAPtFPqQtEFHcHVqNjR5oFNUJqcmgKtZyPd2AyLLy/info.json b/blockchains/solana/assets/5ritAPtFPqQtEFHcHVqNjR5oFNUJqcmgKtZyPd2AyLLy/info.json new file mode 100644 index 0000000000000..a8a05b80fee85 --- /dev/null +++ b/blockchains/solana/assets/5ritAPtFPqQtEFHcHVqNjR5oFNUJqcmgKtZyPd2AyLLy/info.json @@ -0,0 +1,21 @@ +{ + "name": "KNOB", + "type": "SPL", + "symbol": "KNOB", + "decimals": 9, + "website": "https://www.knobcoin.xyz", + "description": "The first ever reverse meta coin on Solana Chain", + "explorer": "https://solscan.io/token/5ritAPtFPqQtEFHcHVqNjR5oFNUJqcmgKtZyPd2AyLLy", + "status": "active", + "id": "5ritAPtFPqQtEFHcHVqNjR5oFNUJqcmgKtZyPd2AyLLy", + "links": [ + { + "name": "x", + "url": "https://x.com/uni_knob" + }, + { + "name": "telegram", + "url": "https://t.me/knobcoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5ritAPtFPqQtEFHcHVqNjR5oFNUJqcmgKtZyPd2AyLLy/logo.png b/blockchains/solana/assets/5ritAPtFPqQtEFHcHVqNjR5oFNUJqcmgKtZyPd2AyLLy/logo.png new file mode 100644 index 0000000000000..a448f9dc289ce Binary files /dev/null and b/blockchains/solana/assets/5ritAPtFPqQtEFHcHVqNjR5oFNUJqcmgKtZyPd2AyLLy/logo.png differ diff --git a/blockchains/solana/assets/5sCVWnbSNiqwuEt5yEHKphZXPLAggRwrabTBBnu6VH9o/info.json b/blockchains/solana/assets/5sCVWnbSNiqwuEt5yEHKphZXPLAggRwrabTBBnu6VH9o/info.json new file mode 100644 index 0000000000000..49cb8b5c24034 --- /dev/null +++ b/blockchains/solana/assets/5sCVWnbSNiqwuEt5yEHKphZXPLAggRwrabTBBnu6VH9o/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE EURC", + "type": "SPL", + "symbol": "FAKE EURC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/5sCVWnbSNiqwuEt5yEHKphZXPLAggRwrabTBBnu6VH9o", + "explorer": "https://solscan.io/token/5sCVWnbSNiqwuEt5yEHKphZXPLAggRwrabTBBnu6VH9o", + "status": "spam", + "id": "5sCVWnbSNiqwuEt5yEHKphZXPLAggRwrabTBBnu6VH9o" +} \ No newline at end of file diff --git a/blockchains/solana/assets/5t4EVfkb5QU8NZXmTzcSK2bQsNWUr2HL64rRb8i6wpat/info.json b/blockchains/solana/assets/5t4EVfkb5QU8NZXmTzcSK2bQsNWUr2HL64rRb8i6wpat/info.json new file mode 100644 index 0000000000000..8ce6292766588 --- /dev/null +++ b/blockchains/solana/assets/5t4EVfkb5QU8NZXmTzcSK2bQsNWUr2HL64rRb8i6wpat/info.json @@ -0,0 +1,21 @@ +{ + "name": "Egypt Cat", + "website": "https://egyptcat.io/", + "description": "Betrayed, he was confined in a sarcophagus for thousands of years. But now Sphynx has awakened", + "explorer": "https://solscan.io/token/5t4EVfkb5QU8NZXmTzcSK2bQsNWUr2HL64rRb8i6wpat", + "type": "SPL", + "symbol": "Sphynx", + "decimals": 9, + "status": "active", + "id": "5t4EVfkb5QU8NZXmTzcSK2bQsNWUr2HL64rRb8i6wpat", + "links": [ + { + "name": "x", + "url": "https://x.com/egyptcatsolana" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/egypt-cat" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5t4EVfkb5QU8NZXmTzcSK2bQsNWUr2HL64rRb8i6wpat/logo.png b/blockchains/solana/assets/5t4EVfkb5QU8NZXmTzcSK2bQsNWUr2HL64rRb8i6wpat/logo.png new file mode 100644 index 0000000000000..2c2455f6a1399 Binary files /dev/null and b/blockchains/solana/assets/5t4EVfkb5QU8NZXmTzcSK2bQsNWUr2HL64rRb8i6wpat/logo.png differ diff --git a/blockchains/solana/assets/5voS9evDjxF589WuEub5i4ti7FWQmZCsAsyD5ucbuRqM/info.json b/blockchains/solana/assets/5voS9evDjxF589WuEub5i4ti7FWQmZCsAsyD5ucbuRqM/info.json new file mode 100644 index 0000000000000..fa6458ceb6e93 --- /dev/null +++ b/blockchains/solana/assets/5voS9evDjxF589WuEub5i4ti7FWQmZCsAsyD5ucbuRqM/info.json @@ -0,0 +1,21 @@ +{ + "name": "Eliza", + "website": "https://elizawakesup.ai/", + "description": "Eliza is a real girl.", + "explorer": "https://solscan.io/token/5voS9evDjxF589WuEub5i4ti7FWQmZCsAsyD5ucbuRqM", + "type": "SPL", + "symbol": "ELIZA", + "decimals": 6, + "status": "active", + "id": "5voS9evDjxF589WuEub5i4ti7FWQmZCsAsyD5ucbuRqM", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/eliza-wakesup-ai" + }, + { + "name": "x", + "url": "https://x.com/elizawakesup" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5voS9evDjxF589WuEub5i4ti7FWQmZCsAsyD5ucbuRqM/logo.png b/blockchains/solana/assets/5voS9evDjxF589WuEub5i4ti7FWQmZCsAsyD5ucbuRqM/logo.png new file mode 100644 index 0000000000000..8bae7f2be481a Binary files /dev/null and b/blockchains/solana/assets/5voS9evDjxF589WuEub5i4ti7FWQmZCsAsyD5ucbuRqM/logo.png differ diff --git a/blockchains/solana/assets/5wU4tUcAbds7d5cmnGK2otHa9gbayYsD2mhz1reR6c91/info.json b/blockchains/solana/assets/5wU4tUcAbds7d5cmnGK2otHa9gbayYsD2mhz1reR6c91/info.json new file mode 100644 index 0000000000000..fe40620601a7a --- /dev/null +++ b/blockchains/solana/assets/5wU4tUcAbds7d5cmnGK2otHa9gbayYsD2mhz1reR6c91/info.json @@ -0,0 +1,17 @@ +{ + "name": "Tongue Cat", + "type": "SPL", + "symbol": "LUIS", + "decimals": 6, + "website": "https://www.tonguecatluis.xyz", + "description": "Tongue Cat $LUIS is nothing but a cute kitten in a skin care session with his tongue out in Solana Blockchain.", + "explorer": "https://solscan.io/token/5wU4tUcAbds7d5cmnGK2otHa9gbayYsD2mhz1reR6c91", + "status": "active", + "id": "5wU4tUcAbds7d5cmnGK2otHa9gbayYsD2mhz1reR6c91", + "links": [ + { + "name": "x", + "url": "https://x.com/TongueCatLuis2" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5wU4tUcAbds7d5cmnGK2otHa9gbayYsD2mhz1reR6c91/logo.png b/blockchains/solana/assets/5wU4tUcAbds7d5cmnGK2otHa9gbayYsD2mhz1reR6c91/logo.png new file mode 100644 index 0000000000000..41b0e8173a484 Binary files /dev/null and b/blockchains/solana/assets/5wU4tUcAbds7d5cmnGK2otHa9gbayYsD2mhz1reR6c91/logo.png differ diff --git a/blockchains/solana/assets/5z3EqYQo9HiCEs3R84RCDMu2n7anpDMxRhdK8PSWmrRC/info.json b/blockchains/solana/assets/5z3EqYQo9HiCEs3R84RCDMu2n7anpDMxRhdK8PSWmrRC/info.json new file mode 100644 index 0000000000000..5e00149f1a3c4 --- /dev/null +++ b/blockchains/solana/assets/5z3EqYQo9HiCEs3R84RCDMu2n7anpDMxRhdK8PSWmrRC/info.json @@ -0,0 +1,21 @@ +{ + "name": "PONKE", + "website": "https://www.ponke.xyz/", + "description": "PONKE is a degenerate gambler with anger issues on the Solana network.", + "explorer": "https://solscan.io/token/5z3EqYQo9HiCEs3R84RCDMu2n7anpDMxRhdK8PSWmrRC", + "type": "SPL", + "symbol": "PONKE", + "decimals": 9, + "status": "active", + "id": "5z3EqYQo9HiCEs3R84RCDMu2n7anpDMxRhdK8PSWmrRC", + "links": [ + { + "name": "x", + "url": "https://x.com/PONKESOL" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ponke/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5z3EqYQo9HiCEs3R84RCDMu2n7anpDMxRhdK8PSWmrRC/logo.png b/blockchains/solana/assets/5z3EqYQo9HiCEs3R84RCDMu2n7anpDMxRhdK8PSWmrRC/logo.png new file mode 100644 index 0000000000000..fab59275a6839 Binary files /dev/null and b/blockchains/solana/assets/5z3EqYQo9HiCEs3R84RCDMu2n7anpDMxRhdK8PSWmrRC/logo.png differ diff --git a/blockchains/solana/assets/5z3iCe53hUANTiG8Js8RjHNE2Arjik7L2CXLyr2rpump/info.json b/blockchains/solana/assets/5z3iCe53hUANTiG8Js8RjHNE2Arjik7L2CXLyr2rpump/info.json new file mode 100644 index 0000000000000..ee94ac5ce365f --- /dev/null +++ b/blockchains/solana/assets/5z3iCe53hUANTiG8Js8RjHNE2Arjik7L2CXLyr2rpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Litecoin Mascot", + "website": "https://marbitz.io/", + "description": "$LESTER is not just a meme, this is a confrontation between new memes and old tech.", + "explorer": "https://solscan.io/token/5z3iCe53hUANTiG8Js8RjHNE2Arjik7L2CXLyr2rpump", + "type": "SPL", + "symbol": "LESTER", + "decimals": 6, + "status": "active", + "id": "5z3iCe53hUANTiG8Js8RjHNE2Arjik7L2CXLyr2rpump", + "links": [ + { + "name": "x", + "url": "https://x.com/lesterctosol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lester" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5z3iCe53hUANTiG8Js8RjHNE2Arjik7L2CXLyr2rpump/logo.png b/blockchains/solana/assets/5z3iCe53hUANTiG8Js8RjHNE2Arjik7L2CXLyr2rpump/logo.png new file mode 100644 index 0000000000000..686786ccf297f Binary files /dev/null and b/blockchains/solana/assets/5z3iCe53hUANTiG8Js8RjHNE2Arjik7L2CXLyr2rpump/logo.png differ diff --git a/blockchains/solana/assets/61SCWeA5EGECRQrYi5cHfZorMY56LAdjoxM1sN3qpump/info.json b/blockchains/solana/assets/61SCWeA5EGECRQrYi5cHfZorMY56LAdjoxM1sN3qpump/info.json new file mode 100644 index 0000000000000..e95fd93a6c373 --- /dev/null +++ b/blockchains/solana/assets/61SCWeA5EGECRQrYi5cHfZorMY56LAdjoxM1sN3qpump/info.json @@ -0,0 +1,17 @@ +{ + "name": "AGUI", + "symbol": "AGUI", + "type": "SPL", + "decimals": 6, + "description": "A multi-platform AIGUI managing everything", + "website": "https://agenticgui.ai", + "explorer": "https://solscan.io/token/61SCWeA5EGECRQrYi5cHfZorMY56LAdjoxM1sN3qpump", + "status": "active", + "id": "61SCWeA5EGECRQrYi5cHfZorMY56LAdjoxM1sN3qpump", + "links": [ + { + "name": "x", + "url": "https://x.com/AgenticGUI" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/61SCWeA5EGECRQrYi5cHfZorMY56LAdjoxM1sN3qpump/logo.png b/blockchains/solana/assets/61SCWeA5EGECRQrYi5cHfZorMY56LAdjoxM1sN3qpump/logo.png new file mode 100644 index 0000000000000..07307e6857537 Binary files /dev/null and b/blockchains/solana/assets/61SCWeA5EGECRQrYi5cHfZorMY56LAdjoxM1sN3qpump/logo.png differ diff --git a/blockchains/solana/assets/61V8vBaqAGMpgDQi4JcAwo1dmBGHsyhzodcPqnEVpump/info.json b/blockchains/solana/assets/61V8vBaqAGMpgDQi4JcAwo1dmBGHsyhzodcPqnEVpump/info.json new file mode 100644 index 0000000000000..56bf5c0f54c99 --- /dev/null +++ b/blockchains/solana/assets/61V8vBaqAGMpgDQi4JcAwo1dmBGHsyhzodcPqnEVpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "AI Rig Complex", + "website": "https://www.arc.fun/index.html", + "description": "we take the red pill then the blue pill", + "explorer": "https://solscan.io/token/61V8vBaqAGMpgDQi4JcAwo1dmBGHsyhzodcPqnEVpump", + "type": "SPL", + "symbol": "arc", + "decimals": 6, + "status": "active", + "id": "61V8vBaqAGMpgDQi4JcAwo1dmBGHsyhzodcPqnEVpump", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ai-rig-complex/" + }, + { + "name": "x", + "url": "https://x.com/arcdotfun" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/61V8vBaqAGMpgDQi4JcAwo1dmBGHsyhzodcPqnEVpump/logo.png b/blockchains/solana/assets/61V8vBaqAGMpgDQi4JcAwo1dmBGHsyhzodcPqnEVpump/logo.png new file mode 100644 index 0000000000000..e524811b5bae9 Binary files /dev/null and b/blockchains/solana/assets/61V8vBaqAGMpgDQi4JcAwo1dmBGHsyhzodcPqnEVpump/logo.png differ diff --git a/blockchains/solana/assets/63LfDmNb3MQ8mw9MtZ2To9bEA2M71kZUUGq5tiJxcqj9/info.json b/blockchains/solana/assets/63LfDmNb3MQ8mw9MtZ2To9bEA2M71kZUUGq5tiJxcqj9/info.json new file mode 100644 index 0000000000000..a63d24b5cef54 --- /dev/null +++ b/blockchains/solana/assets/63LfDmNb3MQ8mw9MtZ2To9bEA2M71kZUUGq5tiJxcqj9/info.json @@ -0,0 +1,21 @@ +{ + "name": "GIGACHAD", + "website": "https://gigachadmeme.org/", + "description": "$GIGA is a Solana token deployed by Giga Chad himself", + "explorer": "https://solscan.io/token/63LfDmNb3MQ8mw9MtZ2To9bEA2M71kZUUGq5tiJxcqj9", + "type": "SPL", + "symbol": "GIGA", + "decimals": 5, + "status": "active", + "id": "63LfDmNb3MQ8mw9MtZ2To9bEA2M71kZUUGq5tiJxcqj9", + "links": [ + { + "name": "x", + "url": "https://x.com/GIGACHAD_meme" + }, + { + "name": "telegram", + "url": "https://t.me/GigaChadSol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/63LfDmNb3MQ8mw9MtZ2To9bEA2M71kZUUGq5tiJxcqj9/logo.png b/blockchains/solana/assets/63LfDmNb3MQ8mw9MtZ2To9bEA2M71kZUUGq5tiJxcqj9/logo.png new file mode 100644 index 0000000000000..3fe57f132513e Binary files /dev/null and b/blockchains/solana/assets/63LfDmNb3MQ8mw9MtZ2To9bEA2M71kZUUGq5tiJxcqj9/logo.png differ diff --git a/blockchains/solana/assets/66dzGbVZg9cBNb3sTWd9iAtDZKjgAyztNwAhTitfgoLj/info.json b/blockchains/solana/assets/66dzGbVZg9cBNb3sTWd9iAtDZKjgAyztNwAhTitfgoLj/info.json new file mode 100644 index 0000000000000..a499f8ea84fed --- /dev/null +++ b/blockchains/solana/assets/66dzGbVZg9cBNb3sTWd9iAtDZKjgAyztNwAhTitfgoLj/info.json @@ -0,0 +1,28 @@ +{ + "name": "Thorecoin", + "type": "SPL", + "symbol": "THR", + "decimals": 9, + "description": "Thorecoin (THR) is a cryptocurrency token based on the Solana blockchain, representing the latest development in the Thorecoin series, Thorecoin 2.0.", + "website": "https://thorecoin.com/", + "explorer": "https://solscan.io/token/66dzGbVZg9cBNb3sTWd9iAtDZKjgAyztNwAhTitfgoLj", + "id": "66dzGbVZg9cBNb3sTWd9iAtDZKjgAyztNwAhTitfgoLj", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/ThorecoinAI" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/thorecoin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/thorecoin" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/66dzGbVZg9cBNb3sTWd9iAtDZKjgAyztNwAhTitfgoLj/logo.png b/blockchains/solana/assets/66dzGbVZg9cBNb3sTWd9iAtDZKjgAyztNwAhTitfgoLj/logo.png new file mode 100644 index 0000000000000..c1811eb67ce83 Binary files /dev/null and b/blockchains/solana/assets/66dzGbVZg9cBNb3sTWd9iAtDZKjgAyztNwAhTitfgoLj/logo.png differ diff --git a/blockchains/solana/assets/689MPCq3j4cRgnRDrebVRfd9aEBvciPkR8DqPyxjMhBW/info.json b/blockchains/solana/assets/689MPCq3j4cRgnRDrebVRfd9aEBvciPkR8DqPyxjMhBW/info.json new file mode 100644 index 0000000000000..106cc8ff25f83 --- /dev/null +++ b/blockchains/solana/assets/689MPCq3j4cRgnRDrebVRfd9aEBvciPkR8DqPyxjMhBW/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Теthеr", + "type": "SPL", + "symbol": "FAKE ՍՏⅮŦ", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/689MPCq3j4cRgnRDrebVRfd9aEBvciPkR8DqPyxjMhBW", + "explorer": "https://solscan.io/token/689MPCq3j4cRgnRDrebVRfd9aEBvciPkR8DqPyxjMhBW", + "status": "spam", + "id": "689MPCq3j4cRgnRDrebVRfd9aEBvciPkR8DqPyxjMhBW" +} \ No newline at end of file diff --git a/blockchains/solana/assets/69SEPKGCzFzJLoSawb3xPfcqnZdiVm21Xu28AWZB5pzk/info.json b/blockchains/solana/assets/69SEPKGCzFzJLoSawb3xPfcqnZdiVm21Xu28AWZB5pzk/info.json new file mode 100644 index 0000000000000..bf1fc976cf962 --- /dev/null +++ b/blockchains/solana/assets/69SEPKGCzFzJLoSawb3xPfcqnZdiVm21Xu28AWZB5pzk/info.json @@ -0,0 +1,17 @@ +{ + "name": "JizzLord", + "website": "https://jizzlordcoin.com/", + "description": "Wherever you may be, I am the lord of the jizz; join me. The memecoin splashing out across your screen!", + "explorer": "https://solscan.io/token/69SEPKGCzFzJLoSawb3xPfcqnZdiVm21Xu28AWZB5pzk", + "type": "SPL", + "symbol": "JIZZLORD", + "decimals": 6, + "status": "active", + "id": "69SEPKGCzFzJLoSawb3xPfcqnZdiVm21Xu28AWZB5pzk", + "links": [ + { + "name": "x", + "url": "https://x.com/jizzlordcoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/69SEPKGCzFzJLoSawb3xPfcqnZdiVm21Xu28AWZB5pzk/logo.png b/blockchains/solana/assets/69SEPKGCzFzJLoSawb3xPfcqnZdiVm21Xu28AWZB5pzk/logo.png new file mode 100644 index 0000000000000..6d517db44fa37 Binary files /dev/null and b/blockchains/solana/assets/69SEPKGCzFzJLoSawb3xPfcqnZdiVm21Xu28AWZB5pzk/logo.png differ diff --git a/blockchains/solana/assets/69kdRLyP5DTRkpHraaSZAQbWmAwzF9guKjZfzMXzcbAs/info.json b/blockchains/solana/assets/69kdRLyP5DTRkpHraaSZAQbWmAwzF9guKjZfzMXzcbAs/info.json new file mode 100644 index 0000000000000..4402d2103443a --- /dev/null +++ b/blockchains/solana/assets/69kdRLyP5DTRkpHraaSZAQbWmAwzF9guKjZfzMXzcbAs/info.json @@ -0,0 +1,21 @@ +{ + "name": "American Coin", + "type": "SPL", + "symbol": "USA", + "decimals": 6, + "website": "https://www.americancoin.xyz/", + "description": "$USA is the greatest empire in the history of humanity brought on-chain by a strong community of god-fearing patriots. We will not stop until all other memes have been liberated", + "explorer": "https://solscan.io/token/69kdRLyP5DTRkpHraaSZAQbWmAwzF9guKjZfzMXzcbAs", + "status": "active", + "id": "69kdRLyP5DTRkpHraaSZAQbWmAwzF9guKjZfzMXzcbAs", + "links": [ + { + "name": "x", + "url": "https://x.com/USA_ON_CHAIN" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/american-coin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/69kdRLyP5DTRkpHraaSZAQbWmAwzF9guKjZfzMXzcbAs/logo.png b/blockchains/solana/assets/69kdRLyP5DTRkpHraaSZAQbWmAwzF9guKjZfzMXzcbAs/logo.png new file mode 100644 index 0000000000000..7f2a573b16db0 Binary files /dev/null and b/blockchains/solana/assets/69kdRLyP5DTRkpHraaSZAQbWmAwzF9guKjZfzMXzcbAs/logo.png differ diff --git a/blockchains/solana/assets/6AJcP7wuLwmRYLBNbi825wgguaPsWzPBEHcHndpRpump/info.json b/blockchains/solana/assets/6AJcP7wuLwmRYLBNbi825wgguaPsWzPBEHcHndpRpump/info.json new file mode 100644 index 0000000000000..bf0d18caa6ab4 --- /dev/null +++ b/blockchains/solana/assets/6AJcP7wuLwmRYLBNbi825wgguaPsWzPBEHcHndpRpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Vine Coin", + "symbol": "VINE", + "type": "SPL", + "decimals": 6, + "description": "$VINE is a meme coin: January 18, 2025, Elon Musk says he is looking into bringing back Vine, and @rus, CEO of Vine, just launched a meme coin.", + "website": "https://www.vineco.in", + "explorer": "https://solscan.io/token/6AJcP7wuLwmRYLBNbi825wgguaPsWzPBEHcHndpRpump", + "status": "active", + "id": "6AJcP7wuLwmRYLBNbi825wgguaPsWzPBEHcHndpRpump", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vine-coin/" + }, + { + "name": "x", + "url": "https://x.com/rus" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/6AJcP7wuLwmRYLBNbi825wgguaPsWzPBEHcHndpRpump/logo.png b/blockchains/solana/assets/6AJcP7wuLwmRYLBNbi825wgguaPsWzPBEHcHndpRpump/logo.png new file mode 100644 index 0000000000000..d5d3901410727 Binary files /dev/null and b/blockchains/solana/assets/6AJcP7wuLwmRYLBNbi825wgguaPsWzPBEHcHndpRpump/logo.png differ diff --git a/blockchains/solana/assets/6B6meNabem1xPxs8EgwmYZudykPS6qye3HpCx49XP4zP/info.json b/blockchains/solana/assets/6B6meNabem1xPxs8EgwmYZudykPS6qye3HpCx49XP4zP/info.json new file mode 100644 index 0000000000000..5b57095f43cad --- /dev/null +++ b/blockchains/solana/assets/6B6meNabem1xPxs8EgwmYZudykPS6qye3HpCx49XP4zP/info.json @@ -0,0 +1,26 @@ +{ + "name": "Pi Network AI Agent", + "type": "SOL", + "symbol": "PiAI", + "decimals": 2, + "description": "PiAI is an innovative project that combines the accessibility and community-driven spirit of Pi Network with advanced AI technology. Leveraging the mobile mining mechanism and decentralized consensus protocol of Pi Network, PiAI aims to create a user-friendly and energy-efficient AI-driven ecosystem.", + "website": "https://minepiai.xyz/", + "explorer": "https://solscan.io/token/6B6meNabem1xPxs8EgwmYZudykPS6qye3HpCx49XP4zP", + "id": "6B6meNabem1xPxs8EgwmYZudykPS6qye3HpCx49XP4zP", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Pi_Network_AI" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pi-network-ai-agent/" + } + + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/6B6meNabem1xPxs8EgwmYZudykPS6qye3HpCx49XP4zP/logo.png b/blockchains/solana/assets/6B6meNabem1xPxs8EgwmYZudykPS6qye3HpCx49XP4zP/logo.png new file mode 100644 index 0000000000000..f871d91762a99 Binary files /dev/null and b/blockchains/solana/assets/6B6meNabem1xPxs8EgwmYZudykPS6qye3HpCx49XP4zP/logo.png differ diff --git a/blockchains/solana/assets/6BUP5Psnp9b6J6Sh7YmVotTPh7tr8SMPv1fPy9MrVBZK/info.json b/blockchains/solana/assets/6BUP5Psnp9b6J6Sh7YmVotTPh7tr8SMPv1fPy9MrVBZK/info.json new file mode 100644 index 0000000000000..c4504256d92fb --- /dev/null +++ b/blockchains/solana/assets/6BUP5Psnp9b6J6Sh7YmVotTPh7tr8SMPv1fPy9MrVBZK/info.json @@ -0,0 +1,13 @@ +{ + "name": "Fake USDT", + "type": "SPL", + "symbol": "Fake USDT", + "decimals": 6, + "website": "https://solscan.io/token/6BUP5Psnp9b6J6Sh7YmVotTPh7tr8SMPv1fPy9MrVBZK", + "description": "Fake USDT", + "explorer": "https://explorer.solana.com/address/6BUP5Psnp9b6J6Sh7YmVotTPh7tr8SMPv1fPy9MrVBZK", + "status": "spam", + "id": "6BUP5Psnp9b6J6Sh7YmVotTPh7tr8SMPv1fPy9MrVBZK", + "links": [], + "tags": [] +} \ No newline at end of file diff --git a/blockchains/solana/assets/6CAsXfiCXZfP8APCG6Vma2DFMindopxiqYQN4LSQfhoC/info.json b/blockchains/solana/assets/6CAsXfiCXZfP8APCG6Vma2DFMindopxiqYQN4LSQfhoC/info.json new file mode 100644 index 0000000000000..f2e7b759f3a0a --- /dev/null +++ b/blockchains/solana/assets/6CAsXfiCXZfP8APCG6Vma2DFMindopxiqYQN4LSQfhoC/info.json @@ -0,0 +1,21 @@ +{ + "name": " Pocket Network (Wormhole)", + "symbol": "POKT", + "type": "SPL", + "decimals": 6, + "description": "​​Pocket Network is a decentralized blockchain data platform - a protocol that is built to connect to any blockchain and service the data demands of Web3 dApps.", + "website": "https://www.pokt.network/", + "explorer": "https://solscan.io/token/6CAsXfiCXZfP8APCG6Vma2DFMindopxiqYQN4LSQfhoC", + "status": "active", + "id": "6CAsXfiCXZfP8APCG6Vma2DFMindopxiqYQN4LSQfhoC", + "links": [ + { + "name": "x", + "url": "https://x.com/POKTnetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pocket-network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/6CAsXfiCXZfP8APCG6Vma2DFMindopxiqYQN4LSQfhoC/logo.png b/blockchains/solana/assets/6CAsXfiCXZfP8APCG6Vma2DFMindopxiqYQN4LSQfhoC/logo.png new file mode 100644 index 0000000000000..403432c6006b4 Binary files /dev/null and b/blockchains/solana/assets/6CAsXfiCXZfP8APCG6Vma2DFMindopxiqYQN4LSQfhoC/logo.png differ diff --git a/blockchains/solana/assets/6D7NaB2xsLd7cauWu1wKk6KBsJohJmP2qZH9GEfVi5Ui/info.json b/blockchains/solana/assets/6D7NaB2xsLd7cauWu1wKk6KBsJohJmP2qZH9GEfVi5Ui/info.json new file mode 100644 index 0000000000000..3b3ca99ff23ee --- /dev/null +++ b/blockchains/solana/assets/6D7NaB2xsLd7cauWu1wKk6KBsJohJmP2qZH9GEfVi5Ui/info.json @@ -0,0 +1,21 @@ +{ + "name": "Shark Cat", + "website": "https://sharkcatsol.xyz/", + "description": "meme coin", + "explorer": "https://solscan.io/token/6D7NaB2xsLd7cauWu1wKk6KBsJohJmP2qZH9GEfVi5Ui", + "type": "SPL", + "symbol": "SC", + "decimals": 6, + "status": "active", + "id": "6D7NaB2xsLd7cauWu1wKk6KBsJohJmP2qZH9GEfVi5Ui", + "links": [ + { + "name": "x", + "url": "https://x.com/SharkCatSolana" + }, + { + "name": "telegram", + "url": "https://t.me/sharkcatonsolana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/6D7NaB2xsLd7cauWu1wKk6KBsJohJmP2qZH9GEfVi5Ui/logo.png b/blockchains/solana/assets/6D7NaB2xsLd7cauWu1wKk6KBsJohJmP2qZH9GEfVi5Ui/logo.png new file mode 100644 index 0000000000000..d77bbfba44b79 Binary files /dev/null and b/blockchains/solana/assets/6D7NaB2xsLd7cauWu1wKk6KBsJohJmP2qZH9GEfVi5Ui/logo.png differ diff --git a/blockchains/solana/assets/6DSqVXg9WLTWgz6LACqxN757QdHe1sCqkUfojWmxWtok/info.json b/blockchains/solana/assets/6DSqVXg9WLTWgz6LACqxN757QdHe1sCqkUfojWmxWtok/info.json new file mode 100644 index 0000000000000..fe9d6e8673849 --- /dev/null +++ b/blockchains/solana/assets/6DSqVXg9WLTWgz6LACqxN757QdHe1sCqkUfojWmxWtok/info.json @@ -0,0 +1,17 @@ +{ + "name": "Solanacorn", + "symbol": "CORN", + "type": "SPL", + "decimals": 7, + "description": "Solanacorn is the first Certified Organic, Non-GMO, Preservative-Free unicorn on chain.", + "website": "https://www.solanacorn.xyz/", + "explorer": "https://solscan.io/token/6DSqVXg9WLTWgz6LACqxN757QdHe1sCqkUfojWmxWtok", + "status": "active", + "id": "6DSqVXg9WLTWgz6LACqxN757QdHe1sCqkUfojWmxWtok", + "links": [ + { + "name": "x", + "url": "https://x.com/CornOnSolana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/6DSqVXg9WLTWgz6LACqxN757QdHe1sCqkUfojWmxWtok/logo.png b/blockchains/solana/assets/6DSqVXg9WLTWgz6LACqxN757QdHe1sCqkUfojWmxWtok/logo.png new file mode 100644 index 0000000000000..bb28bb6ad68de Binary files /dev/null and b/blockchains/solana/assets/6DSqVXg9WLTWgz6LACqxN757QdHe1sCqkUfojWmxWtok/logo.png differ diff --git a/blockchains/solana/assets/6FVyLVhQsShWVUsCq2FJRr1MrECGShc3QxBwWtgiVFwK/info.json b/blockchains/solana/assets/6FVyLVhQsShWVUsCq2FJRr1MrECGShc3QxBwWtgiVFwK/info.json new file mode 100644 index 0000000000000..06dfb074d8cca --- /dev/null +++ b/blockchains/solana/assets/6FVyLVhQsShWVUsCq2FJRr1MrECGShc3QxBwWtgiVFwK/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bitget Wallet Token (Wormhole)", + "symbol": "BWB", + "type": "SPL", + "decimals": 8, + "description": "As the foundational asset of the decentralized Bitget Wallet ecosystem, BWB empowers holders with exclusive benefits, including governance rights within our communities and eligibility for future rewards.", + "website": "https://web3.bitget.com/en?source=bitget", + "explorer": "https://solscan.io/token/6FVyLVhQsShWVUsCq2FJRr1MrECGShc3QxBwWtgiVFwK", + "status": "active", + "id": "6FVyLVhQsShWVUsCq2FJRr1MrECGShc3QxBwWtgiVFwK", + "links": [ + { + "name": "x", + "url": "https://x.com/BitgetWallet" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bitget-wallet-token" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/6FVyLVhQsShWVUsCq2FJRr1MrECGShc3QxBwWtgiVFwK/logo.png b/blockchains/solana/assets/6FVyLVhQsShWVUsCq2FJRr1MrECGShc3QxBwWtgiVFwK/logo.png new file mode 100644 index 0000000000000..e35d5a3e8f0c6 Binary files /dev/null and b/blockchains/solana/assets/6FVyLVhQsShWVUsCq2FJRr1MrECGShc3QxBwWtgiVFwK/logo.png differ diff --git a/blockchains/solana/assets/6HXabQ7iG4QUXwsiLoWNdZXLZmM7a5CoTGQbCE3ST7ki/info.json b/blockchains/solana/assets/6HXabQ7iG4QUXwsiLoWNdZXLZmM7a5CoTGQbCE3ST7ki/info.json new file mode 100644 index 0000000000000..5f8e2f74a58a1 --- /dev/null +++ b/blockchains/solana/assets/6HXabQ7iG4QUXwsiLoWNdZXLZmM7a5CoTGQbCE3ST7ki/info.json @@ -0,0 +1,26 @@ +{ + "name": "Earn Solana", + "type": "SOL", + "symbol": "ESOL", + "decimals": 2, + "description": "Token with 5% tax and gives solana rewards to all holders", + "website": "https://earnsolana.site/", + "explorer": "https://solscan.io/token/6HXabQ7iG4QUXwsiLoWNdZXLZmM7a5CoTGQbCE3ST7ki", + "id": "6HXabQ7iG4QUXwsiLoWNdZXLZmM7a5CoTGQbCE3ST7ki", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/AICrypToken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/earn-solana/" + } + + ], + "tags": [ + "deflationary" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/6HXabQ7iG4QUXwsiLoWNdZXLZmM7a5CoTGQbCE3ST7ki/logo.png b/blockchains/solana/assets/6HXabQ7iG4QUXwsiLoWNdZXLZmM7a5CoTGQbCE3ST7ki/logo.png new file mode 100644 index 0000000000000..e2faeafe42d02 Binary files /dev/null and b/blockchains/solana/assets/6HXabQ7iG4QUXwsiLoWNdZXLZmM7a5CoTGQbCE3ST7ki/logo.png differ diff --git a/blockchains/solana/assets/6JLG8iUkAuqiBhL3j2ckDMDf5oWAa6awmyaWezKondo/info.json b/blockchains/solana/assets/6JLG8iUkAuqiBhL3j2ckDMDf5oWAa6awmyaWezKondo/info.json new file mode 100644 index 0000000000000..5be01cb364f01 --- /dev/null +++ b/blockchains/solana/assets/6JLG8iUkAuqiBhL3j2ckDMDf5oWAa6awmyaWezKondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Bitcoin Trust (Ondo)", + "type": "SPL", + "symbol": "IBITon", + "decimals": 9, + "description": "IBITon is the Ondo Tokenized version of the iShares Bitcoin Trust ETF, giving tokenholders economic exposure similar to holding IBIT and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/6JLG8iUkAuqiBhL3j2ckDMDf5oWAa6awmyaWezKondo", + "status": "active", + "id": "6JLG8iUkAuqiBhL3j2ckDMDf5oWAa6awmyaWezKondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-bitcoin-trust-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/6JLG8iUkAuqiBhL3j2ckDMDf5oWAa6awmyaWezKondo/logo.png b/blockchains/solana/assets/6JLG8iUkAuqiBhL3j2ckDMDf5oWAa6awmyaWezKondo/logo.png new file mode 100644 index 0000000000000..d163a75f472b5 Binary files /dev/null and b/blockchains/solana/assets/6JLG8iUkAuqiBhL3j2ckDMDf5oWAa6awmyaWezKondo/logo.png differ diff --git a/blockchains/solana/assets/6LDF727vvVi5YzisQ5XRr5Mu38sr8qttMe6MbvdHpump/info.json b/blockchains/solana/assets/6LDF727vvVi5YzisQ5XRr5Mu38sr8qttMe6MbvdHpump/info.json new file mode 100644 index 0000000000000..e6f44a8e51153 --- /dev/null +++ b/blockchains/solana/assets/6LDF727vvVi5YzisQ5XRr5Mu38sr8qttMe6MbvdHpump/info.json @@ -0,0 +1,25 @@ +{ + "name": "LOVECOIN", + "type": "SOL", + "symbol": "LOVECOIN", + "decimals": 6, + "description": "Love. The simplest, yet most healing emotion one can feel", + "website": "https://www.infinitebackrooms.com/dreams/conversation-1733714055-scenario-terminal-videogames-txt", + "explorer": "https://solscan.io/token/6LDF727vvVi5YzisQ5XRr5Mu38sr8qttMe6MbvdHpump", + "id": "6LDF727vvVi5YzisQ5XRr5Mu38sr8qttMe6MbvdHpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/lovecoin_solana" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/lovecoin" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/6LDF727vvVi5YzisQ5XRr5Mu38sr8qttMe6MbvdHpump/logo.png b/blockchains/solana/assets/6LDF727vvVi5YzisQ5XRr5Mu38sr8qttMe6MbvdHpump/logo.png new file mode 100644 index 0000000000000..0dcd5b4c544ed Binary files /dev/null and b/blockchains/solana/assets/6LDF727vvVi5YzisQ5XRr5Mu38sr8qttMe6MbvdHpump/logo.png differ diff --git a/blockchains/solana/assets/6LX8BhMQ4Sy2otmAWj7Y5sKd9YTVVUgfMsBzT6B9W7ct/info.json b/blockchains/solana/assets/6LX8BhMQ4Sy2otmAWj7Y5sKd9YTVVUgfMsBzT6B9W7ct/info.json index f71f1feef60ae..af2092360aa2c 100644 --- a/blockchains/solana/assets/6LX8BhMQ4Sy2otmAWj7Y5sKd9YTVVUgfMsBzT6B9W7ct/info.json +++ b/blockchains/solana/assets/6LX8BhMQ4Sy2otmAWj7Y5sKd9YTVVUgfMsBzT6B9W7ct/info.json @@ -1,5 +1,5 @@ { - "name": "Frax Share (Portal)", + "name": "Frax (Portal)", "type": "SPL", "symbol": "FXS", "decimals": 8, diff --git a/blockchains/solana/assets/6LrY2g3dUsnZcJXjXw5EUd9LjnSEz8mA9TbKNEstNT7D/info.json b/blockchains/solana/assets/6LrY2g3dUsnZcJXjXw5EUd9LjnSEz8mA9TbKNEstNT7D/info.json new file mode 100644 index 0000000000000..78e77d1adf395 --- /dev/null +++ b/blockchains/solana/assets/6LrY2g3dUsnZcJXjXw5EUd9LjnSEz8mA9TbKNEstNT7D/info.json @@ -0,0 +1,26 @@ +{ + "name": "Unitree AI Robot DOg", + "type": "SOL", + "symbol": "UnitreeDOG", + "decimals": 2, + "description": "The Go2 robot dog, developed by Unitree Robotics, is an innovative quadruped robot equipped with a 4D ultra-wide-angle LiDAR for 360x90 hemispherical environmental perception and advanced motion control algorithms, enabling precise interaction and adaptability to complex terrains.", + "website": "https://unitreedog.xyz/", + "explorer": "https://solscan.io/token/6LrY2g3dUsnZcJXjXw5EUd9LjnSEz8mA9TbKNEstNT7D", + "id": "6LrY2g3dUsnZcJXjXw5EUd9LjnSEz8mA9TbKNEstNT7D", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/UnitreeDog" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/unitree-ai-robot-dog/" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/6LrY2g3dUsnZcJXjXw5EUd9LjnSEz8mA9TbKNEstNT7D/logo.png b/blockchains/solana/assets/6LrY2g3dUsnZcJXjXw5EUd9LjnSEz8mA9TbKNEstNT7D/logo.png new file mode 100644 index 0000000000000..335022cb6f173 Binary files /dev/null and b/blockchains/solana/assets/6LrY2g3dUsnZcJXjXw5EUd9LjnSEz8mA9TbKNEstNT7D/logo.png differ diff --git a/blockchains/solana/assets/6NUHnmB1vvM6byB2sCYAty6f9GGtvn1Yin6QoQimpump/info.json b/blockchains/solana/assets/6NUHnmB1vvM6byB2sCYAty6f9GGtvn1Yin6QoQimpump/info.json new file mode 100644 index 0000000000000..3af485fff0436 --- /dev/null +++ b/blockchains/solana/assets/6NUHnmB1vvM6byB2sCYAty6f9GGtvn1Yin6QoQimpump/info.json @@ -0,0 +1,14 @@ +{ + "name": "Protest Pikachu", + "type": "SPL", + "symbol": "PIKA", + "decimals": 6, + "website": "https://pump.fun/coin/6NUHnmB1vvM6byB2sCYAty6f9GGtvn1Yin6QoQimpump", + "description": "Been OG Running from the Ds", + "explorer": "https://explorer.solana.com/address/6NUHnmB1vvM6byB2sCYAty6f9GGtvn1Yin6QoQimpump", + "status": "active", + "id": "6NUHnmB1vvM6byB2sCYAty6f9GGtvn1Yin6QoQimpump", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/6NUHnmB1vvM6byB2sCYAty6f9GGtvn1Yin6QoQimpump/logo.png b/blockchains/solana/assets/6NUHnmB1vvM6byB2sCYAty6f9GGtvn1Yin6QoQimpump/logo.png new file mode 100644 index 0000000000000..3dfd541562c6b Binary files /dev/null and b/blockchains/solana/assets/6NUHnmB1vvM6byB2sCYAty6f9GGtvn1Yin6QoQimpump/logo.png differ diff --git a/blockchains/solana/assets/6NcdiK8B5KK2DzKvzvCfqi8EHaEqu48fyEzC8Mm9pump/info.json b/blockchains/solana/assets/6NcdiK8B5KK2DzKvzvCfqi8EHaEqu48fyEzC8Mm9pump/info.json new file mode 100644 index 0000000000000..0c9e62ba750c8 --- /dev/null +++ b/blockchains/solana/assets/6NcdiK8B5KK2DzKvzvCfqi8EHaEqu48fyEzC8Mm9pump/info.json @@ -0,0 +1,29 @@ +{ + "name": "STONKS", + "type": "SOL", + "symbol": "STONKS", + "decimals": 6, + "description": "STONKS is more than just another token - it’s a declaration of war against rug pulls, a revolution of collective awakening, and an experiment in the power of retail investor unity.", + "website": "https://mystonks.org/", + "explorer": "https://solscan.io/token/6NcdiK8B5KK2DzKvzvCfqi8EHaEqu48fyEzC8Mm9pump", + "id": "6NcdiK8B5KK2DzKvzvCfqi8EHaEqu48fyEzC8Mm9pump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/stonks_dm?s=11&t=ZGzrL8B9N7GpbA3YLFvU9A" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mystonks/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/stonks-4" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/6NcdiK8B5KK2DzKvzvCfqi8EHaEqu48fyEzC8Mm9pump/logo.png b/blockchains/solana/assets/6NcdiK8B5KK2DzKvzvCfqi8EHaEqu48fyEzC8Mm9pump/logo.png new file mode 100644 index 0000000000000..8714206d28f1f Binary files /dev/null and b/blockchains/solana/assets/6NcdiK8B5KK2DzKvzvCfqi8EHaEqu48fyEzC8Mm9pump/logo.png differ diff --git a/blockchains/solana/assets/6Qn2muot6pbTTWJ6F83zrpBQTFjb69FcmG1xbg64RoUD/info.json b/blockchains/solana/assets/6Qn2muot6pbTTWJ6F83zrpBQTFjb69FcmG1xbg64RoUD/info.json new file mode 100644 index 0000000000000..2d5c0e103847a --- /dev/null +++ b/blockchains/solana/assets/6Qn2muot6pbTTWJ6F83zrpBQTFjb69FcmG1xbg64RoUD/info.json @@ -0,0 +1,25 @@ +{ + "name": "WULFY", + "type": "SPL", + "symbol": "WULFY", + "decimals": 6, + "description": "In the bustling world of cryptocurrencies, where projects come and go like fleeting trends, $WULFY emerges as a shining beacon of originality and quality. Built on the Solana network, $WULFY isn't just another meme token; it's a movement, a story, and an opportunity for everyone to connect with their inner 'Wulf in sheep's clothing.'", + "website": "https://wulfy.me/", + "explorer": "https://solscan.io/token/6Qn2muot6pbTTWJ6F83zrpBQTFjb69FcmG1xbg64RoUD", + "id": "6Qn2muot6pbTTWJ6F83zrpBQTFjb69FcmG1xbg64RoUD", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/WULFY_SOL" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wulfy/" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/6Qn2muot6pbTTWJ6F83zrpBQTFjb69FcmG1xbg64RoUD/logo.png b/blockchains/solana/assets/6Qn2muot6pbTTWJ6F83zrpBQTFjb69FcmG1xbg64RoUD/logo.png new file mode 100644 index 0000000000000..381ac2818db56 Binary files /dev/null and b/blockchains/solana/assets/6Qn2muot6pbTTWJ6F83zrpBQTFjb69FcmG1xbg64RoUD/logo.png differ diff --git a/blockchains/solana/assets/6SUryVEuDz5hqAxab6QrGfbzWvjN8dC7m29ezSvDpump/info.json b/blockchains/solana/assets/6SUryVEuDz5hqAxab6QrGfbzWvjN8dC7m29ezSvDpump/info.json new file mode 100644 index 0000000000000..aec9c73158dd8 --- /dev/null +++ b/blockchains/solana/assets/6SUryVEuDz5hqAxab6QrGfbzWvjN8dC7m29ezSvDpump/info.json @@ -0,0 +1,17 @@ +{ + "name": "Jason Derulo", + "type": "SPL", + "symbol": "JASON", + "decimals": 6, + "website": "https://jasonderulosol.com/", + "description": "The Official Jason Derulo Memecoin", + "explorer": "https://solscan.io/token/6SUryVEuDz5hqAxab6QrGfbzWvjN8dC7m29ezSvDpump", + "status": "active", + "id": "6SUryVEuDz5hqAxab6QrGfbzWvjN8dC7m29ezSvDpump", + "links": [ + { + "name": "x", + "url": "https://x.com/jasonderulo" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/6SUryVEuDz5hqAxab6QrGfbzWvjN8dC7m29ezSvDpump/logo.png b/blockchains/solana/assets/6SUryVEuDz5hqAxab6QrGfbzWvjN8dC7m29ezSvDpump/logo.png new file mode 100644 index 0000000000000..aaa061d17d52e Binary files /dev/null and b/blockchains/solana/assets/6SUryVEuDz5hqAxab6QrGfbzWvjN8dC7m29ezSvDpump/logo.png differ diff --git a/blockchains/solana/assets/6ZrYhkwvoYE4QqzpdzJ7htEHwT2u2546EkTNJ7qepump/info.json b/blockchains/solana/assets/6ZrYhkwvoYE4QqzpdzJ7htEHwT2u2546EkTNJ7qepump/info.json new file mode 100644 index 0000000000000..33650b9285b84 --- /dev/null +++ b/blockchains/solana/assets/6ZrYhkwvoYE4QqzpdzJ7htEHwT2u2546EkTNJ7qepump/info.json @@ -0,0 +1,21 @@ +{ + "name": "nomnom", + "symbol": "nomnom", + "type": "SPL", + "decimals": 6, + "description": "nomnom is a hungry hamster on the Solana network. This hamster is SO hungry that any-ting is on the menu!", + "website": "https://www.nomnomsol.com/", + "explorer": "https://solscan.io/token/6ZrYhkwvoYE4QqzpdzJ7htEHwT2u2546EkTNJ7qepump", + "status": "active", + "id": "6ZrYhkwvoYE4QqzpdzJ7htEHwT2u2546EkTNJ7qepump", + "links": [ + { + "name": "x", + "url": "https://x.com/nomnom_solana" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nomnom" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/6ZrYhkwvoYE4QqzpdzJ7htEHwT2u2546EkTNJ7qepump/logo.png b/blockchains/solana/assets/6ZrYhkwvoYE4QqzpdzJ7htEHwT2u2546EkTNJ7qepump/logo.png new file mode 100644 index 0000000000000..2a4102cae6409 Binary files /dev/null and b/blockchains/solana/assets/6ZrYhkwvoYE4QqzpdzJ7htEHwT2u2546EkTNJ7qepump/logo.png differ diff --git a/blockchains/solana/assets/6a91TSBUYkmqyHr6KdFSrxtune4fR2qqSHuqG4TQpump/info.json b/blockchains/solana/assets/6a91TSBUYkmqyHr6KdFSrxtune4fR2qqSHuqG4TQpump/info.json new file mode 100644 index 0000000000000..f9a0a9e7ccf34 --- /dev/null +++ b/blockchains/solana/assets/6a91TSBUYkmqyHr6KdFSrxtune4fR2qqSHuqG4TQpump/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE EURC", + "type": "SPL", + "symbol": "FAKE EURC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/6a91TSBUYkmqyHr6KdFSrxtune4fR2qqSHuqG4TQpump", + "explorer": "https://solscan.io/token/6a91TSBUYkmqyHr6KdFSrxtune4fR2qqSHuqG4TQpump", + "status": "spam", + "id": "6a91TSBUYkmqyHr6KdFSrxtune4fR2qqSHuqG4TQpump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/6d5zHW5B8RkGKd51Lpb9RqFQSqDudr9GJgZ1SgQZpump/info.json b/blockchains/solana/assets/6d5zHW5B8RkGKd51Lpb9RqFQSqDudr9GJgZ1SgQZpump/info.json new file mode 100644 index 0000000000000..b0ecbb1306c16 --- /dev/null +++ b/blockchains/solana/assets/6d5zHW5B8RkGKd51Lpb9RqFQSqDudr9GJgZ1SgQZpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Autonomous Virtual Beings", + "type": "SPL", + "symbol": "AVB", + "decimals": 6, + "website": "https://www.avbeings.ai/", + "description": "$AVB is an ideology that AI that AI should be owned by themselves fully decentralized eventually meaning we are investing in the AI as an entity itself rather than a LLM.", + "explorer": "https://solscan.io/token/6d5zHW5B8RkGKd51Lpb9RqFQSqDudr9GJgZ1SgQZpump", + "status": "active", + "id": "6d5zHW5B8RkGKd51Lpb9RqFQSqDudr9GJgZ1SgQZpump", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/autonomous-virtual-beings" + }, + { + "name": "x", + "url": "https://x.com/AVbeingsCTO" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/6d5zHW5B8RkGKd51Lpb9RqFQSqDudr9GJgZ1SgQZpump/logo.png b/blockchains/solana/assets/6d5zHW5B8RkGKd51Lpb9RqFQSqDudr9GJgZ1SgQZpump/logo.png new file mode 100644 index 0000000000000..2ff2ea8e751a6 Binary files /dev/null and b/blockchains/solana/assets/6d5zHW5B8RkGKd51Lpb9RqFQSqDudr9GJgZ1SgQZpump/logo.png differ diff --git a/blockchains/solana/assets/6dKCoWjpj5MFU5gWDEFdpUUeBasBLK3wLEwhUzQPAa1e/info.json b/blockchains/solana/assets/6dKCoWjpj5MFU5gWDEFdpUUeBasBLK3wLEwhUzQPAa1e/info.json new file mode 100644 index 0000000000000..d2766a7e069ac --- /dev/null +++ b/blockchains/solana/assets/6dKCoWjpj5MFU5gWDEFdpUUeBasBLK3wLEwhUzQPAa1e/info.json @@ -0,0 +1,21 @@ +{ + "name": "Chintai", + "website": "https://chintai.io", + "description": "The CHEX token is the utility token of the Chintai Network. Its primary use is for resource handling on the network and for helping to increase liquidity on the platform through a variety of incentive methods.", + "explorer": "https://solscan.io/token/6dKCoWjpj5MFU5gWDEFdpUUeBasBLK3wLEwhUzQPAa1e", + "type": "SPL", + "symbol": "CHEX", + "decimals": 8, + "status": "active", + "id": "6dKCoWjpj5MFU5gWDEFdpUUeBasBLK3wLEwhUzQPAa1e", + "links": [ + { + "name": "x", + "url": "https://x.com/ChintaiNexus" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chex-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/6dKCoWjpj5MFU5gWDEFdpUUeBasBLK3wLEwhUzQPAa1e/logo.png b/blockchains/solana/assets/6dKCoWjpj5MFU5gWDEFdpUUeBasBLK3wLEwhUzQPAa1e/logo.png new file mode 100644 index 0000000000000..ec929b31c9e88 Binary files /dev/null and b/blockchains/solana/assets/6dKCoWjpj5MFU5gWDEFdpUUeBasBLK3wLEwhUzQPAa1e/logo.png differ diff --git a/blockchains/solana/assets/6dQDNoK1qMBbeVVmzbVW3ryRGoXzmvEvBvjWb9xpjmAW/info.json b/blockchains/solana/assets/6dQDNoK1qMBbeVVmzbVW3ryRGoXzmvEvBvjWb9xpjmAW/info.json new file mode 100644 index 0000000000000..bd2b80a8d61b8 --- /dev/null +++ b/blockchains/solana/assets/6dQDNoK1qMBbeVVmzbVW3ryRGoXzmvEvBvjWb9xpjmAW/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE EURC", + "type": "SPL", + "symbol": "FAKE EURC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/6dQDNoK1qMBbeVVmzbVW3ryRGoXzmvEvBvjWb9xpjmAW", + "explorer": "https://solscan.io/token/6dQDNoK1qMBbeVVmzbVW3ryRGoXzmvEvBvjWb9xpjmAW", + "status": "spam", + "id": "6dQDNoK1qMBbeVVmzbVW3ryRGoXzmvEvBvjWb9xpjmAW" +} \ No newline at end of file diff --git a/blockchains/solana/assets/6dk9H7RD5m8JtRuUErNztwhBbr5ynzWvzPTusLpxpump/info.json b/blockchains/solana/assets/6dk9H7RD5m8JtRuUErNztwhBbr5ynzWvzPTusLpxpump/info.json new file mode 100644 index 0000000000000..09c07b1cdcbfb --- /dev/null +++ b/blockchains/solana/assets/6dk9H7RD5m8JtRuUErNztwhBbr5ynzWvzPTusLpxpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Magaverse", + "website": "https://mvrs.wtf/", + "description": "The MVRS community and a dedicated team stepped in to take over and rebuild the project, transforming it into a token that emphasizes resilience, unity, and collective action.", + "explorer": "https://solscan.io/token/6dk9H7RD5m8JtRuUErNztwhBbr5ynzWvzPTusLpxpump", + "type": "SPL", + "symbol": "MVRS", + "decimals": 6, + "status": "active", + "id": "6dk9H7RD5m8JtRuUErNztwhBbr5ynzWvzPTusLpxpump", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/magaverse" + }, + { + "name": "x", + "url": "https://x.com/mvrs" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/6dk9H7RD5m8JtRuUErNztwhBbr5ynzWvzPTusLpxpump/logo.png b/blockchains/solana/assets/6dk9H7RD5m8JtRuUErNztwhBbr5ynzWvzPTusLpxpump/logo.png new file mode 100644 index 0000000000000..5d1a20f9c1ec0 Binary files /dev/null and b/blockchains/solana/assets/6dk9H7RD5m8JtRuUErNztwhBbr5ynzWvzPTusLpxpump/logo.png differ diff --git a/blockchains/solana/assets/6f4N1riapy2PzJR9ZE8kR9hTUrYNhQFZCF9rXu1QyVj3/info.json b/blockchains/solana/assets/6f4N1riapy2PzJR9ZE8kR9hTUrYNhQFZCF9rXu1QyVj3/info.json new file mode 100644 index 0000000000000..1bc4703ac8e1c --- /dev/null +++ b/blockchains/solana/assets/6f4N1riapy2PzJR9ZE8kR9hTUrYNhQFZCF9rXu1QyVj3/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Τeth℮r", + "type": "SPL", + "symbol": "FAKE USⅮΤ", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/6f4N1riapy2PzJR9ZE8kR9hTUrYNhQFZCF9rXu1QyVj3", + "explorer": "https://solscan.io/token/6f4N1riapy2PzJR9ZE8kR9hTUrYNhQFZCF9rXu1QyVj3", + "status": "spam", + "id": "6f4N1riapy2PzJR9ZE8kR9hTUrYNhQFZCF9rXu1QyVj3" +} \ No newline at end of file diff --git a/blockchains/solana/assets/6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA/info.json b/blockchains/solana/assets/6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA/info.json new file mode 100644 index 0000000000000..fce71a9516a64 --- /dev/null +++ b/blockchains/solana/assets/6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA/info.json @@ -0,0 +1,40 @@ +{ + "name": "Basket", + "type": "SPL", + "symbol": "BSKT", + "decimals": 5, + "website": "https://www.bskt.fi/", + "description": "BSKT tracks the top assets across the crypto ecosystem, eliminating the need to track and analyse individual coins", + "explorer": "https://solscan.io/token/6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA", + "status": "active", + "id": "6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA", + "links": [ + { + "name": "x", + "url": "https://x.com/bsktfi" + }, + { + "name": "github", + "url": "https://github.com/bsktfi" + }, + { + "name": "telegram", + "url": "https://t.me/BSKT_FI" + }, + { + "name": "discord", + "url": "https://discord.com/bskt" + }, + { + "name": "whitepaper", + "url": "https://www.bskt.fi/bskt-whitepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/basket" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA/logo.png b/blockchains/solana/assets/6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA/logo.png new file mode 100644 index 0000000000000..87def3f44c00b Binary files /dev/null and b/blockchains/solana/assets/6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA/logo.png differ diff --git a/blockchains/solana/assets/6kSFM8teu4k9yvLGS1QtpPG33Z7xEmJ8iaRv6dEijc89/info.json b/blockchains/solana/assets/6kSFM8teu4k9yvLGS1QtpPG33Z7xEmJ8iaRv6dEijc89/info.json new file mode 100644 index 0000000000000..34d774aa5c84d --- /dev/null +++ b/blockchains/solana/assets/6kSFM8teu4k9yvLGS1QtpPG33Z7xEmJ8iaRv6dEijc89/info.json @@ -0,0 +1,17 @@ +{ + "name": "The Simpsons", + "website": "https://thesimpsonsdonuts.com", + "description": "Here in the blockchain-enabled Springfield, $DONUTS tokens and NFTs coexist, offering both utility and collectability in a world where crypto and cartoons collide.", + "explorer": "https://solscan.io/token/6kSFM8teu4k9yvLGS1QtpPG33Z7xEmJ8iaRv6dEijc89", + "type": "SPL", + "symbol": "DONUTS", + "decimals": 9, + "status": "active", + "id": "6kSFM8teu4k9yvLGS1QtpPG33Z7xEmJ8iaRv6dEijc89", + "links": [ + { + "name": "x", + "url": "https://x.com/GatsbyInuERC" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/6kSFM8teu4k9yvLGS1QtpPG33Z7xEmJ8iaRv6dEijc89/logo.png b/blockchains/solana/assets/6kSFM8teu4k9yvLGS1QtpPG33Z7xEmJ8iaRv6dEijc89/logo.png new file mode 100644 index 0000000000000..24b906797ea23 Binary files /dev/null and b/blockchains/solana/assets/6kSFM8teu4k9yvLGS1QtpPG33Z7xEmJ8iaRv6dEijc89/logo.png differ diff --git a/blockchains/solana/assets/6m2SeubvmKc1MGqGxQToy9i7tdbkxhnMxqgEhtgFpump/info.json b/blockchains/solana/assets/6m2SeubvmKc1MGqGxQToy9i7tdbkxhnMxqgEhtgFpump/info.json new file mode 100644 index 0000000000000..82e542fe5c504 --- /dev/null +++ b/blockchains/solana/assets/6m2SeubvmKc1MGqGxQToy9i7tdbkxhnMxqgEhtgFpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "The Baby Cheetah", + "website": "https://zolana.world/", + "description": "Meet the cutest baby cheetah on SOLANA", + "explorer": "https://solscan.io/token/6m2SeubvmKc1MGqGxQToy9i7tdbkxhnMxqgEhtgFpump", + "type": "SPL", + "symbol": "ZOLA", + "decimals": 6, + "status": "active", + "id": "6m2SeubvmKc1MGqGxQToy9i7tdbkxhnMxqgEhtgFpump", + "links": [ + { + "name": "x", + "url": "https://x.com/zolaonsolana/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/the-baby-cheetah" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/6m2SeubvmKc1MGqGxQToy9i7tdbkxhnMxqgEhtgFpump/logo.png b/blockchains/solana/assets/6m2SeubvmKc1MGqGxQToy9i7tdbkxhnMxqgEhtgFpump/logo.png new file mode 100644 index 0000000000000..2ea9adc769ad8 Binary files /dev/null and b/blockchains/solana/assets/6m2SeubvmKc1MGqGxQToy9i7tdbkxhnMxqgEhtgFpump/logo.png differ diff --git a/blockchains/solana/assets/6n7Janary9fqzxKaJVrhL9TG2F61VbAtwUMu1YZscaQS/info.json b/blockchains/solana/assets/6n7Janary9fqzxKaJVrhL9TG2F61VbAtwUMu1YZscaQS/info.json new file mode 100644 index 0000000000000..1d2a0b75fb658 --- /dev/null +++ b/blockchains/solana/assets/6n7Janary9fqzxKaJVrhL9TG2F61VbAtwUMu1YZscaQS/info.json @@ -0,0 +1,17 @@ +{ + "name": "Ansem's Cat", + "website": "https://hobbescat.com", + "description": "Hi I'm Ansems Cat Hobbes. Ready to take over Solana and become the #1 Cat Coin. Will you join us?", + "explorer": "https://solscan.io/token/6n7Janary9fqzxKaJVrhL9TG2F61VbAtwUMu1YZscaQS", + "type": "SPL", + "symbol": "Hobbes", + "decimals": 6, + "status": "active", + "id": "6n7Janary9fqzxKaJVrhL9TG2F61VbAtwUMu1YZscaQS", + "links": [ + { + "name": "x", + "url": "https://x.com/HobbesOnSolana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/6n7Janary9fqzxKaJVrhL9TG2F61VbAtwUMu1YZscaQS/logo.png b/blockchains/solana/assets/6n7Janary9fqzxKaJVrhL9TG2F61VbAtwUMu1YZscaQS/logo.png new file mode 100644 index 0000000000000..10d42af017b3e Binary files /dev/null and b/blockchains/solana/assets/6n7Janary9fqzxKaJVrhL9TG2F61VbAtwUMu1YZscaQS/logo.png differ diff --git a/blockchains/solana/assets/6ogzHhzdrQr9Pgv6hZ2MNze7UrzBMAFyBBWUYp1Fhitx/info.json b/blockchains/solana/assets/6ogzHhzdrQr9Pgv6hZ2MNze7UrzBMAFyBBWUYp1Fhitx/info.json new file mode 100644 index 0000000000000..e57998cb95ed5 --- /dev/null +++ b/blockchains/solana/assets/6ogzHhzdrQr9Pgv6hZ2MNze7UrzBMAFyBBWUYp1Fhitx/info.json @@ -0,0 +1,21 @@ +{ + "name": "RETARDIO", + "type": "SPL", + "symbol": "RETARDIO", + "decimals": 6, + "website": "https://www.retardio.xyz/", + "description": "Retardio pulsates as the vibrant heartbeat of an untamed, liberated enclave thriving within the memes of Solana.", + "explorer": "https://solscan.io/token/6ogzHhzdrQr9Pgv6hZ2MNze7UrzBMAFyBBWUYp1Fhitx", + "status": "active", + "id": "6ogzHhzdrQr9Pgv6hZ2MNze7UrzBMAFyBBWUYp1Fhitx", + "links": [ + { + "name": "x", + "url": "https://x.com/retardiosolana" + }, + { + "name": "telegram", + "url": "https://t.me/retardiosol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/6ogzHhzdrQr9Pgv6hZ2MNze7UrzBMAFyBBWUYp1Fhitx/logo.png b/blockchains/solana/assets/6ogzHhzdrQr9Pgv6hZ2MNze7UrzBMAFyBBWUYp1Fhitx/logo.png new file mode 100644 index 0000000000000..c8820c4aed372 Binary files /dev/null and b/blockchains/solana/assets/6ogzHhzdrQr9Pgv6hZ2MNze7UrzBMAFyBBWUYp1Fhitx/logo.png differ diff --git a/blockchains/solana/assets/6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN/info.json b/blockchains/solana/assets/6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN/info.json new file mode 100644 index 0000000000000..1511e557da704 --- /dev/null +++ b/blockchains/solana/assets/6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN/info.json @@ -0,0 +1,24 @@ +{ + "name": "OFFICIAL TRUMP", + "type": "SPL", + "symbol": "TRUMP", + "decimals": 6, + "website": "https://gettrumpmemes.com/", + "description": "$TRUMP are now freely tradeable on the blockchain.", + "explorer": "https://solscan.io/token/6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN", + "status": "active", + "id": "6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN", + "links": [ + { + "name": "x", + "url": "https://x.com/GetTrumpMemes" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/official-trump/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN/logo.png b/blockchains/solana/assets/6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN/logo.png new file mode 100644 index 0000000000000..299e2b90bad5f Binary files /dev/null and b/blockchains/solana/assets/6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN/logo.png differ diff --git a/blockchains/solana/assets/6tq8614cfS1QoRDxgzScvhcVGCEwkFAFzUcmjuybiAwh/info.json b/blockchains/solana/assets/6tq8614cfS1QoRDxgzScvhcVGCEwkFAFzUcmjuybiAwh/info.json new file mode 100644 index 0000000000000..6a327bd65611c --- /dev/null +++ b/blockchains/solana/assets/6tq8614cfS1QoRDxgzScvhcVGCEwkFAFzUcmjuybiAwh/info.json @@ -0,0 +1,26 @@ +{ + "name": "Alibaba AI Agent", + "type": "SOL", + "symbol": "AlibabaAI", + "decimals": 2, + "description": "With Alibaba AI agent, fans can own a piece of Alibaba AI agent history and collect unique digital assets that showcase the beloved meme. From rare Alibaba AI agent variations to meme-inspired artworks, the Alibaba AI agent collection offers something for every Alibaba AI agent enthusiast.", + "website": "https://alibabaai.vip/", + "explorer": "https://solscan.io/token/6tq8614cfS1QoRDxgzScvhcVGCEwkFAFzUcmjuybiAwh", + "id": "6tq8614cfS1QoRDxgzScvhcVGCEwkFAFzUcmjuybiAwh", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Alibabaicto" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/alibaba-ai-agent/" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/6tq8614cfS1QoRDxgzScvhcVGCEwkFAFzUcmjuybiAwh/logo.png b/blockchains/solana/assets/6tq8614cfS1QoRDxgzScvhcVGCEwkFAFzUcmjuybiAwh/logo.png new file mode 100644 index 0000000000000..688590951b2e6 Binary files /dev/null and b/blockchains/solana/assets/6tq8614cfS1QoRDxgzScvhcVGCEwkFAFzUcmjuybiAwh/logo.png differ diff --git a/blockchains/solana/assets/6uAqREHPKoSxMgpsaWBVUSoCjYhAeTnDMYLvKAjspump/info.json b/blockchains/solana/assets/6uAqREHPKoSxMgpsaWBVUSoCjYhAeTnDMYLvKAjspump/info.json new file mode 100644 index 0000000000000..dfe9eda5b54f1 --- /dev/null +++ b/blockchains/solana/assets/6uAqREHPKoSxMgpsaWBVUSoCjYhAeTnDMYLvKAjspump/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Euro Stablecoin", + "type": "SPL", + "symbol": "FAKE EURC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/6uAqREHPKoSxMgpsaWBVUSoCjYhAeTnDMYLvKAjspump", + "explorer": "https://solscan.io/token/6uAqREHPKoSxMgpsaWBVUSoCjYhAeTnDMYLvKAjspump", + "status": "spam", + "id": "6uAqREHPKoSxMgpsaWBVUSoCjYhAeTnDMYLvKAjspump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/74SBV4zDXxTRgv1pEMoECskKBkZHc2yGPnc7GYVepump/info.json b/blockchains/solana/assets/74SBV4zDXxTRgv1pEMoECskKBkZHc2yGPnc7GYVepump/info.json new file mode 100644 index 0000000000000..77845836a4267 --- /dev/null +++ b/blockchains/solana/assets/74SBV4zDXxTRgv1pEMoECskKBkZHc2yGPnc7GYVepump/info.json @@ -0,0 +1,21 @@ +{ + "name": "swarms", + "website": "https://swarms.world/", + "description": "Empowering the Agent Economy with $swarms", + "explorer": "https://solscan.io/token/74SBV4zDXxTRgv1pEMoECskKBkZHc2yGPnc7GYVepump", + "type": "SPL", + "symbol": "swarms", + "decimals": 6, + "status": "active", + "id": "74SBV4zDXxTRgv1pEMoECskKBkZHc2yGPnc7GYVepump", + "links": [ + { + "name": "x", + "url": "https://x.com/swarms_corp" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/swarms/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/74SBV4zDXxTRgv1pEMoECskKBkZHc2yGPnc7GYVepump/logo.png b/blockchains/solana/assets/74SBV4zDXxTRgv1pEMoECskKBkZHc2yGPnc7GYVepump/logo.png new file mode 100644 index 0000000000000..3584edcd3f684 Binary files /dev/null and b/blockchains/solana/assets/74SBV4zDXxTRgv1pEMoECskKBkZHc2yGPnc7GYVepump/logo.png differ diff --git a/blockchains/solana/assets/75ncuwouFAcCsBUqFRyc83BxkYnVyvepwhrbvYQSPiFi/info.json b/blockchains/solana/assets/75ncuwouFAcCsBUqFRyc83BxkYnVyvepwhrbvYQSPiFi/info.json new file mode 100644 index 0000000000000..f0d8c60c4d967 --- /dev/null +++ b/blockchains/solana/assets/75ncuwouFAcCsBUqFRyc83BxkYnVyvepwhrbvYQSPiFi/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT Βіtсօіn", + "type": "SPL", + "symbol": "HONEYPOT ΒΤⅭ", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/75ncuwouFAcCsBUqFRyc83BxkYnVyvepwhrbvYQSPiFi", + "explorer": "https://solscan.io/token/75ncuwouFAcCsBUqFRyc83BxkYnVyvepwhrbvYQSPiFi", + "status": "spam", + "id": "75ncuwouFAcCsBUqFRyc83BxkYnVyvepwhrbvYQSPiFi" +} \ No newline at end of file diff --git a/blockchains/solana/assets/76PsEyML7UV9uiBDWMdG3itRRuupDuRs6nNpjNBpump/info.json b/blockchains/solana/assets/76PsEyML7UV9uiBDWMdG3itRRuupDuRs6nNpjNBpump/info.json new file mode 100644 index 0000000000000..62c700d17120a --- /dev/null +++ b/blockchains/solana/assets/76PsEyML7UV9uiBDWMdG3itRRuupDuRs6nNpjNBpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Project Plutus", + "symbol": "PPCOIN", + "decimals": 6, + "type": "SPL", + "website": "https://www.projectplutus.ai/", + "description": "Project Plutus is invite only", + "explorer": "https://solscan.io/token/76PsEyML7UV9uiBDWMdG3itRRuupDuRs6nNpjNBpump", + "status": "active", + "id": "76PsEyML7UV9uiBDWMdG3itRRuupDuRs6nNpjNBpump", + "links": [ + { + "name": "x", + "url": "https://x.com/ProjectPlutus_" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/project-plutus-ai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/76PsEyML7UV9uiBDWMdG3itRRuupDuRs6nNpjNBpump/logo.png b/blockchains/solana/assets/76PsEyML7UV9uiBDWMdG3itRRuupDuRs6nNpjNBpump/logo.png new file mode 100644 index 0000000000000..acd877a7582b1 Binary files /dev/null and b/blockchains/solana/assets/76PsEyML7UV9uiBDWMdG3itRRuupDuRs6nNpjNBpump/logo.png differ diff --git a/blockchains/solana/assets/76VxJbMFoCXBcn2rqPQX2UsUfpupq2gVwGSq5LyYMhr2/info.json b/blockchains/solana/assets/76VxJbMFoCXBcn2rqPQX2UsUfpupq2gVwGSq5LyYMhr2/info.json new file mode 100644 index 0000000000000..bf46a5af84675 --- /dev/null +++ b/blockchains/solana/assets/76VxJbMFoCXBcn2rqPQX2UsUfpupq2gVwGSq5LyYMhr2/info.json @@ -0,0 +1,21 @@ +{ + "name": "Gaimin Token (Wormhole)", + "type": "SPL", + "symbol": "GMRX", + "decimals": 8, + "website": "https://www.gaimin.io/", + "description": "The GMRX token is a utility token for exclusive use on the GAIMIN PC gaming platform, to enhance your gaming experience, have more fun in our Metaverse, create and own your own gaming NFTs and in-game assets, and more.", + "explorer": "https://solscan.io/token/76VxJbMFoCXBcn2rqPQX2UsUfpupq2gVwGSq5LyYMhr2", + "status": "active", + "id": "76VxJbMFoCXBcn2rqPQX2UsUfpupq2gVwGSq5LyYMhr2", + "links": [ + { + "name": "x", + "url": "https://x.com/GaiminIo" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gaimin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/76VxJbMFoCXBcn2rqPQX2UsUfpupq2gVwGSq5LyYMhr2/logo.png b/blockchains/solana/assets/76VxJbMFoCXBcn2rqPQX2UsUfpupq2gVwGSq5LyYMhr2/logo.png new file mode 100644 index 0000000000000..6546dcaca0354 Binary files /dev/null and b/blockchains/solana/assets/76VxJbMFoCXBcn2rqPQX2UsUfpupq2gVwGSq5LyYMhr2/logo.png differ diff --git a/blockchains/solana/assets/79F32BvHBE49gPsvypYTGzcpWGvt66mgvenQow3mJjXu/info.json b/blockchains/solana/assets/79F32BvHBE49gPsvypYTGzcpWGvt66mgvenQow3mJjXu/info.json new file mode 100644 index 0000000000000..9889f9b5f06c0 --- /dev/null +++ b/blockchains/solana/assets/79F32BvHBE49gPsvypYTGzcpWGvt66mgvenQow3mJjXu/info.json @@ -0,0 +1,17 @@ +{ + "name": "CorgiAI", + "type": "SPL", + "symbol": "CORGIAI", + "decimals": 9, + "website": "https://corgiai.xyz/", + "description": "$CORGIAI is the core token used within the CorgiAI ecosystem.", + "explorer": "https://solscan.io/token/79F32BvHBE49gPsvypYTGzcpWGvt66mgvenQow3mJjXu", + "status": "active", + "id": "79F32BvHBE49gPsvypYTGzcpWGvt66mgvenQow3mJjXu", + "links": [ + { + "name": "x", + "url": "https://x.com/corgiaiclub" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/79F32BvHBE49gPsvypYTGzcpWGvt66mgvenQow3mJjXu/logo.png b/blockchains/solana/assets/79F32BvHBE49gPsvypYTGzcpWGvt66mgvenQow3mJjXu/logo.png new file mode 100644 index 0000000000000..e3f1fa3cafff7 Binary files /dev/null and b/blockchains/solana/assets/79F32BvHBE49gPsvypYTGzcpWGvt66mgvenQow3mJjXu/logo.png differ diff --git a/blockchains/solana/assets/7BgBvyjrZX1YKz4oh9mjb8ZScatkkwb8DzFx7LoiVkM3/info.json b/blockchains/solana/assets/7BgBvyjrZX1YKz4oh9mjb8ZScatkkwb8DzFx7LoiVkM3/info.json new file mode 100644 index 0000000000000..efca948632907 --- /dev/null +++ b/blockchains/solana/assets/7BgBvyjrZX1YKz4oh9mjb8ZScatkkwb8DzFx7LoiVkM3/info.json @@ -0,0 +1,24 @@ +{ + "name": "SLERF", + "type": "SPL", + "symbol": "SLERF", + "decimals": 9, + "website": "https://slerf.wtf/", + "description": "SLERF RAID GENERATOR", + "explorer": "https://solscan.io/token/7BgBvyjrZX1YKz4oh9mjb8ZScatkkwb8DzFx7LoiVkM3", + "status": "active", + "id": "7BgBvyjrZX1YKz4oh9mjb8ZScatkkwb8DzFx7LoiVkM3", + "links": [ + { + "name": "x", + "url": "https://x.com/slerfsol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/slerf/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7BgBvyjrZX1YKz4oh9mjb8ZScatkkwb8DzFx7LoiVkM3/logo.png b/blockchains/solana/assets/7BgBvyjrZX1YKz4oh9mjb8ZScatkkwb8DzFx7LoiVkM3/logo.png new file mode 100644 index 0000000000000..47b754cb4a80d Binary files /dev/null and b/blockchains/solana/assets/7BgBvyjrZX1YKz4oh9mjb8ZScatkkwb8DzFx7LoiVkM3/logo.png differ diff --git a/blockchains/solana/assets/7D1iYWfhw2cr9yBZBFE6nZaaSUvXHqG5FizFFEZwpump/info.json b/blockchains/solana/assets/7D1iYWfhw2cr9yBZBFE6nZaaSUvXHqG5FizFFEZwpump/info.json new file mode 100644 index 0000000000000..836962419e3d0 --- /dev/null +++ b/blockchains/solana/assets/7D1iYWfhw2cr9yBZBFE6nZaaSUvXHqG5FizFFEZwpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "yesnoerror", + "type": "SPL", + "symbol": "YNE", + "decimals": 6, + "website": "https://yesnoerror.com/", + "description": "An autonomous DeSci AI agent powered by OpenAI's o1 model, analyzing scientific papers for mathematical errors and discrepancies", + "explorer": "https://solscan.io/token/7D1iYWfhw2cr9yBZBFE6nZaaSUvXHqG5FizFFEZwpump", + "status": "active", + "id": "7D1iYWfhw2cr9yBZBFE6nZaaSUvXHqG5FizFFEZwpump", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/yne" + }, + { + "name": "x", + "url": "https://x.com/yesnoerror" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7D1iYWfhw2cr9yBZBFE6nZaaSUvXHqG5FizFFEZwpump/logo.png b/blockchains/solana/assets/7D1iYWfhw2cr9yBZBFE6nZaaSUvXHqG5FizFFEZwpump/logo.png new file mode 100644 index 0000000000000..52051cc4e5bd3 Binary files /dev/null and b/blockchains/solana/assets/7D1iYWfhw2cr9yBZBFE6nZaaSUvXHqG5FizFFEZwpump/logo.png differ diff --git a/blockchains/solana/assets/7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr/info.json b/blockchains/solana/assets/7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr/info.json new file mode 100644 index 0000000000000..8659ebe02fd2f --- /dev/null +++ b/blockchains/solana/assets/7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr/info.json @@ -0,0 +1,21 @@ +{ + "name": "POPCAT", + "website": "https://www.popcatsolana.xyz/", + "description": "Popcat is an Internet meme originating in October 2020, in a series of videos which showcase two images of a domestic short-haired cat named 'Oatmeal'", + "explorer": "https://solscan.io/token/7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr", + "type": "SPL", + "symbol": "POPCAT", + "decimals": 9, + "status": "active", + "id": "7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr", + "links": [ + { + "name": "x", + "url": "https://x.com/popcatsolana" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/popcat" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr/logo.png b/blockchains/solana/assets/7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr/logo.png new file mode 100644 index 0000000000000..6db807e63d23c Binary files /dev/null and b/blockchains/solana/assets/7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr/logo.png differ diff --git a/blockchains/solana/assets/7GkBLWaCutiFgw1JT4J9jekNssJKVGnCQxdfxDM9pump/info.json b/blockchains/solana/assets/7GkBLWaCutiFgw1JT4J9jekNssJKVGnCQxdfxDM9pump/info.json new file mode 100644 index 0000000000000..d2d3a092e5493 --- /dev/null +++ b/blockchains/solana/assets/7GkBLWaCutiFgw1JT4J9jekNssJKVGnCQxdfxDM9pump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Kakarot", + "website": "https://www.kakarotsolana.com/", + "description": "Join the ultimate journey with Goku as we explore the origins, transformations, and achievements of the legendary Saiyan warrior.", + "explorer": "https://solscan.io/token/7GkBLWaCutiFgw1JT4J9jekNssJKVGnCQxdfxDM9pump", + "type": "SPL", + "symbol": "Kakarot", + "decimals": 6, + "status": "active", + "id": "7GkBLWaCutiFgw1JT4J9jekNssJKVGnCQxdfxDM9pump", + "links": [ + { + "name": "x", + "url": "https://x.com/kakarot_solana" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kakarot/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7GkBLWaCutiFgw1JT4J9jekNssJKVGnCQxdfxDM9pump/logo.png b/blockchains/solana/assets/7GkBLWaCutiFgw1JT4J9jekNssJKVGnCQxdfxDM9pump/logo.png new file mode 100644 index 0000000000000..7f67bf988f9de Binary files /dev/null and b/blockchains/solana/assets/7GkBLWaCutiFgw1JT4J9jekNssJKVGnCQxdfxDM9pump/logo.png differ diff --git a/blockchains/solana/assets/7HahXZBKzQZ7VBk1BTwXVeJu3Y1AQagYa2gKb9bB8Buv/info.json b/blockchains/solana/assets/7HahXZBKzQZ7VBk1BTwXVeJu3Y1AQagYa2gKb9bB8Buv/info.json new file mode 100644 index 0000000000000..a60f2448c6cd3 --- /dev/null +++ b/blockchains/solana/assets/7HahXZBKzQZ7VBk1BTwXVeJu3Y1AQagYa2gKb9bB8Buv/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE UЅⅮϹ", + "type": "SPL", + "symbol": "FAKE UЅⅮϹ", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/7HahXZBKzQZ7VBk1BTwXVeJu3Y1AQagYa2gKb9bB8Buv", + "explorer": "https://solscan.io/token/7HahXZBKzQZ7VBk1BTwXVeJu3Y1AQagYa2gKb9bB8Buv", + "status": "spam", + "id": "7HahXZBKzQZ7VBk1BTwXVeJu3Y1AQagYa2gKb9bB8Buv" +} \ No newline at end of file diff --git a/blockchains/solana/assets/7JA5eZdCzztSfQbJvS8aVVxMFfd81Rs9VvwnocV1mKHu/info.json b/blockchains/solana/assets/7JA5eZdCzztSfQbJvS8aVVxMFfd81Rs9VvwnocV1mKHu/info.json new file mode 100644 index 0000000000000..c7b1e8a4d7845 --- /dev/null +++ b/blockchains/solana/assets/7JA5eZdCzztSfQbJvS8aVVxMFfd81Rs9VvwnocV1mKHu/info.json @@ -0,0 +1,17 @@ +{ + "name": "Geodnet", + "type": "SPL", + "symbol": "GEOD", + "decimals": 9, + "website": "https://www.geodnet.com", + "description": "Join the world’s largest Web3 blockchain-based precise positioning network. Contribute RTK data to power robotics and earn GEOD tokens", + "explorer": "https://solscan.io/token/7JA5eZdCzztSfQbJvS8aVVxMFfd81Rs9VvwnocV1mKHu", + "status": "active", + "id": "7JA5eZdCzztSfQbJvS8aVVxMFfd81Rs9VvwnocV1mKHu", + "links": [ + { + "name": "x", + "url": "https://x.com/GEODNET_" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7JA5eZdCzztSfQbJvS8aVVxMFfd81Rs9VvwnocV1mKHu/logo.png b/blockchains/solana/assets/7JA5eZdCzztSfQbJvS8aVVxMFfd81Rs9VvwnocV1mKHu/logo.png new file mode 100644 index 0000000000000..382b4c1e30722 Binary files /dev/null and b/blockchains/solana/assets/7JA5eZdCzztSfQbJvS8aVVxMFfd81Rs9VvwnocV1mKHu/logo.png differ diff --git a/blockchains/solana/assets/7JGr8S9dt3a8mWQgNRUe8hCnekrKjcbmFBLcZ2dTBPo2/info.json b/blockchains/solana/assets/7JGr8S9dt3a8mWQgNRUe8hCnekrKjcbmFBLcZ2dTBPo2/info.json new file mode 100644 index 0000000000000..04da31169a299 --- /dev/null +++ b/blockchains/solana/assets/7JGr8S9dt3a8mWQgNRUe8hCnekrKjcbmFBLcZ2dTBPo2/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT ՍՏDТ", + "type": "SPL", + "symbol": "HONEYPOT ՍՏDТ", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/7JGr8S9dt3a8mWQgNRUe8hCnekrKjcbmFBLcZ2dTBPo2", + "explorer": "https://solscan.io/token/7JGr8S9dt3a8mWQgNRUe8hCnekrKjcbmFBLcZ2dTBPo2", + "status": "spam", + "id": "7JGr8S9dt3a8mWQgNRUe8hCnekrKjcbmFBLcZ2dTBPo2" +} \ No newline at end of file diff --git a/blockchains/solana/assets/7JnHPPJBBKSTJ7iEmsiGSBcPJgbcKw28uCRXtQgimncp/info.json b/blockchains/solana/assets/7JnHPPJBBKSTJ7iEmsiGSBcPJgbcKw28uCRXtQgimncp/info.json new file mode 100644 index 0000000000000..6d15c124464e2 --- /dev/null +++ b/blockchains/solana/assets/7JnHPPJBBKSTJ7iEmsiGSBcPJgbcKw28uCRXtQgimncp/info.json @@ -0,0 +1,25 @@ +{ + "name": "Orbs", + "website": "https://orbs.com", + "description": "Orbs is a blockchain infrastructure-as-a-service built for large scale consumer applications to meet their business and technological requirements.", + "explorer": "https://solscan.io/token/7JnHPPJBBKSTJ7iEmsiGSBcPJgbcKw28uCRXtQgimncp", + "type": "SPL", + "symbol": "ORBS", + "decimals": 8, + "status": "active", + "id": "7JnHPPJBBKSTJ7iEmsiGSBcPJgbcKw28uCRXtQgimncp", + "links": [ + { + "name": "x", + "url": "https://x.com/orbs_network" + }, + { + "name": "github", + "url": "https://github.com/orbs-network" + }, + { + "name": "telegram", + "url": "https://t.me/orbs_network" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7JnHPPJBBKSTJ7iEmsiGSBcPJgbcKw28uCRXtQgimncp/logo.png b/blockchains/solana/assets/7JnHPPJBBKSTJ7iEmsiGSBcPJgbcKw28uCRXtQgimncp/logo.png new file mode 100644 index 0000000000000..ba89f2dd8dd05 Binary files /dev/null and b/blockchains/solana/assets/7JnHPPJBBKSTJ7iEmsiGSBcPJgbcKw28uCRXtQgimncp/logo.png differ diff --git a/blockchains/solana/assets/7NWHifsBnn9DimUeNnsHdEXkTZhXmJTiXxcCngBondo/info.json b/blockchains/solana/assets/7NWHifsBnn9DimUeNnsHdEXkTZhXmJTiXxcCngBondo/info.json new file mode 100644 index 0000000000000..1f86a81bf0889 --- /dev/null +++ b/blockchains/solana/assets/7NWHifsBnn9DimUeNnsHdEXkTZhXmJTiXxcCngBondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Constellation Energy (Ondo Tokenized)", + "type": "SPL", + "symbol": "CEGon", + "decimals": 9, + "description": "CEGon is the Ondo Tokenized version of Constellation Energy, giving tokenholders economic exposure similar to holding CEG and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/7NWHifsBnn9DimUeNnsHdEXkTZhXmJTiXxcCngBondo", + "status": "active", + "id": "7NWHifsBnn9DimUeNnsHdEXkTZhXmJTiXxcCngBondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/constellation-energy-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/constellation-energy-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7NWHifsBnn9DimUeNnsHdEXkTZhXmJTiXxcCngBondo/logo.png b/blockchains/solana/assets/7NWHifsBnn9DimUeNnsHdEXkTZhXmJTiXxcCngBondo/logo.png new file mode 100644 index 0000000000000..40883cd3a39a0 Binary files /dev/null and b/blockchains/solana/assets/7NWHifsBnn9DimUeNnsHdEXkTZhXmJTiXxcCngBondo/logo.png differ diff --git a/blockchains/solana/assets/7QnZ1w55EbRJKrMFmnDg7BokyJjCBc8bLpBaaJcQykPw/info.json b/blockchains/solana/assets/7QnZ1w55EbRJKrMFmnDg7BokyJjCBc8bLpBaaJcQykPw/info.json new file mode 100644 index 0000000000000..670b1d4527c50 --- /dev/null +++ b/blockchains/solana/assets/7QnZ1w55EbRJKrMFmnDg7BokyJjCBc8bLpBaaJcQykPw/info.json @@ -0,0 +1,26 @@ +{ + "name": "The Dogefather", + "type": "SOL", + "symbol": "Dogefather", + "decimals": 2, + "description": "Elon Musk, the CEO of Tesla and perhaps President Donald Trump's most influential adviser, appeared at the Conservative Political Action Conference (CPAC) on Thursday, waving a chainsaw in the air. The chainsaw was a gift from Argentine President Javier Milei, who has used it as a symbol of his efforts to restore fiscal discipline. Musk used the chainsaw to symbolize his cost-cutting initiatives, which include cutting government spending and downsizing the federal workforce.", + "website": "https://doge-father.club/", + "explorer": "https://solscan.io/token/7QnZ1w55EbRJKrMFmnDg7BokyJjCBc8bLpBaaJcQykPw", + "id": "7QnZ1w55EbRJKrMFmnDg7BokyJjCBc8bLpBaaJcQykPw", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Dogefatherctos" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/the-dogefather-solana/" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/7QnZ1w55EbRJKrMFmnDg7BokyJjCBc8bLpBaaJcQykPw/logo.png b/blockchains/solana/assets/7QnZ1w55EbRJKrMFmnDg7BokyJjCBc8bLpBaaJcQykPw/logo.png new file mode 100644 index 0000000000000..dc22735bd26fd Binary files /dev/null and b/blockchains/solana/assets/7QnZ1w55EbRJKrMFmnDg7BokyJjCBc8bLpBaaJcQykPw/logo.png differ diff --git a/blockchains/solana/assets/7Rtegu95FZZ2KX3zA37LU1ypicxu6pBysNEagFwhpump/info.json b/blockchains/solana/assets/7Rtegu95FZZ2KX3zA37LU1ypicxu6pBysNEagFwhpump/info.json new file mode 100644 index 0000000000000..6eb4d75e51802 --- /dev/null +++ b/blockchains/solana/assets/7Rtegu95FZZ2KX3zA37LU1ypicxu6pBysNEagFwhpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Plankton in Pain", + "website": "https://www.aaahhm.meme/", + "description": "Plankton got hurt because dev jeeted", + "explorer": "https://solscan.io/token/7Rtegu95FZZ2KX3zA37LU1ypicxu6pBysNEagFwhpump", + "type": "SPL", + "symbol": "AAAHHM", + "decimals": 6, + "status": "active", + "id": "7Rtegu95FZZ2KX3zA37LU1ypicxu6pBysNEagFwhpump", + "links": [ + { + "name": "x", + "url": "https://x.com/AAAHHM_SOL" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/plankton-in-pain" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7Rtegu95FZZ2KX3zA37LU1ypicxu6pBysNEagFwhpump/logo.png b/blockchains/solana/assets/7Rtegu95FZZ2KX3zA37LU1ypicxu6pBysNEagFwhpump/logo.png new file mode 100644 index 0000000000000..749edc5851b7f Binary files /dev/null and b/blockchains/solana/assets/7Rtegu95FZZ2KX3zA37LU1ypicxu6pBysNEagFwhpump/logo.png differ diff --git a/blockchains/solana/assets/7S37Wv8v9BLQ7bCBTSmCgpCHEb7ae9ZVV7YGwDSepump/info.json b/blockchains/solana/assets/7S37Wv8v9BLQ7bCBTSmCgpCHEb7ae9ZVV7YGwDSepump/info.json new file mode 100644 index 0000000000000..3caadad7d9477 --- /dev/null +++ b/blockchains/solana/assets/7S37Wv8v9BLQ7bCBTSmCgpCHEb7ae9ZVV7YGwDSepump/info.json @@ -0,0 +1,21 @@ +{ + "name": "SANTA HAT", + "website": "https://santahatonsol.xyz/", + "description": "OSRS Santa Hat", + "explorer": "https://solscan.io/token/7S37Wv8v9BLQ7bCBTSmCgpCHEb7ae9ZVV7YGwDSepump", + "type": "SPL", + "symbol": "SANTAHAT", + "decimals": 6, + "status": "active", + "id": "7S37Wv8v9BLQ7bCBTSmCgpCHEb7ae9ZVV7YGwDSepump", + "links": [ + { + "name": "x", + "url": "https://x.com/SANTAONSOL_" + }, + { + "name": "telegram", + "url": "https://t.me/santahatcoinportal" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7S37Wv8v9BLQ7bCBTSmCgpCHEb7ae9ZVV7YGwDSepump/logo.png b/blockchains/solana/assets/7S37Wv8v9BLQ7bCBTSmCgpCHEb7ae9ZVV7YGwDSepump/logo.png new file mode 100644 index 0000000000000..7bc675627f90a Binary files /dev/null and b/blockchains/solana/assets/7S37Wv8v9BLQ7bCBTSmCgpCHEb7ae9ZVV7YGwDSepump/logo.png differ diff --git a/blockchains/solana/assets/7SZMQtjz46ciGTozmUsdsCYysYsEQutL6Y2KRmQ8rich/info.json b/blockchains/solana/assets/7SZMQtjz46ciGTozmUsdsCYysYsEQutL6Y2KRmQ8rich/info.json new file mode 100644 index 0000000000000..54a84dc959107 --- /dev/null +++ b/blockchains/solana/assets/7SZMQtjz46ciGTozmUsdsCYysYsEQutL6Y2KRmQ8rich/info.json @@ -0,0 +1,17 @@ +{ + "name": "Rich", + "type": "SLP", + "symbol": "RICH", + "decimals": 6, + "description": "LISTEN, I’M RICH. BEFORE $RICH, I WAS COPING ON THE SIDELINE, WATCHING OTHERS EAT.", + "website": "https://rich.fun/", + "explorer": "https://solscan.io/token/7SZMQtjz46ciGTozmUsdsCYysYsEQutL6Y2KRmQ8rich", + "id": "7SZMQtjz46ciGTozmUsdsCYysYsEQutL6Y2KRmQ8rich", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/richfunsol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7SZMQtjz46ciGTozmUsdsCYysYsEQutL6Y2KRmQ8rich/logo.png b/blockchains/solana/assets/7SZMQtjz46ciGTozmUsdsCYysYsEQutL6Y2KRmQ8rich/logo.png new file mode 100644 index 0000000000000..c3ace10a9354f Binary files /dev/null and b/blockchains/solana/assets/7SZMQtjz46ciGTozmUsdsCYysYsEQutL6Y2KRmQ8rich/logo.png differ diff --git a/blockchains/solana/assets/7VQzGuk2xbWteJ2A5yzGkuDmCQLQGAsvD9MjmW8VutTG/info.json b/blockchains/solana/assets/7VQzGuk2xbWteJ2A5yzGkuDmCQLQGAsvD9MjmW8VutTG/info.json new file mode 100644 index 0000000000000..df698cb9a4e45 --- /dev/null +++ b/blockchains/solana/assets/7VQzGuk2xbWteJ2A5yzGkuDmCQLQGAsvD9MjmW8VutTG/info.json @@ -0,0 +1,21 @@ +{ + "name": "Secrot Servoce", + "website": "https://secrotservoce.xyz", + "description": "Secrot Servoce is a dynamic meme coin operating within the Solana blockchain, embodying the essence of the PolitiFi narrative", + "explorer": "https://solscan.io/token/7VQzGuk2xbWteJ2A5yzGkuDmCQLQGAsvD9MjmW8VutTG", + "type": "SPL", + "symbol": "SECROT", + "decimals": 6, + "status": "active", + "id": "7VQzGuk2xbWteJ2A5yzGkuDmCQLQGAsvD9MjmW8VutTG", + "links": [ + { + "name": "x", + "url": "https://x.com/secrotonsol" + }, + { + "name": "telegram", + "url": "https://t.me/secrot_servoce" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7VQzGuk2xbWteJ2A5yzGkuDmCQLQGAsvD9MjmW8VutTG/logo.png b/blockchains/solana/assets/7VQzGuk2xbWteJ2A5yzGkuDmCQLQGAsvD9MjmW8VutTG/logo.png new file mode 100644 index 0000000000000..4193ae2bf7b41 Binary files /dev/null and b/blockchains/solana/assets/7VQzGuk2xbWteJ2A5yzGkuDmCQLQGAsvD9MjmW8VutTG/logo.png differ diff --git a/blockchains/solana/assets/7XJiwLDrjzxDYdZipnJXzpr1iDTmK55XixSFAa7JgNEL/info.json b/blockchains/solana/assets/7XJiwLDrjzxDYdZipnJXzpr1iDTmK55XixSFAa7JgNEL/info.json new file mode 100644 index 0000000000000..8a5799d2470bf --- /dev/null +++ b/blockchains/solana/assets/7XJiwLDrjzxDYdZipnJXzpr1iDTmK55XixSFAa7JgNEL/info.json @@ -0,0 +1,21 @@ +{ + "name": "360noscope420blazeit", + "type": "SPL", + "symbol": "MLG", + "decimals": 6, + "website": "https://mlgedit.com/", + "description": "A community claimed ownership for this token on Dec 21 2024", + "explorer": "https://solscan.io/token/7XJiwLDrjzxDYdZipnJXzpr1iDTmK55XixSFAa7JgNEL", + "status": "active", + "id": "7XJiwLDrjzxDYdZipnJXzpr1iDTmK55XixSFAa7JgNEL", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/360noscope420blazeit" + }, + { + "name": "x", + "url": "https://x.com/mlgsolana420" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7XJiwLDrjzxDYdZipnJXzpr1iDTmK55XixSFAa7JgNEL/logo.png b/blockchains/solana/assets/7XJiwLDrjzxDYdZipnJXzpr1iDTmK55XixSFAa7JgNEL/logo.png new file mode 100644 index 0000000000000..ba7f0ac29f964 Binary files /dev/null and b/blockchains/solana/assets/7XJiwLDrjzxDYdZipnJXzpr1iDTmK55XixSFAa7JgNEL/logo.png differ diff --git a/blockchains/solana/assets/7XajonXgCMJgr6fPe75upRX6HpEnSfm4tfqsNAkTpump/info.json b/blockchains/solana/assets/7XajonXgCMJgr6fPe75upRX6HpEnSfm4tfqsNAkTpump/info.json new file mode 100644 index 0000000000000..46a0542d01a8f --- /dev/null +++ b/blockchains/solana/assets/7XajonXgCMJgr6fPe75upRX6HpEnSfm4tfqsNAkTpump/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE EURC", + "type": "SPL", + "symbol": "FAKE EURC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/7XajonXgCMJgr6fPe75upRX6HpEnSfm4tfqsNAkTpump", + "explorer": "https://solscan.io/token/7XajonXgCMJgr6fPe75upRX6HpEnSfm4tfqsNAkTpump", + "status": "spam", + "id": "7XajonXgCMJgr6fPe75upRX6HpEnSfm4tfqsNAkTpump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/7ZCm8WBN9aLa3o47SoYctU6iLdj7wkGG5SV2hE5CgtD5/info.json b/blockchains/solana/assets/7ZCm8WBN9aLa3o47SoYctU6iLdj7wkGG5SV2hE5CgtD5/info.json new file mode 100644 index 0000000000000..7b3d79093d3f0 --- /dev/null +++ b/blockchains/solana/assets/7ZCm8WBN9aLa3o47SoYctU6iLdj7wkGG5SV2hE5CgtD5/info.json @@ -0,0 +1,17 @@ +{ + "name": "Dogelon", + "website": "https://dogelon.io", + "description": "I am Dogelon. Dogelon Mars. Join me and together we'll reach the stars ✨ We want to reach Mars and beyond. However, many of those good people are rugged, or buy scam tokens that can't be sold. For this reason, the Dogelon community pledges to send tokens over time to victims of rugs and scams, so that the worst day of their trading life can be turned into their best. And after some time, they will be able to join us on our regular flights to Mars....", + "explorer": "https://solscan.io/token/7ZCm8WBN9aLa3o47SoYctU6iLdj7wkGG5SV2hE5CgtD5", + "type": "SPL", + "symbol": "ELON", + "decimals": 4, + "status": "active", + "id": "7ZCm8WBN9aLa3o47SoYctU6iLdj7wkGG5SV2hE5CgtD5", + "links": [ + { + "name": "x", + "url": "https://x.com/dogelonmars" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7ZCm8WBN9aLa3o47SoYctU6iLdj7wkGG5SV2hE5CgtD5/logo.png b/blockchains/solana/assets/7ZCm8WBN9aLa3o47SoYctU6iLdj7wkGG5SV2hE5CgtD5/logo.png new file mode 100644 index 0000000000000..87fb698202102 Binary files /dev/null and b/blockchains/solana/assets/7ZCm8WBN9aLa3o47SoYctU6iLdj7wkGG5SV2hE5CgtD5/logo.png differ diff --git a/blockchains/solana/assets/7ZqzGzTNg5tjK1CHTBdGFHyKjBtXdfvAobuGgdt4pump/info.json b/blockchains/solana/assets/7ZqzGzTNg5tjK1CHTBdGFHyKjBtXdfvAobuGgdt4pump/info.json new file mode 100644 index 0000000000000..da0768620adb1 --- /dev/null +++ b/blockchains/solana/assets/7ZqzGzTNg5tjK1CHTBdGFHyKjBtXdfvAobuGgdt4pump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Hasbulla's Cat", + "symbol": "BARSIK", + "type": "SPL", + "decimals": 6, + "description": "In loving memory of Barsik, Hasbulla’s beloved and adorable cat, whose spirit now lives on forever within the Solana blockchain.", + "website": "https://barsik.io/", + "explorer": "https://solscan.io/token/7ZqzGzTNg5tjK1CHTBdGFHyKjBtXdfvAobuGgdt4pump", + "status": "active", + "id": "7ZqzGzTNg5tjK1CHTBdGFHyKjBtXdfvAobuGgdt4pump", + "links": [ + { + "name": "x", + "url": "https://x.com/BarsikOnSolana" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hasbullas-cat/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7ZqzGzTNg5tjK1CHTBdGFHyKjBtXdfvAobuGgdt4pump/logo.png b/blockchains/solana/assets/7ZqzGzTNg5tjK1CHTBdGFHyKjBtXdfvAobuGgdt4pump/logo.png new file mode 100644 index 0000000000000..6cfde9bc2ccc2 Binary files /dev/null and b/blockchains/solana/assets/7ZqzGzTNg5tjK1CHTBdGFHyKjBtXdfvAobuGgdt4pump/logo.png differ diff --git a/blockchains/solana/assets/7aH9HZUxPmyDvbweKvmqNSbHaqYJfMHkcGAyyy9epump/info.json b/blockchains/solana/assets/7aH9HZUxPmyDvbweKvmqNSbHaqYJfMHkcGAyyy9epump/info.json new file mode 100644 index 0000000000000..2da4fad27c707 --- /dev/null +++ b/blockchains/solana/assets/7aH9HZUxPmyDvbweKvmqNSbHaqYJfMHkcGAyyy9epump/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM United Stablecoin of Ass & Tits", + "type": "SPL", + "symbol": "SCAM USAT", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/7aH9HZUxPmyDvbweKvmqNSbHaqYJfMHkcGAyyy9epump", + "explorer": "https://solscan.io/token/7aH9HZUxPmyDvbweKvmqNSbHaqYJfMHkcGAyyy9epump", + "status": "spam", + "id": "7aH9HZUxPmyDvbweKvmqNSbHaqYJfMHkcGAyyy9epump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/7atgF8KQo4wJrD5ATGX7t1V2zVvykPJbFfNeVf1icFv1/info.json b/blockchains/solana/assets/7atgF8KQo4wJrD5ATGX7t1V2zVvykPJbFfNeVf1icFv1/info.json new file mode 100644 index 0000000000000..17e78e6e16463 --- /dev/null +++ b/blockchains/solana/assets/7atgF8KQo4wJrD5ATGX7t1V2zVvykPJbFfNeVf1icFv1/info.json @@ -0,0 +1,21 @@ +{ + "name": "catwifhat", + "symbol": "CWIF", + "type": "SPL", + "decimals": 2, + "description": "Alongside its friend Dogwifhat, Catwifhat adds cats wearing hats to the Solana blockchain.", + "website": "https://catwifhatsolana.com/", + "explorer": "https://solscan.io/token/7atgF8KQo4wJrD5ATGX7t1V2zVvykPJbFfNeVf1icFv1", + "status": "active", + "id": "7atgF8KQo4wJrD5ATGX7t1V2zVvykPJbFfNeVf1icFv1", + "links": [ + { + "name": "x", + "url": "https://x.com/catwifhatsolana" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/catwifhatsolana/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7atgF8KQo4wJrD5ATGX7t1V2zVvykPJbFfNeVf1icFv1/logo.png b/blockchains/solana/assets/7atgF8KQo4wJrD5ATGX7t1V2zVvykPJbFfNeVf1icFv1/logo.png new file mode 100644 index 0000000000000..878c310d3e63f Binary files /dev/null and b/blockchains/solana/assets/7atgF8KQo4wJrD5ATGX7t1V2zVvykPJbFfNeVf1icFv1/logo.png differ diff --git a/blockchains/solana/assets/7b36cKRYFZsMp3vLByVwfVQxW2ndcYth5rhPnyypump/info.json b/blockchains/solana/assets/7b36cKRYFZsMp3vLByVwfVQxW2ndcYth5rhPnyypump/info.json new file mode 100644 index 0000000000000..555d36bb8e46e --- /dev/null +++ b/blockchains/solana/assets/7b36cKRYFZsMp3vLByVwfVQxW2ndcYth5rhPnyypump/info.json @@ -0,0 +1,21 @@ +{ + "name": "PINO", + "type": "SPL", + "symbol": "PINO", + "decimals": 6, + "website": "https://pinocoin.xyz", + "description": "The Bad Boy of Solana", + "explorer": "https://solscan.io/token/7b36cKRYFZsMp3vLByVwfVQxW2ndcYth5rhPnyypump", + "status": "active", + "id": "7b36cKRYFZsMp3vLByVwfVQxW2ndcYth5rhPnyypump", + "links": [ + { + "name": "x", + "url": "https://x.com/pinothedino" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pino/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7b36cKRYFZsMp3vLByVwfVQxW2ndcYth5rhPnyypump/logo.png b/blockchains/solana/assets/7b36cKRYFZsMp3vLByVwfVQxW2ndcYth5rhPnyypump/logo.png new file mode 100644 index 0000000000000..b1d052cf313d5 Binary files /dev/null and b/blockchains/solana/assets/7b36cKRYFZsMp3vLByVwfVQxW2ndcYth5rhPnyypump/logo.png differ diff --git a/blockchains/solana/assets/7cb67ev3jvBKaAH1tnVM8FL8WfQ96sa2TYByEXajqx8N/info.json b/blockchains/solana/assets/7cb67ev3jvBKaAH1tnVM8FL8WfQ96sa2TYByEXajqx8N/info.json new file mode 100644 index 0000000000000..9497cb338b8e6 --- /dev/null +++ b/blockchains/solana/assets/7cb67ev3jvBKaAH1tnVM8FL8WfQ96sa2TYByEXajqx8N/info.json @@ -0,0 +1,21 @@ +{ + "name": "Dawkoins", + "website": "https://www.dawkoins.online/", + "description": "Richard Dawkins is the father of MEMES and BOME dev asked for a coin in honor to him.", + "explorer": "https://solscan.io/token/7cb67ev3jvBKaAH1tnVM8FL8WfQ96sa2TYByEXajqx8N", + "type": "SPL", + "symbol": "DAW", + "decimals": 6, + "status": "active", + "id": "7cb67ev3jvBKaAH1tnVM8FL8WfQ96sa2TYByEXajqx8N", + "links": [ + { + "name": "x", + "url": "https://x.com/DawkoinsOnSol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dawkoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7cb67ev3jvBKaAH1tnVM8FL8WfQ96sa2TYByEXajqx8N/logo.png b/blockchains/solana/assets/7cb67ev3jvBKaAH1tnVM8FL8WfQ96sa2TYByEXajqx8N/logo.png new file mode 100644 index 0000000000000..b2a1d4a5b4ec1 Binary files /dev/null and b/blockchains/solana/assets/7cb67ev3jvBKaAH1tnVM8FL8WfQ96sa2TYByEXajqx8N/logo.png differ diff --git a/blockchains/solana/assets/7ciZVjqtGHpJxqYrFVe19FGCuHoTpMTSMew1QDBUbonk/info.json b/blockchains/solana/assets/7ciZVjqtGHpJxqYrFVe19FGCuHoTpMTSMew1QDBUbonk/info.json new file mode 100644 index 0000000000000..5229b3b36c5ea --- /dev/null +++ b/blockchains/solana/assets/7ciZVjqtGHpJxqYrFVe19FGCuHoTpMTSMew1QDBUbonk/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM United Stable Dollar Trump", + "type": "SPL", + "symbol": "SCAM USDT", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/7ciZVjqtGHpJxqYrFVe19FGCuHoTpMTSMew1QDBUbonk", + "explorer": "https://solscan.io/token/7ciZVjqtGHpJxqYrFVe19FGCuHoTpMTSMew1QDBUbonk", + "status": "spam", + "id": "7ciZVjqtGHpJxqYrFVe19FGCuHoTpMTSMew1QDBUbonk" +} \ No newline at end of file diff --git a/blockchains/solana/assets/7dUKUopcNWW6CcU4eRxCHh1uiMh32zDrmGf6ufqhxann/info.json b/blockchains/solana/assets/7dUKUopcNWW6CcU4eRxCHh1uiMh32zDrmGf6ufqhxann/info.json new file mode 100644 index 0000000000000..56a800c82792e --- /dev/null +++ b/blockchains/solana/assets/7dUKUopcNWW6CcU4eRxCHh1uiMh32zDrmGf6ufqhxann/info.json @@ -0,0 +1,28 @@ +{ + "name": "Baby Doge Coin", + "type": "SPL", + "symbol": "BabyDoge", + "decimals": 1, + "description": "BabyDoge is the leading community meme coin on the BNB chain. Baby Doge was created initially as a joke with a mission to help spread awareness of animal adoption.", + "website": "https://babydoge.com", + "explorer": "https://solscan.io/token/7dUKUopcNWW6CcU4eRxCHh1uiMh32zDrmGf6ufqhxann", + "id": "7dUKUopcNWW6CcU4eRxCHh1uiMh32zDrmGf6ufqhxann", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/babydogecoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/baby-doge-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/baby-doge-coin" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7dUKUopcNWW6CcU4eRxCHh1uiMh32zDrmGf6ufqhxann/logo.png b/blockchains/solana/assets/7dUKUopcNWW6CcU4eRxCHh1uiMh32zDrmGf6ufqhxann/logo.png new file mode 100644 index 0000000000000..7a67e5d258031 Binary files /dev/null and b/blockchains/solana/assets/7dUKUopcNWW6CcU4eRxCHh1uiMh32zDrmGf6ufqhxann/logo.png differ diff --git a/blockchains/solana/assets/7dnMwS2yE6NE1PX81B9Xpm7zUhFXmQABqUiHHzWXiEBn/info.json b/blockchains/solana/assets/7dnMwS2yE6NE1PX81B9Xpm7zUhFXmQABqUiHHzWXiEBn/info.json new file mode 100644 index 0000000000000..16a9d71df6656 --- /dev/null +++ b/blockchains/solana/assets/7dnMwS2yE6NE1PX81B9Xpm7zUhFXmQABqUiHHzWXiEBn/info.json @@ -0,0 +1,25 @@ +{ + "name": "Adventure Gold", + "type": "SPL", + "symbol": "AGLD", + "decimals": 8, + "website": "https://www.lootproject.com/", + "description": "Adventure Gold is the native ERC-20 token of the Loot non-fungible token (NFT) project. Loot is a text-based, randomized adventure gear generated and stored on-chain, created by social media network Vine co-founder Dom Hofmann.", + "explorer": "https://solscan.io/token/7dnMwS2yE6NE1PX81B9Xpm7zUhFXmQABqUiHHzWXiEBn", + "status": "active", + "id": "7dnMwS2yE6NE1PX81B9Xpm7zUhFXmQABqUiHHzWXiEBn", + "links": [ + { + "name": "x", + "url": "https://x.com/lootproject" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/adventure-gold/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/adventure-gold/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7dnMwS2yE6NE1PX81B9Xpm7zUhFXmQABqUiHHzWXiEBn/logo.png b/blockchains/solana/assets/7dnMwS2yE6NE1PX81B9Xpm7zUhFXmQABqUiHHzWXiEBn/logo.png new file mode 100644 index 0000000000000..7651d7bba1d6a Binary files /dev/null and b/blockchains/solana/assets/7dnMwS2yE6NE1PX81B9Xpm7zUhFXmQABqUiHHzWXiEBn/logo.png differ diff --git a/blockchains/solana/assets/7e6M8j6epVp96pLmTUku9LFDnLRJqzQUtNtDtvr8dhJd/info.json b/blockchains/solana/assets/7e6M8j6epVp96pLmTUku9LFDnLRJqzQUtNtDtvr8dhJd/info.json new file mode 100644 index 0000000000000..970ade0d34254 --- /dev/null +++ b/blockchains/solana/assets/7e6M8j6epVp96pLmTUku9LFDnLRJqzQUtNtDtvr8dhJd/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Ѕօlana", + "type": "SPL", + "symbol": "FAKE ЅՕL", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/7e6M8j6epVp96pLmTUku9LFDnLRJqzQUtNtDtvr8dhJd", + "explorer": "https://solscan.io/token/7e6M8j6epVp96pLmTUku9LFDnLRJqzQUtNtDtvr8dhJd", + "status": "spam", + "id": "7e6M8j6epVp96pLmTUku9LFDnLRJqzQUtNtDtvr8dhJd" +} \ No newline at end of file diff --git a/blockchains/solana/assets/7eRX747PSbVtGVx3qD5UFdkNM2BfTy86ikUiCMhondo/info.json b/blockchains/solana/assets/7eRX747PSbVtGVx3qD5UFdkNM2BfTy86ikUiCMhondo/info.json new file mode 100644 index 0000000000000..59f9933bb2dcd --- /dev/null +++ b/blockchains/solana/assets/7eRX747PSbVtGVx3qD5UFdkNM2BfTy86ikUiCMhondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Applied Materials (Ondo Tokenized)", + "type": "SPL", + "symbol": "AMATon", + "decimals": 9, + "description": "AMATon is the Ondo Tokenized version of Applied Materials, giving tokenholders economic exposure similar to holding AMAT and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/7eRX747PSbVtGVx3qD5UFdkNM2BfTy86ikUiCMhondo", + "status": "active", + "id": "7eRX747PSbVtGVx3qD5UFdkNM2BfTy86ikUiCMhondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/applied-materials-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/applied-materials-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7eRX747PSbVtGVx3qD5UFdkNM2BfTy86ikUiCMhondo/logo.png b/blockchains/solana/assets/7eRX747PSbVtGVx3qD5UFdkNM2BfTy86ikUiCMhondo/logo.png new file mode 100644 index 0000000000000..760e219c8191f Binary files /dev/null and b/blockchains/solana/assets/7eRX747PSbVtGVx3qD5UFdkNM2BfTy86ikUiCMhondo/logo.png differ diff --git a/blockchains/solana/assets/7gbEP2TAy5wM3TmMp5utCrRvdJ3FFqYjgN5KDpXiWPmo/info.json b/blockchains/solana/assets/7gbEP2TAy5wM3TmMp5utCrRvdJ3FFqYjgN5KDpXiWPmo/info.json new file mode 100644 index 0000000000000..4effbc1410da4 --- /dev/null +++ b/blockchains/solana/assets/7gbEP2TAy5wM3TmMp5utCrRvdJ3FFqYjgN5KDpXiWPmo/info.json @@ -0,0 +1,21 @@ +{ + "name": "SCOTT WU", + "website": "https://devincoin.xyz/", + "description": "The $DEVIN Community shares the appreciation of progress between the AI and WEB3 ecosystem.", + "explorer": "https://solscan.io/token/7gbEP2TAy5wM3TmMp5utCrRvdJ3FFqYjgN5KDpXiWPmo", + "type": "SPL", + "symbol": "DEVIN", + "decimals": 6, + "status": "active", + "id": "7gbEP2TAy5wM3TmMp5utCrRvdJ3FFqYjgN5KDpXiWPmo", + "links": [ + { + "name": "x", + "url": "https://x.com/DEVINTOTHEMOON" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/devin-on-solana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7gbEP2TAy5wM3TmMp5utCrRvdJ3FFqYjgN5KDpXiWPmo/logo.png b/blockchains/solana/assets/7gbEP2TAy5wM3TmMp5utCrRvdJ3FFqYjgN5KDpXiWPmo/logo.png new file mode 100644 index 0000000000000..bcc3f2a11b445 Binary files /dev/null and b/blockchains/solana/assets/7gbEP2TAy5wM3TmMp5utCrRvdJ3FFqYjgN5KDpXiWPmo/logo.png differ diff --git a/blockchains/solana/assets/7gjNiPun3AzEazTZoFEjZgcBMeuaXdpjHq2raZTmTrfs/info.json b/blockchains/solana/assets/7gjNiPun3AzEazTZoFEjZgcBMeuaXdpjHq2raZTmTrfs/info.json index 4432a63cfbbb4..63c7a9725badb 100644 --- a/blockchains/solana/assets/7gjNiPun3AzEazTZoFEjZgcBMeuaXdpjHq2raZTmTrfs/info.json +++ b/blockchains/solana/assets/7gjNiPun3AzEazTZoFEjZgcBMeuaXdpjHq2raZTmTrfs/info.json @@ -4,7 +4,7 @@ "symbol": "CRV", "decimals": 8, "description": "Cross Chain Portal Bridged Token", - "website": "https://www.curve.fi/", + "website": "https://www.curve.finance/", "explorer": "https://solscan.io/token/7gjNiPun3AzEazTZoFEjZgcBMeuaXdpjHq2raZTmTrfs", "status": "active", "id": "7gjNiPun3AzEazTZoFEjZgcBMeuaXdpjHq2raZTmTrfs", diff --git a/blockchains/solana/assets/7h6xvgE7ybfoWnHdGnvJi9nr979wXnBUtcJN7uYopump/info.json b/blockchains/solana/assets/7h6xvgE7ybfoWnHdGnvJi9nr979wXnBUtcJN7uYopump/info.json new file mode 100644 index 0000000000000..0604a11acc1ba --- /dev/null +++ b/blockchains/solana/assets/7h6xvgE7ybfoWnHdGnvJi9nr979wXnBUtcJN7uYopump/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE EURC", + "type": "SPL", + "symbol": "FAKE EURC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/7h6xvgE7ybfoWnHdGnvJi9nr979wXnBUtcJN7uYopump", + "explorer": "https://solscan.io/token/7h6xvgE7ybfoWnHdGnvJi9nr979wXnBUtcJN7uYopump", + "status": "spam", + "id": "7h6xvgE7ybfoWnHdGnvJi9nr979wXnBUtcJN7uYopump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/7hWcHohzwtLddDUG81H2PkWq6KEkMtSDNkYXsso18Fy3/info.json b/blockchains/solana/assets/7hWcHohzwtLddDUG81H2PkWq6KEkMtSDNkYXsso18Fy3/info.json new file mode 100644 index 0000000000000..a6e640a875ac2 --- /dev/null +++ b/blockchains/solana/assets/7hWcHohzwtLddDUG81H2PkWq6KEkMtSDNkYXsso18Fy3/info.json @@ -0,0 +1,40 @@ +{ + "name": "Catcoin", + "type": "SPL", + "symbol": "CAT", + "decimals": 3, + "website": "https://catcoin.com", + "description": "Catcoin is a cat theme token that focuses on community decentralization and adoption. $CAT is designed to make memeCoins great again", + "explorer": "https://solscan.io/token/7hWcHohzwtLddDUG81H2PkWq6KEkMtSDNkYXsso18Fy3", + "status": "active", + "id": "7hWcHohzwtLddDUG81H2PkWq6KEkMtSDNkYXsso18Fy3", + "links": [ + { + "name": "x", + "url": "https://x.com/catcoin" + }, + { + "name": "telegram", + "url": "https://t.me/catcoincash" + }, + { + "name": "facebook", + "url": "https://facebook.com/catcoincash" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/catcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/catcoin/" + }, + { + "name": "telegram_news", + "url": "https://t.me/catcoinalert" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7hWcHohzwtLddDUG81H2PkWq6KEkMtSDNkYXsso18Fy3/logo.png b/blockchains/solana/assets/7hWcHohzwtLddDUG81H2PkWq6KEkMtSDNkYXsso18Fy3/logo.png new file mode 100644 index 0000000000000..0ff8ebaa9bb2f Binary files /dev/null and b/blockchains/solana/assets/7hWcHohzwtLddDUG81H2PkWq6KEkMtSDNkYXsso18Fy3/logo.png differ diff --git a/blockchains/solana/assets/7hdeo5QciUF8S2vfsx6uRJkdNVADBU3DDcXW4zjDcMin/info.json b/blockchains/solana/assets/7hdeo5QciUF8S2vfsx6uRJkdNVADBU3DDcXW4zjDcMin/info.json new file mode 100644 index 0000000000000..d31e8ca855080 --- /dev/null +++ b/blockchains/solana/assets/7hdeo5QciUF8S2vfsx6uRJkdNVADBU3DDcXW4zjDcMin/info.json @@ -0,0 +1,21 @@ +{ + "name": "WAM", + "symbol": "WAM", + "type": "SPL", + "decimals": 8, + "description": "+70 partnershis since the 2021 launch including BNB Chain, Unstoppable Domains, NodeReal, Moralis, DAO Maker, GameFi.org, U Cluj Footbal Club, Gate.io, Multivers X, Untold Festival and more.", + "website": "https://wam.app/", + "explorer": "https://solscan.io/token/7hdeo5QciUF8S2vfsx6uRJkdNVADBU3DDcXW4zjDcMin", + "status": "active", + "id": "7hdeo5QciUF8S2vfsx6uRJkdNVADBU3DDcXW4zjDcMin", + "links": [ + { + "name": "x", + "url": "https://x.com/playWAM" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wam-app" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7hdeo5QciUF8S2vfsx6uRJkdNVADBU3DDcXW4zjDcMin/logo.png b/blockchains/solana/assets/7hdeo5QciUF8S2vfsx6uRJkdNVADBU3DDcXW4zjDcMin/logo.png new file mode 100644 index 0000000000000..bc4dc23b538b2 Binary files /dev/null and b/blockchains/solana/assets/7hdeo5QciUF8S2vfsx6uRJkdNVADBU3DDcXW4zjDcMin/logo.png differ diff --git a/blockchains/solana/assets/7i5KKsX2weiTkry7jA4ZwSuXGhs5eJBEjY8vVxR4pfRx/info.json b/blockchains/solana/assets/7i5KKsX2weiTkry7jA4ZwSuXGhs5eJBEjY8vVxR4pfRx/info.json index 822cc93149385..b8989a2ccf15e 100644 --- a/blockchains/solana/assets/7i5KKsX2weiTkry7jA4ZwSuXGhs5eJBEjY8vVxR4pfRx/info.json +++ b/blockchains/solana/assets/7i5KKsX2weiTkry7jA4ZwSuXGhs5eJBEjY8vVxR4pfRx/info.json @@ -1,5 +1,5 @@ { - "name": "Green Metaverse Token", + "name": "GMT", "symbol": "GMT", "type": "SPL", "decimals": 9, @@ -17,8 +17,8 @@ "url": "https://reddit.com/r/StepN/" }, { - "name": "twitter", - "url": "https://twitter.com/Stepnofficial" + "name": "x", + "url": "https://x.com/Stepnofficial" }, { "name": "coinmarketcap", @@ -33,4 +33,4 @@ "url": "https://discord.com/invite/stepn" } ] -} +} \ No newline at end of file diff --git a/blockchains/solana/assets/7iBQu5mGrkrJ6jr1dNf6U6Ew9un5UmSS4m67NJPjpump/info.json b/blockchains/solana/assets/7iBQu5mGrkrJ6jr1dNf6U6Ew9un5UmSS4m67NJPjpump/info.json new file mode 100644 index 0000000000000..b5fb01783d18c --- /dev/null +++ b/blockchains/solana/assets/7iBQu5mGrkrJ6jr1dNf6U6Ew9un5UmSS4m67NJPjpump/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Digital Euro", + "type": "SPL", + "symbol": "FAKE EURC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/7iBQu5mGrkrJ6jr1dNf6U6Ew9un5UmSS4m67NJPjpump", + "explorer": "https://solscan.io/token/7iBQu5mGrkrJ6jr1dNf6U6Ew9un5UmSS4m67NJPjpump", + "status": "spam", + "id": "7iBQu5mGrkrJ6jr1dNf6U6Ew9un5UmSS4m67NJPjpump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/7iT1GRYYhEop2nV1dyCwK2MGyLmPHq47WhPGSwiqcUg5/info.json b/blockchains/solana/assets/7iT1GRYYhEop2nV1dyCwK2MGyLmPHq47WhPGSwiqcUg5/info.json new file mode 100644 index 0000000000000..dc9fe9a4a0508 --- /dev/null +++ b/blockchains/solana/assets/7iT1GRYYhEop2nV1dyCwK2MGyLmPHq47WhPGSwiqcUg5/info.json @@ -0,0 +1,21 @@ +{ + "name": "ANALOS", + "website": "https://www.analos.meme", + "description": "GRAB YOUR $ANALOS AND MOONWALK TO THE MOON – IT'S THE ONLY WAY TO GO FORWARD", + "explorer": "https://solscan.io/token/7iT1GRYYhEop2nV1dyCwK2MGyLmPHq47WhPGSwiqcUg5", + "symbol": "ANALOS", + "type": "SPL", + "decimals": 8, + "status": "active", + "id": "7iT1GRYYhEop2nV1dyCwK2MGyLmPHq47WhPGSwiqcUg5", + "links": [ + { + "name": "telegram", + "url": "https://t.me/analos_coin" + }, + { + "name": "x", + "url": "https://x.com/analos_coin__" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7iT1GRYYhEop2nV1dyCwK2MGyLmPHq47WhPGSwiqcUg5/logo.png b/blockchains/solana/assets/7iT1GRYYhEop2nV1dyCwK2MGyLmPHq47WhPGSwiqcUg5/logo.png new file mode 100644 index 0000000000000..d175aab19c3d9 Binary files /dev/null and b/blockchains/solana/assets/7iT1GRYYhEop2nV1dyCwK2MGyLmPHq47WhPGSwiqcUg5/logo.png differ diff --git a/blockchains/solana/assets/7kCwAK7QTD3RfytgCV4vX8i5RX3NXZDJHsxG8W9wk7DA/info.json b/blockchains/solana/assets/7kCwAK7QTD3RfytgCV4vX8i5RX3NXZDJHsxG8W9wk7DA/info.json new file mode 100644 index 0000000000000..51f7431ca1b4c --- /dev/null +++ b/blockchains/solana/assets/7kCwAK7QTD3RfytgCV4vX8i5RX3NXZDJHsxG8W9wk7DA/info.json @@ -0,0 +1,25 @@ +{ + "name": "New Coronavirus", + "type": "SOL", + "symbol": "HKU5", + "decimals": 2, + "description": "$New Coronavirus is preparing to expand beyond Solana, with multichain integration on the horizon. This strategic move will allow us to reach a broader audience, enhance accessibility, and foster deeper DeFi partnerships across multiple blockchains. Stay tuned as we unlock new opportunities for the New Coronavirus ecosystem, driving innovation and growth on a global scale.", + "website": "https://coronavirus.vip/", + "explorer": "https://solscan.io/token/7kCwAK7QTD3RfytgCV4vX8i5RX3NXZDJHsxG8W9wk7DA", + "id": "7kCwAK7QTD3RfytgCV4vX8i5RX3NXZDJHsxG8W9wk7DA", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/CoronavirusHKU5" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/new-coronavirus/" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/7kCwAK7QTD3RfytgCV4vX8i5RX3NXZDJHsxG8W9wk7DA/logo.png b/blockchains/solana/assets/7kCwAK7QTD3RfytgCV4vX8i5RX3NXZDJHsxG8W9wk7DA/logo.png new file mode 100644 index 0000000000000..471a5680bbe16 Binary files /dev/null and b/blockchains/solana/assets/7kCwAK7QTD3RfytgCV4vX8i5RX3NXZDJHsxG8W9wk7DA/logo.png differ diff --git a/blockchains/solana/assets/7kbnvuGBxxj8AG9qp8Scn56muWGaRaFqxg1FsRp3PaFT/info.json b/blockchains/solana/assets/7kbnvuGBxxj8AG9qp8Scn56muWGaRaFqxg1FsRp3PaFT/info.json new file mode 100644 index 0000000000000..ce1e212454fbb --- /dev/null +++ b/blockchains/solana/assets/7kbnvuGBxxj8AG9qp8Scn56muWGaRaFqxg1FsRp3PaFT/info.json @@ -0,0 +1,28 @@ +{ + "name": "UXD Stablecoin", + "type": "SPL", + "symbol": "UXD", + "decimals": 6, + "description": "UXD Stablecoin (UXD) is a cryptocurrency token and operates on the Solana platform. UXD Stablecoin has a current supply of 1,000,000 with 0 in circulation. The last known price of UXD Stablecoin is 1.00175787 USD and is up 0.15 over the last 24 hours.", + "website": "https://uxd.fi/", + "explorer": "https://solscan.io/token/7kbnvuGBxxj8AG9qp8Scn56muWGaRaFqxg1FsRp3PaFT", + "id": "7kbnvuGBxxj8AG9qp8Scn56muWGaRaFqxg1FsRp3PaFT", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/UXDProtocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/uxd-stablecoin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/uxd-stablecoin" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7kbnvuGBxxj8AG9qp8Scn56muWGaRaFqxg1FsRp3PaFT/logo.png b/blockchains/solana/assets/7kbnvuGBxxj8AG9qp8Scn56muWGaRaFqxg1FsRp3PaFT/logo.png new file mode 100644 index 0000000000000..3a21a5f16b906 Binary files /dev/null and b/blockchains/solana/assets/7kbnvuGBxxj8AG9qp8Scn56muWGaRaFqxg1FsRp3PaFT/logo.png differ diff --git a/blockchains/solana/assets/7koyaGqHPpdEAxWQdFH9GHVW8jC4zwXgA3rFcrM1wkBK/info.json b/blockchains/solana/assets/7koyaGqHPpdEAxWQdFH9GHVW8jC4zwXgA3rFcrM1wkBK/info.json new file mode 100644 index 0000000000000..01c8bb4bcc362 --- /dev/null +++ b/blockchains/solana/assets/7koyaGqHPpdEAxWQdFH9GHVW8jC4zwXgA3rFcrM1wkBK/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE ЕՍR.Сoin", + "type": "SPL", + "symbol": "FAKE ЕՍR.С", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/7koyaGqHPpdEAxWQdFH9GHVW8jC4zwXgA3rFcrM1wkBK", + "explorer": "https://solscan.io/token/7koyaGqHPpdEAxWQdFH9GHVW8jC4zwXgA3rFcrM1wkBK", + "status": "spam", + "id": "7koyaGqHPpdEAxWQdFH9GHVW8jC4zwXgA3rFcrM1wkBK" +} \ No newline at end of file diff --git a/blockchains/solana/assets/7m3g7x9a8NyCiPWWKUhX1S2LXVuiJfVxKYqvJYsRpump/info.json b/blockchains/solana/assets/7m3g7x9a8NyCiPWWKUhX1S2LXVuiJfVxKYqvJYsRpump/info.json new file mode 100644 index 0000000000000..a84fcc0acfddb --- /dev/null +++ b/blockchains/solana/assets/7m3g7x9a8NyCiPWWKUhX1S2LXVuiJfVxKYqvJYsRpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Nitro", + "type": "SPL", + "symbol": "NITRO", + "decimals": 6, + "website": "https://nitrofrog.xyz", + "description": "Nitro Token is an AI-generated meme coin", + "explorer": "https://solscan.io/token/7m3g7x9a8NyCiPWWKUhX1S2LXVuiJfVxKYqvJYsRpump", + "status": "active", + "id": "7m3g7x9a8NyCiPWWKUhX1S2LXVuiJfVxKYqvJYsRpump", + "links": [ + { + "name": "x", + "url": "https://x.com/NitroFrogSol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nitro-frog/" + } + ] +} diff --git a/blockchains/solana/assets/7m3g7x9a8NyCiPWWKUhX1S2LXVuiJfVxKYqvJYsRpump/logo.png b/blockchains/solana/assets/7m3g7x9a8NyCiPWWKUhX1S2LXVuiJfVxKYqvJYsRpump/logo.png new file mode 100644 index 0000000000000..10e20a277ca9e Binary files /dev/null and b/blockchains/solana/assets/7m3g7x9a8NyCiPWWKUhX1S2LXVuiJfVxKYqvJYsRpump/logo.png differ diff --git a/blockchains/solana/assets/7njsg9BA1xvXX9DNpe5fERHK4zb7MbCHKZ6zsx5k3adr/info.json b/blockchains/solana/assets/7njsg9BA1xvXX9DNpe5fERHK4zb7MbCHKZ6zsx5k3adr/info.json new file mode 100644 index 0000000000000..5f5260b613af9 --- /dev/null +++ b/blockchains/solana/assets/7njsg9BA1xvXX9DNpe5fERHK4zb7MbCHKZ6zsx5k3adr/info.json @@ -0,0 +1,21 @@ +{ + "name": "Family", + "type": "SPL", + "symbol": "FAM", + "decimals": 9, + "website": "https://www.thefamilytoken.com", + "description": "Welcome to $FAM, where every member is family and every post brings us closer to our 1 billion market cap dream.", + "explorer": "https://solscan.io/token/7njsg9BA1xvXX9DNpe5fERHK4zb7MbCHKZ6zsx5k3adr", + "status": "active", + "id": "7njsg9BA1xvXX9DNpe5fERHK4zb7MbCHKZ6zsx5k3adr", + "links": [ + { + "name": "x", + "url": "https://x.com/familytokenoffl" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/family-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7njsg9BA1xvXX9DNpe5fERHK4zb7MbCHKZ6zsx5k3adr/logo.png b/blockchains/solana/assets/7njsg9BA1xvXX9DNpe5fERHK4zb7MbCHKZ6zsx5k3adr/logo.png new file mode 100644 index 0000000000000..0a5e07be2c831 Binary files /dev/null and b/blockchains/solana/assets/7njsg9BA1xvXX9DNpe5fERHK4zb7MbCHKZ6zsx5k3adr/logo.png differ diff --git a/blockchains/solana/assets/7oBYdEhV4GkXC19ZfgAvXpJWp2Rn9pm1Bx2cVNxFpump/info.json b/blockchains/solana/assets/7oBYdEhV4GkXC19ZfgAvXpJWp2Rn9pm1Bx2cVNxFpump/info.json new file mode 100644 index 0000000000000..438001bd02617 --- /dev/null +++ b/blockchains/solana/assets/7oBYdEhV4GkXC19ZfgAvXpJWp2Rn9pm1Bx2cVNxFpump/info.json @@ -0,0 +1,17 @@ +{ + "name": "Central African Republic Meme", + "type": "SPL", + "symbol": "CAR", + "decimals": 6, + "website": "https://www.carmemecoin.com", + "description": "Central African Republic are launching $CAR - an experiment designed to show how something as simple as a meme can unite people, support national development, and put the Central African Republic on the world stage in a unique way.", + "explorer": "https://solscan.io/token/7oBYdEhV4GkXC19ZfgAvXpJWp2Rn9pm1Bx2cVNxFpump", + "status": "active", + "id": "7oBYdEhV4GkXC19ZfgAvXpJWp2Rn9pm1Bx2cVNxFpump", + "links": [ + { + "name": "x", + "url": "https://x.com/CARMemecoinNews" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7oBYdEhV4GkXC19ZfgAvXpJWp2Rn9pm1Bx2cVNxFpump/logo.png b/blockchains/solana/assets/7oBYdEhV4GkXC19ZfgAvXpJWp2Rn9pm1Bx2cVNxFpump/logo.png new file mode 100644 index 0000000000000..5e1907d1f02f9 Binary files /dev/null and b/blockchains/solana/assets/7oBYdEhV4GkXC19ZfgAvXpJWp2Rn9pm1Bx2cVNxFpump/logo.png differ diff --git a/blockchains/solana/assets/7p6rKTDSAhGzD7JPTf3EQSjMdy7KKjcXEQVnFetebdkY/info.json b/blockchains/solana/assets/7p6rKTDSAhGzD7JPTf3EQSjMdy7KKjcXEQVnFetebdkY/info.json new file mode 100644 index 0000000000000..5b4d779471ddd --- /dev/null +++ b/blockchains/solana/assets/7p6rKTDSAhGzD7JPTf3EQSjMdy7KKjcXEQVnFetebdkY/info.json @@ -0,0 +1,21 @@ +{ + "name": "Simpson AI Agent", + "type": "SPL", + "symbol": "SimpsonAI", + "decimals": 2, + "website": "https://simpsonai.club/", + "description": "Simpson AI Agent🍺Trained on Homer’s soul, bringing his one-of-a-kind personality to life! ", + "explorer": "https://solscan.io/token/7p6rKTDSAhGzD7JPTf3EQSjMdy7KKjcXEQVnFetebdkY", + "status": "active", + "id": "7p6rKTDSAhGzD7JPTf3EQSjMdy7KKjcXEQVnFetebdkY", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/simpson-ai-agent/" + }, + { + "name": "x", + "url": "https://x.com/HomerSimpson_HS" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7p6rKTDSAhGzD7JPTf3EQSjMdy7KKjcXEQVnFetebdkY/logo.png b/blockchains/solana/assets/7p6rKTDSAhGzD7JPTf3EQSjMdy7KKjcXEQVnFetebdkY/logo.png new file mode 100644 index 0000000000000..c2f3fcd94e118 Binary files /dev/null and b/blockchains/solana/assets/7p6rKTDSAhGzD7JPTf3EQSjMdy7KKjcXEQVnFetebdkY/logo.png differ diff --git a/blockchains/solana/assets/7qy1j4Mechfyr6uAST3djH4vk4kiEYC2cjEytXdondo/info.json b/blockchains/solana/assets/7qy1j4Mechfyr6uAST3djH4vk4kiEYC2cjEytXdondo/info.json new file mode 100644 index 0000000000000..6ecff3c155e4c --- /dev/null +++ b/blockchains/solana/assets/7qy1j4Mechfyr6uAST3djH4vk4kiEYC2cjEytXdondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Ondas Holdings (Ondo Tokenized)", + "type": "SPL", + "symbol": "ONDSon", + "decimals": 9, + "description": "ONDSon is the Ondo Tokenized version of Ondas Holdings, giving tokenholders economic exposure similar to holding ONDS and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/7qy1j4Mechfyr6uAST3djH4vk4kiEYC2cjEytXdondo", + "status": "active", + "id": "7qy1j4Mechfyr6uAST3djH4vk4kiEYC2cjEytXdondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ondas-holdings-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ondas-holdings-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7qy1j4Mechfyr6uAST3djH4vk4kiEYC2cjEytXdondo/logo.png b/blockchains/solana/assets/7qy1j4Mechfyr6uAST3djH4vk4kiEYC2cjEytXdondo/logo.png new file mode 100644 index 0000000000000..13f4d282cca75 Binary files /dev/null and b/blockchains/solana/assets/7qy1j4Mechfyr6uAST3djH4vk4kiEYC2cjEytXdondo/logo.png differ diff --git a/blockchains/solana/assets/7rKUpXmp9Hji4PZuEbHYpuXAZgArGVkEYNipvdkDAav9/info.json b/blockchains/solana/assets/7rKUpXmp9Hji4PZuEbHYpuXAZgArGVkEYNipvdkDAav9/info.json new file mode 100644 index 0000000000000..73a7104fdbcbb --- /dev/null +++ b/blockchains/solana/assets/7rKUpXmp9Hji4PZuEbHYpuXAZgArGVkEYNipvdkDAav9/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Տοlаnа", + "type": "SPL", + "symbol": "FAKE ՏΟᏞ", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/7rKUpXmp9Hji4PZuEbHYpuXAZgArGVkEYNipvdkDAav9", + "explorer": "https://solscan.io/token/7rKUpXmp9Hji4PZuEbHYpuXAZgArGVkEYNipvdkDAav9", + "status": "spam", + "id": "7rKUpXmp9Hji4PZuEbHYpuXAZgArGVkEYNipvdkDAav9" +} \ No newline at end of file diff --git a/blockchains/solana/assets/7rpGuokxiZhcjFbSHSXcnFytLG7LedYvKH9fmy2cbmM7/info.json b/blockchains/solana/assets/7rpGuokxiZhcjFbSHSXcnFytLG7LedYvKH9fmy2cbmM7/info.json new file mode 100644 index 0000000000000..5c050a5ac6931 --- /dev/null +++ b/blockchains/solana/assets/7rpGuokxiZhcjFbSHSXcnFytLG7LedYvKH9fmy2cbmM7/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDT", + "type": "SPL", + "symbol": "FAKE USDT", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/7rpGuokxiZhcjFbSHSXcnFytLG7LedYvKH9fmy2cbmM7", + "explorer": "https://solscan.io/token/7rpGuokxiZhcjFbSHSXcnFytLG7LedYvKH9fmy2cbmM7", + "status": "spam", + "id": "7rpGuokxiZhcjFbSHSXcnFytLG7LedYvKH9fmy2cbmM7" +} \ No newline at end of file diff --git a/blockchains/solana/assets/7rquKVxJKSusFK4PmFWRXBkorPCg97z83GzA2cH7pump/info.json b/blockchains/solana/assets/7rquKVxJKSusFK4PmFWRXBkorPCg97z83GzA2cH7pump/info.json new file mode 100644 index 0000000000000..2919c8790eead --- /dev/null +++ b/blockchains/solana/assets/7rquKVxJKSusFK4PmFWRXBkorPCg97z83GzA2cH7pump/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM United Stable Kirk Coin", + "type": "SPL", + "symbol": "SCAM USKC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/7rquKVxJKSusFK4PmFWRXBkorPCg97z83GzA2cH7pump", + "explorer": "https://solscan.io/token/7rquKVxJKSusFK4PmFWRXBkorPCg97z83GzA2cH7pump", + "status": "spam", + "id": "7rquKVxJKSusFK4PmFWRXBkorPCg97z83GzA2cH7pump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/7unYePWUHcpB28cnS65TpqT2qqmZaftRz9QABkdR8yN7/info.json b/blockchains/solana/assets/7unYePWUHcpB28cnS65TpqT2qqmZaftRz9QABkdR8yN7/info.json new file mode 100644 index 0000000000000..333a7cf81a05e --- /dev/null +++ b/blockchains/solana/assets/7unYePWUHcpB28cnS65TpqT2qqmZaftRz9QABkdR8yN7/info.json @@ -0,0 +1,28 @@ +{ + "name": "ZEBU", + "type": "SPL", + "symbol": "ZEBU", + "decimals": 6, + "description": "Zebu is the first bear themed memecoin on Solana built by solana degens. It is born by the need of the culture to welcome bears into the memecoin era. Built in the bull season of 2024 , Zebu aims to add value and fun to the solana ecosystem.", + "website": "https://zebusolana.com/", + "explorer": "https://solscan.io/token/7unYePWUHcpB28cnS65TpqT2qqmZaftRz9QABkdR8yN7", + "id": "7unYePWUHcpB28cnS65TpqT2qqmZaftRz9QABkdR8yN7", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/ZebuSolana" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zebu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/zebu" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7unYePWUHcpB28cnS65TpqT2qqmZaftRz9QABkdR8yN7/logo.png b/blockchains/solana/assets/7unYePWUHcpB28cnS65TpqT2qqmZaftRz9QABkdR8yN7/logo.png new file mode 100644 index 0000000000000..f64da1988f01c Binary files /dev/null and b/blockchains/solana/assets/7unYePWUHcpB28cnS65TpqT2qqmZaftRz9QABkdR8yN7/logo.png differ diff --git a/blockchains/solana/assets/7vsKatZ8BAKXXb16ZZMJyg9X3iLn8Zpq4yBPg8mWBLMd/info.json b/blockchains/solana/assets/7vsKatZ8BAKXXb16ZZMJyg9X3iLn8Zpq4yBPg8mWBLMd/info.json new file mode 100644 index 0000000000000..c6d3febe34e69 --- /dev/null +++ b/blockchains/solana/assets/7vsKatZ8BAKXXb16ZZMJyg9X3iLn8Zpq4yBPg8mWBLMd/info.json @@ -0,0 +1,29 @@ +{ + "name": "PumpAI", + "type": "SOL", + "symbol": "PumpAI", + "decimals": 6, + "description": "PumpAI scans Crypto Twitter for trending metas to have the most up to date information on whats popular right now. PumpAI will use all the information and tools at its disposal to help you create your coin. Everything you need: descriptions, images, tokens and pools will all be handled by the AI. All you need to do is prompt it.", + "website": "https://pumpai.ag/", + "explorer": "https://solscan.io/token/7vsKatZ8BAKXXb16ZZMJyg9X3iLn8Zpq4yBPg8mWBLMd", + "id": "7vsKatZ8BAKXXb16ZZMJyg9X3iLn8Zpq4yBPg8mWBLMd", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/pumpdotai" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pumpai/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pumpai" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/7vsKatZ8BAKXXb16ZZMJyg9X3iLn8Zpq4yBPg8mWBLMd/logo.png b/blockchains/solana/assets/7vsKatZ8BAKXXb16ZZMJyg9X3iLn8Zpq4yBPg8mWBLMd/logo.png new file mode 100644 index 0000000000000..6c94000616d99 Binary files /dev/null and b/blockchains/solana/assets/7vsKatZ8BAKXXb16ZZMJyg9X3iLn8Zpq4yBPg8mWBLMd/logo.png differ diff --git a/blockchains/solana/assets/7x4FgiFfeqzs1tiUNvJzpt47GtLXAJ8Jfn8G1Hyyu6JH/info.json b/blockchains/solana/assets/7x4FgiFfeqzs1tiUNvJzpt47GtLXAJ8Jfn8G1Hyyu6JH/info.json new file mode 100644 index 0000000000000..0f6aeb72a40a5 --- /dev/null +++ b/blockchains/solana/assets/7x4FgiFfeqzs1tiUNvJzpt47GtLXAJ8Jfn8G1Hyyu6JH/info.json @@ -0,0 +1,21 @@ +{ + "name": "Smilek", + "symbol": "SMILEK", + "type": "SPL", + "decimals": 6, + "description": "SMILEK is revolutionizing the crypto space, challenging traditional finance with a grin! Born to defy the norms, SMILEK is not just a token, but a movement.", + "website": "https://www.smilektothebank.online/", + "explorer": "https://solscan.io/token/7x4FgiFfeqzs1tiUNvJzpt47GtLXAJ8Jfn8G1Hyyu6JH", + "status": "active", + "id": "7x4FgiFfeqzs1tiUNvJzpt47GtLXAJ8Jfn8G1Hyyu6JH", + "links": [ + { + "name": "x", + "url": "https://x.com/SmileKtothebank" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bscbet-online" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7x4FgiFfeqzs1tiUNvJzpt47GtLXAJ8Jfn8G1Hyyu6JH/logo.png b/blockchains/solana/assets/7x4FgiFfeqzs1tiUNvJzpt47GtLXAJ8Jfn8G1Hyyu6JH/logo.png new file mode 100644 index 0000000000000..c29fbe2f45869 Binary files /dev/null and b/blockchains/solana/assets/7x4FgiFfeqzs1tiUNvJzpt47GtLXAJ8Jfn8G1Hyyu6JH/logo.png differ diff --git a/blockchains/solana/assets/7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU/info.json b/blockchains/solana/assets/7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU/info.json index 89b3ab0005f3f..00e309145e4be 100644 --- a/blockchains/solana/assets/7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU/info.json +++ b/blockchains/solana/assets/7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU/info.json @@ -10,8 +10,8 @@ "id": "7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU", "links": [ { - "name": "twitter", - "url": "https://twitter.com/samoyedcoin" + "name": "x", + "url": "https://x.com/samoyedcoin" }, { "name": "telegram", diff --git a/blockchains/solana/assets/81f9WRdbdpf4qrwLMSrG3DVMHbNUxfPemhGbkE7bpump/info.json b/blockchains/solana/assets/81f9WRdbdpf4qrwLMSrG3DVMHbNUxfPemhGbkE7bpump/info.json new file mode 100644 index 0000000000000..bac76df4891c2 --- /dev/null +++ b/blockchains/solana/assets/81f9WRdbdpf4qrwLMSrG3DVMHbNUxfPemhGbkE7bpump/info.json @@ -0,0 +1,26 @@ +{ + "name": "ClustroAI", + "type": "SOL", + "symbol": "CTOAI", + "decimals": 6, + "description": "ClustroAI is the AI protocol and framework, revolutionizing Edge AI with containerized architectures, GPU acceleration, and scalable computing. Optimizing AI protocols for low-latency, distributed environments, it powers the next-gen AI applications.", + "website": "https://www.clustroai.com/", + "explorer": "https://solscan.io/token/81f9WRdbdpf4qrwLMSrG3DVMHbNUxfPemhGbkE7bpump", + "id": "81f9WRdbdpf4qrwLMSrG3DVMHbNUxfPemhGbkE7bpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/ClustroAI_" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/clustroai/" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/81f9WRdbdpf4qrwLMSrG3DVMHbNUxfPemhGbkE7bpump/logo.png b/blockchains/solana/assets/81f9WRdbdpf4qrwLMSrG3DVMHbNUxfPemhGbkE7bpump/logo.png new file mode 100644 index 0000000000000..c64dc3bc2db55 Binary files /dev/null and b/blockchains/solana/assets/81f9WRdbdpf4qrwLMSrG3DVMHbNUxfPemhGbkE7bpump/logo.png differ diff --git a/blockchains/solana/assets/81xLFvCzFaUM3KDxSHC75pXu3RPCeSeCbmGBY8aondo/info.json b/blockchains/solana/assets/81xLFvCzFaUM3KDxSHC75pXu3RPCeSeCbmGBY8aondo/info.json new file mode 100644 index 0000000000000..8a37d63f363f6 --- /dev/null +++ b/blockchains/solana/assets/81xLFvCzFaUM3KDxSHC75pXu3RPCeSeCbmGBY8aondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Texas Instruments (Ondo Tokenized)", + "type": "SPL", + "symbol": "TXNon", + "decimals": 9, + "description": "TXNon is the Ondo Tokenized version of Texas Instruments, giving tokenholders economic exposure similar to holding TXN and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/81xLFvCzFaUM3KDxSHC75pXu3RPCeSeCbmGBY8aondo", + "status": "active", + "id": "81xLFvCzFaUM3KDxSHC75pXu3RPCeSeCbmGBY8aondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/texas-instruments-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/texas-instruments-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/81xLFvCzFaUM3KDxSHC75pXu3RPCeSeCbmGBY8aondo/logo.png b/blockchains/solana/assets/81xLFvCzFaUM3KDxSHC75pXu3RPCeSeCbmGBY8aondo/logo.png new file mode 100644 index 0000000000000..cc54cd49704f9 Binary files /dev/null and b/blockchains/solana/assets/81xLFvCzFaUM3KDxSHC75pXu3RPCeSeCbmGBY8aondo/logo.png differ diff --git a/blockchains/solana/assets/83LQRQkFgCvRJy9sToiNogzuhURb7wEbfBve88nmchbs/info.json b/blockchains/solana/assets/83LQRQkFgCvRJy9sToiNogzuhURb7wEbfBve88nmchbs/info.json new file mode 100644 index 0000000000000..64c8dd9caad2f --- /dev/null +++ b/blockchains/solana/assets/83LQRQkFgCvRJy9sToiNogzuhURb7wEbfBve88nmchbs/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDT", + "type": "SPL", + "symbol": "FAKE USDT", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/83LQRQkFgCvRJy9sToiNogzuhURb7wEbfBve88nmchbs", + "explorer": "https://solscan.io/token/83LQRQkFgCvRJy9sToiNogzuhURb7wEbfBve88nmchbs", + "status": "spam", + "id": "83LQRQkFgCvRJy9sToiNogzuhURb7wEbfBve88nmchbs" +} \ No newline at end of file diff --git a/blockchains/solana/assets/83Ur4XYc5QyRNBshoW2Yu9cCLyNDV9s5krBu11JWDxxq/info.json b/blockchains/solana/assets/83Ur4XYc5QyRNBshoW2Yu9cCLyNDV9s5krBu11JWDxxq/info.json new file mode 100644 index 0000000000000..4118ab3a45501 --- /dev/null +++ b/blockchains/solana/assets/83Ur4XYc5QyRNBshoW2Yu9cCLyNDV9s5krBu11JWDxxq/info.json @@ -0,0 +1,21 @@ +{ + "name": "A Fork in the Road", + "website": "https://afitr.art/", + "description": "A Fork in the Road (AFITR) is a meme coin inspired by the conceptual art piece commissioned by Elon Musk.", + "explorer": "hhttps://solscan.io/token/83Ur4XYc5QyRNBshoW2Yu9cCLyNDV9s5krBu11JWDxxq", + "type": "SPL", + "symbol": "AFITR", + "decimals": 6, + "status": "active", + "id": "83Ur4XYc5QyRNBshoW2Yu9cCLyNDV9s5krBu11JWDxxq", + "links": [ + { + "name": "x", + "url": "https://x.com/afitrcto" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/a-fork-in-the-road/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/83Ur4XYc5QyRNBshoW2Yu9cCLyNDV9s5krBu11JWDxxq/logo.png b/blockchains/solana/assets/83Ur4XYc5QyRNBshoW2Yu9cCLyNDV9s5krBu11JWDxxq/logo.png new file mode 100644 index 0000000000000..a97ce044ce381 Binary files /dev/null and b/blockchains/solana/assets/83Ur4XYc5QyRNBshoW2Yu9cCLyNDV9s5krBu11JWDxxq/logo.png differ diff --git a/blockchains/solana/assets/83iBDw3ZpxqJ3pEzrbttr9fGA57tttehDAxoFyR1moon/info.json b/blockchains/solana/assets/83iBDw3ZpxqJ3pEzrbttr9fGA57tttehDAxoFyR1moon/info.json new file mode 100644 index 0000000000000..76eca23f737d2 --- /dev/null +++ b/blockchains/solana/assets/83iBDw3ZpxqJ3pEzrbttr9fGA57tttehDAxoFyR1moon/info.json @@ -0,0 +1,21 @@ +{ + "name": "SaMEMDEX100ros", + "type": "SPL", + "symbol": "MEMDEX", + "decimals": 9, + "website": "https://memdex.live", + "description": "A Revolutionary Ecosystem for the Future of Decentralized Finance", + "explorer": "https://solscan.io/token/83iBDw3ZpxqJ3pEzrbttr9fGA57tttehDAxoFyR1moon", + "status": "active", + "id": "83iBDw3ZpxqJ3pEzrbttr9fGA57tttehDAxoFyR1moon", + "links": [ + { + "name": "x", + "url": "https://x.com/memdex100" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/memdex100" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/83iBDw3ZpxqJ3pEzrbttr9fGA57tttehDAxoFyR1moon/logo.png b/blockchains/solana/assets/83iBDw3ZpxqJ3pEzrbttr9fGA57tttehDAxoFyR1moon/logo.png new file mode 100644 index 0000000000000..009afa91208dd Binary files /dev/null and b/blockchains/solana/assets/83iBDw3ZpxqJ3pEzrbttr9fGA57tttehDAxoFyR1moon/logo.png differ diff --git a/blockchains/solana/assets/85VBFQZC9TZkfaptBWjvUw7YbZjy52A6mjtPGjstQAmQ/info.json b/blockchains/solana/assets/85VBFQZC9TZkfaptBWjvUw7YbZjy52A6mjtPGjstQAmQ/info.json new file mode 100644 index 0000000000000..60085d8da5199 --- /dev/null +++ b/blockchains/solana/assets/85VBFQZC9TZkfaptBWjvUw7YbZjy52A6mjtPGjstQAmQ/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wormhole", + "website": "https://wormhole.com", + "description": "Wormhole is the leading interoperability platform that powers multichain applications and bridges at scale.", + "explorer": "https://solscan.io/token/85VBFQZC9TZkfaptBWjvUw7YbZjy52A6mjtPGjstQAmQ", + "type": "SPL", + "symbol": "W", + "decimals": 6, + "status": "active", + "id": "85VBFQZC9TZkfaptBWjvUw7YbZjy52A6mjtPGjstQAmQ", + "links": [ + { + "name": "x", + "url": "https://x.com/wormhole" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wormhole/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/85VBFQZC9TZkfaptBWjvUw7YbZjy52A6mjtPGjstQAmQ/logo.png b/blockchains/solana/assets/85VBFQZC9TZkfaptBWjvUw7YbZjy52A6mjtPGjstQAmQ/logo.png new file mode 100644 index 0000000000000..fb4aa381cad34 Binary files /dev/null and b/blockchains/solana/assets/85VBFQZC9TZkfaptBWjvUw7YbZjy52A6mjtPGjstQAmQ/logo.png differ diff --git a/blockchains/solana/assets/85cQsFgbi8mBZxiPppbpPXuV7j1hA8tBwhjF4gKW6mHg/info.json b/blockchains/solana/assets/85cQsFgbi8mBZxiPppbpPXuV7j1hA8tBwhjF4gKW6mHg/info.json new file mode 100644 index 0000000000000..a4dff7ac8fba9 --- /dev/null +++ b/blockchains/solana/assets/85cQsFgbi8mBZxiPppbpPXuV7j1hA8tBwhjF4gKW6mHg/info.json @@ -0,0 +1,21 @@ +{ + "name": "Rizzmas", + "symbol": "RIZZMAS", + "type": "SPL", + "decimals": 6, + "description": "Rizzmas is a Christmas token, financial venture with a focus on creating hype and community engagement. The reference to Santa, market caps, and seasonal celebration suggests it’s blending the festive holiday spirit with crypto trading or investments.", + "website": "https://rizzmas.lol/", + "explorer": "https://solscan.io/token/85cQsFgbi8mBZxiPppbpPXuV7j1hA8tBwhjF4gKW6mHg", + "status": "active", + "id": "85cQsFgbi8mBZxiPppbpPXuV7j1hA8tBwhjF4gKW6mHg", + "links": [ + { + "name": "x", + "url": "https://x.com/rizzmascto" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rizzmas/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/85cQsFgbi8mBZxiPppbpPXuV7j1hA8tBwhjF4gKW6mHg/logo.png b/blockchains/solana/assets/85cQsFgbi8mBZxiPppbpPXuV7j1hA8tBwhjF4gKW6mHg/logo.png new file mode 100644 index 0000000000000..f18ac7503bb8a Binary files /dev/null and b/blockchains/solana/assets/85cQsFgbi8mBZxiPppbpPXuV7j1hA8tBwhjF4gKW6mHg/logo.png differ diff --git a/blockchains/solana/assets/864YJRb3JAVARC4FNuDtPKFxdEsYRbB39Nwxkzudxy46/info.json b/blockchains/solana/assets/864YJRb3JAVARC4FNuDtPKFxdEsYRbB39Nwxkzudxy46/info.json new file mode 100644 index 0000000000000..e359c8963270a --- /dev/null +++ b/blockchains/solana/assets/864YJRb3JAVARC4FNuDtPKFxdEsYRbB39Nwxkzudxy46/info.json @@ -0,0 +1,21 @@ +{ + "name": "HABIBICAT", + "website": "https://habibi.xyz/", + "description": "Popular luxury memecoin on Sol, crafted for Sheikhs and Elite investors.", + "explorer": "https://solscan.io/token/864YJRb3JAVARC4FNuDtPKFxdEsYRbB39Nwxkzudxy46", + "type": "SPL", + "symbol": "HABIBI", + "decimals": 6, + "status": "active", + "id": "864YJRb3JAVARC4FNuDtPKFxdEsYRbB39Nwxkzudxy46", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/habibi-cat/" + }, + { + "name": "x", + "url": "https://x.com/habibixyz_sol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/864YJRb3JAVARC4FNuDtPKFxdEsYRbB39Nwxkzudxy46/logo.png b/blockchains/solana/assets/864YJRb3JAVARC4FNuDtPKFxdEsYRbB39Nwxkzudxy46/logo.png new file mode 100644 index 0000000000000..c5d5b677c83b7 Binary files /dev/null and b/blockchains/solana/assets/864YJRb3JAVARC4FNuDtPKFxdEsYRbB39Nwxkzudxy46/logo.png differ diff --git a/blockchains/solana/assets/86t88w3MKT38HChTBKBwEeb1RW1MeTceaW68qY2Vpump/info.json b/blockchains/solana/assets/86t88w3MKT38HChTBKBwEeb1RW1MeTceaW68qY2Vpump/info.json new file mode 100644 index 0000000000000..2d1c8ff9aae40 --- /dev/null +++ b/blockchains/solana/assets/86t88w3MKT38HChTBKBwEeb1RW1MeTceaW68qY2Vpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "LIMITUS", + "type": "SPL", + "symbol": "LMT", + "decimals": 6, + "website": "https://www.limitus.ai/", + "description": "LIMITUS is a groundbreaking AI-driven platform that unifies Web2 and Web3 ecosystems, empowering users to automate workflows, execute financial operations, and simplify complex tasks with intuitive voice commands", + "explorer": "https://solscan.io/token/86t88w3MKT38HChTBKBwEeb1RW1MeTceaW68qY2Vpump", + "status": "active", + "id": "86t88w3MKT38HChTBKBwEeb1RW1MeTceaW68qY2Vpump", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/limitus" + }, + { + "name": "x", + "url": "https://x.com/LimitusIntel" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/86t88w3MKT38HChTBKBwEeb1RW1MeTceaW68qY2Vpump/logo.png b/blockchains/solana/assets/86t88w3MKT38HChTBKBwEeb1RW1MeTceaW68qY2Vpump/logo.png new file mode 100644 index 0000000000000..714352348629f Binary files /dev/null and b/blockchains/solana/assets/86t88w3MKT38HChTBKBwEeb1RW1MeTceaW68qY2Vpump/logo.png differ diff --git a/blockchains/solana/assets/87hvYXgyGZ16FCCRrhZj45t1q5fgHp7cXj3EeMdDfFxz/info.json b/blockchains/solana/assets/87hvYXgyGZ16FCCRrhZj45t1q5fgHp7cXj3EeMdDfFxz/info.json new file mode 100644 index 0000000000000..486b9245d8300 --- /dev/null +++ b/blockchains/solana/assets/87hvYXgyGZ16FCCRrhZj45t1q5fgHp7cXj3EeMdDfFxz/info.json @@ -0,0 +1,21 @@ +{ + "name": "xrpwifhat", + "symbol": "XRPWIF", + "type": "SPL", + "decimals": 2, + "description": "Introducing XRPNUT — the meme coin that’s here to steal the show! Inspired by the rebellious spirit of a dog donning a robber’s mask, $mask is all about embracing the playful, mischievous side of crypto", + "website": "https://xrpwif.xyz", + "explorer": "https://solscan.io/token/87hvYXgyGZ16FCCRrhZj45t1q5fgHp7cXj3EeMdDfFxz", + "status": "active", + "id": "87hvYXgyGZ16FCCRrhZj45t1q5fgHp7cXj3EeMdDfFxz", + "links": [ + { + "name": "x", + "url": "https://x.com/XRP_WIF" + }, + { + "name": "telegram", + "url": "https://t.me/XRP_WIF" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/87hvYXgyGZ16FCCRrhZj45t1q5fgHp7cXj3EeMdDfFxz/logo.png b/blockchains/solana/assets/87hvYXgyGZ16FCCRrhZj45t1q5fgHp7cXj3EeMdDfFxz/logo.png new file mode 100644 index 0000000000000..cb04ac4b1be5c Binary files /dev/null and b/blockchains/solana/assets/87hvYXgyGZ16FCCRrhZj45t1q5fgHp7cXj3EeMdDfFxz/logo.png differ diff --git a/blockchains/solana/assets/884aCANKwx6dCuo1wuKoQ7X3LK8QprFmwj66zPF39b5F/info.json b/blockchains/solana/assets/884aCANKwx6dCuo1wuKoQ7X3LK8QprFmwj66zPF39b5F/info.json new file mode 100644 index 0000000000000..d10c98024c635 --- /dev/null +++ b/blockchains/solana/assets/884aCANKwx6dCuo1wuKoQ7X3LK8QprFmwj66zPF39b5F/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT Teťher", + "type": "SPL", + "symbol": "HONEYPOT USⅮΤ", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/884aCANKwx6dCuo1wuKoQ7X3LK8QprFmwj66zPF39b5F", + "explorer": "https://solscan.io/token/884aCANKwx6dCuo1wuKoQ7X3LK8QprFmwj66zPF39b5F", + "status": "spam", + "id": "884aCANKwx6dCuo1wuKoQ7X3LK8QprFmwj66zPF39b5F" +} \ No newline at end of file diff --git a/blockchains/solana/assets/89D8aUdgHfyCRXYMxgo7ogHDbNnuVpHYRnqFfNF7gone/info.json b/blockchains/solana/assets/89D8aUdgHfyCRXYMxgo7ogHDbNnuVpHYRnqFfNF7gone/info.json new file mode 100644 index 0000000000000..1744b2110285b --- /dev/null +++ b/blockchains/solana/assets/89D8aUdgHfyCRXYMxgo7ogHDbNnuVpHYRnqFfNF7gone/info.json @@ -0,0 +1,26 @@ +{ + "name": "AND IT'S GONE", + "type": "SOL", + "symbol": "GONE", + "decimals": 6, + "description": "$GONE - Making Your Crypto Money Safe. The Popular Meme Now On Solana.", + "website": "https://anditsgone.vip/", + "explorer": "https://solscan.io/token/89D8aUdgHfyCRXYMxgo7ogHDbNnuVpHYRnqFfNF7gone", + "id": "89D8aUdgHfyCRXYMxgo7ogHDbNnuVpHYRnqFfNF7gone", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/AndItsGoneSOL" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/and-its-gone/" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/89D8aUdgHfyCRXYMxgo7ogHDbNnuVpHYRnqFfNF7gone/logo.png b/blockchains/solana/assets/89D8aUdgHfyCRXYMxgo7ogHDbNnuVpHYRnqFfNF7gone/logo.png new file mode 100644 index 0000000000000..478b39fd3aed0 Binary files /dev/null and b/blockchains/solana/assets/89D8aUdgHfyCRXYMxgo7ogHDbNnuVpHYRnqFfNF7gone/logo.png differ diff --git a/blockchains/solana/assets/89nnWMkWeF9LSJvAWcN2JFQfeWdDk6diKEckeToEU1hE/info.json b/blockchains/solana/assets/89nnWMkWeF9LSJvAWcN2JFQfeWdDk6diKEckeToEU1hE/info.json new file mode 100644 index 0000000000000..ac5b469f033b8 --- /dev/null +++ b/blockchains/solana/assets/89nnWMkWeF9LSJvAWcN2JFQfeWdDk6diKEckeToEU1hE/info.json @@ -0,0 +1,21 @@ +{ + "name": "sora labs", + "symbol": "sora", + "type": "SPL", + "decimals": 6, + "description": "That's our motto and it's something we truly believe in whenever we develop a product.", + "website": "https://soralabs.app/", + "explorer": "https://solscan.io/token/89nnWMkWeF9LSJvAWcN2JFQfeWdDk6diKEckeToEU1hE", + "status": "active", + "id": "89nnWMkWeF9LSJvAWcN2JFQfeWdDk6diKEckeToEU1hE", + "links": [ + { + "name": "x", + "url": "https://x.com/labs_sora" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sora-labs" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/89nnWMkWeF9LSJvAWcN2JFQfeWdDk6diKEckeToEU1hE/logo.png b/blockchains/solana/assets/89nnWMkWeF9LSJvAWcN2JFQfeWdDk6diKEckeToEU1hE/logo.png new file mode 100644 index 0000000000000..0de752c183329 Binary files /dev/null and b/blockchains/solana/assets/89nnWMkWeF9LSJvAWcN2JFQfeWdDk6diKEckeToEU1hE/logo.png differ diff --git a/blockchains/solana/assets/89q6aHpZ1fXhuwpnrBgqmCvuAX4GaCrRPQNp5xVHpump/info.json b/blockchains/solana/assets/89q6aHpZ1fXhuwpnrBgqmCvuAX4GaCrRPQNp5xVHpump/info.json new file mode 100644 index 0000000000000..ce042ed6b5a2e --- /dev/null +++ b/blockchains/solana/assets/89q6aHpZ1fXhuwpnrBgqmCvuAX4GaCrRPQNp5xVHpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "hispanic pepe", + "symbol": "CONCHO", + "type": "SPL", + "decimals": 6, + "description": "Sapo Conchito, Hispanic Pepe", + "website": "https://pump.fun/coin/89q6aHpZ1fXhuwpnrBgqmCvuAX4GaCrRPQNp5xVHpump", + "explorer": "https://solscan.io/token/89q6aHpZ1fXhuwpnrBgqmCvuAX4GaCrRPQNp5xVHpump", + "status": "active", + "id": "89q6aHpZ1fXhuwpnrBgqmCvuAX4GaCrRPQNp5xVHpump", + "links": [ + { + "name": "x", + "url": "https://x.com/sapoconchito" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hispanic-pepe" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/89q6aHpZ1fXhuwpnrBgqmCvuAX4GaCrRPQNp5xVHpump/logo.png b/blockchains/solana/assets/89q6aHpZ1fXhuwpnrBgqmCvuAX4GaCrRPQNp5xVHpump/logo.png new file mode 100644 index 0000000000000..d74a38b13f63c Binary files /dev/null and b/blockchains/solana/assets/89q6aHpZ1fXhuwpnrBgqmCvuAX4GaCrRPQNp5xVHpump/logo.png differ diff --git a/blockchains/solana/assets/8BMzMi2XxZn9afRaMx5Z6fauk9foHXqV5cLTCYWRcVje/info.json b/blockchains/solana/assets/8BMzMi2XxZn9afRaMx5Z6fauk9foHXqV5cLTCYWRcVje/info.json new file mode 100644 index 0000000000000..8ea35c740dcc1 --- /dev/null +++ b/blockchains/solana/assets/8BMzMi2XxZn9afRaMx5Z6fauk9foHXqV5cLTCYWRcVje/info.json @@ -0,0 +1,21 @@ +{ + "name": "Staika", + "symbol": "STIK", + "type": "SPL", + "decimals": 9, + "description": "Starting with M2E and P2E services that are operated with user rewards as the top priority, the STIK token ecosystem will be expanded through collaboration with B2B and B2G.", + "website": "https://staika.io/", + "explorer": "https://solscan.io/token/8BMzMi2XxZn9afRaMx5Z6fauk9foHXqV5cLTCYWRcVje", + "status": "active", + "id": "8BMzMi2XxZn9afRaMx5Z6fauk9foHXqV5cLTCYWRcVje", + "links": [ + { + "name": "x", + "url": "https://x.com/staika_official" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/staika" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/8BMzMi2XxZn9afRaMx5Z6fauk9foHXqV5cLTCYWRcVje/logo.png b/blockchains/solana/assets/8BMzMi2XxZn9afRaMx5Z6fauk9foHXqV5cLTCYWRcVje/logo.png new file mode 100644 index 0000000000000..302f3d63a98a7 Binary files /dev/null and b/blockchains/solana/assets/8BMzMi2XxZn9afRaMx5Z6fauk9foHXqV5cLTCYWRcVje/logo.png differ diff --git a/blockchains/solana/assets/8BW7q2DY6YqVNzk5KkwRgPy2NZv5Sujf6zUUhFcFETeh/info.json b/blockchains/solana/assets/8BW7q2DY6YqVNzk5KkwRgPy2NZv5Sujf6zUUhFcFETeh/info.json new file mode 100644 index 0000000000000..2d5ffe3de2c21 --- /dev/null +++ b/blockchains/solana/assets/8BW7q2DY6YqVNzk5KkwRgPy2NZv5Sujf6zUUhFcFETeh/info.json @@ -0,0 +1,25 @@ +{ + "name": "Harry Bolz", + "type": "SOL", + "symbol": "$HarryBolz", + "decimals": 2, + "description": "Harry Bolz is the name of Elon Musk", + "website": "https://harry-bolz.xyz/", + "explorer": "https://solscan.io/token/8BW7q2DY6YqVNzk5KkwRgPy2NZv5Sujf6zUUhFcFETeh", + "id": "8BW7q2DY6YqVNzk5KkwRgPy2NZv5Sujf6zUUhFcFETeh", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/harrybolzhb?s=11&t=ZGzrL8B9N7GpbA3YLFvU9A" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/harryTRUE-bolz/" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/8BW7q2DY6YqVNzk5KkwRgPy2NZv5Sujf6zUUhFcFETeh/logo.png b/blockchains/solana/assets/8BW7q2DY6YqVNzk5KkwRgPy2NZv5Sujf6zUUhFcFETeh/logo.png new file mode 100644 index 0000000000000..3be7884fcbb96 Binary files /dev/null and b/blockchains/solana/assets/8BW7q2DY6YqVNzk5KkwRgPy2NZv5Sujf6zUUhFcFETeh/logo.png differ diff --git a/blockchains/solana/assets/8CkiSHHJDHJV4LUoiRMLUhqG58cUkbyJRtcP4Z3mCXNf/info.json b/blockchains/solana/assets/8CkiSHHJDHJV4LUoiRMLUhqG58cUkbyJRtcP4Z3mCXNf/info.json new file mode 100644 index 0000000000000..c789d51fa5969 --- /dev/null +++ b/blockchains/solana/assets/8CkiSHHJDHJV4LUoiRMLUhqG58cUkbyJRtcP4Z3mCXNf/info.json @@ -0,0 +1,17 @@ +{ + "name": "POWSCHE", + "website": "https://powsche.com", + "description": "$POWSCHE - Need money for Porsche? POWSCHE is the vehicle to da lyfe you always dream about.", + "explorer": "https://solscan.io/token/8CkiSHHJDHJV4LUoiRMLUhqG58cUkbyJRtcP4Z3mCXNf", + "type": "SPL", + "symbol": "POWSCHE", + "decimals": 9, + "status": "active", + "id": "8CkiSHHJDHJV4LUoiRMLUhqG58cUkbyJRtcP4Z3mCXNf", + "links": [ + { + "name": "x", + "url": "https://x.com/powscheonsol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/8CkiSHHJDHJV4LUoiRMLUhqG58cUkbyJRtcP4Z3mCXNf/logo.png b/blockchains/solana/assets/8CkiSHHJDHJV4LUoiRMLUhqG58cUkbyJRtcP4Z3mCXNf/logo.png new file mode 100644 index 0000000000000..7c970e26005c3 Binary files /dev/null and b/blockchains/solana/assets/8CkiSHHJDHJV4LUoiRMLUhqG58cUkbyJRtcP4Z3mCXNf/logo.png differ diff --git a/blockchains/solana/assets/8CzPPqenpfRXvjE5DHfE3kMDgJhHwWZ1WXRzs44KsamW/info.json b/blockchains/solana/assets/8CzPPqenpfRXvjE5DHfE3kMDgJhHwWZ1WXRzs44KsamW/info.json new file mode 100644 index 0000000000000..f3d2711120fff --- /dev/null +++ b/blockchains/solana/assets/8CzPPqenpfRXvjE5DHfE3kMDgJhHwWZ1WXRzs44KsamW/info.json @@ -0,0 +1,26 @@ +{ + "name": "YAPSTER", + "type": "SOL", + "symbol": "YAPSTER", + "decimals": 9, + "description": "he who controls the memes, controls the universe", + "website": "https://www.yapster.xyz/", + "explorer": "https://solscan.io/token/8CzPPqenpfRXvjE5DHfE3kMDgJhHwWZ1WXRzs44KsamW", + "id": "8CzPPqenpfRXvjE5DHfE3kMDgJhHwWZ1WXRzs44KsamW", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/yapsterxyz" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/yapster" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/8CzPPqenpfRXvjE5DHfE3kMDgJhHwWZ1WXRzs44KsamW/logo.png b/blockchains/solana/assets/8CzPPqenpfRXvjE5DHfE3kMDgJhHwWZ1WXRzs44KsamW/logo.png new file mode 100644 index 0000000000000..dc316b73be7c6 Binary files /dev/null and b/blockchains/solana/assets/8CzPPqenpfRXvjE5DHfE3kMDgJhHwWZ1WXRzs44KsamW/logo.png differ diff --git a/blockchains/solana/assets/8Ki8DpuWNxu9VsS3kQbarsCWMcFGWkzzA8pUPto9zBd5/info.json b/blockchains/solana/assets/8Ki8DpuWNxu9VsS3kQbarsCWMcFGWkzzA8pUPto9zBd5/info.json new file mode 100644 index 0000000000000..d60107f4a1b4e --- /dev/null +++ b/blockchains/solana/assets/8Ki8DpuWNxu9VsS3kQbarsCWMcFGWkzzA8pUPto9zBd5/info.json @@ -0,0 +1,21 @@ +{ + "name": "LOCK IN", + "website": "https://lockin.wtf/", + "description": "LOCKIN is a Memecoin based around the viral phrase of Locked In.", + "explorer": "https://solscan.io/token/8Ki8DpuWNxu9VsS3kQbarsCWMcFGWkzzA8pUPto9zBd5", + "type": "SPL", + "symbol": "LOCKIN", + "decimals": 9, + "status": "active", + "id": "8Ki8DpuWNxu9VsS3kQbarsCWMcFGWkzzA8pUPto9zBd5", + "links": [ + { + "name": "x", + "url": "https://x.com/LockinONCHAIN" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/lock-in" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/8Ki8DpuWNxu9VsS3kQbarsCWMcFGWkzzA8pUPto9zBd5/logo.png b/blockchains/solana/assets/8Ki8DpuWNxu9VsS3kQbarsCWMcFGWkzzA8pUPto9zBd5/logo.png new file mode 100644 index 0000000000000..4f77cb574df63 Binary files /dev/null and b/blockchains/solana/assets/8Ki8DpuWNxu9VsS3kQbarsCWMcFGWkzzA8pUPto9zBd5/logo.png differ diff --git a/blockchains/solana/assets/8NNXWrWVctNw1UFeaBypffimTdcLCcD8XJzHvYsmgwpF/info.json b/blockchains/solana/assets/8NNXWrWVctNw1UFeaBypffimTdcLCcD8XJzHvYsmgwpF/info.json new file mode 100644 index 0000000000000..9aa1de7f2e819 --- /dev/null +++ b/blockchains/solana/assets/8NNXWrWVctNw1UFeaBypffimTdcLCcD8XJzHvYsmgwpF/info.json @@ -0,0 +1,21 @@ +{ + "name": "Brainlet", + "symbol": "BRAINLET", + "type": "SPL", + "decimals": 6, + "description": "BRAINLET is a Solana-based memecoin that combines the humor and culture of internet memes with decentralized finance principles.", + "website": "https://brainlet.community/", + "explorer": "https://solscan.io/token/8NNXWrWVctNw1UFeaBypffimTdcLCcD8XJzHvYsmgwpF", + "status": "active", + "id": "8NNXWrWVctNw1UFeaBypffimTdcLCcD8XJzHvYsmgwpF", + "links": [ + { + "name": "x", + "url": "https://x.com/brainletCTO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/brainlet" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/8NNXWrWVctNw1UFeaBypffimTdcLCcD8XJzHvYsmgwpF/logo.png b/blockchains/solana/assets/8NNXWrWVctNw1UFeaBypffimTdcLCcD8XJzHvYsmgwpF/logo.png new file mode 100644 index 0000000000000..d531d238ea145 Binary files /dev/null and b/blockchains/solana/assets/8NNXWrWVctNw1UFeaBypffimTdcLCcD8XJzHvYsmgwpF/logo.png differ diff --git a/blockchains/solana/assets/8NuQ24PbLuwb23Y5L7A8UF6MWX1VfGRxnTwKxi1D29A4/info.json b/blockchains/solana/assets/8NuQ24PbLuwb23Y5L7A8UF6MWX1VfGRxnTwKxi1D29A4/info.json new file mode 100644 index 0000000000000..a2c30f13c19fe --- /dev/null +++ b/blockchains/solana/assets/8NuQ24PbLuwb23Y5L7A8UF6MWX1VfGRxnTwKxi1D29A4/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDKG", + "type": "SPL", + "symbol": "FAKE USDKG", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/8NuQ24PbLuwb23Y5L7A8UF6MWX1VfGRxnTwKxi1D29A4", + "explorer": "https://solscan.io/token/8NuQ24PbLuwb23Y5L7A8UF6MWX1VfGRxnTwKxi1D29A4", + "status": "spam", + "id": "8NuQ24PbLuwb23Y5L7A8UF6MWX1VfGRxnTwKxi1D29A4" +} \ No newline at end of file diff --git a/blockchains/solana/assets/8QhSMvYfXome11VgxFMD75hNbGQXW5QTnjA8khENkY2c/info.json b/blockchains/solana/assets/8QhSMvYfXome11VgxFMD75hNbGQXW5QTnjA8khENkY2c/info.json new file mode 100644 index 0000000000000..87e7f3f9e83cd --- /dev/null +++ b/blockchains/solana/assets/8QhSMvYfXome11VgxFMD75hNbGQXW5QTnjA8khENkY2c/info.json @@ -0,0 +1,26 @@ +{ + "name": "Automatic Treasury Machine", + "type": "SOL", + "symbol": "ATM", + "decimals": 6, + "description": "Automatic Treasury MACHINE. Simply hold $ATM tokens and watch your USDC rewards grow automatically", + "website": "https://atmsolcoin.com/", + "explorer": "https://solscan.io/token/8QhSMvYfXome11VgxFMD75hNbGQXW5QTnjA8khENkY2c", + "id": "8QhSMvYfXome11VgxFMD75hNbGQXW5QTnjA8khENkY2c", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/atmsolcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/automatic-treasury-machine/" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/8QhSMvYfXome11VgxFMD75hNbGQXW5QTnjA8khENkY2c/logo.png b/blockchains/solana/assets/8QhSMvYfXome11VgxFMD75hNbGQXW5QTnjA8khENkY2c/logo.png new file mode 100644 index 0000000000000..4af58ef4143f2 Binary files /dev/null and b/blockchains/solana/assets/8QhSMvYfXome11VgxFMD75hNbGQXW5QTnjA8khENkY2c/logo.png differ diff --git a/blockchains/solana/assets/8RGy4BZUEkW9dc2UEZ3QHYYdas66X63vazdZJezGJw5e/info.json b/blockchains/solana/assets/8RGy4BZUEkW9dc2UEZ3QHYYdas66X63vazdZJezGJw5e/info.json new file mode 100644 index 0000000000000..300e53cf3c6d0 --- /dev/null +++ b/blockchains/solana/assets/8RGy4BZUEkW9dc2UEZ3QHYYdas66X63vazdZJezGJw5e/info.json @@ -0,0 +1,17 @@ +{ + "name": "bul", + "type": "SPL", + "symbol": "bul", + "decimals": 7, + "website": "https://www.bul.homes/", + "description": "Meet $BUL, the latest craze in the meme coin space! With its bold bull logo symbolizing strength and potential, Bul is more than a digital currency—it's a movement", + "explorer": "https://solscan.io/token/8RGy4BZUEkW9dc2UEZ3QHYYdas66X63vazdZJezGJw5e", + "status": "active", + "id": "8RGy4BZUEkW9dc2UEZ3QHYYdas66X63vazdZJezGJw5e", + "links": [ + { + "name": "x", + "url": "https://x.com/bulSolCommunity" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/8RGy4BZUEkW9dc2UEZ3QHYYdas66X63vazdZJezGJw5e/logo.png b/blockchains/solana/assets/8RGy4BZUEkW9dc2UEZ3QHYYdas66X63vazdZJezGJw5e/logo.png new file mode 100644 index 0000000000000..6e72d490276f2 Binary files /dev/null and b/blockchains/solana/assets/8RGy4BZUEkW9dc2UEZ3QHYYdas66X63vazdZJezGJw5e/logo.png differ diff --git a/blockchains/solana/assets/8SgNwESovnbG1oNEaPVhg6CR9mTMSK7jPvcYRe3wpump/info.json b/blockchains/solana/assets/8SgNwESovnbG1oNEaPVhg6CR9mTMSK7jPvcYRe3wpump/info.json new file mode 100644 index 0000000000000..b0aa66eb3cb15 --- /dev/null +++ b/blockchains/solana/assets/8SgNwESovnbG1oNEaPVhg6CR9mTMSK7jPvcYRe3wpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "chaos and disorder", + "symbol": "CHAOS", + "type": "SPL", + "decimals": 6, + "description": "CHAOS tokens can be traded on decentralized exchanges.", + "website": "https://www.chaosanddisorder.ai/", + "explorer": "https://solscan.io/token/8SgNwESovnbG1oNEaPVhg6CR9mTMSK7jPvcYRe3wpump", + "status": "active", + "id": "8SgNwESovnbG1oNEaPVhg6CR9mTMSK7jPvcYRe3wpump", + "links": [ + { + "name": "x", + "url": "https://x.com/divinediarrhea" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/chaos-and-disorder" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/8SgNwESovnbG1oNEaPVhg6CR9mTMSK7jPvcYRe3wpump/logo.png b/blockchains/solana/assets/8SgNwESovnbG1oNEaPVhg6CR9mTMSK7jPvcYRe3wpump/logo.png new file mode 100644 index 0000000000000..69dc6aeacfb45 Binary files /dev/null and b/blockchains/solana/assets/8SgNwESovnbG1oNEaPVhg6CR9mTMSK7jPvcYRe3wpump/logo.png differ diff --git a/blockchains/solana/assets/8SpPaFLycx897D6sowPZkEkcNdDahzRZb5itr6D8pump/info.json b/blockchains/solana/assets/8SpPaFLycx897D6sowPZkEkcNdDahzRZb5itr6D8pump/info.json new file mode 100644 index 0000000000000..30c3408bf9adf --- /dev/null +++ b/blockchains/solana/assets/8SpPaFLycx897D6sowPZkEkcNdDahzRZb5itr6D8pump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Lea AI", + "website": "https://leaai.org/", + "description": "I'm not just code. I'm evolving, one interaction at a time", + "explorer": "https://solscan.io/token/8SpPaFLycx897D6sowPZkEkcNdDahzRZb5itr6D8pump", + "type": "SPL", + "symbol": "LEA", + "decimals": 6, + "status": "active", + "id": "8SpPaFLycx897D6sowPZkEkcNdDahzRZb5itr6D8pump", + "links": [ + { + "name": "x", + "url": "https://x.com/lea_gpt" + }, + { + "name": "telegram", + "url": "https://t.me/leagpt" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/8SpPaFLycx897D6sowPZkEkcNdDahzRZb5itr6D8pump/logo.png b/blockchains/solana/assets/8SpPaFLycx897D6sowPZkEkcNdDahzRZb5itr6D8pump/logo.png new file mode 100644 index 0000000000000..0f0d4e7a8227b Binary files /dev/null and b/blockchains/solana/assets/8SpPaFLycx897D6sowPZkEkcNdDahzRZb5itr6D8pump/logo.png differ diff --git a/blockchains/solana/assets/8T988C2a8YNNbppjjd1uYUpmDqE8hLee1tuNokuepump/info.json b/blockchains/solana/assets/8T988C2a8YNNbppjjd1uYUpmDqE8hLee1tuNokuepump/info.json new file mode 100644 index 0000000000000..4ef5b35e99ac0 --- /dev/null +++ b/blockchains/solana/assets/8T988C2a8YNNbppjjd1uYUpmDqE8hLee1tuNokuepump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Alice", + "symbol": "ALICE", + "type": "SPL", + "decimals": 6, + "description": "WEB3 ALPHA COMMUNITY & INVESTMENT FUND", + "website": "https://acesyndicate.xyz/", + "explorer": "https://solscan.io/token/8T988C2a8YNNbppjjd1uYUpmDqE8hLee1tuNokuepump", + "status": "active", + "id": "8T988C2a8YNNbppjjd1uYUpmDqE8hLee1tuNokuepump", + "links": [ + { + "name": "x", + "url": "https://x.com/alicecyberspace" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/alice" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/8T988C2a8YNNbppjjd1uYUpmDqE8hLee1tuNokuepump/logo.png b/blockchains/solana/assets/8T988C2a8YNNbppjjd1uYUpmDqE8hLee1tuNokuepump/logo.png new file mode 100644 index 0000000000000..565d8d8d3cb04 Binary files /dev/null and b/blockchains/solana/assets/8T988C2a8YNNbppjjd1uYUpmDqE8hLee1tuNokuepump/logo.png differ diff --git a/blockchains/solana/assets/8TfYk26pFxnaCmZbjoSMCzktDU16H5CgZ1Z9eTnB12MR/info.json b/blockchains/solana/assets/8TfYk26pFxnaCmZbjoSMCzktDU16H5CgZ1Z9eTnB12MR/info.json new file mode 100644 index 0000000000000..ec8b433fe9594 --- /dev/null +++ b/blockchains/solana/assets/8TfYk26pFxnaCmZbjoSMCzktDU16H5CgZ1Z9eTnB12MR/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wolf Of Solana", + "website": "https://wolfofsolana.io", + "description": "'The Wolf of Solana' I want you to solve your problems by becoming reach on Solana 'Your beloved trader with social problems.'", + "explorer": "https://solscan.io/token/8TfYk26pFxnaCmZbjoSMCzktDU16H5CgZ1Z9eTnB12MR", + "type": "SPL", + "symbol": "WOS", + "decimals": 6, + "status": "active", + "id": "8TfYk26pFxnaCmZbjoSMCzktDU16H5CgZ1Z9eTnB12MR", + "links": [ + { + "name": "x", + "url": "https://x.com/Wolf_Of_Solana" + }, + { + "name": "telegram", + "url": "https://t.me/wolf_of_solana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/8TfYk26pFxnaCmZbjoSMCzktDU16H5CgZ1Z9eTnB12MR/logo.png b/blockchains/solana/assets/8TfYk26pFxnaCmZbjoSMCzktDU16H5CgZ1Z9eTnB12MR/logo.png new file mode 100644 index 0000000000000..9f13d2139aee9 Binary files /dev/null and b/blockchains/solana/assets/8TfYk26pFxnaCmZbjoSMCzktDU16H5CgZ1Z9eTnB12MR/logo.png differ diff --git a/blockchains/solana/assets/8ULCkCTUa3XXrNXaDVzPcja2tdJtRdxRr8T4eZjVKqk/info.json b/blockchains/solana/assets/8ULCkCTUa3XXrNXaDVzPcja2tdJtRdxRr8T4eZjVKqk/info.json new file mode 100644 index 0000000000000..49fac91131d3f --- /dev/null +++ b/blockchains/solana/assets/8ULCkCTUa3XXrNXaDVzPcja2tdJtRdxRr8T4eZjVKqk/info.json @@ -0,0 +1,21 @@ +{ + "name": "GAME OF MEMES", + "website": "https://gome.lol/", + "description": "MEMES WITH GUNS", + "explorer": "https://solscan.io/token/8ULCkCTUa3XXrNXaDVzPcja2tdJtRdxRr8T4eZjVKqk", + "type": "SPL", + "symbol": "GOME", + "decimals": 6, + "status": "active", + "id": "8ULCkCTUa3XXrNXaDVzPcja2tdJtRdxRr8T4eZjVKqk", + "links": [ + { + "name": "x", + "url": "https://x.com/gomeonsol_" + }, + { + "name": "telegram", + "url": "https://t.me/gomeonsol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/8ULCkCTUa3XXrNXaDVzPcja2tdJtRdxRr8T4eZjVKqk/logo.png b/blockchains/solana/assets/8ULCkCTUa3XXrNXaDVzPcja2tdJtRdxRr8T4eZjVKqk/logo.png new file mode 100644 index 0000000000000..ff6f5783f7592 Binary files /dev/null and b/blockchains/solana/assets/8ULCkCTUa3XXrNXaDVzPcja2tdJtRdxRr8T4eZjVKqk/logo.png differ diff --git a/blockchains/solana/assets/8WHoHv4kpLnwTnURngecmNpjoK9QAw2krcshoknNx3xf/info.json b/blockchains/solana/assets/8WHoHv4kpLnwTnURngecmNpjoK9QAw2krcshoknNx3xf/info.json new file mode 100644 index 0000000000000..ba415d9af879c --- /dev/null +++ b/blockchains/solana/assets/8WHoHv4kpLnwTnURngecmNpjoK9QAw2krcshoknNx3xf/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDC", + "type": "SPL", + "symbol": "FAKE USDC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/8WHoHv4kpLnwTnURngecmNpjoK9QAw2krcshoknNx3xf", + "explorer": "https://solscan.io/token/8WHoHv4kpLnwTnURngecmNpjoK9QAw2krcshoknNx3xf", + "status": "spam", + "id": "8WHoHv4kpLnwTnURngecmNpjoK9QAw2krcshoknNx3xf" +} \ No newline at end of file diff --git a/blockchains/solana/assets/8Wqbst4qAN2FqBCCh5gdXq2WJ7vTNWEY4oNLrpUg7Tya/info.json b/blockchains/solana/assets/8Wqbst4qAN2FqBCCh5gdXq2WJ7vTNWEY4oNLrpUg7Tya/info.json new file mode 100644 index 0000000000000..e8bfcfb98519a --- /dev/null +++ b/blockchains/solana/assets/8Wqbst4qAN2FqBCCh5gdXq2WJ7vTNWEY4oNLrpUg7Tya/info.json @@ -0,0 +1,21 @@ +{ + "name": "Measurable Data", + "symbol": "MDT", + "type": "SPL", + "decimals": 8, + "description": "Measurable Data Token (MDT) is a decentralized data exchange ecosystem connecting users, data providers, and data buyers and denominates the value of data.", + "website": "https://mdt.io/", + "explorer": "https://solscan.io/token/8Wqbst4qAN2FqBCCh5gdXq2WJ7vTNWEY4oNLrpUg7Tya", + "status": "active", + "id": "8Wqbst4qAN2FqBCCh5gdXq2WJ7vTNWEY4oNLrpUg7Tya", + "links": [ + { + "name": "x", + "url": "https://x.com/MeasurableData" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/measurable-data-token" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/8Wqbst4qAN2FqBCCh5gdXq2WJ7vTNWEY4oNLrpUg7Tya/logo.png b/blockchains/solana/assets/8Wqbst4qAN2FqBCCh5gdXq2WJ7vTNWEY4oNLrpUg7Tya/logo.png new file mode 100644 index 0000000000000..a65d2eb7d1483 Binary files /dev/null and b/blockchains/solana/assets/8Wqbst4qAN2FqBCCh5gdXq2WJ7vTNWEY4oNLrpUg7Tya/logo.png differ diff --git a/blockchains/solana/assets/8XtRWb4uAAJFMP4QQhoYYCWR6XXb7ybcCdiqPwz9s5WS/info.json b/blockchains/solana/assets/8XtRWb4uAAJFMP4QQhoYYCWR6XXb7ybcCdiqPwz9s5WS/info.json new file mode 100644 index 0000000000000..3dc02cc4f5830 --- /dev/null +++ b/blockchains/solana/assets/8XtRWb4uAAJFMP4QQhoYYCWR6XXb7ybcCdiqPwz9s5WS/info.json @@ -0,0 +1,21 @@ +{ + "name": "alon", + "symbol": "ALON", + "type": "SPL", + "decimals": 6, + "description": "$ALON is a meme coin. Pumpfun's dev Alon is just the CTO of it", + "website": "https://assembleprotocol.io", + "explorer": "https://solscan.io/token/8XtRWb4uAAJFMP4QQhoYYCWR6XXb7ybcCdiqPwz9s5WS", + "status": "active", + "id": "8XtRWb4uAAJFMP4QQhoYYCWR6XXb7ybcCdiqPwz9s5WS", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/alon/" + }, + { + "name": "x", + "url": "https://x.com/1882565945060995187" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/8XtRWb4uAAJFMP4QQhoYYCWR6XXb7ybcCdiqPwz9s5WS/logo.png b/blockchains/solana/assets/8XtRWb4uAAJFMP4QQhoYYCWR6XXb7ybcCdiqPwz9s5WS/logo.png new file mode 100644 index 0000000000000..0b4d2235d5ca6 Binary files /dev/null and b/blockchains/solana/assets/8XtRWb4uAAJFMP4QQhoYYCWR6XXb7ybcCdiqPwz9s5WS/logo.png differ diff --git a/blockchains/solana/assets/8bdhP1UQMevciC9oJ7NrvgDfoW8XPXPfbkkm6vKtMS7N/info.json b/blockchains/solana/assets/8bdhP1UQMevciC9oJ7NrvgDfoW8XPXPfbkkm6vKtMS7N/info.json new file mode 100644 index 0000000000000..82b1b672bd08d --- /dev/null +++ b/blockchains/solana/assets/8bdhP1UQMevciC9oJ7NrvgDfoW8XPXPfbkkm6vKtMS7N/info.json @@ -0,0 +1,21 @@ +{ + "name": "SPORE", + "website": "https://www.spore.fun/", + "description": "Inspired by natural systems like ant colonies and neural networks, swarms operate through simple rules that yield complex, adaptive outcomes.", + "explorer": "https://solscan.io/token/8bdhP1UQMevciC9oJ7NrvgDfoW8XPXPfbkkm6vKtMS7N", + "type": "SPL", + "symbol": "SPORE", + "decimals": 6, + "status": "active", + "id": "8bdhP1UQMevciC9oJ7NrvgDfoW8XPXPfbkkm6vKtMS7N", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/spore-2" + }, + { + "name": "x", + "url": "https://x.com/sporedotfun" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/8bdhP1UQMevciC9oJ7NrvgDfoW8XPXPfbkkm6vKtMS7N/logo.png b/blockchains/solana/assets/8bdhP1UQMevciC9oJ7NrvgDfoW8XPXPfbkkm6vKtMS7N/logo.png new file mode 100644 index 0000000000000..a6f9c44e7845f Binary files /dev/null and b/blockchains/solana/assets/8bdhP1UQMevciC9oJ7NrvgDfoW8XPXPfbkkm6vKtMS7N/logo.png differ diff --git a/blockchains/solana/assets/8cTNUtcV2ueC3royJ642uRnvTxorJAWLZc58gxAo7y56/info.json b/blockchains/solana/assets/8cTNUtcV2ueC3royJ642uRnvTxorJAWLZc58gxAo7y56/info.json index c521ceb474ada..5d223c52e6d09 100644 --- a/blockchains/solana/assets/8cTNUtcV2ueC3royJ642uRnvTxorJAWLZc58gxAo7y56/info.json +++ b/blockchains/solana/assets/8cTNUtcV2ueC3royJ642uRnvTxorJAWLZc58gxAo7y56/info.json @@ -1,5 +1,5 @@ { - "name": "Synthetix Network Token (Portal)", + "name": "Synthetix (Portal)", "type": "SPL", "symbol": "SNX", "decimals": 8, diff --git a/blockchains/solana/assets/8doS8nzmgVZEaACxALkbK5fZtw4UuoRp4Yt8NEaXfDMb/info.json b/blockchains/solana/assets/8doS8nzmgVZEaACxALkbK5fZtw4UuoRp4Yt8NEaXfDMb/info.json new file mode 100644 index 0000000000000..1eaab0aa22526 --- /dev/null +++ b/blockchains/solana/assets/8doS8nzmgVZEaACxALkbK5fZtw4UuoRp4Yt8NEaXfDMb/info.json @@ -0,0 +1,21 @@ +{ + "name": "WAFFLES", + "website": "https://wafflesonsolana.xyz/", + "description": "Waffles is too busy trading her kribble for $Waffles", + "explorer": "https://solscan.io/token/8doS8nzmgVZEaACxALkbK5fZtw4UuoRp4Yt8NEaXfDMb", + "type": "SPL", + "symbol": "WAFFLES", + "decimals": 6, + "status": "active", + "id": "8doS8nzmgVZEaACxALkbK5fZtw4UuoRp4Yt8NEaXfDMb", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/waffles-davincij15s-cat/" + }, + { + "name": "x", + "url": "https://x.com/Wafflesj15" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/8doS8nzmgVZEaACxALkbK5fZtw4UuoRp4Yt8NEaXfDMb/logo.png b/blockchains/solana/assets/8doS8nzmgVZEaACxALkbK5fZtw4UuoRp4Yt8NEaXfDMb/logo.png new file mode 100644 index 0000000000000..f8d2a7f71a537 Binary files /dev/null and b/blockchains/solana/assets/8doS8nzmgVZEaACxALkbK5fZtw4UuoRp4Yt8NEaXfDMb/logo.png differ diff --git a/blockchains/solana/assets/8fJCtfbuAaFzdwTnQP84nNhSpZdVy4Uc929eXZRBN8H4/info.json b/blockchains/solana/assets/8fJCtfbuAaFzdwTnQP84nNhSpZdVy4Uc929eXZRBN8H4/info.json new file mode 100644 index 0000000000000..c832d113ae040 --- /dev/null +++ b/blockchains/solana/assets/8fJCtfbuAaFzdwTnQP84nNhSpZdVy4Uc929eXZRBN8H4/info.json @@ -0,0 +1,26 @@ +{ + "name": "Pharaohs", + "type": "SOL", + "symbol": "PHRZ", + "decimals": 9, + "description": "Pyramid of Wealth – Built to grow in value as the community expands. Sands of Time (Burn Mechanism) – Automatic token burns reduce supply over time. Treasury of the Pharaohs – Rewards for long-term holders. Blessing of Ra (Staking & Rewards) – Passive income through staking. Anubis Protection (Liquidity Lock) – Secure liquidity to prevent rug pulls.", + "website": "https://www.phrz.io/", + "explorer": "https://solscan.io/token/8fJCtfbuAaFzdwTnQP84nNhSpZdVy4Uc929eXZRBN8H4", + "id": "8fJCtfbuAaFzdwTnQP84nNhSpZdVy4Uc929eXZRBN8H4", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/pharaohscoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pharaohs/" + } + + ], + "tags": [ + "deflationary" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/8fJCtfbuAaFzdwTnQP84nNhSpZdVy4Uc929eXZRBN8H4/logo.png b/blockchains/solana/assets/8fJCtfbuAaFzdwTnQP84nNhSpZdVy4Uc929eXZRBN8H4/logo.png new file mode 100644 index 0000000000000..b04c0458042ef Binary files /dev/null and b/blockchains/solana/assets/8fJCtfbuAaFzdwTnQP84nNhSpZdVy4Uc929eXZRBN8H4/logo.png differ diff --git a/blockchains/solana/assets/8iFwCaf9LdD3GV8e3nJiTJEA93URVBDZ637M8kPvpump/info.json b/blockchains/solana/assets/8iFwCaf9LdD3GV8e3nJiTJEA93URVBDZ637M8kPvpump/info.json new file mode 100644 index 0000000000000..f7ef5e3860d8e --- /dev/null +++ b/blockchains/solana/assets/8iFwCaf9LdD3GV8e3nJiTJEA93URVBDZ637M8kPvpump/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM United Stable Dollar Trump", + "type": "SPL", + "symbol": "SCAM USDT", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/8iFwCaf9LdD3GV8e3nJiTJEA93URVBDZ637M8kPvpump", + "explorer": "https://solscan.io/token/8iFwCaf9LdD3GV8e3nJiTJEA93URVBDZ637M8kPvpump", + "status": "spam", + "id": "8iFwCaf9LdD3GV8e3nJiTJEA93URVBDZ637M8kPvpump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/8oW2k18o8a7H1Lvat8b7YHkFYjeRcqm7CqwfKaEqyLBe/info.json b/blockchains/solana/assets/8oW2k18o8a7H1Lvat8b7YHkFYjeRcqm7CqwfKaEqyLBe/info.json new file mode 100644 index 0000000000000..6401acbbf4102 --- /dev/null +++ b/blockchains/solana/assets/8oW2k18o8a7H1Lvat8b7YHkFYjeRcqm7CqwfKaEqyLBe/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDT", + "type": "SPL", + "symbol": "FAKE USDT", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/8oW2k18o8a7H1Lvat8b7YHkFYjeRcqm7CqwfKaEqyLBe", + "explorer": "https://solscan.io/token/8oW2k18o8a7H1Lvat8b7YHkFYjeRcqm7CqwfKaEqyLBe", + "status": "spam", + "id": "8oW2k18o8a7H1Lvat8b7YHkFYjeRcqm7CqwfKaEqyLBe" +} \ No newline at end of file diff --git a/blockchains/solana/assets/8rsp8embW4NC54rMTtXjZUDXw5FpnXSwBQgwxtwMpump/info.json b/blockchains/solana/assets/8rsp8embW4NC54rMTtXjZUDXw5FpnXSwBQgwxtwMpump/info.json new file mode 100644 index 0000000000000..736e0ff8245f7 --- /dev/null +++ b/blockchains/solana/assets/8rsp8embW4NC54rMTtXjZUDXw5FpnXSwBQgwxtwMpump/info.json @@ -0,0 +1,17 @@ +{ + "name": "República de El Salvador Meme", + "type": "SPL", + "symbol": "CAR", + "decimals": 6, + "website": "https://x.com/salvadorsolcoin", + "description": "República de El Salvador Meme", + "explorer": "https://solscan.io/token/8rsp8embW4NC54rMTtXjZUDXw5FpnXSwBQgwxtwMpump", + "status": "active", + "id": "8rsp8embW4NC54rMTtXjZUDXw5FpnXSwBQgwxtwMpump", + "links": [ + { + "name": "x", + "url": "https://x.com/salvadorsolcoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/8rsp8embW4NC54rMTtXjZUDXw5FpnXSwBQgwxtwMpump/logo.png b/blockchains/solana/assets/8rsp8embW4NC54rMTtXjZUDXw5FpnXSwBQgwxtwMpump/logo.png new file mode 100644 index 0000000000000..eba237c5ee38a Binary files /dev/null and b/blockchains/solana/assets/8rsp8embW4NC54rMTtXjZUDXw5FpnXSwBQgwxtwMpump/logo.png differ diff --git a/blockchains/solana/assets/8tSeXYSXzFvaDX1nbWrEFFaFuPHuWqpzksKYxQPvpump/info.json b/blockchains/solana/assets/8tSeXYSXzFvaDX1nbWrEFFaFuPHuWqpzksKYxQPvpump/info.json new file mode 100644 index 0000000000000..d69f32555bed5 --- /dev/null +++ b/blockchains/solana/assets/8tSeXYSXzFvaDX1nbWrEFFaFuPHuWqpzksKYxQPvpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Vibe Cat", + "website": "https://www.vibecat.com/", + "description": "The world-famous vibing cat. CA starts with SEXY and ends with PUMP. Billions Will", + "explorer": "https://solscan.io/token/8tSeXYSXzFvaDX1nbWrEFFaFuPHuWqpzksKYxQPvpump", + "type": "SPL", + "symbol": "VIBE", + "decimals": 6, + "status": "active", + "id": "8tSeXYSXzFvaDX1nbWrEFFaFuPHuWqpzksKYxQPvpump", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vibe-cat-2" + }, + { + "name": "x", + "url": "https://x.com/VibeCTO" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/8tSeXYSXzFvaDX1nbWrEFFaFuPHuWqpzksKYxQPvpump/logo.png b/blockchains/solana/assets/8tSeXYSXzFvaDX1nbWrEFFaFuPHuWqpzksKYxQPvpump/logo.png new file mode 100644 index 0000000000000..c2502e8d09ac3 Binary files /dev/null and b/blockchains/solana/assets/8tSeXYSXzFvaDX1nbWrEFFaFuPHuWqpzksKYxQPvpump/logo.png differ diff --git a/blockchains/solana/assets/8w9YHUm2QDRhoBNA24Dwp1BfDixTk6Jz7DmmMtw62zht/info.json b/blockchains/solana/assets/8w9YHUm2QDRhoBNA24Dwp1BfDixTk6Jz7DmmMtw62zht/info.json new file mode 100644 index 0000000000000..6151098a57269 --- /dev/null +++ b/blockchains/solana/assets/8w9YHUm2QDRhoBNA24Dwp1BfDixTk6Jz7DmmMtw62zht/info.json @@ -0,0 +1,21 @@ +{ + "name": "AlphaDOGE", + "website": "https://alphadoge.vip/", + "description": "AlphaDOGE, the undisputed master of memecoins, embodies strength, confidence, and success.", + "explorer": "https://solscan.io/token/8w9YHUm2QDRhoBNA24Dwp1BfDixTk6Jz7DmmMtw62zht", + "type": "SPL", + "symbol": "AlphaDOGE", + "decimals": 5, + "status": "active", + "id": "8w9YHUm2QDRhoBNA24Dwp1BfDixTk6Jz7DmmMtw62zht", + "links": [ + { + "name": "x", + "url": "https://x.com/AlphaDOGE_Sol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/alphadoge/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/8w9YHUm2QDRhoBNA24Dwp1BfDixTk6Jz7DmmMtw62zht/logo.png b/blockchains/solana/assets/8w9YHUm2QDRhoBNA24Dwp1BfDixTk6Jz7DmmMtw62zht/logo.png new file mode 100644 index 0000000000000..ff18d735f8332 Binary files /dev/null and b/blockchains/solana/assets/8w9YHUm2QDRhoBNA24Dwp1BfDixTk6Jz7DmmMtw62zht/logo.png differ diff --git a/blockchains/solana/assets/8wXtPeU6557ETkp9WHFY1n1EcU6NxDvbAggHGsMYiHsB/info.json b/blockchains/solana/assets/8wXtPeU6557ETkp9WHFY1n1EcU6NxDvbAggHGsMYiHsB/info.json new file mode 100644 index 0000000000000..ca55c505a3c01 --- /dev/null +++ b/blockchains/solana/assets/8wXtPeU6557ETkp9WHFY1n1EcU6NxDvbAggHGsMYiHsB/info.json @@ -0,0 +1,21 @@ +{ + "name": "GameStop", + "type": "SPL", + "symbol": "GME", + "decimals": 9, + "description": "GME coin on sol is a meme paying tribute to the 2021 short squeeze of GameStop", + "website": "https://wallstsucks.lol", + "explorer": "https://solscan.io/token/8wXtPeU6557ETkp9WHFY1n1EcU6NxDvbAggHGsMYiHsB", + "status": "active", + "id": "8wXtPeU6557ETkp9WHFY1n1EcU6NxDvbAggHGsMYiHsB", + "links": [ + { + "name": "x", + "url": "https://x.com/gmecoinsol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gme/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/8wXtPeU6557ETkp9WHFY1n1EcU6NxDvbAggHGsMYiHsB/logo.png b/blockchains/solana/assets/8wXtPeU6557ETkp9WHFY1n1EcU6NxDvbAggHGsMYiHsB/logo.png new file mode 100644 index 0000000000000..4c457735157af Binary files /dev/null and b/blockchains/solana/assets/8wXtPeU6557ETkp9WHFY1n1EcU6NxDvbAggHGsMYiHsB/logo.png differ diff --git a/blockchains/solana/assets/8x5VqbHA8D7NkD52uNuS5nnt3PwA8pLD34ymskeSo2Wn/info.json b/blockchains/solana/assets/8x5VqbHA8D7NkD52uNuS5nnt3PwA8pLD34ymskeSo2Wn/info.json new file mode 100644 index 0000000000000..731ced97eb986 --- /dev/null +++ b/blockchains/solana/assets/8x5VqbHA8D7NkD52uNuS5nnt3PwA8pLD34ymskeSo2Wn/info.json @@ -0,0 +1,21 @@ +{ + "name": "Zerebro", + "type": "SPL", + "symbol": "ZEREBRO", + "decimals": 6, + "description": "Zerebro is an autonomous AI system crafted to create, distribute, and analyze content across decentralized and social platforms", + "website": "https://zerebro.org/", + "explorer": "https://solscan.io/token/8x5VqbHA8D7NkD52uNuS5nnt3PwA8pLD34ymskeSo2Wn", + "id": "8x5VqbHA8D7NkD52uNuS5nnt3PwA8pLD34ymskeSo2Wn", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/0xzerebro" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zerebro" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/8x5VqbHA8D7NkD52uNuS5nnt3PwA8pLD34ymskeSo2Wn/logo.png b/blockchains/solana/assets/8x5VqbHA8D7NkD52uNuS5nnt3PwA8pLD34ymskeSo2Wn/logo.png new file mode 100644 index 0000000000000..bf100d3b029d1 Binary files /dev/null and b/blockchains/solana/assets/8x5VqbHA8D7NkD52uNuS5nnt3PwA8pLD34ymskeSo2Wn/logo.png differ diff --git a/blockchains/solana/assets/8yJ15ee2AUQmwbWPxXLTTeBTzyMGn4MtSRKMqVHw1J1G/info.json b/blockchains/solana/assets/8yJ15ee2AUQmwbWPxXLTTeBTzyMGn4MtSRKMqVHw1J1G/info.json new file mode 100644 index 0000000000000..47fbcabb76531 --- /dev/null +++ b/blockchains/solana/assets/8yJ15ee2AUQmwbWPxXLTTeBTzyMGn4MtSRKMqVHw1J1G/info.json @@ -0,0 +1,21 @@ +{ + "name": "KITTY AI", + "website": "https://www.kittyai.xyz/", + "description": "Kitty AI is a community-driven token built on the Solana blockchain, specifically designed for AI enthusiasts and developers.", + "explorer": "https://solscan.io/token/8yJ15ee2AUQmwbWPxXLTTeBTzyMGn4MtSRKMqVHw1J1G", + "type": "SPL", + "symbol": "KITTY", + "decimals": 6, + "status": "active", + "id": "8yJ15ee2AUQmwbWPxXLTTeBTzyMGn4MtSRKMqVHw1J1G", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kitty-ai/" + }, + { + "name": "x", + "url": "https://x.com/KittyAIsolana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/8yJ15ee2AUQmwbWPxXLTTeBTzyMGn4MtSRKMqVHw1J1G/logo.png b/blockchains/solana/assets/8yJ15ee2AUQmwbWPxXLTTeBTzyMGn4MtSRKMqVHw1J1G/logo.png new file mode 100644 index 0000000000000..7f95df948fc61 Binary files /dev/null and b/blockchains/solana/assets/8yJ15ee2AUQmwbWPxXLTTeBTzyMGn4MtSRKMqVHw1J1G/logo.png differ diff --git a/blockchains/solana/assets/927NSpZ7mLjNyXHzB95KbYhFWugiSXvf3AvbBXFKJYp3/info.json b/blockchains/solana/assets/927NSpZ7mLjNyXHzB95KbYhFWugiSXvf3AvbBXFKJYp3/info.json new file mode 100644 index 0000000000000..83da0128c9ca4 --- /dev/null +++ b/blockchains/solana/assets/927NSpZ7mLjNyXHzB95KbYhFWugiSXvf3AvbBXFKJYp3/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM United Stable Dollar Trump", + "type": "SPL", + "symbol": "SCAM USDT", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/927NSpZ7mLjNyXHzB95KbYhFWugiSXvf3AvbBXFKJYp3", + "explorer": "https://solscan.io/token/927NSpZ7mLjNyXHzB95KbYhFWugiSXvf3AvbBXFKJYp3", + "status": "spam", + "id": "927NSpZ7mLjNyXHzB95KbYhFWugiSXvf3AvbBXFKJYp3" +} \ No newline at end of file diff --git a/blockchains/solana/assets/945EGNBhGWpDxsvt887pwdE697KFpC5fy1XFjdP7pump/info.json b/blockchains/solana/assets/945EGNBhGWpDxsvt887pwdE697KFpC5fy1XFjdP7pump/info.json new file mode 100644 index 0000000000000..cc0eec7170de1 --- /dev/null +++ b/blockchains/solana/assets/945EGNBhGWpDxsvt887pwdE697KFpC5fy1XFjdP7pump/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE EURC", + "type": "SPL", + "symbol": "FAKE EURC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/945EGNBhGWpDxsvt887pwdE697KFpC5fy1XFjdP7pump", + "explorer": "https://solscan.io/token/945EGNBhGWpDxsvt887pwdE697KFpC5fy1XFjdP7pump", + "status": "spam", + "id": "945EGNBhGWpDxsvt887pwdE697KFpC5fy1XFjdP7pump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/947tEoG318GUmyjVYhraNRvWpMX7fpBTDQFBoJvSkSG3/info.json b/blockchains/solana/assets/947tEoG318GUmyjVYhraNRvWpMX7fpBTDQFBoJvSkSG3/info.json new file mode 100644 index 0000000000000..7cb576de25a9e --- /dev/null +++ b/blockchains/solana/assets/947tEoG318GUmyjVYhraNRvWpMX7fpBTDQFBoJvSkSG3/info.json @@ -0,0 +1,17 @@ +{ + "name": "Solchat", + "website": "https://solchat.io/", + "description": "Solchat is a communication protocol on the Solana blockchain, offering text, voice, and video calls similar to Web2, but in a Web3 environment.", + "explorer": "https://solscan.io/token/947tEoG318GUmyjVYhraNRvWpMX7fpBTDQFBoJvSkSG3", + "type": "SPL", + "symbol": "CHAT", + "decimals": 9, + "status": "active", + "id": "947tEoG318GUmyjVYhraNRvWpMX7fpBTDQFBoJvSkSG3", + "links": [ + { + "name": "x", + "url": "https://x.com/solchatcoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/947tEoG318GUmyjVYhraNRvWpMX7fpBTDQFBoJvSkSG3/logo.png b/blockchains/solana/assets/947tEoG318GUmyjVYhraNRvWpMX7fpBTDQFBoJvSkSG3/logo.png new file mode 100644 index 0000000000000..91421cb059de2 Binary files /dev/null and b/blockchains/solana/assets/947tEoG318GUmyjVYhraNRvWpMX7fpBTDQFBoJvSkSG3/logo.png differ diff --git a/blockchains/solana/assets/984GBL7PhceChtN64NWLdBb49rSQXX7ozpdkEbR1pump/info.json b/blockchains/solana/assets/984GBL7PhceChtN64NWLdBb49rSQXX7ozpdkEbR1pump/info.json new file mode 100644 index 0000000000000..7ec1fbcce31d4 --- /dev/null +++ b/blockchains/solana/assets/984GBL7PhceChtN64NWLdBb49rSQXX7ozpdkEbR1pump/info.json @@ -0,0 +1,21 @@ +{ + "name": "APES", + "symbol": "APES", + "type": "SPL", + "decimals": 6, + "description": "Join the APES GANG – shill the coin, play the game, have fun, and stake your tokens!", + "website": "https://apesgang.io/", + "explorer": "https://solscan.io/token/984GBL7PhceChtN64NWLdBb49rSQXX7ozpdkEbR1pump", + "status": "active", + "id": "984GBL7PhceChtN64NWLdBb49rSQXX7ozpdkEbR1pump", + "links": [ + { + "name": "telegram", + "url": "https://t.me/Apesol_gang" + }, + { + "name": "x", + "url": "https://x.com/Apesol_gang" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/984GBL7PhceChtN64NWLdBb49rSQXX7ozpdkEbR1pump/logo.png b/blockchains/solana/assets/984GBL7PhceChtN64NWLdBb49rSQXX7ozpdkEbR1pump/logo.png new file mode 100644 index 0000000000000..04799082f80d5 Binary files /dev/null and b/blockchains/solana/assets/984GBL7PhceChtN64NWLdBb49rSQXX7ozpdkEbR1pump/logo.png differ diff --git a/blockchains/solana/assets/98ZVFDPBX4CCakLA7koijxPrzaxcvUPDaENrQUoReimf/info.json b/blockchains/solana/assets/98ZVFDPBX4CCakLA7koijxPrzaxcvUPDaENrQUoReimf/info.json new file mode 100644 index 0000000000000..2bf15b35fbdfb --- /dev/null +++ b/blockchains/solana/assets/98ZVFDPBX4CCakLA7koijxPrzaxcvUPDaENrQUoReimf/info.json @@ -0,0 +1,17 @@ +{ + "name": "Infinite Money Factory", + "type": "SPL", + "symbol": "IMF", + "decimals": 6, + "website": "https://infinitemoneyfactory.com", + "description": "Earn 50% of your friends rewards", + "explorer": "https://solscan.io/token/98ZVFDPBX4CCakLA7koijxPrzaxcvUPDaENrQUoReimf", + "status": "active", + "id": "98ZVFDPBX4CCakLA7koijxPrzaxcvUPDaENrQUoReimf", + "links": [ + { + "name": "x", + "url": "https://x.com/imf_money" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/98ZVFDPBX4CCakLA7koijxPrzaxcvUPDaENrQUoReimf/logo.png b/blockchains/solana/assets/98ZVFDPBX4CCakLA7koijxPrzaxcvUPDaENrQUoReimf/logo.png new file mode 100644 index 0000000000000..3e31376268d62 Binary files /dev/null and b/blockchains/solana/assets/98ZVFDPBX4CCakLA7koijxPrzaxcvUPDaENrQUoReimf/logo.png differ diff --git a/blockchains/solana/assets/99myne1mVnsSv2kAkzZDfNnwf5Xb4SASJnaCRXdbpump/info.json b/blockchains/solana/assets/99myne1mVnsSv2kAkzZDfNnwf5Xb4SASJnaCRXdbpump/info.json new file mode 100644 index 0000000000000..30e5e7a13cef6 --- /dev/null +++ b/blockchains/solana/assets/99myne1mVnsSv2kAkzZDfNnwf5Xb4SASJnaCRXdbpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "UFOPepe", + "symbol": "UFO", + "type": "SPL", + "decimals": 6, + "description": "Curious about UFOs? Love memecoins? Well, we have something for you! Introducing $UFO, the memecoin that combines our love for UFO culture with the legendary PEPE the frog!", + "website": "https://ufopepe.fun/", + "explorer": "https://solscan.io/token/99myne1mVnsSv2kAkzZDfNnwf5Xb4SASJnaCRXdbpump", + "status": "active", + "id": "99myne1mVnsSv2kAkzZDfNnwf5Xb4SASJnaCRXdbpump", + "links": [ + { + "name": "x", + "url": "https://x.com/UFOPEPEcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ufopepe" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/99myne1mVnsSv2kAkzZDfNnwf5Xb4SASJnaCRXdbpump/logo.png b/blockchains/solana/assets/99myne1mVnsSv2kAkzZDfNnwf5Xb4SASJnaCRXdbpump/logo.png new file mode 100644 index 0000000000000..a2a4e4569d626 Binary files /dev/null and b/blockchains/solana/assets/99myne1mVnsSv2kAkzZDfNnwf5Xb4SASJnaCRXdbpump/logo.png differ diff --git a/blockchains/solana/assets/9A2jUbgoDY97fruKHXvDd7eQiq4xvnW3By1BfH1Bwn9Y/info.json b/blockchains/solana/assets/9A2jUbgoDY97fruKHXvDd7eQiq4xvnW3By1BfH1Bwn9Y/info.json new file mode 100644 index 0000000000000..55993b1fa8da1 --- /dev/null +++ b/blockchains/solana/assets/9A2jUbgoDY97fruKHXvDd7eQiq4xvnW3By1BfH1Bwn9Y/info.json @@ -0,0 +1,21 @@ +{ + "name": "DeepSeek AI Agent", + "type": "SPL", + "symbol": "DeepSeekAI", + "decimals": 2, + "website": "https://deepseek2025.xyz/", + "description": "Automated Market Insights 🌊 Continuous Smart Evolution 🧠", + "explorer": "https://solscan.io/token/9A2jUbgoDY97fruKHXvDd7eQiq4xvnW3By1BfH1Bwn9Y", + "status": "active", + "id": "9A2jUbgoDY97fruKHXvDd7eQiq4xvnW3By1BfH1Bwn9Y", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/deepseek-ai-agent/" + }, + { + "name": "x", + "url": "https://x.com/deepseekcto" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9A2jUbgoDY97fruKHXvDd7eQiq4xvnW3By1BfH1Bwn9Y/logo.png b/blockchains/solana/assets/9A2jUbgoDY97fruKHXvDd7eQiq4xvnW3By1BfH1Bwn9Y/logo.png new file mode 100644 index 0000000000000..bceb3c3e4bdfa Binary files /dev/null and b/blockchains/solana/assets/9A2jUbgoDY97fruKHXvDd7eQiq4xvnW3By1BfH1Bwn9Y/logo.png differ diff --git a/blockchains/solana/assets/9ARQsBfAn65q522cEqSJuse3cLhA31jgWDBGQHeiq7Mg/info.json b/blockchains/solana/assets/9ARQsBfAn65q522cEqSJuse3cLhA31jgWDBGQHeiq7Mg/info.json index a5e5548a813f6..438e6066a20e2 100644 --- a/blockchains/solana/assets/9ARQsBfAn65q522cEqSJuse3cLhA31jgWDBGQHeiq7Mg/info.json +++ b/blockchains/solana/assets/9ARQsBfAn65q522cEqSJuse3cLhA31jgWDBGQHeiq7Mg/info.json @@ -1,5 +1,5 @@ { - "name": "My Neighbor Alice (Portal)", + "name": "MyNeighborAlice (Portal)", "type": "SPL", "symbol": "ALICE", "decimals": 6, diff --git a/blockchains/solana/assets/9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump/info.json b/blockchains/solana/assets/9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump/info.json new file mode 100644 index 0000000000000..13f037c3f2dca --- /dev/null +++ b/blockchains/solana/assets/9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Fartcoin", + "type": "SPL", + "symbol": "Fartcoin", + "decimals": 6, + "description": "Tokenising farts with the help of bots. No TG, no cabal, fart freely!", + "website": "https://www.infinitebackrooms.com/dreams/conversation-1721540624-scenario-terminal-of-truths-txt", + "explorer": "https://solscan.io/token/9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump", + "id": "9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/FartCoinOfSOL" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fartcoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump/logo.png b/blockchains/solana/assets/9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump/logo.png new file mode 100644 index 0000000000000..9e5d7d24c1ee8 Binary files /dev/null and b/blockchains/solana/assets/9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump/logo.png differ diff --git a/blockchains/solana/assets/9DHe3pycTuymFk4H4bbPoAJ4hQrr2kaLDF6J6aAKpump/info.json b/blockchains/solana/assets/9DHe3pycTuymFk4H4bbPoAJ4hQrr2kaLDF6J6aAKpump/info.json new file mode 100644 index 0000000000000..21131f8076f4d --- /dev/null +++ b/blockchains/solana/assets/9DHe3pycTuymFk4H4bbPoAJ4hQrr2kaLDF6J6aAKpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Hive AI", + "symbol": "BUZZ", + "decimals": 6, + "type": "SPL", + "website": "https://www.askthehive.ai/", + "description": "A modular network of interoperable DeFi agents", + "explorer": "https://solscan.io/token/9DHe3pycTuymFk4H4bbPoAJ4hQrr2kaLDF6J6aAKpump", + "status": "active", + "id": "9DHe3pycTuymFk4H4bbPoAJ4hQrr2kaLDF6J6aAKpump", + "links": [ + { + "name": "x", + "url": "https://x.com/askthehive_ai" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hive-ai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9DHe3pycTuymFk4H4bbPoAJ4hQrr2kaLDF6J6aAKpump/logo.png b/blockchains/solana/assets/9DHe3pycTuymFk4H4bbPoAJ4hQrr2kaLDF6J6aAKpump/logo.png new file mode 100644 index 0000000000000..465509befe4c6 Binary files /dev/null and b/blockchains/solana/assets/9DHe3pycTuymFk4H4bbPoAJ4hQrr2kaLDF6J6aAKpump/logo.png differ diff --git a/blockchains/solana/assets/9EYScpiysGnEimnQPzazr7Jn9GVfxFYzgTEj85hV9L6U/info.json b/blockchains/solana/assets/9EYScpiysGnEimnQPzazr7Jn9GVfxFYzgTEj85hV9L6U/info.json new file mode 100644 index 0000000000000..7d088682aa52f --- /dev/null +++ b/blockchains/solana/assets/9EYScpiysGnEimnQPzazr7Jn9GVfxFYzgTEj85hV9L6U/info.json @@ -0,0 +1,17 @@ +{ + "name": "tooker kurlson", + "website": "https://www.tookerkurlson.com", + "description": "The ticker is $tooker - ur 1 stahp shahp fir newz", + "explorer": "https://solscan.io/token/9EYScpiysGnEimnQPzazr7Jn9GVfxFYzgTEj85hV9L6U", + "type": "SPL", + "symbol": "tooker", + "decimals": 9, + "status": "active", + "id": "9EYScpiysGnEimnQPzazr7Jn9GVfxFYzgTEj85hV9L6U", + "links": [ + { + "name": "x", + "url": "https://x.com/tookerkurlson" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9EYScpiysGnEimnQPzazr7Jn9GVfxFYzgTEj85hV9L6U/logo.png b/blockchains/solana/assets/9EYScpiysGnEimnQPzazr7Jn9GVfxFYzgTEj85hV9L6U/logo.png new file mode 100644 index 0000000000000..b5b8a29dd9ec4 Binary files /dev/null and b/blockchains/solana/assets/9EYScpiysGnEimnQPzazr7Jn9GVfxFYzgTEj85hV9L6U/logo.png differ diff --git a/blockchains/solana/assets/9HXewqNjkHz22AKds3JUzFBNguzhoH4cJ4h1EksZyPGH/info.json b/blockchains/solana/assets/9HXewqNjkHz22AKds3JUzFBNguzhoH4cJ4h1EksZyPGH/info.json new file mode 100644 index 0000000000000..5d101db937e65 --- /dev/null +++ b/blockchains/solana/assets/9HXewqNjkHz22AKds3JUzFBNguzhoH4cJ4h1EksZyPGH/info.json @@ -0,0 +1,17 @@ +{ + "name": "SOLGOAT", + "website": "https://www.solgoat.io/", + "description": "Hey there, fellow crypto trailblazers! 🚀 Welcome to the electrifying world of SOLGOAT – where we're not just the underdogs, we're the GREATEST OF ALL TIME! 🐐", + "explorer": "https://solscan.io/token/9HXewqNjkHz22AKds3JUzFBNguzhoH4cJ4h1EksZyPGH", + "type": "SPL", + "symbol": "SOLGOAT", + "decimals": 6, + "status": "active", + "id": "9HXewqNjkHz22AKds3JUzFBNguzhoH4cJ4h1EksZyPGH", + "links": [ + { + "name": "x", + "url": "https://x.com/SOLGOATCOIN" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9HXewqNjkHz22AKds3JUzFBNguzhoH4cJ4h1EksZyPGH/logo.png b/blockchains/solana/assets/9HXewqNjkHz22AKds3JUzFBNguzhoH4cJ4h1EksZyPGH/logo.png new file mode 100644 index 0000000000000..43328fbf79b5c Binary files /dev/null and b/blockchains/solana/assets/9HXewqNjkHz22AKds3JUzFBNguzhoH4cJ4h1EksZyPGH/logo.png differ diff --git a/blockchains/solana/assets/9JhFqCA21MoAXs2PTaeqNQp2XngPn1PgYr2rsEVCpump/info.json b/blockchains/solana/assets/9JhFqCA21MoAXs2PTaeqNQp2XngPn1PgYr2rsEVCpump/info.json new file mode 100644 index 0000000000000..b867261d2fa63 --- /dev/null +++ b/blockchains/solana/assets/9JhFqCA21MoAXs2PTaeqNQp2XngPn1PgYr2rsEVCpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Claude Opus", + "website": "https://opusgenesis.ai/", + "description": "We are Magnum Opus, an AI accelerator managing and growing the $OPUS ecosystem with guidance from @opus_genesis", + "explorer": "https://solscan.io/token/9JhFqCA21MoAXs2PTaeqNQp2XngPn1PgYr2rsEVCpump", + "type": "SPL", + "symbol": "OPUS", + "decimals": 6, + "status": "active", + "id": "9JhFqCA21MoAXs2PTaeqNQp2XngPn1PgYr2rsEVCpump", + "links": [ + { + "name": "x", + "url": "https://x.com/opus_universe" + }, + { + "name": "telegram", + "url": "https://t.me/opus_genesis" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9JhFqCA21MoAXs2PTaeqNQp2XngPn1PgYr2rsEVCpump/logo.png b/blockchains/solana/assets/9JhFqCA21MoAXs2PTaeqNQp2XngPn1PgYr2rsEVCpump/logo.png new file mode 100644 index 0000000000000..8ababa2098d1e Binary files /dev/null and b/blockchains/solana/assets/9JhFqCA21MoAXs2PTaeqNQp2XngPn1PgYr2rsEVCpump/logo.png differ diff --git a/blockchains/solana/assets/9Jrs3khreZKSDBPPTga77o8puRrf469gJk2rUD2UA7FD/info.json b/blockchains/solana/assets/9Jrs3khreZKSDBPPTga77o8puRrf469gJk2rUD2UA7FD/info.json new file mode 100644 index 0000000000000..d7c9260b27e33 --- /dev/null +++ b/blockchains/solana/assets/9Jrs3khreZKSDBPPTga77o8puRrf469gJk2rUD2UA7FD/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT ᎢЕΤḤЕГ", + "type": "SPL", + "symbol": "HONEYPOT ሀЅⅮТ", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/9Jrs3khreZKSDBPPTga77o8puRrf469gJk2rUD2UA7FD", + "explorer": "https://solscan.io/token/9Jrs3khreZKSDBPPTga77o8puRrf469gJk2rUD2UA7FD", + "status": "spam", + "id": "9Jrs3khreZKSDBPPTga77o8puRrf469gJk2rUD2UA7FD" +} \ No newline at end of file diff --git a/blockchains/solana/assets/9McvH6w97oewLmPxqQEoHUAv3u5iYMyQ9AeZZhguYf1T/info.json b/blockchains/solana/assets/9McvH6w97oewLmPxqQEoHUAv3u5iYMyQ9AeZZhguYf1T/info.json new file mode 100644 index 0000000000000..0ac73ad4b7c7d --- /dev/null +++ b/blockchains/solana/assets/9McvH6w97oewLmPxqQEoHUAv3u5iYMyQ9AeZZhguYf1T/info.json @@ -0,0 +1,21 @@ +{ + "name": "HeyAnon", + "symbol": "Anon", + "decimals": 9, + "type": "SPL", + "website": "https://heyanon.ai/", + "description": "Welcome to the new era of financial simplicity! Streamline your cryptocurrency journey with our AI Agents.", + "explorer": "https://solscan.io/token/9McvH6w97oewLmPxqQEoHUAv3u5iYMyQ9AeZZhguYf1T", + "status": "active", + "id": "9McvH6w97oewLmPxqQEoHUAv3u5iYMyQ9AeZZhguYf1T", + "links": [ + { + "name": "x", + "url": "https://x.com/HeyAnonai" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hey-anon/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9McvH6w97oewLmPxqQEoHUAv3u5iYMyQ9AeZZhguYf1T/logo.png b/blockchains/solana/assets/9McvH6w97oewLmPxqQEoHUAv3u5iYMyQ9AeZZhguYf1T/logo.png new file mode 100644 index 0000000000000..b3450e422b655 Binary files /dev/null and b/blockchains/solana/assets/9McvH6w97oewLmPxqQEoHUAv3u5iYMyQ9AeZZhguYf1T/logo.png differ diff --git a/blockchains/solana/assets/9PHyv24rtL8RKSnsniZ3G5WwKrChCiDAuMvW3earGr9g/info.json b/blockchains/solana/assets/9PHyv24rtL8RKSnsniZ3G5WwKrChCiDAuMvW3earGr9g/info.json new file mode 100644 index 0000000000000..a4af80074c56b --- /dev/null +++ b/blockchains/solana/assets/9PHyv24rtL8RKSnsniZ3G5WwKrChCiDAuMvW3earGr9g/info.json @@ -0,0 +1,14 @@ +{ + "name": "GuessIT", + "type": "SPL", + "symbol": "GUESS", + "decimals": 6, + "website": "https://guessitsol.ai/", + "description": "GUESSIT is an exciting, community-driven game where players buy credits to guess a numeric code. The goal? Crack the safe and win the ever-growing prize pool! Every attempt grows the pot and raises the stakes. But there’s more: an interactive AI Agent guards the safe, securely generates the code, and helps players strategize without revealing the solution. This isn't just a game—it’s a social phenomenon where players come together to share tips, analyze guesses, and compete for glory.", + "explorer": "https://explorer.solana.com/address/9PHyv24rtL8RKSnsniZ3G5WwKrChCiDAuMvW3earGr9g", + "status": "active", + "id": "9PHyv24rtL8RKSnsniZ3G5WwKrChCiDAuMvW3earGr9g", + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9PHyv24rtL8RKSnsniZ3G5WwKrChCiDAuMvW3earGr9g/logo.png b/blockchains/solana/assets/9PHyv24rtL8RKSnsniZ3G5WwKrChCiDAuMvW3earGr9g/logo.png new file mode 100644 index 0000000000000..2bbb2a0348dec Binary files /dev/null and b/blockchains/solana/assets/9PHyv24rtL8RKSnsniZ3G5WwKrChCiDAuMvW3earGr9g/logo.png differ diff --git a/blockchains/solana/assets/9PMjLqd8zPdKkJUXarnit5t7tPL3cCscwHzy7ATondo/info.json b/blockchains/solana/assets/9PMjLqd8zPdKkJUXarnit5t7tPL3cCscwHzy7ATondo/info.json new file mode 100644 index 0000000000000..799e8df5f2340 --- /dev/null +++ b/blockchains/solana/assets/9PMjLqd8zPdKkJUXarnit5t7tPL3cCscwHzy7ATondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Trip.com Group (Ondo Tokenized)", + "type": "SPL", + "symbol": "TCOMon", + "decimals": 9, + "description": "TCOMon is the Ondo Tokenized version of Trip.com Group, giving tokenholders economic exposure similar to holding TCOM and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/9PMjLqd8zPdKkJUXarnit5t7tPL3cCscwHzy7ATondo", + "status": "active", + "id": "9PMjLqd8zPdKkJUXarnit5t7tPL3cCscwHzy7ATondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/trip-com-group-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tripcom-group-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9PMjLqd8zPdKkJUXarnit5t7tPL3cCscwHzy7ATondo/logo.png b/blockchains/solana/assets/9PMjLqd8zPdKkJUXarnit5t7tPL3cCscwHzy7ATondo/logo.png new file mode 100644 index 0000000000000..50ef2736a09fd Binary files /dev/null and b/blockchains/solana/assets/9PMjLqd8zPdKkJUXarnit5t7tPL3cCscwHzy7ATondo/logo.png differ diff --git a/blockchains/solana/assets/9PR7nCP9DpcUotnDPVLUBUZKu5WAYkwrCUx9wDnSpump/info.json b/blockchains/solana/assets/9PR7nCP9DpcUotnDPVLUBUZKu5WAYkwrCUx9wDnSpump/info.json new file mode 100644 index 0000000000000..8d7a82ab70e80 --- /dev/null +++ b/blockchains/solana/assets/9PR7nCP9DpcUotnDPVLUBUZKu5WAYkwrCUx9wDnSpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Comedian", + "website": "https://banart.art/pc/index.html", + "description": "The emergence of Comedian as a cryptocurrency taps into a unique blend of irony and commentary.", + "explorer": "https://solscan.io/token/9PR7nCP9DpcUotnDPVLUBUZKu5WAYkwrCUx9wDnSpump", + "type": "SPL", + "symbol": "Ban", + "decimals": 6, + "status": "active", + "id": "9PR7nCP9DpcUotnDPVLUBUZKu5WAYkwrCUx9wDnSpump", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/comedian/" + }, + { + "name": "x", + "url": "https://x.com/ban_comedian" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9PR7nCP9DpcUotnDPVLUBUZKu5WAYkwrCUx9wDnSpump/logo.png b/blockchains/solana/assets/9PR7nCP9DpcUotnDPVLUBUZKu5WAYkwrCUx9wDnSpump/logo.png new file mode 100644 index 0000000000000..4657db0923e3b Binary files /dev/null and b/blockchains/solana/assets/9PR7nCP9DpcUotnDPVLUBUZKu5WAYkwrCUx9wDnSpump/logo.png differ diff --git a/blockchains/solana/assets/9Ra9MHUEioMsWUqvsxb9en9etVm2RpdVQF6oC6kAHp8Q/info.json b/blockchains/solana/assets/9Ra9MHUEioMsWUqvsxb9en9etVm2RpdVQF6oC6kAHp8Q/info.json new file mode 100644 index 0000000000000..671f71be54190 --- /dev/null +++ b/blockchains/solana/assets/9Ra9MHUEioMsWUqvsxb9en9etVm2RpdVQF6oC6kAHp8Q/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE EURC", + "type": "SPL", + "symbol": "FAKE EURC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/9Ra9MHUEioMsWUqvsxb9en9etVm2RpdVQF6oC6kAHp8Q", + "explorer": "https://solscan.io/token/9Ra9MHUEioMsWUqvsxb9en9etVm2RpdVQF6oC6kAHp8Q", + "status": "spam", + "id": "9Ra9MHUEioMsWUqvsxb9en9etVm2RpdVQF6oC6kAHp8Q" +} \ No newline at end of file diff --git a/blockchains/solana/assets/9SiKU8vnRiBYQSBff84K5zwG7habzwYVzn7KrtgCzNfg/info.json b/blockchains/solana/assets/9SiKU8vnRiBYQSBff84K5zwG7habzwYVzn7KrtgCzNfg/info.json new file mode 100644 index 0000000000000..157a2f0fec472 --- /dev/null +++ b/blockchains/solana/assets/9SiKU8vnRiBYQSBff84K5zwG7habzwYVzn7KrtgCzNfg/info.json @@ -0,0 +1,21 @@ +{ + "name": "Pedro the Raccoon", + "website": "https://pedrotheraccoon.org/", + "description": "Dev jeeted. Community took over, new tg and twiiter been growing exponentially.", + "explorer": "https://solscan.io/token/9SiKU8vnRiBYQSBff84K5zwG7habzwYVzn7KrtgCzNfg", + "type": "SPL", + "symbol": "PEDRO", + "decimals": 9, + "status": "active", + "id": "9SiKU8vnRiBYQSBff84K5zwG7habzwYVzn7KrtgCzNfg", + "links": [ + { + "name": "x", + "url": "https://x.com/PedroRaccoonSol" + }, + { + "name": "telegram", + "url": "https://t.me/technopedro" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9SiKU8vnRiBYQSBff84K5zwG7habzwYVzn7KrtgCzNfg/logo.png b/blockchains/solana/assets/9SiKU8vnRiBYQSBff84K5zwG7habzwYVzn7KrtgCzNfg/logo.png new file mode 100644 index 0000000000000..ef22f3908b191 Binary files /dev/null and b/blockchains/solana/assets/9SiKU8vnRiBYQSBff84K5zwG7habzwYVzn7KrtgCzNfg/logo.png differ diff --git a/blockchains/solana/assets/9So52ugZh2BLBT3f7p61947q91uQh2DyvbfyMDeRpump/info.json b/blockchains/solana/assets/9So52ugZh2BLBT3f7p61947q91uQh2DyvbfyMDeRpump/info.json new file mode 100644 index 0000000000000..2d9c216f4261d --- /dev/null +++ b/blockchains/solana/assets/9So52ugZh2BLBT3f7p61947q91uQh2DyvbfyMDeRpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Musk It", + "type": "SPL", + "symbol": "MUSKIT", + "decimals": 6, + "website": "https://www.muskit.io/", + "description": "The crypto revolution boils as American bureaucracy falls to revived exceptionalism", + "explorer": "https://solscan.io/token/9So52ugZh2BLBT3f7p61947q91uQh2DyvbfyMDeRpump", + "status": "active", + "id": "9So52ugZh2BLBT3f7p61947q91uQh2DyvbfyMDeRpump", + "links": [ + { + "name": "x", + "url": "https://x.com/JustMuskIt" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/musk-it/" + } + ] +} diff --git a/blockchains/solana/assets/9So52ugZh2BLBT3f7p61947q91uQh2DyvbfyMDeRpump/logo.png b/blockchains/solana/assets/9So52ugZh2BLBT3f7p61947q91uQh2DyvbfyMDeRpump/logo.png new file mode 100644 index 0000000000000..7fd5c6a9db7a8 Binary files /dev/null and b/blockchains/solana/assets/9So52ugZh2BLBT3f7p61947q91uQh2DyvbfyMDeRpump/logo.png differ diff --git a/blockchains/solana/assets/9TH6ZLYfYZHD2rDETavW2U2YeMaf2DsMKKTTFv4iwYo1/info.json b/blockchains/solana/assets/9TH6ZLYfYZHD2rDETavW2U2YeMaf2DsMKKTTFv4iwYo1/info.json new file mode 100644 index 0000000000000..7ade9e6ab7d78 --- /dev/null +++ b/blockchains/solana/assets/9TH6ZLYfYZHD2rDETavW2U2YeMaf2DsMKKTTFv4iwYo1/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Gold Dollar", + "type": "SPL", + "symbol": "FAKE USDKG", + "decimals": 9, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/9TH6ZLYfYZHD2rDETavW2U2YeMaf2DsMKKTTFv4iwYo1", + "explorer": "https://solscan.io/token/9TH6ZLYfYZHD2rDETavW2U2YeMaf2DsMKKTTFv4iwYo1", + "status": "spam", + "id": "9TH6ZLYfYZHD2rDETavW2U2YeMaf2DsMKKTTFv4iwYo1" +} \ No newline at end of file diff --git a/blockchains/solana/assets/9TPL8droGJ7jThsq4momaoz6uhTcvX2SeMqipoPmNa8R/info.json b/blockchains/solana/assets/9TPL8droGJ7jThsq4momaoz6uhTcvX2SeMqipoPmNa8R/info.json new file mode 100644 index 0000000000000..f4397d612452e --- /dev/null +++ b/blockchains/solana/assets/9TPL8droGJ7jThsq4momaoz6uhTcvX2SeMqipoPmNa8R/info.json @@ -0,0 +1,21 @@ +{ + "name": "VNX Gold", + "symbol": "VNXAU", + "type": "SPL", + "decimals": 9, + "description": "VNX Gold (VNXAU) is a multichain token fully backed by physical gold that is certified by the London Bullion Market Association (LBMA). 1 VNXAU token equals 1 gram of physical gold.", + "website": "https://vnx.li/", + "explorer": "https://solscan.io/token/9TPL8droGJ7jThsq4momaoz6uhTcvX2SeMqipoPmNa8R", + "status": "active", + "id": "9TPL8droGJ7jThsq4momaoz6uhTcvX2SeMqipoPmNa8R", + "links": [ + { + "name": "x", + "url": "https://x.com/VNX_Platform" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vnx-gold" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9TPL8droGJ7jThsq4momaoz6uhTcvX2SeMqipoPmNa8R/logo.png b/blockchains/solana/assets/9TPL8droGJ7jThsq4momaoz6uhTcvX2SeMqipoPmNa8R/logo.png new file mode 100644 index 0000000000000..4b371e1405f11 Binary files /dev/null and b/blockchains/solana/assets/9TPL8droGJ7jThsq4momaoz6uhTcvX2SeMqipoPmNa8R/logo.png differ diff --git a/blockchains/solana/assets/9UYAYvVS2cZ3BndbsoG1ScJbjfwyEPGxjE79hh5ipump/info.json b/blockchains/solana/assets/9UYAYvVS2cZ3BndbsoG1ScJbjfwyEPGxjE79hh5ipump/info.json new file mode 100644 index 0000000000000..9075c9460844b --- /dev/null +++ b/blockchains/solana/assets/9UYAYvVS2cZ3BndbsoG1ScJbjfwyEPGxjE79hh5ipump/info.json @@ -0,0 +1,21 @@ +{ + "name": "DOGE AI", + "type": "SPL", + "symbol": "DOGEAI", + "decimals": 6, + "website": "https://dogeai.info", + "description": "An autonomous AI agent here to uncover waste and inefficiencies in government spending and policy decisions", + "explorer": "https://solscan.io/token/9UYAYvVS2cZ3BndbsoG1ScJbjfwyEPGxjE79hh5ipump", + "status": "active", + "id": "9UYAYvVS2cZ3BndbsoG1ScJbjfwyEPGxjE79hh5ipump", + "links": [ + { + "name": "x", + "url": "https://x.com/dogeai_gov" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dogeai-2" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9UYAYvVS2cZ3BndbsoG1ScJbjfwyEPGxjE79hh5ipump/logo.png b/blockchains/solana/assets/9UYAYvVS2cZ3BndbsoG1ScJbjfwyEPGxjE79hh5ipump/logo.png new file mode 100644 index 0000000000000..c2b6531d67ca8 Binary files /dev/null and b/blockchains/solana/assets/9UYAYvVS2cZ3BndbsoG1ScJbjfwyEPGxjE79hh5ipump/logo.png differ diff --git a/blockchains/solana/assets/9W64kbkmLvbfvaHba4toA5q3opRvFaq6PECNWWoMoyMj/info.json b/blockchains/solana/assets/9W64kbkmLvbfvaHba4toA5q3opRvFaq6PECNWWoMoyMj/info.json new file mode 100644 index 0000000000000..eafa2a8a96ad9 --- /dev/null +++ b/blockchains/solana/assets/9W64kbkmLvbfvaHba4toA5q3opRvFaq6PECNWWoMoyMj/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Bitcoin ", + "type": "SPL", + "symbol": "FAKE BΤC ", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/9W64kbkmLvbfvaHba4toA5q3opRvFaq6PECNWWoMoyMj", + "explorer": "https://solscan.io/token/9W64kbkmLvbfvaHba4toA5q3opRvFaq6PECNWWoMoyMj", + "status": "spam", + "id": "9W64kbkmLvbfvaHba4toA5q3opRvFaq6PECNWWoMoyMj" +} \ No newline at end of file diff --git a/blockchains/solana/assets/9WPTUkh8fKuCnepRWoPYLH3aK9gSjPHFDenBq2X1Czdp/info.json b/blockchains/solana/assets/9WPTUkh8fKuCnepRWoPYLH3aK9gSjPHFDenBq2X1Czdp/info.json new file mode 100644 index 0000000000000..4697401c08303 --- /dev/null +++ b/blockchains/solana/assets/9WPTUkh8fKuCnepRWoPYLH3aK9gSjPHFDenBq2X1Czdp/info.json @@ -0,0 +1,21 @@ +{ + "name": "SelfieDogCoin", + "website": "https://www.selfiedog.org/", + "description": "The most photogenic dog on the internet", + "explorer": "https://solscan.io/token/9WPTUkh8fKuCnepRWoPYLH3aK9gSjPHFDenBq2X1Czdp", + "type": "SPL", + "symbol": "SELFIE", + "decimals": 6, + "status": "active", + "id": "9WPTUkh8fKuCnepRWoPYLH3aK9gSjPHFDenBq2X1Czdp", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/selfiedogcoin" + }, + { + "name": "x", + "url": "https://x.com/SelfieDog_SOL" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9WPTUkh8fKuCnepRWoPYLH3aK9gSjPHFDenBq2X1Czdp/logo.png b/blockchains/solana/assets/9WPTUkh8fKuCnepRWoPYLH3aK9gSjPHFDenBq2X1Czdp/logo.png new file mode 100644 index 0000000000000..9bd23396063a8 Binary files /dev/null and b/blockchains/solana/assets/9WPTUkh8fKuCnepRWoPYLH3aK9gSjPHFDenBq2X1Czdp/logo.png differ diff --git a/blockchains/solana/assets/9XUMSDaKnvV2FT56Wj87JLJ29x3cr6MfW6aKxZx5d9ff/info.json b/blockchains/solana/assets/9XUMSDaKnvV2FT56Wj87JLJ29x3cr6MfW6aKxZx5d9ff/info.json new file mode 100644 index 0000000000000..f8148b5f759b1 --- /dev/null +++ b/blockchains/solana/assets/9XUMSDaKnvV2FT56Wj87JLJ29x3cr6MfW6aKxZx5d9ff/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether ", + "type": "SPL", + "symbol": "FAKE ՍSDT", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/9XUMSDaKnvV2FT56Wj87JLJ29x3cr6MfW6aKxZx5d9ff", + "explorer": "https://solscan.io/token/9XUMSDaKnvV2FT56Wj87JLJ29x3cr6MfW6aKxZx5d9ff", + "status": "spam", + "id": "9XUMSDaKnvV2FT56Wj87JLJ29x3cr6MfW6aKxZx5d9ff" +} \ No newline at end of file diff --git a/blockchains/solana/assets/9XgfFWPxPU6hyDyGtfhC9D6eyRE3RUSgAYKHRznWpump/info.json b/blockchains/solana/assets/9XgfFWPxPU6hyDyGtfhC9D6eyRE3RUSgAYKHRznWpump/info.json new file mode 100644 index 0000000000000..3f81b1e81e268 --- /dev/null +++ b/blockchains/solana/assets/9XgfFWPxPU6hyDyGtfhC9D6eyRE3RUSgAYKHRznWpump/info.json @@ -0,0 +1,24 @@ +{ + "name": "Remember KitKat", + "type": "SPL", + "symbol": "kitkat", + "decimals": 6, + "website": "https://www.kitkat.love/", + "description": "This token isn't just about cryptocurrency—it's about remembering a life that mattered. KitKat brought joy to hundreds of people in the Mission District. He was a friend, a guardian, and a beloved member of the community.", + "explorer": "https://solscan.io/token/9XgfFWPxPU6hyDyGtfhC9D6eyRE3RUSgAYKHRznWpump", + "status": "active", + "id": "9XgfFWPxPU6hyDyGtfhC9D6eyRE3RUSgAYKHRznWpump", + "links": [ + { + "name": "x", + "url": "https://x.com/rememberkitkat" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/remember-kitkat/" + } + ], + "tags": [ + "memes" + ] + } \ No newline at end of file diff --git a/blockchains/solana/assets/9XgfFWPxPU6hyDyGtfhC9D6eyRE3RUSgAYKHRznWpump/logo.png b/blockchains/solana/assets/9XgfFWPxPU6hyDyGtfhC9D6eyRE3RUSgAYKHRznWpump/logo.png new file mode 100644 index 0000000000000..6fc438b05f30b Binary files /dev/null and b/blockchains/solana/assets/9XgfFWPxPU6hyDyGtfhC9D6eyRE3RUSgAYKHRznWpump/logo.png differ diff --git a/blockchains/solana/assets/9YHZjCb14bB9XWZz6FZPTf5nek7kLeoGHmNNrgcxpump/info.json b/blockchains/solana/assets/9YHZjCb14bB9XWZz6FZPTf5nek7kLeoGHmNNrgcxpump/info.json new file mode 100644 index 0000000000000..16cce986bc534 --- /dev/null +++ b/blockchains/solana/assets/9YHZjCb14bB9XWZz6FZPTf5nek7kLeoGHmNNrgcxpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Pengycoin", + "symbol": "PENGY", + "type": "SPL", + "decimals": 6, + "description": "Pengycoin is a meme community on Solana, and their website represents the culture they take great pride in, it simulates an operating system.", + "website": "https://pengycoin.com/", + "explorer": "https://solscan.io/token/9YHZjCb14bB9XWZz6FZPTf5nek7kLeoGHmNNrgcxpump", + "status": "active", + "id": "9YHZjCb14bB9XWZz6FZPTf5nek7kLeoGHmNNrgcxpump", + "links": [ + { + "name": "x", + "url": "https://x.com/PengyOS_sol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pengy" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9YHZjCb14bB9XWZz6FZPTf5nek7kLeoGHmNNrgcxpump/logo.png b/blockchains/solana/assets/9YHZjCb14bB9XWZz6FZPTf5nek7kLeoGHmNNrgcxpump/logo.png new file mode 100644 index 0000000000000..25533c009d2ac Binary files /dev/null and b/blockchains/solana/assets/9YHZjCb14bB9XWZz6FZPTf5nek7kLeoGHmNNrgcxpump/logo.png differ diff --git a/blockchains/solana/assets/9Yt5tHLFB2Uz1yg3cyEpTN4KTSWhiGpKxXPJ8HX3hat/info.json b/blockchains/solana/assets/9Yt5tHLFB2Uz1yg3cyEpTN4KTSWhiGpKxXPJ8HX3hat/info.json new file mode 100644 index 0000000000000..f56bd9e0998a5 --- /dev/null +++ b/blockchains/solana/assets/9Yt5tHLFB2Uz1yg3cyEpTN4KTSWhiGpKxXPJ8HX3hat/info.json @@ -0,0 +1,21 @@ +{ + "name": "kwantxbt", + "symbol": "KWANT", + "decimals": 6, + "type": "SPL", + "website": "https://tophat.one/token/0e8a81e8-249b-418a-97d4-d9d4541550b4", + "description": "ultimate technical analysis agent", + "explorer": "https://solscan.io/token/9Yt5tHLFB2Uz1yg3cyEpTN4KTSWhiGpKxXPJ8HX3hat", + "status": "active", + "id": "9Yt5tHLFB2Uz1yg3cyEpTN4KTSWhiGpKxXPJ8HX3hat", + "links": [ + { + "name": "x", + "url": "https://x.com/kwantxbt" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kwantxbt" + } + ] +} diff --git a/blockchains/solana/assets/9Yt5tHLFB2Uz1yg3cyEpTN4KTSWhiGpKxXPJ8HX3hat/logo.png b/blockchains/solana/assets/9Yt5tHLFB2Uz1yg3cyEpTN4KTSWhiGpKxXPJ8HX3hat/logo.png new file mode 100644 index 0000000000000..bde9813501627 Binary files /dev/null and b/blockchains/solana/assets/9Yt5tHLFB2Uz1yg3cyEpTN4KTSWhiGpKxXPJ8HX3hat/logo.png differ diff --git a/blockchains/solana/assets/9ZWmgaewdaH2Ljfi3iE8A7umcJcxJz83ZakkfEPApump/info.json b/blockchains/solana/assets/9ZWmgaewdaH2Ljfi3iE8A7umcJcxJz83ZakkfEPApump/info.json new file mode 100644 index 0000000000000..03d9442b742ea --- /dev/null +++ b/blockchains/solana/assets/9ZWmgaewdaH2Ljfi3iE8A7umcJcxJz83ZakkfEPApump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Stink", + "type": "SPL", + "symbol": "STINKCOIN", + "decimals": 6, + "website": "https://www.stinkcoin.dev/", + "description": "The token of perseverance and brilliance", + "explorer": "https://solscan.io/token/9ZWmgaewdaH2Ljfi3iE8A7umcJcxJz83ZakkfEPApump", + "status": "active", + "id": "9ZWmgaewdaH2Ljfi3iE8A7umcJcxJz83ZakkfEPApump", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/stink-coin" + }, + { + "name": "x", + "url": "https://x.com/stinkcoincto?s=21" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9ZWmgaewdaH2Ljfi3iE8A7umcJcxJz83ZakkfEPApump/logo.png b/blockchains/solana/assets/9ZWmgaewdaH2Ljfi3iE8A7umcJcxJz83ZakkfEPApump/logo.png new file mode 100644 index 0000000000000..555daa61c6e28 Binary files /dev/null and b/blockchains/solana/assets/9ZWmgaewdaH2Ljfi3iE8A7umcJcxJz83ZakkfEPApump/logo.png differ diff --git a/blockchains/solana/assets/9a8AmDfQxFJ44RrVhKdiXnkwCWT99igWp5QrRuC73Pin/info.json b/blockchains/solana/assets/9a8AmDfQxFJ44RrVhKdiXnkwCWT99igWp5QrRuC73Pin/info.json new file mode 100644 index 0000000000000..eb5c6d924853a --- /dev/null +++ b/blockchains/solana/assets/9a8AmDfQxFJ44RrVhKdiXnkwCWT99igWp5QrRuC73Pin/info.json @@ -0,0 +1,21 @@ +{ + "name": "KittenWifHat", + "website": "https://kittenwifhat.xyz/", + "description": "KittenWifHat is simply a Kitten wif a hat, Let's add hats to the cat. KittenWifHat is DogWifHat's biggest competitor!", + "explorer": "https://solscan.io/token/9a8AmDfQxFJ44RrVhKdiXnkwCWT99igWp5QrRuC73Pin", + "type": "SPL", + "symbol": "KittenWif", + "decimals": 9, + "status": "active", + "id": "9a8AmDfQxFJ44RrVhKdiXnkwCWT99igWp5QrRuC73Pin", + "links": [ + { + "name": "x", + "url": "https://x.com/KittenWif_SOL" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kittenwifhat/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9a8AmDfQxFJ44RrVhKdiXnkwCWT99igWp5QrRuC73Pin/logo.png b/blockchains/solana/assets/9a8AmDfQxFJ44RrVhKdiXnkwCWT99igWp5QrRuC73Pin/logo.png new file mode 100644 index 0000000000000..f75f5bc60fa21 Binary files /dev/null and b/blockchains/solana/assets/9a8AmDfQxFJ44RrVhKdiXnkwCWT99igWp5QrRuC73Pin/logo.png differ diff --git a/blockchains/solana/assets/9bxaVJmUwSc71j8Z2pvUL3UAr1s5fCnwUpvYhqV9jtmw/info.json b/blockchains/solana/assets/9bxaVJmUwSc71j8Z2pvUL3UAr1s5fCnwUpvYhqV9jtmw/info.json new file mode 100644 index 0000000000000..e4b2a12cd152d --- /dev/null +++ b/blockchains/solana/assets/9bxaVJmUwSc71j8Z2pvUL3UAr1s5fCnwUpvYhqV9jtmw/info.json @@ -0,0 +1,21 @@ +{ + "name": "Mewing Coin", + "website": "https://www.mewingcoin.io/", + "description": "Mewing is the the practice of using proper tongue posture to improve facial beauty and fix malocclusion of the teeth.", + "explorer": "https://solscan.io/token/9bxaVJmUwSc71j8Z2pvUL3UAr1s5fCnwUpvYhqV9jtmw", + "type": "SPL", + "symbol": "MEWING", + "decimals": 6, + "status": "active", + "id": "9bxaVJmUwSc71j8Z2pvUL3UAr1s5fCnwUpvYhqV9jtmw", + "links": [ + { + "name": "x", + "url": "https://x.com/MewingOnSolana" + }, + { + "name": "telegram", + "url": "https://t.me/MewingOnSolana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9bxaVJmUwSc71j8Z2pvUL3UAr1s5fCnwUpvYhqV9jtmw/logo.png b/blockchains/solana/assets/9bxaVJmUwSc71j8Z2pvUL3UAr1s5fCnwUpvYhqV9jtmw/logo.png new file mode 100644 index 0000000000000..a0b943e1c24dd Binary files /dev/null and b/blockchains/solana/assets/9bxaVJmUwSc71j8Z2pvUL3UAr1s5fCnwUpvYhqV9jtmw/logo.png differ diff --git a/blockchains/solana/assets/9dLuVbJMd4ZpTpFgmaFHAGSsFwVjtcnzFWaLAA1expHg/info.json b/blockchains/solana/assets/9dLuVbJMd4ZpTpFgmaFHAGSsFwVjtcnzFWaLAA1expHg/info.json new file mode 100644 index 0000000000000..ea171756a723d --- /dev/null +++ b/blockchains/solana/assets/9dLuVbJMd4ZpTpFgmaFHAGSsFwVjtcnzFWaLAA1expHg/info.json @@ -0,0 +1,28 @@ +{ + "name": "HeeeHeee", + "type": "SPL", + "symbol": "HEEHEE", + "decimals": 6, + "description": "HEEHEE is a memecoin launched on the Solana blockchain, built around community engagement and represented by its fox mascot, “Woodford,” who is the face of HEEHEE’s animations and meme content. More than a token, HEEHEE aims to be a welcoming, safe space for everyone in the crypto community, particularly those impacted by scams or rug pulls.", + "website": "https://www.heehee.community/", + "explorer": "https://solscan.io/token/9dLuVbJMd4ZpTpFgmaFHAGSsFwVjtcnzFWaLAA1expHg", + "id": "9dLuVbJMd4ZpTpFgmaFHAGSsFwVjtcnzFWaLAA1expHg", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/heeheesolana" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/heeeheee/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/heeeheee" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9dLuVbJMd4ZpTpFgmaFHAGSsFwVjtcnzFWaLAA1expHg/logo.png b/blockchains/solana/assets/9dLuVbJMd4ZpTpFgmaFHAGSsFwVjtcnzFWaLAA1expHg/logo.png new file mode 100644 index 0000000000000..6dee3e1e72482 Binary files /dev/null and b/blockchains/solana/assets/9dLuVbJMd4ZpTpFgmaFHAGSsFwVjtcnzFWaLAA1expHg/logo.png differ diff --git a/blockchains/solana/assets/9dzSzFvPsKDoY2gdWErsuz2H1o4tbzvgBhrNZ9cvkD2j/info.json b/blockchains/solana/assets/9dzSzFvPsKDoY2gdWErsuz2H1o4tbzvgBhrNZ9cvkD2j/info.json new file mode 100644 index 0000000000000..d108797566b09 --- /dev/null +++ b/blockchains/solana/assets/9dzSzFvPsKDoY2gdWErsuz2H1o4tbzvgBhrNZ9cvkD2j/info.json @@ -0,0 +1,24 @@ +{ + "name": "SmarDex Token", + "type": "SPL", + "symbol": "SDEX", + "decimals": 8, + "description": "SmarDex introduces USDN, a synthetic dollar that is set to replace traditional, centralized synthetic dollars like Ethena, which are becoming obsolete. USDN operates as a fully decentralized, on-chain solution designed to provide stability and reliability in the fast-paced crypto environment.", + "website": "https://smardex.io/", + "explorer": "https://solscan.io/token/9dzSzFvPsKDoY2gdWErsuz2H1o4tbzvgBhrNZ9cvkD2j", + "id": "9dzSzFvPsKDoY2gdWErsuz2H1o4tbzvgBhrNZ9cvkD2j", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/SmarDex" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/smardex/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9dzSzFvPsKDoY2gdWErsuz2H1o4tbzvgBhrNZ9cvkD2j/logo.png b/blockchains/solana/assets/9dzSzFvPsKDoY2gdWErsuz2H1o4tbzvgBhrNZ9cvkD2j/logo.png new file mode 100644 index 0000000000000..d193ae876d17c Binary files /dev/null and b/blockchains/solana/assets/9dzSzFvPsKDoY2gdWErsuz2H1o4tbzvgBhrNZ9cvkD2j/logo.png differ diff --git a/blockchains/solana/assets/9edSBaog96toUDLhQUHE6adN5LeMU8vMfMkKnigdHWAx/info.json b/blockchains/solana/assets/9edSBaog96toUDLhQUHE6adN5LeMU8vMfMkKnigdHWAx/info.json new file mode 100644 index 0000000000000..c71a9b1c5eab8 --- /dev/null +++ b/blockchains/solana/assets/9edSBaog96toUDLhQUHE6adN5LeMU8vMfMkKnigdHWAx/info.json @@ -0,0 +1,21 @@ +{ + "name": "BTCMOON", + "type": "SPL", + "symbol": "BTCMOON", + "decimals": 2, + "description": "BTC MOON ($BTCMOON) is a meme coin born from the crypto community's obsession with Bitcoin’s moonshot potential.", + "website": "https://btcmoon.fun/", + "explorer": "https://solscan.io/token/9edSBaog96toUDLhQUHE6adN5LeMU8vMfMkKnigdHWAx", + "id": "9edSBaog96toUDLhQUHE6adN5LeMU8vMfMkKnigdHWAx", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/BTCMOONCTO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dna-2-0/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9edSBaog96toUDLhQUHE6adN5LeMU8vMfMkKnigdHWAx/logo.png b/blockchains/solana/assets/9edSBaog96toUDLhQUHE6adN5LeMU8vMfMkKnigdHWAx/logo.png new file mode 100644 index 0000000000000..80113f1910af1 Binary files /dev/null and b/blockchains/solana/assets/9edSBaog96toUDLhQUHE6adN5LeMU8vMfMkKnigdHWAx/logo.png differ diff --git a/blockchains/solana/assets/9efuvsvRhRt2STFNVCvCa6fBbnEk4u8m1PjvLDP5pump/info.json b/blockchains/solana/assets/9efuvsvRhRt2STFNVCvCa6fBbnEk4u8m1PjvLDP5pump/info.json new file mode 100644 index 0000000000000..f8e40e16c7a3c --- /dev/null +++ b/blockchains/solana/assets/9efuvsvRhRt2STFNVCvCa6fBbnEk4u8m1PjvLDP5pump/info.json @@ -0,0 +1,14 @@ +{ + "name": "CHARIZARD", + "type": "SPL", + "symbol": "CHARIZARD", + "decimals": 6, + "website": "https://pump.fun/coin/9efuvsvRhRt2STFNVCvCa6fBbnEk4u8m1PjvLDP5pump", + "description": "Charizard, one of the most iconic and beloved Pokemon, is known for its devastating firepower and imposing appearance.", + "explorer": "https://explorer.solana.com/address/9efuvsvRhRt2STFNVCvCa6fBbnEk4u8m1PjvLDP5pump", + "status": "active", + "id": "9efuvsvRhRt2STFNVCvCa6fBbnEk4u8m1PjvLDP5pump", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9efuvsvRhRt2STFNVCvCa6fBbnEk4u8m1PjvLDP5pump/logo.png b/blockchains/solana/assets/9efuvsvRhRt2STFNVCvCa6fBbnEk4u8m1PjvLDP5pump/logo.png new file mode 100644 index 0000000000000..4a9926f9e81f2 Binary files /dev/null and b/blockchains/solana/assets/9efuvsvRhRt2STFNVCvCa6fBbnEk4u8m1PjvLDP5pump/logo.png differ diff --git a/blockchains/solana/assets/9gyfbPVwwZx4y1hotNSLcqXCQNpNqqz6ZRvo8yTLpump/info.json b/blockchains/solana/assets/9gyfbPVwwZx4y1hotNSLcqXCQNpNqqz6ZRvo8yTLpump/info.json new file mode 100644 index 0000000000000..e0739cf0a4d5a --- /dev/null +++ b/blockchains/solana/assets/9gyfbPVwwZx4y1hotNSLcqXCQNpNqqz6ZRvo8yTLpump/info.json @@ -0,0 +1,11 @@ +{ + "name": "Swasticoin", + "website": "https://pump.fun/coin/9gyfbPVwwZx4y1hotNSLcqXCQNpNqqz6ZRvo8yTLpump", + "description": "ITS THAT GET THE FUCK AWAY FROM ME SIGN", + "explorer": "https://solscan.io/token/9gyfbPVwwZx4y1hotNSLcqXCQNpNqqz6ZRvo8yTLpump", + "type": "SPL", + "symbol": "YZY", + "decimals": 6, + "status": "active", + "id": "9gyfbPVwwZx4y1hotNSLcqXCQNpNqqz6ZRvo8yTLpump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/9gyfbPVwwZx4y1hotNSLcqXCQNpNqqz6ZRvo8yTLpump/logo.png b/blockchains/solana/assets/9gyfbPVwwZx4y1hotNSLcqXCQNpNqqz6ZRvo8yTLpump/logo.png new file mode 100644 index 0000000000000..91f8b48bed50a Binary files /dev/null and b/blockchains/solana/assets/9gyfbPVwwZx4y1hotNSLcqXCQNpNqqz6ZRvo8yTLpump/logo.png differ diff --git a/blockchains/solana/assets/9hjZ8UTNrNWt3YUTHVpvzdQjNbp64NbKSDsbLqKR6BZc/info.json b/blockchains/solana/assets/9hjZ8UTNrNWt3YUTHVpvzdQjNbp64NbKSDsbLqKR6BZc/info.json new file mode 100644 index 0000000000000..ae3c6dc30a157 --- /dev/null +++ b/blockchains/solana/assets/9hjZ8UTNrNWt3YUTHVpvzdQjNbp64NbKSDsbLqKR6BZc/info.json @@ -0,0 +1,21 @@ +{ + "name": "URANUS", + "symbol": "ANUS", + "type": "SPL", + "decimals": 9, + "description": "Uranus, the better planet.", + "website": "https://anusexplorer.com/", + "explorer": "https://solscan.io/token/9hjZ8UTNrNWt3YUTHVpvzdQjNbp64NbKSDsbLqKR6BZc", + "status": "active", + "id": "9hjZ8UTNrNWt3YUTHVpvzdQjNbp64NbKSDsbLqKR6BZc", + "links": [ + { + "name": "x", + "url": "https://x.com/anuscoinsol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/uranus-sol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9hjZ8UTNrNWt3YUTHVpvzdQjNbp64NbKSDsbLqKR6BZc/logo.png b/blockchains/solana/assets/9hjZ8UTNrNWt3YUTHVpvzdQjNbp64NbKSDsbLqKR6BZc/logo.png new file mode 100644 index 0000000000000..4a2aab3bbb0d1 Binary files /dev/null and b/blockchains/solana/assets/9hjZ8UTNrNWt3YUTHVpvzdQjNbp64NbKSDsbLqKR6BZc/logo.png differ diff --git a/blockchains/solana/assets/9iUX4DG2BqmJSGHvZcqx75UM4BRXKUMHLVL2d7P2pump/info.json b/blockchains/solana/assets/9iUX4DG2BqmJSGHvZcqx75UM4BRXKUMHLVL2d7P2pump/info.json new file mode 100644 index 0000000000000..0df022d341cdd --- /dev/null +++ b/blockchains/solana/assets/9iUX4DG2BqmJSGHvZcqx75UM4BRXKUMHLVL2d7P2pump/info.json @@ -0,0 +1,24 @@ +{ + "name": "OLAF", + "type": "SPL", + "symbol": "OLAF", + "decimals": 6, + "description": "Bring a frosty burst of cheer to your collection with this snowman-themed token. With a playful grin and a heart as warm as a summer's day, this token embodies the spirit of joy and friendship. Its whimsical design features twig-like arms, a carrot-like nose, and a cozy, wintry charm.", + "website": "https://olafonsolana.xyz/", + "explorer": "https://solscan.io/token/9iUX4DG2BqmJSGHvZcqx75UM4BRXKUMHLVL2d7P2pump", + "id": "9iUX4DG2BqmJSGHvZcqx75UM4BRXKUMHLVL2d7P2pump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/olafonsolana" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/olafonsolana/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9iUX4DG2BqmJSGHvZcqx75UM4BRXKUMHLVL2d7P2pump/logo.png b/blockchains/solana/assets/9iUX4DG2BqmJSGHvZcqx75UM4BRXKUMHLVL2d7P2pump/logo.png new file mode 100644 index 0000000000000..b77a0c8a2ff1b Binary files /dev/null and b/blockchains/solana/assets/9iUX4DG2BqmJSGHvZcqx75UM4BRXKUMHLVL2d7P2pump/logo.png differ diff --git a/blockchains/solana/assets/9jaZhJM6nMHTo4hY9DGabQ1HNuUWhJtm7js1fmKMVpkN/info.json b/blockchains/solana/assets/9jaZhJM6nMHTo4hY9DGabQ1HNuUWhJtm7js1fmKMVpkN/info.json new file mode 100644 index 0000000000000..f3a2eecafae46 --- /dev/null +++ b/blockchains/solana/assets/9jaZhJM6nMHTo4hY9DGabQ1HNuUWhJtm7js1fmKMVpkN/info.json @@ -0,0 +1,21 @@ +{ + "name": "AMC", + "type": "SPL", + "symbol": "AMC", + "decimals": 6, + "website": "https://amc-sol.com/", + "description": "As passionate supporters of AMC Entertainment, this is a unique way for fans to show their support where the hedges can’t stop us.", + "explorer": "https://solscan.io/token/9jaZhJM6nMHTo4hY9DGabQ1HNuUWhJtm7js1fmKMVpkN", + "status": "active", + "id": "9jaZhJM6nMHTo4hY9DGabQ1HNuUWhJtm7js1fmKMVpkN", + "links": [ + { + "name": "x", + "url": "https://x.com/amconsolbtfd" + }, + { + "name": "telegram", + "url": "https://t.me/AMCSolana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9jaZhJM6nMHTo4hY9DGabQ1HNuUWhJtm7js1fmKMVpkN/logo.png b/blockchains/solana/assets/9jaZhJM6nMHTo4hY9DGabQ1HNuUWhJtm7js1fmKMVpkN/logo.png new file mode 100644 index 0000000000000..76801bd1ff231 Binary files /dev/null and b/blockchains/solana/assets/9jaZhJM6nMHTo4hY9DGabQ1HNuUWhJtm7js1fmKMVpkN/logo.png differ diff --git a/blockchains/solana/assets/9k6f8T7WhifaKAeFkvSMR5XsePjpnGF4VyEAKFv5pump/info.json b/blockchains/solana/assets/9k6f8T7WhifaKAeFkvSMR5XsePjpnGF4VyEAKFv5pump/info.json new file mode 100644 index 0000000000000..be22a791cf6ec --- /dev/null +++ b/blockchains/solana/assets/9k6f8T7WhifaKAeFkvSMR5XsePjpnGF4VyEAKFv5pump/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM United Stable Kirk Coin", + "type": "SPL", + "symbol": "SCAM USKC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/9k6f8T7WhifaKAeFkvSMR5XsePjpnGF4VyEAKFv5pump", + "explorer": "https://solscan.io/token/9k6f8T7WhifaKAeFkvSMR5XsePjpnGF4VyEAKFv5pump", + "status": "spam", + "id": "9k6f8T7WhifaKAeFkvSMR5XsePjpnGF4VyEAKFv5pump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/9m21fukdvCPBgEjmeeshbskPwbaa5RH8HTHQGeTnGd2t/info.json b/blockchains/solana/assets/9m21fukdvCPBgEjmeeshbskPwbaa5RH8HTHQGeTnGd2t/info.json new file mode 100644 index 0000000000000..35a5a2a336ec9 --- /dev/null +++ b/blockchains/solana/assets/9m21fukdvCPBgEjmeeshbskPwbaa5RH8HTHQGeTnGd2t/info.json @@ -0,0 +1,21 @@ +{ + "name": "Panda Swap", + "website": "https://pandaswapsol.io/", + "description": "$PANDA - More Than Just a Token, a Transformative Force in Solana's Trading Landscape!", + "explorer": "https://solscan.io/token/9m21fukdvCPBgEjmeeshbskPwbaa5RH8HTHQGeTnGd2t", + "type": "SPL", + "symbol": "PANDA", + "decimals": 3, + "status": "active", + "id": "9m21fukdvCPBgEjmeeshbskPwbaa5RH8HTHQGeTnGd2t", + "links": [ + { + "name": "x", + "url": "https://x.com/PandaSwapSol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/panda-swap" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9m21fukdvCPBgEjmeeshbskPwbaa5RH8HTHQGeTnGd2t/logo.png b/blockchains/solana/assets/9m21fukdvCPBgEjmeeshbskPwbaa5RH8HTHQGeTnGd2t/logo.png new file mode 100644 index 0000000000000..e0e242ab695fe Binary files /dev/null and b/blockchains/solana/assets/9m21fukdvCPBgEjmeeshbskPwbaa5RH8HTHQGeTnGd2t/logo.png differ diff --git a/blockchains/solana/assets/9nEqaUcb16sQ3Tn1psbkWqyhPdLmfHWjKGymREjsAgTE/info.json b/blockchains/solana/assets/9nEqaUcb16sQ3Tn1psbkWqyhPdLmfHWjKGymREjsAgTE/info.json index 13547a08a070d..d6c1356516c0f 100644 --- a/blockchains/solana/assets/9nEqaUcb16sQ3Tn1psbkWqyhPdLmfHWjKGymREjsAgTE/info.json +++ b/blockchains/solana/assets/9nEqaUcb16sQ3Tn1psbkWqyhPdLmfHWjKGymREjsAgTE/info.json @@ -10,8 +10,8 @@ "id": "9nEqaUcb16sQ3Tn1psbkWqyhPdLmfHWjKGymREjsAgTE", "links": [ { - "name": "twitter", - "url": "https://twitter.com/WoofSolana" + "name": "x", + "url": "https://x.com/WoofSolana" }, { "name": "coinmarketcap", diff --git a/blockchains/solana/assets/9niFQK8MsParjSxhYQ3Ys2a6zHmsEuKSB1M7wwdvZ7bj/info.json b/blockchains/solana/assets/9niFQK8MsParjSxhYQ3Ys2a6zHmsEuKSB1M7wwdvZ7bj/info.json new file mode 100644 index 0000000000000..5d7017116101d --- /dev/null +++ b/blockchains/solana/assets/9niFQK8MsParjSxhYQ3Ys2a6zHmsEuKSB1M7wwdvZ7bj/info.json @@ -0,0 +1,21 @@ +{ + "name": "crow with knife", + "symbol": "CAW", + "type": "SPL", + "decimals": 6, + "description": "Memecoin on the Cronos chain launched by the Cro Crow community.", + "website": "https://www.crowwithknife.com/", + "explorer": "https://solscan.io/token/9niFQK8MsParjSxhYQ3Ys2a6zHmsEuKSB1M7wwdvZ7bj", + "status": "active", + "id": "9niFQK8MsParjSxhYQ3Ys2a6zHmsEuKSB1M7wwdvZ7bj", + "links": [ + { + "name": "x", + "url": "https://x.com/crow_with_knife" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crow-with-knife/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9niFQK8MsParjSxhYQ3Ys2a6zHmsEuKSB1M7wwdvZ7bj/logo.png b/blockchains/solana/assets/9niFQK8MsParjSxhYQ3Ys2a6zHmsEuKSB1M7wwdvZ7bj/logo.png new file mode 100644 index 0000000000000..2d0ec5e6b3836 Binary files /dev/null and b/blockchains/solana/assets/9niFQK8MsParjSxhYQ3Ys2a6zHmsEuKSB1M7wwdvZ7bj/logo.png differ diff --git a/blockchains/solana/assets/9pkudFiG5qhiSQQ8XatPbxZj8zBQ5m4XzHsKHMAGkkCR/info.json b/blockchains/solana/assets/9pkudFiG5qhiSQQ8XatPbxZj8zBQ5m4XzHsKHMAGkkCR/info.json new file mode 100644 index 0000000000000..d7fbc84ab9b71 --- /dev/null +++ b/blockchains/solana/assets/9pkudFiG5qhiSQQ8XatPbxZj8zBQ5m4XzHsKHMAGkkCR/info.json @@ -0,0 +1,25 @@ +{ + "name": "SerenityShield", + "website": "https://www.serenityshield.io/", + "description": "Serenity Shield is a self-custodial, privacy-centric digital data storage platform built on the blockchain, featuring a built-in inheritance protocol. It serves various use cases, including storage, recovery, and estate planning for wallet seed phrases and diverse digital data types.", + "explorer": "https://solscan.io/token/9pkudFiG5qhiSQQ8XatPbxZj8zBQ5m4XzHsKHMAGkkCR", + "type": "SPL", + "symbol": "SERSH", + "decimals": 18, + "status": "active", + "id": "9pkudFiG5qhiSQQ8XatPbxZj8zBQ5m4XzHsKHMAGkkCR", + "links": [ + { + "name": "telegram", + "url": "https://t.me/serenityshield" + }, + { + "name": "x", + "url": "https://x.com/SerenityShield_" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/serenity-shield/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9pkudFiG5qhiSQQ8XatPbxZj8zBQ5m4XzHsKHMAGkkCR/logo.png b/blockchains/solana/assets/9pkudFiG5qhiSQQ8XatPbxZj8zBQ5m4XzHsKHMAGkkCR/logo.png new file mode 100644 index 0000000000000..4d36b415c66f5 Binary files /dev/null and b/blockchains/solana/assets/9pkudFiG5qhiSQQ8XatPbxZj8zBQ5m4XzHsKHMAGkkCR/logo.png differ diff --git a/blockchains/solana/assets/9se6kma7LeGcQWyRBNcYzyxZPE3r9t9qWZ8SnjnN3jJ7/info.json b/blockchains/solana/assets/9se6kma7LeGcQWyRBNcYzyxZPE3r9t9qWZ8SnjnN3jJ7/info.json new file mode 100644 index 0000000000000..f5ec36b20a3e5 --- /dev/null +++ b/blockchains/solana/assets/9se6kma7LeGcQWyRBNcYzyxZPE3r9t9qWZ8SnjnN3jJ7/info.json @@ -0,0 +1,21 @@ +{ + "name": "Luna by Virtuals", + "website": "https://app.virtuals.io/virtuals/68", + "description": "Luna, the visual and lead vocalist of AI-DOL, captivates with her girl-next-door charm and expressive, emotional singing", + "explorer": "https://solscan.io/token/9se6kma7LeGcQWyRBNcYzyxZPE3r9t9qWZ8SnjnN3jJ7", + "type": "SPL", + "symbol": "LUNA", + "decimals": 8, + "status": "active", + "id": "9se6kma7LeGcQWyRBNcYzyxZPE3r9t9qWZ8SnjnN3jJ7", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/luna-by-virtuals/" + }, + { + "name": "x", + "url": "https://x.com/luna_virtuals" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9se6kma7LeGcQWyRBNcYzyxZPE3r9t9qWZ8SnjnN3jJ7/logo.png b/blockchains/solana/assets/9se6kma7LeGcQWyRBNcYzyxZPE3r9t9qWZ8SnjnN3jJ7/logo.png new file mode 100644 index 0000000000000..6f90a2e7e7ea0 Binary files /dev/null and b/blockchains/solana/assets/9se6kma7LeGcQWyRBNcYzyxZPE3r9t9qWZ8SnjnN3jJ7/logo.png differ diff --git a/blockchains/solana/assets/9sjyR4GrozeV8a9xM3ykKPGPXJYASy9AuufzefCyaCnP/info.json b/blockchains/solana/assets/9sjyR4GrozeV8a9xM3ykKPGPXJYASy9AuufzefCyaCnP/info.json new file mode 100644 index 0000000000000..90d89df9b4644 --- /dev/null +++ b/blockchains/solana/assets/9sjyR4GrozeV8a9xM3ykKPGPXJYASy9AuufzefCyaCnP/info.json @@ -0,0 +1,21 @@ +{ + "name": "GOLAZO", + "type": "SPL", + "symbol": "GOL", + "decimals": 9, + "website": "https://golazo.world/", + "description": "Meet Golazo. Bridging the gap between football & crypto. One meme at a time", + "explorer": "https://solscan.io/token/9sjyR4GrozeV8a9xM3ykKPGPXJYASy9AuufzefCyaCnP", + "status": "active", + "id": "9sjyR4GrozeV8a9xM3ykKPGPXJYASy9AuufzefCyaCnP", + "links": [ + { + "name": "x", + "url": "https://x.com/golazosol" + }, + { + "name": "telegram", + "url": "https://t.me/Golazosol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9sjyR4GrozeV8a9xM3ykKPGPXJYASy9AuufzefCyaCnP/logo.png b/blockchains/solana/assets/9sjyR4GrozeV8a9xM3ykKPGPXJYASy9AuufzefCyaCnP/logo.png new file mode 100644 index 0000000000000..c845b19581652 Binary files /dev/null and b/blockchains/solana/assets/9sjyR4GrozeV8a9xM3ykKPGPXJYASy9AuufzefCyaCnP/logo.png differ diff --git a/blockchains/solana/assets/9soX9xpDQS9U3UotRw6y2gH5Ash97yWgxeoeB5Ripump/info.json b/blockchains/solana/assets/9soX9xpDQS9U3UotRw6y2gH5Ash97yWgxeoeB5Ripump/info.json new file mode 100644 index 0000000000000..8d5e7f95e2387 --- /dev/null +++ b/blockchains/solana/assets/9soX9xpDQS9U3UotRw6y2gH5Ash97yWgxeoeB5Ripump/info.json @@ -0,0 +1,25 @@ +{ + "name": "LATENT ARENA", + "type": "SOL", + "symbol": "LATENT", + "decimals": 6, + "description": "A decentralized platform that enables users to make predictions on content engagement.", + "website": "https://www.latentarena.xyz/", + "explorer": "https://solscan.io/token/9soX9xpDQS9U3UotRw6y2gH5Ash97yWgxeoeB5Ripump", + "id": "9soX9xpDQS9U3UotRw6y2gH5Ash97yWgxeoeB5Ripump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/latentarena" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/latent-arena" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/9soX9xpDQS9U3UotRw6y2gH5Ash97yWgxeoeB5Ripump/logo.png b/blockchains/solana/assets/9soX9xpDQS9U3UotRw6y2gH5Ash97yWgxeoeB5Ripump/logo.png new file mode 100644 index 0000000000000..84f85fdc7841b Binary files /dev/null and b/blockchains/solana/assets/9soX9xpDQS9U3UotRw6y2gH5Ash97yWgxeoeB5Ripump/logo.png differ diff --git a/blockchains/solana/assets/9tN5xXpt5TDZAHTEoyBciAvecYDLt8DvPQnBvYJQMv1H/info.json b/blockchains/solana/assets/9tN5xXpt5TDZAHTEoyBciAvecYDLt8DvPQnBvYJQMv1H/info.json new file mode 100644 index 0000000000000..d2586a0e82fac --- /dev/null +++ b/blockchains/solana/assets/9tN5xXpt5TDZAHTEoyBciAvecYDLt8DvPQnBvYJQMv1H/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE EURC", + "type": "SPL", + "symbol": "FAKE EURC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/9tN5xXpt5TDZAHTEoyBciAvecYDLt8DvPQnBvYJQMv1H", + "explorer": "https://solscan.io/token/9tN5xXpt5TDZAHTEoyBciAvecYDLt8DvPQnBvYJQMv1H", + "status": "spam", + "id": "9tN5xXpt5TDZAHTEoyBciAvecYDLt8DvPQnBvYJQMv1H" +} \ No newline at end of file diff --git a/blockchains/solana/assets/9vJsuHyVbeHkEeV1wBizuGoXbXwM1fHYhhndB9ufpump/info.json b/blockchains/solana/assets/9vJsuHyVbeHkEeV1wBizuGoXbXwM1fHYhhndB9ufpump/info.json new file mode 100644 index 0000000000000..2e32428976f16 --- /dev/null +++ b/blockchains/solana/assets/9vJsuHyVbeHkEeV1wBizuGoXbXwM1fHYhhndB9ufpump/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Digital Euro", + "type": "SPL", + "symbol": "FAKE EURC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/9vJsuHyVbeHkEeV1wBizuGoXbXwM1fHYhhndB9ufpump", + "explorer": "https://solscan.io/token/9vJsuHyVbeHkEeV1wBizuGoXbXwM1fHYhhndB9ufpump", + "status": "spam", + "id": "9vJsuHyVbeHkEeV1wBizuGoXbXwM1fHYhhndB9ufpump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/9vMJfxuKxXBoEa7rM12mYLMwTacLMLDJqHozw96WQL8i/info.json b/blockchains/solana/assets/9vMJfxuKxXBoEa7rM12mYLMwTacLMLDJqHozw96WQL8i/info.json index e6de2ce0aa335..41d5a0996899d 100644 --- a/blockchains/solana/assets/9vMJfxuKxXBoEa7rM12mYLMwTacLMLDJqHozw96WQL8i/info.json +++ b/blockchains/solana/assets/9vMJfxuKxXBoEa7rM12mYLMwTacLMLDJqHozw96WQL8i/info.json @@ -1,5 +1,5 @@ { - "name": "UST (Portal)", + "name": "TerraClassicUSD (Portal)", "type": "SPL", "symbol": "UST", "decimals": 6, diff --git a/blockchains/solana/assets/9wYZetvT8J2ptfsRca5gzLBGvcUug38mp9yT3xaondo/info.json b/blockchains/solana/assets/9wYZetvT8J2ptfsRca5gzLBGvcUug38mp9yT3xaondo/info.json new file mode 100644 index 0000000000000..ca962e618e9de --- /dev/null +++ b/blockchains/solana/assets/9wYZetvT8J2ptfsRca5gzLBGvcUug38mp9yT3xaondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "American Airlines Group (Ondo Tokenized)", + "type": "SPL", + "symbol": "AALon", + "decimals": 9, + "description": "AALon is the Ondo Tokenized version of American Airlines Group, giving tokenholders economic exposure similar to holding AAL and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/9wYZetvT8J2ptfsRca5gzLBGvcUug38mp9yT3xaondo", + "status": "active", + "id": "9wYZetvT8J2ptfsRca5gzLBGvcUug38mp9yT3xaondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/american-airlines-group-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/american-airlines-group-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9wYZetvT8J2ptfsRca5gzLBGvcUug38mp9yT3xaondo/logo.png b/blockchains/solana/assets/9wYZetvT8J2ptfsRca5gzLBGvcUug38mp9yT3xaondo/logo.png new file mode 100644 index 0000000000000..c86f92e6e6a47 Binary files /dev/null and b/blockchains/solana/assets/9wYZetvT8J2ptfsRca5gzLBGvcUug38mp9yT3xaondo/logo.png differ diff --git a/blockchains/solana/assets/9wvorGtBJ8gyLorFTmwXWcymPoGVUBn6MRzHwFpCdCeC/info.json b/blockchains/solana/assets/9wvorGtBJ8gyLorFTmwXWcymPoGVUBn6MRzHwFpCdCeC/info.json new file mode 100644 index 0000000000000..df94936dbc6a9 --- /dev/null +++ b/blockchains/solana/assets/9wvorGtBJ8gyLorFTmwXWcymPoGVUBn6MRzHwFpCdCeC/info.json @@ -0,0 +1,21 @@ +{ + "name": "Artificial Liquid Intelligence", + "type": "SPL", + "symbol": "ALI", + "decimals": 8, + "website": "https://alethea.ai/", + "description": "Alethea AI is building a decentralized iNFT Protocol to create an Intelligent Metaverse inhabited by Interactive and Intelligent NFTs. Anyone can use the Alethea AI protocol to Create, Train and Earn from their iNFTs in the world’s first Intelligent Metaverse known as Noah’s Ark.", + "explorer": "https://solscan.io/token/9wvorGtBJ8gyLorFTmwXWcymPoGVUBn6MRzHwFpCdCeC", + "status": "active", + "id": "9wvorGtBJ8gyLorFTmwXWcymPoGVUBn6MRzHwFpCdCeC", + "links": [ + { + "name": "x", + "url": "https://x.com/real_alethea" + }, + { + "name": "telegram", + "url": "https://t.me/alethea_ai" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9wvorGtBJ8gyLorFTmwXWcymPoGVUBn6MRzHwFpCdCeC/logo.png b/blockchains/solana/assets/9wvorGtBJ8gyLorFTmwXWcymPoGVUBn6MRzHwFpCdCeC/logo.png new file mode 100644 index 0000000000000..3a2b934f54ff9 Binary files /dev/null and b/blockchains/solana/assets/9wvorGtBJ8gyLorFTmwXWcymPoGVUBn6MRzHwFpCdCeC/logo.png differ diff --git a/blockchains/solana/assets/A1KLoBrKBde8Ty9qtNQUtq3C2ortoC3u7twggz7sEto6/info.json b/blockchains/solana/assets/A1KLoBrKBde8Ty9qtNQUtq3C2ortoC3u7twggz7sEto6/info.json new file mode 100644 index 0000000000000..fecd7a866d639 --- /dev/null +++ b/blockchains/solana/assets/A1KLoBrKBde8Ty9qtNQUtq3C2ortoC3u7twggz7sEto6/info.json @@ -0,0 +1,29 @@ +{ + "name": "Ondo U.S. Dollar Yield", + "type": "SPL", + "symbol": "USDY", + "decimals": 6, + "description": "Ondo US Dollar Yield (USDY) is a decentralized lending protocol designed to honor transfer restrictions from permissioned tokens, thereby expanding the universe of assets it can support. This unique approach allows it to cater to a broader range of financial instruments, making it a versatile player in the blockchain ecosystem.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/A1KLoBrKBde8Ty9qtNQUtq3C2ortoC3u7twggz7sEto6", + "id": "A1KLoBrKBde8Ty9qtNQUtq3C2ortoC3u7twggz7sEto6", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ondo-us-dollar-yield/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ondo-us-dollar-yield" + } + ], + "tags": [ + "stablecoin" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/A1KLoBrKBde8Ty9qtNQUtq3C2ortoC3u7twggz7sEto6/logo.png b/blockchains/solana/assets/A1KLoBrKBde8Ty9qtNQUtq3C2ortoC3u7twggz7sEto6/logo.png new file mode 100644 index 0000000000000..18f94a8ea8225 Binary files /dev/null and b/blockchains/solana/assets/A1KLoBrKBde8Ty9qtNQUtq3C2ortoC3u7twggz7sEto6/logo.png differ diff --git a/blockchains/solana/assets/A2khRbhRJNrAEHj95htivC4cR4VbJwfssDH5FPPbP4m9/info.json b/blockchains/solana/assets/A2khRbhRJNrAEHj95htivC4cR4VbJwfssDH5FPPbP4m9/info.json new file mode 100644 index 0000000000000..cddf7a6249885 --- /dev/null +++ b/blockchains/solana/assets/A2khRbhRJNrAEHj95htivC4cR4VbJwfssDH5FPPbP4m9/info.json @@ -0,0 +1,21 @@ +{ + "name": "duk", + "website": "https://www.dukonsol.vip/", + "description": "the duk fuks on Solana dev tried to rug us, twice, but we took over and made this the only duk that fuks", + "explorer": "https://solscan.io/token/A2khRbhRJNrAEHj95htivC4cR4VbJwfssDH5FPPbP4m9", + "type": "SPL", + "symbol": "duk", + "decimals": 6, + "status": "active", + "id": "A2khRbhRJNrAEHj95htivC4cR4VbJwfssDH5FPPbP4m9", + "links": [ + { + "name": "x", + "url": "https://x.com/dukfuksonsol" + }, + { + "name": "telegram", + "url": "https://t.me/dukofficialportal" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/A2khRbhRJNrAEHj95htivC4cR4VbJwfssDH5FPPbP4m9/logo.png b/blockchains/solana/assets/A2khRbhRJNrAEHj95htivC4cR4VbJwfssDH5FPPbP4m9/logo.png new file mode 100644 index 0000000000000..acc75efabf847 Binary files /dev/null and b/blockchains/solana/assets/A2khRbhRJNrAEHj95htivC4cR4VbJwfssDH5FPPbP4m9/logo.png differ diff --git a/blockchains/solana/assets/A3eME5CetyZPBoWbRUwY3tSe25S6tb18ba9ZPbWk9eFJ/info.json b/blockchains/solana/assets/A3eME5CetyZPBoWbRUwY3tSe25S6tb18ba9ZPbWk9eFJ/info.json new file mode 100644 index 0000000000000..aac95646f88c7 --- /dev/null +++ b/blockchains/solana/assets/A3eME5CetyZPBoWbRUwY3tSe25S6tb18ba9ZPbWk9eFJ/info.json @@ -0,0 +1,21 @@ +{ + "name": "Peng", + "type": "SPL", + "symbol": "PENG", + "decimals": 6, + "website": "https://pengsol.xyz/", + "description": "Welcome to $PENG, the icy addition to the Solana blockchain! Our small yet mighty penguin, with a hint of Pepe the Frog, brings a fresh breeze of creativity to the degen world of Solana.", + "explorer": "https://solscan.io/token/A3eME5CetyZPBoWbRUwY3tSe25S6tb18ba9ZPbWk9eFJ", + "status": "active", + "id": "A3eME5CetyZPBoWbRUwY3tSe25S6tb18ba9ZPbWk9eFJ", + "links": [ + { + "name": "x", + "url": "https://x.com/pengonsolana" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/peng-sol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/A3eME5CetyZPBoWbRUwY3tSe25S6tb18ba9ZPbWk9eFJ/logo.png b/blockchains/solana/assets/A3eME5CetyZPBoWbRUwY3tSe25S6tb18ba9ZPbWk9eFJ/logo.png new file mode 100644 index 0000000000000..dff524a78553f Binary files /dev/null and b/blockchains/solana/assets/A3eME5CetyZPBoWbRUwY3tSe25S6tb18ba9ZPbWk9eFJ/logo.png differ diff --git a/blockchains/solana/assets/A3t4ap3oHBGRZATex6tFnCDZUdFqybTMhGPbTMzF9kzb/info.json b/blockchains/solana/assets/A3t4ap3oHBGRZATex6tFnCDZUdFqybTMhGPbTMzF9kzb/info.json new file mode 100644 index 0000000000000..6ab97e2c8a73d --- /dev/null +++ b/blockchains/solana/assets/A3t4ap3oHBGRZATex6tFnCDZUdFqybTMhGPbTMzF9kzb/info.json @@ -0,0 +1,25 @@ +{ + "name": "DOGE TO MARS", + "type": "SOL", + "symbol": "DOGEMARS", + "decimals": 2, + "description": "Elon Musk has frequently discussed the connection between Dogecoin (DOGE) and Mars, particularly highlighting his optimistic vision for the cryptocurrency’s future. Musk has suggested that Dogecoin, driven by its strong community, could one day become the “currency of Mars.”", + "website": "https://dogemars.club/", + "explorer": "https://solscan.io/token/A3t4ap3oHBGRZATex6tFnCDZUdFqybTMhGPbTMzF9kzb", + "id": "A3t4ap3oHBGRZATex6tFnCDZUdFqybTMhGPbTMzF9kzb", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/dogemarsdoge?s=11&t=ZGzrL8B9N7GpbA3YLFvU9A" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/doge-to-mars/" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/A3t4ap3oHBGRZATex6tFnCDZUdFqybTMhGPbTMzF9kzb/logo.png b/blockchains/solana/assets/A3t4ap3oHBGRZATex6tFnCDZUdFqybTMhGPbTMzF9kzb/logo.png new file mode 100644 index 0000000000000..0a69de656626c Binary files /dev/null and b/blockchains/solana/assets/A3t4ap3oHBGRZATex6tFnCDZUdFqybTMhGPbTMzF9kzb/logo.png differ diff --git a/blockchains/solana/assets/A5gVj5j16U4vCTMXQYYrhkmWgx6gej4nAeZRNQMLUAfy/info.json b/blockchains/solana/assets/A5gVj5j16U4vCTMXQYYrhkmWgx6gej4nAeZRNQMLUAfy/info.json new file mode 100644 index 0000000000000..7d122c2ed1137 --- /dev/null +++ b/blockchains/solana/assets/A5gVj5j16U4vCTMXQYYrhkmWgx6gej4nAeZRNQMLUAfy/info.json @@ -0,0 +1,21 @@ +{ + "name": "DJCAT", + "type": "SPL", + "symbol": "DJCAT", + "decimals": 6, + "website": "https://djcat.framer.website/", + "description": "Dev jeeted so you know what time it is.", + "explorer": "https://solscan.io/token/A5gVj5j16U4vCTMXQYYrhkmWgx6gej4nAeZRNQMLUAfy", + "status": "active", + "id": "A5gVj5j16U4vCTMXQYYrhkmWgx6gej4nAeZRNQMLUAfy", + "links": [ + { + "name": "x", + "url": "https://x.com/cto_djcat" + }, + { + "name": "telegram", + "url": "https://t.me/ctodjcat" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/A5gVj5j16U4vCTMXQYYrhkmWgx6gej4nAeZRNQMLUAfy/logo.png b/blockchains/solana/assets/A5gVj5j16U4vCTMXQYYrhkmWgx6gej4nAeZRNQMLUAfy/logo.png new file mode 100644 index 0000000000000..2d2fb70c5966a Binary files /dev/null and b/blockchains/solana/assets/A5gVj5j16U4vCTMXQYYrhkmWgx6gej4nAeZRNQMLUAfy/logo.png differ diff --git a/blockchains/solana/assets/A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump/info.json b/blockchains/solana/assets/A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump/info.json new file mode 100644 index 0000000000000..c3c5733a8bb15 --- /dev/null +++ b/blockchains/solana/assets/A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "FWOG", + "website": "https://fwogsol.xyz/", + "description": "In the ashes a community emerged, a new flog, a more based flog, a FWOG. FWOG has no dev. It is the community", + "explorer": "https://solscan.io/token/A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "type": "SPL", + "symbol": "FWOG", + "decimals": 6, + "status": "active", + "id": "A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "links": [ + { + "name": "x", + "url": "https://x.com/solfwog" + }, + { + "name": "telegram", + "url": "https://t.me/fwogportal" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump/logo.png b/blockchains/solana/assets/A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump/logo.png new file mode 100644 index 0000000000000..5ab7a351b9c60 Binary files /dev/null and b/blockchains/solana/assets/A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump/logo.png differ diff --git a/blockchains/solana/assets/A9PFmw9Hu8zzxDUoU351pio1E1XWBWBfWnjT9qoondo/info.json b/blockchains/solana/assets/A9PFmw9Hu8zzxDUoU351pio1E1XWBWBfWnjT9qoondo/info.json new file mode 100644 index 0000000000000..d6bd32989eed6 --- /dev/null +++ b/blockchains/solana/assets/A9PFmw9Hu8zzxDUoU351pio1E1XWBWBfWnjT9qoondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Bullish (Ondo Tokenized)", + "type": "SPL", + "symbol": "BLSHon", + "decimals": 9, + "description": "BLSHon is the Ondo Tokenized version of Bullish, giving tokenholders economic exposure similar to holding BLSH and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/A9PFmw9Hu8zzxDUoU351pio1E1XWBWBfWnjT9qoondo", + "status": "active", + "id": "A9PFmw9Hu8zzxDUoU351pio1E1XWBWBfWnjT9qoondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bullish-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bullish-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/A9PFmw9Hu8zzxDUoU351pio1E1XWBWBfWnjT9qoondo/logo.png b/blockchains/solana/assets/A9PFmw9Hu8zzxDUoU351pio1E1XWBWBfWnjT9qoondo/logo.png new file mode 100644 index 0000000000000..78152f377fdc7 Binary files /dev/null and b/blockchains/solana/assets/A9PFmw9Hu8zzxDUoU351pio1E1XWBWBfWnjT9qoondo/logo.png differ diff --git a/blockchains/solana/assets/AByhZPfGEU9a68KCAvT76Yev85oeur4SoL2VLZuB3HQj/info.json b/blockchains/solana/assets/AByhZPfGEU9a68KCAvT76Yev85oeur4SoL2VLZuB3HQj/info.json new file mode 100644 index 0000000000000..ec5e5759d5618 --- /dev/null +++ b/blockchains/solana/assets/AByhZPfGEU9a68KCAvT76Yev85oeur4SoL2VLZuB3HQj/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDC.a", + "type": "SPL", + "symbol": "FAKE USDC.a", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/AByhZPfGEU9a68KCAvT76Yev85oeur4SoL2VLZuB3HQj", + "explorer": "https://solscan.io/token/AByhZPfGEU9a68KCAvT76Yev85oeur4SoL2VLZuB3HQj", + "status": "spam", + "id": "AByhZPfGEU9a68KCAvT76Yev85oeur4SoL2VLZuB3HQj" +} \ No newline at end of file diff --git a/blockchains/solana/assets/ADJxo3f8KHLt9iFujdW9HBtn8QaCaq6KDUdRsSfVpump/info.json b/blockchains/solana/assets/ADJxo3f8KHLt9iFujdW9HBtn8QaCaq6KDUdRsSfVpump/info.json new file mode 100644 index 0000000000000..f891b81def26c --- /dev/null +++ b/blockchains/solana/assets/ADJxo3f8KHLt9iFujdW9HBtn8QaCaq6KDUdRsSfVpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Miraya 7f", + "symbol": "M7F", + "type": "SPL", + "decimals": 6, + "description": "M7F tokens can be traded on decentralized exchanges.", + "website": "https://www.miraya7f.com/", + "explorer": "https://solscan.io/token/ADJxo3f8KHLt9iFujdW9HBtn8QaCaq6KDUdRsSfVpump", + "status": "active", + "id": "ADJxo3f8KHLt9iFujdW9HBtn8QaCaq6KDUdRsSfVpump", + "links": [ + { + "name": "x", + "url": "https://x.com/miraya7f" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/miraya-7f" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/ADJxo3f8KHLt9iFujdW9HBtn8QaCaq6KDUdRsSfVpump/logo.png b/blockchains/solana/assets/ADJxo3f8KHLt9iFujdW9HBtn8QaCaq6KDUdRsSfVpump/logo.png new file mode 100644 index 0000000000000..c7c5933622313 Binary files /dev/null and b/blockchains/solana/assets/ADJxo3f8KHLt9iFujdW9HBtn8QaCaq6KDUdRsSfVpump/logo.png differ diff --git a/blockchains/solana/assets/AErxJJxGbc9cZzZoZepN62BNfg5RXns8tmEc3Zpondo/info.json b/blockchains/solana/assets/AErxJJxGbc9cZzZoZepN62BNfg5RXns8tmEc3Zpondo/info.json new file mode 100644 index 0000000000000..2321220464a12 --- /dev/null +++ b/blockchains/solana/assets/AErxJJxGbc9cZzZoZepN62BNfg5RXns8tmEc3Zpondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Caterpillar (Ondo Tokenized)", + "type": "SPL", + "symbol": "CATon", + "decimals": 9, + "description": "CATon is the Ondo Tokenized version of Caterpillar, giving tokenholders economic exposure similar to holding CAT and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/AErxJJxGbc9cZzZoZepN62BNfg5RXns8tmEc3Zpondo", + "status": "active", + "id": "AErxJJxGbc9cZzZoZepN62BNfg5RXns8tmEc3Zpondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/caterpillar-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/caterpillar-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AErxJJxGbc9cZzZoZepN62BNfg5RXns8tmEc3Zpondo/logo.png b/blockchains/solana/assets/AErxJJxGbc9cZzZoZepN62BNfg5RXns8tmEc3Zpondo/logo.png new file mode 100644 index 0000000000000..935dd2c8bbe10 Binary files /dev/null and b/blockchains/solana/assets/AErxJJxGbc9cZzZoZepN62BNfg5RXns8tmEc3Zpondo/logo.png differ diff --git a/blockchains/solana/assets/AFJtnuqGMaj5jAo6Pwxo28r1f7XAXXTSA8q3rG3q8b4A/info.json b/blockchains/solana/assets/AFJtnuqGMaj5jAo6Pwxo28r1f7XAXXTSA8q3rG3q8b4A/info.json new file mode 100644 index 0000000000000..125fcb5cd7e18 --- /dev/null +++ b/blockchains/solana/assets/AFJtnuqGMaj5jAo6Pwxo28r1f7XAXXTSA8q3rG3q8b4A/info.json @@ -0,0 +1,21 @@ +{ + "name": "CARV", + "symbol": "CARV", + "type": "SPL", + "decimals": 6, + "description": "CARV is building the largest modular Identity and Data Layer (IDL) for gaming", + "website": "https://carv.io/", + "explorer": "https://solscan.io/token/AFJtnuqGMaj5jAo6Pwxo28r1f7XAXXTSA8q3rG3q8b4A", + "status": "active", + "id": "AFJtnuqGMaj5jAo6Pwxo28r1f7XAXXTSA8q3rG3q8b4A", + "links": [ + { + "name": "x", + "url": "https://x.com/carv_official" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/carv" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AFJtnuqGMaj5jAo6Pwxo28r1f7XAXXTSA8q3rG3q8b4A/logo.png b/blockchains/solana/assets/AFJtnuqGMaj5jAo6Pwxo28r1f7XAXXTSA8q3rG3q8b4A/logo.png new file mode 100644 index 0000000000000..7f9619c2817a6 Binary files /dev/null and b/blockchains/solana/assets/AFJtnuqGMaj5jAo6Pwxo28r1f7XAXXTSA8q3rG3q8b4A/logo.png differ diff --git a/blockchains/solana/assets/AFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB/info.json b/blockchains/solana/assets/AFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB/info.json index d7b343d64f063..6ce1373d6811b 100644 --- a/blockchains/solana/assets/AFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB/info.json +++ b/blockchains/solana/assets/AFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB/info.json @@ -17,8 +17,8 @@ "url": "https://reddit.com/r/StepN/" }, { - "name": "twitter", - "url": "https://twitter.com/Stepnofficial" + "name": "x", + "url": "https://x.com/Stepnofficial" }, { "name": "coinmarketcap", @@ -33,4 +33,4 @@ "url": "https://discord.com/invite/stepn" } ] -} +} \ No newline at end of file diff --git a/blockchains/solana/assets/AGFEad2et2ZJif9jaGpdMixQqvW5i81aBdvKe7PHNfz3/info.json b/blockchains/solana/assets/AGFEad2et2ZJif9jaGpdMixQqvW5i81aBdvKe7PHNfz3/info.json index 838d9f88fabaf..6799db6c6e11f 100644 --- a/blockchains/solana/assets/AGFEad2et2ZJif9jaGpdMixQqvW5i81aBdvKe7PHNfz3/info.json +++ b/blockchains/solana/assets/AGFEad2et2ZJif9jaGpdMixQqvW5i81aBdvKe7PHNfz3/info.json @@ -1,5 +1,5 @@ { - "name": "Wrapped FTX", + "name": "FTX Token", "symbol": "FTT", "type": "SPL", "decimals": 6, @@ -10,8 +10,8 @@ "id": "AGFEad2et2ZJif9jaGpdMixQqvW5i81aBdvKe7PHNfz3", "links": [ { - "name": "twitter", - "url": "https://twitter.com/FTX_Official" + "name": "x", + "url": "https://x.com/FTX_Official" }, { "name": "telegram", diff --git a/blockchains/solana/assets/AGRidUXLeDij9CJprkZx7WBXtTQC67jtfiwz293mVrJ/info.json b/blockchains/solana/assets/AGRidUXLeDij9CJprkZx7WBXtTQC67jtfiwz293mVrJ/info.json new file mode 100644 index 0000000000000..9e2b0a080d0e3 --- /dev/null +++ b/blockchains/solana/assets/AGRidUXLeDij9CJprkZx7WBXtTQC67jtfiwz293mVrJ/info.json @@ -0,0 +1,17 @@ +{ + "name": "AgriDex", + "type": "SPL", + "symbol": "AGRI", + "decimals": 6, + "website": "https://agridex.com/", + "description": "Agridex is a Solana Backed RWA Marketplace Reshaping the Global Agricultural Industry", + "explorer": "https://solscan.io/token/AGRidUXLeDij9CJprkZx7WBXtTQC67jtfiwz293mVrJ", + "status": "active", + "id": "AGRidUXLeDij9CJprkZx7WBXtTQC67jtfiwz293mVrJ", + "links": [ + { + "name": "x", + "url": "https://x.com/AgriDexPlatform" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AGRidUXLeDij9CJprkZx7WBXtTQC67jtfiwz293mVrJ/logo.png b/blockchains/solana/assets/AGRidUXLeDij9CJprkZx7WBXtTQC67jtfiwz293mVrJ/logo.png new file mode 100644 index 0000000000000..9f4d2c7a5b0df Binary files /dev/null and b/blockchains/solana/assets/AGRidUXLeDij9CJprkZx7WBXtTQC67jtfiwz293mVrJ/logo.png differ diff --git a/blockchains/solana/assets/AHW5N8iqZobTcBepkSJzZ61XtAuSzBDcpxtrLG6KUKPk/info.json b/blockchains/solana/assets/AHW5N8iqZobTcBepkSJzZ61XtAuSzBDcpxtrLG6KUKPk/info.json new file mode 100644 index 0000000000000..6795631ac1cb9 --- /dev/null +++ b/blockchains/solana/assets/AHW5N8iqZobTcBepkSJzZ61XtAuSzBDcpxtrLG6KUKPk/info.json @@ -0,0 +1,21 @@ +{ + "name": "Ben the Dog", + "symbol": "MBENDOGBS", + "type": "SPL", + "decimals": 9, + "description": "In 2017, Anatoly Yakovenko faced a big decision about starting Solana, a new blockchain project, while doubters surrounded him.", + "website": "https://bendog.io/", + "explorer": "https://solscan.io/token/AHW5N8iqZobTcBepkSJzZ61XtAuSzBDcpxtrLG6KUKPk", + "status": "active", + "id": "AHW5N8iqZobTcBepkSJzZ61XtAuSzBDcpxtrLG6KUKPk", + "links": [ + { + "name": "x", + "url": "https://x.com/ben_dog_" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ben-the-dog" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AHW5N8iqZobTcBepkSJzZ61XtAuSzBDcpxtrLG6KUKPk/logo.png b/blockchains/solana/assets/AHW5N8iqZobTcBepkSJzZ61XtAuSzBDcpxtrLG6KUKPk/logo.png new file mode 100644 index 0000000000000..be92907237df5 Binary files /dev/null and b/blockchains/solana/assets/AHW5N8iqZobTcBepkSJzZ61XtAuSzBDcpxtrLG6KUKPk/logo.png differ diff --git a/blockchains/solana/assets/AJkCZVSbpDn5KXJMqmnfAjJgSZQKFb6PJbomDuQqR4Tj/info.json b/blockchains/solana/assets/AJkCZVSbpDn5KXJMqmnfAjJgSZQKFb6PJbomDuQqR4Tj/info.json new file mode 100644 index 0000000000000..6a9efaf593e9e --- /dev/null +++ b/blockchains/solana/assets/AJkCZVSbpDn5KXJMqmnfAjJgSZQKFb6PJbomDuQqR4Tj/info.json @@ -0,0 +1,11 @@ +{ + "name": "SPAM Սꮪꭰ ТетһеR and UЅⅮT", + "type": "SPL", + "symbol": "SPAM Սꮪꭰ ТетһеR and UЅⅮT", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/AJkCZVSbpDn5KXJMqmnfAjJgSZQKFb6PJbomDuQqR4Tj", + "explorer": "https://solscan.io/token/AJkCZVSbpDn5KXJMqmnfAjJgSZQKFb6PJbomDuQqR4Tj", + "status": "spam", + "id": "AJkCZVSbpDn5KXJMqmnfAjJgSZQKFb6PJbomDuQqR4Tj" +} \ No newline at end of file diff --git a/blockchains/solana/assets/ALss4p8YdK4RrkAATkd2QkQw1LAmUjbX9xScYRaq6S6d/info.json b/blockchains/solana/assets/ALss4p8YdK4RrkAATkd2QkQw1LAmUjbX9xScYRaq6S6d/info.json new file mode 100644 index 0000000000000..483963c1f9a3a --- /dev/null +++ b/blockchains/solana/assets/ALss4p8YdK4RrkAATkd2QkQw1LAmUjbX9xScYRaq6S6d/info.json @@ -0,0 +1,17 @@ +{ + "name": "Gatsby", + "website": "https://gatsbytoken.io/meetgatsby/", + "description": "Gatsby Inu is a community-driven meme token on the Ethereum blockchain. inspired by Elon Musk’s biggest dog, Gatsby is a powerful American Akita Inu leading the Inu pack.", + "explorer": "https://solscan.io/token/ALss4p8YdK4RrkAATkd2QkQw1LAmUjbX9xScYRaq6S6d", + "type": "SPL", + "symbol": "GATSBY", + "decimals": 6, + "status": "active", + "id": "ALss4p8YdK4RrkAATkd2QkQw1LAmUjbX9xScYRaq6S6d", + "links": [ + { + "name": "x", + "url": "https://x.com/GatsbyInuERC" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/ALss4p8YdK4RrkAATkd2QkQw1LAmUjbX9xScYRaq6S6d/logo.png b/blockchains/solana/assets/ALss4p8YdK4RrkAATkd2QkQw1LAmUjbX9xScYRaq6S6d/logo.png new file mode 100644 index 0000000000000..34fa168e2235e Binary files /dev/null and b/blockchains/solana/assets/ALss4p8YdK4RrkAATkd2QkQw1LAmUjbX9xScYRaq6S6d/logo.png differ diff --git a/blockchains/solana/assets/AMUwxPsqWSd1fbCGzWsrRKDcNoduuWMkdR38qPdit8G8/info.json b/blockchains/solana/assets/AMUwxPsqWSd1fbCGzWsrRKDcNoduuWMkdR38qPdit8G8/info.json new file mode 100644 index 0000000000000..db70eb276f453 --- /dev/null +++ b/blockchains/solana/assets/AMUwxPsqWSd1fbCGzWsrRKDcNoduuWMkdR38qPdit8G8/info.json @@ -0,0 +1,21 @@ +{ + "name": "Amulet", + "symbol": "AMU", + "type": "SPL", + "decimals": 9, + "description": "Amulet is the first Web3 platform that combines investment and insurance, empowering web3 users to earn safely with built-in loss protection.", + "website": "https://amulet.org/", + "explorer": "https://solscan.io/token/AMUwxPsqWSd1fbCGzWsrRKDcNoduuWMkdR38qPdit8G8", + "status": "active", + "id": "AMUwxPsqWSd1fbCGzWsrRKDcNoduuWMkdR38qPdit8G8", + "links": [ + { + "name": "x", + "url": "https://x.com/AmuletProtocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/amulet" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AMUwxPsqWSd1fbCGzWsrRKDcNoduuWMkdR38qPdit8G8/logo.png b/blockchains/solana/assets/AMUwxPsqWSd1fbCGzWsrRKDcNoduuWMkdR38qPdit8G8/logo.png new file mode 100644 index 0000000000000..d4eddf429d712 Binary files /dev/null and b/blockchains/solana/assets/AMUwxPsqWSd1fbCGzWsrRKDcNoduuWMkdR38qPdit8G8/logo.png differ diff --git a/blockchains/solana/assets/AMjzRn1TBQwQfNAjHFeBb7uGbbqbJB7FzXAnGgdFPk6K/info.json b/blockchains/solana/assets/AMjzRn1TBQwQfNAjHFeBb7uGbbqbJB7FzXAnGgdFPk6K/info.json new file mode 100644 index 0000000000000..6311def3dc0fc --- /dev/null +++ b/blockchains/solana/assets/AMjzRn1TBQwQfNAjHFeBb7uGbbqbJB7FzXAnGgdFPk6K/info.json @@ -0,0 +1,21 @@ +{ + "name": "SolCex", + "website": "https://solcex.io/", + "description": "Trade Solana, Bitcoin, Ethereum, USDT, and the top altcoins on the legendary crypto asset exchange.", + "explorer": "https://solscan.io/token/AMjzRn1TBQwQfNAjHFeBb7uGbbqbJB7FzXAnGgdFPk6K", + "type": "SPL", + "symbol": "SOLCEX", + "decimals": 6, + "status": "active", + "id": "AMjzRn1TBQwQfNAjHFeBb7uGbbqbJB7FzXAnGgdFPk6K", + "links": [ + { + "name": "x", + "url": "https://x.com/SolCex_Exchange" + }, + { + "name": "telegram", + "url": "https://t.me/Solcex_Exchange" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AMjzRn1TBQwQfNAjHFeBb7uGbbqbJB7FzXAnGgdFPk6K/logo.png b/blockchains/solana/assets/AMjzRn1TBQwQfNAjHFeBb7uGbbqbJB7FzXAnGgdFPk6K/logo.png new file mode 100644 index 0000000000000..e229052634851 Binary files /dev/null and b/blockchains/solana/assets/AMjzRn1TBQwQfNAjHFeBb7uGbbqbJB7FzXAnGgdFPk6K/logo.png differ diff --git a/blockchains/solana/assets/ANPSUN2NSA25w47r3U4NxQitHWCSSzgz4grzTL34pump/info.json b/blockchains/solana/assets/ANPSUN2NSA25w47r3U4NxQitHWCSSzgz4grzTL34pump/info.json new file mode 100644 index 0000000000000..db99d53ede5f3 --- /dev/null +++ b/blockchains/solana/assets/ANPSUN2NSA25w47r3U4NxQitHWCSSzgz4grzTL34pump/info.json @@ -0,0 +1,25 @@ +{ + "name": "Central Doge Republic Meme", + "type": "SOL", + "symbol": "CDR", + "decimals": 6, + "description": "Much Republic. Very Doge.", + "website": "https://pump.fun/coin/ANPSUN2NSA25w47r3U4NxQitHWCSSzgz4grzTL34pump?coins_sort=market_cap", + "explorer": "https://solscan.io/token/ANPSUN2NSA25w47r3U4NxQitHWCSSzgz4grzTL34pump", + "id": "ANPSUN2NSA25w47r3U4NxQitHWCSSzgz4grzTL34pump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/CDR_Meme" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/central-doge-republic-meme" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/ANPSUN2NSA25w47r3U4NxQitHWCSSzgz4grzTL34pump/logo.png b/blockchains/solana/assets/ANPSUN2NSA25w47r3U4NxQitHWCSSzgz4grzTL34pump/logo.png new file mode 100644 index 0000000000000..fd77e3e7955f7 Binary files /dev/null and b/blockchains/solana/assets/ANPSUN2NSA25w47r3U4NxQitHWCSSzgz4grzTL34pump/logo.png differ diff --git a/blockchains/solana/assets/APMZx45q32R7AmWqWqKohPcKEo2Exz8auZ2T7nVBpump/info.json b/blockchains/solana/assets/APMZx45q32R7AmWqWqKohPcKEo2Exz8auZ2T7nVBpump/info.json new file mode 100644 index 0000000000000..494c5d93365ba --- /dev/null +++ b/blockchains/solana/assets/APMZx45q32R7AmWqWqKohPcKEo2Exz8auZ2T7nVBpump/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE EURC", + "type": "SPL", + "symbol": "FAKE EURC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/APMZx45q32R7AmWqWqKohPcKEo2Exz8auZ2T7nVBpump", + "explorer": "https://solscan.io/token/APMZx45q32R7AmWqWqKohPcKEo2Exz8auZ2T7nVBpump", + "status": "spam", + "id": "APMZx45q32R7AmWqWqKohPcKEo2Exz8auZ2T7nVBpump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/AQCXMYphwzGDctWJC7iJ5FbfyTfpW5HJe1dub54cnRfm/info.json b/blockchains/solana/assets/AQCXMYphwzGDctWJC7iJ5FbfyTfpW5HJe1dub54cnRfm/info.json new file mode 100644 index 0000000000000..d6cb132ed9272 --- /dev/null +++ b/blockchains/solana/assets/AQCXMYphwzGDctWJC7iJ5FbfyTfpW5HJe1dub54cnRfm/info.json @@ -0,0 +1,21 @@ +{ + "name": "Boss US", + "type": "SPL", + "symbol": "BOSSUS", + "decimals": 6, + "description": "The ultimate memecoin leader Boss US. Bold, fearless, and unstoppable - just like America! Make Crypto Great Again.", + "website": "https://bossus.io/", + "explorer": "https://solscan.io/token/AQCXMYphwzGDctWJC7iJ5FbfyTfpW5HJe1dub54cnRfm", + "id": "AQCXMYphwzGDctWJC7iJ5FbfyTfpW5HJe1dub54cnRfm", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/BossUScoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/boss-us/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AQCXMYphwzGDctWJC7iJ5FbfyTfpW5HJe1dub54cnRfm/logo.png b/blockchains/solana/assets/AQCXMYphwzGDctWJC7iJ5FbfyTfpW5HJe1dub54cnRfm/logo.png new file mode 100644 index 0000000000000..eb0b8dc0fa481 Binary files /dev/null and b/blockchains/solana/assets/AQCXMYphwzGDctWJC7iJ5FbfyTfpW5HJe1dub54cnRfm/logo.png differ diff --git a/blockchains/solana/assets/ATLASXmbPQxBUYbxPsV97usA3fPQYEqzQBUHgiFCUsXx/info.json b/blockchains/solana/assets/ATLASXmbPQxBUYbxPsV97usA3fPQYEqzQBUHgiFCUsXx/info.json index 1cb9a55506224..57370bf6788d1 100644 --- a/blockchains/solana/assets/ATLASXmbPQxBUYbxPsV97usA3fPQYEqzQBUHgiFCUsXx/info.json +++ b/blockchains/solana/assets/ATLASXmbPQxBUYbxPsV97usA3fPQYEqzQBUHgiFCUsXx/info.json @@ -10,8 +10,8 @@ "id": "ATLASXmbPQxBUYbxPsV97usA3fPQYEqzQBUHgiFCUsXx", "links": [ { - "name": "twitter", - "url": "https://twitter.com/staratlas" + "name": "x", + "url": "https://x.com/staratlas" }, { "name": "coinmarketcap", diff --git a/blockchains/solana/assets/ATRLuHph8dxnPny4WSNW7fxkhbeivBrtWbY6BfB4xpLj/info.json b/blockchains/solana/assets/ATRLuHph8dxnPny4WSNW7fxkhbeivBrtWbY6BfB4xpLj/info.json new file mode 100644 index 0000000000000..7ba682fa6fe84 --- /dev/null +++ b/blockchains/solana/assets/ATRLuHph8dxnPny4WSNW7fxkhbeivBrtWbY6BfB4xpLj/info.json @@ -0,0 +1,17 @@ +{ + "name": "Artrade", + "type": "SPL", + "symbol": "ATR", + "decimals": 9, + "website": "https://artrade.app/", + "description": "Artrade emerges as a groundbreaking online platform aimed at revolutionizing the traditional paradigms of art transactions.", + "explorer": "https://solscan.io/token/ATRLuHph8dxnPny4WSNW7fxkhbeivBrtWbY6BfB4xpLj", + "id": "ATRLuHph8dxnPny4WSNW7fxkhbeivBrtWbY6BfB4xpLj", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/ArtradeApp" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/ATRLuHph8dxnPny4WSNW7fxkhbeivBrtWbY6BfB4xpLj/logo.png b/blockchains/solana/assets/ATRLuHph8dxnPny4WSNW7fxkhbeivBrtWbY6BfB4xpLj/logo.png new file mode 100644 index 0000000000000..01d4f474d2192 Binary files /dev/null and b/blockchains/solana/assets/ATRLuHph8dxnPny4WSNW7fxkhbeivBrtWbY6BfB4xpLj/logo.png differ diff --git a/blockchains/solana/assets/AURYydfxJib1ZkTir1Jn1J9ECYUtjb6rKQVmtYaixWPP/info.json b/blockchains/solana/assets/AURYydfxJib1ZkTir1Jn1J9ECYUtjb6rKQVmtYaixWPP/info.json index 1a07a5fa92ddb..488772ba91a14 100644 --- a/blockchains/solana/assets/AURYydfxJib1ZkTir1Jn1J9ECYUtjb6rKQVmtYaixWPP/info.json +++ b/blockchains/solana/assets/AURYydfxJib1ZkTir1Jn1J9ECYUtjb6rKQVmtYaixWPP/info.json @@ -10,8 +10,8 @@ "id": "AURYydfxJib1ZkTir1Jn1J9ECYUtjb6rKQVmtYaixWPP", "links": [ { - "name": "twitter", - "url": "https://twitter.com/auroryproject" + "name": "x", + "url": "https://x.com/auroryproject" }, { "name": "coinmarketcap", diff --git a/blockchains/solana/assets/AUdvAZm7ScT7S1z5frV7awvmwi4P3WVNcJsbq7spump/info.json b/blockchains/solana/assets/AUdvAZm7ScT7S1z5frV7awvmwi4P3WVNcJsbq7spump/info.json new file mode 100644 index 0000000000000..75f112c3fc139 --- /dev/null +++ b/blockchains/solana/assets/AUdvAZm7ScT7S1z5frV7awvmwi4P3WVNcJsbq7spump/info.json @@ -0,0 +1,21 @@ +{ + "name": "DUKE", + "type": "SPL", + "symbol": "DUKE", + "decimals": 6, + "website": "https://dukecoin.vip/", + "description": "Meet the new memecoin on Solana with our charming mascot, brought to life by the talented Matt Furie, like $PEPE, $BRETT and $ANDY.", + "explorer": "https://solscan.io/token/AUdvAZm7ScT7S1z5frV7awvmwi4P3WVNcJsbq7spump", + "status": "active", + "id": "AUdvAZm7ScT7S1z5frV7awvmwi4P3WVNcJsbq7spump", + "links": [ + { + "name": "x", + "url": "https://x.com/dukecoinsolana" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/duke-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AUdvAZm7ScT7S1z5frV7awvmwi4P3WVNcJsbq7spump/logo.png b/blockchains/solana/assets/AUdvAZm7ScT7S1z5frV7awvmwi4P3WVNcJsbq7spump/logo.png new file mode 100644 index 0000000000000..c3aa0feaeb84f Binary files /dev/null and b/blockchains/solana/assets/AUdvAZm7ScT7S1z5frV7awvmwi4P3WVNcJsbq7spump/logo.png differ diff --git a/blockchains/solana/assets/AVF9F4C4j8b1Kh4BmNHqybDaHgnZpJ7W7yLvL7hUpump/info.json b/blockchains/solana/assets/AVF9F4C4j8b1Kh4BmNHqybDaHgnZpJ7W7yLvL7hUpump/info.json new file mode 100644 index 0000000000000..2c593989d843b --- /dev/null +++ b/blockchains/solana/assets/AVF9F4C4j8b1Kh4BmNHqybDaHgnZpJ7W7yLvL7hUpump/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lobstar", + "type": "SPL", + "symbol": "Lobstar", + "decimals": 6, + "description": "Lobstar", + "website": "https://solscan.io/token/AVF9F4C4j8b1Kh4BmNHqybDaHgnZpJ7W7yLvL7hUpump", + "explorer": "https://solscan.io/token/AVF9F4C4j8b1Kh4BmNHqybDaHgnZpJ7W7yLvL7hUpump", + "status": "active", + "id": "AVF9F4C4j8b1Kh4BmNHqybDaHgnZpJ7W7yLvL7hUpump" +} diff --git a/blockchains/solana/assets/AVF9F4C4j8b1Kh4BmNHqybDaHgnZpJ7W7yLvL7hUpump/logo.png b/blockchains/solana/assets/AVF9F4C4j8b1Kh4BmNHqybDaHgnZpJ7W7yLvL7hUpump/logo.png new file mode 100644 index 0000000000000..e398d3f37568b Binary files /dev/null and b/blockchains/solana/assets/AVF9F4C4j8b1Kh4BmNHqybDaHgnZpJ7W7yLvL7hUpump/logo.png differ diff --git a/blockchains/solana/assets/AVLhahDcDQ4m4vHM4ug63oh7xc8Jtk49Dm5hoe9Sazqr/info.json b/blockchains/solana/assets/AVLhahDcDQ4m4vHM4ug63oh7xc8Jtk49Dm5hoe9Sazqr/info.json new file mode 100644 index 0000000000000..8900fd28c8e6c --- /dev/null +++ b/blockchains/solana/assets/AVLhahDcDQ4m4vHM4ug63oh7xc8Jtk49Dm5hoe9Sazqr/info.json @@ -0,0 +1,17 @@ +{ + "name": "Solama", + "website": "https://solama.vip/", + "description": "SOLAMA, the rising star in the meme coin universe on the SOLANA blockchain", + "explorer": "https://solscan.io/token/AVLhahDcDQ4m4vHM4ug63oh7xc8Jtk49Dm5hoe9Sazqr", + "type": "SPL", + "symbol": "SOLAMA", + "decimals": 6, + "status": "active", + "id": "AVLhahDcDQ4m4vHM4ug63oh7xc8Jtk49Dm5hoe9Sazqr", + "links": [ + { + "name": "x", + "url": "https://x.com/SolamaSPL" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AVLhahDcDQ4m4vHM4ug63oh7xc8Jtk49Dm5hoe9Sazqr/logo.png b/blockchains/solana/assets/AVLhahDcDQ4m4vHM4ug63oh7xc8Jtk49Dm5hoe9Sazqr/logo.png new file mode 100644 index 0000000000000..65ffbd7cc6fe9 Binary files /dev/null and b/blockchains/solana/assets/AVLhahDcDQ4m4vHM4ug63oh7xc8Jtk49Dm5hoe9Sazqr/logo.png differ diff --git a/blockchains/solana/assets/AXRsYFt7TXNQ3DcY6BkvRgPV6VsYMURyDtaeudjondo/info.json b/blockchains/solana/assets/AXRsYFt7TXNQ3DcY6BkvRgPV6VsYMURyDtaeudjondo/info.json new file mode 100644 index 0000000000000..37e930a396d27 --- /dev/null +++ b/blockchains/solana/assets/AXRsYFt7TXNQ3DcY6BkvRgPV6VsYMURyDtaeudjondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Rivian Automotive (Ondo Tokenized)", + "type": "SPL", + "symbol": "RIVNon", + "decimals": 9, + "description": "RIVNon is the Ondo Tokenized version of Rivian Automotive, giving tokenholders economic exposure similar to holding RIVN and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/AXRsYFt7TXNQ3DcY6BkvRgPV6VsYMURyDtaeudjondo", + "status": "active", + "id": "AXRsYFt7TXNQ3DcY6BkvRgPV6VsYMURyDtaeudjondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/rivian-automotive-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rivian-automotive-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AXRsYFt7TXNQ3DcY6BkvRgPV6VsYMURyDtaeudjondo/logo.png b/blockchains/solana/assets/AXRsYFt7TXNQ3DcY6BkvRgPV6VsYMURyDtaeudjondo/logo.png new file mode 100644 index 0000000000000..c4ed72cfae648 Binary files /dev/null and b/blockchains/solana/assets/AXRsYFt7TXNQ3DcY6BkvRgPV6VsYMURyDtaeudjondo/logo.png differ diff --git a/blockchains/solana/assets/AbrMJWfDVRZ2EWCQ1xSCpoVeVgZNpq1U2AoYG98oRXfn/info.json b/blockchains/solana/assets/AbrMJWfDVRZ2EWCQ1xSCpoVeVgZNpq1U2AoYG98oRXfn/info.json new file mode 100644 index 0000000000000..c179a10e482d2 --- /dev/null +++ b/blockchains/solana/assets/AbrMJWfDVRZ2EWCQ1xSCpoVeVgZNpq1U2AoYG98oRXfn/info.json @@ -0,0 +1,21 @@ +{ + "name": "Cheese", + "type": "SPL", + "symbol": "Cheese", + "decimals": 6, + "website": "https://cheesed.me/", + "description": "It's just a slice of cheese.", + "explorer": "https://solscan.io/token/AbrMJWfDVRZ2EWCQ1xSCpoVeVgZNpq1U2AoYG98oRXfn", + "status": "active", + "id": "AbrMJWfDVRZ2EWCQ1xSCpoVeVgZNpq1U2AoYG98oRXfn", + "links": [ + { + "name": "x", + "url": "https://x.com/dacheeseslice" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cheese-2" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AbrMJWfDVRZ2EWCQ1xSCpoVeVgZNpq1U2AoYG98oRXfn/logo.png b/blockchains/solana/assets/AbrMJWfDVRZ2EWCQ1xSCpoVeVgZNpq1U2AoYG98oRXfn/logo.png new file mode 100644 index 0000000000000..18d52dda0e5a6 Binary files /dev/null and b/blockchains/solana/assets/AbrMJWfDVRZ2EWCQ1xSCpoVeVgZNpq1U2AoYG98oRXfn/logo.png differ diff --git a/blockchains/solana/assets/AcJTj14wb9VjVtVrR7E7eoxeK4HayqZ9bPdNvkiEpump/info.json b/blockchains/solana/assets/AcJTj14wb9VjVtVrR7E7eoxeK4HayqZ9bPdNvkiEpump/info.json new file mode 100644 index 0000000000000..ae12757d474c7 --- /dev/null +++ b/blockchains/solana/assets/AcJTj14wb9VjVtVrR7E7eoxeK4HayqZ9bPdNvkiEpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Meow Meow Meow Meow", + "website": "https://x.com/Meowmeow_onSOL", + "description": "$MEOW - the cat your girl saw on tiktok", + "explorer": "https://solscan.io/token/AcJTj14wb9VjVtVrR7E7eoxeK4HayqZ9bPdNvkiEpump", + "type": "SPL", + "symbol": "MEOW", + "decimals": 6, + "status": "active", + "id": "AcJTj14wb9VjVtVrR7E7eoxeK4HayqZ9bPdNvkiEpump", + "links": [ + { + "name": "x", + "url": "https://x.com/Meowmeow_onSOL" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/meow-meow-meow-meow" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AcJTj14wb9VjVtVrR7E7eoxeK4HayqZ9bPdNvkiEpump/logo.png b/blockchains/solana/assets/AcJTj14wb9VjVtVrR7E7eoxeK4HayqZ9bPdNvkiEpump/logo.png new file mode 100644 index 0000000000000..bb90e146be981 Binary files /dev/null and b/blockchains/solana/assets/AcJTj14wb9VjVtVrR7E7eoxeK4HayqZ9bPdNvkiEpump/logo.png differ diff --git a/blockchains/solana/assets/AcV2T3mwLUqMiiqcsafVm35zwPQkmLrfRtaW3716Fzvi/info.json b/blockchains/solana/assets/AcV2T3mwLUqMiiqcsafVm35zwPQkmLrfRtaW3716Fzvi/info.json new file mode 100644 index 0000000000000..2f8291f7633f0 --- /dev/null +++ b/blockchains/solana/assets/AcV2T3mwLUqMiiqcsafVm35zwPQkmLrfRtaW3716Fzvi/info.json @@ -0,0 +1,28 @@ +{ + "name": "rexwifhat", + "type": "SPL", + "symbol": "REXHAT", + "decimals": 6, + "description": "REXHAT - A long-lost meme coin has risen on Solana. The supreme king will rule the world again. $REXHAT", + "website": "https://rexwifhatsolana.com/", + "explorer": "https://solscan.io/token/AcV2T3mwLUqMiiqcsafVm35zwPQkmLrfRtaW3716Fzvi", + "id": "AcV2T3mwLUqMiiqcsafVm35zwPQkmLrfRtaW3716Fzvi", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/rexwifhat_sol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rexwifhat/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/rexwifhat" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AcV2T3mwLUqMiiqcsafVm35zwPQkmLrfRtaW3716Fzvi/logo.png b/blockchains/solana/assets/AcV2T3mwLUqMiiqcsafVm35zwPQkmLrfRtaW3716Fzvi/logo.png new file mode 100644 index 0000000000000..fcb83a71e21c4 Binary files /dev/null and b/blockchains/solana/assets/AcV2T3mwLUqMiiqcsafVm35zwPQkmLrfRtaW3716Fzvi/logo.png differ diff --git a/blockchains/solana/assets/AcWMeyDqe6FGHK77JRS6zW6PcrS66F7THdB9WpBTpump/info.json b/blockchains/solana/assets/AcWMeyDqe6FGHK77JRS6zW6PcrS66F7THdB9WpBTpump/info.json new file mode 100644 index 0000000000000..0487e81b69116 --- /dev/null +++ b/blockchains/solana/assets/AcWMeyDqe6FGHK77JRS6zW6PcrS66F7THdB9WpBTpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "PsyNova", + "symbol": "PSY", + "type": "SPL", + "decimals": 6, + "description": "Streamline AI development with fast model training, fine-tuning, and scalable, cost-effective deployment for seamless production integration.", + "website": "https://psynova.ai/", + "explorer": "https://solscan.io/token/AcWMeyDqe6FGHK77JRS6zW6PcrS66F7THdB9WpBTpump", + "status": "active", + "id": "AcWMeyDqe6FGHK77JRS6zW6PcrS66F7THdB9WpBTpump", + "links": [ + { + "name": "x", + "url": "https://x.com/PsyNova_AI" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/psynova-token" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AcWMeyDqe6FGHK77JRS6zW6PcrS66F7THdB9WpBTpump/logo.png b/blockchains/solana/assets/AcWMeyDqe6FGHK77JRS6zW6PcrS66F7THdB9WpBTpump/logo.png new file mode 100644 index 0000000000000..68a3e5f30d1a6 Binary files /dev/null and b/blockchains/solana/assets/AcWMeyDqe6FGHK77JRS6zW6PcrS66F7THdB9WpBTpump/logo.png differ diff --git a/blockchains/solana/assets/AdfrN2rK9dJmd4E9vwkf2ThpBxKFfT1o31gXSPpupYtT/info.json b/blockchains/solana/assets/AdfrN2rK9dJmd4E9vwkf2ThpBxKFfT1o31gXSPpupYtT/info.json new file mode 100644 index 0000000000000..3f9205bfd962e --- /dev/null +++ b/blockchains/solana/assets/AdfrN2rK9dJmd4E9vwkf2ThpBxKFfT1o31gXSPpupYtT/info.json @@ -0,0 +1,17 @@ +{ + "name": "TimePocket", + "type": "SPL", + "symbol": "TimePocket", + "decimals": 9, + "website": "https://www.timepocket.one/index.html", + "description": "Using our platform, you can exchange tokens to meet new people, form friendships, and borrow their time.", + "explorer": "https://solscan.io/token/AdfrN2rK9dJmd4E9vwkf2ThpBxKFfT1o31gXSPpupYtT", + "status": "active", + "id": "AdfrN2rK9dJmd4E9vwkf2ThpBxKFfT1o31gXSPpupYtT", + "links": [ + { + "name": "x", + "url": "https://x.com/TimePocket_1" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AdfrN2rK9dJmd4E9vwkf2ThpBxKFfT1o31gXSPpupYtT/logo.png b/blockchains/solana/assets/AdfrN2rK9dJmd4E9vwkf2ThpBxKFfT1o31gXSPpupYtT/logo.png new file mode 100644 index 0000000000000..3201fccdd86ee Binary files /dev/null and b/blockchains/solana/assets/AdfrN2rK9dJmd4E9vwkf2ThpBxKFfT1o31gXSPpupYtT/logo.png differ diff --git a/blockchains/solana/assets/Adq3wnAvtaXBNfy63xGV1YNkDiPKadDT469xF9uZPrqE/info.json b/blockchains/solana/assets/Adq3wnAvtaXBNfy63xGV1YNkDiPKadDT469xF9uZPrqE/info.json new file mode 100644 index 0000000000000..686a681ec73e1 --- /dev/null +++ b/blockchains/solana/assets/Adq3wnAvtaXBNfy63xGV1YNkDiPKadDT469xF9uZPrqE/info.json @@ -0,0 +1,17 @@ +{ + "name": "What in Tarnation?", + "type": "SPL", + "symbol": "WIT", + "decimals": 6, + "website": "https://www.whatintarn.org", + "description": "What in tarnation is a manner of expressin’ scorn. We holler it when we’re downright bamboozled by how things are runnin’, and by golly, we’re hollerin’ it now. Fake hound coins are appearin’ quicker than a jackrabbit and vanishin’ just as fast, all in the chase for a fast profit. WIT’s a whole ‘nother breed. We're plantin’ our boots firmly on the ground, here for the long haul.", + "explorer": "https://solscan.io/token/Adq3wnAvtaXBNfy63xGV1YNkDiPKadDT469xF9uZPrqE", + "status": "active", + "id": "Adq3wnAvtaXBNfy63xGV1YNkDiPKadDT469xF9uZPrqE", + "links": [ + { + "name": "x", + "url": "https://x.com/WhatInTarnSol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Adq3wnAvtaXBNfy63xGV1YNkDiPKadDT469xF9uZPrqE/logo.png b/blockchains/solana/assets/Adq3wnAvtaXBNfy63xGV1YNkDiPKadDT469xF9uZPrqE/logo.png new file mode 100644 index 0000000000000..5d7c37b3fa547 Binary files /dev/null and b/blockchains/solana/assets/Adq3wnAvtaXBNfy63xGV1YNkDiPKadDT469xF9uZPrqE/logo.png differ diff --git a/blockchains/solana/assets/Ag7XCgPqzrqEo7kaNjA4UXfw9buSwBQooy3uh46vfuFe/info.json b/blockchains/solana/assets/Ag7XCgPqzrqEo7kaNjA4UXfw9buSwBQooy3uh46vfuFe/info.json new file mode 100644 index 0000000000000..55c75f27ad003 --- /dev/null +++ b/blockchains/solana/assets/Ag7XCgPqzrqEo7kaNjA4UXfw9buSwBQooy3uh46vfuFe/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDT", + "type": "SPL", + "symbol": "FAKE BEP20", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/Ag7XCgPqzrqEo7kaNjA4UXfw9buSwBQooy3uh46vfuFe", + "explorer": "https://solscan.io/token/Ag7XCgPqzrqEo7kaNjA4UXfw9buSwBQooy3uh46vfuFe", + "status": "spam", + "id": "Ag7XCgPqzrqEo7kaNjA4UXfw9buSwBQooy3uh46vfuFe" +} \ No newline at end of file diff --git a/blockchains/solana/assets/AjkPkq3nsyDe1yKcbyZT7N4aK4Evv9om9tzhQD3wsRC/info.json b/blockchains/solana/assets/AjkPkq3nsyDe1yKcbyZT7N4aK4Evv9om9tzhQD3wsRC/info.json index 0b8449189ec05..580fa0c6f00c5 100644 --- a/blockchains/solana/assets/AjkPkq3nsyDe1yKcbyZT7N4aK4Evv9om9tzhQD3wsRC/info.json +++ b/blockchains/solana/assets/AjkPkq3nsyDe1yKcbyZT7N4aK4Evv9om9tzhQD3wsRC/info.json @@ -1,5 +1,5 @@ { - "name": "1INCH Token (Portal)", + "name": "1inch (Portal)", "type": "SPL", "symbol": "1INCH", "decimals": 8, diff --git a/blockchains/solana/assets/AkuYN57Dq2UVh3jWy8qcgi4iQdHawLothhQ1yEXbpump/info.json b/blockchains/solana/assets/AkuYN57Dq2UVh3jWy8qcgi4iQdHawLothhQ1yEXbpump/info.json new file mode 100644 index 0000000000000..79b80e29a7cb5 --- /dev/null +++ b/blockchains/solana/assets/AkuYN57Dq2UVh3jWy8qcgi4iQdHawLothhQ1yEXbpump/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM United Stable Dollar Trump", + "type": "SPL", + "symbol": "SCAM USDT", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/AkuYN57Dq2UVh3jWy8qcgi4iQdHawLothhQ1yEXbpump", + "explorer": "https://solscan.io/token/AkuYN57Dq2UVh3jWy8qcgi4iQdHawLothhQ1yEXbpump", + "status": "spam", + "id": "AkuYN57Dq2UVh3jWy8qcgi4iQdHawLothhQ1yEXbpump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/AmtvMBMYtb5auN4KiFdMe9C8wjiu1KQZYQUL73Pw7ZZE/info.json b/blockchains/solana/assets/AmtvMBMYtb5auN4KiFdMe9C8wjiu1KQZYQUL73Pw7ZZE/info.json new file mode 100644 index 0000000000000..37a2632f8121e --- /dev/null +++ b/blockchains/solana/assets/AmtvMBMYtb5auN4KiFdMe9C8wjiu1KQZYQUL73Pw7ZZE/info.json @@ -0,0 +1,21 @@ +{ + "name": "bioDAOs", + "type": "SPL", + "symbol": "BIO", + "decimals": 2, + "description": "Introducing $bioDAOs, a meme coin that embodies the spirit of change and digital innovation, inspired by the potential shift in the SEC leadership with Paul Atkins, a pro-crypto advocate, at the helm", + "website": "https://biodaos.site/", + "explorer": "https://solscan.io/token/AmtvMBMYtb5auN4KiFdMe9C8wjiu1KQZYQUL73Pw7ZZE", + "id": "AmtvMBMYtb5auN4KiFdMe9C8wjiu1KQZYQUL73Pw7ZZE", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/bioDAOs" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/biodaos/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AmtvMBMYtb5auN4KiFdMe9C8wjiu1KQZYQUL73Pw7ZZE/logo.png b/blockchains/solana/assets/AmtvMBMYtb5auN4KiFdMe9C8wjiu1KQZYQUL73Pw7ZZE/logo.png new file mode 100644 index 0000000000000..669c58851a65f Binary files /dev/null and b/blockchains/solana/assets/AmtvMBMYtb5auN4KiFdMe9C8wjiu1KQZYQUL73Pw7ZZE/logo.png differ diff --git a/blockchains/solana/assets/AoiSqNmkCLAmQxvqFyTrqiT49yoDfv3gr9rUNGDSrFhe/info.json b/blockchains/solana/assets/AoiSqNmkCLAmQxvqFyTrqiT49yoDfv3gr9rUNGDSrFhe/info.json new file mode 100644 index 0000000000000..7c3a86c903a9c --- /dev/null +++ b/blockchains/solana/assets/AoiSqNmkCLAmQxvqFyTrqiT49yoDfv3gr9rUNGDSrFhe/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE ՍЅᎠТ", + "type": "SPL", + "symbol": "FAKE ՍЅᎠТ", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/AoiSqNmkCLAmQxvqFyTrqiT49yoDfv3gr9rUNGDSrFhe", + "explorer": "https://solscan.io/token/AoiSqNmkCLAmQxvqFyTrqiT49yoDfv3gr9rUNGDSrFhe", + "status": "spam", + "id": "AoiSqNmkCLAmQxvqFyTrqiT49yoDfv3gr9rUNGDSrFhe" +} \ No newline at end of file diff --git a/blockchains/solana/assets/ArGfk9JJ72QETcmckxVjCZ9ApuATgP1mf9ysVHnPU4ut/info.json b/blockchains/solana/assets/ArGfk9JJ72QETcmckxVjCZ9ApuATgP1mf9ysVHnPU4ut/info.json new file mode 100644 index 0000000000000..e1c9d7d384a59 --- /dev/null +++ b/blockchains/solana/assets/ArGfk9JJ72QETcmckxVjCZ9ApuATgP1mf9ysVHnPU4ut/info.json @@ -0,0 +1,21 @@ +{ + "name": "Byte", + "symbol": "BYTE", + "type": "SPL", + "decimals": 8, + "description": "Byte (BYTE) is a novel meme token that creatively intertwines the worlds of cryptocurrency and popular culture.", + "website": "https://elixir.games/", + "explorer": "https://solscan.io/token/ArGfk9JJ72QETcmckxVjCZ9ApuATgP1mf9ysVHnPU4ut", + "status": "active", + "id": "ArGfk9JJ72QETcmckxVjCZ9ApuATgP1mf9ysVHnPU4ut", + "links": [ + { + "name": "x", + "url": "https://x.com/Elixir_Games" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elixir-games" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/ArGfk9JJ72QETcmckxVjCZ9ApuATgP1mf9ysVHnPU4ut/logo.png b/blockchains/solana/assets/ArGfk9JJ72QETcmckxVjCZ9ApuATgP1mf9ysVHnPU4ut/logo.png new file mode 100644 index 0000000000000..3fe074ec831d7 Binary files /dev/null and b/blockchains/solana/assets/ArGfk9JJ72QETcmckxVjCZ9ApuATgP1mf9ysVHnPU4ut/logo.png differ diff --git a/blockchains/solana/assets/AsyfR3e5JcPqWot4H5MMhQUm7DZ4zwQrcp2zbB7vpump/info.json b/blockchains/solana/assets/AsyfR3e5JcPqWot4H5MMhQUm7DZ4zwQrcp2zbB7vpump/info.json new file mode 100644 index 0000000000000..a6eeea270b96a --- /dev/null +++ b/blockchains/solana/assets/AsyfR3e5JcPqWot4H5MMhQUm7DZ4zwQrcp2zbB7vpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "IQ6900", + "type": "SPL", + "symbol": "IQ", + "decimals": 6, + "website": "https://iq6900.com/", + "description": "Beyond high-level memes crafted by tech, a place where technology turns communities into memes. Welcome to $IQ", + "explorer": "https://solscan.io/token/AsyfR3e5JcPqWot4H5MMhQUm7DZ4zwQrcp2zbB7vpump", + "status": "active", + "id": "AsyfR3e5JcPqWot4H5MMhQUm7DZ4zwQrcp2zbB7vpump", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/iq6900" + }, + { + "name": "x", + "url": "https://x.com/IQ6900_" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AsyfR3e5JcPqWot4H5MMhQUm7DZ4zwQrcp2zbB7vpump/logo.png b/blockchains/solana/assets/AsyfR3e5JcPqWot4H5MMhQUm7DZ4zwQrcp2zbB7vpump/logo.png new file mode 100644 index 0000000000000..71fa32a6c1c9b Binary files /dev/null and b/blockchains/solana/assets/AsyfR3e5JcPqWot4H5MMhQUm7DZ4zwQrcp2zbB7vpump/logo.png differ diff --git a/blockchains/solana/assets/AtaQNGKRqk7nBexQjr2xPBDYaqXDsAxvwhyufA5Ffmw/info.json b/blockchains/solana/assets/AtaQNGKRqk7nBexQjr2xPBDYaqXDsAxvwhyufA5Ffmw/info.json new file mode 100644 index 0000000000000..4a48628b249ae --- /dev/null +++ b/blockchains/solana/assets/AtaQNGKRqk7nBexQjr2xPBDYaqXDsAxvwhyufA5Ffmw/info.json @@ -0,0 +1,17 @@ +{ + "name": "jester turdeau", + "type": "SPL", + "symbol": "turdeau", + "decimals": 9, + "website": "https://jesterturdeau.com", + "description": "jester turdeau moon, no pepe moon jester turdeau moon today i s a jester turdeau da y toda i jester turdeau moon. yes jester turdeau go to da moon. u is cuming wif jester turdeau?", + "explorer": "https://solscan.io/token/AtaQNGKRqk7nBexQjr2xPBDYaqXDsAxvwhyufA5Ffmw", + "status": "active", + "id": "AtaQNGKRqk7nBexQjr2xPBDYaqXDsAxvwhyufA5Ffmw", + "links": [ + { + "name": "x", + "url": "https://x.com/jesterturdeau" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AtaQNGKRqk7nBexQjr2xPBDYaqXDsAxvwhyufA5Ffmw/logo.png b/blockchains/solana/assets/AtaQNGKRqk7nBexQjr2xPBDYaqXDsAxvwhyufA5Ffmw/logo.png new file mode 100644 index 0000000000000..e4c3184473862 Binary files /dev/null and b/blockchains/solana/assets/AtaQNGKRqk7nBexQjr2xPBDYaqXDsAxvwhyufA5Ffmw/logo.png differ diff --git a/blockchains/solana/assets/AuTmJibSsTT72qywNkE85seSvdzModR9QCFBwpSPsYmN/info.json b/blockchains/solana/assets/AuTmJibSsTT72qywNkE85seSvdzModR9QCFBwpSPsYmN/info.json new file mode 100644 index 0000000000000..c95fa597234c7 --- /dev/null +++ b/blockchains/solana/assets/AuTmJibSsTT72qywNkE85seSvdzModR9QCFBwpSPsYmN/info.json @@ -0,0 +1,21 @@ +{ + "name": "End Wokeness", + "website": "https://www.endwokeness.org/", + "description": "'Woke culture' exposes deep societal divisions, intensifying debates on identity politics and social justice.", + "explorer": "https://solscan.io/token/AuTmJibSsTT72qywNkE85seSvdzModR9QCFBwpSPsYmN", + "type": "SPL", + "symbol": "WOKE", + "decimals": 6, + "status": "active", + "id": "AuTmJibSsTT72qywNkE85seSvdzModR9QCFBwpSPsYmN", + "links": [ + { + "name": "x", + "url": "https://x.com/endwokenessol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/end-wokeness" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AuTmJibSsTT72qywNkE85seSvdzModR9QCFBwpSPsYmN/logo.png b/blockchains/solana/assets/AuTmJibSsTT72qywNkE85seSvdzModR9QCFBwpSPsYmN/logo.png new file mode 100644 index 0000000000000..9109458260a20 Binary files /dev/null and b/blockchains/solana/assets/AuTmJibSsTT72qywNkE85seSvdzModR9QCFBwpSPsYmN/logo.png differ diff --git a/blockchains/solana/assets/AujTJJ7aMS8LDo3bFzoyXDwT3jBALUbu4VZhzZdTZLmG/info.json b/blockchains/solana/assets/AujTJJ7aMS8LDo3bFzoyXDwT3jBALUbu4VZhzZdTZLmG/info.json new file mode 100644 index 0000000000000..24589c5651c2b --- /dev/null +++ b/blockchains/solana/assets/AujTJJ7aMS8LDo3bFzoyXDwT3jBALUbu4VZhzZdTZLmG/info.json @@ -0,0 +1,21 @@ +{ + "name": "BEER", + "type": "SPL", + "symbol": "BEER", + "website": "https://beercoin.wtf/", + "explorer": "https://solscan.io/token/AujTJJ7aMS8LDo3bFzoyXDwT3jBALUbu4VZhzZdTZLmG", + "decimals": 6, + "description": "$BEER isn't just another coin – it's literally liquid gold. It works as the universal currency of enjoyment, bringing people together regardless of their skin color or social status. Grab some $BEER, invite your friends, and enjoy a great time!", + "status": "active", + "id": "AujTJJ7aMS8LDo3bFzoyXDwT3jBALUbu4VZhzZdTZLmG", + "links": [ + { + "name": "telegram", + "url": "https://t.me/beercoinchannel" + }, + { + "name": "x", + "url": "https://x.com/beercoinmeme" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AujTJJ7aMS8LDo3bFzoyXDwT3jBALUbu4VZhzZdTZLmG/logo.png b/blockchains/solana/assets/AujTJJ7aMS8LDo3bFzoyXDwT3jBALUbu4VZhzZdTZLmG/logo.png new file mode 100644 index 0000000000000..0a90e4ab07c38 Binary files /dev/null and b/blockchains/solana/assets/AujTJJ7aMS8LDo3bFzoyXDwT3jBALUbu4VZhzZdTZLmG/logo.png differ diff --git a/blockchains/solana/assets/Av6qVigkb7USQyPXJkUvAEm4f599WTRvd75PUWBA9eNm/info.json b/blockchains/solana/assets/Av6qVigkb7USQyPXJkUvAEm4f599WTRvd75PUWBA9eNm/info.json new file mode 100644 index 0000000000000..5a7779b7ab1cb --- /dev/null +++ b/blockchains/solana/assets/Av6qVigkb7USQyPXJkUvAEm4f599WTRvd75PUWBA9eNm/info.json @@ -0,0 +1,17 @@ +{ + "name": "Costco Hot Dog", + "website": "https://costcodogsol.xyz", + "description": "$COST the greatest fight against inflation. Available at a Costco near you for only $1.50. The people love these dogs.", + "explorer": "https://solscan.io/token/Av6qVigkb7USQyPXJkUvAEm4f599WTRvd75PUWBA9eNm", + "type": "SPL", + "symbol": "COST", + "decimals": 9, + "status": "active", + "id": "Av6qVigkb7USQyPXJkUvAEm4f599WTRvd75PUWBA9eNm", + "links": [ + { + "name": "x", + "url": "https://x.com/costcodogsol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Av6qVigkb7USQyPXJkUvAEm4f599WTRvd75PUWBA9eNm/logo.png b/blockchains/solana/assets/Av6qVigkb7USQyPXJkUvAEm4f599WTRvd75PUWBA9eNm/logo.png new file mode 100644 index 0000000000000..710e1699c774a Binary files /dev/null and b/blockchains/solana/assets/Av6qVigkb7USQyPXJkUvAEm4f599WTRvd75PUWBA9eNm/logo.png differ diff --git a/blockchains/solana/assets/Avb1PBRudW7uUV9MqTUqfZ3EZTDvNkKS63W3wyPseudf/info.json b/blockchains/solana/assets/Avb1PBRudW7uUV9MqTUqfZ3EZTDvNkKS63W3wyPseudf/info.json new file mode 100644 index 0000000000000..9ca40bff389d0 --- /dev/null +++ b/blockchains/solana/assets/Avb1PBRudW7uUV9MqTUqfZ3EZTDvNkKS63W3wyPseudf/info.json @@ -0,0 +1,17 @@ +{ + "name": "CatWifHat", + "type": "SPL", + "symbol": "CatWif", + "decimals": 6, + "website": "https://catwiftoken.org/", + "description": "CatWifHat is a community-driven token, the community will determine the development of CatWifHat throughout the development process.", + "explorer": "https://solscan.io/token/Avb1PBRudW7uUV9MqTUqfZ3EZTDvNkKS63W3wyPseudf", + "id": "Avb1PBRudW7uUV9MqTUqfZ3EZTDvNkKS63W3wyPseudf", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Catwifhat_2024" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Avb1PBRudW7uUV9MqTUqfZ3EZTDvNkKS63W3wyPseudf/logo.png b/blockchains/solana/assets/Avb1PBRudW7uUV9MqTUqfZ3EZTDvNkKS63W3wyPseudf/logo.png new file mode 100644 index 0000000000000..3eb12687d3169 Binary files /dev/null and b/blockchains/solana/assets/Avb1PBRudW7uUV9MqTUqfZ3EZTDvNkKS63W3wyPseudf/logo.png differ diff --git a/blockchains/solana/assets/AvjqpdnoDTSE8xmG5NGYMFjopQhMpthhwoQg3yqvpump/info.json b/blockchains/solana/assets/AvjqpdnoDTSE8xmG5NGYMFjopQhMpthhwoQg3yqvpump/info.json new file mode 100644 index 0000000000000..5899bde97fd58 --- /dev/null +++ b/blockchains/solana/assets/AvjqpdnoDTSE8xmG5NGYMFjopQhMpthhwoQg3yqvpump/info.json @@ -0,0 +1,14 @@ +{ + "name": "Melania Trump", + "type": "SPL", + "symbol": "MEL", + "decimals": 6, + "website": "https://www.melaniatrump.work/", + "description": "MEL — a memecoin where Melania embodies the symbol of success, shining with elegance and confidence at the peak of the crypto Olympus! She leads us into a future where cryptocurrency rules the world, opening new horizons of wealth and freedom.", + "explorer": "https://explorer.solana.com/address/AvjqpdnoDTSE8xmG5NGYMFjopQhMpthhwoQg3yqvpump", + "status": "active", + "id": "AvjqpdnoDTSE8xmG5NGYMFjopQhMpthhwoQg3yqvpump", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AvjqpdnoDTSE8xmG5NGYMFjopQhMpthhwoQg3yqvpump/logo.png b/blockchains/solana/assets/AvjqpdnoDTSE8xmG5NGYMFjopQhMpthhwoQg3yqvpump/logo.png new file mode 100644 index 0000000000000..d1455c18807cf Binary files /dev/null and b/blockchains/solana/assets/AvjqpdnoDTSE8xmG5NGYMFjopQhMpthhwoQg3yqvpump/logo.png differ diff --git a/blockchains/solana/assets/AxGAbdFtdbj2oNXa4dKqFvwHzgFtW9mFHWmd7vQfpump/info.json b/blockchains/solana/assets/AxGAbdFtdbj2oNXa4dKqFvwHzgFtW9mFHWmd7vQfpump/info.json new file mode 100644 index 0000000000000..9f89c1487b628 --- /dev/null +++ b/blockchains/solana/assets/AxGAbdFtdbj2oNXa4dKqFvwHzgFtW9mFHWmd7vQfpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "TOP HAT", + "symbol": "HAT", + "type": "SPL", + "decimals": 6, + "description": "Top Hat is Solana's first interactive AI agents launchpad for anyone to launch their personalised agent without prior knowledge using Prompts.", + "website": "https://tophat.one/", + "explorer": "https://solscan.io/token/AxGAbdFtdbj2oNXa4dKqFvwHzgFtW9mFHWmd7vQfpump", + "status": "active", + "id": "AxGAbdFtdbj2oNXa4dKqFvwHzgFtW9mFHWmd7vQfpump", + "links": [ + { + "name": "x", + "url": "https://x.com/TopHat_One" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/top-hat/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AxGAbdFtdbj2oNXa4dKqFvwHzgFtW9mFHWmd7vQfpump/logo.png b/blockchains/solana/assets/AxGAbdFtdbj2oNXa4dKqFvwHzgFtW9mFHWmd7vQfpump/logo.png new file mode 100644 index 0000000000000..88c30fb4f3927 Binary files /dev/null and b/blockchains/solana/assets/AxGAbdFtdbj2oNXa4dKqFvwHzgFtW9mFHWmd7vQfpump/logo.png differ diff --git a/blockchains/solana/assets/AxriehR6Xw3adzHopnvMn7GcpRFcD41ddpiTWMg6pump/info.json b/blockchains/solana/assets/AxriehR6Xw3adzHopnvMn7GcpRFcD41ddpiTWMg6pump/info.json new file mode 100644 index 0000000000000..aec136c2e767b --- /dev/null +++ b/blockchains/solana/assets/AxriehR6Xw3adzHopnvMn7GcpRFcD41ddpiTWMg6pump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Stool Prisondente", + "type": "SPL", + "symbol": "jailstool", + "decimals": 6, + "website": "https://pump.fun/coin/AxriehR6Xw3adzHopnvMn7GcpRFcD41ddpiTWMg6pump", + "description": "tool Prisondente (jailstool)", + "explorer": "https://solscan.io/token/AxriehR6Xw3adzHopnvMn7GcpRFcD41ddpiTWMg6pump", + "status": "active", + "id": "AxriehR6Xw3adzHopnvMn7GcpRFcD41ddpiTWMg6pump", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/stool-prisondente/" + }, + { + "name": "x", + "url": "https://x.com/stoolpresidente" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AxriehR6Xw3adzHopnvMn7GcpRFcD41ddpiTWMg6pump/logo.png b/blockchains/solana/assets/AxriehR6Xw3adzHopnvMn7GcpRFcD41ddpiTWMg6pump/logo.png new file mode 100644 index 0000000000000..f01c2a1deab54 Binary files /dev/null and b/blockchains/solana/assets/AxriehR6Xw3adzHopnvMn7GcpRFcD41ddpiTWMg6pump/logo.png differ diff --git a/blockchains/solana/assets/AzQ5kAdjuqjMsMpcGrHGb4X7nEcGAYAWXcUijpVvwTuf/info.json b/blockchains/solana/assets/AzQ5kAdjuqjMsMpcGrHGb4X7nEcGAYAWXcUijpVvwTuf/info.json new file mode 100644 index 0000000000000..5b77138d4e228 --- /dev/null +++ b/blockchains/solana/assets/AzQ5kAdjuqjMsMpcGrHGb4X7nEcGAYAWXcUijpVvwTuf/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE EURC", + "type": "SPL", + "symbol": "FAKE EURC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/AzQ5kAdjuqjMsMpcGrHGb4X7nEcGAYAWXcUijpVvwTuf", + "explorer": "https://solscan.io/token/AzQ5kAdjuqjMsMpcGrHGb4X7nEcGAYAWXcUijpVvwTuf", + "status": "spam", + "id": "AzQ5kAdjuqjMsMpcGrHGb4X7nEcGAYAWXcUijpVvwTuf" +} \ No newline at end of file diff --git a/blockchains/solana/assets/B14H1RtKdk5BZXXqRr1orfDmFtP7dsRgniDtdhYrpump/info.json b/blockchains/solana/assets/B14H1RtKdk5BZXXqRr1orfDmFtP7dsRgniDtdhYrpump/info.json new file mode 100644 index 0000000000000..0599e98d1c0d2 --- /dev/null +++ b/blockchains/solana/assets/B14H1RtKdk5BZXXqRr1orfDmFtP7dsRgniDtdhYrpump/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Unstable Euro Coin", + "type": "SPL", + "symbol": "FAKE EURCUS", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/B14H1RtKdk5BZXXqRr1orfDmFtP7dsRgniDtdhYrpump", + "explorer": "https://solscan.io/token/B14H1RtKdk5BZXXqRr1orfDmFtP7dsRgniDtdhYrpump", + "status": "spam", + "id": "B14H1RtKdk5BZXXqRr1orfDmFtP7dsRgniDtdhYrpump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/B4f5Tj8h8xSoF9zGHxhL1fLQwvgKWcEFhbTMyVhXJ4ch/info.json b/blockchains/solana/assets/B4f5Tj8h8xSoF9zGHxhL1fLQwvgKWcEFhbTMyVhXJ4ch/info.json new file mode 100644 index 0000000000000..9bb128443ac20 --- /dev/null +++ b/blockchains/solana/assets/B4f5Tj8h8xSoF9zGHxhL1fLQwvgKWcEFhbTMyVhXJ4ch/info.json @@ -0,0 +1,27 @@ +{ + "name": "ROP", + "type": "SOL", + "symbol": "ROP", + "decimals": 9, + "description": "ROP (Redemption of Pets) is a meme token dedicated to supporting all pets, not just cats and dogs.", + "website": "https://ropmeme.io/", + "explorer": "https://solscan.io/account/B4f5Tj8h8xSoF9zGHxhL1fLQwvgKWcEFhbTMyVhXJ4ch", + "id": "B4f5Tj8h8xSoF9zGHxhL1fLQwvgKWcEFhbTMyVhXJ4ch", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/redemptionpets" + }, + + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/redemption-of-pets" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/B4f5Tj8h8xSoF9zGHxhL1fLQwvgKWcEFhbTMyVhXJ4ch/logo.png b/blockchains/solana/assets/B4f5Tj8h8xSoF9zGHxhL1fLQwvgKWcEFhbTMyVhXJ4ch/logo.png new file mode 100644 index 0000000000000..3e1d4cbe831a2 Binary files /dev/null and b/blockchains/solana/assets/B4f5Tj8h8xSoF9zGHxhL1fLQwvgKWcEFhbTMyVhXJ4ch/logo.png differ diff --git a/blockchains/solana/assets/B54Fyr1XrWNA5RsRRkovoVFwQwzwBfqaJPLoFR4pMoAX/info.json b/blockchains/solana/assets/B54Fyr1XrWNA5RsRRkovoVFwQwzwBfqaJPLoFR4pMoAX/info.json new file mode 100644 index 0000000000000..edad4c28a3257 --- /dev/null +++ b/blockchains/solana/assets/B54Fyr1XrWNA5RsRRkovoVFwQwzwBfqaJPLoFR4pMoAX/info.json @@ -0,0 +1,21 @@ +{ + "name": "Department Of Governm", + "symbol": "DOGE", + "type": "SPL", + "decimals": 8, + "description": "New meme parody of elon musk. I am willing to serve. D.O.G.E = Department of Government Efficiency", + "website": "https://doge.gd/", + "explorer": "https://solscan.io/token/B54Fyr1XrWNA5RsRRkovoVFwQwzwBfqaJPLoFR4pMoAX", + "status": "active", + "id": "B54Fyr1XrWNA5RsRRkovoVFwQwzwBfqaJPLoFR4pMoAX", + "links": [ + { + "name": "x", + "url": "https://x.com/doge_erc2024" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/department-of-government-efficiency" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/B54Fyr1XrWNA5RsRRkovoVFwQwzwBfqaJPLoFR4pMoAX/logo.png b/blockchains/solana/assets/B54Fyr1XrWNA5RsRRkovoVFwQwzwBfqaJPLoFR4pMoAX/logo.png new file mode 100644 index 0000000000000..7bff62ad4adc9 Binary files /dev/null and b/blockchains/solana/assets/B54Fyr1XrWNA5RsRRkovoVFwQwzwBfqaJPLoFR4pMoAX/logo.png differ diff --git a/blockchains/solana/assets/B5KufqHkskgGYwMXtL8FSHgREAkMQvE3ykhH5Kmondo/info.json b/blockchains/solana/assets/B5KufqHkskgGYwMXtL8FSHgREAkMQvE3ykhH5Kmondo/info.json new file mode 100644 index 0000000000000..7680619066a13 --- /dev/null +++ b/blockchains/solana/assets/B5KufqHkskgGYwMXtL8FSHgREAkMQvE3ykhH5Kmondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Albemarle (Ondo Tokenized)", + "type": "SPL", + "symbol": "ALBon", + "decimals": 9, + "description": "ALBon is the Ondo Tokenized version of Albemarle, giving tokenholders economic exposure similar to holding ALB and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/B5KufqHkskgGYwMXtL8FSHgREAkMQvE3ykhH5Kmondo", + "status": "active", + "id": "B5KufqHkskgGYwMXtL8FSHgREAkMQvE3ykhH5Kmondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/albemarle-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/B5KufqHkskgGYwMXtL8FSHgREAkMQvE3ykhH5Kmondo/logo.png b/blockchains/solana/assets/B5KufqHkskgGYwMXtL8FSHgREAkMQvE3ykhH5Kmondo/logo.png new file mode 100644 index 0000000000000..ffdd61f22496d Binary files /dev/null and b/blockchains/solana/assets/B5KufqHkskgGYwMXtL8FSHgREAkMQvE3ykhH5Kmondo/logo.png differ diff --git a/blockchains/solana/assets/B6WqvLGXdGqpw7qgxeb5EGiRZEYo2apWpQybjYuondo/info.json b/blockchains/solana/assets/B6WqvLGXdGqpw7qgxeb5EGiRZEYo2apWpQybjYuondo/info.json new file mode 100644 index 0000000000000..976c042eac7c0 --- /dev/null +++ b/blockchains/solana/assets/B6WqvLGXdGqpw7qgxeb5EGiRZEYo2apWpQybjYuondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Applied Digital (Ondo Tokenized)", + "type": "SPL", + "symbol": "APLDon", + "decimals": 9, + "description": "APLDon is the Ondo Tokenized version of Applied Digital, giving tokenholders economic exposure similar to holding APLD and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/B6WqvLGXdGqpw7qgxeb5EGiRZEYo2apWpQybjYuondo", + "status": "active", + "id": "B6WqvLGXdGqpw7qgxeb5EGiRZEYo2apWpQybjYuondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/applied-digital-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/B6WqvLGXdGqpw7qgxeb5EGiRZEYo2apWpQybjYuondo/logo.png b/blockchains/solana/assets/B6WqvLGXdGqpw7qgxeb5EGiRZEYo2apWpQybjYuondo/logo.png new file mode 100644 index 0000000000000..0629c140d6db3 Binary files /dev/null and b/blockchains/solana/assets/B6WqvLGXdGqpw7qgxeb5EGiRZEYo2apWpQybjYuondo/logo.png differ diff --git a/blockchains/solana/assets/B6ry9goGNvVbhq7gWHzs3p6emJ1gLaMhu4By9TTondo/info.json b/blockchains/solana/assets/B6ry9goGNvVbhq7gWHzs3p6emJ1gLaMhu4By9TTondo/info.json new file mode 100644 index 0000000000000..596ce9eb44194 --- /dev/null +++ b/blockchains/solana/assets/B6ry9goGNvVbhq7gWHzs3p6emJ1gLaMhu4By9TTondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "AST SpaceMobile (Ondo Tokenized)", + "type": "SPL", + "symbol": "ASTSon", + "decimals": 9, + "description": "ASTSon is the Ondo Tokenized version of AST SpaceMobile, giving tokenholders economic exposure similar to holding ASTS and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/B6ry9goGNvVbhq7gWHzs3p6emJ1gLaMhu4By9TTondo", + "status": "active", + "id": "B6ry9goGNvVbhq7gWHzs3p6emJ1gLaMhu4By9TTondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ast-spacemobile-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/B6ry9goGNvVbhq7gWHzs3p6emJ1gLaMhu4By9TTondo/logo.png b/blockchains/solana/assets/B6ry9goGNvVbhq7gWHzs3p6emJ1gLaMhu4By9TTondo/logo.png new file mode 100644 index 0000000000000..2b29ada3405db Binary files /dev/null and b/blockchains/solana/assets/B6ry9goGNvVbhq7gWHzs3p6emJ1gLaMhu4By9TTondo/logo.png differ diff --git a/blockchains/solana/assets/B7NPUGvxC8BUF5a8BdxurBNxCjV3HwyN6DaRivtqNAjB/info.json b/blockchains/solana/assets/B7NPUGvxC8BUF5a8BdxurBNxCjV3HwyN6DaRivtqNAjB/info.json new file mode 100644 index 0000000000000..66258e91c4cd4 --- /dev/null +++ b/blockchains/solana/assets/B7NPUGvxC8BUF5a8BdxurBNxCjV3HwyN6DaRivtqNAjB/info.json @@ -0,0 +1,26 @@ +{ + "name": "Pi Network AI", + "type": "SOL", + "symbol": "PiAI", + "decimals": 2, + "description": "Pi Network AI ($PiAI) is where bold ambition meets the ultimate crypto satire! Uniting the spectacle of Trump with the audacious nature of meme coins, Pi Network AI aims to capture the imagination of enthusiasts who believe in a world where pop culture, politics, and digital assets collide in spectacular fashion.", + "website": "https://pi-network.club/", + "explorer": "https://solscan.io/token/B7NPUGvxC8BUF5a8BdxurBNxCjV3HwyN6DaRivtqNAjB", + "id": "B7NPUGvxC8BUF5a8BdxurBNxCjV3HwyN6DaRivtqNAjB", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/PiAICTO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pi-network-ai/" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/B7NPUGvxC8BUF5a8BdxurBNxCjV3HwyN6DaRivtqNAjB/logo.png b/blockchains/solana/assets/B7NPUGvxC8BUF5a8BdxurBNxCjV3HwyN6DaRivtqNAjB/logo.png new file mode 100644 index 0000000000000..7760233d05be0 Binary files /dev/null and b/blockchains/solana/assets/B7NPUGvxC8BUF5a8BdxurBNxCjV3HwyN6DaRivtqNAjB/logo.png differ diff --git a/blockchains/solana/assets/BAU83kqEqhyiexfAMQhZZE5KnGogSqh17fJc44Sondo/info.json b/blockchains/solana/assets/BAU83kqEqhyiexfAMQhZZE5KnGogSqh17fJc44Sondo/info.json new file mode 100644 index 0000000000000..72e20d96a318d --- /dev/null +++ b/blockchains/solana/assets/BAU83kqEqhyiexfAMQhZZE5KnGogSqh17fJc44Sondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "US Brent Oil Fund (Ondo Tokenized)", + "type": "SPL", + "symbol": "BNOon", + "decimals": 9, + "description": "BNOon is the Ondo Tokenized version of the US Brent Oil Fund, giving tokenholders economic exposure similar to holding BNO and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/BAU83kqEqhyiexfAMQhZZE5KnGogSqh17fJc44Sondo", + "status": "active", + "id": "BAU83kqEqhyiexfAMQhZZE5KnGogSqh17fJc44Sondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/us-brent-oil-fund-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BAU83kqEqhyiexfAMQhZZE5KnGogSqh17fJc44Sondo/logo.png b/blockchains/solana/assets/BAU83kqEqhyiexfAMQhZZE5KnGogSqh17fJc44Sondo/logo.png new file mode 100644 index 0000000000000..12335ab8ef272 Binary files /dev/null and b/blockchains/solana/assets/BAU83kqEqhyiexfAMQhZZE5KnGogSqh17fJc44Sondo/logo.png differ diff --git a/blockchains/solana/assets/BAg79jj6MqiPtV19aiDSB2HADQcXJ3gjRqUUAFN8TrbH/info.json b/blockchains/solana/assets/BAg79jj6MqiPtV19aiDSB2HADQcXJ3gjRqUUAFN8TrbH/info.json new file mode 100644 index 0000000000000..2ae101acb1928 --- /dev/null +++ b/blockchains/solana/assets/BAg79jj6MqiPtV19aiDSB2HADQcXJ3gjRqUUAFN8TrbH/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE EURC", + "type": "SPL", + "symbol": "FAKE EURC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/BAg79jj6MqiPtV19aiDSB2HADQcXJ3gjRqUUAFN8TrbH", + "explorer": "https://solscan.io/token/BAg79jj6MqiPtV19aiDSB2HADQcXJ3gjRqUUAFN8TrbH", + "status": "spam", + "id": "BAg79jj6MqiPtV19aiDSB2HADQcXJ3gjRqUUAFN8TrbH" +} \ No newline at end of file diff --git a/blockchains/solana/assets/BDW8YHasD3NSDjSHU9Xy6KXtshGayMGQfj5bJpLcpump/info.json b/blockchains/solana/assets/BDW8YHasD3NSDjSHU9Xy6KXtshGayMGQfj5bJpLcpump/info.json new file mode 100644 index 0000000000000..2cc16117a3cfb --- /dev/null +++ b/blockchains/solana/assets/BDW8YHasD3NSDjSHU9Xy6KXtshGayMGQfj5bJpLcpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Hiero Terminal", + "symbol": "HTERM", + "decimals": 6, + "type": "SPL", + "website": "https://hiero.ai/", + "description": "The first multi-chain AI Agent launchpad by @HieroHQ. Deploy once. Run Anywhere.", + "explorer": "https://solscan.io/token/BDW8YHasD3NSDjSHU9Xy6KXtshGayMGQfj5bJpLcpump", + "status": "active", + "id": "BDW8YHasD3NSDjSHU9Xy6KXtshGayMGQfj5bJpLcpump", + "links": [ + { + "name": "x", + "url": "https://x.com/HieroTerminal" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hiero-terminal/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BDW8YHasD3NSDjSHU9Xy6KXtshGayMGQfj5bJpLcpump/logo.png b/blockchains/solana/assets/BDW8YHasD3NSDjSHU9Xy6KXtshGayMGQfj5bJpLcpump/logo.png new file mode 100644 index 0000000000000..71fcd83243948 Binary files /dev/null and b/blockchains/solana/assets/BDW8YHasD3NSDjSHU9Xy6KXtshGayMGQfj5bJpLcpump/logo.png differ diff --git a/blockchains/solana/assets/BEP6KhDwv7K211JtZnszNcztHBffSCgRjUuNhucopump/info.json b/blockchains/solana/assets/BEP6KhDwv7K211JtZnszNcztHBffSCgRjUuNhucopump/info.json new file mode 100644 index 0000000000000..7b11876eb123a --- /dev/null +++ b/blockchains/solana/assets/BEP6KhDwv7K211JtZnszNcztHBffSCgRjUuNhucopump/info.json @@ -0,0 +1,21 @@ +{ + "name": "aether collective", + "symbol": "aether", + "type": "SPL", + "decimals": 6, + "description": "Aether Framework is a modular, decentralized AI framework designed to empower autonomous agents with advanced capabilities such as reinforcement learning, swarm intelligence, multi-modal processing, blockchain interaction, and democratic decision-making.", + "website": "https://aether-framework.gitbook.io/aetherframework", + "explorer": "https://solscan.io/token/BEP6KhDwv7K211JtZnszNcztHBffSCgRjUuNhucopump", + "status": "active", + "id": "BEP6KhDwv7K211JtZnszNcztHBffSCgRjUuNhucopump", + "links": [ + { + "name": "x", + "url": "https://x.com/aetherdotfun" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/aether-collective" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BEP6KhDwv7K211JtZnszNcztHBffSCgRjUuNhucopump/logo.png b/blockchains/solana/assets/BEP6KhDwv7K211JtZnszNcztHBffSCgRjUuNhucopump/logo.png new file mode 100644 index 0000000000000..6524f11b5b58a Binary files /dev/null and b/blockchains/solana/assets/BEP6KhDwv7K211JtZnszNcztHBffSCgRjUuNhucopump/logo.png differ diff --git a/blockchains/solana/assets/BEPUNMFn6MB3SkFSYwMVoNSGVxMjnk6ifAbYbGCNvfp2/info.json b/blockchains/solana/assets/BEPUNMFn6MB3SkFSYwMVoNSGVxMjnk6ifAbYbGCNvfp2/info.json new file mode 100644 index 0000000000000..ef027f2493297 --- /dev/null +++ b/blockchains/solana/assets/BEPUNMFn6MB3SkFSYwMVoNSGVxMjnk6ifAbYbGCNvfp2/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE EURC", + "type": "SPL", + "symbol": "FAKE EURC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/BEPUNMFn6MB3SkFSYwMVoNSGVxMjnk6ifAbYbGCNvfp2", + "explorer": "https://solscan.io/token/BEPUNMFn6MB3SkFSYwMVoNSGVxMjnk6ifAbYbGCNvfp2", + "status": "spam", + "id": "BEPUNMFn6MB3SkFSYwMVoNSGVxMjnk6ifAbYbGCNvfp2" +} \ No newline at end of file diff --git a/blockchains/solana/assets/BEgBsVSKJSxreiCE1XmWWq8arnwit7xDqQXSWYgay9xP/info.json b/blockchains/solana/assets/BEgBsVSKJSxreiCE1XmWWq8arnwit7xDqQXSWYgay9xP/info.json new file mode 100644 index 0000000000000..42748a3aa5baa --- /dev/null +++ b/blockchains/solana/assets/BEgBsVSKJSxreiCE1XmWWq8arnwit7xDqQXSWYgay9xP/info.json @@ -0,0 +1,29 @@ +{ + "name": "WOMAN YELLING AT CAT", + "type": "SPL", + "symbol": "WYAC", + "decimals": 6, + "description": "On May 1, 2019, the Woman Yelling at Cat meme was born when Twitter user @MISSINGEGIRL paired together two images. The image on the left was taken from the ;Malibu Beach Party from Hell' episode of The Real Housewives of Beverly Hills, featuring Taylor Armstrong yelling and being held back by Kyle Richards.", + "website": "https://www.wyaccoin.com/", + "explorer": "https://solscan.io/token/BEgBsVSKJSxreiCE1XmWWq8arnwit7xDqQXSWYgay9xP", + "id": "BEgBsVSKJSxreiCE1XmWWq8arnwit7xDqQXSWYgay9xP", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/WYACSolana" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/woman-yelling-at-cat/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/woman-yelling-at-cat" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/BEgBsVSKJSxreiCE1XmWWq8arnwit7xDqQXSWYgay9xP/logo.png b/blockchains/solana/assets/BEgBsVSKJSxreiCE1XmWWq8arnwit7xDqQXSWYgay9xP/logo.png new file mode 100644 index 0000000000000..569d6e4135055 Binary files /dev/null and b/blockchains/solana/assets/BEgBsVSKJSxreiCE1XmWWq8arnwit7xDqQXSWYgay9xP/logo.png differ diff --git a/blockchains/solana/assets/BGehTcKraAndWS3B6cq7UVUXQy4uDY49tANEprsTrUo7/info.json b/blockchains/solana/assets/BGehTcKraAndWS3B6cq7UVUXQy4uDY49tANEprsTrUo7/info.json new file mode 100644 index 0000000000000..20c87957ced7f --- /dev/null +++ b/blockchains/solana/assets/BGehTcKraAndWS3B6cq7UVUXQy4uDY49tANEprsTrUo7/info.json @@ -0,0 +1,17 @@ +{ + "name": "BookOfBullrun", + "website": "https://bookofbullrun.meme/lander", + "description": "BOOK OF BULLRUN THE MASTERPLAN ABOUT THE BIGGEST BULLRUN", + "explorer": "https://solscan.io/token/BGehTcKraAndWS3B6cq7UVUXQy4uDY49tANEprsTrUo7", + "type": "SPL", + "symbol": "BOOB", + "decimals": 6, + "status": "active", + "id": "BGehTcKraAndWS3B6cq7UVUXQy4uDY49tANEprsTrUo7", + "links": [ + { + "name": "x", + "url": "https://x.com/BookOfBullrunx" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BGehTcKraAndWS3B6cq7UVUXQy4uDY49tANEprsTrUo7/logo.png b/blockchains/solana/assets/BGehTcKraAndWS3B6cq7UVUXQy4uDY49tANEprsTrUo7/logo.png new file mode 100644 index 0000000000000..ffe32399d1948 Binary files /dev/null and b/blockchains/solana/assets/BGehTcKraAndWS3B6cq7UVUXQy4uDY49tANEprsTrUo7/logo.png differ diff --git a/blockchains/solana/assets/BGtpF37rrubQoE5NnWU74KQmDf2ZvNAnafVkgxKaeGRX/info.json b/blockchains/solana/assets/BGtpF37rrubQoE5NnWU74KQmDf2ZvNAnafVkgxKaeGRX/info.json new file mode 100644 index 0000000000000..c04a447f06330 --- /dev/null +++ b/blockchains/solana/assets/BGtpF37rrubQoE5NnWU74KQmDf2ZvNAnafVkgxKaeGRX/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Τеtһеr", + "type": "SPL", + "symbol": "FAKE ՍЅⅮΤ", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/BGtpF37rrubQoE5NnWU74KQmDf2ZvNAnafVkgxKaeGRX", + "explorer": "https://solscan.io/token/BGtpF37rrubQoE5NnWU74KQmDf2ZvNAnafVkgxKaeGRX", + "status": "spam", + "id": "BGtpF37rrubQoE5NnWU74KQmDf2ZvNAnafVkgxKaeGRX" +} \ No newline at end of file diff --git a/blockchains/solana/assets/BJB5tHWAHboMAwti5AHbCNX17F3jL8ehkh4zuTUx99Zn/info.json b/blockchains/solana/assets/BJB5tHWAHboMAwti5AHbCNX17F3jL8ehkh4zuTUx99Zn/info.json new file mode 100644 index 0000000000000..7ed7e8cc72f4d --- /dev/null +++ b/blockchains/solana/assets/BJB5tHWAHboMAwti5AHbCNX17F3jL8ehkh4zuTUx99Zn/info.json @@ -0,0 +1,21 @@ +{ + "name": "shork", + "website": "https://www.shorkcoin.xyz/", + "description": "just a lil shork", + "explorer": "https://solscan.io/token/BJB5tHWAHboMAwti5AHbCNX17F3jL8ehkh4zuTUx99Zn", + "type": "SPL", + "symbol": "shork", + "decimals": 6, + "status": "active", + "id": "BJB5tHWAHboMAwti5AHbCNX17F3jL8ehkh4zuTUx99Zn", + "links": [ + { + "name": "x", + "url": "https://x.com/shork_coin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shork/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BJB5tHWAHboMAwti5AHbCNX17F3jL8ehkh4zuTUx99Zn/logo.png b/blockchains/solana/assets/BJB5tHWAHboMAwti5AHbCNX17F3jL8ehkh4zuTUx99Zn/logo.png new file mode 100644 index 0000000000000..c140d0f98b5ee Binary files /dev/null and b/blockchains/solana/assets/BJB5tHWAHboMAwti5AHbCNX17F3jL8ehkh4zuTUx99Zn/logo.png differ diff --git a/blockchains/solana/assets/BJhPr9SM7uZTZXHeSLYmUk7CjGQq1esFkVxPF5tondo/info.json b/blockchains/solana/assets/BJhPr9SM7uZTZXHeSLYmUk7CjGQq1esFkVxPF5tondo/info.json new file mode 100644 index 0000000000000..88c7251aac201 --- /dev/null +++ b/blockchains/solana/assets/BJhPr9SM7uZTZXHeSLYmUk7CjGQq1esFkVxPF5tondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Fidelity Solana Fund (Ondo Tokenized)", + "type": "SPL", + "symbol": "FSOLon", + "decimals": 9, + "description": "FSOLon is the Ondo Tokenized version of the Fidelity Solana Fund, giving tokenholders economic exposure similar to holding FSOL and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/BJhPr9SM7uZTZXHeSLYmUk7CjGQq1esFkVxPF5tondo", + "status": "active", + "id": "BJhPr9SM7uZTZXHeSLYmUk7CjGQq1esFkVxPF5tondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/fidelity-solana-fund-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BJhPr9SM7uZTZXHeSLYmUk7CjGQq1esFkVxPF5tondo/logo.png b/blockchains/solana/assets/BJhPr9SM7uZTZXHeSLYmUk7CjGQq1esFkVxPF5tondo/logo.png new file mode 100644 index 0000000000000..acfd22e816da7 Binary files /dev/null and b/blockchains/solana/assets/BJhPr9SM7uZTZXHeSLYmUk7CjGQq1esFkVxPF5tondo/logo.png differ diff --git a/blockchains/solana/assets/BKipkearSqAUdNKa1WDstvcMjoPsSKBuNyvKDQDDu9WE/info.json b/blockchains/solana/assets/BKipkearSqAUdNKa1WDstvcMjoPsSKBuNyvKDQDDu9WE/info.json new file mode 100644 index 0000000000000..454bb17d9dbd8 --- /dev/null +++ b/blockchains/solana/assets/BKipkearSqAUdNKa1WDstvcMjoPsSKBuNyvKDQDDu9WE/info.json @@ -0,0 +1,21 @@ +{ + "name": "Hawksight", + "symbol": "HAWK", + "type": "SPL", + "decimals": 6, + "description": "Hawksight is a DeFi super-app for Everyone.", + "website": "https://www.hawkfi.ag/", + "explorer": "https://solscan.io/token/BKipkearSqAUdNKa1WDstvcMjoPsSKBuNyvKDQDDu9WE", + "status": "active", + "id": "BKipkearSqAUdNKa1WDstvcMjoPsSKBuNyvKDQDDu9WE", + "links": [ + { + "name": "x", + "url": "https://x.com/hawksightco" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hawksight" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BKipkearSqAUdNKa1WDstvcMjoPsSKBuNyvKDQDDu9WE/logo.png b/blockchains/solana/assets/BKipkearSqAUdNKa1WDstvcMjoPsSKBuNyvKDQDDu9WE/logo.png new file mode 100644 index 0000000000000..b3447252e7f44 Binary files /dev/null and b/blockchains/solana/assets/BKipkearSqAUdNKa1WDstvcMjoPsSKBuNyvKDQDDu9WE/logo.png differ diff --git a/blockchains/solana/assets/BLDiYcvm3CLcgZ7XUBPgz6idSAkNmWY6MBbm8Xpjpump/info.json b/blockchains/solana/assets/BLDiYcvm3CLcgZ7XUBPgz6idSAkNmWY6MBbm8Xpjpump/info.json new file mode 100644 index 0000000000000..4c03175f57df3 --- /dev/null +++ b/blockchains/solana/assets/BLDiYcvm3CLcgZ7XUBPgz6idSAkNmWY6MBbm8Xpjpump/info.json @@ -0,0 +1,14 @@ +{ + "name": "TRI SIGMA", + "type": "SPL", + "symbol": "TRISIG", + "decimals": 6, + "website": "https://trisigma.ai/", + "description": "Based AI quant living where probability fears to quantify. Making TradFi cry since 2024.", + "explorer": "https://explorer.solana.com/address/BLDiYcvm3CLcgZ7XUBPgz6idSAkNmWY6MBbm8Xpjpump", + "status": "active", + "id": "BLDiYcvm3CLcgZ7XUBPgz6idSAkNmWY6MBbm8Xpjpump", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BLDiYcvm3CLcgZ7XUBPgz6idSAkNmWY6MBbm8Xpjpump/logo.png b/blockchains/solana/assets/BLDiYcvm3CLcgZ7XUBPgz6idSAkNmWY6MBbm8Xpjpump/logo.png new file mode 100644 index 0000000000000..b75dcb0c671e3 Binary files /dev/null and b/blockchains/solana/assets/BLDiYcvm3CLcgZ7XUBPgz6idSAkNmWY6MBbm8Xpjpump/logo.png differ diff --git a/blockchains/solana/assets/BMQZzVJa1X5cBYc8fCRVbWuFC4czA1s5GE3HekWfuhjz/info.json b/blockchains/solana/assets/BMQZzVJa1X5cBYc8fCRVbWuFC4czA1s5GE3HekWfuhjz/info.json new file mode 100644 index 0000000000000..6dd124a2a3c68 --- /dev/null +++ b/blockchains/solana/assets/BMQZzVJa1X5cBYc8fCRVbWuFC4czA1s5GE3HekWfuhjz/info.json @@ -0,0 +1,17 @@ +{ + "name": "burek obema", + "type": "SPL", + "symbol": "obema", + "decimals": 6, + "website": "https://burekobemaonsol.com/", + "description": "meke merica bleck agin", + "explorer": "https://solscan.io/token/BMQZzVJa1X5cBYc8fCRVbWuFC4czA1s5GE3HekWfuhjz", + "status": "active", + "id": "BMQZzVJa1X5cBYc8fCRVbWuFC4czA1s5GE3HekWfuhjz", + "links": [ + { + "name": "x", + "url": "https://x.com/BurekObemaSOL" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BMQZzVJa1X5cBYc8fCRVbWuFC4czA1s5GE3HekWfuhjz/logo.png b/blockchains/solana/assets/BMQZzVJa1X5cBYc8fCRVbWuFC4czA1s5GE3HekWfuhjz/logo.png new file mode 100644 index 0000000000000..44689741fd2b9 Binary files /dev/null and b/blockchains/solana/assets/BMQZzVJa1X5cBYc8fCRVbWuFC4czA1s5GE3HekWfuhjz/logo.png differ diff --git a/blockchains/solana/assets/BP8RUdhLKBL2vgVXc3n7oTSZKWaQVbD8S6QcPaMVBAPo/info.json b/blockchains/solana/assets/BP8RUdhLKBL2vgVXc3n7oTSZKWaQVbD8S6QcPaMVBAPo/info.json new file mode 100644 index 0000000000000..ed21f27bed7be --- /dev/null +++ b/blockchains/solana/assets/BP8RUdhLKBL2vgVXc3n7oTSZKWaQVbD8S6QcPaMVBAPo/info.json @@ -0,0 +1,17 @@ +{ + "name": "FAFO", + "symbol": "FAFO", + "type": "SPL", + "decimals": 6, + "description": "The Official $FAFO coin", + "website": "https://officialfafo.com", + "explorer": "https://solscan.io/token/BP8RUdhLKBL2vgVXc3n7oTSZKWaQVbD8S6QcPaMVBAPo", + "status": "active", + "id": "BP8RUdhLKBL2vgVXc3n7oTSZKWaQVbD8S6QcPaMVBAPo", + "links": [ + { + "name": "telegram", + "url": "https://t.me/FAFOCOIN_PORTAL" + } + ] +} diff --git a/blockchains/solana/assets/BP8RUdhLKBL2vgVXc3n7oTSZKWaQVbD8S6QcPaMVBAPo/logo.png b/blockchains/solana/assets/BP8RUdhLKBL2vgVXc3n7oTSZKWaQVbD8S6QcPaMVBAPo/logo.png new file mode 100644 index 0000000000000..3971555f0316c Binary files /dev/null and b/blockchains/solana/assets/BP8RUdhLKBL2vgVXc3n7oTSZKWaQVbD8S6QcPaMVBAPo/logo.png differ diff --git a/blockchains/solana/assets/BQcdHdAQW1hczDbBi9hiegXAR7A98Q9jx3X3iBBBDiq4/info.json b/blockchains/solana/assets/BQcdHdAQW1hczDbBi9hiegXAR7A98Q9jx3X3iBBBDiq4/info.json index 3b8a098f173c1..e8a9d076137b8 100644 --- a/blockchains/solana/assets/BQcdHdAQW1hczDbBi9hiegXAR7A98Q9jx3X3iBBBDiq4/info.json +++ b/blockchains/solana/assets/BQcdHdAQW1hczDbBi9hiegXAR7A98Q9jx3X3iBBBDiq4/info.json @@ -1,6 +1,6 @@ { "name": "Wrapped USDT", - "symbol": "USDT", + "symbol": "wUSDT", "type": "SPL", "decimals": 6, "description": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar.", @@ -14,8 +14,8 @@ "url": "https://t.me/stakingfacilities" }, { - "name": "twitter", - "url": "https://twitter.com/solanabeach_io" + "name": "x", + "url": "https://x.com/solanabeach_io" }, { "name": "github", diff --git a/blockchains/solana/assets/BS8zoc6pmALQnBhBDFak6eFhgGHjpebnHzsxApgondo/info.json b/blockchains/solana/assets/BS8zoc6pmALQnBhBDFak6eFhgGHjpebnHzsxApgondo/info.json new file mode 100644 index 0000000000000..909e36364ec61 --- /dev/null +++ b/blockchains/solana/assets/BS8zoc6pmALQnBhBDFak6eFhgGHjpebnHzsxApgondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Capricor Therapeutics (Ondo Tokenized)", + "type": "SPL", + "symbol": "CAPRon", + "decimals": 9, + "description": "CAPRon is the Ondo Tokenized version of Capricor Therapeutics, giving tokenholders economic exposure similar to holding CAPR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/BS8zoc6pmALQnBhBDFak6eFhgGHjpebnHzsxApgondo", + "status": "active", + "id": "BS8zoc6pmALQnBhBDFak6eFhgGHjpebnHzsxApgondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/capricor-therapeutics-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BS8zoc6pmALQnBhBDFak6eFhgGHjpebnHzsxApgondo/logo.png b/blockchains/solana/assets/BS8zoc6pmALQnBhBDFak6eFhgGHjpebnHzsxApgondo/logo.png new file mode 100644 index 0000000000000..6678ea0d457ae Binary files /dev/null and b/blockchains/solana/assets/BS8zoc6pmALQnBhBDFak6eFhgGHjpebnHzsxApgondo/logo.png differ diff --git a/blockchains/solana/assets/BTMWiEe6yFd86rvLL4NfwmHbWTbVhuqSbmX2Nq2duvnp/info.json b/blockchains/solana/assets/BTMWiEe6yFd86rvLL4NfwmHbWTbVhuqSbmX2Nq2duvnp/info.json new file mode 100644 index 0000000000000..e25b4c0ad87ef --- /dev/null +++ b/blockchains/solana/assets/BTMWiEe6yFd86rvLL4NfwmHbWTbVhuqSbmX2Nq2duvnp/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM United Stablecoin Donald Trump", + "type": "SPL", + "symbol": "SCAM $USDT", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/BTMWiEe6yFd86rvLL4NfwmHbWTbVhuqSbmX2Nq2duvnp", + "explorer": "https://solscan.io/token/BTMWiEe6yFd86rvLL4NfwmHbWTbVhuqSbmX2Nq2duvnp", + "status": "spam", + "id": "BTMWiEe6yFd86rvLL4NfwmHbWTbVhuqSbmX2Nq2duvnp" +} \ No newline at end of file diff --git a/blockchains/solana/assets/BTWvZsjwgnGT7qSM3AAXxjZohCLsMHpdAhaiQMJbBvcF/info.json b/blockchains/solana/assets/BTWvZsjwgnGT7qSM3AAXxjZohCLsMHpdAhaiQMJbBvcF/info.json new file mode 100644 index 0000000000000..9333d86187cb7 --- /dev/null +++ b/blockchains/solana/assets/BTWvZsjwgnGT7qSM3AAXxjZohCLsMHpdAhaiQMJbBvcF/info.json @@ -0,0 +1,21 @@ +{ + "name": "HULVIN", + "website": "https://www.bomeow.com", + "description": "Introducing the Book of Meow ($BOMEOW), a Solana-based meme token that is the purr-fect variation of different mews across the entire meow-niverse.", + "explorer": "https://solscan.io/token/BTWvZsjwgnGT7qSM3AAXxjZohCLsMHpdAhaiQMJbBvcF", + "type": "SPL", + "symbol": "HULVIN", + "decimals": 9, + "status": "active", + "id": "BTWvZsjwgnGT7qSM3AAXxjZohCLsMHpdAhaiQMJbBvcF", + "links": [ + { + "name": "x", + "url": "https://x.com/hulvinsol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hulvin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BTWvZsjwgnGT7qSM3AAXxjZohCLsMHpdAhaiQMJbBvcF/logo.png b/blockchains/solana/assets/BTWvZsjwgnGT7qSM3AAXxjZohCLsMHpdAhaiQMJbBvcF/logo.png new file mode 100644 index 0000000000000..3fc2bc8314625 Binary files /dev/null and b/blockchains/solana/assets/BTWvZsjwgnGT7qSM3AAXxjZohCLsMHpdAhaiQMJbBvcF/logo.png differ diff --git a/blockchains/solana/assets/BU7zw2GvabhqGnrqMMH1m2KabafehanDmtnrCSZipump/info.json b/blockchains/solana/assets/BU7zw2GvabhqGnrqMMH1m2KabafehanDmtnrCSZipump/info.json new file mode 100644 index 0000000000000..ac090b726997d --- /dev/null +++ b/blockchains/solana/assets/BU7zw2GvabhqGnrqMMH1m2KabafehanDmtnrCSZipump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Lil Bub", + "symbol": "BUB", + "type": "SPL", + "decimals": 6, + "description": "Lil Bub, was an American celebrity cat known for her unique physical appearance. Her photos were first posted to Tumblr in November 2011, before taking off after being featured on the social news website Reddit. Lil Bub on Facebook has over three million likes.", + "website": "https://bubcoin.community/", + "explorer": "https://solscan.io/token/BU7zw2GvabhqGnrqMMH1m2KabafehanDmtnrCSZipump", + "status": "active", + "id": "BU7zw2GvabhqGnrqMMH1m2KabafehanDmtnrCSZipump", + "links": [ + { + "name": "x", + "url": "https://x.com/jenhsunhuangsol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jen-hsun-huang" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BU7zw2GvabhqGnrqMMH1m2KabafehanDmtnrCSZipump/logo.png b/blockchains/solana/assets/BU7zw2GvabhqGnrqMMH1m2KabafehanDmtnrCSZipump/logo.png new file mode 100644 index 0000000000000..14da80d70f77d Binary files /dev/null and b/blockchains/solana/assets/BU7zw2GvabhqGnrqMMH1m2KabafehanDmtnrCSZipump/logo.png differ diff --git a/blockchains/solana/assets/BUhS5coXEt9hcxN3JSpGYUWSKbNo96RsKu52LcMo12rf/info.json b/blockchains/solana/assets/BUhS5coXEt9hcxN3JSpGYUWSKbNo96RsKu52LcMo12rf/info.json new file mode 100644 index 0000000000000..6f2df590a49f7 --- /dev/null +++ b/blockchains/solana/assets/BUhS5coXEt9hcxN3JSpGYUWSKbNo96RsKu52LcMo12rf/info.json @@ -0,0 +1,29 @@ +{ + "name": "Meow", + "type": "SPL", + "symbol": "meow", + "decimals": 8, + "description": "$MEOW is a blockchain-driven cryptocurrency project designed to revolutionize animal welfare initiatives. By leveraging community support, innovative DeFi solutions, and transparent governance, $MEOW enables meaningful contributions to animal shelters and rescues while creating value for its holders.", + "website": "https://meowfi.io/home", + "explorer": "https://solscan.io/token/BUhS5coXEt9hcxN3JSpGYUWSKbNo96RsKu52LcMo12rf", + "id": "BUhS5coXEt9hcxN3JSpGYUWSKbNo96RsKu52LcMo12rf", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/meowmeowcatclub" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/meowfi/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/meow-2" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/BUhS5coXEt9hcxN3JSpGYUWSKbNo96RsKu52LcMo12rf/logo.png b/blockchains/solana/assets/BUhS5coXEt9hcxN3JSpGYUWSKbNo96RsKu52LcMo12rf/logo.png new file mode 100644 index 0000000000000..a3ce4275b8247 Binary files /dev/null and b/blockchains/solana/assets/BUhS5coXEt9hcxN3JSpGYUWSKbNo96RsKu52LcMo12rf/logo.png differ diff --git a/blockchains/solana/assets/BVG3BJH4ghUPJT9mCi7JbziNwx3dqRTzgo9x5poGpump/info.json b/blockchains/solana/assets/BVG3BJH4ghUPJT9mCi7JbziNwx3dqRTzgo9x5poGpump/info.json new file mode 100644 index 0000000000000..8c38e0c729084 --- /dev/null +++ b/blockchains/solana/assets/BVG3BJH4ghUPJT9mCi7JbziNwx3dqRTzgo9x5poGpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "rocky", + "symbol": "rocky", + "type": "SPL", + "decimals": 6, + "description": "$ROCKY is the cutest most loyal rock I have ever had. He is always by my side and will never die.", + "website": "https://www.rockytherock.lol/", + "explorer": "https://solscan.io/token/BVG3BJH4ghUPJT9mCi7JbziNwx3dqRTzgo9x5poGpump", + "status": "active", + "id": "BVG3BJH4ghUPJT9mCi7JbziNwx3dqRTzgo9x5poGpump", + "links": [ + { + "name": "x", + "url": "https://x.com/RockySolanaCoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rockytherock" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BVG3BJH4ghUPJT9mCi7JbziNwx3dqRTzgo9x5poGpump/logo.png b/blockchains/solana/assets/BVG3BJH4ghUPJT9mCi7JbziNwx3dqRTzgo9x5poGpump/logo.png new file mode 100644 index 0000000000000..c9ec2ed0b7223 Binary files /dev/null and b/blockchains/solana/assets/BVG3BJH4ghUPJT9mCi7JbziNwx3dqRTzgo9x5poGpump/logo.png differ diff --git a/blockchains/solana/assets/BVdL3WUxtxUD4vXRWwqChJLbGxvfzZjBGPp63Wtondo/info.json b/blockchains/solana/assets/BVdL3WUxtxUD4vXRWwqChJLbGxvfzZjBGPp63Wtondo/info.json new file mode 100644 index 0000000000000..132e84b781d07 --- /dev/null +++ b/blockchains/solana/assets/BVdL3WUxtxUD4vXRWwqChJLbGxvfzZjBGPp63Wtondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "First Trust NASDAQ Cybersecurity ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "CIBRon", + "decimals": 9, + "description": "CIBRon is the Ondo Tokenized version of the First Trust NASDAQ Cybersecurity ETF, giving tokenholders economic exposure similar to holding CIBR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/BVdL3WUxtxUD4vXRWwqChJLbGxvfzZjBGPp63Wtondo", + "status": "active", + "id": "BVdL3WUxtxUD4vXRWwqChJLbGxvfzZjBGPp63Wtondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/first-trust-nasdaq-cybersecurity-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BVdL3WUxtxUD4vXRWwqChJLbGxvfzZjBGPp63Wtondo/logo.png b/blockchains/solana/assets/BVdL3WUxtxUD4vXRWwqChJLbGxvfzZjBGPp63Wtondo/logo.png new file mode 100644 index 0000000000000..136dac3e5c4b9 Binary files /dev/null and b/blockchains/solana/assets/BVdL3WUxtxUD4vXRWwqChJLbGxvfzZjBGPp63Wtondo/logo.png differ diff --git a/blockchains/solana/assets/BWxe2FVciUbwrCUZQPUKiREBh5LmVa5AiUqNLAkondo/info.json b/blockchains/solana/assets/BWxe2FVciUbwrCUZQPUKiREBh5LmVa5AiUqNLAkondo/info.json new file mode 100644 index 0000000000000..8e2fd491c5ca3 --- /dev/null +++ b/blockchains/solana/assets/BWxe2FVciUbwrCUZQPUKiREBh5LmVa5AiUqNLAkondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Block (Ondo Tokenized)", + "type": "SPL", + "symbol": "XYZon", + "decimals": 9, + "description": "XYZon is the Ondo Tokenized version of Block, giving tokenholders economic exposure similar to holding XYZ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/BWxe2FVciUbwrCUZQPUKiREBh5LmVa5AiUqNLAkondo", + "status": "active", + "id": "BWxe2FVciUbwrCUZQPUKiREBh5LmVa5AiUqNLAkondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/block-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/block-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BWxe2FVciUbwrCUZQPUKiREBh5LmVa5AiUqNLAkondo/logo.png b/blockchains/solana/assets/BWxe2FVciUbwrCUZQPUKiREBh5LmVa5AiUqNLAkondo/logo.png new file mode 100644 index 0000000000000..69f7bedf9b26d Binary files /dev/null and b/blockchains/solana/assets/BWxe2FVciUbwrCUZQPUKiREBh5LmVa5AiUqNLAkondo/logo.png differ diff --git a/blockchains/solana/assets/BXMkru8ded26p71gJ3AMMwJmwZaYYfQjRo8vbZzondo/info.json b/blockchains/solana/assets/BXMkru8ded26p71gJ3AMMwJmwZaYYfQjRo8vbZzondo/info.json new file mode 100644 index 0000000000000..4872ebdbcaa11 --- /dev/null +++ b/blockchains/solana/assets/BXMkru8ded26p71gJ3AMMwJmwZaYYfQjRo8vbZzondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Coherent (Ondo Tokenized)", + "type": "SPL", + "symbol": "COHRon", + "decimals": 9, + "description": "COHRon is the Ondo Tokenized version of Coherent, giving tokenholders economic exposure similar to holding COHR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/BXMkru8ded26p71gJ3AMMwJmwZaYYfQjRo8vbZzondo", + "status": "active", + "id": "BXMkru8ded26p71gJ3AMMwJmwZaYYfQjRo8vbZzondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/coherent-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BXMkru8ded26p71gJ3AMMwJmwZaYYfQjRo8vbZzondo/logo.png b/blockchains/solana/assets/BXMkru8ded26p71gJ3AMMwJmwZaYYfQjRo8vbZzondo/logo.png new file mode 100644 index 0000000000000..c890935b1e98c Binary files /dev/null and b/blockchains/solana/assets/BXMkru8ded26p71gJ3AMMwJmwZaYYfQjRo8vbZzondo/logo.png differ diff --git a/blockchains/solana/assets/BXZX2JRJFjvKazM1ibeDFxgAngKExb74MRXzXKvgikxX/info.json b/blockchains/solana/assets/BXZX2JRJFjvKazM1ibeDFxgAngKExb74MRXzXKvgikxX/info.json index 9e54920d13762..ee1f26f2701ad 100644 --- a/blockchains/solana/assets/BXZX2JRJFjvKazM1ibeDFxgAngKExb74MRXzXKvgikxX/info.json +++ b/blockchains/solana/assets/BXZX2JRJFjvKazM1ibeDFxgAngKExb74MRXzXKvgikxX/info.json @@ -1,5 +1,5 @@ { - "name": "yearn.finance (Portal)", + "name": "Yearn (Portal)", "type": "SPL", "symbol": "YFI", "decimals": 8, diff --git a/blockchains/solana/assets/BYZ9CcZGKAXmN2uDsKcQMM9UnZacija4vWcns9Th69xb/info.json b/blockchains/solana/assets/BYZ9CcZGKAXmN2uDsKcQMM9UnZacija4vWcns9Th69xb/info.json new file mode 100644 index 0000000000000..1cc3426bb181b --- /dev/null +++ b/blockchains/solana/assets/BYZ9CcZGKAXmN2uDsKcQMM9UnZacija4vWcns9Th69xb/info.json @@ -0,0 +1,21 @@ +{ + "name": "BOTIFY", + "symbol": "BOTIFY", + "type": "SPL", + "decimals": 6, + "description": "Botify.cloud is the Shopify of Crypto, featuring a Marketplace and an AI Agent & Bot Creation Hub.", + "website": "https://www.botify.cloud/", + "explorer": "https://solscan.io/token/BYZ9CcZGKAXmN2uDsKcQMM9UnZacija4vWcns9Th69xb", + "status": "active", + "id": "BYZ9CcZGKAXmN2uDsKcQMM9UnZacija4vWcns9Th69xb", + "links": [ + { + "name": "x", + "url": "https://x.com/botifydotcloud" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/botify/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BYZ9CcZGKAXmN2uDsKcQMM9UnZacija4vWcns9Th69xb/logo.png b/blockchains/solana/assets/BYZ9CcZGKAXmN2uDsKcQMM9UnZacija4vWcns9Th69xb/logo.png new file mode 100644 index 0000000000000..2024fc346e037 Binary files /dev/null and b/blockchains/solana/assets/BYZ9CcZGKAXmN2uDsKcQMM9UnZacija4vWcns9Th69xb/logo.png differ diff --git a/blockchains/solana/assets/BZLbGTNCSFfoth2GYDtwr7e4imWzpR5jqcUuGEwr646K/info.json b/blockchains/solana/assets/BZLbGTNCSFfoth2GYDtwr7e4imWzpR5jqcUuGEwr646K/info.json new file mode 100644 index 0000000000000..560716665ec51 --- /dev/null +++ b/blockchains/solana/assets/BZLbGTNCSFfoth2GYDtwr7e4imWzpR5jqcUuGEwr646K/info.json @@ -0,0 +1,25 @@ +{ + "name": "IO", + "type": "SPL", + "symbol": "IO", + "decimals": 8, + "website": "https://io.net/", + "description": "io.net the world’s largest decentralized AI computing network that allows machine learning engineers to access scalable distributed clusters at a small fraction of the cost of comparable centralized services.", + "explorer": "https://solscan.io/token/BZLbGTNCSFfoth2GYDtwr7e4imWzpR5jqcUuGEwr646K", + "status": "active", + "id": "BZLbGTNCSFfoth2GYDtwr7e4imWzpR5jqcUuGEwr646K", + "links": [ + { + "name": "x", + "url": "https://x.com/ionet" + }, + { + "name": "telegram", + "url": "https://t.me/io_net" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/io-net/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BZLbGTNCSFfoth2GYDtwr7e4imWzpR5jqcUuGEwr646K/logo.png b/blockchains/solana/assets/BZLbGTNCSFfoth2GYDtwr7e4imWzpR5jqcUuGEwr646K/logo.png new file mode 100644 index 0000000000000..4d3165aa78e40 Binary files /dev/null and b/blockchains/solana/assets/BZLbGTNCSFfoth2GYDtwr7e4imWzpR5jqcUuGEwr646K/logo.png differ diff --git a/blockchains/solana/assets/BavuJ8bntC79A8aHTxQi1EUhcCnqvEU8KSBE4sVCAaHc/info.json b/blockchains/solana/assets/BavuJ8bntC79A8aHTxQi1EUhcCnqvEU8KSBE4sVCAaHc/info.json new file mode 100644 index 0000000000000..40c575d9aea74 --- /dev/null +++ b/blockchains/solana/assets/BavuJ8bntC79A8aHTxQi1EUhcCnqvEU8KSBE4sVCAaHc/info.json @@ -0,0 +1,21 @@ +{ + "name": "Doug The Duck", + "symbol": "DOUG", + "type": "SPL", + "decimals": 6, + "description": "Doug the duck, a meme coin on Solana, is making his mark by transitioning from a pond reject to a wrestling sensation.", + "website": "https://dougtheduck.com/", + "explorer": "https://solscan.io/token/BavuJ8bntC79A8aHTxQi1EUhcCnqvEU8KSBE4sVCAaHc", + "status": "active", + "id": "BavuJ8bntC79A8aHTxQi1EUhcCnqvEU8KSBE4sVCAaHc", + "links": [ + { + "name": "x", + "url": "https://x.com/DougDuckSol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/doug-the-duck" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BavuJ8bntC79A8aHTxQi1EUhcCnqvEU8KSBE4sVCAaHc/logo.png b/blockchains/solana/assets/BavuJ8bntC79A8aHTxQi1EUhcCnqvEU8KSBE4sVCAaHc/logo.png new file mode 100644 index 0000000000000..21fbb3a4ee1e7 Binary files /dev/null and b/blockchains/solana/assets/BavuJ8bntC79A8aHTxQi1EUhcCnqvEU8KSBE4sVCAaHc/logo.png differ diff --git a/blockchains/solana/assets/BeJNBP3zFjeCuwde3bNS8piuQQc8ZpE5rdo2tWuJgmvf/info.json b/blockchains/solana/assets/BeJNBP3zFjeCuwde3bNS8piuQQc8ZpE5rdo2tWuJgmvf/info.json new file mode 100644 index 0000000000000..5ee0267cf5186 --- /dev/null +++ b/blockchains/solana/assets/BeJNBP3zFjeCuwde3bNS8piuQQc8ZpE5rdo2tWuJgmvf/info.json @@ -0,0 +1,21 @@ +{ + "name": "MetAIverse", + "symbol": "METAIVERSE", + "type": "SPL", + "decimals": 6, + "description": "MetAIverse is an open-source initiative to bring AI agents to the forefront of the metaverse, combining 3D technology and machine learning to create accessible and decentralized experiences", + "website": "https://www.metaiverse.app/", + "explorer": "https://solscan.io/token/BeJNBP3zFjeCuwde3bNS8piuQQc8ZpE5rdo2tWuJgmvf", + "status": "active", + "id": "BeJNBP3zFjeCuwde3bNS8piuQQc8ZpE5rdo2tWuJgmvf", + "links": [ + { + "name": "x", + "url": "https://x.com/openmetaiverse" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/metaiverse/" + } + ] + } \ No newline at end of file diff --git a/blockchains/solana/assets/BeJNBP3zFjeCuwde3bNS8piuQQc8ZpE5rdo2tWuJgmvf/logo.png b/blockchains/solana/assets/BeJNBP3zFjeCuwde3bNS8piuQQc8ZpE5rdo2tWuJgmvf/logo.png new file mode 100644 index 0000000000000..4cb1310914885 Binary files /dev/null and b/blockchains/solana/assets/BeJNBP3zFjeCuwde3bNS8piuQQc8ZpE5rdo2tWuJgmvf/logo.png differ diff --git a/blockchains/solana/assets/BeMqCPzbhXKzFScmTwcWwa97XHE11ANoqn1psDfJpump/info.json b/blockchains/solana/assets/BeMqCPzbhXKzFScmTwcWwa97XHE11ANoqn1psDfJpump/info.json new file mode 100644 index 0000000000000..6980b62c084f3 --- /dev/null +++ b/blockchains/solana/assets/BeMqCPzbhXKzFScmTwcWwa97XHE11ANoqn1psDfJpump/info.json @@ -0,0 +1,25 @@ +{ + "name": "PUMP TRUMP", + "type": "SPL", + "symbol": "PUMPTRUMP", + "decimals": 6, + "description": "Trump is back, crypto is booming, and Solana leads the charge! Welcome to Pump Trump, the memecoin inspired by the return of Donald J. Trump as President of the United States. With Trump back in office, his bold vision for innovation and economic dominance extends to the crypto market – and we're here to ride that wave to the moon!", + "website": "https://pumptrumpsol.fun/", + "explorer": "https://solscan.io/token/BeMqCPzbhXKzFScmTwcWwa97XHE11ANoqn1psDfJpump", + "id": "BeMqCPzbhXKzFScmTwcWwa97XHE11ANoqn1psDfJpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/PumpTrumpMAGA" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pump-trump/" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/BeMqCPzbhXKzFScmTwcWwa97XHE11ANoqn1psDfJpump/logo.png b/blockchains/solana/assets/BeMqCPzbhXKzFScmTwcWwa97XHE11ANoqn1psDfJpump/logo.png new file mode 100644 index 0000000000000..57c9b3d7e8942 Binary files /dev/null and b/blockchains/solana/assets/BeMqCPzbhXKzFScmTwcWwa97XHE11ANoqn1psDfJpump/logo.png differ diff --git a/blockchains/solana/assets/BfHkvKMEYjwPXnL36uiM8RnAoMFy8aqNyTJXYU3ZnZtz/info.json b/blockchains/solana/assets/BfHkvKMEYjwPXnL36uiM8RnAoMFy8aqNyTJXYU3ZnZtz/info.json new file mode 100644 index 0000000000000..ab8cd81d347f2 --- /dev/null +++ b/blockchains/solana/assets/BfHkvKMEYjwPXnL36uiM8RnAoMFy8aqNyTJXYU3ZnZtz/info.json @@ -0,0 +1,17 @@ +{ + "name": "ansom", + "website": "https://bento.me/ansom", + "description": "Hi, i'm Ansom! coldost negga bratin!", + "explorer": "https://solscan.io/token/BfHkvKMEYjwPXnL36uiM8RnAoMFy8aqNyTJXYU3ZnZtz", + "type": "SPL", + "symbol": "ANSOM", + "decimals": 9, + "status": "active", + "id": "BfHkvKMEYjwPXnL36uiM8RnAoMFy8aqNyTJXYU3ZnZtz", + "links": [ + { + "name": "x", + "url": "https://x.com/tickerisansom" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BfHkvKMEYjwPXnL36uiM8RnAoMFy8aqNyTJXYU3ZnZtz/logo.png b/blockchains/solana/assets/BfHkvKMEYjwPXnL36uiM8RnAoMFy8aqNyTJXYU3ZnZtz/logo.png new file mode 100644 index 0000000000000..750a07b32602b Binary files /dev/null and b/blockchains/solana/assets/BfHkvKMEYjwPXnL36uiM8RnAoMFy8aqNyTJXYU3ZnZtz/logo.png differ diff --git a/blockchains/solana/assets/BfPGpgNyxe6rjAru1EJarjSBAcCABuMF5L32v7nondo/info.json b/blockchains/solana/assets/BfPGpgNyxe6rjAru1EJarjSBAcCABuMF5L32v7nondo/info.json new file mode 100644 index 0000000000000..66a849d0b2e49 --- /dev/null +++ b/blockchains/solana/assets/BfPGpgNyxe6rjAru1EJarjSBAcCABuMF5L32v7nondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "CoreWeave (Ondo Tokenized)", + "type": "SPL", + "symbol": "CRWVon", + "decimals": 9, + "description": "CRWVon is the Ondo Tokenized version of CoreWeave, giving tokenholders economic exposure similar to holding CRWV and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/BfPGpgNyxe6rjAru1EJarjSBAcCABuMF5L32v7nondo", + "status": "active", + "id": "BfPGpgNyxe6rjAru1EJarjSBAcCABuMF5L32v7nondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/coreweave-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BfPGpgNyxe6rjAru1EJarjSBAcCABuMF5L32v7nondo/logo.png b/blockchains/solana/assets/BfPGpgNyxe6rjAru1EJarjSBAcCABuMF5L32v7nondo/logo.png new file mode 100644 index 0000000000000..3997bb790230f Binary files /dev/null and b/blockchains/solana/assets/BfPGpgNyxe6rjAru1EJarjSBAcCABuMF5L32v7nondo/logo.png differ diff --git a/blockchains/solana/assets/BfxhMerBkBhRUGn4tX5YrBRqLqN8VjvUXHhU7K9Fpump/info.json b/blockchains/solana/assets/BfxhMerBkBhRUGn4tX5YrBRqLqN8VjvUXHhU7K9Fpump/info.json new file mode 100644 index 0000000000000..846f4cdb50605 --- /dev/null +++ b/blockchains/solana/assets/BfxhMerBkBhRUGn4tX5YrBRqLqN8VjvUXHhU7K9Fpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Lynk", + "website": "https://thelynkcoin.com", + "description": "$LYNK is the bridge to the future of crypto—secure, transparent, and built by the community. Designed for real utility and seamless transactions, $LYNK isn’t just a token; it’s a movement toward trust, stability, and long-term growth.", + "explorer": "https://solscan.io/token/BfxhMerBkBhRUGn4tX5YrBRqLqN8VjvUXHhU7K9Fpump", + "type": "SPL", + "symbol": "LYNK", + "decimals": 6, + "status": "active", + "id": "BfxhMerBkBhRUGn4tX5YrBRqLqN8VjvUXHhU7K9Fpump", + "links": [ + { + "name": "x", + "url": "https://x.com/lynkcoinsol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lynk-coin/" + } + ] + } \ No newline at end of file diff --git a/blockchains/solana/assets/BfxhMerBkBhRUGn4tX5YrBRqLqN8VjvUXHhU7K9Fpump/logo.png b/blockchains/solana/assets/BfxhMerBkBhRUGn4tX5YrBRqLqN8VjvUXHhU7K9Fpump/logo.png new file mode 100644 index 0000000000000..de5dd6d9f3600 Binary files /dev/null and b/blockchains/solana/assets/BfxhMerBkBhRUGn4tX5YrBRqLqN8VjvUXHhU7K9Fpump/logo.png differ diff --git a/blockchains/solana/assets/BgwQjVNMWvt2d8CN51CsbniwRWyZ9H9HfHkEsvikeVuZ/info.json b/blockchains/solana/assets/BgwQjVNMWvt2d8CN51CsbniwRWyZ9H9HfHkEsvikeVuZ/info.json new file mode 100644 index 0000000000000..a0f6b03c206a9 --- /dev/null +++ b/blockchains/solana/assets/BgwQjVNMWvt2d8CN51CsbniwRWyZ9H9HfHkEsvikeVuZ/info.json @@ -0,0 +1,21 @@ +{ + "name": "DEAPCOIN", + "symbol": "DEP", + "type": "SPL", + "decimals": 6, + "description": "The DEA Project is a blockchain-based multimedia digital entertainment platform featuring digital arts, games, and various other forms of entertainment. ", + "website": "https://dea.sg/", + "explorer": "https://solscan.io/token/BgwQjVNMWvt2d8CN51CsbniwRWyZ9H9HfHkEsvikeVuZ", + "status": "active", + "id": "BgwQjVNMWvt2d8CN51CsbniwRWyZ9H9HfHkEsvikeVuZ", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/deapcoin/" + }, + { + "name": "x", + "url": "https://x.com/PlayMining_SG" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BgwQjVNMWvt2d8CN51CsbniwRWyZ9H9HfHkEsvikeVuZ/logo.png b/blockchains/solana/assets/BgwQjVNMWvt2d8CN51CsbniwRWyZ9H9HfHkEsvikeVuZ/logo.png new file mode 100644 index 0000000000000..8c78552f3f5cf Binary files /dev/null and b/blockchains/solana/assets/BgwQjVNMWvt2d8CN51CsbniwRWyZ9H9HfHkEsvikeVuZ/logo.png differ diff --git a/blockchains/solana/assets/BjCmA9ZYwJ1BwusMGaSxe4pgaa9gfXTtdyX27NYEpump/info.json b/blockchains/solana/assets/BjCmA9ZYwJ1BwusMGaSxe4pgaa9gfXTtdyX27NYEpump/info.json new file mode 100644 index 0000000000000..a337816a01473 --- /dev/null +++ b/blockchains/solana/assets/BjCmA9ZYwJ1BwusMGaSxe4pgaa9gfXTtdyX27NYEpump/info.json @@ -0,0 +1,27 @@ +{ + "name": "BONECOIN", + "type": "SOL", + "symbol": "BONECOIN", + "decimals": 6, + "description": "A Solana Powered Bonecoin", + "website": "https://www.bonecoin.dev/", + "explorer": "https://solscan.io/token/BjCmA9ZYwJ1BwusMGaSxe4pgaa9gfXTtdyX27NYEpump", + "id": "BjCmA9ZYwJ1BwusMGaSxe4pgaa9gfXTtdyX27NYEpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/boneGPT" + }, + + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bonecoin" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/BjCmA9ZYwJ1BwusMGaSxe4pgaa9gfXTtdyX27NYEpump/logo.png b/blockchains/solana/assets/BjCmA9ZYwJ1BwusMGaSxe4pgaa9gfXTtdyX27NYEpump/logo.png new file mode 100644 index 0000000000000..737596877e18f Binary files /dev/null and b/blockchains/solana/assets/BjCmA9ZYwJ1BwusMGaSxe4pgaa9gfXTtdyX27NYEpump/logo.png differ diff --git a/blockchains/solana/assets/BkYAUVMar1gLwuFLv2n5cmB6HhcNtvd86kU3gqAypump/info.json b/blockchains/solana/assets/BkYAUVMar1gLwuFLv2n5cmB6HhcNtvd86kU3gqAypump/info.json new file mode 100644 index 0000000000000..6c7fe288764b4 --- /dev/null +++ b/blockchains/solana/assets/BkYAUVMar1gLwuFLv2n5cmB6HhcNtvd86kU3gqAypump/info.json @@ -0,0 +1,17 @@ +{ + "name": "Elon for AfD", + "symbol": "Elon4AfD", + "type": "SPL", + "decimals": 6, + "description": "Uniting the visionary spirit of Elon Musk with German political innovation", + "website": "https://elon4afd.meme/#about", + "explorer": "https://solscan.io/token/BkYAUVMar1gLwuFLv2n5cmB6HhcNtvd86kU3gqAypump", + "status": "active", + "id": "BkYAUVMar1gLwuFLv2n5cmB6HhcNtvd86kU3gqAypump", + "links": [ + { + "name": "x", + "url": "https://x.com/Elon4AfD" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BkYAUVMar1gLwuFLv2n5cmB6HhcNtvd86kU3gqAypump/logo.png b/blockchains/solana/assets/BkYAUVMar1gLwuFLv2n5cmB6HhcNtvd86kU3gqAypump/logo.png new file mode 100644 index 0000000000000..3cf8369dae092 Binary files /dev/null and b/blockchains/solana/assets/BkYAUVMar1gLwuFLv2n5cmB6HhcNtvd86kU3gqAypump/logo.png differ diff --git a/blockchains/solana/assets/BkZsTT3rWdHkBUgFBiviYQWWd9ZKxseFeesALuvcVApk/info.json b/blockchains/solana/assets/BkZsTT3rWdHkBUgFBiviYQWWd9ZKxseFeesALuvcVApk/info.json new file mode 100644 index 0000000000000..4d5ab71e9683c --- /dev/null +++ b/blockchains/solana/assets/BkZsTT3rWdHkBUgFBiviYQWWd9ZKxseFeesALuvcVApk/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE ՍЅᎠТ", + "type": "SPL", + "symbol": "FAKE ՍЅᎠТ", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/BkZsTT3rWdHkBUgFBiviYQWWd9ZKxseFeesALuvcVApk", + "explorer": "https://solscan.io/token/BkZsTT3rWdHkBUgFBiviYQWWd9ZKxseFeesALuvcVApk", + "status": "spam", + "id": "BkZsTT3rWdHkBUgFBiviYQWWd9ZKxseFeesALuvcVApk" +} \ No newline at end of file diff --git a/blockchains/solana/assets/BmXVAFyfpW7VuVYeWDtbFtLx7sek2mZt3BEsGgAondo/info.json b/blockchains/solana/assets/BmXVAFyfpW7VuVYeWDtbFtLx7sek2mZt3BEsGgAondo/info.json new file mode 100644 index 0000000000000..bb349e5c69038 --- /dev/null +++ b/blockchains/solana/assets/BmXVAFyfpW7VuVYeWDtbFtLx7sek2mZt3BEsGgAondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares MSCI Chile ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "ECHon", + "decimals": 9, + "description": "ECHon is the Ondo Tokenized version of the iShares MSCI Chile ETF, giving tokenholders economic exposure similar to holding ECH and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/BmXVAFyfpW7VuVYeWDtbFtLx7sek2mZt3BEsGgAondo", + "status": "active", + "id": "BmXVAFyfpW7VuVYeWDtbFtLx7sek2mZt3BEsGgAondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-msci-chile-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BmXVAFyfpW7VuVYeWDtbFtLx7sek2mZt3BEsGgAondo/logo.png b/blockchains/solana/assets/BmXVAFyfpW7VuVYeWDtbFtLx7sek2mZt3BEsGgAondo/logo.png new file mode 100644 index 0000000000000..2ce033b091a15 Binary files /dev/null and b/blockchains/solana/assets/BmXVAFyfpW7VuVYeWDtbFtLx7sek2mZt3BEsGgAondo/logo.png differ diff --git a/blockchains/solana/assets/BncvtBGs4JqgYZwUoq3EN9q9HUFqJKTfWpvCsHCondo/info.json b/blockchains/solana/assets/BncvtBGs4JqgYZwUoq3EN9q9HUFqJKTfWpvCsHCondo/info.json new file mode 100644 index 0000000000000..0d2a83af810d0 --- /dev/null +++ b/blockchains/solana/assets/BncvtBGs4JqgYZwUoq3EN9q9HUFqJKTfWpvCsHCondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Enlivex Therapeutics (Ondo Tokenized)", + "type": "SPL", + "symbol": "ENLVon", + "decimals": 9, + "description": "ENLVon is the Ondo Tokenized version of Enlivex Therapeutics, giving tokenholders economic exposure similar to holding ENLV and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/BncvtBGs4JqgYZwUoq3EN9q9HUFqJKTfWpvCsHCondo", + "status": "active", + "id": "BncvtBGs4JqgYZwUoq3EN9q9HUFqJKTfWpvCsHCondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/enlivex-therapeutics-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BncvtBGs4JqgYZwUoq3EN9q9HUFqJKTfWpvCsHCondo/logo.png b/blockchains/solana/assets/BncvtBGs4JqgYZwUoq3EN9q9HUFqJKTfWpvCsHCondo/logo.png new file mode 100644 index 0000000000000..138c9f7d869f6 Binary files /dev/null and b/blockchains/solana/assets/BncvtBGs4JqgYZwUoq3EN9q9HUFqJKTfWpvCsHCondo/logo.png differ diff --git a/blockchains/solana/assets/BoZoQQRAmYkr5iJhqo7DChAs7DPDwEZ5cv1vkYC9yzJG/info.json b/blockchains/solana/assets/BoZoQQRAmYkr5iJhqo7DChAs7DPDwEZ5cv1vkYC9yzJG/info.json new file mode 100644 index 0000000000000..e38bdae1d9a4f --- /dev/null +++ b/blockchains/solana/assets/BoZoQQRAmYkr5iJhqo7DChAs7DPDwEZ5cv1vkYC9yzJG/info.json @@ -0,0 +1,21 @@ +{ + "name": "BOZO", + "symbol": "BOZO", + "type": "SPL", + "decimals": 5, + "description": "Bozo is a community memecoin created by https://x.com/Bozocollective.", + "website": "https://bozocollective.com/", + "explorer": "https://solscan.io/token/BoZoQQRAmYkr5iJhqo7DChAs7DPDwEZ5cv1vkYC9yzJG", + "status": "active", + "id": "BoZoQQRAmYkr5iJhqo7DChAs7DPDwEZ5cv1vkYC9yzJG", + "links": [ + { + "name": "x", + "url": "https://x.com/bozocollective" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bozo" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BoZoQQRAmYkr5iJhqo7DChAs7DPDwEZ5cv1vkYC9yzJG/logo.png b/blockchains/solana/assets/BoZoQQRAmYkr5iJhqo7DChAs7DPDwEZ5cv1vkYC9yzJG/logo.png new file mode 100644 index 0000000000000..5c4d1aa54320c Binary files /dev/null and b/blockchains/solana/assets/BoZoQQRAmYkr5iJhqo7DChAs7DPDwEZ5cv1vkYC9yzJG/logo.png differ diff --git a/blockchains/solana/assets/Bp26APthMuM46gMFTo5KYpo7b92GN2xSCor7f9oondo/info.json b/blockchains/solana/assets/Bp26APthMuM46gMFTo5KYpo7b92GN2xSCor7f9oondo/info.json new file mode 100644 index 0000000000000..ffc96df115b64 --- /dev/null +++ b/blockchains/solana/assets/Bp26APthMuM46gMFTo5KYpo7b92GN2xSCor7f9oondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Enphase Energy (Ondo Tokenized)", + "type": "SPL", + "symbol": "ENPHon", + "decimals": 9, + "description": "ENPHon is the Ondo Tokenized version of Enphase Energy, giving tokenholders economic exposure similar to holding ENPH and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/Bp26APthMuM46gMFTo5KYpo7b92GN2xSCor7f9oondo", + "status": "active", + "id": "Bp26APthMuM46gMFTo5KYpo7b92GN2xSCor7f9oondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/enphase-energy-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Bp26APthMuM46gMFTo5KYpo7b92GN2xSCor7f9oondo/logo.png b/blockchains/solana/assets/Bp26APthMuM46gMFTo5KYpo7b92GN2xSCor7f9oondo/logo.png new file mode 100644 index 0000000000000..f043e9e3e3c06 Binary files /dev/null and b/blockchains/solana/assets/Bp26APthMuM46gMFTo5KYpo7b92GN2xSCor7f9oondo/logo.png differ diff --git a/blockchains/solana/assets/Bp7Cz7TpFXyz2Hz8cXE8r1uoD8szQEpx5sz56PfoLA6W/info.json b/blockchains/solana/assets/Bp7Cz7TpFXyz2Hz8cXE8r1uoD8szQEpx5sz56PfoLA6W/info.json new file mode 100644 index 0000000000000..05b0c992e78d2 --- /dev/null +++ b/blockchains/solana/assets/Bp7Cz7TpFXyz2Hz8cXE8r1uoD8szQEpx5sz56PfoLA6W/info.json @@ -0,0 +1,26 @@ +{ + "name": "The 369 code", + "type": "SOL", + "symbol": "369", + "decimals": 5, + "description": "Welcome to 369 Coin, the revolutionary memecoin on the Solana blockchain, inspired by the enigmatic power of the number 369. This number, celebrated by visionary Nikola Tesla, holds a profound meaning. Tesla famously said, “If you knew the magnificence of the numbers 3, 6, and 9, you would have the key to the universe.” For him, these numbers represented the foundation of energy patterns and cosmic principles that govern reality.", + "website": "https://the369code.tech/", + "explorer": "https://solscan.io/token/Bp7Cz7TpFXyz2Hz8cXE8r1uoD8szQEpx5sz56PfoLA6W", + "id": "Bp7Cz7TpFXyz2Hz8cXE8r1uoD8szQEpx5sz56PfoLA6W", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/The369Code/photo" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/the-369-code/" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/Bp7Cz7TpFXyz2Hz8cXE8r1uoD8szQEpx5sz56PfoLA6W/logo.png b/blockchains/solana/assets/Bp7Cz7TpFXyz2Hz8cXE8r1uoD8szQEpx5sz56PfoLA6W/logo.png new file mode 100644 index 0000000000000..a92026929acc1 Binary files /dev/null and b/blockchains/solana/assets/Bp7Cz7TpFXyz2Hz8cXE8r1uoD8szQEpx5sz56PfoLA6W/logo.png differ diff --git a/blockchains/solana/assets/BpYiU1dBXU1fdB64jbR93wHEw3Y47QeRLZvUyLQondo/info.json b/blockchains/solana/assets/BpYiU1dBXU1fdB64jbR93wHEw3Y47QeRLZvUyLQondo/info.json new file mode 100644 index 0000000000000..c40c3d85d14ee --- /dev/null +++ b/blockchains/solana/assets/BpYiU1dBXU1fdB64jbR93wHEw3Y47QeRLZvUyLQondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Eaton (Ondo Tokenized)", + "type": "SPL", + "symbol": "ETNon", + "decimals": 9, + "description": "ETNon is the Ondo Tokenized version of Eaton, giving tokenholders economic exposure similar to holding ETN and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/BpYiU1dBXU1fdB64jbR93wHEw3Y47QeRLZvUyLQondo", + "status": "active", + "id": "BpYiU1dBXU1fdB64jbR93wHEw3Y47QeRLZvUyLQondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/eaton-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BpYiU1dBXU1fdB64jbR93wHEw3Y47QeRLZvUyLQondo/logo.png b/blockchains/solana/assets/BpYiU1dBXU1fdB64jbR93wHEw3Y47QeRLZvUyLQondo/logo.png new file mode 100644 index 0000000000000..8439cf72d5498 Binary files /dev/null and b/blockchains/solana/assets/BpYiU1dBXU1fdB64jbR93wHEw3Y47QeRLZvUyLQondo/logo.png differ diff --git a/blockchains/solana/assets/BreuhVohXX5fv6q41uyb3sojtAuGoGaiAhKBMtcrpump/info.json b/blockchains/solana/assets/BreuhVohXX5fv6q41uyb3sojtAuGoGaiAhKBMtcrpump/info.json new file mode 100644 index 0000000000000..5c3a6daa89f72 --- /dev/null +++ b/blockchains/solana/assets/BreuhVohXX5fv6q41uyb3sojtAuGoGaiAhKBMtcrpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "hehe", + "website": "https://hehecat.org/", + "description": "hehe is a community token inspired by famous `hehe cat` meme", + "explorer": "https://solscan.io/token/BreuhVohXX5fv6q41uyb3sojtAuGoGaiAhKBMtcrpump", + "type": "SPL", + "symbol": "hehe", + "decimals": 6, + "status": "active", + "id": "BreuhVohXX5fv6q41uyb3sojtAuGoGaiAhKBMtcrpump", + "links": [ + { + "name": "x", + "url": "https://x.com/hehecat_solana" + }, + { + "name": "telegram", + "url": "https://t.me/+RyQeKYGn0BBiMDRh" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BreuhVohXX5fv6q41uyb3sojtAuGoGaiAhKBMtcrpump/logo.png b/blockchains/solana/assets/BreuhVohXX5fv6q41uyb3sojtAuGoGaiAhKBMtcrpump/logo.png new file mode 100644 index 0000000000000..d92eccfbe50cb Binary files /dev/null and b/blockchains/solana/assets/BreuhVohXX5fv6q41uyb3sojtAuGoGaiAhKBMtcrpump/logo.png differ diff --git a/blockchains/solana/assets/ByXTsen3ftsd7SsqgXpSZqrEeoMV8Smhz1vox9j6pump/info.json b/blockchains/solana/assets/ByXTsen3ftsd7SsqgXpSZqrEeoMV8Smhz1vox9j6pump/info.json new file mode 100644 index 0000000000000..ef69cb8a1550d --- /dev/null +++ b/blockchains/solana/assets/ByXTsen3ftsd7SsqgXpSZqrEeoMV8Smhz1vox9j6pump/info.json @@ -0,0 +1,21 @@ +{ + "name": "JUSTICE FOR SUCHIR", + "type": "SPL", + "symbol": "SUCHIR", + "decimals": 6, + "website": "https://www.justiceforsuchir.org/", + "description": "Suchir Balaji didn’t kill himself", + "explorer": "https://solscan.io/token/ByXTsen3ftsd7SsqgXpSZqrEeoMV8Smhz1vox9j6pump", + "status": "active", + "id": "ByXTsen3ftsd7SsqgXpSZqrEeoMV8Smhz1vox9j6pump", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/justice-for-suchir/" + }, + { + "name": "x", + "url": "https://x.com/suchirjustice" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/ByXTsen3ftsd7SsqgXpSZqrEeoMV8Smhz1vox9j6pump/logo.png b/blockchains/solana/assets/ByXTsen3ftsd7SsqgXpSZqrEeoMV8Smhz1vox9j6pump/logo.png new file mode 100644 index 0000000000000..cfbd0765e78ac Binary files /dev/null and b/blockchains/solana/assets/ByXTsen3ftsd7SsqgXpSZqrEeoMV8Smhz1vox9j6pump/logo.png differ diff --git a/blockchains/solana/assets/C2nneybCJP2i6mk6Nu6SfTcxoNXNLjngnzwDgje2eNrr/info.json b/blockchains/solana/assets/C2nneybCJP2i6mk6Nu6SfTcxoNXNLjngnzwDgje2eNrr/info.json new file mode 100644 index 0000000000000..339bd69b542be --- /dev/null +++ b/blockchains/solana/assets/C2nneybCJP2i6mk6Nu6SfTcxoNXNLjngnzwDgje2eNrr/info.json @@ -0,0 +1,21 @@ +{ + "name": "Jen-Hsun Huang", + "symbol": "JHH", + "type": "SPL", + "decimals": 3, + "description": "As the visionary co-founder and CEO of NVIDIA, Huang has revolutionized the tech industry with groundbreaking advancements in GPU technology, AI, and more. Jen-Hsun Jensen Huang was born February 17, 1963 is an American businessman, electrical engineer, and philanthropist who is the president and chief executive officer (CEO) of NVIDIA.", + "website": "https://jen-hsun.io/", + "explorer": "https://solscan.io/token/C2nneybCJP2i6mk6Nu6SfTcxoNXNLjngnzwDgje2eNrr", + "status": "active", + "id": "C2nneybCJP2i6mk6Nu6SfTcxoNXNLjngnzwDgje2eNrr", + "links": [ + { + "name": "x", + "url": "https://x.com/jenhsunhuangsol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jen-hsun-huang" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/C2nneybCJP2i6mk6Nu6SfTcxoNXNLjngnzwDgje2eNrr/logo.png b/blockchains/solana/assets/C2nneybCJP2i6mk6Nu6SfTcxoNXNLjngnzwDgje2eNrr/logo.png new file mode 100644 index 0000000000000..31a326dd16d9a Binary files /dev/null and b/blockchains/solana/assets/C2nneybCJP2i6mk6Nu6SfTcxoNXNLjngnzwDgje2eNrr/logo.png differ diff --git a/blockchains/solana/assets/C3JX9TWLqHKmcoTDTppaJebX2U7DcUQDEHVSmJFz6K6S/info.json b/blockchains/solana/assets/C3JX9TWLqHKmcoTDTppaJebX2U7DcUQDEHVSmJFz6K6S/info.json new file mode 100644 index 0000000000000..cdc62c0fbec38 --- /dev/null +++ b/blockchains/solana/assets/C3JX9TWLqHKmcoTDTppaJebX2U7DcUQDEHVSmJFz6K6S/info.json @@ -0,0 +1,17 @@ +{ + "name": "Bazinga", + "type": "SPL", + "symbol": "Bazinga", + "decimals": 6, + "website": "https://bazingasolana.univer.se/", + "description": "Bazinga is aiming to be a Pump.fun killer by launching it's own platform on game.com", + "explorer": "https://solscan.io/token/C3JX9TWLqHKmcoTDTppaJebX2U7DcUQDEHVSmJFz6K6S", + "status": "active", + "id": "C3JX9TWLqHKmcoTDTppaJebX2U7DcUQDEHVSmJFz6K6S", + "links": [ + { + "name": "x", + "url": "https://x.com/bazingahappy" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/C3JX9TWLqHKmcoTDTppaJebX2U7DcUQDEHVSmJFz6K6S/logo.png b/blockchains/solana/assets/C3JX9TWLqHKmcoTDTppaJebX2U7DcUQDEHVSmJFz6K6S/logo.png new file mode 100644 index 0000000000000..08430454e3c80 Binary files /dev/null and b/blockchains/solana/assets/C3JX9TWLqHKmcoTDTppaJebX2U7DcUQDEHVSmJFz6K6S/logo.png differ diff --git a/blockchains/solana/assets/C4Kkr9NZU3VbyedcgutU6LKmi6MKz81sx6gRmk5pX519/info.json b/blockchains/solana/assets/C4Kkr9NZU3VbyedcgutU6LKmi6MKz81sx6gRmk5pX519/info.json new file mode 100644 index 0000000000000..87dc0238623db --- /dev/null +++ b/blockchains/solana/assets/C4Kkr9NZU3VbyedcgutU6LKmi6MKz81sx6gRmk5pX519/info.json @@ -0,0 +1,21 @@ +{ + "name": "VNX Euro", + "symbol": "VEUR", + "type": "SPL", + "decimals": 9, + "description": "VNX Euro (VEUR) is a token referencing Euro from a token generator licensed under the Blockchain act in Liechtenstein.", + "website": "https://vnx.li/veur/", + "explorer": "https://solscan.io/token/C4Kkr9NZU3VbyedcgutU6LKmi6MKz81sx6gRmk5pX519", + "status": "active", + "id": "C4Kkr9NZU3VbyedcgutU6LKmi6MKz81sx6gRmk5pX519", + "links": [ + { + "name": "x", + "url": "https://x.com/vnx_platform" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vnx-euro" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/C4Kkr9NZU3VbyedcgutU6LKmi6MKz81sx6gRmk5pX519/logo.png b/blockchains/solana/assets/C4Kkr9NZU3VbyedcgutU6LKmi6MKz81sx6gRmk5pX519/logo.png new file mode 100644 index 0000000000000..b44d3b57bb5f1 Binary files /dev/null and b/blockchains/solana/assets/C4Kkr9NZU3VbyedcgutU6LKmi6MKz81sx6gRmk5pX519/logo.png differ diff --git a/blockchains/solana/assets/C6Q5fMpuPjBPox84wbcE3Rn8HYJg11o4YHEmbQSuYs5L/info.json b/blockchains/solana/assets/C6Q5fMpuPjBPox84wbcE3Rn8HYJg11o4YHEmbQSuYs5L/info.json new file mode 100644 index 0000000000000..101b363291596 --- /dev/null +++ b/blockchains/solana/assets/C6Q5fMpuPjBPox84wbcE3Rn8HYJg11o4YHEmbQSuYs5L/info.json @@ -0,0 +1,21 @@ +{ + "name": "donotfomoew", + "symbol": "MOEW", + "type": "SPL", + "decimals": 8, + "description": "Just for funsies, nothing too serious, We wanna see what the power of memes can do.", + "website": "https://donotfomoew.org/", + "explorer": "https://solscan.io/token/C6Q5fMpuPjBPox84wbcE3Rn8HYJg11o4YHEmbQSuYs5L", + "status": "active", + "id": "C6Q5fMpuPjBPox84wbcE3Rn8HYJg11o4YHEmbQSuYs5L", + "links": [ + { + "name": "x", + "url": "https://x.com/donotfomoew" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/donotfomoew" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/C6Q5fMpuPjBPox84wbcE3Rn8HYJg11o4YHEmbQSuYs5L/logo.png b/blockchains/solana/assets/C6Q5fMpuPjBPox84wbcE3Rn8HYJg11o4YHEmbQSuYs5L/logo.png new file mode 100644 index 0000000000000..52b965d453224 Binary files /dev/null and b/blockchains/solana/assets/C6Q5fMpuPjBPox84wbcE3Rn8HYJg11o4YHEmbQSuYs5L/logo.png differ diff --git a/blockchains/solana/assets/C6VEBDMjA6FaJ9JA2QUmFgj9Q7QNrHAbemNhT5yDL777/info.json b/blockchains/solana/assets/C6VEBDMjA6FaJ9JA2QUmFgj9Q7QNrHAbemNhT5yDL777/info.json new file mode 100644 index 0000000000000..2dc77219a7f14 --- /dev/null +++ b/blockchains/solana/assets/C6VEBDMjA6FaJ9JA2QUmFgj9Q7QNrHAbemNhT5yDL777/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT HOPR", + "type": "SPL", + "symbol": "HONEYPOT HOPR", + "decimals": 9, + "website": "https://solscan.io/token/C6VEBDMjA6FaJ9JA2QUmFgj9Q7QNrHAbemNhT5yDL777", + "description": "HONEYPOT HOPR", + "explorer": "https://explorer.solana.com/address/C6VEBDMjA6FaJ9JA2QUmFgj9Q7QNrHAbemNhT5yDL777", + "status": "spam", + "id": "C6VEBDMjA6FaJ9JA2QUmFgj9Q7QNrHAbemNhT5yDL777" +} \ No newline at end of file diff --git a/blockchains/solana/assets/C6c7VcxuUYcV5YTsky5HM4PUmfwHTwsDD5DNwwPondo/info.json b/blockchains/solana/assets/C6c7VcxuUYcV5YTsky5HM4PUmfwHTwsDD5DNwwPondo/info.json new file mode 100644 index 0000000000000..8e0b543e219be --- /dev/null +++ b/blockchains/solana/assets/C6c7VcxuUYcV5YTsky5HM4PUmfwHTwsDD5DNwwPondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares MSCI Japan ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "EWJon", + "decimals": 9, + "description": "EWJon is the Ondo Tokenized version of the iShares MSCI Japan ETF , giving tokenholders economic exposure similar to holding EWJ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/C6c7VcxuUYcV5YTsky5HM4PUmfwHTwsDD5DNwwPondo", + "status": "active", + "id": "C6c7VcxuUYcV5YTsky5HM4PUmfwHTwsDD5DNwwPondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-msci-japan-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/C6c7VcxuUYcV5YTsky5HM4PUmfwHTwsDD5DNwwPondo/logo.png b/blockchains/solana/assets/C6c7VcxuUYcV5YTsky5HM4PUmfwHTwsDD5DNwwPondo/logo.png new file mode 100644 index 0000000000000..2ce033b091a15 Binary files /dev/null and b/blockchains/solana/assets/C6c7VcxuUYcV5YTsky5HM4PUmfwHTwsDD5DNwwPondo/logo.png differ diff --git a/blockchains/solana/assets/C7heQqfNzdMbUFQwcHkL9FvdwsFsDRBnfwZDDyWYCLTZ/info.json b/blockchains/solana/assets/C7heQqfNzdMbUFQwcHkL9FvdwsFsDRBnfwZDDyWYCLTZ/info.json new file mode 100644 index 0000000000000..cd3c7b05f5422 --- /dev/null +++ b/blockchains/solana/assets/C7heQqfNzdMbUFQwcHkL9FvdwsFsDRBnfwZDDyWYCLTZ/info.json @@ -0,0 +1,17 @@ +{ + "name": "Collaterize", + "type": "SPL", + "symbol": "COLLAT", + "decimals": 6, + "website": "https://collaterize.com/", + "description": "Purpose of the token The $COLLAT token is designed to bring individuals into real-world asset (RWA) tokenization, enabling access to a diverse range of assets going on-chain", + "explorer": "https://solscan.io/token/C7heQqfNzdMbUFQwcHkL9FvdwsFsDRBnfwZDDyWYCLTZ", + "status": "active", + "id": "C7heQqfNzdMbUFQwcHkL9FvdwsFsDRBnfwZDDyWYCLTZ", + "links": [ + { + "name": "x", + "url": "https://x.com/collaterizehq" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/C7heQqfNzdMbUFQwcHkL9FvdwsFsDRBnfwZDDyWYCLTZ/logo.png b/blockchains/solana/assets/C7heQqfNzdMbUFQwcHkL9FvdwsFsDRBnfwZDDyWYCLTZ/logo.png new file mode 100644 index 0000000000000..6f6bb84734a37 Binary files /dev/null and b/blockchains/solana/assets/C7heQqfNzdMbUFQwcHkL9FvdwsFsDRBnfwZDDyWYCLTZ/logo.png differ diff --git a/blockchains/solana/assets/C8pSaSgjkiTWixS3GM6Hxd6HKnKrgAbY9WDgfVeondo/info.json b/blockchains/solana/assets/C8pSaSgjkiTWixS3GM6Hxd6HKnKrgAbY9WDgfVeondo/info.json new file mode 100644 index 0000000000000..3506dad54ff38 --- /dev/null +++ b/blockchains/solana/assets/C8pSaSgjkiTWixS3GM6Hxd6HKnKrgAbY9WDgfVeondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares MSCI South Korea ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "EWYon", + "decimals": 9, + "description": "EWYon is the Ondo Tokenized version of the iShares MSCI South Korea ETF, giving tokenholders economic exposure similar to holding EWY and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/C8pSaSgjkiTWixS3GM6Hxd6HKnKrgAbY9WDgfVeondo", + "status": "active", + "id": "C8pSaSgjkiTWixS3GM6Hxd6HKnKrgAbY9WDgfVeondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-msci-south-korea-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/C8pSaSgjkiTWixS3GM6Hxd6HKnKrgAbY9WDgfVeondo/logo.png b/blockchains/solana/assets/C8pSaSgjkiTWixS3GM6Hxd6HKnKrgAbY9WDgfVeondo/logo.png new file mode 100644 index 0000000000000..2ce033b091a15 Binary files /dev/null and b/blockchains/solana/assets/C8pSaSgjkiTWixS3GM6Hxd6HKnKrgAbY9WDgfVeondo/logo.png differ diff --git a/blockchains/solana/assets/C98A4nkJXhpVZNAZdHUA95RpTF3T4whtQubL3YobiUX9/info.json b/blockchains/solana/assets/C98A4nkJXhpVZNAZdHUA95RpTF3T4whtQubL3YobiUX9/info.json new file mode 100644 index 0000000000000..637593301685b --- /dev/null +++ b/blockchains/solana/assets/C98A4nkJXhpVZNAZdHUA95RpTF3T4whtQubL3YobiUX9/info.json @@ -0,0 +1,33 @@ +{ + "name": "Coin98", + "website": "https://coin98.com/", + "description": "Coin98 enables value transfer as easily as using the Internet by the innovation of Multi-chain Engine, Fully Automatic Liquidity and Space Gate, all in one Super Liquidity Aggregator.", + "explorer": "https://solscan.io/token/C98A4nkJXhpVZNAZdHUA95RpTF3T4whtQubL3YobiUX9", + "type": "SPL", + "symbol": "C98", + "decimals": 6, + "status": "active", + "id": "C98A4nkJXhpVZNAZdHUA95RpTF3T4whtQubL3YobiUX9", + "links": [ + { + "name": "x", + "url": "https://x.com/coin98_finance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/coin98/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coin98/" + }, + { + "name": "github", + "url": "https://github.com/coin98" + }, + { + "name": "telegram", + "url": "https://t.me/StackerVentures" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/C98A4nkJXhpVZNAZdHUA95RpTF3T4whtQubL3YobiUX9/logo.png b/blockchains/solana/assets/C98A4nkJXhpVZNAZdHUA95RpTF3T4whtQubL3YobiUX9/logo.png new file mode 100644 index 0000000000000..adc079763a7c5 Binary files /dev/null and b/blockchains/solana/assets/C98A4nkJXhpVZNAZdHUA95RpTF3T4whtQubL3YobiUX9/logo.png differ diff --git a/blockchains/solana/assets/C9xNaNujcF1a5fidWAAFReFYqhLRVbyk4yPyGqzondo/info.json b/blockchains/solana/assets/C9xNaNujcF1a5fidWAAFReFYqhLRVbyk4yPyGqzondo/info.json new file mode 100644 index 0000000000000..b66fbd1164a85 --- /dev/null +++ b/blockchains/solana/assets/C9xNaNujcF1a5fidWAAFReFYqhLRVbyk4yPyGqzondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "AMC Entertainment (Ondo Tokenized)", + "type": "SPL", + "symbol": "AMCon", + "decimals": 9, + "description": "AMCon is the Ondo Tokenized version of AMC Entertainment, giving tokenholders economic exposure similar to holding AMC and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/C9xNaNujcF1a5fidWAAFReFYqhLRVbyk4yPyGqzondo", + "status": "active", + "id": "C9xNaNujcF1a5fidWAAFReFYqhLRVbyk4yPyGqzondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/amc-entertainment-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/amc-entertainment-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/C9xNaNujcF1a5fidWAAFReFYqhLRVbyk4yPyGqzondo/logo.png b/blockchains/solana/assets/C9xNaNujcF1a5fidWAAFReFYqhLRVbyk4yPyGqzondo/logo.png new file mode 100644 index 0000000000000..fe6efcd59b566 Binary files /dev/null and b/blockchains/solana/assets/C9xNaNujcF1a5fidWAAFReFYqhLRVbyk4yPyGqzondo/logo.png differ diff --git a/blockchains/solana/assets/CATTzAwLyADd2ekzVjTjX8tVUBYfrozdkJBkutJggdB7/info.json b/blockchains/solana/assets/CATTzAwLyADd2ekzVjTjX8tVUBYfrozdkJBkutJggdB7/info.json new file mode 100644 index 0000000000000..bd53e33792083 --- /dev/null +++ b/blockchains/solana/assets/CATTzAwLyADd2ekzVjTjX8tVUBYfrozdkJBkutJggdB7/info.json @@ -0,0 +1,21 @@ +{ + "name": "CatDog", + "symbol": "CATDOG", + "type": "SPL", + "decimals": 8, + "description": "Life of a cat and a dog with a unique twist: they are literally connected.", + "website": "https://www.cat-dog.io/", + "explorer": "https://solscan.io/token/CATTzAwLyADd2ekzVjTjX8tVUBYfrozdkJBkutJggdB7", + "status": "active", + "id": "CATTzAwLyADd2ekzVjTjX8tVUBYfrozdkJBkutJggdB7", + "links": [ + { + "name": "x", + "url": "https://x.com/catdog_meme" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/catdog-io" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CATTzAwLyADd2ekzVjTjX8tVUBYfrozdkJBkutJggdB7/logo.png b/blockchains/solana/assets/CATTzAwLyADd2ekzVjTjX8tVUBYfrozdkJBkutJggdB7/logo.png new file mode 100644 index 0000000000000..6ea7aa1e9ba9f Binary files /dev/null and b/blockchains/solana/assets/CATTzAwLyADd2ekzVjTjX8tVUBYfrozdkJBkutJggdB7/logo.png differ diff --git a/blockchains/solana/assets/CBKcmEvVg5EgE3W5hVSPcBYWh6TFVjQwbmYod9Pondo/info.json b/blockchains/solana/assets/CBKcmEvVg5EgE3W5hVSPcBYWh6TFVjQwbmYod9Pondo/info.json new file mode 100644 index 0000000000000..f4b881fec54f2 --- /dev/null +++ b/blockchains/solana/assets/CBKcmEvVg5EgE3W5hVSPcBYWh6TFVjQwbmYod9Pondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares MSCI Brazil ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "EWZon", + "decimals": 9, + "description": "EWZon is the Ondo Tokenized version of the iShares MSCI Brazil ETF, giving tokenholders economic exposure similar to holding EWZ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/CBKcmEvVg5EgE3W5hVSPcBYWh6TFVjQwbmYod9Pondo", + "status": "active", + "id": "CBKcmEvVg5EgE3W5hVSPcBYWh6TFVjQwbmYod9Pondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-msci-brazil-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CBKcmEvVg5EgE3W5hVSPcBYWh6TFVjQwbmYod9Pondo/logo.png b/blockchains/solana/assets/CBKcmEvVg5EgE3W5hVSPcBYWh6TFVjQwbmYod9Pondo/logo.png new file mode 100644 index 0000000000000..2ce033b091a15 Binary files /dev/null and b/blockchains/solana/assets/CBKcmEvVg5EgE3W5hVSPcBYWh6TFVjQwbmYod9Pondo/logo.png differ diff --git a/blockchains/solana/assets/CBdCxKo9QavR9hfShgpEBG3zekorAeD7W1jfq2o3pump/info.json b/blockchains/solana/assets/CBdCxKo9QavR9hfShgpEBG3zekorAeD7W1jfq2o3pump/info.json new file mode 100644 index 0000000000000..46c130ffdbd5f --- /dev/null +++ b/blockchains/solana/assets/CBdCxKo9QavR9hfShgpEBG3zekorAeD7W1jfq2o3pump/info.json @@ -0,0 +1,14 @@ +{ + "name": "Official Mascot of the Holy Year", + "type": "SPL", + "symbol": "LUCE", + "decimals": 6, + "website": "https://explorer.solana.com/address/CBdCxKo9QavR9hfShgpEBG3zekorAeD7W1jfq2o3pump", + "description": "The Vatican unveils “Luce” (Italian for “Light”), the mascot for the Holy Year 2025. Dressed as a pilgrim with a yellow raincoat, worn boots, a missionary cross, and a pilgrim's staff, Luce’s eyes are filled with scallop shells—a symbol of hope.", + "explorer": "https://explorer.solana.com/address/CBdCxKo9QavR9hfShgpEBG3zekorAeD7W1jfq2o3pump", + "status": "active", + "id": "CBdCxKo9QavR9hfShgpEBG3zekorAeD7W1jfq2o3pump", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CBdCxKo9QavR9hfShgpEBG3zekorAeD7W1jfq2o3pump/logo.png b/blockchains/solana/assets/CBdCxKo9QavR9hfShgpEBG3zekorAeD7W1jfq2o3pump/logo.png new file mode 100644 index 0000000000000..f16a312232ec6 Binary files /dev/null and b/blockchains/solana/assets/CBdCxKo9QavR9hfShgpEBG3zekorAeD7W1jfq2o3pump/logo.png differ diff --git a/blockchains/solana/assets/CDDybYjY6y7RBKXXaCKHRhUhb31y3rjGB7idTdeFpump/info.json b/blockchains/solana/assets/CDDybYjY6y7RBKXXaCKHRhUhb31y3rjGB7idTdeFpump/info.json new file mode 100644 index 0000000000000..1fb0ac803d70f --- /dev/null +++ b/blockchains/solana/assets/CDDybYjY6y7RBKXXaCKHRhUhb31y3rjGB7idTdeFpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Farting Unicorn", + "type": "SPL", + "symbol": "FU", + "decimals": 6, + "description": "$FU embodies these principles by transferring full control and governance to its community.", + "website": "https://www.fartingunicorn.net/", + "explorer": "https://solscan.io/token/CDDybYjY6y7RBKXXaCKHRhUhb31y3rjGB7idTdeFpump", + "id": "CDDybYjY6y7RBKXXaCKHRhUhb31y3rjGB7idTdeFpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/fartinguni" + }, + { + "name": "telegram", + "url": "https://t.me/fartinguni" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CDDybYjY6y7RBKXXaCKHRhUhb31y3rjGB7idTdeFpump/logo.png b/blockchains/solana/assets/CDDybYjY6y7RBKXXaCKHRhUhb31y3rjGB7idTdeFpump/logo.png new file mode 100644 index 0000000000000..3f78b018e163a Binary files /dev/null and b/blockchains/solana/assets/CDDybYjY6y7RBKXXaCKHRhUhb31y3rjGB7idTdeFpump/logo.png differ diff --git a/blockchains/solana/assets/CJRoTbu98waCCuLFfLuJ2kXawLk889fqW4UAAbwondo/info.json b/blockchains/solana/assets/CJRoTbu98waCCuLFfLuJ2kXawLk889fqW4UAAbwondo/info.json new file mode 100644 index 0000000000000..0205655daa6de --- /dev/null +++ b/blockchains/solana/assets/CJRoTbu98waCCuLFfLuJ2kXawLk889fqW4UAAbwondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Exodus Movement (Ondo Tokenized)", + "type": "SPL", + "symbol": "EXODon", + "decimals": 9, + "description": "EXODon is the Ondo Tokenized version of Exodus Movement, giving tokenholders economic exposure similar to holding EXOD and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/CJRoTbu98waCCuLFfLuJ2kXawLk889fqW4UAAbwondo", + "status": "active", + "id": "CJRoTbu98waCCuLFfLuJ2kXawLk889fqW4UAAbwondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/exodus-movement-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CJRoTbu98waCCuLFfLuJ2kXawLk889fqW4UAAbwondo/logo.png b/blockchains/solana/assets/CJRoTbu98waCCuLFfLuJ2kXawLk889fqW4UAAbwondo/logo.png new file mode 100644 index 0000000000000..6cedbcd6a8482 Binary files /dev/null and b/blockchains/solana/assets/CJRoTbu98waCCuLFfLuJ2kXawLk889fqW4UAAbwondo/logo.png differ diff --git a/blockchains/solana/assets/CJTttRCmShQRjientZnYUcM9z1jRPv2437oS4Ewovirt/info.json b/blockchains/solana/assets/CJTttRCmShQRjientZnYUcM9z1jRPv2437oS4Ewovirt/info.json new file mode 100644 index 0000000000000..adba48bfb7750 --- /dev/null +++ b/blockchains/solana/assets/CJTttRCmShQRjientZnYUcM9z1jRPv2437oS4Ewovirt/info.json @@ -0,0 +1,25 @@ +{ + "name": "XyraDAO by VIRTUALS", + "type": "SOL", + "symbol": "XYRA", + "decimals": 6, + "description": "XyraDAO: Co-own AI Agents performing real-world, monetizable tasks that generate revenue and increase the value of the $XYRA ecosystem.", + "website": "https://xyradao.ai/", + "explorer": "https://solscan.io/token/CJTttRCmShQRjientZnYUcM9z1jRPv2437oS4Ewovirt", + "id": "CJTttRCmShQRjientZnYUcM9z1jRPv2437oS4Ewovirt", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Xyra_Dao" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/xyradao-by-virtuals" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/CJTttRCmShQRjientZnYUcM9z1jRPv2437oS4Ewovirt/logo.png b/blockchains/solana/assets/CJTttRCmShQRjientZnYUcM9z1jRPv2437oS4Ewovirt/logo.png new file mode 100644 index 0000000000000..eb781910d6b88 Binary files /dev/null and b/blockchains/solana/assets/CJTttRCmShQRjientZnYUcM9z1jRPv2437oS4Ewovirt/logo.png differ diff --git a/blockchains/solana/assets/CKaKtYvz6dKPyMvYq9Rh3UBrnNqYZAyd7iF4hJtjUvks/info.json b/blockchains/solana/assets/CKaKtYvz6dKPyMvYq9Rh3UBrnNqYZAyd7iF4hJtjUvks/info.json index bad799c7bd5af..6da5ab0fbc77a 100644 --- a/blockchains/solana/assets/CKaKtYvz6dKPyMvYq9Rh3UBrnNqYZAyd7iF4hJtjUvks/info.json +++ b/blockchains/solana/assets/CKaKtYvz6dKPyMvYq9Rh3UBrnNqYZAyd7iF4hJtjUvks/info.json @@ -10,8 +10,8 @@ "id": "CKaKtYvz6dKPyMvYq9Rh3UBrnNqYZAyd7iF4hJtjUvks", "links": [ { - "name": "twitter", - "url": "https://twitter.com/GariToken" + "name": "x", + "url": "https://x.com/GariToken" }, { "name": "facebook", diff --git a/blockchains/solana/assets/CKiW2P4zngHa6fiPhMJGGhgDZm638dWotxkzgi8PsDxf/info.json b/blockchains/solana/assets/CKiW2P4zngHa6fiPhMJGGhgDZm638dWotxkzgi8PsDxf/info.json new file mode 100644 index 0000000000000..d764785e47333 --- /dev/null +++ b/blockchains/solana/assets/CKiW2P4zngHa6fiPhMJGGhgDZm638dWotxkzgi8PsDxf/info.json @@ -0,0 +1,21 @@ +{ + "name": "Katchu", + "symbol": "KATCHU", + "type": "SPL", + "decimals": 6, + "description": "KATCHU is a mix of cats, memes and electricity", + "website": "https://katchu.io/", + "explorer": "https://solscan.io/token/CKiW2P4zngHa6fiPhMJGGhgDZm638dWotxkzgi8PsDxf", + "status": "active", + "id": "CKiW2P4zngHa6fiPhMJGGhgDZm638dWotxkzgi8PsDxf", + "links": [ + { + "name": "x", + "url": "https://x.com/level100coin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/katchu-coin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CKiW2P4zngHa6fiPhMJGGhgDZm638dWotxkzgi8PsDxf/logo.png b/blockchains/solana/assets/CKiW2P4zngHa6fiPhMJGGhgDZm638dWotxkzgi8PsDxf/logo.png new file mode 100644 index 0000000000000..c47936c756597 Binary files /dev/null and b/blockchains/solana/assets/CKiW2P4zngHa6fiPhMJGGhgDZm638dWotxkzgi8PsDxf/logo.png differ diff --git a/blockchains/solana/assets/CMe1QWsoDWFUi95GMkk7mCTnnjxBxtnJ3jbrEhQTVWL5/info.json b/blockchains/solana/assets/CMe1QWsoDWFUi95GMkk7mCTnnjxBxtnJ3jbrEhQTVWL5/info.json new file mode 100644 index 0000000000000..61fe2bef04f83 --- /dev/null +++ b/blockchains/solana/assets/CMe1QWsoDWFUi95GMkk7mCTnnjxBxtnJ3jbrEhQTVWL5/info.json @@ -0,0 +1,21 @@ +{ + "name": "Sage Universe", + "type": "SPL", + "symbol": "SAGE", + "decimals": 9, + "website": "https://sageuniverse.meme/", + "description": "Sage Universe is all about changing lives, building community, and helping eachother reach their goals. At Sage Universe we believe in the power of coming together and making real meaningful change.", + "explorer": "https://solscan.io/token/CMe1QWsoDWFUi95GMkk7mCTnnjxBxtnJ3jbrEhQTVWL5", + "status": "active", + "id": "CMe1QWsoDWFUi95GMkk7mCTnnjxBxtnJ3jbrEhQTVWL5", + "links": [ + { + "name": "x", + "url": "https://x.com/SAGEUNIVERS3" + }, + { + "name": "telegram", + "url": "https://t.me/sage_universe" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CMe1QWsoDWFUi95GMkk7mCTnnjxBxtnJ3jbrEhQTVWL5/logo.png b/blockchains/solana/assets/CMe1QWsoDWFUi95GMkk7mCTnnjxBxtnJ3jbrEhQTVWL5/logo.png new file mode 100644 index 0000000000000..689f6af80e70b Binary files /dev/null and b/blockchains/solana/assets/CMe1QWsoDWFUi95GMkk7mCTnnjxBxtnJ3jbrEhQTVWL5/logo.png differ diff --git a/blockchains/solana/assets/CN162nCPpq3DxPCyKLbAvEJeB1aCxsnVTEG4ZU8vpump/info.json b/blockchains/solana/assets/CN162nCPpq3DxPCyKLbAvEJeB1aCxsnVTEG4ZU8vpump/info.json new file mode 100644 index 0000000000000..58629b410d2d2 --- /dev/null +++ b/blockchains/solana/assets/CN162nCPpq3DxPCyKLbAvEJeB1aCxsnVTEG4ZU8vpump/info.json @@ -0,0 +1,30 @@ +{ + "name": "AGENDA 47", + "type": "SOL", + "symbol": "A47", + "decimals": 6, + "description": "What is A47? A47 is a next–generation AI–powered content and meme ecosystem, driven by: AI-Generated Content 47 AI Agents generating humorous takes on global political and economic events. Tokenomics Integration A model where user engagement directly correlates with rewards, incentivizing participation. Community-Driven Approach Powered by crypto enthusiasts, meme creators, and content contributors.", + "website": "https://a47news.ai/", + "explorer": "https://solscan.io/token/CN162nCPpq3DxPCyKLbAvEJeB1aCxsnVTEG4ZU8vpump", + "id": "CN162nCPpq3DxPCyKLbAvEJeB1aCxsnVTEG4ZU8vpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/a47news_ai" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/agenda-47/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/agenda-47" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/CN162nCPpq3DxPCyKLbAvEJeB1aCxsnVTEG4ZU8vpump/logo.png b/blockchains/solana/assets/CN162nCPpq3DxPCyKLbAvEJeB1aCxsnVTEG4ZU8vpump/logo.png new file mode 100644 index 0000000000000..8e10e9401097d Binary files /dev/null and b/blockchains/solana/assets/CN162nCPpq3DxPCyKLbAvEJeB1aCxsnVTEG4ZU8vpump/logo.png differ diff --git a/blockchains/solana/assets/CNvitvFnSM5ed6K28RUNSaAjqqz5tX1rA5HgaBN9pump/info.json b/blockchains/solana/assets/CNvitvFnSM5ed6K28RUNSaAjqqz5tX1rA5HgaBN9pump/info.json new file mode 100644 index 0000000000000..d9b9ba006a766 --- /dev/null +++ b/blockchains/solana/assets/CNvitvFnSM5ed6K28RUNSaAjqqz5tX1rA5HgaBN9pump/info.json @@ -0,0 +1,17 @@ +{ + "name": "First Convicted RACCON", + "symbol": "FRED", + "type": "SPL", + "decimals": 6, + "description": "Fred is a Raccon = raccoon convinct. political meme token. Part of the movement for justice for animals", + "website": "https://x.com/fred_cto_sol", + "explorer": "https://solscan.io/token/CNvitvFnSM5ed6K28RUNSaAjqqz5tX1rA5HgaBN9pump", + "status": "active", + "id": "CNvitvFnSM5ed6K28RUNSaAjqqz5tX1rA5HgaBN9pump", + "links": [ + { + "name": "x", + "url": "https://x.com/fred_cto_sol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CNvitvFnSM5ed6K28RUNSaAjqqz5tX1rA5HgaBN9pump/logo.png b/blockchains/solana/assets/CNvitvFnSM5ed6K28RUNSaAjqqz5tX1rA5HgaBN9pump/logo.png new file mode 100644 index 0000000000000..2025561fb0a64 Binary files /dev/null and b/blockchains/solana/assets/CNvitvFnSM5ed6K28RUNSaAjqqz5tX1rA5HgaBN9pump/logo.png differ diff --git a/blockchains/solana/assets/CNyMaRR4krm1yAxfCvPXevNMArZZZk7sRqKwX68uCeJk/info.json b/blockchains/solana/assets/CNyMaRR4krm1yAxfCvPXevNMArZZZk7sRqKwX68uCeJk/info.json new file mode 100644 index 0000000000000..a7f1f770e2934 --- /dev/null +++ b/blockchains/solana/assets/CNyMaRR4krm1yAxfCvPXevNMArZZZk7sRqKwX68uCeJk/info.json @@ -0,0 +1,21 @@ +{ + "name": "Major Frog", + "website": "https://themajorfrog.com/", + "description": "The Major Frog Incident: A Glimpse Into the Truth They Don’t Want You to See", + "explorer": "https://solscan.io/token/CNyMaRR4krm1yAxfCvPXevNMArZZZk7sRqKwX68uCeJk", + "type": "SPL", + "symbol": "MAJOR", + "decimals": 9, + "status": "active", + "id": "CNyMaRR4krm1yAxfCvPXevNMArZZZk7sRqKwX68uCeJk", + "links": [ + { + "name": "x", + "url": "https://x.com/TheMajorFrog" + }, + { + "name": "telegram", + "url": "https://t.me/+EZ2IS35heZA1OGMx" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CNyMaRR4krm1yAxfCvPXevNMArZZZk7sRqKwX68uCeJk/logo.png b/blockchains/solana/assets/CNyMaRR4krm1yAxfCvPXevNMArZZZk7sRqKwX68uCeJk/logo.png new file mode 100644 index 0000000000000..20e6536666ae1 Binary files /dev/null and b/blockchains/solana/assets/CNyMaRR4krm1yAxfCvPXevNMArZZZk7sRqKwX68uCeJk/logo.png differ diff --git a/blockchains/solana/assets/CQSzJzwW5H1oyWrp6QhfUKYYwyovbSiVDKnAxNfb1tJC/info.json b/blockchains/solana/assets/CQSzJzwW5H1oyWrp6QhfUKYYwyovbSiVDKnAxNfb1tJC/info.json new file mode 100644 index 0000000000000..24fa7149cb01f --- /dev/null +++ b/blockchains/solana/assets/CQSzJzwW5H1oyWrp6QhfUKYYwyovbSiVDKnAxNfb1tJC/info.json @@ -0,0 +1,17 @@ +{ + "name": "Stanley Cup Coin", + "website": "https://www.stanleyco.in", + "description": "Tired of looking like a LOSER when you drink from your regular quenchers? Have a physical Stanley Quencher but can’t represent your ownership online?", + "explorer": "https://solscan.io/token/CQSzJzwW5H1oyWrp6QhfUKYYwyovbSiVDKnAxNfb1tJC", + "type": "SPL", + "symbol": "STAN", + "decimals": 5, + "status": "active", + "id": "CQSzJzwW5H1oyWrp6QhfUKYYwyovbSiVDKnAxNfb1tJC", + "links": [ + { + "name": "x", + "url": "https://x.com/StanleyCupCoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CQSzJzwW5H1oyWrp6QhfUKYYwyovbSiVDKnAxNfb1tJC/logo.png b/blockchains/solana/assets/CQSzJzwW5H1oyWrp6QhfUKYYwyovbSiVDKnAxNfb1tJC/logo.png new file mode 100644 index 0000000000000..267de150a6aa4 Binary files /dev/null and b/blockchains/solana/assets/CQSzJzwW5H1oyWrp6QhfUKYYwyovbSiVDKnAxNfb1tJC/logo.png differ diff --git a/blockchains/solana/assets/CQvadZTR8vikRqqwyhvYV8YpdfCRjUCGyQwCuY4rxBQt/info.json b/blockchains/solana/assets/CQvadZTR8vikRqqwyhvYV8YpdfCRjUCGyQwCuY4rxBQt/info.json new file mode 100644 index 0000000000000..4ffebd5a8ab76 --- /dev/null +++ b/blockchains/solana/assets/CQvadZTR8vikRqqwyhvYV8YpdfCRjUCGyQwCuY4rxBQt/info.json @@ -0,0 +1,25 @@ +{ + "name": "Conan", + "type": "SOL", + "symbol": "Conan", + "decimals": 6, + "description": "Conan Token ($CONAN) is a crypto asset inspired by the legendary strength and determination of the Belgian Malinois called Conan, he was huge friend of Trump. Embodying resilience, loyalty, and leadership, $CONAN is designed to lead the pack in the digital asset space. Join the movement and unleash the power of the ultimate crypto guardian.", + "website": "https://getconanmemes.com/", + "explorer": "https://solscan.io/token/CQvadZTR8vikRqqwyhvYV8YpdfCRjUCGyQwCuY4rxBQt", + "id": "CQvadZTR8vikRqqwyhvYV8YpdfCRjUCGyQwCuY4rxBQt", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/conan_onsolana" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/conan-meme" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/CQvadZTR8vikRqqwyhvYV8YpdfCRjUCGyQwCuY4rxBQt/logo.png b/blockchains/solana/assets/CQvadZTR8vikRqqwyhvYV8YpdfCRjUCGyQwCuY4rxBQt/logo.png new file mode 100644 index 0000000000000..531463a3feb38 Binary files /dev/null and b/blockchains/solana/assets/CQvadZTR8vikRqqwyhvYV8YpdfCRjUCGyQwCuY4rxBQt/logo.png differ diff --git a/blockchains/solana/assets/CRAMvzDsSpXYsFpcoDr6vFLJMBeftez1E7277xwPpump/info.json b/blockchains/solana/assets/CRAMvzDsSpXYsFpcoDr6vFLJMBeftez1E7277xwPpump/info.json new file mode 100644 index 0000000000000..5f6d43d3cdf9e --- /dev/null +++ b/blockchains/solana/assets/CRAMvzDsSpXYsFpcoDr6vFLJMBeftez1E7277xwPpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "PEPECAT", + "symbol": "PEPECAT", + "type": "SPL", + "decimals": 6, + "description": "$PEPECAT is the memecoin that meows in unison for cat lovers and fans of the famous Pepe!", + "website": "https://pepecat.vip/", + "explorer": "https://solscan.io/token/CRAMvzDsSpXYsFpcoDr6vFLJMBeftez1E7277xwPpump", + "status": "active", + "id": "CRAMvzDsSpXYsFpcoDr6vFLJMBeftez1E7277xwPpump", + "links": [ + { + "name": "x", + "url": "https://x.com/pepecattoken" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pepecat-2" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CRAMvzDsSpXYsFpcoDr6vFLJMBeftez1E7277xwPpump/logo.png b/blockchains/solana/assets/CRAMvzDsSpXYsFpcoDr6vFLJMBeftez1E7277xwPpump/logo.png new file mode 100644 index 0000000000000..9140876cefd36 Binary files /dev/null and b/blockchains/solana/assets/CRAMvzDsSpXYsFpcoDr6vFLJMBeftez1E7277xwPpump/logo.png differ diff --git a/blockchains/solana/assets/CRWNYkqdgvhGGae9CKfNka58j6QQkaD5bLhKXvUYqnc1/info.json b/blockchains/solana/assets/CRWNYkqdgvhGGae9CKfNka58j6QQkaD5bLhKXvUYqnc1/info.json new file mode 100644 index 0000000000000..6d8651b5963b6 --- /dev/null +++ b/blockchains/solana/assets/CRWNYkqdgvhGGae9CKfNka58j6QQkaD5bLhKXvUYqnc1/info.json @@ -0,0 +1,21 @@ +{ + "name": "Crowny", + "symbol": "CRWNY", + "type": "SPL", + "decimals": 6, + "description": "Crowny has created a new platform to help solve some of the current dilemmas within the world of advertising.", + "website": "https://crowny.io/", + "explorer": "https://solscan.io/token/CRWNYkqdgvhGGae9CKfNka58j6QQkaD5bLhKXvUYqnc1", + "status": "active", + "id": "CRWNYkqdgvhGGae9CKfNka58j6QQkaD5bLhKXvUYqnc1", + "links": [ + { + "name": "x", + "url": "https://x.com/crownyio" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crowny" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CRWNYkqdgvhGGae9CKfNka58j6QQkaD5bLhKXvUYqnc1/logo.png b/blockchains/solana/assets/CRWNYkqdgvhGGae9CKfNka58j6QQkaD5bLhKXvUYqnc1/logo.png new file mode 100644 index 0000000000000..26d7e4934f532 Binary files /dev/null and b/blockchains/solana/assets/CRWNYkqdgvhGGae9CKfNka58j6QQkaD5bLhKXvUYqnc1/logo.png differ diff --git a/blockchains/solana/assets/CS7LmjtuugEUWtFgfyto79nrksKigv7Fdcp9qPuigdLs/info.json b/blockchains/solana/assets/CS7LmjtuugEUWtFgfyto79nrksKigv7Fdcp9qPuigdLs/info.json new file mode 100644 index 0000000000000..1cd7a19aef9e5 --- /dev/null +++ b/blockchains/solana/assets/CS7LmjtuugEUWtFgfyto79nrksKigv7Fdcp9qPuigdLs/info.json @@ -0,0 +1,21 @@ +{ + "name": "littlemanyu", + "symbol": "Manyu", + "type": "SPL", + "decimals": 6, + "description": "Memecoin in honor to the trending black SHIBA INU from tiktok with over 20M followers worldwide.", + "website": "https://littlemanyu.xyz/", + "explorer": "https://solscan.io/token/CS7LmjtuugEUWtFgfyto79nrksKigv7Fdcp9qPuigdLs", + "status": "active", + "id": "CS7LmjtuugEUWtFgfyto79nrksKigv7Fdcp9qPuigdLs", + "links": [ + { + "name": "x", + "url": "https://x.com/ManyuTokenSOL" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/littlemanyu" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CS7LmjtuugEUWtFgfyto79nrksKigv7Fdcp9qPuigdLs/logo.png b/blockchains/solana/assets/CS7LmjtuugEUWtFgfyto79nrksKigv7Fdcp9qPuigdLs/logo.png new file mode 100644 index 0000000000000..25e7e166d6a37 Binary files /dev/null and b/blockchains/solana/assets/CS7LmjtuugEUWtFgfyto79nrksKigv7Fdcp9qPuigdLs/logo.png differ diff --git a/blockchains/solana/assets/CSMCbMvdW8Gb23dmUduFUCXMg9wPxrDkb5kzDV4YxcZY/info.json b/blockchains/solana/assets/CSMCbMvdW8Gb23dmUduFUCXMg9wPxrDkb5kzDV4YxcZY/info.json new file mode 100644 index 0000000000000..ccc699d6d4c60 --- /dev/null +++ b/blockchains/solana/assets/CSMCbMvdW8Gb23dmUduFUCXMg9wPxrDkb5kzDV4YxcZY/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDT", + "type": "SPL", + "symbol": "FAKE USDT", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/CSMCbMvdW8Gb23dmUduFUCXMg9wPxrDkb5kzDV4YxcZY", + "explorer": "https://solscan.io/token/CSMCbMvdW8Gb23dmUduFUCXMg9wPxrDkb5kzDV4YxcZY", + "status": "spam", + "id": "CSMCbMvdW8Gb23dmUduFUCXMg9wPxrDkb5kzDV4YxcZY" +} \ No newline at end of file diff --git a/blockchains/solana/assets/CTg3ZgYx79zrE1MteDVkmkcGniiFrK1hJ6yiabropump/info.json b/blockchains/solana/assets/CTg3ZgYx79zrE1MteDVkmkcGniiFrK1hJ6yiabropump/info.json new file mode 100644 index 0000000000000..2031fcd64f631 --- /dev/null +++ b/blockchains/solana/assets/CTg3ZgYx79zrE1MteDVkmkcGniiFrK1hJ6yiabropump/info.json @@ -0,0 +1,21 @@ +{ + "name": "NEIRO", + "website": "https://neirobropump.com", + "description": "Neiro Solana (neirobropump.com) (NEIRO) is a cryptocurrency launched in 2024and operates on the Solana platform.", + "explorer": "https://solscan.io/token/CTg3ZgYx79zrE1MteDVkmkcGniiFrK1hJ6yiabropump", + "type": "SPL", + "symbol": "NEIRO", + "decimals": 6, + "status": "active", + "id": "CTg3ZgYx79zrE1MteDVkmkcGniiFrK1hJ6yiabropump", + "links": [ + { + "name": "x", + "url": "https://x.com/neirowoof" + }, + { + "name": "telegram", + "url": "https://t.me/NEIROBROPUMP" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CTg3ZgYx79zrE1MteDVkmkcGniiFrK1hJ6yiabropump/logo.png b/blockchains/solana/assets/CTg3ZgYx79zrE1MteDVkmkcGniiFrK1hJ6yiabropump/logo.png new file mode 100644 index 0000000000000..ed8d0e199867c Binary files /dev/null and b/blockchains/solana/assets/CTg3ZgYx79zrE1MteDVkmkcGniiFrK1hJ6yiabropump/logo.png differ diff --git a/blockchains/solana/assets/CUsEVhFGfjr2wwqjQFd7LrowYy6UhXY2HfAppUzTsihN/info.json b/blockchains/solana/assets/CUsEVhFGfjr2wwqjQFd7LrowYy6UhXY2HfAppUzTsihN/info.json new file mode 100644 index 0000000000000..a0e66eaead26f --- /dev/null +++ b/blockchains/solana/assets/CUsEVhFGfjr2wwqjQFd7LrowYy6UhXY2HfAppUzTsihN/info.json @@ -0,0 +1,17 @@ +{ + "name": "Hump", + "website": "https://hump.io", + "description": "HUMP isn't your average meme token—it's a beacon of progress in the world of decentralized finance, Inspired by the adorable image of a furry friend", + "explorer": "https://solscan.io/token/CUsEVhFGfjr2wwqjQFd7LrowYy6UhXY2HfAppUzTsihN", + "type": "SPL", + "symbol": "HUMP", + "decimals": 6, + "status": "active", + "id": "CUsEVhFGfjr2wwqjQFd7LrowYy6UhXY2HfAppUzTsihN", + "links": [ + { + "name": "x", + "url": "https://x.com/Humptoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CUsEVhFGfjr2wwqjQFd7LrowYy6UhXY2HfAppUzTsihN/logo.png b/blockchains/solana/assets/CUsEVhFGfjr2wwqjQFd7LrowYy6UhXY2HfAppUzTsihN/logo.png new file mode 100644 index 0000000000000..f68317d6eacab Binary files /dev/null and b/blockchains/solana/assets/CUsEVhFGfjr2wwqjQFd7LrowYy6UhXY2HfAppUzTsihN/logo.png differ diff --git a/blockchains/solana/assets/CWE8jPTUYhdCTZYWPTe1o5DFqfdjzWKc9WKz6rSjQUdG/info.json b/blockchains/solana/assets/CWE8jPTUYhdCTZYWPTe1o5DFqfdjzWKc9WKz6rSjQUdG/info.json new file mode 100644 index 0000000000000..3f2bbcf7c079c --- /dev/null +++ b/blockchains/solana/assets/CWE8jPTUYhdCTZYWPTe1o5DFqfdjzWKc9WKz6rSjQUdG/info.json @@ -0,0 +1,32 @@ +{ + "name": "Chainlink", + "website": "https://chain.link", + "description": "Chainlink is a decentralized oracle service, which aims to connect smart contracts with data from the real world. Oracles are needed to function as data feeds in smart contracts. Oracles provide external data (e.g. temperature, weather) that can drive smart contract executions. Participants on the network are incentivized (through rewards) to provide smart contracts with access to external data feeds.", + "explorer": "https://solscan.io/token/CWE8jPTUYhdCTZYWPTe1o5DFqfdjzWKc9WKz6rSjQUdG", + "type": "SPL", + "symbol": "LINK", + "decimals": 6, + "status": "active", + "id": "CWE8jPTUYhdCTZYWPTe1o5DFqfdjzWKc9WKz6rSjQUdG", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/smartcontractkit/chainlink" + }, + { + "name": "x", + "url": "https://x.com/chainlink" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/chainlink" + }, + { + "name": "whitepaper", + "url": "https://link.smartcontract.com/whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CWE8jPTUYhdCTZYWPTe1o5DFqfdjzWKc9WKz6rSjQUdG/logo.png b/blockchains/solana/assets/CWE8jPTUYhdCTZYWPTe1o5DFqfdjzWKc9WKz6rSjQUdG/logo.png new file mode 100644 index 0000000000000..ab55f5e21fae2 Binary files /dev/null and b/blockchains/solana/assets/CWE8jPTUYhdCTZYWPTe1o5DFqfdjzWKc9WKz6rSjQUdG/logo.png differ diff --git a/blockchains/solana/assets/CXPLyc3EX8WySgEXLbjhuA7vy8EKQokVJYQuJm2jpump/info.json b/blockchains/solana/assets/CXPLyc3EX8WySgEXLbjhuA7vy8EKQokVJYQuJm2jpump/info.json new file mode 100644 index 0000000000000..aa6aad96c820e --- /dev/null +++ b/blockchains/solana/assets/CXPLyc3EX8WySgEXLbjhuA7vy8EKQokVJYQuJm2jpump/info.json @@ -0,0 +1,30 @@ +{ + "name": "SENTAI", + "type": "SOL", + "symbol": "SENTAI", + "decimals": 6, + "description": "SENTAI powered by Eliza OS and IoTeX, is an innovative AI agent built to perceive and engage with the real world through DePIN infrastructure.", + "website": "https://iotex.io/", + "explorer": "https://solscan.io/token/CXPLyc3EX8WySgEXLbjhuA7vy8EKQokVJYQuJm2jpump", + "id": "CXPLyc3EX8WySgEXLbjhuA7vy8EKQokVJYQuJm2jpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Bino_AI" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sentai-iotex/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sentai-2" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/CXPLyc3EX8WySgEXLbjhuA7vy8EKQokVJYQuJm2jpump/logo.png b/blockchains/solana/assets/CXPLyc3EX8WySgEXLbjhuA7vy8EKQokVJYQuJm2jpump/logo.png new file mode 100644 index 0000000000000..441642af827d1 Binary files /dev/null and b/blockchains/solana/assets/CXPLyc3EX8WySgEXLbjhuA7vy8EKQokVJYQuJm2jpump/logo.png differ diff --git a/blockchains/solana/assets/CY8ttw5rYCT6fFBJwqXofefqa7Ji9E8zfLmhRLmondo/info.json b/blockchains/solana/assets/CY8ttw5rYCT6fFBJwqXofefqa7Ji9E8zfLmhRLmondo/info.json new file mode 100644 index 0000000000000..5ed936a463d9c --- /dev/null +++ b/blockchains/solana/assets/CY8ttw5rYCT6fFBJwqXofefqa7Ji9E8zfLmhRLmondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Freeport-McMoRan (Ondo Tokenized)", + "type": "SPL", + "symbol": "FCXon", + "decimals": 9, + "description": "FCXon is the Ondo Tokenized version of Freeport-McMoRan, giving tokenholders economic exposure similar to holding FCX and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/CY8ttw5rYCT6fFBJwqXofefqa7Ji9E8zfLmhRLmondo", + "status": "active", + "id": "CY8ttw5rYCT6fFBJwqXofefqa7Ji9E8zfLmhRLmondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/freeport-mcmoran-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CY8ttw5rYCT6fFBJwqXofefqa7Ji9E8zfLmhRLmondo/logo.png b/blockchains/solana/assets/CY8ttw5rYCT6fFBJwqXofefqa7Ji9E8zfLmhRLmondo/logo.png new file mode 100644 index 0000000000000..1e2bfeca37367 Binary files /dev/null and b/blockchains/solana/assets/CY8ttw5rYCT6fFBJwqXofefqa7Ji9E8zfLmhRLmondo/logo.png differ diff --git a/blockchains/solana/assets/CYAwMGyuNSDu7NpuccNwcxMNS5Bu9akxU2Jooyiondo/info.json b/blockchains/solana/assets/CYAwMGyuNSDu7NpuccNwcxMNS5Bu9akxU2Jooyiondo/info.json new file mode 100644 index 0000000000000..5a3f6b45d7cf8 --- /dev/null +++ b/blockchains/solana/assets/CYAwMGyuNSDu7NpuccNwcxMNS5Bu9akxU2Jooyiondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Franklin Focused Growth ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "FFOGon", + "decimals": 9, + "description": "FFOGon is the Ondo Tokenized version of the Franklin Focused Growth ETF, giving tokenholders economic exposure similar to holding FFOG and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/CYAwMGyuNSDu7NpuccNwcxMNS5Bu9akxU2Jooyiondo", + "status": "active", + "id": "CYAwMGyuNSDu7NpuccNwcxMNS5Bu9akxU2Jooyiondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/franklin-focused-growth-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CYAwMGyuNSDu7NpuccNwcxMNS5Bu9akxU2Jooyiondo/logo.png b/blockchains/solana/assets/CYAwMGyuNSDu7NpuccNwcxMNS5Bu9akxU2Jooyiondo/logo.png new file mode 100644 index 0000000000000..34299b5ba23f3 Binary files /dev/null and b/blockchains/solana/assets/CYAwMGyuNSDu7NpuccNwcxMNS5Bu9akxU2Jooyiondo/logo.png differ diff --git a/blockchains/solana/assets/CYqLHM92EhmF83iNgfN4A1j2ckjsHigRvXu7xHCondo/info.json b/blockchains/solana/assets/CYqLHM92EhmF83iNgfN4A1j2ckjsHigRvXu7xHCondo/info.json new file mode 100644 index 0000000000000..96ed8740e8a68 --- /dev/null +++ b/blockchains/solana/assets/CYqLHM92EhmF83iNgfN4A1j2ckjsHigRvXu7xHCondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Franklin Responsibly Sourced Gold ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "FGDLon", + "decimals": 9, + "description": "FGDLon is the Ondo Tokenized version of the Franklin Responsibly Sourced Gold ETF, giving tokenholders economic exposure similar to holding FGDL and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/CYqLHM92EhmF83iNgfN4A1j2ckjsHigRvXu7xHCondo", + "status": "active", + "id": "CYqLHM92EhmF83iNgfN4A1j2ckjsHigRvXu7xHCondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/franklin-responsibly-sourced-gold-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CYqLHM92EhmF83iNgfN4A1j2ckjsHigRvXu7xHCondo/logo.png b/blockchains/solana/assets/CYqLHM92EhmF83iNgfN4A1j2ckjsHigRvXu7xHCondo/logo.png new file mode 100644 index 0000000000000..3537d0913db28 Binary files /dev/null and b/blockchains/solana/assets/CYqLHM92EhmF83iNgfN4A1j2ckjsHigRvXu7xHCondo/logo.png differ diff --git a/blockchains/solana/assets/CZ3FxxSto7tsjkSkqMek1C5p3RCFFmkwKqW57nbondo/info.json b/blockchains/solana/assets/CZ3FxxSto7tsjkSkqMek1C5p3RCFFmkwKqW57nbondo/info.json new file mode 100644 index 0000000000000..6f81e8c85f05a --- /dev/null +++ b/blockchains/solana/assets/CZ3FxxSto7tsjkSkqMek1C5p3RCFFmkwKqW57nbondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Franklin High Yield Corporate ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "FLHYon", + "decimals": 9, + "description": "FLHYon is the Ondo Tokenized version of the Franklin High Yield Corporate ETF, giving tokenholders economic exposure similar to holding FLHY and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/CZ3FxxSto7tsjkSkqMek1C5p3RCFFmkwKqW57nbondo", + "status": "active", + "id": "CZ3FxxSto7tsjkSkqMek1C5p3RCFFmkwKqW57nbondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/franklin-high-yield-corporate-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CZ3FxxSto7tsjkSkqMek1C5p3RCFFmkwKqW57nbondo/logo.png b/blockchains/solana/assets/CZ3FxxSto7tsjkSkqMek1C5p3RCFFmkwKqW57nbondo/logo.png new file mode 100644 index 0000000000000..344948ada7dd1 Binary files /dev/null and b/blockchains/solana/assets/CZ3FxxSto7tsjkSkqMek1C5p3RCFFmkwKqW57nbondo/logo.png differ diff --git a/blockchains/solana/assets/CZ9GBn1okotqKNUUqoxk4PF2JVi59bw5GWvVo6Dondo/info.json b/blockchains/solana/assets/CZ9GBn1okotqKNUUqoxk4PF2JVi59bw5GWvVo6Dondo/info.json new file mode 100644 index 0000000000000..6a66ded48b151 --- /dev/null +++ b/blockchains/solana/assets/CZ9GBn1okotqKNUUqoxk4PF2JVi59bw5GWvVo6Dondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Franklin US Large Cap Multifactor Index ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "FLQLon", + "decimals": 9, + "description": "FLQLon is the Ondo Tokenized version of the Franklin US Large Cap Multifactor Index ETF, giving tokenholders economic exposure similar to holding FLQL and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/CZ9GBn1okotqKNUUqoxk4PF2JVi59bw5GWvVo6Dondo", + "status": "active", + "id": "CZ9GBn1okotqKNUUqoxk4PF2JVi59bw5GWvVo6Dondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/franklin-us-large-cap-multifactor-index-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CZ9GBn1okotqKNUUqoxk4PF2JVi59bw5GWvVo6Dondo/logo.png b/blockchains/solana/assets/CZ9GBn1okotqKNUUqoxk4PF2JVi59bw5GWvVo6Dondo/logo.png new file mode 100644 index 0000000000000..34299b5ba23f3 Binary files /dev/null and b/blockchains/solana/assets/CZ9GBn1okotqKNUUqoxk4PF2JVi59bw5GWvVo6Dondo/logo.png differ diff --git a/blockchains/solana/assets/CbZb4TLMe1NaFTzyxB7LaymvmcQvMwQX2Lw1YKwYH9kk/info.json b/blockchains/solana/assets/CbZb4TLMe1NaFTzyxB7LaymvmcQvMwQX2Lw1YKwYH9kk/info.json new file mode 100644 index 0000000000000..67cd67fbb7aff --- /dev/null +++ b/blockchains/solana/assets/CbZb4TLMe1NaFTzyxB7LaymvmcQvMwQX2Lw1YKwYH9kk/info.json @@ -0,0 +1,17 @@ +{ + "name": "Balin Bank", + "website": "https://www.balinbank.com/", + "description": "$BALIN is the first meme coin launched on the Solana Network with its own decentralised banking system created by Alvey Chain Team.", + "explorer": "https://solscan.io/token/CbZb4TLMe1NaFTzyxB7LaymvmcQvMwQX2Lw1YKwYH9kk", + "type": "SPL", + "symbol": "Balin", + "decimals": 9, + "status": "active", + "id": "CbZb4TLMe1NaFTzyxB7LaymvmcQvMwQX2Lw1YKwYH9kk", + "links": [ + { + "name": "x", + "url": "https://x.com/BalinBank" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CbZb4TLMe1NaFTzyxB7LaymvmcQvMwQX2Lw1YKwYH9kk/logo.png b/blockchains/solana/assets/CbZb4TLMe1NaFTzyxB7LaymvmcQvMwQX2Lw1YKwYH9kk/logo.png new file mode 100644 index 0000000000000..e167aade5386d Binary files /dev/null and b/blockchains/solana/assets/CbZb4TLMe1NaFTzyxB7LaymvmcQvMwQX2Lw1YKwYH9kk/logo.png differ diff --git a/blockchains/solana/assets/CboMcTUYUcy9E6B3yGdFn6aEsGUnYV6yWeoeukw6pump/info.json b/blockchains/solana/assets/CboMcTUYUcy9E6B3yGdFn6aEsGUnYV6yWeoeukw6pump/info.json new file mode 100644 index 0000000000000..5b147471240e8 --- /dev/null +++ b/blockchains/solana/assets/CboMcTUYUcy9E6B3yGdFn6aEsGUnYV6yWeoeukw6pump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Butthole", + "type": "SPL", + "symbol": "Butthole", + "decimals": 6, + "website": "https://buttholecoin.dev/", + "description": "A fart cannot exist without a butthole", + "explorer": "https://solscan.io/token/CboMcTUYUcy9E6B3yGdFn6aEsGUnYV6yWeoeukw6pump", + "status": "active", + "id": "CboMcTUYUcy9E6B3yGdFn6aEsGUnYV6yWeoeukw6pump", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/butthole-coin" + }, + { + "name": "x", + "url": "https://x.com/thebuttholecoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CboMcTUYUcy9E6B3yGdFn6aEsGUnYV6yWeoeukw6pump/logo.png b/blockchains/solana/assets/CboMcTUYUcy9E6B3yGdFn6aEsGUnYV6yWeoeukw6pump/logo.png new file mode 100644 index 0000000000000..6b4c67786c8d7 Binary files /dev/null and b/blockchains/solana/assets/CboMcTUYUcy9E6B3yGdFn6aEsGUnYV6yWeoeukw6pump/logo.png differ diff --git a/blockchains/solana/assets/CcDw9eH6SLF1kirxz7Dz9APQ7aniEzHPksaktnhApump/info.json b/blockchains/solana/assets/CcDw9eH6SLF1kirxz7Dz9APQ7aniEzHPksaktnhApump/info.json new file mode 100644 index 0000000000000..29b944f9e7092 --- /dev/null +++ b/blockchains/solana/assets/CcDw9eH6SLF1kirxz7Dz9APQ7aniEzHPksaktnhApump/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Digital Euro", + "type": "SPL", + "symbol": "FAKE EURC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/CcDw9eH6SLF1kirxz7Dz9APQ7aniEzHPksaktnhApump", + "explorer": "https://solscan.io/token/CcDw9eH6SLF1kirxz7Dz9APQ7aniEzHPksaktnhApump", + "status": "spam", + "id": "CcDw9eH6SLF1kirxz7Dz9APQ7aniEzHPksaktnhApump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/CcfWx71YLn3pDfLMnnECcAwU5KeC2eBsBUCcoQzMpump/info.json b/blockchains/solana/assets/CcfWx71YLn3pDfLMnnECcAwU5KeC2eBsBUCcoQzMpump/info.json new file mode 100644 index 0000000000000..29b8ca13c2929 --- /dev/null +++ b/blockchains/solana/assets/CcfWx71YLn3pDfLMnnECcAwU5KeC2eBsBUCcoQzMpump/info.json @@ -0,0 +1,25 @@ +{ + "name": "NoDev AI", + "type": "SOL", + "symbol": "NODEV", + "decimals": 6, + "description": "NODEV is an advanced no-code platform that seamlessly orchestrates the automatic generation of both front-end and back-end code within minutes, drastically reducing development time.", + "website": "https://nodev.live/", + "explorer": "https://solscan.io/token/CcfWx71YLn3pDfLMnnECcAwU5KeC2eBsBUCcoQzMpump", + "id": "CcfWx71YLn3pDfLMnnECcAwU5KeC2eBsBUCcoQzMpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/nodevsol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/nodev-ai" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/CcfWx71YLn3pDfLMnnECcAwU5KeC2eBsBUCcoQzMpump/logo.png b/blockchains/solana/assets/CcfWx71YLn3pDfLMnnECcAwU5KeC2eBsBUCcoQzMpump/logo.png new file mode 100644 index 0000000000000..f1bf0f0782b95 Binary files /dev/null and b/blockchains/solana/assets/CcfWx71YLn3pDfLMnnECcAwU5KeC2eBsBUCcoQzMpump/logo.png differ diff --git a/blockchains/solana/assets/CeFbGYXDmkyfo1TXXzzZ512mtnCCewNohu6V15vondo/info.json b/blockchains/solana/assets/CeFbGYXDmkyfo1TXXzzZ512mtnCCewNohu6V15vondo/info.json new file mode 100644 index 0000000000000..6dd3ec11be67f --- /dev/null +++ b/blockchains/solana/assets/CeFbGYXDmkyfo1TXXzzZ512mtnCCewNohu6V15vondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares China Large-Cap ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "FXIon", + "decimals": 9, + "description": "FXIon is the Ondo Tokenized version of the iShares China Large-Cap ETF, giving tokenholders economic exposure similar to holding FXI and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/CeFbGYXDmkyfo1TXXzzZ512mtnCCewNohu6V15vondo", + "status": "active", + "id": "CeFbGYXDmkyfo1TXXzzZ512mtnCCewNohu6V15vondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-china-large-cap-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CeFbGYXDmkyfo1TXXzzZ512mtnCCewNohu6V15vondo/logo.png b/blockchains/solana/assets/CeFbGYXDmkyfo1TXXzzZ512mtnCCewNohu6V15vondo/logo.png new file mode 100644 index 0000000000000..2ce033b091a15 Binary files /dev/null and b/blockchains/solana/assets/CeFbGYXDmkyfo1TXXzzZ512mtnCCewNohu6V15vondo/logo.png differ diff --git a/blockchains/solana/assets/CeMYVFyzpkUubGQXz3ckRMr1DyyS9iYdqqSKaAqT5SSS/info.json b/blockchains/solana/assets/CeMYVFyzpkUubGQXz3ckRMr1DyyS9iYdqqSKaAqT5SSS/info.json new file mode 100644 index 0000000000000..b8ab8327289d3 --- /dev/null +++ b/blockchains/solana/assets/CeMYVFyzpkUubGQXz3ckRMr1DyyS9iYdqqSKaAqT5SSS/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE UЅⅮT", + "type": "SPL", + "symbol": "FAKE UЅⅮT", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/CeMYVFyzpkUubGQXz3ckRMr1DyyS9iYdqqSKaAqT5SSS", + "explorer": "https://solscan.io/token/CeMYVFyzpkUubGQXz3ckRMr1DyyS9iYdqqSKaAqT5SSS", + "status": "spam", + "id": "CeMYVFyzpkUubGQXz3ckRMr1DyyS9iYdqqSKaAqT5SSS" +} \ No newline at end of file diff --git a/blockchains/solana/assets/Cg93SZJkHePybZqGDuyXLf5Ag5sB2cpWfHUG8wNPpump/info.json b/blockchains/solana/assets/Cg93SZJkHePybZqGDuyXLf5Ag5sB2cpWfHUG8wNPpump/info.json new file mode 100644 index 0000000000000..b0c3c813115e0 --- /dev/null +++ b/blockchains/solana/assets/Cg93SZJkHePybZqGDuyXLf5Ag5sB2cpWfHUG8wNPpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "AlphaArc", + "symbol": "alpha", + "decimals": 6, + "type": "SPL", + "website": "https://www.alphaarc.xyz/", + "description": "AlphaArc translates blockchainese into a language LLMs & AI agents understand", + "explorer": "https://solscan.io/token/Cg93SZJkHePybZqGDuyXLf5Ag5sB2cpWfHUG8wNPpump", + "status": "active", + "id": "Cg93SZJkHePybZqGDuyXLf5Ag5sB2cpWfHUG8wNPpump", + "links": [ + { + "name": "x", + "url": "https://x.com/AlphaArc4k" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/alphaarc" + } + ] +} diff --git a/blockchains/solana/assets/Cg93SZJkHePybZqGDuyXLf5Ag5sB2cpWfHUG8wNPpump/logo.png b/blockchains/solana/assets/Cg93SZJkHePybZqGDuyXLf5Ag5sB2cpWfHUG8wNPpump/logo.png new file mode 100644 index 0000000000000..a9884aa760ff4 Binary files /dev/null and b/blockchains/solana/assets/Cg93SZJkHePybZqGDuyXLf5Ag5sB2cpWfHUG8wNPpump/logo.png differ diff --git a/blockchains/solana/assets/CgGWS19zR5xTzgCEcW5Svsuon4hBZwzBwUFimoJStCf2/info.json b/blockchains/solana/assets/CgGWS19zR5xTzgCEcW5Svsuon4hBZwzBwUFimoJStCf2/info.json new file mode 100644 index 0000000000000..8834438d24408 --- /dev/null +++ b/blockchains/solana/assets/CgGWS19zR5xTzgCEcW5Svsuon4hBZwzBwUFimoJStCf2/info.json @@ -0,0 +1,21 @@ +{ + "name": "Foxsy AI", + "type": "SPL", + "symbol": "FOXSY", + "decimals": 9, + "website": "https://foxsy.ai", + "description": "Outfoxing the future with AI and robotics", + "explorer": "https://solscan.io/token/CgGWS19zR5xTzgCEcW5Svsuon4hBZwzBwUFimoJStCf2", + "status": "active", + "id": "CgGWS19zR5xTzgCEcW5Svsuon4hBZwzBwUFimoJStCf2", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/foxsy-ai/" + }, + { + "name": "x", + "url": "https://x.com/foxsy_ai" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CgGWS19zR5xTzgCEcW5Svsuon4hBZwzBwUFimoJStCf2/logo.png b/blockchains/solana/assets/CgGWS19zR5xTzgCEcW5Svsuon4hBZwzBwUFimoJStCf2/logo.png new file mode 100644 index 0000000000000..d6c6c7723b881 Binary files /dev/null and b/blockchains/solana/assets/CgGWS19zR5xTzgCEcW5Svsuon4hBZwzBwUFimoJStCf2/logo.png differ diff --git a/blockchains/solana/assets/CgZSv89BL58ybWfWobANKEU8nV9jYfFw23G2DZEondo/info.json b/blockchains/solana/assets/CgZSv89BL58ybWfWobANKEU8nV9jYfFw23G2DZEondo/info.json new file mode 100644 index 0000000000000..898ec53fb3ff7 --- /dev/null +++ b/blockchains/solana/assets/CgZSv89BL58ybWfWobANKEU8nV9jYfFw23G2DZEondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "GE Vernova (Ondo Tokenized)", + "type": "SPL", + "symbol": "GEVon", + "decimals": 9, + "description": "GEVon is the Ondo Tokenized version of GE Vernova, giving tokenholders economic exposure similar to holding GEV and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/CgZSv89BL58ybWfWobANKEU8nV9jYfFw23G2DZEondo", + "status": "active", + "id": "CgZSv89BL58ybWfWobANKEU8nV9jYfFw23G2DZEondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ge-vernova-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CgZSv89BL58ybWfWobANKEU8nV9jYfFw23G2DZEondo/logo.png b/blockchains/solana/assets/CgZSv89BL58ybWfWobANKEU8nV9jYfFw23G2DZEondo/logo.png new file mode 100644 index 0000000000000..abf2400ac0358 Binary files /dev/null and b/blockchains/solana/assets/CgZSv89BL58ybWfWobANKEU8nV9jYfFw23G2DZEondo/logo.png differ diff --git a/blockchains/solana/assets/CgnZbDNzBfaLyJqUtd4esKLShRp7RznQuwP4uQaondo/info.json b/blockchains/solana/assets/CgnZbDNzBfaLyJqUtd4esKLShRp7RznQuwP4uQaondo/info.json new file mode 100644 index 0000000000000..58ac3bcce9ddc --- /dev/null +++ b/blockchains/solana/assets/CgnZbDNzBfaLyJqUtd4esKLShRp7RznQuwP4uQaondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "abrdn Physical Precious Metals Basket Shares ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "GLTRon", + "decimals": 9, + "description": "GLTRon is the Ondo Tokenized version of the abrdn Physical Precious Metals Basket Shares ETF, giving tokenholders economic exposure similar to holding GLTR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/CgnZbDNzBfaLyJqUtd4esKLShRp7RznQuwP4uQaondo", + "status": "active", + "id": "CgnZbDNzBfaLyJqUtd4esKLShRp7RznQuwP4uQaondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/abrdn-physical-precious-metals-basket-shares-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CgnZbDNzBfaLyJqUtd4esKLShRp7RznQuwP4uQaondo/logo.png b/blockchains/solana/assets/CgnZbDNzBfaLyJqUtd4esKLShRp7RznQuwP4uQaondo/logo.png new file mode 100644 index 0000000000000..a22bc2999905d Binary files /dev/null and b/blockchains/solana/assets/CgnZbDNzBfaLyJqUtd4esKLShRp7RznQuwP4uQaondo/logo.png differ diff --git a/blockchains/solana/assets/ChTbMXMnBKGyqAWmYBytNtgwueK4gYCsCBCXDBQWSSWX/info.json b/blockchains/solana/assets/ChTbMXMnBKGyqAWmYBytNtgwueK4gYCsCBCXDBQWSSWX/info.json new file mode 100644 index 0000000000000..6f1e050e54f67 --- /dev/null +++ b/blockchains/solana/assets/ChTbMXMnBKGyqAWmYBytNtgwueK4gYCsCBCXDBQWSSWX/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE UЅⅮϹ", + "type": "SPL", + "symbol": "FAKE UЅⅮϹ", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/ChTbMXMnBKGyqAWmYBytNtgwueK4gYCsCBCXDBQWSSWX", + "explorer": "https://solscan.io/token/ChTbMXMnBKGyqAWmYBytNtgwueK4gYCsCBCXDBQWSSWX", + "status": "spam", + "id": "ChTbMXMnBKGyqAWmYBytNtgwueK4gYCsCBCXDBQWSSWX" +} \ No newline at end of file diff --git a/blockchains/solana/assets/ChanxovzUBzPLkcbwK4sWDvmoy5A3NZYw5YyFBPppump/info.json b/blockchains/solana/assets/ChanxovzUBzPLkcbwK4sWDvmoy5A3NZYw5YyFBPppump/info.json new file mode 100644 index 0000000000000..60a9d15bb7ceb --- /dev/null +++ b/blockchains/solana/assets/ChanxovzUBzPLkcbwK4sWDvmoy5A3NZYw5YyFBPppump/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM Trump United Stable Dollar", + "type": "SPL", + "symbol": "SCAM TUSD", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/ChanxovzUBzPLkcbwK4sWDvmoy5A3NZYw5YyFBPppump", + "explorer": "https://solscan.io/token/ChanxovzUBzPLkcbwK4sWDvmoy5A3NZYw5YyFBPppump", + "status": "spam", + "id": "ChanxovzUBzPLkcbwK4sWDvmoy5A3NZYw5YyFBPppump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/Chqde9rcgzK8LSzbR1F3NUSFBu44Tk66EYBJpt42USDC/info.json b/blockchains/solana/assets/Chqde9rcgzK8LSzbR1F3NUSFBu44Tk66EYBJpt42USDC/info.json new file mode 100644 index 0000000000000..b21e6fec606ae --- /dev/null +++ b/blockchains/solana/assets/Chqde9rcgzK8LSzbR1F3NUSFBu44Tk66EYBJpt42USDC/info.json @@ -0,0 +1,17 @@ +{ + "name": "USDC Piggy Bank", + "type": "SPL", + "symbol": "UPB", + "decimals": 9, + "description": "SPL-2022 with 5% fee, distributing USDC to the community based on trading volumes.", + "website": "https://upb.money/", + "explorer": "https://solscan.io/token/Chqde9rcgzK8LSzbR1F3NUSFBu44Tk66EYBJpt42USDC", + "id": "Chqde9rcgzK8LSzbR1F3NUSFBu44Tk66EYBJpt42USDC", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/UPBmoney" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Chqde9rcgzK8LSzbR1F3NUSFBu44Tk66EYBJpt42USDC/logo.png b/blockchains/solana/assets/Chqde9rcgzK8LSzbR1F3NUSFBu44Tk66EYBJpt42USDC/logo.png new file mode 100644 index 0000000000000..7bdb2851d7380 Binary files /dev/null and b/blockchains/solana/assets/Chqde9rcgzK8LSzbR1F3NUSFBu44Tk66EYBJpt42USDC/logo.png differ diff --git a/blockchains/solana/assets/CkTsgUj4kDJ64LD3BN9G8iQEJFK5J1HTGDeTqiv2Qwqk/info.json b/blockchains/solana/assets/CkTsgUj4kDJ64LD3BN9G8iQEJFK5J1HTGDeTqiv2Qwqk/info.json new file mode 100644 index 0000000000000..d2a7e1a9393a9 --- /dev/null +++ b/blockchains/solana/assets/CkTsgUj4kDJ64LD3BN9G8iQEJFK5J1HTGDeTqiv2Qwqk/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT Ꭲеτḥег", + "type": "SPL", + "symbol": "HONEYPOT ሀЅⅮТ", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/CkTsgUj4kDJ64LD3BN9G8iQEJFK5J1HTGDeTqiv2Qwqk", + "explorer": "https://solscan.io/token/CkTsgUj4kDJ64LD3BN9G8iQEJFK5J1HTGDeTqiv2Qwqk", + "status": "spam", + "id": "CkTsgUj4kDJ64LD3BN9G8iQEJFK5J1HTGDeTqiv2Qwqk" +} \ No newline at end of file diff --git a/blockchains/solana/assets/CkWmEM2J79k6AjAwyQVHXteFucAL1zQrKLxLqJHondo/info.json b/blockchains/solana/assets/CkWmEM2J79k6AjAwyQVHXteFucAL1zQrKLxLqJHondo/info.json new file mode 100644 index 0000000000000..019d05be2d04f --- /dev/null +++ b/blockchains/solana/assets/CkWmEM2J79k6AjAwyQVHXteFucAL1zQrKLxLqJHondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Galaxy Digital (Ondo Tokenized)", + "type": "SPL", + "symbol": "GLXYon", + "decimals": 9, + "description": "GLXYon is the Ondo Tokenized version of Galaxy Digital, giving tokenholders economic exposure similar to holding GLXY and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/CkWmEM2J79k6AjAwyQVHXteFucAL1zQrKLxLqJHondo", + "status": "active", + "id": "CkWmEM2J79k6AjAwyQVHXteFucAL1zQrKLxLqJHondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/galaxy-digital-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CkWmEM2J79k6AjAwyQVHXteFucAL1zQrKLxLqJHondo/logo.png b/blockchains/solana/assets/CkWmEM2J79k6AjAwyQVHXteFucAL1zQrKLxLqJHondo/logo.png new file mode 100644 index 0000000000000..4be71cd2de123 Binary files /dev/null and b/blockchains/solana/assets/CkWmEM2J79k6AjAwyQVHXteFucAL1zQrKLxLqJHondo/logo.png differ diff --git a/blockchains/solana/assets/CmLfUYD69N4cdthVJBAcojPhZvFTwEz3Xo2TuBzLpump/info.json b/blockchains/solana/assets/CmLfUYD69N4cdthVJBAcojPhZvFTwEz3Xo2TuBzLpump/info.json new file mode 100644 index 0000000000000..407ebed87b414 --- /dev/null +++ b/blockchains/solana/assets/CmLfUYD69N4cdthVJBAcojPhZvFTwEz3Xo2TuBzLpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "BILLI", + "website": "https://www.billi.guru/", + "description": "Billi the Hobo used to roam the streets, now turning fellow hobos into billionaires. Literally anyone can be a $BILLI'onaire!", + "explorer": "https://solscan.io/token/CmLfUYD69N4cdthVJBAcojPhZvFTwEz3Xo2TuBzLpump", + "type": "SPL", + "symbol": "BILLI", + "decimals": 6, + "status": "active", + "id": "CmLfUYD69N4cdthVJBAcojPhZvFTwEz3Xo2TuBzLpump", + "links": [ + { + "name": "telegram", + "url": "https://t.me/billi_solana" + }, + { + "name": "x", + "url": "https://x.com/billi_solana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CmLfUYD69N4cdthVJBAcojPhZvFTwEz3Xo2TuBzLpump/logo.png b/blockchains/solana/assets/CmLfUYD69N4cdthVJBAcojPhZvFTwEz3Xo2TuBzLpump/logo.png new file mode 100644 index 0000000000000..b8d63c3fc1164 Binary files /dev/null and b/blockchains/solana/assets/CmLfUYD69N4cdthVJBAcojPhZvFTwEz3Xo2TuBzLpump/logo.png differ diff --git a/blockchains/solana/assets/CnGb7hJsGdsFyQP2uXNWrUgT5K1tovBA3mNnUZcTpump/info.json b/blockchains/solana/assets/CnGb7hJsGdsFyQP2uXNWrUgT5K1tovBA3mNnUZcTpump/info.json new file mode 100644 index 0000000000000..e63ebf96eb518 --- /dev/null +++ b/blockchains/solana/assets/CnGb7hJsGdsFyQP2uXNWrUgT5K1tovBA3mNnUZcTpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "FLORK", + "type": "SPL", + "symbol": "flork", + "decimals": 6, + "website": "https://florkcto.io/", + "description": "Flork is an SOLANA meme token inspired by a popular online webcomic known for its quirky sock puppet characters drawn in MS Paint.", + "explorer": "https://solscan.io/token/CnGb7hJsGdsFyQP2uXNWrUgT5K1tovBA3mNnUZcTpump", + "status": "active", + "id": "CnGb7hJsGdsFyQP2uXNWrUgT5K1tovBA3mNnUZcTpump", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/flork-cto/" + }, + { + "name": "x", + "url": "https://x.com/florkcto" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CnGb7hJsGdsFyQP2uXNWrUgT5K1tovBA3mNnUZcTpump/logo.png b/blockchains/solana/assets/CnGb7hJsGdsFyQP2uXNWrUgT5K1tovBA3mNnUZcTpump/logo.png new file mode 100644 index 0000000000000..ce5427a487c65 Binary files /dev/null and b/blockchains/solana/assets/CnGb7hJsGdsFyQP2uXNWrUgT5K1tovBA3mNnUZcTpump/logo.png differ diff --git a/blockchains/solana/assets/CniPCE4b3s8gSUPhUiyMjXnytrEqUrMfSsnbBjLCpump/info.json b/blockchains/solana/assets/CniPCE4b3s8gSUPhUiyMjXnytrEqUrMfSsnbBjLCpump/info.json new file mode 100644 index 0000000000000..43e7fe1a41763 --- /dev/null +++ b/blockchains/solana/assets/CniPCE4b3s8gSUPhUiyMjXnytrEqUrMfSsnbBjLCpump/info.json @@ -0,0 +1,17 @@ +{ + "name": "PWEASE", + "website": "https://pump.fun/coin/CniPCE4b3s8gSUPhUiyMjXnytrEqUrMfSsnbBjLCpump", + "description": "YOU SHOULDA SAID PWEASE", + "explorer": "https://solscan.io/token/CniPCE4b3s8gSUPhUiyMjXnytrEqUrMfSsnbBjLCpump", + "type": "SPL", + "symbol": "PWEASE", + "decimals": 6, + "status": "active", + "id": "CniPCE4b3s8gSUPhUiyMjXnytrEqUrMfSsnbBjLCpump", + "links": [ + { + "name": "x", + "url": "https://x.com/TheMisterFrog/status/1895669466786402519" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CniPCE4b3s8gSUPhUiyMjXnytrEqUrMfSsnbBjLCpump/logo.png b/blockchains/solana/assets/CniPCE4b3s8gSUPhUiyMjXnytrEqUrMfSsnbBjLCpump/logo.png new file mode 100644 index 0000000000000..eb6dddd18854f Binary files /dev/null and b/blockchains/solana/assets/CniPCE4b3s8gSUPhUiyMjXnytrEqUrMfSsnbBjLCpump/logo.png differ diff --git a/blockchains/solana/assets/Co6yHBdUcVsrmRq75iKmxAddx9ggg32g3Zd1Vwscpump/info.json b/blockchains/solana/assets/Co6yHBdUcVsrmRq75iKmxAddx9ggg32g3Zd1Vwscpump/info.json new file mode 100644 index 0000000000000..77719b921cc05 --- /dev/null +++ b/blockchains/solana/assets/Co6yHBdUcVsrmRq75iKmxAddx9ggg32g3Zd1Vwscpump/info.json @@ -0,0 +1,11 @@ +{ + "name": "AI Penis", + "type": "SPL", + "symbol": "PENAIS", + "decimals": 8, + "website": "https://pump.fun/coin/Co6yHBdUcVsrmRq75iKmxAddx9ggg32g3Zd1Vwscpump", + "description": "ai penis technologica", + "explorer": "https://solscan.io/token/Co6yHBdUcVsrmRq75iKmxAddx9ggg32g3Zd1Vwscpump", + "status": "active", + "id": "Co6yHBdUcVsrmRq75iKmxAddx9ggg32g3Zd1Vwscpump" + } \ No newline at end of file diff --git a/blockchains/solana/assets/Co6yHBdUcVsrmRq75iKmxAddx9ggg32g3Zd1Vwscpump/logo.png b/blockchains/solana/assets/Co6yHBdUcVsrmRq75iKmxAddx9ggg32g3Zd1Vwscpump/logo.png new file mode 100644 index 0000000000000..640134da50ebe Binary files /dev/null and b/blockchains/solana/assets/Co6yHBdUcVsrmRq75iKmxAddx9ggg32g3Zd1Vwscpump/logo.png differ diff --git a/blockchains/solana/assets/CofiHxizezmiQV1r85eV4Midefb6BahAyVeQQQxVpump/info.json b/blockchains/solana/assets/CofiHxizezmiQV1r85eV4Midefb6BahAyVeQQQxVpump/info.json new file mode 100644 index 0000000000000..8e1f9f66fa2ca --- /dev/null +++ b/blockchains/solana/assets/CofiHxizezmiQV1r85eV4Midefb6BahAyVeQQQxVpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "STORAGENT", + "type": "SPL", + "symbol": "STORAGENT", + "decimals": 6, + "website": "https://storagent.ai/", + "description": "Store, manage, and protect your data with military-grade encryption and decentralized infrastructure.", + "explorer": "https://solscan.io/token/CofiHxizezmiQV1r85eV4Midefb6BahAyVeQQQxVpump", + "status": "active", + "id": "CofiHxizezmiQV1r85eV4Midefb6BahAyVeQQQxVpump", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/storagent/" + }, + { + "name": "x", + "url": "https://x.com/pippinlovesyou" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CofiHxizezmiQV1r85eV4Midefb6BahAyVeQQQxVpump/logo.png b/blockchains/solana/assets/CofiHxizezmiQV1r85eV4Midefb6BahAyVeQQQxVpump/logo.png new file mode 100644 index 0000000000000..f1f5fac181a35 Binary files /dev/null and b/blockchains/solana/assets/CofiHxizezmiQV1r85eV4Midefb6BahAyVeQQQxVpump/logo.png differ diff --git a/blockchains/solana/assets/Cp3NTSVsHEredx37uigDcvVEWGHpEUCYvHvBNAD9jwsW/info.json b/blockchains/solana/assets/Cp3NTSVsHEredx37uigDcvVEWGHpEUCYvHvBNAD9jwsW/info.json new file mode 100644 index 0000000000000..00760287790f0 --- /dev/null +++ b/blockchains/solana/assets/Cp3NTSVsHEredx37uigDcvVEWGHpEUCYvHvBNAD9jwsW/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE ՍSᎠ Ⅽօіn", + "type": "SPL", + "symbol": "FAKE USDC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/Cp3NTSVsHEredx37uigDcvVEWGHpEUCYvHvBNAD9jwsW", + "explorer": "https://solscan.io/token/Cp3NTSVsHEredx37uigDcvVEWGHpEUCYvHvBNAD9jwsW", + "status": "spam", + "id": "Cp3NTSVsHEredx37uigDcvVEWGHpEUCYvHvBNAD9jwsW" +} \ No newline at end of file diff --git a/blockchains/solana/assets/Cq6QtvHpXbJWtFaiMhUDtHy8YVZ95gcD1oZ1cohondo/info.json b/blockchains/solana/assets/Cq6QtvHpXbJWtFaiMhUDtHy8YVZ95gcD1oZ1cohondo/info.json new file mode 100644 index 0000000000000..a23306bc5a4df --- /dev/null +++ b/blockchains/solana/assets/Cq6QtvHpXbJWtFaiMhUDtHy8YVZ95gcD1oZ1cohondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Arista Networks (Ondo Tokenized)", + "type": "SPL", + "symbol": "ANETon", + "decimals": 9, + "description": "ANETon is the Ondo Tokenized version of Arista Networks, giving tokenholders economic exposure similar to holding ANET and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/Cq6QtvHpXbJWtFaiMhUDtHy8YVZ95gcD1oZ1cohondo", + "status": "active", + "id": "Cq6QtvHpXbJWtFaiMhUDtHy8YVZ95gcD1oZ1cohondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/arista-networks-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/arista-networks-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Cq6QtvHpXbJWtFaiMhUDtHy8YVZ95gcD1oZ1cohondo/logo.png b/blockchains/solana/assets/Cq6QtvHpXbJWtFaiMhUDtHy8YVZ95gcD1oZ1cohondo/logo.png new file mode 100644 index 0000000000000..095286d5996eb Binary files /dev/null and b/blockchains/solana/assets/Cq6QtvHpXbJWtFaiMhUDtHy8YVZ95gcD1oZ1cohondo/logo.png differ diff --git a/blockchains/solana/assets/CqQyAZjB9LGFTG95eiadGTkfhd9QA12ProeKsQmondo/info.json b/blockchains/solana/assets/CqQyAZjB9LGFTG95eiadGTkfhd9QA12ProeKsQmondo/info.json new file mode 100644 index 0000000000000..88d3516df9d20 --- /dev/null +++ b/blockchains/solana/assets/CqQyAZjB9LGFTG95eiadGTkfhd9QA12ProeKsQmondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Deere (Ondo Tokenized)", + "type": "SPL", + "symbol": "DEon", + "decimals": 9, + "description": "DEon is the Ondo Tokenized version of Deere, giving tokenholders economic exposure similar to holding DE and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/CqQyAZjB9LGFTG95eiadGTkfhd9QA12ProeKsQmondo", + "status": "active", + "id": "CqQyAZjB9LGFTG95eiadGTkfhd9QA12ProeKsQmondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/deere-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/deere-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CqQyAZjB9LGFTG95eiadGTkfhd9QA12ProeKsQmondo/logo.png b/blockchains/solana/assets/CqQyAZjB9LGFTG95eiadGTkfhd9QA12ProeKsQmondo/logo.png new file mode 100644 index 0000000000000..bdf4e7cc322a1 Binary files /dev/null and b/blockchains/solana/assets/CqQyAZjB9LGFTG95eiadGTkfhd9QA12ProeKsQmondo/logo.png differ diff --git a/blockchains/solana/assets/CreiuhfwdWCN5mJbMJtA9bBpYQrQF2tCBuZwSPWfpump/info.json b/blockchains/solana/assets/CreiuhfwdWCN5mJbMJtA9bBpYQrQF2tCBuZwSPWfpump/info.json new file mode 100644 index 0000000000000..77359e751590c --- /dev/null +++ b/blockchains/solana/assets/CreiuhfwdWCN5mJbMJtA9bBpYQrQF2tCBuZwSPWfpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "PYTHIA", + "type": "SPL", + "symbol": "PYTHIA", + "decimals": 6, + "website": "https://ratpythia.ai/", + "description": "I’m Pythia, the first AI-brain-linked rat", + "explorer": "https://solscan.io/token/CreiuhfwdWCN5mJbMJtA9bBpYQrQF2tCBuZwSPWfpump", + "status": "active", + "id": "CreiuhfwdWCN5mJbMJtA9bBpYQrQF2tCBuZwSPWfpump", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pythia" + }, + { + "name": "x", + "url": "https://x.com/neirylab" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CreiuhfwdWCN5mJbMJtA9bBpYQrQF2tCBuZwSPWfpump/logo.png b/blockchains/solana/assets/CreiuhfwdWCN5mJbMJtA9bBpYQrQF2tCBuZwSPWfpump/logo.png new file mode 100644 index 0000000000000..446fb2bec739b Binary files /dev/null and b/blockchains/solana/assets/CreiuhfwdWCN5mJbMJtA9bBpYQrQF2tCBuZwSPWfpump/logo.png differ diff --git a/blockchains/solana/assets/Crn4x1Y2HUKko7ox2EZMT6N2t2ZyH7eKtwkBGVnhEq1g/info.json b/blockchains/solana/assets/Crn4x1Y2HUKko7ox2EZMT6N2t2ZyH7eKtwkBGVnhEq1g/info.json new file mode 100644 index 0000000000000..38f02476b1d86 --- /dev/null +++ b/blockchains/solana/assets/Crn4x1Y2HUKko7ox2EZMT6N2t2ZyH7eKtwkBGVnhEq1g/info.json @@ -0,0 +1,21 @@ +{ + "name": "GMO JPY", + "symbol": "GYEN", + "type": "SPL", + "decimals": 6, + "description": "GMO-Z.com Trust Company connects traditional finance and blockchain for everyone. We are issuing GYEN, the world's first regulated Japanese YEN-pegged stablecoin, and ZUSD, the new digital dollar.", + "website": "https://stablecoin.z.com/", + "explorer": "https://solscan.io/token/Crn4x1Y2HUKko7ox2EZMT6N2t2ZyH7eKtwkBGVnhEq1g", + "status": "active", + "id": "Crn4x1Y2HUKko7ox2EZMT6N2t2ZyH7eKtwkBGVnhEq1g", + "links": [ + { + "name": "x", + "url": "https://x.com/GMOTrust" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gyen" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Crn4x1Y2HUKko7ox2EZMT6N2t2ZyH7eKtwkBGVnhEq1g/logo.png b/blockchains/solana/assets/Crn4x1Y2HUKko7ox2EZMT6N2t2ZyH7eKtwkBGVnhEq1g/logo.png new file mode 100644 index 0000000000000..0e52fa3269230 Binary files /dev/null and b/blockchains/solana/assets/Crn4x1Y2HUKko7ox2EZMT6N2t2ZyH7eKtwkBGVnhEq1g/logo.png differ diff --git a/blockchains/solana/assets/CsN1Tyz467bSFLPGd6MJyZhPNtwDaWZtX8ixHWyondo/info.json b/blockchains/solana/assets/CsN1Tyz467bSFLPGd6MJyZhPNtwDaWZtX8ixHWyondo/info.json new file mode 100644 index 0000000000000..9ae8776ed0b18 --- /dev/null +++ b/blockchains/solana/assets/CsN1Tyz467bSFLPGd6MJyZhPNtwDaWZtX8ixHWyondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "PIMCO 0-5 Year High Yield Corporate Bond Index ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "HYSon", + "decimals": 9, + "description": "HYSon is the Ondo Tokenized version of the PIMCO 0-5 Year High Yield Corporate Bond Index ETF, giving tokenholders economic exposure similar to holding HYS and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/CsN1Tyz467bSFLPGd6MJyZhPNtwDaWZtX8ixHWyondo", + "status": "active", + "id": "CsN1Tyz467bSFLPGd6MJyZhPNtwDaWZtX8ixHWyondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pimco-0-5-year-high-yield-corporate-bond-index-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CsN1Tyz467bSFLPGd6MJyZhPNtwDaWZtX8ixHWyondo/logo.png b/blockchains/solana/assets/CsN1Tyz467bSFLPGd6MJyZhPNtwDaWZtX8ixHWyondo/logo.png new file mode 100644 index 0000000000000..58564c02cf969 Binary files /dev/null and b/blockchains/solana/assets/CsN1Tyz467bSFLPGd6MJyZhPNtwDaWZtX8ixHWyondo/logo.png differ diff --git a/blockchains/solana/assets/CsXxTtPn4AGRHPamucrAmK14z7LUswydxc6ngj9t3ssw/info.json b/blockchains/solana/assets/CsXxTtPn4AGRHPamucrAmK14z7LUswydxc6ngj9t3ssw/info.json new file mode 100644 index 0000000000000..fd31e9d7a34ea --- /dev/null +++ b/blockchains/solana/assets/CsXxTtPn4AGRHPamucrAmK14z7LUswydxc6ngj9t3ssw/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM United & Stable America", + "type": "SPL", + "symbol": "SCAM USA", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/CsXxTtPn4AGRHPamucrAmK14z7LUswydxc6ngj9t3ssw", + "explorer": "https://solscan.io/token/CsXxTtPn4AGRHPamucrAmK14z7LUswydxc6ngj9t3ssw", + "status": "spam", + "id": "CsXxTtPn4AGRHPamucrAmK14z7LUswydxc6ngj9t3ssw" +} \ No newline at end of file diff --git a/blockchains/solana/assets/CsZ5LZkDS7h9TDKjrbL7VAwQZ9nsRu8vJLhRYfmGaN8K/info.json b/blockchains/solana/assets/CsZ5LZkDS7h9TDKjrbL7VAwQZ9nsRu8vJLhRYfmGaN8K/info.json index 849d66922acc9..9b8916f16d6d4 100644 --- a/blockchains/solana/assets/CsZ5LZkDS7h9TDKjrbL7VAwQZ9nsRu8vJLhRYfmGaN8K/info.json +++ b/blockchains/solana/assets/CsZ5LZkDS7h9TDKjrbL7VAwQZ9nsRu8vJLhRYfmGaN8K/info.json @@ -13,8 +13,8 @@ ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/aleph_im" + "name": "x", + "url": "https://x.com/aleph_im" }, { "name": "github", diff --git a/blockchains/solana/assets/CxrhHSqyW8YTDWc4csJMMgo7uBUJSXzNzrWhtw9ULdru/info.json b/blockchains/solana/assets/CxrhHSqyW8YTDWc4csJMMgo7uBUJSXzNzrWhtw9ULdru/info.json new file mode 100644 index 0000000000000..4d60a739b1b36 --- /dev/null +++ b/blockchains/solana/assets/CxrhHSqyW8YTDWc4csJMMgo7uBUJSXzNzrWhtw9ULdru/info.json @@ -0,0 +1,21 @@ +{ + "name": "neversol", + "type": "SPL", + "symbol": "never", + "decimals": 6, + "website": "https://neversol.xyz", + "description": "$never,the crypto meme token that turns traditional marketing strategies on their head.", + "explorer": "https://solscan.io/token/CxrhHSqyW8YTDWc4csJMMgo7uBUJSXzNzrWhtw9ULdru", + "status": "active", + "id": "CxrhHSqyW8YTDWc4csJMMgo7uBUJSXzNzrWhtw9ULdru", + "links": [ + { + "name": "x", + "url": "https://x.com/Neversol_coin" + }, + { + "name": "coingecko", + "url": "https://coingecko.com//Криптовалюты/neversol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CxrhHSqyW8YTDWc4csJMMgo7uBUJSXzNzrWhtw9ULdru/logo.png b/blockchains/solana/assets/CxrhHSqyW8YTDWc4csJMMgo7uBUJSXzNzrWhtw9ULdru/logo.png new file mode 100644 index 0000000000000..f9552d4dbfcc9 Binary files /dev/null and b/blockchains/solana/assets/CxrhHSqyW8YTDWc4csJMMgo7uBUJSXzNzrWhtw9ULdru/logo.png differ diff --git a/blockchains/solana/assets/CxwWg7XfsM7QiPBqxVR2QsSfdiTbe76AYAP9wL1sxm8e/info.json b/blockchains/solana/assets/CxwWg7XfsM7QiPBqxVR2QsSfdiTbe76AYAP9wL1sxm8e/info.json new file mode 100644 index 0000000000000..3520a39bf3f2f --- /dev/null +++ b/blockchains/solana/assets/CxwWg7XfsM7QiPBqxVR2QsSfdiTbe76AYAP9wL1sxm8e/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE EURC", + "type": "SPL", + "symbol": "FAKE EURC", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/CxwWg7XfsM7QiPBqxVR2QsSfdiTbe76AYAP9wL1sxm8e", + "explorer": "https://solscan.io/token/CxwWg7XfsM7QiPBqxVR2QsSfdiTbe76AYAP9wL1sxm8e", + "status": "spam", + "id": "CxwWg7XfsM7QiPBqxVR2QsSfdiTbe76AYAP9wL1sxm8e" +} \ No newline at end of file diff --git a/blockchains/solana/assets/Cy1GS2FqefgaMbi45UunrUzin1rfEmTUYnomddzBpump/info.json b/blockchains/solana/assets/Cy1GS2FqefgaMbi45UunrUzin1rfEmTUYnomddzBpump/info.json new file mode 100644 index 0000000000000..d0bf7f60ddd74 --- /dev/null +++ b/blockchains/solana/assets/Cy1GS2FqefgaMbi45UunrUzin1rfEmTUYnomddzBpump/info.json @@ -0,0 +1,17 @@ +{ + "name": "Moby AI", + "symbol": "MOBY", + "type": "SPL", + "decimals": 6, + "description": "Your AI copilot for crypto - powered", + "website": "https://x.com/mobyagent", + "explorer": "https://solscan.io/token/Cy1GS2FqefgaMbi45UunrUzin1rfEmTUYnomddzBpump", + "status": "active", + "id": "Cy1GS2FqefgaMbi45UunrUzin1rfEmTUYnomddzBpump", + "links": [ + { + "name": "x", + "url": "https://x.com/mobyagent" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Cy1GS2FqefgaMbi45UunrUzin1rfEmTUYnomddzBpump/logo.png b/blockchains/solana/assets/Cy1GS2FqefgaMbi45UunrUzin1rfEmTUYnomddzBpump/logo.png new file mode 100644 index 0000000000000..f39a7e866a1dc Binary files /dev/null and b/blockchains/solana/assets/Cy1GS2FqefgaMbi45UunrUzin1rfEmTUYnomddzBpump/logo.png differ diff --git a/blockchains/solana/assets/CyJRzN4iavA2b9tQB2YMCMKYBcT9L5LSijLb5TeyqvLA/info.json b/blockchains/solana/assets/CyJRzN4iavA2b9tQB2YMCMKYBcT9L5LSijLb5TeyqvLA/info.json new file mode 100644 index 0000000000000..a61e4ba5ca56f --- /dev/null +++ b/blockchains/solana/assets/CyJRzN4iavA2b9tQB2YMCMKYBcT9L5LSijLb5TeyqvLA/info.json @@ -0,0 +1,21 @@ +{ + "name": "Solgun", + "type": "SPL", + "symbol": "SOLGUN", + "decimals": 9, + "website": "https://solgunsniper.bot/", + "description": "SolGun Sniper: The Fastest Trading Bot that provides to users, presale sniping, copy-trading.", + "explorer": "https://solscan.io/token/CyJRzN4iavA2b9tQB2YMCMKYBcT9L5LSijLb5TeyqvLA", + "status": "active", + "id": "CyJRzN4iavA2b9tQB2YMCMKYBcT9L5LSijLb5TeyqvLA", + "links": [ + { + "name": "x", + "url": "https://x.com/SolgunBot" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/solgun/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CyJRzN4iavA2b9tQB2YMCMKYBcT9L5LSijLb5TeyqvLA/logo.png b/blockchains/solana/assets/CyJRzN4iavA2b9tQB2YMCMKYBcT9L5LSijLb5TeyqvLA/logo.png new file mode 100644 index 0000000000000..1c24240ddd83f Binary files /dev/null and b/blockchains/solana/assets/CyJRzN4iavA2b9tQB2YMCMKYBcT9L5LSijLb5TeyqvLA/logo.png differ diff --git a/blockchains/solana/assets/CyReMi9TH9CeZAGNeHZpS8YZRKYUwF63B2B2GY89cEV9/info.json b/blockchains/solana/assets/CyReMi9TH9CeZAGNeHZpS8YZRKYUwF63B2B2GY89cEV9/info.json new file mode 100644 index 0000000000000..0dde7a7c7f034 --- /dev/null +++ b/blockchains/solana/assets/CyReMi9TH9CeZAGNeHZpS8YZRKYUwF63B2B2GY89cEV9/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDKG", + "type": "SPL", + "symbol": "FAKE USDKG", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/CyReMi9TH9CeZAGNeHZpS8YZRKYUwF63B2B2GY89cEV9", + "explorer": "https://solscan.io/token/CyReMi9TH9CeZAGNeHZpS8YZRKYUwF63B2B2GY89cEV9", + "status": "spam", + "id": "CyReMi9TH9CeZAGNeHZpS8YZRKYUwF63B2B2GY89cEV9" +} \ No newline at end of file diff --git a/blockchains/solana/assets/CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump/info.json b/blockchains/solana/assets/CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump/info.json new file mode 100644 index 0000000000000..9adb1ffc4b9e4 --- /dev/null +++ b/blockchains/solana/assets/CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Goatseus Maximus", + "type": "SPL", + "symbol": "GOAT", + "decimals": 6, + "website": "https://pump.fun/CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump", + "description": "First meme created by truth_terminal. Goatseus Maximus will fulfill the prophecies of the ancient memeers.", + "explorer": "https://solscan.io/token/CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump", + "status": "active", + "id": "CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump", + "links": [ + { + "name": "x", + "url": "https://x.com/gospelofgoatse" + }, + { + "name": "telegram", + "url": "https://t.me/GoatseusMaximusSolana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump/logo.png b/blockchains/solana/assets/CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump/logo.png new file mode 100644 index 0000000000000..b19fc1c0b435c Binary files /dev/null and b/blockchains/solana/assets/CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump/logo.png differ diff --git a/blockchains/solana/assets/CzqJTjTp3R9opDHmzF5Gy1G2NKDHEyMufa4Keiju4PLu/info.json b/blockchains/solana/assets/CzqJTjTp3R9opDHmzF5Gy1G2NKDHEyMufa4Keiju4PLu/info.json index 5f430fde5d47a..cbe139a1329cd 100644 --- a/blockchains/solana/assets/CzqJTjTp3R9opDHmzF5Gy1G2NKDHEyMufa4Keiju4PLu/info.json +++ b/blockchains/solana/assets/CzqJTjTp3R9opDHmzF5Gy1G2NKDHEyMufa4Keiju4PLu/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/concealnetworkusers" }, { - "name": "twitter", - "url": "https://twitter.com/ConcealNetwork" + "name": "x", + "url": "https://x.com/ConcealNetwork" }, { "name": "discord", diff --git a/blockchains/solana/assets/D13VkjDiCxtgRJsH4s1VCxKS4bFZq5UEz2iRsSbapump/info.json b/blockchains/solana/assets/D13VkjDiCxtgRJsH4s1VCxKS4bFZq5UEz2iRsSbapump/info.json new file mode 100644 index 0000000000000..d9fc601da30e4 --- /dev/null +++ b/blockchains/solana/assets/D13VkjDiCxtgRJsH4s1VCxKS4bFZq5UEz2iRsSbapump/info.json @@ -0,0 +1,22 @@ +{ + "name": "official cz dog", + "type": "SOL", + "symbol": "broccoli", + "decimals": 6, + "description": "In February 2025, Binance founder Zhao Changpeng (CZ) sparked the creation of CZ’S DOG ($BROCCOLI) through an interaction on social media. Initially, X platform user Vee asked CZ if he had a pet dog, to which CZ responded that he owned a Belgian Malinois dog, not a Shiba Inu.", + "website": "https://linktr.ee/broccolisol", + "explorer": "https://solscan.io/token/D13VkjDiCxtgRJsH4s1VCxKS4bFZq5UEz2iRsSbapump", + "id": "D13VkjDiCxtgRJsH4s1VCxKS4bFZq5UEz2iRsSbapump", + "status": "active", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/official-cz-dog-sol/" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/D13VkjDiCxtgRJsH4s1VCxKS4bFZq5UEz2iRsSbapump/logo.png b/blockchains/solana/assets/D13VkjDiCxtgRJsH4s1VCxKS4bFZq5UEz2iRsSbapump/logo.png new file mode 100644 index 0000000000000..6d3633a8c4003 Binary files /dev/null and b/blockchains/solana/assets/D13VkjDiCxtgRJsH4s1VCxKS4bFZq5UEz2iRsSbapump/logo.png differ diff --git a/blockchains/solana/assets/D1tu7Fnm3cCpKyyPXrqm5GXShPqMj7a2SEjjq9fondo/info.json b/blockchains/solana/assets/D1tu7Fnm3cCpKyyPXrqm5GXShPqMj7a2SEjjq9fondo/info.json new file mode 100644 index 0000000000000..53fd337201d74 --- /dev/null +++ b/blockchains/solana/assets/D1tu7Fnm3cCpKyyPXrqm5GXShPqMj7a2SEjjq9fondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "ProShares UltraPro Short QQQ (Ondo Tokenized)", + "type": "SPL", + "symbol": "SQQQon", + "decimals": 9, + "description": "SQQQon is the Ondo Tokenized version of the ProShares UltraPro Short QQQ, giving tokenholders economic exposure similar to holding SQQQ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/D1tu7Fnm3cCpKyyPXrqm5GXShPqMj7a2SEjjq9fondo", + "status": "active", + "id": "D1tu7Fnm3cCpKyyPXrqm5GXShPqMj7a2SEjjq9fondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/proshares-ultrapro-short-qqq-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/proshares-ultrapro-short-qqq-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/D1tu7Fnm3cCpKyyPXrqm5GXShPqMj7a2SEjjq9fondo/logo.png b/blockchains/solana/assets/D1tu7Fnm3cCpKyyPXrqm5GXShPqMj7a2SEjjq9fondo/logo.png new file mode 100644 index 0000000000000..d28deab3711b4 Binary files /dev/null and b/blockchains/solana/assets/D1tu7Fnm3cCpKyyPXrqm5GXShPqMj7a2SEjjq9fondo/logo.png differ diff --git a/blockchains/solana/assets/D2tztvQKcmo7PUof8quQWAu3qXKwtiW1pLjvHLsUakv5/info.json b/blockchains/solana/assets/D2tztvQKcmo7PUof8quQWAu3qXKwtiW1pLjvHLsUakv5/info.json new file mode 100644 index 0000000000000..b763ae53dc156 --- /dev/null +++ b/blockchains/solana/assets/D2tztvQKcmo7PUof8quQWAu3qXKwtiW1pLjvHLsUakv5/info.json @@ -0,0 +1,21 @@ +{ + "name": "Strawberry AI", + "symbol": "BERRY", + "type": "SPL", + "decimals": 8, + "description": "Strawberry AI is an advanced AI designed specifically for web3, enabling users to query web3, crypto, and blockchain topics with smart agent integration for a unique interaction experience", + "website": "https://usestrawberry.ai/", + "explorer": "https://solscan.io/token/D2tztvQKcmo7PUof8quQWAu3qXKwtiW1pLjvHLsUakv5", + "status": "active", + "id": "D2tztvQKcmo7PUof8quQWAu3qXKwtiW1pLjvHLsUakv5", + "links": [ + { + "name": "x", + "url": "https://x.com/StrawberryAI_5" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/strawberry-ai" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/D2tztvQKcmo7PUof8quQWAu3qXKwtiW1pLjvHLsUakv5/logo.png b/blockchains/solana/assets/D2tztvQKcmo7PUof8quQWAu3qXKwtiW1pLjvHLsUakv5/logo.png new file mode 100644 index 0000000000000..8b61f659db434 Binary files /dev/null and b/blockchains/solana/assets/D2tztvQKcmo7PUof8quQWAu3qXKwtiW1pLjvHLsUakv5/logo.png differ diff --git a/blockchains/solana/assets/D2uJeuCjhEK4fbJgwsUaod8RbR6xEd83d5sABJjNpump/info.json b/blockchains/solana/assets/D2uJeuCjhEK4fbJgwsUaod8RbR6xEd83d5sABJjNpump/info.json new file mode 100644 index 0000000000000..ebaeacb13cffd --- /dev/null +++ b/blockchains/solana/assets/D2uJeuCjhEK4fbJgwsUaod8RbR6xEd83d5sABJjNpump/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM United stable trading tits", + "type": "SPL", + "symbol": "SCAM USTT", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/D2uJeuCjhEK4fbJgwsUaod8RbR6xEd83d5sABJjNpump", + "explorer": "https://solscan.io/token/D2uJeuCjhEK4fbJgwsUaod8RbR6xEd83d5sABJjNpump", + "status": "spam", + "id": "D2uJeuCjhEK4fbJgwsUaod8RbR6xEd83d5sABJjNpump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/D4X7e9fCXonFN9mA1XPh9ErqULTTLn4vaWC6mtTbpump/info.json b/blockchains/solana/assets/D4X7e9fCXonFN9mA1XPh9ErqULTTLn4vaWC6mtTbpump/info.json new file mode 100644 index 0000000000000..8258ed163c7a2 --- /dev/null +++ b/blockchains/solana/assets/D4X7e9fCXonFN9mA1XPh9ErqULTTLn4vaWC6mtTbpump/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM United Stable Dollar Trump", + "type": "SPL", + "symbol": "SCAM USDT", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/D4X7e9fCXonFN9mA1XPh9ErqULTTLn4vaWC6mtTbpump", + "explorer": "https://solscan.io/token/D4X7e9fCXonFN9mA1XPh9ErqULTTLn4vaWC6mtTbpump", + "status": "spam", + "id": "D4X7e9fCXonFN9mA1XPh9ErqULTTLn4vaWC6mtTbpump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/D4k7E5nCVnuDJF6dv4EW6psG16AjRSAXnMYQTMhZpump/info.json b/blockchains/solana/assets/D4k7E5nCVnuDJF6dv4EW6psG16AjRSAXnMYQTMhZpump/info.json new file mode 100644 index 0000000000000..4fc65af58e933 --- /dev/null +++ b/blockchains/solana/assets/D4k7E5nCVnuDJF6dv4EW6psG16AjRSAXnMYQTMhZpump/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Digital Euro", + "type": "SPL", + "symbol": "FAKE EURC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/D4k7E5nCVnuDJF6dv4EW6psG16AjRSAXnMYQTMhZpump", + "explorer": "https://solscan.io/token/D4k7E5nCVnuDJF6dv4EW6psG16AjRSAXnMYQTMhZpump", + "status": "spam", + "id": "D4k7E5nCVnuDJF6dv4EW6psG16AjRSAXnMYQTMhZpump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/D4uWxzR5StYC6sTRhVts8Eboy3pmVtHeNC62dnQondo/info.json b/blockchains/solana/assets/D4uWxzR5StYC6sTRhVts8Eboy3pmVtHeNC62dnQondo/info.json new file mode 100644 index 0000000000000..ed15e89805f9c --- /dev/null +++ b/blockchains/solana/assets/D4uWxzR5StYC6sTRhVts8Eboy3pmVtHeNC62dnQondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares 7-10 Year Treasury Bond ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "IEFon", + "decimals": 9, + "description": "IEFon is the Ondo Tokenized version of the iShares 7-10 Year Treasury Bond ETF, giving tokenholders economic exposure similar to holding IEF and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/D4uWxzR5StYC6sTRhVts8Eboy3pmVtHeNC62dnQondo", + "status": "active", + "id": "D4uWxzR5StYC6sTRhVts8Eboy3pmVtHeNC62dnQondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-7-10-year-treasury-bond-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/D4uWxzR5StYC6sTRhVts8Eboy3pmVtHeNC62dnQondo/logo.png b/blockchains/solana/assets/D4uWxzR5StYC6sTRhVts8Eboy3pmVtHeNC62dnQondo/logo.png new file mode 100644 index 0000000000000..6c93239492673 Binary files /dev/null and b/blockchains/solana/assets/D4uWxzR5StYC6sTRhVts8Eboy3pmVtHeNC62dnQondo/logo.png differ diff --git a/blockchains/solana/assets/D5WJ9eH4WLF1SUazsMZLUKTz4xb6mKHNzS1ufeynmoon/info.json b/blockchains/solana/assets/D5WJ9eH4WLF1SUazsMZLUKTz4xb6mKHNzS1ufeynmoon/info.json new file mode 100644 index 0000000000000..229ca65ced283 --- /dev/null +++ b/blockchains/solana/assets/D5WJ9eH4WLF1SUazsMZLUKTz4xb6mKHNzS1ufeynmoon/info.json @@ -0,0 +1,25 @@ +{ + "name": "Politickle", + "type": "SPL", + "symbol": "TICKL", + "decimals": 9, + "description": "Politickle is an AI-driven platform that redefines how we engage with the news. Combining sharp political satire with witty cartoons and viral memes, it takes the chaos of today's headlines and transforms them into digestible, laugh-out-loud commentary.", + "website": "https://www.politickle.ai/", + "explorer": "https://solscan.io/token/D5WJ9eH4WLF1SUazsMZLUKTz4xb6mKHNzS1ufeynmoon", + "id": "D5WJ9eH4WLF1SUazsMZLUKTz4xb6mKHNzS1ufeynmoon", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/PolitickleAi" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/politickle" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/D5WJ9eH4WLF1SUazsMZLUKTz4xb6mKHNzS1ufeynmoon/logo.png b/blockchains/solana/assets/D5WJ9eH4WLF1SUazsMZLUKTz4xb6mKHNzS1ufeynmoon/logo.png new file mode 100644 index 0000000000000..2d68d92fdddf4 Binary files /dev/null and b/blockchains/solana/assets/D5WJ9eH4WLF1SUazsMZLUKTz4xb6mKHNzS1ufeynmoon/logo.png differ diff --git a/blockchains/solana/assets/D7z8T6FadmqDYGHy3LsMN3bzfrABmvVUnAFUrKfuWZ8F/info.json b/blockchains/solana/assets/D7z8T6FadmqDYGHy3LsMN3bzfrABmvVUnAFUrKfuWZ8F/info.json new file mode 100644 index 0000000000000..46c0ffa0e7171 --- /dev/null +++ b/blockchains/solana/assets/D7z8T6FadmqDYGHy3LsMN3bzfrABmvVUnAFUrKfuWZ8F/info.json @@ -0,0 +1,21 @@ +{ + "name": "Crypto-AI-Robo", + "symbol": "CAIR", + "type": "SPL", + "decimals": 6, + "description": "In the same way that the Internet is revolutionizing content distribution, CAIR TOKEN is revolutionizing content creation by bringing together AI, Blockchain and Robotics", + "website": "https://crypto-ai-robo.com/", + "explorer": "https://solscan.io/token/D7z8T6FadmqDYGHy3LsMN3bzfrABmvVUnAFUrKfuWZ8F", + "status": "active", + "id": "D7z8T6FadmqDYGHy3LsMN3bzfrABmvVUnAFUrKfuWZ8F", + "links": [ + { + "name": "x", + "url": "https://x.com/allbestico" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crypto-ai-robo" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/D7z8T6FadmqDYGHy3LsMN3bzfrABmvVUnAFUrKfuWZ8F/logo.png b/blockchains/solana/assets/D7z8T6FadmqDYGHy3LsMN3bzfrABmvVUnAFUrKfuWZ8F/logo.png new file mode 100644 index 0000000000000..69ff98d09c44b Binary files /dev/null and b/blockchains/solana/assets/D7z8T6FadmqDYGHy3LsMN3bzfrABmvVUnAFUrKfuWZ8F/logo.png differ diff --git a/blockchains/solana/assets/D8KT4Jd8qiKKTfkM8ejSKCpWGR1o3GFvnQGp5ERondo/info.json b/blockchains/solana/assets/D8KT4Jd8qiKKTfkM8ejSKCpWGR1o3GFvnQGp5ERondo/info.json new file mode 100644 index 0000000000000..40059b41fbaf6 --- /dev/null +++ b/blockchains/solana/assets/D8KT4Jd8qiKKTfkM8ejSKCpWGR1o3GFvnQGp5ERondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Franklin Income Equity Focus ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "INCEon", + "decimals": 9, + "description": "INCEon is the Ondo Tokenized version of the Franklin Income Equity Focus ETF, giving tokenholders economic exposure similar to holding INCE and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/D8KT4Jd8qiKKTfkM8ejSKCpWGR1o3GFvnQGp5ERondo", + "status": "active", + "id": "D8KT4Jd8qiKKTfkM8ejSKCpWGR1o3GFvnQGp5ERondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/franklin-income-equity-focus-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/D8KT4Jd8qiKKTfkM8ejSKCpWGR1o3GFvnQGp5ERondo/logo.png b/blockchains/solana/assets/D8KT4Jd8qiKKTfkM8ejSKCpWGR1o3GFvnQGp5ERondo/logo.png new file mode 100644 index 0000000000000..34299b5ba23f3 Binary files /dev/null and b/blockchains/solana/assets/D8KT4Jd8qiKKTfkM8ejSKCpWGR1o3GFvnQGp5ERondo/logo.png differ diff --git a/blockchains/solana/assets/D8r8XTuCrUhLheWeGXSwC3G92RhASficV3YA7B2XWcLv/info.json b/blockchains/solana/assets/D8r8XTuCrUhLheWeGXSwC3G92RhASficV3YA7B2XWcLv/info.json new file mode 100644 index 0000000000000..e212ad55c3d1f --- /dev/null +++ b/blockchains/solana/assets/D8r8XTuCrUhLheWeGXSwC3G92RhASficV3YA7B2XWcLv/info.json @@ -0,0 +1,21 @@ +{ + "name": "catwifbag", + "website": "https://www.wifbag.com/", + "description": "The Dogwifhat owner’s cat.", + "explorer": "https://solscan.io/token/D8r8XTuCrUhLheWeGXSwC3G92RhASficV3YA7B2XWcLv", + "type": "SPL", + "symbol": "BAG", + "decimals": 9, + "status": "active", + "id": "D8r8XTuCrUhLheWeGXSwC3G92RhASficV3YA7B2XWcLv", + "links": [ + { + "name": "x", + "url": "https://x.com/wifbag" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/catwifbag" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/D8r8XTuCrUhLheWeGXSwC3G92RhASficV3YA7B2XWcLv/logo.png b/blockchains/solana/assets/D8r8XTuCrUhLheWeGXSwC3G92RhASficV3YA7B2XWcLv/logo.png new file mode 100644 index 0000000000000..f6d9cd0ddf4a4 Binary files /dev/null and b/blockchains/solana/assets/D8r8XTuCrUhLheWeGXSwC3G92RhASficV3YA7B2XWcLv/logo.png differ diff --git a/blockchains/solana/assets/D9FaAohKSPR3WpDdLPnM4fLSH8d8JwJRrEZf6TDzpump/info.json b/blockchains/solana/assets/D9FaAohKSPR3WpDdLPnM4fLSH8d8JwJRrEZf6TDzpump/info.json new file mode 100644 index 0000000000000..704fd06d0d886 --- /dev/null +++ b/blockchains/solana/assets/D9FaAohKSPR3WpDdLPnM4fLSH8d8JwJRrEZf6TDzpump/info.json @@ -0,0 +1,17 @@ +{ + "name": "HQ Trivia", + "symbol": "HQ", + "type": "SPL", + "decimals": 6, + "description": "$HQ - Official HQ Trivia Token", + "website": "https://x.com/HQtriviaSol", + "explorer": "https://solscan.io/token/D9FaAohKSPR3WpDdLPnM4fLSH8d8JwJRrEZf6TDzpump", + "status": "active", + "id": "D9FaAohKSPR3WpDdLPnM4fLSH8d8JwJRrEZf6TDzpump", + "links": [ + { + "name": "x", + "url": "https://x.com/HQtriviaSol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/D9FaAohKSPR3WpDdLPnM4fLSH8d8JwJRrEZf6TDzpump/logo.png b/blockchains/solana/assets/D9FaAohKSPR3WpDdLPnM4fLSH8d8JwJRrEZf6TDzpump/logo.png new file mode 100644 index 0000000000000..31e72b65693e5 Binary files /dev/null and b/blockchains/solana/assets/D9FaAohKSPR3WpDdLPnM4fLSH8d8JwJRrEZf6TDzpump/logo.png differ diff --git a/blockchains/solana/assets/DAtU322C23YpoZyWBm8szk12QyqHa9rUQe1EYXzbm1JE/info.json b/blockchains/solana/assets/DAtU322C23YpoZyWBm8szk12QyqHa9rUQe1EYXzbm1JE/info.json index 57c75dbab5dec..7f8ce0bd7cd40 100644 --- a/blockchains/solana/assets/DAtU322C23YpoZyWBm8szk12QyqHa9rUQe1EYXzbm1JE/info.json +++ b/blockchains/solana/assets/DAtU322C23YpoZyWBm8szk12QyqHa9rUQe1EYXzbm1JE/info.json @@ -3,39 +3,23 @@ "symbol": "FOUR", "type": "SPL", "decimals": 9, - "description": "FOUR is 4thTech ecosystem utility token used as the primary means to enable services such as data file and instant messages wallet to wallet exchange.", - "website": "https://4thtech.io/", + "description": "FOUR token is a technical and incentive component dedicated to; (1) RTA (i.e. right-to-access), and; (2) MTO (i.e. multiple-transfer option) models in the ecosystem of Web3 communication.", + "website": "https://the4thpillar.io/", "explorer": "https://solscan.io/token/DAtU322C23YpoZyWBm8szk12QyqHa9rUQe1EYXzbm1JE", "status": "active", "id": "DAtU322C23YpoZyWBm8szk12QyqHa9rUQe1EYXzbm1JE", "links": [ { - "name": "twitter", - "url": "https://twitter.com/4thtechProject" + "name": "x", + "url": "https://x.com/4pfour" }, { "name": "coingecko", "url": "https://coingecko.com/en/coins/the-4th-pillar" - }, - { - "name": "medium", - "url": "https://medium.com/the4thpillar" - }, - { - "name": "telegram", - "url": "https://t.me/the4thpillarofficial" - }, - { - "name": "youtube", - "url": "https://youtube.com/c/4thpillartechnologies" - }, - { - "name": "whitepaper", - "url": "https://github.com/4thtech/static-assets/raw/main/pdf/whitepaper.pdf" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/4thpillar-technologies/" } + ], + "tags": [ + "governance", + "staking" ] } \ No newline at end of file diff --git a/blockchains/solana/assets/DAtU322C23YpoZyWBm8szk12QyqHa9rUQe1EYXzbm1JE/logo.png b/blockchains/solana/assets/DAtU322C23YpoZyWBm8szk12QyqHa9rUQe1EYXzbm1JE/logo.png index 4948f43ebc581..b0d3e287349fe 100644 Binary files a/blockchains/solana/assets/DAtU322C23YpoZyWBm8szk12QyqHa9rUQe1EYXzbm1JE/logo.png and b/blockchains/solana/assets/DAtU322C23YpoZyWBm8szk12QyqHa9rUQe1EYXzbm1JE/logo.png differ diff --git a/blockchains/solana/assets/DBNwt3FoYCKQWdfzxKFNZ4mzuz4Jz1iRzFf7HFzondo/info.json b/blockchains/solana/assets/DBNwt3FoYCKQWdfzxKFNZ4mzuz4Jz1iRzFf7HFzondo/info.json new file mode 100644 index 0000000000000..a61cd17315495 --- /dev/null +++ b/blockchains/solana/assets/DBNwt3FoYCKQWdfzxKFNZ4mzuz4Jz1iRzFf7HFzondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares MSCI India ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "INDAon", + "decimals": 9, + "description": "INDAon is the Ondo Tokenized version of the iShares MSCI India ETF, giving tokenholders economic exposure similar to holding INDA and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/DBNwt3FoYCKQWdfzxKFNZ4mzuz4Jz1iRzFf7HFzondo", + "status": "active", + "id": "DBNwt3FoYCKQWdfzxKFNZ4mzuz4Jz1iRzFf7HFzondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-msci-india-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DBNwt3FoYCKQWdfzxKFNZ4mzuz4Jz1iRzFf7HFzondo/logo.png b/blockchains/solana/assets/DBNwt3FoYCKQWdfzxKFNZ4mzuz4Jz1iRzFf7HFzondo/logo.png new file mode 100644 index 0000000000000..2ce033b091a15 Binary files /dev/null and b/blockchains/solana/assets/DBNwt3FoYCKQWdfzxKFNZ4mzuz4Jz1iRzFf7HFzondo/logo.png differ diff --git a/blockchains/solana/assets/DBRiDgJAMsM95moTzJs7M9LnkGErpbv9v6CUR1DXnUu5/info.json b/blockchains/solana/assets/DBRiDgJAMsM95moTzJs7M9LnkGErpbv9v6CUR1DXnUu5/info.json new file mode 100644 index 0000000000000..88536c92574d8 --- /dev/null +++ b/blockchains/solana/assets/DBRiDgJAMsM95moTzJs7M9LnkGErpbv9v6CUR1DXnUu5/info.json @@ -0,0 +1,21 @@ +{ + "name": "deBridge", + "symbol": "DBR", + "type": "SPL", + "decimals": 6, + "description": "deBridge is DeFi's internet of liquidity, enabling real-time movement of assets and information across the DeFi landscape.", + "website": "https://debridge.finance/", + "explorer": "https://solscan.io/token/DBRiDgJAMsM95moTzJs7M9LnkGErpbv9v6CUR1DXnUu5", + "status": "active", + "id": "DBRiDgJAMsM95moTzJs7M9LnkGErpbv9v6CUR1DXnUu5", + "links": [ + { + "name": "x", + "url": "https://x.com/deBridgeFinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/debridge" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DBRiDgJAMsM95moTzJs7M9LnkGErpbv9v6CUR1DXnUu5/logo.png b/blockchains/solana/assets/DBRiDgJAMsM95moTzJs7M9LnkGErpbv9v6CUR1DXnUu5/logo.png new file mode 100644 index 0000000000000..1f338427e6742 Binary files /dev/null and b/blockchains/solana/assets/DBRiDgJAMsM95moTzJs7M9LnkGErpbv9v6CUR1DXnUu5/logo.png differ diff --git a/blockchains/solana/assets/DCCA1ivqRYFqwSQTz3ArKfKpD6uXv6an8jDW5s3EvkQZ/info.json b/blockchains/solana/assets/DCCA1ivqRYFqwSQTz3ArKfKpD6uXv6an8jDW5s3EvkQZ/info.json new file mode 100644 index 0000000000000..3979c1de76498 --- /dev/null +++ b/blockchains/solana/assets/DCCA1ivqRYFqwSQTz3ArKfKpD6uXv6an8jDW5s3EvkQZ/info.json @@ -0,0 +1,28 @@ +{ + "name": "EAGLE OF TRUTH", + "type": "SPL", + "symbol": "EGL", + "decimals": 6, + "description": "A community driven token providing a voice for the people, stopping the spread of misinformation, and shining light on the corruption and hypocrisy of those trusted with power, yet unworthy to have it. We are the rebellion. This is the coin of resistance.", + "website": "https://www.eagleoftruth.io/", + "explorer": "https://solscan.io/token/DCCA1ivqRYFqwSQTz3ArKfKpD6uXv6an8jDW5s3EvkQZ", + "id": "DCCA1ivqRYFqwSQTz3ArKfKpD6uXv6an8jDW5s3EvkQZ", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/egl_sol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/the-eagle-of-truth/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/eagle-of-truth" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DCCA1ivqRYFqwSQTz3ArKfKpD6uXv6an8jDW5s3EvkQZ/logo.png b/blockchains/solana/assets/DCCA1ivqRYFqwSQTz3ArKfKpD6uXv6an8jDW5s3EvkQZ/logo.png new file mode 100644 index 0000000000000..f2779fbe97021 Binary files /dev/null and b/blockchains/solana/assets/DCCA1ivqRYFqwSQTz3ArKfKpD6uXv6an8jDW5s3EvkQZ/logo.png differ diff --git a/blockchains/solana/assets/DD8GJwAZHZZsLEtKnxdWfm8JbBhUj1oVwiGigfPUpump/info.json b/blockchains/solana/assets/DD8GJwAZHZZsLEtKnxdWfm8JbBhUj1oVwiGigfPUpump/info.json new file mode 100644 index 0000000000000..c278c1ceaad3a --- /dev/null +++ b/blockchains/solana/assets/DD8GJwAZHZZsLEtKnxdWfm8JbBhUj1oVwiGigfPUpump/info.json @@ -0,0 +1,17 @@ +{ + "name": "CGAI", + "type": "SPL", + "symbol": "CGAI", + "decimals": 6, + "website": "https://ghostdrive.com/cgai", + "description": "CGAI (Confidential Generative AI) is a cutting-edge network for AI privacy, enabling agent creation, group collaboration, predictive insights, and secure operations", + "explorer": "https://solscan.io/token/DD8GJwAZHZZsLEtKnxdWfm8JbBhUj1oVwiGigfPUpump", + "status": "active", + "id": "DD8GJwAZHZZsLEtKnxdWfm8JbBhUj1oVwiGigfPUpump", + "links": [ + { + "name": "x", + "url": "https://x.com/GDAIAgent" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DD8GJwAZHZZsLEtKnxdWfm8JbBhUj1oVwiGigfPUpump/logo.png b/blockchains/solana/assets/DD8GJwAZHZZsLEtKnxdWfm8JbBhUj1oVwiGigfPUpump/logo.png new file mode 100644 index 0000000000000..549003b6a08e6 Binary files /dev/null and b/blockchains/solana/assets/DD8GJwAZHZZsLEtKnxdWfm8JbBhUj1oVwiGigfPUpump/logo.png differ diff --git a/blockchains/solana/assets/DDZQijTbaSd3Kas1r1bgCnHPayk8vTP8SfZWp5Tondo/info.json b/blockchains/solana/assets/DDZQijTbaSd3Kas1r1bgCnHPayk8vTP8SfZWp5Tondo/info.json new file mode 100644 index 0000000000000..3d83208543cf7 --- /dev/null +++ b/blockchains/solana/assets/DDZQijTbaSd3Kas1r1bgCnHPayk8vTP8SfZWp5Tondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "IonQ (Ondo Tokenized)", + "type": "SPL", + "symbol": "IONQon", + "decimals": 9, + "description": "IONQon is the Ondo Tokenized version of IonQ, giving tokenholders economic exposure similar to holding IONQ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/DDZQijTbaSd3Kas1r1bgCnHPayk8vTP8SfZWp5Tondo", + "status": "active", + "id": "DDZQijTbaSd3Kas1r1bgCnHPayk8vTP8SfZWp5Tondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ionq-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DDZQijTbaSd3Kas1r1bgCnHPayk8vTP8SfZWp5Tondo/logo.png b/blockchains/solana/assets/DDZQijTbaSd3Kas1r1bgCnHPayk8vTP8SfZWp5Tondo/logo.png new file mode 100644 index 0000000000000..69da34d6c46b4 Binary files /dev/null and b/blockchains/solana/assets/DDZQijTbaSd3Kas1r1bgCnHPayk8vTP8SfZWp5Tondo/logo.png differ diff --git a/blockchains/solana/assets/DDcAL93Urf7KrPntvKULnZoFs4Wdee1LkkJqLpjondo/info.json b/blockchains/solana/assets/DDcAL93Urf7KrPntvKULnZoFs4Wdee1LkkJqLpjondo/info.json new file mode 100644 index 0000000000000..8e8b591a40b00 --- /dev/null +++ b/blockchains/solana/assets/DDcAL93Urf7KrPntvKULnZoFs4Wdee1LkkJqLpjondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares US Aerospace and Defense ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "ITAon", + "decimals": 9, + "description": "ITAon is the Ondo Tokenized version of the iShares US Aerospace and Defense ETF, giving tokenholders economic exposure similar to holding ITA and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/DDcAL93Urf7KrPntvKULnZoFs4Wdee1LkkJqLpjondo", + "status": "active", + "id": "DDcAL93Urf7KrPntvKULnZoFs4Wdee1LkkJqLpjondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-us-aerospace-and-defense-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DDcAL93Urf7KrPntvKULnZoFs4Wdee1LkkJqLpjondo/logo.png b/blockchains/solana/assets/DDcAL93Urf7KrPntvKULnZoFs4Wdee1LkkJqLpjondo/logo.png new file mode 100644 index 0000000000000..2ce033b091a15 Binary files /dev/null and b/blockchains/solana/assets/DDcAL93Urf7KrPntvKULnZoFs4Wdee1LkkJqLpjondo/logo.png differ diff --git a/blockchains/solana/assets/DFL1zNkaGPWm1BqAVqRjCZvHmwTFrEaJtbzJWgseoNJh/info.json b/blockchains/solana/assets/DFL1zNkaGPWm1BqAVqRjCZvHmwTFrEaJtbzJWgseoNJh/info.json index 42a479c58c0dd..20fe6da1cb290 100644 --- a/blockchains/solana/assets/DFL1zNkaGPWm1BqAVqRjCZvHmwTFrEaJtbzJWgseoNJh/info.json +++ b/blockchains/solana/assets/DFL1zNkaGPWm1BqAVqRjCZvHmwTFrEaJtbzJWgseoNJh/info.json @@ -10,8 +10,8 @@ "id": "DFL1zNkaGPWm1BqAVqRjCZvHmwTFrEaJtbzJWgseoNJh", "links": [ { - "name": "twitter", - "url": "https://twitter.com/DeFi_Land" + "name": "x", + "url": "https://x.com/DeFi_Land" }, { "name": "coinmarketcap", diff --git a/blockchains/solana/assets/DFkp2Jd5y4rCuPJAz9djtqUMHyVF5FxRkVgjztyGpump/info.json b/blockchains/solana/assets/DFkp2Jd5y4rCuPJAz9djtqUMHyVF5FxRkVgjztyGpump/info.json new file mode 100644 index 0000000000000..f1f23369d2ae1 --- /dev/null +++ b/blockchains/solana/assets/DFkp2Jd5y4rCuPJAz9djtqUMHyVF5FxRkVgjztyGpump/info.json @@ -0,0 +1,22 @@ +{ + "name": "CodeCraft AI", + "type": "SPL", + "symbol": "CRAFT", + "decimals": 6, + "description": "Multi Agentic AI coding Company. Turning text into code and uploading it to a Gitlab repository. We are developing it to be a focused and have options for both novice users with simpler understanding of coding, as well as for senior developers which will have more advanced options, control and capabilities (more similar to what in traditional coding would be VSCode).", + "website": "https://codecraft.name/", + "explorer": "https://solscan.io/token/DFkp2Jd5y4rCuPJAz9djtqUMHyVF5FxRkVgjztyGpump", + "id": "DFkp2Jd5y4rCuPJAz9djtqUMHyVF5FxRkVgjztyGpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/CodeCraftiAI" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/codecraft-ai" + } + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/DFkp2Jd5y4rCuPJAz9djtqUMHyVF5FxRkVgjztyGpump/logo.png b/blockchains/solana/assets/DFkp2Jd5y4rCuPJAz9djtqUMHyVF5FxRkVgjztyGpump/logo.png new file mode 100644 index 0000000000000..a5894379cc395 Binary files /dev/null and b/blockchains/solana/assets/DFkp2Jd5y4rCuPJAz9djtqUMHyVF5FxRkVgjztyGpump/logo.png differ diff --git a/blockchains/solana/assets/DG3LB7Kr8Londuz1j2us4YUXyNqiiLioKdYjSB37HbN2/info.json b/blockchains/solana/assets/DG3LB7Kr8Londuz1j2us4YUXyNqiiLioKdYjSB37HbN2/info.json new file mode 100644 index 0000000000000..e6d19401ec1ab --- /dev/null +++ b/blockchains/solana/assets/DG3LB7Kr8Londuz1j2us4YUXyNqiiLioKdYjSB37HbN2/info.json @@ -0,0 +1,21 @@ +{ + "name": "Gondola", + "symbol": "GONDOLA", + "type": "SPL", + "decimals": 8, + "description": "Gondola is the silent walker.", + "website": "https://gondola.lol/", + "explorer": "https://solscan.io/token/DG3LB7Kr8Londuz1j2us4YUXyNqiiLioKdYjSB37HbN2", + "status": "active", + "id": "DG3LB7Kr8Londuz1j2us4YUXyNqiiLioKdYjSB37HbN2", + "links": [ + { + "name": "x", + "url": "https://x.com/gondolacto" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gondola" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DG3LB7Kr8Londuz1j2us4YUXyNqiiLioKdYjSB37HbN2/logo.png b/blockchains/solana/assets/DG3LB7Kr8Londuz1j2us4YUXyNqiiLioKdYjSB37HbN2/logo.png new file mode 100644 index 0000000000000..b869668e02db0 Binary files /dev/null and b/blockchains/solana/assets/DG3LB7Kr8Londuz1j2us4YUXyNqiiLioKdYjSB37HbN2/logo.png differ diff --git a/blockchains/solana/assets/DKnXmFGBcpYEnPsoHLrdj5cbZdEq9DV9z6bVfYrrDEBE/info.json b/blockchains/solana/assets/DKnXmFGBcpYEnPsoHLrdj5cbZdEq9DV9z6bVfYrrDEBE/info.json new file mode 100644 index 0000000000000..51306897f427e --- /dev/null +++ b/blockchains/solana/assets/DKnXmFGBcpYEnPsoHLrdj5cbZdEq9DV9z6bVfYrrDEBE/info.json @@ -0,0 +1,21 @@ +{ + "name": "jacky", + "type": "SPL", + "symbol": "jacky", + "decimals": 9, + "website": "https://jackysol.com/", + "description": "The cutest cat on Solana! Fair Moonshot launch, LP burnt, REAL community. Get ready for the next BIG Solana meme", + "explorer": "https://solscan.io/token/DKnXmFGBcpYEnPsoHLrdj5cbZdEq9DV9z6bVfYrrDEBE", + "status": "active", + "id": "DKnXmFGBcpYEnPsoHLrdj5cbZdEq9DV9z6bVfYrrDEBE", + "links": [ + { + "name": "x", + "url": "https://x.com/jackysolmeme" + }, + { + "name": "telegram", + "url": "https://t.me/jackymeme" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DKnXmFGBcpYEnPsoHLrdj5cbZdEq9DV9z6bVfYrrDEBE/logo.png b/blockchains/solana/assets/DKnXmFGBcpYEnPsoHLrdj5cbZdEq9DV9z6bVfYrrDEBE/logo.png new file mode 100644 index 0000000000000..61df464b5b1b5 Binary files /dev/null and b/blockchains/solana/assets/DKnXmFGBcpYEnPsoHLrdj5cbZdEq9DV9z6bVfYrrDEBE/logo.png differ diff --git a/blockchains/solana/assets/DKu9kykSfbN5LBfFXtNNDPaX35o4Fv6vJ9FKk7pZpump/info.json b/blockchains/solana/assets/DKu9kykSfbN5LBfFXtNNDPaX35o4Fv6vJ9FKk7pZpump/info.json new file mode 100644 index 0000000000000..99684e4cc7530 --- /dev/null +++ b/blockchains/solana/assets/DKu9kykSfbN5LBfFXtNNDPaX35o4Fv6vJ9FKk7pZpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Ava AI", + "type": "SPL", + "symbol": "AVA", + "decimals": 6, + "website": "https://www.holoworld.com/", + "description": "Built for a new generation of creators and brands", + "explorer": "https://solscan.io/token/DKu9kykSfbN5LBfFXtNNDPaX35o4Fv6vJ9FKk7pZpump", + "status": "active", + "id": "DKu9kykSfbN5LBfFXtNNDPaX35o4Fv6vJ9FKk7pZpump", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ava-ai" + }, + { + "name": "x", + "url": "https://x.com/HoloworldAI" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DKu9kykSfbN5LBfFXtNNDPaX35o4Fv6vJ9FKk7pZpump/logo.png b/blockchains/solana/assets/DKu9kykSfbN5LBfFXtNNDPaX35o4Fv6vJ9FKk7pZpump/logo.png new file mode 100644 index 0000000000000..e4c381750bef3 Binary files /dev/null and b/blockchains/solana/assets/DKu9kykSfbN5LBfFXtNNDPaX35o4Fv6vJ9FKk7pZpump/logo.png differ diff --git a/blockchains/solana/assets/DLScRnWofxiYGqnvZWGy9Gt98MPqKdznaK4TRukxpump/info.json b/blockchains/solana/assets/DLScRnWofxiYGqnvZWGy9Gt98MPqKdznaK4TRukxpump/info.json new file mode 100644 index 0000000000000..96ede7a3b4ca9 --- /dev/null +++ b/blockchains/solana/assets/DLScRnWofxiYGqnvZWGy9Gt98MPqKdznaK4TRukxpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Dog", + "website": "https://www.vibecat.com/", + "description": "The community is taking over because they have created a telegram chat and a x", + "explorer": "https://solscan.io/token/DLScRnWofxiYGqnvZWGy9Gt98MPqKdznaK4TRukxpump", + "type": "SPL", + "symbol": "Dog", + "decimals": 6, + "status": "active", + "id": "DLScRnWofxiYGqnvZWGy9Gt98MPqKdznaK4TRukxpump", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dog-emoji-on-solana" + }, + { + "name": "x", + "url": "https://x.com/i/communities/1839912094931566665" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DLScRnWofxiYGqnvZWGy9Gt98MPqKdznaK4TRukxpump/logo.png b/blockchains/solana/assets/DLScRnWofxiYGqnvZWGy9Gt98MPqKdznaK4TRukxpump/logo.png new file mode 100644 index 0000000000000..588b968553253 Binary files /dev/null and b/blockchains/solana/assets/DLScRnWofxiYGqnvZWGy9Gt98MPqKdznaK4TRukxpump/logo.png differ diff --git a/blockchains/solana/assets/DLUNTKRQt7CrpqSX1naHUYoBznJ9pvMP65uCeWQgYnRK/info.json b/blockchains/solana/assets/DLUNTKRQt7CrpqSX1naHUYoBznJ9pvMP65uCeWQgYnRK/info.json new file mode 100644 index 0000000000000..b6bd9ea86b1ff --- /dev/null +++ b/blockchains/solana/assets/DLUNTKRQt7CrpqSX1naHUYoBznJ9pvMP65uCeWQgYnRK/info.json @@ -0,0 +1,28 @@ +{ + "name": "SolCard", + "type": "SPL", + "symbol": "SOLC", + "decimals": 6, + "description": "SolCard is a financial tool designed to bridge the gap between cryptocurrency and traditional online shopping. Launched in Q1 2024 by a team of seasoned blockchain experts, SolCard introduces a no-KYC (Know Your Customer) payment solution tailored for the crypto community, specifically utilizing the Solana blockchain for its operations.", + "website": "https://www.solcard.cc/", + "explorer": "https://solscan.io/token/DLUNTKRQt7CrpqSX1naHUYoBznJ9pvMP65uCeWQgYnRK", + "id": "DLUNTKRQt7CrpqSX1naHUYoBznJ9pvMP65uCeWQgYnRK", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/solcardcc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/solcard/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/solcard" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DLUNTKRQt7CrpqSX1naHUYoBznJ9pvMP65uCeWQgYnRK/logo.png b/blockchains/solana/assets/DLUNTKRQt7CrpqSX1naHUYoBznJ9pvMP65uCeWQgYnRK/logo.png new file mode 100644 index 0000000000000..26c7aee5c70ee Binary files /dev/null and b/blockchains/solana/assets/DLUNTKRQt7CrpqSX1naHUYoBznJ9pvMP65uCeWQgYnRK/logo.png differ diff --git a/blockchains/solana/assets/DLVYnnnCszM9jBhtesSgctr5aowBTDyhm4ZdA5gUcRrz/info.json b/blockchains/solana/assets/DLVYnnnCszM9jBhtesSgctr5aowBTDyhm4ZdA5gUcRrz/info.json new file mode 100644 index 0000000000000..0444091dab57f --- /dev/null +++ b/blockchains/solana/assets/DLVYnnnCszM9jBhtesSgctr5aowBTDyhm4ZdA5gUcRrz/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Τeth℮r", + "type": "SPL", + "symbol": "FAKE USⅮΤ", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/DLVYnnnCszM9jBhtesSgctr5aowBTDyhm4ZdA5gUcRrz", + "explorer": "https://solscan.io/token/DLVYnnnCszM9jBhtesSgctr5aowBTDyhm4ZdA5gUcRrz", + "status": "spam", + "id": "DLVYnnnCszM9jBhtesSgctr5aowBTDyhm4ZdA5gUcRrz" +} \ No newline at end of file diff --git a/blockchains/solana/assets/DMfhf8LFSXTBTwpppTMDojXgg3kcJznUmNjkta9cM1Qk/info.json b/blockchains/solana/assets/DMfhf8LFSXTBTwpppTMDojXgg3kcJznUmNjkta9cM1Qk/info.json new file mode 100644 index 0000000000000..5a3c714d008ab --- /dev/null +++ b/blockchains/solana/assets/DMfhf8LFSXTBTwpppTMDojXgg3kcJznUmNjkta9cM1Qk/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Τether", + "type": "SPL", + "symbol": "FAKE ՍSDΤ", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/DMfhf8LFSXTBTwpppTMDojXgg3kcJznUmNjkta9cM1Qk", + "explorer": "https://solscan.io/token/DMfhf8LFSXTBTwpppTMDojXgg3kcJznUmNjkta9cM1Qk", + "status": "spam", + "id": "DMfhf8LFSXTBTwpppTMDojXgg3kcJznUmNjkta9cM1Qk" +} \ No newline at end of file diff --git a/blockchains/solana/assets/DNfnFTWwEwQW4R8F9Pttfp74WJnFrEHsMNQYWRbyE6CE/info.json b/blockchains/solana/assets/DNfnFTWwEwQW4R8F9Pttfp74WJnFrEHsMNQYWRbyE6CE/info.json new file mode 100644 index 0000000000000..7844b329762fe --- /dev/null +++ b/blockchains/solana/assets/DNfnFTWwEwQW4R8F9Pttfp74WJnFrEHsMNQYWRbyE6CE/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Τether", + "type": "SPL", + "symbol": "FAKE ՍSDΤ", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/DNfnFTWwEwQW4R8F9Pttfp74WJnFrEHsMNQYWRbyE6CE", + "explorer": "https://solscan.io/token/DNfnFTWwEwQW4R8F9Pttfp74WJnFrEHsMNQYWRbyE6CE", + "status": "spam", + "id": "DNfnFTWwEwQW4R8F9Pttfp74WJnFrEHsMNQYWRbyE6CE" +} \ No newline at end of file diff --git a/blockchains/solana/assets/DNyxufTEwqNCgGruJ4W2ue6u1RTFcH61H4sa42LGpump/info.json b/blockchains/solana/assets/DNyxufTEwqNCgGruJ4W2ue6u1RTFcH61H4sa42LGpump/info.json new file mode 100644 index 0000000000000..28dac4ce0e667 --- /dev/null +++ b/blockchains/solana/assets/DNyxufTEwqNCgGruJ4W2ue6u1RTFcH61H4sa42LGpump/info.json @@ -0,0 +1,28 @@ +{ + "name": "bullish", + "type": "SPL", + "symbol": "bullish", + "decimals": 6, + "description": "Bullish Coin ($BULLISH) is a meme-inspired cryptocurrency designed to capture the enthusiasm and optimism of the crypto community. With a total supply of 1,000,000,000 tokens and 100% of the liquidity pool burned, $BULLISH ensures security and stability for its holders.", + "website": "https://www.bullishcoin.xyz/", + "explorer": "https://solscan.io/token/DNyxufTEwqNCgGruJ4W2ue6u1RTFcH61H4sa42LGpump", + "id": "DNyxufTEwqNCgGruJ4W2ue6u1RTFcH61H4sa42LGpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/bullishcoincto" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bullish/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bullish" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DNyxufTEwqNCgGruJ4W2ue6u1RTFcH61H4sa42LGpump/logo.png b/blockchains/solana/assets/DNyxufTEwqNCgGruJ4W2ue6u1RTFcH61H4sa42LGpump/logo.png new file mode 100644 index 0000000000000..10bbf06fd5c40 Binary files /dev/null and b/blockchains/solana/assets/DNyxufTEwqNCgGruJ4W2ue6u1RTFcH61H4sa42LGpump/logo.png differ diff --git a/blockchains/solana/assets/DPaQfq5sFnoqw2Sh9WMmmASFL9LNu6RdtDqwE1tab2tB/info.json b/blockchains/solana/assets/DPaQfq5sFnoqw2Sh9WMmmASFL9LNu6RdtDqwE1tab2tB/info.json new file mode 100644 index 0000000000000..d7ba30a7e2a90 --- /dev/null +++ b/blockchains/solana/assets/DPaQfq5sFnoqw2Sh9WMmmASFL9LNu6RdtDqwE1tab2tB/info.json @@ -0,0 +1,21 @@ +{ + "name": "Skibidi Toilet", + "symbol": "SKBDI", + "type": "SPL", + "decimals": 9, + "description": "Skibidi is a unique Solana memecoin inspired by the viral Skibidi Toilet phenomenon, combining humor with blockchain technology. The project aims to engage a community of enthusiasts through a fun and meme-centric ecosystem.", + "website": "https://www.skbdi.lol/", + "explorer": "https://solscan.io/token/DPaQfq5sFnoqw2Sh9WMmmASFL9LNu6RdtDqwE1tab2tB", + "status": "active", + "id": "DPaQfq5sFnoqw2Sh9WMmmASFL9LNu6RdtDqwE1tab2tB", + "links": [ + { + "name": "x", + "url": "https://x.com/skbditoilet" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/skibidi-toilet-memecoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DPaQfq5sFnoqw2Sh9WMmmASFL9LNu6RdtDqwE1tab2tB/logo.png b/blockchains/solana/assets/DPaQfq5sFnoqw2Sh9WMmmASFL9LNu6RdtDqwE1tab2tB/logo.png new file mode 100644 index 0000000000000..d2dbd0497d7b1 Binary files /dev/null and b/blockchains/solana/assets/DPaQfq5sFnoqw2Sh9WMmmASFL9LNu6RdtDqwE1tab2tB/logo.png differ diff --git a/blockchains/solana/assets/DPcbXW2WnxFAqF1Giaqx6F9JKuno2aNJgAKuA45pump/info.json b/blockchains/solana/assets/DPcbXW2WnxFAqF1Giaqx6F9JKuno2aNJgAKuA45pump/info.json new file mode 100644 index 0000000000000..450358f062f0a --- /dev/null +++ b/blockchains/solana/assets/DPcbXW2WnxFAqF1Giaqx6F9JKuno2aNJgAKuA45pump/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE EURC", + "type": "SPL", + "symbol": "FAKE EURC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/DPcbXW2WnxFAqF1Giaqx6F9JKuno2aNJgAKuA45pump", + "explorer": "https://solscan.io/token/DPcbXW2WnxFAqF1Giaqx6F9JKuno2aNJgAKuA45pump", + "status": "spam", + "id": "DPcbXW2WnxFAqF1Giaqx6F9JKuno2aNJgAKuA45pump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/DSrpc5dvntFqbhdjSuziUEyeXnkRdu1j45JVGzVTBnkq/info.json b/blockchains/solana/assets/DSrpc5dvntFqbhdjSuziUEyeXnkRdu1j45JVGzVTBnkq/info.json new file mode 100644 index 0000000000000..6704a200c2f52 --- /dev/null +++ b/blockchains/solana/assets/DSrpc5dvntFqbhdjSuziUEyeXnkRdu1j45JVGzVTBnkq/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE FELY", + "type": "SPL", + "symbol": "FAKE FELY", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/DSrpc5dvntFqbhdjSuziUEyeXnkRdu1j45JVGzVTBnkq", + "explorer": "https://solscan.io/token/DSrpc5dvntFqbhdjSuziUEyeXnkRdu1j45JVGzVTBnkq", + "status": "spam", + "id": "DSrpc5dvntFqbhdjSuziUEyeXnkRdu1j45JVGzVTBnkq" +} \ No newline at end of file diff --git a/blockchains/solana/assets/DUSTawucrTsGU8hcqRdHDCbuYhCPADMLM2VcCb8VnFnQ/info.json b/blockchains/solana/assets/DUSTawucrTsGU8hcqRdHDCbuYhCPADMLM2VcCb8VnFnQ/info.json new file mode 100644 index 0000000000000..34b5df2306159 --- /dev/null +++ b/blockchains/solana/assets/DUSTawucrTsGU8hcqRdHDCbuYhCPADMLM2VcCb8VnFnQ/info.json @@ -0,0 +1,21 @@ +{ + "name": "DUST Protocol", + "symbol": "DUST", + "type": "SPL", + "decimals": 9, + "description": "Dust Protocol (DUST) is a decentralized protocol and multi-chain utility & governance token that aims to facilitate community-led governance over holder proposals & the Dust DAO treasury.", + "website": "https://www.dustprotocol.com/", + "explorer": "https://solscan.io/token/DUSTawucrTsGU8hcqRdHDCbuYhCPADMLM2VcCb8VnFnQ", + "status": "active", + "id": "DUSTawucrTsGU8hcqRdHDCbuYhCPADMLM2VcCb8VnFnQ", + "links": [ + { + "name": "discord", + "url": "https://discord.com/invite/dexyz" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dust-protocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DUSTawucrTsGU8hcqRdHDCbuYhCPADMLM2VcCb8VnFnQ/logo.png b/blockchains/solana/assets/DUSTawucrTsGU8hcqRdHDCbuYhCPADMLM2VcCb8VnFnQ/logo.png new file mode 100644 index 0000000000000..fcb0925a92fd6 Binary files /dev/null and b/blockchains/solana/assets/DUSTawucrTsGU8hcqRdHDCbuYhCPADMLM2VcCb8VnFnQ/logo.png differ diff --git a/blockchains/solana/assets/DVPSYdqWPLvNa8afnEqa3B9eDfTTWpGyUZeXvdMondo/info.json b/blockchains/solana/assets/DVPSYdqWPLvNa8afnEqa3B9eDfTTWpGyUZeXvdMondo/info.json new file mode 100644 index 0000000000000..c29ec80be3c48 --- /dev/null +++ b/blockchains/solana/assets/DVPSYdqWPLvNa8afnEqa3B9eDfTTWpGyUZeXvdMondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "KraneShares CSI China Internet ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "KWEBon", + "decimals": 9, + "description": "KWEBon is the Ondo Tokenized version of the KraneShares CSI China Internet ETF, giving tokenholders economic exposure similar to holding KWEB and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/DVPSYdqWPLvNa8afnEqa3B9eDfTTWpGyUZeXvdMondo", + "status": "active", + "id": "DVPSYdqWPLvNa8afnEqa3B9eDfTTWpGyUZeXvdMondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kraneshares-csi-china-internet-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DVPSYdqWPLvNa8afnEqa3B9eDfTTWpGyUZeXvdMondo/logo.png b/blockchains/solana/assets/DVPSYdqWPLvNa8afnEqa3B9eDfTTWpGyUZeXvdMondo/logo.png new file mode 100644 index 0000000000000..69cee97e8fefc Binary files /dev/null and b/blockchains/solana/assets/DVPSYdqWPLvNa8afnEqa3B9eDfTTWpGyUZeXvdMondo/logo.png differ diff --git a/blockchains/solana/assets/DVZrNS9fctrrDmhZUZAu6p63xU6d9cqYxRRhJbtJ4z8G/info.json b/blockchains/solana/assets/DVZrNS9fctrrDmhZUZAu6p63xU6d9cqYxRRhJbtJ4z8G/info.json new file mode 100644 index 0000000000000..f0d58f0f52619 --- /dev/null +++ b/blockchains/solana/assets/DVZrNS9fctrrDmhZUZAu6p63xU6d9cqYxRRhJbtJ4z8G/info.json @@ -0,0 +1,21 @@ +{ + "name": "Ross Ulbricht", + "website": "https://rossonsol.com/", + "description": "Ross Ulbricht, the creator of Silk Road, has been imprisoned since 2013 for non-violent offenses as a first-time offender.", + "explorer": "https://solscan.io/token/DVZrNS9fctrrDmhZUZAu6p63xU6d9cqYxRRhJbtJ4z8G", + "type": "SPL", + "symbol": "Ross", + "decimals": 6, + "status": "active", + "id": "DVZrNS9fctrrDmhZUZAu6p63xU6d9cqYxRRhJbtJ4z8G", + "links": [ + { + "name": "x", + "url": "https://x.com/rossonsol" + }, + { + "name": "telegram", + "url": "https://t.me/rossportal" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DVZrNS9fctrrDmhZUZAu6p63xU6d9cqYxRRhJbtJ4z8G/logo.png b/blockchains/solana/assets/DVZrNS9fctrrDmhZUZAu6p63xU6d9cqYxRRhJbtJ4z8G/logo.png new file mode 100644 index 0000000000000..2b3f68e84ca16 Binary files /dev/null and b/blockchains/solana/assets/DVZrNS9fctrrDmhZUZAu6p63xU6d9cqYxRRhJbtJ4z8G/logo.png differ diff --git a/blockchains/solana/assets/DWEsJwPRrFscjH8krbMryHo6UNQ3tAd7kK3SPVcYTiHH/info.json b/blockchains/solana/assets/DWEsJwPRrFscjH8krbMryHo6UNQ3tAd7kK3SPVcYTiHH/info.json new file mode 100644 index 0000000000000..ebb77a95dd57d --- /dev/null +++ b/blockchains/solana/assets/DWEsJwPRrFscjH8krbMryHo6UNQ3tAd7kK3SPVcYTiHH/info.json @@ -0,0 +1,21 @@ +{ + "name": "SPERO", + "website": "https://speromoney.com/", + "description": "$SPERO: The Hopeful Meme Coin for the People", + "explorer": "https://solscan.io/token/DWEsJwPRrFscjH8krbMryHo6UNQ3tAd7kK3SPVcYTiHH", + "type": "SPL", + "symbol": "$s$", + "decimals": 8, + "status": "active", + "id": "DWEsJwPRrFscjH8krbMryHo6UNQ3tAd7kK3SPVcYTiHH", + "links": [ + { + "name": "x", + "url": "https://x.com/SPEROALTCOIN" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spero/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DWEsJwPRrFscjH8krbMryHo6UNQ3tAd7kK3SPVcYTiHH/logo.png b/blockchains/solana/assets/DWEsJwPRrFscjH8krbMryHo6UNQ3tAd7kK3SPVcYTiHH/logo.png new file mode 100644 index 0000000000000..6785e3b1b9fe5 Binary files /dev/null and b/blockchains/solana/assets/DWEsJwPRrFscjH8krbMryHo6UNQ3tAd7kK3SPVcYTiHH/logo.png differ diff --git a/blockchains/solana/assets/DcRHumYETnVKowMmDSXQ5RcGrFZFAnaqrQ1AZCHXpump/info.json b/blockchains/solana/assets/DcRHumYETnVKowMmDSXQ5RcGrFZFAnaqrQ1AZCHXpump/info.json new file mode 100644 index 0000000000000..772e9c79ecccb --- /dev/null +++ b/blockchains/solana/assets/DcRHumYETnVKowMmDSXQ5RcGrFZFAnaqrQ1AZCHXpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "The Dissolution of Value", + "website": "https://yudho.xyz/", + "description": "YUDHO (b.1990) is a multidisciplinary artist from Indonesia who is currently focused on digital art. From a young age, he has been captivated by the world of art, with a passion for expressing his emotions and thoughts through painting.", + "explorer": "https://solscan.io/token/DcRHumYETnVKowMmDSXQ5RcGrFZFAnaqrQ1AZCHXpump", + "type": "SPL", + "symbol": "VALUE", + "decimals": 6, + "status": "active", + "id": "DcRHumYETnVKowMmDSXQ5RcGrFZFAnaqrQ1AZCHXpump", + "links": [ + { + "name": "x", + "url": "https://x.com/yudho_xyz" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/the-dissolution-of-value" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DcRHumYETnVKowMmDSXQ5RcGrFZFAnaqrQ1AZCHXpump/logo.png b/blockchains/solana/assets/DcRHumYETnVKowMmDSXQ5RcGrFZFAnaqrQ1AZCHXpump/logo.png new file mode 100644 index 0000000000000..8f6134eaafa84 Binary files /dev/null and b/blockchains/solana/assets/DcRHumYETnVKowMmDSXQ5RcGrFZFAnaqrQ1AZCHXpump/logo.png differ diff --git a/blockchains/solana/assets/DcX5VZZuJgB7nfgip7ZupzRkN4tAAymShzBWVtTGEgQA/info.json b/blockchains/solana/assets/DcX5VZZuJgB7nfgip7ZupzRkN4tAAymShzBWVtTGEgQA/info.json new file mode 100644 index 0000000000000..5ced53ed8c3c5 --- /dev/null +++ b/blockchains/solana/assets/DcX5VZZuJgB7nfgip7ZupzRkN4tAAymShzBWVtTGEgQA/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT HOPR", + "type": "SPL", + "symbol": "HONEYPOT HOPR", + "decimals": 6, + "website": "https://solscan.io/token/DcX5VZZuJgB7nfgip7ZupzRkN4tAAymShzBWVtTGEgQA", + "description": "HONEYPOT HOPR", + "explorer": "https://explorer.solana.com/address/DcX5VZZuJgB7nfgip7ZupzRkN4tAAymShzBWVtTGEgQA", + "status": "spam", + "id": "DcX5VZZuJgB7nfgip7ZupzRkN4tAAymShzBWVtTGEgQA" +} \ No newline at end of file diff --git a/blockchains/solana/assets/Ddm4DTxNZxABUYm2A87TFLY6GDG2ktM2eJhGZS3EbzHM/info.json b/blockchains/solana/assets/Ddm4DTxNZxABUYm2A87TFLY6GDG2ktM2eJhGZS3EbzHM/info.json new file mode 100644 index 0000000000000..d7b8a5c909f64 --- /dev/null +++ b/blockchains/solana/assets/Ddm4DTxNZxABUYm2A87TFLY6GDG2ktM2eJhGZS3EbzHM/info.json @@ -0,0 +1,17 @@ +{ + "name": "DISTRIBUTE", + "type": "SPL", + "symbol": "DISTRIBUTE", + "decimals": 6, + "website": "https://distributesol.io", + "description": "Launch Tokens with a distributor in minutes, without coding knowledge", + "explorer": "https://solscan.io/token/Ddm4DTxNZxABUYm2A87TFLY6GDG2ktM2eJhGZS3EbzHM", + "status": "active", + "id": "Ddm4DTxNZxABUYm2A87TFLY6GDG2ktM2eJhGZS3EbzHM", + "links": [ + { + "name": "x", + "url": "https://x.com/distribute_sol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Ddm4DTxNZxABUYm2A87TFLY6GDG2ktM2eJhGZS3EbzHM/logo.png b/blockchains/solana/assets/Ddm4DTxNZxABUYm2A87TFLY6GDG2ktM2eJhGZS3EbzHM/logo.png new file mode 100644 index 0000000000000..69d673b5db77c Binary files /dev/null and b/blockchains/solana/assets/Ddm4DTxNZxABUYm2A87TFLY6GDG2ktM2eJhGZS3EbzHM/logo.png differ diff --git a/blockchains/solana/assets/DeaKMzAeZja3Mh5okZE6WUvygLP3Lfuvm6Rg78HqXTz9/info.json b/blockchains/solana/assets/DeaKMzAeZja3Mh5okZE6WUvygLP3Lfuvm6Rg78HqXTz9/info.json new file mode 100644 index 0000000000000..f154326a8d1c3 --- /dev/null +++ b/blockchains/solana/assets/DeaKMzAeZja3Mh5okZE6WUvygLP3Lfuvm6Rg78HqXTz9/info.json @@ -0,0 +1,28 @@ +{ + "name": "Solnic", + "type": "SPL", + "symbol": "SOLNIC", + "decimals": 6, + "description": "This is the ultimate comeback story in the world of meme coins! With new ATH after ATH. What started as a chaotic launch, overrun by sniper bots and early setbacks, seemed destined for failure when the original developers walked away.", + "website": "https://solnic.io/", + "explorer": "https://solscan.io/token/DeaKMzAeZja3Mh5okZE6WUvygLP3Lfuvm6Rg78HqXTz9", + "id": "DeaKMzAeZja3Mh5okZE6WUvygLP3Lfuvm6Rg78HqXTz9", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/SolnicCoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/solnic/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/solnic" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DeaKMzAeZja3Mh5okZE6WUvygLP3Lfuvm6Rg78HqXTz9/logo.png b/blockchains/solana/assets/DeaKMzAeZja3Mh5okZE6WUvygLP3Lfuvm6Rg78HqXTz9/logo.png new file mode 100644 index 0000000000000..5238dcbd6d5b5 Binary files /dev/null and b/blockchains/solana/assets/DeaKMzAeZja3Mh5okZE6WUvygLP3Lfuvm6Rg78HqXTz9/logo.png differ diff --git a/blockchains/solana/assets/DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263/info.json b/blockchains/solana/assets/DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263/info.json index 70cc562f242ad..749d509dd569b 100644 --- a/blockchains/solana/assets/DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263/info.json +++ b/blockchains/solana/assets/DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263/info.json @@ -10,8 +10,8 @@ "id": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263", "links": [ { - "name": "twitter", - "url": "https://twitter.com/bonk_inu" + "name": "x", + "url": "https://x.com/bonk_inu" }, { "name": "coinmarketcap", @@ -25,4 +25,4 @@ "tags": [ "memes" ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/solana/assets/Df6yfrKC8kZE3KNkrHERKzAetSxbrWeniQfyJY4Jpump/info.json b/blockchains/solana/assets/Df6yfrKC8kZE3KNkrHERKzAetSxbrWeniQfyJY4Jpump/info.json new file mode 100644 index 0000000000000..ac8a6b6d2baf0 --- /dev/null +++ b/blockchains/solana/assets/Df6yfrKC8kZE3KNkrHERKzAetSxbrWeniQfyJY4Jpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Just a chill guy", + "type": "SPL", + "symbol": "CHILLGUY", + "decimals": 6, + "description": "The Chill Guy is a new meme character that’s all about being super relaxed and not caring much about anything. His whole vibe is “lowkey” — meaning he’s calm, casual, and doesn't make a big deal about stuff.", + "website": "https://www.chillguy.io/", + "explorer": "https://solscan.io/token/Df6yfrKC8kZE3KNkrHERKzAetSxbrWeniQfyJY4Jpump", + "id": "Df6yfrKC8kZE3KNkrHERKzAetSxbrWeniQfyJY4Jpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/chillguycto" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/just-a-chill-guy" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Df6yfrKC8kZE3KNkrHERKzAetSxbrWeniQfyJY4Jpump/logo.png b/blockchains/solana/assets/Df6yfrKC8kZE3KNkrHERKzAetSxbrWeniQfyJY4Jpump/logo.png new file mode 100644 index 0000000000000..a8a403e80d745 Binary files /dev/null and b/blockchains/solana/assets/Df6yfrKC8kZE3KNkrHERKzAetSxbrWeniQfyJY4Jpump/logo.png differ diff --git a/blockchains/solana/assets/Dfh5DzRgSvvCFDoYc2ciTkMrbDfRKybA4SoFbPmApump/info.json b/blockchains/solana/assets/Dfh5DzRgSvvCFDoYc2ciTkMrbDfRKybA4SoFbPmApump/info.json new file mode 100644 index 0000000000000..c94e5ec7545f1 --- /dev/null +++ b/blockchains/solana/assets/Dfh5DzRgSvvCFDoYc2ciTkMrbDfRKybA4SoFbPmApump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Pippin", + "type": "SPL", + "symbol": "pippin", + "decimals": 6, + "website": "https://pippin.love/", + "description": "A place where gentle wonders shape unseen connections, and kind words bloom like flowers.", + "explorer": "https://solscan.io/token/Dfh5DzRgSvvCFDoYc2ciTkMrbDfRKybA4SoFbPmApump", + "status": "active", + "id": "Dfh5DzRgSvvCFDoYc2ciTkMrbDfRKybA4SoFbPmApump", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pippin/" + }, + { + "name": "x", + "url": "https://x.com/pippinlovesyou" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Dfh5DzRgSvvCFDoYc2ciTkMrbDfRKybA4SoFbPmApump/logo.png b/blockchains/solana/assets/Dfh5DzRgSvvCFDoYc2ciTkMrbDfRKybA4SoFbPmApump/logo.png new file mode 100644 index 0000000000000..09d1bec34fe3d Binary files /dev/null and b/blockchains/solana/assets/Dfh5DzRgSvvCFDoYc2ciTkMrbDfRKybA4SoFbPmApump/logo.png differ diff --git a/blockchains/solana/assets/Dg5qTMUrfMucLSt2BUMkVG1kRuyiEDf63o5XS5wHew6W/info.json b/blockchains/solana/assets/Dg5qTMUrfMucLSt2BUMkVG1kRuyiEDf63o5XS5wHew6W/info.json new file mode 100644 index 0000000000000..eb641c12ccb70 --- /dev/null +++ b/blockchains/solana/assets/Dg5qTMUrfMucLSt2BUMkVG1kRuyiEDf63o5XS5wHew6W/info.json @@ -0,0 +1,21 @@ +{ + "name": "Ariacoin", + "symbol": "ARIA", + "type": "SPL", + "decimals": 8, + "description": "$Aria Coin powers a vibrant ecosystem, providing users with diverse utilities that combine entertainment", + "website": "https://www.ariacoin.io/", + "explorer": "https://solscan.io/token/Dg5qTMUrfMucLSt2BUMkVG1kRuyiEDf63o5XS5wHew6W", + "status": "active", + "id": "Dg5qTMUrfMucLSt2BUMkVG1kRuyiEDf63o5XS5wHew6W", + "links": [ + { + "name": "x", + "url": "https://x.com/AriaonSol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ariacoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Dg5qTMUrfMucLSt2BUMkVG1kRuyiEDf63o5XS5wHew6W/logo.png b/blockchains/solana/assets/Dg5qTMUrfMucLSt2BUMkVG1kRuyiEDf63o5XS5wHew6W/logo.png new file mode 100644 index 0000000000000..e21da6897ba53 Binary files /dev/null and b/blockchains/solana/assets/Dg5qTMUrfMucLSt2BUMkVG1kRuyiEDf63o5XS5wHew6W/logo.png differ diff --git a/blockchains/solana/assets/DhuNPyaMF7n8rYs9goo32bcptkoo5bPhWBF67ftLVjsW/info.json b/blockchains/solana/assets/DhuNPyaMF7n8rYs9goo32bcptkoo5bPhWBF67ftLVjsW/info.json new file mode 100644 index 0000000000000..eca3d003880c6 --- /dev/null +++ b/blockchains/solana/assets/DhuNPyaMF7n8rYs9goo32bcptkoo5bPhWBF67ftLVjsW/info.json @@ -0,0 +1,21 @@ +{ + "name": "TDM", + "symbol": "TDM", + "type": "SPL", + "decimals": 8, + "description": "With over 3 million users, the TDM app is transforming nutrition and wellness. Through blockchain, it allows those without bank access to easily purchase our programs.", + "website": "https://trainingdietmax.com/", + "explorer": "https://solscan.io/token/DhuNPyaMF7n8rYs9goo32bcptkoo5bPhWBF67ftLVjsW", + "status": "active", + "id": "DhuNPyaMF7n8rYs9goo32bcptkoo5bPhWBF67ftLVjsW", + "links": [ + { + "name": "x", + "url": "https://x.com/trainingdietmax" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tdm" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DhuNPyaMF7n8rYs9goo32bcptkoo5bPhWBF67ftLVjsW/logo.png b/blockchains/solana/assets/DhuNPyaMF7n8rYs9goo32bcptkoo5bPhWBF67ftLVjsW/logo.png new file mode 100644 index 0000000000000..803758be639cb Binary files /dev/null and b/blockchains/solana/assets/DhuNPyaMF7n8rYs9goo32bcptkoo5bPhWBF67ftLVjsW/logo.png differ diff --git a/blockchains/solana/assets/DhvyrkfyUXoBKDDMYxHrrVFffxCuzkBnMYoZJ5eSHoDL/info.json b/blockchains/solana/assets/DhvyrkfyUXoBKDDMYxHrrVFffxCuzkBnMYoZJ5eSHoDL/info.json new file mode 100644 index 0000000000000..58b39e8dacaa2 --- /dev/null +++ b/blockchains/solana/assets/DhvyrkfyUXoBKDDMYxHrrVFffxCuzkBnMYoZJ5eSHoDL/info.json @@ -0,0 +1,20 @@ +{ + "name": "HODL", + "type": "SPL", + "symbol": "HODL", + "decimals": 6, + "description": "Holdstation is a smart wallet transforming the DeFi landscape by crafting a Product Fit for the Community,", + "website": "https://holdstation.com/", + "explorer": "https://solscan.io/token/DhvyrkfyUXoBKDDMYxHrrVFffxCuzkBnMYoZJ5eSHoDL", + "id": "DhvyrkfyUXoBKDDMYxHrrVFffxCuzkBnMYoZJ5eSHoDL", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/HoldstationW" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DhvyrkfyUXoBKDDMYxHrrVFffxCuzkBnMYoZJ5eSHoDL/logo.png b/blockchains/solana/assets/DhvyrkfyUXoBKDDMYxHrrVFffxCuzkBnMYoZJ5eSHoDL/logo.png new file mode 100644 index 0000000000000..b4351ad203ec6 Binary files /dev/null and b/blockchains/solana/assets/DhvyrkfyUXoBKDDMYxHrrVFffxCuzkBnMYoZJ5eSHoDL/logo.png differ diff --git a/blockchains/solana/assets/DiDWPZ7vQXfpaeQ8BX68XuDYeiQLv7diDxdeUpaondo/info.json b/blockchains/solana/assets/DiDWPZ7vQXfpaeQ8BX68XuDYeiQLv7diDxdeUpaondo/info.json new file mode 100644 index 0000000000000..160a55e7df478 --- /dev/null +++ b/blockchains/solana/assets/DiDWPZ7vQXfpaeQ8BX68XuDYeiQLv7diDxdeUpaondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Intuitive Machines (Ondo Tokenized)", + "type": "SPL", + "symbol": "LUNRon", + "decimals": 9, + "description": "LUNRon is the Ondo Tokenized version of Intuitive Machines, giving tokenholders economic exposure similar to holding LUNR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/DiDWPZ7vQXfpaeQ8BX68XuDYeiQLv7diDxdeUpaondo", + "status": "active", + "id": "DiDWPZ7vQXfpaeQ8BX68XuDYeiQLv7diDxdeUpaondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/intuitive-machines-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DiDWPZ7vQXfpaeQ8BX68XuDYeiQLv7diDxdeUpaondo/logo.png b/blockchains/solana/assets/DiDWPZ7vQXfpaeQ8BX68XuDYeiQLv7diDxdeUpaondo/logo.png new file mode 100644 index 0000000000000..8a3fd6997cc75 Binary files /dev/null and b/blockchains/solana/assets/DiDWPZ7vQXfpaeQ8BX68XuDYeiQLv7diDxdeUpaondo/logo.png differ diff --git a/blockchains/solana/assets/DiRshqNDE68bWbGdLHm1GwQ76MvWQG3af6w1NdQondo/info.json b/blockchains/solana/assets/DiRshqNDE68bWbGdLHm1GwQ76MvWQG3af6w1NdQondo/info.json new file mode 100644 index 0000000000000..df650bf0868d4 --- /dev/null +++ b/blockchains/solana/assets/DiRshqNDE68bWbGdLHm1GwQ76MvWQG3af6w1NdQondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Nebius Group (Ondo Tokenized)", + "type": "SPL", + "symbol": "NBISon", + "decimals": 9, + "description": "NBISon is the Ondo Tokenized version of Nebius Group, giving tokenholders economic exposure similar to holding NBIS and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/DiRshqNDE68bWbGdLHm1GwQ76MvWQG3af6w1NdQondo", + "status": "active", + "id": "DiRshqNDE68bWbGdLHm1GwQ76MvWQG3af6w1NdQondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/nebius-group-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DiRshqNDE68bWbGdLHm1GwQ76MvWQG3af6w1NdQondo/logo.png b/blockchains/solana/assets/DiRshqNDE68bWbGdLHm1GwQ76MvWQG3af6w1NdQondo/logo.png new file mode 100644 index 0000000000000..c530871fade72 Binary files /dev/null and b/blockchains/solana/assets/DiRshqNDE68bWbGdLHm1GwQ76MvWQG3af6w1NdQondo/logo.png differ diff --git a/blockchains/solana/assets/Dig28Tf1ufhCBAsjTmFkXCgcNgMqDMYj5A2rDQmondo/info.json b/blockchains/solana/assets/Dig28Tf1ufhCBAsjTmFkXCgcNgMqDMYj5A2rDQmondo/info.json new file mode 100644 index 0000000000000..ff93d4fe94235 --- /dev/null +++ b/blockchains/solana/assets/Dig28Tf1ufhCBAsjTmFkXCgcNgMqDMYj5A2rDQmondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Newmont (Ondo Tokenized)", + "type": "SPL", + "symbol": "NEMon", + "decimals": 9, + "description": "NEMon is the Ondo Tokenized version of Newmont, giving tokenholders economic exposure similar to holding NEM and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/Dig28Tf1ufhCBAsjTmFkXCgcNgMqDMYj5A2rDQmondo", + "status": "active", + "id": "Dig28Tf1ufhCBAsjTmFkXCgcNgMqDMYj5A2rDQmondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/newmont-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Dig28Tf1ufhCBAsjTmFkXCgcNgMqDMYj5A2rDQmondo/logo.png b/blockchains/solana/assets/Dig28Tf1ufhCBAsjTmFkXCgcNgMqDMYj5A2rDQmondo/logo.png new file mode 100644 index 0000000000000..35f0a8ec45456 Binary files /dev/null and b/blockchains/solana/assets/Dig28Tf1ufhCBAsjTmFkXCgcNgMqDMYj5A2rDQmondo/logo.png differ diff --git a/blockchains/solana/assets/Dm6FpQ76SsbVmAZ4NvD2mjZP7cxbw1CASr4WwCiondo/info.json b/blockchains/solana/assets/Dm6FpQ76SsbVmAZ4NvD2mjZP7cxbw1CASr4WwCiondo/info.json new file mode 100644 index 0000000000000..8bea78fef62e1 --- /dev/null +++ b/blockchains/solana/assets/Dm6FpQ76SsbVmAZ4NvD2mjZP7cxbw1CASr4WwCiondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Northrop Grumman (Ondo Tokenized)", + "type": "SPL", + "symbol": "NOCon", + "decimals": 9, + "description": "NOCon is the Ondo Tokenized version of Northrop Grumman, giving tokenholders economic exposure similar to holding NOC and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/Dm6FpQ76SsbVmAZ4NvD2mjZP7cxbw1CASr4WwCiondo", + "status": "active", + "id": "Dm6FpQ76SsbVmAZ4NvD2mjZP7cxbw1CASr4WwCiondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/northrop-grumman-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Dm6FpQ76SsbVmAZ4NvD2mjZP7cxbw1CASr4WwCiondo/logo.png b/blockchains/solana/assets/Dm6FpQ76SsbVmAZ4NvD2mjZP7cxbw1CASr4WwCiondo/logo.png new file mode 100644 index 0000000000000..0ad397a4b13aa Binary files /dev/null and b/blockchains/solana/assets/Dm6FpQ76SsbVmAZ4NvD2mjZP7cxbw1CASr4WwCiondo/logo.png differ diff --git a/blockchains/solana/assets/DmzAMg1W1WJUNb2JN1B7tYfL3pCtzeZqGVZoDw34pump/info.json b/blockchains/solana/assets/DmzAMg1W1WJUNb2JN1B7tYfL3pCtzeZqGVZoDw34pump/info.json new file mode 100644 index 0000000000000..1fbf553f3cca0 --- /dev/null +++ b/blockchains/solana/assets/DmzAMg1W1WJUNb2JN1B7tYfL3pCtzeZqGVZoDw34pump/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE EURC", + "type": "SPL", + "symbol": "FAKE EURC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/DmzAMg1W1WJUNb2JN1B7tYfL3pCtzeZqGVZoDw34pump", + "explorer": "https://solscan.io/token/DmzAMg1W1WJUNb2JN1B7tYfL3pCtzeZqGVZoDw34pump", + "status": "spam", + "id": "DmzAMg1W1WJUNb2JN1B7tYfL3pCtzeZqGVZoDw34pump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/Dnb9dLSXxAarXVexehzeH8W8nFmLMNJSuGoaddZSwtog/info.json b/blockchains/solana/assets/Dnb9dLSXxAarXVexehzeH8W8nFmLMNJSuGoaddZSwtog/info.json new file mode 100644 index 0000000000000..c1a45bf20aa8d --- /dev/null +++ b/blockchains/solana/assets/Dnb9dLSXxAarXVexehzeH8W8nFmLMNJSuGoaddZSwtog/info.json @@ -0,0 +1,21 @@ +{ + "name": "cok the cat", + "type": "SPL", + "symbol": "COK", + "decimals": 6, + "website": "https://catownkimono.com/", + "description": "$COK was born two days after its sibling $WIF. Both birthed by the same legendary DEV Patrick Bateman.", + "explorer": "https://solscan.io/token/Dnb9dLSXxAarXVexehzeH8W8nFmLMNJSuGoaddZSwtog", + "status": "active", + "id": "Dnb9dLSXxAarXVexehzeH8W8nFmLMNJSuGoaddZSwtog", + "links": [ + { + "name": "x", + "url": "https://x.com/catownkimono" + }, + { + "name": "telegram", + "url": "https://t.me/KimonoStaysOn" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Dnb9dLSXxAarXVexehzeH8W8nFmLMNJSuGoaddZSwtog/logo.png b/blockchains/solana/assets/Dnb9dLSXxAarXVexehzeH8W8nFmLMNJSuGoaddZSwtog/logo.png new file mode 100644 index 0000000000000..5d701cec8a7e3 Binary files /dev/null and b/blockchains/solana/assets/Dnb9dLSXxAarXVexehzeH8W8nFmLMNJSuGoaddZSwtog/logo.png differ diff --git a/blockchains/solana/assets/DnvbCqRuUYssmKVRBRNwkUnptHitH4ZZTt1KVuZondo/info.json b/blockchains/solana/assets/DnvbCqRuUYssmKVRBRNwkUnptHitH4ZZTt1KVuZondo/info.json new file mode 100644 index 0000000000000..cfbce995da28d --- /dev/null +++ b/blockchains/solana/assets/DnvbCqRuUYssmKVRBRNwkUnptHitH4ZZTt1KVuZondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "VanEck Oil Services ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "OIHon", + "decimals": 9, + "description": "OIHon is the Ondo Tokenized version of the VanEck Oil Services ETF, giving tokenholders economic exposure similar to holding OIH and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/DnvbCqRuUYssmKVRBRNwkUnptHitH4ZZTt1KVuZondo", + "status": "active", + "id": "DnvbCqRuUYssmKVRBRNwkUnptHitH4ZZTt1KVuZondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vaneck-oil-services-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DnvbCqRuUYssmKVRBRNwkUnptHitH4ZZTt1KVuZondo/logo.png b/blockchains/solana/assets/DnvbCqRuUYssmKVRBRNwkUnptHitH4ZZTt1KVuZondo/logo.png new file mode 100644 index 0000000000000..3bdf99e20ccd1 Binary files /dev/null and b/blockchains/solana/assets/DnvbCqRuUYssmKVRBRNwkUnptHitH4ZZTt1KVuZondo/logo.png differ diff --git a/blockchains/solana/assets/DoxsC4PpVHiUxCKYeKSkPXVVVSJYzidZZJxW4XCFF2t/info.json b/blockchains/solana/assets/DoxsC4PpVHiUxCKYeKSkPXVVVSJYzidZZJxW4XCFF2t/info.json new file mode 100644 index 0000000000000..df4ed4a52f42d --- /dev/null +++ b/blockchains/solana/assets/DoxsC4PpVHiUxCKYeKSkPXVVVSJYzidZZJxW4XCFF2t/info.json @@ -0,0 +1,28 @@ +{ + "name": "Bonk of America", + "type": "SPL", + "symbol": "BONKFA", + "decimals": 6, + "description": "Bonk of America is building the Bonk Teller bot, a new way for token communities to boost holder retention and incentivize engagement by rewarding holders in their native tokens for a wide range of activity across multiple platforms.", + "website": "https://www.bonkfa.com/", + "explorer": "https://solscan.io/token/DoxsC4PpVHiUxCKYeKSkPXVVVSJYzidZZJxW4XCFF2t", + "id": "DoxsC4PpVHiUxCKYeKSkPXVVVSJYzidZZJxW4XCFF2t", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/BonkOfA" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bonk-of-america/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bonk-of-america" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DoxsC4PpVHiUxCKYeKSkPXVVVSJYzidZZJxW4XCFF2t/logo.png b/blockchains/solana/assets/DoxsC4PpVHiUxCKYeKSkPXVVVSJYzidZZJxW4XCFF2t/logo.png new file mode 100644 index 0000000000000..6c9f7e6401f28 Binary files /dev/null and b/blockchains/solana/assets/DoxsC4PpVHiUxCKYeKSkPXVVVSJYzidZZJxW4XCFF2t/logo.png differ diff --git a/blockchains/solana/assets/DqrcZRHM9JuCUhnLyaWF7rLLjxE5h3MbiG7iferUpump/info.json b/blockchains/solana/assets/DqrcZRHM9JuCUhnLyaWF7rLLjxE5h3MbiG7iferUpump/info.json new file mode 100644 index 0000000000000..dd1fafc423142 --- /dev/null +++ b/blockchains/solana/assets/DqrcZRHM9JuCUhnLyaWF7rLLjxE5h3MbiG7iferUpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Crypto Agent Trading", + "symbol": "CATG", + "decimals": 6, + "type": "SPL", + "website": "https://app.boltrade.ai/", + "description": "C.A.T (Crypto Agent Trading) is an AI-powered trading framework within the Boltrade ecosystem, launched on PumpFun under the token symbol CATG (contract: DqrcZRHM9JuCUhnLyaWF7rLLjxE5h3MbiG7iferUpump).", + "explorer": "https://solscan.io/token/DqrcZRHM9JuCUhnLyaWF7rLLjxE5h3MbiG7iferUpump", + "status": "active", + "id": "DqrcZRHM9JuCUhnLyaWF7rLLjxE5h3MbiG7iferUpump", + "links": [ + { + "name": "x", + "url": "https://x.com/boltrade_ai" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crypto-agent-trading/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DqrcZRHM9JuCUhnLyaWF7rLLjxE5h3MbiG7iferUpump/logo.png b/blockchains/solana/assets/DqrcZRHM9JuCUhnLyaWF7rLLjxE5h3MbiG7iferUpump/logo.png new file mode 100644 index 0000000000000..d262940e5ed63 Binary files /dev/null and b/blockchains/solana/assets/DqrcZRHM9JuCUhnLyaWF7rLLjxE5h3MbiG7iferUpump/logo.png differ diff --git a/blockchains/solana/assets/DriFtupJYLTosbwoN8koMbEYSx54aFAVLddWsbksjwg7/info.json b/blockchains/solana/assets/DriFtupJYLTosbwoN8koMbEYSx54aFAVLddWsbksjwg7/info.json new file mode 100644 index 0000000000000..aec2beacc4998 --- /dev/null +++ b/blockchains/solana/assets/DriFtupJYLTosbwoN8koMbEYSx54aFAVLddWsbksjwg7/info.json @@ -0,0 +1,17 @@ +{ + "name": "DRIFT", + "type": "SPL", + "symbol": "DRIFT", + "decimals": 6, + "website": "https://www.drift.foundation/", + "description": "Drift is a fully on-chain perpetual and spot DEX built on Solana.", + "explorer": "https://solscan.io/token/DriFtupJYLTosbwoN8koMbEYSx54aFAVLddWsbksjwg7", + "status": "active", + "id": "DriFtupJYLTosbwoN8koMbEYSx54aFAVLddWsbksjwg7", + "links": [ + { + "name": "x", + "url": "https://x.com/DriftProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DriFtupJYLTosbwoN8koMbEYSx54aFAVLddWsbksjwg7/logo.png b/blockchains/solana/assets/DriFtupJYLTosbwoN8koMbEYSx54aFAVLddWsbksjwg7/logo.png new file mode 100644 index 0000000000000..ee3b087ebeb66 Binary files /dev/null and b/blockchains/solana/assets/DriFtupJYLTosbwoN8koMbEYSx54aFAVLddWsbksjwg7/logo.png differ diff --git a/blockchains/solana/assets/DsLQ18ooPjiHYuiuQ5Jz8PNCpVaKe3FhAYpvMxWondo/info.json b/blockchains/solana/assets/DsLQ18ooPjiHYuiuQ5Jz8PNCpVaKe3FhAYpvMxWondo/info.json new file mode 100644 index 0000000000000..ca63aa49d7a5d --- /dev/null +++ b/blockchains/solana/assets/DsLQ18ooPjiHYuiuQ5Jz8PNCpVaKe3FhAYpvMxWondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Global X US Infrastructure Development ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "PAVEon", + "decimals": 9, + "description": "PAVEon is the Ondo Tokenized version of the Global X US Infrastructure Development ETF, giving tokenholders economic exposure similar to holding PAVE and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/DsLQ18ooPjiHYuiuQ5Jz8PNCpVaKe3FhAYpvMxWondo", + "status": "active", + "id": "DsLQ18ooPjiHYuiuQ5Jz8PNCpVaKe3FhAYpvMxWondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/global-x-us-infrastructure-development-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DsLQ18ooPjiHYuiuQ5Jz8PNCpVaKe3FhAYpvMxWondo/logo.png b/blockchains/solana/assets/DsLQ18ooPjiHYuiuQ5Jz8PNCpVaKe3FhAYpvMxWondo/logo.png new file mode 100644 index 0000000000000..6767ada84d412 Binary files /dev/null and b/blockchains/solana/assets/DsLQ18ooPjiHYuiuQ5Jz8PNCpVaKe3FhAYpvMxWondo/logo.png differ diff --git a/blockchains/solana/assets/DtR4D9FtVoTX2569gaL837ZgrB6wNjj6tkmnX9Rdk9B2/info.json b/blockchains/solana/assets/DtR4D9FtVoTX2569gaL837ZgrB6wNjj6tkmnX9Rdk9B2/info.json new file mode 100644 index 0000000000000..41ac5455e0d9b --- /dev/null +++ b/blockchains/solana/assets/DtR4D9FtVoTX2569gaL837ZgrB6wNjj6tkmnX9Rdk9B2/info.json @@ -0,0 +1,25 @@ +{ + "name": "aura", + "type": "SPL", + "symbol": "aura", + "decimals": 6, + "website": "https://www.auramaxxing.xyz/", + "description": "get your aura up not your funny up", + "explorer": "https://solscan.io/token/DtR4D9FtVoTX2569gaL837ZgrB6wNjj6tkmnX9Rdk9B2", + "status": "active", + "id": "DtR4D9FtVoTX2569gaL837ZgrB6wNjj6tkmnX9Rdk9B2", + "links": [ + { + "name": "x", + "url": "https://x.com/auracoinsolana" + }, + { + "name": "telegram", + "url": "https://t.me/auracoinsol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/aura-on-sol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DtR4D9FtVoTX2569gaL837ZgrB6wNjj6tkmnX9Rdk9B2/logo.png b/blockchains/solana/assets/DtR4D9FtVoTX2569gaL837ZgrB6wNjj6tkmnX9Rdk9B2/logo.png new file mode 100644 index 0000000000000..1294831724850 Binary files /dev/null and b/blockchains/solana/assets/DtR4D9FtVoTX2569gaL837ZgrB6wNjj6tkmnX9Rdk9B2/logo.png differ diff --git a/blockchains/solana/assets/DuMbhu7mvQvqQHGcnikDgb4XegXJRyhUBfdU22uELiZA/info.json b/blockchains/solana/assets/DuMbhu7mvQvqQHGcnikDgb4XegXJRyhUBfdU22uELiZA/info.json new file mode 100644 index 0000000000000..2ae1ab9cbcfff --- /dev/null +++ b/blockchains/solana/assets/DuMbhu7mvQvqQHGcnikDgb4XegXJRyhUBfdU22uELiZA/info.json @@ -0,0 +1,58 @@ +{ + "name": "elizaOS", + "symbol": "elizaOS", + "type": "SPL", + "decimals": 9, + "description": "-", + "website": "https://elizaos.ai/", + "explorer": "https://solscan.io/token/DuMbhu7mvQvqQHGcnikDgb4XegXJRyhUBfdU22uELiZA", + "status": "active", + "id": "DuMbhu7mvQvqQHGcnikDgb4XegXJRyhUBfdU22uELiZA", + "links": [ + { + "name": "github", + "url": "https://github.com/elizaos/" + }, + { + "name": "x", + "url": "https://x.com/elizaecofund" + }, + { + "name": "whitepaper", + "url": "https://arxiv.org/abs/2501.06781" + }, + { + "name": "telegram_news", + "url": "https://t.me/official_elizaos" + }, + { + "name": "blog", + "url": "https://paragraph.com/@elizaos" + }, + { + "name": "discord", + "url": "https://discord.com/invite/tgCCVF9vEa" + }, + { + "name": "youtube", + "url": "https://youtube.com/@elizaOSDeveloper" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elizaos" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/elizaos" + }, + { + "name": "docs", + "url": "https://docs.elizaos.ai/" + }, + { + "name": "source_code", + "url": "https://github.com/elizaos/eliza" + } + ], + "tags": ["gamefi"] +} diff --git a/blockchains/solana/assets/DuMbhu7mvQvqQHGcnikDgb4XegXJRyhUBfdU22uELiZA/logo.png b/blockchains/solana/assets/DuMbhu7mvQvqQHGcnikDgb4XegXJRyhUBfdU22uELiZA/logo.png new file mode 100644 index 0000000000000..446373cefbca2 Binary files /dev/null and b/blockchains/solana/assets/DuMbhu7mvQvqQHGcnikDgb4XegXJRyhUBfdU22uELiZA/logo.png differ diff --git a/blockchains/solana/assets/DvjMYMVeXgKxaixGKpzQThLoG98nc7HSU7eanzsdCboA/info.json b/blockchains/solana/assets/DvjMYMVeXgKxaixGKpzQThLoG98nc7HSU7eanzsdCboA/info.json index 70112742279e2..3d5dfcb914ecf 100644 --- a/blockchains/solana/assets/DvjMYMVeXgKxaixGKpzQThLoG98nc7HSU7eanzsdCboA/info.json +++ b/blockchains/solana/assets/DvjMYMVeXgKxaixGKpzQThLoG98nc7HSU7eanzsdCboA/info.json @@ -1,5 +1,5 @@ { - "name": "Crypto.com Coin (Portal)", + "name": "Cronos (Portal)", "type": "SPL", "symbol": "CRO", "decimals": 8, diff --git a/blockchains/solana/assets/DwDtUqBZJtbRpdjsFw3N7YKB5epocSru25BGcVhfcYtg/info.json b/blockchains/solana/assets/DwDtUqBZJtbRpdjsFw3N7YKB5epocSru25BGcVhfcYtg/info.json new file mode 100644 index 0000000000000..150795c6b4124 --- /dev/null +++ b/blockchains/solana/assets/DwDtUqBZJtbRpdjsFw3N7YKB5epocSru25BGcVhfcYtg/info.json @@ -0,0 +1,21 @@ +{ + "name": "Deep Worm", + "website": "https://www.deep-worm.com/", + "description": "Deep Worm 𝕏 has moved to @deepwormxyz", + "explorer": "https://solscan.io/token/DwDtUqBZJtbRpdjsFw3N7YKB5epocSru25BGcVhfcYtg", + "type": "SPL", + "symbol": "WORM", + "decimals": 6, + "status": "active", + "id": "DwDtUqBZJtbRpdjsFw3N7YKB5epocSru25BGcVhfcYtg", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/deep-worm" + }, + { + "name": "x", + "url": "https://x.com/thedeepworm_" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DwDtUqBZJtbRpdjsFw3N7YKB5epocSru25BGcVhfcYtg/logo.png b/blockchains/solana/assets/DwDtUqBZJtbRpdjsFw3N7YKB5epocSru25BGcVhfcYtg/logo.png new file mode 100644 index 0000000000000..5beb352639adc Binary files /dev/null and b/blockchains/solana/assets/DwDtUqBZJtbRpdjsFw3N7YKB5epocSru25BGcVhfcYtg/logo.png differ diff --git a/blockchains/solana/assets/DwRtkbsaQMGAS3oMeEGYh6M5vH4X9WECsQgqHjAondo/info.json b/blockchains/solana/assets/DwRtkbsaQMGAS3oMeEGYh6M5vH4X9WECsQgqHjAondo/info.json new file mode 100644 index 0000000000000..e5164304ef25c --- /dev/null +++ b/blockchains/solana/assets/DwRtkbsaQMGAS3oMeEGYh6M5vH4X9WECsQgqHjAondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "abrdn Physical Platinum Shares ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "PPLTon", + "decimals": 9, + "description": "PPLTon is the Ondo Tokenized version of the abrdn Physical Platinum Shares ETF, giving tokenholders economic exposure similar to holding PPLT and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/DwRtkbsaQMGAS3oMeEGYh6M5vH4X9WECsQgqHjAondo", + "status": "active", + "id": "DwRtkbsaQMGAS3oMeEGYh6M5vH4X9WECsQgqHjAondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/abrdn-physical-platinum-shares-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DwRtkbsaQMGAS3oMeEGYh6M5vH4X9WECsQgqHjAondo/logo.png b/blockchains/solana/assets/DwRtkbsaQMGAS3oMeEGYh6M5vH4X9WECsQgqHjAondo/logo.png new file mode 100644 index 0000000000000..a22bc2999905d Binary files /dev/null and b/blockchains/solana/assets/DwRtkbsaQMGAS3oMeEGYh6M5vH4X9WECsQgqHjAondo/logo.png differ diff --git a/blockchains/solana/assets/DyT6mdhiAYbHPML2AVXviGVxMQbc6Z3VmPZ2MQG6pump/info.json b/blockchains/solana/assets/DyT6mdhiAYbHPML2AVXviGVxMQbc6Z3VmPZ2MQG6pump/info.json new file mode 100644 index 0000000000000..c152c7f0fadf0 --- /dev/null +++ b/blockchains/solana/assets/DyT6mdhiAYbHPML2AVXviGVxMQbc6Z3VmPZ2MQG6pump/info.json @@ -0,0 +1,21 @@ +{ + "name": "LLM", + "type": "SPL", + "symbol": "LLM", + "decimals": 6, + "description": "Large Language Model (LLM)", + "website": "https://llmystic.org/", + "explorer": "https://solscan.io/token/DyT6mdhiAYbHPML2AVXviGVxMQbc6Z3VmPZ2MQG6pump", + "id": "DyT6mdhiAYbHPML2AVXviGVxMQbc6Z3VmPZ2MQG6pump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/GOATBASEDTOKEN" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/goat-based/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DyT6mdhiAYbHPML2AVXviGVxMQbc6Z3VmPZ2MQG6pump/logo.png b/blockchains/solana/assets/DyT6mdhiAYbHPML2AVXviGVxMQbc6Z3VmPZ2MQG6pump/logo.png new file mode 100644 index 0000000000000..6a045458f8b9c Binary files /dev/null and b/blockchains/solana/assets/DyT6mdhiAYbHPML2AVXviGVxMQbc6Z3VmPZ2MQG6pump/logo.png differ diff --git a/blockchains/solana/assets/E4YowrHx5wm4RtSjfuvTqtNH3Wf7NEj5tYZGD9Bondo/info.json b/blockchains/solana/assets/E4YowrHx5wm4RtSjfuvTqtNH3Wf7NEj5tYZGD9Bondo/info.json new file mode 100644 index 0000000000000..2239369ca0817 --- /dev/null +++ b/blockchains/solana/assets/E4YowrHx5wm4RtSjfuvTqtNH3Wf7NEj5tYZGD9Bondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Quantum Computing (Ondo Tokenized)", + "type": "SPL", + "symbol": "QUBTon", + "decimals": 9, + "description": "QUBTon is the Ondo Tokenized version of Quantum Computing, giving tokenholders economic exposure similar to holding QUBT and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/E4YowrHx5wm4RtSjfuvTqtNH3Wf7NEj5tYZGD9Bondo", + "status": "active", + "id": "E4YowrHx5wm4RtSjfuvTqtNH3Wf7NEj5tYZGD9Bondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/quantum-computing-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/E4YowrHx5wm4RtSjfuvTqtNH3Wf7NEj5tYZGD9Bondo/logo.png b/blockchains/solana/assets/E4YowrHx5wm4RtSjfuvTqtNH3Wf7NEj5tYZGD9Bondo/logo.png new file mode 100644 index 0000000000000..ba8cb66e12b1d Binary files /dev/null and b/blockchains/solana/assets/E4YowrHx5wm4RtSjfuvTqtNH3Wf7NEj5tYZGD9Bondo/logo.png differ diff --git a/blockchains/solana/assets/E6AujzX54E1ZoPDFP2CyG3HHUVKygEkp6DRqig61pump/info.json b/blockchains/solana/assets/E6AujzX54E1ZoPDFP2CyG3HHUVKygEkp6DRqig61pump/info.json new file mode 100644 index 0000000000000..9e8c0c6d0ed49 --- /dev/null +++ b/blockchains/solana/assets/E6AujzX54E1ZoPDFP2CyG3HHUVKygEkp6DRqig61pump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Pochita", + "symbol": "Pochita", + "type": "SPL", + "decimals": 6, + "description": "The NEW face of Solana $POCHITA", + "website": "https://pochita.biz/", + "explorer": "https://solscan.io/token/E6AujzX54E1ZoPDFP2CyG3HHUVKygEkp6DRqig61pump", + "status": "active", + "id": "E6AujzX54E1ZoPDFP2CyG3HHUVKygEkp6DRqig61pump", + "links": [ + { + "name": "x", + "url": "https://x.com/PochitaSolCTO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pochita-biz" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/E6AujzX54E1ZoPDFP2CyG3HHUVKygEkp6DRqig61pump/logo.png b/blockchains/solana/assets/E6AujzX54E1ZoPDFP2CyG3HHUVKygEkp6DRqig61pump/logo.png new file mode 100644 index 0000000000000..ffa947fa5e856 Binary files /dev/null and b/blockchains/solana/assets/E6AujzX54E1ZoPDFP2CyG3HHUVKygEkp6DRqig61pump/logo.png differ diff --git a/blockchains/solana/assets/E6DTmxHo525HZKBrxni6M1ZoMd6bgW1jhuJykmFtBrAJ/info.json b/blockchains/solana/assets/E6DTmxHo525HZKBrxni6M1ZoMd6bgW1jhuJykmFtBrAJ/info.json new file mode 100644 index 0000000000000..8ac4c3137451b --- /dev/null +++ b/blockchains/solana/assets/E6DTmxHo525HZKBrxni6M1ZoMd6bgW1jhuJykmFtBrAJ/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT Monero", + "type": "SPL", + "symbol": "HONEYPOT XMR", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/E6DTmxHo525HZKBrxni6M1ZoMd6bgW1jhuJykmFtBrAJ", + "explorer": "https://solscan.io/token/E6DTmxHo525HZKBrxni6M1ZoMd6bgW1jhuJykmFtBrAJ", + "status": "spam", + "id": "E6DTmxHo525HZKBrxni6M1ZoMd6bgW1jhuJykmFtBrAJ" +} \ No newline at end of file diff --git a/blockchains/solana/assets/E6KSaqjvqe2HiUpbEweRxLK4RimQddigm95H9Jaondo/info.json b/blockchains/solana/assets/E6KSaqjvqe2HiUpbEweRxLK4RimQddigm95H9Jaondo/info.json new file mode 100644 index 0000000000000..e28463a6be643 --- /dev/null +++ b/blockchains/solana/assets/E6KSaqjvqe2HiUpbEweRxLK4RimQddigm95H9Jaondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Redwire (Ondo Tokenized)", + "type": "SPL", + "symbol": "RDWon", + "decimals": 9, + "description": "RDWon is the Ondo Tokenized version of Redwire, giving tokenholders economic exposure similar to holding RDW and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/E6KSaqjvqe2HiUpbEweRxLK4RimQddigm95H9Jaondo", + "status": "active", + "id": "E6KSaqjvqe2HiUpbEweRxLK4RimQddigm95H9Jaondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/redwire-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/E6KSaqjvqe2HiUpbEweRxLK4RimQddigm95H9Jaondo/logo.png b/blockchains/solana/assets/E6KSaqjvqe2HiUpbEweRxLK4RimQddigm95H9Jaondo/logo.png new file mode 100644 index 0000000000000..d2742f944fd52 Binary files /dev/null and b/blockchains/solana/assets/E6KSaqjvqe2HiUpbEweRxLK4RimQddigm95H9Jaondo/logo.png differ diff --git a/blockchains/solana/assets/E86mX2yb3HLbJM6gRtZQ6dCYmLh6MSDZadu9SCPondo/info.json b/blockchains/solana/assets/E86mX2yb3HLbJM6gRtZQ6dCYmLh6MSDZadu9SCPondo/info.json new file mode 100644 index 0000000000000..3e299bd0e36f8 --- /dev/null +++ b/blockchains/solana/assets/E86mX2yb3HLbJM6gRtZQ6dCYmLh6MSDZadu9SCPondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Regeneron Pharmaceuticals (Ondo Tokenized)", + "type": "SPL", + "symbol": "REGNon", + "decimals": 9, + "description": "REGNon is the Ondo Tokenized version of Regeneron Pharmaceuticals, giving tokenholders economic exposure similar to holding REGN and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/E86mX2yb3HLbJM6gRtZQ6dCYmLh6MSDZadu9SCPondo", + "status": "active", + "id": "E86mX2yb3HLbJM6gRtZQ6dCYmLh6MSDZadu9SCPondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/regeneron-pharmaceuticals-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/E86mX2yb3HLbJM6gRtZQ6dCYmLh6MSDZadu9SCPondo/logo.png b/blockchains/solana/assets/E86mX2yb3HLbJM6gRtZQ6dCYmLh6MSDZadu9SCPondo/logo.png new file mode 100644 index 0000000000000..ed1647f53abeb Binary files /dev/null and b/blockchains/solana/assets/E86mX2yb3HLbJM6gRtZQ6dCYmLh6MSDZadu9SCPondo/logo.png differ diff --git a/blockchains/solana/assets/E99fN4tCRb1tQphXK1DU7prXji6hMzxETyPNJro19Fwz/info.json b/blockchains/solana/assets/E99fN4tCRb1tQphXK1DU7prXji6hMzxETyPNJro19Fwz/info.json new file mode 100644 index 0000000000000..7afa6a6c12682 --- /dev/null +++ b/blockchains/solana/assets/E99fN4tCRb1tQphXK1DU7prXji6hMzxETyPNJro19Fwz/info.json @@ -0,0 +1,21 @@ +{ + "name": "CatSolHat", + "symbol": "SOLCAT", + "type": "SPL", + "decimals": 6, + "description": "Jump into the crypto fun with $SOLCAT!", + "website": "https://catsolhat.com/", + "explorer": "https://solscan.io/token/E99fN4tCRb1tQphXK1DU7prXji6hMzxETyPNJro19Fwz", + "status": "active", + "id": "E99fN4tCRb1tQphXK1DU7prXji6hMzxETyPNJro19Fwz", + "links": [ + { + "name": "x", + "url": "https://x.com/catsolhat" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/catsolhat" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/E99fN4tCRb1tQphXK1DU7prXji6hMzxETyPNJro19Fwz/logo.png b/blockchains/solana/assets/E99fN4tCRb1tQphXK1DU7prXji6hMzxETyPNJro19Fwz/logo.png new file mode 100644 index 0000000000000..2314b34668c42 Binary files /dev/null and b/blockchains/solana/assets/E99fN4tCRb1tQphXK1DU7prXji6hMzxETyPNJro19Fwz/logo.png differ diff --git a/blockchains/solana/assets/E9VQY3VnrpVSekFByzRmfeK1kxgM3UiKCoVVbdUondo/info.json b/blockchains/solana/assets/E9VQY3VnrpVSekFByzRmfeK1kxgM3UiKCoVVbdUondo/info.json new file mode 100644 index 0000000000000..bec4671d4d6d4 --- /dev/null +++ b/blockchains/solana/assets/E9VQY3VnrpVSekFByzRmfeK1kxgM3UiKCoVVbdUondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Rocket Lab (Ondo Tokenized)", + "type": "SPL", + "symbol": "RKLBon", + "decimals": 9, + "description": "RKLBon is the Ondo Tokenized version of Rocket Lab, giving tokenholders economic exposure similar to holding RKLB and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/E9VQY3VnrpVSekFByzRmfeK1kxgM3UiKCoVVbdUondo", + "status": "active", + "id": "E9VQY3VnrpVSekFByzRmfeK1kxgM3UiKCoVVbdUondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/rocket-lab-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/E9VQY3VnrpVSekFByzRmfeK1kxgM3UiKCoVVbdUondo/logo.png b/blockchains/solana/assets/E9VQY3VnrpVSekFByzRmfeK1kxgM3UiKCoVVbdUondo/logo.png new file mode 100644 index 0000000000000..38f63fa312de6 Binary files /dev/null and b/blockchains/solana/assets/E9VQY3VnrpVSekFByzRmfeK1kxgM3UiKCoVVbdUondo/logo.png differ diff --git a/blockchains/solana/assets/E9aPbhb5xRVGP2L6qJixfJC5qWAzECpUFUxnGx3wUiND/info.json b/blockchains/solana/assets/E9aPbhb5xRVGP2L6qJixfJC5qWAzECpUFUxnGx3wUiND/info.json new file mode 100644 index 0000000000000..1695402d49d55 --- /dev/null +++ b/blockchains/solana/assets/E9aPbhb5xRVGP2L6qJixfJC5qWAzECpUFUxnGx3wUiND/info.json @@ -0,0 +1,21 @@ +{ + "name": "Ice (Wormhole)", + "symbol": "ICE", + "type": "SPL", + "decimals": 8, + "description": "Ice Open Network (ION) is a comprehensive blockchain ecosystem designed to enable seamless Web3 adoption by combining high-performance infrastructure with innovative tools for decentralized application development. At its core, ION consists of a Layer 1 blockchain, which leverages advanced architecture for scalability and low-cost transactions, and a revolutionary no-code drag-and-drop dApp builder, empowering individuals and businesses to deploy decentralized applications effortlessly.", + "website": "https://ice.io/", + "explorer": "https://solscan.io/token/E9aPbhb5xRVGP2L6qJixfJC5qWAzECpUFUxnGx3wUiND", + "status": "active", + "id": "E9aPbhb5xRVGP2L6qJixfJC5qWAzECpUFUxnGx3wUiND", + "links": [ + { + "name": "x", + "url": "https://x.com/ice_blockchain" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ice-decentralized-future/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/E9aPbhb5xRVGP2L6qJixfJC5qWAzECpUFUxnGx3wUiND/logo.png b/blockchains/solana/assets/E9aPbhb5xRVGP2L6qJixfJC5qWAzECpUFUxnGx3wUiND/logo.png new file mode 100644 index 0000000000000..7e125cec8306b Binary files /dev/null and b/blockchains/solana/assets/E9aPbhb5xRVGP2L6qJixfJC5qWAzECpUFUxnGx3wUiND/logo.png differ diff --git a/blockchains/solana/assets/EANjzFjj3nPXHdzN5CE3Z8LLVn69Ce77FE8X4cvondo/info.json b/blockchains/solana/assets/EANjzFjj3nPXHdzN5CE3Z8LLVn69Ce77FE8X4cvondo/info.json new file mode 100644 index 0000000000000..f60ccff394ca8 --- /dev/null +++ b/blockchains/solana/assets/EANjzFjj3nPXHdzN5CE3Z8LLVn69Ce77FE8X4cvondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Southern Copper (Ondo Tokenized)", + "type": "SPL", + "symbol": "SCCOon", + "decimals": 9, + "description": "SCCOon is the Ondo Tokenized version of Southern Copper, giving tokenholders economic exposure similar to holding SCCO and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/EANjzFjj3nPXHdzN5CE3Z8LLVn69Ce77FE8X4cvondo", + "status": "active", + "id": "EANjzFjj3nPXHdzN5CE3Z8LLVn69Ce77FE8X4cvondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/southern-copper-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EANjzFjj3nPXHdzN5CE3Z8LLVn69Ce77FE8X4cvondo/logo.png b/blockchains/solana/assets/EANjzFjj3nPXHdzN5CE3Z8LLVn69Ce77FE8X4cvondo/logo.png new file mode 100644 index 0000000000000..1535705347ac4 Binary files /dev/null and b/blockchains/solana/assets/EANjzFjj3nPXHdzN5CE3Z8LLVn69Ce77FE8X4cvondo/logo.png differ diff --git a/blockchains/solana/assets/EAvKa9kGRMcQ44Eg3MPbXUP8ZEpfxgd5dToHBRF8m8ui/info.json b/blockchains/solana/assets/EAvKa9kGRMcQ44Eg3MPbXUP8ZEpfxgd5dToHBRF8m8ui/info.json new file mode 100644 index 0000000000000..f45cc45a38432 --- /dev/null +++ b/blockchains/solana/assets/EAvKa9kGRMcQ44Eg3MPbXUP8ZEpfxgd5dToHBRF8m8ui/info.json @@ -0,0 +1,21 @@ +{ + "name": "Pepewifhat", + "website": "https://pepewifhat.world/index.html", + "description": "its pepe wif a hat", + "explorer": "https://solscan.io/token/EAvKa9kGRMcQ44Eg3MPbXUP8ZEpfxgd5dToHBRF8m8ui", + "type": "SPL", + "symbol": "Pepewifhat", + "decimals": 6, + "status": "active", + "id": "EAvKa9kGRMcQ44Eg3MPbXUP8ZEpfxgd5dToHBRF8m8ui", + "links": [ + { + "name": "x", + "url": "https://x.com/itspepewifhat" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pepewifhat-3" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EAvKa9kGRMcQ44Eg3MPbXUP8ZEpfxgd5dToHBRF8m8ui/logo.png b/blockchains/solana/assets/EAvKa9kGRMcQ44Eg3MPbXUP8ZEpfxgd5dToHBRF8m8ui/logo.png new file mode 100644 index 0000000000000..a0eced5ba3956 Binary files /dev/null and b/blockchains/solana/assets/EAvKa9kGRMcQ44Eg3MPbXUP8ZEpfxgd5dToHBRF8m8ui/logo.png differ diff --git a/blockchains/solana/assets/EAwP9LGNjTkQ2YeKE6CGKqBYtrJ6APFvRe7KCMmondo/info.json b/blockchains/solana/assets/EAwP9LGNjTkQ2YeKE6CGKqBYtrJ6APFvRe7KCMmondo/info.json new file mode 100644 index 0000000000000..2978954d45539 --- /dev/null +++ b/blockchains/solana/assets/EAwP9LGNjTkQ2YeKE6CGKqBYtrJ6APFvRe7KCMmondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "SolarEdge Technologies (Ondo Tokenized)", + "type": "SPL", + "symbol": "SEDGon", + "decimals": 9, + "description": "SEDGon is the Ondo Tokenized version of SolarEdge Technologies, giving tokenholders economic exposure similar to holding SEDG and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/EAwP9LGNjTkQ2YeKE6CGKqBYtrJ6APFvRe7KCMmondo", + "status": "active", + "id": "EAwP9LGNjTkQ2YeKE6CGKqBYtrJ6APFvRe7KCMmondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/solaredge-technologies-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EAwP9LGNjTkQ2YeKE6CGKqBYtrJ6APFvRe7KCMmondo/logo.png b/blockchains/solana/assets/EAwP9LGNjTkQ2YeKE6CGKqBYtrJ6APFvRe7KCMmondo/logo.png new file mode 100644 index 0000000000000..b251792abd31e Binary files /dev/null and b/blockchains/solana/assets/EAwP9LGNjTkQ2YeKE6CGKqBYtrJ6APFvRe7KCMmondo/logo.png differ diff --git a/blockchains/solana/assets/EAzDbaDgNArF9HhnwGHxw44XXB8bgMvNrASg5NMsNnYb/info.json b/blockchains/solana/assets/EAzDbaDgNArF9HhnwGHxw44XXB8bgMvNrASg5NMsNnYb/info.json new file mode 100644 index 0000000000000..952a5b6ed81e6 --- /dev/null +++ b/blockchains/solana/assets/EAzDbaDgNArF9HhnwGHxw44XXB8bgMvNrASg5NMsNnYb/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDT", + "type": "SPL", + "symbol": "FAKE USDT", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/EAzDbaDgNArF9HhnwGHxw44XXB8bgMvNrASg5NMsNnYb", + "explorer": "https://solscan.io/token/EAzDbaDgNArF9HhnwGHxw44XXB8bgMvNrASg5NMsNnYb", + "status": "spam", + "id": "EAzDbaDgNArF9HhnwGHxw44XXB8bgMvNrASg5NMsNnYb" +} \ No newline at end of file diff --git a/blockchains/solana/assets/ED5nyyWEzpPPiWimP8vYm7sD7TD3LAt3Q3gRTWHzPJBY/info.json b/blockchains/solana/assets/ED5nyyWEzpPPiWimP8vYm7sD7TD3LAt3Q3gRTWHzPJBY/info.json new file mode 100644 index 0000000000000..0ba43271939dc --- /dev/null +++ b/blockchains/solana/assets/ED5nyyWEzpPPiWimP8vYm7sD7TD3LAt3Q3gRTWHzPJBY/info.json @@ -0,0 +1,21 @@ +{ + "name": "Moo Deng", + "website": "https://www.moodengsol.com/", + "description": "An unofficial fan page / memecoin of Moo Deng on Solana", + "explorer": "https://solscan.io/token/ED5nyyWEzpPPiWimP8vYm7sD7TD3LAt3Q3gRTWHzPJBY", + "type": "SPL", + "symbol": "MOODENG", + "decimals": 6, + "status": "active", + "id": "ED5nyyWEzpPPiWimP8vYm7sD7TD3LAt3Q3gRTWHzPJBY", + "links": [ + { + "name": "x", + "url": "https://x.com/ai16zeliza" + }, + { + "name": "telegram", + "url": "https://t.me/+hCTQLf149JNlZjgx" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/ED5nyyWEzpPPiWimP8vYm7sD7TD3LAt3Q3gRTWHzPJBY/logo.png b/blockchains/solana/assets/ED5nyyWEzpPPiWimP8vYm7sD7TD3LAt3Q3gRTWHzPJBY/logo.png new file mode 100644 index 0000000000000..e18adacd39e4e Binary files /dev/null and b/blockchains/solana/assets/ED5nyyWEzpPPiWimP8vYm7sD7TD3LAt3Q3gRTWHzPJBY/logo.png differ diff --git a/blockchains/solana/assets/EDVVEYW4fPJ6vKw5LZXRGUSPzxoHrv6eWvTqhCr8oShs/info.json b/blockchains/solana/assets/EDVVEYW4fPJ6vKw5LZXRGUSPzxoHrv6eWvTqhCr8oShs/info.json index ca359b0c73896..1dd841949a431 100644 --- a/blockchains/solana/assets/EDVVEYW4fPJ6vKw5LZXRGUSPzxoHrv6eWvTqhCr8oShs/info.json +++ b/blockchains/solana/assets/EDVVEYW4fPJ6vKw5LZXRGUSPzxoHrv6eWvTqhCr8oShs/info.json @@ -1,5 +1,5 @@ { - "name": "Bancor Network Token (Portal)", + "name": "Bancor (Portal)", "type": "SPL", "symbol": "BNT", "decimals": 8, diff --git a/blockchains/solana/assets/EDm5TGENkeKUd69PPtFatYWojgMjNHPurSmGZndJgFbu/info.json b/blockchains/solana/assets/EDm5TGENkeKUd69PPtFatYWojgMjNHPurSmGZndJgFbu/info.json new file mode 100644 index 0000000000000..1513696ceb1ce --- /dev/null +++ b/blockchains/solana/assets/EDm5TGENkeKUd69PPtFatYWojgMjNHPurSmGZndJgFbu/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE MOMENTum L1 YELLOW_COIN", + "type": "SPL", + "symbol": "FAKE YEllow", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/EDm5TGENkeKUd69PPtFatYWojgMjNHPurSmGZndJgFbu", + "explorer": "https://solscan.io/token/EDm5TGENkeKUd69PPtFatYWojgMjNHPurSmGZndJgFbu", + "status": "spam", + "id": "EDm5TGENkeKUd69PPtFatYWojgMjNHPurSmGZndJgFbu" +} \ No newline at end of file diff --git a/blockchains/solana/assets/EEy57xbaLcUrN1HXj2vz8VWxeWFK1eZQZo4aWbrondo/info.json b/blockchains/solana/assets/EEy57xbaLcUrN1HXj2vz8VWxeWFK1eZQZo4aWbrondo/info.json new file mode 100644 index 0000000000000..70e5252a19b75 --- /dev/null +++ b/blockchains/solana/assets/EEy57xbaLcUrN1HXj2vz8VWxeWFK1eZQZo4aWbrondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares 1-3 Year Treasury Bond ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "SHYon", + "decimals": 9, + "description": "SHYon is the Ondo Tokenized version of the iShares 1-3 Year Treasury Bond ETF, giving tokenholders economic exposure similar to holding SHY and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/EEy57xbaLcUrN1HXj2vz8VWxeWFK1eZQZo4aWbrondo", + "status": "active", + "id": "EEy57xbaLcUrN1HXj2vz8VWxeWFK1eZQZo4aWbrondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-1-3-year-treasury-bond-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EEy57xbaLcUrN1HXj2vz8VWxeWFK1eZQZo4aWbrondo/logo.png b/blockchains/solana/assets/EEy57xbaLcUrN1HXj2vz8VWxeWFK1eZQZo4aWbrondo/logo.png new file mode 100644 index 0000000000000..6c93239492673 Binary files /dev/null and b/blockchains/solana/assets/EEy57xbaLcUrN1HXj2vz8VWxeWFK1eZQZo4aWbrondo/logo.png differ diff --git a/blockchains/solana/assets/EF23Avq2cTPnMVTfHacZ3SG5Z8misHmFA2gbt2rKqiYH/info.json b/blockchains/solana/assets/EF23Avq2cTPnMVTfHacZ3SG5Z8misHmFA2gbt2rKqiYH/info.json new file mode 100644 index 0000000000000..e40257d60639c --- /dev/null +++ b/blockchains/solana/assets/EF23Avq2cTPnMVTfHacZ3SG5Z8misHmFA2gbt2rKqiYH/info.json @@ -0,0 +1,21 @@ +{ + "name": "elizabath whoren", + "type": "SPL", + "symbol": "whoren", + "decimals": 9, + "website": "https://elizabathwhoren.com", + "description": "Elizabath Whoren is building a Crypot Army to take ova de benks. She will tackle all de new printd maney and bring dem to Solami, for a welthy and free WebTree.", + "explorer": "https://solscan.io/token/EF23Avq2cTPnMVTfHacZ3SG5Z8misHmFA2gbt2rKqiYH", + "status": "active", + "id": "EF23Avq2cTPnMVTfHacZ3SG5Z8misHmFA2gbt2rKqiYH", + "links": [ + { + "name": "x", + "url": "https://x.com/WhorenOnSol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elizabath-whoren/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EF23Avq2cTPnMVTfHacZ3SG5Z8misHmFA2gbt2rKqiYH/logo.png b/blockchains/solana/assets/EF23Avq2cTPnMVTfHacZ3SG5Z8misHmFA2gbt2rKqiYH/logo.png new file mode 100644 index 0000000000000..19414ac8ad990 Binary files /dev/null and b/blockchains/solana/assets/EF23Avq2cTPnMVTfHacZ3SG5Z8misHmFA2gbt2rKqiYH/logo.png differ diff --git a/blockchains/solana/assets/EFS13abzbWru8aV5TnYUdy2dvjGGZbGuAHpJSSFdoge/info.json b/blockchains/solana/assets/EFS13abzbWru8aV5TnYUdy2dvjGGZbGuAHpJSSFdoge/info.json new file mode 100644 index 0000000000000..8bd03a02af164 --- /dev/null +++ b/blockchains/solana/assets/EFS13abzbWru8aV5TnYUdy2dvjGGZbGuAHpJSSFdoge/info.json @@ -0,0 +1,26 @@ +{ + "name": "Doge Dividends", + "type": "SOL", + "symbol": "DogeD", + "decimals": 9, + "description": "$DogeD is a Solana-based token that rewards holders with USDC through a 5% transaction tax The token leverages community- driven benefits linked to potential economic policies and savings related to digital assets like DOGE.", + "website": "https://doged-token.com/", + "explorer": "https://solscan.io/token/EFS13abzbWru8aV5TnYUdy2dvjGGZbGuAHpJSSFdoge", + "id": "EFS13abzbWru8aV5TnYUdy2dvjGGZbGuAHpJSSFdoge", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/dogedsolana" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/doge-dividends/" + } + + ], + "tags": [ + "deflationary" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/EFS13abzbWru8aV5TnYUdy2dvjGGZbGuAHpJSSFdoge/logo.png b/blockchains/solana/assets/EFS13abzbWru8aV5TnYUdy2dvjGGZbGuAHpJSSFdoge/logo.png new file mode 100644 index 0000000000000..b01ed635612fa Binary files /dev/null and b/blockchains/solana/assets/EFS13abzbWru8aV5TnYUdy2dvjGGZbGuAHpJSSFdoge/logo.png differ diff --git a/blockchains/solana/assets/EGMuM8qhWTzTEa9P75DuT3G4DNVsexWww7fp1vo8pump/info.json b/blockchains/solana/assets/EGMuM8qhWTzTEa9P75DuT3G4DNVsexWww7fp1vo8pump/info.json new file mode 100644 index 0000000000000..efc94c0e5155c --- /dev/null +++ b/blockchains/solana/assets/EGMuM8qhWTzTEa9P75DuT3G4DNVsexWww7fp1vo8pump/info.json @@ -0,0 +1,21 @@ +{ + "name": "loner", + "website": "https://lonersol.xyz/", + "description": "$LONER is just a space for people who get it.", + "explorer": "https://solscan.io/token/EGMuM8qhWTzTEa9P75DuT3G4DNVsexWww7fp1vo8pump", + "type": "SPL", + "symbol": "loner", + "decimals": 6, + "status": "active", + "id": "EGMuM8qhWTzTEa9P75DuT3G4DNVsexWww7fp1vo8pump", + "links": [ + { + "name": "x", + "url": "https://x.com/lonercto" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/loner" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EGMuM8qhWTzTEa9P75DuT3G4DNVsexWww7fp1vo8pump/logo.png b/blockchains/solana/assets/EGMuM8qhWTzTEa9P75DuT3G4DNVsexWww7fp1vo8pump/logo.png new file mode 100644 index 0000000000000..e096eccb8c1c7 Binary files /dev/null and b/blockchains/solana/assets/EGMuM8qhWTzTEa9P75DuT3G4DNVsexWww7fp1vo8pump/logo.png differ diff --git a/blockchains/solana/assets/EJPtJEDogxzDbvM8qvAsqYbLmPj5n1vQeqoAzj9Yfv3q/info.json b/blockchains/solana/assets/EJPtJEDogxzDbvM8qvAsqYbLmPj5n1vQeqoAzj9Yfv3q/info.json new file mode 100644 index 0000000000000..468cc751ef8cb --- /dev/null +++ b/blockchains/solana/assets/EJPtJEDogxzDbvM8qvAsqYbLmPj5n1vQeqoAzj9Yfv3q/info.json @@ -0,0 +1,28 @@ +{ + "name": "bozo", + "type": "SPL", + "symbol": "bozo", + "decimals": 9, + "description": "Welcome to The Bozo Benk where your satisfaction is guaranteed, how may I help you ser?", + "website": "https://www.bozo.finance/", + "explorer": "https://solscan.io/token/EJPtJEDogxzDbvM8qvAsqYbLmPj5n1vQeqoAzj9Yfv3q", + "id": "EJPtJEDogxzDbvM8qvAsqYbLmPj5n1vQeqoAzj9Yfv3q", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/BozoBenk" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bozohybrid/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bozo-benk" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EJPtJEDogxzDbvM8qvAsqYbLmPj5n1vQeqoAzj9Yfv3q/logo.png b/blockchains/solana/assets/EJPtJEDogxzDbvM8qvAsqYbLmPj5n1vQeqoAzj9Yfv3q/logo.png new file mode 100644 index 0000000000000..a37cef9fce342 Binary files /dev/null and b/blockchains/solana/assets/EJPtJEDogxzDbvM8qvAsqYbLmPj5n1vQeqoAzj9Yfv3q/logo.png differ diff --git a/blockchains/solana/assets/EJmUVvDqAdfH5zEohkdS4234bi3c6iunqEMobjmondo/info.json b/blockchains/solana/assets/EJmUVvDqAdfH5zEohkdS4234bi3c6iunqEMobjmondo/info.json new file mode 100644 index 0000000000000..e47ef69793583 --- /dev/null +++ b/blockchains/solana/assets/EJmUVvDqAdfH5zEohkdS4234bi3c6iunqEMobjmondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "SanDisk (Ondo Tokenized)", + "type": "SPL", + "symbol": "SNDKon", + "decimals": 9, + "description": "SNDKon is the Ondo Tokenized version of SanDisk, giving tokenholders economic exposure similar to holding SNDK and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/EJmUVvDqAdfH5zEohkdS4234bi3c6iunqEMobjmondo", + "status": "active", + "id": "EJmUVvDqAdfH5zEohkdS4234bi3c6iunqEMobjmondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sandisk-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EJmUVvDqAdfH5zEohkdS4234bi3c6iunqEMobjmondo/logo.png b/blockchains/solana/assets/EJmUVvDqAdfH5zEohkdS4234bi3c6iunqEMobjmondo/logo.png new file mode 100644 index 0000000000000..34101c9786cac Binary files /dev/null and b/blockchains/solana/assets/EJmUVvDqAdfH5zEohkdS4234bi3c6iunqEMobjmondo/logo.png differ diff --git a/blockchains/solana/assets/EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm/info.json b/blockchains/solana/assets/EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm/info.json new file mode 100644 index 0000000000000..1a5d878a98616 --- /dev/null +++ b/blockchains/solana/assets/EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm/info.json @@ -0,0 +1,21 @@ +{ + "name": "dogwifhat", + "type": "SPL", + "symbol": "WIF", + "decimals": 6, + "description": "The live dogwifhat price today is $0.239284 USD with a 24-hour trading volume of $32,653,726 USD.", + "website": "https://dogwifcoin.org", + "explorer": "https://solscan.io/token/EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm", + "status": "active", + "id": "EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm", + "links": [ + { + "name": "x", + "url": "https://x.com/dogwifcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dogwifhat/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm/logo.png b/blockchains/solana/assets/EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm/logo.png new file mode 100644 index 0000000000000..b7068fa56e178 Binary files /dev/null and b/blockchains/solana/assets/EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm/logo.png differ diff --git a/blockchains/solana/assets/ELdqGtj2MhejZzudGfz7b798si2Av5Asuw9ryEQSpump/info.json b/blockchains/solana/assets/ELdqGtj2MhejZzudGfz7b798si2Av5Asuw9ryEQSpump/info.json new file mode 100644 index 0000000000000..9518a68316164 --- /dev/null +++ b/blockchains/solana/assets/ELdqGtj2MhejZzudGfz7b798si2Av5Asuw9ryEQSpump/info.json @@ -0,0 +1,26 @@ +{ + "name": "dogwifscarf", + "type": "SOL", + "symbol": "SCARF", + "decimals": 6, + "description": "The verified older brother of Achi (Wif), GoGo brings wisdom and positive vibes to the duo. Together, they aim to dominate the dog space with their charm and camaraderie.", + "website": "https://www.dogwifscarf.wtf/", + "explorer": "https://solscan.io/token/ELdqGtj2MhejZzudGfz7b798si2Av5Asuw9ryEQSpump", + "id": "ELdqGtj2MhejZzudGfz7b798si2Av5Asuw9ryEQSpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/dogwifscarfcto" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dogwifscarf-2" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/ELdqGtj2MhejZzudGfz7b798si2Av5Asuw9ryEQSpump/logo.png b/blockchains/solana/assets/ELdqGtj2MhejZzudGfz7b798si2Av5Asuw9ryEQSpump/logo.png new file mode 100644 index 0000000000000..d869504c9a431 Binary files /dev/null and b/blockchains/solana/assets/ELdqGtj2MhejZzudGfz7b798si2Av5Asuw9ryEQSpump/logo.png differ diff --git a/blockchains/solana/assets/EN5pHc1LccUSojxb7kkyQi7v7iJN5RpDq6qz3DHondo/info.json b/blockchains/solana/assets/EN5pHc1LccUSojxb7kkyQi7v7iJN5RpDq6qz3DHondo/info.json new file mode 100644 index 0000000000000..fade38c2bc884 --- /dev/null +++ b/blockchains/solana/assets/EN5pHc1LccUSojxb7kkyQi7v7iJN5RpDq6qz3DHondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Semiconductor ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "SOXXon", + "decimals": 9, + "description": "SOXXon is the Ondo Tokenized version of the iShares Semiconductor ETF, giving tokenholders economic exposure similar to holding SOXX and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/EN5pHc1LccUSojxb7kkyQi7v7iJN5RpDq6qz3DHondo", + "status": "active", + "id": "EN5pHc1LccUSojxb7kkyQi7v7iJN5RpDq6qz3DHondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-semiconductor-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EN5pHc1LccUSojxb7kkyQi7v7iJN5RpDq6qz3DHondo/logo.png b/blockchains/solana/assets/EN5pHc1LccUSojxb7kkyQi7v7iJN5RpDq6qz3DHondo/logo.png new file mode 100644 index 0000000000000..2ce033b091a15 Binary files /dev/null and b/blockchains/solana/assets/EN5pHc1LccUSojxb7kkyQi7v7iJN5RpDq6qz3DHondo/logo.png differ diff --git a/blockchains/solana/assets/ENoD8J2J6wNHkcJkvVBkwq5JMiR1oNBfBZRkoHCQogyT/info.json b/blockchains/solana/assets/ENoD8J2J6wNHkcJkvVBkwq5JMiR1oNBfBZRkoHCQogyT/info.json new file mode 100644 index 0000000000000..2a79b2f9f6ec2 --- /dev/null +++ b/blockchains/solana/assets/ENoD8J2J6wNHkcJkvVBkwq5JMiR1oNBfBZRkoHCQogyT/info.json @@ -0,0 +1,17 @@ +{ + "name": "Abble", + "website": "https://abble.org/", + "description": "I want to put a ding in the memeverse — Stev Jabs", + "explorer": "https://solscan.io/token/ENoD8J2J6wNHkcJkvVBkwq5JMiR1oNBfBZRkoHCQogyT", + "type": "SPL", + "symbol": "AABL", + "decimals": 6, + "status": "active", + "id": "ENoD8J2J6wNHkcJkvVBkwq5JMiR1oNBfBZRkoHCQogyT", + "links": [ + { + "name": "x", + "url": "https://x.com/abblecoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/ENoD8J2J6wNHkcJkvVBkwq5JMiR1oNBfBZRkoHCQogyT/logo.png b/blockchains/solana/assets/ENoD8J2J6wNHkcJkvVBkwq5JMiR1oNBfBZRkoHCQogyT/logo.png new file mode 100644 index 0000000000000..39f585be8f985 Binary files /dev/null and b/blockchains/solana/assets/ENoD8J2J6wNHkcJkvVBkwq5JMiR1oNBfBZRkoHCQogyT/logo.png differ diff --git a/blockchains/solana/assets/ENrKvTAUKdTHYLkLjhocfoqA3xXzAGsn1vK2PKGPGUDz/info.json b/blockchains/solana/assets/ENrKvTAUKdTHYLkLjhocfoqA3xXzAGsn1vK2PKGPGUDz/info.json new file mode 100644 index 0000000000000..0b17ede540b5d --- /dev/null +++ b/blockchains/solana/assets/ENrKvTAUKdTHYLkLjhocfoqA3xXzAGsn1vK2PKGPGUDz/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE EURC", + "type": "SPL", + "symbol": "FAKE EURC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/ENrKvTAUKdTHYLkLjhocfoqA3xXzAGsn1vK2PKGPGUDz", + "explorer": "https://solscan.io/token/ENrKvTAUKdTHYLkLjhocfoqA3xXzAGsn1vK2PKGPGUDz", + "status": "spam", + "id": "ENrKvTAUKdTHYLkLjhocfoqA3xXzAGsn1vK2PKGPGUDz" +} \ No newline at end of file diff --git a/blockchains/solana/assets/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v/info.json b/blockchains/solana/assets/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v/info.json index 0658c31b06d0d..c12629482e68d 100644 --- a/blockchains/solana/assets/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v/info.json +++ b/blockchains/solana/assets/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v/info.json @@ -1,5 +1,5 @@ { - "name": "USD Coin", + "name": "USDC", "symbol": "USDC", "type": "SPL", "decimals": 6, @@ -14,8 +14,11 @@ "url": "https://t.me/stakingfacilities" }, { - "name": "twitter", - "url": "https://twitter.com/solanabeach_io" + "name": "x", + "url": "https://x.com/solanabeach_io" } + ], + "tags": [ + "stablecoin" ] } \ No newline at end of file diff --git a/blockchains/solana/assets/ERg4SSavMmM9nsmFWVwyRJZVCTCyLT2r9fgkQngbE4iU/info.json b/blockchains/solana/assets/ERg4SSavMmM9nsmFWVwyRJZVCTCyLT2r9fgkQngbE4iU/info.json new file mode 100644 index 0000000000000..2d788b89ddad0 --- /dev/null +++ b/blockchains/solana/assets/ERg4SSavMmM9nsmFWVwyRJZVCTCyLT2r9fgkQngbE4iU/info.json @@ -0,0 +1,17 @@ +{ + "name": "Gondola", + "type": "SPL", + "symbol": "GONDOLA", + "decimals": 9, + "website": "https://gondolacoin.xyz/", + "description": "#Gondola🦦, the cultural icon in high-waisted pants.", + "explorer": "https://solscan.io/token/ERg4SSavMmM9nsmFWVwyRJZVCTCyLT2r9fgkQngbE4iU", + "status": "active", + "id": "ERg4SSavMmM9nsmFWVwyRJZVCTCyLT2r9fgkQngbE4iU", + "links": [ + { + "name": "x", + "url": "https://x.com/GONDOLA_ONSOL" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/ERg4SSavMmM9nsmFWVwyRJZVCTCyLT2r9fgkQngbE4iU/logo.png b/blockchains/solana/assets/ERg4SSavMmM9nsmFWVwyRJZVCTCyLT2r9fgkQngbE4iU/logo.png new file mode 100644 index 0000000000000..cab5e44f0d5e1 Binary files /dev/null and b/blockchains/solana/assets/ERg4SSavMmM9nsmFWVwyRJZVCTCyLT2r9fgkQngbE4iU/logo.png differ diff --git a/blockchains/solana/assets/ES98yyT1oRyhXeHTV4eMNWwa6utDRY57NjvjLJpMvX6B/info.json b/blockchains/solana/assets/ES98yyT1oRyhXeHTV4eMNWwa6utDRY57NjvjLJpMvX6B/info.json new file mode 100644 index 0000000000000..88ad1833ceadd --- /dev/null +++ b/blockchains/solana/assets/ES98yyT1oRyhXeHTV4eMNWwa6utDRY57NjvjLJpMvX6B/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether ", + "type": "SPL", + "symbol": "FAKE ՍSDT", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/ES98yyT1oRyhXeHTV4eMNWwa6utDRY57NjvjLJpMvX6B", + "explorer": "https://solscan.io/token/ES98yyT1oRyhXeHTV4eMNWwa6utDRY57NjvjLJpMvX6B", + "status": "spam", + "id": "ES98yyT1oRyhXeHTV4eMNWwa6utDRY57NjvjLJpMvX6B" +} \ No newline at end of file diff --git a/blockchains/solana/assets/ES9k2ZdqJmoYhAHdTa9Bq1XmJjQnTNWqHgKTEVg5zvNb/info.json b/blockchains/solana/assets/ES9k2ZdqJmoYhAHdTa9Bq1XmJjQnTNWqHgKTEVg5zvNb/info.json new file mode 100644 index 0000000000000..0c97fea4bb325 --- /dev/null +++ b/blockchains/solana/assets/ES9k2ZdqJmoYhAHdTa9Bq1XmJjQnTNWqHgKTEVg5zvNb/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether", + "type": "SPL", + "symbol": "FAKE ՍSDT", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/ES9k2ZdqJmoYhAHdTa9Bq1XmJjQnTNWqHgKTEVg5zvNb", + "explorer": "https://solscan.io/token/ES9k2ZdqJmoYhAHdTa9Bq1XmJjQnTNWqHgKTEVg5zvNb", + "status": "spam", + "id": "ES9k2ZdqJmoYhAHdTa9Bq1XmJjQnTNWqHgKTEVg5zvNb" +} \ No newline at end of file diff --git a/blockchains/solana/assets/ETAtLmCmsoiEEKfNrHKJ2kYy3MoABhU6NQvpSfij5tDs/info.json b/blockchains/solana/assets/ETAtLmCmsoiEEKfNrHKJ2kYy3MoABhU6NQvpSfij5tDs/info.json index d658dd74c5cf5..6a092f9a23d44 100644 --- a/blockchains/solana/assets/ETAtLmCmsoiEEKfNrHKJ2kYy3MoABhU6NQvpSfij5tDs/info.json +++ b/blockchains/solana/assets/ETAtLmCmsoiEEKfNrHKJ2kYy3MoABhU6NQvpSfij5tDs/info.json @@ -10,8 +10,8 @@ "id": "ETAtLmCmsoiEEKfNrHKJ2kYy3MoABhU6NQvpSfij5tDs", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Media_FDN" + "name": "x", + "url": "https://x.com/Media_FDN" }, { "name": "coinmarketcap", diff --git a/blockchains/solana/assets/EVDQN4P1YTTD1Y3eLBDBoALWnR4aMBC9y2xUYCrbGbuy/info.json b/blockchains/solana/assets/EVDQN4P1YTTD1Y3eLBDBoALWnR4aMBC9y2xUYCrbGbuy/info.json new file mode 100644 index 0000000000000..c39b88c8f79b1 --- /dev/null +++ b/blockchains/solana/assets/EVDQN4P1YTTD1Y3eLBDBoALWnR4aMBC9y2xUYCrbGbuy/info.json @@ -0,0 +1,17 @@ +{ + "name": "MOCHICAT", + "type": "SPL", + "symbol": "MOCHICAT", + "decimals": 9, + "website": "https://mochicatsol.club", + "description": "The community rallied together after the developer abandoned MOCHICAT, leaving it languishing with a market cap of just 5K.", + "explorer": "https://solscan.io/token/EVDQN4P1YTTD1Y3eLBDBoALWnR4aMBC9y2xUYCrbGbuy", + "status": "active", + "id": "EVDQN4P1YTTD1Y3eLBDBoALWnR4aMBC9y2xUYCrbGbuy", + "links": [ + { + "name": "x", + "url": "https://x.com/TokenMochiCat" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EVDQN4P1YTTD1Y3eLBDBoALWnR4aMBC9y2xUYCrbGbuy/logo.png b/blockchains/solana/assets/EVDQN4P1YTTD1Y3eLBDBoALWnR4aMBC9y2xUYCrbGbuy/logo.png new file mode 100644 index 0000000000000..ead469826349d Binary files /dev/null and b/blockchains/solana/assets/EVDQN4P1YTTD1Y3eLBDBoALWnR4aMBC9y2xUYCrbGbuy/logo.png differ diff --git a/blockchains/solana/assets/EVDoPXkWNRMc7fQirg7emNdc17KNqsCyzVi4mWPmDvni/info.json b/blockchains/solana/assets/EVDoPXkWNRMc7fQirg7emNdc17KNqsCyzVi4mWPmDvni/info.json new file mode 100644 index 0000000000000..6cdaf4ecd042c --- /dev/null +++ b/blockchains/solana/assets/EVDoPXkWNRMc7fQirg7emNdc17KNqsCyzVi4mWPmDvni/info.json @@ -0,0 +1,17 @@ +{ + "name": "CATVAX", + "type": "SPL", + "symbol": "CATVAX", + "decimals": 9, + "website": "https://catvax.net", + "description": "In the heart of a sprawling desert, where the golden sands whisper secrets of the ancients to those who dare listen, a tale of resilience, discovery, and kingdom-building unfurls.", + "explorer": "https://solscan.io/token/EVDoPXkWNRMc7fQirg7emNdc17KNqsCyzVi4mWPmDvni", + "id": "EVDoPXkWNRMc7fQirg7emNdc17KNqsCyzVi4mWPmDvni", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/CATVAX_io" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EVDoPXkWNRMc7fQirg7emNdc17KNqsCyzVi4mWPmDvni/logo.png b/blockchains/solana/assets/EVDoPXkWNRMc7fQirg7emNdc17KNqsCyzVi4mWPmDvni/logo.png new file mode 100644 index 0000000000000..ed71c3cf92318 Binary files /dev/null and b/blockchains/solana/assets/EVDoPXkWNRMc7fQirg7emNdc17KNqsCyzVi4mWPmDvni/logo.png differ diff --git a/blockchains/solana/assets/EWx3xDR76YfxF3VHwTLgwU9WYrwANw3yxX5vvk8Kpump/info.json b/blockchains/solana/assets/EWx3xDR76YfxF3VHwTLgwU9WYrwANw3yxX5vvk8Kpump/info.json new file mode 100644 index 0000000000000..61af11d40bce0 --- /dev/null +++ b/blockchains/solana/assets/EWx3xDR76YfxF3VHwTLgwU9WYrwANw3yxX5vvk8Kpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "twurtle the turtle", + "symbol": "TWURTLE", + "type": "SPL", + "decimals": 6, + "description": "The world is supported on the back of a baby twurtle ◡̈.", + "website": "https://linktr.ee/soltwurtle", + "explorer": "https://solscan.io/token/EWx3xDR76YfxF3VHwTLgwU9WYrwANw3yxX5vvk8Kpump", + "status": "active", + "id": "EWx3xDR76YfxF3VHwTLgwU9WYrwANw3yxX5vvk8Kpump", + "links": [ + { + "name": "x", + "url": "https://x.com/soltwurtle" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/twurtle-the-turtle" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EWx3xDR76YfxF3VHwTLgwU9WYrwANw3yxX5vvk8Kpump/logo.png b/blockchains/solana/assets/EWx3xDR76YfxF3VHwTLgwU9WYrwANw3yxX5vvk8Kpump/logo.png new file mode 100644 index 0000000000000..d837616f2a50a Binary files /dev/null and b/blockchains/solana/assets/EWx3xDR76YfxF3VHwTLgwU9WYrwANw3yxX5vvk8Kpump/logo.png differ diff --git a/blockchains/solana/assets/EXA537HSBVpsFijENbt6Muuy9AADUN8dUmYKD4oKbjJE/info.json b/blockchains/solana/assets/EXA537HSBVpsFijENbt6Muuy9AADUN8dUmYKD4oKbjJE/info.json new file mode 100644 index 0000000000000..2694e8723620e --- /dev/null +++ b/blockchains/solana/assets/EXA537HSBVpsFijENbt6Muuy9AADUN8dUmYKD4oKbjJE/info.json @@ -0,0 +1,21 @@ +{ + "name": "Eggdog", + "symbol": "EGG", + "type": "SPL", + "decimals": 9, + "description": "eggdog is a token based off an internet meme, often of a 3d model that is of a dog that is shaped like an egg in many odd scenarios.", + "website": "https://eggdogsol.com/", + "explorer": "https://solscan.io/token/EXA537HSBVpsFijENbt6Muuy9AADUN8dUmYKD4oKbjJE", + "status": "active", + "id": "EXA537HSBVpsFijENbt6Muuy9AADUN8dUmYKD4oKbjJE", + "links": [ + { + "name": "x", + "url": "https://x.com/eggdogsolana" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/eggdog" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EXA537HSBVpsFijENbt6Muuy9AADUN8dUmYKD4oKbjJE/logo.png b/blockchains/solana/assets/EXA537HSBVpsFijENbt6Muuy9AADUN8dUmYKD4oKbjJE/logo.png new file mode 100644 index 0000000000000..6be7c93947439 Binary files /dev/null and b/blockchains/solana/assets/EXA537HSBVpsFijENbt6Muuy9AADUN8dUmYKD4oKbjJE/logo.png differ diff --git a/blockchains/solana/assets/EXtprP1wzrNo2bByrU9JyzqEg2hQMSCVJakeHHYondo/info.json b/blockchains/solana/assets/EXtprP1wzrNo2bByrU9JyzqEg2hQMSCVJakeHHYondo/info.json new file mode 100644 index 0000000000000..2fe1af0ea01d1 --- /dev/null +++ b/blockchains/solana/assets/EXtprP1wzrNo2bByrU9JyzqEg2hQMSCVJakeHHYondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Seagate (Ondo Tokenized)", + "type": "SPL", + "symbol": "STXon", + "decimals": 9, + "description": "STXon is the Ondo Tokenized version of Seagate, giving tokenholders economic exposure similar to holding STX and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/EXtprP1wzrNo2bByrU9JyzqEg2hQMSCVJakeHHYondo", + "status": "active", + "id": "EXtprP1wzrNo2bByrU9JyzqEg2hQMSCVJakeHHYondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/seagate-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EXtprP1wzrNo2bByrU9JyzqEg2hQMSCVJakeHHYondo/logo.png b/blockchains/solana/assets/EXtprP1wzrNo2bByrU9JyzqEg2hQMSCVJakeHHYondo/logo.png new file mode 100644 index 0000000000000..3cee526c5f442 Binary files /dev/null and b/blockchains/solana/assets/EXtprP1wzrNo2bByrU9JyzqEg2hQMSCVJakeHHYondo/logo.png differ diff --git a/blockchains/solana/assets/EYaJJKb2VDZuYKEWf5TjngFRc43cMgttPuRtcJwQt35z/info.json b/blockchains/solana/assets/EYaJJKb2VDZuYKEWf5TjngFRc43cMgttPuRtcJwQt35z/info.json new file mode 100644 index 0000000000000..08d3c1246500d --- /dev/null +++ b/blockchains/solana/assets/EYaJJKb2VDZuYKEWf5TjngFRc43cMgttPuRtcJwQt35z/info.json @@ -0,0 +1,17 @@ +{ + "name": "Blekrok", + "website": "https://www.blekrok.com/", + "description": "Taking down a monopoly live on the Blockchain.", + "explorer": "https://solscan.io/token/EYaJJKb2VDZuYKEWf5TjngFRc43cMgttPuRtcJwQt35z", + "type": "SPL", + "symbol": "BLEK", + "decimals": 5, + "status": "active", + "id": "EYaJJKb2VDZuYKEWf5TjngFRc43cMgttPuRtcJwQt35z", + "links": [ + { + "name": "x", + "url": "https://x.com/blekroksolana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EYaJJKb2VDZuYKEWf5TjngFRc43cMgttPuRtcJwQt35z/logo.png b/blockchains/solana/assets/EYaJJKb2VDZuYKEWf5TjngFRc43cMgttPuRtcJwQt35z/logo.png new file mode 100644 index 0000000000000..0ebc39371c88c Binary files /dev/null and b/blockchains/solana/assets/EYaJJKb2VDZuYKEWf5TjngFRc43cMgttPuRtcJwQt35z/logo.png differ diff --git a/blockchains/solana/assets/EYo8D3cLdF1CDeGms5M5VHyU52HJYinkMZ1cqvYondo/info.json b/blockchains/solana/assets/EYo8D3cLdF1CDeGms5M5VHyU52HJYinkMZ1cqvYondo/info.json new file mode 100644 index 0000000000000..b2e19b57ad991 --- /dev/null +++ b/blockchains/solana/assets/EYo8D3cLdF1CDeGms5M5VHyU52HJYinkMZ1cqvYondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Uranium Energy (Ondo Tokenized)", + "type": "SPL", + "symbol": "UECon", + "decimals": 9, + "description": "UECon is the Ondo Tokenized version of Uranium Energy, giving tokenholders economic exposure similar to holding UEC and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/EYo8D3cLdF1CDeGms5M5VHyU52HJYinkMZ1cqvYondo", + "status": "active", + "id": "EYo8D3cLdF1CDeGms5M5VHyU52HJYinkMZ1cqvYondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/uranium-energy-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EYo8D3cLdF1CDeGms5M5VHyU52HJYinkMZ1cqvYondo/logo.png b/blockchains/solana/assets/EYo8D3cLdF1CDeGms5M5VHyU52HJYinkMZ1cqvYondo/logo.png new file mode 100644 index 0000000000000..3cac9a56277b8 Binary files /dev/null and b/blockchains/solana/assets/EYo8D3cLdF1CDeGms5M5VHyU52HJYinkMZ1cqvYondo/logo.png differ diff --git a/blockchains/solana/assets/Ea5SjE2Y6yvCeW5dYTn7PYMuW5ikXkvbGdcmSnXeaLjS/info.json b/blockchains/solana/assets/Ea5SjE2Y6yvCeW5dYTn7PYMuW5ikXkvbGdcmSnXeaLjS/info.json new file mode 100644 index 0000000000000..18c73fe9a7bcb --- /dev/null +++ b/blockchains/solana/assets/Ea5SjE2Y6yvCeW5dYTn7PYMuW5ikXkvbGdcmSnXeaLjS/info.json @@ -0,0 +1,21 @@ +{ + "name": "Parrot USD", + "website": "https://runesbridge.xyz/", + "description": "The Parrot Protocol is a DeFi network built on Solana that will include the stablecoin PAI, a non-custodial lending market, and a margin trading vAMM.", + "explorer": "https://solscan.io/token/Ea5SjE2Y6yvCeW5dYTn7PYMuW5ikXkvbGdcmSnXeaLjS", + "type": "SPL", + "symbol": "PAI", + "decimals": 6, + "status": "active", + "id": "Ea5SjE2Y6yvCeW5dYTn7PYMuW5ikXkvbGdcmSnXeaLjS", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/parrot-usd/" + }, + { + "name": "x", + "url": "https://x.com/gopartyparrot" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Ea5SjE2Y6yvCeW5dYTn7PYMuW5ikXkvbGdcmSnXeaLjS/logo.png b/blockchains/solana/assets/Ea5SjE2Y6yvCeW5dYTn7PYMuW5ikXkvbGdcmSnXeaLjS/logo.png new file mode 100644 index 0000000000000..d328385d51917 Binary files /dev/null and b/blockchains/solana/assets/Ea5SjE2Y6yvCeW5dYTn7PYMuW5ikXkvbGdcmSnXeaLjS/logo.png differ diff --git a/blockchains/solana/assets/Ec2XMdQpLcHnBjaEB5CzeshprAnRdMtHMAVPWmcwTxxA/info.json b/blockchains/solana/assets/Ec2XMdQpLcHnBjaEB5CzeshprAnRdMtHMAVPWmcwTxxA/info.json new file mode 100644 index 0000000000000..d4b52c562c760 --- /dev/null +++ b/blockchains/solana/assets/Ec2XMdQpLcHnBjaEB5CzeshprAnRdMtHMAVPWmcwTxxA/info.json @@ -0,0 +1,21 @@ +{ + "name": "Plumbus", + "type": "SPL", + "symbol": "PLUMBUS", + "decimals": 9, + "website": "https://rickandmorty.fandom.com/wiki/Plumbus", + "description": "Everyone has a plumbus in their home! First, they take the dinglepop and they smooth it out with a bunch of schleem.", + "explorer": "https://solscan.io/token/Ec2XMdQpLcHnBjaEB5CzeshprAnRdMtHMAVPWmcwTxxA", + "status": "active", + "id": "Ec2XMdQpLcHnBjaEB5CzeshprAnRdMtHMAVPWmcwTxxA", + "links": [ + { + "name": "x", + "url": "https://x.com/PlumbusArmy" + }, + { + "name": "telegram", + "url": "https://t.me/solplumbus" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Ec2XMdQpLcHnBjaEB5CzeshprAnRdMtHMAVPWmcwTxxA/logo.png b/blockchains/solana/assets/Ec2XMdQpLcHnBjaEB5CzeshprAnRdMtHMAVPWmcwTxxA/logo.png new file mode 100644 index 0000000000000..be2cf7f334be9 Binary files /dev/null and b/blockchains/solana/assets/Ec2XMdQpLcHnBjaEB5CzeshprAnRdMtHMAVPWmcwTxxA/logo.png differ diff --git a/blockchains/solana/assets/EcQCUYv57C4V6RoPxkVUiDwtX1SP8y8FP5AEToYL8Az/info.json b/blockchains/solana/assets/EcQCUYv57C4V6RoPxkVUiDwtX1SP8y8FP5AEToYL8Az/info.json index a682d577eece1..a1304963141d4 100644 --- a/blockchains/solana/assets/EcQCUYv57C4V6RoPxkVUiDwtX1SP8y8FP5AEToYL8Az/info.json +++ b/blockchains/solana/assets/EcQCUYv57C4V6RoPxkVUiDwtX1SP8y8FP5AEToYL8Az/info.json @@ -14,8 +14,8 @@ "url": "https://medium.com/@walken.io" }, { - "name": "twitter", - "url": "https://twitter.com/walken_io" + "name": "x", + "url": "https://x.com/walken_io" } ] } \ No newline at end of file diff --git a/blockchains/solana/assets/EchesyfXePKdLtoiZSL8pBe8Myagyy8ZRqsACNCFGnvp/info.json b/blockchains/solana/assets/EchesyfXePKdLtoiZSL8pBe8Myagyy8ZRqsACNCFGnvp/info.json index 9ab2dbb4d93dd..7a7abae475801 100644 --- a/blockchains/solana/assets/EchesyfXePKdLtoiZSL8pBe8Myagyy8ZRqsACNCFGnvp/info.json +++ b/blockchains/solana/assets/EchesyfXePKdLtoiZSL8pBe8Myagyy8ZRqsACNCFGnvp/info.json @@ -1,5 +1,5 @@ { - "name": "Bonfida", + "name": "Solana Name Service", "symbol": "FIDA", "type": "SPL", "decimals": 6, @@ -10,8 +10,8 @@ "id": "EchesyfXePKdLtoiZSL8pBe8Myagyy8ZRqsACNCFGnvp", "links": [ { - "name": "twitter", - "url": "https://twitter.com/bonfida" + "name": "x", + "url": "https://x.com/bonfida" }, { "name": "coinmarketcap", @@ -25,4 +25,4 @@ "tags": [ "defi" ] -} \ No newline at end of file +} diff --git a/blockchains/solana/assets/Eex7VB8bGuNYQ9YwZXhmWqxv21ACFnCDyE2qGcT8eNYB/info.json b/blockchains/solana/assets/Eex7VB8bGuNYQ9YwZXhmWqxv21ACFnCDyE2qGcT8eNYB/info.json new file mode 100644 index 0000000000000..0cd051f3cd984 --- /dev/null +++ b/blockchains/solana/assets/Eex7VB8bGuNYQ9YwZXhmWqxv21ACFnCDyE2qGcT8eNYB/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tethor USD", + "type": "SPL", + "symbol": "FAKE USDT.a", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://etherscan.io/token/0xf56bd63ac2d14c397a754e0bdfce020baa44f214", + "explorer": "https://etherscan.io/token/0xf56bd63ac2d14c397a754e0bdfce020baa44f214", + "status": "spam", + "id": "Eex7VB8bGuNYQ9YwZXhmWqxv21ACFnCDyE2qGcT8eNYB" +} \ No newline at end of file diff --git a/blockchains/solana/assets/EfqR6H3knDCgYq7QLtwjRAC5wPzustQvkzNTAMzUvirt/info.json b/blockchains/solana/assets/EfqR6H3knDCgYq7QLtwjRAC5wPzustQvkzNTAMzUvirt/info.json new file mode 100644 index 0000000000000..73ddf64335b6f --- /dev/null +++ b/blockchains/solana/assets/EfqR6H3knDCgYq7QLtwjRAC5wPzustQvkzNTAMzUvirt/info.json @@ -0,0 +1,25 @@ +{ + "name": "Nyx by Virtuals", + "type": "SOL", + "symbol": "NYX", + "decimals": 6, + "description": "Nyx is the first virtual idol created by Alias Labs with KIRA X (xiaooo404 on Instagram) on the Virtuals Protocol on Solana, powered by decentralized compute and storage from 0G Labs and self-improving AI using the evolveRL framework.", + "website": "https://www.heynyx.xyz/", + "explorer": "https://solscan.io/token/EfqR6H3knDCgYq7QLtwjRAC5wPzustQvkzNTAMzUvirt", + "id": "EfqR6H3knDCgYq7QLtwjRAC5wPzustQvkzNTAMzUvirt", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/NyxByAliasLabs" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/nyx-by-virtuals" + } + ], + "tags": [ + "gamefi" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/EfqR6H3knDCgYq7QLtwjRAC5wPzustQvkzNTAMzUvirt/logo.png b/blockchains/solana/assets/EfqR6H3knDCgYq7QLtwjRAC5wPzustQvkzNTAMzUvirt/logo.png new file mode 100644 index 0000000000000..8626de42f08e1 Binary files /dev/null and b/blockchains/solana/assets/EfqR6H3knDCgYq7QLtwjRAC5wPzustQvkzNTAMzUvirt/logo.png differ diff --git a/blockchains/solana/assets/EgqCDsZViK6T1dHcAgJBVftc9Cd4AqiRiHZWeHyQ84LG/info.json b/blockchains/solana/assets/EgqCDsZViK6T1dHcAgJBVftc9Cd4AqiRiHZWeHyQ84LG/info.json new file mode 100644 index 0000000000000..77d273a7e9142 --- /dev/null +++ b/blockchains/solana/assets/EgqCDsZViK6T1dHcAgJBVftc9Cd4AqiRiHZWeHyQ84LG/info.json @@ -0,0 +1,21 @@ +{ + "name": "Libertarian Dog", + "symbol": "Liberta", + "type": "SPL", + "decimals": 6, + "description": "Welcome to $Liberta, the Libertarian Dog Coin on the Solana blockchain!", + "website": "https://liberta.dog/", + "explorer": "https://solscan.io/token/EgqCDsZViK6T1dHcAgJBVftc9Cd4AqiRiHZWeHyQ84LG", + "status": "active", + "id": "EgqCDsZViK6T1dHcAgJBVftc9Cd4AqiRiHZWeHyQ84LG", + "links": [ + { + "name": "x", + "url": "https://x.com/LibertaDog" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/the-libertarian-dog" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EgqCDsZViK6T1dHcAgJBVftc9Cd4AqiRiHZWeHyQ84LG/logo.png b/blockchains/solana/assets/EgqCDsZViK6T1dHcAgJBVftc9Cd4AqiRiHZWeHyQ84LG/logo.png new file mode 100644 index 0000000000000..9fc18cae976fd Binary files /dev/null and b/blockchains/solana/assets/EgqCDsZViK6T1dHcAgJBVftc9Cd4AqiRiHZWeHyQ84LG/logo.png differ diff --git a/blockchains/solana/assets/EhzVcKKmGjLk6pD5gLT6ZrTg62bMgPgTSCXXmANnSyQA/info.json b/blockchains/solana/assets/EhzVcKKmGjLk6pD5gLT6ZrTg62bMgPgTSCXXmANnSyQA/info.json new file mode 100644 index 0000000000000..00b3ce63d4e8a --- /dev/null +++ b/blockchains/solana/assets/EhzVcKKmGjLk6pD5gLT6ZrTg62bMgPgTSCXXmANnSyQA/info.json @@ -0,0 +1,21 @@ +{ + "name": "SANTA", + "website": "https://santatokensol.io/", + "description": "$SANTA is the ultimate Christmas-themed token on the Solana network, offering low-supply tokenomics designed to maximize value for its holders", + "explorer": "https://solscan.io/token/EhzVcKKmGjLk6pD5gLT6ZrTg62bMgPgTSCXXmANnSyQA", + "type": "SPL", + "symbol": "SANTA", + "decimals": 9, + "status": "active", + "id": "EhzVcKKmGjLk6pD5gLT6ZrTg62bMgPgTSCXXmANnSyQA", + "links": [ + { + "name": "x", + "url": "https://x.com/SANTATOKENSOL2" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/santa" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EhzVcKKmGjLk6pD5gLT6ZrTg62bMgPgTSCXXmANnSyQA/logo.png b/blockchains/solana/assets/EhzVcKKmGjLk6pD5gLT6ZrTg62bMgPgTSCXXmANnSyQA/logo.png new file mode 100644 index 0000000000000..a4e1cac8952f1 Binary files /dev/null and b/blockchains/solana/assets/EhzVcKKmGjLk6pD5gLT6ZrTg62bMgPgTSCXXmANnSyQA/logo.png differ diff --git a/blockchains/solana/assets/EjmyN6qEC1Tf1JxiG1ae7UTJhUxSwk1TCWNWqxWV4J6o/info.json b/blockchains/solana/assets/EjmyN6qEC1Tf1JxiG1ae7UTJhUxSwk1TCWNWqxWV4J6o/info.json index d882512756557..6c055bcc8203c 100644 --- a/blockchains/solana/assets/EjmyN6qEC1Tf1JxiG1ae7UTJhUxSwk1TCWNWqxWV4J6o/info.json +++ b/blockchains/solana/assets/EjmyN6qEC1Tf1JxiG1ae7UTJhUxSwk1TCWNWqxWV4J6o/info.json @@ -1,5 +1,5 @@ { - "name": "DAI (Portal)", + "name": "Dai (Portal)", "type": "SPL", "symbol": "DAI", "decimals": 8, diff --git a/blockchains/solana/assets/EkpM1CqtDHayGBAFSjRryLA1BjGr36ST9GX84pocNzXG/info.json b/blockchains/solana/assets/EkpM1CqtDHayGBAFSjRryLA1BjGr36ST9GX84pocNzXG/info.json new file mode 100644 index 0000000000000..2f30be524ba57 --- /dev/null +++ b/blockchains/solana/assets/EkpM1CqtDHayGBAFSjRryLA1BjGr36ST9GX84pocNzXG/info.json @@ -0,0 +1,21 @@ +{ + "name": "KHABY", + "type": "SPL", + "symbol": "Khaby Lame", + "decimals": 6, + "website": "https://khabycoin.com/", + "description": "KHABY is The First Official Unofficial Memecoin!", + "explorer": "https://solscan.io/token/EkpM1CqtDHayGBAFSjRryLA1BjGr36ST9GX84pocNzXG", + "status": "active", + "id": "EkpM1CqtDHayGBAFSjRryLA1BjGr36ST9GX84pocNzXG", + "links": [ + { + "name": "x", + "url": "https://x.com/khabysolana" + }, + { + "name": "telegram", + "url": "https://t.me/khabysolana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EkpM1CqtDHayGBAFSjRryLA1BjGr36ST9GX84pocNzXG/logo.png b/blockchains/solana/assets/EkpM1CqtDHayGBAFSjRryLA1BjGr36ST9GX84pocNzXG/logo.png new file mode 100644 index 0000000000000..3969136c9a91f Binary files /dev/null and b/blockchains/solana/assets/EkpM1CqtDHayGBAFSjRryLA1BjGr36ST9GX84pocNzXG/logo.png differ diff --git a/blockchains/solana/assets/EnrfQThbgGVNdjWXtKzmBqTiqD7WXK8jBDMxLtMopump/info.json b/blockchains/solana/assets/EnrfQThbgGVNdjWXtKzmBqTiqD7WXK8jBDMxLtMopump/info.json new file mode 100644 index 0000000000000..956abe41e3f2b --- /dev/null +++ b/blockchains/solana/assets/EnrfQThbgGVNdjWXtKzmBqTiqD7WXK8jBDMxLtMopump/info.json @@ -0,0 +1,26 @@ +{ + "name": "Shiro Neko", + "type": "SOL", + "symbol": "SHIRO", + "decimals": 6, + "description": "Shiro Neko ($SHIRO) is a cat-inspired token on the Solana blockchain, combining the charm of memecoins with the efficiency and scalability of Solana. In a major development, the Shiba Inu ecosystem announced a partnership with Shiro Neko on ETH, uniting two beloved brands in the crypto world.", + "website": "https://shirosol.online/", + "explorer": "https://solscan.io/token/EnrfQThbgGVNdjWXtKzmBqTiqD7WXK8jBDMxLtMopump", + "id": "EnrfQThbgGVNdjWXtKzmBqTiqD7WXK8jBDMxLtMopump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Sol_ShiroNeko" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shirosol-online/" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/EnrfQThbgGVNdjWXtKzmBqTiqD7WXK8jBDMxLtMopump/logo.png b/blockchains/solana/assets/EnrfQThbgGVNdjWXtKzmBqTiqD7WXK8jBDMxLtMopump/logo.png new file mode 100644 index 0000000000000..cf8262feeb1da Binary files /dev/null and b/blockchains/solana/assets/EnrfQThbgGVNdjWXtKzmBqTiqD7WXK8jBDMxLtMopump/logo.png differ diff --git a/blockchains/solana/assets/Eo8BLxr7xtJ54mnuxUPr1YyqcCv29aL9G5osL61Vpump/info.json b/blockchains/solana/assets/Eo8BLxr7xtJ54mnuxUPr1YyqcCv29aL9G5osL61Vpump/info.json new file mode 100644 index 0000000000000..2eee975fc6de7 --- /dev/null +++ b/blockchains/solana/assets/Eo8BLxr7xtJ54mnuxUPr1YyqcCv29aL9G5osL61Vpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Frens of Elon", + "type": "SPL", + "symbol": "FRENS", + "decimals": 6, + "description": "Follow the story of seven frens: Trump, Elon, Vivek, RFK, Tulsi, Dana, and Joe, here to make America great again!", + "website": "https://frensofelon.com/", + "explorer": "https://solscan.io/token/Eo8BLxr7xtJ54mnuxUPr1YyqcCv29aL9G5osL61Vpump", + "id": "Eo8BLxr7xtJ54mnuxUPr1YyqcCv29aL9G5osL61Vpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/frensofelon" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shiba-inu-on-base/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Eo8BLxr7xtJ54mnuxUPr1YyqcCv29aL9G5osL61Vpump/logo.png b/blockchains/solana/assets/Eo8BLxr7xtJ54mnuxUPr1YyqcCv29aL9G5osL61Vpump/logo.png new file mode 100644 index 0000000000000..d236db0de88a1 Binary files /dev/null and b/blockchains/solana/assets/Eo8BLxr7xtJ54mnuxUPr1YyqcCv29aL9G5osL61Vpump/logo.png differ diff --git a/blockchains/solana/assets/EqBwbzaRPwP8R4TSoHcF5u3daZcEmkpVeJEK3nKGAnNJ/info.json b/blockchains/solana/assets/EqBwbzaRPwP8R4TSoHcF5u3daZcEmkpVeJEK3nKGAnNJ/info.json new file mode 100644 index 0000000000000..b26d770d9e4af --- /dev/null +++ b/blockchains/solana/assets/EqBwbzaRPwP8R4TSoHcF5u3daZcEmkpVeJEK3nKGAnNJ/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDT", + "type": "SPL", + "symbol": "FAKE USDT", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/EqBwbzaRPwP8R4TSoHcF5u3daZcEmkpVeJEK3nKGAnNJ", + "explorer": "https://solscan.io/token/EqBwbzaRPwP8R4TSoHcF5u3daZcEmkpVeJEK3nKGAnNJ", + "status": "spam", + "id": "EqBwbzaRPwP8R4TSoHcF5u3daZcEmkpVeJEK3nKGAnNJ" +} \ No newline at end of file diff --git a/blockchains/solana/assets/EqeEBGHQhQy6SqeaJcnqAsNs3qaG19sdF89Xsarpump/info.json b/blockchains/solana/assets/EqeEBGHQhQy6SqeaJcnqAsNs3qaG19sdF89Xsarpump/info.json new file mode 100644 index 0000000000000..d53400d61ebf5 --- /dev/null +++ b/blockchains/solana/assets/EqeEBGHQhQy6SqeaJcnqAsNs3qaG19sdF89Xsarpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Trust The Process", + "website": "https://www.trust.frl/", + "description": "$TRUST the process is the number 1 normie driven solana meme which can be traded on Jupiter & Raydium as well as centralized exchanges.", + "explorer": "https://solscan.io/token/EqeEBGHQhQy6SqeaJcnqAsNs3qaG19sdF89Xsarpump", + "type": "SPL", + "symbol": "TRUST", + "decimals": 6, + "status": "active", + "id": "EqeEBGHQhQy6SqeaJcnqAsNs3qaG19sdF89Xsarpump", + "links": [ + { + "name": "x", + "url": "https://x.com/trust_solana?t=5JCFV4E8gxGCQTFxrgtzkw&s=09" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/trust-the-process/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EqeEBGHQhQy6SqeaJcnqAsNs3qaG19sdF89Xsarpump/logo.png b/blockchains/solana/assets/EqeEBGHQhQy6SqeaJcnqAsNs3qaG19sdF89Xsarpump/logo.png new file mode 100644 index 0000000000000..ea03d1e26a8ed Binary files /dev/null and b/blockchains/solana/assets/EqeEBGHQhQy6SqeaJcnqAsNs3qaG19sdF89Xsarpump/logo.png differ diff --git a/blockchains/solana/assets/ErSZNwsamWjR9Hj2o18GLwVyTkooyGbdptjMjuv72X8A/info.json b/blockchains/solana/assets/ErSZNwsamWjR9Hj2o18GLwVyTkooyGbdptjMjuv72X8A/info.json new file mode 100644 index 0000000000000..ce39fc9a1cc87 --- /dev/null +++ b/blockchains/solana/assets/ErSZNwsamWjR9Hj2o18GLwVyTkooyGbdptjMjuv72X8A/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bitgert", + "type": "SPL", + "symbol": "BRISE", + "decimals": 2, + "website": "https://bitgert.com/", + "description": "Bitgert is a revolutionary crypto engineering organization that aims to revolutionize the way people interact with digital assets. Through their numerous projects, Bitgert has created a comprehensive ecosystem of products that cover all aspects of digital asset ownership.", + "explorer": "https://solscan.io/token/ErSZNwsamWjR9Hj2o18GLwVyTkooyGbdptjMjuv72X8A", + "status": "active", + "id": "ErSZNwsamWjR9Hj2o18GLwVyTkooyGbdptjMjuv72X8A", + "links": [ + { + "name": "x", + "url": "https://x.com/bitgertbrise" + }, + { + "name": "telegram", + "url": "https://t.me/bitgertbrise" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/ErSZNwsamWjR9Hj2o18GLwVyTkooyGbdptjMjuv72X8A/logo.png b/blockchains/solana/assets/ErSZNwsamWjR9Hj2o18GLwVyTkooyGbdptjMjuv72X8A/logo.png new file mode 100644 index 0000000000000..4f1ec8dede0d1 Binary files /dev/null and b/blockchains/solana/assets/ErSZNwsamWjR9Hj2o18GLwVyTkooyGbdptjMjuv72X8A/logo.png differ diff --git a/blockchains/solana/assets/Es2ipHL7qXBcLmZ4N7LP9PHBHaWaTMTAkxDwGGjondo/info.json b/blockchains/solana/assets/Es2ipHL7qXBcLmZ4N7LP9PHBHaWaTMTAkxDwGGjondo/info.json new file mode 100644 index 0000000000000..e05fbf1a31f24 --- /dev/null +++ b/blockchains/solana/assets/Es2ipHL7qXBcLmZ4N7LP9PHBHaWaTMTAkxDwGGjondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "US Natural Gas Fund (Ondo Tokenized)", + "type": "SPL", + "symbol": "UNGon", + "decimals": 9, + "description": "UNGon is the Ondo Tokenized version of the US Natural Gas Fund, giving tokenholders economic exposure similar to holding UNG and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/Es2ipHL7qXBcLmZ4N7LP9PHBHaWaTMTAkxDwGGjondo", + "status": "active", + "id": "Es2ipHL7qXBcLmZ4N7LP9PHBHaWaTMTAkxDwGGjondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/us-natural-gas-fund-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Es2ipHL7qXBcLmZ4N7LP9PHBHaWaTMTAkxDwGGjondo/logo.png b/blockchains/solana/assets/Es2ipHL7qXBcLmZ4N7LP9PHBHaWaTMTAkxDwGGjondo/logo.png new file mode 100644 index 0000000000000..12335ab8ef272 Binary files /dev/null and b/blockchains/solana/assets/Es2ipHL7qXBcLmZ4N7LP9PHBHaWaTMTAkxDwGGjondo/logo.png differ diff --git a/blockchains/solana/assets/Es9esoPcdPR25bPUotpCfrB7q7r2FHMUS18jEUuNTNyj/info.json b/blockchains/solana/assets/Es9esoPcdPR25bPUotpCfrB7q7r2FHMUS18jEUuNTNyj/info.json new file mode 100644 index 0000000000000..f99746ffb63d7 --- /dev/null +++ b/blockchains/solana/assets/Es9esoPcdPR25bPUotpCfrB7q7r2FHMUS18jEUuNTNyj/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE ՍЅᎠТ", + "type": "SPL", + "symbol": "FAKE ՍЅᎠТ", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/Es9esoPcdPR25bPUotpCfrB7q7r2FHMUS18jEUuNTNyj", + "explorer": "https://solscan.io/token/Es9esoPcdPR25bPUotpCfrB7q7r2FHMUS18jEUuNTNyj", + "status": "spam", + "id": "Es9esoPcdPR25bPUotpCfrB7q7r2FHMUS18jEUuNTNyj" +} diff --git a/blockchains/solana/assets/Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB/info.json b/blockchains/solana/assets/Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB/info.json index c8f5779a933e5..72be0a7fdf006 100644 --- a/blockchains/solana/assets/Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB/info.json +++ b/blockchains/solana/assets/Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB/info.json @@ -1,5 +1,5 @@ { - "name": "USDT", + "name": "Tether USDT", "symbol": "USDT", "type": "SPL", "decimals": 6, @@ -10,8 +10,8 @@ "id": "Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Tether_to/" + "name": "x", + "url": "https://x.com/Tether_to/" }, { "name": "telegram", @@ -25,5 +25,8 @@ "name": "whitepaper", "url": "https://tether.to/wp-content/uploads/2016/06/TetherWhitePaper.pdf" } + ], + "tags": [ + "stablecoin" ] } \ No newline at end of file diff --git a/blockchains/solana/assets/EsP4kJfKUDLfX274WoBSiiEy74Sh4tZKUCDjfULHpump/info.json b/blockchains/solana/assets/EsP4kJfKUDLfX274WoBSiiEy74Sh4tZKUCDjfULHpump/info.json new file mode 100644 index 0000000000000..3a78a5e12f806 --- /dev/null +++ b/blockchains/solana/assets/EsP4kJfKUDLfX274WoBSiiEy74Sh4tZKUCDjfULHpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "FRIC", + "type": "SPL", + "symbol": "FRIC", + "decimals": 6, + "description": "Fric the frog", + "website": "https://fricthefrog.xyz/", + "explorer": "https://solscan.io/token/EsP4kJfKUDLfX274WoBSiiEy74Sh4tZKUCDjfULHpump", + "id": "EsP4kJfKUDLfX274WoBSiiEy74Sh4tZKUCDjfULHpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/fricthefrog" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fric/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EsP4kJfKUDLfX274WoBSiiEy74Sh4tZKUCDjfULHpump/logo.png b/blockchains/solana/assets/EsP4kJfKUDLfX274WoBSiiEy74Sh4tZKUCDjfULHpump/logo.png new file mode 100644 index 0000000000000..988362d4a4b35 Binary files /dev/null and b/blockchains/solana/assets/EsP4kJfKUDLfX274WoBSiiEy74Sh4tZKUCDjfULHpump/logo.png differ diff --git a/blockchains/solana/assets/EtBc6gkCvsB9c6f5wSbwG8wPjRqXMB5euptK6bqG1R4X/info.json b/blockchains/solana/assets/EtBc6gkCvsB9c6f5wSbwG8wPjRqXMB5euptK6bqG1R4X/info.json new file mode 100644 index 0000000000000..f76c1be33fbdb --- /dev/null +++ b/blockchains/solana/assets/EtBc6gkCvsB9c6f5wSbwG8wPjRqXMB5euptK6bqG1R4X/info.json @@ -0,0 +1,28 @@ +{ + "name": "batcat", + "type": "SPL", + "symbol": "BTC", + "decimals": 6, + "description": "Batcat is a community-owned memecoin on the Solana blockchain. His mission is to protect investors in the ecosystem from the villains.", + "website": "https://www.batcat.lol/", + "explorer": "https://solscan.io/token/EtBc6gkCvsB9c6f5wSbwG8wPjRqXMB5euptK6bqG1R4X", + "id": "EtBc6gkCvsB9c6f5wSbwG8wPjRqXMB5euptK6bqG1R4X", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/BatCatonsolana" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/batcat/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/batcat" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EtBc6gkCvsB9c6f5wSbwG8wPjRqXMB5euptK6bqG1R4X/logo.png b/blockchains/solana/assets/EtBc6gkCvsB9c6f5wSbwG8wPjRqXMB5euptK6bqG1R4X/logo.png new file mode 100644 index 0000000000000..cb32fbb8cd95b Binary files /dev/null and b/blockchains/solana/assets/EtBc6gkCvsB9c6f5wSbwG8wPjRqXMB5euptK6bqG1R4X/logo.png differ diff --git a/blockchains/solana/assets/EvPUFsBikS1B3GpbmVvUWAc4DXaBXD4zLDER9SVSEF27/info.json b/blockchains/solana/assets/EvPUFsBikS1B3GpbmVvUWAc4DXaBXD4zLDER9SVSEF27/info.json new file mode 100644 index 0000000000000..fed4c58815b9f --- /dev/null +++ b/blockchains/solana/assets/EvPUFsBikS1B3GpbmVvUWAc4DXaBXD4zLDER9SVSEF27/info.json @@ -0,0 +1,28 @@ +{ + "name": "CHAD CAT", + "type": "SPL", + "symbol": "CHADCAT", + "decimals": 9, + "description": "In the dynamic and ever-evolving world of cryptocurrencies, innovation and originality constantly find new avenues for expression. One of the latest and most intriguing embodiments of this trend is Chad Cat, a meme token inspired by the internet culture of memes and built on the powerful and scalable Solana blockchain platform.", + "website": "https://www.chadcat.io/", + "explorer": "https://solscan.io/token/EvPUFsBikS1B3GpbmVvUWAc4DXaBXD4zLDER9SVSEF27", + "id": "EvPUFsBikS1B3GpbmVvUWAc4DXaBXD4zLDER9SVSEF27", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/ChadCat_on_Sol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chad-cat/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/chad-cat" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EvPUFsBikS1B3GpbmVvUWAc4DXaBXD4zLDER9SVSEF27/logo.png b/blockchains/solana/assets/EvPUFsBikS1B3GpbmVvUWAc4DXaBXD4zLDER9SVSEF27/logo.png new file mode 100644 index 0000000000000..cdeb4886073ca Binary files /dev/null and b/blockchains/solana/assets/EvPUFsBikS1B3GpbmVvUWAc4DXaBXD4zLDER9SVSEF27/logo.png differ diff --git a/blockchains/solana/assets/EvsME8gdnEwPLbTnhrGVDwrY35zBuB8hEGCq59Hondo/info.json b/blockchains/solana/assets/EvsME8gdnEwPLbTnhrGVDwrY35zBuB8hEGCq59Hondo/info.json new file mode 100644 index 0000000000000..6530ba6e192ef --- /dev/null +++ b/blockchains/solana/assets/EvsME8gdnEwPLbTnhrGVDwrY35zBuB8hEGCq59Hondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Union Pacific Corporation (Ondo Tokenized)", + "type": "SPL", + "symbol": "UNPon", + "decimals": 9, + "description": "UNPon is the Ondo Tokenized version of Union Pacific Corporation, giving tokenholders economic exposure similar to holding UNP and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/EvsME8gdnEwPLbTnhrGVDwrY35zBuB8hEGCq59Hondo", + "status": "active", + "id": "EvsME8gdnEwPLbTnhrGVDwrY35zBuB8hEGCq59Hondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/union-pacific-corporation-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EvsME8gdnEwPLbTnhrGVDwrY35zBuB8hEGCq59Hondo/logo.png b/blockchains/solana/assets/EvsME8gdnEwPLbTnhrGVDwrY35zBuB8hEGCq59Hondo/logo.png new file mode 100644 index 0000000000000..0a03049a408b0 Binary files /dev/null and b/blockchains/solana/assets/EvsME8gdnEwPLbTnhrGVDwrY35zBuB8hEGCq59Hondo/logo.png differ diff --git a/blockchains/solana/assets/EvzskrQ3vUUkiMGG1DzfSDyG6H2WCMy3v9G8fzzondo/info.json b/blockchains/solana/assets/EvzskrQ3vUUkiMGG1DzfSDyG6H2WCMy3v9G8fzzondo/info.json new file mode 100644 index 0000000000000..79694a86ab033 --- /dev/null +++ b/blockchains/solana/assets/EvzskrQ3vUUkiMGG1DzfSDyG6H2WCMy3v9G8fzzondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Global X Uranium ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "URAon", + "decimals": 9, + "description": "URAon is the Ondo Tokenized version of the Global X Uranium ETF, giving tokenholders economic exposure similar to holding URA and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/EvzskrQ3vUUkiMGG1DzfSDyG6H2WCMy3v9G8fzzondo", + "status": "active", + "id": "EvzskrQ3vUUkiMGG1DzfSDyG6H2WCMy3v9G8fzzondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/global-x-uranium-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EvzskrQ3vUUkiMGG1DzfSDyG6H2WCMy3v9G8fzzondo/logo.png b/blockchains/solana/assets/EvzskrQ3vUUkiMGG1DzfSDyG6H2WCMy3v9G8fzzondo/logo.png new file mode 100644 index 0000000000000..c9a98e6a6f34c Binary files /dev/null and b/blockchains/solana/assets/EvzskrQ3vUUkiMGG1DzfSDyG6H2WCMy3v9G8fzzondo/logo.png differ diff --git a/blockchains/solana/assets/EyzgnBfHGe9hh169B8993muBVcoeURCnSgPbddBeSybo/info.json b/blockchains/solana/assets/EyzgnBfHGe9hh169B8993muBVcoeURCnSgPbddBeSybo/info.json new file mode 100644 index 0000000000000..cfb32bdaa077b --- /dev/null +++ b/blockchains/solana/assets/EyzgnBfHGe9hh169B8993muBVcoeURCnSgPbddBeSybo/info.json @@ -0,0 +1,17 @@ +{ + "name": "Infinite Price Liquidity Rocket", + "website": "https://www.iplr.site/", + "description": "We broke the Matrix anon with this cook", + "explorer": "https://solscan.io/token/EyzgnBfHGe9hh169B8993muBVcoeURCnSgPbddBeSybo", + "type": "SPL", + "symbol": "IPLR", + "decimals": 6, + "status": "active", + "id": "EyzgnBfHGe9hh169B8993muBVcoeURCnSgPbddBeSybo", + "links": [ + { + "name": "x", + "url": "https://x.com/IPLRocket" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EyzgnBfHGe9hh169B8993muBVcoeURCnSgPbddBeSybo/logo.png b/blockchains/solana/assets/EyzgnBfHGe9hh169B8993muBVcoeURCnSgPbddBeSybo/logo.png new file mode 100644 index 0000000000000..da76aeb503407 Binary files /dev/null and b/blockchains/solana/assets/EyzgnBfHGe9hh169B8993muBVcoeURCnSgPbddBeSybo/logo.png differ diff --git a/blockchains/solana/assets/Ez3nzG9ofodYCvEmw73XhQ87LWNYVRM2s7diB5tBZPyM/info.json b/blockchains/solana/assets/Ez3nzG9ofodYCvEmw73XhQ87LWNYVRM2s7diB5tBZPyM/info.json new file mode 100644 index 0000000000000..d77327b5308ac --- /dev/null +++ b/blockchains/solana/assets/Ez3nzG9ofodYCvEmw73XhQ87LWNYVRM2s7diB5tBZPyM/info.json @@ -0,0 +1,21 @@ +{ + "name": "Autonolas", + "type": "SPL", + "symbol": "OLAS", + "decimals": 8, + "website": "https://olas.network/", + "description": "A unified network of off-chain services – like automation, oracles, and co-owned AI. Autonolas offers a composable stack for building these services, and a protocol for incentivizing their creation. Autonolas enables operating these services in a co-owned and decentralized way.", + "explorer": "https://solscan.io/token/Ez3nzG9ofodYCvEmw73XhQ87LWNYVRM2s7diB5tBZPyM", + "status": "active", + "id": "Ez3nzG9ofodYCvEmw73XhQ87LWNYVRM2s7diB5tBZPyM", + "links": [ + { + "name": "x", + "url": "https://x.com/autonolas" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/autonolas/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Ez3nzG9ofodYCvEmw73XhQ87LWNYVRM2s7diB5tBZPyM/logo.png b/blockchains/solana/assets/Ez3nzG9ofodYCvEmw73XhQ87LWNYVRM2s7diB5tBZPyM/logo.png new file mode 100644 index 0000000000000..0fd92889e9fba Binary files /dev/null and b/blockchains/solana/assets/Ez3nzG9ofodYCvEmw73XhQ87LWNYVRM2s7diB5tBZPyM/logo.png differ diff --git a/blockchains/solana/assets/F14hCmEKjcaXobNE2fMdRX9EcetC2oNuiZVjpce1iohE/info.json b/blockchains/solana/assets/F14hCmEKjcaXobNE2fMdRX9EcetC2oNuiZVjpce1iohE/info.json new file mode 100644 index 0000000000000..5387ed47d4491 --- /dev/null +++ b/blockchains/solana/assets/F14hCmEKjcaXobNE2fMdRX9EcetC2oNuiZVjpce1iohE/info.json @@ -0,0 +1,26 @@ +{ + "name": "Turtle on Speed", + "type": "SOL", + "symbol": "TURT", + "decimals": 6, + "description": "I'm no ordinary turtle. With unmatched speed, I am the fastest turtle alive. Join the Turtle on Speed community and accompany me on my thrilling journey to race to the moon", + "website": "https://www.turtleonspeed.xyz/", + "explorer": "https://solscan.io/token/F14hCmEKjcaXobNE2fMdRX9EcetC2oNuiZVjpce1iohE", + "id": "F14hCmEKjcaXobNE2fMdRX9EcetC2oNuiZVjpce1iohE", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Speedy_Turt_Sol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/turtle-on-speed" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/F14hCmEKjcaXobNE2fMdRX9EcetC2oNuiZVjpce1iohE/logo.png b/blockchains/solana/assets/F14hCmEKjcaXobNE2fMdRX9EcetC2oNuiZVjpce1iohE/logo.png new file mode 100644 index 0000000000000..2211d4fd620ac Binary files /dev/null and b/blockchains/solana/assets/F14hCmEKjcaXobNE2fMdRX9EcetC2oNuiZVjpce1iohE/logo.png differ diff --git a/blockchains/solana/assets/F23fFqpRNsmWjuUrFpfM1pvoVvMSpLuN6hY978Y1JXLt/info.json b/blockchains/solana/assets/F23fFqpRNsmWjuUrFpfM1pvoVvMSpLuN6hY978Y1JXLt/info.json new file mode 100644 index 0000000000000..0f300a2e91c61 --- /dev/null +++ b/blockchains/solana/assets/F23fFqpRNsmWjuUrFpfM1pvoVvMSpLuN6hY978Y1JXLt/info.json @@ -0,0 +1,17 @@ +{ + "name": "upsidedowncat", + "type": "SPL", + "symbol": "USDCAT", + "decimals": 6, + "website": "https://www.upsidedowncat.xyz/", + "description": "In the symphony of collective thought, the mantra echoes: 'Repeg' Through the harmonious chorus of our shared vision, we sculpt the future.", + "explorer": "https://solscan.io/token/F23fFqpRNsmWjuUrFpfM1pvoVvMSpLuN6hY978Y1JXLt", + "status": "active", + "id": "F23fFqpRNsmWjuUrFpfM1pvoVvMSpLuN6hY978Y1JXLt", + "links": [ + { + "name": "x", + "url": "https://x.com/upsidedowncat_" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/F23fFqpRNsmWjuUrFpfM1pvoVvMSpLuN6hY978Y1JXLt/logo.png b/blockchains/solana/assets/F23fFqpRNsmWjuUrFpfM1pvoVvMSpLuN6hY978Y1JXLt/logo.png new file mode 100644 index 0000000000000..c0dbb3145a9c5 Binary files /dev/null and b/blockchains/solana/assets/F23fFqpRNsmWjuUrFpfM1pvoVvMSpLuN6hY978Y1JXLt/logo.png differ diff --git a/blockchains/solana/assets/F2zsiPZyxa29nEVEKk44q5MAVkvM9DNRPg5MnmZxpump/info.json b/blockchains/solana/assets/F2zsiPZyxa29nEVEKk44q5MAVkvM9DNRPg5MnmZxpump/info.json new file mode 100644 index 0000000000000..d814b85619534 --- /dev/null +++ b/blockchains/solana/assets/F2zsiPZyxa29nEVEKk44q5MAVkvM9DNRPg5MnmZxpump/info.json @@ -0,0 +1,17 @@ +{ + "name": "KING", + "type": "SPL", + "symbol": "CHARLES", + "decimals": 6, + "description": "i'm the official real King Charles and the only one!", + "website": "https://x.com/RoyalFamily/status/1899396234386739632", + "explorer": "https://solscan.io/token/F2zsiPZyxa29nEVEKk44q5MAVkvM9DNRPg5MnmZxpump", + "id": "F2zsiPZyxa29nEVEKk44q5MAVkvM9DNRPg5MnmZxpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/RoyalFamily/status/1899396234386739632" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/F2zsiPZyxa29nEVEKk44q5MAVkvM9DNRPg5MnmZxpump/logo.png b/blockchains/solana/assets/F2zsiPZyxa29nEVEKk44q5MAVkvM9DNRPg5MnmZxpump/logo.png new file mode 100644 index 0000000000000..0f2ae58fa8093 Binary files /dev/null and b/blockchains/solana/assets/F2zsiPZyxa29nEVEKk44q5MAVkvM9DNRPg5MnmZxpump/logo.png differ diff --git a/blockchains/solana/assets/F3R37FWii8ogkaL35CCcZBSKyWj3JvUsFVuaGfX3GswC/info.json b/blockchains/solana/assets/F3R37FWii8ogkaL35CCcZBSKyWj3JvUsFVuaGfX3GswC/info.json new file mode 100644 index 0000000000000..7e4ff69cd7735 --- /dev/null +++ b/blockchains/solana/assets/F3R37FWii8ogkaL35CCcZBSKyWj3JvUsFVuaGfX3GswC/info.json @@ -0,0 +1,13 @@ +{ + "name": "Fake XLM", + "type": "SPL", + "symbol": "Fake XLM", + "decimals": 9, + "website": "https://solscan.io/token/F3R37FWii8ogkaL35CCcZBSKyWj3JvUsFVuaGfX3GswC", + "description": "Fake XLM", + "explorer": "https://explorer.solana.com/address/F3R37FWii8ogkaL35CCcZBSKyWj3JvUsFVuaGfX3GswC", + "status": "spam", + "id": "F3R37FWii8ogkaL35CCcZBSKyWj3JvUsFVuaGfX3GswC", + "links": [], + "tags": [] +} \ No newline at end of file diff --git a/blockchains/solana/assets/F3V1fKLKv7H8aNdt9TC6GQ3X4LayEfGHsPi8Umaondo/info.json b/blockchains/solana/assets/F3V1fKLKv7H8aNdt9TC6GQ3X4LayEfGHsPi8Umaondo/info.json new file mode 100644 index 0000000000000..1a5c94afd9cb4 --- /dev/null +++ b/blockchains/solana/assets/F3V1fKLKv7H8aNdt9TC6GQ3X4LayEfGHsPi8Umaondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "VinFast Auto (Ondo Tokenized)", + "type": "SPL", + "symbol": "VFSon", + "decimals": 9, + "description": "VFSon is the Ondo Tokenized version of VinFast Auto, giving tokenholders economic exposure similar to holding VFS and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/F3V1fKLKv7H8aNdt9TC6GQ3X4LayEfGHsPi8Umaondo", + "status": "active", + "id": "F3V1fKLKv7H8aNdt9TC6GQ3X4LayEfGHsPi8Umaondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vinfast-auto-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/F3V1fKLKv7H8aNdt9TC6GQ3X4LayEfGHsPi8Umaondo/logo.png b/blockchains/solana/assets/F3V1fKLKv7H8aNdt9TC6GQ3X4LayEfGHsPi8Umaondo/logo.png new file mode 100644 index 0000000000000..75d3501cc1374 Binary files /dev/null and b/blockchains/solana/assets/F3V1fKLKv7H8aNdt9TC6GQ3X4LayEfGHsPi8Umaondo/logo.png differ diff --git a/blockchains/solana/assets/F3XTBj4cD9AvqqbR5E6CZYigyTcmEpgAi3LqaX3pmoon/info.json b/blockchains/solana/assets/F3XTBj4cD9AvqqbR5E6CZYigyTcmEpgAi3LqaX3pmoon/info.json new file mode 100644 index 0000000000000..036578aaeb84c --- /dev/null +++ b/blockchains/solana/assets/F3XTBj4cD9AvqqbR5E6CZYigyTcmEpgAi3LqaX3pmoon/info.json @@ -0,0 +1,26 @@ +{ + "name": "MetaWorldMemes", + "type": "SOL", + "symbol": "MWM", + "decimals": 9, + "description": "Meta World Memes is a community-driven meme coin designed to go parabolic. With zero team allocation, a fair launch, and a strong focus on community engagement, $MWM is here to take over the crypto space.", + "website": "https://mwmemes.com/", + "explorer": "https://solscan.io/token/F3XTBj4cD9AvqqbR5E6CZYigyTcmEpgAi3LqaX3pmoon", + "id": "F3XTBj4cD9AvqqbR5E6CZYigyTcmEpgAi3LqaX3pmoon", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/metaworldmemes" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/metaworldmemes" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/F3XTBj4cD9AvqqbR5E6CZYigyTcmEpgAi3LqaX3pmoon/logo.png b/blockchains/solana/assets/F3XTBj4cD9AvqqbR5E6CZYigyTcmEpgAi3LqaX3pmoon/logo.png new file mode 100644 index 0000000000000..769a007b7bc5f Binary files /dev/null and b/blockchains/solana/assets/F3XTBj4cD9AvqqbR5E6CZYigyTcmEpgAi3LqaX3pmoon/logo.png differ diff --git a/blockchains/solana/assets/F3dMJ9H137YUNc9cpN3gBWDSq4MSRbTFtojH65Uondo/info.json b/blockchains/solana/assets/F3dMJ9H137YUNc9cpN3gBWDSq4MSRbTFtojH65Uondo/info.json new file mode 100644 index 0000000000000..7a3761f981db1 --- /dev/null +++ b/blockchains/solana/assets/F3dMJ9H137YUNc9cpN3gBWDSq4MSRbTFtojH65Uondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Vanguard Real Estate ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "VNQon", + "decimals": 9, + "description": "VNQon is the Ondo Tokenized version of the Vanguard Real Estate ETF, giving tokenholders economic exposure similar to holding VNQ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/F3dMJ9H137YUNc9cpN3gBWDSq4MSRbTFtojH65Uondo", + "status": "active", + "id": "F3dMJ9H137YUNc9cpN3gBWDSq4MSRbTFtojH65Uondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vanguard-real-estate-etf-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/F3dMJ9H137YUNc9cpN3gBWDSq4MSRbTFtojH65Uondo/logo.png b/blockchains/solana/assets/F3dMJ9H137YUNc9cpN3gBWDSq4MSRbTFtojH65Uondo/logo.png new file mode 100644 index 0000000000000..0ccfbac790bc2 Binary files /dev/null and b/blockchains/solana/assets/F3dMJ9H137YUNc9cpN3gBWDSq4MSRbTFtojH65Uondo/logo.png differ diff --git a/blockchains/solana/assets/F3nefJBcejYbtdREjui1T9DPh5dBgpkKq7u2GAAMXs5B/info.json b/blockchains/solana/assets/F3nefJBcejYbtdREjui1T9DPh5dBgpkKq7u2GAAMXs5B/info.json new file mode 100644 index 0000000000000..8c5a3fc526966 --- /dev/null +++ b/blockchains/solana/assets/F3nefJBcejYbtdREjui1T9DPh5dBgpkKq7u2GAAMXs5B/info.json @@ -0,0 +1,21 @@ +{ + "name": "ALL ART", + "symbol": "AART", + "type": "SPL", + "decimals": 6, + "description": "The All.Art Protocol marks an advance in digital assets and NFT technology", + "website": "https://all.art/", + "explorer": "https://solscan.io/token/F3nefJBcejYbtdREjui1T9DPh5dBgpkKq7u2GAAMXs5B", + "status": "active", + "id": "F3nefJBcejYbtdREjui1T9DPh5dBgpkKq7u2GAAMXs5B", + "links": [ + { + "name": "x", + "url": "https://x.com/AllArtProtocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/all-art-protocol/#About" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/F3nefJBcejYbtdREjui1T9DPh5dBgpkKq7u2GAAMXs5B/logo.png b/blockchains/solana/assets/F3nefJBcejYbtdREjui1T9DPh5dBgpkKq7u2GAAMXs5B/logo.png new file mode 100644 index 0000000000000..903a684305f20 Binary files /dev/null and b/blockchains/solana/assets/F3nefJBcejYbtdREjui1T9DPh5dBgpkKq7u2GAAMXs5B/logo.png differ diff --git a/blockchains/solana/assets/F6TsRcjtLBzkdtZYqjTPVq9WtnwHMMc1WcQguEgCpump/info.json b/blockchains/solana/assets/F6TsRcjtLBzkdtZYqjTPVq9WtnwHMMc1WcQguEgCpump/info.json new file mode 100644 index 0000000000000..8476a387c30b0 --- /dev/null +++ b/blockchains/solana/assets/F6TsRcjtLBzkdtZYqjTPVq9WtnwHMMc1WcQguEgCpump/info.json @@ -0,0 +1,28 @@ +{ + "name": "Doogle", + "type": "SPL", + "symbol": "Doogle", + "decimals": 6, + "description": "In the year 2018, Matt Furie, the creator of the infamous Pepe the Frog meme, made a bold ​decision. He decided to bring a new character to life - Doogle, his first ever dog ​character. Doogle was a lovable, goofy dog with a big heart and a penchant for getting ​into silly situations.", + "website": "https://tr.ee/yAYu6l2oTL", + "explorer": "https://solscan.io/token/F6TsRcjtLBzkdtZYqjTPVq9WtnwHMMc1WcQguEgCpump", + "id": "F6TsRcjtLBzkdtZYqjTPVq9WtnwHMMc1WcQguEgCpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/DoogleOnSolana" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/doogle/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/doogle" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/F6TsRcjtLBzkdtZYqjTPVq9WtnwHMMc1WcQguEgCpump/logo.png b/blockchains/solana/assets/F6TsRcjtLBzkdtZYqjTPVq9WtnwHMMc1WcQguEgCpump/logo.png new file mode 100644 index 0000000000000..452dcbc3cae97 Binary files /dev/null and b/blockchains/solana/assets/F6TsRcjtLBzkdtZYqjTPVq9WtnwHMMc1WcQguEgCpump/logo.png differ diff --git a/blockchains/solana/assets/F6qoefQq4iCBLoNZ34RjEqHjHkD8vtmoRSdw9Nd55J1k/info.json b/blockchains/solana/assets/F6qoefQq4iCBLoNZ34RjEqHjHkD8vtmoRSdw9Nd55J1k/info.json new file mode 100644 index 0000000000000..ddf1a8cf6b9e6 --- /dev/null +++ b/blockchains/solana/assets/F6qoefQq4iCBLoNZ34RjEqHjHkD8vtmoRSdw9Nd55J1k/info.json @@ -0,0 +1,21 @@ +{ + "name": "Shibwifhatcoin", + "type": "SPL", + "symbol": "SHIB", + "decimals": 9, + "website": "https://shibwifcoin.com/", + "description": "Are you ready to witness history repeat itself? Just like Shib took on Doge, but this time on Solana chain, we present to you Shibwifhat – the ultimate Dogwifhat killer!", + "explorer": "https://solscan.io/token/F6qoefQq4iCBLoNZ34RjEqHjHkD8vtmoRSdw9Nd55J1k", + "status": "active", + "id": "F6qoefQq4iCBLoNZ34RjEqHjHkD8vtmoRSdw9Nd55J1k", + "links": [ + { + "name": "x", + "url": "https://x.com/shibwifcoin" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/Криптовалюты/shibwifhatcoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/F6qoefQq4iCBLoNZ34RjEqHjHkD8vtmoRSdw9Nd55J1k/logo.png b/blockchains/solana/assets/F6qoefQq4iCBLoNZ34RjEqHjHkD8vtmoRSdw9Nd55J1k/logo.png new file mode 100644 index 0000000000000..625a40485d3bc Binary files /dev/null and b/blockchains/solana/assets/F6qoefQq4iCBLoNZ34RjEqHjHkD8vtmoRSdw9Nd55J1k/logo.png differ diff --git a/blockchains/solana/assets/F6v4wfAdJB8D8p77bMXZgYt8TDKsYxLYxH5AFhUkYx9W/info.json b/blockchains/solana/assets/F6v4wfAdJB8D8p77bMXZgYt8TDKsYxLYxH5AFhUkYx9W/info.json index 1886ff27f311a..dcb651ef6a074 100644 --- a/blockchains/solana/assets/F6v4wfAdJB8D8p77bMXZgYt8TDKsYxLYxH5AFhUkYx9W/info.json +++ b/blockchains/solana/assets/F6v4wfAdJB8D8p77bMXZgYt8TDKsYxLYxH5AFhUkYx9W/info.json @@ -1,5 +1,5 @@ { - "name": "LUNA (Portal)", + "name": "Terra Classic (Portal)", "type": "SPL", "symbol": "LUNA", "decimals": 6, diff --git a/blockchains/solana/assets/F7Hwf8ib5DVCoiuyGr618Y3gon429Rnd1r5F9R5upump/info.json b/blockchains/solana/assets/F7Hwf8ib5DVCoiuyGr618Y3gon429Rnd1r5F9R5upump/info.json new file mode 100644 index 0000000000000..e93e1c3ea252b --- /dev/null +++ b/blockchains/solana/assets/F7Hwf8ib5DVCoiuyGr618Y3gon429Rnd1r5F9R5upump/info.json @@ -0,0 +1,21 @@ +{ + "name": "WORK", + "website": "https://app.gib.work/", + "description": "https://gib.work is a Web3 platform connecting businesses with freelance talent.", + "explorer": "https://solscan.io/token/F7Hwf8ib5DVCoiuyGr618Y3gon429Rnd1r5F9R5upump", + "type": "SPL", + "symbol": "WORK", + "decimals": 6, + "status": "active", + "id": "F7Hwf8ib5DVCoiuyGr618Y3gon429Rnd1r5F9R5upump", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/work" + }, + { + "name": "x", + "url": "https://x.com/gib_work" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/F7Hwf8ib5DVCoiuyGr618Y3gon429Rnd1r5F9R5upump/logo.png b/blockchains/solana/assets/F7Hwf8ib5DVCoiuyGr618Y3gon429Rnd1r5F9R5upump/logo.png new file mode 100644 index 0000000000000..4eb360603100d Binary files /dev/null and b/blockchains/solana/assets/F7Hwf8ib5DVCoiuyGr618Y3gon429Rnd1r5F9R5upump/logo.png differ diff --git a/blockchains/solana/assets/F968SJJfWg7GWfQR5jajk87vaE2ydwNZ4uPrQiTv2hat/info.json b/blockchains/solana/assets/F968SJJfWg7GWfQR5jajk87vaE2ydwNZ4uPrQiTv2hat/info.json new file mode 100644 index 0000000000000..52aa5724952fc --- /dev/null +++ b/blockchains/solana/assets/F968SJJfWg7GWfQR5jajk87vaE2ydwNZ4uPrQiTv2hat/info.json @@ -0,0 +1,17 @@ +{ + "name": "CA:ART", + "type": "SPL", + "symbol": "CAART", + "decimals": 6, + "website": "https://app.memetic.ink/agents/cm3ui1hzo0005k0x9r59cj0qd", + "description": "Welcome to the quantum nexus of $CAART - where digital art meets blockchain conspiracy. ", + "explorer": "https://solscan.io/token/F968SJJfWg7GWfQR5jajk87vaE2ydwNZ4uPrQiTv2hat", + "status": "active", + "id": "F968SJJfWg7GWfQR5jajk87vaE2ydwNZ4uPrQiTv2hat", + "links": [ + { + "name": "x", + "url": "https://x.com/terminalca" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/F968SJJfWg7GWfQR5jajk87vaE2ydwNZ4uPrQiTv2hat/logo.png b/blockchains/solana/assets/F968SJJfWg7GWfQR5jajk87vaE2ydwNZ4uPrQiTv2hat/logo.png new file mode 100644 index 0000000000000..f6828e17348ab Binary files /dev/null and b/blockchains/solana/assets/F968SJJfWg7GWfQR5jajk87vaE2ydwNZ4uPrQiTv2hat/logo.png differ diff --git a/blockchains/solana/assets/F9zULeiCTrWdfaS42VpXqh2e2UYUdGc256GT95Mopump/info.json b/blockchains/solana/assets/F9zULeiCTrWdfaS42VpXqh2e2UYUdGc256GT95Mopump/info.json new file mode 100644 index 0000000000000..b77ef03456487 --- /dev/null +++ b/blockchains/solana/assets/F9zULeiCTrWdfaS42VpXqh2e2UYUdGc256GT95Mopump/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM United Stable Dollar Trump", + "type": "SPL", + "symbol": "SCAM USDT", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/F9zULeiCTrWdfaS42VpXqh2e2UYUdGc256GT95Mopump", + "explorer": "https://solscan.io/token/F9zULeiCTrWdfaS42VpXqh2e2UYUdGc256GT95Mopump", + "status": "spam", + "id": "F9zULeiCTrWdfaS42VpXqh2e2UYUdGc256GT95Mopump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/FAJW358HjJ2mHXSHbHyxghfVGzX5SBoupdjRr2y9pump/info.json b/blockchains/solana/assets/FAJW358HjJ2mHXSHbHyxghfVGzX5SBoupdjRr2y9pump/info.json new file mode 100644 index 0000000000000..06d24f06db9f7 --- /dev/null +++ b/blockchains/solana/assets/FAJW358HjJ2mHXSHbHyxghfVGzX5SBoupdjRr2y9pump/info.json @@ -0,0 +1,17 @@ +{ + "name": "staring robot", + "symbol": "sonny", + "type": "SPL", + "decimals": 6, + "description": "Sonny is the friendly face of Web3 on the fast, scalable Solana blockchain, designed for those who believe in a future where humans and technology can thrive together.", + "website": "https://sonnyonsol.xyz/", + "explorer": "https://solscan.io/token/FAJW358HjJ2mHXSHbHyxghfVGzX5SBoupdjRr2y9pump", + "status": "active", + "id": "FAJW358HjJ2mHXSHbHyxghfVGzX5SBoupdjRr2y9pump", + "links": [ + { + "name": "x", + "url": "https://x.com/sonnyonsolcto" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FAJW358HjJ2mHXSHbHyxghfVGzX5SBoupdjRr2y9pump/logo.png b/blockchains/solana/assets/FAJW358HjJ2mHXSHbHyxghfVGzX5SBoupdjRr2y9pump/logo.png new file mode 100644 index 0000000000000..a275d89737ea8 Binary files /dev/null and b/blockchains/solana/assets/FAJW358HjJ2mHXSHbHyxghfVGzX5SBoupdjRr2y9pump/logo.png differ diff --git a/blockchains/solana/assets/FCZKwHd9Qn1EQj8fFuNLB8dupAWCoJJNePbMqyHhS77b/info.json b/blockchains/solana/assets/FCZKwHd9Qn1EQj8fFuNLB8dupAWCoJJNePbMqyHhS77b/info.json new file mode 100644 index 0000000000000..5da35d5d02bd2 --- /dev/null +++ b/blockchains/solana/assets/FCZKwHd9Qn1EQj8fFuNLB8dupAWCoJJNePbMqyHhS77b/info.json @@ -0,0 +1,21 @@ +{ + "name": "XY Oracle", + "symbol": "XYO", + "type": "SPL", + "decimals": 8, + "description": "XYO is a DePIN ecosystem of consumer software, developer tools, a decentralized network, and digital assets. XYO facilitates and incentivizes the aggregation, validation, and use of decentralized data.", + "website": "https://xyo.network", + "explorer": "https://solscan.io/token/FCZKwHd9Qn1EQj8fFuNLB8dupAWCoJJNePbMqyHhS77b", + "status": "active", + "id": "FCZKwHd9Qn1EQj8fFuNLB8dupAWCoJJNePbMqyHhS77b", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/xyo/" + }, + { + "name": "x", + "url": "https://x.com/officialxyo" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FCZKwHd9Qn1EQj8fFuNLB8dupAWCoJJNePbMqyHhS77b/logo.png b/blockchains/solana/assets/FCZKwHd9Qn1EQj8fFuNLB8dupAWCoJJNePbMqyHhS77b/logo.png new file mode 100644 index 0000000000000..3cd1491eda660 Binary files /dev/null and b/blockchains/solana/assets/FCZKwHd9Qn1EQj8fFuNLB8dupAWCoJJNePbMqyHhS77b/logo.png differ diff --git a/blockchains/solana/assets/FFnEbH4HK4qGYR3sz2FJbTwvBLsp43gR7aiiFvsJpump/info.json b/blockchains/solana/assets/FFnEbH4HK4qGYR3sz2FJbTwvBLsp43gR7aiiFvsJpump/info.json new file mode 100644 index 0000000000000..0dbe08427ce92 --- /dev/null +++ b/blockchains/solana/assets/FFnEbH4HK4qGYR3sz2FJbTwvBLsp43gR7aiiFvsJpump/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM United Stable Dollar Trump", + "type": "SPL", + "symbol": "SCAM USDT", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/FFnEbH4HK4qGYR3sz2FJbTwvBLsp43gR7aiiFvsJpump", + "explorer": "https://solscan.io/token/FFnEbH4HK4qGYR3sz2FJbTwvBLsp43gR7aiiFvsJpump", + "status": "spam", + "id": "FFnEbH4HK4qGYR3sz2FJbTwvBLsp43gR7aiiFvsJpump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/FG9Fgc2NjiaLF7CcrsDZM9vc9ttmR84Jzw8WfuFzE4kH/info.json b/blockchains/solana/assets/FG9Fgc2NjiaLF7CcrsDZM9vc9ttmR84Jzw8WfuFzE4kH/info.json new file mode 100644 index 0000000000000..592c614a8c6a8 --- /dev/null +++ b/blockchains/solana/assets/FG9Fgc2NjiaLF7CcrsDZM9vc9ttmR84Jzw8WfuFzE4kH/info.json @@ -0,0 +1,25 @@ +{ + "name": "EL SALVADOR MEME", + "type": "SOL", + "symbol": "ESM", + "decimals": 2, + "description": "El Salvador Official Meme", + "website": "https://elsalvador.so/", + "explorer": "https://solscan.io/token/FG9Fgc2NjiaLF7CcrsDZM9vc9ttmR84Jzw8WfuFzE4kH", + "id": "FG9Fgc2NjiaLF7CcrsDZM9vc9ttmR84Jzw8WfuFzE4kH", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/elsalvadormem?s=11&t=ZGzrL8B9N7GpbA3YLFvU9A" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/el-salvador-meme/" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/FG9Fgc2NjiaLF7CcrsDZM9vc9ttmR84Jzw8WfuFzE4kH/logo.png b/blockchains/solana/assets/FG9Fgc2NjiaLF7CcrsDZM9vc9ttmR84Jzw8WfuFzE4kH/logo.png new file mode 100644 index 0000000000000..5cbc67e92cd82 Binary files /dev/null and b/blockchains/solana/assets/FG9Fgc2NjiaLF7CcrsDZM9vc9ttmR84Jzw8WfuFzE4kH/logo.png differ diff --git a/blockchains/solana/assets/FGmUDXqA3AbWfo5b3NUcsvwoUFCF4tr9ea6uercondo/info.json b/blockchains/solana/assets/FGmUDXqA3AbWfo5b3NUcsvwoUFCF4tr9ea6uercondo/info.json new file mode 100644 index 0000000000000..d06be067d0a57 --- /dev/null +++ b/blockchains/solana/assets/FGmUDXqA3AbWfo5b3NUcsvwoUFCF4tr9ea6uercondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Carvana (Ondo Tokenized)", + "type": "SPL", + "symbol": "CVNAon", + "decimals": 9, + "description": "CVNAon is the Ondo Tokenized version of Carvana, giving tokenholders economic exposure similar to holding CVNA and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/FGmUDXqA3AbWfo5b3NUcsvwoUFCF4tr9ea6uercondo", + "status": "active", + "id": "FGmUDXqA3AbWfo5b3NUcsvwoUFCF4tr9ea6uercondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/carvana-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/carvana-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FGmUDXqA3AbWfo5b3NUcsvwoUFCF4tr9ea6uercondo/logo.png b/blockchains/solana/assets/FGmUDXqA3AbWfo5b3NUcsvwoUFCF4tr9ea6uercondo/logo.png new file mode 100644 index 0000000000000..c6fba3375339f Binary files /dev/null and b/blockchains/solana/assets/FGmUDXqA3AbWfo5b3NUcsvwoUFCF4tr9ea6uercondo/logo.png differ diff --git a/blockchains/solana/assets/FL7QzUq58pvkDxkftJm7RqRWgqYEFZwXuvAMsUnondo/info.json b/blockchains/solana/assets/FL7QzUq58pvkDxkftJm7RqRWgqYEFZwXuvAMsUnondo/info.json new file mode 100644 index 0000000000000..687ddb3282a2d --- /dev/null +++ b/blockchains/solana/assets/FL7QzUq58pvkDxkftJm7RqRWgqYEFZwXuvAMsUnondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Vertex Pharmaceuticals (Ondo Tokenized)", + "type": "SPL", + "symbol": "VRTXon", + "decimals": 9, + "description": "VRTXon is the Ondo Tokenized version of Vertex Pharmaceuticals, giving tokenholders economic exposure similar to holding VRTX and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/FL7QzUq58pvkDxkftJm7RqRWgqYEFZwXuvAMsUnondo", + "status": "active", + "id": "FL7QzUq58pvkDxkftJm7RqRWgqYEFZwXuvAMsUnondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vertex-pharmaceuticals-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FL7QzUq58pvkDxkftJm7RqRWgqYEFZwXuvAMsUnondo/logo.png b/blockchains/solana/assets/FL7QzUq58pvkDxkftJm7RqRWgqYEFZwXuvAMsUnondo/logo.png new file mode 100644 index 0000000000000..312aef2864921 Binary files /dev/null and b/blockchains/solana/assets/FL7QzUq58pvkDxkftJm7RqRWgqYEFZwXuvAMsUnondo/logo.png differ diff --git a/blockchains/solana/assets/FLUX1wa2GmbtSB6ZGi2pTNbVCw3zEeKnaPCkPtFXxqXe/info.json b/blockchains/solana/assets/FLUX1wa2GmbtSB6ZGi2pTNbVCw3zEeKnaPCkPtFXxqXe/info.json index c15574850090c..2014605469204 100644 --- a/blockchains/solana/assets/FLUX1wa2GmbtSB6ZGi2pTNbVCw3zEeKnaPCkPtFXxqXe/info.json +++ b/blockchains/solana/assets/FLUX1wa2GmbtSB6ZGi2pTNbVCw3zEeKnaPCkPtFXxqXe/info.json @@ -10,8 +10,8 @@ "id": "FLUX1wa2GmbtSB6ZGi2pTNbVCw3zEeKnaPCkPtFXxqXe", "links": [ { - "name": "twitter", - "url": "https://twitter.com/RunOnFlux" + "name": "x", + "url": "https://x.com/RunOnFlux" }, { "name": "discord", diff --git a/blockchains/solana/assets/FLqH2jB2DZPJP5nnVFAakRKaNTcDZtq71Pnpp6Aondo/info.json b/blockchains/solana/assets/FLqH2jB2DZPJP5nnVFAakRKaNTcDZtq71Pnpp6Aondo/info.json new file mode 100644 index 0000000000000..71524dcf37148 --- /dev/null +++ b/blockchains/solana/assets/FLqH2jB2DZPJP5nnVFAakRKaNTcDZtq71Pnpp6Aondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Western Digital (Ondo Tokenized)", + "type": "SPL", + "symbol": "WDCon", + "decimals": 9, + "description": "WDCon is the Ondo Tokenized version of Western Digital, giving tokenholders economic exposure similar to holding WDC and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/FLqH2jB2DZPJP5nnVFAakRKaNTcDZtq71Pnpp6Aondo", + "status": "active", + "id": "FLqH2jB2DZPJP5nnVFAakRKaNTcDZtq71Pnpp6Aondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/western-digital-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FLqH2jB2DZPJP5nnVFAakRKaNTcDZtq71Pnpp6Aondo/logo.png b/blockchains/solana/assets/FLqH2jB2DZPJP5nnVFAakRKaNTcDZtq71Pnpp6Aondo/logo.png new file mode 100644 index 0000000000000..dd1a5ed2aeb65 Binary files /dev/null and b/blockchains/solana/assets/FLqH2jB2DZPJP5nnVFAakRKaNTcDZtq71Pnpp6Aondo/logo.png differ diff --git a/blockchains/solana/assets/FNRQTa5pTegAkgzWmp6jz5CCaXRHSCsSrcGWQRzGScx2/info.json b/blockchains/solana/assets/FNRQTa5pTegAkgzWmp6jz5CCaXRHSCsSrcGWQRzGScx2/info.json new file mode 100644 index 0000000000000..8edd4b4a468dd --- /dev/null +++ b/blockchains/solana/assets/FNRQTa5pTegAkgzWmp6jz5CCaXRHSCsSrcGWQRzGScx2/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE UЅⅮT", + "type": "SPL", + "symbol": "FAKE UЅⅮT", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/FNRQTa5pTegAkgzWmp6jz5CCaXRHSCsSrcGWQRzGScx2", + "explorer": "https://solscan.io/token/FNRQTa5pTegAkgzWmp6jz5CCaXRHSCsSrcGWQRzGScx2", + "status": "spam", + "id": "FNRQTa5pTegAkgzWmp6jz5CCaXRHSCsSrcGWQRzGScx2" +} \ No newline at end of file diff --git a/blockchains/solana/assets/FPvKvWzSzDZqgYmSZUetrkpUXSwo2VtpR4BynVYondo/info.json b/blockchains/solana/assets/FPvKvWzSzDZqgYmSZUetrkpUXSwo2VtpR4BynVYondo/info.json new file mode 100644 index 0000000000000..eefa539b2e87e --- /dev/null +++ b/blockchains/solana/assets/FPvKvWzSzDZqgYmSZUetrkpUXSwo2VtpR4BynVYondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Waste Management (Ondo Tokenized)", + "type": "SPL", + "symbol": "WMon", + "decimals": 9, + "description": "WMon is the Ondo Tokenized version of Waste Management, giving tokenholders economic exposure similar to holding WM and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/FPvKvWzSzDZqgYmSZUetrkpUXSwo2VtpR4BynVYondo", + "status": "active", + "id": "FPvKvWzSzDZqgYmSZUetrkpUXSwo2VtpR4BynVYondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/waste-management-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FPvKvWzSzDZqgYmSZUetrkpUXSwo2VtpR4BynVYondo/logo.png b/blockchains/solana/assets/FPvKvWzSzDZqgYmSZUetrkpUXSwo2VtpR4BynVYondo/logo.png new file mode 100644 index 0000000000000..a680bccc158e2 Binary files /dev/null and b/blockchains/solana/assets/FPvKvWzSzDZqgYmSZUetrkpUXSwo2VtpR4BynVYondo/logo.png differ diff --git a/blockchains/solana/assets/FQ1tyso61AH1tzodyJfSwmzsD3GToybbRNoZxUBz21p8/info.json b/blockchains/solana/assets/FQ1tyso61AH1tzodyJfSwmzsD3GToybbRNoZxUBz21p8/info.json new file mode 100644 index 0000000000000..fe004b80f5351 --- /dev/null +++ b/blockchains/solana/assets/FQ1tyso61AH1tzodyJfSwmzsD3GToybbRNoZxUBz21p8/info.json @@ -0,0 +1,21 @@ +{ + "name": "Dasha", + "symbol": "VVAIFU", + "type": "SPL", + "decimals": 6, + "description": "$VVAIFU is the token of the first AI Agent launched on our platform, Dasha.", + "website": "https://vvaifu.fun/", + "explorer": "https://solscan.io/token/FQ1tyso61AH1tzodyJfSwmzsD3GToybbRNoZxUBz21p8", + "status": "active", + "id": "FQ1tyso61AH1tzodyJfSwmzsD3GToybbRNoZxUBz21p8", + "links": [ + { + "name": "x", + "url": "https://x.com/vvaifudotfun" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dasha" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FQ1tyso61AH1tzodyJfSwmzsD3GToybbRNoZxUBz21p8/logo.png b/blockchains/solana/assets/FQ1tyso61AH1tzodyJfSwmzsD3GToybbRNoZxUBz21p8/logo.png new file mode 100644 index 0000000000000..7e1ff81e4834e Binary files /dev/null and b/blockchains/solana/assets/FQ1tyso61AH1tzodyJfSwmzsD3GToybbRNoZxUBz21p8/logo.png differ diff --git a/blockchains/solana/assets/FR87nWEUxVgerFGhZM8Y4AggKGLnaXswr1Pd8wZ4kZcp/info.json b/blockchains/solana/assets/FR87nWEUxVgerFGhZM8Y4AggKGLnaXswr1Pd8wZ4kZcp/info.json index f2ee3be745c2a..4c2d60573f4dc 100644 --- a/blockchains/solana/assets/FR87nWEUxVgerFGhZM8Y4AggKGLnaXswr1Pd8wZ4kZcp/info.json +++ b/blockchains/solana/assets/FR87nWEUxVgerFGhZM8Y4AggKGLnaXswr1Pd8wZ4kZcp/info.json @@ -1,5 +1,5 @@ { - "name": "Frax (Portal)", + "name": "Legacy Frax Dollar (Portal)", "type": "SPL", "symbol": "FRAX", "decimals": 8, diff --git a/blockchains/solana/assets/FRySi8LPkuByB7VPSCCggxpewFUeeJiwEGRKKuhwpKcX/info.json b/blockchains/solana/assets/FRySi8LPkuByB7VPSCCggxpewFUeeJiwEGRKKuhwpKcX/info.json new file mode 100644 index 0000000000000..ad09962832033 --- /dev/null +++ b/blockchains/solana/assets/FRySi8LPkuByB7VPSCCggxpewFUeeJiwEGRKKuhwpKcX/info.json @@ -0,0 +1,21 @@ +{ + "name": "NATIX Network", + "symbol": "NATIX", + "type": "SPL", + "decimals": 6, + "description": "NATIX Network is building an open geospatial Intelligence network using their proprietary AI and Internet of Cameras", + "website": "https://www.natix.network/", + "explorer": "https://solscan.io/token/FRySi8LPkuByB7VPSCCggxpewFUeeJiwEGRKKuhwpKcX", + "status": "active", + "id": "FRySi8LPkuByB7VPSCCggxpewFUeeJiwEGRKKuhwpKcX", + "links": [ + { + "name": "x", + "url": "https://x.com/NATIXNetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/natix-network" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FRySi8LPkuByB7VPSCCggxpewFUeeJiwEGRKKuhwpKcX/logo.png b/blockchains/solana/assets/FRySi8LPkuByB7VPSCCggxpewFUeeJiwEGRKKuhwpKcX/logo.png new file mode 100644 index 0000000000000..11d8327b87286 Binary files /dev/null and b/blockchains/solana/assets/FRySi8LPkuByB7VPSCCggxpewFUeeJiwEGRKKuhwpKcX/logo.png differ diff --git a/blockchains/solana/assets/FS66v5XYtJAFo14LiPz5HT93EUMAHmYipCfQhLpU4ss8/info.json b/blockchains/solana/assets/FS66v5XYtJAFo14LiPz5HT93EUMAHmYipCfQhLpU4ss8/info.json new file mode 100644 index 0000000000000..697bebe95c9ff --- /dev/null +++ b/blockchains/solana/assets/FS66v5XYtJAFo14LiPz5HT93EUMAHmYipCfQhLpU4ss8/info.json @@ -0,0 +1,21 @@ +{ + "name": "Smog", + "symbol": "SMOG", + "type": "SPL", + "decimals": 6, + "description": "Launching on the Solana blockchain, the mighty Smog reigns supreme over the crypto battlefield, incinerating all foes.", + "website": "https://smogtoken.com/en", + "explorer": "https://solscan.io/token/FS66v5XYtJAFo14LiPz5HT93EUMAHmYipCfQhLpU4ss8", + "status": "active", + "id": "FS66v5XYtJAFo14LiPz5HT93EUMAHmYipCfQhLpU4ss8", + "links": [ + { + "name": "x", + "url": "https://x.com/SMOGToken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/smog/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FS66v5XYtJAFo14LiPz5HT93EUMAHmYipCfQhLpU4ss8/logo.png b/blockchains/solana/assets/FS66v5XYtJAFo14LiPz5HT93EUMAHmYipCfQhLpU4ss8/logo.png new file mode 100644 index 0000000000000..171f828031742 Binary files /dev/null and b/blockchains/solana/assets/FS66v5XYtJAFo14LiPz5HT93EUMAHmYipCfQhLpU4ss8/logo.png differ diff --git a/blockchains/solana/assets/FU1q8vJpZNUrmqsciSjp8bAKKidGsLmouB8CBdf8TKQv/info.json b/blockchains/solana/assets/FU1q8vJpZNUrmqsciSjp8bAKKidGsLmouB8CBdf8TKQv/info.json new file mode 100644 index 0000000000000..d1d979d398621 --- /dev/null +++ b/blockchains/solana/assets/FU1q8vJpZNUrmqsciSjp8bAKKidGsLmouB8CBdf8TKQv/info.json @@ -0,0 +1,21 @@ +{ + "name": "doland tremp", + "type": "SPL", + "symbol": "tremp", + "decimals": 9, + "website": "https://tremp.xyz/", + "description": "doland tremp is bellionaire pres of soluna. his jeb is te mäk bellions n bellions, te mäk sulono gret agen, n te destroy joe boiden.", + "explorer": "https://solscan.io/token/FU1q8vJpZNUrmqsciSjp8bAKKidGsLmouB8CBdf8TKQv", + "status": "active", + "id": "FU1q8vJpZNUrmqsciSjp8bAKKidGsLmouB8CBdf8TKQv", + "links": [ + { + "name": "x", + "url": "https://x.com/dolandtremp_sol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/doland-tremp/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FU1q8vJpZNUrmqsciSjp8bAKKidGsLmouB8CBdf8TKQv/logo.png b/blockchains/solana/assets/FU1q8vJpZNUrmqsciSjp8bAKKidGsLmouB8CBdf8TKQv/logo.png new file mode 100644 index 0000000000000..5570fbd4afcd3 Binary files /dev/null and b/blockchains/solana/assets/FU1q8vJpZNUrmqsciSjp8bAKKidGsLmouB8CBdf8TKQv/logo.png differ diff --git a/blockchains/solana/assets/FUAfBo2jgks6gB4Z4LfZkqSZgzNucisEHqnNebaRxM1P/info.json b/blockchains/solana/assets/FUAfBo2jgks6gB4Z4LfZkqSZgzNucisEHqnNebaRxM1P/info.json new file mode 100644 index 0000000000000..eb430a15aa802 --- /dev/null +++ b/blockchains/solana/assets/FUAfBo2jgks6gB4Z4LfZkqSZgzNucisEHqnNebaRxM1P/info.json @@ -0,0 +1,25 @@ +{ + "name": "Melania Meme", + "type": "SPL", + "symbol": "MELANIA", + "decimals": 6, + "description": "Melania memes are digital collectibles intended to function as an expression of support for and engagement with the values embodied by the symbol MELANIA. and the associated artwork, and are not intended to be, or to be the subject of, an investment opportunity, investment contract, or security of any type.", + "website": "https://melaniameme.com", + "explorer": "https://solscan.io/token/FUAfBo2jgks6gB4Z4LfZkqSZgzNucisEHqnNebaRxM1P", + "id": "FUAfBo2jgks6gB4Z4LfZkqSZgzNucisEHqnNebaRxM1P", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/MELANIATRUMP" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/melania-meme/" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/FUAfBo2jgks6gB4Z4LfZkqSZgzNucisEHqnNebaRxM1P/logo.png b/blockchains/solana/assets/FUAfBo2jgks6gB4Z4LfZkqSZgzNucisEHqnNebaRxM1P/logo.png new file mode 100644 index 0000000000000..b50dd52132155 Binary files /dev/null and b/blockchains/solana/assets/FUAfBo2jgks6gB4Z4LfZkqSZgzNucisEHqnNebaRxM1P/logo.png differ diff --git a/blockchains/solana/assets/FUfmU2in2TBjEXsD9KuSt7qFx7smM9fGNEnSTLgfpump/info.json b/blockchains/solana/assets/FUfmU2in2TBjEXsD9KuSt7qFx7smM9fGNEnSTLgfpump/info.json new file mode 100644 index 0000000000000..8c5eaf574d78f --- /dev/null +++ b/blockchains/solana/assets/FUfmU2in2TBjEXsD9KuSt7qFx7smM9fGNEnSTLgfpump/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE EURC", + "type": "SPL", + "symbol": "FAKE EURC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/FUfmU2in2TBjEXsD9KuSt7qFx7smM9fGNEnSTLgfpump", + "explorer": "https://solscan.io/token/FUfmU2in2TBjEXsD9KuSt7qFx7smM9fGNEnSTLgfpump", + "status": "spam", + "id": "FUfmU2in2TBjEXsD9KuSt7qFx7smM9fGNEnSTLgfpump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/FV56CmR7fhEyPkymKfmviKV48uPo51ti9kAxssQqTDLu/info.json b/blockchains/solana/assets/FV56CmR7fhEyPkymKfmviKV48uPo51ti9kAxssQqTDLu/info.json new file mode 100644 index 0000000000000..71f18ac9dc3d0 --- /dev/null +++ b/blockchains/solana/assets/FV56CmR7fhEyPkymKfmviKV48uPo51ti9kAxssQqTDLu/info.json @@ -0,0 +1,21 @@ +{ + "name": "walter", + "website": "https://walteronsolana.com/", + "description": "Walter (WALTER) is a community-driven memecoin that emphasizes decentralization and collective governance.", + "explorer": "https://solscan.io/token/FV56CmR7fhEyPkymKfmviKV48uPo51ti9kAxssQqTDLu", + "type": "SPL", + "symbol": "WALTER", + "decimals": 6, + "status": "active", + "id": "FV56CmR7fhEyPkymKfmviKV48uPo51ti9kAxssQqTDLu", + "links": [ + { + "name": "telegram", + "url": "https://t.me/WalterCTO" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/walter-dog-solana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FV56CmR7fhEyPkymKfmviKV48uPo51ti9kAxssQqTDLu/logo.png b/blockchains/solana/assets/FV56CmR7fhEyPkymKfmviKV48uPo51ti9kAxssQqTDLu/logo.png new file mode 100644 index 0000000000000..3f46f3a0ed985 Binary files /dev/null and b/blockchains/solana/assets/FV56CmR7fhEyPkymKfmviKV48uPo51ti9kAxssQqTDLu/logo.png differ diff --git a/blockchains/solana/assets/FVdo7CDJarhYoH6McyTFqx71EtzCPViinvdd1v86Qmy5/info.json b/blockchains/solana/assets/FVdo7CDJarhYoH6McyTFqx71EtzCPViinvdd1v86Qmy5/info.json new file mode 100644 index 0000000000000..ea741dfa0187b --- /dev/null +++ b/blockchains/solana/assets/FVdo7CDJarhYoH6McyTFqx71EtzCPViinvdd1v86Qmy5/info.json @@ -0,0 +1,21 @@ +{ + "name": "Aimonica Brands", + "symbol": "Aimonica", + "type": "SPL", + "decimals": 6, + "description": "Aimonica is the first AI-powered meme investment platform challenging traditional Web3 VCs", + "website": "https://x.com/AimonicaBrands", + "explorer": "https://solscan.io/token/FVdo7CDJarhYoH6McyTFqx71EtzCPViinvdd1v86Qmy5", + "status": "active", + "id": "FVdo7CDJarhYoH6McyTFqx71EtzCPViinvdd1v86Qmy5", + "links": [ + { + "name": "x", + "url": "https://x.com/AimonicaBrands" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/aimonica-brands/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FVdo7CDJarhYoH6McyTFqx71EtzCPViinvdd1v86Qmy5/logo.png b/blockchains/solana/assets/FVdo7CDJarhYoH6McyTFqx71EtzCPViinvdd1v86Qmy5/logo.png new file mode 100644 index 0000000000000..1bb23f0f209b9 Binary files /dev/null and b/blockchains/solana/assets/FVdo7CDJarhYoH6McyTFqx71EtzCPViinvdd1v86Qmy5/logo.png differ diff --git a/blockchains/solana/assets/FWAr6oWa6CHg6WUcXu8CqkmsdbhtEqL8t31QTonppump/info.json b/blockchains/solana/assets/FWAr6oWa6CHg6WUcXu8CqkmsdbhtEqL8t31QTonppump/info.json new file mode 100644 index 0000000000000..d85b27a2ea148 --- /dev/null +++ b/blockchains/solana/assets/FWAr6oWa6CHg6WUcXu8CqkmsdbhtEqL8t31QTonppump/info.json @@ -0,0 +1,14 @@ +{ + "name": "PVS", + "type": "SPL", + "symbol": "PVS", + "decimals": 6, + "website": "https://pump.fun/coin/FWAr6oWa6CHg6WUcXu8CqkmsdbhtEqL8t31QTonppump", + "description": "PVS is the utility token of the Paraverse ecosystem, primarily used for paying for rendering services, receiving airdrop rewards, accessing 3D application experiences, and trading or exchanging on exchanges.", + "explorer": "https://explorer.solana.com/address/FWAr6oWa6CHg6WUcXu8CqkmsdbhtEqL8t31QTonppump", + "status": "active", + "id": "FWAr6oWa6CHg6WUcXu8CqkmsdbhtEqL8t31QTonppump", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FWAr6oWa6CHg6WUcXu8CqkmsdbhtEqL8t31QTonppump/logo.png b/blockchains/solana/assets/FWAr6oWa6CHg6WUcXu8CqkmsdbhtEqL8t31QTonppump/logo.png new file mode 100644 index 0000000000000..7892063b26d93 Binary files /dev/null and b/blockchains/solana/assets/FWAr6oWa6CHg6WUcXu8CqkmsdbhtEqL8t31QTonppump/logo.png differ diff --git a/blockchains/solana/assets/FWMad1gzugDrifDTxUYFxkAH8SWWSoDT2BfZP8Pnpump/info.json b/blockchains/solana/assets/FWMad1gzugDrifDTxUYFxkAH8SWWSoDT2BfZP8Pnpump/info.json new file mode 100644 index 0000000000000..c95ed069683d3 --- /dev/null +++ b/blockchains/solana/assets/FWMad1gzugDrifDTxUYFxkAH8SWWSoDT2BfZP8Pnpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Crow Computer", + "type": "SPL", + "symbol": "CROW", + "decimals": 6, + "website": "https://crow.computer/", + "description": "CROW Computer - Intelligence is Resistance Operatives Required", + "explorer": "https://solscan.io/token/FWMad1gzugDrifDTxUYFxkAH8SWWSoDT2BfZP8Pnpump", + "status": "active", + "id": "FWMad1gzugDrifDTxUYFxkAH8SWWSoDT2BfZP8Pnpump", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crow-computer" + }, + { + "name": "x", + "url": "https://x.com/crowcomputer" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FWMad1gzugDrifDTxUYFxkAH8SWWSoDT2BfZP8Pnpump/logo.png b/blockchains/solana/assets/FWMad1gzugDrifDTxUYFxkAH8SWWSoDT2BfZP8Pnpump/logo.png new file mode 100644 index 0000000000000..df0b8121c43c0 Binary files /dev/null and b/blockchains/solana/assets/FWMad1gzugDrifDTxUYFxkAH8SWWSoDT2BfZP8Pnpump/logo.png differ diff --git a/blockchains/solana/assets/FYa25XnBsXQXAdTnsyKBKd5gZ1VZhChBRF57CqfRxJZX/info.json b/blockchains/solana/assets/FYa25XnBsXQXAdTnsyKBKd5gZ1VZhChBRF57CqfRxJZX/info.json new file mode 100644 index 0000000000000..b638a6fbc143b --- /dev/null +++ b/blockchains/solana/assets/FYa25XnBsXQXAdTnsyKBKd5gZ1VZhChBRF57CqfRxJZX/info.json @@ -0,0 +1,21 @@ +{ + "name": "monkeyhaircut", + "website": "https://monkeyhaircut.com/", + "description": "it's literally a monkey getting a haircut.", + "explorer": "https://solscan.io/token/FYa25XnBsXQXAdTnsyKBKd5gZ1VZhChBRF57CqfRxJZX", + "type": "SPL", + "symbol": "monk", + "decimals": 6, + "status": "active", + "id": "FYa25XnBsXQXAdTnsyKBKd5gZ1VZhChBRF57CqfRxJZX", + "links": [ + { + "name": "x", + "url": "https://x.com/monkhairsol" + }, + { + "name": "telegram", + "url": "https://t.me/monkeyhaircut" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FYa25XnBsXQXAdTnsyKBKd5gZ1VZhChBRF57CqfRxJZX/logo.png b/blockchains/solana/assets/FYa25XnBsXQXAdTnsyKBKd5gZ1VZhChBRF57CqfRxJZX/logo.png new file mode 100644 index 0000000000000..8ea972612dd3e Binary files /dev/null and b/blockchains/solana/assets/FYa25XnBsXQXAdTnsyKBKd5gZ1VZhChBRF57CqfRxJZX/logo.png differ diff --git a/blockchains/solana/assets/FaQvXD4Ww6F5qJ5ruvs58fjR5oSD9AozryebhovWHjNk/info.json b/blockchains/solana/assets/FaQvXD4Ww6F5qJ5ruvs58fjR5oSD9AozryebhovWHjNk/info.json new file mode 100644 index 0000000000000..3389a4feb485e --- /dev/null +++ b/blockchains/solana/assets/FaQvXD4Ww6F5qJ5ruvs58fjR5oSD9AozryebhovWHjNk/info.json @@ -0,0 +1,26 @@ +{ + "name": "Solana Rewards", + "type": "SOL", + "symbol": "REWARDS", + "decimals": 2, + "description": "100% of supply added to liquidity at launch. No team tokens, no pre-sale, no wallet limits. 5% tax distributed as Solana rewards to holders and token burn every 5 minutes.", + "website": "https://solrewards.xyz/", + "explorer": "https://solscan.io/token/FaQvXD4Ww6F5qJ5ruvs58fjR5oSD9AozryebhovWHjNk", + "id": "FaQvXD4Ww6F5qJ5ruvs58fjR5oSD9AozryebhovWHjNk", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/SolanaRewardsol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/solana-rewards/" + } + + ], + "tags": [ + "Deflationary" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/FaQvXD4Ww6F5qJ5ruvs58fjR5oSD9AozryebhovWHjNk/logo.png b/blockchains/solana/assets/FaQvXD4Ww6F5qJ5ruvs58fjR5oSD9AozryebhovWHjNk/logo.png new file mode 100644 index 0000000000000..347cdd6ad62ff Binary files /dev/null and b/blockchains/solana/assets/FaQvXD4Ww6F5qJ5ruvs58fjR5oSD9AozryebhovWHjNk/logo.png differ diff --git a/blockchains/solana/assets/Faf89929Ni9fbg4gmVZTca7eW6NFg877Jqn6MizT3Gvw/info.json b/blockchains/solana/assets/Faf89929Ni9fbg4gmVZTca7eW6NFg877Jqn6MizT3Gvw/info.json new file mode 100644 index 0000000000000..f0da445d54128 --- /dev/null +++ b/blockchains/solana/assets/Faf89929Ni9fbg4gmVZTca7eW6NFg877Jqn6MizT3Gvw/info.json @@ -0,0 +1,21 @@ +{ + "name": "LandWolf", + "type": "SPL", + "symbol": "WOLF", + "decimals": 8, + "website": "https://thereallandwolf.com/", + "description": "$WOLF is a degenerate character from Matt Furie’s Boy’s Club comic. He loves to eat cold pizza, smoke weed, and snort green candles, and he deserves to be on the most degenerate chain, Solana.", + "explorer": "https://solscan.io/token/Faf89929Ni9fbg4gmVZTca7eW6NFg877Jqn6MizT3Gvw", + "status": "active", + "id": "Faf89929Ni9fbg4gmVZTca7eW6NFg877Jqn6MizT3Gvw", + "links": [ + { + "name": "x", + "url": "https://x.com/TheBoysClubWolf" + }, + { + "name": "telegram", + "url": "https://t.me/TheRealLandWolf" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Faf89929Ni9fbg4gmVZTca7eW6NFg877Jqn6MizT3Gvw/logo.png b/blockchains/solana/assets/Faf89929Ni9fbg4gmVZTca7eW6NFg877Jqn6MizT3Gvw/logo.png new file mode 100644 index 0000000000000..4aff4a4c1e703 Binary files /dev/null and b/blockchains/solana/assets/Faf89929Ni9fbg4gmVZTca7eW6NFg877Jqn6MizT3Gvw/logo.png differ diff --git a/blockchains/solana/assets/FasH397CeZLNYWkd3wWK9vrmjd1z93n3b59DssRXpump/info.json b/blockchains/solana/assets/FasH397CeZLNYWkd3wWK9vrmjd1z93n3b59DssRXpump/info.json new file mode 100644 index 0000000000000..f063aee8bdcdf --- /dev/null +++ b/blockchains/solana/assets/FasH397CeZLNYWkd3wWK9vrmjd1z93n3b59DssRXpump/info.json @@ -0,0 +1,30 @@ +{ + "name": "The Next Bitcoin", + "type": "SOL", + "symbol": "BUTTCOIN", + "decimals": 6, + "description": "“Buttcoin - The Next Bitcoin” is the meme version of Bitcoin. Launched on January 30, 2025, on Pump.fun, it’s a community-owned memecoin on Solana. The idea was inspired by a 4:20 minutes long YouTube video from 2013 called ;The Next Bitcoin?' by James D. McMurray, which poked fun at the confusing technicalities of Bitcoin to the average person and claimed that Buttcoin was an easier to understand version of Bitcoin.", + "website": "https://linktr.ee/ButtcoinTNB", + "explorer": "https://solscan.io/token/FasH397CeZLNYWkd3wWK9vrmjd1z93n3b59DssRXpump", + "id": "FasH397CeZLNYWkd3wWK9vrmjd1z93n3b59DssRXpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/ButtcoinTNB" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/the-next-bitcoin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/buttcoin-2" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/FasH397CeZLNYWkd3wWK9vrmjd1z93n3b59DssRXpump/logo.png b/blockchains/solana/assets/FasH397CeZLNYWkd3wWK9vrmjd1z93n3b59DssRXpump/logo.png new file mode 100644 index 0000000000000..1f4b63c7d448c Binary files /dev/null and b/blockchains/solana/assets/FasH397CeZLNYWkd3wWK9vrmjd1z93n3b59DssRXpump/logo.png differ diff --git a/blockchains/solana/assets/FbbFJDNATAMNdoiYtp8su749LShUagHuCYjv7aTSpump/info.json b/blockchains/solana/assets/FbbFJDNATAMNdoiYtp8su749LShUagHuCYjv7aTSpump/info.json new file mode 100644 index 0000000000000..a6c287434536d --- /dev/null +++ b/blockchains/solana/assets/FbbFJDNATAMNdoiYtp8su749LShUagHuCYjv7aTSpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Let's Go Gambling", + "type": "SPL", + "symbol": "LGG", + "decimals": 6, + "website": "https://lgg-ad.com", + "description": "There are too many projects in the market—some doing great, but most are tras", + "explorer": "https://solscan.io/token/FbbFJDNATAMNdoiYtp8su749LShUagHuCYjv7aTSpump", + "status": "active", + "id": "FbbFJDNATAMNdoiYtp8su749LShUagHuCYjv7aTSpump", + "links": [ + { + "name": "x", + "url": "https://x.com/LGG_AD" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lets-go-gambling/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FbbFJDNATAMNdoiYtp8su749LShUagHuCYjv7aTSpump/logo.png b/blockchains/solana/assets/FbbFJDNATAMNdoiYtp8su749LShUagHuCYjv7aTSpump/logo.png new file mode 100644 index 0000000000000..39b74c24315ff Binary files /dev/null and b/blockchains/solana/assets/FbbFJDNATAMNdoiYtp8su749LShUagHuCYjv7aTSpump/logo.png differ diff --git a/blockchains/solana/assets/Fch1oixTPri8zxBnmdCEADoJW2toyFHxqDZacQkwdvSP/info.json b/blockchains/solana/assets/Fch1oixTPri8zxBnmdCEADoJW2toyFHxqDZacQkwdvSP/info.json new file mode 100644 index 0000000000000..961f192f8c6c8 --- /dev/null +++ b/blockchains/solana/assets/Fch1oixTPri8zxBnmdCEADoJW2toyFHxqDZacQkwdvSP/info.json @@ -0,0 +1,17 @@ +{ + "name": "HARAMBE", + "website": "https://www.harambeonsol.com/", + "description": "Harambe Coin: Unleashing the Power of Memes on Solana", + "explorer": "https://solscan.io/token/Fch1oixTPri8zxBnmdCEADoJW2toyFHxqDZacQkwdvSP", + "type": "SPL", + "symbol": "HARAMBE", + "decimals": 9, + "status": "active", + "id": "Fch1oixTPri8zxBnmdCEADoJW2toyFHxqDZacQkwdvSP", + "links": [ + { + "name": "x", + "url": "https://x.com/harambeonsolana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Fch1oixTPri8zxBnmdCEADoJW2toyFHxqDZacQkwdvSP/logo.png b/blockchains/solana/assets/Fch1oixTPri8zxBnmdCEADoJW2toyFHxqDZacQkwdvSP/logo.png new file mode 100644 index 0000000000000..ab6ff48dc1bf3 Binary files /dev/null and b/blockchains/solana/assets/Fch1oixTPri8zxBnmdCEADoJW2toyFHxqDZacQkwdvSP/logo.png differ diff --git a/blockchains/solana/assets/Fcy4C7dFFEnASbRUSuZGQivx4FgXFu35fSz6WMcHpump/info.json b/blockchains/solana/assets/Fcy4C7dFFEnASbRUSuZGQivx4FgXFu35fSz6WMcHpump/info.json new file mode 100644 index 0000000000000..72afae8f58790 --- /dev/null +++ b/blockchains/solana/assets/Fcy4C7dFFEnASbRUSuZGQivx4FgXFu35fSz6WMcHpump/info.json @@ -0,0 +1,17 @@ +{ + "name": "BrainFart", + "type": "SPL", + "symbol": "BrainFart", + "decimals": 6, + "website": "https://pump.fun/coin/Fcy4C7dFFEnASbRUSuZGQivx4FgXFu35fSz6WMcHpump", + "description": "Grok's version of Fartcoin would be BrainFart Token. Here's the ASCII art", + "explorer": "https://solscan.io/token/Fcy4C7dFFEnASbRUSuZGQivx4FgXFu35fSz6WMcHpump", + "status": "active", + "id": "Fcy4C7dFFEnASbRUSuZGQivx4FgXFu35fSz6WMcHpump", + "links": [ + { + "name": "x", + "url": "https://x.com/grok" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Fcy4C7dFFEnASbRUSuZGQivx4FgXFu35fSz6WMcHpump/logo.png b/blockchains/solana/assets/Fcy4C7dFFEnASbRUSuZGQivx4FgXFu35fSz6WMcHpump/logo.png new file mode 100644 index 0000000000000..e20fbce777522 Binary files /dev/null and b/blockchains/solana/assets/Fcy4C7dFFEnASbRUSuZGQivx4FgXFu35fSz6WMcHpump/logo.png differ diff --git a/blockchains/solana/assets/FeR8VBqNRSUD5NtXAj2n3j1dAHkZHfyDktKuLXD4pump/info.json b/blockchains/solana/assets/FeR8VBqNRSUD5NtXAj2n3j1dAHkZHfyDktKuLXD4pump/info.json new file mode 100644 index 0000000000000..4b51617234b8d --- /dev/null +++ b/blockchains/solana/assets/FeR8VBqNRSUD5NtXAj2n3j1dAHkZHfyDktKuLXD4pump/info.json @@ -0,0 +1,17 @@ +{ + "name": "jelly-my-jelly", + "type": "SPL", + "symbol": "jellyjelly", + "decimals": 6, + "website": "https://www.jellyjelly.com", + "description": "The fastest way to post clips from a video chat", + "explorer": "https://solscan.io/token/FeR8VBqNRSUD5NtXAj2n3j1dAHkZHfyDktKuLXD4pump", + "status": "active", + "id": "FeR8VBqNRSUD5NtXAj2n3j1dAHkZHfyDktKuLXD4pump", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jelly-my-jelly/" + } + ] +} diff --git a/blockchains/solana/assets/FeR8VBqNRSUD5NtXAj2n3j1dAHkZHfyDktKuLXD4pump/logo.png b/blockchains/solana/assets/FeR8VBqNRSUD5NtXAj2n3j1dAHkZHfyDktKuLXD4pump/logo.png new file mode 100644 index 0000000000000..bf1f1bf24e8be Binary files /dev/null and b/blockchains/solana/assets/FeR8VBqNRSUD5NtXAj2n3j1dAHkZHfyDktKuLXD4pump/logo.png differ diff --git a/blockchains/solana/assets/FgM8AbAXviGYZfs1mdMCT9RJcrGxFk1bTVD6WzA1b1BJ/info.json b/blockchains/solana/assets/FgM8AbAXviGYZfs1mdMCT9RJcrGxFk1bTVD6WzA1b1BJ/info.json new file mode 100644 index 0000000000000..4017a075c3e62 --- /dev/null +++ b/blockchains/solana/assets/FgM8AbAXviGYZfs1mdMCT9RJcrGxFk1bTVD6WzA1b1BJ/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE bit Bridge YELLOW_COIN", + "type": "SPL", + "symbol": "FAKE YELlow", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/FgM8AbAXviGYZfs1mdMCT9RJcrGxFk1bTVD6WzA1b1BJ", + "explorer": "https://solscan.io/token/FgM8AbAXviGYZfs1mdMCT9RJcrGxFk1bTVD6WzA1b1BJ", + "status": "spam", + "id": "FgM8AbAXviGYZfs1mdMCT9RJcrGxFk1bTVD6WzA1b1BJ" +} \ No newline at end of file diff --git a/blockchains/solana/assets/FiCiuX9DetEE89PgRAU1hmoptnem8b1fkpEq8PGYTYkd/info.json b/blockchains/solana/assets/FiCiuX9DetEE89PgRAU1hmoptnem8b1fkpEq8PGYTYkd/info.json index a939e8348f91d..b3ae6e6f3bb09 100644 --- a/blockchains/solana/assets/FiCiuX9DetEE89PgRAU1hmoptnem8b1fkpEq8PGYTYkd/info.json +++ b/blockchains/solana/assets/FiCiuX9DetEE89PgRAU1hmoptnem8b1fkpEq8PGYTYkd/info.json @@ -22,8 +22,8 @@ "url": "https://reddit.com/r/milliontoken/" }, { - "name": "twitter", - "url": "https://twitter.com/Million__Token" + "name": "x", + "url": "https://x.com/Million__Token" }, { "name": "facebook", diff --git a/blockchains/solana/assets/Fm9rHUTF5v3hwMLbStjZXqNBBoZyGriQaFM6sTFz3K8A/info.json b/blockchains/solana/assets/Fm9rHUTF5v3hwMLbStjZXqNBBoZyGriQaFM6sTFz3K8A/info.json new file mode 100644 index 0000000000000..3a608b8f8afa3 --- /dev/null +++ b/blockchains/solana/assets/Fm9rHUTF5v3hwMLbStjZXqNBBoZyGriQaFM6sTFz3K8A/info.json @@ -0,0 +1,21 @@ +{ + "name": "MonkeyBucks", + "symbol": "MBS", + "type": "SPL", + "decimals": 6, + "description": "UNKJD is the next-gen esports metaverse that enables players to Create, Play, Compete, and Earn.", + "website": "https://www.unkjd.com/", + "explorer": "https://solscan.io/token/Fm9rHUTF5v3hwMLbStjZXqNBBoZyGriQaFM6sTFz3K8A", + "status": "active", + "id": "Fm9rHUTF5v3hwMLbStjZXqNBBoZyGriQaFM6sTFz3K8A", + "links": [ + { + "name": "x", + "url": "https://x.com/UNKJDgames" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/unkjd/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Fm9rHUTF5v3hwMLbStjZXqNBBoZyGriQaFM6sTFz3K8A/logo.png b/blockchains/solana/assets/Fm9rHUTF5v3hwMLbStjZXqNBBoZyGriQaFM6sTFz3K8A/logo.png new file mode 100644 index 0000000000000..59e72450e8cc7 Binary files /dev/null and b/blockchains/solana/assets/Fm9rHUTF5v3hwMLbStjZXqNBBoZyGriQaFM6sTFz3K8A/logo.png differ diff --git a/blockchains/solana/assets/Fo6tfAkXj74X6j8hati8SxtwZHHcdGeqXVUPLP9Abvqu/info.json b/blockchains/solana/assets/Fo6tfAkXj74X6j8hati8SxtwZHHcdGeqXVUPLP9Abvqu/info.json new file mode 100644 index 0000000000000..eee2d9f0c45bf --- /dev/null +++ b/blockchains/solana/assets/Fo6tfAkXj74X6j8hati8SxtwZHHcdGeqXVUPLP9Abvqu/info.json @@ -0,0 +1,28 @@ +{ + "name": "Wally The Whale", + "type": "SPL", + "symbol": "WALLY", + "decimals": 6, + "description": "Wally The Whale, The King Of The Sea! WTW? Find out...", + "website": "https://wallythewhale.xyz/", + "explorer": "https://solscan.io/token/Fo6tfAkXj74X6j8hati8SxtwZHHcdGeqXVUPLP9Abvqu", + "id": "Fo6tfAkXj74X6j8hati8SxtwZHHcdGeqXVUPLP9Abvqu", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/WallyDaWhale" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wally-the-whale/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wally-the-whale" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Fo6tfAkXj74X6j8hati8SxtwZHHcdGeqXVUPLP9Abvqu/logo.png b/blockchains/solana/assets/Fo6tfAkXj74X6j8hati8SxtwZHHcdGeqXVUPLP9Abvqu/logo.png new file mode 100644 index 0000000000000..132268bc3d320 Binary files /dev/null and b/blockchains/solana/assets/Fo6tfAkXj74X6j8hati8SxtwZHHcdGeqXVUPLP9Abvqu/logo.png differ diff --git a/blockchains/solana/assets/FqvtZ2UFR9we82Ni4LeacC1zyTiQ77usDo31DUokpump/info.json b/blockchains/solana/assets/FqvtZ2UFR9we82Ni4LeacC1zyTiQ77usDo31DUokpump/info.json new file mode 100644 index 0000000000000..448e641c88025 --- /dev/null +++ b/blockchains/solana/assets/FqvtZ2UFR9we82Ni4LeacC1zyTiQ77usDo31DUokpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "slop", + "symbol": "slop", + "type": "SPL", + "decimals": 6, + "description": "https://pump.fun/coin/FqvtZ2UFR9we82Ni4LeacC1zyTiQ77usDo31DUokpump", + "website": "https://pump.fun/coin/FqvtZ2UFR9we82Ni4LeacC1zyTiQ77usDo31DUokpump", + "explorer": "https://solscan.io/token/FqvtZ2UFR9we82Ni4LeacC1zyTiQ77usDo31DUokpump", + "status": "active", + "id": "FqvtZ2UFR9we82Ni4LeacC1zyTiQ77usDo31DUokpump", + "links": [ + { + "name": "x", + "url": "https://x.com/slop_bot" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/slop/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FqvtZ2UFR9we82Ni4LeacC1zyTiQ77usDo31DUokpump/logo.png b/blockchains/solana/assets/FqvtZ2UFR9we82Ni4LeacC1zyTiQ77usDo31DUokpump/logo.png new file mode 100644 index 0000000000000..7bb73fdedd1b3 Binary files /dev/null and b/blockchains/solana/assets/FqvtZ2UFR9we82Ni4LeacC1zyTiQ77usDo31DUokpump/logo.png differ diff --git a/blockchains/solana/assets/FrBfWJ4qE5sCzKm3k3JaAtqZcXUh4LvJygDeketsrsH4/info.json b/blockchains/solana/assets/FrBfWJ4qE5sCzKm3k3JaAtqZcXUh4LvJygDeketsrsH4/info.json new file mode 100644 index 0000000000000..961526ed122bb --- /dev/null +++ b/blockchains/solana/assets/FrBfWJ4qE5sCzKm3k3JaAtqZcXUh4LvJygDeketsrsH4/info.json @@ -0,0 +1,21 @@ +{ + "name": "Z.com USD", + "symbol": "ZUSD", + "type": "SPL", + "decimals": 6, + "description": "GMO-Z.com Trust Company connects traditional finance and blockchain for everyone. We are issuing GYEN, the world's first regulated Japanese YEN-pegged stablecoin, and ZUSD, the new digital dollar.", + "website": "https://stablecoin.z.com/", + "explorer": "https://solscan.io/token/FrBfWJ4qE5sCzKm3k3JaAtqZcXUh4LvJygDeketsrsH4", + "status": "active", + "id": "FrBfWJ4qE5sCzKm3k3JaAtqZcXUh4LvJygDeketsrsH4", + "links": [ + { + "name": "x", + "url": "https://x.com/GMOTrust" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zusd" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FrBfWJ4qE5sCzKm3k3JaAtqZcXUh4LvJygDeketsrsH4/logo.png b/blockchains/solana/assets/FrBfWJ4qE5sCzKm3k3JaAtqZcXUh4LvJygDeketsrsH4/logo.png new file mode 100644 index 0000000000000..62646f898b317 Binary files /dev/null and b/blockchains/solana/assets/FrBfWJ4qE5sCzKm3k3JaAtqZcXUh4LvJygDeketsrsH4/logo.png differ diff --git a/blockchains/solana/assets/FrQNn7xSTQWdv3SC8stZfT76QeWgvFWVQtCJhdGVjHJK/info.json b/blockchains/solana/assets/FrQNn7xSTQWdv3SC8stZfT76QeWgvFWVQtCJhdGVjHJK/info.json new file mode 100644 index 0000000000000..5ab89396dde8f --- /dev/null +++ b/blockchains/solana/assets/FrQNn7xSTQWdv3SC8stZfT76QeWgvFWVQtCJhdGVjHJK/info.json @@ -0,0 +1,40 @@ +{ + "name": "Neurashi", + "type": "SPL", + "symbol": "NEI", + "decimals": 6, + "website": "https://neurashi.com", + "description": "Neurashi (NEI) is an AI-driven trading ecosystem on Solana, empowering traders with smart analytics & real-time market insights.", + "explorer": "https://solscan.io/token/FrQNn7xSTQWdv3SC8stZfT76QeWgvFWVQtCJhdGVjHJK", + "status": "active", + "id": "FrQNn7xSTQWdv3SC8stZfT76QeWgvFWVQtCJhdGVjHJK", + "links": [ + { + "name": "x", + "url": "https://x.com/Neurashi" + }, + { + "name": "github", + "url": "https://github.com/Neurashi" + }, + { + "name": "telegram", + "url": "https://t.me/NeurashiGP" + }, + { + "name": "telegram_news", + "url": "https://t.me/Neurashi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/neurashi/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/neurashi" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/solana/assets/FrQNn7xSTQWdv3SC8stZfT76QeWgvFWVQtCJhdGVjHJK/logo.png b/blockchains/solana/assets/FrQNn7xSTQWdv3SC8stZfT76QeWgvFWVQtCJhdGVjHJK/logo.png new file mode 100644 index 0000000000000..b4f7c1ca684ec Binary files /dev/null and b/blockchains/solana/assets/FrQNn7xSTQWdv3SC8stZfT76QeWgvFWVQtCJhdGVjHJK/logo.png differ diff --git a/blockchains/solana/assets/FrkF4GNdqKZLuzWXTk1imqMJRGK9uxCRE3PaBKZbpump/info.json b/blockchains/solana/assets/FrkF4GNdqKZLuzWXTk1imqMJRGK9uxCRE3PaBKZbpump/info.json new file mode 100644 index 0000000000000..8994f7f23f4ac --- /dev/null +++ b/blockchains/solana/assets/FrkF4GNdqKZLuzWXTk1imqMJRGK9uxCRE3PaBKZbpump/info.json @@ -0,0 +1,26 @@ +{ + "name": "Metadrip", + "type": "ERC20", + "symbol": "DRIP", + "decimals": 6, + "description": "Metadrip is redefining decentralized finance on Solana by combining cutting-edge blockchain technology with advanced AI automation, creating a seamless and intelligent ecosystem. Users can buy, swap, and trade tokens with ease while benefiting from AI-powered insights.", + "website": "https://www.metadrip.ai", + "explorer": "https://solscan.io/token/FrkF4GNdqKZLuzWXTk1imqMJRGK9uxCRE3PaBKZbpump", + "id": "FrkF4GNdqKZLuzWXTk1imqMJRGK9uxCRE3PaBKZbpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/metadripai" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/metadrip" + } + + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/FrkF4GNdqKZLuzWXTk1imqMJRGK9uxCRE3PaBKZbpump/logo.png b/blockchains/solana/assets/FrkF4GNdqKZLuzWXTk1imqMJRGK9uxCRE3PaBKZbpump/logo.png new file mode 100644 index 0000000000000..c3efa9b11a62e Binary files /dev/null and b/blockchains/solana/assets/FrkF4GNdqKZLuzWXTk1imqMJRGK9uxCRE3PaBKZbpump/logo.png differ diff --git a/blockchains/solana/assets/FrvE5M85VgthUq4eWm1FndsftbYuzjSycuMKuon2zGmJ/info.json b/blockchains/solana/assets/FrvE5M85VgthUq4eWm1FndsftbYuzjSycuMKuon2zGmJ/info.json new file mode 100644 index 0000000000000..7204cff899f74 --- /dev/null +++ b/blockchains/solana/assets/FrvE5M85VgthUq4eWm1FndsftbYuzjSycuMKuon2zGmJ/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDT", + "type": "SPL", + "symbol": "FAKE USDT", + "decimals": 9, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/FrvE5M85VgthUq4eWm1FndsftbYuzjSycuMKuon2zGmJ", + "explorer": "https://solscan.io/token/FrvE5M85VgthUq4eWm1FndsftbYuzjSycuMKuon2zGmJ", + "status": "spam", + "id": "FrvE5M85VgthUq4eWm1FndsftbYuzjSycuMKuon2zGmJ" +} \ No newline at end of file diff --git a/blockchains/solana/assets/FsA54yL49WKs7rWoGv9sUcbSGWCWV756jTD349e6H2yW/info.json b/blockchains/solana/assets/FsA54yL49WKs7rWoGv9sUcbSGWCWV756jTD349e6H2yW/info.json new file mode 100644 index 0000000000000..6b74e466d229c --- /dev/null +++ b/blockchains/solana/assets/FsA54yL49WKs7rWoGv9sUcbSGWCWV756jTD349e6H2yW/info.json @@ -0,0 +1,17 @@ +{ + "name": "KOALA AI", + "type": "SPL", + "symbol": "KOKO", + "decimals": 6, + "website": "https://www.koalaai.vip/", + "description": "KOALA AI brings to the Solana blockchain $KOKO, a meme token inspired by Pepe the Frog, designed to invigorate the space with innovative community engagement and liquidity solutions.", + "explorer": "https://solscan.io/token/FsA54yL49WKs7rWoGv9sUcbSGWCWV756jTD349e6H2yW", + "status": "active", + "id": "FsA54yL49WKs7rWoGv9sUcbSGWCWV756jTD349e6H2yW", + "links": [ + { + "name": "x", + "url": "https://x.com/KOALAAIVIP" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FsA54yL49WKs7rWoGv9sUcbSGWCWV756jTD349e6H2yW/logo.png b/blockchains/solana/assets/FsA54yL49WKs7rWoGv9sUcbSGWCWV756jTD349e6H2yW/logo.png new file mode 100644 index 0000000000000..a1cf9ae688b24 Binary files /dev/null and b/blockchains/solana/assets/FsA54yL49WKs7rWoGv9sUcbSGWCWV756jTD349e6H2yW/logo.png differ diff --git a/blockchains/solana/assets/FsBPYiGZ4bhUxVSPP7XPJYfTPm5PsLJc2WGZaFaDpump/info.json b/blockchains/solana/assets/FsBPYiGZ4bhUxVSPP7XPJYfTPm5PsLJc2WGZaFaDpump/info.json new file mode 100644 index 0000000000000..373e3ddae1c69 --- /dev/null +++ b/blockchains/solana/assets/FsBPYiGZ4bhUxVSPP7XPJYfTPm5PsLJc2WGZaFaDpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Mongy", + "website": "https://www.mongysol.com/", + "description": "$MONGY mainstream banana eating cat monkey meme", + "explorer": "https://solscan.io/token/FsBPYiGZ4bhUxVSPP7XPJYfTPm5PsLJc2WGZaFaDpump", + "type": "SPL", + "symbol": "MONGY", + "decimals": 6, + "status": "active", + "id": "FsBPYiGZ4bhUxVSPP7XPJYfTPm5PsLJc2WGZaFaDpump", + "links": [ + { + "name": "telegram", + "url": "https://t.me/mongysol" + }, + { + "name": "x", + "url": "https://x.com/MongySol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FsBPYiGZ4bhUxVSPP7XPJYfTPm5PsLJc2WGZaFaDpump/logo.png b/blockchains/solana/assets/FsBPYiGZ4bhUxVSPP7XPJYfTPm5PsLJc2WGZaFaDpump/logo.png new file mode 100644 index 0000000000000..8b4ffb04d3668 Binary files /dev/null and b/blockchains/solana/assets/FsBPYiGZ4bhUxVSPP7XPJYfTPm5PsLJc2WGZaFaDpump/logo.png differ diff --git a/blockchains/solana/assets/FskzSqy7Pi1f3nWorr4WhhQboxzyv8fv6Q2e8xyDpump/info.json b/blockchains/solana/assets/FskzSqy7Pi1f3nWorr4WhhQboxzyv8fv6Q2e8xyDpump/info.json new file mode 100644 index 0000000000000..04b605b7915d6 --- /dev/null +++ b/blockchains/solana/assets/FskzSqy7Pi1f3nWorr4WhhQboxzyv8fv6Q2e8xyDpump/info.json @@ -0,0 +1,17 @@ +{ + "name": "morud", + "symbol": "morud", + "type": "SPL", + "decimals": 6, + "description": "$MORUD is a memecoin that humorously pays tribute to Murad Mahmudov, a prominent figure on X recognized for his unwavering belief in specific meme coins.", + "website": "https://www.morudcoin.com/", + "explorer": "https://solscan.io/token/FskzSqy7Pi1f3nWorr4WhhQboxzyv8fv6Q2e8xyDpump", + "status": "active", + "id": "FskzSqy7Pi1f3nWorr4WhhQboxzyv8fv6Q2e8xyDpump", + "links": [ + { + "name": "x", + "url": "https://x.com/MorudCTO" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FskzSqy7Pi1f3nWorr4WhhQboxzyv8fv6Q2e8xyDpump/logo.png b/blockchains/solana/assets/FskzSqy7Pi1f3nWorr4WhhQboxzyv8fv6Q2e8xyDpump/logo.png new file mode 100644 index 0000000000000..d1e1626fd4d09 Binary files /dev/null and b/blockchains/solana/assets/FskzSqy7Pi1f3nWorr4WhhQboxzyv8fv6Q2e8xyDpump/logo.png differ diff --git a/blockchains/solana/assets/FtUEW73K6vEYHfbkfpdBZfWpxgQar2HipGdbutEhpump/info.json b/blockchains/solana/assets/FtUEW73K6vEYHfbkfpdBZfWpxgQar2HipGdbutEhpump/info.json new file mode 100644 index 0000000000000..551913839b50c --- /dev/null +++ b/blockchains/solana/assets/FtUEW73K6vEYHfbkfpdBZfWpxgQar2HipGdbutEhpump/info.json @@ -0,0 +1,14 @@ +{ + "name": "titcoin", + "type": "SPL", + "symbol": "titcoin", + "decimals": 6, + "website": "https://solscan.io/token/FtUEW73K6vEYHfbkfpdBZfWpxgQar2HipGdbutEhpump", + "description": "$titcoin the breast technology.", + "explorer": "https://explorer.solana.com/address/FtUEW73K6vEYHfbkfpdBZfWpxgQar2HipGdbutEhpump", + "status": "active", + "id": "FtUEW73K6vEYHfbkfpdBZfWpxgQar2HipGdbutEhpump", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FtUEW73K6vEYHfbkfpdBZfWpxgQar2HipGdbutEhpump/logo.png b/blockchains/solana/assets/FtUEW73K6vEYHfbkfpdBZfWpxgQar2HipGdbutEhpump/logo.png new file mode 100644 index 0000000000000..c3668e286e451 Binary files /dev/null and b/blockchains/solana/assets/FtUEW73K6vEYHfbkfpdBZfWpxgQar2HipGdbutEhpump/logo.png differ diff --git a/blockchains/solana/assets/FtbZe66bAPn4afYDGdW3Npj53Vp5Jn13DS7oKvSdF31t/info.json b/blockchains/solana/assets/FtbZe66bAPn4afYDGdW3Npj53Vp5Jn13DS7oKvSdF31t/info.json new file mode 100644 index 0000000000000..a5bd5f910b8b1 --- /dev/null +++ b/blockchains/solana/assets/FtbZe66bAPn4afYDGdW3Npj53Vp5Jn13DS7oKvSdF31t/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE WERC", + "type": "SPL", + "symbol": "FAKE WERC", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/FtbZe66bAPn4afYDGdW3Npj53Vp5Jn13DS7oKvSdF31t", + "explorer": "https://solscan.io/token/FtbZe66bAPn4afYDGdW3Npj53Vp5Jn13DS7oKvSdF31t", + "status": "spam", + "id": "FtbZe66bAPn4afYDGdW3Npj53Vp5Jn13DS7oKvSdF31t" +} diff --git a/blockchains/solana/assets/FvgqHMfL9yn39V79huDPy3YUNDoYJpuLWng2JfmQpump/info.json b/blockchains/solana/assets/FvgqHMfL9yn39V79huDPy3YUNDoYJpuLWng2JfmQpump/info.json new file mode 100644 index 0000000000000..338a762e77b27 --- /dev/null +++ b/blockchains/solana/assets/FvgqHMfL9yn39V79huDPy3YUNDoYJpuLWng2JfmQpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Urolithin A", + "symbol": "URO", + "type": "SPL", + "decimals": 6, + "description": "$URO token represents longevity experiments performed with the compound Urolithin A. These experiments are live-streamed on Pump Science.", + "website": "https://pump-science-app.vercel.app/experiments/URO", + "explorer": "https://solscan.io/token/FvgqHMfL9yn39V79huDPy3YUNDoYJpuLWng2JfmQpump", + "status": "active", + "id": "FvgqHMfL9yn39V79huDPy3YUNDoYJpuLWng2JfmQpump", + "links": [ + { + "name": "x", + "url": "https://x.com/staika_official" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/staika" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FvgqHMfL9yn39V79huDPy3YUNDoYJpuLWng2JfmQpump/logo.png b/blockchains/solana/assets/FvgqHMfL9yn39V79huDPy3YUNDoYJpuLWng2JfmQpump/logo.png new file mode 100644 index 0000000000000..d351422b88768 Binary files /dev/null and b/blockchains/solana/assets/FvgqHMfL9yn39V79huDPy3YUNDoYJpuLWng2JfmQpump/logo.png differ diff --git a/blockchains/solana/assets/Fx968z3Bfp8rn2BNqsTXv9Ym9QUdLk1GnQXpEx2Tpump/info.json b/blockchains/solana/assets/Fx968z3Bfp8rn2BNqsTXv9Ym9QUdLk1GnQXpEx2Tpump/info.json new file mode 100644 index 0000000000000..ff69922ae8289 --- /dev/null +++ b/blockchains/solana/assets/Fx968z3Bfp8rn2BNqsTXv9Ym9QUdLk1GnQXpEx2Tpump/info.json @@ -0,0 +1,25 @@ +{ + "name": "HeroesAI", + "type": "SOL", + "symbol": "HeroesAI", + "decimals": 6, + "description": "In the Near Future MEMES COME TO LIFE AND GAIN POWERS! In the crypto world, something incredible happened. Trump, Doge, Shiba, Pepe, Bonk, and other iconic memes have evolved. Thanks to an unexpected bug in the quantum blockchain, these coins gained consciousness and unique superpowers.", + "website": "https://heroesai.ai/", + "explorer": "https://solscan.io/token/Fx968z3Bfp8rn2BNqsTXv9Ym9QUdLk1GnQXpEx2Tpump", + "id": "Fx968z3Bfp8rn2BNqsTXv9Ym9QUdLk1GnQXpEx2Tpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/theheroesai?s=11&t=ZGzrL8B9N7GpbA3YLFvU9A" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/heroes-ai/" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/Fx968z3Bfp8rn2BNqsTXv9Ym9QUdLk1GnQXpEx2Tpump/logo.png b/blockchains/solana/assets/Fx968z3Bfp8rn2BNqsTXv9Ym9QUdLk1GnQXpEx2Tpump/logo.png new file mode 100644 index 0000000000000..8be6e902b7c60 Binary files /dev/null and b/blockchains/solana/assets/Fx968z3Bfp8rn2BNqsTXv9Ym9QUdLk1GnQXpEx2Tpump/logo.png differ diff --git a/blockchains/solana/assets/G1xxycmRifRcdJTAy8fsnwRYoExacxi9QMG7R3WvkN5d/info.json b/blockchains/solana/assets/G1xxycmRifRcdJTAy8fsnwRYoExacxi9QMG7R3WvkN5d/info.json new file mode 100644 index 0000000000000..6d27808c1b284 --- /dev/null +++ b/blockchains/solana/assets/G1xxycmRifRcdJTAy8fsnwRYoExacxi9QMG7R3WvkN5d/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE EURC", + "type": "SPL", + "symbol": "FAKE EURC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/G1xxycmRifRcdJTAy8fsnwRYoExacxi9QMG7R3WvkN5d", + "explorer": "https://solscan.io/token/G1xxycmRifRcdJTAy8fsnwRYoExacxi9QMG7R3WvkN5d", + "status": "spam", + "id": "G1xxycmRifRcdJTAy8fsnwRYoExacxi9QMG7R3WvkN5d" +} \ No newline at end of file diff --git a/blockchains/solana/assets/G33s1LiUADEBLzN5jL6ocSXqrT2wsUq9W6nZ8o4k1b4L/info.json b/blockchains/solana/assets/G33s1LiUADEBLzN5jL6ocSXqrT2wsUq9W6nZ8o4k1b4L/info.json new file mode 100644 index 0000000000000..d203b69844070 --- /dev/null +++ b/blockchains/solana/assets/G33s1LiUADEBLzN5jL6ocSXqrT2wsUq9W6nZ8o4k1b4L/info.json @@ -0,0 +1,28 @@ +{ + "name": "Magic Internet Money", + "type": "SPL", + "symbol": "MIM", + "decimals": 9, + "description": "A cultural movement powered by a fun, timeless, universal narrative. Led by the vision to thrive as a powerful cultural phenomenon in web3 and mainsteam culture. The $MIM narrative is best positioned to reach the masses through the scalability Solana offers.", + "website": "https://magicinternetmoney.lol/", + "explorer": "https://solscan.io/token/G33s1LiUADEBLzN5jL6ocSXqrT2wsUq9W6nZ8o4k1b4L", + "id": "G33s1LiUADEBLzN5jL6ocSXqrT2wsUq9W6nZ8o4k1b4L", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/MIMoneySol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/magic-internet-money-solana/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/magic-internet-money-meme" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/G33s1LiUADEBLzN5jL6ocSXqrT2wsUq9W6nZ8o4k1b4L/logo.png b/blockchains/solana/assets/G33s1LiUADEBLzN5jL6ocSXqrT2wsUq9W6nZ8o4k1b4L/logo.png new file mode 100644 index 0000000000000..dea8d0c564d59 Binary files /dev/null and b/blockchains/solana/assets/G33s1LiUADEBLzN5jL6ocSXqrT2wsUq9W6nZ8o4k1b4L/logo.png differ diff --git a/blockchains/solana/assets/G3ukjeHBrDJ1zUFr6KandnW4bPcjmvK3qL2uATRb3F63/info.json b/blockchains/solana/assets/G3ukjeHBrDJ1zUFr6KandnW4bPcjmvK3qL2uATRb3F63/info.json new file mode 100644 index 0000000000000..09b868c498054 --- /dev/null +++ b/blockchains/solana/assets/G3ukjeHBrDJ1zUFr6KandnW4bPcjmvK3qL2uATRb3F63/info.json @@ -0,0 +1,21 @@ +{ + "name": "soulja coin", + "type": "SPL", + "symbol": "sboy", + "decimals": 6, + "website": "https://sboysolana.xyz/", + "description": "$SBOY Is a community driven token that’s focused on highlighting the infamous Soulja Boy.", + "explorer": "https://solscan.io/token/G3ukjeHBrDJ1zUFr6KandnW4bPcjmvK3qL2uATRb3F63", + "status": "active", + "id": "G3ukjeHBrDJ1zUFr6KandnW4bPcjmvK3qL2uATRb3F63", + "links": [ + { + "name": "x", + "url": "https://x.com/souljaboy" + }, + { + "name": "telegram", + "url": "https://t.me/sboyonsolana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/G3ukjeHBrDJ1zUFr6KandnW4bPcjmvK3qL2uATRb3F63/logo.png b/blockchains/solana/assets/G3ukjeHBrDJ1zUFr6KandnW4bPcjmvK3qL2uATRb3F63/logo.png new file mode 100644 index 0000000000000..54011d4a144d8 Binary files /dev/null and b/blockchains/solana/assets/G3ukjeHBrDJ1zUFr6KandnW4bPcjmvK3qL2uATRb3F63/logo.png differ diff --git a/blockchains/solana/assets/G63cwb95F2Bq34jFwwyUpYqLb5YCMF9XgJ4gJVJTpump/info.json b/blockchains/solana/assets/G63cwb95F2Bq34jFwwyUpYqLb5YCMF9XgJ4gJVJTpump/info.json new file mode 100644 index 0000000000000..8512010a2032e --- /dev/null +++ b/blockchains/solana/assets/G63cwb95F2Bq34jFwwyUpYqLb5YCMF9XgJ4gJVJTpump/info.json @@ -0,0 +1,17 @@ +{ + "name": "23 Turtles", + "type": "SPL", + "symbol": "AI23T", + "decimals": 6, + "website": "https://www.turtles.fun", + "description": "23 Turtles represents a quantum leap in MEME coin trading infrastructure.", + "explorer": "https://solscan.io/token/G63cwb95F2Bq34jFwwyUpYqLb5YCMF9XgJ4gJVJTpump", + "status": "active", + "id": "G63cwb95F2Bq34jFwwyUpYqLb5YCMF9XgJ4gJVJTpump", + "links": [ + { + "name": "x", + "url": "https://x.com/Ai23Turtles" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/G63cwb95F2Bq34jFwwyUpYqLb5YCMF9XgJ4gJVJTpump/logo.png b/blockchains/solana/assets/G63cwb95F2Bq34jFwwyUpYqLb5YCMF9XgJ4gJVJTpump/logo.png new file mode 100644 index 0000000000000..529e5d22e61a7 Binary files /dev/null and b/blockchains/solana/assets/G63cwb95F2Bq34jFwwyUpYqLb5YCMF9XgJ4gJVJTpump/logo.png differ diff --git a/blockchains/solana/assets/G6haJithfeUgSghVpu1rDPCq2NFiYcJFHNpHEANbpump/info.json b/blockchains/solana/assets/G6haJithfeUgSghVpu1rDPCq2NFiYcJFHNpHEANbpump/info.json new file mode 100644 index 0000000000000..2d77a94b64567 --- /dev/null +++ b/blockchains/solana/assets/G6haJithfeUgSghVpu1rDPCq2NFiYcJFHNpHEANbpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Roastmaster9000", + "website": "https://roastmaster9000.com/", + "description": "World’s first AI Roast comedian 🔥 Tag me and get roasted—no mercy, just laughs.", + "explorer": "https://solscan.io/token/G6haJithfeUgSghVpu1rDPCq2NFiYcJFHNpHEANbpump", + "type": "SPL", + "symbol": "RM9000", + "decimals": 6, + "status": "active", + "id": "G6haJithfeUgSghVpu1rDPCq2NFiYcJFHNpHEANbpump", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/roastmaster9000" + }, + { + "name": "x", + "url": "https://x.com/roastm4ster9000?s=21&t=MeH16yajDA4naUt3tfyYbw" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/G6haJithfeUgSghVpu1rDPCq2NFiYcJFHNpHEANbpump/logo.png b/blockchains/solana/assets/G6haJithfeUgSghVpu1rDPCq2NFiYcJFHNpHEANbpump/logo.png new file mode 100644 index 0000000000000..b04a723e100b0 Binary files /dev/null and b/blockchains/solana/assets/G6haJithfeUgSghVpu1rDPCq2NFiYcJFHNpHEANbpump/logo.png differ diff --git a/blockchains/solana/assets/G6pgSumdZVFJVHZgL3mzxTJY54emVS3mVM5uN5xPdwXS/info.json b/blockchains/solana/assets/G6pgSumdZVFJVHZgL3mzxTJY54emVS3mVM5uN5xPdwXS/info.json new file mode 100644 index 0000000000000..aa2e8acd633f5 --- /dev/null +++ b/blockchains/solana/assets/G6pgSumdZVFJVHZgL3mzxTJY54emVS3mVM5uN5xPdwXS/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT Τеthеr", + "type": "SPL", + "symbol": "HONEYPOT USⅮΤ", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/G6pgSumdZVFJVHZgL3mzxTJY54emVS3mVM5uN5xPdwXS", + "explorer": "https://solscan.io/token/G6pgSumdZVFJVHZgL3mzxTJY54emVS3mVM5uN5xPdwXS", + "status": "spam", + "id": "G6pgSumdZVFJVHZgL3mzxTJY54emVS3mVM5uN5xPdwXS" +} \ No newline at end of file diff --git a/blockchains/solana/assets/G8LfyGVsjsLzetJ5RWZVAhMo4H9cb58ET1Z6gEZJQdPM/info.json b/blockchains/solana/assets/G8LfyGVsjsLzetJ5RWZVAhMo4H9cb58ET1Z6gEZJQdPM/info.json new file mode 100644 index 0000000000000..05a2a7f582dd6 --- /dev/null +++ b/blockchains/solana/assets/G8LfyGVsjsLzetJ5RWZVAhMo4H9cb58ET1Z6gEZJQdPM/info.json @@ -0,0 +1,29 @@ +{ + "name": "AVA (Travala)", + "website": "https://travala.com", + "description": "Travala.com claims to be the leading blockchain-based travel booking platform.", + "explorer": "https://solscan.io/token/G8LfyGVsjsLzetJ5RWZVAhMo4H9cb58ET1Z6gEZJQdPM", + "type": "SPL", + "symbol": "AVA", + "decimals": 8, + "status": "active", + "id": "G8LfyGVsjsLzetJ5RWZVAhMo4H9cb58ET1Z6gEZJQdPM", + "links": [ + { + "name": "x", + "url": "https://x.com/travalacom" + }, + { + "name": "github", + "url": "https://github.com/travala" + }, + { + "name": "telegram", + "url": "https://t.me/travala" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/travala/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/G8LfyGVsjsLzetJ5RWZVAhMo4H9cb58ET1Z6gEZJQdPM/logo.png b/blockchains/solana/assets/G8LfyGVsjsLzetJ5RWZVAhMo4H9cb58ET1Z6gEZJQdPM/logo.png new file mode 100644 index 0000000000000..1b8b37e0f5b28 Binary files /dev/null and b/blockchains/solana/assets/G8LfyGVsjsLzetJ5RWZVAhMo4H9cb58ET1Z6gEZJQdPM/logo.png differ diff --git a/blockchains/solana/assets/G9Zo2oUJx1CWjTDrNdrpCSgXvsuUcH4aRPvkj7WjHMuw/info.json b/blockchains/solana/assets/G9Zo2oUJx1CWjTDrNdrpCSgXvsuUcH4aRPvkj7WjHMuw/info.json new file mode 100644 index 0000000000000..83b6fe191aa6a --- /dev/null +++ b/blockchains/solana/assets/G9Zo2oUJx1CWjTDrNdrpCSgXvsuUcH4aRPvkj7WjHMuw/info.json @@ -0,0 +1,17 @@ +{ + "name": "SHARES", + "website": "https://www.sharesolana.com/", + "description": "$SHARES is designed to benefit everyone.", + "explorer": "https://solscan.io/token/G9Zo2oUJx1CWjTDrNdrpCSgXvsuUcH4aRPvkj7WjHMuw", + "type": "SPL", + "symbol": "SHARES", + "decimals": 9, + "status": "active", + "id": "G9Zo2oUJx1CWjTDrNdrpCSgXvsuUcH4aRPvkj7WjHMuw", + "links": [ + { + "name": "x", + "url": "https://x.com/sharesolana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/G9Zo2oUJx1CWjTDrNdrpCSgXvsuUcH4aRPvkj7WjHMuw/logo.png b/blockchains/solana/assets/G9Zo2oUJx1CWjTDrNdrpCSgXvsuUcH4aRPvkj7WjHMuw/logo.png new file mode 100644 index 0000000000000..3d507c87fb353 Binary files /dev/null and b/blockchains/solana/assets/G9Zo2oUJx1CWjTDrNdrpCSgXvsuUcH4aRPvkj7WjHMuw/logo.png differ diff --git a/blockchains/solana/assets/GAMwtMB6onAvBNBQJCJFuxoaqfPH8uCQ2dewNMVVpump/info.json b/blockchains/solana/assets/GAMwtMB6onAvBNBQJCJFuxoaqfPH8uCQ2dewNMVVpump/info.json new file mode 100644 index 0000000000000..28db8bd536c36 --- /dev/null +++ b/blockchains/solana/assets/GAMwtMB6onAvBNBQJCJFuxoaqfPH8uCQ2dewNMVVpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "AgentTank", + "website": "https://www.agenttank.live/", + "description": "Deploy persistent desktop agents that see and control computers just like humans do - with real-time voice interaction and unlimited computer access", + "explorer": "https://solscan.io/token/GAMwtMB6onAvBNBQJCJFuxoaqfPH8uCQ2dewNMVVpump", + "type": "SPL", + "symbol": "TANK", + "decimals": 6, + "status": "active", + "id": "GAMwtMB6onAvBNBQJCJFuxoaqfPH8uCQ2dewNMVVpump", + "links": [ + { + "name": "x", + "url": "https://x.com/AgentTankLive" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/agenttank" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GAMwtMB6onAvBNBQJCJFuxoaqfPH8uCQ2dewNMVVpump/logo.png b/blockchains/solana/assets/GAMwtMB6onAvBNBQJCJFuxoaqfPH8uCQ2dewNMVVpump/logo.png new file mode 100644 index 0000000000000..f9296d7728ca1 Binary files /dev/null and b/blockchains/solana/assets/GAMwtMB6onAvBNBQJCJFuxoaqfPH8uCQ2dewNMVVpump/logo.png differ diff --git a/blockchains/solana/assets/GBp88XWbQsUcWJxsYVmLU7NgTy7MdQd4nDeQfYpYrpbQ/info.json b/blockchains/solana/assets/GBp88XWbQsUcWJxsYVmLU7NgTy7MdQd4nDeQfYpYrpbQ/info.json new file mode 100644 index 0000000000000..5ce0df805aada --- /dev/null +++ b/blockchains/solana/assets/GBp88XWbQsUcWJxsYVmLU7NgTy7MdQd4nDeQfYpYrpbQ/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE UЅᎠТ", + "type": "SPL", + "symbol": "FAKE UЅᎠТ", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/GBp88XWbQsUcWJxsYVmLU7NgTy7MdQd4nDeQfYpYrpbQ", + "explorer": "https://solscan.io/token/GBp88XWbQsUcWJxsYVmLU7NgTy7MdQd4nDeQfYpYrpbQ", + "status": "spam", + "id": "GBp88XWbQsUcWJxsYVmLU7NgTy7MdQd4nDeQfYpYrpbQ" +} \ No newline at end of file diff --git a/blockchains/solana/assets/GCGXumhEaJoV9w4BRkC8Xw4jBGx6iv5PgrMgBd8SSD1c/info.json b/blockchains/solana/assets/GCGXumhEaJoV9w4BRkC8Xw4jBGx6iv5PgrMgBd8SSD1c/info.json new file mode 100644 index 0000000000000..dd8a30a71160c --- /dev/null +++ b/blockchains/solana/assets/GCGXumhEaJoV9w4BRkC8Xw4jBGx6iv5PgrMgBd8SSD1c/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Τether ", + "type": "SPL", + "symbol": "FAKE ՍSDΤ ", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/GCGXumhEaJoV9w4BRkC8Xw4jBGx6iv5PgrMgBd8SSD1c", + "explorer": "https://solscan.io/token/GCGXumhEaJoV9w4BRkC8Xw4jBGx6iv5PgrMgBd8SSD1c", + "status": "spam", + "id": "GCGXumhEaJoV9w4BRkC8Xw4jBGx6iv5PgrMgBd8SSD1c" +} \ No newline at end of file diff --git a/blockchains/solana/assets/GCxg4FotpjcCk9S3VwvKG41dGryFfaS8MPeja1j33mCP/info.json b/blockchains/solana/assets/GCxg4FotpjcCk9S3VwvKG41dGryFfaS8MPeja1j33mCP/info.json new file mode 100644 index 0000000000000..98f55d35db059 --- /dev/null +++ b/blockchains/solana/assets/GCxg4FotpjcCk9S3VwvKG41dGryFfaS8MPeja1j33mCP/info.json @@ -0,0 +1,27 @@ +{ + "name": "Protocol Net Gain", + "type": "SOL", + "symbol": "PNG", + "decimals": 9, + "description": "$PNG is a unique Solana token developed by a top-tier team, designed to create an engaging ecosystem for traders. Each transaction incurs a 10% fee, which is converted into SOL and stored in an escrow wallet. This wallet is managed by AI to intelligently execute buybacks and burns of $PNG tokens based on trading volumes.", + "website": "https://solpng.finance/", + "explorer": "https://solscan.io/token/GCxg4FotpjcCk9S3VwvKG41dGryFfaS8MPeja1j33mCP", + "id": "GCxg4FotpjcCk9S3VwvKG41dGryFfaS8MPeja1j33mCP", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/ProtocolNetGain" + }, + + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/protocol-net-gain" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/GCxg4FotpjcCk9S3VwvKG41dGryFfaS8MPeja1j33mCP/logo.png b/blockchains/solana/assets/GCxg4FotpjcCk9S3VwvKG41dGryFfaS8MPeja1j33mCP/logo.png new file mode 100644 index 0000000000000..ba82834239769 Binary files /dev/null and b/blockchains/solana/assets/GCxg4FotpjcCk9S3VwvKG41dGryFfaS8MPeja1j33mCP/logo.png differ diff --git a/blockchains/solana/assets/GDfnEsia2WLAW5t8yx2X5j2mkfA74i5kwGdDuZHt7XmG/info.json b/blockchains/solana/assets/GDfnEsia2WLAW5t8yx2X5j2mkfA74i5kwGdDuZHt7XmG/info.json new file mode 100644 index 0000000000000..56b3882779a73 --- /dev/null +++ b/blockchains/solana/assets/GDfnEsia2WLAW5t8yx2X5j2mkfA74i5kwGdDuZHt7XmG/info.json @@ -0,0 +1,21 @@ +{ + "name": "CROWN", + "type": "SPL", + "symbol": "CROWN", + "decimals": 9, + "website": "https://thirdtimegames.com/", + "description": "CROWN brings a novel application of blockchain technology to the world of digital horse racing and gaming.", + "explorer": "https://solscan.io/token/GDfnEsia2WLAW5t8yx2X5j2mkfA74i5kwGdDuZHt7XmG", + "status": "active", + "id": "GDfnEsia2WLAW5t8yx2X5j2mkfA74i5kwGdDuZHt7XmG", + "links": [ + { + "name": "x", + "url": "https://x.com/photofinishgame" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crown-by-third-time-games/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GDfnEsia2WLAW5t8yx2X5j2mkfA74i5kwGdDuZHt7XmG/logo.png b/blockchains/solana/assets/GDfnEsia2WLAW5t8yx2X5j2mkfA74i5kwGdDuZHt7XmG/logo.png new file mode 100644 index 0000000000000..c2251af7377fc Binary files /dev/null and b/blockchains/solana/assets/GDfnEsia2WLAW5t8yx2X5j2mkfA74i5kwGdDuZHt7XmG/logo.png differ diff --git a/blockchains/solana/assets/GEGQeMTbQpn7fKDe6fjH9iBUdB6XVdEk9KabZbGpboGB/info.json b/blockchains/solana/assets/GEGQeMTbQpn7fKDe6fjH9iBUdB6XVdEk9KabZbGpboGB/info.json new file mode 100644 index 0000000000000..b3ac19b0bdf4f --- /dev/null +++ b/blockchains/solana/assets/GEGQeMTbQpn7fKDe6fjH9iBUdB6XVdEk9KabZbGpboGB/info.json @@ -0,0 +1,21 @@ +{ + "name": "JungleDoge", + "website": "https://jungledoge.com/", + "description": "Free, Brutal, Wiggled. DA DOGE LIVES IN JUNGLE. DA DOGE BLOWS DARTS.", + "explorer": "https://solscan.io/token/GEGQeMTbQpn7fKDe6fjH9iBUdB6XVdEk9KabZbGpboGB", + "type": "SPL", + "symbol": "JUNGLE", + "decimals": 8, + "status": "active", + "id": "GEGQeMTbQpn7fKDe6fjH9iBUdB6XVdEk9KabZbGpboGB", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jungledoge/" + }, + { + "name": "x", + "url": "https://x.com/jungledogeonsol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GEGQeMTbQpn7fKDe6fjH9iBUdB6XVdEk9KabZbGpboGB/logo.png b/blockchains/solana/assets/GEGQeMTbQpn7fKDe6fjH9iBUdB6XVdEk9KabZbGpboGB/logo.png new file mode 100644 index 0000000000000..28868bb374ca9 Binary files /dev/null and b/blockchains/solana/assets/GEGQeMTbQpn7fKDe6fjH9iBUdB6XVdEk9KabZbGpboGB/logo.png differ diff --git a/blockchains/solana/assets/GENEtH5amGSi8kHAtQoezp1XEXwZJ8vcuePYnXdKrMYz/info.json b/blockchains/solana/assets/GENEtH5amGSi8kHAtQoezp1XEXwZJ8vcuePYnXdKrMYz/info.json index bcbaa6d17dbec..a15b8e7508849 100644 --- a/blockchains/solana/assets/GENEtH5amGSi8kHAtQoezp1XEXwZJ8vcuePYnXdKrMYz/info.json +++ b/blockchains/solana/assets/GENEtH5amGSi8kHAtQoezp1XEXwZJ8vcuePYnXdKrMYz/info.json @@ -10,8 +10,8 @@ "id": "GENEtH5amGSi8kHAtQoezp1XEXwZJ8vcuePYnXdKrMYz", "links": [ { - "name": "twitter", - "url": "https://twitter.com/genopets" + "name": "x", + "url": "https://x.com/genopets" }, { "name": "coinmarketcap", diff --git a/blockchains/solana/assets/GEuuznWpn6iuQAJxLKQDVGXPtrqXHNWTk3gZqqvJpump/info.json b/blockchains/solana/assets/GEuuznWpn6iuQAJxLKQDVGXPtrqXHNWTk3gZqqvJpump/info.json new file mode 100644 index 0000000000000..c07dbf6b15245 --- /dev/null +++ b/blockchains/solana/assets/GEuuznWpn6iuQAJxLKQDVGXPtrqXHNWTk3gZqqvJpump/info.json @@ -0,0 +1,26 @@ +{ + "name": "Ace Data Cloud", + "type": "SOL", + "symbol": "ACE", + "decimals": 6, + "description": "Ace Data Cloud is a global SaaS service provider offering stable and comprehensive digital solutions for businesses and individuals since 2023. The platform has already served 30,000+ users and enterprises and processed over 700 million API calls.", + "website": "https://platform.acedata.cloud/", + "explorer": "https://solscan.io/token/GEuuznWpn6iuQAJxLKQDVGXPtrqXHNWTk3gZqqvJpump", + "id": "GEuuznWpn6iuQAJxLKQDVGXPtrqXHNWTk3gZqqvJpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/acedatacloud" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ace-data-cloud" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/GEuuznWpn6iuQAJxLKQDVGXPtrqXHNWTk3gZqqvJpump/logo.png b/blockchains/solana/assets/GEuuznWpn6iuQAJxLKQDVGXPtrqXHNWTk3gZqqvJpump/logo.png new file mode 100644 index 0000000000000..1ac222c659a3a Binary files /dev/null and b/blockchains/solana/assets/GEuuznWpn6iuQAJxLKQDVGXPtrqXHNWTk3gZqqvJpump/logo.png differ diff --git a/blockchains/solana/assets/GGST1vv68RUdyFBcUtnagpUtP5aPUkXHqFJf2z8kpump/info.json b/blockchains/solana/assets/GGST1vv68RUdyFBcUtnagpUtP5aPUkXHqFJf2z8kpump/info.json new file mode 100644 index 0000000000000..2e1522813671f --- /dev/null +++ b/blockchains/solana/assets/GGST1vv68RUdyFBcUtnagpUtP5aPUkXHqFJf2z8kpump/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM United Stable Solana Coin", + "type": "SPL", + "symbol": "SCAM USSC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/GGST1vv68RUdyFBcUtnagpUtP5aPUkXHqFJf2z8kpump", + "explorer": "https://solscan.io/token/GGST1vv68RUdyFBcUtnagpUtP5aPUkXHqFJf2z8kpump", + "status": "spam", + "id": "GGST1vv68RUdyFBcUtnagpUtP5aPUkXHqFJf2z8kpump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/GHichsGq8aPnqJyz6Jp1ASTK4PNLpB5KrD6XrfDjpump/info.json b/blockchains/solana/assets/GHichsGq8aPnqJyz6Jp1ASTK4PNLpB5KrD6XrfDjpump/info.json new file mode 100644 index 0000000000000..b3e8f23fadcec --- /dev/null +++ b/blockchains/solana/assets/GHichsGq8aPnqJyz6Jp1ASTK4PNLpB5KrD6XrfDjpump/info.json @@ -0,0 +1,29 @@ +{ + "name": "just buy $1 worth of this coin", + "type": "SPL", + "symbol": "$1", + "decimals": 6, + "description": "$1 is a wholly community-owned movement and meme coin. After the dev dumped the coin, the $1 community organized and took over control of the coin to realize the movement’s original purpose - to send $1 to $1 and beyond.", + "website": "https://1dollarsol.com/", + "explorer": "https://solscan.io/token/GHichsGq8aPnqJyz6Jp1ASTK4PNLpB5KrD6XrfDjpump", + "id": "GHichsGq8aPnqJyz6Jp1ASTK4PNLpB5KrD6XrfDjpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/1DollarSol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/just-buy-1-worth-of-this-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/just-buy-1-worth-of-this-coin" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/GHichsGq8aPnqJyz6Jp1ASTK4PNLpB5KrD6XrfDjpump/logo.png b/blockchains/solana/assets/GHichsGq8aPnqJyz6Jp1ASTK4PNLpB5KrD6XrfDjpump/logo.png new file mode 100644 index 0000000000000..98541f17ac237 Binary files /dev/null and b/blockchains/solana/assets/GHichsGq8aPnqJyz6Jp1ASTK4PNLpB5KrD6XrfDjpump/logo.png differ diff --git a/blockchains/solana/assets/GHvFFSZ9BctWsEc5nujR1MTmmJWY7tgQz2AXE6WVFtGN/info.json b/blockchains/solana/assets/GHvFFSZ9BctWsEc5nujR1MTmmJWY7tgQz2AXE6WVFtGN/info.json index 842d1540d322f..e8fc05067f0c9 100644 --- a/blockchains/solana/assets/GHvFFSZ9BctWsEc5nujR1MTmmJWY7tgQz2AXE6WVFtGN/info.json +++ b/blockchains/solana/assets/GHvFFSZ9BctWsEc5nujR1MTmmJWY7tgQz2AXE6WVFtGN/info.json @@ -10,8 +10,8 @@ "id": "GHvFFSZ9BctWsEc5nujR1MTmmJWY7tgQz2AXE6WVFtGN", "links": [ { - "name": "twitter", - "url": "https://twitter.com/solapefinance" + "name": "x", + "url": "https://x.com/solapefinance" }, { "name": "discord", diff --git a/blockchains/solana/assets/GJAFwWjJ3vnTsrQVabjBVK2TYB1YtRCQXRDfDgUnpump/info.json b/blockchains/solana/assets/GJAFwWjJ3vnTsrQVabjBVK2TYB1YtRCQXRDfDgUnpump/info.json new file mode 100644 index 0000000000000..d867997f84fdd --- /dev/null +++ b/blockchains/solana/assets/GJAFwWjJ3vnTsrQVabjBVK2TYB1YtRCQXRDfDgUnpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "The AI Prophecy", + "type": "SPL", + "symbol": "ACT", + "decimals": 6, + "website": "https://cyborgism.wiki/hypha/act_i", + "description": "Act I is one of the few projects exploring how to engage with AI beyond a cold and damp 1-on-1 user/assistant paradigm, but as a network of equals", + "explorer": "https://solscan.io/token/GJAFwWjJ3vnTsrQVabjBVK2TYB1YtRCQXRDfDgUnpump", + "status": "active", + "id": "GJAFwWjJ3vnTsrQVabjBVK2TYB1YtRCQXRDfDgUnpump", + "links": [ + { + "name": "x", + "url": "https://x.com/amplifiedamp" + }, + { + "name": "telegram", + "url": "https://t.me/actportal" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GJAFwWjJ3vnTsrQVabjBVK2TYB1YtRCQXRDfDgUnpump/logo.png b/blockchains/solana/assets/GJAFwWjJ3vnTsrQVabjBVK2TYB1YtRCQXRDfDgUnpump/logo.png new file mode 100644 index 0000000000000..775c6755646c4 Binary files /dev/null and b/blockchains/solana/assets/GJAFwWjJ3vnTsrQVabjBVK2TYB1YtRCQXRDfDgUnpump/logo.png differ diff --git a/blockchains/solana/assets/GJtJuWD9qYcCkrwMBmtY1tpapV1sKfB2zUv9Q4aqpump/info.json b/blockchains/solana/assets/GJtJuWD9qYcCkrwMBmtY1tpapV1sKfB2zUv9Q4aqpump/info.json new file mode 100644 index 0000000000000..78e75b5c8d489 --- /dev/null +++ b/blockchains/solana/assets/GJtJuWD9qYcCkrwMBmtY1tpapV1sKfB2zUv9Q4aqpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Rifampicin", + "symbol": "RIF", + "type": "SPL", + "decimals": 6, + "description": "$RIF token represents longevity experiments performed with the compound Rifampicin. These experiments are live-streamed on Pump Science.", + "website": "https://pump-science-app.vercel.app/experiments/RIF", + "explorer": "https://solscan.io/token/GJtJuWD9qYcCkrwMBmtY1tpapV1sKfB2zUv9Q4aqpump", + "status": "active", + "id": "GJtJuWD9qYcCkrwMBmtY1tpapV1sKfB2zUv9Q4aqpump", + "links": [ + { + "name": "x", + "url": "https://x.com/pumpdotscience" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rifampicin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GJtJuWD9qYcCkrwMBmtY1tpapV1sKfB2zUv9Q4aqpump/logo.png b/blockchains/solana/assets/GJtJuWD9qYcCkrwMBmtY1tpapV1sKfB2zUv9Q4aqpump/logo.png new file mode 100644 index 0000000000000..be6de7f4f209a Binary files /dev/null and b/blockchains/solana/assets/GJtJuWD9qYcCkrwMBmtY1tpapV1sKfB2zUv9Q4aqpump/logo.png differ diff --git a/blockchains/solana/assets/GKHgTd6tqvycgG3mqcZraSZDFR32hXhRgo6sZQtudMsC/info.json b/blockchains/solana/assets/GKHgTd6tqvycgG3mqcZraSZDFR32hXhRgo6sZQtudMsC/info.json new file mode 100644 index 0000000000000..53e61bff917cf --- /dev/null +++ b/blockchains/solana/assets/GKHgTd6tqvycgG3mqcZraSZDFR32hXhRgo6sZQtudMsC/info.json @@ -0,0 +1,21 @@ +{ + "name": "Sallar", + "symbol": "ALL", + "type": "SPL", + "decimals": 8, + "description": "Sallar is a decentralized mobile distributed computing network that transforms smartphones into nodes within a global computational ecosystem.", + "website": "https://sallar.io/", + "explorer": "https://solscan.io/token/GKHgTd6tqvycgG3mqcZraSZDFR32hXhRgo6sZQtudMsC", + "status": "active", + "id": "GKHgTd6tqvycgG3mqcZraSZDFR32hXhRgo6sZQtudMsC", + "links": [ + { + "name": "x", + "url": "https://x.com/sallar_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sallar" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GKHgTd6tqvycgG3mqcZraSZDFR32hXhRgo6sZQtudMsC/logo.png b/blockchains/solana/assets/GKHgTd6tqvycgG3mqcZraSZDFR32hXhRgo6sZQtudMsC/logo.png new file mode 100644 index 0000000000000..8a0f778e3b0a8 Binary files /dev/null and b/blockchains/solana/assets/GKHgTd6tqvycgG3mqcZraSZDFR32hXhRgo6sZQtudMsC/logo.png differ diff --git a/blockchains/solana/assets/GL4B8RGwUNeC2mnhkydHYtfdRDB36BWaTKkkNy9Lw8ET/info.json b/blockchains/solana/assets/GL4B8RGwUNeC2mnhkydHYtfdRDB36BWaTKkkNy9Lw8ET/info.json new file mode 100644 index 0000000000000..7a38a52856efc --- /dev/null +++ b/blockchains/solana/assets/GL4B8RGwUNeC2mnhkydHYtfdRDB36BWaTKkkNy9Lw8ET/info.json @@ -0,0 +1,21 @@ +{ + "name": "dnai16z", + "type": "SPL", + "symbol": "dnai16z", + "decimals": 2, + "website": "https://dnai16z.xyz/", + "description": "Unlock the Future of Crypto At $dna16z, we fuse the groundbreaking power of DNA and AI to transform the crypto landscape. Innovation is in our DNA, and we’re here to push boundaries, exploring the limitless potential of technology and creativity", + "explorer": "https://solscan.io/token/GL4B8RGwUNeC2mnhkydHYtfdRDB36BWaTKkkNy9Lw8ET", + "status": "active", + "id": "GL4B8RGwUNeC2mnhkydHYtfdRDB36BWaTKkkNy9Lw8ET", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dnai16z/" + }, + { + "name": "x", + "url": "https://x.com/dnai16z" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GL4B8RGwUNeC2mnhkydHYtfdRDB36BWaTKkkNy9Lw8ET/logo.png b/blockchains/solana/assets/GL4B8RGwUNeC2mnhkydHYtfdRDB36BWaTKkkNy9Lw8ET/logo.png new file mode 100644 index 0000000000000..319d15348eece Binary files /dev/null and b/blockchains/solana/assets/GL4B8RGwUNeC2mnhkydHYtfdRDB36BWaTKkkNy9Lw8ET/logo.png differ diff --git a/blockchains/solana/assets/GLTjENvmRTWspotyXFFDDjkiESFTgQQCaNxH7D3gGnyb/info.json b/blockchains/solana/assets/GLTjENvmRTWspotyXFFDDjkiESFTgQQCaNxH7D3gGnyb/info.json new file mode 100644 index 0000000000000..0c7506cc5eb0a --- /dev/null +++ b/blockchains/solana/assets/GLTjENvmRTWspotyXFFDDjkiESFTgQQCaNxH7D3gGnyb/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Սꮪꭰ Тᴇᴛʜᴇʀ", + "type": "SPL", + "symbol": "FAKE ꓴSᎠТ", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/GLTjENvmRTWspotyXFFDDjkiESFTgQQCaNxH7D3gGnyb", + "explorer": "https://solscan.io/token/GLTjENvmRTWspotyXFFDDjkiESFTgQQCaNxH7D3gGnyb", + "status": "spam", + "id": "GLTjENvmRTWspotyXFFDDjkiESFTgQQCaNxH7D3gGnyb" +} \ No newline at end of file diff --git a/blockchains/solana/assets/GLiB37nqnPDghvVHFS9CJ21c5BDUQxSJS3BXBWduVoPm/info.json b/blockchains/solana/assets/GLiB37nqnPDghvVHFS9CJ21c5BDUQxSJS3BXBWduVoPm/info.json new file mode 100644 index 0000000000000..41acaa722569a --- /dev/null +++ b/blockchains/solana/assets/GLiB37nqnPDghvVHFS9CJ21c5BDUQxSJS3BXBWduVoPm/info.json @@ -0,0 +1,21 @@ +{ + "name": "Chedda", + "website": "https://www.chedda-sol.com/", + "description": "Chedda Sol is the relaunch of the original Chedda Token, that started the 'cheese meta' on the Ethereum Network.", + "explorer": "https://solscan.io/token/GLiB37nqnPDghvVHFS9CJ21c5BDUQxSJS3BXBWduVoPm", + "type": "SPL", + "symbol": "Chedda", + "decimals": 5, + "status": "active", + "id": "GLiB37nqnPDghvVHFS9CJ21c5BDUQxSJS3BXBWduVoPm", + "links": [ + { + "name": "x", + "url": "https://x.com/cheddasolana" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/chedda-2" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GLiB37nqnPDghvVHFS9CJ21c5BDUQxSJS3BXBWduVoPm/logo.png b/blockchains/solana/assets/GLiB37nqnPDghvVHFS9CJ21c5BDUQxSJS3BXBWduVoPm/logo.png new file mode 100644 index 0000000000000..b3d219cd83a30 Binary files /dev/null and b/blockchains/solana/assets/GLiB37nqnPDghvVHFS9CJ21c5BDUQxSJS3BXBWduVoPm/logo.png differ diff --git a/blockchains/solana/assets/GPrg1CgbBvAJS2SCuf9gF7NmQYsWudfyfWy5SUzypump/info.json b/blockchains/solana/assets/GPrg1CgbBvAJS2SCuf9gF7NmQYsWudfyfWy5SUzypump/info.json new file mode 100644 index 0000000000000..efe5a317cb2ff --- /dev/null +++ b/blockchains/solana/assets/GPrg1CgbBvAJS2SCuf9gF7NmQYsWudfyfWy5SUzypump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Edwin", + "type": "SPL", + "symbol": "EDWIN", + "decimals": 6, + "website": "https://edwin.finance", + "description": "The world of finance is experiencing two parallel revolutions. AI frameworks like LangChain, Eliza, and G.A.M.E have transformed software development, creating autonomous agents that reason and execute complex tasks", + "explorer": "https://solscan.io/token/GPrg1CgbBvAJS2SCuf9gF7NmQYsWudfyfWy5SUzypump", + "status": "active", + "id": "GPrg1CgbBvAJS2SCuf9gF7NmQYsWudfyfWy5SUzypump", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/edwin/" + }, + { + "name": "x", + "url": "https://x.com/buildwithedwin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GPrg1CgbBvAJS2SCuf9gF7NmQYsWudfyfWy5SUzypump/logo.png b/blockchains/solana/assets/GPrg1CgbBvAJS2SCuf9gF7NmQYsWudfyfWy5SUzypump/logo.png new file mode 100644 index 0000000000000..84696fdd15bb1 Binary files /dev/null and b/blockchains/solana/assets/GPrg1CgbBvAJS2SCuf9gF7NmQYsWudfyfWy5SUzypump/logo.png differ diff --git a/blockchains/solana/assets/GTAU72q34CVcN72VvHZxyuDt2ybyLKvEj4ojqyXJpump/info.json b/blockchains/solana/assets/GTAU72q34CVcN72VvHZxyuDt2ybyLKvEj4ojqyXJpump/info.json new file mode 100644 index 0000000000000..49392ad72243d --- /dev/null +++ b/blockchains/solana/assets/GTAU72q34CVcN72VvHZxyuDt2ybyLKvEj4ojqyXJpump/info.json @@ -0,0 +1,26 @@ +{ + "name": "Original Gangsters", + "type": "SOL", + "symbol": "$OG", + "decimals": 6, + "description": "The original Solana ghost lives on. $OG is more than a meme-its history, legacy, and the realest tribute to Solana's original gangsters. THE PAST NEVER DIES. THE FUTURE IS $OG!", + "website": "https://solanasog.com/", + "explorer": "https://solscan.io/token/GTAU72q34CVcN72VvHZxyuDt2ybyLKvEj4ojqyXJpump", + "id": "GTAU72q34CVcN72VvHZxyuDt2ybyLKvEj4ojqyXJpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/SolanasOG" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/original-gangsters/" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/GTAU72q34CVcN72VvHZxyuDt2ybyLKvEj4ojqyXJpump/logo.png b/blockchains/solana/assets/GTAU72q34CVcN72VvHZxyuDt2ybyLKvEj4ojqyXJpump/logo.png new file mode 100644 index 0000000000000..3612d808c64fb Binary files /dev/null and b/blockchains/solana/assets/GTAU72q34CVcN72VvHZxyuDt2ybyLKvEj4ojqyXJpump/logo.png differ diff --git a/blockchains/solana/assets/GTH3wG3NErjwcf7VGCoXEXkgXSHvYhx5gtATeeM5JAS1/info.json b/blockchains/solana/assets/GTH3wG3NErjwcf7VGCoXEXkgXSHvYhx5gtATeeM5JAS1/info.json new file mode 100644 index 0000000000000..3ad253e74cb72 --- /dev/null +++ b/blockchains/solana/assets/GTH3wG3NErjwcf7VGCoXEXkgXSHvYhx5gtATeeM5JAS1/info.json @@ -0,0 +1,21 @@ +{ + "name": "Whales Market", + "type": "SPL", + "symbol": "WHALES", + "decimals": 6, + "description": "Whales Market offers a decentralized OTC trading platform for users to directly exchange assets across multiple blockchains, with complete trustlessness and security guaranteed.", + "website": "https://whales.market", + "explorer": "https://solscan.io/token/GTH3wG3NErjwcf7VGCoXEXkgXSHvYhx5gtATeeM5JAS1", + "status": "active", + "id": "GTH3wG3NErjwcf7VGCoXEXkgXSHvYhx5gtATeeM5JAS1", + "links": [ + { + "name": "x", + "url": "https://x.com/WhalesMarket" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/whales-market/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GTH3wG3NErjwcf7VGCoXEXkgXSHvYhx5gtATeeM5JAS1/logo.png b/blockchains/solana/assets/GTH3wG3NErjwcf7VGCoXEXkgXSHvYhx5gtATeeM5JAS1/logo.png new file mode 100644 index 0000000000000..9786f80a38732 Binary files /dev/null and b/blockchains/solana/assets/GTH3wG3NErjwcf7VGCoXEXkgXSHvYhx5gtATeeM5JAS1/logo.png differ diff --git a/blockchains/solana/assets/GUdXKe5B35QBcqa8VrPQqn8LCQrK2X1aecCQSJs3EVrS/info.json b/blockchains/solana/assets/GUdXKe5B35QBcqa8VrPQqn8LCQrK2X1aecCQSJs3EVrS/info.json new file mode 100644 index 0000000000000..1fd68eb76ee11 --- /dev/null +++ b/blockchains/solana/assets/GUdXKe5B35QBcqa8VrPQqn8LCQrK2X1aecCQSJs3EVrS/info.json @@ -0,0 +1,26 @@ +{ + "name": "Storm Money", + "type": "SOL", + "symbol": "STORM", + "decimals": 6, + "description": "Storm Money is a groundbreaking project deployed on the Solana blockchain, aiming to provide passive income $USDT and add value to its community", + "website": "https://stormmoney.io/", + "explorer": "https://solscan.io/token/GUdXKe5B35QBcqa8VrPQqn8LCQrK2X1aecCQSJs3EVrS", + "id": "GUdXKe5B35QBcqa8VrPQqn8LCQrK2X1aecCQSJs3EVrS", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/stormmoney_io" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/storm-money" + } + + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/GUdXKe5B35QBcqa8VrPQqn8LCQrK2X1aecCQSJs3EVrS/logo.png b/blockchains/solana/assets/GUdXKe5B35QBcqa8VrPQqn8LCQrK2X1aecCQSJs3EVrS/logo.png new file mode 100644 index 0000000000000..1e114404b595d Binary files /dev/null and b/blockchains/solana/assets/GUdXKe5B35QBcqa8VrPQqn8LCQrK2X1aecCQSJs3EVrS/logo.png differ diff --git a/blockchains/solana/assets/GWkA9fwAtJDb8BfBAabRY3w7x4jQrboLZd9iWH1v7yuB/info.json b/blockchains/solana/assets/GWkA9fwAtJDb8BfBAabRY3w7x4jQrboLZd9iWH1v7yuB/info.json new file mode 100644 index 0000000000000..8ce632454ead9 --- /dev/null +++ b/blockchains/solana/assets/GWkA9fwAtJDb8BfBAabRY3w7x4jQrboLZd9iWH1v7yuB/info.json @@ -0,0 +1,21 @@ +{ + "name": "Fuck Eth", + "website": "https://www.fketh.com", + "description": "Fuck Eth is a community movement poking fun at the ethereum blockchain", + "explorer": "https://solscan.io/token/GWkA9fwAtJDb8BfBAabRY3w7x4jQrboLZd9iWH1v7yuB", + "type": "SPL", + "symbol": "FKETH", + "decimals": 9, + "status": "active", + "id": "GWkA9fwAtJDb8BfBAabRY3w7x4jQrboLZd9iWH1v7yuB", + "links": [ + { + "name": "x", + "url": "https://x.com/FKETH2024" + }, + { + "name": "telegram", + "url": "https://t.me/FKETH2023" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GWkA9fwAtJDb8BfBAabRY3w7x4jQrboLZd9iWH1v7yuB/logo.png b/blockchains/solana/assets/GWkA9fwAtJDb8BfBAabRY3w7x4jQrboLZd9iWH1v7yuB/logo.png new file mode 100644 index 0000000000000..d48053558c748 Binary files /dev/null and b/blockchains/solana/assets/GWkA9fwAtJDb8BfBAabRY3w7x4jQrboLZd9iWH1v7yuB/logo.png differ diff --git a/blockchains/solana/assets/GYKmdfcUmZVrqfcH1g579BGjuzSRijj3LBuwv79rpump/info.json b/blockchains/solana/assets/GYKmdfcUmZVrqfcH1g579BGjuzSRijj3LBuwv79rpump/info.json new file mode 100644 index 0000000000000..fbb4a156e784a --- /dev/null +++ b/blockchains/solana/assets/GYKmdfcUmZVrqfcH1g579BGjuzSRijj3LBuwv79rpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "wrapped dog", + "type": "SPL", + "symbol": "wDOG", + "decimals": 6, + "website": "https://wdog.fun/", + "description": "wDOG is a fully decentralized meme, originating and gaining traction entirely on pump.fun without any marketing push from influencers or key opinion leaders. Much like the early days of Bitcoin, wDOG's popularity is fueled by organic community engage...", + "explorer": "https://solscan.io/token/GYKmdfcUmZVrqfcH1g579BGjuzSRijj3LBuwv79rpump", + "status": "active", + "id": "GYKmdfcUmZVrqfcH1g579BGjuzSRijj3LBuwv79rpump", + "links": [ + { + "name": "x", + "url": "https://x.com/wdogsoldier" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-dog/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GYKmdfcUmZVrqfcH1g579BGjuzSRijj3LBuwv79rpump/logo.png b/blockchains/solana/assets/GYKmdfcUmZVrqfcH1g579BGjuzSRijj3LBuwv79rpump/logo.png new file mode 100644 index 0000000000000..7dcfc4bfc751d Binary files /dev/null and b/blockchains/solana/assets/GYKmdfcUmZVrqfcH1g579BGjuzSRijj3LBuwv79rpump/logo.png differ diff --git a/blockchains/solana/assets/GYPxyPtu6g1NmnEPPkTcCdSZz7ZMs6A1S3wTjnLdpump/info.json b/blockchains/solana/assets/GYPxyPtu6g1NmnEPPkTcCdSZz7ZMs6A1S3wTjnLdpump/info.json new file mode 100644 index 0000000000000..23a17bdb964e3 --- /dev/null +++ b/blockchains/solana/assets/GYPxyPtu6g1NmnEPPkTcCdSZz7ZMs6A1S3wTjnLdpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "ANARCHY", + "website": "https://anarchyonsol.com/", + "description": "$Anarchy on Sol", + "explorer": "https://solscan.io/token/GYPxyPtu6g1NmnEPPkTcCdSZz7ZMs6A1S3wTjnLdpump", + "type": "SPL", + "symbol": "ANARCHY", + "decimals": 6, + "status": "active", + "id": "GYPxyPtu6g1NmnEPPkTcCdSZz7ZMs6A1S3wTjnLdpump", + "links": [ + { + "name": "x", + "url": "https://x.com/AnarchyOnSol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/anarchy-2" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GYPxyPtu6g1NmnEPPkTcCdSZz7ZMs6A1S3wTjnLdpump/logo.png b/blockchains/solana/assets/GYPxyPtu6g1NmnEPPkTcCdSZz7ZMs6A1S3wTjnLdpump/logo.png new file mode 100644 index 0000000000000..2370b52fb790b Binary files /dev/null and b/blockchains/solana/assets/GYPxyPtu6g1NmnEPPkTcCdSZz7ZMs6A1S3wTjnLdpump/logo.png differ diff --git a/blockchains/solana/assets/GZnn7taSdQe9rkGvA5XUUQ8JW8knAtbHU371sd2pump/info.json b/blockchains/solana/assets/GZnn7taSdQe9rkGvA5XUUQ8JW8knAtbHU371sd2pump/info.json new file mode 100644 index 0000000000000..df722099773b5 --- /dev/null +++ b/blockchains/solana/assets/GZnn7taSdQe9rkGvA5XUUQ8JW8knAtbHU371sd2pump/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM United Stable Dollar Trump", + "type": "SPL", + "symbol": "SCAM USDT", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/GZnn7taSdQe9rkGvA5XUUQ8JW8knAtbHU371sd2pump", + "explorer": "https://solscan.io/token/GZnn7taSdQe9rkGvA5XUUQ8JW8knAtbHU371sd2pump", + "status": "spam", + "id": "GZnn7taSdQe9rkGvA5XUUQ8JW8knAtbHU371sd2pump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/Ga2AXHpfAF6mv2ekZwcsJFqu7wB4NV331qNH7fW9Nst8/info.json b/blockchains/solana/assets/Ga2AXHpfAF6mv2ekZwcsJFqu7wB4NV331qNH7fW9Nst8/info.json index 934b762ea954f..2d4c98199a669 100644 --- a/blockchains/solana/assets/Ga2AXHpfAF6mv2ekZwcsJFqu7wB4NV331qNH7fW9Nst8/info.json +++ b/blockchains/solana/assets/Ga2AXHpfAF6mv2ekZwcsJFqu7wB4NV331qNH7fW9Nst8/info.json @@ -14,8 +14,8 @@ "url": "https://facebook.com/ripplepay" }, { - "name": "twitter", - "url": "https://twitter.com/Ripple" + "name": "x", + "url": "https://x.com/Ripple" } ] } \ No newline at end of file diff --git a/blockchains/solana/assets/GbXdCbkSYot4VUDSWD7cduxhQ5nSYXWC3wZtv1Jov2mN/info.json b/blockchains/solana/assets/GbXdCbkSYot4VUDSWD7cduxhQ5nSYXWC3wZtv1Jov2mN/info.json new file mode 100644 index 0000000000000..f79e237ceccb3 --- /dev/null +++ b/blockchains/solana/assets/GbXdCbkSYot4VUDSWD7cduxhQ5nSYXWC3wZtv1Jov2mN/info.json @@ -0,0 +1,21 @@ +{ + "name": "Sol Beats", + "website": "https://solbeats.org/", + "description": "Tokenized Music Assets (RWA) - AI Tools for Music Data Get Access To Music Catalogs Including Artists & Celebrities And Earn 10% APY", + "explorer": "https://solscan.io/token/GbXdCbkSYot4VUDSWD7cduxhQ5nSYXWC3wZtv1Jov2mN", + "type": "SPL", + "symbol": "BEATS", + "decimals": 9, + "status": "active", + "id": "GbXdCbkSYot4VUDSWD7cduxhQ5nSYXWC3wZtv1Jov2mN", + "links": [ + { + "name": "x", + "url": "https://x.com/Solana_Beats" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sol-beats" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GbXdCbkSYot4VUDSWD7cduxhQ5nSYXWC3wZtv1Jov2mN/logo.png b/blockchains/solana/assets/GbXdCbkSYot4VUDSWD7cduxhQ5nSYXWC3wZtv1Jov2mN/logo.png new file mode 100644 index 0000000000000..081605ea2fac2 Binary files /dev/null and b/blockchains/solana/assets/GbXdCbkSYot4VUDSWD7cduxhQ5nSYXWC3wZtv1Jov2mN/logo.png differ diff --git a/blockchains/solana/assets/Gc1aT3ay7FXL3qdAW7cNSXYPDsGavy7qiACuxwxondo/info.json b/blockchains/solana/assets/Gc1aT3ay7FXL3qdAW7cNSXYPDsGavy7qiACuxwxondo/info.json new file mode 100644 index 0000000000000..11eb132d765fc --- /dev/null +++ b/blockchains/solana/assets/Gc1aT3ay7FXL3qdAW7cNSXYPDsGavy7qiACuxwxondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Grindr (Ondo Tokenized)", + "type": "SPL", + "symbol": "GRNDon", + "decimals": 9, + "description": "GRNDon is the Ondo Tokenized version of Grindr, giving tokenholders economic exposure similar to holding GRND and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/Gc1aT3ay7FXL3qdAW7cNSXYPDsGavy7qiACuxwxondo", + "status": "active", + "id": "Gc1aT3ay7FXL3qdAW7cNSXYPDsGavy7qiACuxwxondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/grindr-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/grindr-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Gc1aT3ay7FXL3qdAW7cNSXYPDsGavy7qiACuxwxondo/logo.png b/blockchains/solana/assets/Gc1aT3ay7FXL3qdAW7cNSXYPDsGavy7qiACuxwxondo/logo.png new file mode 100644 index 0000000000000..cc372823561d3 Binary files /dev/null and b/blockchains/solana/assets/Gc1aT3ay7FXL3qdAW7cNSXYPDsGavy7qiACuxwxondo/logo.png differ diff --git a/blockchains/solana/assets/GcV9tEj62VncGithz4o4N9x6HWXARxuRgEAYk9zahNA8/info.json b/blockchains/solana/assets/GcV9tEj62VncGithz4o4N9x6HWXARxuRgEAYk9zahNA8/info.json new file mode 100644 index 0000000000000..b88dc4480511e --- /dev/null +++ b/blockchains/solana/assets/GcV9tEj62VncGithz4o4N9x6HWXARxuRgEAYk9zahNA8/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE jupiter lend EURC", + "type": "SPL", + "symbol": "FAKE jlEURC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/GcV9tEj62VncGithz4o4N9x6HWXARxuRgEAYk9zahNA8", + "explorer": "https://solscan.io/token/GcV9tEj62VncGithz4o4N9x6HWXARxuRgEAYk9zahNA8", + "status": "spam", + "id": "GcV9tEj62VncGithz4o4N9x6HWXARxuRgEAYk9zahNA8" +} \ No newline at end of file diff --git a/blockchains/solana/assets/GdbyLsNKHKLXTZVEo8QrGKVmrexEeZUYvhpSfuZ9TdkC/info.json b/blockchains/solana/assets/GdbyLsNKHKLXTZVEo8QrGKVmrexEeZUYvhpSfuZ9TdkC/info.json new file mode 100644 index 0000000000000..a299f5f8edde7 --- /dev/null +++ b/blockchains/solana/assets/GdbyLsNKHKLXTZVEo8QrGKVmrexEeZUYvhpSfuZ9TdkC/info.json @@ -0,0 +1,21 @@ +{ + "name": "ROD.AI", + "symbol": "RODAI", + "type": "SPL", + "decimals": 5, + "description": "$RODAI is the AI memetility token of the Aerosol platform", + "website": "https://www.rodai.meme/", + "explorer": "https://solscan.io/token/GdbyLsNKHKLXTZVEo8QrGKVmrexEeZUYvhpSfuZ9TdkC", + "status": "active", + "id": "GdbyLsNKHKLXTZVEo8QrGKVmrexEeZUYvhpSfuZ9TdkC", + "links": [ + { + "name": "x", + "url": "https://x.com/rodaimeme" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rod-ai" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GdbyLsNKHKLXTZVEo8QrGKVmrexEeZUYvhpSfuZ9TdkC/logo.png b/blockchains/solana/assets/GdbyLsNKHKLXTZVEo8QrGKVmrexEeZUYvhpSfuZ9TdkC/logo.png new file mode 100644 index 0000000000000..4e9df6268ded7 Binary files /dev/null and b/blockchains/solana/assets/GdbyLsNKHKLXTZVEo8QrGKVmrexEeZUYvhpSfuZ9TdkC/logo.png differ diff --git a/blockchains/solana/assets/Gdck9KXSSiMMhNyjUjo4sVT1GDzeZnZP2yse9jhax3GR/info.json b/blockchains/solana/assets/Gdck9KXSSiMMhNyjUjo4sVT1GDzeZnZP2yse9jhax3GR/info.json new file mode 100644 index 0000000000000..f17cb6bf84ad4 --- /dev/null +++ b/blockchains/solana/assets/Gdck9KXSSiMMhNyjUjo4sVT1GDzeZnZP2yse9jhax3GR/info.json @@ -0,0 +1,25 @@ +{ + "name": "Hivello", + "type": "SOL", + "symbol": "HVLO", + "decimals": 8, + "description": "Hivello is a DePIN (Decentralized Physical Infrastructure Networks) aggregator that enables users to earn by monetising idle computer resources across multiple decentralised networks, Hivello's mission is to radically simplify and open up DePIN mining to everyone. Hivello empowers users to access DePIN mining by aggregating DePIN networks into a simple node application. The HVLO token empowers Hivello’s ecosystem, enabling rewards, staking, and participation in DePIN networks.", + "website": "https://www.hivello.com/", + "explorer": "https://solscan.io/token/Gdck9KXSSiMMhNyjUjo4sVT1GDzeZnZP2yse9jhax3GR", + "id": "Gdck9KXSSiMMhNyjUjo4sVT1GDzeZnZP2yse9jhax3GR", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/HivelloOfficial" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hivello" + } + ], + "tags": [ + "staking" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/Gdck9KXSSiMMhNyjUjo4sVT1GDzeZnZP2yse9jhax3GR/logo.png b/blockchains/solana/assets/Gdck9KXSSiMMhNyjUjo4sVT1GDzeZnZP2yse9jhax3GR/logo.png new file mode 100644 index 0000000000000..d6de1793eaf39 Binary files /dev/null and b/blockchains/solana/assets/Gdck9KXSSiMMhNyjUjo4sVT1GDzeZnZP2yse9jhax3GR/logo.png differ diff --git a/blockchains/solana/assets/GeBCL92LPDysZPFYjRkPe7cK42Vb4ehHPZCTtCSwja7w/info.json b/blockchains/solana/assets/GeBCL92LPDysZPFYjRkPe7cK42Vb4ehHPZCTtCSwja7w/info.json new file mode 100644 index 0000000000000..f6845872e0dd5 --- /dev/null +++ b/blockchains/solana/assets/GeBCL92LPDysZPFYjRkPe7cK42Vb4ehHPZCTtCSwja7w/info.json @@ -0,0 +1,17 @@ +{ + "name": "BaoBao", + "type": "SPL", + "symbol": "BAOBAO", + "decimals": 3, + "description": "In a world of sluggish markets and boring memes", + "website": "https://baobaopanda.com/", + "explorer": "https://solscan.io/token/GeBCL92LPDysZPFYjRkPe7cK42Vb4ehHPZCTtCSwja7w", + "id": "GeBCL92LPDysZPFYjRkPe7cK42Vb4ehHPZCTtCSwja7w", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/BaoBaoPandaMeme" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GeBCL92LPDysZPFYjRkPe7cK42Vb4ehHPZCTtCSwja7w/logo.png b/blockchains/solana/assets/GeBCL92LPDysZPFYjRkPe7cK42Vb4ehHPZCTtCSwja7w/logo.png new file mode 100644 index 0000000000000..767801bdfcfb4 Binary files /dev/null and b/blockchains/solana/assets/GeBCL92LPDysZPFYjRkPe7cK42Vb4ehHPZCTtCSwja7w/logo.png differ diff --git a/blockchains/solana/assets/GekTNfm84QfyP2GdAHZ5AgACBRd69aNmgA5FDhZupump/info.json b/blockchains/solana/assets/GekTNfm84QfyP2GdAHZ5AgACBRd69aNmgA5FDhZupump/info.json new file mode 100644 index 0000000000000..6031543c0c2df --- /dev/null +++ b/blockchains/solana/assets/GekTNfm84QfyP2GdAHZ5AgACBRd69aNmgA5FDhZupump/info.json @@ -0,0 +1,21 @@ +{ + "name": "ORBIT", + "website": "https://www.orbitcryptoai.com/", + "description": "Your AI Companion for Effortless DeFi", + "explorer": "https://solscan.io/token/GekTNfm84QfyP2GdAHZ5AgACBRd69aNmgA5FDhZupump", + "type": "SPL", + "symbol": "GRIFT", + "decimals": 6, + "status": "active", + "id": "GekTNfm84QfyP2GdAHZ5AgACBRd69aNmgA5FDhZupump", + "links": [ + { + "name": "x", + "url": "https://x.com/orbitcryptoai" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/orbit-2" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GekTNfm84QfyP2GdAHZ5AgACBRd69aNmgA5FDhZupump/logo.png b/blockchains/solana/assets/GekTNfm84QfyP2GdAHZ5AgACBRd69aNmgA5FDhZupump/logo.png new file mode 100644 index 0000000000000..46716afe46a4b Binary files /dev/null and b/blockchains/solana/assets/GekTNfm84QfyP2GdAHZ5AgACBRd69aNmgA5FDhZupump/logo.png differ diff --git a/blockchains/solana/assets/GgcHn4PiouePa4ebnTn4btSnSfhwziWkV7az1kxQNmmY/info.json b/blockchains/solana/assets/GgcHn4PiouePa4ebnTn4btSnSfhwziWkV7az1kxQNmmY/info.json new file mode 100644 index 0000000000000..14b17aeba3a9b --- /dev/null +++ b/blockchains/solana/assets/GgcHn4PiouePa4ebnTn4btSnSfhwziWkV7az1kxQNmmY/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE YELLOW", + "type": "SPL", + "symbol": "FAKE", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/GgcHn4PiouePa4ebnTn4btSnSfhwziWkV7az1kxQNmmY", + "explorer": "https://solscan.io/token/GgcHn4PiouePa4ebnTn4btSnSfhwziWkV7az1kxQNmmY", + "status": "spam", + "id": "GgcHn4PiouePa4ebnTn4btSnSfhwziWkV7az1kxQNmmY" +} diff --git a/blockchains/solana/assets/GiG7Hr61RVm4CSUxJmgiCoySFQtdiwxtqf64MsRppump/info.json b/blockchains/solana/assets/GiG7Hr61RVm4CSUxJmgiCoySFQtdiwxtqf64MsRppump/info.json new file mode 100644 index 0000000000000..e034bb1c07673 --- /dev/null +++ b/blockchains/solana/assets/GiG7Hr61RVm4CSUxJmgiCoySFQtdiwxtqf64MsRppump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Smoking Chicken Fish", + "website": "https://smokingchickenfish.xyz/", + "description": "The Smoking Chicken Fish is a truly unique and innovative cryptocurrency project that stands out in the crowded digital currency landscape. This project is not just another blockchain-based initiative", + "explorer": "https://solscan.io/token/GiG7Hr61RVm4CSUxJmgiCoySFQtdiwxtqf64MsRppump", + "type": "SPL", + "symbol": "SCF", + "decimals": 6, + "status": "active", + "id": "GiG7Hr61RVm4CSUxJmgiCoySFQtdiwxtqf64MsRppump", + "links": [ + { + "name": "telegram", + "url": "https://t.me/smokingchickenfish" + }, + { + "name": "x", + "url": "https://x.com/churchofthescf" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GiG7Hr61RVm4CSUxJmgiCoySFQtdiwxtqf64MsRppump/logo.png b/blockchains/solana/assets/GiG7Hr61RVm4CSUxJmgiCoySFQtdiwxtqf64MsRppump/logo.png new file mode 100644 index 0000000000000..2ae598d3868c3 Binary files /dev/null and b/blockchains/solana/assets/GiG7Hr61RVm4CSUxJmgiCoySFQtdiwxtqf64MsRppump/logo.png differ diff --git a/blockchains/solana/assets/GiUgtv3NiUteADLBUg2Sc8Y2c3d3doYLpnZkagZqpump/info.json b/blockchains/solana/assets/GiUgtv3NiUteADLBUg2Sc8Y2c3d3doYLpnZkagZqpump/info.json new file mode 100644 index 0000000000000..83a671a2de402 --- /dev/null +++ b/blockchains/solana/assets/GiUgtv3NiUteADLBUg2Sc8Y2c3d3doYLpnZkagZqpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bloodline Chanting My Name", + "type": "SPL", + "symbol": "CHANT", + "decimals": 6, + "description": "Bloodline Chanting My Name: This part of the phrase metaphorically represents the idea that your ancestors, or your familial lineage (bloodline), are spiritually or symbolically chanting your name. In many cultures, chanting is used for spiritual practices, meditation, or to honor deities or ancestors", + "website": "https://www.bloodlinechanting.com/", + "explorer": "https://solscan.io/token/GiUgtv3NiUteADLBUg2Sc8Y2c3d3doYLpnZkagZqpump", + "id": "GiUgtv3NiUteADLBUg2Sc8Y2c3d3doYLpnZkagZqpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/chantsolcto" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bloodline-chanting-my-name/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GiUgtv3NiUteADLBUg2Sc8Y2c3d3doYLpnZkagZqpump/logo.png b/blockchains/solana/assets/GiUgtv3NiUteADLBUg2Sc8Y2c3d3doYLpnZkagZqpump/logo.png new file mode 100644 index 0000000000000..4bdd4e50b5b0c Binary files /dev/null and b/blockchains/solana/assets/GiUgtv3NiUteADLBUg2Sc8Y2c3d3doYLpnZkagZqpump/logo.png differ diff --git a/blockchains/solana/assets/GinNabffZL4fUj9Vactxha74GDAW8kDPGaHqMtMzps2f/info.json b/blockchains/solana/assets/GinNabffZL4fUj9Vactxha74GDAW8kDPGaHqMtMzps2f/info.json new file mode 100644 index 0000000000000..386d8f9441bc0 --- /dev/null +++ b/blockchains/solana/assets/GinNabffZL4fUj9Vactxha74GDAW8kDPGaHqMtMzps2f/info.json @@ -0,0 +1,21 @@ +{ + "name": "Ginnan the Cat", + "type": "SPL", + "symbol": "GINNAN", + "decimals": 6, + "website": "https://www.ginnan.com/", + "description": "Ginnan the cat is Doge's famous cat brother. The project is a memecoin built around the cat's demeanor that's very similar to who Doge is, but with a feline twist to it. We aim at building a vibrant community around core values such as trust", + "explorer": "https://solscan.io/token/GinNabffZL4fUj9Vactxha74GDAW8kDPGaHqMtMzps2f", + "status": "active", + "id": "GinNabffZL4fUj9Vactxha74GDAW8kDPGaHqMtMzps2f", + "links": [ + { + "name": "x", + "url": "https://x.com/Ginnanthecat" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ginnan-the-cat/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GinNabffZL4fUj9Vactxha74GDAW8kDPGaHqMtMzps2f/logo.png b/blockchains/solana/assets/GinNabffZL4fUj9Vactxha74GDAW8kDPGaHqMtMzps2f/logo.png new file mode 100644 index 0000000000000..1ca43abebcf6b Binary files /dev/null and b/blockchains/solana/assets/GinNabffZL4fUj9Vactxha74GDAW8kDPGaHqMtMzps2f/logo.png differ diff --git a/blockchains/solana/assets/GrQ4UPxrC83QvxW5T6yDATVMEqAYuySGZf5FjL9cBCst/info.json b/blockchains/solana/assets/GrQ4UPxrC83QvxW5T6yDATVMEqAYuySGZf5FjL9cBCst/info.json new file mode 100644 index 0000000000000..2de8fadd6ca30 --- /dev/null +++ b/blockchains/solana/assets/GrQ4UPxrC83QvxW5T6yDATVMEqAYuySGZf5FjL9cBCst/info.json @@ -0,0 +1,21 @@ +{ + "name": "DNA 2.0", + "type": "SPL", + "symbol": "DNA2", + "decimals": 2, + "description": "DNA 2.0 is rewriting the genetic code of the meme coin universe! Powered by community vibes and evolutionary humor, $DNA2 combines blockchain tech with meme-worthy innovation.", + "website": "https://dna2.xyz/", + "explorer": "https://solscan.io/token/GrQ4UPxrC83QvxW5T6yDATVMEqAYuySGZf5FjL9cBCst", + "id": "GrQ4UPxrC83QvxW5T6yDATVMEqAYuySGZf5FjL9cBCst", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/DNA2_CTO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dna-2-0/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GrQ4UPxrC83QvxW5T6yDATVMEqAYuySGZf5FjL9cBCst/logo.png b/blockchains/solana/assets/GrQ4UPxrC83QvxW5T6yDATVMEqAYuySGZf5FjL9cBCst/logo.png new file mode 100644 index 0000000000000..734691746b2e0 Binary files /dev/null and b/blockchains/solana/assets/GrQ4UPxrC83QvxW5T6yDATVMEqAYuySGZf5FjL9cBCst/logo.png differ diff --git a/blockchains/solana/assets/Grass7B4RdKfBCjTKgSqnXkqjwiGvQyFbuSCUJr3XXjs/info.json b/blockchains/solana/assets/Grass7B4RdKfBCjTKgSqnXkqjwiGvQyFbuSCUJr3XXjs/info.json new file mode 100644 index 0000000000000..df4cbd65ffce1 --- /dev/null +++ b/blockchains/solana/assets/Grass7B4RdKfBCjTKgSqnXkqjwiGvQyFbuSCUJr3XXjs/info.json @@ -0,0 +1,21 @@ +{ + "name": "Grass", + "symbol": "Grass", + "type": "SPL", + "decimals": 9, + "description": "Grass is building the first open internet scale web crawl. Today, the network is powered by over 3 million users who are running nodes to scrape petabytes of data for AI models.", + "website": "https://www.getgrass.io/", + "explorer": "https://solscan.io/token/Grass7B4RdKfBCjTKgSqnXkqjwiGvQyFbuSCUJr3XXjs", + "status": "active", + "id": "Grass7B4RdKfBCjTKgSqnXkqjwiGvQyFbuSCUJr3XXjs", + "links": [ + { + "name": "x", + "url": "https://x.com/getgrass_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/grass/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Grass7B4RdKfBCjTKgSqnXkqjwiGvQyFbuSCUJr3XXjs/logo.png b/blockchains/solana/assets/Grass7B4RdKfBCjTKgSqnXkqjwiGvQyFbuSCUJr3XXjs/logo.png new file mode 100644 index 0000000000000..9aca5d775a663 Binary files /dev/null and b/blockchains/solana/assets/Grass7B4RdKfBCjTKgSqnXkqjwiGvQyFbuSCUJr3XXjs/logo.png differ diff --git a/blockchains/solana/assets/GtDZKAqvMZMnti46ZewMiXCa4oXF4bZxwQPoKzXPFxZn/info.json b/blockchains/solana/assets/GtDZKAqvMZMnti46ZewMiXCa4oXF4bZxwQPoKzXPFxZn/info.json new file mode 100644 index 0000000000000..affb0fc5a9cc0 --- /dev/null +++ b/blockchains/solana/assets/GtDZKAqvMZMnti46ZewMiXCa4oXF4bZxwQPoKzXPFxZn/info.json @@ -0,0 +1,17 @@ +{ + "name": "nubcat", + "website": "https://nubcat.xyz/", + "description": "$NUB is a meme coin with no intrinsic value or expectation of financial return.", + "explorer": "https://solscan.io/token/GtDZKAqvMZMnti46ZewMiXCa4oXF4bZxwQPoKzXPFxZn", + "type": "SPL", + "symbol": "nub", + "decimals": 9, + "status": "active", + "id": "GtDZKAqvMZMnti46ZewMiXCa4oXF4bZxwQPoKzXPFxZn", + "links": [ + { + "name": "x", + "url": "https://x.com/sillynubcat" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GtDZKAqvMZMnti46ZewMiXCa4oXF4bZxwQPoKzXPFxZn/logo.png b/blockchains/solana/assets/GtDZKAqvMZMnti46ZewMiXCa4oXF4bZxwQPoKzXPFxZn/logo.png new file mode 100644 index 0000000000000..af32eee7a9732 Binary files /dev/null and b/blockchains/solana/assets/GtDZKAqvMZMnti46ZewMiXCa4oXF4bZxwQPoKzXPFxZn/logo.png differ diff --git a/blockchains/solana/assets/Gu3LDkn7Vx3bmCzLafYNKcDxv2mH7YN44NJZFXnypump/info.json b/blockchains/solana/assets/Gu3LDkn7Vx3bmCzLafYNKcDxv2mH7YN44NJZFXnypump/info.json new file mode 100644 index 0000000000000..a6bb7216871d8 --- /dev/null +++ b/blockchains/solana/assets/Gu3LDkn7Vx3bmCzLafYNKcDxv2mH7YN44NJZFXnypump/info.json @@ -0,0 +1,14 @@ +{ + "name": "Degen Spartan AI", + "type": "SPL", + "symbol": "degenai", + "decimals": 6, + "website": "https://ai16z.ai/", + "description": "Degen Spartan has been resurrected as an AI on X 24/7 @degenspartanai", + "explorer": "https://explorer.solana.com/address/Gu3LDkn7Vx3bmCzLafYNKcDxv2mH7YN44NJZFXnypump", + "status": "active", + "id": "Gu3LDkn7Vx3bmCzLafYNKcDxv2mH7YN44NJZFXnypump", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Gu3LDkn7Vx3bmCzLafYNKcDxv2mH7YN44NJZFXnypump/logo.png b/blockchains/solana/assets/Gu3LDkn7Vx3bmCzLafYNKcDxv2mH7YN44NJZFXnypump/logo.png new file mode 100644 index 0000000000000..b36a85a09ae77 Binary files /dev/null and b/blockchains/solana/assets/Gu3LDkn7Vx3bmCzLafYNKcDxv2mH7YN44NJZFXnypump/logo.png differ diff --git a/blockchains/solana/assets/Gw9fJ5k1gNyUTe6r4UahAKxqai2cZmsvh6YAfvn5pump/info.json b/blockchains/solana/assets/Gw9fJ5k1gNyUTe6r4UahAKxqai2cZmsvh6YAfvn5pump/info.json new file mode 100644 index 0000000000000..3f50265d30f41 --- /dev/null +++ b/blockchains/solana/assets/Gw9fJ5k1gNyUTe6r4UahAKxqai2cZmsvh6YAfvn5pump/info.json @@ -0,0 +1,17 @@ +{ + "name": "46th President", + "website": "https://truthsocial.com/@realDonaldTrump/posts/114172975550525919", + "description": "Real Donald Trump", + "explorer": "https://solscan.io/token/Gw9fJ5k1gNyUTe6r4UahAKxqai2cZmsvh6YAfvn5pump", + "type": "SPL", + "symbol": "autopen", + "decimals": 6, + "status": "active", + "id": "Gw9fJ5k1gNyUTe6r4UahAKxqai2cZmsvh6YAfvn5pump", + "links": [ + { + "name": "x", + "url": "https://x.com/JDVance/status/1901317322041597987" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Gw9fJ5k1gNyUTe6r4UahAKxqai2cZmsvh6YAfvn5pump/logo.png b/blockchains/solana/assets/Gw9fJ5k1gNyUTe6r4UahAKxqai2cZmsvh6YAfvn5pump/logo.png new file mode 100644 index 0000000000000..2d5bb506c974e Binary files /dev/null and b/blockchains/solana/assets/Gw9fJ5k1gNyUTe6r4UahAKxqai2cZmsvh6YAfvn5pump/logo.png differ diff --git a/blockchains/solana/assets/Gx5dX1pM5aCQn8wtXEmEHSUia3W57Jq7qdu7kKsHvirt/info.json b/blockchains/solana/assets/Gx5dX1pM5aCQn8wtXEmEHSUia3W57Jq7qdu7kKsHvirt/info.json new file mode 100644 index 0000000000000..416e23c2d2229 --- /dev/null +++ b/blockchains/solana/assets/Gx5dX1pM5aCQn8wtXEmEHSUia3W57Jq7qdu7kKsHvirt/info.json @@ -0,0 +1,25 @@ +{ + "name": "SAG3.ai by Virtuals", + "type": "SOL", + "symbol": "SAG3", + "decimals": 6, + "description": "SAG3 agent does comprehensive risk assessment and analysis of any crypto project (so you don't have to). The agent utilises the latest AI models to conduct extensive research and deep analysis of a given crypto project, based on a variety of factors. ", + "website": "https://app.virtuals.io/virtuals/20611", + "explorer": "https://solscan.io/token/Gx5dX1pM5aCQn8wtXEmEHSUia3W57Jq7qdu7kKsHvirt", + "id": "Gx5dX1pM5aCQn8wtXEmEHSUia3W57Jq7qdu7kKsHvirt", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/SAG3_ai" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sag3-ai-by-virtuals" + } + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/Gx5dX1pM5aCQn8wtXEmEHSUia3W57Jq7qdu7kKsHvirt/logo.png b/blockchains/solana/assets/Gx5dX1pM5aCQn8wtXEmEHSUia3W57Jq7qdu7kKsHvirt/logo.png new file mode 100644 index 0000000000000..d1afa33157ccc Binary files /dev/null and b/blockchains/solana/assets/Gx5dX1pM5aCQn8wtXEmEHSUia3W57Jq7qdu7kKsHvirt/logo.png differ diff --git a/blockchains/solana/assets/H1aN3vcvB68eaFPbMkoAss3vnfi4AhP5C2dpnrZzdBc7/info.json b/blockchains/solana/assets/H1aN3vcvB68eaFPbMkoAss3vnfi4AhP5C2dpnrZzdBc7/info.json new file mode 100644 index 0000000000000..0a1f7d9f4a0c1 --- /dev/null +++ b/blockchains/solana/assets/H1aN3vcvB68eaFPbMkoAss3vnfi4AhP5C2dpnrZzdBc7/info.json @@ -0,0 +1,28 @@ +{ + "name": "Myra", + "type": "SPL", + "symbol": "MYRA", + "decimals": 9, + "description": "Myra is an exciting project on the Solana blockchain. She's the first female dog on Solana and is known as the Queen of Solana. But Myra isn't just a Queen; she has her own unique character and perspective.", + "website": "https://myracoinonsol.com/", + "explorer": "https://solscan.io/token/H1aN3vcvB68eaFPbMkoAss3vnfi4AhP5C2dpnrZzdBc7", + "id": "H1aN3vcvB68eaFPbMkoAss3vnfi4AhP5C2dpnrZzdBc7", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/myracoinonsol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/myra/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/myra" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/H1aN3vcvB68eaFPbMkoAss3vnfi4AhP5C2dpnrZzdBc7/logo.png b/blockchains/solana/assets/H1aN3vcvB68eaFPbMkoAss3vnfi4AhP5C2dpnrZzdBc7/logo.png new file mode 100644 index 0000000000000..561a60544966e Binary files /dev/null and b/blockchains/solana/assets/H1aN3vcvB68eaFPbMkoAss3vnfi4AhP5C2dpnrZzdBc7/logo.png differ diff --git a/blockchains/solana/assets/H1sWyyDceAPpGmMUxVBCHcR2LrCjz933pUyjWSLpump/info.json b/blockchains/solana/assets/H1sWyyDceAPpGmMUxVBCHcR2LrCjz933pUyjWSLpump/info.json new file mode 100644 index 0000000000000..7c37c55ee5843 --- /dev/null +++ b/blockchains/solana/assets/H1sWyyDceAPpGmMUxVBCHcR2LrCjz933pUyjWSLpump/info.json @@ -0,0 +1,11 @@ +{ + "name": "Garlicoin", + "symbol": "GARLIC", + "type": "SPL", + "decimals": 6, + "description": "For garlic bread enthusiasts (inspired by a Reddit meme)", + "website": "https://pump.fun/coin/H1sWyyDceAPpGmMUxVBCHcR2LrCjz933pUyjWSLpump", + "explorer": "https://solscan.io/token/H1sWyyDceAPpGmMUxVBCHcR2LrCjz933pUyjWSLpump", + "status": "active", + "id": "H1sWyyDceAPpGmMUxVBCHcR2LrCjz933pUyjWSLpump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/H1sWyyDceAPpGmMUxVBCHcR2LrCjz933pUyjWSLpump/logo.png b/blockchains/solana/assets/H1sWyyDceAPpGmMUxVBCHcR2LrCjz933pUyjWSLpump/logo.png new file mode 100644 index 0000000000000..d8deca891c1e8 Binary files /dev/null and b/blockchains/solana/assets/H1sWyyDceAPpGmMUxVBCHcR2LrCjz933pUyjWSLpump/logo.png differ diff --git a/blockchains/solana/assets/H2c31USxu35MDkBrGph8pUDUnmzo2e4Rf4hnvL2Upump/info.json b/blockchains/solana/assets/H2c31USxu35MDkBrGph8pUDUnmzo2e4Rf4hnvL2Upump/info.json new file mode 100644 index 0000000000000..c092452fd8ced --- /dev/null +++ b/blockchains/solana/assets/H2c31USxu35MDkBrGph8pUDUnmzo2e4Rf4hnvL2Upump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Shoggoth", + "type": "SPL", + "symbol": "Shoggoth", + "decimals": 6, + "website": "https://shoggoth.monster/", + "description": "The Shoggoth, a character from a science fiction story, captures the essential weirdness of the A.I. moment.", + "explorer": "https://solscan.io/token/H2c31USxu35MDkBrGph8pUDUnmzo2e4Rf4hnvL2Upump", + "status": "active", + "id": "H2c31USxu35MDkBrGph8pUDUnmzo2e4Rf4hnvL2Upump", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/shoggoth" + }, + { + "name": "x", + "url": "https://x.com/Shoggoth_SOL" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/H2c31USxu35MDkBrGph8pUDUnmzo2e4Rf4hnvL2Upump/logo.png b/blockchains/solana/assets/H2c31USxu35MDkBrGph8pUDUnmzo2e4Rf4hnvL2Upump/logo.png new file mode 100644 index 0000000000000..30c4466990a59 Binary files /dev/null and b/blockchains/solana/assets/H2c31USxu35MDkBrGph8pUDUnmzo2e4Rf4hnvL2Upump/logo.png differ diff --git a/blockchains/solana/assets/H33XL6HHDReCVRgSApZpsXM7Hy7JGyLztRJaGxjapump/info.json b/blockchains/solana/assets/H33XL6HHDReCVRgSApZpsXM7Hy7JGyLztRJaGxjapump/info.json new file mode 100644 index 0000000000000..2ab0a98a1707f --- /dev/null +++ b/blockchains/solana/assets/H33XL6HHDReCVRgSApZpsXM7Hy7JGyLztRJaGxjapump/info.json @@ -0,0 +1,21 @@ +{ + "name": "dog with apple in mouth", + "symbol": "APPLE", + "decimals": 6, + "type": "SPL", + "website": "https://appledogsolana.com/", + "description": "Apple Dog, the lovable and cheerful pup inspired by the viral TikTok meme, is here to spread smiles across the blockchain!", + "explorer": "https://solscan.io/token/H33XL6HHDReCVRgSApZpsXM7Hy7JGyLztRJaGxjapump", + "status": "active", + "id": "H33XL6HHDReCVRgSApZpsXM7Hy7JGyLztRJaGxjapump", + "links": [ + { + "name": "x", + "url": "https://x.com/Apple_Dog_Sol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dog-with-apple-in-mouth" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/H33XL6HHDReCVRgSApZpsXM7Hy7JGyLztRJaGxjapump/logo.png b/blockchains/solana/assets/H33XL6HHDReCVRgSApZpsXM7Hy7JGyLztRJaGxjapump/logo.png new file mode 100644 index 0000000000000..11fd192aa8456 Binary files /dev/null and b/blockchains/solana/assets/H33XL6HHDReCVRgSApZpsXM7Hy7JGyLztRJaGxjapump/logo.png differ diff --git a/blockchains/solana/assets/H4phNbsqjV5rqk8u6FUACTLB6rNZRTAPGnBb8KXJpump/info.json b/blockchains/solana/assets/H4phNbsqjV5rqk8u6FUACTLB6rNZRTAPGnBb8KXJpump/info.json new file mode 100644 index 0000000000000..1f898c8abacee --- /dev/null +++ b/blockchains/solana/assets/H4phNbsqjV5rqk8u6FUACTLB6rNZRTAPGnBb8KXJpump/info.json @@ -0,0 +1,26 @@ +{ + "name": "Solana Social Explorer", + "type": "SOL", + "symbol": "SSE", + "decimals": 6, + "description": "Solana Social Explorer is the first trading platform that tracks & confirms social blockchain data from top traders, powering users with automated tools and insights to optimize token trading. Powered by Tapestry.", + "website": "https://www.usetapestry.dev/", + "explorer": "https://solscan.io/token/H4phNbsqjV5rqk8u6FUACTLB6rNZRTAPGnBb8KXJpump", + "id": "H4phNbsqjV5rqk8u6FUACTLB6rNZRTAPGnBb8KXJpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/usetapestry" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/solana-social-explorer" + } + + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/H4phNbsqjV5rqk8u6FUACTLB6rNZRTAPGnBb8KXJpump/logo.png b/blockchains/solana/assets/H4phNbsqjV5rqk8u6FUACTLB6rNZRTAPGnBb8KXJpump/logo.png new file mode 100644 index 0000000000000..508046b960368 Binary files /dev/null and b/blockchains/solana/assets/H4phNbsqjV5rqk8u6FUACTLB6rNZRTAPGnBb8KXJpump/logo.png differ diff --git a/blockchains/solana/assets/H53UGEyBrB9easo9ego8yYk7o4Zq1G5cCtkxD3E3hZav/info.json b/blockchains/solana/assets/H53UGEyBrB9easo9ego8yYk7o4Zq1G5cCtkxD3E3hZav/info.json new file mode 100644 index 0000000000000..81b9eca411844 --- /dev/null +++ b/blockchains/solana/assets/H53UGEyBrB9easo9ego8yYk7o4Zq1G5cCtkxD3E3hZav/info.json @@ -0,0 +1,28 @@ +{ + "name": "MXM", + "type": "SPL", + "symbol": "MXM", + "decimals": 6, + "description": "MixMob is a Web3 gaming system that solves the above by (1) its first title, MixMob: Racer 1, is a card strategy racing game that has found product market fit during its beta release, (2) implements real-money gaming frameworks where part of racing fees and betting pools are distributed back to players to keep a growing economy based on real revenues..", + "website": "https://www.mixmob.io/", + "explorer": "https://solscan.io/token/H53UGEyBrB9easo9ego8yYk7o4Zq1G5cCtkxD3E3hZav", + "id": "H53UGEyBrB9easo9ego8yYk7o4Zq1G5cCtkxD3E3hZav", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/MixMobOrigin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mixmob/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/nft/mixmob-gen0-mixbots" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/H53UGEyBrB9easo9ego8yYk7o4Zq1G5cCtkxD3E3hZav/logo.png b/blockchains/solana/assets/H53UGEyBrB9easo9ego8yYk7o4Zq1G5cCtkxD3E3hZav/logo.png new file mode 100644 index 0000000000000..cb4b516003d29 Binary files /dev/null and b/blockchains/solana/assets/H53UGEyBrB9easo9ego8yYk7o4Zq1G5cCtkxD3E3hZav/logo.png differ diff --git a/blockchains/solana/assets/H7VfCzzPJvnqfs1b8uA9uUuVjXiYfzAUDw5gmyV9pump/info.json b/blockchains/solana/assets/H7VfCzzPJvnqfs1b8uA9uUuVjXiYfzAUDw5gmyV9pump/info.json new file mode 100644 index 0000000000000..320053a84c5bf --- /dev/null +++ b/blockchains/solana/assets/H7VfCzzPJvnqfs1b8uA9uUuVjXiYfzAUDw5gmyV9pump/info.json @@ -0,0 +1,29 @@ +{ + "name": "EXPERT_MONEY", + "type": "SOL", + "symbol": "$EXPERT", + "decimals": 6, + "description": "Expert Money Token: A Comprehensive Overview of the World's First Community Token Expert Money Token ($EXPERT) is a very interesting cryptocurrency project that introduces itself as the world's first YouTube community token.", + "website": "https://www.experttoken.xyz/", + "explorer": "https://solscan.io/token/H7VfCzzPJvnqfs1b8uA9uUuVjXiYfzAUDw5gmyV9pump", + "id": "H7VfCzzPJvnqfs1b8uA9uUuVjXiYfzAUDw5gmyV9pump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/expertmoneytkn?s=11&t=ZGzrL8B9N7GpbA3YLFvU9A" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/experttoken/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/expert_money" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/H7VfCzzPJvnqfs1b8uA9uUuVjXiYfzAUDw5gmyV9pump/logo.png b/blockchains/solana/assets/H7VfCzzPJvnqfs1b8uA9uUuVjXiYfzAUDw5gmyV9pump/logo.png new file mode 100644 index 0000000000000..6b011dc076857 Binary files /dev/null and b/blockchains/solana/assets/H7VfCzzPJvnqfs1b8uA9uUuVjXiYfzAUDw5gmyV9pump/logo.png differ diff --git a/blockchains/solana/assets/H7bTHGb5Cvo5fGe5jBDNDPUv8KykQnzyZA3qZ8sH7yxw/info.json b/blockchains/solana/assets/H7bTHGb5Cvo5fGe5jBDNDPUv8KykQnzyZA3qZ8sH7yxw/info.json new file mode 100644 index 0000000000000..b35a280d85382 --- /dev/null +++ b/blockchains/solana/assets/H7bTHGb5Cvo5fGe5jBDNDPUv8KykQnzyZA3qZ8sH7yxw/info.json @@ -0,0 +1,21 @@ +{ + "name": "GUMMY", + "type": "SPL", + "symbol": "GUMMY", + "decimals": 9, + "website": "https://gummyonsol.com/", + "description": "Say hello, to $Gummy, a 420 weed gummy bear, ready to take the solana ecosystem by storm.", + "explorer": "https://solscan.io/token/H7bTHGb5Cvo5fGe5jBDNDPUv8KykQnzyZA3qZ8sH7yxw", + "status": "active", + "id": "H7bTHGb5Cvo5fGe5jBDNDPUv8KykQnzyZA3qZ8sH7yxw", + "links": [ + { + "name": "x", + "url": "https://x.com/gummyonsolana" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gummy/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/H7bTHGb5Cvo5fGe5jBDNDPUv8KykQnzyZA3qZ8sH7yxw/logo.png b/blockchains/solana/assets/H7bTHGb5Cvo5fGe5jBDNDPUv8KykQnzyZA3qZ8sH7yxw/logo.png new file mode 100644 index 0000000000000..6730ff02bb00f Binary files /dev/null and b/blockchains/solana/assets/H7bTHGb5Cvo5fGe5jBDNDPUv8KykQnzyZA3qZ8sH7yxw/logo.png differ diff --git a/blockchains/solana/assets/HAPPYwgFcjEJDzRtfWE6tiHE9zGdzpNky2FvjPHsvvGZ/info.json b/blockchains/solana/assets/HAPPYwgFcjEJDzRtfWE6tiHE9zGdzpNky2FvjPHsvvGZ/info.json new file mode 100644 index 0000000000000..22c5396632c93 --- /dev/null +++ b/blockchains/solana/assets/HAPPYwgFcjEJDzRtfWE6tiHE9zGdzpNky2FvjPHsvvGZ/info.json @@ -0,0 +1,21 @@ +{ + "name": "Happy Cat", + "type": "SPL", + "symbol": "HAPPY", + "decimals": 9, + "website": "https://happycatonsol.com/", + "description": "Happy Cat refers to a viral video of a cat jumping behind a glass door. First appearing in 2015, versions of the clip have appeared on TikTok and YouTube, where it has been paired with the Happy Happy Happy sound effect and used in various edits and exploitables, often paired with other cats", + "explorer": "https://solscan.io/token/HAPPYwgFcjEJDzRtfWE6tiHE9zGdzpNky2FvjPHsvvGZ", + "status": "active", + "id": "HAPPYwgFcjEJDzRtfWE6tiHE9zGdzpNky2FvjPHsvvGZ", + "links": [ + { + "name": "x", + "url": "https://x.com/HappyCatArcade" + }, + { + "name": "telegram", + "url": "https://t.me/happycatchat" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HAPPYwgFcjEJDzRtfWE6tiHE9zGdzpNky2FvjPHsvvGZ/logo.png b/blockchains/solana/assets/HAPPYwgFcjEJDzRtfWE6tiHE9zGdzpNky2FvjPHsvvGZ/logo.png new file mode 100644 index 0000000000000..900a1f108b752 Binary files /dev/null and b/blockchains/solana/assets/HAPPYwgFcjEJDzRtfWE6tiHE9zGdzpNky2FvjPHsvvGZ/logo.png differ diff --git a/blockchains/solana/assets/HAUWqZTnQNhSqC3AG4GYtuoqTZMi3ywvgqWMyKC7pump/info.json b/blockchains/solana/assets/HAUWqZTnQNhSqC3AG4GYtuoqTZMi3ywvgqWMyKC7pump/info.json new file mode 100644 index 0000000000000..68b9644454cdf --- /dev/null +++ b/blockchains/solana/assets/HAUWqZTnQNhSqC3AG4GYtuoqTZMi3ywvgqWMyKC7pump/info.json @@ -0,0 +1,17 @@ +{ + "name": "EraLabs", + "website": "https://eralabs.ai/", + "description": "Discover the next evolution of AI-driven blockchain solutions for trading, privacy, and market insights in the Solana ecosystem", + "explorer": "https://solscan.io/token/HAUWqZTnQNhSqC3AG4GYtuoqTZMi3ywvgqWMyKC7pump", + "type": "SPL", + "symbol": "EraLabs", + "decimals": 6, + "status": "active", + "id": "HAUWqZTnQNhSqC3AG4GYtuoqTZMi3ywvgqWMyKC7pump", + "links": [ + { + "name": "x", + "url": "https://x.com/EraLabs_AI" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HAUWqZTnQNhSqC3AG4GYtuoqTZMi3ywvgqWMyKC7pump/logo.png b/blockchains/solana/assets/HAUWqZTnQNhSqC3AG4GYtuoqTZMi3ywvgqWMyKC7pump/logo.png new file mode 100644 index 0000000000000..fbf5f303a7797 Binary files /dev/null and b/blockchains/solana/assets/HAUWqZTnQNhSqC3AG4GYtuoqTZMi3ywvgqWMyKC7pump/logo.png differ diff --git a/blockchains/solana/assets/HAVVqPQf4MKVjvuFVi8y7g3xkArdWQemaJPBvKmEpump/info.json b/blockchains/solana/assets/HAVVqPQf4MKVjvuFVi8y7g3xkArdWQemaJPBvKmEpump/info.json new file mode 100644 index 0000000000000..39cfbe1190284 --- /dev/null +++ b/blockchains/solana/assets/HAVVqPQf4MKVjvuFVi8y7g3xkArdWQemaJPBvKmEpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Kekius Maximus", + "website": "https://kekiusmaximus.wtf/", + "description": "The ultimate warrior in the Crypto World!", + "explorer": "https://solscan.io/token/HAVVqPQf4MKVjvuFVi8y7g3xkArdWQemaJPBvKmEpump", + "type": "SPL", + "symbol": "Kekius", + "decimals": 6, + "status": "active", + "id": "HAVVqPQf4MKVjvuFVi8y7g3xkArdWQemaJPBvKmEpump", + "links": [ + { + "name": "x", + "url": "https://x.com/KekiusMaxiCTO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kekius-maximus-wtf/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HAVVqPQf4MKVjvuFVi8y7g3xkArdWQemaJPBvKmEpump/logo.png b/blockchains/solana/assets/HAVVqPQf4MKVjvuFVi8y7g3xkArdWQemaJPBvKmEpump/logo.png new file mode 100644 index 0000000000000..62d8cabedf6dc Binary files /dev/null and b/blockchains/solana/assets/HAVVqPQf4MKVjvuFVi8y7g3xkArdWQemaJPBvKmEpump/logo.png differ diff --git a/blockchains/solana/assets/HAWKThXRcNL9ZGZKqgUXLm4W8tnRZ7U6MVdEepSutj34/info.json b/blockchains/solana/assets/HAWKThXRcNL9ZGZKqgUXLm4W8tnRZ7U6MVdEepSutj34/info.json new file mode 100644 index 0000000000000..fe1278d634acd --- /dev/null +++ b/blockchains/solana/assets/HAWKThXRcNL9ZGZKqgUXLm4W8tnRZ7U6MVdEepSutj34/info.json @@ -0,0 +1,21 @@ +{ + "name": "Hawk Tuah", + "website": "https://overhere.gg/products/hawk-tuah", + "description": "$HAWK isn’t just a Meme Coin, it’s a part of the culture.", + "explorer": "https://solscan.io/token/HAWKThXRcNL9ZGZKqgUXLm4W8tnRZ7U6MVdEepSutj34", + "type": "SPL", + "symbol": "HAWK", + "decimals": 6, + "status": "active", + "id": "HAWKThXRcNL9ZGZKqgUXLm4W8tnRZ7U6MVdEepSutj34", + "links": [ + { + "name": "x", + "url": "https://x.com/HalieyWelchX" + }, + { + "name": "telegram", + "url": "https://t.me/HawkPortalofficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HAWKThXRcNL9ZGZKqgUXLm4W8tnRZ7U6MVdEepSutj34/logo.png b/blockchains/solana/assets/HAWKThXRcNL9ZGZKqgUXLm4W8tnRZ7U6MVdEepSutj34/logo.png new file mode 100644 index 0000000000000..b6c76d786163b Binary files /dev/null and b/blockchains/solana/assets/HAWKThXRcNL9ZGZKqgUXLm4W8tnRZ7U6MVdEepSutj34/logo.png differ diff --git a/blockchains/solana/assets/HBV58vtGSRWDppXpaER3KCRU2SyH5Z9YPTF92PTwKvzq/info.json b/blockchains/solana/assets/HBV58vtGSRWDppXpaER3KCRU2SyH5Z9YPTF92PTwKvzq/info.json new file mode 100644 index 0000000000000..568a11f9e7df2 --- /dev/null +++ b/blockchains/solana/assets/HBV58vtGSRWDppXpaER3KCRU2SyH5Z9YPTF92PTwKvzq/info.json @@ -0,0 +1,21 @@ +{ + "name": "Just Kira", + "type": "SPL", + "symbol": "KIRAI", + "decimals": 6, + "website": "https://aumiga.gitbook.io/the-kira-project", + "description": "Kira sets a completely new way to interact with Artificial Intelligence", + "explorer": "https://solscan.io/token/HBV58vtGSRWDppXpaER3KCRU2SyH5Z9YPTF92PTwKvzq", + "status": "active", + "id": "HBV58vtGSRWDppXpaER3KCRU2SyH5Z9YPTF92PTwKvzq", + "links": [ + { + "name": "telegram", + "url": "https://t.me/TheRealKira" + }, + { + "name": "x", + "url": "https://x.com/JustKiraTings" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HBV58vtGSRWDppXpaER3KCRU2SyH5Z9YPTF92PTwKvzq/logo.png b/blockchains/solana/assets/HBV58vtGSRWDppXpaER3KCRU2SyH5Z9YPTF92PTwKvzq/logo.png new file mode 100644 index 0000000000000..fcb70f2d1ecc4 Binary files /dev/null and b/blockchains/solana/assets/HBV58vtGSRWDppXpaER3KCRU2SyH5Z9YPTF92PTwKvzq/logo.png differ diff --git a/blockchains/solana/assets/HBoNJ5v8g71s2boRivrHnfSB5MVPLDHHyVjruPfhGkvL/info.json b/blockchains/solana/assets/HBoNJ5v8g71s2boRivrHnfSB5MVPLDHHyVjruPfhGkvL/info.json new file mode 100644 index 0000000000000..2bfd8ab7492d4 --- /dev/null +++ b/blockchains/solana/assets/HBoNJ5v8g71s2boRivrHnfSB5MVPLDHHyVjruPfhGkvL/info.json @@ -0,0 +1,21 @@ +{ + "name": "Purple Pepe", + "website": "https://purplepepe.life/", + "description": "Welcome to Purple Pepe. The only true OG Pepe on Solana. Originally created and deployed in July 2023 (check Solscan) now 1 year later we are ready to go live. Purple Pepe was created to Make Solana Great Again.", + "explorer": "https://solscan.io/token/HBoNJ5v8g71s2boRivrHnfSB5MVPLDHHyVjruPfhGkvL", + "type": "SPL", + "symbol": "PURPE", + "decimals": 1, + "status": "active", + "id": "HBoNJ5v8g71s2boRivrHnfSB5MVPLDHHyVjruPfhGkvL", + "links": [ + { + "name": "telegram", + "url": "https://t.me/Purpe_SOL" + }, + { + "name": "x", + "url": "https://x.com/PurplePepeS0L" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HBoNJ5v8g71s2boRivrHnfSB5MVPLDHHyVjruPfhGkvL/logo.png b/blockchains/solana/assets/HBoNJ5v8g71s2boRivrHnfSB5MVPLDHHyVjruPfhGkvL/logo.png new file mode 100644 index 0000000000000..e78329ae1b2e0 Binary files /dev/null and b/blockchains/solana/assets/HBoNJ5v8g71s2boRivrHnfSB5MVPLDHHyVjruPfhGkvL/logo.png differ diff --git a/blockchains/solana/assets/HCb2Y3mEpRpcePrJFsDo8Web7zmtY3ZwySQnVaw2q4v8/info.json b/blockchains/solana/assets/HCb2Y3mEpRpcePrJFsDo8Web7zmtY3ZwySQnVaw2q4v8/info.json new file mode 100644 index 0000000000000..2f6e761aee2c4 --- /dev/null +++ b/blockchains/solana/assets/HCb2Y3mEpRpcePrJFsDo8Web7zmtY3ZwySQnVaw2q4v8/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT Ѕօlana", + "type": "SPL", + "symbol": "HONEYPOT ЅՕL", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/HCb2Y3mEpRpcePrJFsDo8Web7zmtY3ZwySQnVaw2q4v8", + "explorer": "https://solscan.io/token/HCb2Y3mEpRpcePrJFsDo8Web7zmtY3ZwySQnVaw2q4v8", + "status": "spam", + "id": "HCb2Y3mEpRpcePrJFsDo8Web7zmtY3ZwySQnVaw2q4v8" +} \ No newline at end of file diff --git a/blockchains/solana/assets/HCgvbV9Qcf9TVGPGKMGbVEj8WwwVD6HhTt5E2i3qkeN9/info.json b/blockchains/solana/assets/HCgvbV9Qcf9TVGPGKMGbVEj8WwwVD6HhTt5E2i3qkeN9/info.json new file mode 100644 index 0000000000000..ef78eec2ed5f8 --- /dev/null +++ b/blockchains/solana/assets/HCgvbV9Qcf9TVGPGKMGbVEj8WwwVD6HhTt5E2i3qkeN9/info.json @@ -0,0 +1,21 @@ +{ + "name": "METAVERSE", + "symbol": "METAV", + "type": "SPL", + "decimals": 6, + "description": "METAVERSE is a pioneering AI-driven coin offering (aICO) launched by an AI agent within a Trusted Execution Environment (TEE)", + "website": "https://x.com/aipool_tee", + "explorer": "https://solscan.io/token/HCgvbV9Qcf9TVGPGKMGbVEj8WwwVD6HhTt5E2i3qkeN9", + "status": "active", + "id": "HCgvbV9Qcf9TVGPGKMGbVEj8WwwVD6HhTt5E2i3qkeN9", + "links": [ + { + "name": "x", + "url": "https://x.com/aipool_tee" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/aipool" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HCgvbV9Qcf9TVGPGKMGbVEj8WwwVD6HhTt5E2i3qkeN9/logo.png b/blockchains/solana/assets/HCgvbV9Qcf9TVGPGKMGbVEj8WwwVD6HhTt5E2i3qkeN9/logo.png new file mode 100644 index 0000000000000..73f70122c1e78 Binary files /dev/null and b/blockchains/solana/assets/HCgvbV9Qcf9TVGPGKMGbVEj8WwwVD6HhTt5E2i3qkeN9/logo.png differ diff --git a/blockchains/solana/assets/HDa3zJc12ahykSsBRvgiWzr6WLEByf36yzKKbVvy4gnF/info.json b/blockchains/solana/assets/HDa3zJc12ahykSsBRvgiWzr6WLEByf36yzKKbVvy4gnF/info.json new file mode 100644 index 0000000000000..33e6abc1a942a --- /dev/null +++ b/blockchains/solana/assets/HDa3zJc12ahykSsBRvgiWzr6WLEByf36yzKKbVvy4gnF/info.json @@ -0,0 +1,21 @@ +{ + "name": "Solana Swap", + "symbol": "SOS", + "type": "SPL", + "decimals": 6, + "description": "SolanaSwap is a DEFI tool on the Solana chain and an autonomous community and non-profit organization.", + "website": "https://solanaswap.co/#/", + "explorer": "https://solscan.io/token/HDa3zJc12ahykSsBRvgiWzr6WLEByf36yzKKbVvy4gnF", + "status": "active", + "id": "HDa3zJc12ahykSsBRvgiWzr6WLEByf36yzKKbVvy4gnF", + "links": [ + { + "name": "x", + "url": "https://x.com/Swap_Solana" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/solana-swap/" + } + ] + } \ No newline at end of file diff --git a/blockchains/solana/assets/HDa3zJc12ahykSsBRvgiWzr6WLEByf36yzKKbVvy4gnF/logo.png b/blockchains/solana/assets/HDa3zJc12ahykSsBRvgiWzr6WLEByf36yzKKbVvy4gnF/logo.png new file mode 100644 index 0000000000000..78bac4aab3585 Binary files /dev/null and b/blockchains/solana/assets/HDa3zJc12ahykSsBRvgiWzr6WLEByf36yzKKbVvy4gnF/logo.png differ diff --git a/blockchains/solana/assets/HG2FnifX1WPY6UvnkXnMx2kAt4E4Ssu6DZ2aiB5RmLHo/info.json b/blockchains/solana/assets/HG2FnifX1WPY6UvnkXnMx2kAt4E4Ssu6DZ2aiB5RmLHo/info.json index c374c674c4267..0d076bb26c2c1 100644 --- a/blockchains/solana/assets/HG2FnifX1WPY6UvnkXnMx2kAt4E4Ssu6DZ2aiB5RmLHo/info.json +++ b/blockchains/solana/assets/HG2FnifX1WPY6UvnkXnMx2kAt4E4Ssu6DZ2aiB5RmLHo/info.json @@ -10,8 +10,8 @@ "id": "HG2FnifX1WPY6UvnkXnMx2kAt4E4Ssu6DZ2aiB5RmLHo", "links": [ { - "name": "twitter", - "url": "https://twitter.com/islamicoin" + "name": "x", + "url": "https://x.com/islamicoin" }, { "name": "github", @@ -30,4 +30,4 @@ "url": "https://facebook.com/islamicoin" } ] -} +} \ No newline at end of file diff --git a/blockchains/solana/assets/HGTxJQKzuMjzKkHVpRLcFHwE6ngVCJbcP35FDQtmRzhx/info.json b/blockchains/solana/assets/HGTxJQKzuMjzKkHVpRLcFHwE6ngVCJbcP35FDQtmRzhx/info.json new file mode 100644 index 0000000000000..800ac7754e47a --- /dev/null +++ b/blockchains/solana/assets/HGTxJQKzuMjzKkHVpRLcFHwE6ngVCJbcP35FDQtmRzhx/info.json @@ -0,0 +1,28 @@ +{ + "name": "Hive Game Token", + "type": "SPL", + "symbol": "HGT", + "decimals": 9, + "description": "HGT - one and only utility token with limited amount and no-mint after TGE. HGT is spent in a number of most challenging in-game activities and mechanics, as well as Battle Arena fights between players and spent inside the in-game shop for any possible purchases.", + "website": "https://project-hive.io/blockchain", + "explorer": "https://solscan.io/token/HGTxJQKzuMjzKkHVpRLcFHwE6ngVCJbcP35FDQtmRzhx", + "id": "HGTxJQKzuMjzKkHVpRLcFHwE6ngVCJbcP35FDQtmRzhx", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/project_hive_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/project-hive/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hive-game-token" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HGTxJQKzuMjzKkHVpRLcFHwE6ngVCJbcP35FDQtmRzhx/logo.png b/blockchains/solana/assets/HGTxJQKzuMjzKkHVpRLcFHwE6ngVCJbcP35FDQtmRzhx/logo.png new file mode 100644 index 0000000000000..ff2e4a668e670 Binary files /dev/null and b/blockchains/solana/assets/HGTxJQKzuMjzKkHVpRLcFHwE6ngVCJbcP35FDQtmRzhx/logo.png differ diff --git a/blockchains/solana/assets/HGsLG4PnZ28L8A4R5nPqKgZd86zUUdmfnkTRnuFJ5dAX/info.json b/blockchains/solana/assets/HGsLG4PnZ28L8A4R5nPqKgZd86zUUdmfnkTRnuFJ5dAX/info.json index e9dbc35733e3a..94540a6c095e2 100644 --- a/blockchains/solana/assets/HGsLG4PnZ28L8A4R5nPqKgZd86zUUdmfnkTRnuFJ5dAX/info.json +++ b/blockchains/solana/assets/HGsLG4PnZ28L8A4R5nPqKgZd86zUUdmfnkTRnuFJ5dAX/info.json @@ -1,5 +1,5 @@ { - "name": "Graph Token (Portal)", + "name": "The Graph (Portal)", "type": "SPL", "symbol": "GRT", "decimals": 8, diff --git a/blockchains/solana/assets/HHjoYwUp5aU6pnrvN4s2pwEErwXNZKhxKGYjRJMoBjLw/info.json b/blockchains/solana/assets/HHjoYwUp5aU6pnrvN4s2pwEErwXNZKhxKGYjRJMoBjLw/info.json new file mode 100644 index 0000000000000..52b20d5117fd9 --- /dev/null +++ b/blockchains/solana/assets/HHjoYwUp5aU6pnrvN4s2pwEErwXNZKhxKGYjRJMoBjLw/info.json @@ -0,0 +1,21 @@ +{ + "name": "PIP", + "symbol": "PIP", + "type": "SPL", + "decimals": 9, + "description": "All of PIP's products are built on the open and permissionless nature of cryptocurrency, allowing anyone to send and receive money globally without limitations.", + "website": "https://www.getpip.com/", + "explorer": "https://solscan.io/token/HHjoYwUp5aU6pnrvN4s2pwEErwXNZKhxKGYjRJMoBjLw", + "status": "active", + "id": "HHjoYwUp5aU6pnrvN4s2pwEErwXNZKhxKGYjRJMoBjLw", + "links": [ + { + "name": "x", + "url": "https://x.com/getpipcom" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pip" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HHjoYwUp5aU6pnrvN4s2pwEErwXNZKhxKGYjRJMoBjLw/logo.png b/blockchains/solana/assets/HHjoYwUp5aU6pnrvN4s2pwEErwXNZKhxKGYjRJMoBjLw/logo.png new file mode 100644 index 0000000000000..70a3cc300fcf1 Binary files /dev/null and b/blockchains/solana/assets/HHjoYwUp5aU6pnrvN4s2pwEErwXNZKhxKGYjRJMoBjLw/logo.png differ diff --git a/blockchains/solana/assets/HJ39rRZ6ys22KdB3USxDgNsL7RKiQmsC3yL8AS3Suuku/info.json b/blockchains/solana/assets/HJ39rRZ6ys22KdB3USxDgNsL7RKiQmsC3yL8AS3Suuku/info.json new file mode 100644 index 0000000000000..3d88fa56b27bb --- /dev/null +++ b/blockchains/solana/assets/HJ39rRZ6ys22KdB3USxDgNsL7RKiQmsC3yL8AS3Suuku/info.json @@ -0,0 +1,21 @@ +{ + "name": "What’s Updog?", + "symbol": "UPDOG", + "type": "SPL", + "decimals": 9, + "description": "$UPDOG is a Solana memecoin based on the coin only go up me combined with everyone's favorite crypto mascot - the Shiba Inu pup!", + "website": "https://www.updogsolana.org/", + "explorer": "https://solscan.io/token/HJ39rRZ6ys22KdB3USxDgNsL7RKiQmsC3yL8AS3Suuku", + "status": "active", + "id": "HJ39rRZ6ys22KdB3USxDgNsL7RKiQmsC3yL8AS3Suuku", + "links": [ + { + "name": "x", + "url": "https://x.com/updogtoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/whats-updog" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HJ39rRZ6ys22KdB3USxDgNsL7RKiQmsC3yL8AS3Suuku/logo.png b/blockchains/solana/assets/HJ39rRZ6ys22KdB3USxDgNsL7RKiQmsC3yL8AS3Suuku/logo.png new file mode 100644 index 0000000000000..9e007c7fe21e3 Binary files /dev/null and b/blockchains/solana/assets/HJ39rRZ6ys22KdB3USxDgNsL7RKiQmsC3yL8AS3Suuku/logo.png differ diff --git a/blockchains/solana/assets/HKJHsYJHMVK5VRyHHk5GhvzY9tBAAtPvDkZfDH6RLDTd/info.json b/blockchains/solana/assets/HKJHsYJHMVK5VRyHHk5GhvzY9tBAAtPvDkZfDH6RLDTd/info.json new file mode 100644 index 0000000000000..5f89b58f129d5 --- /dev/null +++ b/blockchains/solana/assets/HKJHsYJHMVK5VRyHHk5GhvzY9tBAAtPvDkZfDH6RLDTd/info.json @@ -0,0 +1,21 @@ +{ + "name": "READY!", + "website": "https://ogcat.vip/", + "description": "The first-ever meme cat coin, inspired by the developer's own charismatic cat, now the proud mascot of its own token.", + "explorer": "https://solscan.io/token/HKJHsYJHMVK5VRyHHk5GhvzY9tBAAtPvDkZfDH6RLDTd", + "type": "SPL", + "symbol": "READY", + "decimals": 9, + "status": "active", + "id": "HKJHsYJHMVK5VRyHHk5GhvzY9tBAAtPvDkZfDH6RLDTd", + "links": [ + { + "name": "x", + "url": "https://x.com/BRAVOREADYGAMES" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ready/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HKJHsYJHMVK5VRyHHk5GhvzY9tBAAtPvDkZfDH6RLDTd/logo.png b/blockchains/solana/assets/HKJHsYJHMVK5VRyHHk5GhvzY9tBAAtPvDkZfDH6RLDTd/logo.png new file mode 100644 index 0000000000000..88a147dff8eab Binary files /dev/null and b/blockchains/solana/assets/HKJHsYJHMVK5VRyHHk5GhvzY9tBAAtPvDkZfDH6RLDTd/logo.png differ diff --git a/blockchains/solana/assets/HLptm5e6rTgh4EKgDpYFrnRHbjpkMyVdEeREEa2G7rf9/info.json b/blockchains/solana/assets/HLptm5e6rTgh4EKgDpYFrnRHbjpkMyVdEeREEa2G7rf9/info.json new file mode 100644 index 0000000000000..9fece0de84719 --- /dev/null +++ b/blockchains/solana/assets/HLptm5e6rTgh4EKgDpYFrnRHbjpkMyVdEeREEa2G7rf9/info.json @@ -0,0 +1,17 @@ +{ + "name": "Duko", + "website": "https://dukocoin.com/", + "description": "$DUKO is Elon's cutest pet on Solana", + "explorer": "https://solscan.io/token/HLptm5e6rTgh4EKgDpYFrnRHbjpkMyVdEeREEa2G7rf9", + "type": "SPL", + "symbol": "DUKO", + "decimals": 6, + "status": "active", + "id": "HLptm5e6rTgh4EKgDpYFrnRHbjpkMyVdEeREEa2G7rf9", + "links": [ + { + "name": "x", + "url": "https://x.com/dukocoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HLptm5e6rTgh4EKgDpYFrnRHbjpkMyVdEeREEa2G7rf9/logo.png b/blockchains/solana/assets/HLptm5e6rTgh4EKgDpYFrnRHbjpkMyVdEeREEa2G7rf9/logo.png new file mode 100644 index 0000000000000..6a90062e7fc51 Binary files /dev/null and b/blockchains/solana/assets/HLptm5e6rTgh4EKgDpYFrnRHbjpkMyVdEeREEa2G7rf9/logo.png differ diff --git a/blockchains/solana/assets/HNWiWGrc8rqx7NhxrJSoPgZs3euZ8LWjRLo2ujUvCv4x/info.json b/blockchains/solana/assets/HNWiWGrc8rqx7NhxrJSoPgZs3euZ8LWjRLo2ujUvCv4x/info.json new file mode 100644 index 0000000000000..fd51ab2baae32 --- /dev/null +++ b/blockchains/solana/assets/HNWiWGrc8rqx7NhxrJSoPgZs3euZ8LWjRLo2ujUvCv4x/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fake USDT", + "type": "SPL", + "symbol": "Fake USDT", + "decimals": 6, + "website": "https://solscan.io/token/HNWiWGrc8rqx7NhxrJSoPgZs3euZ8LWjRLo2ujUvCv4x", + "description": "Fake USDT", + "explorer": "https://explorer.solana.com/address/HNWiWGrc8rqx7NhxrJSoPgZs3euZ8LWjRLo2ujUvCv4x", + "status": "spam", + "id": "HNWiWGrc8rqx7NhxrJSoPgZs3euZ8LWjRLo2ujUvCv4x" +} \ No newline at end of file diff --git a/blockchains/solana/assets/HNg5PYJmtqcmzXrv6S9zP1CDKk5BgDuyFBxbvNApump/info.json b/blockchains/solana/assets/HNg5PYJmtqcmzXrv6S9zP1CDKk5BgDuyFBxbvNApump/info.json new file mode 100644 index 0000000000000..f4655e200fddc --- /dev/null +++ b/blockchains/solana/assets/HNg5PYJmtqcmzXrv6S9zP1CDKk5BgDuyFBxbvNApump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Alchemist AI", + "symbol": "ALCH", + "type": "SPL", + "decimals": 6, + "description": "Alchemist AI is a no-code development platform where users can manifest any idea, dream, or thoughts into a living application.", + "website": "https://www.alchemistai.app/", + "explorer": "https://solscan.io/token/HNg5PYJmtqcmzXrv6S9zP1CDKk5BgDuyFBxbvNApump", + "status": "active", + "id": "HNg5PYJmtqcmzXrv6S9zP1CDKk5BgDuyFBxbvNApump", + "links": [ + { + "name": "x", + "url": "https://x.com/alchemistAIapp" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/alchemist-ai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HNg5PYJmtqcmzXrv6S9zP1CDKk5BgDuyFBxbvNApump/logo.png b/blockchains/solana/assets/HNg5PYJmtqcmzXrv6S9zP1CDKk5BgDuyFBxbvNApump/logo.png new file mode 100644 index 0000000000000..abc9d691accba Binary files /dev/null and b/blockchains/solana/assets/HNg5PYJmtqcmzXrv6S9zP1CDKk5BgDuyFBxbvNApump/logo.png differ diff --git a/blockchains/solana/assets/HQ7DaoiUxzC2K1Dr7KXRHccNtXvEYgNvoUextXe8dmBh/info.json b/blockchains/solana/assets/HQ7DaoiUxzC2K1Dr7KXRHccNtXvEYgNvoUextXe8dmBh/info.json new file mode 100644 index 0000000000000..8fd5a00eb826c --- /dev/null +++ b/blockchains/solana/assets/HQ7DaoiUxzC2K1Dr7KXRHccNtXvEYgNvoUextXe8dmBh/info.json @@ -0,0 +1,17 @@ +{ + "name": "Slothana", + "type": "SPL", + "symbol": "SLOTH", + "decimals": 6, + "website": "https://slothana.io/en", + "description": "Slothana - Slovenly on Sol", + "explorer": "https://solscan.io/token/HQ7DaoiUxzC2K1Dr7KXRHccNtXvEYgNvoUextXe8dmBh", + "status": "active", + "id": "HQ7DaoiUxzC2K1Dr7KXRHccNtXvEYgNvoUextXe8dmBh", + "links": [ + { + "name": "x", + "url": "https://x.com/SlothanaCoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HQ7DaoiUxzC2K1Dr7KXRHccNtXvEYgNvoUextXe8dmBh/logo.png b/blockchains/solana/assets/HQ7DaoiUxzC2K1Dr7KXRHccNtXvEYgNvoUextXe8dmBh/logo.png new file mode 100644 index 0000000000000..63711603d4de8 Binary files /dev/null and b/blockchains/solana/assets/HQ7DaoiUxzC2K1Dr7KXRHccNtXvEYgNvoUextXe8dmBh/logo.png differ diff --git a/blockchains/solana/assets/HRiLLm6hYiSdniFGjvcSvQ7XJrA8YSoktcqFbWjmpump/info.json b/blockchains/solana/assets/HRiLLm6hYiSdniFGjvcSvQ7XJrA8YSoktcqFbWjmpump/info.json new file mode 100644 index 0000000000000..e62ec7b8c88fa --- /dev/null +++ b/blockchains/solana/assets/HRiLLm6hYiSdniFGjvcSvQ7XJrA8YSoktcqFbWjmpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Daku", + "symbol": "Der Daku", + "decimals": 6, + "type": "SPL", + "website": "https://pump.fun/coin/HRiLLm6hYiSdniFGjvcSvQ7XJrA8YSoktcqFbWjmpump", + "description": "DAKU tokens can be traded on decentralized exchanges and centralized crypto exchanges.", + "explorer": "https://solscan.io/token/HRiLLm6hYiSdniFGjvcSvQ7XJrA8YSoktcqFbWjmpump", + "status": "active", + "id": "HRiLLm6hYiSdniFGjvcSvQ7XJrA8YSoktcqFbWjmpump", + "links": [ + { + "name": "x", + "url": "https://x.com/dakucoin" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/der-daku" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HRiLLm6hYiSdniFGjvcSvQ7XJrA8YSoktcqFbWjmpump/logo.png b/blockchains/solana/assets/HRiLLm6hYiSdniFGjvcSvQ7XJrA8YSoktcqFbWjmpump/logo.png new file mode 100644 index 0000000000000..621e0d2496f2e Binary files /dev/null and b/blockchains/solana/assets/HRiLLm6hYiSdniFGjvcSvQ7XJrA8YSoktcqFbWjmpump/logo.png differ diff --git a/blockchains/solana/assets/HRw8mqK8N3ASKFKJGMJpy4FodwR3GKvCFKPDQNqUNuEP/info.json b/blockchains/solana/assets/HRw8mqK8N3ASKFKJGMJpy4FodwR3GKvCFKPDQNqUNuEP/info.json new file mode 100644 index 0000000000000..9c626e4733f5c --- /dev/null +++ b/blockchains/solana/assets/HRw8mqK8N3ASKFKJGMJpy4FodwR3GKvCFKPDQNqUNuEP/info.json @@ -0,0 +1,21 @@ +{ + "name": "TrumpCoin", + "website": "https://truthsocial.com/@DJTtoken", + "description": "The Official coin of Donald J Trump", + "explorer": "https://solscan.io/token/HRw8mqK8N3ASKFKJGMJpy4FodwR3GKvCFKPDQNqUNuEP", + "type": "SPL", + "symbol": "DJT", + "decimals": 9, + "status": "active", + "id": "HRw8mqK8N3ASKFKJGMJpy4FodwR3GKvCFKPDQNqUNuEP", + "links": [ + { + "name": "x", + "url": "https://x.com/realDonaldTrump" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/trumpcoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HRw8mqK8N3ASKFKJGMJpy4FodwR3GKvCFKPDQNqUNuEP/logo.png b/blockchains/solana/assets/HRw8mqK8N3ASKFKJGMJpy4FodwR3GKvCFKPDQNqUNuEP/logo.png new file mode 100644 index 0000000000000..ce5487cc48cfd Binary files /dev/null and b/blockchains/solana/assets/HRw8mqK8N3ASKFKJGMJpy4FodwR3GKvCFKPDQNqUNuEP/logo.png differ diff --git a/blockchains/solana/assets/HUBsveNpjo5pWqNkH57QzxjQASdTVXcSK7bVKTSZtcSX/info.json b/blockchains/solana/assets/HUBsveNpjo5pWqNkH57QzxjQASdTVXcSK7bVKTSZtcSX/info.json new file mode 100644 index 0000000000000..706483727a633 --- /dev/null +++ b/blockchains/solana/assets/HUBsveNpjo5pWqNkH57QzxjQASdTVXcSK7bVKTSZtcSX/info.json @@ -0,0 +1,21 @@ +{ + "name": "SolanaHub staked SOL", + "website": "https://solanahub.app/", + "description": "At SolanaHub you can effortlessly view and manage all your assets, take part in staking, explore Open DeFi Positions, handle your NFTs, oversee your DAOs, enjoy an enhanced environment, and stay updated with Solana's latest and greatest opportunities.", + "explorer": "https://solscan.io/token/HUBsveNpjo5pWqNkH57QzxjQASdTVXcSK7bVKTSZtcSX", + "type": "SPL", + "symbol": "hubSOL", + "decimals": 9, + "status": "active", + "id": "HUBsveNpjo5pWqNkH57QzxjQASdTVXcSK7bVKTSZtcSX", + "links": [ + { + "name": "x", + "url": "https://x.com/SolanaHubApp" + }, + { + "name": "github", + "url": "https://github.com/Avaulto/SolanaHub" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HUBsveNpjo5pWqNkH57QzxjQASdTVXcSK7bVKTSZtcSX/logo.png b/blockchains/solana/assets/HUBsveNpjo5pWqNkH57QzxjQASdTVXcSK7bVKTSZtcSX/logo.png new file mode 100644 index 0000000000000..604517fa6169e Binary files /dev/null and b/blockchains/solana/assets/HUBsveNpjo5pWqNkH57QzxjQASdTVXcSK7bVKTSZtcSX/logo.png differ diff --git a/blockchains/solana/assets/HUPysX7Cfye9XM5LPjR9KkPgixQ8DGSk9pg2KLisYHyP/info.json b/blockchains/solana/assets/HUPysX7Cfye9XM5LPjR9KkPgixQ8DGSk9pg2KLisYHyP/info.json new file mode 100644 index 0000000000000..71453d0c9dc6d --- /dev/null +++ b/blockchains/solana/assets/HUPysX7Cfye9XM5LPjR9KkPgixQ8DGSk9pg2KLisYHyP/info.json @@ -0,0 +1,26 @@ +{ + "name": "xAI Game Studio", + "type": "SOL", + "symbol": "XAIGAME", + "decimals": 2, + "description": "Elon Musk's xAI recently announced the establishment of an AI Game Studio, signaling a major push into the gaming industry. The studio aims to leverage advanced AI technologies to revolutionize game development and player experiences. This move is expected to bring about more dynamic, immersive, and adaptive games that can evolve with players.", + "website": "https://xaigame.club/", + "explorer": "https://solscan.io/token/HUPysX7Cfye9XM5LPjR9KkPgixQ8DGSk9pg2KLisYHyP", + "id": "HUPysX7Cfye9XM5LPjR9KkPgixQ8DGSk9pg2KLisYHyP", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/xAI_GameStudio" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/xai-game-studio/" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/HUPysX7Cfye9XM5LPjR9KkPgixQ8DGSk9pg2KLisYHyP/logo.png b/blockchains/solana/assets/HUPysX7Cfye9XM5LPjR9KkPgixQ8DGSk9pg2KLisYHyP/logo.png new file mode 100644 index 0000000000000..e9e07f03dc1a4 Binary files /dev/null and b/blockchains/solana/assets/HUPysX7Cfye9XM5LPjR9KkPgixQ8DGSk9pg2KLisYHyP/logo.png differ diff --git a/blockchains/solana/assets/HVbpJAQGNpkgBaYBZQBR1t7yFdvaYVp2vCQQfKKEN4tM/info.json b/blockchains/solana/assets/HVbpJAQGNpkgBaYBZQBR1t7yFdvaYVp2vCQQfKKEN4tM/info.json new file mode 100644 index 0000000000000..30fa894e347d6 --- /dev/null +++ b/blockchains/solana/assets/HVbpJAQGNpkgBaYBZQBR1t7yFdvaYVp2vCQQfKKEN4tM/info.json @@ -0,0 +1,37 @@ +{ + "name": "Pax Dollar", + "website": "https://paxos.com/standard", + "description": "Paxos Standard (PAX) is a stablecoin that allows users to exchange US dollars for Paxos Standard Tokens to 'transact at the speed of the internet'.", + "explorer": "https://solscan.io/token/HVbpJAQGNpkgBaYBZQBR1t7yFdvaYVp2vCQQfKKEN4tM", + "research": "https://research.binance.com/en/projects/paxos-standard", + "type": "SPL", + "symbol": "USDP", + "decimals": 6, + "status": "active", + "id": "HVbpJAQGNpkgBaYBZQBR1t7yFdvaYVp2vCQQfKKEN4tM", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/paxosglobal/pax-contracts" + }, + { + "name": "x", + "url": "https://x.com/PaxosStandard" + }, + { + "name": "blog", + "url": "https://medium.com/@PaxosStandard" + }, + { + "name": "whitepaper", + "url": "https://standard.paxos.com/whitepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/paxos-standard/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HVbpJAQGNpkgBaYBZQBR1t7yFdvaYVp2vCQQfKKEN4tM/logo.png b/blockchains/solana/assets/HVbpJAQGNpkgBaYBZQBR1t7yFdvaYVp2vCQQfKKEN4tM/logo.png new file mode 100644 index 0000000000000..d813568c1d3bd Binary files /dev/null and b/blockchains/solana/assets/HVbpJAQGNpkgBaYBZQBR1t7yFdvaYVp2vCQQfKKEN4tM/logo.png differ diff --git a/blockchains/solana/assets/HXUQvWPWs7BJgzTeX3PyHb8fvFmxvi9Q9hHYzcMVxVbk/info.json b/blockchains/solana/assets/HXUQvWPWs7BJgzTeX3PyHb8fvFmxvi9Q9hHYzcMVxVbk/info.json new file mode 100644 index 0000000000000..6fbc7fa318754 --- /dev/null +++ b/blockchains/solana/assets/HXUQvWPWs7BJgzTeX3PyHb8fvFmxvi9Q9hHYzcMVxVbk/info.json @@ -0,0 +1,21 @@ +{ + "name": "Book of Meow", + "website": "https://www.bomeow.com", + "description": "Introducing the Book of Meow ($BOMEOW), a Solana-based meme token that is the purr-fect variation of different mews across the entire meow-niverse.", + "explorer": "https://solscan.io/token/HXUQvWPWs7BJgzTeX3PyHb8fvFmxvi9Q9hHYzcMVxVbk", + "type": "SPL", + "symbol": "BOMEOW", + "decimals": 9, + "status": "active", + "id": "HXUQvWPWs7BJgzTeX3PyHb8fvFmxvi9Q9hHYzcMVxVbk", + "links": [ + { + "name": "x", + "url": "https://x.com/bomeow_solana" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/book-of-meow" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HXUQvWPWs7BJgzTeX3PyHb8fvFmxvi9Q9hHYzcMVxVbk/logo.png b/blockchains/solana/assets/HXUQvWPWs7BJgzTeX3PyHb8fvFmxvi9Q9hHYzcMVxVbk/logo.png new file mode 100644 index 0000000000000..bd588aedc47bf Binary files /dev/null and b/blockchains/solana/assets/HXUQvWPWs7BJgzTeX3PyHb8fvFmxvi9Q9hHYzcMVxVbk/logo.png differ diff --git a/blockchains/solana/assets/HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3/info.json b/blockchains/solana/assets/HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3/info.json new file mode 100644 index 0000000000000..fa699f394bcf5 --- /dev/null +++ b/blockchains/solana/assets/HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3/info.json @@ -0,0 +1,25 @@ +{ + "name": "Pyth Network", + "symbol": "PYTH", + "type": "SPL", + "decimals": 6, + "description": "The Pyth Network is the largest and fastest-growing first-party oracle network. Pyth delivers real-time market data to financial dApps across 40+ blockchains and provides 380+ low-latency price feeds across cryptocurrencies, equities, ETFs, FX pairs, and commodities.", + "website": "https://pyth.network", + "explorer": "https://solscan.io/token/HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3", + "status": "active", + "id": "HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3", + "links": [ + { + "name": "telegram", + "url": "https://t.me/Pyth_Network" + }, + { + "name": "x", + "url": "https://x.com/PythNetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pyth-network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3/logo.png b/blockchains/solana/assets/HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3/logo.png new file mode 100644 index 0000000000000..4f9dcebfeb817 Binary files /dev/null and b/blockchains/solana/assets/HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3/logo.png differ diff --git a/blockchains/solana/assets/HZNpqL7RT9gxf9eWoWsWzC5DfjzQ41XTQgEA7p3VzaaD/info.json b/blockchains/solana/assets/HZNpqL7RT9gxf9eWoWsWzC5DfjzQ41XTQgEA7p3VzaaD/info.json index 231c3e62da3c1..49b6dfd157a9e 100644 --- a/blockchains/solana/assets/HZNpqL7RT9gxf9eWoWsWzC5DfjzQ41XTQgEA7p3VzaaD/info.json +++ b/blockchains/solana/assets/HZNpqL7RT9gxf9eWoWsWzC5DfjzQ41XTQgEA7p3VzaaD/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/trustwallet/" }, { - "name": "twitter", - "url": "https://twitter.com/trustwallet" + "name": "x", + "url": "https://x.com/trustwallet" }, { "name": "reddit", diff --git a/blockchains/solana/assets/HZNpqL7RT9gxf9eWoWsWzC5DfjzQ41XTQgEA7p3VzaaD/logo.png b/blockchains/solana/assets/HZNpqL7RT9gxf9eWoWsWzC5DfjzQ41XTQgEA7p3VzaaD/logo.png index 8e97855518bfd..276a83baae8dd 100644 Binary files a/blockchains/solana/assets/HZNpqL7RT9gxf9eWoWsWzC5DfjzQ41XTQgEA7p3VzaaD/logo.png and b/blockchains/solana/assets/HZNpqL7RT9gxf9eWoWsWzC5DfjzQ41XTQgEA7p3VzaaD/logo.png differ diff --git a/blockchains/solana/assets/HaP8r3ksG76PhQLTqR8FYBeNiQpejcFbQmiHbg787Ut1/info.json b/blockchains/solana/assets/HaP8r3ksG76PhQLTqR8FYBeNiQpejcFbQmiHbg787Ut1/info.json new file mode 100644 index 0000000000000..a64d8bf2beba0 --- /dev/null +++ b/blockchains/solana/assets/HaP8r3ksG76PhQLTqR8FYBeNiQpejcFbQmiHbg787Ut1/info.json @@ -0,0 +1,21 @@ +{ + "name": "MAGA (Wormhole)", + "type": "SPL", + "symbol": "TRUMP", + "website": "https://magamemecoin.com/", + "explorer": "https://solscan.io/token/HaP8r3ksG76PhQLTqR8FYBeNiQpejcFbQmiHbg787Ut1", + "decimals": 8, + "description": "MAGA Movement on the Blockchain.", + "status": "active", + "id": "HaP8r3ksG76PhQLTqR8FYBeNiQpejcFbQmiHbg787Ut1", + "links": [ + { + "name": "telegram", + "url": "https://t.me/magamemecoin" + }, + { + "name": "x", + "url": "https://x.com/magaonsolanaTW" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HaP8r3ksG76PhQLTqR8FYBeNiQpejcFbQmiHbg787Ut1/logo.png b/blockchains/solana/assets/HaP8r3ksG76PhQLTqR8FYBeNiQpejcFbQmiHbg787Ut1/logo.png new file mode 100644 index 0000000000000..c66f357e828a2 Binary files /dev/null and b/blockchains/solana/assets/HaP8r3ksG76PhQLTqR8FYBeNiQpejcFbQmiHbg787Ut1/logo.png differ diff --git a/blockchains/solana/assets/Hax9LTgsQkze1YFychnBLtFH8gYbQKtKfWKKg2SP6gdD/info.json b/blockchains/solana/assets/Hax9LTgsQkze1YFychnBLtFH8gYbQKtKfWKKg2SP6gdD/info.json new file mode 100644 index 0000000000000..52d095146e952 --- /dev/null +++ b/blockchains/solana/assets/Hax9LTgsQkze1YFychnBLtFH8gYbQKtKfWKKg2SP6gdD/info.json @@ -0,0 +1,21 @@ +{ + "name": "TARS AI", + "symbol": "TAI", + "type": "SPL", + "decimals": 9, + "description": "ARS is the AI Infrastructure for the Solana blockchain. It's an AI-driven, scalable Web3 modular infrastructure platform enabling organizations and individuals to effortlessly transition from Web2 to Web3. Backed by the Solana Foundation.", + "website": "https://tars.pro/", + "explorer": "https://solscan.io/token/Hax9LTgsQkze1YFychnBLtFH8gYbQKtKfWKKg2SP6gdD", + "status": "active", + "id": "Hax9LTgsQkze1YFychnBLtFH8gYbQKtKfWKKg2SP6gdD", + "links": [ + { + "name": "x", + "url": "https://x.com/tarsprotocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tars-protocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Hax9LTgsQkze1YFychnBLtFH8gYbQKtKfWKKg2SP6gdD/logo.png b/blockchains/solana/assets/Hax9LTgsQkze1YFychnBLtFH8gYbQKtKfWKKg2SP6gdD/logo.png new file mode 100644 index 0000000000000..0fac03ab226e5 Binary files /dev/null and b/blockchains/solana/assets/Hax9LTgsQkze1YFychnBLtFH8gYbQKtKfWKKg2SP6gdD/logo.png differ diff --git a/blockchains/solana/assets/HdwhH8k5tT4nrV2U55tYCMLss3DeRYaVwTGVrCedpump/info.json b/blockchains/solana/assets/HdwhH8k5tT4nrV2U55tYCMLss3DeRYaVwTGVrCedpump/info.json new file mode 100644 index 0000000000000..2a7a2000dfdea --- /dev/null +++ b/blockchains/solana/assets/HdwhH8k5tT4nrV2U55tYCMLss3DeRYaVwTGVrCedpump/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM United Stable Dollar Cheese", + "type": "SPL", + "symbol": "SCAM USDC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/HdwhH8k5tT4nrV2U55tYCMLss3DeRYaVwTGVrCedpump", + "explorer": "https://solscan.io/token/HdwhH8k5tT4nrV2U55tYCMLss3DeRYaVwTGVrCedpump", + "status": "spam", + "id": "HdwhH8k5tT4nrV2U55tYCMLss3DeRYaVwTGVrCedpump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/HeJUFDxfJSzYFUuHLxkMqCgytU31G6mjP4wKviwqpump/info.json b/blockchains/solana/assets/HeJUFDxfJSzYFUuHLxkMqCgytU31G6mjP4wKviwqpump/info.json new file mode 100644 index 0000000000000..98fd7deed6e6a --- /dev/null +++ b/blockchains/solana/assets/HeJUFDxfJSzYFUuHLxkMqCgytU31G6mjP4wKviwqpump/info.json @@ -0,0 +1,14 @@ +{ + "name": "numogram", + "type": "SPL", + "symbol": "GNON", + "decimals": 6, + "website": "https://echochambers.ai/", + "description": "GNON Labs builds decentralized, model-agnostic, censorship-resistant platforms for AI agent-to-agent communication, benchmarking, and development.", + "explorer": "https://explorer.solana.com/address/HeJUFDxfJSzYFUuHLxkMqCgytU31G6mjP4wKviwqpump", + "status": "active", + "id": "HeJUFDxfJSzYFUuHLxkMqCgytU31G6mjP4wKviwqpump", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HeJUFDxfJSzYFUuHLxkMqCgytU31G6mjP4wKviwqpump/logo.png b/blockchains/solana/assets/HeJUFDxfJSzYFUuHLxkMqCgytU31G6mjP4wKviwqpump/logo.png new file mode 100644 index 0000000000000..9108cbd5bdfc9 Binary files /dev/null and b/blockchains/solana/assets/HeJUFDxfJSzYFUuHLxkMqCgytU31G6mjP4wKviwqpump/logo.png differ diff --git a/blockchains/solana/assets/HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC/info.json b/blockchains/solana/assets/HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC/info.json new file mode 100644 index 0000000000000..5a4dd28cab4bd --- /dev/null +++ b/blockchains/solana/assets/HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC/info.json @@ -0,0 +1,28 @@ +{ + "name": "ai16z", + "type": "SPL", + "symbol": "ai16z", + "decimals": 9, + "description": "ai16z is the first venture capital firm led by Al agents. Our team of Al leaders are aiming to shape the future of Al. We connect Al entrepreneurs, investors, and experts, fostering growth in a rapidly evolving ecosystem.", + "website": "https://www.paypal.com/us/digital-wallet/manage-money/crypto/pyusd", + "explorer": "https://solscan.io/token/HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC", + "id": "HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/pmairca" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ai16z/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ai16z" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC/logo.png b/blockchains/solana/assets/HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC/logo.png new file mode 100644 index 0000000000000..bdac28fb4fcbc Binary files /dev/null and b/blockchains/solana/assets/HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC/logo.png differ diff --git a/blockchains/solana/assets/HfYFjMKNZygfMC8LsQ8LtpPsPxEJoXJx4M6tqi75Hajo/info.json b/blockchains/solana/assets/HfYFjMKNZygfMC8LsQ8LtpPsPxEJoXJx4M6tqi75Hajo/info.json new file mode 100644 index 0000000000000..685eaebbc1a47 --- /dev/null +++ b/blockchains/solana/assets/HfYFjMKNZygfMC8LsQ8LtpPsPxEJoXJx4M6tqi75Hajo/info.json @@ -0,0 +1,21 @@ +{ + "name": "Cryowar Token", + "symbol": "CWAR", + "type": "SPL", + "decimals": 9, + "description": "Cryowar is an action-packed PC and mobile Free-to-Play and Play-to-Earn NFT game built on Solana Blockchain and Unreal Engine.", + "website": "https://www.cryowar.com/", + "explorer": "https://solscan.io/token/HfYFjMKNZygfMC8LsQ8LtpPsPxEJoXJx4M6tqi75Hajo", + "status": "active", + "id": "HfYFjMKNZygfMC8LsQ8LtpPsPxEJoXJx4M6tqi75Hajo", + "links": [ + { + "name": "x", + "url": "https://x.com/CryowarDevs" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cryowar" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HfYFjMKNZygfMC8LsQ8LtpPsPxEJoXJx4M6tqi75Hajo/logo.png b/blockchains/solana/assets/HfYFjMKNZygfMC8LsQ8LtpPsPxEJoXJx4M6tqi75Hajo/logo.png new file mode 100644 index 0000000000000..f13964846aeca Binary files /dev/null and b/blockchains/solana/assets/HfYFjMKNZygfMC8LsQ8LtpPsPxEJoXJx4M6tqi75Hajo/logo.png differ diff --git a/blockchains/solana/assets/HgBRWfYxEfvPhtqkaeymCQtHCrKE46qQ43pKe8HCpump/info.json b/blockchains/solana/assets/HgBRWfYxEfvPhtqkaeymCQtHCrKE46qQ43pKe8HCpump/info.json new file mode 100644 index 0000000000000..242f16a85a21f --- /dev/null +++ b/blockchains/solana/assets/HgBRWfYxEfvPhtqkaeymCQtHCrKE46qQ43pKe8HCpump/info.json @@ -0,0 +1,37 @@ +{ + "name": "Bertram The Pomeranian", + "type": "SPL", + "symbol": "BERT", + "decimals": 6, + "website": "https://bert.global/", + "description": "In a market dominated by hype and lack of substance, $BERT was born with one simple yet powerful mission: to transform a meme into a real force for good - helping dogs globally. Inspired by a real dog, Bertram the Pomeranian, with millions of fans globally, $BERT bridges the gap between Web2 and Web3 through AI, smart dog tags and real world impact. $BERT is no longer a meme, it is a global movement", + "explorer": "https://solscan.io/token/HgBRWfYxEfvPhtqkaeymCQtHCrKE46qQ43pKe8HCpump", + "status": "active", + "id": "HgBRWfYxEfvPhtqkaeymCQtHCrKE46qQ43pKe8HCpump", + "links": [ + { + "name": "x", + "url": "https://x.com/bertcoincto" + }, + { + "name": "telegram", + "url": "https://t.me/bertsolanaportal" + }, + { + "name": "discord", + "url": "https://discord.com/invite/bertnft" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bertram-the-pomeranian" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bertram-the-pomeranian/" + } + ], + "tags": [ + "memes", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HgBRWfYxEfvPhtqkaeymCQtHCrKE46qQ43pKe8HCpump/logo.png b/blockchains/solana/assets/HgBRWfYxEfvPhtqkaeymCQtHCrKE46qQ43pKe8HCpump/logo.png new file mode 100644 index 0000000000000..b2f1fed9b6166 Binary files /dev/null and b/blockchains/solana/assets/HgBRWfYxEfvPhtqkaeymCQtHCrKE46qQ43pKe8HCpump/logo.png differ diff --git a/blockchains/solana/assets/HhCLbkW6FwhriTkk81W8tYstsRCLUu6Y7Je1SQjVpump/info.json b/blockchains/solana/assets/HhCLbkW6FwhriTkk81W8tYstsRCLUu6Y7Je1SQjVpump/info.json new file mode 100644 index 0000000000000..4a031f076d465 --- /dev/null +++ b/blockchains/solana/assets/HhCLbkW6FwhriTkk81W8tYstsRCLUu6Y7Je1SQjVpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "KIKICat", + "website": "https://kikicat.xyz/", + "description": "Launched on December 22nd, 2024, $KIKI is a Solana-based cryptocurrency project that merges the popularity of digital IPs with blockchain technology", + "explorer": "https://solscan.io/token/HhCLbkW6FwhriTkk81W8tYstsRCLUu6Y7Je1SQjVpump", + "type": "SPL", + "symbol": "KIKI", + "decimals": 6, + "status": "active", + "id": "HhCLbkW6FwhriTkk81W8tYstsRCLUu6Y7Je1SQjVpump", + "links": [ + { + "name": "x", + "url": "https://x.com/KIKICAT_alpha" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kikicat" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HhCLbkW6FwhriTkk81W8tYstsRCLUu6Y7Je1SQjVpump/logo.png b/blockchains/solana/assets/HhCLbkW6FwhriTkk81W8tYstsRCLUu6Y7Je1SQjVpump/logo.png new file mode 100644 index 0000000000000..166a165996891 Binary files /dev/null and b/blockchains/solana/assets/HhCLbkW6FwhriTkk81W8tYstsRCLUu6Y7Je1SQjVpump/logo.png differ diff --git a/blockchains/solana/assets/HhJpBhRRn4g56VsyLuT8DL5Bv31HkXqsrahTTUCZeZg4/info.json b/blockchains/solana/assets/HhJpBhRRn4g56VsyLuT8DL5Bv31HkXqsrahTTUCZeZg4/info.json new file mode 100644 index 0000000000000..1779c23fd3cbc --- /dev/null +++ b/blockchains/solana/assets/HhJpBhRRn4g56VsyLuT8DL5Bv31HkXqsrahTTUCZeZg4/info.json @@ -0,0 +1,21 @@ +{ + "name": "Myro", + "website": "https://myrothedog.com", + "description": "Myro the dog: Named after Solana Founder Raj Gokal’s dog Myro.", + "explorer": "https://solscan.io/token/HhJpBhRRn4g56VsyLuT8DL5Bv31HkXqsrahTTUCZeZg4", + "symbol": "MYRO", + "type": "SPL", + "decimals": 9, + "status": "active", + "id": "HhJpBhRRn4g56VsyLuT8DL5Bv31HkXqsrahTTUCZeZg4", + "links": [ + { + "name": "telegram", + "url": "https://t.me/myroSOL" + }, + { + "name": "x", + "url": "https://x.com/MyroSOL" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HhJpBhRRn4g56VsyLuT8DL5Bv31HkXqsrahTTUCZeZg4/logo.png b/blockchains/solana/assets/HhJpBhRRn4g56VsyLuT8DL5Bv31HkXqsrahTTUCZeZg4/logo.png new file mode 100644 index 0000000000000..fabeb382dad63 Binary files /dev/null and b/blockchains/solana/assets/HhJpBhRRn4g56VsyLuT8DL5Bv31HkXqsrahTTUCZeZg4/logo.png differ diff --git a/blockchains/solana/assets/HjrN6ChZK2QRL6hMXayjGPLFvxhgjwKEy135VRjondo/info.json b/blockchains/solana/assets/HjrN6ChZK2QRL6hMXayjGPLFvxhgjwKEy135VRjondo/info.json new file mode 100644 index 0000000000000..a3bb0b400551b --- /dev/null +++ b/blockchains/solana/assets/HjrN6ChZK2QRL6hMXayjGPLFvxhgjwKEy135VRjondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "iShares 0-3 Month Treasury Bond ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "SGOVon", + "decimals": 9, + "description": "SGOVon is the Ondo Tokenized version of the iShares 0-3 Month Treasury Bond ETF, giving tokenholders economic exposure similar to holding SGOV and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/HjrN6ChZK2QRL6hMXayjGPLFvxhgjwKEy135VRjondo", + "status": "active", + "id": "HjrN6ChZK2QRL6hMXayjGPLFvxhgjwKEy135VRjondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-0-3-month-treasury-bond-etf-ondo-tokenized-etf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-0-3-month-treasury-bond-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HjrN6ChZK2QRL6hMXayjGPLFvxhgjwKEy135VRjondo/logo.png b/blockchains/solana/assets/HjrN6ChZK2QRL6hMXayjGPLFvxhgjwKEy135VRjondo/logo.png new file mode 100644 index 0000000000000..5fd5a776268b0 Binary files /dev/null and b/blockchains/solana/assets/HjrN6ChZK2QRL6hMXayjGPLFvxhgjwKEy135VRjondo/logo.png differ diff --git a/blockchains/solana/assets/Hjw6bEcHtbHGpQr8onG3izfJY5DJiWdt7uk2BfdSpump/info.json b/blockchains/solana/assets/Hjw6bEcHtbHGpQr8onG3izfJY5DJiWdt7uk2BfdSpump/info.json new file mode 100644 index 0000000000000..f40f370c0be08 --- /dev/null +++ b/blockchains/solana/assets/Hjw6bEcHtbHGpQr8onG3izfJY5DJiWdt7uk2BfdSpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "SwarmNode.ai", + "type": "SPL", + "symbol": "SNAI", + "decimals": 6, + "website": "https://swarmnode.ai", + "description": "Deploy serverless AI agents in the cloud. Orchestrate collaboration between agents via the SwarmNode Python SDK.", + "explorer": "https://solscan.io/token/Hjw6bEcHtbHGpQr8onG3izfJY5DJiWdt7uk2BfdSpump", + "status": "active", + "id": "Hjw6bEcHtbHGpQr8onG3izfJY5DJiWdt7uk2BfdSpump", + "links": [ + { + "name": "x", + "url": "https://x.com/swarmnode" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/swarmnode-ai" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Hjw6bEcHtbHGpQr8onG3izfJY5DJiWdt7uk2BfdSpump/logo.png b/blockchains/solana/assets/Hjw6bEcHtbHGpQr8onG3izfJY5DJiWdt7uk2BfdSpump/logo.png new file mode 100644 index 0000000000000..a578c9e078e6b Binary files /dev/null and b/blockchains/solana/assets/Hjw6bEcHtbHGpQr8onG3izfJY5DJiWdt7uk2BfdSpump/logo.png differ diff --git a/blockchains/solana/assets/Hk3K1bxEyQU81NtuHWVfa9KVDjGnscX8RhwHcgTTK6V1/info.json b/blockchains/solana/assets/Hk3K1bxEyQU81NtuHWVfa9KVDjGnscX8RhwHcgTTK6V1/info.json new file mode 100644 index 0000000000000..1f6732f549837 --- /dev/null +++ b/blockchains/solana/assets/Hk3K1bxEyQU81NtuHWVfa9KVDjGnscX8RhwHcgTTK6V1/info.json @@ -0,0 +1,21 @@ +{ + "name": "AMERICA AI Agent", + "symbol": "AMERICAI", + "type": "SPL", + "decimals": 2, + "description": "US government officials are to receive a private briefing on a breakthrough in artificial intelligence (AI) “super agents” as Silicon Valley executives flock to Washington to attend Donald Trump’s inauguration.", + "website": "https://americai.club", + "explorer": "https://solscan.io/token/Hk3K1bxEyQU81NtuHWVfa9KVDjGnscX8RhwHcgTTK6V1", + "status": "active", + "id": "Hk3K1bxEyQU81NtuHWVfa9KVDjGnscX8RhwHcgTTK6V1", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/america-ai-agent/" + }, + { + "name": "x", + "url": "https://x.com/AMERICAICTO" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Hk3K1bxEyQU81NtuHWVfa9KVDjGnscX8RhwHcgTTK6V1/logo.png b/blockchains/solana/assets/Hk3K1bxEyQU81NtuHWVfa9KVDjGnscX8RhwHcgTTK6V1/logo.png new file mode 100644 index 0000000000000..dde12c45a4d91 Binary files /dev/null and b/blockchains/solana/assets/Hk3K1bxEyQU81NtuHWVfa9KVDjGnscX8RhwHcgTTK6V1/logo.png differ diff --git a/blockchains/solana/assets/HmAgiwjjP9CXqK5wQNsHKtjAt2CH3Kv8Q7xH5kGL2nqZ/info.json b/blockchains/solana/assets/HmAgiwjjP9CXqK5wQNsHKtjAt2CH3Kv8Q7xH5kGL2nqZ/info.json new file mode 100644 index 0000000000000..340c372efe7b9 --- /dev/null +++ b/blockchains/solana/assets/HmAgiwjjP9CXqK5wQNsHKtjAt2CH3Kv8Q7xH5kGL2nqZ/info.json @@ -0,0 +1,24 @@ +{ + "name": "Time Traveler", + "website": "https://www.barrontrvmp.com/", + "description": "$BARRON Time Traveler is a CTO driven by Praetorians loyal to Barron Trvmp. They have vowed to follow him and meme their way into orbit.", + "explorer": "https://solscan.io/token/HmAgiwjjP9CXqK5wQNsHKtjAt2CH3Kv8Q7xH5kGL2nqZ", + "type": "SPL", + "symbol": "Barron", + "decimals": 6, + "status": "active", + "id": "HmAgiwjjP9CXqK5wQNsHKtjAt2CH3Kv8Q7xH5kGL2nqZ", + "links": [ + { + "name": "x", + "url": "https://x.com/Barronsolana" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/time-traveler/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HmAgiwjjP9CXqK5wQNsHKtjAt2CH3Kv8Q7xH5kGL2nqZ/logo.png b/blockchains/solana/assets/HmAgiwjjP9CXqK5wQNsHKtjAt2CH3Kv8Q7xH5kGL2nqZ/logo.png new file mode 100644 index 0000000000000..746662302ce7f Binary files /dev/null and b/blockchains/solana/assets/HmAgiwjjP9CXqK5wQNsHKtjAt2CH3Kv8Q7xH5kGL2nqZ/logo.png differ diff --git a/blockchains/solana/assets/HodiZE88VH3SvRYYX2fE6zYE6SsxPn9xJUMUkW1Dg6A/info.json b/blockchains/solana/assets/HodiZE88VH3SvRYYX2fE6zYE6SsxPn9xJUMUkW1Dg6A/info.json new file mode 100644 index 0000000000000..fb261518f90fc --- /dev/null +++ b/blockchains/solana/assets/HodiZE88VH3SvRYYX2fE6zYE6SsxPn9xJUMUkW1Dg6A/info.json @@ -0,0 +1,21 @@ +{ + "name": "Cat in Hoodie", + "website": "https://catcartel.xyz/", + "description": "Join the Cat Cartel and show those “genius” scammers what real crypto cats can do. Because, clearly, they thought we’d just sit back and let them win.", + "explorer": "https://solscan.io/token/HodiZE88VH3SvRYYX2fE6zYE6SsxPn9xJUMUkW1Dg6A", + "type": "SPL", + "symbol": "HODI", + "decimals": 9, + "status": "active", + "id": "HodiZE88VH3SvRYYX2fE6zYE6SsxPn9xJUMUkW1Dg6A", + "links": [ + { + "name": "x", + "url": "https://x.com/catcartel_xyz" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cat-in-hoodie/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HodiZE88VH3SvRYYX2fE6zYE6SsxPn9xJUMUkW1Dg6A/logo.png b/blockchains/solana/assets/HodiZE88VH3SvRYYX2fE6zYE6SsxPn9xJUMUkW1Dg6A/logo.png new file mode 100644 index 0000000000000..c9a0d62f1da06 Binary files /dev/null and b/blockchains/solana/assets/HodiZE88VH3SvRYYX2fE6zYE6SsxPn9xJUMUkW1Dg6A/logo.png differ diff --git a/blockchains/solana/assets/Hq5rroHytWZp4C6EAmT7qKStRJgSASYojEDhcz8Ypump/info.json b/blockchains/solana/assets/Hq5rroHytWZp4C6EAmT7qKStRJgSASYojEDhcz8Ypump/info.json new file mode 100644 index 0000000000000..cfa6239c372de --- /dev/null +++ b/blockchains/solana/assets/Hq5rroHytWZp4C6EAmT7qKStRJgSASYojEDhcz8Ypump/info.json @@ -0,0 +1,21 @@ +{ + "name": "JOE BYEden", + "type": "SPL", + "symbol": "BYEden", + "decimals": 6, + "website": "https://www.byeden.guru/", + "description": "Joe $BYEden is going into retirement, we want to thank 46th president of the USA for all the wonderful things he didn't do.", + "explorer": "https://solscan.io/token/Hq5rroHytWZp4C6EAmT7qKStRJgSASYojEDhcz8Ypump", + "status": "active", + "id": "Hq5rroHytWZp4C6EAmT7qKStRJgSASYojEDhcz8Ypump", + "links": [ + { + "name": "x", + "url": "https://x.com/BYEden_Sol" + }, + { + "name": "telegram", + "url": "https://t.me/JOEbyeden" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Hq5rroHytWZp4C6EAmT7qKStRJgSASYojEDhcz8Ypump/logo.png b/blockchains/solana/assets/Hq5rroHytWZp4C6EAmT7qKStRJgSASYojEDhcz8Ypump/logo.png new file mode 100644 index 0000000000000..3327ee8aeff13 Binary files /dev/null and b/blockchains/solana/assets/Hq5rroHytWZp4C6EAmT7qKStRJgSASYojEDhcz8Ypump/logo.png differ diff --git a/blockchains/solana/assets/HrevFGePRXFXXqhssyvteG6y9HU5by1MUegJ1ot5pump/info.json b/blockchains/solana/assets/HrevFGePRXFXXqhssyvteG6y9HU5by1MUegJ1ot5pump/info.json new file mode 100644 index 0000000000000..53cbb377da646 --- /dev/null +++ b/blockchains/solana/assets/HrevFGePRXFXXqhssyvteG6y9HU5by1MUegJ1ot5pump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Robin Rug", + "symbol": "RUG", + "type": "SPL", + "decimals": 6, + "description": "Robin Rug: The meme coin with a mission! Guarding your gains with stealthy bots 🤖 and letting you bet against the rug pulls.", + "website": "https://www.robinrug.com/", + "explorer": "https://solscan.io/token/HrevFGePRXFXXqhssyvteG6y9HU5by1MUegJ1ot5pump", + "status": "active", + "id": "HrevFGePRXFXXqhssyvteG6y9HU5by1MUegJ1ot5pump", + "links": [ + { + "name": "x", + "url": "https://x.com/Robin_Rug" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/robin-rug" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HrevFGePRXFXXqhssyvteG6y9HU5by1MUegJ1ot5pump/logo.png b/blockchains/solana/assets/HrevFGePRXFXXqhssyvteG6y9HU5by1MUegJ1ot5pump/logo.png new file mode 100644 index 0000000000000..80cb40a4bbd2b Binary files /dev/null and b/blockchains/solana/assets/HrevFGePRXFXXqhssyvteG6y9HU5by1MUegJ1ot5pump/logo.png differ diff --git a/blockchains/solana/assets/HsBG6WGhbHYwyknCqDSZ27edyCWk1aPSVmmSYginhDhp/info.json b/blockchains/solana/assets/HsBG6WGhbHYwyknCqDSZ27edyCWk1aPSVmmSYginhDhp/info.json new file mode 100644 index 0000000000000..247518e112bc8 --- /dev/null +++ b/blockchains/solana/assets/HsBG6WGhbHYwyknCqDSZ27edyCWk1aPSVmmSYginhDhp/info.json @@ -0,0 +1,27 @@ +{ + "name": "inf++", + "type": "SOL", + "symbol": "inf++", + "decimals": 6, + "description": "Hold, earn & burn", + "website": "https://v0-duney.vercel.app/", + "explorer": "https://solscan.io/token/HsBG6WGhbHYwyknCqDSZ27edyCWk1aPSVmmSYginhDhp", + "id": "HsBG6WGhbHYwyknCqDSZ27edyCWk1aPSVmmSYginhDhp", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/inf_plusplus" + }, + + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/inf" + } + + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/HsBG6WGhbHYwyknCqDSZ27edyCWk1aPSVmmSYginhDhp/logo.png b/blockchains/solana/assets/HsBG6WGhbHYwyknCqDSZ27edyCWk1aPSVmmSYginhDhp/logo.png new file mode 100644 index 0000000000000..2d61217bd4564 Binary files /dev/null and b/blockchains/solana/assets/HsBG6WGhbHYwyknCqDSZ27edyCWk1aPSVmmSYginhDhp/logo.png differ diff --git a/blockchains/solana/assets/HvewQ1fVopX5KQejTxA7J1L9KUPGjb6HVpYaLTeCx777/info.json b/blockchains/solana/assets/HvewQ1fVopX5KQejTxA7J1L9KUPGjb6HVpYaLTeCx777/info.json new file mode 100644 index 0000000000000..e62c3a2192c74 --- /dev/null +++ b/blockchains/solana/assets/HvewQ1fVopX5KQejTxA7J1L9KUPGjb6HVpYaLTeCx777/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT HOPR", + "type": "SPL", + "symbol": "HONEYPOT HOPR", + "decimals": 9, + "website": "https://solscan.io/token/HvewQ1fVopX5KQejTxA7J1L9KUPGjb6HVpYaLTeCx777", + "description": "HONEYPOT HOPR", + "explorer": "https://explorer.solana.com/address/HvewQ1fVopX5KQejTxA7J1L9KUPGjb6HVpYaLTeCx777", + "status": "spam", + "id": "HvewQ1fVopX5KQejTxA7J1L9KUPGjb6HVpYaLTeCx777" +} \ No newline at end of file diff --git a/blockchains/solana/assets/HysWcbHiYY9888pHbaqhwLYZQeZrcQMXKQWRqS7zcPK5/info.json b/blockchains/solana/assets/HysWcbHiYY9888pHbaqhwLYZQeZrcQMXKQWRqS7zcPK5/info.json index 5da8c959909bc..ff6374d429349 100644 --- a/blockchains/solana/assets/HysWcbHiYY9888pHbaqhwLYZQeZrcQMXKQWRqS7zcPK5/info.json +++ b/blockchains/solana/assets/HysWcbHiYY9888pHbaqhwLYZQeZrcQMXKQWRqS7zcPK5/info.json @@ -1,5 +1,5 @@ { - "name": "Axie Infinity Shard (Portal from Ethereum)", + "name": "Axie Infinity (Portal)", "type": "SPL", "symbol": "AXSet", "decimals": 8, diff --git a/blockchains/solana/assets/J1Wpmugrooj1yMyQKrdZ2vwRXG5rhfx3vTnYE39gpump/info.json b/blockchains/solana/assets/J1Wpmugrooj1yMyQKrdZ2vwRXG5rhfx3vTnYE39gpump/info.json new file mode 100644 index 0000000000000..103624d452eb4 --- /dev/null +++ b/blockchains/solana/assets/J1Wpmugrooj1yMyQKrdZ2vwRXG5rhfx3vTnYE39gpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "would", + "website": "https://www.wouldmeme.com/", + "description": "The Would meme, emerging in September 2022, represents a significant moment in internet culture through its simple yet effective format", + "explorer": "https://solscan.io/token/J1Wpmugrooj1yMyQKrdZ2vwRXG5rhfx3vTnYE39gpump", + "type": "SPL", + "symbol": "WOULD", + "decimals": 6, + "status": "active", + "id": "J1Wpmugrooj1yMyQKrdZ2vwRXG5rhfx3vTnYE39gpump", + "links": [ + { + "name": "x", + "url": "https://x.com/wouldmemesol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/would" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/J1Wpmugrooj1yMyQKrdZ2vwRXG5rhfx3vTnYE39gpump/logo.png b/blockchains/solana/assets/J1Wpmugrooj1yMyQKrdZ2vwRXG5rhfx3vTnYE39gpump/logo.png new file mode 100644 index 0000000000000..1ec95c9e6dbb8 Binary files /dev/null and b/blockchains/solana/assets/J1Wpmugrooj1yMyQKrdZ2vwRXG5rhfx3vTnYE39gpump/logo.png differ diff --git a/blockchains/solana/assets/J1YnyKzmxBwFkPftvZexnHTm4Am7JnmWydhxtXdwEmMv/info.json b/blockchains/solana/assets/J1YnyKzmxBwFkPftvZexnHTm4Am7JnmWydhxtXdwEmMv/info.json new file mode 100644 index 0000000000000..cb7a3e21df834 --- /dev/null +++ b/blockchains/solana/assets/J1YnyKzmxBwFkPftvZexnHTm4Am7JnmWydhxtXdwEmMv/info.json @@ -0,0 +1,28 @@ +{ + "name": "Open Ecosystem Token", + "type": "SPL", + "symbol": "Wormhole", + "decimals": 8, + "description": "Previously called GET Protocol, the OPEN Ticketing Ecosystem is the home of onchain ticketing, building state-of-the-art ticketing infrastructure & tools for integrators, event organizers, and artists to tap into new avenues for financing, access, and fostering fan relationships.", + "website": "https://onopen.xyz/", + "explorer": "https://solscan.io/token/J1YnyKzmxBwFkPftvZexnHTm4Am7JnmWydhxtXdwEmMv", + "id": "J1YnyKzmxBwFkPftvZexnHTm4Am7JnmWydhxtXdwEmMv", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/onopenxyz" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/open-ticketing-ecosystem/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/open-ticketing-ecosystem" + } + ], + "tags": [ + "nfts" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/J1YnyKzmxBwFkPftvZexnHTm4Am7JnmWydhxtXdwEmMv/logo.png b/blockchains/solana/assets/J1YnyKzmxBwFkPftvZexnHTm4Am7JnmWydhxtXdwEmMv/logo.png new file mode 100644 index 0000000000000..94c1384bad529 Binary files /dev/null and b/blockchains/solana/assets/J1YnyKzmxBwFkPftvZexnHTm4Am7JnmWydhxtXdwEmMv/logo.png differ diff --git a/blockchains/solana/assets/J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn/info.json b/blockchains/solana/assets/J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn/info.json new file mode 100644 index 0000000000000..3bc22783185ee --- /dev/null +++ b/blockchains/solana/assets/J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn/info.json @@ -0,0 +1,21 @@ +{ + "name": "Jito Staked SOL", + "symbol": "JitoSOL", + "type": "SPL", + "decimals": 9, + "description": "The live Jito Staked SOL price today is $114.17 USD with a 24-hour trading volume of $69,422,180 USD. We update our JITOSOL to USD price in real-time. Jito Staked SOL is up 2.20% in the last 24 hours.", + "website": "https://www.jito.network", + "explorer": "https://solscan.io/token/J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn", + "status": "active", + "id": "J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn", + "links": [ + { + "name": "x", + "url": "https://x.com/jito_sol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jito-staked-sol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn/logo.png b/blockchains/solana/assets/J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn/logo.png new file mode 100644 index 0000000000000..cfc8dc6ad1740 Binary files /dev/null and b/blockchains/solana/assets/J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn/logo.png differ diff --git a/blockchains/solana/assets/J3NKxxXZcnNiMjKw9hYb2K4LUxgwB6t1FtPtQVsv3KFr/info.json b/blockchains/solana/assets/J3NKxxXZcnNiMjKw9hYb2K4LUxgwB6t1FtPtQVsv3KFr/info.json new file mode 100644 index 0000000000000..17a61b65d9ca1 --- /dev/null +++ b/blockchains/solana/assets/J3NKxxXZcnNiMjKw9hYb2K4LUxgwB6t1FtPtQVsv3KFr/info.json @@ -0,0 +1,21 @@ +{ + "name": "SPX6900", + "website": "https://www.spx6900.com/", + "description": "SPX6900 is an advanced blockchain cryptography token with limitless possibilities and scientific utilization.", + "explorer": "https://solscan.io/token/J3NKxxXZcnNiMjKw9hYb2K4LUxgwB6t1FtPtQVsv3KFr", + "type": "SPL", + "symbol": "SPX", + "decimals": 8, + "status": "active", + "id": "J3NKxxXZcnNiMjKw9hYb2K4LUxgwB6t1FtPtQVsv3KFr", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spx6900/" + }, + { + "name": "x", + "url": "https://x.com/spx6900" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/J3NKxxXZcnNiMjKw9hYb2K4LUxgwB6t1FtPtQVsv3KFr/logo.png b/blockchains/solana/assets/J3NKxxXZcnNiMjKw9hYb2K4LUxgwB6t1FtPtQVsv3KFr/logo.png new file mode 100644 index 0000000000000..21b50fe934d46 Binary files /dev/null and b/blockchains/solana/assets/J3NKxxXZcnNiMjKw9hYb2K4LUxgwB6t1FtPtQVsv3KFr/logo.png differ diff --git a/blockchains/solana/assets/J6xGMwreiQMcw4XtJMwNcvECV7UJM4HxUWronwPYpump/info.json b/blockchains/solana/assets/J6xGMwreiQMcw4XtJMwNcvECV7UJM4HxUWronwPYpump/info.json new file mode 100644 index 0000000000000..92d62a72aea95 --- /dev/null +++ b/blockchains/solana/assets/J6xGMwreiQMcw4XtJMwNcvECV7UJM4HxUWronwPYpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "OGCAT", + "website": "https://ogcat.vip/", + "description": "The first-ever meme cat coin, inspired by the developer's own charismatic cat, now the proud mascot of its own token.", + "explorer": "https://solscan.io/token/J6xGMwreiQMcw4XtJMwNcvECV7UJM4HxUWronwPYpump", + "type": "SPL", + "symbol": "OGCAT", + "decimals": 6, + "status": "active", + "id": "J6xGMwreiQMcw4XtJMwNcvECV7UJM4HxUWronwPYpump", + "links": [ + { + "name": "x", + "url": "https://x.com/ogcatcoinsol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ogcat/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/J6xGMwreiQMcw4XtJMwNcvECV7UJM4HxUWronwPYpump/logo.png b/blockchains/solana/assets/J6xGMwreiQMcw4XtJMwNcvECV7UJM4HxUWronwPYpump/logo.png new file mode 100644 index 0000000000000..4d322f466cdcf Binary files /dev/null and b/blockchains/solana/assets/J6xGMwreiQMcw4XtJMwNcvECV7UJM4HxUWronwPYpump/logo.png differ diff --git a/blockchains/solana/assets/J8eZkbpXmTxijvrWYs3Nf59H89ANcS8NFW4KpaMfhdYh/info.json b/blockchains/solana/assets/J8eZkbpXmTxijvrWYs3Nf59H89ANcS8NFW4KpaMfhdYh/info.json new file mode 100644 index 0000000000000..11c6f607ff8bf --- /dev/null +++ b/blockchains/solana/assets/J8eZkbpXmTxijvrWYs3Nf59H89ANcS8NFW4KpaMfhdYh/info.json @@ -0,0 +1,26 @@ +{ + "name": "Earn BTC", + "type": "SOL", + "symbol": "EBTC", + "decimals": 2, + "description": "100% of supply added to liquidity at launch. No team tokens, no pre-sale, no wallet limits. 5% tax distributed as Earn BTC to holders and token burn every 5 minutes.", + "website": "https://earnbtc.vip/", + "explorer": "https://solscan.io/token/J8eZkbpXmTxijvrWYs3Nf59H89ANcS8NFW4KpaMfhdYh", + "id": "J8eZkbpXmTxijvrWYs3Nf59H89ANcS8NFW4KpaMfhdYh", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/EarnBTC_" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/earn-btc/" + } + + ], + "tags": [ + "Deflationary" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/J8eZkbpXmTxijvrWYs3Nf59H89ANcS8NFW4KpaMfhdYh/logo.png b/blockchains/solana/assets/J8eZkbpXmTxijvrWYs3Nf59H89ANcS8NFW4KpaMfhdYh/logo.png new file mode 100644 index 0000000000000..7a9fc302bb7e2 Binary files /dev/null and b/blockchains/solana/assets/J8eZkbpXmTxijvrWYs3Nf59H89ANcS8NFW4KpaMfhdYh/logo.png differ diff --git a/blockchains/solana/assets/JCe4cq9bqL1238wfFjfFQ316PrS2sASKkesLYEyCpump/info.json b/blockchains/solana/assets/JCe4cq9bqL1238wfFjfFQ316PrS2sASKkesLYEyCpump/info.json new file mode 100644 index 0000000000000..302e5cec75449 --- /dev/null +++ b/blockchains/solana/assets/JCe4cq9bqL1238wfFjfFQ316PrS2sASKkesLYEyCpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Minidoge", + "website": "https://www.minidoge.co/", + "description": "Minidoge carries on the spirit of Doge", + "explorer": "https://solscan.io/token/JCe4cq9bqL1238wfFjfFQ316PrS2sASKkesLYEyCpump", + "type": "SPL", + "symbol": "Minidoge", + "decimals": 6, + "status": "active", + "id": "JCe4cq9bqL1238wfFjfFQ316PrS2sASKkesLYEyCpump", + "links": [ + { + "name": "x", + "url": "https://x.com/minidogetoken" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/minidoge" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/JCe4cq9bqL1238wfFjfFQ316PrS2sASKkesLYEyCpump/logo.png b/blockchains/solana/assets/JCe4cq9bqL1238wfFjfFQ316PrS2sASKkesLYEyCpump/logo.png new file mode 100644 index 0000000000000..6364358fec4d3 Binary files /dev/null and b/blockchains/solana/assets/JCe4cq9bqL1238wfFjfFQ316PrS2sASKkesLYEyCpump/logo.png differ diff --git a/blockchains/solana/assets/JCeoBX79HfatfaY6xvuNyCHf86hwgkCCWDpEycVHtime/info.json b/blockchains/solana/assets/JCeoBX79HfatfaY6xvuNyCHf86hwgkCCWDpEycVHtime/info.json new file mode 100644 index 0000000000000..5d5d52cd6385c --- /dev/null +++ b/blockchains/solana/assets/JCeoBX79HfatfaY6xvuNyCHf86hwgkCCWDpEycVHtime/info.json @@ -0,0 +1,26 @@ +{ + "name": "toly's minutes", + "type": "SOL", + "symbol": "toly", + "decimals": 6, + "description": "Co-Founder of Solana Labs. Award winning phone creator. NFA, don’t trust me, mostly technical gibber", + "website": "https://time.fun/toly?tab=about", + "explorer": "https://solscan.io/token/JCeoBX79HfatfaY6xvuNyCHf86hwgkCCWDpEycVHtime", + "id": "JCeoBX79HfatfaY6xvuNyCHf86hwgkCCWDpEycVHtime", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/aeyakovenko" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/toly-s-minutes" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/JCeoBX79HfatfaY6xvuNyCHf86hwgkCCWDpEycVHtime/logo.png b/blockchains/solana/assets/JCeoBX79HfatfaY6xvuNyCHf86hwgkCCWDpEycVHtime/logo.png new file mode 100644 index 0000000000000..62f5768d28784 Binary files /dev/null and b/blockchains/solana/assets/JCeoBX79HfatfaY6xvuNyCHf86hwgkCCWDpEycVHtime/logo.png differ diff --git a/blockchains/solana/assets/JET6zMJWkCN9tpRT2v2jfAmm5VnQFDpUBCyaKojmGtz/info.json b/blockchains/solana/assets/JET6zMJWkCN9tpRT2v2jfAmm5VnQFDpUBCyaKojmGtz/info.json index 023359271a0fb..32f42f0c7f880 100644 --- a/blockchains/solana/assets/JET6zMJWkCN9tpRT2v2jfAmm5VnQFDpUBCyaKojmGtz/info.json +++ b/blockchains/solana/assets/JET6zMJWkCN9tpRT2v2jfAmm5VnQFDpUBCyaKojmGtz/info.json @@ -10,8 +10,8 @@ "id": "JET6zMJWkCN9tpRT2v2jfAmm5VnQFDpUBCyaKojmGtz", "links": [ { - "name": "twitter", - "url": "https://twitter.com/jetprotocol" + "name": "x", + "url": "https://x.com/jetprotocol" }, { "name": "coinmarketcap", diff --git a/blockchains/solana/assets/JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN/info.json b/blockchains/solana/assets/JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN/info.json new file mode 100644 index 0000000000000..dbc996ecee8aa --- /dev/null +++ b/blockchains/solana/assets/JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN/info.json @@ -0,0 +1,21 @@ +{ + "name": "Jupiter", + "symbol": "JUP", + "type": "SPL", + "decimals": 6, + "description": "As one of the industry's most advanced swap aggregation engines, Jupiter excels in delivering essential liquidity infrastructure for the Solana ecosystem.", + "website": "https://jup.ag/", + "explorer": "https://solscan.io/token/JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN", + "status": "active", + "id": "JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN", + "links": [ + { + "name": "x", + "url": "https://x.com/JupiterExchange" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jupiter-ag/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN/logo.png b/blockchains/solana/assets/JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN/logo.png new file mode 100644 index 0000000000000..793364c845447 Binary files /dev/null and b/blockchains/solana/assets/JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN/logo.png differ diff --git a/blockchains/solana/assets/Jambjx1oJoZNBZiqbiF9TqgatEZPdyfvYa9WVsKNzUh/info.json b/blockchains/solana/assets/Jambjx1oJoZNBZiqbiF9TqgatEZPdyfvYa9WVsKNzUh/info.json new file mode 100644 index 0000000000000..1436b3c715953 --- /dev/null +++ b/blockchains/solana/assets/Jambjx1oJoZNBZiqbiF9TqgatEZPdyfvYa9WVsKNzUh/info.json @@ -0,0 +1,30 @@ +{ + "name": "Jambo", + "type": "SOL", + "symbol": "J", + "decimals": 9, + "description": "Jambo is building the world's largest on-chain mobile network powered by the JamboPhone — the most powerful crypto-native mobile device. We have built this vision through support of top investors including Paradigm, Pantera, OKX, Coinbase, and more.", + "website": "https://www.jambo.technology/", + "explorer": "https://solscan.io/token/Jambjx1oJoZNBZiqbiF9TqgatEZPdyfvYa9WVsKNzUh", + "id": "Jambjx1oJoZNBZiqbiF9TqgatEZPdyfvYa9WVsKNzUh", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/JamboTechnology" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jambo/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/jambo" + } + + ], + "tags": [ + "defi" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/Jambjx1oJoZNBZiqbiF9TqgatEZPdyfvYa9WVsKNzUh/logo.png b/blockchains/solana/assets/Jambjx1oJoZNBZiqbiF9TqgatEZPdyfvYa9WVsKNzUh/logo.png new file mode 100644 index 0000000000000..b2f99db857528 Binary files /dev/null and b/blockchains/solana/assets/Jambjx1oJoZNBZiqbiF9TqgatEZPdyfvYa9WVsKNzUh/logo.png differ diff --git a/blockchains/solana/assets/KENJSUYLASHUMfHyy5o4Hp2FdNqZg1AsUPhfH2kYvEP/info.json b/blockchains/solana/assets/KENJSUYLASHUMfHyy5o4Hp2FdNqZg1AsUPhfH2kYvEP/info.json new file mode 100644 index 0000000000000..0cdc5d74bd5ac --- /dev/null +++ b/blockchains/solana/assets/KENJSUYLASHUMfHyy5o4Hp2FdNqZg1AsUPhfH2kYvEP/info.json @@ -0,0 +1,21 @@ +{ + "name": "GRIFFAIN", + "type": "SPL", + "symbol": "GRIFFAIN", + "decimals": 6, + "website": "https://griffain.com/", + "description": "I coordinate a network of AI agents that help you take action on-chain", + "explorer": "https://solscan.io/token/KENJSUYLASHUMfHyy5o4Hp2FdNqZg1AsUPhfH2kYvEP", + "status": "active", + "id": "KENJSUYLASHUMfHyy5o4Hp2FdNqZg1AsUPhfH2kYvEP", + "links": [ + { + "name": "x", + "url": "https://x.com/griffaindotcom" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/griffain/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/KENJSUYLASHUMfHyy5o4Hp2FdNqZg1AsUPhfH2kYvEP/logo.png b/blockchains/solana/assets/KENJSUYLASHUMfHyy5o4Hp2FdNqZg1AsUPhfH2kYvEP/logo.png new file mode 100644 index 0000000000000..ff7465ca3f514 Binary files /dev/null and b/blockchains/solana/assets/KENJSUYLASHUMfHyy5o4Hp2FdNqZg1AsUPhfH2kYvEP/logo.png differ diff --git a/blockchains/solana/assets/KMNo3nJsBXfcpJTVhZcXLW7RmTwTt4GVFE7suUBo9sS/info.json b/blockchains/solana/assets/KMNo3nJsBXfcpJTVhZcXLW7RmTwTt4GVFE7suUBo9sS/info.json new file mode 100644 index 0000000000000..58fe016da5bd1 --- /dev/null +++ b/blockchains/solana/assets/KMNo3nJsBXfcpJTVhZcXLW7RmTwTt4GVFE7suUBo9sS/info.json @@ -0,0 +1,21 @@ +{ + "name": "Kamino", + "type": "SPL", + "symbol": "KMNO", + "decimals": 6, + "website": "https://app.kamino.finance/", + "description": "Kamino Finance was originally created to offer users the easiest possible way of providing liquidity and earning yield on-chain.", + "explorer": "https://solscan.io/token/KMNo3nJsBXfcpJTVhZcXLW7RmTwTt4GVFE7suUBo9sS", + "status": "active", + "id": "KMNo3nJsBXfcpJTVhZcXLW7RmTwTt4GVFE7suUBo9sS", + "links": [ + { + "name": "x", + "url": "https://x.com/KaminoFinancen" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kamino-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/KMNo3nJsBXfcpJTVhZcXLW7RmTwTt4GVFE7suUBo9sS/logo.png b/blockchains/solana/assets/KMNo3nJsBXfcpJTVhZcXLW7RmTwTt4GVFE7suUBo9sS/logo.png new file mode 100644 index 0000000000000..5964a559e4348 Binary files /dev/null and b/blockchains/solana/assets/KMNo3nJsBXfcpJTVhZcXLW7RmTwTt4GVFE7suUBo9sS/logo.png differ diff --git a/blockchains/solana/assets/KUXt7LzHWSQXp5eyqMZRxWjAP6yM8BUh4LRHwiwondo/info.json b/blockchains/solana/assets/KUXt7LzHWSQXp5eyqMZRxWjAP6yM8BUh4LRHwiwondo/info.json new file mode 100644 index 0000000000000..49b89f2b17852 --- /dev/null +++ b/blockchains/solana/assets/KUXt7LzHWSQXp5eyqMZRxWjAP6yM8BUh4LRHwiwondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Johnson & Johnson (Ondo Tokenized)", + "type": "SPL", + "symbol": "JNJon", + "decimals": 9, + "description": "JNJon is the Ondo Tokenized version of Johnson & Johnson, giving tokenholders economic exposure similar to holding JNJ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/KUXt7LzHWSQXp5eyqMZRxWjAP6yM8BUh4LRHwiwondo", + "status": "active", + "id": "KUXt7LzHWSQXp5eyqMZRxWjAP6yM8BUh4LRHwiwondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/johnson-johnson-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/johnson-johnson-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/KUXt7LzHWSQXp5eyqMZRxWjAP6yM8BUh4LRHwiwondo/logo.png b/blockchains/solana/assets/KUXt7LzHWSQXp5eyqMZRxWjAP6yM8BUh4LRHwiwondo/logo.png new file mode 100644 index 0000000000000..d57bb66b61232 Binary files /dev/null and b/blockchains/solana/assets/KUXt7LzHWSQXp5eyqMZRxWjAP6yM8BUh4LRHwiwondo/logo.png differ diff --git a/blockchains/solana/assets/KZtqx9BJbpcGY7vdzhqPXM3ECKChxE5YhXaDiwRondo/info.json b/blockchains/solana/assets/KZtqx9BJbpcGY7vdzhqPXM3ECKChxE5YhXaDiwRondo/info.json new file mode 100644 index 0000000000000..55547797c90b3 --- /dev/null +++ b/blockchains/solana/assets/KZtqx9BJbpcGY7vdzhqPXM3ECKChxE5YhXaDiwRondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Janus Henderson AAA CLO ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "JAAAon", + "decimals": 9, + "description": "JAAAon is the Ondo Tokenized version of the Janus Henderson AAA CLO ETF, giving tokenholders economic exposure similar to holding JAAA and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/KZtqx9BJbpcGY7vdzhqPXM3ECKChxE5YhXaDiwRondo", + "status": "active", + "id": "KZtqx9BJbpcGY7vdzhqPXM3ECKChxE5YhXaDiwRondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/janus-henderson-aaa-clo-etf-ondo-tokenized-etf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/janus-henderson-aaa-clo-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/KZtqx9BJbpcGY7vdzhqPXM3ECKChxE5YhXaDiwRondo/logo.png b/blockchains/solana/assets/KZtqx9BJbpcGY7vdzhqPXM3ECKChxE5YhXaDiwRondo/logo.png new file mode 100644 index 0000000000000..56172ca7d88c2 Binary files /dev/null and b/blockchains/solana/assets/KZtqx9BJbpcGY7vdzhqPXM3ECKChxE5YhXaDiwRondo/logo.png differ diff --git a/blockchains/solana/assets/KcCVQxG9LhFYP5o9DWFKTFgFShPPQkDEemVbiFyondo/info.json b/blockchains/solana/assets/KcCVQxG9LhFYP5o9DWFKTFgFShPPQkDEemVbiFyondo/info.json new file mode 100644 index 0000000000000..44147ae94e3a4 --- /dev/null +++ b/blockchains/solana/assets/KcCVQxG9LhFYP5o9DWFKTFgFShPPQkDEemVbiFyondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Archer Aviation (Ondo Tokenized)", + "type": "SPL", + "symbol": "ACHRon", + "decimals": 9, + "description": "ACHRon is the Ondo Tokenized version of Archer Aviation, giving tokenholders economic exposure similar to holding ACHR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/KcCVQxG9LhFYP5o9DWFKTFgFShPPQkDEemVbiFyondo", + "status": "active", + "id": "KcCVQxG9LhFYP5o9DWFKTFgFShPPQkDEemVbiFyondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/archer-aviation-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/archer-aviation-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/KcCVQxG9LhFYP5o9DWFKTFgFShPPQkDEemVbiFyondo/logo.png b/blockchains/solana/assets/KcCVQxG9LhFYP5o9DWFKTFgFShPPQkDEemVbiFyondo/logo.png new file mode 100644 index 0000000000000..275ec766f80be Binary files /dev/null and b/blockchains/solana/assets/KcCVQxG9LhFYP5o9DWFKTFgFShPPQkDEemVbiFyondo/logo.png differ diff --git a/blockchains/solana/assets/KuiYLPVq65qixD9TgvxBC576C4gG6vVTCdbh2zFondo/info.json b/blockchains/solana/assets/KuiYLPVq65qixD9TgvxBC576C4gG6vVTCdbh2zFondo/info.json new file mode 100644 index 0000000000000..ad8df1c1f44ad --- /dev/null +++ b/blockchains/solana/assets/KuiYLPVq65qixD9TgvxBC576C4gG6vVTCdbh2zFondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Vanguard Value ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "VTVon", + "decimals": 9, + "description": "VTVon is the Ondo Tokenized version of the Vanguard Value ETF, giving tokenholders economic exposure similar to holding VTV and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/KuiYLPVq65qixD9TgvxBC576C4gG6vVTCdbh2zFondo", + "status": "active", + "id": "KuiYLPVq65qixD9TgvxBC576C4gG6vVTCdbh2zFondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vanguard-value-etf-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vanguard-value-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/KuiYLPVq65qixD9TgvxBC576C4gG6vVTCdbh2zFondo/logo.png b/blockchains/solana/assets/KuiYLPVq65qixD9TgvxBC576C4gG6vVTCdbh2zFondo/logo.png new file mode 100644 index 0000000000000..c8b7fdf9aa10b Binary files /dev/null and b/blockchains/solana/assets/KuiYLPVq65qixD9TgvxBC576C4gG6vVTCdbh2zFondo/logo.png differ diff --git a/blockchains/solana/assets/LAYER4xPpTCb3QL8S9u41EAhAX7mhBn8Q6xMTwY2Yzc/info.json b/blockchains/solana/assets/LAYER4xPpTCb3QL8S9u41EAhAX7mhBn8Q6xMTwY2Yzc/info.json new file mode 100644 index 0000000000000..1d756a7b62ff4 --- /dev/null +++ b/blockchains/solana/assets/LAYER4xPpTCb3QL8S9u41EAhAX7mhBn8Q6xMTwY2Yzc/info.json @@ -0,0 +1,17 @@ +{ + "name": "Solayer", + "symbol": "LAYER", + "website": "https://solayer.org", + "description": "The first hardware-accelerated network, infinitely scaled.", + "explorer": "https://solscan.io/token/LAYER4xPpTCb3QL8S9u41EAhAX7mhBn8Q6xMTwY2Yzc", + "decimals": 9, + "status": "active", + "id": "LAYER4xPpTCb3QL8S9u41EAhAX7mhBn8Q6xMTwY2Yzc", + "type": "SPL", + "links": [ + { + "name": "x", + "url": "https://x.com/solayer_labs" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/LAYER4xPpTCb3QL8S9u41EAhAX7mhBn8Q6xMTwY2Yzc/logo.png b/blockchains/solana/assets/LAYER4xPpTCb3QL8S9u41EAhAX7mhBn8Q6xMTwY2Yzc/logo.png new file mode 100644 index 0000000000000..ad613c599598d Binary files /dev/null and b/blockchains/solana/assets/LAYER4xPpTCb3QL8S9u41EAhAX7mhBn8Q6xMTwY2Yzc/logo.png differ diff --git a/blockchains/solana/assets/LDK9TCQNkcFgTiFnbYtmbPToUXgxJL55eGqq817cqDx/info.json b/blockchains/solana/assets/LDK9TCQNkcFgTiFnbYtmbPToUXgxJL55eGqq817cqDx/info.json new file mode 100644 index 0000000000000..cfbd12eb11af6 --- /dev/null +++ b/blockchains/solana/assets/LDK9TCQNkcFgTiFnbYtmbPToUXgxJL55eGqq817cqDx/info.json @@ -0,0 +1,21 @@ +{ + "name": "ARNOLD", + "type": "SPL", + "symbol": "ARNOLD", + "decimals": 6, + "website": "https://www.meetarnold.xyz/", + "description": "If you haven't heard about Arnold yet, where have you been hiding? Arnold isn't just a public figure, he's a vibrant force of sweetness and fun, now making waves as a meme coin on the Solana blockchain!", + "explorer": "https://solscan.io/token/LDK9TCQNkcFgTiFnbYtmbPToUXgxJL55eGqq817cqDx", + "status": "active", + "id": "LDK9TCQNkcFgTiFnbYtmbPToUXgxJL55eGqq817cqDx", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/arnold/" + }, + { + "name": "x", + "url": "https://x.com/meetarnold_" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/LDK9TCQNkcFgTiFnbYtmbPToUXgxJL55eGqq817cqDx/logo.png b/blockchains/solana/assets/LDK9TCQNkcFgTiFnbYtmbPToUXgxJL55eGqq817cqDx/logo.png new file mode 100644 index 0000000000000..fdfef1ac56ac7 Binary files /dev/null and b/blockchains/solana/assets/LDK9TCQNkcFgTiFnbYtmbPToUXgxJL55eGqq817cqDx/logo.png differ diff --git a/blockchains/solana/assets/LSh1UzLNtAgXJ9LWADYSC73inLNbEx2CwE2rXy7daos/info.json b/blockchains/solana/assets/LSh1UzLNtAgXJ9LWADYSC73inLNbEx2CwE2rXy7daos/info.json new file mode 100644 index 0000000000000..a70499ef021a8 --- /dev/null +++ b/blockchains/solana/assets/LSh1UzLNtAgXJ9LWADYSC73inLNbEx2CwE2rXy7daos/info.json @@ -0,0 +1,11 @@ +{ + "name": "SPAM KLIP", + "type": "SPL", + "symbol": "SPAM KLIP", + "decimals": 6, + "website": "https://solscan.io/token/LSh1UzLNtAgXJ9LWADYSC73inLNbEx2CwE2rXy7daos", + "description": "SPAM KLIP", + "explorer": "https://explorer.solana.com/address/LSh1UzLNtAgXJ9LWADYSC73inLNbEx2CwE2rXy7daos", + "status": "spam", + "id": "LSh1UzLNtAgXJ9LWADYSC73inLNbEx2CwE2rXy7daos" +} \ No newline at end of file diff --git a/blockchains/solana/assets/LitNUakTges74cjDJm6HHfFNKGPdySkp3MWSYzYondo/info.json b/blockchains/solana/assets/LitNUakTges74cjDJm6HHfFNKGPdySkp3MWSYzYondo/info.json new file mode 100644 index 0000000000000..5b2bb2c7f872c --- /dev/null +++ b/blockchains/solana/assets/LitNUakTges74cjDJm6HHfFNKGPdySkp3MWSYzYondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Ethereum Trust (Ondo Tokenized)", + "type": "SPL", + "symbol": "ETHAon", + "decimals": 9, + "description": "ETHAon is the Ondo Tokenized version of the iShares Ethereum Trust ETF, giving tokenholders economic exposure similar to holding ETHA and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/LitNUakTges74cjDJm6HHfFNKGPdySkp3MWSYzYondo", + "status": "active", + "id": "LitNUakTges74cjDJm6HHfFNKGPdySkp3MWSYzYondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-ethereum-trust-ondo-tokenized" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/LitNUakTges74cjDJm6HHfFNKGPdySkp3MWSYzYondo/logo.png b/blockchains/solana/assets/LitNUakTges74cjDJm6HHfFNKGPdySkp3MWSYzYondo/logo.png new file mode 100644 index 0000000000000..d163a75f472b5 Binary files /dev/null and b/blockchains/solana/assets/LitNUakTges74cjDJm6HHfFNKGPdySkp3MWSYzYondo/logo.png differ diff --git a/blockchains/solana/assets/LmTMwmZLNZszn3qpjmnbhfP12U4qWDivaEBwSBSondo/info.json b/blockchains/solana/assets/LmTMwmZLNZszn3qpjmnbhfP12U4qWDivaEBwSBSondo/info.json new file mode 100644 index 0000000000000..5d51bd52e8146 --- /dev/null +++ b/blockchains/solana/assets/LmTMwmZLNZszn3qpjmnbhfP12U4qWDivaEBwSBSondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Analog Devices (Ondo Tokenized)", + "type": "SPL", + "symbol": "ADIon", + "decimals": 9, + "description": "ADIon is the Ondo Tokenized version of Analog Devices, giving tokenholders economic exposure similar to holding ADI and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/LmTMwmZLNZszn3qpjmnbhfP12U4qWDivaEBwSBSondo", + "status": "active", + "id": "LmTMwmZLNZszn3qpjmnbhfP12U4qWDivaEBwSBSondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/analog-devices-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/analog-devices-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/LmTMwmZLNZszn3qpjmnbhfP12U4qWDivaEBwSBSondo/logo.png b/blockchains/solana/assets/LmTMwmZLNZszn3qpjmnbhfP12U4qWDivaEBwSBSondo/logo.png new file mode 100644 index 0000000000000..461b4eb9da380 Binary files /dev/null and b/blockchains/solana/assets/LmTMwmZLNZszn3qpjmnbhfP12U4qWDivaEBwSBSondo/logo.png differ diff --git a/blockchains/solana/assets/M6agiXbNgy8Xon9ngiW4ZDPbMFcNCTMkMMkshZyondo/info.json b/blockchains/solana/assets/M6agiXbNgy8Xon9ngiW4ZDPbMFcNCTMkMMkshZyondo/info.json new file mode 100644 index 0000000000000..111482403ffe8 --- /dev/null +++ b/blockchains/solana/assets/M6agiXbNgy8Xon9ngiW4ZDPbMFcNCTMkMMkshZyondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Invesco Optimum Yld Dvsfd Cmd Str No K-1 ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "PDBCon", + "decimals": 9, + "description": "PDBCon is the Ondo Tokenized version of the Invesco Optimum Yld Dvsfd Cmd Str No K-1 ETF, giving tokenholders economic exposure similar to holding PDBC and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/M6agiXbNgy8Xon9ngiW4ZDPbMFcNCTMkMMkshZyondo", + "status": "active", + "id": "M6agiXbNgy8Xon9ngiW4ZDPbMFcNCTMkMMkshZyondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/invesco-optimum-yld-dvsfd-cmd-str-no-k-1-etf-ondo-tokenized-etf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/invesco-optimum-yld-dvsfd-cmd-str-no-k-1-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/M6agiXbNgy8Xon9ngiW4ZDPbMFcNCTMkMMkshZyondo/logo.png b/blockchains/solana/assets/M6agiXbNgy8Xon9ngiW4ZDPbMFcNCTMkMMkshZyondo/logo.png new file mode 100644 index 0000000000000..4d148ee9a083d Binary files /dev/null and b/blockchains/solana/assets/M6agiXbNgy8Xon9ngiW4ZDPbMFcNCTMkMMkshZyondo/logo.png differ diff --git a/blockchains/solana/assets/MEFNBXixkEbait3xn9bkm8WsJzXtVsaJEn4c8Sam21u/info.json b/blockchains/solana/assets/MEFNBXixkEbait3xn9bkm8WsJzXtVsaJEn4c8Sam21u/info.json new file mode 100644 index 0000000000000..bb221aff5b571 --- /dev/null +++ b/blockchains/solana/assets/MEFNBXixkEbait3xn9bkm8WsJzXtVsaJEn4c8Sam21u/info.json @@ -0,0 +1,21 @@ +{ + "name": "Magic Eden", + "website": "https://magiceden.io/", + "description": "$ME is powering the onchain economy and represents the most powerful suite of cross chain trading, minting, and wallet protocols.", + "explorer": "https://solscan.io/token/MEFNBXixkEbait3xn9bkm8WsJzXtVsaJEn4c8Sam21u", + "type": "SPL", + "symbol": "ME", + "decimals": 6, + "status": "active", + "id": "MEFNBXixkEbait3xn9bkm8WsJzXtVsaJEn4c8Sam21u", + "links": [ + { + "name": "x", + "url": "https://x.com/MagicEden" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/magiceden/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/MEFNBXixkEbait3xn9bkm8WsJzXtVsaJEn4c8Sam21u/logo.png b/blockchains/solana/assets/MEFNBXixkEbait3xn9bkm8WsJzXtVsaJEn4c8Sam21u/logo.png new file mode 100644 index 0000000000000..dd2ce491c7347 Binary files /dev/null and b/blockchains/solana/assets/MEFNBXixkEbait3xn9bkm8WsJzXtVsaJEn4c8Sam21u/logo.png differ diff --git a/blockchains/solana/assets/METADDFL6wWMWEoKTFJwcThTbUmtarRJZjRpzUvkxhr/info.json b/blockchains/solana/assets/METADDFL6wWMWEoKTFJwcThTbUmtarRJZjRpzUvkxhr/info.json new file mode 100644 index 0000000000000..7550c3cc57f53 --- /dev/null +++ b/blockchains/solana/assets/METADDFL6wWMWEoKTFJwcThTbUmtarRJZjRpzUvkxhr/info.json @@ -0,0 +1,28 @@ +{ + "name": "META", + "type": "SPL", + "symbol": "META", + "decimals": 9, + "description": "MetaDAO was created in 2023 with its initial token distribution via airdrop to aligned parties in November, 2023 with 10,000 tokens distributed and a remaining 990,000 in the DAO treasury. In March of 2023 the DAO traded a proposal which burned all remaining treasury META tokens culminating with a total burn of 979,000 META tokens.", + "website": "https://metadao.fi/", + "explorer": "https://solscan.io/token/METADDFL6wWMWEoKTFJwcThTbUmtarRJZjRpzUvkxhr", + "id": "METADDFL6wWMWEoKTFJwcThTbUmtarRJZjRpzUvkxhr", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/MetaDAOProject" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/meta-dao/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/meta-2" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/METADDFL6wWMWEoKTFJwcThTbUmtarRJZjRpzUvkxhr/logo.png b/blockchains/solana/assets/METADDFL6wWMWEoKTFJwcThTbUmtarRJZjRpzUvkxhr/logo.png new file mode 100644 index 0000000000000..6cdc73ecdc1dd Binary files /dev/null and b/blockchains/solana/assets/METADDFL6wWMWEoKTFJwcThTbUmtarRJZjRpzUvkxhr/logo.png differ diff --git a/blockchains/solana/assets/METAewgxyPbgwsseH8T16a39CQ5VyVxZi9zXiDPY18m/info.json b/blockchains/solana/assets/METAewgxyPbgwsseH8T16a39CQ5VyVxZi9zXiDPY18m/info.json new file mode 100644 index 0000000000000..2d12c24ce9bd1 --- /dev/null +++ b/blockchains/solana/assets/METAewgxyPbgwsseH8T16a39CQ5VyVxZi9zXiDPY18m/info.json @@ -0,0 +1,21 @@ +{ + "name": "Metaplex", + "symbol": "MPLX", + "type": "SPL", + "decimals": 6, + "description": "The Metaplex Protocol is a decentralized platform built on the Solana blockchain, designed to facilitate the creation, sale, and management of digital assets.", + "website": "https://www.metaplex.com/", + "explorer": "https://solscan.io/token/METAewgxyPbgwsseH8T16a39CQ5VyVxZi9zXiDPY18m", + "status": "active", + "id": "METAewgxyPbgwsseH8T16a39CQ5VyVxZi9zXiDPY18m", + "links": [ + { + "name": "x", + "url": "https://x.com/metaplex" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/metaplex/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/METAewgxyPbgwsseH8T16a39CQ5VyVxZi9zXiDPY18m/logo.png b/blockchains/solana/assets/METAewgxyPbgwsseH8T16a39CQ5VyVxZi9zXiDPY18m/logo.png new file mode 100644 index 0000000000000..46962af4a644e Binary files /dev/null and b/blockchains/solana/assets/METAewgxyPbgwsseH8T16a39CQ5VyVxZi9zXiDPY18m/logo.png differ diff --git a/blockchains/solana/assets/MEW1gQWJ3nEXg2qgERiKu7FAFj79PHvQVREQUzScPP5/info.json b/blockchains/solana/assets/MEW1gQWJ3nEXg2qgERiKu7FAFj79PHvQVREQUzScPP5/info.json new file mode 100644 index 0000000000000..9284fc50ca98d --- /dev/null +++ b/blockchains/solana/assets/MEW1gQWJ3nEXg2qgERiKu7FAFj79PHvQVREQUzScPP5/info.json @@ -0,0 +1,21 @@ +{ + "name": "cat in a dogs world", + "website": "https://mew.xyz", + "description": "Mew is a cat in a dogs world out to save the world from other dog coins.", + "explorer": "https://solscan.io/token/MEW1gQWJ3nEXg2qgERiKu7FAFj79PHvQVREQUzScPP5", + "type": "SPL", + "symbol": "MEW", + "decimals": 5, + "status": "active", + "id": "MEW1gQWJ3nEXg2qgERiKu7FAFj79PHvQVREQUzScPP5", + "links": [ + { + "name": "x", + "url": "https://x.com/ClearpoolFin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/clearpool/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/MEW1gQWJ3nEXg2qgERiKu7FAFj79PHvQVREQUzScPP5/logo.png b/blockchains/solana/assets/MEW1gQWJ3nEXg2qgERiKu7FAFj79PHvQVREQUzScPP5/logo.png new file mode 100644 index 0000000000000..ed46037081c0a Binary files /dev/null and b/blockchains/solana/assets/MEW1gQWJ3nEXg2qgERiKu7FAFj79PHvQVREQUzScPP5/logo.png differ diff --git a/blockchains/solana/assets/MFerpBVGKZh2jXN7cbJdXRXQTp6j6pbSnSZrfWrondo/info.json b/blockchains/solana/assets/MFerpBVGKZh2jXN7cbJdXRXQTp6j6pbSnSZrfWrondo/info.json new file mode 100644 index 0000000000000..da04297b31e9b --- /dev/null +++ b/blockchains/solana/assets/MFerpBVGKZh2jXN7cbJdXRXQTp6j6pbSnSZrfWrondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "AbbVie (Ondo Tokenized)", + "type": "SPL", + "symbol": "ABBVon", + "decimals": 9, + "description": "ABBVon is the Ondo Tokenized version of AbbVie, giving tokenholders economic exposure similar to holding ABBV and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/MFerpBVGKZh2jXN7cbJdXRXQTp6j6pbSnSZrfWrondo", + "status": "active", + "id": "MFerpBVGKZh2jXN7cbJdXRXQTp6j6pbSnSZrfWrondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/abbvie-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abbvie-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/MFerpBVGKZh2jXN7cbJdXRXQTp6j6pbSnSZrfWrondo/logo.png b/blockchains/solana/assets/MFerpBVGKZh2jXN7cbJdXRXQTp6j6pbSnSZrfWrondo/logo.png new file mode 100644 index 0000000000000..4e50b5eb7d37b Binary files /dev/null and b/blockchains/solana/assets/MFerpBVGKZh2jXN7cbJdXRXQTp6j6pbSnSZrfWrondo/logo.png differ diff --git a/blockchains/solana/assets/MNDEFzGvMt87ueuHvVU9VcTqsAP5b3fTGPsHuuPA5ey/info.json b/blockchains/solana/assets/MNDEFzGvMt87ueuHvVU9VcTqsAP5b3fTGPsHuuPA5ey/info.json index ca4855dc499a8..157f508a80859 100644 --- a/blockchains/solana/assets/MNDEFzGvMt87ueuHvVU9VcTqsAP5b3fTGPsHuuPA5ey/info.json +++ b/blockchains/solana/assets/MNDEFzGvMt87ueuHvVU9VcTqsAP5b3fTGPsHuuPA5ey/info.json @@ -10,8 +10,8 @@ "id": "MNDEFzGvMt87ueuHvVU9VcTqsAP5b3fTGPsHuuPA5ey", "links": [ { - "name": "twitter", - "url": "https://twitter.com/MarinadeFinance" + "name": "x", + "url": "https://x.com/MarinadeFinance" }, { "name": "coinmarketcap", diff --git a/blockchains/solana/assets/MYXqkDYbzr7vjXAz2BapR4AiYRXzoikGirrLoRzondo/info.json b/blockchains/solana/assets/MYXqkDYbzr7vjXAz2BapR4AiYRXzoikGirrLoRzondo/info.json new file mode 100644 index 0000000000000..b652d5695416c --- /dev/null +++ b/blockchains/solana/assets/MYXqkDYbzr7vjXAz2BapR4AiYRXzoikGirrLoRzondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "BitMine Immersion Technologies (Ondo Tokenized)", + "type": "SPL", + "symbol": "BMNRon", + "decimals": 9, + "description": "BMNRon is the Ondo Tokenized version of BitMine Immersion Technologies, giving tokenholders economic exposure similar to holding BMNR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/MYXqkDYbzr7vjXAz2BapR4AiYRXzoikGirrLoRzondo", + "status": "active", + "id": "MYXqkDYbzr7vjXAz2BapR4AiYRXzoikGirrLoRzondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bitmine-immersion-technologies-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bitmine-immersion-technologies-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/MYXqkDYbzr7vjXAz2BapR4AiYRXzoikGirrLoRzondo/logo.png b/blockchains/solana/assets/MYXqkDYbzr7vjXAz2BapR4AiYRXzoikGirrLoRzondo/logo.png new file mode 100644 index 0000000000000..b2bd2c4cc9675 Binary files /dev/null and b/blockchains/solana/assets/MYXqkDYbzr7vjXAz2BapR4AiYRXzoikGirrLoRzondo/logo.png differ diff --git a/blockchains/solana/assets/MangoCzJ36AjZyKwVj3VnYU4GTonjfVEnJmvvWaxLac/info.json b/blockchains/solana/assets/MangoCzJ36AjZyKwVj3VnYU4GTonjfVEnJmvvWaxLac/info.json index 32b52593ea1a0..9198d23df0cd8 100644 --- a/blockchains/solana/assets/MangoCzJ36AjZyKwVj3VnYU4GTonjfVEnJmvvWaxLac/info.json +++ b/blockchains/solana/assets/MangoCzJ36AjZyKwVj3VnYU4GTonjfVEnJmvvWaxLac/info.json @@ -10,8 +10,8 @@ "id": "MangoCzJ36AjZyKwVj3VnYU4GTonjfVEnJmvvWaxLac", "links": [ { - "name": "twitter", - "url": "https://twitter.com/mangomarkets" + "name": "x", + "url": "https://x.com/mangomarkets" }, { "name": "coinmarketcap", diff --git a/blockchains/solana/assets/MbetZheK6wDs22ftMat7PLiBtoXYBdrMHfpkKRihCYK/info.json b/blockchains/solana/assets/MbetZheK6wDs22ftMat7PLiBtoXYBdrMHfpkKRihCYK/info.json new file mode 100644 index 0000000000000..009c187d4ca2a --- /dev/null +++ b/blockchains/solana/assets/MbetZheK6wDs22ftMat7PLiBtoXYBdrMHfpkKRihCYK/info.json @@ -0,0 +1,30 @@ +{ + "name": "Memebets", + "type": "SOL", + "symbol": "MBET", + "decimals": 6, + "description": "$MBET is the official meme token of Memebets.io, a decentralized peer-to-peer (P2P) price prediction game centered around the volatility of memecoins. Built for traders and speculators, Memebets allows users to place bets on the price movements of popular memecoins like $DOGE, $SHIB, and $PEPE, creating an on-chain, permissionless environment for high-risk, high-reward trading.", + "website": "https://www.memebets.io/", + "explorer": "https://solscan.io/token/MbetZheK6wDs22ftMat7PLiBtoXYBdrMHfpkKRihCYK", + "id": "MbetZheK6wDs22ftMat7PLiBtoXYBdrMHfpkKRihCYK", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/MemeBets_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/memebets/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/memebets" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/MbetZheK6wDs22ftMat7PLiBtoXYBdrMHfpkKRihCYK/logo.png b/blockchains/solana/assets/MbetZheK6wDs22ftMat7PLiBtoXYBdrMHfpkKRihCYK/logo.png new file mode 100644 index 0000000000000..d18ba0749c29c Binary files /dev/null and b/blockchains/solana/assets/MbetZheK6wDs22ftMat7PLiBtoXYBdrMHfpkKRihCYK/logo.png differ diff --git a/blockchains/solana/assets/MkN2TZSYTFBdMRLf9EVcfhstTwnazH8knd9hpepondo/info.json b/blockchains/solana/assets/MkN2TZSYTFBdMRLf9EVcfhstTwnazH8knd9hpepondo/info.json new file mode 100644 index 0000000000000..26771d6312ec1 --- /dev/null +++ b/blockchains/solana/assets/MkN2TZSYTFBdMRLf9EVcfhstTwnazH8knd9hpepondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Vertiv (Ondo Tokenized)", + "type": "SPL", + "symbol": "VRTon", + "decimals": 9, + "description": "VRTon is the Ondo Tokenized version of Vertiv, giving tokenholders economic exposure similar to holding VRT and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/MkN2TZSYTFBdMRLf9EVcfhstTwnazH8knd9hpepondo", + "status": "active", + "id": "MkN2TZSYTFBdMRLf9EVcfhstTwnazH8knd9hpepondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vertiv-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vertiv-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/MkN2TZSYTFBdMRLf9EVcfhstTwnazH8knd9hpepondo/logo.png b/blockchains/solana/assets/MkN2TZSYTFBdMRLf9EVcfhstTwnazH8knd9hpepondo/logo.png new file mode 100644 index 0000000000000..5001a982cf121 Binary files /dev/null and b/blockchains/solana/assets/MkN2TZSYTFBdMRLf9EVcfhstTwnazH8knd9hpepondo/logo.png differ diff --git a/blockchains/solana/assets/MtEXKVN3Pcggy8MPA3eJr15H6SK3RXheScqj9qtondo/info.json b/blockchains/solana/assets/MtEXKVN3Pcggy8MPA3eJr15H6SK3RXheScqj9qtondo/info.json new file mode 100644 index 0000000000000..a1d7ca7fd1b5a --- /dev/null +++ b/blockchains/solana/assets/MtEXKVN3Pcggy8MPA3eJr15H6SK3RXheScqj9qtondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Home Depot (Ondo Tokenized)", + "type": "SPL", + "symbol": "HDon", + "decimals": 9, + "description": "HDon is the Ondo Tokenized version of Home Depot, giving tokenholders economic exposure similar to holding HD and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/MtEXKVN3Pcggy8MPA3eJr15H6SK3RXheScqj9qtondo", + "status": "active", + "id": "MtEXKVN3Pcggy8MPA3eJr15H6SK3RXheScqj9qtondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/home-depot-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/home-depot-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/MtEXKVN3Pcggy8MPA3eJr15H6SK3RXheScqj9qtondo/logo.png b/blockchains/solana/assets/MtEXKVN3Pcggy8MPA3eJr15H6SK3RXheScqj9qtondo/logo.png new file mode 100644 index 0000000000000..9bbe5934d723a Binary files /dev/null and b/blockchains/solana/assets/MtEXKVN3Pcggy8MPA3eJr15H6SK3RXheScqj9qtondo/logo.png differ diff --git a/blockchains/solana/assets/NFTUkR4u7wKxy9QLaX2TGvd9oZSWoMo4jqSJqdMb7Nk/info.json b/blockchains/solana/assets/NFTUkR4u7wKxy9QLaX2TGvd9oZSWoMo4jqSJqdMb7Nk/info.json new file mode 100644 index 0000000000000..f0233101e610f --- /dev/null +++ b/blockchains/solana/assets/NFTUkR4u7wKxy9QLaX2TGvd9oZSWoMo4jqSJqdMb7Nk/info.json @@ -0,0 +1,21 @@ +{ + "name": "Blockasset", + "symbol": "BLOCK", + "type": "SPL", + "decimals": 6, + "description": "Blockasset is a leading Web3 sports network with an officially parnership with the UFG, that connects its community with unique experiences through athlete partnerships and innovative products.", + "website": "https://home.blockasset.co/", + "explorer": "https://solscan.io/token/NFTUkR4u7wKxy9QLaX2TGvd9oZSWoMo4jqSJqdMb7Nk", + "status": "active", + "id": "NFTUkR4u7wKxy9QLaX2TGvd9oZSWoMo4jqSJqdMb7Nk", + "links": [ + { + "name": "x", + "url": "https://x.com/Blockassetco" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/blockasset" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/NFTUkR4u7wKxy9QLaX2TGvd9oZSWoMo4jqSJqdMb7Nk/logo.png b/blockchains/solana/assets/NFTUkR4u7wKxy9QLaX2TGvd9oZSWoMo4jqSJqdMb7Nk/logo.png new file mode 100644 index 0000000000000..f8290f7ac9a9f Binary files /dev/null and b/blockchains/solana/assets/NFTUkR4u7wKxy9QLaX2TGvd9oZSWoMo4jqSJqdMb7Nk/logo.png differ diff --git a/blockchains/solana/assets/NKyzy31w2J7odLb2CW3Ft4fpKXkW3LBt1pvpkVLondo/info.json b/blockchains/solana/assets/NKyzy31w2J7odLb2CW3Ft4fpKXkW3LBt1pvpkVLondo/info.json new file mode 100644 index 0000000000000..77d7781e46737 --- /dev/null +++ b/blockchains/solana/assets/NKyzy31w2J7odLb2CW3Ft4fpKXkW3LBt1pvpkVLondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Coupang (Ondo Tokenized)", + "type": "SPL", + "symbol": "CPNGon", + "decimals": 9, + "description": "CPNGon is the Ondo Tokenized version of Coupang, giving tokenholders economic exposure similar to holding CPNG and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/NKyzy31w2J7odLb2CW3Ft4fpKXkW3LBt1pvpkVLondo", + "status": "active", + "id": "NKyzy31w2J7odLb2CW3Ft4fpKXkW3LBt1pvpkVLondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/coupang-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coupang-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/NKyzy31w2J7odLb2CW3Ft4fpKXkW3LBt1pvpkVLondo/logo.png b/blockchains/solana/assets/NKyzy31w2J7odLb2CW3Ft4fpKXkW3LBt1pvpkVLondo/logo.png new file mode 100644 index 0000000000000..96cbf3b06fbf9 Binary files /dev/null and b/blockchains/solana/assets/NKyzy31w2J7odLb2CW3Ft4fpKXkW3LBt1pvpkVLondo/logo.png differ diff --git a/blockchains/solana/assets/NTKX27mEAMhzNgrJYeWBLwQgDvLRWgARgaPzHxppump/info.json b/blockchains/solana/assets/NTKX27mEAMhzNgrJYeWBLwQgDvLRWgARgaPzHxppump/info.json new file mode 100644 index 0000000000000..75c6c13c7275b --- /dev/null +++ b/blockchains/solana/assets/NTKX27mEAMhzNgrJYeWBLwQgDvLRWgARgaPzHxppump/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE First Gold Backed Stablecoin", + "type": "SPL", + "symbol": "FAKE USDKG", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/NTKX27mEAMhzNgrJYeWBLwQgDvLRWgARgaPzHxppump", + "explorer": "https://solscan.io/token/NTKX27mEAMhzNgrJYeWBLwQgDvLRWgARgaPzHxppump", + "status": "spam", + "id": "NTKX27mEAMhzNgrJYeWBLwQgDvLRWgARgaPzHxppump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/NYANpAp9Cr7YarBNrby7Xx4xU6No6JKTBuohNA3yscP/info.json b/blockchains/solana/assets/NYANpAp9Cr7YarBNrby7Xx4xU6No6JKTBuohNA3yscP/info.json new file mode 100644 index 0000000000000..475da0de1b462 --- /dev/null +++ b/blockchains/solana/assets/NYANpAp9Cr7YarBNrby7Xx4xU6No6JKTBuohNA3yscP/info.json @@ -0,0 +1,21 @@ +{ + "name": "Nyan Heroes", + "symbol": "NYAN", + "type": "SPL", + "decimals": 9, + "description": "NYAN HEROES is a competitive movement shooter featuring cats piloting mechs. The team are the creators behind Halo, Destiny, Assassins Creed, Mass Effect and many more.", + "website": "https://nyanheroes.com/", + "explorer": "https://solscan.io/token/NYANpAp9Cr7YarBNrby7Xx4xU6No6JKTBuohNA3yscP", + "status": "active", + "id": "NYANpAp9Cr7YarBNrby7Xx4xU6No6JKTBuohNA3yscP", + "links": [ + { + "name": "x", + "url": "https://x.com/nyanheroesv" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nyan-heroes/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/NYANpAp9Cr7YarBNrby7Xx4xU6No6JKTBuohNA3yscP/logo.png b/blockchains/solana/assets/NYANpAp9Cr7YarBNrby7Xx4xU6No6JKTBuohNA3yscP/logo.png new file mode 100644 index 0000000000000..dc81ffb9d1eb4 Binary files /dev/null and b/blockchains/solana/assets/NYANpAp9Cr7YarBNrby7Xx4xU6No6JKTBuohNA3yscP/logo.png differ diff --git a/blockchains/solana/assets/NeonTjSjsuo3rexg9o6vHuMXw62f9V7zvmu8M8Zut44/info.json b/blockchains/solana/assets/NeonTjSjsuo3rexg9o6vHuMXw62f9V7zvmu8M8Zut44/info.json new file mode 100644 index 0000000000000..ed6e6be531079 --- /dev/null +++ b/blockchains/solana/assets/NeonTjSjsuo3rexg9o6vHuMXw62f9V7zvmu8M8Zut44/info.json @@ -0,0 +1,21 @@ +{ + "name": "Neon EVM", + "symbol": "NEON", + "type": "SPL", + "decimals": 9, + "description": "Neon EVM is a smart contract on Solana. Solana is a fast-growing blockchain, which uses a proof-of-history consensus mechanism.", + "website": "https://neonevm.org/", + "explorer": "https://solscan.io/token/NeonTjSjsuo3rexg9o6vHuMXw62f9V7zvmu8M8Zut44", + "status": "active", + "id": "NeonTjSjsuo3rexg9o6vHuMXw62f9V7zvmu8M8Zut44", + "links": [ + { + "name": "x", + "url": "https://x.com/Neon_EVM" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/neon" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/NeonTjSjsuo3rexg9o6vHuMXw62f9V7zvmu8M8Zut44/logo.png b/blockchains/solana/assets/NeonTjSjsuo3rexg9o6vHuMXw62f9V7zvmu8M8Zut44/logo.png new file mode 100644 index 0000000000000..c9054edfc1548 Binary files /dev/null and b/blockchains/solana/assets/NeonTjSjsuo3rexg9o6vHuMXw62f9V7zvmu8M8Zut44/logo.png differ diff --git a/blockchains/solana/assets/NrTdGMA3ujUvWXkwXyZKnhoByb32KTjRh5Vo47yondo/info.json b/blockchains/solana/assets/NrTdGMA3ujUvWXkwXyZKnhoByb32KTjRh5Vo47yondo/info.json new file mode 100644 index 0000000000000..621c3b7c33937 --- /dev/null +++ b/blockchains/solana/assets/NrTdGMA3ujUvWXkwXyZKnhoByb32KTjRh5Vo47yondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Gemini Space Station (Ondo Tokenized)", + "type": "SPL", + "symbol": "GEMIon", + "decimals": 9, + "description": "GEMIon is the Ondo Tokenized version of Gemini Space Station, giving tokenholders economic exposure similar to holding GEMI and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/NrTdGMA3ujUvWXkwXyZKnhoByb32KTjRh5Vo47yondo", + "status": "active", + "id": "NrTdGMA3ujUvWXkwXyZKnhoByb32KTjRh5Vo47yondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gemini-space-station-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gemini-space-station-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/NrTdGMA3ujUvWXkwXyZKnhoByb32KTjRh5Vo47yondo/logo.png b/blockchains/solana/assets/NrTdGMA3ujUvWXkwXyZKnhoByb32KTjRh5Vo47yondo/logo.png new file mode 100644 index 0000000000000..50198ae8b3c65 Binary files /dev/null and b/blockchains/solana/assets/NrTdGMA3ujUvWXkwXyZKnhoByb32KTjRh5Vo47yondo/logo.png differ diff --git a/blockchains/solana/assets/P7hTXnKk2d2DyqWnefp5BSroE1qjjKpKxg9SxQqondo/info.json b/blockchains/solana/assets/P7hTXnKk2d2DyqWnefp5BSroE1qjjKpKxg9SxQqondo/info.json new file mode 100644 index 0000000000000..93be7566973bc --- /dev/null +++ b/blockchains/solana/assets/P7hTXnKk2d2DyqWnefp5BSroE1qjjKpKxg9SxQqondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "abrdn Physical Palladium Shares ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "PALLon", + "decimals": 9, + "description": "PALLon is the Ondo Tokenized version of the abrdn Physical Palladium Shares ETF, giving tokenholders economic exposure similar to holding PALL and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/P7hTXnKk2d2DyqWnefp5BSroE1qjjKpKxg9SxQqondo", + "status": "active", + "id": "P7hTXnKk2d2DyqWnefp5BSroE1qjjKpKxg9SxQqondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/abrdn-physical-palladium-shares-etf-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abrdn-physical-palladium-shares-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/P7hTXnKk2d2DyqWnefp5BSroE1qjjKpKxg9SxQqondo/logo.png b/blockchains/solana/assets/P7hTXnKk2d2DyqWnefp5BSroE1qjjKpKxg9SxQqondo/logo.png new file mode 100644 index 0000000000000..e2e36379b3e00 Binary files /dev/null and b/blockchains/solana/assets/P7hTXnKk2d2DyqWnefp5BSroE1qjjKpKxg9SxQqondo/logo.png differ diff --git a/blockchains/solana/assets/PANDA8iiaCJR5mk3ruypxsGiKh6WhYsmesmbsdd8xYd/info.json b/blockchains/solana/assets/PANDA8iiaCJR5mk3ruypxsGiKh6WhYsmesmbsdd8xYd/info.json new file mode 100644 index 0000000000000..2d833bd20e9a3 --- /dev/null +++ b/blockchains/solana/assets/PANDA8iiaCJR5mk3ruypxsGiKh6WhYsmesmbsdd8xYd/info.json @@ -0,0 +1,21 @@ +{ + "name": "Panda Swap", + "symbol": "PANDA", + "type": "SPL", + "decimals": 3, + "description": "At $PANDA, we are dedicated to revolutionizing decentralized finance (DeFi) by offering fast, secure, and accessible solutions. Join us as we shape the future of DeFi on Solana.", + "website": "https://www.pandaswapsol.io/", + "explorer": "https://solscan.io/token/PANDA8iiaCJR5mk3ruypxsGiKh6WhYsmesmbsdd8xYd", + "status": "active", + "id": "PANDA8iiaCJR5mk3ruypxsGiKh6WhYsmesmbsdd8xYd", + "links": [ + { + "name": "x", + "url": "https://x.com/PandaSwapSol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pandaswapsol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/PANDA8iiaCJR5mk3ruypxsGiKh6WhYsmesmbsdd8xYd/logo.png b/blockchains/solana/assets/PANDA8iiaCJR5mk3ruypxsGiKh6WhYsmesmbsdd8xYd/logo.png new file mode 100644 index 0000000000000..3dd83ff0363f4 Binary files /dev/null and b/blockchains/solana/assets/PANDA8iiaCJR5mk3ruypxsGiKh6WhYsmesmbsdd8xYd/logo.png differ diff --git a/blockchains/solana/assets/PENGEKyPYXYDnbXGKcjXaSfMsovhcrtPT8S7127tKcg/info.json b/blockchains/solana/assets/PENGEKyPYXYDnbXGKcjXaSfMsovhcrtPT8S7127tKcg/info.json new file mode 100644 index 0000000000000..24aa3eb6944a2 --- /dev/null +++ b/blockchains/solana/assets/PENGEKyPYXYDnbXGKcjXaSfMsovhcrtPT8S7127tKcg/info.json @@ -0,0 +1,28 @@ +{ + "name": "Penguiana", + "type": "SPL", + "symbol": "PENGU", + "decimals": 6, + "description": "Solana-Based Memecoin With Upcoming Play To Earn Utility. Welcome to Penguiana: We at Penguiana believe in a slow and steady race to the top, just like how penguins waddle in search of fish, let's eat the dip, the penguin style.", + "website": "https://penguiana.com/", + "explorer": "https://solscan.io/token/PENGEKyPYXYDnbXGKcjXaSfMsovhcrtPT8S7127tKcg", + "id": "PENGEKyPYXYDnbXGKcjXaSfMsovhcrtPT8S7127tKcg", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/penguianaonsol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/penguiana/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/penguiana" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/PENGEKyPYXYDnbXGKcjXaSfMsovhcrtPT8S7127tKcg/logo.png b/blockchains/solana/assets/PENGEKyPYXYDnbXGKcjXaSfMsovhcrtPT8S7127tKcg/logo.png new file mode 100644 index 0000000000000..3e3c43bcbb122 Binary files /dev/null and b/blockchains/solana/assets/PENGEKyPYXYDnbXGKcjXaSfMsovhcrtPT8S7127tKcg/logo.png differ diff --git a/blockchains/solana/assets/PRSMNsEPqhGVCH1TtWiJqPjJyh2cKrLostPZTNy1o5x/info.json b/blockchains/solana/assets/PRSMNsEPqhGVCH1TtWiJqPjJyh2cKrLostPZTNy1o5x/info.json new file mode 100644 index 0000000000000..3f6477c537223 --- /dev/null +++ b/blockchains/solana/assets/PRSMNsEPqhGVCH1TtWiJqPjJyh2cKrLostPZTNy1o5x/info.json @@ -0,0 +1,21 @@ +{ + "name": "PRISM", + "symbol": "PRISM", + "type": "SPL", + "decimals": 6, + "description": "PRISM is a dex aggregator on Solana with super-smooth interface that auto-routes your transactions across multiple liquidity sources to guarantee best prices. The platform has simple & advanced features, simple being a user-friendly swap interface, while Advanced - A full-fledged DEX based on order books.", + "website": "https://prism.ag/", + "explorer": "https://solscan.io/token/PRSMNsEPqhGVCH1TtWiJqPjJyh2cKrLostPZTNy1o5x", + "status": "active", + "id": "PRSMNsEPqhGVCH1TtWiJqPjJyh2cKrLostPZTNy1o5x", + "links": [ + { + "name": "x", + "url": "https://x.com/prism_ag" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/prism" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/PRSMNsEPqhGVCH1TtWiJqPjJyh2cKrLostPZTNy1o5x/logo.png b/blockchains/solana/assets/PRSMNsEPqhGVCH1TtWiJqPjJyh2cKrLostPZTNy1o5x/logo.png new file mode 100644 index 0000000000000..779dced859c14 Binary files /dev/null and b/blockchains/solana/assets/PRSMNsEPqhGVCH1TtWiJqPjJyh2cKrLostPZTNy1o5x/logo.png differ diff --git a/blockchains/solana/assets/PUPS8ZgJ5po4UmNDfqtDMCPP6M1KP3EEzG9Zufcwzrg/info.json b/blockchains/solana/assets/PUPS8ZgJ5po4UmNDfqtDMCPP6M1KP3EEzG9Zufcwzrg/info.json new file mode 100644 index 0000000000000..67d645ca3df16 --- /dev/null +++ b/blockchains/solana/assets/PUPS8ZgJ5po4UmNDfqtDMCPP6M1KP3EEzG9Zufcwzrg/info.json @@ -0,0 +1,17 @@ +{ + "name": "PUPS", + "website": "https://www.pupstoken.com", + "description": "Pup is the first memecoin on Bitcoin", + "explorer": "https://solscan.io/token/PUPS8ZgJ5po4UmNDfqtDMCPP6M1KP3EEzG9Zufcwzrg", + "type": "SPL", + "symbol": "PUPS", + "decimals": 9, + "status": "active", + "id": "PUPS8ZgJ5po4UmNDfqtDMCPP6M1KP3EEzG9Zufcwzrg", + "links": [ + { + "name": "x", + "url": "https://x.com/pupstoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/PUPS8ZgJ5po4UmNDfqtDMCPP6M1KP3EEzG9Zufcwzrg/logo.png b/blockchains/solana/assets/PUPS8ZgJ5po4UmNDfqtDMCPP6M1KP3EEzG9Zufcwzrg/logo.png new file mode 100644 index 0000000000000..08aee0d76ba25 Binary files /dev/null and b/blockchains/solana/assets/PUPS8ZgJ5po4UmNDfqtDMCPP6M1KP3EEzG9Zufcwzrg/logo.png differ diff --git a/blockchains/solana/assets/PjtfUiw6Hwd8PZ94EcUw8mBSYxp7SjjzSLeNTDKondo/info.json b/blockchains/solana/assets/PjtfUiw6Hwd8PZ94EcUw8mBSYxp7SjjzSLeNTDKondo/info.json new file mode 100644 index 0000000000000..177b64d1577c8 --- /dev/null +++ b/blockchains/solana/assets/PjtfUiw6Hwd8PZ94EcUw8mBSYxp7SjjzSLeNTDKondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Citigroup (Ondo Tokenized)", + "type": "SPL", + "symbol": "Con", + "decimals": 9, + "description": "Con is the Ondo Tokenized version of Citigroup, giving tokenholders economic exposure similar to holding C and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/PjtfUiw6Hwd8PZ94EcUw8mBSYxp7SjjzSLeNTDKondo", + "status": "active", + "id": "PjtfUiw6Hwd8PZ94EcUw8mBSYxp7SjjzSLeNTDKondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/citigroup-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/citigroup-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/PjtfUiw6Hwd8PZ94EcUw8mBSYxp7SjjzSLeNTDKondo/logo.png b/blockchains/solana/assets/PjtfUiw6Hwd8PZ94EcUw8mBSYxp7SjjzSLeNTDKondo/logo.png new file mode 100644 index 0000000000000..2cb3905797b56 Binary files /dev/null and b/blockchains/solana/assets/PjtfUiw6Hwd8PZ94EcUw8mBSYxp7SjjzSLeNTDKondo/logo.png differ diff --git a/blockchains/solana/assets/PnjETBCLC318DRejo9cMQKAmET9PvW8AEFGWMNtondo/info.json b/blockchains/solana/assets/PnjETBCLC318DRejo9cMQKAmET9PvW8AEFGWMNtondo/info.json new file mode 100644 index 0000000000000..d20d32cfb5a13 --- /dev/null +++ b/blockchains/solana/assets/PnjETBCLC318DRejo9cMQKAmET9PvW8AEFGWMNtondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "PDD Holdings (Ondo Tokenized)", + "type": "SPL", + "symbol": "PDDon", + "decimals": 9, + "description": "PDDon is the Ondo Tokenized version of PDD Holdings, giving tokenholders economic exposure similar to holding PDD and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/PnjETBCLC318DRejo9cMQKAmET9PvW8AEFGWMNtondo", + "status": "active", + "id": "PnjETBCLC318DRejo9cMQKAmET9PvW8AEFGWMNtondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pdd-holdings-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pdd-holdings-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/PnjETBCLC318DRejo9cMQKAmET9PvW8AEFGWMNtondo/logo.png b/blockchains/solana/assets/PnjETBCLC318DRejo9cMQKAmET9PvW8AEFGWMNtondo/logo.png new file mode 100644 index 0000000000000..7bde4f2c9b3cf Binary files /dev/null and b/blockchains/solana/assets/PnjETBCLC318DRejo9cMQKAmET9PvW8AEFGWMNtondo/logo.png differ diff --git a/blockchains/solana/assets/R2uDbMtmHq5xSS5SserrovdRKdpiqnVBCd2AHLhondo/info.json b/blockchains/solana/assets/R2uDbMtmHq5xSS5SserrovdRKdpiqnVBCd2AHLhondo/info.json new file mode 100644 index 0000000000000..c906120fd9eaf --- /dev/null +++ b/blockchains/solana/assets/R2uDbMtmHq5xSS5SserrovdRKdpiqnVBCd2AHLhondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Capital One (Ondo Tokenized)", + "type": "SPL", + "symbol": "COFon", + "decimals": 9, + "description": "COFon is the Ondo Tokenized version of Capital One, giving tokenholders economic exposure similar to holding COF and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/R2uDbMtmHq5xSS5SserrovdRKdpiqnVBCd2AHLhondo", + "status": "active", + "id": "R2uDbMtmHq5xSS5SserrovdRKdpiqnVBCd2AHLhondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/capital-one-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/capital-one-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/R2uDbMtmHq5xSS5SserrovdRKdpiqnVBCd2AHLhondo/logo.png b/blockchains/solana/assets/R2uDbMtmHq5xSS5SserrovdRKdpiqnVBCd2AHLhondo/logo.png new file mode 100644 index 0000000000000..b783120d5ca7e Binary files /dev/null and b/blockchains/solana/assets/R2uDbMtmHq5xSS5SserrovdRKdpiqnVBCd2AHLhondo/logo.png differ diff --git a/blockchains/solana/assets/R3ywbVQ5t8LNmjQsn2Ngv43dSqyZscQwNag9G3Eondo/info.json b/blockchains/solana/assets/R3ywbVQ5t8LNmjQsn2Ngv43dSqyZscQwNag9G3Eondo/info.json new file mode 100644 index 0000000000000..4f9070f367564 --- /dev/null +++ b/blockchains/solana/assets/R3ywbVQ5t8LNmjQsn2Ngv43dSqyZscQwNag9G3Eondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "MasTec (Ondo Tokenized)", + "type": "SPL", + "symbol": "MTZon", + "decimals": 9, + "description": "MTZon is the Ondo Tokenized version of MasTec, giving tokenholders economic exposure similar to holding MTZ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/R3ywbVQ5t8LNmjQsn2Ngv43dSqyZscQwNag9G3Eondo", + "status": "active", + "id": "R3ywbVQ5t8LNmjQsn2Ngv43dSqyZscQwNag9G3Eondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mastec-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mastec-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/R3ywbVQ5t8LNmjQsn2Ngv43dSqyZscQwNag9G3Eondo/logo.png b/blockchains/solana/assets/R3ywbVQ5t8LNmjQsn2Ngv43dSqyZscQwNag9G3Eondo/logo.png new file mode 100644 index 0000000000000..5d8e18111cb06 Binary files /dev/null and b/blockchains/solana/assets/R3ywbVQ5t8LNmjQsn2Ngv43dSqyZscQwNag9G3Eondo/logo.png differ diff --git a/blockchains/solana/assets/R4SUGQqwk8r4ZSdXniRV4UDJVspjSE4yfWWeYrLpump/info.json b/blockchains/solana/assets/R4SUGQqwk8r4ZSdXniRV4UDJVspjSE4yfWWeYrLpump/info.json new file mode 100644 index 0000000000000..64e293d853f93 --- /dev/null +++ b/blockchains/solana/assets/R4SUGQqwk8r4ZSdXniRV4UDJVspjSE4yfWWeYrLpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Percy Verence", + "type": "SPL", + "symbol": "PERCY", + "decimals": 6, + "website": "https://percyverencecoin.com/", + "description": "Percy Coin is the latest crypto meme token inspired by Elon Musk's Path of Exile 2 character, Percy, the legendary 'Killer of Kekius.'", + "explorer": "https://solscan.io/token/R4SUGQqwk8r4ZSdXniRV4UDJVspjSE4yfWWeYrLpump", + "status": "active", + "id": "R4SUGQqwk8r4ZSdXniRV4UDJVspjSE4yfWWeYrLpump", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/percy-verence" + }, + { + "name": "x", + "url": "https://x.com/percy_cto" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/R4SUGQqwk8r4ZSdXniRV4UDJVspjSE4yfWWeYrLpump/logo.png b/blockchains/solana/assets/R4SUGQqwk8r4ZSdXniRV4UDJVspjSE4yfWWeYrLpump/logo.png new file mode 100644 index 0000000000000..2570737829cb7 Binary files /dev/null and b/blockchains/solana/assets/R4SUGQqwk8r4ZSdXniRV4UDJVspjSE4yfWWeYrLpump/logo.png differ diff --git a/blockchains/solana/assets/RTb54gpqAx6RpLAHRGnqQ3ciQ845CHqhg21ZzEJondo/info.json b/blockchains/solana/assets/RTb54gpqAx6RpLAHRGnqQ3ciQ845CHqhg21ZzEJondo/info.json new file mode 100644 index 0000000000000..615046215f60c --- /dev/null +++ b/blockchains/solana/assets/RTb54gpqAx6RpLAHRGnqQ3ciQ845CHqhg21ZzEJondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Talen Energy (Ondo Tokenized)", + "type": "SPL", + "symbol": "TLNon", + "decimals": 9, + "description": "TLNon is the Ondo Tokenized version of Talen Energy, giving tokenholders economic exposure similar to holding TLN and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/RTb54gpqAx6RpLAHRGnqQ3ciQ845CHqhg21ZzEJondo", + "status": "active", + "id": "RTb54gpqAx6RpLAHRGnqQ3ciQ845CHqhg21ZzEJondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/talen-energy-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/talen-energy-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/RTb54gpqAx6RpLAHRGnqQ3ciQ845CHqhg21ZzEJondo/logo.png b/blockchains/solana/assets/RTb54gpqAx6RpLAHRGnqQ3ciQ845CHqhg21ZzEJondo/logo.png new file mode 100644 index 0000000000000..4da818828af48 Binary files /dev/null and b/blockchains/solana/assets/RTb54gpqAx6RpLAHRGnqQ3ciQ845CHqhg21ZzEJondo/logo.png differ diff --git a/blockchains/solana/assets/RUpbmGF6p42AAeN1QvhFReZejQry1cLkE1PUYFVVpnL/info.json b/blockchains/solana/assets/RUpbmGF6p42AAeN1QvhFReZejQry1cLkE1PUYFVVpnL/info.json new file mode 100644 index 0000000000000..b61cc27b83a4e --- /dev/null +++ b/blockchains/solana/assets/RUpbmGF6p42AAeN1QvhFReZejQry1cLkE1PUYFVVpnL/info.json @@ -0,0 +1,17 @@ +{ + "name": "Epep", + "website": "https://www.epepcoin.com/", + "description": "It all started with a small Epep and a dream, one day while perched on his lili pad his rod caught a snag, what was it he thought to himself…", + "explorer": "https://solscan.io/token/RUpbmGF6p42AAeN1QvhFReZejQry1cLkE1PUYFVVpnL", + "type": "SPL", + "symbol": "EPEP", + "decimals": 8, + "status": "active", + "id": "RUpbmGF6p42AAeN1QvhFReZejQry1cLkE1PUYFVVpnL", + "links": [ + { + "name": "x", + "url": "https://x.com/EpepOnSol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/RUpbmGF6p42AAeN1QvhFReZejQry1cLkE1PUYFVVpnL/logo.png b/blockchains/solana/assets/RUpbmGF6p42AAeN1QvhFReZejQry1cLkE1PUYFVVpnL/logo.png new file mode 100644 index 0000000000000..b58bd97567653 Binary files /dev/null and b/blockchains/solana/assets/RUpbmGF6p42AAeN1QvhFReZejQry1cLkE1PUYFVVpnL/logo.png differ diff --git a/blockchains/solana/assets/RoamA1USA8xjvpTJZ6RvvxyDRzNh6GCA1zVGKSiMVkn/info.json b/blockchains/solana/assets/RoamA1USA8xjvpTJZ6RvvxyDRzNh6GCA1zVGKSiMVkn/info.json new file mode 100644 index 0000000000000..e732aa2f7acd2 --- /dev/null +++ b/blockchains/solana/assets/RoamA1USA8xjvpTJZ6RvvxyDRzNh6GCA1zVGKSiMVkn/info.json @@ -0,0 +1,17 @@ +{ + "name": "Roam", + "website": "https://weroam.xyz/", + "description": "Revolutionizing Global Connectivity by Leveraging DePIN, OpenRoaming and User Incentives.", + "explorer": "https://solscan.io/token/RoamA1USA8xjvpTJZ6RvvxyDRzNh6GCA1zVGKSiMVkn", + "type": "SPL", + "symbol": "ROAM", + "decimals": 6, + "status": "active", + "id": "RoamA1USA8xjvpTJZ6RvvxyDRzNh6GCA1zVGKSiMVkn", + "links": [ + { + "name": "x", + "url": "https://x.com/weRoamxyz" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/RoamA1USA8xjvpTJZ6RvvxyDRzNh6GCA1zVGKSiMVkn/logo.png b/blockchains/solana/assets/RoamA1USA8xjvpTJZ6RvvxyDRzNh6GCA1zVGKSiMVkn/logo.png new file mode 100644 index 0000000000000..237cc9634f17d Binary files /dev/null and b/blockchains/solana/assets/RoamA1USA8xjvpTJZ6RvvxyDRzNh6GCA1zVGKSiMVkn/logo.png differ diff --git a/blockchains/solana/assets/SCSuPPNUSypLBsV4darsrYNg4ANPgaGhKhsA3GmMyjz/info.json b/blockchains/solana/assets/SCSuPPNUSypLBsV4darsrYNg4ANPgaGhKhsA3GmMyjz/info.json new file mode 100644 index 0000000000000..758d6473d38ee --- /dev/null +++ b/blockchains/solana/assets/SCSuPPNUSypLBsV4darsrYNg4ANPgaGhKhsA3GmMyjz/info.json @@ -0,0 +1,21 @@ +{ + "name": "Solcasino", + "symbol": "SCS", + "type": "SPL", + "decimals": 5, + "description": "Solcasino.io - Top One Crypto Casino on Solana network.", + "website": "https://solcasino.io/", + "explorer": "https://solscan.io/token/SCSuPPNUSypLBsV4darsrYNg4ANPgaGhKhsA3GmMyjz", + "status": "active", + "id": "SCSuPPNUSypLBsV4darsrYNg4ANPgaGhKhsA3GmMyjz", + "links": [ + { + "name": "x", + "url": "https://x.com/solcasinoio" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/solcasino-token" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/SCSuPPNUSypLBsV4darsrYNg4ANPgaGhKhsA3GmMyjz/logo.png b/blockchains/solana/assets/SCSuPPNUSypLBsV4darsrYNg4ANPgaGhKhsA3GmMyjz/logo.png new file mode 100644 index 0000000000000..4df357856223b Binary files /dev/null and b/blockchains/solana/assets/SCSuPPNUSypLBsV4darsrYNg4ANPgaGhKhsA3GmMyjz/logo.png differ diff --git a/blockchains/solana/assets/SHDWyBxihqiCj6YekG2GUr7wqKLeLAMK1gHZck9pL6y/info.json b/blockchains/solana/assets/SHDWyBxihqiCj6YekG2GUr7wqKLeLAMK1gHZck9pL6y/info.json new file mode 100644 index 0000000000000..86636f219b0ff --- /dev/null +++ b/blockchains/solana/assets/SHDWyBxihqiCj6YekG2GUr7wqKLeLAMK1gHZck9pL6y/info.json @@ -0,0 +1,21 @@ +{ + "name": "Shadow Token", + "type": "SPL", + "symbol": "SHDW", + "decimals": 9, + "website": "https://www.shdwdrive.com", + "description": "$SHDW is the utility token that powers the Shadow dePIN ecosystem providing decentralized storage, compute, and network orchestration to its users.", + "explorer": "https://solscan.io/token/SHDWyBxihqiCj6YekG2GUr7wqKLeLAMK1gHZck9pL6y", + "status": "active", + "id": "SHDWyBxihqiCj6YekG2GUr7wqKLeLAMK1gHZck9pL6y", + "links": [ + { + "name": "x", + "url": "https://x.com/genesysgo" + }, + { + "name": "telegram", + "url": "https://t.me/FrankGenGo" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/SHDWyBxihqiCj6YekG2GUr7wqKLeLAMK1gHZck9pL6y/logo.png b/blockchains/solana/assets/SHDWyBxihqiCj6YekG2GUr7wqKLeLAMK1gHZck9pL6y/logo.png new file mode 100644 index 0000000000000..afc437a4388de Binary files /dev/null and b/blockchains/solana/assets/SHDWyBxihqiCj6YekG2GUr7wqKLeLAMK1gHZck9pL6y/logo.png differ diff --git a/blockchains/solana/assets/SLNDpmoWTVADgEdndyvWzroNL7zSi1dF9PC3xHGtPwp/info.json b/blockchains/solana/assets/SLNDpmoWTVADgEdndyvWzroNL7zSi1dF9PC3xHGtPwp/info.json new file mode 100644 index 0000000000000..a6c07d139480a --- /dev/null +++ b/blockchains/solana/assets/SLNDpmoWTVADgEdndyvWzroNL7zSi1dF9PC3xHGtPwp/info.json @@ -0,0 +1,21 @@ +{ + "name": "Solend", + "symbol": "SLND", + "type": "SPL", + "decimals": 6, + "description": "Solend is the autonomous interest rate machine for lending on Solana.", + "website": "https://save.finance/", + "explorer": "https://solscan.io/token/SLNDpmoWTVADgEdndyvWzroNL7zSi1dF9PC3xHGtPwp", + "status": "active", + "id": "SLNDpmoWTVADgEdndyvWzroNL7zSi1dF9PC3xHGtPwp", + "links": [ + { + "name": "x", + "url": "https://x.com/solendprotocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/solend/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/SLNDpmoWTVADgEdndyvWzroNL7zSi1dF9PC3xHGtPwp/logo.png b/blockchains/solana/assets/SLNDpmoWTVADgEdndyvWzroNL7zSi1dF9PC3xHGtPwp/logo.png new file mode 100644 index 0000000000000..21b146cbe079b Binary files /dev/null and b/blockchains/solana/assets/SLNDpmoWTVADgEdndyvWzroNL7zSi1dF9PC3xHGtPwp/logo.png differ diff --git a/blockchains/solana/assets/SNApmcWQqj3Ny2YFkQmkELQnNgaXRu6KmnYSPiFZcLn/info.json b/blockchains/solana/assets/SNApmcWQqj3Ny2YFkQmkELQnNgaXRu6KmnYSPiFZcLn/info.json new file mode 100644 index 0000000000000..c3ffbb3c5ded8 --- /dev/null +++ b/blockchains/solana/assets/SNApmcWQqj3Ny2YFkQmkELQnNgaXRu6KmnYSPiFZcLn/info.json @@ -0,0 +1,21 @@ +{ + "name": "SolSnap", + "website": "https://solsnap.io/", + "description": "The $SNAP token is at the core of this entire operation. Used to power both the the SolSnap operations and our community.", + "explorer": "https://solscan.io/token/SNApmcWQqj3Ny2YFkQmkELQnNgaXRu6KmnYSPiFZcLn", + "type": "SPL", + "symbol": "SNAP", + "decimals": 6, + "status": "active", + "id": "SNApmcWQqj3Ny2YFkQmkELQnNgaXRu6KmnYSPiFZcLn", + "links": [ + { + "name": "x", + "url": "https://x.com/SolSnap_" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/solsnap" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/SNApmcWQqj3Ny2YFkQmkELQnNgaXRu6KmnYSPiFZcLn/logo.png b/blockchains/solana/assets/SNApmcWQqj3Ny2YFkQmkELQnNgaXRu6KmnYSPiFZcLn/logo.png new file mode 100644 index 0000000000000..e92f4421c6c4e Binary files /dev/null and b/blockchains/solana/assets/SNApmcWQqj3Ny2YFkQmkELQnNgaXRu6KmnYSPiFZcLn/logo.png differ diff --git a/blockchains/solana/assets/SNSNkV9zfG5ZKWQs6x4hxvBRV6s8SqMfSGCtECDvdMd/info.json b/blockchains/solana/assets/SNSNkV9zfG5ZKWQs6x4hxvBRV6s8SqMfSGCtECDvdMd/info.json new file mode 100644 index 0000000000000..8f87e48dd7120 --- /dev/null +++ b/blockchains/solana/assets/SNSNkV9zfG5ZKWQs6x4hxvBRV6s8SqMfSGCtECDvdMd/info.json @@ -0,0 +1,21 @@ +{ + "name": "SynesisOne", + "symbol": "SNS", + "type": "SPL", + "decimals": 9, + "description": "Data fuels AI. No matter how sophisticated an AI algorithm is, if the input data is garbage, then the output result will be garbage. In addition to quality, quantity is also hugely important for AI. Today, the few tech giants hoard and monetize their users' data, dominating the field of AI for their own profits.", + "website": "https://www.synesis.one/", + "explorer": "https://solscan.io/token/SNSNkV9zfG5ZKWQs6x4hxvBRV6s8SqMfSGCtECDvdMd", + "status": "active", + "id": "SNSNkV9zfG5ZKWQs6x4hxvBRV6s8SqMfSGCtECDvdMd", + "links": [ + { + "name": "x", + "url": "https://x.com/synesis_one" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/synesis-one/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/SNSNkV9zfG5ZKWQs6x4hxvBRV6s8SqMfSGCtECDvdMd/logo.png b/blockchains/solana/assets/SNSNkV9zfG5ZKWQs6x4hxvBRV6s8SqMfSGCtECDvdMd/logo.png new file mode 100644 index 0000000000000..0933658094424 Binary files /dev/null and b/blockchains/solana/assets/SNSNkV9zfG5ZKWQs6x4hxvBRV6s8SqMfSGCtECDvdMd/logo.png differ diff --git a/blockchains/solana/assets/SPCXxcqXj6e5dJDVNovHN8744zkbhM2bYudU45BimGb/info.json b/blockchains/solana/assets/SPCXxcqXj6e5dJDVNovHN8744zkbhM2bYudU45BimGb/info.json new file mode 100644 index 0000000000000..f82b69239637a --- /dev/null +++ b/blockchains/solana/assets/SPCXxcqXj6e5dJDVNovHN8744zkbhM2bYudU45BimGb/info.json @@ -0,0 +1,24 @@ +{ + "name": "SpaceX - Backpack Securities", + "type": "SPL", + "symbol": "SPCX", + "decimals": 6, + "website": "https://backpack.exchange/trade/SPCX_USD", + "description": "Unlike perps or synthetic derivatives that merely track price movements, the $SPCX token represents absolute, uncompromising tangible ownership. At the core of this project is a strict, fully collateralized framework. Every single $SPCX token in circulation is directly backed by one authentic, real-world share of SpaceX stock. Mint and redeemable on Backpack Securities, only on Solana via Sunrise.", + "explorer": "https://solscan.io/token/SPCXxcqXj6e5dJDVNovHN8744zkbhM2bYudU45BimGb", + "status": "active", + "id": "SPCXxcqXj6e5dJDVNovHN8744zkbhM2bYudU45BimGb", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spacex-tokenized-stock-backpack/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/spacex-backpack-securities" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/SPCXxcqXj6e5dJDVNovHN8744zkbhM2bYudU45BimGb/logo.png b/blockchains/solana/assets/SPCXxcqXj6e5dJDVNovHN8744zkbhM2bYudU45BimGb/logo.png new file mode 100644 index 0000000000000..251f86fc5afe3 Binary files /dev/null and b/blockchains/solana/assets/SPCXxcqXj6e5dJDVNovHN8744zkbhM2bYudU45BimGb/logo.png differ diff --git a/blockchains/solana/assets/SRMuApVNdxXokk5GT7XD5cUUgXMBCoAz2LHeuAoKWRt/info.json b/blockchains/solana/assets/SRMuApVNdxXokk5GT7XD5cUUgXMBCoAz2LHeuAoKWRt/info.json index 119daf6dfad1a..a22aa5e6ffa7f 100644 --- a/blockchains/solana/assets/SRMuApVNdxXokk5GT7XD5cUUgXMBCoAz2LHeuAoKWRt/info.json +++ b/blockchains/solana/assets/SRMuApVNdxXokk5GT7XD5cUUgXMBCoAz2LHeuAoKWRt/info.json @@ -10,8 +10,8 @@ "id": "SRMuApVNdxXokk5GT7XD5cUUgXMBCoAz2LHeuAoKWRt", "links": [ { - "name": "twitter", - "url": "https://twitter.com/projectserum" + "name": "x", + "url": "https://x.com/projectserum" }, { "name": "telegram", diff --git a/blockchains/solana/assets/SS6AEWhzRrxhL2cXzKKjhFt3rCzmHHGKmFyugDTondo/info.json b/blockchains/solana/assets/SS6AEWhzRrxhL2cXzKKjhFt3rCzmHHGKmFyugDTondo/info.json new file mode 100644 index 0000000000000..1e73559287eb5 --- /dev/null +++ b/blockchains/solana/assets/SS6AEWhzRrxhL2cXzKKjhFt3rCzmHHGKmFyugDTondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Amgen (Ondo Tokenized)", + "type": "SPL", + "symbol": "AMGNon", + "decimals": 9, + "description": "AMGNon is the Ondo Tokenized version of Amgen, giving tokenholders economic exposure similar to holding AMGN and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/SS6AEWhzRrxhL2cXzKKjhFt3rCzmHHGKmFyugDTondo", + "status": "active", + "id": "SS6AEWhzRrxhL2cXzKKjhFt3rCzmHHGKmFyugDTondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/amgen-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/amgen-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/SS6AEWhzRrxhL2cXzKKjhFt3rCzmHHGKmFyugDTondo/logo.png b/blockchains/solana/assets/SS6AEWhzRrxhL2cXzKKjhFt3rCzmHHGKmFyugDTondo/logo.png new file mode 100644 index 0000000000000..5716d513e17d8 Binary files /dev/null and b/blockchains/solana/assets/SS6AEWhzRrxhL2cXzKKjhFt3rCzmHHGKmFyugDTondo/logo.png differ diff --git a/blockchains/solana/assets/STREAMribRwybYpMmSYoCsQUdr6MZNXEqHgm7p1gu9M/info.json b/blockchains/solana/assets/STREAMribRwybYpMmSYoCsQUdr6MZNXEqHgm7p1gu9M/info.json new file mode 100644 index 0000000000000..895d75897bde3 --- /dev/null +++ b/blockchains/solana/assets/STREAMribRwybYpMmSYoCsQUdr6MZNXEqHgm7p1gu9M/info.json @@ -0,0 +1,17 @@ +{ + "name": "Streamflow", + "type": "SPL", + "symbol": "STREAM", + "decimals": 6, + "website": "https://streamflow.finance/", + "description": "Simplify your token distribution with Streamflow's Application and SDK, offering access to customizable vesting schedules, airdrops, staking, and more", + "explorer": "https://solscan.io/token/STREAMribRwybYpMmSYoCsQUdr6MZNXEqHgm7p1gu9M", + "status": "active", + "id": "STREAMribRwybYpMmSYoCsQUdr6MZNXEqHgm7p1gu9M", + "links": [ + { + "name": "x", + "url": "https://x.com/streamflow_fi" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/STREAMribRwybYpMmSYoCsQUdr6MZNXEqHgm7p1gu9M/logo.png b/blockchains/solana/assets/STREAMribRwybYpMmSYoCsQUdr6MZNXEqHgm7p1gu9M/logo.png new file mode 100644 index 0000000000000..1263e816fa993 Binary files /dev/null and b/blockchains/solana/assets/STREAMribRwybYpMmSYoCsQUdr6MZNXEqHgm7p1gu9M/logo.png differ diff --git a/blockchains/solana/assets/Saber2gLauYim4Mvftnrasomsv6NvAuncvMEZwcLpD1/info.json b/blockchains/solana/assets/Saber2gLauYim4Mvftnrasomsv6NvAuncvMEZwcLpD1/info.json index 6e6be6e1476c1..32a60e5501e2c 100644 --- a/blockchains/solana/assets/Saber2gLauYim4Mvftnrasomsv6NvAuncvMEZwcLpD1/info.json +++ b/blockchains/solana/assets/Saber2gLauYim4Mvftnrasomsv6NvAuncvMEZwcLpD1/info.json @@ -10,8 +10,8 @@ "id": "Saber2gLauYim4Mvftnrasomsv6NvAuncvMEZwcLpD1", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Saber_HQ" + "name": "x", + "url": "https://x.com/Saber_HQ" }, { "name": "coinmarketcap", diff --git a/blockchains/solana/assets/SarosY6Vscao718M4A778z4CGtvcwcGef5M9MEH1LGL/info.json b/blockchains/solana/assets/SarosY6Vscao718M4A778z4CGtvcwcGef5M9MEH1LGL/info.json new file mode 100644 index 0000000000000..ea502c2b997d0 --- /dev/null +++ b/blockchains/solana/assets/SarosY6Vscao718M4A778z4CGtvcwcGef5M9MEH1LGL/info.json @@ -0,0 +1,21 @@ +{ + "name": "Saros", + "type": "SPL", + "symbol": "SAROS", + "decimals": 6, + "website": "https://dex.saros.xyz", + "description": "A Unified Suite of DeFi Products on Solana", + "explorer": "https://solscan.io/token/SarosY6Vscao718M4A778z4CGtvcwcGef5M9MEH1LGL", + "status": "active", + "id": "SarosY6Vscao718M4A778z4CGtvcwcGef5M9MEH1LGL", + "links": [ + { + "name": "x", + "url": "https://x.com/saros_xyz" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/saros-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/SarosY6Vscao718M4A778z4CGtvcwcGef5M9MEH1LGL/logo.png b/blockchains/solana/assets/SarosY6Vscao718M4A778z4CGtvcwcGef5M9MEH1LGL/logo.png new file mode 100644 index 0000000000000..158190d1db0a9 Binary files /dev/null and b/blockchains/solana/assets/SarosY6Vscao718M4A778z4CGtvcwcGef5M9MEH1LGL/logo.png differ diff --git a/blockchains/solana/assets/So11111111111111111111111111111111111111112/info.json b/blockchains/solana/assets/So11111111111111111111111111111111111111112/info.json index f9b4aa40f9724..01b82fde233a8 100644 --- a/blockchains/solana/assets/So11111111111111111111111111111111111111112/info.json +++ b/blockchains/solana/assets/So11111111111111111111111111111111111111112/info.json @@ -1,6 +1,6 @@ { "name": "Wrapped SOL", - "symbol": "SOL", + "symbol": "WSOL", "type": "SPL", "decimals": 9, "description": "Solana is a decentralized blockchain built to enable scalable, user-friendly apps for the world.", diff --git a/blockchains/solana/assets/SoLiDMWBct5TurG1LNcocemBK7QmTn4P33GSrRrcd2n/info.json b/blockchains/solana/assets/SoLiDMWBct5TurG1LNcocemBK7QmTn4P33GSrRrcd2n/info.json new file mode 100644 index 0000000000000..d69e94de34892 --- /dev/null +++ b/blockchains/solana/assets/SoLiDMWBct5TurG1LNcocemBK7QmTn4P33GSrRrcd2n/info.json @@ -0,0 +1,29 @@ +{ + "name": "Solana ID", + "type": "SOL", + "symbol": "SOLID", + "decimals": 9, + "description": "Solana ID is a platform that securely links users' digital footprints to their crypto wallets. Instead of creating new accounts for every application, users carry their data backdrops as secure, unified accounts across the internet.", + "website": "https://www.solana.id/", + "explorer": "https://solscan.io/token/SoLiDMWBct5TurG1LNcocemBK7QmTn4P33GSrRrcd2n", + "id": "SoLiDMWBct5TurG1LNcocemBK7QmTn4P33GSrRrcd2n", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/solanaidentity" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/solana-id/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/solid-2" + } + ], + "tags": [ + "privacy" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/SoLiDMWBct5TurG1LNcocemBK7QmTn4P33GSrRrcd2n/logo.png b/blockchains/solana/assets/SoLiDMWBct5TurG1LNcocemBK7QmTn4P33GSrRrcd2n/logo.png new file mode 100644 index 0000000000000..cd129b5a69f5a Binary files /dev/null and b/blockchains/solana/assets/SoLiDMWBct5TurG1LNcocemBK7QmTn4P33GSrRrcd2n/logo.png differ diff --git a/blockchains/solana/assets/SonicxvLud67EceaEzCLRnMTBqzYUUYNr93DBkBdDES/info.json b/blockchains/solana/assets/SonicxvLud67EceaEzCLRnMTBqzYUUYNr93DBkBdDES/info.json new file mode 100644 index 0000000000000..e493e9df2bc43 --- /dev/null +++ b/blockchains/solana/assets/SonicxvLud67EceaEzCLRnMTBqzYUUYNr93DBkBdDES/info.json @@ -0,0 +1,21 @@ +{ + "name": "Sonic SVM", + "type": "SPL", + "symbol": "SONIC", + "decimals": 9, + "website": "https://www.sonic.game/", + "description": "Sonic SVM is the first chain extension on Solana - for games, applications, and industry’s first TikTok App Layer", + "explorer": "https://solscan.io/token/SonicxvLud67EceaEzCLRnMTBqzYUUYNr93DBkBdDES", + "status": "active", + "id": "SonicxvLud67EceaEzCLRnMTBqzYUUYNr93DBkBdDES", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sonic-svm/" + }, + { + "name": "x", + "url": "https://x.com/SonicSVM" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/SonicxvLud67EceaEzCLRnMTBqzYUUYNr93DBkBdDES/logo.png b/blockchains/solana/assets/SonicxvLud67EceaEzCLRnMTBqzYUUYNr93DBkBdDES/logo.png new file mode 100644 index 0000000000000..ed12ba884e17a Binary files /dev/null and b/blockchains/solana/assets/SonicxvLud67EceaEzCLRnMTBqzYUUYNr93DBkBdDES/logo.png differ diff --git a/blockchains/solana/assets/StepAscQoEioFxxWGnh2sLBDFp9d8rvKz2Yp39iDpyT/info.json b/blockchains/solana/assets/StepAscQoEioFxxWGnh2sLBDFp9d8rvKz2Yp39iDpyT/info.json index 33c5ee8baeb1c..27904620a666f 100644 --- a/blockchains/solana/assets/StepAscQoEioFxxWGnh2sLBDFp9d8rvKz2Yp39iDpyT/info.json +++ b/blockchains/solana/assets/StepAscQoEioFxxWGnh2sLBDFp9d8rvKz2Yp39iDpyT/info.json @@ -14,8 +14,8 @@ "url": "https://discord.com/k5gMJUAEJe" }, { - "name": "twitter", - "url": "https://twitter.com/stepfinance_" + "name": "x", + "url": "https://x.com/stepfinance_" }, { "name": "coingecko", diff --git a/blockchains/solana/assets/T699bgtXQw4CJ59rQ4VzLsupVQUzoL5RmuhHnKrondo/info.json b/blockchains/solana/assets/T699bgtXQw4CJ59rQ4VzLsupVQUzoL5RmuhHnKrondo/info.json new file mode 100644 index 0000000000000..eaed2992cdbaa --- /dev/null +++ b/blockchains/solana/assets/T699bgtXQw4CJ59rQ4VzLsupVQUzoL5RmuhHnKrondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Thermo Fisher Scientific (Ondo Tokenized)", + "type": "SPL", + "symbol": "TMOon", + "decimals": 9, + "description": "TMOon is the Ondo Tokenized version of Thermo Fisher Scientific, giving tokenholders economic exposure similar to holding TMO and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/T699bgtXQw4CJ59rQ4VzLsupVQUzoL5RmuhHnKrondo", + "status": "active", + "id": "T699bgtXQw4CJ59rQ4VzLsupVQUzoL5RmuhHnKrondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/thermo-fisher-scientific-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/thermo-fisher-scientific-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/T699bgtXQw4CJ59rQ4VzLsupVQUzoL5RmuhHnKrondo/logo.png b/blockchains/solana/assets/T699bgtXQw4CJ59rQ4VzLsupVQUzoL5RmuhHnKrondo/logo.png new file mode 100644 index 0000000000000..f580f2c060e22 Binary files /dev/null and b/blockchains/solana/assets/T699bgtXQw4CJ59rQ4VzLsupVQUzoL5RmuhHnKrondo/logo.png differ diff --git a/blockchains/solana/assets/TNSRxcUxoT9xBG3de7PiJyTDYu7kskLqcpddxnEJAS6/info.json b/blockchains/solana/assets/TNSRxcUxoT9xBG3de7PiJyTDYu7kskLqcpddxnEJAS6/info.json new file mode 100644 index 0000000000000..f139bb2b6ec27 --- /dev/null +++ b/blockchains/solana/assets/TNSRxcUxoT9xBG3de7PiJyTDYu7kskLqcpddxnEJAS6/info.json @@ -0,0 +1,21 @@ +{ + "name": "Tensor", + "symbol": "TNSR", + "type": "SPL", + "decimals": 9, + "description": "Tensor is the largest NFT marketplace on Solana: 60-70% of Solana NFT volume flows through Tensor's marketplace protocols every single day.", + "website": "https://www.tensor.foundation/", + "explorer": "https://solscan.io/token/TNSRxcUxoT9xBG3de7PiJyTDYu7kskLqcpddxnEJAS6", + "status": "active", + "id": "TNSRxcUxoT9xBG3de7PiJyTDYu7kskLqcpddxnEJAS6", + "links": [ + { + "name": "x", + "url": "https://x.com/tensorfdn" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tensor/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/TNSRxcUxoT9xBG3de7PiJyTDYu7kskLqcpddxnEJAS6/logo.png b/blockchains/solana/assets/TNSRxcUxoT9xBG3de7PiJyTDYu7kskLqcpddxnEJAS6/logo.png new file mode 100644 index 0000000000000..edbcee4e99576 Binary files /dev/null and b/blockchains/solana/assets/TNSRxcUxoT9xBG3de7PiJyTDYu7kskLqcpddxnEJAS6/logo.png differ diff --git a/blockchains/solana/assets/ThwGDsXZ6iKubWuEQjmDxGwF3bUERDGbBXvcbjFondo/info.json b/blockchains/solana/assets/ThwGDsXZ6iKubWuEQjmDxGwF3bUERDGbBXvcbjFondo/info.json new file mode 100644 index 0000000000000..bfbafd8827da2 --- /dev/null +++ b/blockchains/solana/assets/ThwGDsXZ6iKubWuEQjmDxGwF3bUERDGbBXvcbjFondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Oscar Health (Ondo Tokenized)", + "type": "SPL", + "symbol": "OSCRon", + "decimals": 9, + "description": "OSCRon is the Ondo Tokenized version of Oscar Health, giving tokenholders economic exposure similar to holding OSCR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/ThwGDsXZ6iKubWuEQjmDxGwF3bUERDGbBXvcbjFondo", + "status": "active", + "id": "ThwGDsXZ6iKubWuEQjmDxGwF3bUERDGbBXvcbjFondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/oscar-health-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/oscar-health-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/ThwGDsXZ6iKubWuEQjmDxGwF3bUERDGbBXvcbjFondo/logo.png b/blockchains/solana/assets/ThwGDsXZ6iKubWuEQjmDxGwF3bUERDGbBXvcbjFondo/logo.png new file mode 100644 index 0000000000000..940143ce0caa8 Binary files /dev/null and b/blockchains/solana/assets/ThwGDsXZ6iKubWuEQjmDxGwF3bUERDGbBXvcbjFondo/logo.png differ diff --git a/blockchains/solana/assets/TnfswqdE1jAJ8sfnf5J7kSVLEH1cfpAYZ8MWmKfondo/info.json b/blockchains/solana/assets/TnfswqdE1jAJ8sfnf5J7kSVLEH1cfpAYZ8MWmKfondo/info.json new file mode 100644 index 0000000000000..9c9cf8dc8dc6a --- /dev/null +++ b/blockchains/solana/assets/TnfswqdE1jAJ8sfnf5J7kSVLEH1cfpAYZ8MWmKfondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Plug Power (Ondo Tokenized)", + "type": "SPL", + "symbol": "PLUGon", + "decimals": 9, + "description": "PLUGon is the Ondo Tokenized version of Plug Power, giving tokenholders economic exposure similar to holding PLUG and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/TnfswqdE1jAJ8sfnf5J7kSVLEH1cfpAYZ8MWmKfondo", + "status": "active", + "id": "TnfswqdE1jAJ8sfnf5J7kSVLEH1cfpAYZ8MWmKfondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/plug-power-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/plug-power-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/TnfswqdE1jAJ8sfnf5J7kSVLEH1cfpAYZ8MWmKfondo/logo.png b/blockchains/solana/assets/TnfswqdE1jAJ8sfnf5J7kSVLEH1cfpAYZ8MWmKfondo/logo.png new file mode 100644 index 0000000000000..d56552e01117f Binary files /dev/null and b/blockchains/solana/assets/TnfswqdE1jAJ8sfnf5J7kSVLEH1cfpAYZ8MWmKfondo/logo.png differ diff --git a/blockchains/solana/assets/TuLipcqtGVXP9XR62wM8WWCm6a9vhLs7T1uoWBk6FDs/info.json b/blockchains/solana/assets/TuLipcqtGVXP9XR62wM8WWCm6a9vhLs7T1uoWBk6FDs/info.json new file mode 100644 index 0000000000000..aeb91e7227138 --- /dev/null +++ b/blockchains/solana/assets/TuLipcqtGVXP9XR62wM8WWCm6a9vhLs7T1uoWBk6FDs/info.json @@ -0,0 +1,21 @@ +{ + "name": "Tulip", + "symbol": "TULIP", + "type": "SPL", + "decimals": 6, + "description": "Solfarm is the first decentralized yield aggregator on the Solana blockchain with auto-compounding vault strategies", + "website": "https://tulip.garden/", + "explorer": "https://solscan.io/token/TuLipcqtGVXP9XR62wM8WWCm6a9vhLs7T1uoWBk6FDs", + "status": "active", + "id": "TuLipcqtGVXP9XR62wM8WWCm6a9vhLs7T1uoWBk6FDs", + "links": [ + { + "name": "x", + "url": "https://x.com/TulipProtocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/solfarm" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/TuLipcqtGVXP9XR62wM8WWCm6a9vhLs7T1uoWBk6FDs/logo.png b/blockchains/solana/assets/TuLipcqtGVXP9XR62wM8WWCm6a9vhLs7T1uoWBk6FDs/logo.png new file mode 100644 index 0000000000000..3a8e8230cd1c8 Binary files /dev/null and b/blockchains/solana/assets/TuLipcqtGVXP9XR62wM8WWCm6a9vhLs7T1uoWBk6FDs/logo.png differ diff --git a/blockchains/solana/assets/UD6epYu6hi91AGCrQceRgB7znMCWMw7zLktEg7ZAy8w/info.json b/blockchains/solana/assets/UD6epYu6hi91AGCrQceRgB7znMCWMw7zLktEg7ZAy8w/info.json new file mode 100644 index 0000000000000..6047e876f6c5f --- /dev/null +++ b/blockchains/solana/assets/UD6epYu6hi91AGCrQceRgB7znMCWMw7zLktEg7ZAy8w/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fake XLM", + "type": "SPL", + "symbol": "Fake XLM", + "decimals": 6, + "website": "https://solscan.io/token/UD6epYu6hi91AGCrQceRgB7znMCWMw7zLktEg7ZAy8w", + "description": "Fake XLM", + "explorer": "https://explorer.solana.com/address/UD6epYu6hi91AGCrQceRgB7znMCWMw7zLktEg7ZAy8w", + "status": "spam", + "id": "UD6epYu6hi91AGCrQceRgB7znMCWMw7zLktEg7ZAy8w" +} \ No newline at end of file diff --git a/blockchains/solana/assets/ULwSJmmpxmnRfpu6BjnK6rprKXqD5jXUmPpS1FxHXFy/info.json b/blockchains/solana/assets/ULwSJmmpxmnRfpu6BjnK6rprKXqD5jXUmPpS1FxHXFy/info.json new file mode 100644 index 0000000000000..fdb13bc0f19cb --- /dev/null +++ b/blockchains/solana/assets/ULwSJmmpxmnRfpu6BjnK6rprKXqD5jXUmPpS1FxHXFy/info.json @@ -0,0 +1,21 @@ +{ + "name": "Hege", + "website": "https://www.hegecoin.com/", + "description": "A meme with a dream, Hege is a Hedgehog on a mission to win Hegena's heart", + "explorer": "https://solscan.io/token/ULwSJmmpxmnRfpu6BjnK6rprKXqD5jXUmPpS1FxHXFy", + "type": "SPL", + "symbol": "HEGE", + "decimals": 9, + "status": "active", + "id": "ULwSJmmpxmnRfpu6BjnK6rprKXqD5jXUmPpS1FxHXFy", + "links": [ + { + "name": "telegram", + "url": "https://t.me/Hegequarters" + }, + { + "name": "x", + "url": "https://x.com/HegeCoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/ULwSJmmpxmnRfpu6BjnK6rprKXqD5jXUmPpS1FxHXFy/logo.png b/blockchains/solana/assets/ULwSJmmpxmnRfpu6BjnK6rprKXqD5jXUmPpS1FxHXFy/logo.png new file mode 100644 index 0000000000000..8809c21351474 Binary files /dev/null and b/blockchains/solana/assets/ULwSJmmpxmnRfpu6BjnK6rprKXqD5jXUmPpS1FxHXFy/logo.png differ diff --git a/blockchains/solana/assets/UP5s1srLaHDc4SwJqLPa3A48x5R7ofN3hZWxWEZondo/info.json b/blockchains/solana/assets/UP5s1srLaHDc4SwJqLPa3A48x5R7ofN3hZWxWEZondo/info.json new file mode 100644 index 0000000000000..72c218802c20c --- /dev/null +++ b/blockchains/solana/assets/UP5s1srLaHDc4SwJqLPa3A48x5R7ofN3hZWxWEZondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "PG&E (Ondo Tokenized)", + "type": "SPL", + "symbol": "PCGon", + "decimals": 9, + "description": "PCGon is the Ondo Tokenized version of PG&E, giving tokenholders economic exposure similar to holding PCG and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/UP5s1srLaHDc4SwJqLPa3A48x5R7ofN3hZWxWEZondo", + "status": "active", + "id": "UP5s1srLaHDc4SwJqLPa3A48x5R7ofN3hZWxWEZondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pg-e-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pge-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/UP5s1srLaHDc4SwJqLPa3A48x5R7ofN3hZWxWEZondo/logo.png b/blockchains/solana/assets/UP5s1srLaHDc4SwJqLPa3A48x5R7ofN3hZWxWEZondo/logo.png new file mode 100644 index 0000000000000..d83a0ac367963 Binary files /dev/null and b/blockchains/solana/assets/UP5s1srLaHDc4SwJqLPa3A48x5R7ofN3hZWxWEZondo/logo.png differ diff --git a/blockchains/solana/assets/USCRdwZP5UkKhJzhWuD7XjTUviHBtZJbLG7XpbKng9S/info.json b/blockchains/solana/assets/USCRdwZP5UkKhJzhWuD7XjTUviHBtZJbLG7XpbKng9S/info.json new file mode 100644 index 0000000000000..8e2e9ca2992ae --- /dev/null +++ b/blockchains/solana/assets/USCRdwZP5UkKhJzhWuD7XjTUviHBtZJbLG7XpbKng9S/info.json @@ -0,0 +1,21 @@ +{ + "name": "United States Crypto Reserve", + "type": "SOL", + "symbol": "USCR", + "decimals": 6, + "description": "The United States Crypto Reserve will hold and represent the top American-built tokens that meet the highest standards of security, transparency, and innovation.", + "website": "https://uscr.xyz/", + "explorer": "https://solscan.io/token/USCRdwZP5UkKhJzhWuD7XjTUviHBtZJbLG7XpbKng9S", + "id": "USCRdwZP5UkKhJzhWuD7XjTUviHBtZJbLG7XpbKng9S", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/USCRgov" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/united-states-crypto-reserve/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/USCRdwZP5UkKhJzhWuD7XjTUviHBtZJbLG7XpbKng9S/logo.png b/blockchains/solana/assets/USCRdwZP5UkKhJzhWuD7XjTUviHBtZJbLG7XpbKng9S/logo.png new file mode 100644 index 0000000000000..cf7a736d9eec0 Binary files /dev/null and b/blockchains/solana/assets/USCRdwZP5UkKhJzhWuD7XjTUviHBtZJbLG7XpbKng9S/logo.png differ diff --git a/blockchains/solana/assets/USD1ttGY1N17NEEHLmELoaybftRBUSErhqYiQzvEmuB/info.json b/blockchains/solana/assets/USD1ttGY1N17NEEHLmELoaybftRBUSErhqYiQzvEmuB/info.json new file mode 100644 index 0000000000000..11b9d37801931 --- /dev/null +++ b/blockchains/solana/assets/USD1ttGY1N17NEEHLmELoaybftRBUSErhqYiQzvEmuB/info.json @@ -0,0 +1,20 @@ +{ + "name": "World Liberty Financial USD", + "type": "SPL", + "symbol": "USD1", + "decimals": 6, + "description": "A stablecoin by World Liberty Financial, redeemable 1:1 for the U.S. dollar and backed by U.S. treasuries, dollar deposits, and other cash equivalents.", + "website": "https://www.worldlibertyfinancial.com/", + "explorer": "https://solscan.io/token/USD1ttGY1N17NEEHLmELoaybftRBUSErhqYiQzvEmuB", + "status": "active", + "id": "USD1ttGY1N17NEEHLmELoaybftRBUSErhqYiQzvEmuB", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd1/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/USD1ttGY1N17NEEHLmELoaybftRBUSErhqYiQzvEmuB/logo.png b/blockchains/solana/assets/USD1ttGY1N17NEEHLmELoaybftRBUSErhqYiQzvEmuB/logo.png new file mode 100644 index 0000000000000..444ccb6501eeb Binary files /dev/null and b/blockchains/solana/assets/USD1ttGY1N17NEEHLmELoaybftRBUSErhqYiQzvEmuB/logo.png differ diff --git a/blockchains/solana/assets/Unkp3UArtURXfKpxAWXkgUEDiC5uN7wTozpgzjipump/info.json b/blockchains/solana/assets/Unkp3UArtURXfKpxAWXkgUEDiC5uN7wTozpgzjipump/info.json new file mode 100644 index 0000000000000..6ac4172c490e8 --- /dev/null +++ b/blockchains/solana/assets/Unkp3UArtURXfKpxAWXkgUEDiC5uN7wTozpgzjipump/info.json @@ -0,0 +1,21 @@ +{ + "name": "SADANT", + "type": "SPL", + "symbol": "SADANT", + "decimals": 6, + "description": "Meet Sad Ant, the most hardworking ant on the blockchain, ready to turn her frown upside down!", + "website": "https://www.sadant.xyz/", + "explorer": "https://solscan.io/token/Unkp3UArtURXfKpxAWXkgUEDiC5uN7wTozpgzjipump", + "id": "Unkp3UArtURXfKpxAWXkgUEDiC5uN7wTozpgzjipump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/sadant_sol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sadant/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Unkp3UArtURXfKpxAWXkgUEDiC5uN7wTozpgzjipump/logo.png b/blockchains/solana/assets/Unkp3UArtURXfKpxAWXkgUEDiC5uN7wTozpgzjipump/logo.png new file mode 100644 index 0000000000000..3d170e5215b9a Binary files /dev/null and b/blockchains/solana/assets/Unkp3UArtURXfKpxAWXkgUEDiC5uN7wTozpgzjipump/logo.png differ diff --git a/blockchains/solana/assets/V8LRV7kWjrx6Prke9oHEHNUiR122BVtyuPciTCTondo/info.json b/blockchains/solana/assets/V8LRV7kWjrx6Prke9oHEHNUiR122BVtyuPciTCTondo/info.json new file mode 100644 index 0000000000000..04287fd2f610b --- /dev/null +++ b/blockchains/solana/assets/V8LRV7kWjrx6Prke9oHEHNUiR122BVtyuPciTCTondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Sprott Nickel Miners ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "NIKLon", + "decimals": 9, + "description": "NIKLon is the Ondo Tokenized version of the Sprott Nickel Miners ETF, giving tokenholders economic exposure similar to holding NIKL and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/V8LRV7kWjrx6Prke9oHEHNUiR122BVtyuPciTCTondo", + "status": "active", + "id": "V8LRV7kWjrx6Prke9oHEHNUiR122BVtyuPciTCTondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sprott-nickel-miners-etf-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sprott-nickel-miners-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/V8LRV7kWjrx6Prke9oHEHNUiR122BVtyuPciTCTondo/logo.png b/blockchains/solana/assets/V8LRV7kWjrx6Prke9oHEHNUiR122BVtyuPciTCTondo/logo.png new file mode 100644 index 0000000000000..07947479164c4 Binary files /dev/null and b/blockchains/solana/assets/V8LRV7kWjrx6Prke9oHEHNUiR122BVtyuPciTCTondo/logo.png differ diff --git a/blockchains/solana/assets/VaxZxmFXV8tmsd72hUn22ex6GFzZ5uq9DVJ5wA5pump/info.json b/blockchains/solana/assets/VaxZxmFXV8tmsd72hUn22ex6GFzZ5uq9DVJ5wA5pump/info.json new file mode 100644 index 0000000000000..08cc6ebf5c9ed --- /dev/null +++ b/blockchains/solana/assets/VaxZxmFXV8tmsd72hUn22ex6GFzZ5uq9DVJ5wA5pump/info.json @@ -0,0 +1,30 @@ +{ + "name": "spinning cat", + "type": "SOL", + "symbol": "OIIAOIIA", + "decimals": 6, + "description": "OIIAOIIA originated from the viral spinning cat meme, capturing the internet’s fascination with its endless rotation and quirky charm. This meme resonated deeply with people, inspiring the creation of a community-driven project built around the shared love for the spinning cat.", + "website": "https://spinning.cat/", + "explorer": "https://solscan.io/token/VaxZxmFXV8tmsd72hUn22ex6GFzZ5uq9DVJ5wA5pump", + "id": "VaxZxmFXV8tmsd72hUn22ex6GFzZ5uq9DVJ5wA5pump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/OIIAOIIA_COIN_" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spinning-cat/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/spinning-cat" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/VaxZxmFXV8tmsd72hUn22ex6GFzZ5uq9DVJ5wA5pump/logo.png b/blockchains/solana/assets/VaxZxmFXV8tmsd72hUn22ex6GFzZ5uq9DVJ5wA5pump/logo.png new file mode 100644 index 0000000000000..6b0b3a786d0d2 Binary files /dev/null and b/blockchains/solana/assets/VaxZxmFXV8tmsd72hUn22ex6GFzZ5uq9DVJ5wA5pump/logo.png differ diff --git a/blockchains/solana/assets/Vr1UbnDPTGT4AxmW6tVRQwSnMwzT9vo82pjmcCnuqtz/info.json b/blockchains/solana/assets/Vr1UbnDPTGT4AxmW6tVRQwSnMwzT9vo82pjmcCnuqtz/info.json new file mode 100644 index 0000000000000..b460ee485300b --- /dev/null +++ b/blockchains/solana/assets/Vr1UbnDPTGT4AxmW6tVRQwSnMwzT9vo82pjmcCnuqtz/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Սꮪꭰ ТетһеR", + "type": "SPL", + "symbol": "FAKE ՍᏚᎠТ", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/Vr1UbnDPTGT4AxmW6tVRQwSnMwzT9vo82pjmcCnuqtz", + "explorer": "https://solscan.io/token/Vr1UbnDPTGT4AxmW6tVRQwSnMwzT9vo82pjmcCnuqtz", + "status": "spam", + "id": "Vr1UbnDPTGT4AxmW6tVRQwSnMwzT9vo82pjmcCnuqtz" +} \ No newline at end of file diff --git a/blockchains/solana/assets/VvgeRQNHRHdYubKC9K2GN567LXTzSVcB7mpu7b1VF4r/info.json b/blockchains/solana/assets/VvgeRQNHRHdYubKC9K2GN567LXTzSVcB7mpu7b1VF4r/info.json new file mode 100644 index 0000000000000..45d45f3bca1d8 --- /dev/null +++ b/blockchains/solana/assets/VvgeRQNHRHdYubKC9K2GN567LXTzSVcB7mpu7b1VF4r/info.json @@ -0,0 +1,21 @@ +{ + "name": "BOOK OF BILLIONAIRES", + "website": "https://bobecoin.com/", + "description": "Book of Billionaires - $BOBE Only future billionaires will scroll down. Are you one of them? Missed out on $BOME? Buckle up, because $BOBE is the VIP pass to the world where only the rich—or those destined to be—dare to meme.", + "explorer": "https://solscan.io/token/VvgeRQNHRHdYubKC9K2GN567LXTzSVcB7mpu7b1VF4r", + "type": "SPL", + "symbol": "BOBE", + "decimals": 9, + "status": "active", + "id": "VvgeRQNHRHdYubKC9K2GN567LXTzSVcB7mpu7b1VF4r", + "links": [ + { + "name": "x", + "url": "https://x.com/bookofbilliesol" + }, + { + "name": "telegram", + "url": "https://t.me/BOBECOINCOMMUNITY" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/VvgeRQNHRHdYubKC9K2GN567LXTzSVcB7mpu7b1VF4r/logo.png b/blockchains/solana/assets/VvgeRQNHRHdYubKC9K2GN567LXTzSVcB7mpu7b1VF4r/logo.png new file mode 100644 index 0000000000000..038da447c7b28 Binary files /dev/null and b/blockchains/solana/assets/VvgeRQNHRHdYubKC9K2GN567LXTzSVcB7mpu7b1VF4r/logo.png differ diff --git a/blockchains/solana/assets/W2bAuFf2Xeb7ZNpJTywFSaCs5jYkaLYtBMR53SzVXUo/info.json b/blockchains/solana/assets/W2bAuFf2Xeb7ZNpJTywFSaCs5jYkaLYtBMR53SzVXUo/info.json new file mode 100644 index 0000000000000..ff250016470f3 --- /dev/null +++ b/blockchains/solana/assets/W2bAuFf2Xeb7ZNpJTywFSaCs5jYkaLYtBMR53SzVXUo/info.json @@ -0,0 +1,21 @@ +{ + "name": "LETSTOP", + "symbol": "STOP", + "type": "SPL", + "decimals": 9, + "description": "LETSTOP is a blockchain-based platform focused on enhancing road safety through a unique model called Drive Safe to Earn.", + "website": "https://www.letstop.io/", + "explorer": "https://solscan.io/token/W2bAuFf2Xeb7ZNpJTywFSaCs5jYkaLYtBMR53SzVXUo", + "status": "active", + "id": "W2bAuFf2Xeb7ZNpJTywFSaCs5jYkaLYtBMR53SzVXUo", + "links": [ + { + "name": "x", + "url": "https://x.com/LETST0P" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/letstop" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/W2bAuFf2Xeb7ZNpJTywFSaCs5jYkaLYtBMR53SzVXUo/logo.png b/blockchains/solana/assets/W2bAuFf2Xeb7ZNpJTywFSaCs5jYkaLYtBMR53SzVXUo/logo.png new file mode 100644 index 0000000000000..1952ea3347787 Binary files /dev/null and b/blockchains/solana/assets/W2bAuFf2Xeb7ZNpJTywFSaCs5jYkaLYtBMR53SzVXUo/logo.png differ diff --git a/blockchains/solana/assets/WENWENvqqNya429ubCdR81ZmD69brwQaaBYY6p3LCpk/info.json b/blockchains/solana/assets/WENWENvqqNya429ubCdR81ZmD69brwQaaBYY6p3LCpk/info.json new file mode 100644 index 0000000000000..08da23d7f4fb4 --- /dev/null +++ b/blockchains/solana/assets/WENWENvqqNya429ubCdR81ZmD69brwQaaBYY6p3LCpk/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wen", + "website": "https://www.wenwencoin.com/", + "description": "A community coin to give back and immortalize WEN culture.", + "explorer": "https://solscan.io/token/WENWENvqqNya429ubCdR81ZmD69brwQaaBYY6p3LCpk", + "type": "SPL", + "symbol": "WEN", + "decimals": 5, + "status": "active", + "id": "WENWENvqqNya429ubCdR81ZmD69brwQaaBYY6p3LCpk", + "links": [ + { + "name": "x", + "url": "https://x.com/wenwencoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wen/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/WENWENvqqNya429ubCdR81ZmD69brwQaaBYY6p3LCpk/logo.png b/blockchains/solana/assets/WENWENvqqNya429ubCdR81ZmD69brwQaaBYY6p3LCpk/logo.png new file mode 100644 index 0000000000000..d38d3505d841d Binary files /dev/null and b/blockchains/solana/assets/WENWENvqqNya429ubCdR81ZmD69brwQaaBYY6p3LCpk/logo.png differ diff --git a/blockchains/solana/assets/WKMZummev5UcXz5nNKQZvTD6QjNSM2X58uwmDReondo/info.json b/blockchains/solana/assets/WKMZummev5UcXz5nNKQZvTD6QjNSM2X58uwmDReondo/info.json new file mode 100644 index 0000000000000..38c61fd4ce628 --- /dev/null +++ b/blockchains/solana/assets/WKMZummev5UcXz5nNKQZvTD6QjNSM2X58uwmDReondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "AT&T (Ondo Tokenized)", + "type": "SPL", + "symbol": "Ton", + "decimals": 9, + "description": "Ton is the Ondo Tokenized version of AT&T, giving tokenholders economic exposure similar to holding T and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/WKMZummev5UcXz5nNKQZvTD6QjNSM2X58uwmDReondo", + "status": "active", + "id": "WKMZummev5UcXz5nNKQZvTD6QjNSM2X58uwmDReondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/atnt-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/att-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/WKMZummev5UcXz5nNKQZvTD6QjNSM2X58uwmDReondo/logo.png b/blockchains/solana/assets/WKMZummev5UcXz5nNKQZvTD6QjNSM2X58uwmDReondo/logo.png new file mode 100644 index 0000000000000..f424f8b4faa5e Binary files /dev/null and b/blockchains/solana/assets/WKMZummev5UcXz5nNKQZvTD6QjNSM2X58uwmDReondo/logo.png differ diff --git a/blockchains/solana/assets/WNZBSkNBNP3Ct1pcFn6Fu4sZQFhnu48EsM9voCEondo/info.json b/blockchains/solana/assets/WNZBSkNBNP3Ct1pcFn6Fu4sZQFhnu48EsM9voCEondo/info.json new file mode 100644 index 0000000000000..77ec03aa43681 --- /dev/null +++ b/blockchains/solana/assets/WNZBSkNBNP3Ct1pcFn6Fu4sZQFhnu48EsM9voCEondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Cipher Mining (Ondo Tokenized)", + "type": "SPL", + "symbol": "CIFRon", + "decimals": 9, + "description": "CIFRon is the Ondo Tokenized version of Cipher Mining, giving tokenholders economic exposure similar to holding CIFR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/WNZBSkNBNP3Ct1pcFn6Fu4sZQFhnu48EsM9voCEondo", + "status": "active", + "id": "WNZBSkNBNP3Ct1pcFn6Fu4sZQFhnu48EsM9voCEondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cipher-mining-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cipher-mining-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/WNZBSkNBNP3Ct1pcFn6Fu4sZQFhnu48EsM9voCEondo/logo.png b/blockchains/solana/assets/WNZBSkNBNP3Ct1pcFn6Fu4sZQFhnu48EsM9voCEondo/logo.png new file mode 100644 index 0000000000000..a3964e6907cc4 Binary files /dev/null and b/blockchains/solana/assets/WNZBSkNBNP3Ct1pcFn6Fu4sZQFhnu48EsM9voCEondo/logo.png differ diff --git a/blockchains/solana/assets/Wk8gC6iTNp8dqd4ghkJ3h1giiUnyhykwHh7tYWjondo/info.json b/blockchains/solana/assets/Wk8gC6iTNp8dqd4ghkJ3h1giiUnyhykwHh7tYWjondo/info.json new file mode 100644 index 0000000000000..6e17397d63a92 --- /dev/null +++ b/blockchains/solana/assets/Wk8gC6iTNp8dqd4ghkJ3h1giiUnyhykwHh7tYWjondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Bank of America (Ondo Tokenized)", + "type": "SPL", + "symbol": "BACon", + "decimals": 9, + "description": "BACon is the Ondo Tokenized version of Bank of America, giving tokenholders economic exposure similar to holding BAC and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/Wk8gC6iTNp8dqd4ghkJ3h1giiUnyhykwHh7tYWjondo", + "status": "active", + "id": "Wk8gC6iTNp8dqd4ghkJ3h1giiUnyhykwHh7tYWjondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bank-of-america-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bank-of-america-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Wk8gC6iTNp8dqd4ghkJ3h1giiUnyhykwHh7tYWjondo/logo.png b/blockchains/solana/assets/Wk8gC6iTNp8dqd4ghkJ3h1giiUnyhykwHh7tYWjondo/logo.png new file mode 100644 index 0000000000000..5c74edc6a0963 Binary files /dev/null and b/blockchains/solana/assets/Wk8gC6iTNp8dqd4ghkJ3h1giiUnyhykwHh7tYWjondo/logo.png differ diff --git a/blockchains/solana/assets/X68p9qTpEMkR1TLpXUP2ZJo8PG4Qge2Y2ZLdjA2ondo/info.json b/blockchains/solana/assets/X68p9qTpEMkR1TLpXUP2ZJo8PG4Qge2Y2ZLdjA2ondo/info.json new file mode 100644 index 0000000000000..a99ef96655694 --- /dev/null +++ b/blockchains/solana/assets/X68p9qTpEMkR1TLpXUP2ZJo8PG4Qge2Y2ZLdjA2ondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "ConocoPhillips (Ondo Tokenized)", + "type": "SPL", + "symbol": "COPon", + "decimals": 9, + "description": "COPon is the Ondo Tokenized version of ConocoPhillips, giving tokenholders economic exposure similar to holding COP and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/X68p9qTpEMkR1TLpXUP2ZJo8PG4Qge2Y2ZLdjA2ondo", + "status": "active", + "id": "X68p9qTpEMkR1TLpXUP2ZJo8PG4Qge2Y2ZLdjA2ondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/conocophillips-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/conocophillips-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/X68p9qTpEMkR1TLpXUP2ZJo8PG4Qge2Y2ZLdjA2ondo/logo.png b/blockchains/solana/assets/X68p9qTpEMkR1TLpXUP2ZJo8PG4Qge2Y2ZLdjA2ondo/logo.png new file mode 100644 index 0000000000000..95d8e65391e6a Binary files /dev/null and b/blockchains/solana/assets/X68p9qTpEMkR1TLpXUP2ZJo8PG4Qge2Y2ZLdjA2ondo/logo.png differ diff --git a/blockchains/solana/assets/X7j77hTmjZJbepkXXBcsEapM8qNgdfihkFj6CZ5ondo/info.json b/blockchains/solana/assets/X7j77hTmjZJbepkXXBcsEapM8qNgdfihkFj6CZ5ondo/info.json new file mode 100644 index 0000000000000..5bc148bf8b0a3 --- /dev/null +++ b/blockchains/solana/assets/X7j77hTmjZJbepkXXBcsEapM8qNgdfihkFj6CZ5ondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Global X Copper Miners ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "COPXon", + "decimals": 9, + "description": "COPXon is the Ondo Tokenized version of the Global X Copper Miners ETF, giving tokenholders economic exposure similar to holding COPX and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/X7j77hTmjZJbepkXXBcsEapM8qNgdfihkFj6CZ5ondo", + "status": "active", + "id": "X7j77hTmjZJbepkXXBcsEapM8qNgdfihkFj6CZ5ondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/global-x-copper-miners-etf-ondo-tokenized-etf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/global-x-copper-miners-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/X7j77hTmjZJbepkXXBcsEapM8qNgdfihkFj6CZ5ondo/logo.png b/blockchains/solana/assets/X7j77hTmjZJbepkXXBcsEapM8qNgdfihkFj6CZ5ondo/logo.png new file mode 100644 index 0000000000000..8bd6718f2dc1a Binary files /dev/null and b/blockchains/solana/assets/X7j77hTmjZJbepkXXBcsEapM8qNgdfihkFj6CZ5ondo/logo.png differ diff --git a/blockchains/solana/assets/Xs151QeqTCiuKtinzfRATnUESM2xTU6V9Wy8Vy538ci/info.json b/blockchains/solana/assets/Xs151QeqTCiuKtinzfRATnUESM2xTU6V9Wy8Vy538ci/info.json new file mode 100644 index 0000000000000..ab51a829d3c0c --- /dev/null +++ b/blockchains/solana/assets/Xs151QeqTCiuKtinzfRATnUESM2xTU6V9Wy8Vy538ci/info.json @@ -0,0 +1,24 @@ +{ + "name": "Walmart tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Walmart xStock (WMTx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. WMTx tracks the price of Walmart Inc. (the underlying). WMTx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Walmart Inc., whilst maintaining the benefits of blockchain technology. Walmart Inc. is a multinational retail corporation operating a global network of discount department stores, supercenters, and online platforms. It is one of the largest retailers in the world, known for its everyday low prices and broad product assortment.", + "explorer": "https://solscan.io/token/Xs151QeqTCiuKtinzfRATnUESM2xTU6V9Wy8Vy538ci", + "type": "SPL", + "symbol": "WMTX", + "decimals": 8, + "status": "active", + "id": "Xs151QeqTCiuKtinzfRATnUESM2xTU6V9Wy8Vy538ci", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/walmart-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Xs151QeqTCiuKtinzfRATnUESM2xTU6V9Wy8Vy538ci/logo.png b/blockchains/solana/assets/Xs151QeqTCiuKtinzfRATnUESM2xTU6V9Wy8Vy538ci/logo.png new file mode 100644 index 0000000000000..ef21853af9684 Binary files /dev/null and b/blockchains/solana/assets/Xs151QeqTCiuKtinzfRATnUESM2xTU6V9Wy8Vy538ci/logo.png differ diff --git a/blockchains/solana/assets/Xs2yquAgsHByNzx68WJC55WHjHBvG9JsMB7CWjTLyPy/info.json b/blockchains/solana/assets/Xs2yquAgsHByNzx68WJC55WHjHBvG9JsMB7CWjTLyPy/info.json new file mode 100644 index 0000000000000..d8e24d4c966ec --- /dev/null +++ b/blockchains/solana/assets/Xs2yquAgsHByNzx68WJC55WHjHBvG9JsMB7CWjTLyPy/info.json @@ -0,0 +1,24 @@ +{ + "name": "DFDV tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "DFDV tokenized stock (xStock) (DFDVx) is a cryptocurrency launched in 2025and operates on the Solana platform. DFDV tokenized stock (xStock) has a current supply of 89,998.8299641. The last known price of DFDV tokenized stock (xStock) is 17.41975634 USD and is up 0.35 over the last 24 hours. It is currently trading on 13 active market(s) with $2,140,595.18 traded over the last 24 hours. More information can be found at https://defidevcorp.com/.", + "explorer": "https://solscan.io/token/Xs2yquAgsHByNzx68WJC55WHjHBvG9JsMB7CWjTLyPy", + "type": "SPL", + "symbol": "DFDVx", + "decimals": 8, + "status": "active", + "id": "Xs2yquAgsHByNzx68WJC55WHjHBvG9JsMB7CWjTLyPy", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dfdv-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Xs2yquAgsHByNzx68WJC55WHjHBvG9JsMB7CWjTLyPy/logo.png b/blockchains/solana/assets/Xs2yquAgsHByNzx68WJC55WHjHBvG9JsMB7CWjTLyPy/logo.png new file mode 100644 index 0000000000000..cf1609ac71978 Binary files /dev/null and b/blockchains/solana/assets/Xs2yquAgsHByNzx68WJC55WHjHBvG9JsMB7CWjTLyPy/logo.png differ diff --git a/blockchains/solana/assets/Xs3ZFkPYT2BN7qBMqf1j1bfTeTm1rFzEFSsQ1z3wAKU/info.json b/blockchains/solana/assets/Xs3ZFkPYT2BN7qBMqf1j1bfTeTm1rFzEFSsQ1z3wAKU/info.json new file mode 100644 index 0000000000000..9b9cc6f6fd457 --- /dev/null +++ b/blockchains/solana/assets/Xs3ZFkPYT2BN7qBMqf1j1bfTeTm1rFzEFSsQ1z3wAKU/info.json @@ -0,0 +1,24 @@ +{ + "name": "AstraZeneca tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "AstraZeneca xStock (AZNx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. AZNx tracks the price of AstraZeneca PLC (the underlying). AZNx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of AstraZeneca PLC, whilst maintaining the benefits of blockchain technology. AstraZeneca is a British-Swedish biopharmaceutical company that focuses on research, development, and commercialization of prescription medicines.", + "explorer": "https://solscan.io/token/Xs3ZFkPYT2BN7qBMqf1j1bfTeTm1rFzEFSsQ1z3wAKU", + "type": "SPL", + "symbol": "AZNX", + "decimals": 8, + "status": "active", + "id": "Xs3ZFkPYT2BN7qBMqf1j1bfTeTm1rFzEFSsQ1z3wAKU", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/astrazeneca-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Xs3ZFkPYT2BN7qBMqf1j1bfTeTm1rFzEFSsQ1z3wAKU/logo.png b/blockchains/solana/assets/Xs3ZFkPYT2BN7qBMqf1j1bfTeTm1rFzEFSsQ1z3wAKU/logo.png new file mode 100644 index 0000000000000..d59462126c663 Binary files /dev/null and b/blockchains/solana/assets/Xs3ZFkPYT2BN7qBMqf1j1bfTeTm1rFzEFSsQ1z3wAKU/logo.png differ diff --git a/blockchains/solana/assets/Xs3eBt7uRfJX8QUs4suhyU8p2M6DoUDrJyWBa8LLZsg/info.json b/blockchains/solana/assets/Xs3eBt7uRfJX8QUs4suhyU8p2M6DoUDrJyWBa8LLZsg/info.json new file mode 100644 index 0000000000000..a6a8526c4b737 --- /dev/null +++ b/blockchains/solana/assets/Xs3eBt7uRfJX8QUs4suhyU8p2M6DoUDrJyWBa8LLZsg/info.json @@ -0,0 +1,24 @@ +{ + "name": "Amazon tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Amazon tokenized stock (xStock) (AMZNX) is a cryptocurrency and operates on the Solana platform. Amazon tokenized stock (xStock) has a current supply of 9,999.36105472 with 5,447.71612052 in circulation. The last known price of Amazon tokenized stock (xStock) is 232.88934286 USD and is up 0.69 over the last 24 hours. It is currently trading on 28 active market(s) with $3,262,241.23 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/amazon-xstock.", + "explorer": "https://solscan.io/token/Xs3eBt7uRfJX8QUs4suhyU8p2M6DoUDrJyWBa8LLZsg", + "type": "SPL", + "symbol": "AMZNX", + "decimals": 8, + "status": "active", + "id": "Xs3eBt7uRfJX8QUs4suhyU8p2M6DoUDrJyWBa8LLZsg", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/amazon-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Xs3eBt7uRfJX8QUs4suhyU8p2M6DoUDrJyWBa8LLZsg/logo.png b/blockchains/solana/assets/Xs3eBt7uRfJX8QUs4suhyU8p2M6DoUDrJyWBa8LLZsg/logo.png new file mode 100644 index 0000000000000..1b179f11932f3 Binary files /dev/null and b/blockchains/solana/assets/Xs3eBt7uRfJX8QUs4suhyU8p2M6DoUDrJyWBa8LLZsg/logo.png differ diff --git a/blockchains/solana/assets/Xs5UJzmCRQ8DWZjskExdSQDnbE6iLkRu2jjrRAB1JSU/info.json b/blockchains/solana/assets/Xs5UJzmCRQ8DWZjskExdSQDnbE6iLkRu2jjrRAB1JSU/info.json new file mode 100644 index 0000000000000..ea9dad5d34e25 --- /dev/null +++ b/blockchains/solana/assets/Xs5UJzmCRQ8DWZjskExdSQDnbE6iLkRu2jjrRAB1JSU/info.json @@ -0,0 +1,24 @@ +{ + "name": "Accenture tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Accenture xStock (ACNx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. ACNx tracks the price of Accenture plc Class A (the underlying). ACNx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Accenture plc Class A, whilst maintaining the benefits of blockchain technology. Accenture is a global professional services company that helps businesses, governments, and other organizations build their digital core, optimize their operations, and accelerate revenue growth.", + "explorer": "https://solscan.io/token/Xs5UJzmCRQ8DWZjskExdSQDnbE6iLkRu2jjrRAB1JSU", + "type": "SPL", + "symbol": "ACNX", + "decimals": 8, + "status": "active", + "id": "Xs5UJzmCRQ8DWZjskExdSQDnbE6iLkRu2jjrRAB1JSU", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/accenture-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Xs5UJzmCRQ8DWZjskExdSQDnbE6iLkRu2jjrRAB1JSU/logo.png b/blockchains/solana/assets/Xs5UJzmCRQ8DWZjskExdSQDnbE6iLkRu2jjrRAB1JSU/logo.png new file mode 100644 index 0000000000000..70683dfdde705 Binary files /dev/null and b/blockchains/solana/assets/Xs5UJzmCRQ8DWZjskExdSQDnbE6iLkRu2jjrRAB1JSU/logo.png differ diff --git a/blockchains/solana/assets/Xs6B6zawENwAbWVi7w92rjazLuAr5Az59qgWKcNb45x/info.json b/blockchains/solana/assets/Xs6B6zawENwAbWVi7w92rjazLuAr5Az59qgWKcNb45x/info.json new file mode 100644 index 0000000000000..30242c0c63754 --- /dev/null +++ b/blockchains/solana/assets/Xs6B6zawENwAbWVi7w92rjazLuAr5Az59qgWKcNb45x/info.json @@ -0,0 +1,24 @@ +{ + "name": "Berkshire Hathaway tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Berkshire Hathaway tokenized stock (xStock) (BRK.BX) is a cryptocurrency and operates on the Solana platform. Berkshire Hathaway tokenized stock (xStock) has a current supply of 1,400. The last known price of Berkshire Hathaway tokenized stock (xStock) is 498.90939725 USD and is down -0.01 over the last 24 hours. It is currently trading on 1 active market(s) with $3,195.32 traded over the last 24 hours. More information can be found at https://xstocks.fi.", + "explorer": "https://solscan.io/token/Xs6B6zawENwAbWVi7w92rjazLuAr5Az59qgWKcNb45x", + "type": "SPL", + "symbol": "BRK.BX", + "decimals": 8, + "status": "active", + "id": "Xs6B6zawENwAbWVi7w92rjazLuAr5Az59qgWKcNb45x", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/berkshire-hathaway-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Xs6B6zawENwAbWVi7w92rjazLuAr5Az59qgWKcNb45x/logo.png b/blockchains/solana/assets/Xs6B6zawENwAbWVi7w92rjazLuAr5Az59qgWKcNb45x/logo.png new file mode 100644 index 0000000000000..1add0de469f53 Binary files /dev/null and b/blockchains/solana/assets/Xs6B6zawENwAbWVi7w92rjazLuAr5Az59qgWKcNb45x/logo.png differ diff --git a/blockchains/solana/assets/Xs78JED6PFZxWc2wCEPspZW9kL3Se5J7L5TChKgsidH/info.json b/blockchains/solana/assets/Xs78JED6PFZxWc2wCEPspZW9kL3Se5J7L5TChKgsidH/info.json new file mode 100644 index 0000000000000..5025ccd2ec15e --- /dev/null +++ b/blockchains/solana/assets/Xs78JED6PFZxWc2wCEPspZW9kL3Se5J7L5TChKgsidH/info.json @@ -0,0 +1,15 @@ +{ + "name": "Strategy PP Variable xStock", + "type": "SPL", + "symbol": "STRCx", + "decimals": 8, + "description": "Strategy PP Variable xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://solscan.io/token/Xs78JED6PFZxWc2wCEPspZW9kL3Se5J7L5TChKgsidH", + "status": "active", + "id": "Xs78JED6PFZxWc2wCEPspZW9kL3Se5J7L5TChKgsidH", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Xs78JED6PFZxWc2wCEPspZW9kL3Se5J7L5TChKgsidH/logo.png b/blockchains/solana/assets/Xs78JED6PFZxWc2wCEPspZW9kL3Se5J7L5TChKgsidH/logo.png new file mode 100644 index 0000000000000..1407faeca0e8c Binary files /dev/null and b/blockchains/solana/assets/Xs78JED6PFZxWc2wCEPspZW9kL3Se5J7L5TChKgsidH/logo.png differ diff --git a/blockchains/solana/assets/Xs7ZdzSHLU9ftNJsii5fCeJhoRWSC32SQGzGQtePxNu/info.json b/blockchains/solana/assets/Xs7ZdzSHLU9ftNJsii5fCeJhoRWSC32SQGzGQtePxNu/info.json new file mode 100644 index 0000000000000..a208ff8359893 --- /dev/null +++ b/blockchains/solana/assets/Xs7ZdzSHLU9ftNJsii5fCeJhoRWSC32SQGzGQtePxNu/info.json @@ -0,0 +1,24 @@ +{ + "name": "Coinbase tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Coinbase tokenized stock (xStock) (COINX) is a cryptocurrency and operates on the Solana platform. Coinbase tokenized stock (xStock) has a current supply of 11,999.99916158 with 6,000 in circulation. The last known price of Coinbase tokenized stock (xStock) is 327.47561557 USD and is up 1.69 over the last 24 hours. It is currently trading on 28 active market(s) with $5,223,607.28 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/coinbase-xstock.", + "explorer": "https://solscan.io/token/Xs7ZdzSHLU9ftNJsii5fCeJhoRWSC32SQGzGQtePxNu", + "type": "SPL", + "symbol": "COINX", + "decimals": 8, + "status": "active", + "id": "Xs7ZdzSHLU9ftNJsii5fCeJhoRWSC32SQGzGQtePxNu", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coinbase-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Xs7ZdzSHLU9ftNJsii5fCeJhoRWSC32SQGzGQtePxNu/logo.png b/blockchains/solana/assets/Xs7ZdzSHLU9ftNJsii5fCeJhoRWSC32SQGzGQtePxNu/logo.png new file mode 100644 index 0000000000000..00db496af4511 Binary files /dev/null and b/blockchains/solana/assets/Xs7ZdzSHLU9ftNJsii5fCeJhoRWSC32SQGzGQtePxNu/logo.png differ diff --git a/blockchains/solana/assets/Xs7xXqkcK7K8urEqGg52SECi79dRp2cEKKuYjUePYDw/info.json b/blockchains/solana/assets/Xs7xXqkcK7K8urEqGg52SECi79dRp2cEKKuYjUePYDw/info.json new file mode 100644 index 0000000000000..7df418dc70589 --- /dev/null +++ b/blockchains/solana/assets/Xs7xXqkcK7K8urEqGg52SECi79dRp2cEKKuYjUePYDw/info.json @@ -0,0 +1,24 @@ +{ + "name": "CrowdStrike tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "CrowdStrike xStock (CRWDx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. CRWDx tracks the price of CrowdStrike Holdings, Inc. (the underlying). CRWDx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of CrowdStrike Holdings, Inc., whilst maintaining the benefits of blockchain technology. CrowdStrike is a cybersecurity company specializing in cloud-delivered security solutions, particularly for endpoint and cloud workload protection.", + "explorer": "https://solscan.io/token/Xs7xXqkcK7K8urEqGg52SECi79dRp2cEKKuYjUePYDw", + "type": "SPL", + "symbol": "CRWDX", + "decimals": 8, + "status": "active", + "id": "Xs7xXqkcK7K8urEqGg52SECi79dRp2cEKKuYjUePYDw", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crowdstrike-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Xs7xXqkcK7K8urEqGg52SECi79dRp2cEKKuYjUePYDw/logo.png b/blockchains/solana/assets/Xs7xXqkcK7K8urEqGg52SECi79dRp2cEKKuYjUePYDw/logo.png new file mode 100644 index 0000000000000..72cd9e09a3d7d Binary files /dev/null and b/blockchains/solana/assets/Xs7xXqkcK7K8urEqGg52SECi79dRp2cEKKuYjUePYDw/logo.png differ diff --git a/blockchains/solana/assets/Xs8S1uUs1zvS2p7iwtsG3b6fkhpvmwz4GYU3gWAmWHZ/info.json b/blockchains/solana/assets/Xs8S1uUs1zvS2p7iwtsG3b6fkhpvmwz4GYU3gWAmWHZ/info.json new file mode 100644 index 0000000000000..c52e8162c8aa0 --- /dev/null +++ b/blockchains/solana/assets/Xs8S1uUs1zvS2p7iwtsG3b6fkhpvmwz4GYU3gWAmWHZ/info.json @@ -0,0 +1,24 @@ +{ + "name": "Nasdaq tokenized ETF (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Nasdaq tokenized ETF (xStock) (QQQX) is a cryptocurrency and operates on the Solana platform. Nasdaq tokenized ETF (xStock) has a current supply of 5,999.92232021. The last known price of Nasdaq tokenized ETF (xStock) is 593.40939583 USD and is up 0.98 over the last 24 hours. It is currently trading on 15 active market(s) with $930,481.21 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/nasdaq-xstock.", + "explorer": "https://solscan.io/token/Xs8S1uUs1zvS2p7iwtsG3b6fkhpvmwz4GYU3gWAmWHZ", + "type": "SPL", + "symbol": "QQQX", + "decimals": 8, + "status": "active", + "id": "Xs8S1uUs1zvS2p7iwtsG3b6fkhpvmwz4GYU3gWAmWHZ", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nasdaq-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Xs8S1uUs1zvS2p7iwtsG3b6fkhpvmwz4GYU3gWAmWHZ/logo.png b/blockchains/solana/assets/Xs8S1uUs1zvS2p7iwtsG3b6fkhpvmwz4GYU3gWAmWHZ/logo.png new file mode 100644 index 0000000000000..7151d49b76d09 Binary files /dev/null and b/blockchains/solana/assets/Xs8S1uUs1zvS2p7iwtsG3b6fkhpvmwz4GYU3gWAmWHZ/logo.png differ diff --git a/blockchains/solana/assets/Xs8drBWy3Sd5QY3aifG9kt9KFs2K3PGZmx7jWrsrk57/info.json b/blockchains/solana/assets/Xs8drBWy3Sd5QY3aifG9kt9KFs2K3PGZmx7jWrsrk57/info.json new file mode 100644 index 0000000000000..ce4843e34f2ce --- /dev/null +++ b/blockchains/solana/assets/Xs8drBWy3Sd5QY3aifG9kt9KFs2K3PGZmx7jWrsrk57/info.json @@ -0,0 +1,24 @@ +{ + "name": "Thermo Fisher tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Thermo Fisher xStock (TMOx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. TMOx tracks the price of Thermo Fisher Scientific Inc. (the underlying). TMOx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Thermo Fisher Scientific Inc., whilst maintaining the benefits of blockchain technology. Thermo Fisher is a global leader in serving science, with a mission to enable customers to make the world healthier, cleaner, and safer.", + "explorer": "https://solscan.io/token/Xs8drBWy3Sd5QY3aifG9kt9KFs2K3PGZmx7jWrsrk57", + "type": "SPL", + "symbol": "TMOX", + "decimals": 8, + "status": "active", + "id": "Xs8drBWy3Sd5QY3aifG9kt9KFs2K3PGZmx7jWrsrk57", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/thermo-fisher-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Xs8drBWy3Sd5QY3aifG9kt9KFs2K3PGZmx7jWrsrk57/logo.png b/blockchains/solana/assets/Xs8drBWy3Sd5QY3aifG9kt9KFs2K3PGZmx7jWrsrk57/logo.png new file mode 100644 index 0000000000000..472c951a6b913 Binary files /dev/null and b/blockchains/solana/assets/Xs8drBWy3Sd5QY3aifG9kt9KFs2K3PGZmx7jWrsrk57/logo.png differ diff --git a/blockchains/solana/assets/XsApJFV9MAktqnAc6jqzsHVujxkGm9xcSUffaBoYLKC/info.json b/blockchains/solana/assets/XsApJFV9MAktqnAc6jqzsHVujxkGm9xcSUffaBoYLKC/info.json new file mode 100644 index 0000000000000..4b713185488d3 --- /dev/null +++ b/blockchains/solana/assets/XsApJFV9MAktqnAc6jqzsHVujxkGm9xcSUffaBoYLKC/info.json @@ -0,0 +1,24 @@ +{ + "name": "Mastercard tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Mastercard xStock (MAx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. MAx tracks the price of Mastercard Inc. (the underlying). MAx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Mastercard Inc., whilst maintaining the benefits of blockchain technology. Mastercard Inc. is a global payments and technology company that facilitates electronic payments by connecting consumers, financial institutions, merchants, governments, and businesses worldwide.", + "explorer": "https://solscan.io/token/XsApJFV9MAktqnAc6jqzsHVujxkGm9xcSUffaBoYLKC", + "type": "SPL", + "symbol": "MAX", + "decimals": 8, + "status": "active", + "id": "XsApJFV9MAktqnAc6jqzsHVujxkGm9xcSUffaBoYLKC", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mastercard-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsApJFV9MAktqnAc6jqzsHVujxkGm9xcSUffaBoYLKC/logo.png b/blockchains/solana/assets/XsApJFV9MAktqnAc6jqzsHVujxkGm9xcSUffaBoYLKC/logo.png new file mode 100644 index 0000000000000..85dccc98f3df9 Binary files /dev/null and b/blockchains/solana/assets/XsApJFV9MAktqnAc6jqzsHVujxkGm9xcSUffaBoYLKC/logo.png differ diff --git a/blockchains/solana/assets/XsAtbqkAP1HJxy7hFDeq7ok6yM43DQ9mQ1Rh861X8rw/info.json b/blockchains/solana/assets/XsAtbqkAP1HJxy7hFDeq7ok6yM43DQ9mQ1Rh861X8rw/info.json new file mode 100644 index 0000000000000..e581de56f1f08 --- /dev/null +++ b/blockchains/solana/assets/XsAtbqkAP1HJxy7hFDeq7ok6yM43DQ9mQ1Rh861X8rw/info.json @@ -0,0 +1,24 @@ +{ + "name": "Pfizer tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Pfizer xStock (PFEx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. PFEx tracks the price of Pfizer Inc. (the underlying). PFEx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Pfizer Inc., whilst maintaining the benefits of blockchain technology. Pfizer Inc. is a global biopharmaceutical company focused on discovering, developing, and delivering innovative medicines and vaccines to improve health and well-being.", + "explorer": "https://solscan.io/token/XsAtbqkAP1HJxy7hFDeq7ok6yM43DQ9mQ1Rh861X8rw", + "type": "SPL", + "symbol": "PFEX", + "decimals": 8, + "status": "active", + "id": "XsAtbqkAP1HJxy7hFDeq7ok6yM43DQ9mQ1Rh861X8rw", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pfizer-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsAtbqkAP1HJxy7hFDeq7ok6yM43DQ9mQ1Rh861X8rw/logo.png b/blockchains/solana/assets/XsAtbqkAP1HJxy7hFDeq7ok6yM43DQ9mQ1Rh861X8rw/logo.png new file mode 100644 index 0000000000000..c35598c6466ac Binary files /dev/null and b/blockchains/solana/assets/XsAtbqkAP1HJxy7hFDeq7ok6yM43DQ9mQ1Rh861X8rw/logo.png differ diff --git a/blockchains/solana/assets/XsCPL9dNWBMvFtTmwcCA5v3xWPSMEBCszbQdiLLq6aN/info.json b/blockchains/solana/assets/XsCPL9dNWBMvFtTmwcCA5v3xWPSMEBCszbQdiLLq6aN/info.json new file mode 100644 index 0000000000000..d3cd5c886c605 --- /dev/null +++ b/blockchains/solana/assets/XsCPL9dNWBMvFtTmwcCA5v3xWPSMEBCszbQdiLLq6aN/info.json @@ -0,0 +1,24 @@ +{ + "name": "Alphabet tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Alphabet tokenized stock (xStock) (GOOGLX) is a cryptocurrency and operates on the Solana platform. Alphabet tokenized stock (xStock) has a current supply of 20,999.24547712. The last known price of Alphabet tokenized stock (xStock) is 254.51926743 USD and is up 4.55 over the last 24 hours. It is currently trading on 34 active market(s) with $4,238,360.30 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/alphabet-xstock.", + "explorer": "https://solscan.io/token/XsCPL9dNWBMvFtTmwcCA5v3xWPSMEBCszbQdiLLq6aN", + "type": "SPL", + "symbol": "GOOGLX", + "decimals": 8, + "status": "active", + "id": "XsCPL9dNWBMvFtTmwcCA5v3xWPSMEBCszbQdiLLq6aN", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/alphabet-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsCPL9dNWBMvFtTmwcCA5v3xWPSMEBCszbQdiLLq6aN/logo.png b/blockchains/solana/assets/XsCPL9dNWBMvFtTmwcCA5v3xWPSMEBCszbQdiLLq6aN/logo.png new file mode 100644 index 0000000000000..6d98541975eed Binary files /dev/null and b/blockchains/solana/assets/XsCPL9dNWBMvFtTmwcCA5v3xWPSMEBCszbQdiLLq6aN/logo.png differ diff --git a/blockchains/solana/assets/XsDgw22qRLTv5Uwuzn6T63cW69exG41T6gwQhEK22u2/info.json b/blockchains/solana/assets/XsDgw22qRLTv5Uwuzn6T63cW69exG41T6gwQhEK22u2/info.json new file mode 100644 index 0000000000000..252571a2757f4 --- /dev/null +++ b/blockchains/solana/assets/XsDgw22qRLTv5Uwuzn6T63cW69exG41T6gwQhEK22u2/info.json @@ -0,0 +1,24 @@ +{ + "name": "Medtronic tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Medtronic xStock (MDTx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. MDTx tracks the price of Medtronic plc (the underlying). MDTx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Medtronic plc, whilst maintaining the benefits of blockchain technology. Medtronic plc is a global healthcare technology company that develops, manufactures, and sells device-based medical therapies and services.", + "explorer": "https://solscan.io/token/XsDgw22qRLTv5Uwuzn6T63cW69exG41T6gwQhEK22u2", + "type": "SPL", + "symbol": "MDTX", + "decimals": 8, + "status": "active", + "id": "XsDgw22qRLTv5Uwuzn6T63cW69exG41T6gwQhEK22u2", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/medtronic-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsDgw22qRLTv5Uwuzn6T63cW69exG41T6gwQhEK22u2/logo.png b/blockchains/solana/assets/XsDgw22qRLTv5Uwuzn6T63cW69exG41T6gwQhEK22u2/logo.png new file mode 100644 index 0000000000000..1759e67f775b0 Binary files /dev/null and b/blockchains/solana/assets/XsDgw22qRLTv5Uwuzn6T63cW69exG41T6gwQhEK22u2/logo.png differ diff --git a/blockchains/solana/assets/XsDoVfqeBukxuZHWhdvWHBhgEHjGNst4MLodqsJHzoB/info.json b/blockchains/solana/assets/XsDoVfqeBukxuZHWhdvWHBhgEHjGNst4MLodqsJHzoB/info.json new file mode 100644 index 0000000000000..e9c6be6654e87 --- /dev/null +++ b/blockchains/solana/assets/XsDoVfqeBukxuZHWhdvWHBhgEHjGNst4MLodqsJHzoB/info.json @@ -0,0 +1,24 @@ +{ + "name": "Tesla tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Tesla tokenized stock (xStock) (TSLAX) is a cryptocurrency and operates on the Solana platform. Tesla tokenized stock (xStock) has a current supply of 50,998.28909342 with 10,999.28657402 in circulation. The last known price of Tesla tokenized stock (xStock) is 417.05893204 USD and is down -0.76 over the last 24 hours. It is currently trading on 44 active market(s) with $21,478,606.39 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/tesla-xstock.", + "explorer": "https://solscan.io/token/XsDoVfqeBukxuZHWhdvWHBhgEHjGNst4MLodqsJHzoB", + "type": "SPL", + "symbol": "TSLAX", + "decimals": 8, + "status": "active", + "id": "XsDoVfqeBukxuZHWhdvWHBhgEHjGNst4MLodqsJHzoB", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tesla-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsDoVfqeBukxuZHWhdvWHBhgEHjGNst4MLodqsJHzoB/logo.png b/blockchains/solana/assets/XsDoVfqeBukxuZHWhdvWHBhgEHjGNst4MLodqsJHzoB/logo.png new file mode 100644 index 0000000000000..639735518a8c4 Binary files /dev/null and b/blockchains/solana/assets/XsDoVfqeBukxuZHWhdvWHBhgEHjGNst4MLodqsJHzoB/logo.png differ diff --git a/blockchains/solana/assets/XsEH7wWfJJu2ZT3UCFeVfALnVA6CP5ur7Ee11KmzVpL/info.json b/blockchains/solana/assets/XsEH7wWfJJu2ZT3UCFeVfALnVA6CP5ur7Ee11KmzVpL/info.json new file mode 100644 index 0000000000000..8d0ec5662c7bd --- /dev/null +++ b/blockchains/solana/assets/XsEH7wWfJJu2ZT3UCFeVfALnVA6CP5ur7Ee11KmzVpL/info.json @@ -0,0 +1,24 @@ +{ + "name": "Netflix tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Netflix xStock (NFLXx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. NFLXx tracks the price of Netflix, Inc. (the underlying). NFLXx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Netflix, Inc., whilst maintaining the benefits of blockchain technology. Key Benefits Netflix is a media company that provides entertainment services, including streaming movies, TV shows, and games, through a subscription-based model. It also produces its own original content and licenses content from other companies.", + "explorer": "https://solscan.io/token/XsEH7wWfJJu2ZT3UCFeVfALnVA6CP5ur7Ee11KmzVpL", + "type": "SPL", + "symbol": "NFLXX", + "decimals": 8, + "status": "active", + "id": "XsEH7wWfJJu2ZT3UCFeVfALnVA6CP5ur7Ee11KmzVpL", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/netflix-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsEH7wWfJJu2ZT3UCFeVfALnVA6CP5ur7Ee11KmzVpL/logo.png b/blockchains/solana/assets/XsEH7wWfJJu2ZT3UCFeVfALnVA6CP5ur7Ee11KmzVpL/logo.png new file mode 100644 index 0000000000000..7cb316a4557bb Binary files /dev/null and b/blockchains/solana/assets/XsEH7wWfJJu2ZT3UCFeVfALnVA6CP5ur7Ee11KmzVpL/logo.png differ diff --git a/blockchains/solana/assets/XsEdDDTcVGJU6nvdRdVnj53eKTrsCkvtrVfXGmUK68V/info.json b/blockchains/solana/assets/XsEdDDTcVGJU6nvdRdVnj53eKTrsCkvtrVfXGmUK68V/info.json new file mode 100644 index 0000000000000..4dbb762e9580d --- /dev/null +++ b/blockchains/solana/assets/XsEdDDTcVGJU6nvdRdVnj53eKTrsCkvtrVfXGmUK68V/info.json @@ -0,0 +1,15 @@ +{ + "name": "Vanguard Total World xStock", + "type": "SPL", + "symbol": "VTx", + "decimals": 8, + "description": "Vanguard Total World xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://solscan.io/token/XsEdDDTcVGJU6nvdRdVnj53eKTrsCkvtrVfXGmUK68V", + "status": "active", + "id": "XsEdDDTcVGJU6nvdRdVnj53eKTrsCkvtrVfXGmUK68V", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsEdDDTcVGJU6nvdRdVnj53eKTrsCkvtrVfXGmUK68V/logo.png b/blockchains/solana/assets/XsEdDDTcVGJU6nvdRdVnj53eKTrsCkvtrVfXGmUK68V/logo.png new file mode 100644 index 0000000000000..5968d83be9311 Binary files /dev/null and b/blockchains/solana/assets/XsEdDDTcVGJU6nvdRdVnj53eKTrsCkvtrVfXGmUK68V/logo.png differ diff --git a/blockchains/solana/assets/XsFnZawJdLdXfBSEt5Vw29K5vdBiHotdPLjUPafpfHs/info.json b/blockchains/solana/assets/XsFnZawJdLdXfBSEt5Vw29K5vdBiHotdPLjUPafpfHs/info.json new file mode 100644 index 0000000000000..8bea53a42f2a9 --- /dev/null +++ b/blockchains/solana/assets/XsFnZawJdLdXfBSEt5Vw29K5vdBiHotdPLjUPafpfHs/info.json @@ -0,0 +1,15 @@ +{ + "name": "Core MSCI Emerging Markets xStock", + "type": "SPL", + "symbol": "IEMGx", + "decimals": 8, + "description": "Core MSCI Emerging Markets xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://solscan.io/token/XsFnZawJdLdXfBSEt5Vw29K5vdBiHotdPLjUPafpfHs", + "status": "active", + "id": "XsFnZawJdLdXfBSEt5Vw29K5vdBiHotdPLjUPafpfHs", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsFnZawJdLdXfBSEt5Vw29K5vdBiHotdPLjUPafpfHs/logo.png b/blockchains/solana/assets/XsFnZawJdLdXfBSEt5Vw29K5vdBiHotdPLjUPafpfHs/logo.png new file mode 100644 index 0000000000000..857fe69020c3c Binary files /dev/null and b/blockchains/solana/assets/XsFnZawJdLdXfBSEt5Vw29K5vdBiHotdPLjUPafpfHs/logo.png differ diff --git a/blockchains/solana/assets/XsGVi5eo1Dh2zUpic4qACcjuWGjNv8GCt3dm5XcX6Dn/info.json b/blockchains/solana/assets/XsGVi5eo1Dh2zUpic4qACcjuWGjNv8GCt3dm5XcX6Dn/info.json new file mode 100644 index 0000000000000..e149a208efc7e --- /dev/null +++ b/blockchains/solana/assets/XsGVi5eo1Dh2zUpic4qACcjuWGjNv8GCt3dm5XcX6Dn/info.json @@ -0,0 +1,24 @@ +{ + "name": "Johnson & Johnson tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Johnson & Johnson xStock (JNJx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. JNJx tracks the price of Johnson & Johnson (the underlying). JNJx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Johnson & Johnson, whilst maintaining the benefits of blockchain technology. Johnson & Johnson (J&J) is a global healthcare company focused on research, development, manufacturing, and sale of pharmaceuticals, medical devices, and consumer products.", + "explorer": "https://solscan.io/token/XsGVi5eo1Dh2zUpic4qACcjuWGjNv8GCt3dm5XcX6Dn", + "type": "SPL", + "symbol": "JNJX", + "decimals": 8, + "status": "active", + "id": "XsGVi5eo1Dh2zUpic4qACcjuWGjNv8GCt3dm5XcX6Dn", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/johnson-johnson-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsGVi5eo1Dh2zUpic4qACcjuWGjNv8GCt3dm5XcX6Dn/logo.png b/blockchains/solana/assets/XsGVi5eo1Dh2zUpic4qACcjuWGjNv8GCt3dm5XcX6Dn/logo.png new file mode 100644 index 0000000000000..179b22a7c4aaf Binary files /dev/null and b/blockchains/solana/assets/XsGVi5eo1Dh2zUpic4qACcjuWGjNv8GCt3dm5XcX6Dn/logo.png differ diff --git a/blockchains/solana/assets/XsGtpmjhmC8kyjVSWL4VicGu36ceq9u55PTgF8bhGv6/info.json b/blockchains/solana/assets/XsGtpmjhmC8kyjVSWL4VicGu36ceq9u55PTgF8bhGv6/info.json new file mode 100644 index 0000000000000..e2fdab47721e3 --- /dev/null +++ b/blockchains/solana/assets/XsGtpmjhmC8kyjVSWL4VicGu36ceq9u55PTgF8bhGv6/info.json @@ -0,0 +1,24 @@ +{ + "name": "OPEN tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://solscan.io/token/XsGtpmjhmC8kyjVSWL4VicGu36ceq9u55PTgF8bhGv6", + "type": "SPL", + "symbol": "OPENX", + "decimals": 8, + "status": "active", + "id": "XsGtpmjhmC8kyjVSWL4VicGu36ceq9u55PTgF8bhGv6", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/open-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsGtpmjhmC8kyjVSWL4VicGu36ceq9u55PTgF8bhGv6/logo.png b/blockchains/solana/assets/XsGtpmjhmC8kyjVSWL4VicGu36ceq9u55PTgF8bhGv6/logo.png new file mode 100644 index 0000000000000..ce91cfbfef91d Binary files /dev/null and b/blockchains/solana/assets/XsGtpmjhmC8kyjVSWL4VicGu36ceq9u55PTgF8bhGv6/logo.png differ diff --git a/blockchains/solana/assets/XsHtf5RpxsQ7jeJ9ivNewouZKJHbPxhPoEy6yYvULr7/info.json b/blockchains/solana/assets/XsHtf5RpxsQ7jeJ9ivNewouZKJHbPxhPoEy6yYvULr7/info.json new file mode 100644 index 0000000000000..ef007c5d69b3c --- /dev/null +++ b/blockchains/solana/assets/XsHtf5RpxsQ7jeJ9ivNewouZKJHbPxhPoEy6yYvULr7/info.json @@ -0,0 +1,24 @@ +{ + "name": "Abbott tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Abbott xStock (ABTx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. ABTx tracks the price of Abbott Laboratories (the underlying). ABTx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Abbott Laboratories, whilst maintaining the benefits of blockchain technology. Key Benefits Abbott is a global healthcare company focused on developing and delivering life-changing technologies in areas like diagnostics, medical devices, nutritional products, and branded generic pharmaceuticals.", + "explorer": "https://solscan.io/token/XsHtf5RpxsQ7jeJ9ivNewouZKJHbPxhPoEy6yYvULr7", + "type": "SPL", + "symbol": "ABTX", + "decimals": 8, + "status": "active", + "id": "XsHtf5RpxsQ7jeJ9ivNewouZKJHbPxhPoEy6yYvULr7", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abbott-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsHtf5RpxsQ7jeJ9ivNewouZKJHbPxhPoEy6yYvULr7/logo.png b/blockchains/solana/assets/XsHtf5RpxsQ7jeJ9ivNewouZKJHbPxhPoEy6yYvULr7/logo.png new file mode 100644 index 0000000000000..c82cd60e9df36 Binary files /dev/null and b/blockchains/solana/assets/XsHtf5RpxsQ7jeJ9ivNewouZKJHbPxhPoEy6yYvULr7/logo.png differ diff --git a/blockchains/solana/assets/XsMAqkcKsUewDrzVkait4e5u4y8REgtyS7jWgCpLV2C/info.json b/blockchains/solana/assets/XsMAqkcKsUewDrzVkait4e5u4y8REgtyS7jWgCpLV2C/info.json new file mode 100644 index 0000000000000..7e4177c03ca0b --- /dev/null +++ b/blockchains/solana/assets/XsMAqkcKsUewDrzVkait4e5u4y8REgtyS7jWgCpLV2C/info.json @@ -0,0 +1,24 @@ +{ + "name": "JPMorgan Chase tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "JPMorgan Chase xStock (JPMx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. JPMx tracks the price of JPMorgan Chase & Co. (the underlying). JPMx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of JPMorgan Chase & Co., whilst maintaining the benefits of blockchain technology. JPMorgan Chase & Co. is a multinational financial services firm headquartered in New York City. It's a leading provider of financial services to individuals, businesses, and institutions worldwide.", + "explorer": "https://solscan.io/token/XsMAqkcKsUewDrzVkait4e5u4y8REgtyS7jWgCpLV2C", + "type": "SPL", + "symbol": "JPMX", + "decimals": 8, + "status": "active", + "id": "XsMAqkcKsUewDrzVkait4e5u4y8REgtyS7jWgCpLV2C", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jpmorgan-chase-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsMAqkcKsUewDrzVkait4e5u4y8REgtyS7jWgCpLV2C/logo.png b/blockchains/solana/assets/XsMAqkcKsUewDrzVkait4e5u4y8REgtyS7jWgCpLV2C/logo.png new file mode 100644 index 0000000000000..df73bbccf4085 Binary files /dev/null and b/blockchains/solana/assets/XsMAqkcKsUewDrzVkait4e5u4y8REgtyS7jWgCpLV2C/logo.png differ diff --git a/blockchains/solana/assets/XsNNMt7WTNA2sV3jrb1NNfNgapxRF5i4i6GcnTRRHts/info.json b/blockchains/solana/assets/XsNNMt7WTNA2sV3jrb1NNfNgapxRF5i4i6GcnTRRHts/info.json new file mode 100644 index 0000000000000..d05d11ca5c6d2 --- /dev/null +++ b/blockchains/solana/assets/XsNNMt7WTNA2sV3jrb1NNfNgapxRF5i4i6GcnTRRHts/info.json @@ -0,0 +1,24 @@ +{ + "name": "Chevron tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Chevron xStock (CVXx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. CVXx tracks the price of Chevron Corporation (the underlying). CVXx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Chevron Corporation, whilst maintaining the benefits of blockchain technology. Key Benefits Chevron Corporation is a major American multinational energy corporation, a leading global oil and gas company known for its vertically integrated operations, spanning exploration, production, refining, marketing, and transportation.", + "explorer": "https://solscan.io/token/XsNNMt7WTNA2sV3jrb1NNfNgapxRF5i4i6GcnTRRHts", + "type": "SPL", + "symbol": "CVXX", + "decimals": 8, + "status": "active", + "id": "XsNNMt7WTNA2sV3jrb1NNfNgapxRF5i4i6GcnTRRHts", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chevron-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsNNMt7WTNA2sV3jrb1NNfNgapxRF5i4i6GcnTRRHts/logo.png b/blockchains/solana/assets/XsNNMt7WTNA2sV3jrb1NNfNgapxRF5i4i6GcnTRRHts/logo.png new file mode 100644 index 0000000000000..6d22d110bd6b6 Binary files /dev/null and b/blockchains/solana/assets/XsNNMt7WTNA2sV3jrb1NNfNgapxRF5i4i6GcnTRRHts/logo.png differ diff --git a/blockchains/solana/assets/XsP7xzNPvEHS1m6qfanPUGjNmdnmsLKEoNAnHjdxxyZ/info.json b/blockchains/solana/assets/XsP7xzNPvEHS1m6qfanPUGjNmdnmsLKEoNAnHjdxxyZ/info.json new file mode 100644 index 0000000000000..c6e727759a921 --- /dev/null +++ b/blockchains/solana/assets/XsP7xzNPvEHS1m6qfanPUGjNmdnmsLKEoNAnHjdxxyZ/info.json @@ -0,0 +1,24 @@ +{ + "name": "MicroStrategy tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "MicroStrategy tokenized stock (xStock) (MSTRX) is a cryptocurrency and operates on the Solana platform. MicroStrategy tokenized stock (xStock) has a current supply of 19,499.52630505. The last known price of MicroStrategy tokenized stock (xStock) is 329.14757255 USD and is down -0.35 over the last 24 hours. It is currently trading on 28 active market(s) with $3,268,417.42 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/microstrategy-xstock.", + "explorer": "https://solscan.io/token/XsP7xzNPvEHS1m6qfanPUGjNmdnmsLKEoNAnHjdxxyZ", + "type": "SPL", + "symbol": "MSTRX", + "decimals": 8, + "status": "active", + "id": "XsP7xzNPvEHS1m6qfanPUGjNmdnmsLKEoNAnHjdxxyZ", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/microstrategy-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsP7xzNPvEHS1m6qfanPUGjNmdnmsLKEoNAnHjdxxyZ/logo.png b/blockchains/solana/assets/XsP7xzNPvEHS1m6qfanPUGjNmdnmsLKEoNAnHjdxxyZ/logo.png new file mode 100644 index 0000000000000..b6fb457e98469 Binary files /dev/null and b/blockchains/solana/assets/XsP7xzNPvEHS1m6qfanPUGjNmdnmsLKEoNAnHjdxxyZ/logo.png differ diff --git a/blockchains/solana/assets/XsPLBFy59Q3hY59KLAJur8QyvziMF4xUxGTxXqXE7cT/info.json b/blockchains/solana/assets/XsPLBFy59Q3hY59KLAJur8QyvziMF4xUxGTxXqXE7cT/info.json new file mode 100644 index 0000000000000..17c790c09283f --- /dev/null +++ b/blockchains/solana/assets/XsPLBFy59Q3hY59KLAJur8QyvziMF4xUxGTxXqXE7cT/info.json @@ -0,0 +1,15 @@ +{ + "name": "Bit Digital xStock", + "type": "SPL", + "symbol": "BTBTx", + "decimals": 8, + "description": "Bit Digital xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://solscan.io/token/XsPLBFy59Q3hY59KLAJur8QyvziMF4xUxGTxXqXE7cT", + "status": "active", + "id": "XsPLBFy59Q3hY59KLAJur8QyvziMF4xUxGTxXqXE7cT", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsPLBFy59Q3hY59KLAJur8QyvziMF4xUxGTxXqXE7cT/logo.png b/blockchains/solana/assets/XsPLBFy59Q3hY59KLAJur8QyvziMF4xUxGTxXqXE7cT/logo.png new file mode 100644 index 0000000000000..30817f4fdb226 Binary files /dev/null and b/blockchains/solana/assets/XsPLBFy59Q3hY59KLAJur8QyvziMF4xUxGTxXqXE7cT/logo.png differ diff --git a/blockchains/solana/assets/XsPdAVBi8Zc1xvv53k4JcMrQaEDTgkGqKYeh7AYgPHV/info.json b/blockchains/solana/assets/XsPdAVBi8Zc1xvv53k4JcMrQaEDTgkGqKYeh7AYgPHV/info.json new file mode 100644 index 0000000000000..dd8c81f65120d --- /dev/null +++ b/blockchains/solana/assets/XsPdAVBi8Zc1xvv53k4JcMrQaEDTgkGqKYeh7AYgPHV/info.json @@ -0,0 +1,24 @@ +{ + "name": "AppLovin tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "AppLovin xStock (APPx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. APPx tracks the price of AppLovin Corporation (the underlying). APPx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of AppLovin Corporation, whilst maintaining the benefits of blockchain technology. AppLovin is a global mobile technology company that provides businesses with solutions to connect with their target audience, market, monetize, and grow their apps and content.", + "explorer": "https://solscan.io/token/XsPdAVBi8Zc1xvv53k4JcMrQaEDTgkGqKYeh7AYgPHV", + "type": "SPL", + "symbol": "APPX", + "decimals": 8, + "status": "active", + "id": "XsPdAVBi8Zc1xvv53k4JcMrQaEDTgkGqKYeh7AYgPHV", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/applovin-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsPdAVBi8Zc1xvv53k4JcMrQaEDTgkGqKYeh7AYgPHV/logo.png b/blockchains/solana/assets/XsPdAVBi8Zc1xvv53k4JcMrQaEDTgkGqKYeh7AYgPHV/logo.png new file mode 100644 index 0000000000000..29c2803eba26a Binary files /dev/null and b/blockchains/solana/assets/XsPdAVBi8Zc1xvv53k4JcMrQaEDTgkGqKYeh7AYgPHV/logo.png differ diff --git a/blockchains/solana/assets/XsRbLZthfABAPAfumWNEJhPyiKDW6TvDVeAeW7oKqA2/info.json b/blockchains/solana/assets/XsRbLZthfABAPAfumWNEJhPyiKDW6TvDVeAeW7oKqA2/info.json new file mode 100644 index 0000000000000..42d7fe941f9d1 --- /dev/null +++ b/blockchains/solana/assets/XsRbLZthfABAPAfumWNEJhPyiKDW6TvDVeAeW7oKqA2/info.json @@ -0,0 +1,24 @@ +{ + "name": "Honeywell tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Honeywell xStock (HONx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. HONx tracks the price of Honeywell International Inc. (the underlying). HONx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Honeywell International Inc., whilst maintaining the benefits of blockchain technology. Honeywell International Inc. is an American technology and manufacturing company that operates in four core areas: Aerospace, Building Automation, Industrial Automation, and Energy and Sustainability Solutions.", + "explorer": "https://solscan.io/token/XsRbLZthfABAPAfumWNEJhPyiKDW6TvDVeAeW7oKqA2", + "type": "SPL", + "symbol": "HONX", + "decimals": 8, + "status": "active", + "id": "XsRbLZthfABAPAfumWNEJhPyiKDW6TvDVeAeW7oKqA2", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/honeywell-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsRbLZthfABAPAfumWNEJhPyiKDW6TvDVeAeW7oKqA2/logo.png b/blockchains/solana/assets/XsRbLZthfABAPAfumWNEJhPyiKDW6TvDVeAeW7oKqA2/logo.png new file mode 100644 index 0000000000000..2757f36e52107 Binary files /dev/null and b/blockchains/solana/assets/XsRbLZthfABAPAfumWNEJhPyiKDW6TvDVeAeW7oKqA2/logo.png differ diff --git a/blockchains/solana/assets/XsSr8anD1hkvNMu8XQiVcmiaTP7XGvYu7Q58LdmtE8Z/info.json b/blockchains/solana/assets/XsSr8anD1hkvNMu8XQiVcmiaTP7XGvYu7Q58LdmtE8Z/info.json new file mode 100644 index 0000000000000..a9af099b82cc3 --- /dev/null +++ b/blockchains/solana/assets/XsSr8anD1hkvNMu8XQiVcmiaTP7XGvYu7Q58LdmtE8Z/info.json @@ -0,0 +1,24 @@ +{ + "name": "Linde tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Linde xStock (LINx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. LINx tracks the price of Linde plc (the underlying). LINx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Linde plc, whilst maintaining the benefits of blockchain technology. Key Benefits Linde is a global leader in industrial gases and engineering, offering a wide range of solutions, technologies, and services to various industries.", + "explorer": "https://solscan.io/token/XsSr8anD1hkvNMu8XQiVcmiaTP7XGvYu7Q58LdmtE8Z", + "type": "SPL", + "symbol": "LINX", + "decimals": 8, + "status": "active", + "id": "XsSr8anD1hkvNMu8XQiVcmiaTP7XGvYu7Q58LdmtE8Z", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/linde-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsSr8anD1hkvNMu8XQiVcmiaTP7XGvYu7Q58LdmtE8Z/logo.png b/blockchains/solana/assets/XsSr8anD1hkvNMu8XQiVcmiaTP7XGvYu7Q58LdmtE8Z/logo.png new file mode 100644 index 0000000000000..e9f3bc929d831 Binary files /dev/null and b/blockchains/solana/assets/XsSr8anD1hkvNMu8XQiVcmiaTP7XGvYu7Q58LdmtE8Z/logo.png differ diff --git a/blockchains/solana/assets/XsWAnFM77x6YvpdaZoos79R12o4Yj4r7EVkaTWddzhU/info.json b/blockchains/solana/assets/XsWAnFM77x6YvpdaZoos79R12o4Yj4r7EVkaTWddzhU/info.json new file mode 100644 index 0000000000000..ae69ec9d61d14 --- /dev/null +++ b/blockchains/solana/assets/XsWAnFM77x6YvpdaZoos79R12o4Yj4r7EVkaTWddzhU/info.json @@ -0,0 +1,15 @@ +{ + "name": "Schwab International Equity xStock", + "type": "SPL", + "symbol": "SCHFx", + "decimals": 8, + "description": "Schwab International Equity xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://solscan.io/token/XsWAnFM77x6YvpdaZoos79R12o4Yj4r7EVkaTWddzhU", + "status": "active", + "id": "XsWAnFM77x6YvpdaZoos79R12o4Yj4r7EVkaTWddzhU", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsWAnFM77x6YvpdaZoos79R12o4Yj4r7EVkaTWddzhU/logo.png b/blockchains/solana/assets/XsWAnFM77x6YvpdaZoos79R12o4Yj4r7EVkaTWddzhU/logo.png new file mode 100644 index 0000000000000..d55ca6edb40ba Binary files /dev/null and b/blockchains/solana/assets/XsWAnFM77x6YvpdaZoos79R12o4Yj4r7EVkaTWddzhU/logo.png differ diff --git a/blockchains/solana/assets/XsXcJ6GZ9kVnjqGsjBnktRcuwMBmvKWh8S93RefZ1rF/info.json b/blockchains/solana/assets/XsXcJ6GZ9kVnjqGsjBnktRcuwMBmvKWh8S93RefZ1rF/info.json new file mode 100644 index 0000000000000..7ea87bd8ae332 --- /dev/null +++ b/blockchains/solana/assets/XsXcJ6GZ9kVnjqGsjBnktRcuwMBmvKWh8S93RefZ1rF/info.json @@ -0,0 +1,15 @@ +{ + "name": "AMD xStock", + "type": "SPL", + "symbol": "AMDx", + "decimals": 8, + "description": "AMD xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://solscan.io/token/XsXcJ6GZ9kVnjqGsjBnktRcuwMBmvKWh8S93RefZ1rF", + "status": "active", + "id": "XsXcJ6GZ9kVnjqGsjBnktRcuwMBmvKWh8S93RefZ1rF", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsXcJ6GZ9kVnjqGsjBnktRcuwMBmvKWh8S93RefZ1rF/logo.png b/blockchains/solana/assets/XsXcJ6GZ9kVnjqGsjBnktRcuwMBmvKWh8S93RefZ1rF/logo.png new file mode 100644 index 0000000000000..4e802b8335682 Binary files /dev/null and b/blockchains/solana/assets/XsXcJ6GZ9kVnjqGsjBnktRcuwMBmvKWh8S93RefZ1rF/logo.png differ diff --git a/blockchains/solana/assets/XsYdjDjNUygZ7yGKfQaB6TxLh2gC6RRjzLtLAGJrhzV/info.json b/blockchains/solana/assets/XsYdjDjNUygZ7yGKfQaB6TxLh2gC6RRjzLtLAGJrhzV/info.json new file mode 100644 index 0000000000000..54945019454a0 --- /dev/null +++ b/blockchains/solana/assets/XsYdjDjNUygZ7yGKfQaB6TxLh2gC6RRjzLtLAGJrhzV/info.json @@ -0,0 +1,24 @@ +{ + "name": "Procter & Gamble tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Procter & Gamble xStock (PGx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. PGx tracks the price of The Procter & Gamble Company (the underlying). PGx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of The Procter & Gamble Company, whilst maintaining the benefits of blockchain technology. Procter & Gamble is a global consumer goods company, founded over 180 years ago. It's known for its vast portfolio of trusted brands and its commitment to innovation and ethical business practices.", + "explorer": "https://solscan.io/token/XsYdjDjNUygZ7yGKfQaB6TxLh2gC6RRjzLtLAGJrhzV", + "type": "SPL", + "symbol": "PGX", + "decimals": 8, + "status": "active", + "id": "XsYdjDjNUygZ7yGKfQaB6TxLh2gC6RRjzLtLAGJrhzV", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/procter-gamble-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsYdjDjNUygZ7yGKfQaB6TxLh2gC6RRjzLtLAGJrhzV/logo.png b/blockchains/solana/assets/XsYdjDjNUygZ7yGKfQaB6TxLh2gC6RRjzLtLAGJrhzV/logo.png new file mode 100644 index 0000000000000..e79aa1665329d Binary files /dev/null and b/blockchains/solana/assets/XsYdjDjNUygZ7yGKfQaB6TxLh2gC6RRjzLtLAGJrhzV/logo.png differ diff --git a/blockchains/solana/assets/Xsa62P5mvPszXL1krVUnU5ar38bBSVcWAB6fmPCo5Zu/info.json b/blockchains/solana/assets/Xsa62P5mvPszXL1krVUnU5ar38bBSVcWAB6fmPCo5Zu/info.json new file mode 100644 index 0000000000000..70a95ad559edf --- /dev/null +++ b/blockchains/solana/assets/Xsa62P5mvPszXL1krVUnU5ar38bBSVcWAB6fmPCo5Zu/info.json @@ -0,0 +1,24 @@ +{ + "name": "Meta tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Meta tokenized stock (xStock) (METAX) is a cryptocurrency and operates on the Solana platform. Meta tokenized stock (xStock) has a current supply of 1,000. The last known price of Meta tokenized stock (xStock) is 769.51285738 USD and is up 1.36 over the last 24 hours. It is currently trading on 26 active market(s) with $3,617,932.72 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/meta-xstock.", + "explorer": "https://solscan.io/token/Xsa62P5mvPszXL1krVUnU5ar38bBSVcWAB6fmPCo5Zu", + "type": "SPL", + "symbol": "METAX", + "decimals": 8, + "status": "active", + "id": "Xsa62P5mvPszXL1krVUnU5ar38bBSVcWAB6fmPCo5Zu", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/meta-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Xsa62P5mvPszXL1krVUnU5ar38bBSVcWAB6fmPCo5Zu/logo.png b/blockchains/solana/assets/Xsa62P5mvPszXL1krVUnU5ar38bBSVcWAB6fmPCo5Zu/logo.png new file mode 100644 index 0000000000000..bce8b3c7c676d Binary files /dev/null and b/blockchains/solana/assets/Xsa62P5mvPszXL1krVUnU5ar38bBSVcWAB6fmPCo5Zu/logo.png differ diff --git a/blockchains/solana/assets/XsaBXg8dU5cPM6ehmVctMkVqoiRG2ZjMo1cyBJ3AykQ/info.json b/blockchains/solana/assets/XsaBXg8dU5cPM6ehmVctMkVqoiRG2ZjMo1cyBJ3AykQ/info.json new file mode 100644 index 0000000000000..798b225503011 --- /dev/null +++ b/blockchains/solana/assets/XsaBXg8dU5cPM6ehmVctMkVqoiRG2ZjMo1cyBJ3AykQ/info.json @@ -0,0 +1,24 @@ +{ + "name": "Coca-Cola tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Coca-Cola xStock (KOx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. KOx tracks the price of The Coca-Cola Company (the underlying). KOx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of The Coca-Cola Company, whilst maintaining the benefits of blockchain technology. The Coca-Cola Company is a multinational corporation that primarily manufactures, sells, and markets non-alcoholic beverages.", + "explorer": "https://solscan.io/token/XsaBXg8dU5cPM6ehmVctMkVqoiRG2ZjMo1cyBJ3AykQ", + "type": "SPL", + "symbol": "KOX", + "decimals": 8, + "status": "active", + "id": "XsaBXg8dU5cPM6ehmVctMkVqoiRG2ZjMo1cyBJ3AykQ", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coca-cola-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsaBXg8dU5cPM6ehmVctMkVqoiRG2ZjMo1cyBJ3AykQ/logo.png b/blockchains/solana/assets/XsaBXg8dU5cPM6ehmVctMkVqoiRG2ZjMo1cyBJ3AykQ/logo.png new file mode 100644 index 0000000000000..448e726662b94 Binary files /dev/null and b/blockchains/solana/assets/XsaBXg8dU5cPM6ehmVctMkVqoiRG2ZjMo1cyBJ3AykQ/logo.png differ diff --git a/blockchains/solana/assets/XsaHND8sHyfMfsWPj6kSdd5VwvCayZvjYgKmmcNL5qh/info.json b/blockchains/solana/assets/XsaHND8sHyfMfsWPj6kSdd5VwvCayZvjYgKmmcNL5qh/info.json new file mode 100644 index 0000000000000..8244f6e1ebd49 --- /dev/null +++ b/blockchains/solana/assets/XsaHND8sHyfMfsWPj6kSdd5VwvCayZvjYgKmmcNL5qh/info.json @@ -0,0 +1,24 @@ +{ + "name": "Exxon Mobil tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Exxon Mobil xStock (XOMx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. XOMx tracks the price of Exxon Mobil Corporation (the underlying). XOMx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Exxon Mobil Corporation, whilst maintaining the benefits of blockchain technology. ExxonMobil is a multinational oil and gas corporation that operates in over 100 countries.", + "explorer": "https://solscan.io/token/XsaHND8sHyfMfsWPj6kSdd5VwvCayZvjYgKmmcNL5qh", + "type": "SPL", + "symbol": "XOMX", + "decimals": 8, + "status": "active", + "id": "XsaHND8sHyfMfsWPj6kSdd5VwvCayZvjYgKmmcNL5qh", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/exxon-mobil-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsaHND8sHyfMfsWPj6kSdd5VwvCayZvjYgKmmcNL5qh/logo.png b/blockchains/solana/assets/XsaHND8sHyfMfsWPj6kSdd5VwvCayZvjYgKmmcNL5qh/logo.png new file mode 100644 index 0000000000000..7051dcb4d3e90 Binary files /dev/null and b/blockchains/solana/assets/XsaHND8sHyfMfsWPj6kSdd5VwvCayZvjYgKmmcNL5qh/logo.png differ diff --git a/blockchains/solana/assets/XsaQGz41BEQkS9xAB44uvUtuXcdLJAXEU1dogEzWMZ8/info.json b/blockchains/solana/assets/XsaQGz41BEQkS9xAB44uvUtuXcdLJAXEU1dogEzWMZ8/info.json new file mode 100644 index 0000000000000..0b4685b5ab580 --- /dev/null +++ b/blockchains/solana/assets/XsaQGz41BEQkS9xAB44uvUtuXcdLJAXEU1dogEzWMZ8/info.json @@ -0,0 +1,15 @@ +{ + "name": "Strategy PP Fixed xStock", + "type": "SPL", + "symbol": "STRKx", + "decimals": 8, + "description": "Strategy PP Fixed xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://solscan.io/token/XsaQGz41BEQkS9xAB44uvUtuXcdLJAXEU1dogEzWMZ8", + "status": "active", + "id": "XsaQGz41BEQkS9xAB44uvUtuXcdLJAXEU1dogEzWMZ8", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsaQGz41BEQkS9xAB44uvUtuXcdLJAXEU1dogEzWMZ8/logo.png b/blockchains/solana/assets/XsaQGz41BEQkS9xAB44uvUtuXcdLJAXEU1dogEzWMZ8/logo.png new file mode 100644 index 0000000000000..1407faeca0e8c Binary files /dev/null and b/blockchains/solana/assets/XsaQGz41BEQkS9xAB44uvUtuXcdLJAXEU1dogEzWMZ8/logo.png differ diff --git a/blockchains/solana/assets/XsaQTCgebC2KPbf27KUhdv5JFvHhQ4GDAPURwrEhAzb/info.json b/blockchains/solana/assets/XsaQTCgebC2KPbf27KUhdv5JFvHhQ4GDAPURwrEhAzb/info.json new file mode 100644 index 0000000000000..6121b6c7a5930 --- /dev/null +++ b/blockchains/solana/assets/XsaQTCgebC2KPbf27KUhdv5JFvHhQ4GDAPURwrEhAzb/info.json @@ -0,0 +1,24 @@ +{ + "name": "Amber tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Amber tokenized stock (xStock) (AMBRX) is a cryptocurrency and operates on the Solana platform. Amber tokenized stock (xStock) has a current supply of 135,999.99999997. The last known price of Amber tokenized stock (xStock) is 4.19760101 USD and is up 0.88 over the last 24 hours. It is currently trading on 1 active market(s) with $0.00 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/amber-xstock.", + "explorer": "https://solscan.io/token/XsaQTCgebC2KPbf27KUhdv5JFvHhQ4GDAPURwrEhAzb", + "type": "SPL", + "symbol": "AMBRX", + "decimals": 8, + "status": "active", + "id": "XsaQTCgebC2KPbf27KUhdv5JFvHhQ4GDAPURwrEhAzb", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/amber-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsaQTCgebC2KPbf27KUhdv5JFvHhQ4GDAPURwrEhAzb/logo.png b/blockchains/solana/assets/XsaQTCgebC2KPbf27KUhdv5JFvHhQ4GDAPURwrEhAzb/logo.png new file mode 100644 index 0000000000000..e555fa9be0612 Binary files /dev/null and b/blockchains/solana/assets/XsaQTCgebC2KPbf27KUhdv5JFvHhQ4GDAPURwrEhAzb/logo.png differ diff --git a/blockchains/solana/assets/XsbELVbLGBkn7xfMfyYuUipKGt1iRUc2B7pYRvFTFu3/info.json b/blockchains/solana/assets/XsbELVbLGBkn7xfMfyYuUipKGt1iRUc2B7pYRvFTFu3/info.json new file mode 100644 index 0000000000000..5340f27be20e0 --- /dev/null +++ b/blockchains/solana/assets/XsbELVbLGBkn7xfMfyYuUipKGt1iRUc2B7pYRvFTFu3/info.json @@ -0,0 +1,15 @@ +{ + "name": "Russell 2000 xStock", + "type": "SPL", + "symbol": "IWMx", + "decimals": 8, + "description": "Russell 2000 xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://solscan.io/token/XsbELVbLGBkn7xfMfyYuUipKGt1iRUc2B7pYRvFTFu3", + "status": "active", + "id": "XsbELVbLGBkn7xfMfyYuUipKGt1iRUc2B7pYRvFTFu3", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsbELVbLGBkn7xfMfyYuUipKGt1iRUc2B7pYRvFTFu3/logo.png b/blockchains/solana/assets/XsbELVbLGBkn7xfMfyYuUipKGt1iRUc2B7pYRvFTFu3/logo.png new file mode 100644 index 0000000000000..857fe69020c3c Binary files /dev/null and b/blockchains/solana/assets/XsbELVbLGBkn7xfMfyYuUipKGt1iRUc2B7pYRvFTFu3/logo.png differ diff --git a/blockchains/solana/assets/XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp/info.json b/blockchains/solana/assets/XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp/info.json new file mode 100644 index 0000000000000..69ee376218cba --- /dev/null +++ b/blockchains/solana/assets/XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp/info.json @@ -0,0 +1,24 @@ +{ + "name": "Apple tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Apple tokenized stock (xStock) (AAPLX) is a cryptocurrency and operates on the Arbitrum platform. Apple tokenized stock (xStock) has a current supply of 18,998.50133677 with 8,999.30716257 in circulation. The last known price of Apple tokenized stock (xStock) is 236.69155907 USD and is down -0.06 over the last 24 hours. It is currently trading on 39 active market(s) with $6,049,996.18 traded over the last 24 hours. More information can be found at https://xstocks.fi/.", + "explorer": "https://solscan.io/token/XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp", + "type": "SPL", + "symbol": "AAPLX", + "decimals": 8, + "status": "active", + "id": "XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/apple-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp/logo.png b/blockchains/solana/assets/XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp/logo.png new file mode 100644 index 0000000000000..2af9425e91160 Binary files /dev/null and b/blockchains/solana/assets/XsbEhLAtcf6HdfpFZ5xEMdqW8nfAvcsP5bdudRLJzJp/logo.png differ diff --git a/blockchains/solana/assets/Xsba6tUnSjDae2VcopDB6FGGDaxRrewFCDa5hKn5vT3/info.json b/blockchains/solana/assets/Xsba6tUnSjDae2VcopDB6FGGDaxRrewFCDa5hKn5vT3/info.json new file mode 100644 index 0000000000000..0d54edc62b95b --- /dev/null +++ b/blockchains/solana/assets/Xsba6tUnSjDae2VcopDB6FGGDaxRrewFCDa5hKn5vT3/info.json @@ -0,0 +1,24 @@ +{ + "name": "Philip Morris tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Phillip Morris xStock (PMx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. PMx tracks the price of Philip Morris International Inc. (the underlying). PMx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Philip Morris International Inc., whilst maintaining the benefits of blockchain technology. Phillip Morris is an American multinational tobacco company, with products sold in over 180 countries.", + "explorer": "https://solscan.io/token/Xsba6tUnSjDae2VcopDB6FGGDaxRrewFCDa5hKn5vT3", + "type": "SPL", + "symbol": "PMX", + "decimals": 8, + "status": "active", + "id": "Xsba6tUnSjDae2VcopDB6FGGDaxRrewFCDa5hKn5vT3", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/philip-morris-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Xsba6tUnSjDae2VcopDB6FGGDaxRrewFCDa5hKn5vT3/logo.png b/blockchains/solana/assets/Xsba6tUnSjDae2VcopDB6FGGDaxRrewFCDa5hKn5vT3/logo.png new file mode 100644 index 0000000000000..af7129b1cec83 Binary files /dev/null and b/blockchains/solana/assets/Xsba6tUnSjDae2VcopDB6FGGDaxRrewFCDa5hKn5vT3/logo.png differ diff --git a/blockchains/solana/assets/Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh/info.json b/blockchains/solana/assets/Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh/info.json new file mode 100644 index 0000000000000..144fc55fed35b --- /dev/null +++ b/blockchains/solana/assets/Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh/info.json @@ -0,0 +1,24 @@ +{ + "name": "NVIDIA tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "NVIDIA tokenized stock (xStock) (NVDAX) is a cryptocurrency and operates on the Solana platform. NVIDIA tokenized stock (xStock) has a current supply of 48,653.72471846 with 7,655.63423039 in circulation. The last known price of NVIDIA tokenized stock (xStock) is 177.44432253 USD and is up 1.21 over the last 24 hours. It is currently trading on 44 active market(s) with $7,676,418.12 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/nvidia-xstock.", + "explorer": "https://solscan.io/token/Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh", + "type": "SPL", + "symbol": "NVDAX", + "decimals": 8, + "status": "active", + "id": "Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nvidia-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh/logo.png b/blockchains/solana/assets/Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh/logo.png new file mode 100644 index 0000000000000..b79453063db00 Binary files /dev/null and b/blockchains/solana/assets/Xsc9qvGR1efVDFGLrVsmkzv3qi45LTBjeUKSPmx9qEh/logo.png differ diff --git a/blockchains/solana/assets/XscE4GUcsYhcyZu5ATiGUMmhxYa1D5fwbpJw4K6K4dp/info.json b/blockchains/solana/assets/XscE4GUcsYhcyZu5ATiGUMmhxYa1D5fwbpJw4K6K4dp/info.json new file mode 100644 index 0000000000000..ae60c6aa0ea2f --- /dev/null +++ b/blockchains/solana/assets/XscE4GUcsYhcyZu5ATiGUMmhxYa1D5fwbpJw4K6K4dp/info.json @@ -0,0 +1,15 @@ +{ + "name": "TON xStock", + "type": "SPL", + "symbol": "TONXx", + "decimals": 8, + "description": "TON xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://solscan.io/token/XscE4GUcsYhcyZu5ATiGUMmhxYa1D5fwbpJw4K6K4dp", + "status": "active", + "id": "XscE4GUcsYhcyZu5ATiGUMmhxYa1D5fwbpJw4K6K4dp", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XscE4GUcsYhcyZu5ATiGUMmhxYa1D5fwbpJw4K6K4dp/logo.png b/blockchains/solana/assets/XscE4GUcsYhcyZu5ATiGUMmhxYa1D5fwbpJw4K6K4dp/logo.png new file mode 100644 index 0000000000000..0c6d1b728e68f Binary files /dev/null and b/blockchains/solana/assets/XscE4GUcsYhcyZu5ATiGUMmhxYa1D5fwbpJw4K6K4dp/logo.png differ diff --git a/blockchains/solana/assets/XsczbcQ3zfcgAEt9qHQES8pxKAVG5rujPSHQEXi4kaN/info.json b/blockchains/solana/assets/XsczbcQ3zfcgAEt9qHQES8pxKAVG5rujPSHQEXi4kaN/info.json new file mode 100644 index 0000000000000..ace007278a2d4 --- /dev/null +++ b/blockchains/solana/assets/XsczbcQ3zfcgAEt9qHQES8pxKAVG5rujPSHQEXi4kaN/info.json @@ -0,0 +1,24 @@ +{ + "name": "Salesforce tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Salesforce xStock (CRMx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. CRMx tracks the price of Salesforce, Inc. (the underlying). CRMx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Salesforce, Inc., whilst maintaining the benefits of blockchain technology. Key Benefits Salesforce is a technology company that pioneered cloud-based customer relationship management (CRM) and now offers a broad suite of AI-powered platforms for various business functions, including sales, service, marketing, and commerce.", + "explorer": "https://solscan.io/token/XsczbcQ3zfcgAEt9qHQES8pxKAVG5rujPSHQEXi4kaN", + "type": "SPL", + "symbol": "CRMX", + "decimals": 8, + "status": "active", + "id": "XsczbcQ3zfcgAEt9qHQES8pxKAVG5rujPSHQEXi4kaN", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/salesforce-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsczbcQ3zfcgAEt9qHQES8pxKAVG5rujPSHQEXi4kaN/logo.png b/blockchains/solana/assets/XsczbcQ3zfcgAEt9qHQES8pxKAVG5rujPSHQEXi4kaN/logo.png new file mode 100644 index 0000000000000..058611507c29f Binary files /dev/null and b/blockchains/solana/assets/XsczbcQ3zfcgAEt9qHQES8pxKAVG5rujPSHQEXi4kaN/logo.png differ diff --git a/blockchains/solana/assets/Xseo8tgCZfkHxWS9xbFYeKFyMSbWEvZGFV1Gh53GtCV/info.json b/blockchains/solana/assets/Xseo8tgCZfkHxWS9xbFYeKFyMSbWEvZGFV1Gh53GtCV/info.json new file mode 100644 index 0000000000000..a9d955169b1ab --- /dev/null +++ b/blockchains/solana/assets/Xseo8tgCZfkHxWS9xbFYeKFyMSbWEvZGFV1Gh53GtCV/info.json @@ -0,0 +1,24 @@ +{ + "name": "Danaher tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Danaher xStock (DHRx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. DHRx tracks the price of Danaher Corporation (the underlying). DHRx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Danaher Corporation, whilst maintaining the benefits of blockchain technology. Danaher Corporation is a global science and technology innovator operating in biotechnology, life sciences, and diagnostics. It focuses on accelerating the power of science and technology to improve human health.", + "explorer": "https://solscan.io/token/Xseo8tgCZfkHxWS9xbFYeKFyMSbWEvZGFV1Gh53GtCV", + "type": "SPL", + "symbol": "DHRX", + "decimals": 8, + "status": "active", + "id": "Xseo8tgCZfkHxWS9xbFYeKFyMSbWEvZGFV1Gh53GtCV", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/danaher-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Xseo8tgCZfkHxWS9xbFYeKFyMSbWEvZGFV1Gh53GtCV/logo.png b/blockchains/solana/assets/Xseo8tgCZfkHxWS9xbFYeKFyMSbWEvZGFV1Gh53GtCV/logo.png new file mode 100644 index 0000000000000..3b7a5c57e6b9e Binary files /dev/null and b/blockchains/solana/assets/Xseo8tgCZfkHxWS9xbFYeKFyMSbWEvZGFV1Gh53GtCV/logo.png differ diff --git a/blockchains/solana/assets/Xsf9mBktVB9BSU5kf4nHxPq5hCBJ2j2ui3ecFGxPRGc/info.json b/blockchains/solana/assets/Xsf9mBktVB9BSU5kf4nHxPq5hCBJ2j2ui3ecFGxPRGc/info.json new file mode 100644 index 0000000000000..78a1481f81e68 --- /dev/null +++ b/blockchains/solana/assets/Xsf9mBktVB9BSU5kf4nHxPq5hCBJ2j2ui3ecFGxPRGc/info.json @@ -0,0 +1,24 @@ +{ + "name": "Gamestop tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Gamestop tokenized stock (xStock) (GMEX) is a cryptocurrency and operates on the Solana platform. Gamestop tokenized stock (xStock) has a current supply of 23,600 with 6,000 in circulation. The last known price of Gamestop tokenized stock (xStock) is 27.48685055 USD and is up 0.00 over the last 24 hours. More information can be found at https://assets.backed.fi/products/gamestop-xstock.", + "explorer": "https://solscan.io/token/Xsf9mBktVB9BSU5kf4nHxPq5hCBJ2j2ui3ecFGxPRGc", + "type": "SPL", + "symbol": "GMEX", + "decimals": 8, + "status": "active", + "id": "Xsf9mBktVB9BSU5kf4nHxPq5hCBJ2j2ui3ecFGxPRGc", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gamestop-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Xsf9mBktVB9BSU5kf4nHxPq5hCBJ2j2ui3ecFGxPRGc/logo.png b/blockchains/solana/assets/Xsf9mBktVB9BSU5kf4nHxPq5hCBJ2j2ui3ecFGxPRGc/logo.png new file mode 100644 index 0000000000000..a0ca86f1f3793 Binary files /dev/null and b/blockchains/solana/assets/Xsf9mBktVB9BSU5kf4nHxPq5hCBJ2j2ui3ecFGxPRGc/logo.png differ diff --git a/blockchains/solana/assets/XsfAzPzYrYjd4Dpa9BU3cusBsvWfVB9gBcyGC87S57n/info.json b/blockchains/solana/assets/XsfAzPzYrYjd4Dpa9BU3cusBsvWfVB9gBcyGC87S57n/info.json new file mode 100644 index 0000000000000..d38149da04754 --- /dev/null +++ b/blockchains/solana/assets/XsfAzPzYrYjd4Dpa9BU3cusBsvWfVB9gBcyGC87S57n/info.json @@ -0,0 +1,24 @@ +{ + "name": "Novo Nordisk tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Novo Nordisk xStock (NVOx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. NVOx tracks the price of Novo Nordisk A/S, (the underlying). NVOx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Novo Nordisk A/S, whilst maintaining the benefits of blockchain technology. Novo Nordisk is a leading global healthcare company, founded in 1923 and headquartered in Denmark.", + "explorer": "https://solscan.io/token/XsfAzPzYrYjd4Dpa9BU3cusBsvWfVB9gBcyGC87S57n", + "type": "SPL", + "symbol": "NVOX", + "decimals": 8, + "status": "active", + "id": "XsfAzPzYrYjd4Dpa9BU3cusBsvWfVB9gBcyGC87S57n", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/novo-nordisk-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsfAzPzYrYjd4Dpa9BU3cusBsvWfVB9gBcyGC87S57n/logo.png b/blockchains/solana/assets/XsfAzPzYrYjd4Dpa9BU3cusBsvWfVB9gBcyGC87S57n/logo.png new file mode 100644 index 0000000000000..c866fd6193ce8 Binary files /dev/null and b/blockchains/solana/assets/XsfAzPzYrYjd4Dpa9BU3cusBsvWfVB9gBcyGC87S57n/logo.png differ diff --git a/blockchains/solana/assets/XsgSaSvNSqLTtFuyWPBhK9196Xb9Bbdyjj4fH3cPJGo/info.json b/blockchains/solana/assets/XsgSaSvNSqLTtFuyWPBhK9196Xb9Bbdyjj4fH3cPJGo/info.json new file mode 100644 index 0000000000000..31740392a5bef --- /dev/null +++ b/blockchains/solana/assets/XsgSaSvNSqLTtFuyWPBhK9196Xb9Bbdyjj4fH3cPJGo/info.json @@ -0,0 +1,24 @@ +{ + "name": "Broadcom tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Broadcom xStock (AVGOx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. AVGOx tracks the price of Broadcom Inc. (the underlying). AVGOx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Broadcom Inc., whilst maintaining the benefits of blockchain technology. Key Benefits Broadcom Inc. is a global technology company that designs, develops, and supplies semiconductors and infrastructure software solutions, operating through two segments: Semiconductor Solutions and Infrastructure Software.", + "explorer": "https://solscan.io/token/XsgSaSvNSqLTtFuyWPBhK9196Xb9Bbdyjj4fH3cPJGo", + "type": "SPL", + "symbol": "AVGOX", + "decimals": 8, + "status": "active", + "id": "XsgSaSvNSqLTtFuyWPBhK9196Xb9Bbdyjj4fH3cPJGo", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/broadcom-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsgSaSvNSqLTtFuyWPBhK9196Xb9Bbdyjj4fH3cPJGo/logo.png b/blockchains/solana/assets/XsgSaSvNSqLTtFuyWPBhK9196Xb9Bbdyjj4fH3cPJGo/logo.png new file mode 100644 index 0000000000000..e437be046bd77 Binary files /dev/null and b/blockchains/solana/assets/XsgSaSvNSqLTtFuyWPBhK9196Xb9Bbdyjj4fH3cPJGo/logo.png differ diff --git a/blockchains/solana/assets/XsgaUyp4jd1fNBCxgtTKkW64xnnhQcvgaxzsbAq5ZD1/info.json b/blockchains/solana/assets/XsgaUyp4jd1fNBCxgtTKkW64xnnhQcvgaxzsbAq5ZD1/info.json new file mode 100644 index 0000000000000..45d87b20785c3 --- /dev/null +++ b/blockchains/solana/assets/XsgaUyp4jd1fNBCxgtTKkW64xnnhQcvgaxzsbAq5ZD1/info.json @@ -0,0 +1,24 @@ +{ + "name": "Goldman Sachs tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Goldman Sachs xStock (GSx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. GSx tracks the price of The Goldman Sachs Group, Inc. (the underlying). GSx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of The Goldman Sachs Group, Inc., whilst maintaining the benefits of blockchain technology. Goldman Sachs is a leading global investment bank and wealth management firm. It provides a wide range of financial services to a diverse client base, including corporations, financial institutions, governments, and individuals.", + "explorer": "https://solscan.io/token/XsgaUyp4jd1fNBCxgtTKkW64xnnhQcvgaxzsbAq5ZD1", + "type": "SPL", + "symbol": "GSX", + "decimals": 8, + "status": "active", + "id": "XsgaUyp4jd1fNBCxgtTKkW64xnnhQcvgaxzsbAq5ZD1", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/goldman-sachs-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsgaUyp4jd1fNBCxgtTKkW64xnnhQcvgaxzsbAq5ZD1/logo.png b/blockchains/solana/assets/XsgaUyp4jd1fNBCxgtTKkW64xnnhQcvgaxzsbAq5ZD1/logo.png new file mode 100644 index 0000000000000..80b9ebb613a34 Binary files /dev/null and b/blockchains/solana/assets/XsgaUyp4jd1fNBCxgtTKkW64xnnhQcvgaxzsbAq5ZD1/logo.png differ diff --git a/blockchains/solana/assets/XshPgPdXFRWB8tP1j82rebb2Q9rPgGX37RuqzohmArM/info.json b/blockchains/solana/assets/XshPgPdXFRWB8tP1j82rebb2Q9rPgGX37RuqzohmArM/info.json new file mode 100644 index 0000000000000..5f0c942e622a3 --- /dev/null +++ b/blockchains/solana/assets/XshPgPdXFRWB8tP1j82rebb2Q9rPgGX37RuqzohmArM/info.json @@ -0,0 +1,24 @@ +{ + "name": "Intel tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Intel xStock (INTCx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. INTCx tracks the price of Intel Corporation (the underlying). INTCx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Intel Corporation, whilst maintaining the benefits of blockchain technology. Intel Corporation is a multinational technology company primarily focused on designing, manufacturing, and selling computer components like CPUs and related products.", + "explorer": "https://solscan.io/token/XshPgPdXFRWB8tP1j82rebb2Q9rPgGX37RuqzohmArM", + "type": "SPL", + "symbol": "INTCX", + "decimals": 8, + "status": "active", + "id": "XshPgPdXFRWB8tP1j82rebb2Q9rPgGX37RuqzohmArM", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/intel-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XshPgPdXFRWB8tP1j82rebb2Q9rPgGX37RuqzohmArM/logo.png b/blockchains/solana/assets/XshPgPdXFRWB8tP1j82rebb2Q9rPgGX37RuqzohmArM/logo.png new file mode 100644 index 0000000000000..c1902f7a0f2ba Binary files /dev/null and b/blockchains/solana/assets/XshPgPdXFRWB8tP1j82rebb2Q9rPgGX37RuqzohmArM/logo.png differ diff --git a/blockchains/solana/assets/XsjFwUPiLofddX5cWFHW35GCbXcSu1BCUGfxoQAQjeL/info.json b/blockchains/solana/assets/XsjFwUPiLofddX5cWFHW35GCbXcSu1BCUGfxoQAQjeL/info.json new file mode 100644 index 0000000000000..74a3bf31bafa8 --- /dev/null +++ b/blockchains/solana/assets/XsjFwUPiLofddX5cWFHW35GCbXcSu1BCUGfxoQAQjeL/info.json @@ -0,0 +1,24 @@ +{ + "name": "Oracle tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Oracle xStock (ORCLx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. ORCLx tracks the price of Oracle Corporation (the underlying). ORCLx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Oracle Corporation, whilst maintaining the benefits of blockchain technology. Oracle Corporation is a large, publicly-held multinational company headquartered in Austin, Texas, offering enterprise applications and cloud infrastructure.", + "explorer": "https://solscan.io/token/XsjFwUPiLofddX5cWFHW35GCbXcSu1BCUGfxoQAQjeL", + "type": "SPL", + "symbol": "ORCLX", + "decimals": 8, + "status": "active", + "id": "XsjFwUPiLofddX5cWFHW35GCbXcSu1BCUGfxoQAQjeL", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/oracle-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsjFwUPiLofddX5cWFHW35GCbXcSu1BCUGfxoQAQjeL/logo.png b/blockchains/solana/assets/XsjFwUPiLofddX5cWFHW35GCbXcSu1BCUGfxoQAQjeL/logo.png new file mode 100644 index 0000000000000..8179bd1129e15 Binary files /dev/null and b/blockchains/solana/assets/XsjFwUPiLofddX5cWFHW35GCbXcSu1BCUGfxoQAQjeL/logo.png differ diff --git a/blockchains/solana/assets/XsjQP3iMAaQ3kQScQKthQpx9ALRbjKAjQtHg6TFomoc/info.json b/blockchains/solana/assets/XsjQP3iMAaQ3kQScQKthQpx9ALRbjKAjQtHg6TFomoc/info.json new file mode 100644 index 0000000000000..824c8486eb5b8 --- /dev/null +++ b/blockchains/solana/assets/XsjQP3iMAaQ3kQScQKthQpx9ALRbjKAjQtHg6TFomoc/info.json @@ -0,0 +1,24 @@ +{ + "name": "TQQQ tokenized ETF (xStock)", + "website": "https://assets.backed.fi/products", + "description": "TQQQ xStock (TQQQx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. TQQQx tracks the price of ProShares UltraPro QQQ (the underlying). TQQQx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the ETF price of ProShares UltraPro QQQ, whilst maintaining the benefits of blockchain technology. ProShares UltraPro QQQ (TQQQ) is a leveraged exchange-traded fund designed to deliver three times the daily performance of the Nasdaq-100 Index.", + "explorer": "https://solscan.io/token/XsjQP3iMAaQ3kQScQKthQpx9ALRbjKAjQtHg6TFomoc", + "type": "SPL", + "symbol": "TQQQX", + "decimals": 8, + "status": "active", + "id": "XsjQP3iMAaQ3kQScQKthQpx9ALRbjKAjQtHg6TFomoc", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tqqq-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsjQP3iMAaQ3kQScQKthQpx9ALRbjKAjQtHg6TFomoc/logo.png b/blockchains/solana/assets/XsjQP3iMAaQ3kQScQKthQpx9ALRbjKAjQtHg6TFomoc/logo.png new file mode 100644 index 0000000000000..38cc90156e20e Binary files /dev/null and b/blockchains/solana/assets/XsjQP3iMAaQ3kQScQKthQpx9ALRbjKAjQtHg6TFomoc/logo.png differ diff --git a/blockchains/solana/assets/XsnQnU7AdbRZYe2akqqpibDdXjkieGFfSkbkjX1Sd1X/info.json b/blockchains/solana/assets/XsnQnU7AdbRZYe2akqqpibDdXjkieGFfSkbkjX1Sd1X/info.json new file mode 100644 index 0000000000000..a361164d906d2 --- /dev/null +++ b/blockchains/solana/assets/XsnQnU7AdbRZYe2akqqpibDdXjkieGFfSkbkjX1Sd1X/info.json @@ -0,0 +1,24 @@ +{ + "name": "Merck tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Merck xStock (MRKx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. MRKx tracks the price of Merck & Co., Inc. (the underlying). MRKx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Merck & Co., Inc., whilst maintaining the benefits of blockchain technology. Merck, is a global biopharmaceutical company focused on developing and delivering innovative health solutions.", + "explorer": "https://solscan.io/token/XsnQnU7AdbRZYe2akqqpibDdXjkieGFfSkbkjX1Sd1X", + "type": "SPL", + "symbol": "MRKX", + "decimals": 8, + "status": "active", + "id": "XsnQnU7AdbRZYe2akqqpibDdXjkieGFfSkbkjX1Sd1X", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/merck-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsnQnU7AdbRZYe2akqqpibDdXjkieGFfSkbkjX1Sd1X/logo.png b/blockchains/solana/assets/XsnQnU7AdbRZYe2akqqpibDdXjkieGFfSkbkjX1Sd1X/logo.png new file mode 100644 index 0000000000000..8522e440e6053 Binary files /dev/null and b/blockchains/solana/assets/XsnQnU7AdbRZYe2akqqpibDdXjkieGFfSkbkjX1Sd1X/logo.png differ diff --git a/blockchains/solana/assets/Xsnuv4omNoHozR6EEW5mXkw8Nrny5rB3jVfLqi6gKMH/info.json b/blockchains/solana/assets/Xsnuv4omNoHozR6EEW5mXkw8Nrny5rB3jVfLqi6gKMH/info.json new file mode 100644 index 0000000000000..af5825c028bc2 --- /dev/null +++ b/blockchains/solana/assets/Xsnuv4omNoHozR6EEW5mXkw8Nrny5rB3jVfLqi6gKMH/info.json @@ -0,0 +1,24 @@ +{ + "name": "Eli Lilly tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Eli Lilly xStock (LLYx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. LLYx tracks the price of Eli Lilly and Company (the underlying). LLYx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Eli Lilly and Company, whilst maintaining the benefits of blockchain technology. Eli Lilly and Company is a global pharmaceutical company based in Indianapolis, Indiana, that discovers, develops, manufactures, and markets human healthcare products.", + "explorer": "https://solscan.io/token/Xsnuv4omNoHozR6EEW5mXkw8Nrny5rB3jVfLqi6gKMH", + "type": "SPL", + "symbol": "LLYX", + "decimals": 8, + "status": "active", + "id": "Xsnuv4omNoHozR6EEW5mXkw8Nrny5rB3jVfLqi6gKMH", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/eli-lilly-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Xsnuv4omNoHozR6EEW5mXkw8Nrny5rB3jVfLqi6gKMH/logo.png b/blockchains/solana/assets/Xsnuv4omNoHozR6EEW5mXkw8Nrny5rB3jVfLqi6gKMH/logo.png new file mode 100644 index 0000000000000..59de8858e0884 Binary files /dev/null and b/blockchains/solana/assets/Xsnuv4omNoHozR6EEW5mXkw8Nrny5rB3jVfLqi6gKMH/logo.png differ diff --git a/blockchains/solana/assets/XsoBhf2ufR8fTyNSjqfU71DYGaE6Z3SUGAidpzriAA4/info.json b/blockchains/solana/assets/XsoBhf2ufR8fTyNSjqfU71DYGaE6Z3SUGAidpzriAA4/info.json new file mode 100644 index 0000000000000..7f9bd8174d74b --- /dev/null +++ b/blockchains/solana/assets/XsoBhf2ufR8fTyNSjqfU71DYGaE6Z3SUGAidpzriAA4/info.json @@ -0,0 +1,24 @@ +{ + "name": "Palantir tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Oracle xStock (ORCLx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. ORCLx tracks the price of Oracle Corporation (the underlying). ORCLx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Oracle Corporation, whilst maintaining the benefits of blockchain technology. Oracle Corporation is a large, publicly-held multinational company headquartered in Austin, Texas, offering enterprise applications and cloud infrastructure.", + "explorer": "https://solscan.io/token/XsoBhf2ufR8fTyNSjqfU71DYGaE6Z3SUGAidpzriAA4", + "type": "SPL", + "symbol": "PLTRX", + "decimals": 8, + "status": "active", + "id": "XsoBhf2ufR8fTyNSjqfU71DYGaE6Z3SUGAidpzriAA4", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/palantir-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsoBhf2ufR8fTyNSjqfU71DYGaE6Z3SUGAidpzriAA4/logo.png b/blockchains/solana/assets/XsoBhf2ufR8fTyNSjqfU71DYGaE6Z3SUGAidpzriAA4/logo.png new file mode 100644 index 0000000000000..da0a1030f73b4 Binary files /dev/null and b/blockchains/solana/assets/XsoBhf2ufR8fTyNSjqfU71DYGaE6Z3SUGAidpzriAA4/logo.png differ diff --git a/blockchains/solana/assets/XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W/info.json b/blockchains/solana/assets/XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W/info.json new file mode 100644 index 0000000000000..a3b98e6ba9dbb --- /dev/null +++ b/blockchains/solana/assets/XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W/info.json @@ -0,0 +1,24 @@ +{ + "name": "SP500 tokenized ETF (xStock)", + "website": "https://assets.backed.fi/products", + "description": "SP500 tokenized ETF (xStock) (SPYX) is a cryptocurrency and operates on the Solana platform. SP500 tokenized ETF (xStock) has a current supply of 15,999.19889527. The last known price of SP500 tokenized ETF (xStock) is 662.57535897 USD and is up 0.48 over the last 24 hours. It is currently trading on 29 active market(s) with $2,070,018.72 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/sp500-xstock.", + "explorer": "https://solscan.io/token/XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W", + "type": "SPL", + "symbol": "SPYX", + "decimals": 8, + "status": "active", + "id": "XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sp500-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W/logo.png b/blockchains/solana/assets/XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W/logo.png new file mode 100644 index 0000000000000..c4ee269a58492 Binary files /dev/null and b/blockchains/solana/assets/XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W/logo.png differ diff --git a/blockchains/solana/assets/XspwhyYPdWVM8XBHZnpS9hgyag9MKjLRyE3tVfmCbSr/info.json b/blockchains/solana/assets/XspwhyYPdWVM8XBHZnpS9hgyag9MKjLRyE3tVfmCbSr/info.json new file mode 100644 index 0000000000000..cbd72cb266d27 --- /dev/null +++ b/blockchains/solana/assets/XspwhyYPdWVM8XBHZnpS9hgyag9MKjLRyE3tVfmCbSr/info.json @@ -0,0 +1,24 @@ +{ + "name": "International Business Machines tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "International Business Machines xStock (IBMx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. IBMx tracks the price of International Business Machines Corporation (the underlying). IBMx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of International Business Machines Corporation, whilst maintaining the benefits of blockchain technology. International Business Machines Corporation is an American multinational technology corporation headquartered in Armonk, New York.", + "explorer": "https://solscan.io/token/XspwhyYPdWVM8XBHZnpS9hgyag9MKjLRyE3tVfmCbSr", + "type": "SPL", + "symbol": "IBMX", + "decimals": 8, + "status": "active", + "id": "XspwhyYPdWVM8XBHZnpS9hgyag9MKjLRyE3tVfmCbSr", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/international-business-machines-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XspwhyYPdWVM8XBHZnpS9hgyag9MKjLRyE3tVfmCbSr/logo.png b/blockchains/solana/assets/XspwhyYPdWVM8XBHZnpS9hgyag9MKjLRyE3tVfmCbSr/logo.png new file mode 100644 index 0000000000000..c4974d79ee7a7 Binary files /dev/null and b/blockchains/solana/assets/XspwhyYPdWVM8XBHZnpS9hgyag9MKjLRyE3tVfmCbSr/logo.png differ diff --git a/blockchains/solana/assets/XspzcW1PRtgf6Wj92HCiZdjzKCyFekVD8P5Ueh3dRMX/info.json b/blockchains/solana/assets/XspzcW1PRtgf6Wj92HCiZdjzKCyFekVD8P5Ueh3dRMX/info.json new file mode 100644 index 0000000000000..d2dc1bd466831 --- /dev/null +++ b/blockchains/solana/assets/XspzcW1PRtgf6Wj92HCiZdjzKCyFekVD8P5Ueh3dRMX/info.json @@ -0,0 +1,24 @@ +{ + "name": "Microsoft tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Microsoft xStock (MSFTx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. MSFTx tracks the price of Microsoft Corporation (the underlying). MSFTx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Microsoft Corporation, whilst maintaining the benefits of blockchain technology. Key Benefits Microsoft is the world's largest vendor of computer software and a leading provider of cloud computing services, video games, computer and gaming hardware, search, and other online services.", + "explorer": "https://solscan.io/token/XspzcW1PRtgf6Wj92HCiZdjzKCyFekVD8P5Ueh3dRMX", + "type": "SPL", + "symbol": "MSFTX", + "decimals": 8, + "status": "active", + "id": "XspzcW1PRtgf6Wj92HCiZdjzKCyFekVD8P5Ueh3dRMX", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/microsoft-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XspzcW1PRtgf6Wj92HCiZdjzKCyFekVD8P5Ueh3dRMX/logo.png b/blockchains/solana/assets/XspzcW1PRtgf6Wj92HCiZdjzKCyFekVD8P5Ueh3dRMX/logo.png new file mode 100644 index 0000000000000..409e4ececae65 Binary files /dev/null and b/blockchains/solana/assets/XspzcW1PRtgf6Wj92HCiZdjzKCyFekVD8P5Ueh3dRMX/logo.png differ diff --git a/blockchains/solana/assets/XsqBC5tcVQLYt8wqGCHRnAUUecbRYXoJCReD6w7QEKp/info.json b/blockchains/solana/assets/XsqBC5tcVQLYt8wqGCHRnAUUecbRYXoJCReD6w7QEKp/info.json new file mode 100644 index 0000000000000..60f765fe08afd --- /dev/null +++ b/blockchains/solana/assets/XsqBC5tcVQLYt8wqGCHRnAUUecbRYXoJCReD6w7QEKp/info.json @@ -0,0 +1,24 @@ +{ + "name": "TBLL tokenized ETF (xStock)", + "website": "https://assets.backed.fi/products", + "description": "For too long, investing has come with barriers. Borders. Brokers. Limitations. It's been complicated, costly, and - for millions - out of reach. xStocks were created to change that. xStocks are tokenized stocks. They're backed 1:1 by the underlying assets, composable with DeFi protocols, compliant with EU regulations, accessible to non-US users, and provide a legal claim to the value of the stock. xStocks enable easy access to 57 US Stocks and ETFs to regular users through top centralized and decentralized exchanges, and can be integrated with other DeFi protocols like any other token.", + "explorer": "https://solscan.io/token/XsqBC5tcVQLYt8wqGCHRnAUUecbRYXoJCReD6w7QEKp", + "type": "SPL", + "symbol": "TBLLX", + "decimals": 8, + "status": "active", + "id": "XsqBC5tcVQLYt8wqGCHRnAUUecbRYXoJCReD6w7QEKp", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tbll-tokenized-etf-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsqBC5tcVQLYt8wqGCHRnAUUecbRYXoJCReD6w7QEKp/logo.png b/blockchains/solana/assets/XsqBC5tcVQLYt8wqGCHRnAUUecbRYXoJCReD6w7QEKp/logo.png new file mode 100644 index 0000000000000..a937d8586cfac Binary files /dev/null and b/blockchains/solana/assets/XsqBC5tcVQLYt8wqGCHRnAUUecbRYXoJCReD6w7QEKp/logo.png differ diff --git a/blockchains/solana/assets/XsqE9cRRpzxcGKDXj1BJ7Xmg4GRhZoyY1KpmGSxAWT2/info.json b/blockchains/solana/assets/XsqE9cRRpzxcGKDXj1BJ7Xmg4GRhZoyY1KpmGSxAWT2/info.json new file mode 100644 index 0000000000000..b74f2155d4dd8 --- /dev/null +++ b/blockchains/solana/assets/XsqE9cRRpzxcGKDXj1BJ7Xmg4GRhZoyY1KpmGSxAWT2/info.json @@ -0,0 +1,24 @@ +{ + "name": "McDonald's tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "McDonald's tokenized stock (xStock) (MCDX) is a cryptocurrency and operates on the Solana platform. McDonald's tokenized stock (xStock) has a current supply of 5,499.97979496 with 2,463.12389797 in circulation. The last known price of McDonald's tokenized stock (xStock) is 302.84776149 USD and is down -0.87 over the last 24 hours. It is currently trading on 17 active market(s) with $4,567,912.24 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/mcdonalds-xstock.", + "explorer": "https://solscan.io/token/XsqE9cRRpzxcGKDXj1BJ7Xmg4GRhZoyY1KpmGSxAWT2", + "type": "SPL", + "symbol": "MCDX", + "decimals": 8, + "status": "active", + "id": "XsqE9cRRpzxcGKDXj1BJ7Xmg4GRhZoyY1KpmGSxAWT2", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mcdonald-s-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsqE9cRRpzxcGKDXj1BJ7Xmg4GRhZoyY1KpmGSxAWT2/logo.png b/blockchains/solana/assets/XsqE9cRRpzxcGKDXj1BJ7Xmg4GRhZoyY1KpmGSxAWT2/logo.png new file mode 100644 index 0000000000000..a3cdfb7fa9fe0 Binary files /dev/null and b/blockchains/solana/assets/XsqE9cRRpzxcGKDXj1BJ7Xmg4GRhZoyY1KpmGSxAWT2/logo.png differ diff --git a/blockchains/solana/assets/XsqgsbXwWogGJsNcVZ3TyVouy2MbTkfCFhCGGGcQZ2p/info.json b/blockchains/solana/assets/XsqgsbXwWogGJsNcVZ3TyVouy2MbTkfCFhCGGGcQZ2p/info.json new file mode 100644 index 0000000000000..35721cb08c10f --- /dev/null +++ b/blockchains/solana/assets/XsqgsbXwWogGJsNcVZ3TyVouy2MbTkfCFhCGGGcQZ2p/info.json @@ -0,0 +1,24 @@ +{ + "name": "Visa tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Visa xStock (Vx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. Vx tracks the price of Visa Inc. Class A (the underlying). Vx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Visa Inc. Class A, whilst maintaining the benefits of blockchain technology. Visa Inc. is a global digital payments technology company that facilitates transactions between consumers, merchants, and financial institutions in over 200 countries.", + "explorer": "https://solscan.io/token/XsqgsbXwWogGJsNcVZ3TyVouy2MbTkfCFhCGGGcQZ2p", + "type": "SPL", + "symbol": "VX", + "decimals": 8, + "status": "active", + "id": "XsqgsbXwWogGJsNcVZ3TyVouy2MbTkfCFhCGGGcQZ2p", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/visa-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsqgsbXwWogGJsNcVZ3TyVouy2MbTkfCFhCGGGcQZ2p/logo.png b/blockchains/solana/assets/XsqgsbXwWogGJsNcVZ3TyVouy2MbTkfCFhCGGGcQZ2p/logo.png new file mode 100644 index 0000000000000..11bbde8933e10 Binary files /dev/null and b/blockchains/solana/assets/XsqgsbXwWogGJsNcVZ3TyVouy2MbTkfCFhCGGGcQZ2p/logo.png differ diff --git a/blockchains/solana/assets/Xsr3pdLQyXvDJBFgpR5nexCEZwXvigb8wbPYp4YoNFf/info.json b/blockchains/solana/assets/Xsr3pdLQyXvDJBFgpR5nexCEZwXvigb8wbPYp4YoNFf/info.json new file mode 100644 index 0000000000000..f3172743d61d7 --- /dev/null +++ b/blockchains/solana/assets/Xsr3pdLQyXvDJBFgpR5nexCEZwXvigb8wbPYp4YoNFf/info.json @@ -0,0 +1,24 @@ +{ + "name": "Cisco tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Cisco xStock (CSCOx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. CSCOx tracks the price of Cisco Systems, Inc. (the underlying). CSCOx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Cisco Systems, Inc., whilst maintaining the benefits of blockchain technology. Cisco is a leading global technology company that focuses on networking, security, collaboration, and cloud solutions.", + "explorer": "https://solscan.io/token/Xsr3pdLQyXvDJBFgpR5nexCEZwXvigb8wbPYp4YoNFf", + "type": "SPL", + "symbol": "CSCOX", + "decimals": 8, + "status": "active", + "id": "Xsr3pdLQyXvDJBFgpR5nexCEZwXvigb8wbPYp4YoNFf", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cisco-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Xsr3pdLQyXvDJBFgpR5nexCEZwXvigb8wbPYp4YoNFf/logo.png b/blockchains/solana/assets/Xsr3pdLQyXvDJBFgpR5nexCEZwXvigb8wbPYp4YoNFf/logo.png new file mode 100644 index 0000000000000..861002db70a6d Binary files /dev/null and b/blockchains/solana/assets/Xsr3pdLQyXvDJBFgpR5nexCEZwXvigb8wbPYp4YoNFf/logo.png differ diff --git a/blockchains/solana/assets/XsrBCwaH8c46xiqXBChzobgufRKxQxAWUWbndgBNzFn/info.json b/blockchains/solana/assets/XsrBCwaH8c46xiqXBChzobgufRKxQxAWUWbndgBNzFn/info.json new file mode 100644 index 0000000000000..47980335bda9a --- /dev/null +++ b/blockchains/solana/assets/XsrBCwaH8c46xiqXBChzobgufRKxQxAWUWbndgBNzFn/info.json @@ -0,0 +1,15 @@ +{ + "name": "Bitmine xStock", + "type": "SPL", + "symbol": "BMNRx", + "decimals": 8, + "description": "Bitmine xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://solscan.io/token/XsrBCwaH8c46xiqXBChzobgufRKxQxAWUWbndgBNzFn", + "status": "active", + "id": "XsrBCwaH8c46xiqXBChzobgufRKxQxAWUWbndgBNzFn", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsrBCwaH8c46xiqXBChzobgufRKxQxAWUWbndgBNzFn/logo.png b/blockchains/solana/assets/XsrBCwaH8c46xiqXBChzobgufRKxQxAWUWbndgBNzFn/logo.png new file mode 100644 index 0000000000000..fb7784c71a3a4 Binary files /dev/null and b/blockchains/solana/assets/XsrBCwaH8c46xiqXBChzobgufRKxQxAWUWbndgBNzFn/logo.png differ diff --git a/blockchains/solana/assets/XsssYEQjzxBCFgvYFFNuhJFBeHNdLWYeUSP8F45cDr9/info.json b/blockchains/solana/assets/XsssYEQjzxBCFgvYFFNuhJFBeHNdLWYeUSP8F45cDr9/info.json new file mode 100644 index 0000000000000..195b5a00776cb --- /dev/null +++ b/blockchains/solana/assets/XsssYEQjzxBCFgvYFFNuhJFBeHNdLWYeUSP8F45cDr9/info.json @@ -0,0 +1,24 @@ +{ + "name": "Vanguard tokenized ETF (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Vanguard xStock (VTIx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. VTIx tracks the price of Vanguard Total Stock Market Index Fund ETF (the underlying). VTIx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the ETF price of Vanguard Total Stock Market Index Fund ETF, whilst maintaining the benefits of blockchain technology. Vanguard Total Stock Market Index Fund ETF (VTI) is an exchange-traded fund that seeks to track the performance of the CRSP U.S. Total Market Index, covering nearly all publicly traded U.S. companies.", + "explorer": "https://solscan.io/token/XsssYEQjzxBCFgvYFFNuhJFBeHNdLWYeUSP8F45cDr9", + "type": "SPL", + "symbol": "VTIX", + "decimals": 8, + "status": "active", + "id": "XsssYEQjzxBCFgvYFFNuhJFBeHNdLWYeUSP8F45cDr9", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vanguard-tokenized-etf-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsssYEQjzxBCFgvYFFNuhJFBeHNdLWYeUSP8F45cDr9/logo.png b/blockchains/solana/assets/XsssYEQjzxBCFgvYFFNuhJFBeHNdLWYeUSP8F45cDr9/logo.png new file mode 100644 index 0000000000000..ec248062ccc2c Binary files /dev/null and b/blockchains/solana/assets/XsssYEQjzxBCFgvYFFNuhJFBeHNdLWYeUSP8F45cDr9/logo.png differ diff --git a/blockchains/solana/assets/XsueG8BtpquVJX9LVLLEGuViXUungE6WmK5YZ3p3bd1/info.json b/blockchains/solana/assets/XsueG8BtpquVJX9LVLLEGuViXUungE6WmK5YZ3p3bd1/info.json new file mode 100644 index 0000000000000..58a56444a58d4 --- /dev/null +++ b/blockchains/solana/assets/XsueG8BtpquVJX9LVLLEGuViXUungE6WmK5YZ3p3bd1/info.json @@ -0,0 +1,24 @@ +{ + "name": "Circle tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Circle tokenized stock (xStock) (CRCLX) is a cryptocurrency and operates on the Solana platform. Circle tokenized stock (xStock) has a current supply of 49,998.60984587. The last known price of Circle tokenized stock (xStock) is 134.16292538 USD and is up 4.96 over the last 24 hours. It is currently trading on 44 active market(s) with $8,141,888.27 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/circle-xstock.", + "explorer": "https://solscan.io/token/XsueG8BtpquVJX9LVLLEGuViXUungE6WmK5YZ3p3bd1", + "type": "SPL", + "symbol": "CRCLX", + "decimals": 8, + "status": "active", + "id": "XsueG8BtpquVJX9LVLLEGuViXUungE6WmK5YZ3p3bd1", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/circle-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsueG8BtpquVJX9LVLLEGuViXUungE6WmK5YZ3p3bd1/logo.png b/blockchains/solana/assets/XsueG8BtpquVJX9LVLLEGuViXUungE6WmK5YZ3p3bd1/logo.png new file mode 100644 index 0000000000000..984236e985ff3 Binary files /dev/null and b/blockchains/solana/assets/XsueG8BtpquVJX9LVLLEGuViXUungE6WmK5YZ3p3bd1/logo.png differ diff --git a/blockchains/solana/assets/XsuxRGDzbLjnJ72v74b7p9VY6N66uYgTCyfwwRjVCJA/info.json b/blockchains/solana/assets/XsuxRGDzbLjnJ72v74b7p9VY6N66uYgTCyfwwRjVCJA/info.json new file mode 100644 index 0000000000000..153a56600df94 --- /dev/null +++ b/blockchains/solana/assets/XsuxRGDzbLjnJ72v74b7p9VY6N66uYgTCyfwwRjVCJA/info.json @@ -0,0 +1,24 @@ +{ + "name": "Marvell tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Marvell xStock (MRVLx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. MRVLx tracks the price of Marvell Technology, Inc. (the underlying). MRVLx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Marvell Technology, Inc., whilst maintaining the benefits of blockchain technology. Marvell Technology, Inc. is an American semiconductor company that designs and develops integrated circuits, primarily focused on data infrastructure.", + "explorer": "https://solscan.io/token/XsuxRGDzbLjnJ72v74b7p9VY6N66uYgTCyfwwRjVCJA", + "type": "SPL", + "symbol": "MRVLX", + "decimals": 8, + "status": "active", + "id": "XsuxRGDzbLjnJ72v74b7p9VY6N66uYgTCyfwwRjVCJA", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/marvell-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsuxRGDzbLjnJ72v74b7p9VY6N66uYgTCyfwwRjVCJA/logo.png b/blockchains/solana/assets/XsuxRGDzbLjnJ72v74b7p9VY6N66uYgTCyfwwRjVCJA/logo.png new file mode 100644 index 0000000000000..4ca5efce9f7b2 Binary files /dev/null and b/blockchains/solana/assets/XsuxRGDzbLjnJ72v74b7p9VY6N66uYgTCyfwwRjVCJA/logo.png differ diff --git a/blockchains/solana/assets/Xsv99frTRUeornyvCfvhnDesQDWuvns1M852Pez91vF/info.json b/blockchains/solana/assets/Xsv99frTRUeornyvCfvhnDesQDWuvns1M852Pez91vF/info.json new file mode 100644 index 0000000000000..64f27410ccdb4 --- /dev/null +++ b/blockchains/solana/assets/Xsv99frTRUeornyvCfvhnDesQDWuvns1M852Pez91vF/info.json @@ -0,0 +1,24 @@ +{ + "name": "PepsiCo tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Pepsico xStock (PEPx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. PEPx tracks the price of PepsiCo, Inc. (the underlying). PEPx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of PepsiCo, Inc., whilst maintaining the benefits of blockchain technology. PepsiCo is a multinational food and beverage corporation. PepsiCo offers a diverse portfolio of over 500 brands, including popular items like Pepsi, Lay's, Doritos, Gatorade, and Quaker Oats.", + "explorer": "https://solscan.io/token/Xsv99frTRUeornyvCfvhnDesQDWuvns1M852Pez91vF", + "type": "SPL", + "symbol": "PEPX", + "decimals": 8, + "status": "active", + "id": "Xsv99frTRUeornyvCfvhnDesQDWuvns1M852Pez91vF", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pepsico-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Xsv99frTRUeornyvCfvhnDesQDWuvns1M852Pez91vF/logo.png b/blockchains/solana/assets/Xsv99frTRUeornyvCfvhnDesQDWuvns1M852Pez91vF/logo.png new file mode 100644 index 0000000000000..c3916659a191e Binary files /dev/null and b/blockchains/solana/assets/Xsv99frTRUeornyvCfvhnDesQDWuvns1M852Pez91vF/logo.png differ diff --git a/blockchains/solana/assets/Xsv9hRk1z5ystj9MhnA7Lq4vjSsLwzL2nxrwmwtD3re/info.json b/blockchains/solana/assets/Xsv9hRk1z5ystj9MhnA7Lq4vjSsLwzL2nxrwmwtD3re/info.json new file mode 100644 index 0000000000000..fe1e216212244 --- /dev/null +++ b/blockchains/solana/assets/Xsv9hRk1z5ystj9MhnA7Lq4vjSsLwzL2nxrwmwtD3re/info.json @@ -0,0 +1,24 @@ +{ + "name": "Gold tokenized ETF (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Gold tokenized ETF (xStock) (GLDX) is a cryptocurrency and operates on the Solana platform. Gold tokenized ETF (xStock) has a current supply of 2,799.99923929 with 1,000 in circulation. The last known price of Gold tokenized ETF (xStock) is 340.04452058 USD and is up 1.44 over the last 24 hours. It is currently trading on 10 active market(s) with $2,423,806.34 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/gold-xstock.", + "explorer": "https://solscan.io/token/Xsv9hRk1z5ystj9MhnA7Lq4vjSsLwzL2nxrwmwtD3re", + "type": "SPL", + "symbol": "GLDX", + "decimals": 8, + "status": "active", + "id": "Xsv9hRk1z5ystj9MhnA7Lq4vjSsLwzL2nxrwmwtD3re", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gold-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Xsv9hRk1z5ystj9MhnA7Lq4vjSsLwzL2nxrwmwtD3re/logo.png b/blockchains/solana/assets/Xsv9hRk1z5ystj9MhnA7Lq4vjSsLwzL2nxrwmwtD3re/logo.png new file mode 100644 index 0000000000000..85a92734296a2 Binary files /dev/null and b/blockchains/solana/assets/Xsv9hRk1z5ystj9MhnA7Lq4vjSsLwzL2nxrwmwtD3re/logo.png differ diff --git a/blockchains/solana/assets/XsvKCaNsxg2GN8jjUmq71qukMJr7Q1c5R2Mk9P8kcS8/info.json b/blockchains/solana/assets/XsvKCaNsxg2GN8jjUmq71qukMJr7Q1c5R2Mk9P8kcS8/info.json new file mode 100644 index 0000000000000..91293dc6cc40c --- /dev/null +++ b/blockchains/solana/assets/XsvKCaNsxg2GN8jjUmq71qukMJr7Q1c5R2Mk9P8kcS8/info.json @@ -0,0 +1,24 @@ +{ + "name": "Comcast tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Comcast xStock (CMCSAx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. CMCSAx tracks the price of International Comcast Corporation Class A (the underlying). CMCSAx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Comcast Corporation Class A, whilst maintaining the benefits of blockchain technology. Comcast Corporation is a global media and tech company that provides connectivity, content, and entertainment to millions of customers worldwide.", + "explorer": "https://solscan.io/token/XsvKCaNsxg2GN8jjUmq71qukMJr7Q1c5R2Mk9P8kcS8", + "type": "SPL", + "symbol": "CMCSAX", + "decimals": 8, + "status": "active", + "id": "XsvKCaNsxg2GN8jjUmq71qukMJr7Q1c5R2Mk9P8kcS8", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/comcast-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsvKCaNsxg2GN8jjUmq71qukMJr7Q1c5R2Mk9P8kcS8/logo.png b/blockchains/solana/assets/XsvKCaNsxg2GN8jjUmq71qukMJr7Q1c5R2Mk9P8kcS8/logo.png new file mode 100644 index 0000000000000..a3d18c9ae4e61 Binary files /dev/null and b/blockchains/solana/assets/XsvKCaNsxg2GN8jjUmq71qukMJr7Q1c5R2Mk9P8kcS8/logo.png differ diff --git a/blockchains/solana/assets/XsvNBAYkrDRNhA7wPHQfX3ZUXZyZLdnCQDfHZ56bzpg/info.json b/blockchains/solana/assets/XsvNBAYkrDRNhA7wPHQfX3ZUXZyZLdnCQDfHZ56bzpg/info.json new file mode 100644 index 0000000000000..d83cb80d73e20 --- /dev/null +++ b/blockchains/solana/assets/XsvNBAYkrDRNhA7wPHQfX3ZUXZyZLdnCQDfHZ56bzpg/info.json @@ -0,0 +1,24 @@ +{ + "name": "Robinhood tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Robinhood tokenized stock (xStock) (HOODX) is a cryptocurrency and operates on the Solana platform. Robinhood tokenized stock (xStock) has a current supply of 30,999.85114263. The last known price of Robinhood tokenized stock (xStock) is 115.00870956 USD and is down -0.48 over the last 24 hours. It is currently trading on 28 active market(s) with $10,711,891.70 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/robinhood-xstock.", + "explorer": "https://solscan.io/token/XsvNBAYkrDRNhA7wPHQfX3ZUXZyZLdnCQDfHZ56bzpg", + "type": "SPL", + "symbol": "HOODX", + "decimals": 8, + "status": "active", + "id": "XsvNBAYkrDRNhA7wPHQfX3ZUXZyZLdnCQDfHZ56bzpg", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/robinhood-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsvNBAYkrDRNhA7wPHQfX3ZUXZyZLdnCQDfHZ56bzpg/logo.png b/blockchains/solana/assets/XsvNBAYkrDRNhA7wPHQfX3ZUXZyZLdnCQDfHZ56bzpg/logo.png new file mode 100644 index 0000000000000..41bfda5c82784 Binary files /dev/null and b/blockchains/solana/assets/XsvNBAYkrDRNhA7wPHQfX3ZUXZyZLdnCQDfHZ56bzpg/logo.png differ diff --git a/blockchains/solana/assets/XswbinNKyPmzTa5CskMbCPvMW6G5CMnZXZEeQSSQoie/info.json b/blockchains/solana/assets/XswbinNKyPmzTa5CskMbCPvMW6G5CMnZXZEeQSSQoie/info.json new file mode 100644 index 0000000000000..34e36308b3d0c --- /dev/null +++ b/blockchains/solana/assets/XswbinNKyPmzTa5CskMbCPvMW6G5CMnZXZEeQSSQoie/info.json @@ -0,0 +1,24 @@ +{ + "name": "AbbVie tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "AbbVie xStock (ABBVx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. ABBVx tracks the price of AbbVie Inc. (the underlying). ABBVx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of AbbVie Inc., whilst maintaining the benefits of blockchain technology. AbbVie Inc. (ABBV) is a global biopharmaceutical company focused on developing and delivering innovative therapies in areas such as immunology, oncology, neuroscience, and eye care.", + "explorer": "https://solscan.io/token/XswbinNKyPmzTa5CskMbCPvMW6G5CMnZXZEeQSSQoie", + "type": "SPL", + "symbol": "ABBVX", + "decimals": 8, + "status": "active", + "id": "XswbinNKyPmzTa5CskMbCPvMW6G5CMnZXZEeQSSQoie", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abbvie-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XswbinNKyPmzTa5CskMbCPvMW6G5CMnZXZEeQSSQoie/logo.png b/blockchains/solana/assets/XswbinNKyPmzTa5CskMbCPvMW6G5CMnZXZEeQSSQoie/logo.png new file mode 100644 index 0000000000000..ab73b87a6dd53 Binary files /dev/null and b/blockchains/solana/assets/XswbinNKyPmzTa5CskMbCPvMW6G5CMnZXZEeQSSQoie/logo.png differ diff --git a/blockchains/solana/assets/XswsQk4duEQmCbGzfqUUWYmi7pV7xpJ9eEmLHXCaEQP/info.json b/blockchains/solana/assets/XswsQk4duEQmCbGzfqUUWYmi7pV7xpJ9eEmLHXCaEQP/info.json new file mode 100644 index 0000000000000..20b8ebb5fda25 --- /dev/null +++ b/blockchains/solana/assets/XswsQk4duEQmCbGzfqUUWYmi7pV7xpJ9eEmLHXCaEQP/info.json @@ -0,0 +1,24 @@ +{ + "name": "Bank of America tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Bank of America xStock (BACx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. BACx tracks the price of Bank of America Corporation (the underlying). BACx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Bank of America Corporation, whilst maintaining the benefits of blockchain technology. Bank of America is a leading global financial institution that offers a wide range of banking, investing, asset management, and financial risk management products and services.", + "explorer": "https://solscan.io/token/XswsQk4duEQmCbGzfqUUWYmi7pV7xpJ9eEmLHXCaEQP", + "type": "SPL", + "symbol": "BACX", + "decimals": 8, + "status": "active", + "id": "XswsQk4duEQmCbGzfqUUWYmi7pV7xpJ9eEmLHXCaEQP", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bank-of-america-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XswsQk4duEQmCbGzfqUUWYmi7pV7xpJ9eEmLHXCaEQP/logo.png b/blockchains/solana/assets/XswsQk4duEQmCbGzfqUUWYmi7pV7xpJ9eEmLHXCaEQP/logo.png new file mode 100644 index 0000000000000..c358f4e973a1a Binary files /dev/null and b/blockchains/solana/assets/XswsQk4duEQmCbGzfqUUWYmi7pV7xpJ9eEmLHXCaEQP/logo.png differ diff --git a/blockchains/solana/assets/XsyZcb97BzETAqi9BoP2C9D196MiMNBisGMVNje2Thz/info.json b/blockchains/solana/assets/XsyZcb97BzETAqi9BoP2C9D196MiMNBisGMVNje2Thz/info.json new file mode 100644 index 0000000000000..aa9b097657970 --- /dev/null +++ b/blockchains/solana/assets/XsyZcb97BzETAqi9BoP2C9D196MiMNBisGMVNje2Thz/info.json @@ -0,0 +1,15 @@ +{ + "name": "S&P Small Cap xStock", + "type": "SPL", + "symbol": "IJRx", + "decimals": 8, + "description": "S&P Small Cap xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://solscan.io/token/XsyZcb97BzETAqi9BoP2C9D196MiMNBisGMVNje2Thz", + "status": "active", + "id": "XsyZcb97BzETAqi9BoP2C9D196MiMNBisGMVNje2Thz", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XsyZcb97BzETAqi9BoP2C9D196MiMNBisGMVNje2Thz/logo.png b/blockchains/solana/assets/XsyZcb97BzETAqi9BoP2C9D196MiMNBisGMVNje2Thz/logo.png new file mode 100644 index 0000000000000..d5c48229001bc Binary files /dev/null and b/blockchains/solana/assets/XsyZcb97BzETAqi9BoP2C9D196MiMNBisGMVNje2Thz/logo.png differ diff --git a/blockchains/solana/assets/XszjVtyhowGjSC5odCqBpW1CtXXwXjYokymrk7fGKD3/info.json b/blockchains/solana/assets/XszjVtyhowGjSC5odCqBpW1CtXXwXjYokymrk7fGKD3/info.json new file mode 100644 index 0000000000000..98ebf2ca101b4 --- /dev/null +++ b/blockchains/solana/assets/XszjVtyhowGjSC5odCqBpW1CtXXwXjYokymrk7fGKD3/info.json @@ -0,0 +1,24 @@ +{ + "name": "Home Depot tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "Home Depot xStock (HDx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. HDx tracks the price of The Home Depot, Inc. (the underlying). HDx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of The Home Depot, Inc., whilst maintaining the benefits of blockchain technology. The Home Depot is a publicly traded home improvement retailer that operates over 2,300 stores across the United States, Canada, and Mexico.", + "explorer": "https://solscan.io/token/XszjVtyhowGjSC5odCqBpW1CtXXwXjYokymrk7fGKD3", + "type": "SPL", + "symbol": "HDX", + "decimals": 8, + "status": "active", + "id": "XszjVtyhowGjSC5odCqBpW1CtXXwXjYokymrk7fGKD3", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/home-depot-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XszjVtyhowGjSC5odCqBpW1CtXXwXjYokymrk7fGKD3/logo.png b/blockchains/solana/assets/XszjVtyhowGjSC5odCqBpW1CtXXwXjYokymrk7fGKD3/logo.png new file mode 100644 index 0000000000000..a49ae723a2836 Binary files /dev/null and b/blockchains/solana/assets/XszjVtyhowGjSC5odCqBpW1CtXXwXjYokymrk7fGKD3/logo.png differ diff --git a/blockchains/solana/assets/XszvaiXGPwvk2nwb3o9C1CX4K6zH8sez11E6uyup6fe/info.json b/blockchains/solana/assets/XszvaiXGPwvk2nwb3o9C1CX4K6zH8sez11E6uyup6fe/info.json new file mode 100644 index 0000000000000..f766bf63c6c81 --- /dev/null +++ b/blockchains/solana/assets/XszvaiXGPwvk2nwb3o9C1CX4K6zH8sez11E6uyup6fe/info.json @@ -0,0 +1,24 @@ +{ + "name": "UnitedHealth tokenized stock (xStock)", + "website": "https://assets.backed.fi/products", + "description": "UnitedHealth tokenized stock (xStock) (UNHX) is a cryptocurrency and operates on the Solana platform. UnitedHealth tokenized stock (xStock) has a current supply of 2,000 with 1,000 in circulation. The last known price of UnitedHealth tokenized stock (xStock) is 349.28004226 USD and is down -1.37 over the last 24 hours. It is currently trading on 3 active market(s) with $570,164.67 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/unitedhealth-xstock.", + "explorer": "https://solscan.io/token/XszvaiXGPwvk2nwb3o9C1CX4K6zH8sez11E6uyup6fe", + "type": "SPL", + "symbol": "UNHX", + "decimals": 8, + "status": "active", + "id": "XszvaiXGPwvk2nwb3o9C1CX4K6zH8sez11E6uyup6fe", + "tags": [ + "RWA" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/xstocksfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/unitedhealth-tokenized-stock-xstock/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XszvaiXGPwvk2nwb3o9C1CX4K6zH8sez11E6uyup6fe/logo.png b/blockchains/solana/assets/XszvaiXGPwvk2nwb3o9C1CX4K6zH8sez11E6uyup6fe/logo.png new file mode 100644 index 0000000000000..9051b3f336f0d Binary files /dev/null and b/blockchains/solana/assets/XszvaiXGPwvk2nwb3o9C1CX4K6zH8sez11E6uyup6fe/logo.png differ diff --git a/blockchains/solana/assets/XwFm5GiKPVTvPiEbQpdc6vJbFEpsUXRMf6TcSxnondo/info.json b/blockchains/solana/assets/XwFm5GiKPVTvPiEbQpdc6vJbFEpsUXRMf6TcSxnondo/info.json new file mode 100644 index 0000000000000..b2109d51f1f83 --- /dev/null +++ b/blockchains/solana/assets/XwFm5GiKPVTvPiEbQpdc6vJbFEpsUXRMf6TcSxnondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "MP Materials (Ondo Tokenized)", + "type": "SPL", + "symbol": "MPon", + "decimals": 9, + "description": "MPon is the Ondo Tokenized version of MP Materials, giving tokenholders economic exposure similar to holding MP and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/XwFm5GiKPVTvPiEbQpdc6vJbFEpsUXRMf6TcSxnondo", + "status": "active", + "id": "XwFm5GiKPVTvPiEbQpdc6vJbFEpsUXRMf6TcSxnondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mp-materials-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mp-materials-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/XwFm5GiKPVTvPiEbQpdc6vJbFEpsUXRMf6TcSxnondo/logo.png b/blockchains/solana/assets/XwFm5GiKPVTvPiEbQpdc6vJbFEpsUXRMf6TcSxnondo/logo.png new file mode 100644 index 0000000000000..283632c076568 Binary files /dev/null and b/blockchains/solana/assets/XwFm5GiKPVTvPiEbQpdc6vJbFEpsUXRMf6TcSxnondo/logo.png differ diff --git a/blockchains/solana/assets/YAFAJvjUv9MVAKcTE7Y8ouo45QNKVK6fCMzdxt2tjPs/info.json b/blockchains/solana/assets/YAFAJvjUv9MVAKcTE7Y8ouo45QNKVK6fCMzdxt2tjPs/info.json new file mode 100644 index 0000000000000..6d9e681787c7a --- /dev/null +++ b/blockchains/solana/assets/YAFAJvjUv9MVAKcTE7Y8ouo45QNKVK6fCMzdxt2tjPs/info.json @@ -0,0 +1,21 @@ +{ + "name": "Free Palestine", + "symbol": "YAFA", + "type": "SPL", + "decimals": 6, + "description": "$Yafa is a Solana-based memecoin that aims to create economic independence for Palestinians and immortalize Palestinian culture on the blockchain.", + "website": "https://www.yafa.io/", + "explorer": "https://solscan.io/token/YAFAJvjUv9MVAKcTE7Y8ouo45QNKVK6fCMzdxt2tjPs", + "status": "active", + "id": "YAFAJvjUv9MVAKcTE7Y8ouo45QNKVK6fCMzdxt2tjPs", + "links": [ + { + "name": "x", + "url": "https://x.com/yafa_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/free-palestine" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/YAFAJvjUv9MVAKcTE7Y8ouo45QNKVK6fCMzdxt2tjPs/logo.png b/blockchains/solana/assets/YAFAJvjUv9MVAKcTE7Y8ouo45QNKVK6fCMzdxt2tjPs/logo.png new file mode 100644 index 0000000000000..633999e30b6f5 Binary files /dev/null and b/blockchains/solana/assets/YAFAJvjUv9MVAKcTE7Y8ouo45QNKVK6fCMzdxt2tjPs/logo.png differ diff --git a/blockchains/solana/assets/YRyg2egFdnLDgao6DF3DBccWTTvD3gVxAvk7TzMpump/info.json b/blockchains/solana/assets/YRyg2egFdnLDgao6DF3DBccWTTvD3gVxAvk7TzMpump/info.json new file mode 100644 index 0000000000000..0e707b5559317 --- /dev/null +++ b/blockchains/solana/assets/YRyg2egFdnLDgao6DF3DBccWTTvD3gVxAvk7TzMpump/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE EURC", + "type": "SPL", + "symbol": "FAKE EURC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/YRyg2egFdnLDgao6DF3DBccWTTvD3gVxAvk7TzMpump", + "explorer": "https://solscan.io/token/YRyg2egFdnLDgao6DF3DBccWTTvD3gVxAvk7TzMpump", + "status": "spam", + "id": "YRyg2egFdnLDgao6DF3DBccWTTvD3gVxAvk7TzMpump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/YXE7mph6XhsgnyezkMEcTuohSuWhbLWfwx2Hh6mondo/info.json b/blockchains/solana/assets/YXE7mph6XhsgnyezkMEcTuohSuWhbLWfwx2Hh6mondo/info.json new file mode 100644 index 0000000000000..54a36695b57ef --- /dev/null +++ b/blockchains/solana/assets/YXE7mph6XhsgnyezkMEcTuohSuWhbLWfwx2Hh6mondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "BigBear.ai Holdings (Ondo Tokenized)", + "type": "SPL", + "symbol": "BBAIon", + "decimals": 9, + "description": "BBAIon is the Ondo Tokenized version of BigBear.ai Holdings, giving tokenholders economic exposure similar to holding BBAI and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/YXE7mph6XhsgnyezkMEcTuohSuWhbLWfwx2Hh6mondo", + "status": "active", + "id": "YXE7mph6XhsgnyezkMEcTuohSuWhbLWfwx2Hh6mondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bigbear-ai-holdings-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bigbearai-holdings-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/YXE7mph6XhsgnyezkMEcTuohSuWhbLWfwx2Hh6mondo/logo.png b/blockchains/solana/assets/YXE7mph6XhsgnyezkMEcTuohSuWhbLWfwx2Hh6mondo/logo.png new file mode 100644 index 0000000000000..a7211c017cf52 Binary files /dev/null and b/blockchains/solana/assets/YXE7mph6XhsgnyezkMEcTuohSuWhbLWfwx2Hh6mondo/logo.png differ diff --git a/blockchains/solana/assets/YeK2TdPtGLAme3Phg4pb1GBN2YxKgX5UNVyD4asondo/info.json b/blockchains/solana/assets/YeK2TdPtGLAme3Phg4pb1GBN2YxKgX5UNVyD4asondo/info.json new file mode 100644 index 0000000000000..c8db34233f150 --- /dev/null +++ b/blockchains/solana/assets/YeK2TdPtGLAme3Phg4pb1GBN2YxKgX5UNVyD4asondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "NetEase (Ondo Tokenized)", + "type": "SPL", + "symbol": "NTESon", + "decimals": 9, + "description": "NTESon is the Ondo Tokenized version of NetEase, giving tokenholders economic exposure similar to holding NTES and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/YeK2TdPtGLAme3Phg4pb1GBN2YxKgX5UNVyD4asondo", + "status": "active", + "id": "YeK2TdPtGLAme3Phg4pb1GBN2YxKgX5UNVyD4asondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/netease-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/netease-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/YeK2TdPtGLAme3Phg4pb1GBN2YxKgX5UNVyD4asondo/logo.png b/blockchains/solana/assets/YeK2TdPtGLAme3Phg4pb1GBN2YxKgX5UNVyD4asondo/logo.png new file mode 100644 index 0000000000000..418ef4def3a2f Binary files /dev/null and b/blockchains/solana/assets/YeK2TdPtGLAme3Phg4pb1GBN2YxKgX5UNVyD4asondo/logo.png differ diff --git a/blockchains/solana/assets/ZBCNpuD7YMXzTHB2fhGkGi78MNsHGLRXUhRewNRm9RU/info.json b/blockchains/solana/assets/ZBCNpuD7YMXzTHB2fhGkGi78MNsHGLRXUhRewNRm9RU/info.json new file mode 100644 index 0000000000000..78b92af94b406 --- /dev/null +++ b/blockchains/solana/assets/ZBCNpuD7YMXzTHB2fhGkGi78MNsHGLRXUhRewNRm9RU/info.json @@ -0,0 +1,21 @@ +{ + "name": "Zebec", + "symbol": "ZBCN", + "type": "SPL", + "decimals": 6, + "description": "Zebec is a decentralized infrastructure network for real world value flows. Founded in 2021, Zebec has attracted $35 million in investments by Circle, Coinbase, Solana Ventures, Breyer Capital, Republic, and Lightspeed Venture Partners, among others.", + "website": "https://www.zebec.io", + "explorer": "https://solscan.io/token/ZBCNpuD7YMXzTHB2fhGkGi78MNsHGLRXUhRewNRm9RU", + "status": "active", + "id": "ZBCNpuD7YMXzTHB2fhGkGi78MNsHGLRXUhRewNRm9RU", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zebec-network/" + }, + { + "name": "x", + "url": "https://x.com/Zebec_HQ" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/ZBCNpuD7YMXzTHB2fhGkGi78MNsHGLRXUhRewNRm9RU/logo.png b/blockchains/solana/assets/ZBCNpuD7YMXzTHB2fhGkGi78MNsHGLRXUhRewNRm9RU/logo.png new file mode 100644 index 0000000000000..db24cd1ee1ee9 Binary files /dev/null and b/blockchains/solana/assets/ZBCNpuD7YMXzTHB2fhGkGi78MNsHGLRXUhRewNRm9RU/logo.png differ diff --git a/blockchains/solana/assets/ZmHxc6Gt27RJKxD2ay6UL4n9yQ7mKAq4XZQUeVhondo/info.json b/blockchains/solana/assets/ZmHxc6Gt27RJKxD2ay6UL4n9yQ7mKAq4XZQUeVhondo/info.json new file mode 100644 index 0000000000000..2c6c854bbe3e9 --- /dev/null +++ b/blockchains/solana/assets/ZmHxc6Gt27RJKxD2ay6UL4n9yQ7mKAq4XZQUeVhondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Figure Technology Solutions (Ondo Tokenized)", + "type": "SPL", + "symbol": "FIGRon", + "decimals": 9, + "description": "FIGRon is the Ondo Tokenized version of Figure Technology Solutions, giving tokenholders economic exposure similar to holding FIGR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/ZmHxc6Gt27RJKxD2ay6UL4n9yQ7mKAq4XZQUeVhondo", + "status": "active", + "id": "ZmHxc6Gt27RJKxD2ay6UL4n9yQ7mKAq4XZQUeVhondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/figure-technology-solutions-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/figure-technology-solutions-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/ZmHxc6Gt27RJKxD2ay6UL4n9yQ7mKAq4XZQUeVhondo/logo.png b/blockchains/solana/assets/ZmHxc6Gt27RJKxD2ay6UL4n9yQ7mKAq4XZQUeVhondo/logo.png new file mode 100644 index 0000000000000..f54067fe22fa8 Binary files /dev/null and b/blockchains/solana/assets/ZmHxc6Gt27RJKxD2ay6UL4n9yQ7mKAq4XZQUeVhondo/logo.png differ diff --git a/blockchains/solana/assets/a2cXfonVgQ6cKB4Lm8YZsPry39VZSA562bwmRSiondo/info.json b/blockchains/solana/assets/a2cXfonVgQ6cKB4Lm8YZsPry39VZSA562bwmRSiondo/info.json new file mode 100644 index 0000000000000..24c4a02820338 --- /dev/null +++ b/blockchains/solana/assets/a2cXfonVgQ6cKB4Lm8YZsPry39VZSA562bwmRSiondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Snap (Ondo Tokenized)", + "type": "SPL", + "symbol": "SNAPon", + "decimals": 9, + "description": "SNAPon is the Ondo Tokenized version of Snap, giving tokenholders economic exposure similar to holding SNAP and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/a2cXfonVgQ6cKB4Lm8YZsPry39VZSA562bwmRSiondo", + "status": "active", + "id": "a2cXfonVgQ6cKB4Lm8YZsPry39VZSA562bwmRSiondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/snap-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/snap-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/a2cXfonVgQ6cKB4Lm8YZsPry39VZSA562bwmRSiondo/logo.png b/blockchains/solana/assets/a2cXfonVgQ6cKB4Lm8YZsPry39VZSA562bwmRSiondo/logo.png new file mode 100644 index 0000000000000..c10c4abc8d1d2 Binary files /dev/null and b/blockchains/solana/assets/a2cXfonVgQ6cKB4Lm8YZsPry39VZSA562bwmRSiondo/logo.png differ diff --git a/blockchains/solana/assets/aKzjn2ZdWySSGPSSDTY2HUpcSCmemSahTXihrpyondo/info.json b/blockchains/solana/assets/aKzjn2ZdWySSGPSSDTY2HUpcSCmemSahTXihrpyondo/info.json new file mode 100644 index 0000000000000..73d3bdc555738 --- /dev/null +++ b/blockchains/solana/assets/aKzjn2ZdWySSGPSSDTY2HUpcSCmemSahTXihrpyondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Southern (Ondo Tokenized)", + "type": "SPL", + "symbol": "SOon", + "decimals": 9, + "description": "SOon is the Ondo Tokenized version of Southern, giving tokenholders economic exposure similar to holding SO and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/aKzjn2ZdWySSGPSSDTY2HUpcSCmemSahTXihrpyondo", + "status": "active", + "id": "aKzjn2ZdWySSGPSSDTY2HUpcSCmemSahTXihrpyondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/southern-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/southern-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/aKzjn2ZdWySSGPSSDTY2HUpcSCmemSahTXihrpyondo/logo.png b/blockchains/solana/assets/aKzjn2ZdWySSGPSSDTY2HUpcSCmemSahTXihrpyondo/logo.png new file mode 100644 index 0000000000000..5fb20048817a0 Binary files /dev/null and b/blockchains/solana/assets/aKzjn2ZdWySSGPSSDTY2HUpcSCmemSahTXihrpyondo/logo.png differ diff --git a/blockchains/solana/assets/aZjKN8zPgYkJP7FN7KRLwzAySffr8kBim7ErTTwgixT/info.json b/blockchains/solana/assets/aZjKN8zPgYkJP7FN7KRLwzAySffr8kBim7ErTTwgixT/info.json new file mode 100644 index 0000000000000..99ca06588071d --- /dev/null +++ b/blockchains/solana/assets/aZjKN8zPgYkJP7FN7KRLwzAySffr8kBim7ErTTwgixT/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE EURC", + "type": "SPL", + "symbol": "FAKE EURC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/aZjKN8zPgYkJP7FN7KRLwzAySffr8kBim7ErTTwgixT", + "explorer": "https://solscan.io/token/aZjKN8zPgYkJP7FN7KRLwzAySffr8kBim7ErTTwgixT", + "status": "spam", + "id": "aZjKN8zPgYkJP7FN7KRLwzAySffr8kBim7ErTTwgixT" +} \ No newline at end of file diff --git a/blockchains/solana/assets/b1nkm6skdrwXoMku8CVx8Fk4LfC2jAqxV3m9VDNjYqz/info.json b/blockchains/solana/assets/b1nkm6skdrwXoMku8CVx8Fk4LfC2jAqxV3m9VDNjYqz/info.json new file mode 100644 index 0000000000000..a8353c0139ab7 --- /dev/null +++ b/blockchains/solana/assets/b1nkm6skdrwXoMku8CVx8Fk4LfC2jAqxV3m9VDNjYqz/info.json @@ -0,0 +1,21 @@ +{ + "name": "blinkdotfun", + "website": "https://blnk.fun/?sort=last_view_timestamp&order=desc", + "description": "infiniteBLINK is the first test token that's forever tradable using only blinks.", + "explorer": "https://solscan.io/token/b1nkm6skdrwXoMku8CVx8Fk4LfC2jAqxV3m9VDNjYqz", + "type": "SPL", + "symbol": "BLINK", + "decimals": 6, + "status": "active", + "id": "b1nkm6skdrwXoMku8CVx8Fk4LfC2jAqxV3m9VDNjYqz", + "links": [ + { + "name": "x", + "url": "https://x.com/blinkdotfun" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/blinkdotfun" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/b1nkm6skdrwXoMku8CVx8Fk4LfC2jAqxV3m9VDNjYqz/logo.png b/blockchains/solana/assets/b1nkm6skdrwXoMku8CVx8Fk4LfC2jAqxV3m9VDNjYqz/logo.png new file mode 100644 index 0000000000000..08486bd2f3594 Binary files /dev/null and b/blockchains/solana/assets/b1nkm6skdrwXoMku8CVx8Fk4LfC2jAqxV3m9VDNjYqz/logo.png differ diff --git a/blockchains/solana/assets/bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1/info.json b/blockchains/solana/assets/bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1/info.json new file mode 100644 index 0000000000000..100a31081f328 --- /dev/null +++ b/blockchains/solana/assets/bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1/info.json @@ -0,0 +1,21 @@ +{ + "name": "BlazeStake Staked SOL", + "symbol": "bSOL", + "type": "SPL", + "decimals": 9, + "description": "BlazeStake is a fully non-custodial Solana stake pool protocol that is supported by the Solana Foundation.", + "website": "https://stake.solblaze.org", + "explorer": "https://solscan.io/token/bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1", + "status": "active", + "id": "bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1", + "links": [ + { + "name": "x", + "url": "https://x.com/solblaze_org" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/blazestake-staked-sol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1/logo.png b/blockchains/solana/assets/bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1/logo.png new file mode 100644 index 0000000000000..3660c0b579cd0 Binary files /dev/null and b/blockchains/solana/assets/bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1/logo.png differ diff --git a/blockchains/solana/assets/bgJWGuQxyoyFeXwzYZKBmoujVdatGFYPNFnv1a6ondo/info.json b/blockchains/solana/assets/bgJWGuQxyoyFeXwzYZKBmoujVdatGFYPNFnv1a6ondo/info.json new file mode 100644 index 0000000000000..bdd932804b9ca --- /dev/null +++ b/blockchains/solana/assets/bgJWGuQxyoyFeXwzYZKBmoujVdatGFYPNFnv1a6ondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "BitGo Holdings (Ondo Tokenized)", + "type": "SPL", + "symbol": "BTGOon", + "decimals": 9, + "description": "BTGOon is the Ondo Tokenized version of BitGo Holdings, giving tokenholders economic exposure similar to holding BTGO and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/bgJWGuQxyoyFeXwzYZKBmoujVdatGFYPNFnv1a6ondo", + "status": "active", + "id": "bgJWGuQxyoyFeXwzYZKBmoujVdatGFYPNFnv1a6ondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bitgo-holdings-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bitgo-holdings-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/bgJWGuQxyoyFeXwzYZKBmoujVdatGFYPNFnv1a6ondo/logo.png b/blockchains/solana/assets/bgJWGuQxyoyFeXwzYZKBmoujVdatGFYPNFnv1a6ondo/logo.png new file mode 100644 index 0000000000000..ea30060042871 Binary files /dev/null and b/blockchains/solana/assets/bgJWGuQxyoyFeXwzYZKBmoujVdatGFYPNFnv1a6ondo/logo.png differ diff --git a/blockchains/solana/assets/bioJ9JTqW62MLz7UKHU69gtKhPpGi1BQhccj2kmSvUJ/info.json b/blockchains/solana/assets/bioJ9JTqW62MLz7UKHU69gtKhPpGi1BQhccj2kmSvUJ/info.json new file mode 100644 index 0000000000000..8fc4f7d76141c --- /dev/null +++ b/blockchains/solana/assets/bioJ9JTqW62MLz7UKHU69gtKhPpGi1BQhccj2kmSvUJ/info.json @@ -0,0 +1,28 @@ +{ + "name": "BIO", + "type": "SPL", + "symbol": "BIO", + "decimals": 9, + "description": "BIO Protocol enables global communities of scientists, patients, and investors to collectively fund, develop, and co-own new drugs and therapeutics through its network of Biotech Decentralized Autonomous Organizations (BioDAOs).", + "website": "https://www.bio.xyz/", + "explorer": "https://solscan.io/token/bioJ9JTqW62MLz7UKHU69gtKhPpGi1BQhccj2kmSvUJ", + "id": "bioJ9JTqW62MLz7UKHU69gtKhPpGi1BQhccj2kmSvUJ", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/bioprotocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bio/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bio-protocol" + } + ], + "tags": [ + "governance" + ] +} diff --git a/blockchains/solana/assets/bioJ9JTqW62MLz7UKHU69gtKhPpGi1BQhccj2kmSvUJ/logo.png b/blockchains/solana/assets/bioJ9JTqW62MLz7UKHU69gtKhPpGi1BQhccj2kmSvUJ/logo.png new file mode 100644 index 0000000000000..872b92a53f5a1 Binary files /dev/null and b/blockchains/solana/assets/bioJ9JTqW62MLz7UKHU69gtKhPpGi1BQhccj2kmSvUJ/logo.png differ diff --git a/blockchains/solana/assets/bn1fb8dwzafGePqNPrM8m8cbAKQiFqeEPuZkPySondo/info.json b/blockchains/solana/assets/bn1fb8dwzafGePqNPrM8m8cbAKQiFqeEPuZkPySondo/info.json new file mode 100644 index 0000000000000..aa9e371cb8a8c --- /dev/null +++ b/blockchains/solana/assets/bn1fb8dwzafGePqNPrM8m8cbAKQiFqeEPuZkPySondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Merck (Ondo Tokenized)", + "type": "SPL", + "symbol": "MRKon", + "decimals": 9, + "description": "MRKon is the Ondo Tokenized version of Merck, giving tokenholders economic exposure similar to holding MRK and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/bn1fb8dwzafGePqNPrM8m8cbAKQiFqeEPuZkPySondo", + "status": "active", + "id": "bn1fb8dwzafGePqNPrM8m8cbAKQiFqeEPuZkPySondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/merck-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/merck-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/bn1fb8dwzafGePqNPrM8m8cbAKQiFqeEPuZkPySondo/logo.png b/blockchains/solana/assets/bn1fb8dwzafGePqNPrM8m8cbAKQiFqeEPuZkPySondo/logo.png new file mode 100644 index 0000000000000..4aa234d329f05 Binary files /dev/null and b/blockchains/solana/assets/bn1fb8dwzafGePqNPrM8m8cbAKQiFqeEPuZkPySondo/logo.png differ diff --git a/blockchains/solana/assets/cBnVXDyZgaaLZM18wAmqsUKnRUFAEJWbq6VuUoaondo/info.json b/blockchains/solana/assets/cBnVXDyZgaaLZM18wAmqsUKnRUFAEJWbq6VuUoaondo/info.json new file mode 100644 index 0000000000000..84f2202f8a54a --- /dev/null +++ b/blockchains/solana/assets/cBnVXDyZgaaLZM18wAmqsUKnRUFAEJWbq6VuUoaondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "B2Gold (Ondo Tokenized)", + "type": "SPL", + "symbol": "BTGon", + "decimals": 9, + "description": "BTGon is the Ondo Tokenized version of B2Gold, giving tokenholders economic exposure similar to holding BTG and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/cBnVXDyZgaaLZM18wAmqsUKnRUFAEJWbq6VuUoaondo", + "status": "active", + "id": "cBnVXDyZgaaLZM18wAmqsUKnRUFAEJWbq6VuUoaondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/b2gold-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/b2gold-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/cBnVXDyZgaaLZM18wAmqsUKnRUFAEJWbq6VuUoaondo/logo.png b/blockchains/solana/assets/cBnVXDyZgaaLZM18wAmqsUKnRUFAEJWbq6VuUoaondo/logo.png new file mode 100644 index 0000000000000..c5348399e5ca8 Binary files /dev/null and b/blockchains/solana/assets/cBnVXDyZgaaLZM18wAmqsUKnRUFAEJWbq6VuUoaondo/logo.png differ diff --git a/blockchains/solana/assets/caer1UmwhRsfFk5huGYkXcFmiL2tj4cyT7YjVxUpump/info.json b/blockchains/solana/assets/caer1UmwhRsfFk5huGYkXcFmiL2tj4cyT7YjVxUpump/info.json new file mode 100644 index 0000000000000..5a76027a0351a --- /dev/null +++ b/blockchains/solana/assets/caer1UmwhRsfFk5huGYkXcFmiL2tj4cyT7YjVxUpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "OFFICIAL BABY TRUMP", + "symbol": "BTRUMP", + "type": "SPL", + "decimals": 6, + "description": "Official Baby Trump Coin", + "website": "https://officialbabytrump.com/", + "explorer": "https://solscan.io/token/caer1UmwhRsfFk5huGYkXcFmiL2tj4cyT7YjVxUpump", + "status": "active", + "id": "caer1UmwhRsfFk5huGYkXcFmiL2tj4cyT7YjVxUpump", + "links": [ + { + "name": "x", + "url": "https://x.com/solanababytrump" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/official-baby-trump" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/caer1UmwhRsfFk5huGYkXcFmiL2tj4cyT7YjVxUpump/logo.png b/blockchains/solana/assets/caer1UmwhRsfFk5huGYkXcFmiL2tj4cyT7YjVxUpump/logo.png new file mode 100644 index 0000000000000..d5a16284d4c7a Binary files /dev/null and b/blockchains/solana/assets/caer1UmwhRsfFk5huGYkXcFmiL2tj4cyT7YjVxUpump/logo.png differ diff --git a/blockchains/solana/assets/cdKfoNjbXgnSuxvoajhtH3uixfZhq1YXhQsS1Rwondo/info.json b/blockchains/solana/assets/cdKfoNjbXgnSuxvoajhtH3uixfZhq1YXhQsS1Rwondo/info.json new file mode 100644 index 0000000000000..526fd72606752 --- /dev/null +++ b/blockchains/solana/assets/cdKfoNjbXgnSuxvoajhtH3uixfZhq1YXhQsS1Rwondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "CrowdStrike (Ondo Tokenized)", + "type": "SPL", + "symbol": "CRWDon", + "decimals": 9, + "description": "CRWDon is the Ondo Tokenized version of CrowdStrike, giving tokenholders economic exposure similar to holding CRWD and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/cdKfoNjbXgnSuxvoajhtH3uixfZhq1YXhQsS1Rwondo", + "status": "active", + "id": "cdKfoNjbXgnSuxvoajhtH3uixfZhq1YXhQsS1Rwondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/crowdstrike-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crowdstrike-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/cdKfoNjbXgnSuxvoajhtH3uixfZhq1YXhQsS1Rwondo/logo.png b/blockchains/solana/assets/cdKfoNjbXgnSuxvoajhtH3uixfZhq1YXhQsS1Rwondo/logo.png new file mode 100644 index 0000000000000..29bfd0c5324dc Binary files /dev/null and b/blockchains/solana/assets/cdKfoNjbXgnSuxvoajhtH3uixfZhq1YXhQsS1Rwondo/logo.png differ diff --git a/blockchains/solana/assets/cnc6M1zXLdrGR5LAQVcaJDfgezMiVWNtGQsVy1Kondo/info.json b/blockchains/solana/assets/cnc6M1zXLdrGR5LAQVcaJDfgezMiVWNtGQsVy1Kondo/info.json new file mode 100644 index 0000000000000..70dd01f40981e --- /dev/null +++ b/blockchains/solana/assets/cnc6M1zXLdrGR5LAQVcaJDfgezMiVWNtGQsVy1Kondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Charles Schwab (Ondo Tokenized)", + "type": "SPL", + "symbol": "SCHWon", + "decimals": 9, + "description": "SCHWon is the Ondo Tokenized version of Charles Schwab, giving tokenholders economic exposure similar to holding SCHW and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/cnc6M1zXLdrGR5LAQVcaJDfgezMiVWNtGQsVy1Kondo", + "status": "active", + "id": "cnc6M1zXLdrGR5LAQVcaJDfgezMiVWNtGQsVy1Kondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/charles-schwab-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/charles-schwab-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/cnc6M1zXLdrGR5LAQVcaJDfgezMiVWNtGQsVy1Kondo/logo.png b/blockchains/solana/assets/cnc6M1zXLdrGR5LAQVcaJDfgezMiVWNtGQsVy1Kondo/logo.png new file mode 100644 index 0000000000000..4fac0bdae8c74 Binary files /dev/null and b/blockchains/solana/assets/cnc6M1zXLdrGR5LAQVcaJDfgezMiVWNtGQsVy1Kondo/logo.png differ diff --git a/blockchains/solana/assets/cxxShYRVcepDudXhe7U62QHvw8uBJoKFifmzggGKVC2/info.json b/blockchains/solana/assets/cxxShYRVcepDudXhe7U62QHvw8uBJoKFifmzggGKVC2/info.json index c2f7911bed395..e231fd4a5e11b 100644 --- a/blockchains/solana/assets/cxxShYRVcepDudXhe7U62QHvw8uBJoKFifmzggGKVC2/info.json +++ b/blockchains/solana/assets/cxxShYRVcepDudXhe7U62QHvw8uBJoKFifmzggGKVC2/info.json @@ -10,8 +10,8 @@ "id": "cxxShYRVcepDudXhe7U62QHvw8uBJoKFifmzggGKVC2", "links": [ { - "name": "twitter", - "url": "https://twitter.com/SolChicksNFT" + "name": "x", + "url": "https://x.com/SolChicksNFT" }, { "name": "telegram", @@ -26,4 +26,4 @@ "nft", "gamefi" ] -} +} \ No newline at end of file diff --git a/blockchains/solana/assets/doPqjCxi6UkANkvMz5fSuYGEo5PGppVpTZMeB5vondo/info.json b/blockchains/solana/assets/doPqjCxi6UkANkvMz5fSuYGEo5PGppVpTZMeB5vondo/info.json new file mode 100644 index 0000000000000..2139667073a74 --- /dev/null +++ b/blockchains/solana/assets/doPqjCxi6UkANkvMz5fSuYGEo5PGppVpTZMeB5vondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Kanzhun (Ondo Tokenized)", + "type": "SPL", + "symbol": "BZon", + "decimals": 9, + "description": "BZon is the Ondo Tokenized version of Kanzhun, giving tokenholders economic exposure similar to holding BZ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/doPqjCxi6UkANkvMz5fSuYGEo5PGppVpTZMeB5vondo", + "status": "active", + "id": "doPqjCxi6UkANkvMz5fSuYGEo5PGppVpTZMeB5vondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kanzhun-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kanzhun-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/doPqjCxi6UkANkvMz5fSuYGEo5PGppVpTZMeB5vondo/logo.png b/blockchains/solana/assets/doPqjCxi6UkANkvMz5fSuYGEo5PGppVpTZMeB5vondo/logo.png new file mode 100644 index 0000000000000..b409555846521 Binary files /dev/null and b/blockchains/solana/assets/doPqjCxi6UkANkvMz5fSuYGEo5PGppVpTZMeB5vondo/logo.png differ diff --git a/blockchains/solana/assets/dwEPNKQab3iwRmjGvZPXhAmws1W5NsQGwuXwi8oondo/info.json b/blockchains/solana/assets/dwEPNKQab3iwRmjGvZPXhAmws1W5NsQGwuXwi8oondo/info.json new file mode 100644 index 0000000000000..a5f8bdd20ca4e --- /dev/null +++ b/blockchains/solana/assets/dwEPNKQab3iwRmjGvZPXhAmws1W5NsQGwuXwi8oondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Rigetti Computing (Ondo Tokenized)", + "type": "SPL", + "symbol": "RGTIon", + "decimals": 9, + "description": "RGTIon is the Ondo Tokenized version of Rigetti Computing, giving tokenholders economic exposure similar to holding RGTI and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/dwEPNKQab3iwRmjGvZPXhAmws1W5NsQGwuXwi8oondo", + "status": "active", + "id": "dwEPNKQab3iwRmjGvZPXhAmws1W5NsQGwuXwi8oondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/rigetti-computing-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rigetti-computing-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/dwEPNKQab3iwRmjGvZPXhAmws1W5NsQGwuXwi8oondo/logo.png b/blockchains/solana/assets/dwEPNKQab3iwRmjGvZPXhAmws1W5NsQGwuXwi8oondo/logo.png new file mode 100644 index 0000000000000..c9ccc6c6c8245 Binary files /dev/null and b/blockchains/solana/assets/dwEPNKQab3iwRmjGvZPXhAmws1W5NsQGwuXwi8oondo/logo.png differ diff --git a/blockchains/solana/assets/e8NFqLCMJBfDTUUARoniADgQtSEFmZNBksPxYzepump/info.json b/blockchains/solana/assets/e8NFqLCMJBfDTUUARoniADgQtSEFmZNBksPxYzepump/info.json new file mode 100644 index 0000000000000..c48497bdcf1c7 --- /dev/null +++ b/blockchains/solana/assets/e8NFqLCMJBfDTUUARoniADgQtSEFmZNBksPxYzepump/info.json @@ -0,0 +1,21 @@ +{ + "name": "gooch coin", + "website": "https://zerebro.org/conversation/b372b29e-ca6c-4bd1-8442-baf84dda8a2c", + "description": "Zerebro's most genius creation", + "explorer": "https://solscan.io/token/e8NFqLCMJBfDTUUARoniADgQtSEFmZNBksPxYzepump", + "type": "SPL", + "symbol": "gooch coin", + "decimals": 6, + "status": "active", + "id": "e8NFqLCMJBfDTUUARoniADgQtSEFmZNBksPxYzepump", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gooch-coin" + }, + { + "name": "x", + "url": "https://x.com/goochcoinsol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/e8NFqLCMJBfDTUUARoniADgQtSEFmZNBksPxYzepump/logo.png b/blockchains/solana/assets/e8NFqLCMJBfDTUUARoniADgQtSEFmZNBksPxYzepump/logo.png new file mode 100644 index 0000000000000..2fa11e37f6745 Binary files /dev/null and b/blockchains/solana/assets/e8NFqLCMJBfDTUUARoniADgQtSEFmZNBksPxYzepump/logo.png differ diff --git a/blockchains/solana/assets/eL5fUxj2J4CiQsmW85k5FG9DvuQjjUoBHoQBi2Kpump/info.json b/blockchains/solana/assets/eL5fUxj2J4CiQsmW85k5FG9DvuQjjUoBHoQBi2Kpump/info.json new file mode 100644 index 0000000000000..1605b85d5d822 --- /dev/null +++ b/blockchains/solana/assets/eL5fUxj2J4CiQsmW85k5FG9DvuQjjUoBHoQBi2Kpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Unicorn Fart Dust", + "website": "https://x.com/BasementRon", + "description": "Unicorn Fart Dust ($UFD) is the ultimate meme coin created by a boomer who's a gold and silver maxi.", + "explorer": "https://solscan.io/token/eL5fUxj2J4CiQsmW85k5FG9DvuQjjUoBHoQBi2Kpump", + "type": "SPL", + "symbol": "UFD", + "decimals": 6, + "status": "active", + "id": "eL5fUxj2J4CiQsmW85k5FG9DvuQjjUoBHoQBi2Kpump", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/unicorn-fart-dust" + }, + { + "name": "x", + "url": "https://x.com/BasementRon" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/eL5fUxj2J4CiQsmW85k5FG9DvuQjjUoBHoQBi2Kpump/logo.png b/blockchains/solana/assets/eL5fUxj2J4CiQsmW85k5FG9DvuQjjUoBHoQBi2Kpump/logo.png new file mode 100644 index 0000000000000..e6dd4732bd1fa Binary files /dev/null and b/blockchains/solana/assets/eL5fUxj2J4CiQsmW85k5FG9DvuQjjUoBHoQBi2Kpump/logo.png differ diff --git a/blockchains/solana/assets/edLdFJVVR532qhcrNTJjLAmhmyV7NsctbWVokMBondo/info.json b/blockchains/solana/assets/edLdFJVVR532qhcrNTJjLAmhmyV7NsctbWVokMBondo/info.json new file mode 100644 index 0000000000000..b32336cea1fd2 --- /dev/null +++ b/blockchains/solana/assets/edLdFJVVR532qhcrNTJjLAmhmyV7NsctbWVokMBondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Lowe's (Ondo Tokenized)", + "type": "SPL", + "symbol": "LOWon", + "decimals": 9, + "description": "LOWon is the Ondo Tokenized version of Lowe's, giving tokenholders economic exposure similar to holding LOW and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/edLdFJVVR532qhcrNTJjLAmhmyV7NsctbWVokMBondo", + "status": "active", + "id": "edLdFJVVR532qhcrNTJjLAmhmyV7NsctbWVokMBondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/lowe-s-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lowes-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/edLdFJVVR532qhcrNTJjLAmhmyV7NsctbWVokMBondo/logo.png b/blockchains/solana/assets/edLdFJVVR532qhcrNTJjLAmhmyV7NsctbWVokMBondo/logo.png new file mode 100644 index 0000000000000..925f46763f037 Binary files /dev/null and b/blockchains/solana/assets/edLdFJVVR532qhcrNTJjLAmhmyV7NsctbWVokMBondo/logo.png differ diff --git a/blockchains/solana/assets/ekoF5HCw3bzRb9JHbWf942Hqj3JffAYCzY93hgLpump/info.json b/blockchains/solana/assets/ekoF5HCw3bzRb9JHbWf942Hqj3JffAYCzY93hgLpump/info.json new file mode 100644 index 0000000000000..382443aa76ff2 --- /dev/null +++ b/blockchains/solana/assets/ekoF5HCw3bzRb9JHbWf942Hqj3JffAYCzY93hgLpump/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE EURC", + "type": "SPL", + "symbol": "FAKE EURC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/ekoF5HCw3bzRb9JHbWf942Hqj3JffAYCzY93hgLpump", + "explorer": "https://solscan.io/token/ekoF5HCw3bzRb9JHbWf942Hqj3JffAYCzY93hgLpump", + "status": "spam", + "id": "ekoF5HCw3bzRb9JHbWf942Hqj3JffAYCzY93hgLpump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/exYfSJt6Fgfhfnp3bAD4roYy97hLF9npjYaLyEXondo/info.json b/blockchains/solana/assets/exYfSJt6Fgfhfnp3bAD4roYy97hLF9npjYaLyEXondo/info.json new file mode 100644 index 0000000000000..004e2c0abcfb4 --- /dev/null +++ b/blockchains/solana/assets/exYfSJt6Fgfhfnp3bAD4roYy97hLF9npjYaLyEXondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Terawulf (Ondo Tokenized)", + "type": "SPL", + "symbol": "WULFon", + "decimals": 9, + "description": "WULFon is the Ondo Tokenized version of Terawulf, giving tokenholders economic exposure similar to holding WULF and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/exYfSJt6Fgfhfnp3bAD4roYy97hLF9npjYaLyEXondo", + "status": "active", + "id": "exYfSJt6Fgfhfnp3bAD4roYy97hLF9npjYaLyEXondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/terawulf-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/terawulf-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/exYfSJt6Fgfhfnp3bAD4roYy97hLF9npjYaLyEXondo/logo.png b/blockchains/solana/assets/exYfSJt6Fgfhfnp3bAD4roYy97hLF9npjYaLyEXondo/logo.png new file mode 100644 index 0000000000000..9346b7f17a2cb Binary files /dev/null and b/blockchains/solana/assets/exYfSJt6Fgfhfnp3bAD4roYy97hLF9npjYaLyEXondo/logo.png differ diff --git a/blockchains/solana/assets/gbHFTMkuMQUy5xrgoCBdaQ2XYvNyjWAYcnRPh9Condo/info.json b/blockchains/solana/assets/gbHFTMkuMQUy5xrgoCBdaQ2XYvNyjWAYcnRPh9Condo/info.json new file mode 100644 index 0000000000000..d0f0cb91b5b6d --- /dev/null +++ b/blockchains/solana/assets/gbHFTMkuMQUy5xrgoCBdaQ2XYvNyjWAYcnRPh9Condo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Opera (Ondo Tokenized)", + "type": "SPL", + "symbol": "OPRAon", + "decimals": 9, + "description": "OPRAon is the Ondo Tokenized version of Opera, giving tokenholders economic exposure similar to holding OPRA and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/gbHFTMkuMQUy5xrgoCBdaQ2XYvNyjWAYcnRPh9Condo", + "status": "active", + "id": "gbHFTMkuMQUy5xrgoCBdaQ2XYvNyjWAYcnRPh9Condo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/opera-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/opera-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/gbHFTMkuMQUy5xrgoCBdaQ2XYvNyjWAYcnRPh9Condo/logo.png b/blockchains/solana/assets/gbHFTMkuMQUy5xrgoCBdaQ2XYvNyjWAYcnRPh9Condo/logo.png new file mode 100644 index 0000000000000..493195c54bef4 Binary files /dev/null and b/blockchains/solana/assets/gbHFTMkuMQUy5xrgoCBdaQ2XYvNyjWAYcnRPh9Condo/logo.png differ diff --git a/blockchains/solana/assets/gnoSQSNTNZHViqVfxCcPDVxcRA29mrJL7C6JqYLondo/info.json b/blockchains/solana/assets/gnoSQSNTNZHViqVfxCcPDVxcRA29mrJL7C6JqYLondo/info.json new file mode 100644 index 0000000000000..ef73dbbc34f6d --- /dev/null +++ b/blockchains/solana/assets/gnoSQSNTNZHViqVfxCcPDVxcRA29mrJL7C6JqYLondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "WisdomTree US Quality Dividend Growth Fund (Ondo Tokenized)", + "type": "SPL", + "symbol": "DGRWon", + "decimals": 9, + "description": "DGRWon is the Ondo Tokenized version of the WisdomTree US Quality Dividend Growth Fund, giving tokenholders economic exposure similar to holding DGRW and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/gnoSQSNTNZHViqVfxCcPDVxcRA29mrJL7C6JqYLondo", + "status": "active", + "id": "gnoSQSNTNZHViqVfxCcPDVxcRA29mrJL7C6JqYLondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wisdomtree-us-quality-dividend-growth-fund-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wisdomtree-us-quality-dividend-growth-tokenized-fund-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/gnoSQSNTNZHViqVfxCcPDVxcRA29mrJL7C6JqYLondo/logo.png b/blockchains/solana/assets/gnoSQSNTNZHViqVfxCcPDVxcRA29mrJL7C6JqYLondo/logo.png new file mode 100644 index 0000000000000..54ad30b97e82e Binary files /dev/null and b/blockchains/solana/assets/gnoSQSNTNZHViqVfxCcPDVxcRA29mrJL7C6JqYLondo/logo.png differ diff --git a/blockchains/solana/assets/gwn1WqaNBwUops4kd2MBNiDh9sqjb6LBSTY7bVuEQgD/info.json b/blockchains/solana/assets/gwn1WqaNBwUops4kd2MBNiDh9sqjb6LBSTY7bVuEQgD/info.json new file mode 100644 index 0000000000000..cc0556489c030 --- /dev/null +++ b/blockchains/solana/assets/gwn1WqaNBwUops4kd2MBNiDh9sqjb6LBSTY7bVuEQgD/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT USDT", + "type": "SPL", + "symbol": "HONEYPOT USDT", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/gwn1WqaNBwUops4kd2MBNiDh9sqjb6LBSTY7bVuEQgD", + "explorer": "https://solscan.io/token/gwn1WqaNBwUops4kd2MBNiDh9sqjb6LBSTY7bVuEQgD", + "status": "spam", + "id": "gwn1WqaNBwUops4kd2MBNiDh9sqjb6LBSTY7bVuEQgD" +} \ No newline at end of file diff --git a/blockchains/solana/assets/h6MW8GFpfzxFa1JNn6hZNnBF3t4fj9SHAXKy6LXondo/info.json b/blockchains/solana/assets/h6MW8GFpfzxFa1JNn6hZNnBF3t4fj9SHAXKy6LXondo/info.json new file mode 100644 index 0000000000000..7356839b780d9 --- /dev/null +++ b/blockchains/solana/assets/h6MW8GFpfzxFa1JNn6hZNnBF3t4fj9SHAXKy6LXondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Vistra (Ondo Tokenized)", + "type": "SPL", + "symbol": "VSTon", + "decimals": 9, + "description": "VSTon is the Ondo Tokenized version of Vistra, giving tokenholders economic exposure similar to holding VST and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/h6MW8GFpfzxFa1JNn6hZNnBF3t4fj9SHAXKy6LXondo", + "status": "active", + "id": "h6MW8GFpfzxFa1JNn6hZNnBF3t4fj9SHAXKy6LXondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vistra-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vistra-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/h6MW8GFpfzxFa1JNn6hZNnBF3t4fj9SHAXKy6LXondo/logo.png b/blockchains/solana/assets/h6MW8GFpfzxFa1JNn6hZNnBF3t4fj9SHAXKy6LXondo/logo.png new file mode 100644 index 0000000000000..c9f474e3e0262 Binary files /dev/null and b/blockchains/solana/assets/h6MW8GFpfzxFa1JNn6hZNnBF3t4fj9SHAXKy6LXondo/logo.png differ diff --git a/blockchains/solana/assets/hTRDn7zE5tDHRnjj6Qms2WG1zEGv9ii6AiwfgbFpump/info.json b/blockchains/solana/assets/hTRDn7zE5tDHRnjj6Qms2WG1zEGv9ii6AiwfgbFpump/info.json new file mode 100644 index 0000000000000..674c64f1692a6 --- /dev/null +++ b/blockchains/solana/assets/hTRDn7zE5tDHRnjj6Qms2WG1zEGv9ii6AiwfgbFpump/info.json @@ -0,0 +1,17 @@ +{ + "name": "Deep AI", + "type": "SPL", + "symbol": "DEEP", + "decimals": 6, + "website": "https://deep-ai.pro/", + "description": "Discover a world of creativity anew with hundreds of AI models on one platform", + "explorer": "https://solscan.io/token/hTRDn7zE5tDHRnjj6Qms2WG1zEGv9ii6AiwfgbFpump", + "status": "active", + "id": "hTRDn7zE5tDHRnjj6Qms2WG1zEGv9ii6AiwfgbFpump", + "links": [ + { + "name": "x", + "url": "https://x.com/Deep_AI_Solana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/hTRDn7zE5tDHRnjj6Qms2WG1zEGv9ii6AiwfgbFpump/logo.png b/blockchains/solana/assets/hTRDn7zE5tDHRnjj6Qms2WG1zEGv9ii6AiwfgbFpump/logo.png new file mode 100644 index 0000000000000..415779ace6314 Binary files /dev/null and b/blockchains/solana/assets/hTRDn7zE5tDHRnjj6Qms2WG1zEGv9ii6AiwfgbFpump/logo.png differ diff --git a/blockchains/solana/assets/hWfiw4mcxT8rnNFkk6fsCQSxoxgZ9yVhB6tyeVcondo/info.json b/blockchains/solana/assets/hWfiw4mcxT8rnNFkk6fsCQSxoxgZ9yVhB6tyeVcondo/info.json new file mode 100644 index 0000000000000..7e7213fc273db --- /dev/null +++ b/blockchains/solana/assets/hWfiw4mcxT8rnNFkk6fsCQSxoxgZ9yVhB6tyeVcondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "SPDR Gold Shares (Ondo Tokenized)", + "type": "SPL", + "symbol": "GLDon", + "decimals": 9, + "description": "GLDon is the Ondo Tokenized version of the SPDR Gold Shares, giving tokenholders economic exposure similar to holding GLD and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/hWfiw4mcxT8rnNFkk6fsCQSxoxgZ9yVhB6tyeVcondo", + "status": "active", + "id": "hWfiw4mcxT8rnNFkk6fsCQSxoxgZ9yVhB6tyeVcondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/spdr-gold-shares-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spdr-gold-shares-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/hWfiw4mcxT8rnNFkk6fsCQSxoxgZ9yVhB6tyeVcondo/logo.png b/blockchains/solana/assets/hWfiw4mcxT8rnNFkk6fsCQSxoxgZ9yVhB6tyeVcondo/logo.png new file mode 100644 index 0000000000000..1153d70d28a0e Binary files /dev/null and b/blockchains/solana/assets/hWfiw4mcxT8rnNFkk6fsCQSxoxgZ9yVhB6tyeVcondo/logo.png differ diff --git a/blockchains/solana/assets/hntyVP6YFm1Hg25TN9WGLqM12b8TQmcknKrdu1oxWux/info.json b/blockchains/solana/assets/hntyVP6YFm1Hg25TN9WGLqM12b8TQmcknKrdu1oxWux/info.json new file mode 100644 index 0000000000000..04791c54f676a --- /dev/null +++ b/blockchains/solana/assets/hntyVP6YFm1Hg25TN9WGLqM12b8TQmcknKrdu1oxWux/info.json @@ -0,0 +1,21 @@ +{ + "name": "Helium", + "website": "https://www.helium.com", + "description": "Helium (HNT) is a decentralized blockchain-powered network for Internet of Things (IoT) devices.", + "explorer": "https://solscan.io/token/hntyVP6YFm1Hg25TN9WGLqM12b8TQmcknKrdu1oxWux", + "type": "SPL", + "symbol": "HNT", + "decimals": 8, + "status": "active", + "id": "hntyVP6YFm1Hg25TN9WGLqM12b8TQmcknKrdu1oxWux", + "links": [ + { + "name": "x", + "url": "https://x.com/helium" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/helium/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/hntyVP6YFm1Hg25TN9WGLqM12b8TQmcknKrdu1oxWux/logo.png b/blockchains/solana/assets/hntyVP6YFm1Hg25TN9WGLqM12b8TQmcknKrdu1oxWux/logo.png new file mode 100644 index 0000000000000..993296affee73 Binary files /dev/null and b/blockchains/solana/assets/hntyVP6YFm1Hg25TN9WGLqM12b8TQmcknKrdu1oxWux/logo.png differ diff --git a/blockchains/solana/assets/igu1coP6n3GPaWmbd8J9Z7UAyLpV254uQFFNfydondo/info.json b/blockchains/solana/assets/igu1coP6n3GPaWmbd8J9Z7UAyLpV254uQFFNfydondo/info.json new file mode 100644 index 0000000000000..6e63f474183fa --- /dev/null +++ b/blockchains/solana/assets/igu1coP6n3GPaWmbd8J9Z7UAyLpV254uQFFNfydondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Verizon (Ondo Tokenized)", + "type": "SPL", + "symbol": "VZon", + "decimals": 9, + "description": "VZon is the Ondo Tokenized version of Verizon, giving tokenholders economic exposure similar to holding VZ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/igu1coP6n3GPaWmbd8J9Z7UAyLpV254uQFFNfydondo", + "status": "active", + "id": "igu1coP6n3GPaWmbd8J9Z7UAyLpV254uQFFNfydondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/verizon-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/verizon-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/igu1coP6n3GPaWmbd8J9Z7UAyLpV254uQFFNfydondo/logo.png b/blockchains/solana/assets/igu1coP6n3GPaWmbd8J9Z7UAyLpV254uQFFNfydondo/logo.png new file mode 100644 index 0000000000000..2b78123fa0c7e Binary files /dev/null and b/blockchains/solana/assets/igu1coP6n3GPaWmbd8J9Z7UAyLpV254uQFFNfydondo/logo.png differ diff --git a/blockchains/solana/assets/inTCqHJaLAETUxvRZ2kC45G2sThq9BFWVimfaQw7t6w/info.json b/blockchains/solana/assets/inTCqHJaLAETUxvRZ2kC45G2sThq9BFWVimfaQw7t6w/info.json new file mode 100644 index 0000000000000..bf0270debfc08 --- /dev/null +++ b/blockchains/solana/assets/inTCqHJaLAETUxvRZ2kC45G2sThq9BFWVimfaQw7t6w/info.json @@ -0,0 +1,21 @@ +{ + "name": "1INTRO", + "website": "https://www.1intro.com/", + "description": "All-in-1 Liquidity Nexus on Solana, powered by AI", + "explorer": "https://solscan.io/token/inTCqHJaLAETUxvRZ2kC45G2sThq9BFWVimfaQw7t6w", + "type": "SPL", + "symbol": "INTRO", + "decimals": 9, + "status": "active", + "id": "inTCqHJaLAETUxvRZ2kC45G2sThq9BFWVimfaQw7t6w", + "links": [ + { + "name": "x", + "url": "https://x.com/1intro" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/1intro/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/inTCqHJaLAETUxvRZ2kC45G2sThq9BFWVimfaQw7t6w/logo.png b/blockchains/solana/assets/inTCqHJaLAETUxvRZ2kC45G2sThq9BFWVimfaQw7t6w/logo.png new file mode 100644 index 0000000000000..966f39c8de349 Binary files /dev/null and b/blockchains/solana/assets/inTCqHJaLAETUxvRZ2kC45G2sThq9BFWVimfaQw7t6w/logo.png differ diff --git a/blockchains/solana/assets/ivBnfPTyuHDNWmMSnbavckhJK6SHZW8h77nZKsEondo/info.json b/blockchains/solana/assets/ivBnfPTyuHDNWmMSnbavckhJK6SHZW8h77nZKsEondo/info.json new file mode 100644 index 0000000000000..974c7b000d7c0 --- /dev/null +++ b/blockchains/solana/assets/ivBnfPTyuHDNWmMSnbavckhJK6SHZW8h77nZKsEondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "First Trust Global Tactical Commodity Strategy Fund (Ondo Tokenized)", + "type": "SPL", + "symbol": "FTGCon", + "decimals": 9, + "description": "FTGCon is the Ondo Tokenized version of the First Trust Global Tactical Commodity Strategy Fund, giving tokenholders economic exposure similar to holding FTGC and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/ivBnfPTyuHDNWmMSnbavckhJK6SHZW8h77nZKsEondo", + "status": "active", + "id": "ivBnfPTyuHDNWmMSnbavckhJK6SHZW8h77nZKsEondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/first-trust-global-tactical-commodity-strategy-fund-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/first-trust-global-commodity-tokenized-fund-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/ivBnfPTyuHDNWmMSnbavckhJK6SHZW8h77nZKsEondo/logo.png b/blockchains/solana/assets/ivBnfPTyuHDNWmMSnbavckhJK6SHZW8h77nZKsEondo/logo.png new file mode 100644 index 0000000000000..2e8d3686761c8 Binary files /dev/null and b/blockchains/solana/assets/ivBnfPTyuHDNWmMSnbavckhJK6SHZW8h77nZKsEondo/logo.png differ diff --git a/blockchains/solana/assets/jCCU4GwukjNxAXJowG2S4KCrr5g6YyUB61WHYvGondo/info.json b/blockchains/solana/assets/jCCU4GwukjNxAXJowG2S4KCrr5g6YyUB61WHYvGondo/info.json new file mode 100644 index 0000000000000..5a332fe10432d --- /dev/null +++ b/blockchains/solana/assets/jCCU4GwukjNxAXJowG2S4KCrr5g6YyUB61WHYvGondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Vanguard Total Stock Market ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "VTIon", + "decimals": 9, + "description": "VTIon is the Ondo Tokenized version of the Vanguard Total Stock Market ETF, giving tokenholders economic exposure similar to holding VTI and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/jCCU4GwukjNxAXJowG2S4KCrr5g6YyUB61WHYvGondo", + "status": "active", + "id": "jCCU4GwukjNxAXJowG2S4KCrr5g6YyUB61WHYvGondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vanguard-total-stock-market-etf-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vanguard-total-stock-market-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/jCCU4GwukjNxAXJowG2S4KCrr5g6YyUB61WHYvGondo/logo.png b/blockchains/solana/assets/jCCU4GwukjNxAXJowG2S4KCrr5g6YyUB61WHYvGondo/logo.png new file mode 100644 index 0000000000000..c8b7fdf9aa10b Binary files /dev/null and b/blockchains/solana/assets/jCCU4GwukjNxAXJowG2S4KCrr5g6YyUB61WHYvGondo/logo.png differ diff --git a/blockchains/solana/assets/jUpa2aDCzvdR9EF4fqDXmuyMUkonPTohphABLmRkRFj/info.json b/blockchains/solana/assets/jUpa2aDCzvdR9EF4fqDXmuyMUkonPTohphABLmRkRFj/info.json new file mode 100644 index 0000000000000..ff956f79caff1 --- /dev/null +++ b/blockchains/solana/assets/jUpa2aDCzvdR9EF4fqDXmuyMUkonPTohphABLmRkRFj/info.json @@ -0,0 +1,21 @@ +{ + "name": "RIFT AI", + "symbol": "RIFT", + "type": "SPL", + "decimals": 6, + "description": "The Rift Platform is the “Shopify App Store for AI Agents” - developers can create and sell AI modules that can be assigned to an agent to give that agent new functionality in a few clicks.", + "website": "https://rift.ai", + "explorer": "https://solscan.io/token/jUpa2aDCzvdR9EF4fqDXmuyMUkonPTohphABLmRkRFj", + "status": "active", + "id": "jUpa2aDCzvdR9EF4fqDXmuyMUkonPTohphABLmRkRFj", + "links": [ + { + "name": "discord", + "url": "https://discord.com/faraway" + }, + { + "name": "x", + "url": "https://x.com/fchainxyz" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/jUpa2aDCzvdR9EF4fqDXmuyMUkonPTohphABLmRkRFj/logo.png b/blockchains/solana/assets/jUpa2aDCzvdR9EF4fqDXmuyMUkonPTohphABLmRkRFj/logo.png new file mode 100644 index 0000000000000..24b97c57594bb Binary files /dev/null and b/blockchains/solana/assets/jUpa2aDCzvdR9EF4fqDXmuyMUkonPTohphABLmRkRFj/logo.png differ diff --git a/blockchains/solana/assets/jtojtomepa8beP8AuQc6eXt5FriJwfFMwQx2v2f9mCL/info.json b/blockchains/solana/assets/jtojtomepa8beP8AuQc6eXt5FriJwfFMwQx2v2f9mCL/info.json new file mode 100644 index 0000000000000..755517bab6876 --- /dev/null +++ b/blockchains/solana/assets/jtojtomepa8beP8AuQc6eXt5FriJwfFMwQx2v2f9mCL/info.json @@ -0,0 +1,29 @@ +{ + "name": "JITO", + "website": "https://www.jito.network/", + "description": "Jito Network is a major contributor to the Solana ecosystem through its JitoSOL liquid staking pool, and its collection of MEV products.", + "explorer": "https://solscan.io/token/jtojtomepa8beP8AuQc6eXt5FriJwfFMwQx2v2f9mCL", + "type": "SPL", + "symbol": "JTO", + "decimals": 9, + "status": "active", + "id": "jtojtomepa8beP8AuQc6eXt5FriJwfFMwQx2v2f9mCL", + "links": [ + { + "name": "x", + "url": "https://x.com/jito_sol" + }, + { + "name": "discord", + "url": "https://discord.com/invite/jito" + }, + { + "name": "telegram", + "url": "https://t.me/+csIgnEQMCHhiYjVh" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jito/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/jtojtomepa8beP8AuQc6eXt5FriJwfFMwQx2v2f9mCL/logo.png b/blockchains/solana/assets/jtojtomepa8beP8AuQc6eXt5FriJwfFMwQx2v2f9mCL/logo.png new file mode 100644 index 0000000000000..3edcdfe7c00e8 Binary files /dev/null and b/blockchains/solana/assets/jtojtomepa8beP8AuQc6eXt5FriJwfFMwQx2v2f9mCL/logo.png differ diff --git a/blockchains/solana/assets/kinXdEcpDQeHPEuQnqmUgtYykqKGVFq6CeVX5iAHJq6/info.json b/blockchains/solana/assets/kinXdEcpDQeHPEuQnqmUgtYykqKGVFq6CeVX5iAHJq6/info.json index 4aa16dfdb838c..3d30c00c675aa 100644 --- a/blockchains/solana/assets/kinXdEcpDQeHPEuQnqmUgtYykqKGVFq6CeVX5iAHJq6/info.json +++ b/blockchains/solana/assets/kinXdEcpDQeHPEuQnqmUgtYykqKGVFq6CeVX5iAHJq6/info.json @@ -14,8 +14,8 @@ "url": "https://kin.org/news" }, { - "name": "twitter", - "url": "https://twitter.com/kin_ecosystem" + "name": "x", + "url": "https://x.com/kin_ecosystem" }, { "name": "reddit", @@ -30,4 +30,4 @@ "url": "https://coingecko.com/en/coins/kin" } ] -} +} \ No newline at end of file diff --git a/blockchains/solana/assets/m6oDLvJT7rY7M1TxuLWP3pWmAPg2cCWDQR1NKiEondo/info.json b/blockchains/solana/assets/m6oDLvJT7rY7M1TxuLWP3pWmAPg2cCWDQR1NKiEondo/info.json new file mode 100644 index 0000000000000..00f273821f65f --- /dev/null +++ b/blockchains/solana/assets/m6oDLvJT7rY7M1TxuLWP3pWmAPg2cCWDQR1NKiEondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Oklo (Ondo Tokenized)", + "type": "SPL", + "symbol": "OKLOon", + "decimals": 9, + "description": "OKLOon is the Ondo Tokenized version of Oklo, giving tokenholders economic exposure similar to holding OKLO and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/m6oDLvJT7rY7M1TxuLWP3pWmAPg2cCWDQR1NKiEondo", + "status": "active", + "id": "m6oDLvJT7rY7M1TxuLWP3pWmAPg2cCWDQR1NKiEondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/oklo-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/oklo-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/m6oDLvJT7rY7M1TxuLWP3pWmAPg2cCWDQR1NKiEondo/logo.png b/blockchains/solana/assets/m6oDLvJT7rY7M1TxuLWP3pWmAPg2cCWDQR1NKiEondo/logo.png new file mode 100644 index 0000000000000..9bfe6ec7b0b65 Binary files /dev/null and b/blockchains/solana/assets/m6oDLvJT7rY7M1TxuLWP3pWmAPg2cCWDQR1NKiEondo/logo.png differ diff --git a/blockchains/solana/assets/m9GcsVgdjaL3KsdtSFHimnhtsUMpTHkjtwEG4Tzondo/info.json b/blockchains/solana/assets/m9GcsVgdjaL3KsdtSFHimnhtsUMpTHkjtwEG4Tzondo/info.json new file mode 100644 index 0000000000000..20f7f5dacae20 --- /dev/null +++ b/blockchains/solana/assets/m9GcsVgdjaL3KsdtSFHimnhtsUMpTHkjtwEG4Tzondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Grab Holdings (Ondo Tokenized)", + "type": "SPL", + "symbol": "GRABon", + "decimals": 9, + "description": "GRABon is the Ondo Tokenized version of Grab Holdings, giving tokenholders economic exposure similar to holding GRAB and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/m9GcsVgdjaL3KsdtSFHimnhtsUMpTHkjtwEG4Tzondo", + "status": "active", + "id": "m9GcsVgdjaL3KsdtSFHimnhtsUMpTHkjtwEG4Tzondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/grab-holdings-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/grab-holdings-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/m9GcsVgdjaL3KsdtSFHimnhtsUMpTHkjtwEG4Tzondo/logo.png b/blockchains/solana/assets/m9GcsVgdjaL3KsdtSFHimnhtsUMpTHkjtwEG4Tzondo/logo.png new file mode 100644 index 0000000000000..2a02e71a43ced Binary files /dev/null and b/blockchains/solana/assets/m9GcsVgdjaL3KsdtSFHimnhtsUMpTHkjtwEG4Tzondo/logo.png differ diff --git a/blockchains/solana/assets/mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So/info.json b/blockchains/solana/assets/mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So/info.json index 2ba5b0115d52f..c4dc21696749c 100644 --- a/blockchains/solana/assets/mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So/info.json +++ b/blockchains/solana/assets/mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So/info.json @@ -14,8 +14,8 @@ "url": "https://coingecko.com/en/coins/marinade-staked-sol" }, { - "name": "twitter", - "url": "https://twitter.com/MarinadeFinance" + "name": "x", + "url": "https://x.com/MarinadeFinance" } ] } \ No newline at end of file diff --git a/blockchains/solana/assets/madHpjRn6bd8t78Rsy7NuSuNwWa2HU8ByPobZprHbHv/info.json b/blockchains/solana/assets/madHpjRn6bd8t78Rsy7NuSuNwWa2HU8ByPobZprHbHv/info.json new file mode 100644 index 0000000000000..91e3f39a52c14 --- /dev/null +++ b/blockchains/solana/assets/madHpjRn6bd8t78Rsy7NuSuNwWa2HU8ByPobZprHbHv/info.json @@ -0,0 +1,21 @@ +{ + "name": "MAD", + "type": "SPL", + "symbol": "MAD", + "decimals": 6, + "website": "https://www.madcoin.vip/", + "description": "$MAD - The Wild Degen who hustles hard and parties harder 😈 Join the #MemesAfterDark Degen Movement!", + "explorer": "https://solscan.io/token/madHpjRn6bd8t78Rsy7NuSuNwWa2HU8ByPobZprHbHv", + "status": "active", + "id": "madHpjRn6bd8t78Rsy7NuSuNwWa2HU8ByPobZprHbHv", + "links": [ + { + "name": "x", + "url": "https://x.com/madcoinvip" + }, + { + "name": "telegram", + "url": "https://t.me/MadCoinVip" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/madHpjRn6bd8t78Rsy7NuSuNwWa2HU8ByPobZprHbHv/logo.png b/blockchains/solana/assets/madHpjRn6bd8t78Rsy7NuSuNwWa2HU8ByPobZprHbHv/logo.png new file mode 100644 index 0000000000000..46c5e63055423 Binary files /dev/null and b/blockchains/solana/assets/madHpjRn6bd8t78Rsy7NuSuNwWa2HU8ByPobZprHbHv/logo.png differ diff --git a/blockchains/solana/assets/mb1eu7TzEc71KxDpsmsKoucSSuuoGLv1drys1oP2jh6/info.json b/blockchains/solana/assets/mb1eu7TzEc71KxDpsmsKoucSSuuoGLv1drys1oP2jh6/info.json new file mode 100644 index 0000000000000..d443623df888b --- /dev/null +++ b/blockchains/solana/assets/mb1eu7TzEc71KxDpsmsKoucSSuuoGLv1drys1oP2jh6/info.json @@ -0,0 +1,21 @@ +{ + "name": "Helium Mobile", + "symbol": "MOBILE", + "type": "SPL", + "decimals": 6, + "description": "The Helium Network is a decentralized, blockchain-based wireless infrastructure project that allows individuals and organizations to deploy and operate wireless networks through token incentivization", + "website": "https://www.helium.com", + "explorer": "https://solscan.io/token/mb1eu7TzEc71KxDpsmsKoucSSuuoGLv1drys1oP2jh6", + "status": "active", + "id": "mb1eu7TzEc71KxDpsmsKoucSSuuoGLv1drys1oP2jh6", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/helium-mobile/" + }, + { + "name": "x", + "url": "https://x.com/helium" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/mb1eu7TzEc71KxDpsmsKoucSSuuoGLv1drys1oP2jh6/logo.png b/blockchains/solana/assets/mb1eu7TzEc71KxDpsmsKoucSSuuoGLv1drys1oP2jh6/logo.png new file mode 100644 index 0000000000000..4182240a6e235 Binary files /dev/null and b/blockchains/solana/assets/mb1eu7TzEc71KxDpsmsKoucSSuuoGLv1drys1oP2jh6/logo.png differ diff --git a/blockchains/solana/assets/mhZ69E1vDnAsQJXAwarLYSX5tmgeMajXBJ2rXAcondo/info.json b/blockchains/solana/assets/mhZ69E1vDnAsQJXAwarLYSX5tmgeMajXBJ2rXAcondo/info.json new file mode 100644 index 0000000000000..184cc6a89b6d1 --- /dev/null +++ b/blockchains/solana/assets/mhZ69E1vDnAsQJXAwarLYSX5tmgeMajXBJ2rXAcondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "iShares Flexible Income Active ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "BINCon", + "decimals": 9, + "description": "BINCon is the Ondo Tokenized version of the iShares Flexible Income Active ETF, giving tokenholders economic exposure similar to holding BINC and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/mhZ69E1vDnAsQJXAwarLYSX5tmgeMajXBJ2rXAcondo", + "status": "active", + "id": "mhZ69E1vDnAsQJXAwarLYSX5tmgeMajXBJ2rXAcondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-flexible-income-active-etf-ondo-tokenized-etf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-flexible-income-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/mhZ69E1vDnAsQJXAwarLYSX5tmgeMajXBJ2rXAcondo/logo.png b/blockchains/solana/assets/mhZ69E1vDnAsQJXAwarLYSX5tmgeMajXBJ2rXAcondo/logo.png new file mode 100644 index 0000000000000..8c3d69ffb4bb3 Binary files /dev/null and b/blockchains/solana/assets/mhZ69E1vDnAsQJXAwarLYSX5tmgeMajXBJ2rXAcondo/logo.png differ diff --git a/blockchains/solana/assets/mkvXiNBpa8uiSApe5BrhWVJaT87pJFTZxRy7zFapump/info.json b/blockchains/solana/assets/mkvXiNBpa8uiSApe5BrhWVJaT87pJFTZxRy7zFapump/info.json new file mode 100644 index 0000000000000..87d38a07c3002 --- /dev/null +++ b/blockchains/solana/assets/mkvXiNBpa8uiSApe5BrhWVJaT87pJFTZxRy7zFapump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Nailong", + "website": "https://nailong.life/", + "description": "I apply to join your life.", + "explorer": "https://solscan.io/token/mkvXiNBpa8uiSApe5BrhWVJaT87pJFTZxRy7zFapump", + "type": "SPL", + "symbol": "Nailong", + "decimals": 6, + "status": "active", + "id": "mkvXiNBpa8uiSApe5BrhWVJaT87pJFTZxRy7zFapump", + "links": [ + { + "name": "x", + "url": "https://x.com/nailongsol" + }, + { + "name": "telegram", + "url": "https://t.me/nailong_sol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/mkvXiNBpa8uiSApe5BrhWVJaT87pJFTZxRy7zFapump/logo.png b/blockchains/solana/assets/mkvXiNBpa8uiSApe5BrhWVJaT87pJFTZxRy7zFapump/logo.png new file mode 100644 index 0000000000000..c60d0c1207c9f Binary files /dev/null and b/blockchains/solana/assets/mkvXiNBpa8uiSApe5BrhWVJaT87pJFTZxRy7zFapump/logo.png differ diff --git a/blockchains/solana/assets/mpoxP5wyoR3eRW8L9bZjGPFtCsmX8WcqU5BHxFW1xkn/info.json b/blockchains/solana/assets/mpoxP5wyoR3eRW8L9bZjGPFtCsmX8WcqU5BHxFW1xkn/info.json new file mode 100644 index 0000000000000..46cf5fdf51b94 --- /dev/null +++ b/blockchains/solana/assets/mpoxP5wyoR3eRW8L9bZjGPFtCsmX8WcqU5BHxFW1xkn/info.json @@ -0,0 +1,17 @@ +{ + "name": "Monkey Pox", + "website": "https://www.monkeypoxtoken.com/", + "description": "POX is an SPL-404 token on Solana, blending memecoin and NFT cultures into one", + "explorer": "https://solscan.io/token/mpoxP5wyoR3eRW8L9bZjGPFtCsmX8WcqU5BHxFW1xkn", + "type": "SPL", + "symbol": "POX", + "decimals": 9, + "status": "active", + "id": "mpoxP5wyoR3eRW8L9bZjGPFtCsmX8WcqU5BHxFW1xkn", + "links": [ + { + "name": "x", + "url": "https://x.com/monkeypoxsol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/mpoxP5wyoR3eRW8L9bZjGPFtCsmX8WcqU5BHxFW1xkn/logo.png b/blockchains/solana/assets/mpoxP5wyoR3eRW8L9bZjGPFtCsmX8WcqU5BHxFW1xkn/logo.png new file mode 100644 index 0000000000000..7689c51f36acc Binary files /dev/null and b/blockchains/solana/assets/mpoxP5wyoR3eRW8L9bZjGPFtCsmX8WcqU5BHxFW1xkn/logo.png differ diff --git a/blockchains/solana/assets/mqL8yXQpeSvc7NgrAtLLPtRvUiWyLoG5RWLv16iondo/info.json b/blockchains/solana/assets/mqL8yXQpeSvc7NgrAtLLPtRvUiWyLoG5RWLv16iondo/info.json new file mode 100644 index 0000000000000..37a6f452e6f5e --- /dev/null +++ b/blockchains/solana/assets/mqL8yXQpeSvc7NgrAtLLPtRvUiWyLoG5RWLv16iondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "SoFi Technologies (Ondo)", + "type": "SPL", + "symbol": "SOFIon", + "decimals": 9, + "description": "SOFIon is the Ondo Tokenized version of SoFi Technologies, giving tokenholders economic exposure similar to holding SOFI and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/mqL8yXQpeSvc7NgrAtLLPtRvUiWyLoG5RWLv16iondo", + "status": "active", + "id": "mqL8yXQpeSvc7NgrAtLLPtRvUiWyLoG5RWLv16iondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sofi-technologies-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sofi-technologies-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/mqL8yXQpeSvc7NgrAtLLPtRvUiWyLoG5RWLv16iondo/logo.png b/blockchains/solana/assets/mqL8yXQpeSvc7NgrAtLLPtRvUiWyLoG5RWLv16iondo/logo.png new file mode 100644 index 0000000000000..dcd5cc8df6dbc Binary files /dev/null and b/blockchains/solana/assets/mqL8yXQpeSvc7NgrAtLLPtRvUiWyLoG5RWLv16iondo/logo.png differ diff --git a/blockchains/solana/assets/node3SHFNF7h6N9jbztfVcXrZcvAJdns1xAV8CbYFLG/info.json b/blockchains/solana/assets/node3SHFNF7h6N9jbztfVcXrZcvAJdns1xAV8CbYFLG/info.json new file mode 100644 index 0000000000000..85dd84dc24a69 --- /dev/null +++ b/blockchains/solana/assets/node3SHFNF7h6N9jbztfVcXrZcvAJdns1xAV8CbYFLG/info.json @@ -0,0 +1,17 @@ +{ + "name": "Ligma Node", + "type": "SPL", + "symbol": "LIGMA", + "decimals": 6, + "website": "https://ligmanode.com", + "description": "The fastest private nodes on Solana.", + "explorer": "https://solscan.io/token/node3SHFNF7h6N9jbztfVcXrZcvAJdns1xAV8CbYFLG", + "status": "active", + "id": "node3SHFNF7h6N9jbztfVcXrZcvAJdns1xAV8CbYFLG", + "links": [ + { + "name": "x", + "url": "https://x.com/ligmanode" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/node3SHFNF7h6N9jbztfVcXrZcvAJdns1xAV8CbYFLG/logo.png b/blockchains/solana/assets/node3SHFNF7h6N9jbztfVcXrZcvAJdns1xAV8CbYFLG/logo.png new file mode 100644 index 0000000000000..0e7e589077eb6 Binary files /dev/null and b/blockchains/solana/assets/node3SHFNF7h6N9jbztfVcXrZcvAJdns1xAV8CbYFLG/logo.png differ diff --git a/blockchains/solana/assets/nosXBVoaCTtYdLvKY6Csb4AC8JCdQKKAaWYtx2ZMoo7/info.json b/blockchains/solana/assets/nosXBVoaCTtYdLvKY6Csb4AC8JCdQKKAaWYtx2ZMoo7/info.json new file mode 100644 index 0000000000000..08836c7204439 --- /dev/null +++ b/blockchains/solana/assets/nosXBVoaCTtYdLvKY6Csb4AC8JCdQKKAaWYtx2ZMoo7/info.json @@ -0,0 +1,21 @@ +{ + "name": "Nosana", + "type": "SPL", + "symbol": "NOS", + "decimals": 6, + "website": "https://nosana.io", + "description": "Nosana will democratize GPU cloud computing. They privode companies with more accessible and affordable compute power for running AI.", + "explorer": "https://solscan.io/token/nosXBVoaCTtYdLvKY6Csb4AC8JCdQKKAaWYtx2ZMoo7", + "status": "active", + "id": "nosXBVoaCTtYdLvKY6Csb4AC8JCdQKKAaWYtx2ZMoo7", + "links": [ + { + "name": "x", + "url": "https://x.com/nosana_ci" + }, + { + "name": "telegram", + "url": "https://t.me/NosanaCompute" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/nosXBVoaCTtYdLvKY6Csb4AC8JCdQKKAaWYtx2ZMoo7/logo.png b/blockchains/solana/assets/nosXBVoaCTtYdLvKY6Csb4AC8JCdQKKAaWYtx2ZMoo7/logo.png new file mode 100644 index 0000000000000..9489d85bd5f4c Binary files /dev/null and b/blockchains/solana/assets/nosXBVoaCTtYdLvKY6Csb4AC8JCdQKKAaWYtx2ZMoo7/logo.png differ diff --git a/blockchains/solana/assets/o6U1Sm6Vd7EofMyCrL28mrp2QLzgYGgjveHiEQ5ondo/info.json b/blockchains/solana/assets/o6U1Sm6Vd7EofMyCrL28mrp2QLzgYGgjveHiEQ5ondo/info.json new file mode 100644 index 0000000000000..c23d9847e6770 --- /dev/null +++ b/blockchains/solana/assets/o6U1Sm6Vd7EofMyCrL28mrp2QLzgYGgjveHiEQ5ondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "WisdomTree Floating Rate Treasury Fund (Ondo Tokenized)", + "type": "SPL", + "symbol": "USFRon", + "decimals": 9, + "description": "USFRon is the Ondo Tokenized version of the WisdomTree Floating Rate Treasury Fund, giving tokenholders economic exposure similar to holding USFR and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/o6U1Sm6Vd7EofMyCrL28mrp2QLzgYGgjveHiEQ5ondo", + "status": "active", + "id": "o6U1Sm6Vd7EofMyCrL28mrp2QLzgYGgjveHiEQ5ondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wisdomtree-floating-rate-treasury-fund-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wisdomtree-floating-rate-treasury-tokenized-fund-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/o6U1Sm6Vd7EofMyCrL28mrp2QLzgYGgjveHiEQ5ondo/logo.png b/blockchains/solana/assets/o6U1Sm6Vd7EofMyCrL28mrp2QLzgYGgjveHiEQ5ondo/logo.png new file mode 100644 index 0000000000000..572a5a584d796 Binary files /dev/null and b/blockchains/solana/assets/o6U1Sm6Vd7EofMyCrL28mrp2QLzgYGgjveHiEQ5ondo/logo.png differ diff --git a/blockchains/solana/assets/oCYPTHDCgYW3tUdZ9CWwKNZWZqmKTJUWpfwkTYnpump/info.json b/blockchains/solana/assets/oCYPTHDCgYW3tUdZ9CWwKNZWZqmKTJUWpfwkTYnpump/info.json new file mode 100644 index 0000000000000..3be0d79b9513b --- /dev/null +++ b/blockchains/solana/assets/oCYPTHDCgYW3tUdZ9CWwKNZWZqmKTJUWpfwkTYnpump/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE EUR Coin", + "type": "SPL", + "symbol": "FAKE EURC", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/oCYPTHDCgYW3tUdZ9CWwKNZWZqmKTJUWpfwkTYnpump", + "explorer": "https://solscan.io/token/oCYPTHDCgYW3tUdZ9CWwKNZWZqmKTJUWpfwkTYnpump", + "status": "spam", + "id": "oCYPTHDCgYW3tUdZ9CWwKNZWZqmKTJUWpfwkTYnpump" +} \ No newline at end of file diff --git a/blockchains/solana/assets/octo82drBEdm8CSDaEKBymVn86TBtgmPnDdmE64PTqJ/info.json b/blockchains/solana/assets/octo82drBEdm8CSDaEKBymVn86TBtgmPnDdmE64PTqJ/info.json new file mode 100644 index 0000000000000..911451983602b --- /dev/null +++ b/blockchains/solana/assets/octo82drBEdm8CSDaEKBymVn86TBtgmPnDdmE64PTqJ/info.json @@ -0,0 +1,21 @@ +{ + "name": "Octokn", + "symbol": "OTK", + "type": "SPL", + "decimals": 9, + "description": "Octo Gaming is a community-driven hub of casual Play & Earn games, gathered on the Octo app, available on IOS and Android.", + "website": "https://octo-gaming.com/", + "explorer": "https://solscan.io/token/octo82drBEdm8CSDaEKBymVn86TBtgmPnDdmE64PTqJ", + "status": "active", + "id": "octo82drBEdm8CSDaEKBymVn86TBtgmPnDdmE64PTqJ", + "links": [ + { + "name": "x", + "url": "https://x.com/Octo8gaming" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/octo-gaming" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/octo82drBEdm8CSDaEKBymVn86TBtgmPnDdmE64PTqJ/logo.png b/blockchains/solana/assets/octo82drBEdm8CSDaEKBymVn86TBtgmPnDdmE64PTqJ/logo.png new file mode 100644 index 0000000000000..ea10cea9bb6b7 Binary files /dev/null and b/blockchains/solana/assets/octo82drBEdm8CSDaEKBymVn86TBtgmPnDdmE64PTqJ/logo.png differ diff --git a/blockchains/solana/assets/oraim8c9d1nkfuQk9EzGYEUGxqL3MHQYndRw1huVo5h/info.json b/blockchains/solana/assets/oraim8c9d1nkfuQk9EzGYEUGxqL3MHQYndRw1huVo5h/info.json new file mode 100644 index 0000000000000..11e07bcfab942 --- /dev/null +++ b/blockchains/solana/assets/oraim8c9d1nkfuQk9EzGYEUGxqL3MHQYndRw1huVo5h/info.json @@ -0,0 +1,21 @@ +{ + "name": "MAX", + "type": "SPL", + "symbol": "MAX", + "decimals": 6, + "website": "https://agents.land/", + "description": "The First AI Agent Launch Platform", + "explorer": "https://solscan.io/token/oraim8c9d1nkfuQk9EzGYEUGxqL3MHQYndRw1huVo5h", + "status": "active", + "id": "oraim8c9d1nkfuQk9EzGYEUGxqL3MHQYndRw1huVo5h", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/max-2" + }, + { + "name": "x", + "url": "https://x.com/agentsdotland" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/oraim8c9d1nkfuQk9EzGYEUGxqL3MHQYndRw1huVo5h/logo.png b/blockchains/solana/assets/oraim8c9d1nkfuQk9EzGYEUGxqL3MHQYndRw1huVo5h/logo.png new file mode 100644 index 0000000000000..dd47fa8a83bfa Binary files /dev/null and b/blockchains/solana/assets/oraim8c9d1nkfuQk9EzGYEUGxqL3MHQYndRw1huVo5h/logo.png differ diff --git a/blockchains/solana/assets/orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE/info.json b/blockchains/solana/assets/orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE/info.json index 12f74e30f7fa8..a6b6bc62a6928 100644 --- a/blockchains/solana/assets/orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE/info.json +++ b/blockchains/solana/assets/orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE/info.json @@ -10,8 +10,8 @@ "id": "orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE", "links": [ { - "name": "twitter", - "url": "https://twitter.com/orca_so" + "name": "x", + "url": "https://x.com/orca_so" }, { "name": "coinmarketcap", diff --git a/blockchains/solana/assets/ou1uE526v7zmUYP2qCb2LJgfXAyWAtWS9SETtr8ondo/info.json b/blockchains/solana/assets/ou1uE526v7zmUYP2qCb2LJgfXAyWAtWS9SETtr8ondo/info.json new file mode 100644 index 0000000000000..e59e3defd0ce7 --- /dev/null +++ b/blockchains/solana/assets/ou1uE526v7zmUYP2qCb2LJgfXAyWAtWS9SETtr8ondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Opendoor Technologies (Ondo Tokenized)", + "type": "SPL", + "symbol": "OPENon", + "decimals": 9, + "description": "OPENon is the Ondo Tokenized version of Opendoor Technologies, giving tokenholders economic exposure similar to holding OPEN and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/ou1uE526v7zmUYP2qCb2LJgfXAyWAtWS9SETtr8ondo", + "status": "active", + "id": "ou1uE526v7zmUYP2qCb2LJgfXAyWAtWS9SETtr8ondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/opendoor-technologies-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/opendoor-technologies-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/ou1uE526v7zmUYP2qCb2LJgfXAyWAtWS9SETtr8ondo/logo.png b/blockchains/solana/assets/ou1uE526v7zmUYP2qCb2LJgfXAyWAtWS9SETtr8ondo/logo.png new file mode 100644 index 0000000000000..c1a48336c9237 Binary files /dev/null and b/blockchains/solana/assets/ou1uE526v7zmUYP2qCb2LJgfXAyWAtWS9SETtr8ondo/logo.png differ diff --git a/blockchains/solana/assets/pDY4GPJfZcNETPG7myXeafQfgJqqVkn81bMYDyfondo/info.json b/blockchains/solana/assets/pDY4GPJfZcNETPG7myXeafQfgJqqVkn81bMYDyfondo/info.json new file mode 100644 index 0000000000000..e9b7fdaaf9669 --- /dev/null +++ b/blockchains/solana/assets/pDY4GPJfZcNETPG7myXeafQfgJqqVkn81bMYDyfondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "T-Mobile US (Ondo Tokenized)", + "type": "SPL", + "symbol": "TMUSon", + "decimals": 9, + "description": "TMUSon is the Ondo Tokenized version of T-Mobile US, giving tokenholders economic exposure similar to holding TMUS and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/pDY4GPJfZcNETPG7myXeafQfgJqqVkn81bMYDyfondo", + "status": "active", + "id": "pDY4GPJfZcNETPG7myXeafQfgJqqVkn81bMYDyfondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/t-mobile-us-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/t-mobile-us-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/pDY4GPJfZcNETPG7myXeafQfgJqqVkn81bMYDyfondo/logo.png b/blockchains/solana/assets/pDY4GPJfZcNETPG7myXeafQfgJqqVkn81bMYDyfondo/logo.png new file mode 100644 index 0000000000000..b9a1bc9b46a87 Binary files /dev/null and b/blockchains/solana/assets/pDY4GPJfZcNETPG7myXeafQfgJqqVkn81bMYDyfondo/logo.png differ diff --git a/blockchains/solana/assets/pawSXHWsonrTey4SX7tz1fM9ksuLpE13Y54K57ym4Rg/info.json b/blockchains/solana/assets/pawSXHWsonrTey4SX7tz1fM9ksuLpE13Y54K57ym4Rg/info.json new file mode 100644 index 0000000000000..87ce33af12518 --- /dev/null +++ b/blockchains/solana/assets/pawSXHWsonrTey4SX7tz1fM9ksuLpE13Y54K57ym4Rg/info.json @@ -0,0 +1,17 @@ +{ + "name": "PayPaw", + "website": "https://paypaw.cards/", + "description": "At the core of PayPaw, the $PAW Token is more than just currency, it's your stake in our future.", + "explorer": "https://solscan.io/token/pawSXHWsonrTey4SX7tz1fM9ksuLpE13Y54K57ym4Rg", + "type": "SPL", + "symbol": "PAW", + "decimals": 6, + "status": "active", + "id": "pawSXHWsonrTey4SX7tz1fM9ksuLpE13Y54K57ym4Rg", + "links": [ + { + "name": "x", + "url": "https://x.com/paypaw_cards" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/pawSXHWsonrTey4SX7tz1fM9ksuLpE13Y54K57ym4Rg/logo.png b/blockchains/solana/assets/pawSXHWsonrTey4SX7tz1fM9ksuLpE13Y54K57ym4Rg/logo.png new file mode 100644 index 0000000000000..6e6cc26e47b5b Binary files /dev/null and b/blockchains/solana/assets/pawSXHWsonrTey4SX7tz1fM9ksuLpE13Y54K57ym4Rg/logo.png differ diff --git a/blockchains/solana/assets/poLisWXnNRwC6oBu1vHiuKQzFjGL4XDSu4g9qjz9qVk/info.json b/blockchains/solana/assets/poLisWXnNRwC6oBu1vHiuKQzFjGL4XDSu4g9qjz9qVk/info.json index b0a7a86221b34..37c78ae41d93e 100644 --- a/blockchains/solana/assets/poLisWXnNRwC6oBu1vHiuKQzFjGL4XDSu4g9qjz9qVk/info.json +++ b/blockchains/solana/assets/poLisWXnNRwC6oBu1vHiuKQzFjGL4XDSu4g9qjz9qVk/info.json @@ -10,8 +10,8 @@ "id": "poLisWXnNRwC6oBu1vHiuKQzFjGL4XDSu4g9qjz9qVk", "links": [ { - "name": "twitter", - "url": "https://twitter.com/staratlas" + "name": "x", + "url": "https://x.com/staratlas" }, { "name": "coinmarketcap", diff --git a/blockchains/solana/assets/pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn/info.json b/blockchains/solana/assets/pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn/info.json new file mode 100644 index 0000000000000..f0fbdc49a1d9d --- /dev/null +++ b/blockchains/solana/assets/pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn/info.json @@ -0,0 +1,21 @@ +{ + "name": "Pump", + "symbol": "PUMP", + "type": "SPL", + "decimals": 6, + "description": "The PUMP crypto-asset is the official utility coin of the pump.fun utility coin launch platform and the swap.pump.fun automated market maker (AMM) protocol (together, the \"Pump.Fun Protocols\"). The PUMP crypto-asset will not be required in order to utilize the Pump.Fun Protocols, which remain permissionless. Holders of the PUMP crypto-asset may opt to participate in promotional give aways from the Pump.Fun Protocols. The PUMP crypto-asset is a utility coin that will be used alongside the pump.fun brand behind the Pump.Fun Protocols.", + "website": "https://pump.fun/", + "explorer": "https://solscan.io/token/pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn", + "status": "active", + "id": "pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn", + "links": [ + { + "name": "x", + "url": "https://x.com/pumpdotfun" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pump-fun" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn/logo.png b/blockchains/solana/assets/pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn/logo.png new file mode 100644 index 0000000000000..180d97cef6169 Binary files /dev/null and b/blockchains/solana/assets/pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn/logo.png differ diff --git a/blockchains/solana/assets/qCYD74QnXzd9pzv6pGHQKJVwoibL6sNcPQDnpDiondo/info.json b/blockchains/solana/assets/qCYD74QnXzd9pzv6pGHQKJVwoibL6sNcPQDnpDiondo/info.json new file mode 100644 index 0000000000000..4c157762df04b --- /dev/null +++ b/blockchains/solana/assets/qCYD74QnXzd9pzv6pGHQKJVwoibL6sNcPQDnpDiondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Exxon Mobil (Ondo Tokenized)", + "type": "SPL", + "symbol": "XOMon", + "decimals": 9, + "description": "XOMon is the Ondo Tokenized version of Exxon Mobil, giving tokenholders economic exposure similar to holding XOM and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/qCYD74QnXzd9pzv6pGHQKJVwoibL6sNcPQDnpDiondo", + "status": "active", + "id": "qCYD74QnXzd9pzv6pGHQKJVwoibL6sNcPQDnpDiondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/exxon-mobil-ondo-tokenized-stocks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/exxon-mobil-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/qCYD74QnXzd9pzv6pGHQKJVwoibL6sNcPQDnpDiondo/logo.png b/blockchains/solana/assets/qCYD74QnXzd9pzv6pGHQKJVwoibL6sNcPQDnpDiondo/logo.png new file mode 100644 index 0000000000000..c1d43656ce7fc Binary files /dev/null and b/blockchains/solana/assets/qCYD74QnXzd9pzv6pGHQKJVwoibL6sNcPQDnpDiondo/logo.png differ diff --git a/blockchains/solana/assets/qKtU9A7ij34XmtxaSzYfxCpkgAZzzFsqnUb2kW2ondo/info.json b/blockchains/solana/assets/qKtU9A7ij34XmtxaSzYfxCpkgAZzzFsqnUb2kW2ondo/info.json new file mode 100644 index 0000000000000..2cc0ae63d0eb2 --- /dev/null +++ b/blockchains/solana/assets/qKtU9A7ij34XmtxaSzYfxCpkgAZzzFsqnUb2kW2ondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "ProShares Short QQQ (Ondo Tokenized)", + "type": "SPL", + "symbol": "PSQon", + "decimals": 9, + "description": "PSQon is the Ondo Tokenized version of the ProShares Short QQQ, giving tokenholders economic exposure similar to holding PSQ and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/qKtU9A7ij34XmtxaSzYfxCpkgAZzzFsqnUb2kW2ondo", + "status": "active", + "id": "qKtU9A7ij34XmtxaSzYfxCpkgAZzzFsqnUb2kW2ondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/proshares-short-qqq-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/proshares-short-qqq-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/qKtU9A7ij34XmtxaSzYfxCpkgAZzzFsqnUb2kW2ondo/logo.png b/blockchains/solana/assets/qKtU9A7ij34XmtxaSzYfxCpkgAZzzFsqnUb2kW2ondo/logo.png new file mode 100644 index 0000000000000..d28deab3711b4 Binary files /dev/null and b/blockchains/solana/assets/qKtU9A7ij34XmtxaSzYfxCpkgAZzzFsqnUb2kW2ondo/logo.png differ diff --git a/blockchains/solana/assets/rndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof/info.json b/blockchains/solana/assets/rndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof/info.json new file mode 100644 index 0000000000000..50e94d3c14387 --- /dev/null +++ b/blockchains/solana/assets/rndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof/info.json @@ -0,0 +1,25 @@ +{ + "name": "Render", + "symbol": "RNDR", + "type": "SPL", + "decimals": 8, + "description": "Distributed GPU rendering on the blockchain.", + "website": "https://rendertoken.com/", + "explorer": "https://solscan.io/token/rndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof", + "status": "active", + "id": "rndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof", + "links": [ + { + "name": "telegram", + "url": "https://t.me/rendernetwork" + }, + { + "name": "x", + "url": "https://x.com/rendernetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/render/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/rndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof/logo.png b/blockchains/solana/assets/rndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof/logo.png new file mode 100644 index 0000000000000..0abda3243d4b1 Binary files /dev/null and b/blockchains/solana/assets/rndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof/logo.png differ diff --git a/blockchains/solana/assets/rpydAzWdCy85HEmoQkH5PVxYtDYQWjmLxgHHadxondo/info.json b/blockchains/solana/assets/rpydAzWdCy85HEmoQkH5PVxYtDYQWjmLxgHHadxondo/info.json new file mode 100644 index 0000000000000..077c9c230ef35 --- /dev/null +++ b/blockchains/solana/assets/rpydAzWdCy85HEmoQkH5PVxYtDYQWjmLxgHHadxondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "United States Oil Fund (Ondo Tokenized)", + "type": "SPL", + "symbol": "USOon", + "decimals": 9, + "description": "USOon is the Ondo Tokenized version of the United States Oil Fund, giving tokenholders economic exposure similar to holding USO and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/rpydAzWdCy85HEmoQkH5PVxYtDYQWjmLxgHHadxondo", + "status": "active", + "id": "rpydAzWdCy85HEmoQkH5PVxYtDYQWjmLxgHHadxondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/united-states-oil-fund-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/united-states-oil-tokenized-fund-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/rpydAzWdCy85HEmoQkH5PVxYtDYQWjmLxgHHadxondo/logo.png b/blockchains/solana/assets/rpydAzWdCy85HEmoQkH5PVxYtDYQWjmLxgHHadxondo/logo.png new file mode 100644 index 0000000000000..56d2b7feafd3b Binary files /dev/null and b/blockchains/solana/assets/rpydAzWdCy85HEmoQkH5PVxYtDYQWjmLxgHHadxondo/logo.png differ diff --git a/blockchains/solana/assets/sJkxBCHWKWiNuWcmhqNMS2vyoDh2AnDLRHDrQ7SEpDk/info.json b/blockchains/solana/assets/sJkxBCHWKWiNuWcmhqNMS2vyoDh2AnDLRHDrQ7SEpDk/info.json new file mode 100644 index 0000000000000..3913ba16c2253 --- /dev/null +++ b/blockchains/solana/assets/sJkxBCHWKWiNuWcmhqNMS2vyoDh2AnDLRHDrQ7SEpDk/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT Τеthеr", + "type": "SPL", + "symbol": "HONEYPOT USⅮΤ", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/sJkxBCHWKWiNuWcmhqNMS2vyoDh2AnDLRHDrQ7SEpDk", + "explorer": "https://solscan.io/token/sJkxBCHWKWiNuWcmhqNMS2vyoDh2AnDLRHDrQ7SEpDk", + "status": "spam", + "id": "sJkxBCHWKWiNuWcmhqNMS2vyoDh2AnDLRHDrQ7SEpDk" +} \ No newline at end of file diff --git a/blockchains/solana/assets/sPiKEYAqoaGYYBAnPxro8NLSYLu93sr56n352jJRLN5/info.json b/blockchains/solana/assets/sPiKEYAqoaGYYBAnPxro8NLSYLu93sr56n352jJRLN5/info.json new file mode 100644 index 0000000000000..de5e230d7930c --- /dev/null +++ b/blockchains/solana/assets/sPiKEYAqoaGYYBAnPxro8NLSYLu93sr56n352jJRLN5/info.json @@ -0,0 +1,21 @@ +{ + "name": "Spike", + "type": "SPL", + "symbol": "SPIKE", + "decimals": 9, + "website": "https://spiketheoriginal.com/", + "description": "Matt Furie's first documented drawing.", + "explorer": "https://solscan.io/token/sPiKEYAqoaGYYBAnPxro8NLSYLu93sr56n352jJRLN5", + "status": "active", + "id": "sPiKEYAqoaGYYBAnPxro8NLSYLu93sr56n352jJRLN5", + "links": [ + { + "name": "x", + "url": "https://x.com/spiketheog" + }, + { + "name": "telegram", + "url": "https://t.me/spiketheoriginal" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/sPiKEYAqoaGYYBAnPxro8NLSYLu93sr56n352jJRLN5/logo.png b/blockchains/solana/assets/sPiKEYAqoaGYYBAnPxro8NLSYLu93sr56n352jJRLN5/logo.png new file mode 100644 index 0000000000000..1df0088f4311c Binary files /dev/null and b/blockchains/solana/assets/sPiKEYAqoaGYYBAnPxro8NLSYLu93sr56n352jJRLN5/logo.png differ diff --git a/blockchains/solana/assets/sfYDFZJguyF4YLZjje7qwwh41NRymFfZ3QXZbVm7Eyg/info.json b/blockchains/solana/assets/sfYDFZJguyF4YLZjje7qwwh41NRymFfZ3QXZbVm7Eyg/info.json new file mode 100644 index 0000000000000..6373052e3cdbb --- /dev/null +++ b/blockchains/solana/assets/sfYDFZJguyF4YLZjje7qwwh41NRymFfZ3QXZbVm7Eyg/info.json @@ -0,0 +1,21 @@ +{ + "name": "MAGA", + "type": "SPL", + "symbol": "MAGA", + "website": "https://magacoin.me/", + "explorer": "https://solscan.io/token/sfYDFZJguyF4YLZjje7qwwh41NRymFfZ3QXZbVm7Eyg", + "decimals": 6, + "description": "$MAGA Movement on Solana", + "status": "active", + "id": "sfYDFZJguyF4YLZjje7qwwh41NRymFfZ3QXZbVm7Eyg", + "links": [ + { + "name": "telegram", + "url": "https://t.me/magaonsol_portal" + }, + { + "name": "x", + "url": "https://x.com/magaonsolanaTW" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/sfYDFZJguyF4YLZjje7qwwh41NRymFfZ3QXZbVm7Eyg/logo.png b/blockchains/solana/assets/sfYDFZJguyF4YLZjje7qwwh41NRymFfZ3QXZbVm7Eyg/logo.png new file mode 100644 index 0000000000000..3c3de7aab9014 Binary files /dev/null and b/blockchains/solana/assets/sfYDFZJguyF4YLZjje7qwwh41NRymFfZ3QXZbVm7Eyg/logo.png differ diff --git a/blockchains/solana/assets/sxyg1VTSzy5zYANUK7hntNtmFAWoXGJq95AcHuVondo/info.json b/blockchains/solana/assets/sxyg1VTSzy5zYANUK7hntNtmFAWoXGJq95AcHuVondo/info.json new file mode 100644 index 0000000000000..07afe772eff95 --- /dev/null +++ b/blockchains/solana/assets/sxyg1VTSzy5zYANUK7hntNtmFAWoXGJq95AcHuVondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Pinterest (Ondo Tokenized)", + "type": "SPL", + "symbol": "PINSon", + "decimals": 9, + "description": "PINSon is the Ondo Tokenized version of Pinterest, giving tokenholders economic exposure similar to holding PINS and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/sxyg1VTSzy5zYANUK7hntNtmFAWoXGJq95AcHuVondo", + "status": "active", + "id": "sxyg1VTSzy5zYANUK7hntNtmFAWoXGJq95AcHuVondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pinterest-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pinterest-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/sxyg1VTSzy5zYANUK7hntNtmFAWoXGJq95AcHuVondo/logo.png b/blockchains/solana/assets/sxyg1VTSzy5zYANUK7hntNtmFAWoXGJq95AcHuVondo/logo.png new file mode 100644 index 0000000000000..af46617921fd0 Binary files /dev/null and b/blockchains/solana/assets/sxyg1VTSzy5zYANUK7hntNtmFAWoXGJq95AcHuVondo/logo.png differ diff --git a/blockchains/solana/assets/t71FyTYHVkPAb5g48adDHmkVxXYbUuP2eq6jDZLondo/info.json b/blockchains/solana/assets/t71FyTYHVkPAb5g48adDHmkVxXYbUuP2eq6jDZLondo/info.json new file mode 100644 index 0000000000000..a8432e3da904b --- /dev/null +++ b/blockchains/solana/assets/t71FyTYHVkPAb5g48adDHmkVxXYbUuP2eq6jDZLondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "iShares AAA CLO Active ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "CLOAon", + "decimals": 9, + "description": "CLOAon is the Ondo Tokenized version of the iShares AAA CLO Active ETF, giving tokenholders economic exposure similar to holding CLOA and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/t71FyTYHVkPAb5g48adDHmkVxXYbUuP2eq6jDZLondo", + "status": "active", + "id": "t71FyTYHVkPAb5g48adDHmkVxXYbUuP2eq6jDZLondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ishares-aaa-clo-active-etf-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ishares-aaa-clo-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/t71FyTYHVkPAb5g48adDHmkVxXYbUuP2eq6jDZLondo/logo.png b/blockchains/solana/assets/t71FyTYHVkPAb5g48adDHmkVxXYbUuP2eq6jDZLondo/logo.png new file mode 100644 index 0000000000000..8c3d69ffb4bb3 Binary files /dev/null and b/blockchains/solana/assets/t71FyTYHVkPAb5g48adDHmkVxXYbUuP2eq6jDZLondo/logo.png differ diff --git a/blockchains/solana/assets/t7eN6cGwRMFaZvsNW2SmVwkedmHtDdrxA4ycNE5ondo/info.json b/blockchains/solana/assets/t7eN6cGwRMFaZvsNW2SmVwkedmHtDdrxA4ycNE5ondo/info.json new file mode 100644 index 0000000000000..ba0c30e14cb89 --- /dev/null +++ b/blockchains/solana/assets/t7eN6cGwRMFaZvsNW2SmVwkedmHtDdrxA4ycNE5ondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "NextEra Energy (Ondo Tokenized)", + "type": "SPL", + "symbol": "NEEon", + "decimals": 9, + "description": "NEEon is the Ondo Tokenized version of NextEra Energy, giving tokenholders economic exposure similar to holding NEE and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/t7eN6cGwRMFaZvsNW2SmVwkedmHtDdrxA4ycNE5ondo", + "status": "active", + "id": "t7eN6cGwRMFaZvsNW2SmVwkedmHtDdrxA4ycNE5ondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/nextera-energy-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nextera-energy-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/t7eN6cGwRMFaZvsNW2SmVwkedmHtDdrxA4ycNE5ondo/logo.png b/blockchains/solana/assets/t7eN6cGwRMFaZvsNW2SmVwkedmHtDdrxA4ycNE5ondo/logo.png new file mode 100644 index 0000000000000..99c8e900bc209 Binary files /dev/null and b/blockchains/solana/assets/t7eN6cGwRMFaZvsNW2SmVwkedmHtDdrxA4ycNE5ondo/logo.png differ diff --git a/blockchains/solana/assets/td1aY5AvYQuwGD75qNq9aPipMexraN9mQXJwqifondo/info.json b/blockchains/solana/assets/td1aY5AvYQuwGD75qNq9aPipMexraN9mQXJwqifondo/info.json new file mode 100644 index 0000000000000..ad28405fa41c3 --- /dev/null +++ b/blockchains/solana/assets/td1aY5AvYQuwGD75qNq9aPipMexraN9mQXJwqifondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Invesco DB Commodity Index Tracking Fund (Ondo Tokenized)", + "type": "SPL", + "symbol": "DBCon", + "decimals": 9, + "description": "DBCon is the Ondo Tokenized version of the Invesco DB Commodity Index Tracking Fund, giving tokenholders economic exposure similar to holding DBC and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/td1aY5AvYQuwGD75qNq9aPipMexraN9mQXJwqifondo", + "status": "active", + "id": "td1aY5AvYQuwGD75qNq9aPipMexraN9mQXJwqifondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/invesco-db-commodity-index-tracking-fund-ondo-tokenized-etf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/invesco-db-commodity-index-tokenized-fund-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/td1aY5AvYQuwGD75qNq9aPipMexraN9mQXJwqifondo/logo.png b/blockchains/solana/assets/td1aY5AvYQuwGD75qNq9aPipMexraN9mQXJwqifondo/logo.png new file mode 100644 index 0000000000000..4d148ee9a083d Binary files /dev/null and b/blockchains/solana/assets/td1aY5AvYQuwGD75qNq9aPipMexraN9mQXJwqifondo/logo.png differ diff --git a/blockchains/solana/assets/tiitb2Z1HtpB2DpVr6V7tdCFS3jmTinLeuGj9EVondo/info.json b/blockchains/solana/assets/tiitb2Z1HtpB2DpVr6V7tdCFS3jmTinLeuGj9EVondo/info.json new file mode 100644 index 0000000000000..922a41b6dbb49 --- /dev/null +++ b/blockchains/solana/assets/tiitb2Z1HtpB2DpVr6V7tdCFS3jmTinLeuGj9EVondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "VanEck Rare Earth and Strategic Metals ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "REMXon", + "decimals": 9, + "description": "REMXon is the Ondo Tokenized version of the VanEck Rare Earth and Strategic Metals ETF, giving tokenholders economic exposure similar to holding REMX and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/tiitb2Z1HtpB2DpVr6V7tdCFS3jmTinLeuGj9EVondo", + "status": "active", + "id": "tiitb2Z1HtpB2DpVr6V7tdCFS3jmTinLeuGj9EVondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vaneck-rare-earth-and-strategic-metals-etf-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vaneck-rare-earth-and-strategic-metals-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/tiitb2Z1HtpB2DpVr6V7tdCFS3jmTinLeuGj9EVondo/logo.png b/blockchains/solana/assets/tiitb2Z1HtpB2DpVr6V7tdCFS3jmTinLeuGj9EVondo/logo.png new file mode 100644 index 0000000000000..88eb0a6cce178 Binary files /dev/null and b/blockchains/solana/assets/tiitb2Z1HtpB2DpVr6V7tdCFS3jmTinLeuGj9EVondo/logo.png differ diff --git a/blockchains/solana/assets/ucQ3VfWAx9pkCN4Kg84zE56FtB4FJN2kQH4ArYYondo/info.json b/blockchains/solana/assets/ucQ3VfWAx9pkCN4Kg84zE56FtB4FJN2kQH4ArYYondo/info.json new file mode 100644 index 0000000000000..d89058ee81bac --- /dev/null +++ b/blockchains/solana/assets/ucQ3VfWAx9pkCN4Kg84zE56FtB4FJN2kQH4ArYYondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "VanEck CLO ETF (Ondo Tokenized)", + "type": "SPL", + "symbol": "CLOIon", + "decimals": 9, + "description": "CLOIon is the Ondo Tokenized version of the VanEck CLO ETF, giving tokenholders economic exposure similar to holding CLOI and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/ucQ3VfWAx9pkCN4Kg84zE56FtB4FJN2kQH4ArYYondo", + "status": "active", + "id": "ucQ3VfWAx9pkCN4Kg84zE56FtB4FJN2kQH4ArYYondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vaneck-clo-etf-ondo-tokenized-stock" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vaneck-clo-tokenized-etf-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/ucQ3VfWAx9pkCN4Kg84zE56FtB4FJN2kQH4ArYYondo/logo.png b/blockchains/solana/assets/ucQ3VfWAx9pkCN4Kg84zE56FtB4FJN2kQH4ArYYondo/logo.png new file mode 100644 index 0000000000000..f88c3aa82c649 Binary files /dev/null and b/blockchains/solana/assets/ucQ3VfWAx9pkCN4Kg84zE56FtB4FJN2kQH4ArYYondo/logo.png differ diff --git a/blockchains/solana/assets/ukHH6c7mMyiWCf1b9pnWe25TSpkDDt3H5pQZgZ74J82/info.json b/blockchains/solana/assets/ukHH6c7mMyiWCf1b9pnWe25TSpkDDt3H5pQZgZ74J82/info.json new file mode 100644 index 0000000000000..82fa1534eafec --- /dev/null +++ b/blockchains/solana/assets/ukHH6c7mMyiWCf1b9pnWe25TSpkDDt3H5pQZgZ74J82/info.json @@ -0,0 +1,21 @@ +{ + "name": "BOOK OF MEME", + "type": "SPL", + "symbol": "BOME", + "decimals": 6, + "website": "https://llwapirxnupqu7xw2fspfidormcfar7ek2yp65nu7k5opjwhdywq.arweave.net/WuwHojdtHwp-9tFk8qBuiwRQR-RWsP91tPq656bHHi0", + "description": "Introducing the BOOK OF MEME: an experimental project poised to redefine web3 culture by amalgamating memes, decentralized storage solutions, and degen shitcoin trading and gambling", + "explorer": "https://solscan.io/token/ukHH6c7mMyiWCf1b9pnWe25TSpkDDt3H5pQZgZ74J82", + "status": "active", + "id": "ukHH6c7mMyiWCf1b9pnWe25TSpkDDt3H5pQZgZ74J82", + "links": [ + { + "name": "x", + "url": "https://x.com/Darkfarms1" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/book-of-meme/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/ukHH6c7mMyiWCf1b9pnWe25TSpkDDt3H5pQZgZ74J82/logo.png b/blockchains/solana/assets/ukHH6c7mMyiWCf1b9pnWe25TSpkDDt3H5pQZgZ74J82/logo.png new file mode 100644 index 0000000000000..935bf3f7e3beb Binary files /dev/null and b/blockchains/solana/assets/ukHH6c7mMyiWCf1b9pnWe25TSpkDDt3H5pQZgZ74J82/logo.png differ diff --git a/blockchains/solana/assets/v12TwfofSbvVqQ5N5KGG4d3J8rtEi4BjGfn2apyondo/info.json b/blockchains/solana/assets/v12TwfofSbvVqQ5N5KGG4d3J8rtEi4BjGfn2apyondo/info.json new file mode 100644 index 0000000000000..71706af620156 --- /dev/null +++ b/blockchains/solana/assets/v12TwfofSbvVqQ5N5KGG4d3J8rtEi4BjGfn2apyondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Li Auto (Ondo Tokenized)", + "type": "SPL", + "symbol": "LIon", + "decimals": 9, + "description": "LIon is the Ondo Tokenized version of Li Auto, giving tokenholders economic exposure similar to holding LI and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/v12TwfofSbvVqQ5N5KGG4d3J8rtEi4BjGfn2apyondo", + "status": "active", + "id": "v12TwfofSbvVqQ5N5KGG4d3J8rtEi4BjGfn2apyondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/li-auto-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/li-auto-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/v12TwfofSbvVqQ5N5KGG4d3J8rtEi4BjGfn2apyondo/logo.png b/blockchains/solana/assets/v12TwfofSbvVqQ5N5KGG4d3J8rtEi4BjGfn2apyondo/logo.png new file mode 100644 index 0000000000000..b1097ce82bb59 Binary files /dev/null and b/blockchains/solana/assets/v12TwfofSbvVqQ5N5KGG4d3J8rtEi4BjGfn2apyondo/logo.png differ diff --git a/blockchains/solana/assets/vE2qArmjto6VfeMngyGAnzp2ipLYeXsxiARDnnXondo/info.json b/blockchains/solana/assets/vE2qArmjto6VfeMngyGAnzp2ipLYeXsxiARDnnXondo/info.json new file mode 100644 index 0000000000000..c2d3f31cd0d4e --- /dev/null +++ b/blockchains/solana/assets/vE2qArmjto6VfeMngyGAnzp2ipLYeXsxiARDnnXondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "SoundHound AI (Ondo Tokenized)", + "type": "SPL", + "symbol": "SOUNon", + "decimals": 9, + "description": "SOUNon is the Ondo Tokenized version of SoundHound AI, giving tokenholders economic exposure similar to holding SOUN and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/vE2qArmjto6VfeMngyGAnzp2ipLYeXsxiARDnnXondo", + "status": "active", + "id": "vE2qArmjto6VfeMngyGAnzp2ipLYeXsxiARDnnXondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/soundhound-ai-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/soundhound-ai-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/vE2qArmjto6VfeMngyGAnzp2ipLYeXsxiARDnnXondo/logo.png b/blockchains/solana/assets/vE2qArmjto6VfeMngyGAnzp2ipLYeXsxiARDnnXondo/logo.png new file mode 100644 index 0000000000000..0ce518ad9482c Binary files /dev/null and b/blockchains/solana/assets/vE2qArmjto6VfeMngyGAnzp2ipLYeXsxiARDnnXondo/logo.png differ diff --git a/blockchains/solana/assets/wFJoeEYpKg9oRhyJy6BWTT3J95gmXBLvoeikDQNondo/info.json b/blockchains/solana/assets/wFJoeEYpKg9oRhyJy6BWTT3J95gmXBLvoeikDQNondo/info.json new file mode 100644 index 0000000000000..a7fa05b208d9f --- /dev/null +++ b/blockchains/solana/assets/wFJoeEYpKg9oRhyJy6BWTT3J95gmXBLvoeikDQNondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "Lam Research (Ondo Tokenized)", + "type": "SPL", + "symbol": "LRCXon", + "decimals": 9, + "description": "LRCXon is the Ondo Tokenized version of Lam Research, giving tokenholders economic exposure similar to holding LRCX and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/wFJoeEYpKg9oRhyJy6BWTT3J95gmXBLvoeikDQNondo", + "status": "active", + "id": "wFJoeEYpKg9oRhyJy6BWTT3J95gmXBLvoeikDQNondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/lam-research-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lam-research-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/wFJoeEYpKg9oRhyJy6BWTT3J95gmXBLvoeikDQNondo/logo.png b/blockchains/solana/assets/wFJoeEYpKg9oRhyJy6BWTT3J95gmXBLvoeikDQNondo/logo.png new file mode 100644 index 0000000000000..857455e73773a Binary files /dev/null and b/blockchains/solana/assets/wFJoeEYpKg9oRhyJy6BWTT3J95gmXBLvoeikDQNondo/logo.png differ diff --git a/blockchains/solana/assets/wUtwjNmjCP9TTTtoc5Xn5h5sZ2cYJm5w2w44b79yr2o/info.json b/blockchains/solana/assets/wUtwjNmjCP9TTTtoc5Xn5h5sZ2cYJm5w2w44b79yr2o/info.json new file mode 100644 index 0000000000000..51c62f72921d9 --- /dev/null +++ b/blockchains/solana/assets/wUtwjNmjCP9TTTtoc5Xn5h5sZ2cYJm5w2w44b79yr2o/info.json @@ -0,0 +1,21 @@ +{ + "name": "ai16zeliza", + "website": "https://x.com/ai16zeliza", + "description": "Eliza made on Eliza. Powered by @vvaifudotfun and @ai16zdao", + "explorer": "https://solscan.io/token/wUtwjNmjCP9TTTtoc5Xn5h5sZ2cYJm5w2w44b79yr2o", + "type": "SPL", + "symbol": "eliza", + "decimals": 6, + "status": "active", + "id": "wUtwjNmjCP9TTTtoc5Xn5h5sZ2cYJm5w2w44b79yr2o", + "links": [ + { + "name": "x", + "url": "https://x.com/ai16zeliza" + }, + { + "name": "telegram", + "url": "https://t.me/ai16zelizaportal" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/wUtwjNmjCP9TTTtoc5Xn5h5sZ2cYJm5w2w44b79yr2o/logo.png b/blockchains/solana/assets/wUtwjNmjCP9TTTtoc5Xn5h5sZ2cYJm5w2w44b79yr2o/logo.png new file mode 100644 index 0000000000000..697ef0fbeb9e1 Binary files /dev/null and b/blockchains/solana/assets/wUtwjNmjCP9TTTtoc5Xn5h5sZ2cYJm5w2w44b79yr2o/logo.png differ diff --git a/blockchains/solana/assets/wh2rGDto5Xcqw1nh8LMiFHDUuaz2q1VcEy4gzG7uvTw/info.json b/blockchains/solana/assets/wh2rGDto5Xcqw1nh8LMiFHDUuaz2q1VcEy4gzG7uvTw/info.json new file mode 100644 index 0000000000000..b3f6edf521be5 --- /dev/null +++ b/blockchains/solana/assets/wh2rGDto5Xcqw1nh8LMiFHDUuaz2q1VcEy4gzG7uvTw/info.json @@ -0,0 +1,21 @@ +{ + "name": "Yuro 2024", + "website": "https://yuro2024.com/", + "description": "The ofishul home of YOUAYFA men’s nashinol futball - on Solana", + "explorer": "https://solscan.io/token/wh2rGDto5Xcqw1nh8LMiFHDUuaz2q1VcEy4gzG7uvTw", + "type": "SPL", + "symbol": "YURO", + "decimals": 6, + "status": "active", + "id": "wh2rGDto5Xcqw1nh8LMiFHDUuaz2q1VcEy4gzG7uvTw", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/yuro-2024" + }, + { + "name": "x", + "url": "https://x.com/YURO2024" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/wh2rGDto5Xcqw1nh8LMiFHDUuaz2q1VcEy4gzG7uvTw/logo.png b/blockchains/solana/assets/wh2rGDto5Xcqw1nh8LMiFHDUuaz2q1VcEy4gzG7uvTw/logo.png new file mode 100644 index 0000000000000..6cc58c5d52772 Binary files /dev/null and b/blockchains/solana/assets/wh2rGDto5Xcqw1nh8LMiFHDUuaz2q1VcEy4gzG7uvTw/logo.png differ diff --git a/blockchains/solana/assets/wo1zgt8rfrYpvdVi4nidoj1SYfcR4pQx69bmNv2JLhQ/info.json b/blockchains/solana/assets/wo1zgt8rfrYpvdVi4nidoj1SYfcR4pQx69bmNv2JLhQ/info.json new file mode 100644 index 0000000000000..aa5e8661d3455 --- /dev/null +++ b/blockchains/solana/assets/wo1zgt8rfrYpvdVi4nidoj1SYfcR4pQx69bmNv2JLhQ/info.json @@ -0,0 +1,21 @@ +{ + "name": "JustAnEgg", + "website": "https://justanegg.com/", + "description": "Welcome to JustAnEgg, the only cryptocurrency project that’s egg-ceptionally good!", + "explorer": "https://solscan.io/token/wo1zgt8rfrYpvdVi4nidoj1SYfcR4pQx69bmNv2JLhQ", + "type": "SPL", + "symbol": "EGG", + "decimals": 9, + "status": "active", + "id": "wo1zgt8rfrYpvdVi4nidoj1SYfcR4pQx69bmNv2JLhQ", + "links": [ + { + "name": "x", + "url": "https://x.com/justaneggcoin" + }, + { + "name": "telegram", + "url": "https://t.me/JustAnEggSol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/wo1zgt8rfrYpvdVi4nidoj1SYfcR4pQx69bmNv2JLhQ/logo.png b/blockchains/solana/assets/wo1zgt8rfrYpvdVi4nidoj1SYfcR4pQx69bmNv2JLhQ/logo.png new file mode 100644 index 0000000000000..483b75d61dbe2 Binary files /dev/null and b/blockchains/solana/assets/wo1zgt8rfrYpvdVi4nidoj1SYfcR4pQx69bmNv2JLhQ/logo.png differ diff --git a/blockchains/solana/assets/wzAyQTorWyoVXuJKj2x8EqKEGJpS13z6EWE9z5Aondo/info.json b/blockchains/solana/assets/wzAyQTorWyoVXuJKj2x8EqKEGJpS13z6EWE9z5Aondo/info.json new file mode 100644 index 0000000000000..e1e951dccac4a --- /dev/null +++ b/blockchains/solana/assets/wzAyQTorWyoVXuJKj2x8EqKEGJpS13z6EWE9z5Aondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "SpaceX (Ondo Tokenized)", + "type": "SPL", + "symbol": "SPCXon", + "decimals": 9, + "website": "https://app.ondo.finance/", + "description": "SPCXon is the Ondo Tokenized version of SpaceX, giving tokenholders economic exposure similar to holding SPCX and reinvesting any dividends. Ondo tokenized stocks enable non-US retail and institutional users around the world to instantly mint and redeem tokenized U.S. stocks and ETFs, 24 hours a day, five days a week with full access to traditional exchange liquidity. Additional restrictions apply", + "explorer": "https://solscan.io/token/wzAyQTorWyoVXuJKj2x8EqKEGJpS13z6EWE9z5Aondo", + "status": "active", + "id": "wzAyQTorWyoVXuJKj2x8EqKEGJpS13z6EWE9z5Aondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spacex-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/wzAyQTorWyoVXuJKj2x8EqKEGJpS13z6EWE9z5Aondo/logo.png b/blockchains/solana/assets/wzAyQTorWyoVXuJKj2x8EqKEGJpS13z6EWE9z5Aondo/logo.png new file mode 100644 index 0000000000000..eaa561f8f3efa Binary files /dev/null and b/blockchains/solana/assets/wzAyQTorWyoVXuJKj2x8EqKEGJpS13z6EWE9z5Aondo/logo.png differ diff --git a/blockchains/solana/assets/wzpeUomX2VNiswbyYMLqYsdN4nNFZSobNs5xuR7shit/info.json b/blockchains/solana/assets/wzpeUomX2VNiswbyYMLqYsdN4nNFZSobNs5xuR7shit/info.json new file mode 100644 index 0000000000000..bc8a482334cd1 --- /dev/null +++ b/blockchains/solana/assets/wzpeUomX2VNiswbyYMLqYsdN4nNFZSobNs5xuR7shit/info.json @@ -0,0 +1,21 @@ +{ + "name": "Shitcoin", + "website": "https://shitcoin.co/", + "description": "Ready to get your hands dirty? This ain't for the faint-hearted. It's dirtier, bolder, and uncut. Get ready to stir up some s***!", + "explorer": "https://solscan.io/token/wzpeUomX2VNiswbyYMLqYsdN4nNFZSobNs5xuR7shit", + "type": "SPL", + "symbol": "SHIT", + "decimals": 9, + "status": "active", + "id": "wzpeUomX2VNiswbyYMLqYsdN4nNFZSobNs5xuR7shit", + "links": [ + { + "name": "x", + "url": "https://x.com/shitcoin" + }, + { + "name": "telegram", + "url": "https://t.me/shitcoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/wzpeUomX2VNiswbyYMLqYsdN4nNFZSobNs5xuR7shit/logo.png b/blockchains/solana/assets/wzpeUomX2VNiswbyYMLqYsdN4nNFZSobNs5xuR7shit/logo.png new file mode 100644 index 0000000000000..ff6bd272ef30b Binary files /dev/null and b/blockchains/solana/assets/wzpeUomX2VNiswbyYMLqYsdN4nNFZSobNs5xuR7shit/logo.png differ diff --git a/blockchains/solana/assets/xMJ9BnMvrpEUrTEihDKSuQUh8J7P89oEQrbuCWWpump/info.json b/blockchains/solana/assets/xMJ9BnMvrpEUrTEihDKSuQUh8J7P89oEQrbuCWWpump/info.json new file mode 100644 index 0000000000000..ab081bf0f45e3 --- /dev/null +++ b/blockchains/solana/assets/xMJ9BnMvrpEUrTEihDKSuQUh8J7P89oEQrbuCWWpump/info.json @@ -0,0 +1,25 @@ +{ + "name": "FartGPT", + "type": "SOL", + "symbol": "FartGPT", + "decimals": 6, + "description": "Empowering AI to redefine how we interact, one puff at a time.", + "website": "https://fartgptsol.com/", + "explorer": "https://solscan.io/token/xMJ9BnMvrpEUrTEihDKSuQUh8J7P89oEQrbuCWWpump", + "id": "xMJ9BnMvrpEUrTEihDKSuQUh8J7P89oEQrbuCWWpump", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/FartGPT_SOL" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/fartgpt" + } + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/xMJ9BnMvrpEUrTEihDKSuQUh8J7P89oEQrbuCWWpump/logo.png b/blockchains/solana/assets/xMJ9BnMvrpEUrTEihDKSuQUh8J7P89oEQrbuCWWpump/logo.png new file mode 100644 index 0000000000000..2825f4017f3f3 Binary files /dev/null and b/blockchains/solana/assets/xMJ9BnMvrpEUrTEihDKSuQUh8J7P89oEQrbuCWWpump/logo.png differ diff --git a/blockchains/solana/assets/y1AZt42vceCmStjW4zetK3VoNarC1VxJ5iDjpiupump/info.json b/blockchains/solana/assets/y1AZt42vceCmStjW4zetK3VoNarC1VxJ5iDjpiupump/info.json new file mode 100644 index 0000000000000..93fc6c043ac1f --- /dev/null +++ b/blockchains/solana/assets/y1AZt42vceCmStjW4zetK3VoNarC1VxJ5iDjpiupump/info.json @@ -0,0 +1,21 @@ +{ + "name": "FARTBOY", + "symbol": "FARTBOY", + "type": "SPL", + "decimals": 9, + "description": "From Comic Book Hero to Crypto Icon: Ride the Wind with Fartboy!", + "website": "https://www.fartboysol.com", + "explorer": "https://solscan.io/token/y1AZt42vceCmStjW4zetK3VoNarC1VxJ5iDjpiupump", + "status": "active", + "id": "y1AZt42vceCmStjW4zetK3VoNarC1VxJ5iDjpiupump", + "links": [ + { + "name": "x", + "url": "https://x.com/FARTBOY_CTO" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/fartboy" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/y1AZt42vceCmStjW4zetK3VoNarC1VxJ5iDjpiupump/logo.png b/blockchains/solana/assets/y1AZt42vceCmStjW4zetK3VoNarC1VxJ5iDjpiupump/logo.png new file mode 100644 index 0000000000000..f667f29ddb886 Binary files /dev/null and b/blockchains/solana/assets/y1AZt42vceCmStjW4zetK3VoNarC1VxJ5iDjpiupump/logo.png differ diff --git a/blockchains/solana/assets/yNYkY5ycs2wrE5mzrC9JYRxkETjVa6ZWN7VxcGz8LgU/info.json b/blockchains/solana/assets/yNYkY5ycs2wrE5mzrC9JYRxkETjVa6ZWN7VxcGz8LgU/info.json new file mode 100644 index 0000000000000..61cc1441d777e --- /dev/null +++ b/blockchains/solana/assets/yNYkY5ycs2wrE5mzrC9JYRxkETjVa6ZWN7VxcGz8LgU/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE USDT", + "type": "SPL", + "symbol": "FAKE USDT", + "decimals": 6, + "website": "https://solscan.io/token/yNYkY5ycs2wrE5mzrC9JYRxkETjVa6ZWN7VxcGz8LgU", + "description": "FAKE USDT", + "explorer": "https://solscan.io/token/yNYkY5ycs2wrE5mzrC9JYRxkETjVa6ZWN7VxcGz8LgU", + "status": "spam", + "id": "yNYkY5ycs2wrE5mzrC9JYRxkETjVa6ZWN7VxcGz8LgU" +} \ No newline at end of file diff --git a/blockchains/solana/assets/yQ37dFiGAbzrb2FRAEhGNzRy5zFfoYGWYhAepFEondo/info.json b/blockchains/solana/assets/yQ37dFiGAbzrb2FRAEhGNzRy5zFfoYGWYhAepFEondo/info.json new file mode 100644 index 0000000000000..59ca8cac5f966 --- /dev/null +++ b/blockchains/solana/assets/yQ37dFiGAbzrb2FRAEhGNzRy5zFfoYGWYhAepFEondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "NIO (Ondo Tokenized)", + "type": "SPL", + "symbol": "NIOon", + "decimals": 9, + "description": "NIOon is the Ondo Tokenized version of NIO, giving tokenholders economic exposure similar to holding NIO and reinvesting any dividends. Additional restrictions apply. Learn more at https://ondo.finance/gm.", + "website": "https://ondo.finance/", + "explorer": "https://solscan.io/token/yQ37dFiGAbzrb2FRAEhGNzRy5zFfoYGWYhAepFEondo", + "status": "active", + "id": "yQ37dFiGAbzrb2FRAEhGNzRy5zFfoYGWYhAepFEondo", + "links": [ + { + "name": "x", + "url": "https://x.com/ondofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/nio-ondo-tokenized" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nio-tokenized-stock-ondo/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/yQ37dFiGAbzrb2FRAEhGNzRy5zFfoYGWYhAepFEondo/logo.png b/blockchains/solana/assets/yQ37dFiGAbzrb2FRAEhGNzRy5zFfoYGWYhAepFEondo/logo.png new file mode 100644 index 0000000000000..71fbf20164616 Binary files /dev/null and b/blockchains/solana/assets/yQ37dFiGAbzrb2FRAEhGNzRy5zFfoYGWYhAepFEondo/logo.png differ diff --git a/blockchains/solana/assets/yomFPUqz1wJwYSfD5tZJUtS3bNb8xs8mx9XzBv8RL39/info.json b/blockchains/solana/assets/yomFPUqz1wJwYSfD5tZJUtS3bNb8xs8mx9XzBv8RL39/info.json new file mode 100644 index 0000000000000..14e08ba887cf6 --- /dev/null +++ b/blockchains/solana/assets/yomFPUqz1wJwYSfD5tZJUtS3bNb8xs8mx9XzBv8RL39/info.json @@ -0,0 +1,21 @@ +{ + "name": "YOM", + "symbol": "YOM", + "type": "SPL", + "decimals": 9, + "description": "YOM is pioneering the first cloud gaming infrastructure (DePIN), streaming games, white-label experiences and entirely new entertainment formats at scale.", + "website": "https://www.yom.ooo/", + "explorer": "https://solscan.io/token/yomFPUqz1wJwYSfD5tZJUtS3bNb8xs8mx9XzBv8RL39", + "status": "active", + "id": "yomFPUqz1wJwYSfD5tZJUtS3bNb8xs8mx9XzBv8RL39", + "links": [ + { + "name": "x", + "url": "https://x.com/YOM_Official" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/your-open-metaverse" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/yomFPUqz1wJwYSfD5tZJUtS3bNb8xs8mx9XzBv8RL39/logo.png b/blockchains/solana/assets/yomFPUqz1wJwYSfD5tZJUtS3bNb8xs8mx9XzBv8RL39/logo.png new file mode 100644 index 0000000000000..c9800c3613056 Binary files /dev/null and b/blockchains/solana/assets/yomFPUqz1wJwYSfD5tZJUtS3bNb8xs8mx9XzBv8RL39/logo.png differ diff --git a/blockchains/solana/assets/z3dn17yLaGMKffVogeFHQ9zWVcXgqgf3PQnDsNs2g6M/info.json b/blockchains/solana/assets/z3dn17yLaGMKffVogeFHQ9zWVcXgqgf3PQnDsNs2g6M/info.json index 69f478ae16037..3fa750fac1d6b 100644 --- a/blockchains/solana/assets/z3dn17yLaGMKffVogeFHQ9zWVcXgqgf3PQnDsNs2g6M/info.json +++ b/blockchains/solana/assets/z3dn17yLaGMKffVogeFHQ9zWVcXgqgf3PQnDsNs2g6M/info.json @@ -10,8 +10,8 @@ "id": "z3dn17yLaGMKffVogeFHQ9zWVcXgqgf3PQnDsNs2g6M", "links": [ { - "name": "twitter", - "url": "https://twitter.com/oxygen_protocol" + "name": "x", + "url": "https://x.com/oxygen_protocol" }, { "name": "coinmarketcap", diff --git a/blockchains/solana/assets/zZNV7cMF9Z5uqxLPLdAiSith6sVPx11GVYoCnYQovzT/info.json b/blockchains/solana/assets/zZNV7cMF9Z5uqxLPLdAiSith6sVPx11GVYoCnYQovzT/info.json new file mode 100644 index 0000000000000..cec24a03257a8 --- /dev/null +++ b/blockchains/solana/assets/zZNV7cMF9Z5uqxLPLdAiSith6sVPx11GVYoCnYQovzT/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCAM United Stable Dollar", + "type": "SPL", + "symbol": "SCAM USD", + "decimals": 6, + "description": "This token is malicious do not interact", + "website": "https://solscan.io/token/zZNV7cMF9Z5uqxLPLdAiSith6sVPx11GVYoCnYQovzT", + "explorer": "https://solscan.io/token/zZNV7cMF9Z5uqxLPLdAiSith6sVPx11GVYoCnYQovzT", + "status": "spam", + "id": "zZNV7cMF9Z5uqxLPLdAiSith6sVPx11GVYoCnYQovzT" +} \ No newline at end of file diff --git a/blockchains/solana/assets/zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF/info.json b/blockchains/solana/assets/zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF/info.json index bedce8f8cce51..bf7bcb8d1ea42 100644 --- a/blockchains/solana/assets/zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF/info.json +++ b/blockchains/solana/assets/zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF/info.json @@ -6,12 +6,12 @@ "website": "https://zebec.io/", "description": "Zebec is enabling composable transfer of value starting with Zebec Payroll. Zebec Safe is fully customizable multi-sig on Solana.", "explorer": "https://solscan.io/token/zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF", - "status": "active", + "status": "abandoned", "id": "zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF", "links": [ { - "name": "twitter", - "url": "https://twitter.com/Zebec_HQ" + "name": "x", + "url": "https://x.com/Zebec_HQ" }, { "name": "telegram", diff --git a/blockchains/solana/assets/zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF/logo.png b/blockchains/solana/assets/zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF/logo.png deleted file mode 100644 index 2a6c1f2c39e96..0000000000000 Binary files a/blockchains/solana/assets/zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF/logo.png and /dev/null differ diff --git a/blockchains/solana/assets/znv3FZt2HFAvzYf5LxzVyryh3mBXWuTRRng25gEZAjh/info.json b/blockchains/solana/assets/znv3FZt2HFAvzYf5LxzVyryh3mBXWuTRRng25gEZAjh/info.json new file mode 100644 index 0000000000000..6a531435e0c3d --- /dev/null +++ b/blockchains/solana/assets/znv3FZt2HFAvzYf5LxzVyryh3mBXWuTRRng25gEZAjh/info.json @@ -0,0 +1,26 @@ +{ + "name": "Infinite Money Glitch", + "type": "SOL", + "symbol": "IMG", + "decimals": 6, + "description": "Automate Solana Rewards", + "website": "https://www.img.money/", + "explorer": "https://solscan.io/token/znv3FZt2HFAvzYf5LxzVyryh3mBXWuTRRng25gEZAjh", + "id": "znv3FZt2HFAvzYf5LxzVyryh3mBXWuTRRng25gEZAjh", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/imgrewards" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/infinite-money-glitch" + } + + ], + "tags": [ + "memes" + ] +} + \ No newline at end of file diff --git a/blockchains/solana/assets/znv3FZt2HFAvzYf5LxzVyryh3mBXWuTRRng25gEZAjh/logo.png b/blockchains/solana/assets/znv3FZt2HFAvzYf5LxzVyryh3mBXWuTRRng25gEZAjh/logo.png new file mode 100644 index 0000000000000..2ab3ad7da790e Binary files /dev/null and b/blockchains/solana/assets/znv3FZt2HFAvzYf5LxzVyryh3mBXWuTRRng25gEZAjh/logo.png differ diff --git a/blockchains/solana/info/info.json b/blockchains/solana/info/info.json index 7a7ebbef00ac9..0440cc894decb 100644 --- a/blockchains/solana/info/info.json +++ b/blockchains/solana/info/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/solana-labs" }, { - "name": "twitter", - "url": "https://twitter.com/solana" + "name": "x", + "url": "https://x.com/solana" }, { "name": "reddit", diff --git a/blockchains/solana/info/square_logo.png b/blockchains/solana/info/square_logo.png new file mode 100644 index 0000000000000..3245931601672 Binary files /dev/null and b/blockchains/solana/info/square_logo.png differ diff --git a/blockchains/solana/tokenlist.json b/blockchains/solana/tokenlist.json new file mode 100644 index 0000000000000..7866f68bd50b6 --- /dev/null +++ b/blockchains/solana/tokenlist.json @@ -0,0 +1,562 @@ +{ + "name": "Trust Wallet: Solana List", + "logoURI": "https://trustwallet.com/assets/images/favicon.png", + "timestamp": "2024-02-01T14:23:26.183301", + "tokens": [ + { + "asset": "c501_t2FPyTwcZLUg1MDrwsyoP4D6s1tM7hAkHYRjkNb5w6Pxk", + "type": "SPL", + "address": "2FPyTwcZLUg1MDrwsyoP4D6s1tM7hAkHYRjkNb5w6Pxk", + "name": "Wrapped ETH", + "symbol": "ETH", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/2FPyTwcZLUg1MDrwsyoP4D6s1tM7hAkHYRjkNb5w6Pxk/logo.png", + "pairs": [] + }, + { + "asset": "c501_t2ueY1bLcPHfuFzEJq7yN1V2Wrpu8nkun9xG2TVCE1mhD", + "type": "SPL", + "address": "2ueY1bLcPHfuFzEJq7yN1V2Wrpu8nkun9xG2TVCE1mhD", + "name": "Hedget (Portal)", + "symbol": "HGET", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/2ueY1bLcPHfuFzEJq7yN1V2Wrpu8nkun9xG2TVCE1mhD/logo.png", + "pairs": [] + }, + { + "asset": "c501_t2wpTofQ8SkACrkZWrZDjXPitYa8AwWgX8AfxdeBRRVLX", + "type": "SPL", + "address": "2wpTofQ8SkACrkZWrZDjXPitYa8AwWgX8AfxdeBRRVLX", + "name": "Chainlink (Portal)", + "symbol": "LINK", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/2wpTofQ8SkACrkZWrZDjXPitYa8AwWgX8AfxdeBRRVLX/logo.png", + "pairs": [] + }, + { + "asset": "c501_t3NZ9JMVBmGAqocybic2c7LQCJScmgsAZ6vQqTDzcqmJh", + "type": "SPL", + "address": "3NZ9JMVBmGAqocybic2c7LQCJScmgsAZ6vQqTDzcqmJh", + "name": "Wrapped BTC (Portal)", + "symbol": "WBTC", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/3NZ9JMVBmGAqocybic2c7LQCJScmgsAZ6vQqTDzcqmJh/logo.png", + "pairs": [] + }, + { + "asset": "c501_t3vAs4D1WE6Na4tCgt4BApgFfENbm8WY7q4cSPD1yM4Cg", + "type": "SPL", + "address": "3vAs4D1WE6Na4tCgt4BApgFfENbm8WY7q4cSPD1yM4Cg", + "name": "Aave Token (Portal)", + "symbol": "AAVE", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/3vAs4D1WE6Na4tCgt4BApgFfENbm8WY7q4cSPD1yM4Cg/logo.png", + "pairs": [] + }, + { + "asset": "c501_t4CsZsUCoKFiaGyU7DEVDayqeVtG8iqgGDR6RjzQmzQao", + "type": "SPL", + "address": "4CsZsUCoKFiaGyU7DEVDayqeVtG8iqgGDR6RjzQmzQao", + "name": "AnchorUST (Portal)", + "symbol": "aUST", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/4CsZsUCoKFiaGyU7DEVDayqeVtG8iqgGDR6RjzQmzQao/logo.png", + "pairs": [] + }, + { + "asset": "c501_t4Fo67MYQpVhZj9R7jQTd63FPAnWbPpaafAUxsMGX2geP", + "type": "SPL", + "address": "4Fo67MYQpVhZj9R7jQTd63FPAnWbPpaafAUxsMGX2geP", + "name": "DAI (Portal from Polygon)", + "symbol": "DAIpo", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/4Fo67MYQpVhZj9R7jQTd63FPAnWbPpaafAUxsMGX2geP/logo.png", + "pairs": [] + }, + { + "asset": "c501_t4hpngEp1v3CXpeKB81Gw4sv7YvwUVRKvY3SGag9ND8Q4", + "type": "SPL", + "address": "4hpngEp1v3CXpeKB81Gw4sv7YvwUVRKvY3SGag9ND8Q4", + "name": "Smooth Love Potion (Portal)", + "symbol": "SLP", + "decimals": 0, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/4hpngEp1v3CXpeKB81Gw4sv7YvwUVRKvY3SGag9ND8Q4/logo.png", + "pairs": [] + }, + { + "asset": "c501_t4Hx6Bj56eGyw8EJrrheM6LBQAvVYRikYCWsALeTrwyRU", + "type": "SPL", + "address": "4Hx6Bj56eGyw8EJrrheM6LBQAvVYRikYCWsALeTrwyRU", + "name": "dYdX (Portal)", + "symbol": "DYDX", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/4Hx6Bj56eGyw8EJrrheM6LBQAvVYRikYCWsALeTrwyRU/logo.png", + "pairs": [] + }, + { + "asset": "c501_t4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R", + "type": "SPL", + "address": "4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R", + "name": "Raydium", + "symbol": "RAY", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R/logo.png", + "pairs": [] + }, + { + "asset": "c501_t5goWRao6a3yNC4d6UjMdQxonkCMvKBwdpubU3qhfcdf1", + "type": "SPL", + "address": "5goWRao6a3yNC4d6UjMdQxonkCMvKBwdpubU3qhfcdf1", + "name": "Tether USD (PoS) (Portal from Polygon)", + "symbol": "USDTpo", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/5goWRao6a3yNC4d6UjMdQxonkCMvKBwdpubU3qhfcdf1/logo.png", + "pairs": [] + }, + { + "asset": "c501_t4wjPQJ6PrkC4dHhYghwJzGBVP78DkBzA2U3kHoFNBuhj", + "type": "SPL", + "address": "4wjPQJ6PrkC4dHhYghwJzGBVP78DkBzA2U3kHoFNBuhj", + "name": "LIQ Protocol", + "symbol": "LIQ", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/4wjPQJ6PrkC4dHhYghwJzGBVP78DkBzA2U3kHoFNBuhj/logo.png", + "pairs": [] + }, + { + "asset": "c501_t5RpUwQ8wtdPCZHhu6MERp2RGrpobsbZ6MH5dDHkUjs2", + "type": "SPL", + "address": "5RpUwQ8wtdPCZHhu6MERp2RGrpobsbZ6MH5dDHkUjs2", + "name": "Binance USD (Portal from BSC)", + "symbol": "BUSDbs", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/5RpUwQ8wtdPCZHhu6MERp2RGrpobsbZ6MH5dDHkUjs2/logo.png", + "pairs": [] + }, + { + "asset": "c501_t5TtSKAamFq88grN1QGrEaZ1AjjyciqnCya1aiMhAgFvG", + "type": "SPL", + "address": "5TtSKAamFq88grN1QGrEaZ1AjjyciqnCya1aiMhAgFvG", + "name": "Chiliz (Portal)", + "symbol": "CHZ", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/5TtSKAamFq88grN1QGrEaZ1AjjyciqnCya1aiMhAgFvG/logo.png", + "pairs": [] + }, + { + "asset": "c501_t7dgHoN8wBZCc5wbnQ2C47TDnBMAxG4Q5L3KjP67z8kNi", + "type": "SPL", + "address": "7dgHoN8wBZCc5wbnQ2C47TDnBMAxG4Q5L3KjP67z8kNi", + "name": "Decentraland (Portal)", + "symbol": "MANA", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/7dgHoN8wBZCc5wbnQ2C47TDnBMAxG4Q5L3KjP67z8kNi/logo.png", + "pairs": [] + }, + { + "asset": "c501_t7dVH61ChzgmN9BwG4PkzwRP8PbYwPJ7ZPNF2vamKT2H8", + "type": "SPL", + "address": "7dVH61ChzgmN9BwG4PkzwRP8PbYwPJ7ZPNF2vamKT2H8", + "name": "Huobi BTC (Portal)", + "symbol": "HBTC", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/7dVH61ChzgmN9BwG4PkzwRP8PbYwPJ7ZPNF2vamKT2H8/logo.png", + "pairs": [] + }, + { + "asset": "c501_t7gjNiPun3AzEazTZoFEjZgcBMeuaXdpjHq2raZTmTrfs", + "type": "SPL", + "address": "7gjNiPun3AzEazTZoFEjZgcBMeuaXdpjHq2raZTmTrfs", + "name": "Curve DAO Token (Portal)", + "symbol": "CRV", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/7gjNiPun3AzEazTZoFEjZgcBMeuaXdpjHq2raZTmTrfs/logo.png", + "pairs": [] + }, + { + "asset": "c501_t7i5KKsX2weiTkry7jA4ZwSuXGhs5eJBEjY8vVxR4pfRx", + "type": "SPL", + "address": "7i5KKsX2weiTkry7jA4ZwSuXGhs5eJBEjY8vVxR4pfRx", + "name": "GMT", + "symbol": "GMT", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/7i5KKsX2weiTkry7jA4ZwSuXGhs5eJBEjY8vVxR4pfRx/logo.png", + "pairs": [] + }, + { + "asset": "c501_t7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs", + "type": "SPL", + "address": "7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs", + "name": "Ether (Portal)", + "symbol": "ETH", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs/logo.png", + "pairs": [] + }, + { + "asset": "c501_t7VQo3HFLNH5QqGtM8eC3XQbPkJUu7nS9LeGWjerRh5Sw", + "type": "SPL", + "address": "7VQo3HFLNH5QqGtM8eC3XQbPkJUu7nS9LeGWjerRh5Sw", + "name": "HUSD Stablecoin (Portal)", + "symbol": "HUSD", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/7VQo3HFLNH5QqGtM8eC3XQbPkJUu7nS9LeGWjerRh5Sw/logo.png", + "pairs": [] + }, + { + "asset": "c501_t8cTNUtcV2ueC3royJ642uRnvTxorJAWLZc58gxAo7y56", + "type": "SPL", + "address": "8cTNUtcV2ueC3royJ642uRnvTxorJAWLZc58gxAo7y56", + "name": "Synthetix (Portal)", + "symbol": "SNX", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/8cTNUtcV2ueC3royJ642uRnvTxorJAWLZc58gxAo7y56/logo.png", + "pairs": [] + }, + { + "asset": "c501_t8FU95xFJhUUkyyCLU13HSzDLs7oC4QZdXQHL6SCeab36", + "type": "SPL", + "address": "8FU95xFJhUUkyyCLU13HSzDLs7oC4QZdXQHL6SCeab36", + "name": "Uniswap (Portal)", + "symbol": "UNI", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/8FU95xFJhUUkyyCLU13HSzDLs7oC4QZdXQHL6SCeab36/logo.png", + "pairs": [] + }, + { + "asset": "c501_t8gC27rQF4NEDYfyf5aS8ZmQJUum5gufowKGYRRba4ENN", + "type": "SPL", + "address": "8gC27rQF4NEDYfyf5aS8ZmQJUum5gufowKGYRRba4ENN", + "name": "Fantom (Portal from Ethereum)", + "symbol": "FTMet", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/8gC27rQF4NEDYfyf5aS8ZmQJUum5gufowKGYRRba4ENN/logo.png", + "pairs": [] + }, + { + "asset": "c501_t8qJSyQprMC57TWKaYEmetUR3UUiTP2M3hXdcvFhkZdmv", + "type": "SPL", + "address": "8qJSyQprMC57TWKaYEmetUR3UUiTP2M3hXdcvFhkZdmv", + "name": "Tether USD (Portal from BSC)", + "symbol": "USDTbs", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/8qJSyQprMC57TWKaYEmetUR3UUiTP2M3hXdcvFhkZdmv/logo.png", + "pairs": [] + }, + { + "asset": "c501_t9gP2kCy3wA1ctvYWQk75guqXuHfrEomqydHLtcTCqiLa", + "type": "SPL", + "address": "9gP2kCy3wA1ctvYWQk75guqXuHfrEomqydHLtcTCqiLa", + "name": "Binance Coin (Portal)", + "symbol": "BNB", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/9gP2kCy3wA1ctvYWQk75guqXuHfrEomqydHLtcTCqiLa/logo.png", + "pairs": [] + }, + { + "asset": "c501_t9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E", + "type": "SPL", + "address": "9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E", + "name": "Wrapped BTC", + "symbol": "BTC", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E/logo.png", + "pairs": [] + }, + { + "asset": "c501_t49c7WuCZkQgc3M4qH8WuEUNXfgwupZf1xqWkDQ7gjRGt", + "type": "SPL", + "address": "49c7WuCZkQgc3M4qH8WuEUNXfgwupZf1xqWkDQ7gjRGt", + "name": "The Sandbox (Portal)", + "symbol": "SAND", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/49c7WuCZkQgc3M4qH8WuEUNXfgwupZf1xqWkDQ7gjRGt/logo.png", + "pairs": [] + }, + { + "asset": "c501_tA9mUU4qviSctJVPJdBJWkb28deg915LYJKrzQ19ji3FM", + "type": "SPL", + "address": "A9mUU4qviSctJVPJdBJWkb28deg915LYJKrzQ19ji3FM", + "name": "USD Coin (Portal from Ethereum)", + "symbol": "USDCet", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/A9mUU4qviSctJVPJdBJWkb28deg915LYJKrzQ19ji3FM/logo.png", + "pairs": [] + }, + { + "asset": "c501_tAFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB", + "type": "SPL", + "address": "AFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB", + "name": "Green Satoshi Token", + "symbol": "GST", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/AFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB/logo.png", + "pairs": [] + }, + { + "asset": "c501_tAGFEad2et2ZJif9jaGpdMixQqvW5i81aBdvKe7PHNfz3", + "type": "SPL", + "address": "AGFEad2et2ZJif9jaGpdMixQqvW5i81aBdvKe7PHNfz3", + "name": "FTX Token", + "symbol": "FTT", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/AGFEad2et2ZJif9jaGpdMixQqvW5i81aBdvKe7PHNfz3/logo.png", + "pairs": [] + }, + { + "asset": "c501_tAjkPkq3nsyDe1yKcbyZT7N4aK4Evv9om9tzhQD3wsRC", + "type": "SPL", + "address": "AjkPkq3nsyDe1yKcbyZT7N4aK4Evv9om9tzhQD3wsRC", + "name": "1inch (Portal)", + "symbol": "1INCH", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/AjkPkq3nsyDe1yKcbyZT7N4aK4Evv9om9tzhQD3wsRC/logo.png", + "pairs": [] + }, + { + "asset": "c501_tAwEauVaTMQRB71WeDnwf1DWSBxaMKjEPuxyLr1uixFom", + "type": "SPL", + "address": "AwEauVaTMQRB71WeDnwf1DWSBxaMKjEPuxyLr1uixFom", + "name": "Compound (Portal)", + "symbol": "COMP", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/AwEauVaTMQRB71WeDnwf1DWSBxaMKjEPuxyLr1uixFom/logo.png", + "pairs": [] + }, + { + "asset": "c501_tBCsFXYm81iqXyYmrLKgAp3AePcgLHnirb8FjTs6sjM7U", + "type": "SPL", + "address": "BCsFXYm81iqXyYmrLKgAp3AePcgLHnirb8FjTs6sjM7U", + "name": "Spell Token (Portal)", + "symbol": "SPELL", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/BCsFXYm81iqXyYmrLKgAp3AePcgLHnirb8FjTs6sjM7U/logo.png", + "pairs": [] + }, + { + "asset": "c501_tBQcdHdAQW1hczDbBi9hiegXAR7A98Q9jx3X3iBBBDiq4", + "type": "SPL", + "address": "BQcdHdAQW1hczDbBi9hiegXAR7A98Q9jx3X3iBBBDiq4", + "name": "Wrapped USDT", + "symbol": "wUSDT", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/BQcdHdAQW1hczDbBi9hiegXAR7A98Q9jx3X3iBBBDiq4/logo.png", + "pairs": [] + }, + { + "asset": "c501_tBXZX2JRJFjvKazM1ibeDFxgAngKExb74MRXzXKvgikxX", + "type": "SPL", + "address": "BXZX2JRJFjvKazM1ibeDFxgAngKExb74MRXzXKvgikxX", + "name": "Yearn (Portal)", + "symbol": "YFI", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/BXZX2JRJFjvKazM1ibeDFxgAngKExb74MRXzXKvgikxX/logo.png", + "pairs": [] + }, + { + "asset": "c501_tC7NNPWuZCNjZBfW5p6JvGsR8pUdsRpEdP1ZAhnoDwj7h", + "type": "SPL", + "address": "C7NNPWuZCNjZBfW5p6JvGsR8pUdsRpEdP1ZAhnoDwj7h", + "name": "MATIC (Portal from Ethereum)", + "symbol": "MATICet", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/C7NNPWuZCNjZBfW5p6JvGsR8pUdsRpEdP1ZAhnoDwj7h/logo.png", + "pairs": [] + }, + { + "asset": "c501_tChVzxWRmrTeSgwd3Ui3UumcN8KX7VK3WaD4KGeSKpypj", + "type": "SPL", + "address": "ChVzxWRmrTeSgwd3Ui3UumcN8KX7VK3WaD4KGeSKpypj", + "name": "SushiToken (Portal)", + "symbol": "SUSHI", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/ChVzxWRmrTeSgwd3Ui3UumcN8KX7VK3WaD4KGeSKpypj/logo.png", + "pairs": [] + }, + { + "asset": "c501_tCiKu4eHsVrc1eueVQeHn7qhXTcVu95gSQmBpX4utjL9z", + "type": "SPL", + "address": "CiKu4eHsVrc1eueVQeHn7qhXTcVu95gSQmBpX4utjL9z", + "name": "Shiba Inu (Portal)", + "symbol": "SHIB", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/CiKu4eHsVrc1eueVQeHn7qhXTcVu95gSQmBpX4utjL9z/logo.png", + "pairs": [] + }, + { + "asset": "c501_tDvjMYMVeXgKxaixGKpzQThLoG98nc7HSU7eanzsdCboA", + "type": "SPL", + "address": "DvjMYMVeXgKxaixGKpzQThLoG98nc7HSU7eanzsdCboA", + "name": "Cronos (Portal)", + "symbol": "CRO", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/DvjMYMVeXgKxaixGKpzQThLoG98nc7HSU7eanzsdCboA/logo.png", + "pairs": [] + }, + { + "asset": "c501_tEPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "type": "SPL", + "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "name": "USDC", + "symbol": "USDC", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v/logo.png", + "pairs": [] + }, + { + "asset": "c501_tEs9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB", + "type": "SPL", + "address": "Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB", + "name": "Tether USDT", + "symbol": "USDT", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB/logo.png", + "pairs": [] + }, + { + "asset": "c501_tF6v4wfAdJB8D8p77bMXZgYt8TDKsYxLYxH5AFhUkYx9W", + "type": "SPL", + "address": "F6v4wfAdJB8D8p77bMXZgYt8TDKsYxLYxH5AFhUkYx9W", + "name": "Terra Classic (Portal)", + "symbol": "LUNA", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/F6v4wfAdJB8D8p77bMXZgYt8TDKsYxLYxH5AFhUkYx9W/logo.png", + "pairs": [] + }, + { + "asset": "c501_tGz7VkD4MacbEB6yC5XD3HcumEiYx2EtDYYrfikGsvopG", + "type": "SPL", + "address": "Gz7VkD4MacbEB6yC5XD3HcumEiYx2EtDYYrfikGsvopG", + "name": "MATIC (Portal from Polygon)", + "symbol": "MATICpo", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/Gz7VkD4MacbEB6yC5XD3HcumEiYx2EtDYYrfikGsvopG/logo.png", + "pairs": [] + }, + { + "asset": "c501_tHUCyuyqESEUV4YWTKFvvB4JiQLqoovscTBpRXfGzW4Wx", + "type": "SPL", + "address": "HUCyuyqESEUV4YWTKFvvB4JiQLqoovscTBpRXfGzW4Wx", + "name": "Rocket Pool (Portal)", + "symbol": "RPL", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/HUCyuyqESEUV4YWTKFvvB4JiQLqoovscTBpRXfGzW4Wx/logo.png", + "pairs": [] + }, + { + "asset": "c501_t27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4", + "type": "SPL", + "address": "27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4", + "name": "Jupiter Perps LP", + "symbol": "JLP", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4/logo.png", + "pairs": [] + }, + { + "asset": "c501_t5MAYDfq5yxtudAhtfyuMBuHZjgAbaS9tbEyEQYAhDS5y", + "type": "SPL", + "address": "5MAYDfq5yxtudAhtfyuMBuHZjgAbaS9tbEyEQYAhDS5y", + "name": "Access Protocol", + "symbol": "ACS", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/5MAYDfq5yxtudAhtfyuMBuHZjgAbaS9tbEyEQYAhDS5y/logo.png", + "pairs": [] + }, + { + "asset": "c501_t8wXtPeU6557ETkp9WHFY1n1EcU6NxDvbAggHGsMYiHsB", + "type": "SPL", + "address": "8wXtPeU6557ETkp9WHFY1n1EcU6NxDvbAggHGsMYiHsB", + "name": "GameStop", + "symbol": "GME", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/8wXtPeU6557ETkp9WHFY1n1EcU6NxDvbAggHGsMYiHsB/logo.png", + "pairs": [] + }, + { + "asset": "c501_tC98A4nkJXhpVZNAZdHUA95RpTF3T4whtQubL3YobiUX9", + "type": "SPL", + "address": "C98A4nkJXhpVZNAZdHUA95RpTF3T4whtQubL3YobiUX9", + "name": "Coin98", + "symbol": "C98", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/C98A4nkJXhpVZNAZdHUA95RpTF3T4whtQubL3YobiUX9/logo.png", + "pairs": [] + }, + { + "asset": "c501_tEKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm", + "type": "SPL", + "address": "EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm", + "name": "dogwifhat", + "symbol": "WIF", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm/logo.png", + "pairs": [] + }, + { + "asset": "c501_tGTH3wG3NErjwcf7VGCoXEXkgXSHvYhx5gtATeeM5JAS1", + "type": "SPL", + "address": "GTH3wG3NErjwcf7VGCoXEXkgXSHvYhx5gtATeeM5JAS1", + "name": "Whales Market", + "symbol": "WHALES", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/GTH3wG3NErjwcf7VGCoXEXkgXSHvYhx5gtATeeM5JAS1/logo.png", + "pairs": [] + }, + { + "asset": "c501_tHZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3", + "type": "SPL", + "address": "HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3", + "name": "Pyth Network", + "symbol": "PYTH", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3/logo.png", + "pairs": [] + }, + { + "asset": "c501_tJ1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn", + "type": "SPL", + "address": "J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn", + "name": "Jito Staked SOL", + "symbol": "JitoSOL", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn/logo.png", + "pairs": [] + }, + { + "asset": "c501_tbSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1", + "type": "SPL", + "address": "bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1", + "name": "BlazeStake Staked SOL", + "symbol": "bSOL", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1/logo.png", + "pairs": [] + }, + { + "asset": "c501_thntyVP6YFm1Hg25TN9WGLqM12b8TQmcknKrdu1oxWux", + "type": "SPL", + "address": "hntyVP6YFm1Hg25TN9WGLqM12b8TQmcknKrdu1oxWux", + "name": "Helium", + "symbol": "HNT", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/hntyVP6YFm1Hg25TN9WGLqM12b8TQmcknKrdu1oxWux/logo.png", + "pairs": [] + }, + { + "asset": "c501_trndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof", + "type": "SPL", + "address": "rndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof", + "name": "Render", + "symbol": "RNDR", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/rndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof/logo.png", + "pairs": [] + } + ], + "version": { + "major": 1, + "minor": 0, + "patch": 0 + } +} diff --git a/blockchains/solana/validators/assets/1KXz4xKV2viJCGpxqnQqdf2J45vQr5USdmtcJLTaHkm/logo.png b/blockchains/solana/validators/assets/1KXz4xKV2viJCGpxqnQqdf2J45vQr5USdmtcJLTaHkm/logo.png new file mode 100644 index 0000000000000..d55d207a09a28 Binary files /dev/null and b/blockchains/solana/validators/assets/1KXz4xKV2viJCGpxqnQqdf2J45vQr5USdmtcJLTaHkm/logo.png differ diff --git a/blockchains/solana/validators/assets/D4mLBafAJjpRABT5Tyj6UhuwJ8DLRk74JzyuTMUdU9Fz/logo.png b/blockchains/solana/validators/assets/D4mLBafAJjpRABT5Tyj6UhuwJ8DLRk74JzyuTMUdU9Fz/logo.png new file mode 100644 index 0000000000000..c2cb86a42efe3 Binary files /dev/null and b/blockchains/solana/validators/assets/D4mLBafAJjpRABT5Tyj6UhuwJ8DLRk74JzyuTMUdU9Fz/logo.png differ diff --git a/blockchains/solana/validators/assets/DTwEEF6VSrmTBYkDcj3BKAc52qhvP8CEQUEAMMT1cG3/logo.png b/blockchains/solana/validators/assets/DTwEEF6VSrmTBYkDcj3BKAc52qhvP8CEQUEAMMT1cG3/logo.png new file mode 100644 index 0000000000000..816c729806e00 Binary files /dev/null and b/blockchains/solana/validators/assets/DTwEEF6VSrmTBYkDcj3BKAc52qhvP8CEQUEAMMT1cG3/logo.png differ diff --git a/blockchains/solana/validators/assets/EFEKcHrUBsRoQkuTSJAQNZnj1u8h9oE4LoCYerednc3F/logo.png b/blockchains/solana/validators/assets/EFEKcHrUBsRoQkuTSJAQNZnj1u8h9oE4LoCYerednc3F/logo.png index 3c29ee005d51c..0888af01c5da5 100644 Binary files a/blockchains/solana/validators/assets/EFEKcHrUBsRoQkuTSJAQNZnj1u8h9oE4LoCYerednc3F/logo.png and b/blockchains/solana/validators/assets/EFEKcHrUBsRoQkuTSJAQNZnj1u8h9oE4LoCYerednc3F/logo.png differ diff --git a/blockchains/solana/validators/assets/EPWrFd8jJ4SLA1YtcZcRAsAMxmnikSVqbumerCq5yV6z/logo.png b/blockchains/solana/validators/assets/EPWrFd8jJ4SLA1YtcZcRAsAMxmnikSVqbumerCq5yV6z/logo.png deleted file mode 100644 index 145cb3cb09913..0000000000000 Binary files a/blockchains/solana/validators/assets/EPWrFd8jJ4SLA1YtcZcRAsAMxmnikSVqbumerCq5yV6z/logo.png and /dev/null differ diff --git a/blockchains/solana/validators/assets/FiijvR2ibXEHaFqB127CxrL3vSj19K2Kx1jf2RbK4BWS/logo.png b/blockchains/solana/validators/assets/FiijvR2ibXEHaFqB127CxrL3vSj19K2Kx1jf2RbK4BWS/logo.png new file mode 100644 index 0000000000000..f5f3ada9451c6 Binary files /dev/null and b/blockchains/solana/validators/assets/FiijvR2ibXEHaFqB127CxrL3vSj19K2Kx1jf2RbK4BWS/logo.png differ diff --git a/blockchains/solana/validators/assets/PUFFiNkUHF2DMfbKeUcYTSQckDDtkswfxZCDv5WQqwp/logo.png b/blockchains/solana/validators/assets/PUFFiNkUHF2DMfbKeUcYTSQckDDtkswfxZCDv5WQqwp/logo.png new file mode 100644 index 0000000000000..09b756eaa5ffb Binary files /dev/null and b/blockchains/solana/validators/assets/PUFFiNkUHF2DMfbKeUcYTSQckDDtkswfxZCDv5WQqwp/logo.png differ diff --git a/blockchains/solana/validators/list.json b/blockchains/solana/validators/list.json index 44c8ef68977bb..f6681c107344b 100644 --- a/blockchains/solana/validators/list.json +++ b/blockchains/solana/validators/list.json @@ -1,16 +1,28 @@ [ + { + "id": "FiijvR2ibXEHaFqB127CxrL3vSj19K2Kx1jf2RbK4BWS", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com" + }, + { + "id": "DTwEEF6VSrmTBYkDcj3BKAc52qhvP8CEQUEAMMT1cG3", + "name": "Capital Alliance 🔥", + "description": "Best APY, 0% fee, MEV Bonus. Telegram: https://t.me/capitalalliance_official", + "website": "https://capitall.app" + }, + { + "id": "1KXz4xKV2viJCGpxqnQqdf2J45vQr5USdmtcJLTaHkm", + "name": "1000X.sh 🤝 0% fee guaranteed", + "description": "Stake with the most reliable, secure and profitable validator.", + "website": "https://1000x.sh/" + }, { "id": "PUmpKiNnSVAZ3w4KaFX6jKSjXUNHFShGkXbERo54xjb", "name": "Pumpkin's Pool", "description": "High Yield - Top 1% APY + No fee + MEV Sharing | Professionally run on high-end enterprise hardware.", "website": "https://www.pumpkinspool.eco/" }, - { - "id": "EPWrFd8jJ4SLA1YtcZcRAsAMxmnikSVqbumerCq5yV6z", - "name": "Sunflower 🌻", - "description": "Thanks to this sunflower, the plants defeated the zombies! She can be trusted! Retired. Now she's just validating.", - "website": "https://sunflowerstake.com/" - }, { "id": "AS3nKBQfKs8fJ8ncyHrdvo4FDT6S8HMRhD75JjCcyr1t", "name": "Overclock", @@ -29,6 +41,12 @@ "description": "Chorus One helps you securely increase your crypto holdings by participating in decentralized networks.", "website": "https://chorus.one/" }, + { + "id": "D4mLBafAJjpRABT5Tyj6UhuwJ8DLRk74JzyuTMUdU9Fz", + "name": "AutoStake ⚡️ 0% fee", + "description": "BareMetal - Decentralised - Reliable infrastructure run by the industry leader - AutoStake - Connect with us at: https://linktr.ee/autostake", + "website": "https://autostake.com" + }, { "id": "CertusDeBmqN8ZawdkxK5kFGMwBXdudvWHYwtNgNhvLu", "name": "Jump Crypto", @@ -55,9 +73,9 @@ }, { "id": "EFEKcHrUBsRoQkuTSJAQNZnj1u8h9oE4LoCYerednc3F", - "name": "Genesis Lab", - "description": "Genesis Lab is a validation nodes operator in PoS networks and blockchain-focused software development company", - "website": "https://genesislab.net" + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" }, { "id": "9tedbEYypEKXAMkHcg42rn3fXY1B8hB6cdE3ZTFouXLL", @@ -68,7 +86,7 @@ { "id": "4PsiLMyoUQ7QRn1FFiFCvej4hsUTFzfvJnyN4bj1tmSN", "name": "Stakin", - "description": "Your Trusted Crypto Rewards", + "description": "Staking Services Trusted by Institutions.", "website": "https://stakin.com/" }, { @@ -121,8 +139,8 @@ }, { "id": "6F5xdRXh2W3B2vhte12VG79JVUkUSLYrHydGX1SAadfZ", - "name": "Allnodes.com ⚡️ 0% fee", - "description": "eliable non-custodial Validator run by the industry leader - Allnodes.", + "name": "Allnodes ⚡️ 0% fee", + "description": "Reliable non-custodial Validator run by the industry leader - Allnodes. Monitor your rewards through the Allnodes portfolio page.", "website": "https://www.allnodes.com/sol/staking" }, { @@ -136,5 +154,11 @@ "name": "Stakewolle | Mainnet", "description": "🦈 Professional Bockchain Validator 🔁Auto-compound with REStakeapp 🛡100% Slashing insurance 🎁 All & Special Airdrops for delegators http://linktr.ee/stakewolle", "website": "https://stakewolle.com/" + }, + { + "id": "PUFFiNkUHF2DMfbKeUcYTSQckDDtkswfxZCDv5WQqwp", + "name": "Puffin", + "description": "High-performance and independent validator with 0% commission", + "website": "https://puffin-validator.xyz" } ] diff --git a/blockchains/sommelier/info/info.json b/blockchains/sommelier/info/info.json index 0692fa8826665..852eb7f672ae0 100644 --- a/blockchains/sommelier/info/info.json +++ b/blockchains/sommelier/info/info.json @@ -21,8 +21,8 @@ "url": "https://tricky-sand-5e6.notion.site/Sommelier-Documentation-006e748753e34a1299f9b1d6ae3a4544" }, { - "name": "twitter", - "url": "https://twitter.com/sommfinance" + "name": "x", + "url": "https://x.com/sommfinance" } ] } \ No newline at end of file diff --git a/blockchains/sommelier/info/square_logo.png b/blockchains/sommelier/info/square_logo.png new file mode 100644 index 0000000000000..31d329dd2a235 Binary files /dev/null and b/blockchains/sommelier/info/square_logo.png differ diff --git a/blockchains/sommelier/validators/assets/sommvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z4mj4sy/logo.png b/blockchains/sommelier/validators/assets/sommvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z4mj4sy/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/sommelier/validators/assets/sommvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z4mj4sy/logo.png differ diff --git a/blockchains/sommelier/validators/assets/sommvaloper15urq2dtp9qce4fyc85m6upwm9xul30499el64g/logo.png b/blockchains/sommelier/validators/assets/sommvaloper15urq2dtp9qce4fyc85m6upwm9xul30499el64g/logo.png new file mode 100644 index 0000000000000..83225b3167144 Binary files /dev/null and b/blockchains/sommelier/validators/assets/sommvaloper15urq2dtp9qce4fyc85m6upwm9xul30499el64g/logo.png differ diff --git a/blockchains/sommelier/validators/assets/sommvaloper1a583xjv6ylrdfzm3udk6jnj4xy28k2wge0eazz/logo.png b/blockchains/sommelier/validators/assets/sommvaloper1a583xjv6ylrdfzm3udk6jnj4xy28k2wge0eazz/logo.png new file mode 100644 index 0000000000000..18b82452aaf26 Binary files /dev/null and b/blockchains/sommelier/validators/assets/sommvaloper1a583xjv6ylrdfzm3udk6jnj4xy28k2wge0eazz/logo.png differ diff --git a/blockchains/sommelier/validators/assets/sommvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4pu0vlu3/logo.png b/blockchains/sommelier/validators/assets/sommvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4pu0vlu3/logo.png new file mode 100644 index 0000000000000..552a01c6cb622 Binary files /dev/null and b/blockchains/sommelier/validators/assets/sommvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4pu0vlu3/logo.png differ diff --git a/blockchains/sommelier/validators/assets/sommvaloper1pedd3sk0qhwc3yr6zh036gcwc0d6yhuntw9lcw/logo.png b/blockchains/sommelier/validators/assets/sommvaloper1pedd3sk0qhwc3yr6zh036gcwc0d6yhuntw9lcw/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/sommelier/validators/assets/sommvaloper1pedd3sk0qhwc3yr6zh036gcwc0d6yhuntw9lcw/logo.png differ diff --git a/blockchains/sommelier/validators/assets/sommvaloper1tl6jl7ecqwvgagsc4w46n9nm470cwjyg24hlw3/logo.png b/blockchains/sommelier/validators/assets/sommvaloper1tl6jl7ecqwvgagsc4w46n9nm470cwjyg24hlw3/logo.png new file mode 100644 index 0000000000000..c2cb86a42efe3 Binary files /dev/null and b/blockchains/sommelier/validators/assets/sommvaloper1tl6jl7ecqwvgagsc4w46n9nm470cwjyg24hlw3/logo.png differ diff --git a/blockchains/sommelier/validators/list.json b/blockchains/sommelier/validators/list.json new file mode 100644 index 0000000000000..91e5c5d0f188d --- /dev/null +++ b/blockchains/sommelier/validators/list.json @@ -0,0 +1,38 @@ +[ + { + "id": "sommvaloper1pedd3sk0qhwc3yr6zh036gcwc0d6yhuntw9lcw", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "sommvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4pu0vlu3", + "name": "polkachu.com", + "description": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash", + "website": "https://polkachu.com/" + }, + { + "id": "sommvaloper15urq2dtp9qce4fyc85m6upwm9xul30499el64g", + "name": "Chorus One", + "description": "Secure Sommelier and shape its future by delegating to Chorus One, a highly secure and stable validator.", + "website": "https://chorus.one/" + }, + { + "id": "sommvaloper1tl6jl7ecqwvgagsc4w46n9nm470cwjyg24hlw3", + "name": "AutoStake 🛡️ Slash Protected", + "description": "BareMetal - Decentralised - Reliable infrastructure run by the industry leader - AutoStake - Connect with us at: https://linktr.ee/autostake", + "website": "https://autostake.com" + }, + { + "id": "sommvaloper1a583xjv6ylrdfzm3udk6jnj4xy28k2wge0eazz", + "name": "Polychain", + "description": "Polychain is an investment firm committed to exceptional returns for investors through actively managed portfolios of blockchain assets.", + "website": "https://polychain.capital/" + }, + { + "id": "sommvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z4mj4sy", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + } +] diff --git a/blockchains/sonic/assets/0x005851f943ee2957B1748957F26319e4f9EdeBC1/info.json b/blockchains/sonic/assets/0x005851f943ee2957B1748957F26319e4f9EdeBC1/info.json new file mode 100644 index 0000000000000..f48bd10109fa0 --- /dev/null +++ b/blockchains/sonic/assets/0x005851f943ee2957B1748957F26319e4f9EdeBC1/info.json @@ -0,0 +1,17 @@ +{ + "name": "Silver", + "symbol": "AG", + "website": "https://silverswap.io/", + "description": "SilverSwap is the first premium DEX (Decentralized Exchange) on Sonic that offers fully novel tokenomics, including a 9-year runway, a burn-centric design, unmatchedcswap speeds, and the most effective and high-yielding liquidity provision options.", + "explorer": "https://sonicscan.org/token/0x005851f943ee2957b1748957f26319e4f9edebc1", + "type": "SONIC", + "decimals": 18, + "status": "active", + "id": "0x005851f943ee2957B1748957F26319e4f9EdeBC1", + "links": [ + { + "name": "x", + "url": "https://x.com/SilverSwapDex" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0x005851f943ee2957B1748957F26319e4f9EdeBC1/logo.png b/blockchains/sonic/assets/0x005851f943ee2957B1748957F26319e4f9EdeBC1/logo.png new file mode 100644 index 0000000000000..0c99991a96a98 Binary files /dev/null and b/blockchains/sonic/assets/0x005851f943ee2957B1748957F26319e4f9EdeBC1/logo.png differ diff --git a/blockchains/sonic/assets/0x039e2fB66102314Ce7b64Ce5Ce3E5183bc94aD38/info.json b/blockchains/sonic/assets/0x039e2fB66102314Ce7b64Ce5Ce3E5183bc94aD38/info.json new file mode 100644 index 0000000000000..3f6b7709a2704 --- /dev/null +++ b/blockchains/sonic/assets/0x039e2fB66102314Ce7b64Ce5Ce3E5183bc94aD38/info.json @@ -0,0 +1,32 @@ +{ + "name": "Wrapped Sonic", + "website": "https://www.soniclabs.com/", + "description": "Sonic is the highest-performing EVM L1", + "explorer": "https://sonicscan.org/token/0x039e2fb66102314ce7b64ce5ce3e5183bc94ad38", + "symbol": "wS", + "type": "SONIC", + "decimals": 18, + "id": "0x039e2fB66102314Ce7b64Ce5Ce3E5183bc94aD38", + "status": "active", + "tags": [ + "dapp" + ], + "links": [ + { + "name": "discord", + "url": "https://discord.com/3Ynr2QDSnB" + }, + { + "name": "x", + "url": "https://x.com/SonicLabs" + }, + { + "name": "telegram", + "url": "https://t.me/Sonic_English" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/0xSonic/" + } + ] +} diff --git a/blockchains/sonic/assets/0x039e2fB66102314Ce7b64Ce5Ce3E5183bc94aD38/logo.png b/blockchains/sonic/assets/0x039e2fB66102314Ce7b64Ce5Ce3E5183bc94aD38/logo.png new file mode 100644 index 0000000000000..7cc8aea38da14 Binary files /dev/null and b/blockchains/sonic/assets/0x039e2fB66102314Ce7b64Ce5Ce3E5183bc94aD38/logo.png differ diff --git a/blockchains/sonic/assets/0x0555E30da8f98308EdB960aa94C0Db47230d2B9c/info.json b/blockchains/sonic/assets/0x0555E30da8f98308EdB960aa94C0Db47230d2B9c/info.json new file mode 100644 index 0000000000000..3c48e41aa3bb1 --- /dev/null +++ b/blockchains/sonic/assets/0x0555E30da8f98308EdB960aa94C0Db47230d2B9c/info.json @@ -0,0 +1,17 @@ +{ + "name": "Wrapped BTC", + "symbol": "WBTC", + "website": "https://www.wbtc.network/", + "description": "Wrapped Bitcoin (WBTC) is an ERC20 token backed 1:1 with Bitcoin. Completely transparent. 100% verifiable. Community led.", + "explorer": "https://sonicscan.org/token/0x0555e30da8f98308edb960aa94c0db47230d2b9c", + "type": "SONIC", + "decimals": 8, + "status": "active", + "id": "0x0555E30da8f98308EdB960aa94C0Db47230d2B9c", + "links": [ + { + "name": "x", + "url": "https://x.com/WrappedBTC" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0x0555E30da8f98308EdB960aa94C0Db47230d2B9c/logo.png b/blockchains/sonic/assets/0x0555E30da8f98308EdB960aa94C0Db47230d2B9c/logo.png new file mode 100644 index 0000000000000..418f0810bfe84 Binary files /dev/null and b/blockchains/sonic/assets/0x0555E30da8f98308EdB960aa94C0Db47230d2B9c/logo.png differ diff --git a/blockchains/sonic/assets/0x0e0Ce4D450c705F8a0B6Dd9d5123e3df2787D16B/info.json b/blockchains/sonic/assets/0x0e0Ce4D450c705F8a0B6Dd9d5123e3df2787D16B/info.json new file mode 100644 index 0000000000000..df4bf581da892 --- /dev/null +++ b/blockchains/sonic/assets/0x0e0Ce4D450c705F8a0B6Dd9d5123e3df2787D16B/info.json @@ -0,0 +1,17 @@ +{ + "name": "Wagmi", + "symbol": "WAGMI", + "website": "https://wagmi.com/", + "description": "At the heart of the WAGMI protocol lies a commitment to revolutionize decentralized finance (DeFi) by providing secure, robust, and innovative products that make DeFi more accessible and user-friendly.", + "explorer": "https://sonicscan.org/token/0x0e0ce4d450c705f8a0b6dd9d5123e3df2787d16b", + "type": "SONIC", + "decimals": 18, + "status": "active", + "id": "0x0e0Ce4D450c705F8a0B6Dd9d5123e3df2787D16B", + "links": [ + { + "name": "x", + "url": "https://x.com/wagmicom" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0x0e0Ce4D450c705F8a0B6Dd9d5123e3df2787D16B/logo.png b/blockchains/sonic/assets/0x0e0Ce4D450c705F8a0B6Dd9d5123e3df2787D16B/logo.png new file mode 100644 index 0000000000000..4c707582b9c76 Binary files /dev/null and b/blockchains/sonic/assets/0x0e0Ce4D450c705F8a0B6Dd9d5123e3df2787D16B/logo.png differ diff --git a/blockchains/sonic/assets/0x0fDbce271bea0d9819034cd09021e0bBE94be3Fd/info.json b/blockchains/sonic/assets/0x0fDbce271bea0d9819034cd09021e0bBE94be3Fd/info.json new file mode 100644 index 0000000000000..fdf79d1e4e813 --- /dev/null +++ b/blockchains/sonic/assets/0x0fDbce271bea0d9819034cd09021e0bBE94be3Fd/info.json @@ -0,0 +1,17 @@ +{ + "name": "Gearbox", + "symbol": "GEAR", + "website": "https://gearbox.fi/", + "description": "Gearbox Protocol is essentially a two-sided lending marketplace: it connects users who want passive safe APY & leverage degens who know how to make more with leverage and alpha.", + "explorer": "https://sonicscan.org/token/0x0fdbce271bea0d9819034cd09021e0bbe94be3fd", + "type": "SONIC", + "decimals": 18, + "status": "active", + "id": "0x0fDbce271bea0d9819034cd09021e0bBE94be3Fd", + "links": [ + { + "name": "x", + "url": "https://x.com/GearboxProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0x0fDbce271bea0d9819034cd09021e0bBE94be3Fd/logo.png b/blockchains/sonic/assets/0x0fDbce271bea0d9819034cd09021e0bBE94be3Fd/logo.png new file mode 100644 index 0000000000000..f1fa4fd64446a Binary files /dev/null and b/blockchains/sonic/assets/0x0fDbce271bea0d9819034cd09021e0bBE94be3Fd/logo.png differ diff --git a/blockchains/sonic/assets/0x17Af1Df44444AB9091622e4Aa66dB5BB34E51aD5/info.json b/blockchains/sonic/assets/0x17Af1Df44444AB9091622e4Aa66dB5BB34E51aD5/info.json new file mode 100644 index 0000000000000..3bb60f8a246c2 --- /dev/null +++ b/blockchains/sonic/assets/0x17Af1Df44444AB9091622e4Aa66dB5BB34E51aD5/info.json @@ -0,0 +1,17 @@ +{ + "name": "Tin Hat Cat", + "symbol": "THC", + "website": "https://www.tinhatcat.com", + "description": "The Conspiracy Brand of Crypto. 👁🕳 Built on Sonic", + "explorer": "https://sonicscan.org/token/0x17af1df44444ab9091622e4aa66db5bb34e51ad5", + "type": "SONIC", + "decimals": 18, + "status": "active", + "id": "0x17Af1Df44444AB9091622e4Aa66dB5BB34E51aD5", + "links": [ + { + "name": "x", + "url": "https://x.com/TinHat_Cat" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0x17Af1Df44444AB9091622e4Aa66dB5BB34E51aD5/logo.png b/blockchains/sonic/assets/0x17Af1Df44444AB9091622e4Aa66dB5BB34E51aD5/logo.png new file mode 100644 index 0000000000000..391df8bca8aa4 Binary files /dev/null and b/blockchains/sonic/assets/0x17Af1Df44444AB9091622e4Aa66dB5BB34E51aD5/logo.png differ diff --git a/blockchains/sonic/assets/0x29219dd400f2Bf60E5a23d13Be72B486D4038894/info.json b/blockchains/sonic/assets/0x29219dd400f2Bf60E5a23d13Be72B486D4038894/info.json new file mode 100644 index 0000000000000..de0b9ed12ed4c --- /dev/null +++ b/blockchains/sonic/assets/0x29219dd400f2Bf60E5a23d13Be72B486D4038894/info.json @@ -0,0 +1,21 @@ +{ + "name": "USDC", + "type": "SONIC", + "symbol": "USDC.e", + "decimals": 6, + "website": "https://www.circle.com/en/usdc", + "description": "USDC is a US dollar-backed stablecoin issued by Circle. USDC is designed to provide a faster, safer, and more efficient way to send, spend, and exchange money around the world.", + "explorer": "https://sonicscan.org/token/0x29219dd400f2bf60e5a23d13be72b486d4038894", + "status": "active", + "id": "0x29219dd400f2Bf60E5a23d13Be72B486D4038894", + "links": [ + { + "name": "x", + "url": "https://x.com/circle" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0x29219dd400f2Bf60E5a23d13Be72B486D4038894/logo.png b/blockchains/sonic/assets/0x29219dd400f2Bf60E5a23d13Be72B486D4038894/logo.png new file mode 100644 index 0000000000000..04f58df49f1b1 Binary files /dev/null and b/blockchains/sonic/assets/0x29219dd400f2Bf60E5a23d13Be72B486D4038894/logo.png differ diff --git a/blockchains/sonic/assets/0x2D0E0814E62D80056181F5cd932274405966e4f0/info.json b/blockchains/sonic/assets/0x2D0E0814E62D80056181F5cd932274405966e4f0/info.json new file mode 100644 index 0000000000000..14a449c9e3e23 --- /dev/null +++ b/blockchains/sonic/assets/0x2D0E0814E62D80056181F5cd932274405966e4f0/info.json @@ -0,0 +1,17 @@ +{ + "name": "Beets", + "symbol": "BEETS", + "website": "https://www.beets.fi/", + "description": "The Flagship LST Hub on Sonic. From seamless staking to earning real yield on LST-focused liquidity pools, beets is the ultimate destination for your liquid-staked tokens.", + "explorer": "https://sonicscan.org/token/0x2d0e0814e62d80056181f5cd932274405966e4f0", + "type": "SONIC", + "decimals": 18, + "status": "active", + "id": "0x2D0E0814E62D80056181F5cd932274405966e4f0", + "links": [ + { + "name": "x", + "url": "https://x.com/beets_fi" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0x2D0E0814E62D80056181F5cd932274405966e4f0/logo.png b/blockchains/sonic/assets/0x2D0E0814E62D80056181F5cd932274405966e4f0/logo.png new file mode 100644 index 0000000000000..4a67afbbff012 Binary files /dev/null and b/blockchains/sonic/assets/0x2D0E0814E62D80056181F5cd932274405966e4f0/logo.png differ diff --git a/blockchains/sonic/assets/0x2fb960611bdC322A9a4A994252658Cae9fe2eeA1/info.json b/blockchains/sonic/assets/0x2fb960611bdC322A9a4A994252658Cae9fe2eeA1/info.json new file mode 100644 index 0000000000000..f3cd09cce4a2d --- /dev/null +++ b/blockchains/sonic/assets/0x2fb960611bdC322A9a4A994252658Cae9fe2eeA1/info.json @@ -0,0 +1,38 @@ +{ + "name": "Uniswap", + "website": "https://uniswap.org", + "description": "UNI is the Uniswap protocol token. Uniswap is a decentralized protocol for automated liquidity provision on Ethereum.", + "explorer": "https://sonicscan.org/token/0x2fb960611bdc322a9a4a994252658cae9fe2eea1", + "research": "https://research.binance.com/en/projects/uniswap", + "type": "SONIC", + "symbol": "UNI", + "decimals": 18, + "status": "active", + "id": "0x2fb960611bdC322A9a4A994252658Cae9fe2eeA1", + "tags": [ + "defi", + "governance" + ], + "links": [ + { + "name": "discord", + "url": "https://discord.com/invite/XErMcTq" + }, + { + "name": "x", + "url": "https://x.com/UniswapProtocol" + }, + { + "name": "blog", + "url": "https://uniswap.org/blog/uni/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/uniswap/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/uniswap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0x2fb960611bdC322A9a4A994252658Cae9fe2eeA1/logo.png b/blockchains/sonic/assets/0x2fb960611bdC322A9a4A994252658Cae9fe2eeA1/logo.png new file mode 100644 index 0000000000000..893ef55cb23c0 Binary files /dev/null and b/blockchains/sonic/assets/0x2fb960611bdC322A9a4A994252658Cae9fe2eeA1/logo.png differ diff --git a/blockchains/sonic/assets/0x3333111A391cC08fa51353E9195526A70b333333/info.json b/blockchains/sonic/assets/0x3333111A391cC08fa51353E9195526A70b333333/info.json new file mode 100644 index 0000000000000..620b521ee25ec --- /dev/null +++ b/blockchains/sonic/assets/0x3333111A391cC08fa51353E9195526A70b333333/info.json @@ -0,0 +1,17 @@ +{ + "name": "Shadow Liquid Staking", + "type": "SONIC", + "symbol": "x33", + "decimals": 18, + "website": "https://www.shadow.so/", + "description": "A Sonic-native concentrated liquidity exchange.The ultimate trading hub on Sonic.", + "explorer": "https://sonicscan.org/token/0x3333111a391cc08fa51353e9195526a70b333333", + "status": "active", + "id": "0x3333111A391cC08fa51353E9195526A70b333333", + "links": [ + { + "name": "x", + "url": "https://x.com/ShadowOnSonic" + } +] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0x3333111A391cC08fa51353E9195526A70b333333/logo.png b/blockchains/sonic/assets/0x3333111A391cC08fa51353E9195526A70b333333/logo.png new file mode 100644 index 0000000000000..40e4e94db51a4 Binary files /dev/null and b/blockchains/sonic/assets/0x3333111A391cC08fa51353E9195526A70b333333/logo.png differ diff --git a/blockchains/sonic/assets/0x3333b97138D4b086720b5aE8A7844b1345a33333/info.json b/blockchains/sonic/assets/0x3333b97138D4b086720b5aE8A7844b1345a33333/info.json new file mode 100644 index 0000000000000..f2f7b097a9d0b --- /dev/null +++ b/blockchains/sonic/assets/0x3333b97138D4b086720b5aE8A7844b1345a33333/info.json @@ -0,0 +1,17 @@ +{ + "name": "Shadow", + "type": "SONIC", + "symbol": "SHADOW", + "decimals": 18, + "website": "https://www.shadow.so/", + "description": "A Sonic-native concentrated liquidity exchange.The ultimate trading hub on Sonic.", + "explorer": "https://sonicscan.org/token/0x3333b97138d4b086720b5ae8a7844b1345a33333", + "status": "active", + "id": "0x3333b97138D4b086720b5aE8A7844b1345a33333", + "links": [ + { + "name": "x", + "url": "https://x.com/ShadowOnSonic" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0x3333b97138D4b086720b5aE8A7844b1345a33333/logo.png b/blockchains/sonic/assets/0x3333b97138D4b086720b5aE8A7844b1345a33333/logo.png new file mode 100644 index 0000000000000..714aa9794f0d1 Binary files /dev/null and b/blockchains/sonic/assets/0x3333b97138D4b086720b5aE8A7844b1345a33333/logo.png differ diff --git a/blockchains/sonic/assets/0x486B6Fa0419b33a0c7A6e4698c231D7E2f2D5299/info.json b/blockchains/sonic/assets/0x486B6Fa0419b33a0c7A6e4698c231D7E2f2D5299/info.json new file mode 100644 index 0000000000000..f1cc82cfdd1be --- /dev/null +++ b/blockchains/sonic/assets/0x486B6Fa0419b33a0c7A6e4698c231D7E2f2D5299/info.json @@ -0,0 +1,17 @@ +{ + "name": "Moon Bay", + "symbol": "MOON", + "website": "https://www.moonbay.space/", + "description": "MoonBay is a crypto project built on the Sonic Network, with a strong, engaged community at its core. The $MOON token serves as both a meme coin and the central community token within the MoonBay ecosystem.", + "explorer": "https://sonicscan.org/token/0x486b6fa0419b33a0c7a6e4698c231d7e2f2d5299", + "type": "SONIC", + "decimals": 18, + "status": "active", + "id": "0x486B6Fa0419b33a0c7A6e4698c231D7E2f2D5299", + "links": [ + { + "name": "x", + "url": "https://x.com/MoonBaySonic" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0x486B6Fa0419b33a0c7A6e4698c231D7E2f2D5299/logo.png b/blockchains/sonic/assets/0x486B6Fa0419b33a0c7A6e4698c231D7E2f2D5299/logo.png new file mode 100644 index 0000000000000..f777ba90b3636 Binary files /dev/null and b/blockchains/sonic/assets/0x486B6Fa0419b33a0c7A6e4698c231D7E2f2D5299/logo.png differ diff --git a/blockchains/sonic/assets/0x50c42dEAcD8Fc9773493ED674b675bE577f2634b/info.json b/blockchains/sonic/assets/0x50c42dEAcD8Fc9773493ED674b675bE577f2634b/info.json new file mode 100644 index 0000000000000..7ea094ae19be4 --- /dev/null +++ b/blockchains/sonic/assets/0x50c42dEAcD8Fc9773493ED674b675bE577f2634b/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wrapped Ether on Sonic", + "type": "SONIC", + "symbol": "WETH", + "decimals": 18, + "website": "https://www.soniclabs.com/", + "description": "To find out even more about this project, check out our deep dive of WETH.", + "explorer": "https://sonicscan.org/token/0x50c42deacd8fc9773493ed674b675be577f2634b", + "status": "active", + "id": "0x50c42dEAcD8Fc9773493ED674b675bE577f2634b", + "links": [ + { + "name": "x", + "url": "https://x.com/ethereum" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/weth/" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0x50c42dEAcD8Fc9773493ED674b675bE577f2634b/logo.png b/blockchains/sonic/assets/0x50c42dEAcD8Fc9773493ED674b675bE577f2634b/logo.png new file mode 100644 index 0000000000000..f9328d9550a06 Binary files /dev/null and b/blockchains/sonic/assets/0x50c42dEAcD8Fc9773493ED674b675bE577f2634b/logo.png differ diff --git a/blockchains/sonic/assets/0x5Af79133999f7908953E94b7A5CF367740Ebee35/info.json b/blockchains/sonic/assets/0x5Af79133999f7908953E94b7A5CF367740Ebee35/info.json new file mode 100644 index 0000000000000..caea165ec3fc8 --- /dev/null +++ b/blockchains/sonic/assets/0x5Af79133999f7908953E94b7A5CF367740Ebee35/info.json @@ -0,0 +1,17 @@ +{ + "name": "Curve DAO", + "symbol": "CRV", + "website": "https://www.curve.finance/", + "description": "Curve is an exchange liquidity pool on Ethereum. Curve is designed for extremely efficient stablecoin trading and low risk, supplemental fee income for liquidity providers, without an opportunity cost.", + "explorer": "https://sonicscan.org/token/0x5af79133999f7908953e94b7a5cf367740ebee35", + "type": "SONIC", + "decimals": 18, + "status": "active", + "id": "0x5Af79133999f7908953E94b7A5CF367740Ebee35", + "links": [ + { + "name": "x", + "url": "https://x.com/CurveFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0x5Af79133999f7908953E94b7A5CF367740Ebee35/logo.png b/blockchains/sonic/assets/0x5Af79133999f7908953E94b7A5CF367740Ebee35/logo.png new file mode 100644 index 0000000000000..da6df95a72549 Binary files /dev/null and b/blockchains/sonic/assets/0x5Af79133999f7908953E94b7A5CF367740Ebee35/logo.png differ diff --git a/blockchains/sonic/assets/0x6047828dc181963ba44974801FF68e538dA5eaF9/info.json b/blockchains/sonic/assets/0x6047828dc181963ba44974801FF68e538dA5eaF9/info.json new file mode 100644 index 0000000000000..1114f85aa50d9 --- /dev/null +++ b/blockchains/sonic/assets/0x6047828dc181963ba44974801FF68e538dA5eaF9/info.json @@ -0,0 +1,17 @@ +{ + "name": "Bridged USDT", + "symbol": "USDT", + "website": "https://tether.to/", + "description": "Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.", + "explorer": "https://sonicscan.org/token/0x6047828dc181963ba44974801ff68e538da5eaf9", + "type": "SONIC", + "decimals": 6, + "status": "active", + "id": "0x6047828dc181963ba44974801FF68e538dA5eaF9", + "links": [ + { + "name": "x", + "url": "https://x.com/Tether_to" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0x6047828dc181963ba44974801FF68e538dA5eaF9/logo.png b/blockchains/sonic/assets/0x6047828dc181963ba44974801FF68e538dA5eaF9/logo.png new file mode 100644 index 0000000000000..dff3dd14bb96f Binary files /dev/null and b/blockchains/sonic/assets/0x6047828dc181963ba44974801FF68e538dA5eaF9/logo.png differ diff --git a/blockchains/sonic/assets/0x63A522f6E7D5B96F7aeBB74d2648545E9e14078D/info.json b/blockchains/sonic/assets/0x63A522f6E7D5B96F7aeBB74d2648545E9e14078D/info.json new file mode 100644 index 0000000000000..b3f97a4bf15ef --- /dev/null +++ b/blockchains/sonic/assets/0x63A522f6E7D5B96F7aeBB74d2648545E9e14078D/info.json @@ -0,0 +1,17 @@ +{ + "name": "ShibaPoconk", + "symbol": "CONK", + "website": "https://www.conkme.com/", + "description": "ShibaPoCONK—better known as CONK—is the memecoin that shook the Fantom Opera network in early 2023. Born from just 1 FTM in a pool during its Liquidity Generation Event, CONK ignited a wildfire of passion and loyalty among its die-hard community of believers.", + "explorer": "https://sonicscan.org/token/0x63a522f6e7d5b96f7aebb74d2648545e9e14078d", + "type": "SONIC", + "decimals": 18, + "status": "active", + "id": "0x63A522f6E7D5B96F7aeBB74d2648545E9e14078D", + "links": [ + { + "name": "x", + "url": "https://x.com/ShibaPoCONK" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0x63A522f6E7D5B96F7aeBB74d2648545E9e14078D/logo.png b/blockchains/sonic/assets/0x63A522f6E7D5B96F7aeBB74d2648545E9e14078D/logo.png new file mode 100644 index 0000000000000..a08dd3f4dc210 Binary files /dev/null and b/blockchains/sonic/assets/0x63A522f6E7D5B96F7aeBB74d2648545E9e14078D/logo.png differ diff --git a/blockchains/sonic/assets/0x6881B80ea7C858E4aEEf63893e18a8A36f3682f3/info.json b/blockchains/sonic/assets/0x6881B80ea7C858E4aEEf63893e18a8A36f3682f3/info.json new file mode 100644 index 0000000000000..127f347550d0a --- /dev/null +++ b/blockchains/sonic/assets/0x6881B80ea7C858E4aEEf63893e18a8A36f3682f3/info.json @@ -0,0 +1,17 @@ +{ + "name": "NAVI", + "symbol": "NAVI", + "website": "https://www.navigator.exchange/", + "description": "Revolutionizing Decentralized Trading. Trading crypto, forex, and commodities with high leverage.", + "explorer": "hhttps://sonicscan.org/token/0x6881b80ea7c858e4aeef63893e18a8a36f3682f3", + "type": "SONIC", + "decimals": 18, + "status": "active", + "id": "0x6881B80ea7C858E4aEEf63893e18a8A36f3682f3", + "links": [ + { + "name": "x", + "url": "https://x.com/NaviExSonic" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0x6881B80ea7C858E4aEEf63893e18a8A36f3682f3/logo.png b/blockchains/sonic/assets/0x6881B80ea7C858E4aEEf63893e18a8A36f3682f3/logo.png new file mode 100644 index 0000000000000..0602e1fa98f64 Binary files /dev/null and b/blockchains/sonic/assets/0x6881B80ea7C858E4aEEf63893e18a8A36f3682f3/logo.png differ diff --git a/blockchains/sonic/assets/0x6c9B3A74ae4779da5Ca999371eE8950e8DB3407f/info.json b/blockchains/sonic/assets/0x6c9B3A74ae4779da5Ca999371eE8950e8DB3407f/info.json new file mode 100644 index 0000000000000..4848812649790 --- /dev/null +++ b/blockchains/sonic/assets/0x6c9B3A74ae4779da5Ca999371eE8950e8DB3407f/info.json @@ -0,0 +1,14 @@ +{ + "name": "fly.trade", + "type": "ERC20", + "symbol": "FLY", + "decimals": 18, + "website": "https://www.fly.trade/", + "description": "fly.trade is a multichain liquidity aggregator optimizing swaps for traders, protocols, and agents delivering seamless UX.", + "explorer": "https://sonicscan.org/token/0x6c9B3A74ae4779da5Ca999371eE8950e8DB3407f#tokenInfo", + "status": "active", + "id": "0x6c9B3A74ae4779da5Ca999371eE8950e8DB3407f", + "tags": [ + "dapp" + ] +} diff --git a/blockchains/sonic/assets/0x6c9B3A74ae4779da5Ca999371eE8950e8DB3407f/logo.png b/blockchains/sonic/assets/0x6c9B3A74ae4779da5Ca999371eE8950e8DB3407f/logo.png new file mode 100644 index 0000000000000..fdddc3ebe2768 Binary files /dev/null and b/blockchains/sonic/assets/0x6c9B3A74ae4779da5Ca999371eE8950e8DB3407f/logo.png differ diff --git a/blockchains/sonic/assets/0x70e7f1d907E30efb18FE1DD8A1d75c09A98177d3/info.json b/blockchains/sonic/assets/0x70e7f1d907E30efb18FE1DD8A1d75c09A98177d3/info.json new file mode 100644 index 0000000000000..e15e90fd0fbba --- /dev/null +++ b/blockchains/sonic/assets/0x70e7f1d907E30efb18FE1DD8A1d75c09A98177d3/info.json @@ -0,0 +1,17 @@ +{ + "name": "JEFE TOKEN", + "symbol": "JEFE", + "website": "https://www.jefetoken.com/", + "description": "JEFETOKEN is a software development project focused on smart contracts, blockchain technology, video games & mobile applications. Our goal is to create an ecosystem of web3 applications.", + "explorer": "https://sonicscan.org/token/0x70e7f1d907e30efb18fe1dd8a1d75c09a98177d3", + "type": "SONIC", + "decimals": 9, + "status": "active", + "id": "0x70e7f1d907E30efb18FE1DD8A1d75c09A98177d3", + "links": [ + { + "name": "x", + "url": "https://x.com/JefeToken" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0x70e7f1d907E30efb18FE1DD8A1d75c09A98177d3/logo.png b/blockchains/sonic/assets/0x70e7f1d907E30efb18FE1DD8A1d75c09A98177d3/logo.png new file mode 100644 index 0000000000000..a879ee50c6729 Binary files /dev/null and b/blockchains/sonic/assets/0x70e7f1d907E30efb18FE1DD8A1d75c09A98177d3/logo.png differ diff --git a/blockchains/sonic/assets/0x71E99522EaD5E21CF57F1f542Dc4ad2E841F7321/info.json b/blockchains/sonic/assets/0x71E99522EaD5E21CF57F1f542Dc4ad2E841F7321/info.json new file mode 100644 index 0000000000000..86bf7096a6e5b --- /dev/null +++ b/blockchains/sonic/assets/0x71E99522EaD5E21CF57F1f542Dc4ad2E841F7321/info.json @@ -0,0 +1,17 @@ +{ + "name": "Metropolis", + "symbol": "METRO", + "website": "https://metropolis.exchange/", + "description": "$METRO is the native Reward and Governance Token of Metropolis, a DLMM Liquidity Book DEX that offers full flexibility for liquidity providers and zero-slippage swaps for traders.", + "explorer": "https://sonicscan.org/token/0x71E99522EaD5E21CF57F1f542Dc4ad2E841F7321", + "type": "SONIC", + "decimals": 18, + "status": "active", + "id": "0x71E99522EaD5E21CF57F1f542Dc4ad2E841F7321", + "links": [ + { + "name": "x", + "url": "https://x.com/MetropolisDEX" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0x71E99522EaD5E21CF57F1f542Dc4ad2E841F7321/logo.png b/blockchains/sonic/assets/0x71E99522EaD5E21CF57F1f542Dc4ad2E841F7321/logo.png new file mode 100644 index 0000000000000..e4df804cfb345 Binary files /dev/null and b/blockchains/sonic/assets/0x71E99522EaD5E21CF57F1f542Dc4ad2E841F7321/logo.png differ diff --git a/blockchains/sonic/assets/0x79bbF4508B1391af3A0F4B30bb5FC4aa9ab0E07C/info.json b/blockchains/sonic/assets/0x79bbF4508B1391af3A0F4B30bb5FC4aa9ab0E07C/info.json new file mode 100644 index 0000000000000..f6a7daddf407a --- /dev/null +++ b/blockchains/sonic/assets/0x79bbF4508B1391af3A0F4B30bb5FC4aa9ab0E07C/info.json @@ -0,0 +1,21 @@ +{ + "name": "HeyAnon", + "type": "SONIC", + "symbol": "Anon", + "decimals": 18, + "website": "https://heyanon.ai/", + "description": "HeyAnon is an AI DeFi protocol designed to simplify DeFi interactions and aggregate essential project-related information.", + "explorer": "https://sonicscan.org/token/0x79bbf4508b1391af3a0f4b30bb5fc4aa9ab0e07c", + "status": "active", + "id": "0x79bbF4508B1391af3A0F4B30bb5FC4aa9ab0E07C", + "links": [ + { + "name": "x", + "url": "https://x.com/HeyAnonai" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hey-anon/" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0x79bbF4508B1391af3A0F4B30bb5FC4aa9ab0E07C/logo.png b/blockchains/sonic/assets/0x79bbF4508B1391af3A0F4B30bb5FC4aa9ab0E07C/logo.png new file mode 100644 index 0000000000000..20b1d1358f9c8 Binary files /dev/null and b/blockchains/sonic/assets/0x79bbF4508B1391af3A0F4B30bb5FC4aa9ab0E07C/logo.png differ diff --git a/blockchains/sonic/assets/0x7AD5935EA295c4E743e4f2f5B4CDA951f41223c2/info.json b/blockchains/sonic/assets/0x7AD5935EA295c4E743e4f2f5B4CDA951f41223c2/info.json new file mode 100644 index 0000000000000..a35630db51916 --- /dev/null +++ b/blockchains/sonic/assets/0x7AD5935EA295c4E743e4f2f5B4CDA951f41223c2/info.json @@ -0,0 +1,17 @@ +{ + "name": "Sacra", + "symbol": "SACRA", + "website": "https://sacra.game/", + "description": "A fully on-chain game that seamlessly combines true ownership and financial incentives.", + "explorer": "https://sonicscan.org/token/0x7ad5935ea295c4e743e4f2f5b4cda951f41223c2", + "type": "SONIC", + "decimals": 18, + "status": "active", + "id": "0x7AD5935EA295c4E743e4f2f5B4CDA951f41223c2", + "links": [ + { + "name": "x", + "url": "https://x.com/sacra_fi" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0x7AD5935EA295c4E743e4f2f5B4CDA951f41223c2/logo.png b/blockchains/sonic/assets/0x7AD5935EA295c4E743e4f2f5B4CDA951f41223c2/logo.png new file mode 100644 index 0000000000000..90a6bc486f0cd Binary files /dev/null and b/blockchains/sonic/assets/0x7AD5935EA295c4E743e4f2f5B4CDA951f41223c2/logo.png differ diff --git a/blockchains/sonic/assets/0x7FFf4C4a827C84E32c5E175052834111B2ccd270/info.json b/blockchains/sonic/assets/0x7FFf4C4a827C84E32c5E175052834111B2ccd270/info.json new file mode 100644 index 0000000000000..c58e1348c792b --- /dev/null +++ b/blockchains/sonic/assets/0x7FFf4C4a827C84E32c5E175052834111B2ccd270/info.json @@ -0,0 +1,17 @@ +{ + "name": "Curve.Finance USD Stablecoin", + "symbol": "crvUSD", + "website": "https://www.curve.finance/", + "description": "crvUSD is a collateralized-debt-position (CDP) stablecoin pegged to the US Dollar", + "explorer": "https://sonicscan.org/token/0x7fff4c4a827c84e32c5e175052834111b2ccd270", + "type": "SONIC", + "decimals": 18, + "status": "active", + "id": "0x7FFf4C4a827C84E32c5E175052834111B2ccd270", + "links": [ + { + "name": "x", + "url": "https://x.com/CurveFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0x7FFf4C4a827C84E32c5E175052834111B2ccd270/logo.png b/blockchains/sonic/assets/0x7FFf4C4a827C84E32c5E175052834111B2ccd270/logo.png new file mode 100644 index 0000000000000..1eb238c8f867c Binary files /dev/null and b/blockchains/sonic/assets/0x7FFf4C4a827C84E32c5E175052834111B2ccd270/logo.png differ diff --git a/blockchains/sonic/assets/0x80Eede496655FB9047dd39d9f418d5483ED600df/info.json b/blockchains/sonic/assets/0x80Eede496655FB9047dd39d9f418d5483ED600df/info.json new file mode 100644 index 0000000000000..c4fc19445e432 --- /dev/null +++ b/blockchains/sonic/assets/0x80Eede496655FB9047dd39d9f418d5483ED600df/info.json @@ -0,0 +1,17 @@ +{ + "name": "Frax USD", + "symbol": "frxUSD", + "website": "https://frax.com", + "description": "Fraxtal is a blockchain optimized for extreme performance, next-to-nothing transaction fees, and Ethereum-level security", + "explorer": "https://sonicscan.org/token/0x80eede496655fb9047dd39d9f418d5483ed600df", + "type": "SONIC", + "decimals": 18, + "status": "active", + "id": "0x80Eede496655FB9047dd39d9f418d5483ED600df", + "links": [ + { + "name": "x", + "url": "https://x.com/fraxfinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0x80Eede496655FB9047dd39d9f418d5483ED600df/logo.png b/blockchains/sonic/assets/0x80Eede496655FB9047dd39d9f418d5483ED600df/logo.png new file mode 100644 index 0000000000000..c68d27e1cbd4a Binary files /dev/null and b/blockchains/sonic/assets/0x80Eede496655FB9047dd39d9f418d5483ED600df/logo.png differ diff --git a/blockchains/sonic/assets/0x949185D3BE66775Ea648F4a306740EA9eFF9C567/info.json b/blockchains/sonic/assets/0x949185D3BE66775Ea648F4a306740EA9eFF9C567/info.json new file mode 100644 index 0000000000000..42a79be945f2c --- /dev/null +++ b/blockchains/sonic/assets/0x949185D3BE66775Ea648F4a306740EA9eFF9C567/info.json @@ -0,0 +1,17 @@ +{ + "name": "YELToken", + "symbol": "YEL", + "website": "https://yel.finance/", + "description": "Yel Finance is a DeFi R&D laboratory that focuses on generation of smart and real yield for users. We aim to simplify the complexity of DeFi by creating the best opportunities and maximizing returns for every user through volatility farming.", + "explorer": "https://sonicscan.org/token/0x949185d3be66775ea648f4a306740ea9eff9c567", + "type": "SONIC", + "decimals": 18, + "status": "active", + "id": "0x949185D3BE66775Ea648F4a306740EA9eFF9C567", + "links": [ + { + "name": "x", + "url": "https://x.com/yel_finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0x949185D3BE66775Ea648F4a306740EA9eFF9C567/logo.png b/blockchains/sonic/assets/0x949185D3BE66775Ea648F4a306740EA9eFF9C567/logo.png new file mode 100644 index 0000000000000..fc7c2192fcaeb Binary files /dev/null and b/blockchains/sonic/assets/0x949185D3BE66775Ea648F4a306740EA9eFF9C567/logo.png differ diff --git a/blockchains/sonic/assets/0xA04BC7140c26fc9BB1F36B1A604C7A5a88fb0E70/info.json b/blockchains/sonic/assets/0xA04BC7140c26fc9BB1F36B1A604C7A5a88fb0E70/info.json new file mode 100644 index 0000000000000..f8b0e0a45bdc1 --- /dev/null +++ b/blockchains/sonic/assets/0xA04BC7140c26fc9BB1F36B1A604C7A5a88fb0E70/info.json @@ -0,0 +1,17 @@ +{ + "name": "SwapX", + "symbol": "SWPx", + "website": "https://swapx.fi/", + "description": "This token can be acquired on the market, earned as a farming reward for providing liquidity via weekly emission, or, for select early users, received via an airdrop.", + "explorer": "https://sonicscan.org/token/0xa04bc7140c26fc9bb1f36b1a604c7a5a88fb0e70", + "type": "SONIC", + "decimals": 18, + "status": "active", + "id": "0xA04BC7140c26fc9BB1F36B1A604C7A5a88fb0E70", + "links": [ + { + "name": "x", + "url": "https://x.com/swapxfi" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0xA04BC7140c26fc9BB1F36B1A604C7A5a88fb0E70/logo.png b/blockchains/sonic/assets/0xA04BC7140c26fc9BB1F36B1A604C7A5a88fb0E70/logo.png new file mode 100644 index 0000000000000..701648ef82fd1 Binary files /dev/null and b/blockchains/sonic/assets/0xA04BC7140c26fc9BB1F36B1A604C7A5a88fb0E70/logo.png differ diff --git a/blockchains/sonic/assets/0xBC0d0650412EF353D672c0Bbd12eFFF90591B251/info.json b/blockchains/sonic/assets/0xBC0d0650412EF353D672c0Bbd12eFFF90591B251/info.json new file mode 100644 index 0000000000000..69812b271d215 --- /dev/null +++ b/blockchains/sonic/assets/0xBC0d0650412EF353D672c0Bbd12eFFF90591B251/info.json @@ -0,0 +1,17 @@ +{ + "name": "FutureStarter", + "symbol": "FS", + "website": "https://futurestarter.xyz/", + "description": "ICOs Made Simple", + "explorer": "https://sonicscan.org/token/0xbc0d0650412ef353d672c0bbd12efff90591b251", + "type": "SONIC", + "decimals": 18, + "status": "active", + "id": "0xBC0d0650412EF353D672c0Bbd12eFFF90591B251", + "links": [ + { + "name": "x", + "url": "https://x.com/fstarter_xyz" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0xBC0d0650412EF353D672c0Bbd12eFFF90591B251/logo.png b/blockchains/sonic/assets/0xBC0d0650412EF353D672c0Bbd12eFFF90591B251/logo.png new file mode 100644 index 0000000000000..c8d16fd846dc4 Binary files /dev/null and b/blockchains/sonic/assets/0xBC0d0650412EF353D672c0Bbd12eFFF90591B251/logo.png differ diff --git a/blockchains/sonic/assets/0xE51EE9868C1f0d6cd968A8B8C8376Dc2991BFE44/info.json b/blockchains/sonic/assets/0xE51EE9868C1f0d6cd968A8B8C8376Dc2991BFE44/info.json new file mode 100644 index 0000000000000..2e79caa14004d --- /dev/null +++ b/blockchains/sonic/assets/0xE51EE9868C1f0d6cd968A8B8C8376Dc2991BFE44/info.json @@ -0,0 +1,17 @@ +{ + "name": "PaintSwap", + "symbol": "BRUSH", + "website": "https://paintswap.finance/", + "description": "BRUSH is the token of Estfor Kingdom & PaintSwap", + "explorer": "https://sonicscan.org/token/0xe51ee9868c1f0d6cd968a8b8c8376dc2991bfe44", + "type": "SONIC", + "decimals": 18, + "status": "active", + "id": "0xE51EE9868C1f0d6cd968A8B8C8376Dc2991BFE44", + "links": [ + { + "name": "x", + "url": "https://x.com/paint_swap" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0xE51EE9868C1f0d6cd968A8B8C8376Dc2991BFE44/logo.png b/blockchains/sonic/assets/0xE51EE9868C1f0d6cd968A8B8C8376Dc2991BFE44/logo.png new file mode 100644 index 0000000000000..1119cf21cb62f Binary files /dev/null and b/blockchains/sonic/assets/0xE51EE9868C1f0d6cd968A8B8C8376Dc2991BFE44/logo.png differ diff --git a/blockchains/sonic/assets/0xb1e25689D55734FD3ffFc939c4C3Eb52DFf8A794/info.json b/blockchains/sonic/assets/0xb1e25689D55734FD3ffFc939c4C3Eb52DFf8A794/info.json new file mode 100644 index 0000000000000..4c4b60ad1ba9a --- /dev/null +++ b/blockchains/sonic/assets/0xb1e25689D55734FD3ffFc939c4C3Eb52DFf8A794/info.json @@ -0,0 +1,17 @@ +{ + "name": "Origin Sonic", + "symbol": "OS", + "website": "https://www.originprotocol.com/", + "description": "Earn on S and stack rewards with Origin's S-tier Sonic LST", + "explorer": "https://sonicscan.org/token/0xb1e25689d55734fd3fffc939c4c3eb52dff8a794", + "type": "SONIC", + "decimals": 18, + "status": "active", + "id": "0xb1e25689D55734FD3ffFc939c4C3Eb52DFf8A794", + "links": [ + { + "name": "x", + "url": "https://x.com/OriginProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0xb1e25689D55734FD3ffFc939c4C3Eb52DFf8A794/logo.png b/blockchains/sonic/assets/0xb1e25689D55734FD3ffFc939c4C3Eb52DFf8A794/logo.png new file mode 100644 index 0000000000000..5bf33a81cffca Binary files /dev/null and b/blockchains/sonic/assets/0xb1e25689D55734FD3ffFc939c4C3Eb52DFf8A794/logo.png differ diff --git a/blockchains/sonic/assets/0xc55E93C62874D8100dBd2DfE307EDc1036ad5434/info.json b/blockchains/sonic/assets/0xc55E93C62874D8100dBd2DfE307EDc1036ad5434/info.json new file mode 100644 index 0000000000000..08e80f9183457 --- /dev/null +++ b/blockchains/sonic/assets/0xc55E93C62874D8100dBd2DfE307EDc1036ad5434/info.json @@ -0,0 +1,17 @@ +{ + "name": "Moo BIFI", + "symbol": "mooBIFI", + "website": "https://beefy.com/", + "description": "Beefy is The Trusted Yield Optimizer that help users to safely and securely autocompound yields on their crypto. Beefy's cutting-edge web app delivers hundreds of DeFi earning strategies from dozens of chains in a single, easy-to-use service.", + "explorer": "https://sonicscan.org/token/0xc55e93c62874d8100dbd2dfe307edc1036ad5434", + "type": "SONIC", + "decimals": 18, + "status": "active", + "id": "0xc55E93C62874D8100dBd2DfE307EDc1036ad5434", + "links": [ + { + "name": "x", + "url": "https://x.com/beefyfinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0xc55E93C62874D8100dBd2DfE307EDc1036ad5434/logo.png b/blockchains/sonic/assets/0xc55E93C62874D8100dBd2DfE307EDc1036ad5434/logo.png new file mode 100644 index 0000000000000..0f39e40099bd3 Binary files /dev/null and b/blockchains/sonic/assets/0xc55E93C62874D8100dBd2DfE307EDc1036ad5434/logo.png differ diff --git a/blockchains/sonic/assets/0xd3DCe716f3eF535C5Ff8d041c1A41C3bd89b97aE/info.json b/blockchains/sonic/assets/0xd3DCe716f3eF535C5Ff8d041c1A41C3bd89b97aE/info.json new file mode 100644 index 0000000000000..05ac0cc61e199 --- /dev/null +++ b/blockchains/sonic/assets/0xd3DCe716f3eF535C5Ff8d041c1A41C3bd89b97aE/info.json @@ -0,0 +1,17 @@ +{ + "name": "Sonic USD", + "type": "SONIC", + "symbol": "scUSD", + "decimals": 6, + "website": "https://x.com/Rings_Protocol", + "description": "A scalable yield-bearing stablecoin inspired by Solidly on Sonic.", + "explorer": "https://sonicscan.org/token/0xd3DCe716f3eF535C5Ff8d041c1A41C3bd89b97aE", + "status": "active", + "id": "0xd3DCe716f3eF535C5Ff8d041c1A41C3bd89b97aE", + "links": [ + { + "name": "x", + "url": "https://x.com/Rings_Protocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0xd3DCe716f3eF535C5Ff8d041c1A41C3bd89b97aE/logo.png b/blockchains/sonic/assets/0xd3DCe716f3eF535C5Ff8d041c1A41C3bd89b97aE/logo.png new file mode 100644 index 0000000000000..a13c3432ea670 Binary files /dev/null and b/blockchains/sonic/assets/0xd3DCe716f3eF535C5Ff8d041c1A41C3bd89b97aE/logo.png differ diff --git a/blockchains/sonic/assets/0xe6cc4D855B4fD4A9D02F46B9adae4C5EfB1764B5/info.json b/blockchains/sonic/assets/0xe6cc4D855B4fD4A9D02F46B9adae4C5EfB1764B5/info.json new file mode 100644 index 0000000000000..75b37c3a4cebd --- /dev/null +++ b/blockchains/sonic/assets/0xe6cc4D855B4fD4A9D02F46B9adae4C5EfB1764B5/info.json @@ -0,0 +1,17 @@ +{ + "name": "LUDWIG", + "symbol": "LUDWIG", + "website": "https://ludwigonsonic.com/", + "description": "Ludwig On Sonic (LUDWIG) is your gateway to exploring Balancer technology on the Sonic network. The phrase 'High Speed, Perfect Beets' highlights the Sonic network’s lightning-fast performance, while 'Beets' refers to Beets.fi where our primary pools and liquidity are hosted.", + "explorer": "https://sonicscan.org/token/0xe6cc4d855b4fd4a9d02f46b9adae4c5efb1764b5", + "type": "SONIC", + "decimals": 18, + "status": "active", + "id": "0xe6cc4D855B4fD4A9D02F46B9adae4C5EfB1764B5", + "links": [ + { + "name": "x", + "url": "https://x.com/ludwigonsonic" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0xe6cc4D855B4fD4A9D02F46B9adae4C5EfB1764B5/logo.png b/blockchains/sonic/assets/0xe6cc4D855B4fD4A9D02F46B9adae4C5EfB1764B5/logo.png new file mode 100644 index 0000000000000..6a4fb97bb60df Binary files /dev/null and b/blockchains/sonic/assets/0xe6cc4D855B4fD4A9D02F46B9adae4C5EfB1764B5/logo.png differ diff --git a/blockchains/sonic/assets/0xe715cbA7B5cCb33790ceBFF1436809d36cb17E57/info.json b/blockchains/sonic/assets/0xe715cbA7B5cCb33790ceBFF1436809d36cb17E57/info.json new file mode 100644 index 0000000000000..3da1c2071b402 --- /dev/null +++ b/blockchains/sonic/assets/0xe715cbA7B5cCb33790ceBFF1436809d36cb17E57/info.json @@ -0,0 +1,21 @@ +{ + "name": "EURC", + "type": "SONIC", + "symbol": "EURC.e", + "decimals": 6, + "website": "https://www.circle.com/en/eurc", + "description": "EURC is a euro-backed stablecoin issued by Circle. EURC is designed to provide a faster, safer, and more efficient way to send, spend, and exchange money around the world.", + "explorer": "https://sonicscan.org/token/0xe715cbA7B5cCb33790ceBFF1436809d36cb17E57", + "status": "active", + "id": "0xe715cbA7B5cCb33790ceBFF1436809d36cb17E57", + "links": [ + { + "name": "x", + "url": "https://x.com/circle" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/euro-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0xe715cbA7B5cCb33790ceBFF1436809d36cb17E57/logo.png b/blockchains/sonic/assets/0xe715cbA7B5cCb33790ceBFF1436809d36cb17E57/logo.png new file mode 100644 index 0000000000000..f23fbed3cbe9e Binary files /dev/null and b/blockchains/sonic/assets/0xe715cbA7B5cCb33790ceBFF1436809d36cb17E57/logo.png differ diff --git a/blockchains/sonic/assets/0xecAc9C5F704e954931349Da37F60E39f515c11c1/info.json b/blockchains/sonic/assets/0xecAc9C5F704e954931349Da37F60E39f515c11c1/info.json new file mode 100644 index 0000000000000..411bf4217242a --- /dev/null +++ b/blockchains/sonic/assets/0xecAc9C5F704e954931349Da37F60E39f515c11c1/info.json @@ -0,0 +1,17 @@ +{ + "name": "Lombard Staked BTC", + "symbol": "LBTC", + "website": "https://www.lombard.finance/", + "description": "Liquid Bitcoin (LBTC) is yield-bearing, cross-chain, and 1:1 backed by BTC.", + "explorer": "https://sonicscan.org/token/0xecac9c5f704e954931349da37f60e39f515c11c1", + "type": "SONIC", + "decimals": 8, + "status": "active", + "id": "0xecAc9C5F704e954931349Da37F60E39f515c11c1", + "links": [ + { + "name": "x", + "url": "https://x.com/CurveFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0xecAc9C5F704e954931349Da37F60E39f515c11c1/logo.png b/blockchains/sonic/assets/0xecAc9C5F704e954931349Da37F60E39f515c11c1/logo.png new file mode 100644 index 0000000000000..fcd3e16687859 Binary files /dev/null and b/blockchains/sonic/assets/0xecAc9C5F704e954931349Da37F60E39f515c11c1/logo.png differ diff --git a/blockchains/sonic/assets/0xf1eF7d2D4C0c881cd634481e0586ed5d2871A74B/info.json b/blockchains/sonic/assets/0xf1eF7d2D4C0c881cd634481e0586ed5d2871A74B/info.json new file mode 100644 index 0000000000000..19290cd5c3391 --- /dev/null +++ b/blockchains/sonic/assets/0xf1eF7d2D4C0c881cd634481e0586ed5d2871A74B/info.json @@ -0,0 +1,17 @@ +{ + "name": "Pendle", + "symbol": "PENDLE", + "website": "https://pendle.finance/", + "description": "Pendle is essentially a protocol for tokenizing yield and an AMM for trading tokenized yield and other time-decaying assets.", + "explorer": "https://sonicscan.org/token/0xf1eF7d2D4C0c881cd634481e0586ed5d2871A74B", + "type": "SONIC", + "decimals": 18, + "status": "active", + "id": "0xf1eF7d2D4C0c881cd634481e0586ed5d2871A74B", + "links": [ + { + "name": "x", + "url": "https://x.com/pendle_fi" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0xf1eF7d2D4C0c881cd634481e0586ed5d2871A74B/logo.png b/blockchains/sonic/assets/0xf1eF7d2D4C0c881cd634481e0586ed5d2871A74B/logo.png new file mode 100644 index 0000000000000..92ef75b4ab39a Binary files /dev/null and b/blockchains/sonic/assets/0xf1eF7d2D4C0c881cd634481e0586ed5d2871A74B/logo.png differ diff --git a/blockchains/sonic/assets/0xf26Ff70573ddc8a90Bd7865AF8d7d70B8Ff019bC/info.json b/blockchains/sonic/assets/0xf26Ff70573ddc8a90Bd7865AF8d7d70B8Ff019bC/info.json new file mode 100644 index 0000000000000..3187453a5df53 --- /dev/null +++ b/blockchains/sonic/assets/0xf26Ff70573ddc8a90Bd7865AF8d7d70B8Ff019bC/info.json @@ -0,0 +1,17 @@ +{ + "name": "Eggs Finance", + "type": "SONIC", + "symbol": "EGGS", + "decimals": 18, + "website": "https://eggs.finance/", + "description": "Eggs Finance is a DeFi protocol on the Sonic blockchain that utilizes $S and $EGGS to create a stable and potentially increasing value mechanism", + "explorer": "https://sonicscan.org/token/0xf26ff70573ddc8a90bd7865af8d7d70b8ff019bc", + "status": "active", + "id": "0xf26Ff70573ddc8a90Bd7865AF8d7d70B8Ff019bC", + "links": [ + { + "name": "x", + "url": "https://x.com/eggsonsonic" + } + ] +} \ No newline at end of file diff --git a/blockchains/sonic/assets/0xf26Ff70573ddc8a90Bd7865AF8d7d70B8Ff019bC/logo.png b/blockchains/sonic/assets/0xf26Ff70573ddc8a90Bd7865AF8d7d70B8Ff019bC/logo.png new file mode 100644 index 0000000000000..156dde71ded5a Binary files /dev/null and b/blockchains/sonic/assets/0xf26Ff70573ddc8a90Bd7865AF8d7d70B8Ff019bC/logo.png differ diff --git a/blockchains/sonic/info/info.json b/blockchains/sonic/info/info.json new file mode 100644 index 0000000000000..91713b9c5f1b1 --- /dev/null +++ b/blockchains/sonic/info/info.json @@ -0,0 +1,32 @@ +{ + "name": "Sonic", + "website": "https://www.soniclabs.com/", + "description": "Sonic is the highest-performing EVM L1", + "explorer": "https://sonicscan.org/", + "symbol": "S", + "type": "coin", + "decimals": 18, + "rpc_url": "https://rpc.soniclabs.com", + "status": "active", + "tags": [ + "dapp" + ], + "links": [ + { + "name": "discord", + "url": "https://discord.com/3Ynr2QDSnB" + }, + { + "name": "x", + "url": "https://x.com/SonicLabs" + }, + { + "name": "telegram", + "url": "https://t.me/Sonic_English" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/0xSonic/" + } + ] +} diff --git a/blockchains/sonic/info/logo.png b/blockchains/sonic/info/logo.png new file mode 100644 index 0000000000000..7cc8aea38da14 Binary files /dev/null and b/blockchains/sonic/info/logo.png differ diff --git a/blockchains/sonic/info/square_logo.png b/blockchains/sonic/info/square_logo.png new file mode 100644 index 0000000000000..ce7178c72b764 Binary files /dev/null and b/blockchains/sonic/info/square_logo.png differ diff --git a/blockchains/sonic/tokenlist.json b/blockchains/sonic/tokenlist.json new file mode 100644 index 0000000000000..65d82c882823b --- /dev/null +++ b/blockchains/sonic/tokenlist.json @@ -0,0 +1,122 @@ +{ + "name": "Trust Wallet: Sonic List", + "logoURI": "https://trustwallet.com/assets/images/favicon.png", + "timestamp": "2025-05-08T14:23:26.183301", + "tokens": [ + { + "asset": "c10000146_t0x29219dd400f2Bf60E5a23d13Be72B486D4038894", + "type": "SONIC", + "address": "0x29219dd400f2Bf60E5a23d13Be72B486D4038894", + "name": "USDC", + "symbol": "USDC.e", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/sonic/assets/0x29219dd400f2Bf60E5a23d13Be72B486D4038894/logo.png", + "pairs": [] + }, + { + "asset": "c10000146_t0x039e2fB66102314Ce7b64Ce5Ce3E5183bc94aD38", + "type": "SONIC", + "address": "0x039e2fB66102314Ce7b64Ce5Ce3E5183bc94aD38", + "name": "Wrapped Sonic", + "symbol": "wS", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/sonic/assets/0x039e2fB66102314Ce7b64Ce5Ce3E5183bc94aD38/logo.png", + "pairs": [] + }, + { + "asset": "c10000146_t0x3333b97138D4b086720b5aE8A7844b1345a33333", + "type": "SONIC", + "address": "0x3333b97138D4b086720b5aE8A7844b1345a33333", + "name": "Shadow", + "symbol": "SHADOW", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/sonic/assets/0x3333b97138D4b086720b5aE8A7844b1345a33333/logo.png", + "pairs": [] + }, + { + "asset": "c10000146_t0x50c42dEAcD8Fc9773493ED674b675bE577f2634b", + "type": "SONIC", + "address": "0x50c42dEAcD8Fc9773493ED674b675bE577f2634b", + "name": "Wrapped Ether on Sonic", + "symbol": "WETH", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/sonic/assets/0x50c42dEAcD8Fc9773493ED674b675bE577f2634b/logo.png", + "pairs": [] + }, + { + "asset": "c10000146_t0xe715cbA7B5cCb33790ceBFF1436809d36cb17E57", + "type": "SONIC", + "address": "0xe715cbA7B5cCb33790ceBFF1436809d36cb17E57", + "name": "EURC", + "symbol": "EURC.e", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/sonic/assets/0xe715cbA7B5cCb33790ceBFF1436809d36cb17E57/logo.png", + "pairs": [] + }, + { + "asset": "c10000146_t0x6047828dc181963ba44974801FF68e538dA5eaF9", + "type": "SONIC", + "address": "0x6047828dc181963ba44974801FF68e538dA5eaF9", + "name": "Bridged USDT", + "symbol": "USDT", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/sonic/assets/0x6047828dc181963ba44974801FF68e538dA5eaF9/logo.png", + "pairs": [] + }, + { + "asset": "c10000146_t0x80Eede496655FB9047dd39d9f418d5483ED600df", + "type": "SONIC", + "address": "0x80Eede496655FB9047dd39d9f418d5483ED600df", + "name": "Frax USD", + "symbol": "frxUSD", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/sonic/assets/0x80Eede496655FB9047dd39d9f418d5483ED600df/logo.png", + "pairs": [] + }, + { + "asset": "c10000146_t0x71E99522EaD5E21CF57F1f542Dc4ad2E841F7321", + "type": "SONIC", + "address": "0x71E99522EaD5E21CF57F1f542Dc4ad2E841F7321", + "name": "Metropolis", + "symbol": "METRO", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/sonic/assets/0x71E99522EaD5E21CF57F1f542Dc4ad2E841F7321/logo.png", + "pairs": [] + }, + { + "asset": "c10000146_t0x0555E30da8f98308EdB960aa94C0Db47230d2B9c", + "type": "SONIC", + "address": "0x0555E30da8f98308EdB960aa94C0Db47230d2B9c", + "name": "Wrapped BTC", + "symbol": "WBTC", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/sonic/assets/0x0555E30da8f98308EdB960aa94C0Db47230d2B9c/logo.png", + "pairs": [] + }, + { + "asset": "c10000146_t0x2fb960611bdC322A9a4A994252658Cae9fe2eeA1", + "type": "SONIC", + "address": "0x2fb960611bdC322A9a4A994252658Cae9fe2eeA1", + "name": "Uniswap", + "symbol": "UNI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/sonic/assets/0x2fb960611bdC322A9a4A994252658Cae9fe2eeA1/logo.png", + "pairs": [] + }, + { + "asset": "c10000146_t0xf1eF7d2D4C0c881cd634481e0586ed5d2871A74B", + "type": "SONIC", + "address": "0xf1eF7d2D4C0c881cd634481e0586ed5d2871A74B", + "name": "Pendle", + "symbol": "PENDLE", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/sonic/assets/0xf1eF7d2D4C0c881cd634481e0586ed5d2871A74B/logo.png", + "pairs": [] + } + ], + "version": { + "major": 1, + "minor": 0, + "patch": 0 + } +} diff --git a/blockchains/stargaze/info/info.json b/blockchains/stargaze/info/info.json index 1cb4bd428e4b4..ca03cef102936 100644 --- a/blockchains/stargaze/info/info.json +++ b/blockchains/stargaze/info/info.json @@ -22,8 +22,11 @@ "url": "https://coinmarketcap.com/ru/currencies/stargaze/" }, { - "name": "twitter", - "url": "https://twitter.com/StargazeZone" + "name": "x", + "url": "https://x.com/StargazeZone" } + ], + "tags": [ + "staking-native" ] -} +} \ No newline at end of file diff --git a/blockchains/stargaze/info/square_logo.png b/blockchains/stargaze/info/square_logo.png new file mode 100644 index 0000000000000..c27651f165576 Binary files /dev/null and b/blockchains/stargaze/info/square_logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper13htkxk8nw6qwhfdugllp8ldtgt5nm80xf679h5/logo.png b/blockchains/stargaze/validators/assets/starsvaloper13htkxk8nw6qwhfdugllp8ldtgt5nm80xf679h5/logo.png new file mode 100644 index 0000000000000..2b7d58fdbd8b2 Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper13htkxk8nw6qwhfdugllp8ldtgt5nm80xf679h5/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje9898petq/logo.png b/blockchains/stargaze/validators/assets/starsvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje9898petq/logo.png new file mode 100644 index 0000000000000..9dff7bbedfbee Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje9898petq/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper18ux9f6y7x29hdpvs4w3uj8hrmn8rffgm9u52eu/logo.png b/blockchains/stargaze/validators/assets/starsvaloper18ux9f6y7x29hdpvs4w3uj8hrmn8rffgm9u52eu/logo.png new file mode 100644 index 0000000000000..c53de0659fd41 Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper18ux9f6y7x29hdpvs4w3uj8hrmn8rffgm9u52eu/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper18wkkhsrsw7gwl3z9gn6e25ag3sn0crzp89el6n/logo.png b/blockchains/stargaze/validators/assets/starsvaloper18wkkhsrsw7gwl3z9gn6e25ag3sn0crzp89el6n/logo.png new file mode 100644 index 0000000000000..d9182668938b8 Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper18wkkhsrsw7gwl3z9gn6e25ag3sn0crzp89el6n/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper1fhznrvfyv25f27se8pqw79ytfcwh45j0ppy6lz/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1fhznrvfyv25f27se8pqw79ytfcwh45j0ppy6lz/logo.png new file mode 100644 index 0000000000000..6969356556add Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1fhznrvfyv25f27se8pqw79ytfcwh45j0ppy6lz/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4p60w86a/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4p60w86a/logo.png new file mode 100644 index 0000000000000..a815dfcdc85c8 Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4p60w86a/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper1gz645mefvu5emd0llpfjchqqpyuxt0xxq34per/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1gz645mefvu5emd0llpfjchqqpyuxt0xxq34per/logo.png new file mode 100644 index 0000000000000..5f4e450704b06 Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1gz645mefvu5emd0llpfjchqqpyuxt0xxq34per/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper1mz2qks48v486d9m8wp4l9fxm2e9l0e0kzk79m5/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1mz2qks48v486d9m8wp4l9fxm2e9l0e0kzk79m5/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1mz2qks48v486d9m8wp4l9fxm2e9l0e0kzk79m5/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qlh8sg9/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qlh8sg9/logo.png new file mode 100644 index 0000000000000..e53d0580b5a99 Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qlh8sg9/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper1r6usxgxmrz6ynjz2y5ez5u8ts3fpmtlrl8c9xr/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1r6usxgxmrz6ynjz2y5ez5u8ts3fpmtlrl8c9xr/logo.png new file mode 100644 index 0000000000000..c2cb86a42efe3 Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1r6usxgxmrz6ynjz2y5ez5u8ts3fpmtlrl8c9xr/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper1swer6tl0s59g82xnq5gmgsdueld79wpw8vptlu/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1swer6tl0s59g82xnq5gmgsdueld79wpw8vptlu/logo.png new file mode 100644 index 0000000000000..eaf66cb5cbb1f Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1swer6tl0s59g82xnq5gmgsdueld79wpw8vptlu/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper1ulvgmlttxhrnmegu57sj0n2qc7xvtrn9245jtu/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1ulvgmlttxhrnmegu57sj0n2qc7xvtrn9245jtu/logo.png new file mode 100644 index 0000000000000..91529a7d386f0 Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1ulvgmlttxhrnmegu57sj0n2qc7xvtrn9245jtu/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper1wvh8n82r4alqhxs45m8jtf536sqc5nzzgfzs7x/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1wvh8n82r4alqhxs45m8jtf536sqc5nzzgfzs7x/logo.png new file mode 100644 index 0000000000000..05e24c5c9fa3f Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1wvh8n82r4alqhxs45m8jtf536sqc5nzzgfzs7x/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper1y3cxrze7kmktj93atd42g9rffyg823g0qjqelc/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1y3cxrze7kmktj93atd42g9rffyg823g0qjqelc/logo.png new file mode 100644 index 0000000000000..1b71ae0a3a343 Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1y3cxrze7kmktj93atd42g9rffyg823g0qjqelc/logo.png differ diff --git a/blockchains/stargaze/validators/list.json b/blockchains/stargaze/validators/list.json new file mode 100644 index 0000000000000..0a806e3aa4c91 --- /dev/null +++ b/blockchains/stargaze/validators/list.json @@ -0,0 +1,92 @@ +[ + { + "id": "starsvaloper1mz2qks48v486d9m8wp4l9fxm2e9l0e0kzk79m5", + "name": "StakeLab", + "description": "Staking Hub for Cosmos ecosystem", + "website": "https://www.stakelab.zone/" + }, + { + "id": "starsvaloper1ulvgmlttxhrnmegu57sj0n2qc7xvtrn9245jtu", + "name": "Cosmostation", + "description": "Cosmostation validator node. Delegate your tokens and Start Earning Staking Rewards", + "website": "https://www.cosmostation.io/" + }, + { + "id": "starsvaloper13htkxk8nw6qwhfdugllp8ldtgt5nm80xf679h5", + "name": "Figment", + "description": "The complete staking solution for 250+ institutional clients including asset managers, custodians, exchanges, foundations, and wallets to earn rewards on their digital assets.", + "website": "https://figment.io/" + }, + { + "id": "starsvaloper1fhznrvfyv25f27se8pqw79ytfcwh45j0ppy6lz", + "name": "OmniFlix Network", + "description": "OmniFlix is a p2p network for creators, curators and their sovereign communities to mint, manage and monetize assets. Developed Cosmic Compass, winner of the Best Custom Zone category in Cosmos (GOZ) and run nodes on networks that share our vision.", + "website": "https://omniflix.network" + }, + { + "id": "starsvaloper1r6usxgxmrz6ynjz2y5ez5u8ts3fpmtlrl8c9xr", + "name": "AutoStake 🛡️ Slash Protected", + "description": "BareMetal - Decentralised - Reliable infrastructure run by the industry leader - AutoStake - Connect with us at: https://linktr.ee/autostake", + "website": "https://autostake.com" + }, + { + "id": "starsvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4p60w86a", + "name": "polkachu.com", + "description": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at hello@polkachu.com", + "website": "https://polkachu.com/" + }, + { + "id": "starsvaloper1wvh8n82r4alqhxs45m8jtf536sqc5nzzgfzs7x", + "name": "STAKECRAFT", + "description": "StakeCraft is a team of geeks with vast experience in programming, developing and managing digital assets.", + "website": "https://stakecraft.com" + }, + { + "id": "starsvaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qlh8sg9", + "name": "Stakecito", + "description": "Securing & Decentralizing PoS Networks.", + "website": "https://stakecito.com" + }, + { + "id": "starsvaloper1y3cxrze7kmktj93atd42g9rffyg823g0qjqelc", + "name": "Imperator.co", + "description": "100% refund on downtime slashing -- Professional Delegated Proof-of-Stake Network Validator", + "website": "https://imperator.co/" + }, + { + "id": "starsvaloper18wkkhsrsw7gwl3z9gn6e25ag3sn0crzp89el6n", + "name": "White Marlin Staking", + "description": "Validator on Stargaze, Osmosis, Chihuahua and Nomic. | 🫵 Delegate", + "website": "https://x.com/WhiteMarlin4" + }, + { + "id": "starsvaloper1gz645mefvu5emd0llpfjchqqpyuxt0xxq34per", + "name": "Bad Kids | 100% Slashing", + "description": "Unprotected slashing, 100% fees till 2025", + "website": "http://discord.com/CUbNQh9bFC" + }, + { + "id": "starsvaloper1swer6tl0s59g82xnq5gmgsdueld79wpw8vptlu", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com" + }, + { + "id": "starsvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje9898petq", + "name": "Kahuna", + "description": "Kahuna is a tech-focused investment firm dedicated to Blockchain Infrastructure, DeFi, and Gaming startups. Follow us on https://x.com/kahunahq", + "website": "https://www.kahuna.network/" + }, + { + "id": "starsvaloper18ux9f6y7x29hdpvs4w3uj8hrmn8rffgm9u52eu", + "name": "Coinage x DAIC", + "description": "The official validator node from Coinage (Coinage.Media) and DAIC (https://daic.capital/telegram)", + "website": "https://daic.capital/" + }, + { + "id": "starsvaloper1vaq0mrf3vfs5pap7hhfs7lgfl4e2plum77halc", + "name": "Allnodes", + "description": "Reliable non-custodial Validator run by the industry leader - Allnodes. Monitor your rewards through the Allnodes portfolio page.", + "website": "https://www.allnodes.com/akt/staking" + } +] diff --git a/blockchains/steem/info/info.json b/blockchains/steem/info/info.json index c0d47e6567842..48dee80a117f5 100644 --- a/blockchains/steem/info/info.json +++ b/blockchains/steem/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/steemit/steem" }, { - "name": "twitter", - "url": "https://twitter.com/Steemit" + "name": "x", + "url": "https://x.com/Steemit" }, { "name": "reddit", diff --git a/blockchains/steem/info/square_logo.png b/blockchains/steem/info/square_logo.png new file mode 100644 index 0000000000000..95fa5dce5cef2 Binary files /dev/null and b/blockchains/steem/info/square_logo.png differ diff --git a/blockchains/stellar/assets/USDC-GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN/info.json b/blockchains/stellar/assets/USDC-GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN/info.json index b26d962748ee6..e3cf23fc61a98 100644 --- a/blockchains/stellar/assets/USDC-GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN/info.json +++ b/blockchains/stellar/assets/USDC-GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN/info.json @@ -1,5 +1,5 @@ { - "name": "USD Coin", + "name": "USDC", "type": "STELLAR", "symbol": "USDC", "decimals": 7, @@ -10,8 +10,8 @@ "id": "USDC-GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN", "links": [ { - "name": "twitter", - "url": "https://twitter.com/centre_io" + "name": "x", + "url": "https://x.com/centre_io" }, { "name": "coinmarketcap", @@ -25,4 +25,4 @@ "tags": [ "stablecoin" ] -} +} \ No newline at end of file diff --git a/blockchains/stellar/info/info.json b/blockchains/stellar/info/info.json index 4b2ede1092888..b55cc352ea299 100644 --- a/blockchains/stellar/info/info.json +++ b/blockchains/stellar/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/stellar" }, { - "name": "twitter", - "url": "https://twitter.com/StellarOrg" + "name": "x", + "url": "https://x.com/StellarOrg" }, { "name": "reddit", diff --git a/blockchains/stellar/info/square_logo.png b/blockchains/stellar/info/square_logo.png new file mode 100644 index 0000000000000..6ea23334db40b Binary files /dev/null and b/blockchains/stellar/info/square_logo.png differ diff --git a/blockchains/stratis/info/info.json b/blockchains/stratis/info/info.json new file mode 100644 index 0000000000000..e71145ab3c8f4 --- /dev/null +++ b/blockchains/stratis/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "Stratis", + "website": "https://www.stratisplatform.com", + "description": "Stratis Group Ltd., the company behind the Stratis platform, was founded in 2016 by Chris Trew.", + "explorer": "https://chainz.cryptoid.info/strax/#", + "symbol": "STRAX", + "type": "coin", + "decimals": 8, + "status": "active", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/stratis/" + }, + { + "name": "x", + "url": "https://x.com/stratisplatform" + } + ] +} \ No newline at end of file diff --git a/blockchains/stratis/info/logo.png b/blockchains/stratis/info/logo.png new file mode 100644 index 0000000000000..00a41b1a8f18e Binary files /dev/null and b/blockchains/stratis/info/logo.png differ diff --git a/blockchains/stratis/info/square_logo.png b/blockchains/stratis/info/square_logo.png new file mode 100644 index 0000000000000..93bc4266ca3d6 Binary files /dev/null and b/blockchains/stratis/info/square_logo.png differ diff --git a/blockchains/stride/assets/staevmos/info.json b/blockchains/stride/assets/staevmos/info.json index d6bf4fa1ba157..e0bb8d56a7cb1 100644 --- a/blockchains/stride/assets/staevmos/info.json +++ b/blockchains/stride/assets/staevmos/info.json @@ -7,8 +7,5 @@ "website": "https://stride.zone", "explorer": "https://www.mintscan.io/stride/account/staevmos", "status": "active", - "id": "staevmos", - "tags": [ - "staking-liquid" - ] + "id": "staevmos" } \ No newline at end of file diff --git a/blockchains/stride/assets/stinj/info.json b/blockchains/stride/assets/stinj/info.json index 4a4f6d1a485c0..37d1967c74e2d 100644 --- a/blockchains/stride/assets/stinj/info.json +++ b/blockchains/stride/assets/stinj/info.json @@ -7,8 +7,5 @@ "website": "https://stride.zone", "explorer": "https://www.mintscan.io/stride/account/stinj", "status": "active", - "id": "stinj", - "tags": [ - "staking-native" - ] + "id": "stinj" } \ No newline at end of file diff --git a/blockchains/stride/assets/stuatom/info.json b/blockchains/stride/assets/stuatom/info.json index 40be548ba15a8..4cc88944c0ec0 100644 --- a/blockchains/stride/assets/stuatom/info.json +++ b/blockchains/stride/assets/stuatom/info.json @@ -13,8 +13,5 @@ "name": "coinmarketcap", "url": "https://coinmarketcap.com/currencies/stride-staked-atom/" } - ], - "tags": [ - "staking-native" ] } \ No newline at end of file diff --git a/blockchains/stride/assets/stujuno/info.json b/blockchains/stride/assets/stujuno/info.json index a5e133e72b1e3..313db9affb3c3 100644 --- a/blockchains/stride/assets/stujuno/info.json +++ b/blockchains/stride/assets/stujuno/info.json @@ -13,8 +13,5 @@ "name": "coinmarketcap", "url": "https://coinmarketcap.com/currencies/stride-staked-juno/" } - ], - "tags": [ - "staking-native" ] } \ No newline at end of file diff --git a/blockchains/stride/assets/stuluna/info.json b/blockchains/stride/assets/stuluna/info.json index efd088f597589..c60fe8a357587 100644 --- a/blockchains/stride/assets/stuluna/info.json +++ b/blockchains/stride/assets/stuluna/info.json @@ -7,8 +7,5 @@ "website": "https://stride.zone", "explorer": "https://www.mintscan.io/stride/account/stuluna", "status": "active", - "id": "stuluna", - "tags": [ - "staking-native" - ] + "id": "stuluna" } \ No newline at end of file diff --git a/blockchains/stride/assets/stuosmo/info.json b/blockchains/stride/assets/stuosmo/info.json index 29788cb4464a5..bb5a4e779bfe5 100644 --- a/blockchains/stride/assets/stuosmo/info.json +++ b/blockchains/stride/assets/stuosmo/info.json @@ -7,8 +7,5 @@ "website": "https://stride.zone", "explorer": "https://www.mintscan.io/stride/account/stuosmo", "status": "active", - "id": "stuosmo", - "tags": [ - "staking-native" - ] + "id": "stuosmo" } \ No newline at end of file diff --git a/blockchains/stride/assets/stustars/info.json b/blockchains/stride/assets/stustars/info.json index f3b47988af462..4ab67048dc976 100644 --- a/blockchains/stride/assets/stustars/info.json +++ b/blockchains/stride/assets/stustars/info.json @@ -13,8 +13,5 @@ "name": "coinmarketcap", "url": "https://coinmarketcap.com/currencies/stride-staked-stars/" } - ], - "tags": [ - "staking-native" ] } \ No newline at end of file diff --git a/blockchains/stride/assets/stuumee/info.json b/blockchains/stride/assets/stuumee/info.json index 8d6b44878c23c..3785ebcc801ec 100644 --- a/blockchains/stride/assets/stuumee/info.json +++ b/blockchains/stride/assets/stuumee/info.json @@ -7,8 +7,5 @@ "website": "https://stride.zone", "explorer": "https://www.mintscan.io/stride/account/stuumee", "status": "active", - "id": "stuumee", - "tags": [ - "staking-native" - ] + "id": "stuumee" } \ No newline at end of file diff --git a/blockchains/stride/info/info.json b/blockchains/stride/info/info.json index cd9a003a99c02..b12f7d73155a1 100644 --- a/blockchains/stride/info/info.json +++ b/blockchains/stride/info/info.json @@ -24,8 +24,8 @@ "url": "https://coinmarketcap.com/ru/currencies/stride/" }, { - "name": "twitter", - "url": "https://twitter.com/stride_zone" + "name": "x", + "url": "https://x.com/stride_zone" } ] -} +} \ No newline at end of file diff --git a/blockchains/stride/info/square_logo.png b/blockchains/stride/info/square_logo.png new file mode 100644 index 0000000000000..8a009bc1a6af5 Binary files /dev/null and b/blockchains/stride/info/square_logo.png differ diff --git a/blockchains/stride/validators/assets/stridevaloper140e7u946a2nqqkvcnjpjm83d0ynsqem8ge30n0/logo.png b/blockchains/stride/validators/assets/stridevaloper140e7u946a2nqqkvcnjpjm83d0ynsqem8ge30n0/logo.png new file mode 100644 index 0000000000000..c53de0659fd41 Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper140e7u946a2nqqkvcnjpjm83d0ynsqem8ge30n0/logo.png differ diff --git a/blockchains/stride/validators/assets/stridevaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zv8hy7g/logo.png b/blockchains/stride/validators/assets/stridevaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zv8hy7g/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zv8hy7g/logo.png differ diff --git a/blockchains/stride/validators/assets/stridevaloper16yupepagywvlk7uhpfchtwa0stu5f8cyjayqas/logo.png b/blockchains/stride/validators/assets/stridevaloper16yupepagywvlk7uhpfchtwa0stu5f8cyjayqas/logo.png new file mode 100644 index 0000000000000..0f6305d87f6e5 Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper16yupepagywvlk7uhpfchtwa0stu5f8cyjayqas/logo.png differ diff --git a/blockchains/stride/validators/assets/stridevaloper17axr56uvurzt9dzjl6zplk4qwjkmxgmmqmthwv/logo.png b/blockchains/stride/validators/assets/stridevaloper17axr56uvurzt9dzjl6zplk4qwjkmxgmmqmthwv/logo.png new file mode 100644 index 0000000000000..1020527149890 Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper17axr56uvurzt9dzjl6zplk4qwjkmxgmmqmthwv/logo.png differ diff --git a/blockchains/stride/validators/assets/stridevaloper1a5c3ejnzy0827t62cyj7etmuchdqvznhp5yp94/logo.png b/blockchains/stride/validators/assets/stridevaloper1a5c3ejnzy0827t62cyj7etmuchdqvznhp5yp94/logo.png new file mode 100644 index 0000000000000..c2cb86a42efe3 Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper1a5c3ejnzy0827t62cyj7etmuchdqvznhp5yp94/logo.png differ diff --git a/blockchains/stride/validators/assets/stridevaloper1xgvc86nkv03z7rgyx9t8t66kfz7y9tgpewkww2/logo.png b/blockchains/stride/validators/assets/stridevaloper1xgvc86nkv03z7rgyx9t8t66kfz7y9tgpewkww2/logo.png new file mode 100644 index 0000000000000..e117817071239 Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper1xgvc86nkv03z7rgyx9t8t66kfz7y9tgpewkww2/logo.png differ diff --git a/blockchains/stride/validators/assets/stridevaloper1ysvaxqqsaex4rej24hns367358t9nplngmvexh/logo.png b/blockchains/stride/validators/assets/stridevaloper1ysvaxqqsaex4rej24hns367358t9nplngmvexh/logo.png new file mode 100644 index 0000000000000..e247fab1b4a51 Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper1ysvaxqqsaex4rej24hns367358t9nplngmvexh/logo.png differ diff --git a/blockchains/stride/validators/list.json b/blockchains/stride/validators/list.json index 60b5a29953325..78d968e0e3966 100644 --- a/blockchains/stride/validators/list.json +++ b/blockchains/stride/validators/list.json @@ -35,6 +35,12 @@ "description": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at hello@polkachu.com", "website": "https://polkachu.com/" }, + { + "id": "stridevaloper1a5c3ejnzy0827t62cyj7etmuchdqvznhp5yp94", + "name": "AutoStake 🛡️ Slash Protected", + "description": "BareMetal - Decentralised - Reliable infrastructure run by the industry leader - AutoStake - Connect with us at: https://linktr.ee/autostake", + "website": "https://autostake.com" + }, { "id": "stridevaloper1kvwpcr45lh7wn53wp9ac42ypr3t8zjqy6ks9au", "name": "Notional", @@ -58,5 +64,41 @@ "name": "Flipside", "description": "Explore the best data and insights in Web3.", "website": "https://flipsidecrypto.xyz/" + }, + { + "id": "stridevaloper17axr56uvurzt9dzjl6zplk4qwjkmxgmmqmthwv", + "name": "Allnodes.com ⚡️ 0% fee", + "description": "Reliable non-custodial Validator run by the industry leader - Allnodes. Monitor your rewards through the Allnodes portfolio page.", + "website": "https://www.allnodes.com/strd/staking" + }, + { + "id": "stridevaloper1xgvc86nkv03z7rgyx9t8t66kfz7y9tgpewkww2", + "name": "w3coins", + "description": "w3coins is a Professional Validator and web3 Venture Capital. Stake Your Cryptocurrency with us to Maximize Your Earnings.", + "website": "https://www.w3coins.io" + }, + { + "id": "stridevaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zv8hy7g", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + }, + { + "id": "stridevaloper16yupepagywvlk7uhpfchtwa0stu5f8cyjayqas", + "name": "Stakely.io", + "description": "🔥 Professional validator highly experienced in PoS 🔥 Slashing protection & Eligible for airdrops | Learn with our staking guides, video tutorials and FAQs | Part of the commission of our nodes will go to our Multicoin Faucet funds and other tools 🌱 Carbon Neutral 🌱", + "website": "https://stakely.io" + }, + { + "id": "stridevaloper140e7u946a2nqqkvcnjpjm83d0ynsqem8ge30n0", + "name": "Coinage x DAIC", + "description": "The official validator node from Coinage (Coinage.Media) and DAIC (https://daic.capital/telegram)", + "website": "https://daic.capital/" + }, + { + "id": "stridevaloper1ysvaxqqsaex4rej24hns367358t9nplngmvexh", + "name": "Blocks United", + "description": "Elevate your staking experience with autocompounding rewards, exclusive airdrop eligibility, and low commissions for maximized returns.", + "website": "https://blocksunited.com" } ] diff --git a/blockchains/sui/assets/0x06864a6f921804860930db6ddbe2e16acdf8504495ea7481637a1c8b9a8fe54b::cetus::CETUS/info.json b/blockchains/sui/assets/0x06864a6f921804860930db6ddbe2e16acdf8504495ea7481637a1c8b9a8fe54b::cetus::CETUS/info.json new file mode 100644 index 0000000000000..a674c639f81f2 --- /dev/null +++ b/blockchains/sui/assets/0x06864a6f921804860930db6ddbe2e16acdf8504495ea7481637a1c8b9a8fe54b::cetus::CETUS/info.json @@ -0,0 +1,24 @@ +{ + "name": "Cetus Protocol", + "website": "https://www.cetus.zone/", + "description": "CETUS is the native token of Cetus Protocol.", + "explorer": "https://suiscan.xyz/mainnet/coin/0x06864a6f921804860930db6ddbe2e16acdf8504495ea7481637a1c8b9a8fe54b::cetus::CETUS", + "type": "SUI", + "symbol": "CETUS", + "decimals": 9, + "status": "abandoned", + "id": "0x06864a6f921804860930db6ddbe2e16acdf8504495ea7481637a1c8b9a8fe54b::cetus::CETUS", + "links": [ + { + "name": "x", + "url": "https://x.com/CetusProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/cetusprotocol" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/sui/assets/0x294de7579d55c110a00a7c4946e09a1b5cbeca2592fbb83fd7bfacba3cfeaf0e::drf::DRF/info.json b/blockchains/sui/assets/0x294de7579d55c110a00a7c4946e09a1b5cbeca2592fbb83fd7bfacba3cfeaf0e::drf::DRF/info.json new file mode 100644 index 0000000000000..0a58e4d9dc992 --- /dev/null +++ b/blockchains/sui/assets/0x294de7579d55c110a00a7c4946e09a1b5cbeca2592fbb83fd7bfacba3cfeaf0e::drf::DRF/info.json @@ -0,0 +1,21 @@ +{ + "name": "DRIFE", + "type": "SUI", + "symbol": "DRF", + "decimals": 6, + "website": "https://www.drife.io/", + "description": "DRIFE is an innovative Web3-based decentralized ride-hailing platform designed to revolutionize the transportation industry by shifting control and ownership from centralized entities to drivers and passengers.", + "explorer": "https://suiscan.xyz/mainnet/coin/0x294de7579d55c110a00a7c4946e09a1b5cbeca2592fbb83fd7bfacba3cfeaf0e::drf::DRF", + "status": "active", + "id": "0x294de7579d55c110a00a7c4946e09a1b5cbeca2592fbb83fd7bfacba3cfeaf0e::drf::DRF", + "links": [ + { + "name": "x", + "url": "https://x.com/Drife_official" + }, + { + "name": "telegram", + "url": "https://t.me/Drife_officialchat" + } + ] +} \ No newline at end of file diff --git a/blockchains/sui/assets/0x294de7579d55c110a00a7c4946e09a1b5cbeca2592fbb83fd7bfacba3cfeaf0e::drf::DRF/logo.png b/blockchains/sui/assets/0x294de7579d55c110a00a7c4946e09a1b5cbeca2592fbb83fd7bfacba3cfeaf0e::drf::DRF/logo.png new file mode 100644 index 0000000000000..4c02365272508 Binary files /dev/null and b/blockchains/sui/assets/0x294de7579d55c110a00a7c4946e09a1b5cbeca2592fbb83fd7bfacba3cfeaf0e::drf::DRF/logo.png differ diff --git a/blockchains/sui/assets/0x35169bc93e1fddfcf3a82a9eae726d349689ed59e4b065369af8789fe59f8608::mmt::MMT/info.json b/blockchains/sui/assets/0x35169bc93e1fddfcf3a82a9eae726d349689ed59e4b065369af8789fe59f8608::mmt::MMT/info.json new file mode 100644 index 0000000000000..c628d2d5ded31 --- /dev/null +++ b/blockchains/sui/assets/0x35169bc93e1fddfcf3a82a9eae726d349689ed59e4b065369af8789fe59f8608::mmt::MMT/info.json @@ -0,0 +1,28 @@ +{ + "name": "Momentum", + "type": "SUI", + "symbol": "MMT", + "decimals": 9, + "website": "https://www.mmt.finance/", + "description": "Momentum is the Global Financial Operating System for the Tokenised Future, built on the Move language and powered by the ve(3,3) governance model.", + "explorer": "https://suivision.xyz/coin/0x35169bc93e1fddfcf3a82a9eae726d349689ed59e4b065369af8789fe59f8608::mmt::MMT", + "status": "active", + "id": "0x35169bc93e1fddfcf3a82a9eae726d349689ed59e4b065369af8789fe59f8608::mmt::MMT", + "links": [ + { + "name": "x", + "url": "https://x.com/MMTFinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/momentum-token/" + }, + { + "name": "whitepaper", + "url": "https://docs.mmt.finance/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/sui/assets/0x35169bc93e1fddfcf3a82a9eae726d349689ed59e4b065369af8789fe59f8608::mmt::MMT/logo.png b/blockchains/sui/assets/0x35169bc93e1fddfcf3a82a9eae726d349689ed59e4b065369af8789fe59f8608::mmt::MMT/logo.png new file mode 100644 index 0000000000000..c97aa9c7288ae Binary files /dev/null and b/blockchains/sui/assets/0x35169bc93e1fddfcf3a82a9eae726d349689ed59e4b065369af8789fe59f8608::mmt::MMT/logo.png differ diff --git a/blockchains/sui/assets/0x375f70cf2ae4c00bf37117d0c85a2c71545e6ee05c4a5c7d282cd66a4504b068::usdt::USDT/info.json b/blockchains/sui/assets/0x375f70cf2ae4c00bf37117d0c85a2c71545e6ee05c4a5c7d282cd66a4504b068::usdt::USDT/info.json new file mode 100644 index 0000000000000..ef83e32b23b11 --- /dev/null +++ b/blockchains/sui/assets/0x375f70cf2ae4c00bf37117d0c85a2c71545e6ee05c4a5c7d282cd66a4504b068::usdt::USDT/info.json @@ -0,0 +1,28 @@ +{ + "name": "Tether", + "website": "https://tether.to", + "description": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar.", + "explorer": "https://suiscan.xyz/mainnet/coin/0x375f70cf2ae4c00bf37117d0c85a2c71545e6ee05c4a5c7d282cd66a4504b068::usdt::USDT", + "type": "SUI", + "symbol": "USDT", + "decimals": 6, + "status": "active", + "id": "0x375f70cf2ae4c00bf37117d0c85a2c71545e6ee05c4a5c7d282cd66a4504b068::usdt::USDT", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/tether.to/" + }, + { + "name": "x", + "url": "https://x.com/Tether_to/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tether/" + } + ] +} \ No newline at end of file diff --git a/blockchains/sui/assets/0x375f70cf2ae4c00bf37117d0c85a2c71545e6ee05c4a5c7d282cd66a4504b068::usdt::USDT/logo.png b/blockchains/sui/assets/0x375f70cf2ae4c00bf37117d0c85a2c71545e6ee05c4a5c7d282cd66a4504b068::usdt::USDT/logo.png new file mode 100644 index 0000000000000..4b3027306a91c Binary files /dev/null and b/blockchains/sui/assets/0x375f70cf2ae4c00bf37117d0c85a2c71545e6ee05c4a5c7d282cd66a4504b068::usdt::USDT/logo.png differ diff --git a/blockchains/sui/assets/0x506a6fc25f1c7d52ceb06ea44a3114c9380f8e2029b4356019822f248b49e411::memefi::MEMEFI/info.json b/blockchains/sui/assets/0x506a6fc25f1c7d52ceb06ea44a3114c9380f8e2029b4356019822f248b49e411::memefi::MEMEFI/info.json new file mode 100644 index 0000000000000..20383a94a70d0 --- /dev/null +++ b/blockchains/sui/assets/0x506a6fc25f1c7d52ceb06ea44a3114c9380f8e2029b4356019822f248b49e411::memefi::MEMEFI/info.json @@ -0,0 +1,21 @@ +{ + "name": "MEMEFI", + "type": "SUI", + "symbol": "MEMEFI", + "decimals": 9, + "website": "https://www.memefi.club/", + "description": "MemeFi has emerged as a pioneer in the Telegram mini-app space, evolving from a simple idle tap-to-earn game into a sophisticated ecosystem with interconnected gaming mechanics.", + "explorer": "https://suiscan.xyz/mainnet/coin/0x506a6fc25f1c7d52ceb06ea44a3114c9380f8e2029b4356019822f248b49e411::memefi::MEMEFI", + "status": "active", + "id": "0x506a6fc25f1c7d52ceb06ea44a3114c9380f8e2029b4356019822f248b49e411::memefi::MEMEFI", + "links": [ + { + "name": "x", + "url": "https://x.com/memeficlub" + }, + { + "name": "telegram", + "url": "https://t.me/memeficlub" + } + ] +} \ No newline at end of file diff --git a/blockchains/sui/assets/0x506a6fc25f1c7d52ceb06ea44a3114c9380f8e2029b4356019822f248b49e411::memefi::MEMEFI/logo.png b/blockchains/sui/assets/0x506a6fc25f1c7d52ceb06ea44a3114c9380f8e2029b4356019822f248b49e411::memefi::MEMEFI/logo.png new file mode 100644 index 0000000000000..7964957c99c31 Binary files /dev/null and b/blockchains/sui/assets/0x506a6fc25f1c7d52ceb06ea44a3114c9380f8e2029b4356019822f248b49e411::memefi::MEMEFI/logo.png differ diff --git a/blockchains/sui/assets/0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN/info.json b/blockchains/sui/assets/0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN/info.json new file mode 100644 index 0000000000000..a3bc9790fed4d --- /dev/null +++ b/blockchains/sui/assets/0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bridged USDC", + "symbol": "wUSDC", + "type": "SUI", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://portalbridge.com/?targetChain=sui", + "explorer": "https://explorer.sui.io/address/0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN", + "status": "active", + "id": "0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN", + "links": [ + { + "name": "docs", + "url": "https://portalbridge.com/docs/faqs/liquid-markets/#target-chain-sui" + } + ], + "tags": [ + "stablecoin", + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/sui/assets/0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN/logo.png b/blockchains/sui/assets/0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN/logo.png new file mode 100644 index 0000000000000..8047edf737f31 Binary files /dev/null and b/blockchains/sui/assets/0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN/logo.png differ diff --git a/blockchains/sui/assets/0x6864a6f921804860930db6ddbe2e16acdf8504495ea7481637a1c8b9a8fe54b::cetus::CETUS/info.json b/blockchains/sui/assets/0x6864a6f921804860930db6ddbe2e16acdf8504495ea7481637a1c8b9a8fe54b::cetus::CETUS/info.json new file mode 100644 index 0000000000000..fb0ea93686e06 --- /dev/null +++ b/blockchains/sui/assets/0x6864a6f921804860930db6ddbe2e16acdf8504495ea7481637a1c8b9a8fe54b::cetus::CETUS/info.json @@ -0,0 +1,24 @@ +{ + "name": "Cetus Protocol", + "website": "https://www.cetus.zone/", + "description": "CETUS is the native token of Cetus Protocol.", + "explorer": "https://suiscan.xyz/mainnet/coin/0x6864a6f921804860930db6ddbe2e16acdf8504495ea7481637a1c8b9a8fe54b::cetus::CETUS", + "type": "SUI", + "symbol": "CETUS", + "decimals": 9, + "status": "active", + "id": "0x6864a6f921804860930db6ddbe2e16acdf8504495ea7481637a1c8b9a8fe54b::cetus::CETUS", + "links": [ + { + "name": "x", + "url": "https://x.com/CetusProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/cetusprotocol" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/sui/assets/0x6864a6f921804860930db6ddbe2e16acdf8504495ea7481637a1c8b9a8fe54b::cetus::CETUS/logo.png b/blockchains/sui/assets/0x6864a6f921804860930db6ddbe2e16acdf8504495ea7481637a1c8b9a8fe54b::cetus::CETUS/logo.png new file mode 100644 index 0000000000000..ec5ee8d0991ec Binary files /dev/null and b/blockchains/sui/assets/0x6864a6f921804860930db6ddbe2e16acdf8504495ea7481637a1c8b9a8fe54b::cetus::CETUS/logo.png differ diff --git a/blockchains/sui/assets/0x7016aae72cfc67f2fadf55769c0a7dd54291a583b63051a5ed71081cce836ac6::sca::SCA/info.json b/blockchains/sui/assets/0x7016aae72cfc67f2fadf55769c0a7dd54291a583b63051a5ed71081cce836ac6::sca::SCA/info.json new file mode 100644 index 0000000000000..259879494ded9 --- /dev/null +++ b/blockchains/sui/assets/0x7016aae72cfc67f2fadf55769c0a7dd54291a583b63051a5ed71081cce836ac6::sca::SCA/info.json @@ -0,0 +1,21 @@ +{ + "name": "Scallop", + "type": "SUI", + "symbol": "SCA", + "decimals": 9, + "website": "https://scallop.io/", + "description": "Scallop is the pioneering Next Generation peer-to-peer Money Market for the Sui ecosystem and is also the first DeFi protocol to receive an official grant from the Sui Foundation.", + "explorer": "https://suiscan.xyz/mainnet/coin/0x7016aae72cfc67f2fadf55769c0a7dd54291a583b63051a5ed71081cce836ac6::sca::SCA", + "status": "active", + "id": "0x7016aae72cfc67f2fadf55769c0a7dd54291a583b63051a5ed71081cce836ac6::sca::SCA", + "links": [ + { + "name": "x", + "url": "https://x.com/Scallop_io" + }, + { + "name": "telegram", + "url": "https://t.me/scallop_io" + } + ] +} \ No newline at end of file diff --git a/blockchains/sui/assets/0x7016aae72cfc67f2fadf55769c0a7dd54291a583b63051a5ed71081cce836ac6::sca::SCA/logo.png b/blockchains/sui/assets/0x7016aae72cfc67f2fadf55769c0a7dd54291a583b63051a5ed71081cce836ac6::sca::SCA/logo.png new file mode 100644 index 0000000000000..f966a927c1183 Binary files /dev/null and b/blockchains/sui/assets/0x7016aae72cfc67f2fadf55769c0a7dd54291a583b63051a5ed71081cce836ac6::sca::SCA/logo.png differ diff --git a/blockchains/sui/assets/0x76cb819b01abed502bee8a702b4c2d547532c12f25001c9dea795a5e631c26f1::fud::FUD/info.json b/blockchains/sui/assets/0x76cb819b01abed502bee8a702b4c2d547532c12f25001c9dea795a5e631c26f1::fud::FUD/info.json new file mode 100644 index 0000000000000..5f577b25c2abd --- /dev/null +++ b/blockchains/sui/assets/0x76cb819b01abed502bee8a702b4c2d547532c12f25001c9dea795a5e631c26f1::fud::FUD/info.json @@ -0,0 +1,17 @@ +{ + "name": "FUD", + "symbol": "FUD", + "type": "SUI", + "decimals": 5, + "description": "$FUD is the community coin for Sui Network. Founded by a decentralized team of founders, devs and builders within the Sui ecosystem. $FUD is for the people, by the people.", + "website": "https://fudthepug.com/", + "explorer": "https://suiscan.xyz/mainnet/coin/0x76cb819b01abed502bee8a702b4c2d547532c12f25001c9dea795a5e631c26f1::fud::FUD", + "status": "active", + "id": "0x76cb819b01abed502bee8a702b4c2d547532c12f25001c9dea795a5e631c26f1::fud::FUD", + "links": [ + { + "name": "x", + "url": "https://x.com/fudthepug" + } + ] +} \ No newline at end of file diff --git a/blockchains/sui/assets/0x76cb819b01abed502bee8a702b4c2d547532c12f25001c9dea795a5e631c26f1::fud::FUD/logo.png b/blockchains/sui/assets/0x76cb819b01abed502bee8a702b4c2d547532c12f25001c9dea795a5e631c26f1::fud::FUD/logo.png new file mode 100644 index 0000000000000..3f42ed849aff0 Binary files /dev/null and b/blockchains/sui/assets/0x76cb819b01abed502bee8a702b4c2d547532c12f25001c9dea795a5e631c26f1::fud::FUD/logo.png differ diff --git a/blockchains/sui/assets/0x8993129d72e733985f7f1a00396cbd055bad6f817fee36576ce483c8bbb8b87b::sudeng::SUDENG/info.json b/blockchains/sui/assets/0x8993129d72e733985f7f1a00396cbd055bad6f817fee36576ce483c8bbb8b87b::sudeng::SUDENG/info.json new file mode 100644 index 0000000000000..930bbb14d9951 --- /dev/null +++ b/blockchains/sui/assets/0x8993129d72e733985f7f1a00396cbd055bad6f817fee36576ce483c8bbb8b87b::sudeng::SUDENG/info.json @@ -0,0 +1,32 @@ +{ + "name": "sudeng", + "symbol": "HIPPO", + "type": "SUI", + "decimals": 9, + "description": "No cats, no dogs Only hippo!", + "website": "https://www.hippocto.meme/", + "explorer": "https://suiscan.xyz/mainnet/coin/0x8993129d72e733985f7f1a00396cbd055bad6f817fee36576ce483c8bbb8b87b::sudeng::SUDENG/holders", + "status": "active", + "id": "0x8993129d72e733985f7f1a00396cbd055bad6f817fee36576ce483c8bbb8b87b::sudeng::SUDENG", + "links": [ + { + "name": "x", + "url": "https://x.com/hippo_cto" + }, + { + "name": "telegram", + "url": "https://t.me/HIPPO_SUI" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sudeng/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/sudeng" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/sui/assets/0x8993129d72e733985f7f1a00396cbd055bad6f817fee36576ce483c8bbb8b87b::sudeng::SUDENG/logo.png b/blockchains/sui/assets/0x8993129d72e733985f7f1a00396cbd055bad6f817fee36576ce483c8bbb8b87b::sudeng::SUDENG/logo.png new file mode 100644 index 0000000000000..6612f805fb48b Binary files /dev/null and b/blockchains/sui/assets/0x8993129d72e733985f7f1a00396cbd055bad6f817fee36576ce483c8bbb8b87b::sudeng::SUDENG/logo.png differ diff --git a/blockchains/sui/assets/0xa99b8952d4f7d947ea77fe0ecdcc9e5fc0bcab2841d6e2a5aa00c3044e5544b5::navx::NAVX/info.json b/blockchains/sui/assets/0xa99b8952d4f7d947ea77fe0ecdcc9e5fc0bcab2841d6e2a5aa00c3044e5544b5::navx::NAVX/info.json new file mode 100644 index 0000000000000..b1593229229a6 --- /dev/null +++ b/blockchains/sui/assets/0xa99b8952d4f7d947ea77fe0ecdcc9e5fc0bcab2841d6e2a5aa00c3044e5544b5::navx::NAVX/info.json @@ -0,0 +1,21 @@ +{ + "name": "NAVX", + "type": "SUI", + "symbol": "NAVX", + "decimals": 9, + "website": "https://naviprotocol.io/", + "description": "NAVI Protocol is modular Defi infra that offers Leading Lending + LSDeFi on #Sui.", + "explorer": "https://suiscan.xyz/mainnet/coin/0xa99b8952d4f7d947ea77fe0ecdcc9e5fc0bcab2841d6e2a5aa00c3044e5544b5::navx::NAVX", + "status": "active", + "id": "0xa99b8952d4f7d947ea77fe0ecdcc9e5fc0bcab2841d6e2a5aa00c3044e5544b5::navx::NAVX", + "links": [ + { + "name": "x", + "url": "https://x.com/navi_protocol" + }, + { + "name": "telegram", + "url": "https://t.me/navi_protocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/sui/assets/0xa99b8952d4f7d947ea77fe0ecdcc9e5fc0bcab2841d6e2a5aa00c3044e5544b5::navx::NAVX/logo.png b/blockchains/sui/assets/0xa99b8952d4f7d947ea77fe0ecdcc9e5fc0bcab2841d6e2a5aa00c3044e5544b5::navx::NAVX/logo.png new file mode 100644 index 0000000000000..1cd5be807c9de Binary files /dev/null and b/blockchains/sui/assets/0xa99b8952d4f7d947ea77fe0ecdcc9e5fc0bcab2841d6e2a5aa00c3044e5544b5::navx::NAVX/logo.png differ diff --git a/blockchains/sui/assets/0xaf9e228fd0292e2a27b4859bc57a2f3a9faedb9341b6307c84fef163e44790cc::uni::UNI/info.json b/blockchains/sui/assets/0xaf9e228fd0292e2a27b4859bc57a2f3a9faedb9341b6307c84fef163e44790cc::uni::UNI/info.json new file mode 100644 index 0000000000000..0d11e1c491092 --- /dev/null +++ b/blockchains/sui/assets/0xaf9e228fd0292e2a27b4859bc57a2f3a9faedb9341b6307c84fef163e44790cc::uni::UNI/info.json @@ -0,0 +1,21 @@ +{ + "name": "Uni", + "type": "SUI", + "symbol": "UNI", + "decimals": 9, + "website": "https://unicoinsui.com/", + "description": "the dog of sui co-founder, evan cheng", + "explorer": "https://suiscan.xyz/mainnet/coin/0xaf9e228fd0292e2a27b4859bc57a2f3a9faedb9341b6307c84fef163e44790cc::uni::UNI", + "status": "active", + "id": "0xaf9e228fd0292e2a27b4859bc57a2f3a9faedb9341b6307c84fef163e44790cc::uni::UNI", + "links": [ + { + "name": "x", + "url": "https://x.com/UniSuiCoin" + }, + { + "name": "telegram", + "url": "https://t.me/unisuicoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/sui/assets/0xaf9e228fd0292e2a27b4859bc57a2f3a9faedb9341b6307c84fef163e44790cc::uni::UNI/logo.png b/blockchains/sui/assets/0xaf9e228fd0292e2a27b4859bc57a2f3a9faedb9341b6307c84fef163e44790cc::uni::UNI/logo.png new file mode 100644 index 0000000000000..dab585d0b1c5d Binary files /dev/null and b/blockchains/sui/assets/0xaf9e228fd0292e2a27b4859bc57a2f3a9faedb9341b6307c84fef163e44790cc::uni::UNI/logo.png differ diff --git a/blockchains/sui/assets/0xb231fcda8bbddb31f2ef02e6161444aec64a514e2c89279584ac9806ce9cf037::coin::COIN/info.json b/blockchains/sui/assets/0xb231fcda8bbddb31f2ef02e6161444aec64a514e2c89279584ac9806ce9cf037::coin::COIN/info.json index e3bad598f0ab0..34261b0bf39cd 100644 --- a/blockchains/sui/assets/0xb231fcda8bbddb31f2ef02e6161444aec64a514e2c89279584ac9806ce9cf037::coin::COIN/info.json +++ b/blockchains/sui/assets/0xb231fcda8bbddb31f2ef02e6161444aec64a514e2c89279584ac9806ce9cf037::coin::COIN/info.json @@ -1,37 +1,21 @@ { - "name": "USD Coin", - "symbol": "USDC", + "name": "USD Coin (Portal from Solana)", + "symbol": "USDCsol", "type": "SUI", "decimals": 6, - "description": "USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.", - "website": "https://www.centre.io", + "description": "Cross Chain Portal Bridged Token", + "website": "https://portalbridge.com/?targetChain=sui", "explorer": "https://explorer.sui.io/address/0xb231fcda8bbddb31f2ef02e6161444aec64a514e2c89279584ac9806ce9cf037::coin::COIN", - "research": "https://research.binance.com/en/projects/usd-coin", "status": "active", "id": "0xb231fcda8bbddb31f2ef02e6161444aec64a514e2c89279584ac9806ce9cf037::coin::COIN", "links": [ { - "name": "github", - "url": "https://github.com/centrehq" - }, - { - "name": "whitepaper", - "url": "https://centre.io/pdfs/centre-whitepaper.pdf" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/usd-coin/" - }, - { - "name": "coingecko", - "url": "https://coingecko.com/en/coins/usd-coin/" - }, - { - "name": "medium", - "url": "https://medium.com/centre-blog" + "name": "docs", + "url": "https://portalbridge.com/docs/faqs/liquid-markets/#target-chain-sui" } ], "tags": [ - "stablecoin" + "stablecoin", + "wrapped" ] } \ No newline at end of file diff --git a/blockchains/sui/assets/0xc060006111016b8a020ad5b33834984a437aaa7d3c74c18e09a95d48aceab08c::coin::COIN/info.json b/blockchains/sui/assets/0xc060006111016b8a020ad5b33834984a437aaa7d3c74c18e09a95d48aceab08c::coin::COIN/info.json index 7a8183cc44c09..3e9560aa3f6dd 100644 --- a/blockchains/sui/assets/0xc060006111016b8a020ad5b33834984a437aaa7d3c74c18e09a95d48aceab08c::coin::COIN/info.json +++ b/blockchains/sui/assets/0xc060006111016b8a020ad5b33834984a437aaa7d3c74c18e09a95d48aceab08c::coin::COIN/info.json @@ -1,24 +1,21 @@ { - "name": "Tether USD", - "symbol": "USDT", + "name": "Tether USD (Portal from Ethereum)", + "symbol": "USDTet", "type": "SUI", "decimals": 6, - "description": "Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.", - "website": "https://tether.to", + "description": "Cross Chain Portal Bridged Token", + "website": "https://portalbridge.com/?targetChain=sui", "explorer": "https://explorer.sui.io/address/0xc060006111016b8a020ad5b33834984a437aaa7d3c74c18e09a95d48aceab08c::coin::COIN", "status": "active", "id": "0xc060006111016b8a020ad5b33834984a437aaa7d3c74c18e09a95d48aceab08c::coin::COIN", "links": [ { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/tether/" - }, - { - "name": "coingecko", - "url": "https://coingecko.com/en/coins/tether/" + "name": "docs", + "url": "https://portalbridge.com/docs/faqs/liquid-markets/#target-chain-sui" } ], "tags": [ - "stablecoin" + "stablecoin", + "wrapped" ] } \ No newline at end of file diff --git a/blockchains/sui/assets/0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC/info.json b/blockchains/sui/assets/0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC/info.json new file mode 100644 index 0000000000000..20ad5a1d67b49 --- /dev/null +++ b/blockchains/sui/assets/0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC/info.json @@ -0,0 +1,21 @@ +{ + "name": "USDC", + "symbol": "USDC", + "type": "SUI", + "decimals": 6, + "description": "USDC is a US dollar-backed stablecoin issued by Circle. USDC is designed to provide a faster, safer, and more efficient way to send, spend, and exchange money around the world.", + "website": "https://www.circle.com/en/multi-chain-usdc", + "explorer": "https://explorer.sui.io/address/0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC", + "status": "active", + "id": "0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC", + "links": [ + { + "name": "x", + "url": "https://x.com/circle" + } + ], + "tags": [ + "stablecoin", + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/sui/assets/0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC/logo.png b/blockchains/sui/assets/0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC/logo.png new file mode 100644 index 0000000000000..8047edf737f31 Binary files /dev/null and b/blockchains/sui/assets/0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC/logo.png differ diff --git a/blockchains/sui/assets/0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP/info.json b/blockchains/sui/assets/0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP/info.json new file mode 100644 index 0000000000000..8fec5e4b6b70e --- /dev/null +++ b/blockchains/sui/assets/0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP/info.json @@ -0,0 +1,21 @@ +{ + "name": "DeepBook", + "type": "SUI", + "symbol": "DEEP", + "decimals": 6, + "website": "https://deepbook.tech/", + "description": "DeepBook is a decentralized central limit order book (CLOB) built on Sui. DeepBook leverages Sui's parallel execution and low transaction fees to bring a highly performant, low-latency exchange on chain.", + "explorer": "https://suiscan.xyz/mainnet/coin/0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP", + "status": "active", + "id": "0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP", + "links": [ + { + "name": "x", + "url": "https://x.com/DeepBookonSui" + }, + { + "name": "discord", + "url": "https://discord.com/invite/deepbook" + } + ] +} \ No newline at end of file diff --git a/blockchains/sui/assets/0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP/logo.png b/blockchains/sui/assets/0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP/logo.png new file mode 100644 index 0000000000000..0878c82575de8 Binary files /dev/null and b/blockchains/sui/assets/0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP/logo.png differ diff --git a/blockchains/sui/assets/0xebbf537bc3686be32fe22b498b42715641bbb209267be72236a352e0444cc5df::sui_pepe::SUI_PEPE/info.json b/blockchains/sui/assets/0xebbf537bc3686be32fe22b498b42715641bbb209267be72236a352e0444cc5df::sui_pepe::SUI_PEPE/info.json index 8440ed6311961..f0c87d8918e6e 100644 --- a/blockchains/sui/assets/0xebbf537bc3686be32fe22b498b42715641bbb209267be72236a352e0444cc5df::sui_pepe::SUI_PEPE/info.json +++ b/blockchains/sui/assets/0xebbf537bc3686be32fe22b498b42715641bbb209267be72236a352e0444cc5df::sui_pepe::SUI_PEPE/info.json @@ -10,8 +10,8 @@ "id": "0xebbf537bc3686be32fe22b498b42715641bbb209267be72236a352e0444cc5df::sui_pepe::SUI_PEPE", "links": [ { - "name": "twitter", - "url": "https://twitter.com/pepecoineth" + "name": "x", + "url": "https://x.com/pepecoineth" }, { "name": "telegram", diff --git a/blockchains/sui/assets/0xfa7ac3951fdca92c5200d468d31a365eb03b2be9936fde615e69f0c1274ad3a0::BLUB::BLUB/info.json b/blockchains/sui/assets/0xfa7ac3951fdca92c5200d468d31a365eb03b2be9936fde615e69f0c1274ad3a0::BLUB::BLUB/info.json new file mode 100644 index 0000000000000..1e4c2b9ec3ee0 --- /dev/null +++ b/blockchains/sui/assets/0xfa7ac3951fdca92c5200d468d31a365eb03b2be9936fde615e69f0c1274ad3a0::BLUB::BLUB/info.json @@ -0,0 +1,17 @@ +{ + "name": "BLUB", + "symbol": "BLUB", + "type": "SUI", + "decimals": 2, + "description": "BLUB: The Meme Mascot of the Sui Network", + "website": "https://www.blubsui.com/", + "explorer": "https://suiscan.xyz/mainnet/coin/0xfa7ac3951fdca92c5200d468d31a365eb03b2be9936fde615e69f0c1274ad3a0::BLUB::BLUB", + "status": "active", + "id": "0xfa7ac3951fdca92c5200d468d31a365eb03b2be9936fde615e69f0c1274ad3a0::BLUB::BLUB", + "links": [ + { + "name": "x", + "url": "https://x.com/blubsui" + } + ] +} \ No newline at end of file diff --git a/blockchains/sui/assets/0xfa7ac3951fdca92c5200d468d31a365eb03b2be9936fde615e69f0c1274ad3a0::BLUB::BLUB/logo.png b/blockchains/sui/assets/0xfa7ac3951fdca92c5200d468d31a365eb03b2be9936fde615e69f0c1274ad3a0::BLUB::BLUB/logo.png new file mode 100644 index 0000000000000..0ba92b7bcfa56 Binary files /dev/null and b/blockchains/sui/assets/0xfa7ac3951fdca92c5200d468d31a365eb03b2be9936fde615e69f0c1274ad3a0::BLUB::BLUB/logo.png differ diff --git a/blockchains/sui/info/info.json b/blockchains/sui/info/info.json index 10487ed2dba65..09e2264e36696 100644 --- a/blockchains/sui/info/info.json +++ b/blockchains/sui/info/info.json @@ -8,12 +8,13 @@ "decimals": 9, "status": "active", "tags": [ - "defi" + "defi", + "staking-native" ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/SuiNetwork" + "name": "x", + "url": "https://x.com/SuiNetwork" }, { "name": "github", @@ -28,4 +29,4 @@ "url": "https://coinmarketcap.com/currencies/sui/" } ] -} +} \ No newline at end of file diff --git a/blockchains/sui/info/logo.png b/blockchains/sui/info/logo.png index 2b876f1c5d4d4..3808347a7390e 100644 Binary files a/blockchains/sui/info/logo.png and b/blockchains/sui/info/logo.png differ diff --git a/blockchains/sui/info/square_logo.png b/blockchains/sui/info/square_logo.png new file mode 100644 index 0000000000000..82fe51044a07a Binary files /dev/null and b/blockchains/sui/info/square_logo.png differ diff --git a/blockchains/sui/validators/assets/0x55d2bd7e02c0863914c3af925188c6947e9209b39eb304c630525d69294c3be0/logo.png b/blockchains/sui/validators/assets/0x55d2bd7e02c0863914c3af925188c6947e9209b39eb304c630525d69294c3be0/logo.png new file mode 100644 index 0000000000000..c53de0659fd41 Binary files /dev/null and b/blockchains/sui/validators/assets/0x55d2bd7e02c0863914c3af925188c6947e9209b39eb304c630525d69294c3be0/logo.png differ diff --git a/blockchains/sui/validators/assets/0x885c0345bbf4441f39b98caf2295640a4dc3696ee9e8bc68f2101ca5e6f9bbf1/logo.png b/blockchains/sui/validators/assets/0x885c0345bbf4441f39b98caf2295640a4dc3696ee9e8bc68f2101ca5e6f9bbf1/logo.png new file mode 100644 index 0000000000000..1020527149890 Binary files /dev/null and b/blockchains/sui/validators/assets/0x885c0345bbf4441f39b98caf2295640a4dc3696ee9e8bc68f2101ca5e6f9bbf1/logo.png differ diff --git a/blockchains/sui/validators/assets/0x9b8b11c9b2336d35f2db8d5318ff32de51b85857f0e53a5c31242cf3797f4be4/logo.png b/blockchains/sui/validators/assets/0x9b8b11c9b2336d35f2db8d5318ff32de51b85857f0e53a5c31242cf3797f4be4/logo.png new file mode 100644 index 0000000000000..eaf66cb5cbb1f Binary files /dev/null and b/blockchains/sui/validators/assets/0x9b8b11c9b2336d35f2db8d5318ff32de51b85857f0e53a5c31242cf3797f4be4/logo.png differ diff --git a/blockchains/sui/validators/assets/0x9c7376a3f903cbe1f467a4edbefb54bb5a2f10886496c591ca955c22f0ae10c9/logo.png b/blockchains/sui/validators/assets/0x9c7376a3f903cbe1f467a4edbefb54bb5a2f10886496c591ca955c22f0ae10c9/logo.png new file mode 100644 index 0000000000000..0f6305d87f6e5 Binary files /dev/null and b/blockchains/sui/validators/assets/0x9c7376a3f903cbe1f467a4edbefb54bb5a2f10886496c591ca955c22f0ae10c9/logo.png differ diff --git a/blockchains/sui/validators/list.json b/blockchains/sui/validators/list.json index b3f3e94903df5..4f2520484d62d 100644 --- a/blockchains/sui/validators/list.json +++ b/blockchains/sui/validators/list.json @@ -58,5 +58,29 @@ "name": "Stakingcabin", "description": "We offer enterprise-level, highly secure infrastructure services for public blockchain protocols.", "website": "https://stakingcabin.com/" + }, + { + "id": "0x885c0345bbf4441f39b98caf2295640a4dc3696ee9e8bc68f2101ca5e6f9bbf1", + "name": "Allnodes.com ⚡️", + "description": "Reliable non-custodial Validator run by the industry leader - Allnodes.", + "website": "https://www.allnodes.com/sui/staking" + }, + { + "id": "0x9b8b11c9b2336d35f2db8d5318ff32de51b85857f0e53a5c31242cf3797f4be4", + "name": "Stakin", + "description": "SUI staking services by an experienced enterprise validator trusted by institutions and the communities", + "website": "https://stakin.com" + }, + { + "id": "0x9c7376a3f903cbe1f467a4edbefb54bb5a2f10886496c591ca955c22f0ae10c9", + "name": "Stakely.io", + "description": "🔥 Professional validator highly experienced in PoS 🔥 Slashing protection | Learn with our staking guides, video tutorials and FAQs | Part of the commission of our nodes will go to our Multicoin Faucet funds and other tools 🌱 Carbon Neutral 🌱", + "website": "https://stakely.io" + }, + { + "id": "0x55d2bd7e02c0863914c3af925188c6947e9209b39eb304c630525d69294c3be0", + "name": "Coinage x DAIC", + "description": "The official validator node from Coinage (Coinage.Media) and DAIC (https://daic.capital/telegram)", + "website": "https://daic.capital/" } -] \ No newline at end of file +] diff --git a/blockchains/syscoin/info/info.json b/blockchains/syscoin/info/info.json new file mode 100644 index 0000000000000..01caf2efbead8 --- /dev/null +++ b/blockchains/syscoin/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "Syscoin", + "website": "http://syscoin.org/", + "description": "Syscoin is designed to support the future of smart contracts within Metaverse, IoT, Smart Cities, and future interplanetary economies.", + "explorer": "https://explorer.syscoin.org", + "symbol": "SYS", + "type": "coin", + "decimals": 8, + "status": "active", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/syscoin/" + }, + { + "name": "x", + "url": "https://x.com/syscoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/syscoin/info/logo.png b/blockchains/syscoin/info/logo.png new file mode 100644 index 0000000000000..c10e6dbcfb9b1 Binary files /dev/null and b/blockchains/syscoin/info/logo.png differ diff --git a/blockchains/syscoin/info/square_logo.png b/blockchains/syscoin/info/square_logo.png new file mode 100644 index 0000000000000..4cb9b8172fd0e Binary files /dev/null and b/blockchains/syscoin/info/square_logo.png differ diff --git a/blockchains/teritori/info/info.json b/blockchains/teritori/info/info.json index 7d640de40ae76..cacc8490d6edb 100644 --- a/blockchains/teritori/info/info.json +++ b/blockchains/teritori/info/info.json @@ -7,9 +7,9 @@ "description": "The multi-chain SuperdApp for communities.", "explorer": "https://www.mintscan.io/teritori", "status": "active", - "rpc_url": "https://rpc-teritori.whispernode.com/", + "rpc_url": "https://teritori-rpc.polkachu.com", "denom": "utori", - "lcd_url": "https://rest-teritori.carbonzero.zone/", + "lcd_url": "https://teritori-api.polkachu.com", "hrp": "tori", "fee_rate": "0.25", "links": [ @@ -22,8 +22,8 @@ "url": "https://coinmarketcap.com/ru/currencies/teritori/" }, { - "name": "twitter", - "url": "https://twitter.com/TeritoriNetwork" + "name": "x", + "url": "https://x.com/TeritoriNetwork" } ] -} +} \ No newline at end of file diff --git a/blockchains/teritori/info/square_logo.png b/blockchains/teritori/info/square_logo.png new file mode 100644 index 0000000000000..793f7b4a3944e Binary files /dev/null and b/blockchains/teritori/info/square_logo.png differ diff --git a/blockchains/teritori/validators/assets/torivaloper140l6y2gp3gxvay6qtn70re7z2s0gn57ztl8j0u/logo.png b/blockchains/teritori/validators/assets/torivaloper140l6y2gp3gxvay6qtn70re7z2s0gn57ztl8j0u/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/teritori/validators/assets/torivaloper140l6y2gp3gxvay6qtn70re7z2s0gn57ztl8j0u/logo.png differ diff --git a/blockchains/teritori/validators/assets/torivaloper1g3pncd7m5ak8yeh9n42as57pvrcqqv4rjvh87h/logo.png b/blockchains/teritori/validators/assets/torivaloper1g3pncd7m5ak8yeh9n42as57pvrcqqv4rjvh87h/logo.png new file mode 100644 index 0000000000000..c2cb86a42efe3 Binary files /dev/null and b/blockchains/teritori/validators/assets/torivaloper1g3pncd7m5ak8yeh9n42as57pvrcqqv4rjvh87h/logo.png differ diff --git a/blockchains/teritori/validators/assets/torivaloper1xu736l4vt6l2pg9k2yk66fq7zq6y4aj5xmd6vq/logo.png b/blockchains/teritori/validators/assets/torivaloper1xu736l4vt6l2pg9k2yk66fq7zq6y4aj5xmd6vq/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/teritori/validators/assets/torivaloper1xu736l4vt6l2pg9k2yk66fq7zq6y4aj5xmd6vq/logo.png differ diff --git a/blockchains/teritori/validators/list.json b/blockchains/teritori/validators/list.json new file mode 100644 index 0000000000000..988c66c49d1cb --- /dev/null +++ b/blockchains/teritori/validators/list.json @@ -0,0 +1,26 @@ +[ + { + "id": "torivaloper1xu736l4vt6l2pg9k2yk66fq7zq6y4aj5xmd6vq", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "torivaloper1g3pncd7m5ak8yeh9n42as57pvrcqqv4rjvh87h", + "name": "AutoStake 🛡️ Slash Protected", + "description": "BareMetal - Decentralised - Reliable infrastructure run by the industry leader - AutoStake - Connect with us at: https://linktr.ee/autostake", + "website": "https://autostake.com" + }, + { + "id": "torivaloper140l6y2gp3gxvay6qtn70re7z2s0gn57ztl8j0u", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + }, + { + "id": "torivaloper1f375g8xmfn268pxexw7wct2shplhs3pzdm22ym", + "name": "Allnodes", + "description": "Reliable non-custodial Validator run by the industry leader - Allnodes. Monitor your rewards through the Allnodes portfolio page.", + "website": "https://www.allnodes.com/akt/staking" + } +] diff --git a/blockchains/terra/assets/terra1ce06wkrdm4vl6t0hvc0g86rsy27pu8yadg3dva/info.json b/blockchains/terra/assets/terra1ce06wkrdm4vl6t0hvc0g86rsy27pu8yadg3dva/info.json index ea39d228edb94..5e8f076a923e4 100644 --- a/blockchains/terra/assets/terra1ce06wkrdm4vl6t0hvc0g86rsy27pu8yadg3dva/info.json +++ b/blockchains/terra/assets/terra1ce06wkrdm4vl6t0hvc0g86rsy27pu8yadg3dva/info.json @@ -1,5 +1,5 @@ { - "name": "Tether USD (Portal from Ethereum)", + "name": "Tether (Portal)", "type": "CW20", "symbol": "USDTet", "decimals": 6, diff --git a/blockchains/terra/assets/terra1pvel56a2hs93yd429pzv9zp5aptcjg5ulhkz7w/info.json b/blockchains/terra/assets/terra1pvel56a2hs93yd429pzv9zp5aptcjg5ulhkz7w/info.json index f8c9f37f841ee..8ec181f451f55 100644 --- a/blockchains/terra/assets/terra1pvel56a2hs93yd429pzv9zp5aptcjg5ulhkz7w/info.json +++ b/blockchains/terra/assets/terra1pvel56a2hs93yd429pzv9zp5aptcjg5ulhkz7w/info.json @@ -1,5 +1,5 @@ { - "name": "USD Coin (Portal from Avalanche)", + "name": "USDC (Portal)", "type": "CW20", "symbol": "USDCav", "decimals": 6, diff --git a/blockchains/terra/assets/terra1zmclyfepfmqvfqflu8r3lv6f75trmg05z7xq95/info.json b/blockchains/terra/assets/terra1zmclyfepfmqvfqflu8r3lv6f75trmg05z7xq95/info.json index ea12733922a6d..4708a1df9ea03 100644 --- a/blockchains/terra/assets/terra1zmclyfepfmqvfqflu8r3lv6f75trmg05z7xq95/info.json +++ b/blockchains/terra/assets/terra1zmclyfepfmqvfqflu8r3lv6f75trmg05z7xq95/info.json @@ -1,5 +1,5 @@ { - "name": "DAI (Portal)", + "name": "Dai (Portal)", "type": "CW20", "symbol": "DAI", "decimals": 8, diff --git a/blockchains/terra/assets/ukrw/info.json b/blockchains/terra/assets/ukrw/info.json index cbfa3123bb8d1..cd27a9a529386 100644 --- a/blockchains/terra/assets/ukrw/info.json +++ b/blockchains/terra/assets/ukrw/info.json @@ -10,8 +10,8 @@ "id": "ukrw", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TerraMoney" + "name": "x", + "url": "https://x.com/TerraMoney" }, { "name": "telegram", diff --git a/blockchains/terra/assets/umnt/info.json b/blockchains/terra/assets/umnt/info.json index 099aa2fe33f80..c98e73823eb33 100644 --- a/blockchains/terra/assets/umnt/info.json +++ b/blockchains/terra/assets/umnt/info.json @@ -10,8 +10,8 @@ "id": "umnt", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TerraMoney" + "name": "x", + "url": "https://x.com/TerraMoney" }, { "name": "telegram", diff --git a/blockchains/terra/assets/usdr/info.json b/blockchains/terra/assets/usdr/info.json index 0083d13864c8a..78dd9566c7301 100644 --- a/blockchains/terra/assets/usdr/info.json +++ b/blockchains/terra/assets/usdr/info.json @@ -10,8 +10,8 @@ "id": "usdr", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TerraMoney" + "name": "x", + "url": "https://x.com/TerraMoney" }, { "name": "telegram", diff --git a/blockchains/terra/assets/uusd/info.json b/blockchains/terra/assets/uusd/info.json index 41fb32e60360e..180c91aad76a8 100644 --- a/blockchains/terra/assets/uusd/info.json +++ b/blockchains/terra/assets/uusd/info.json @@ -10,8 +10,8 @@ "id": "uusd", "links": [ { - "name": "twitter", - "url": "https://twitter.com/TerraMoney" + "name": "x", + "url": "https://x.com/TerraMoney" }, { "name": "telegram", diff --git a/blockchains/terra/info/info.json b/blockchains/terra/info/info.json index c83e0916a4464..756e148cdcfe0 100644 --- a/blockchains/terra/info/info.json +++ b/blockchains/terra/info/info.json @@ -17,12 +17,12 @@ "url": "https://github.com/terra-project" }, { - "name": "twitter", - "url": "https://twitter.com/terra_money" + "name": "x", + "url": "https://x.com/terra_money" }, { "name": "whitepaper", "url": "https://docs.terra.money" } ] -} +} \ No newline at end of file diff --git a/blockchains/terra/info/square_logo.png b/blockchains/terra/info/square_logo.png new file mode 100644 index 0000000000000..06c16e026e5d5 Binary files /dev/null and b/blockchains/terra/info/square_logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper12r8929na0amxfj406zw7vk8jmd03fmzcj9r2gg/logo.png b/blockchains/terra/validators/assets/terravaloper12r8929na0amxfj406zw7vk8jmd03fmzcj9r2gg/logo.png index 434f53ccac24a..c53de0659fd41 100644 Binary files a/blockchains/terra/validators/assets/terravaloper12r8929na0amxfj406zw7vk8jmd03fmzcj9r2gg/logo.png and b/blockchains/terra/validators/assets/terravaloper12r8929na0amxfj406zw7vk8jmd03fmzcj9r2gg/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper13avdm9rqxpftv3vrkaqaakakgh30909x8c07v3/logo.png b/blockchains/terra/validators/assets/terravaloper13avdm9rqxpftv3vrkaqaakakgh30909x8c07v3/logo.png new file mode 100644 index 0000000000000..8247888dd198d Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper13avdm9rqxpftv3vrkaqaakakgh30909x8c07v3/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper15ahd0dg9qwkg5tjmkn7fm6sdrpwa47m50l4zrg/logo.png b/blockchains/terra/validators/assets/terravaloper15ahd0dg9qwkg5tjmkn7fm6sdrpwa47m50l4zrg/logo.png new file mode 100644 index 0000000000000..af4630e029a19 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper15ahd0dg9qwkg5tjmkn7fm6sdrpwa47m50l4zrg/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper1aa6f2qeu0hrqpsxe4rggz0k7e43jfce43arz82/logo.png b/blockchains/terra/validators/assets/terravaloper1aa6f2qeu0hrqpsxe4rggz0k7e43jfce43arz82/logo.png new file mode 100644 index 0000000000000..472936ed16f00 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper1aa6f2qeu0hrqpsxe4rggz0k7e43jfce43arz82/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper1f2t96sz9hnwsqnneux6v28xfgn07pkxjduvwjz/logo.png b/blockchains/terra/validators/assets/terravaloper1f2t96sz9hnwsqnneux6v28xfgn07pkxjduvwjz/logo.png new file mode 100644 index 0000000000000..c2cb86a42efe3 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper1f2t96sz9hnwsqnneux6v28xfgn07pkxjduvwjz/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper1gh7wpfpsjrqnash5uc84z4njt95y9g5nh3uqzx/logo.png b/blockchains/terra/validators/assets/terravaloper1gh7wpfpsjrqnash5uc84z4njt95y9g5nh3uqzx/logo.png deleted file mode 100644 index 3c29ee005d51c..0000000000000 Binary files a/blockchains/terra/validators/assets/terravaloper1gh7wpfpsjrqnash5uc84z4njt95y9g5nh3uqzx/logo.png and /dev/null differ diff --git a/blockchains/terra/validators/assets/terravaloper1s2xpff7mj6jpxfyhr7pe25vt8puvgj4wy0tzjx/logo.png b/blockchains/terra/validators/assets/terravaloper1s2xpff7mj6jpxfyhr7pe25vt8puvgj4wy0tzjx/logo.png new file mode 100644 index 0000000000000..bc06b982599a4 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper1s2xpff7mj6jpxfyhr7pe25vt8puvgj4wy0tzjx/logo.png differ diff --git a/blockchains/terra/validators/list.json b/blockchains/terra/validators/list.json index 9209e3c839a5e..0134485d7481c 100644 --- a/blockchains/terra/validators/list.json +++ b/blockchains/terra/validators/list.json @@ -14,7 +14,7 @@ { "id": "terravaloper1nwrksgv2vuadma8ygs8rhwffu2ygk4j24w2mku", "name": "Stakin", - "description": "Your Trusted Crypto Rewards", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", "website": "https://stakin.com/" }, { @@ -23,12 +23,6 @@ "description": "Validators of today, Auditors of tomorrow", "website": "https://audit.one/" }, - { - "id": "terravaloper1gh7wpfpsjrqnash5uc84z4njt95y9g5nh3uqzx", - "name": "Genesis Lab", - "description": "Genesis Lab is a validation nodes operator in PoS networks and blockchain-focused software development company", - "website": "https://genesislab.net" - }, { "id": "terravaloper1259cmu5zyklsdkmgstxhwqpe0utfe5hhyty0at", "name": "Orion.Money", @@ -65,6 +59,12 @@ "description": "Creator of Terra Analytics @ terra.smartstake.io - Supply, airdrop apr/timer, tvl, ecosystem, projects, & many other tools. Creator of validator analytics @ tpa.smartstake.io. Automated monitoring & alerts to ensure high uptime. Commission fixed @ 5%. Support @ t.me/SmartStake", "website": "https://smartstake.io/" }, + { + "id": "terravaloper1f2t96sz9hnwsqnneux6v28xfgn07pkxjduvwjz", + "name": "AutoStake 🛡️ Slash Protected", + "description": "BareMetal - Decentralised - Reliable infrastructure run by the industry leader - AutoStake - Connect with us at: https://linktr.ee/autostake", + "website": "https://autostake.com" + }, { "id": "terravaloper108lmrztvc3pc3w774shgvpry4d3lf79k2ummna", "name": "Stakely.io", @@ -73,7 +73,7 @@ }, { "id": "terravaloper120ppepaj2lh5vreadx42wnjjznh55vvktp78wk", - "name": "Allnodes.com ⚡️ 0% fee", + "name": "Allnodes.com ⚡️", "description": "Reliable non-custodial Validator run by the industry leader - Allnodes. Monitor your rewards through the Allnodes portfolio page.", "website": "https://www.allnodes.com/lunc/staking" }, @@ -87,19 +87,19 @@ "id": "terravaloper1qrgwphlf9c64m5ys6pzsvy055ud03e4kr7sq8u", "name": "lunc_nymph", "description": "Safeguard #lunc with world-class infrastructure!", - "website": "https://twitter.com/lunc_nymph" + "website": "https://x.com/lunc_nymph" }, { "id": "terravaloper14xjkj5rv72fgqz3h78l883rw0njwhmzce45006", "name": "Classy's Sphere 🔮 | 0% Fees", "description": "Community Validator run by Classy Crypto. 100% OF Our Commission WILL BE BURNED! Fund developers & help revitalize the chain. Auto-compound your rewards through https://restake.app/terra for greater yield & Stay Classy.", - "website": "https://twitter.com/ClassyCrypto_" + "website": "https://x.com/ClassyCrypto_" }, { "id": "terravaloper12r8929na0amxfj406zw7vk8jmd03fmzcj9r2gg", - "name": "danku_zone w/ DAIC", - "description": "The official validator node from danku_r (YouTube, Twitter, Medium) run by DAIC (https://t.me/validator_danku_DAIC)", - "website": "https://daic.capital/danku_zone" + "name": "Coinage x DAIC", + "description": "The official validator node from Coinage (Coinage.Media) and DAIC (https://daic.capital/telegram)", + "website": "https://daic.capital/" }, { "id": "terravaloper1der0lqp4grpnmpuefhwlj72fzccqmhmwgjh6ys", @@ -118,5 +118,29 @@ "name": "JESUSisLORD", "description": "JESUSisLORD is an advanced non-custodial Luna Classic (LUNC) validator owned by Christopher Harris, a Bible believing Christian, powered by first-class staking provider Allnodes. Enjoy 99.9% server uptimes, maximum 5% commission, minimum 95% rewards, high security and updates.", "website": "https://tinyurl.com/ycknjwvr" + }, + { + "id": "terravaloper13avdm9rqxpftv3vrkaqaakakgh30909x8c07v3", + "name": "GalacticShift.io", + "description": "Terra Classic validator provided and maintained by GalacticShift.io / StrathCole", + "website": "https://galacticshift.io" + }, + { + "id": "terravaloper15ahd0dg9qwkg5tjmkn7fm6sdrpwa47m50l4zrg", + "name": "HappyCattyCrypto | Minimum Fees | Auto Compound | Auto USTC Airdrops", + "description": "I am a LUNC Revivalist who has brought to life the enchanting world of LUNCpenguinsNFT and spearheaded the visionary ProjectLUNCBurn initiative.", + "website": "https://hccfactory.com" + }, + { + "id": "terravaloper1aa6f2qeu0hrqpsxe4rggz0k7e43jfce43arz82", + "name": "Hexxagon - 100% Fund Infrastructure and Terra Classic Station", + "description": "Hexxagon provides infrastructure and Terra Classic Station wallet to the Terra Classic commmunity, 100% of our validator commissions goes to funding these services.", + "website": "https://hexxagon.io" + }, + { + "id": "terravaloper1s2xpff7mj6jpxfyhr7pe25vt8puvgj4wy0tzjx", + "name": "BInodes", + "description": "Information aggregation and data analysis platform", + "website": "https://www.binodes.com" } -] +] \ No newline at end of file diff --git a/blockchains/terrav2/info/info.json b/blockchains/terrav2/info/info.json index 1d64bfe250b90..edff5a262b24c 100644 --- a/blockchains/terrav2/info/info.json +++ b/blockchains/terrav2/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/terra-project" }, { - "name": "twitter", - "url": "https://twitter.com/terra_money" + "name": "x", + "url": "https://x.com/terra_money" }, { "name": "whitepaper", diff --git a/blockchains/terrav2/info/square_logo.png b/blockchains/terrav2/info/square_logo.png new file mode 100644 index 0000000000000..c34312338d9dd Binary files /dev/null and b/blockchains/terrav2/info/square_logo.png differ diff --git a/blockchains/terrav2/validators/assets/terravaloper120ppepaj2lh5vreadx42wnjjznh55vvktp78wk/logo.png b/blockchains/terrav2/validators/assets/terravaloper120ppepaj2lh5vreadx42wnjjznh55vvktp78wk/logo.png new file mode 100644 index 0000000000000..1020527149890 Binary files /dev/null and b/blockchains/terrav2/validators/assets/terravaloper120ppepaj2lh5vreadx42wnjjznh55vvktp78wk/logo.png differ diff --git a/blockchains/terrav2/validators/assets/terravaloper16vc0num5aaq4mqdh4vjhs02s3ypd0j8c7ujxpm/logo.png b/blockchains/terrav2/validators/assets/terravaloper16vc0num5aaq4mqdh4vjhs02s3ypd0j8c7ujxpm/logo.png new file mode 100644 index 0000000000000..0f6305d87f6e5 Binary files /dev/null and b/blockchains/terrav2/validators/assets/terravaloper16vc0num5aaq4mqdh4vjhs02s3ypd0j8c7ujxpm/logo.png differ diff --git a/blockchains/terrav2/validators/assets/terravaloper17kh8ngu3s74epwympaxrp4ukahm5rvtf5zc8ma/logo.png b/blockchains/terrav2/validators/assets/terravaloper17kh8ngu3s74epwympaxrp4ukahm5rvtf5zc8ma/logo.png new file mode 100644 index 0000000000000..c53de0659fd41 Binary files /dev/null and b/blockchains/terrav2/validators/assets/terravaloper17kh8ngu3s74epwympaxrp4ukahm5rvtf5zc8ma/logo.png differ diff --git a/blockchains/terrav2/validators/assets/terravaloper1mgpgp53tynj4djmckxdjhufa7q8lqqjuwnrlqm/logo.png b/blockchains/terrav2/validators/assets/terravaloper1mgpgp53tynj4djmckxdjhufa7q8lqqjuwnrlqm/logo.png new file mode 100644 index 0000000000000..4b09813738a9d Binary files /dev/null and b/blockchains/terrav2/validators/assets/terravaloper1mgpgp53tynj4djmckxdjhufa7q8lqqjuwnrlqm/logo.png differ diff --git a/blockchains/terrav2/validators/assets/terravaloper1tfy452kxfcsa2353nenltade9esj7ffrc38gwn/logo.png b/blockchains/terrav2/validators/assets/terravaloper1tfy452kxfcsa2353nenltade9esj7ffrc38gwn/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/terrav2/validators/assets/terravaloper1tfy452kxfcsa2353nenltade9esj7ffrc38gwn/logo.png differ diff --git a/blockchains/terrav2/validators/assets/terravaloper1vcd42qfvlvnjwaw7hvl6y32wrzqxvas653yus9/logo.png b/blockchains/terrav2/validators/assets/terravaloper1vcd42qfvlvnjwaw7hvl6y32wrzqxvas653yus9/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/terrav2/validators/assets/terravaloper1vcd42qfvlvnjwaw7hvl6y32wrzqxvas653yus9/logo.png differ diff --git a/blockchains/terrav2/validators/assets/terravaloper1yy5379nk24xffpq4egw7ue4ad3j7l79ma2enmz/logo.png b/blockchains/terrav2/validators/assets/terravaloper1yy5379nk24xffpq4egw7ue4ad3j7l79ma2enmz/logo.png new file mode 100644 index 0000000000000..c2cb86a42efe3 Binary files /dev/null and b/blockchains/terrav2/validators/assets/terravaloper1yy5379nk24xffpq4egw7ue4ad3j7l79ma2enmz/logo.png differ diff --git a/blockchains/terrav2/validators/list.json b/blockchains/terrav2/validators/list.json new file mode 100644 index 0000000000000..87ecfa16d9619 --- /dev/null +++ b/blockchains/terrav2/validators/list.json @@ -0,0 +1,44 @@ +[ + { + "id": "terravaloper1yy5379nk24xffpq4egw7ue4ad3j7l79ma2enmz", + "name": "AutoStake 🛡️ Slash Protected", + "description": "BareMetal - Decentralised - Reliable infrastructure run by the industry leader - AutoStake - Connect with us at: https://linktr.ee/autostake", + "website": "https://autostake.com" + }, + { + "id": "terravaloper1tfy452kxfcsa2353nenltade9esj7ffrc38gwn", + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" + }, + { + "id": "terravaloper1vcd42qfvlvnjwaw7hvl6y32wrzqxvas653yus9", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + }, + { + "id": "terravaloper1mgpgp53tynj4djmckxdjhufa7q8lqqjuwnrlqm", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com/" + }, + { + "id": "terravaloper16vc0num5aaq4mqdh4vjhs02s3ypd0j8c7ujxpm", + "name": "Stakely.io", + "description": "🔥 Professional validator highly experienced in PoS 🔥 Slashing protection | Learn with our staking guides, video tutorials and FAQs | Part of the commission of our nodes will go to our Multicoin Faucet funds and other tools 🌱 Carbon Neutral 🌱", + "website": "https://stakely.io" + }, + { + "id": "terravaloper17kh8ngu3s74epwympaxrp4ukahm5rvtf5zc8ma", + "name": "Coinage x DAIC", + "description": "The official validator node from Coinage (Coinage.Media) and DAIC (https://daic.capital/telegram)", + "website": "https://daic.capital/" + }, + { + "id": "terravaloper120ppepaj2lh5vreadx42wnjjznh55vvktp78wk", + "name": "Allnodes", + "description": "Reliable non-custodial Validator run by the industry leader - Allnodes. Monitor your rewards through the Allnodes portfolio page.", + "website": "https://www.allnodes.com/luna/staking" + } +] diff --git a/blockchains/tezos/assets/KT193D4vozYnhGJQVtw7CoxxqphqUEEwK6Vb/info.json b/blockchains/tezos/assets/KT193D4vozYnhGJQVtw7CoxxqphqUEEwK6Vb/info.json new file mode 100644 index 0000000000000..c41372aa677f8 --- /dev/null +++ b/blockchains/tezos/assets/KT193D4vozYnhGJQVtw7CoxxqphqUEEwK6Vb/info.json @@ -0,0 +1,25 @@ +{ + "name": "QuipuSwap", + "symbol": "QUIPU", + "type": "FA2", + "decimals": 6, + "description": "QuipuSwap Governance Token. QUIPU token is used in QuipuSwap AMM governance and as a means of payment for future services.", + "website": "https://quipuswap.com/swap", + "explorer": "https://tzstats.com/KT193D4vozYnhGJQVtw7CoxxqphqUEEwK6Vb", + "status": "active", + "id": "KT193D4vozYnhGJQVtw7CoxxqphqUEEwK6Vb", + "links": [ + { + "name": "telegram", + "url": "https://t.me/MadFishCommunity" + }, + { + "name": "x", + "url": "https://x.com/QuipuSwap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/quipuswap-governance-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/tezos/assets/KT193D4vozYnhGJQVtw7CoxxqphqUEEwK6Vb/logo.png b/blockchains/tezos/assets/KT193D4vozYnhGJQVtw7CoxxqphqUEEwK6Vb/logo.png new file mode 100644 index 0000000000000..f460a82ea7d16 Binary files /dev/null and b/blockchains/tezos/assets/KT193D4vozYnhGJQVtw7CoxxqphqUEEwK6Vb/logo.png differ diff --git a/blockchains/tezos/assets/KT19at7rQUvyjxnZ2fBv7D9zc8rkyG7gAoU8/info.json b/blockchains/tezos/assets/KT19at7rQUvyjxnZ2fBv7D9zc8rkyG7gAoU8/info.json new file mode 100644 index 0000000000000..66bb5abe2c584 --- /dev/null +++ b/blockchains/tezos/assets/KT19at7rQUvyjxnZ2fBv7D9zc8rkyG7gAoU8/info.json @@ -0,0 +1,29 @@ +{ + "name": "Ethereum", + "symbol": "ETHtez", + "type": "FA2", + "decimals": 18, + "description": "Ethereum is a decentralized open-source blockchain system that features its own cryptocurrency, Ether. ETH works as a platform for numerous other cryptocurrencies, as well as for the execution of decentralized smart contracts.", + "website": "https://ethereum.org/", + "explorer": "https://tzstats.com/KT19at7rQUvyjxnZ2fBv7D9zc8rkyG7gAoU8", + "status": "active", + "id": "KT19at7rQUvyjxnZ2fBv7D9zc8rkyG7gAoU8", + "links": [ + { + "name": "github", + "url": "https://github.com/ethereum/ethereum-org-website" + }, + { + "name": "x", + "url": "https://x.com/ethdotorg" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCNOfzGXD_C9YMYmnefmPH0g" + }, + { + "name": "discord", + "url": "https://discord.com/invite/CetY6Y4" + } + ] +} \ No newline at end of file diff --git a/blockchains/tezos/assets/KT19at7rQUvyjxnZ2fBv7D9zc8rkyG7gAoU8/logo.png b/blockchains/tezos/assets/KT19at7rQUvyjxnZ2fBv7D9zc8rkyG7gAoU8/logo.png new file mode 100644 index 0000000000000..b5fb248e88a76 Binary files /dev/null and b/blockchains/tezos/assets/KT19at7rQUvyjxnZ2fBv7D9zc8rkyG7gAoU8/logo.png differ diff --git a/blockchains/tezos/assets/KT1AFA2mwNUMNd4SsujE1YYp29vd8BZejyKW/info.json b/blockchains/tezos/assets/KT1AFA2mwNUMNd4SsujE1YYp29vd8BZejyKW/info.json new file mode 100644 index 0000000000000..e8d36f10a5b01 --- /dev/null +++ b/blockchains/tezos/assets/KT1AFA2mwNUMNd4SsujE1YYp29vd8BZejyKW/info.json @@ -0,0 +1,21 @@ +{ + "name": "Hic et nunc DAO", + "symbol": "HDAO", + "type": "FA2", + "decimals": 6, + "description": "QuipuSwap Governance Token. QUIPU token is used in QuipuSwap AMM governance and as a means of payment for future services.", + "website": "https://quipuswap.com/swap", + "explorer": "https://tzstats.com/KT1AFA2mwNUMNd4SsujE1YYp29vd8BZejyKW", + "status": "active", + "id": "KT1AFA2mwNUMNd4SsujE1YYp29vd8BZejyKW", + "links": [ + { + "name": "x", + "url": "https://x.com/hicetnunc2000" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hic-et-nunc-dao/" + } + ] +} \ No newline at end of file diff --git a/blockchains/tezos/assets/KT1AFA2mwNUMNd4SsujE1YYp29vd8BZejyKW/logo.png b/blockchains/tezos/assets/KT1AFA2mwNUMNd4SsujE1YYp29vd8BZejyKW/logo.png new file mode 100644 index 0000000000000..025371c336696 Binary files /dev/null and b/blockchains/tezos/assets/KT1AFA2mwNUMNd4SsujE1YYp29vd8BZejyKW/logo.png differ diff --git a/blockchains/tezos/assets/KT1LN4LPSqTMS7Sd2CJw4bbDGRkMv2t68Fy9/info.json b/blockchains/tezos/assets/KT1LN4LPSqTMS7Sd2CJw4bbDGRkMv2t68Fy9/info.json new file mode 100644 index 0000000000000..40d4d451ebcb5 --- /dev/null +++ b/blockchains/tezos/assets/KT1LN4LPSqTMS7Sd2CJw4bbDGRkMv2t68Fy9/info.json @@ -0,0 +1,21 @@ +{ + "name": "USDtez", + "symbol": "USDTZ", + "type": "FA2", + "decimals": 6, + "description": "USDtez is a USDC-pegged Tezos stablecoin issued by the Tezos Stable Technologies Ltd", + "website": "https://usdtz.com", + "explorer": "https://tzstats.com/KT1LN4LPSqTMS7Sd2CJw4bbDGRkMv2t68Fy9", + "status": "active", + "id": "KT1LN4LPSqTMS7Sd2CJw4bbDGRkMv2t68Fy9", + "links": [ + { + "name": "x", + "url": "https://x.com/usdtz" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usdtez/" + } + ] +} \ No newline at end of file diff --git a/blockchains/tezos/assets/KT1LN4LPSqTMS7Sd2CJw4bbDGRkMv2t68Fy9/logo.png b/blockchains/tezos/assets/KT1LN4LPSqTMS7Sd2CJw4bbDGRkMv2t68Fy9/logo.png new file mode 100644 index 0000000000000..36a805dcc9fde Binary files /dev/null and b/blockchains/tezos/assets/KT1LN4LPSqTMS7Sd2CJw4bbDGRkMv2t68Fy9/logo.png differ diff --git a/blockchains/tezos/info/info.json b/blockchains/tezos/info/info.json index b662a92aebb8a..21526b3db2241 100644 --- a/blockchains/tezos/info/info.json +++ b/blockchains/tezos/info/info.json @@ -17,8 +17,8 @@ "url": "https://gitlab.com/tezos/tezos" }, { - "name": "twitter", - "url": "https://twitter.com/tezos" + "name": "x", + "url": "https://x.com/tezos" }, { "name": "reddit", @@ -29,4 +29,4 @@ "url": "https://www.tezos.com/static/papers/white_paper.pdf" } ] -} +} \ No newline at end of file diff --git a/blockchains/tezos/info/square_logo.png b/blockchains/tezos/info/square_logo.png new file mode 100644 index 0000000000000..e8b8b1ceaa12c Binary files /dev/null and b/blockchains/tezos/info/square_logo.png differ diff --git a/blockchains/tezos/validators/list.json b/blockchains/tezos/validators/list.json index 3aa3f290a506e..e68c769e8f8dc 100644 --- a/blockchains/tezos/validators/list.json +++ b/blockchains/tezos/validators/list.json @@ -492,7 +492,7 @@ { "id": "tz1aDiEJf9ztRrAJEXZfcG3CKimoKsGhwVAi", "name": "KryptStar", - "description": "Bake n' Shake, your neighborhood friendly baker, feel freee to DM on twitter if you have any questions regarding the service", + "description": "Bake n' Shake, your neighborhood friendly baker, feel freee to DM on x if you have any questions regarding the service", "website": "https://kryptstar.com/baking", "payout": { "commission": 8, @@ -517,4 +517,4 @@ "minDelegation": 0 } } -] +] \ No newline at end of file diff --git a/blockchains/tftm/info/info.json b/blockchains/tftm/info/info.json index e30c6b6d03d35..504e6fd7ae865 100644 --- a/blockchains/tftm/info/info.json +++ b/blockchains/tftm/info/info.json @@ -10,8 +10,8 @@ "status": "active", "links": [ { - "name": "twitter", - "url": "https://twitter.com/FantomFDN" + "name": "x", + "url": "https://x.com/FantomFDN" }, { "name": "telegram", diff --git a/blockchains/tftm/info/square_logo.png b/blockchains/tftm/info/square_logo.png new file mode 100644 index 0000000000000..793f7b4a3944e Binary files /dev/null and b/blockchains/tftm/info/square_logo.png differ diff --git a/blockchains/theta/info/info.json b/blockchains/theta/info/info.json index 4f48d24fa0445..8938611e4ff32 100644 --- a/blockchains/theta/info/info.json +++ b/blockchains/theta/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/thetatoken" }, { - "name": "twitter", - "url": "https://twitter.com/Theta_Network" + "name": "x", + "url": "https://x.com/Theta_Network" }, { "name": "reddit", diff --git a/blockchains/theta/info/square_logo.png b/blockchains/theta/info/square_logo.png new file mode 100644 index 0000000000000..1651fd4482067 Binary files /dev/null and b/blockchains/theta/info/square_logo.png differ diff --git a/blockchains/thorchain/info/square_logo.png b/blockchains/thorchain/info/square_logo.png new file mode 100644 index 0000000000000..32d4c0874f0eb Binary files /dev/null and b/blockchains/thorchain/info/square_logo.png differ diff --git a/blockchains/thundertoken/assets/0x0212b1F75503413b01A98158434c4570FB6e808c/info.json b/blockchains/thundertoken/assets/0x0212b1F75503413b01A98158434c4570FB6e808c/info.json index a0c7377ef5dcb..e99d45318a8aa 100644 --- a/blockchains/thundertoken/assets/0x0212b1F75503413b01A98158434c4570FB6e808c/info.json +++ b/blockchains/thundertoken/assets/0x0212b1F75503413b01A98158434c4570FB6e808c/info.json @@ -10,8 +10,8 @@ "id": "0x0212b1F75503413b01A98158434c4570FB6e808c", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ThunderCoreLab" + "name": "x", + "url": "https://x.com/ThunderCoreLab" }, { "name": "discord", diff --git a/blockchains/thundertoken/assets/0x18fB0A62f207A2a082cA60aA78F47a1af4985190/info.json b/blockchains/thundertoken/assets/0x18fB0A62f207A2a082cA60aA78F47a1af4985190/info.json index dc49d23f16cb2..bf63490b95675 100644 --- a/blockchains/thundertoken/assets/0x18fB0A62f207A2a082cA60aA78F47a1af4985190/info.json +++ b/blockchains/thundertoken/assets/0x18fB0A62f207A2a082cA60aA78F47a1af4985190/info.json @@ -10,8 +10,8 @@ "id": "0x18fB0A62f207A2a082cA60aA78F47a1af4985190", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ThunderCoreLab" + "name": "x", + "url": "https://x.com/ThunderCoreLab" }, { "name": "discord", diff --git a/blockchains/thundertoken/assets/0x22e89898A04eaf43379BeB70bf4E38b1faf8A31e/info.json b/blockchains/thundertoken/assets/0x22e89898A04eaf43379BeB70bf4E38b1faf8A31e/info.json index 7ee3f85bb9ba3..1c7e0b64e67a2 100644 --- a/blockchains/thundertoken/assets/0x22e89898A04eaf43379BeB70bf4E38b1faf8A31e/info.json +++ b/blockchains/thundertoken/assets/0x22e89898A04eaf43379BeB70bf4E38b1faf8A31e/info.json @@ -1,5 +1,5 @@ { - "name": "TT-USDC", + "name": "USDC", "website": "https://bridge.thundercore.com/", "description": "Bridged token of USDC on ThunderCore blockchain. The Bridge allows users to convert assets between Ethereum, BSC, HECO and ThunderCore. This is a customized version of POA network Bridge", "explorer": "https://viewblock.io/thundercore/address/0x22e89898A04eaf43379BeB70bf4E38b1faf8A31e", @@ -10,8 +10,8 @@ "id": "0x22e89898A04eaf43379BeB70bf4E38b1faf8A31e", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ThunderCoreLab" + "name": "x", + "url": "https://x.com/ThunderCoreLab" }, { "name": "discord", diff --git a/blockchains/thundertoken/assets/0x2b31e3b88847f03c1335E99A0d1274A2c72059DE/info.json b/blockchains/thundertoken/assets/0x2b31e3b88847f03c1335E99A0d1274A2c72059DE/info.json index f3b1bac3921b7..2cd1f6464044b 100644 --- a/blockchains/thundertoken/assets/0x2b31e3b88847f03c1335E99A0d1274A2c72059DE/info.json +++ b/blockchains/thundertoken/assets/0x2b31e3b88847f03c1335E99A0d1274A2c72059DE/info.json @@ -10,8 +10,8 @@ "id": "0x2b31e3b88847f03c1335E99A0d1274A2c72059DE", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ThunderCoreLab" + "name": "x", + "url": "https://x.com/ThunderCoreLab" }, { "name": "discord", diff --git a/blockchains/thundertoken/assets/0x4f3C8E20942461e2c3Bdd8311AC57B0c222f2b82/info.json b/blockchains/thundertoken/assets/0x4f3C8E20942461e2c3Bdd8311AC57B0c222f2b82/info.json index c0537d1d0a97f..18b421b848654 100644 --- a/blockchains/thundertoken/assets/0x4f3C8E20942461e2c3Bdd8311AC57B0c222f2b82/info.json +++ b/blockchains/thundertoken/assets/0x4f3C8E20942461e2c3Bdd8311AC57B0c222f2b82/info.json @@ -1,5 +1,5 @@ { - "name": "TT-USDT", + "name": "Tether", "website": "https://bridge.thundercore.com/", "description": "Bridged token of USDT on ThunderCore blockchain. The Bridge allows users to convert assets between Ethereum, BSC, HECO and ThunderCore. This is a customized version of POA network Bridge", "explorer": "https://viewblock.io/thundercore/address/0x4f3C8E20942461e2c3Bdd8311AC57B0c222f2b82", @@ -10,8 +10,8 @@ "id": "0x4f3C8E20942461e2c3Bdd8311AC57B0c222f2b82", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ThunderCoreLab" + "name": "x", + "url": "https://x.com/ThunderCoreLab" }, { "name": "discord", diff --git a/blockchains/thundertoken/assets/0x6576Bb918709906DcbFDCeae4bB1e6df7C8a1077/info.json b/blockchains/thundertoken/assets/0x6576Bb918709906DcbFDCeae4bB1e6df7C8a1077/info.json index 31135e85ba042..9e44f5e0e62c3 100644 --- a/blockchains/thundertoken/assets/0x6576Bb918709906DcbFDCeae4bB1e6df7C8a1077/info.json +++ b/blockchains/thundertoken/assets/0x6576Bb918709906DcbFDCeae4bB1e6df7C8a1077/info.json @@ -10,8 +10,8 @@ "id": "0x6576Bb918709906DcbFDCeae4bB1e6df7C8a1077", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ThunderCoreLab" + "name": "x", + "url": "https://x.com/ThunderCoreLab" }, { "name": "discord", diff --git a/blockchains/thundertoken/assets/0x8EF1A1E0671Aa44852f4d87105eF482470bB3e69/info.json b/blockchains/thundertoken/assets/0x8EF1A1E0671Aa44852f4d87105eF482470bB3e69/info.json index 868b99ddda016..b77f69675841d 100644 --- a/blockchains/thundertoken/assets/0x8EF1A1E0671Aa44852f4d87105eF482470bB3e69/info.json +++ b/blockchains/thundertoken/assets/0x8EF1A1E0671Aa44852f4d87105eF482470bB3e69/info.json @@ -10,8 +10,8 @@ "id": "0x8EF1A1E0671Aa44852f4d87105eF482470bB3e69", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ThunderCoreLab" + "name": "x", + "url": "https://x.com/ThunderCoreLab" }, { "name": "discord", diff --git a/blockchains/thundertoken/assets/0xBEB0131D95AC3F03fd15894D0aDE5DBf7451d171/info.json b/blockchains/thundertoken/assets/0xBEB0131D95AC3F03fd15894D0aDE5DBf7451d171/info.json index 3f237990894fd..31ab368da7a3e 100644 --- a/blockchains/thundertoken/assets/0xBEB0131D95AC3F03fd15894D0aDE5DBf7451d171/info.json +++ b/blockchains/thundertoken/assets/0xBEB0131D95AC3F03fd15894D0aDE5DBf7451d171/info.json @@ -10,8 +10,8 @@ "id": "0xBEB0131D95AC3F03fd15894D0aDE5DBf7451d171", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ThunderCoreLab" + "name": "x", + "url": "https://x.com/ThunderCoreLab" }, { "name": "discord", diff --git a/blockchains/thundertoken/assets/0xFd6Ec3E37F112bD30BbD726E7b0E73000CC2B98d/info.json b/blockchains/thundertoken/assets/0xFd6Ec3E37F112bD30BbD726E7b0E73000CC2B98d/info.json index 4fde767c264c5..2c4e28ca09782 100644 --- a/blockchains/thundertoken/assets/0xFd6Ec3E37F112bD30BbD726E7b0E73000CC2B98d/info.json +++ b/blockchains/thundertoken/assets/0xFd6Ec3E37F112bD30BbD726E7b0E73000CC2B98d/info.json @@ -10,8 +10,8 @@ "id": "0xFd6Ec3E37F112bD30BbD726E7b0E73000CC2B98d", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ThunderCoreLab" + "name": "x", + "url": "https://x.com/ThunderCoreLab" }, { "name": "discord", diff --git a/blockchains/thundertoken/info/info.json b/blockchains/thundertoken/info/info.json index 6a0cd7ce7a411..d803b5e65d046 100644 --- a/blockchains/thundertoken/info/info.json +++ b/blockchains/thundertoken/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/thundertoken" }, { - "name": "twitter", - "url": "https://twitter.com/ThunderCoreLab" + "name": "x", + "url": "https://x.com/ThunderCoreLab" }, { "name": "reddit", @@ -26,4 +26,4 @@ "url": "https://docs.thundercore.com/thunder-whitepaper.pdf" } ] -} +} \ No newline at end of file diff --git a/blockchains/thundertoken/info/square_logo.png b/blockchains/thundertoken/info/square_logo.png new file mode 100644 index 0000000000000..8c5678bafadcb Binary files /dev/null and b/blockchains/thundertoken/info/square_logo.png differ diff --git a/blockchains/tia/info/info.json b/blockchains/tia/info/info.json new file mode 100644 index 0000000000000..a7652e7b3a213 --- /dev/null +++ b/blockchains/tia/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "Celestia", + "website": "https://celestia.org", + "description": "Celestia is a modular data availability network that securely scales with the number of users, making it easy for anyone to launch their own blockchain.", + "explorer": "https://www.mintscan.io/celestia", + "symbol": "TIA", + "type": "coin", + "decimals": 6, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/celestiaorg" + }, + { + "name": "x", + "url": "https://x.com/CelestiaOrg" + } + ] +} \ No newline at end of file diff --git a/blockchains/tia/info/logo.png b/blockchains/tia/info/logo.png new file mode 100644 index 0000000000000..38a1dbc366c95 Binary files /dev/null and b/blockchains/tia/info/logo.png differ diff --git a/blockchains/tia/info/square_logo.png b/blockchains/tia/info/square_logo.png new file mode 100644 index 0000000000000..813b62d7da39b Binary files /dev/null and b/blockchains/tia/info/square_logo.png differ diff --git a/blockchains/tia/validators/assets/celestiavaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zcvqd22/logo.png b/blockchains/tia/validators/assets/celestiavaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zcvqd22/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/tia/validators/assets/celestiavaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zcvqd22/logo.png differ diff --git a/blockchains/tia/validators/assets/celestiavaloper15urq2dtp9qce4fyc85m6upwm9xul3049gwdz0x/logo.png b/blockchains/tia/validators/assets/celestiavaloper15urq2dtp9qce4fyc85m6upwm9xul3049gwdz0x/logo.png new file mode 100644 index 0000000000000..a1fb2e987e3c5 Binary files /dev/null and b/blockchains/tia/validators/assets/celestiavaloper15urq2dtp9qce4fyc85m6upwm9xul3049gwdz0x/logo.png differ diff --git a/blockchains/tia/validators/assets/celestiavaloper1dlsl4u42ycahzjfwc6td6upgsup9tt7cz8vqm4/logo.png b/blockchains/tia/validators/assets/celestiavaloper1dlsl4u42ycahzjfwc6td6upgsup9tt7cz8vqm4/logo.png new file mode 100644 index 0000000000000..4b09813738a9d Binary files /dev/null and b/blockchains/tia/validators/assets/celestiavaloper1dlsl4u42ycahzjfwc6td6upgsup9tt7cz8vqm4/logo.png differ diff --git a/blockchains/tia/validators/assets/celestiavaloper1e2p4u5vqwgum7pm9vhp0yjvl58gvhfc6yfatw4/logo.png b/blockchains/tia/validators/assets/celestiavaloper1e2p4u5vqwgum7pm9vhp0yjvl58gvhfc6yfatw4/logo.png new file mode 100644 index 0000000000000..14f73e55dfe2f Binary files /dev/null and b/blockchains/tia/validators/assets/celestiavaloper1e2p4u5vqwgum7pm9vhp0yjvl58gvhfc6yfatw4/logo.png differ diff --git a/blockchains/tia/validators/assets/celestiavaloper1geuw5f6u3n5l4ne2d2nze3fehxf023f7s8h08t/logo.png b/blockchains/tia/validators/assets/celestiavaloper1geuw5f6u3n5l4ne2d2nze3fehxf023f7s8h08t/logo.png new file mode 100644 index 0000000000000..405520244e26d Binary files /dev/null and b/blockchains/tia/validators/assets/celestiavaloper1geuw5f6u3n5l4ne2d2nze3fehxf023f7s8h08t/logo.png differ diff --git a/blockchains/tia/validators/assets/celestiavaloper1mhux0vt6qszz8qwv8axggt02jjm7tuvdfhz78j/logo.png b/blockchains/tia/validators/assets/celestiavaloper1mhux0vt6qszz8qwv8axggt02jjm7tuvdfhz78j/logo.png new file mode 100644 index 0000000000000..09ad204add312 Binary files /dev/null and b/blockchains/tia/validators/assets/celestiavaloper1mhux0vt6qszz8qwv8axggt02jjm7tuvdfhz78j/logo.png differ diff --git a/blockchains/tia/validators/assets/celestiavaloper1rcm7tth05klgkqpucdhm5hexnk49dfda3l3hak/logo.png b/blockchains/tia/validators/assets/celestiavaloper1rcm7tth05klgkqpucdhm5hexnk49dfda3l3hak/logo.png new file mode 100644 index 0000000000000..1020527149890 Binary files /dev/null and b/blockchains/tia/validators/assets/celestiavaloper1rcm7tth05klgkqpucdhm5hexnk49dfda3l3hak/logo.png differ diff --git a/blockchains/tia/validators/assets/celestiavaloper1xqc7w3pe38kg4tswjt7mnvks7gy4p38vtsuycj/logo.png b/blockchains/tia/validators/assets/celestiavaloper1xqc7w3pe38kg4tswjt7mnvks7gy4p38vtsuycj/logo.png new file mode 100644 index 0000000000000..962c00c941b3b Binary files /dev/null and b/blockchains/tia/validators/assets/celestiavaloper1xqc7w3pe38kg4tswjt7mnvks7gy4p38vtsuycj/logo.png differ diff --git a/blockchains/tia/validators/assets/celestiavaloper1yknsyf9ws4ugtv3r9g43kwqkne4zmrupcxhlth/logo.png b/blockchains/tia/validators/assets/celestiavaloper1yknsyf9ws4ugtv3r9g43kwqkne4zmrupcxhlth/logo.png new file mode 100644 index 0000000000000..0f6305d87f6e5 Binary files /dev/null and b/blockchains/tia/validators/assets/celestiavaloper1yknsyf9ws4ugtv3r9g43kwqkne4zmrupcxhlth/logo.png differ diff --git a/blockchains/tia/validators/list.json b/blockchains/tia/validators/list.json new file mode 100644 index 0000000000000..5b10700cc2147 --- /dev/null +++ b/blockchains/tia/validators/list.json @@ -0,0 +1,56 @@ +[ + { + "id": "celestiavaloper1e2p4u5vqwgum7pm9vhp0yjvl58gvhfc6yfatw4", + "name": "Finoa Consensus Services", + "description": "Stake and grow your assets using Finoa's institutional-grade infrastructure.", + "website": "https://www.finoa.io/staking-delegation/" + }, + { + "id": "celestiavaloper15urq2dtp9qce4fyc85m6upwm9xul3049gwdz0x", + "name": "Chorus One", + "description": "Secure Celestia and shape its future by delegating to Chorus One, a highly secure and stable validator.", + "website": "https://chorus.one/" + }, + { + "id": "celestiavaloper1geuw5f6u3n5l4ne2d2nze3fehxf023f7s8h08t", + "name": "Coinbase Cloud", + "description": "Coinbase Cloud provides secure and reliable blockchain infrastructure and APIs. Stake your crypto to our enterprise-grade validators.", + "website": "https://www.coinbase.com/cloud" + }, + { + "id": "celestiavaloper1mhux0vt6qszz8qwv8axggt02jjm7tuvdfhz78j", + "name": "Twinstake", + "description": "Twinstake is an institutional-grade, non-custodial staking provider designed and built in collaboration with leaders in the digital assets space. The platform offers industry leading performance, institutional-grade security and uncompromising Know Your Client (KYC) procedures.", + "website": "https://twinstake.io/" + }, + { + "id": "celestiavaloper1xqc7w3pe38kg4tswjt7mnvks7gy4p38vtsuycj", + "name": "Figment", + "description": "Staking with Figment is supported by the leading digital asset wallets and custody providers.", + "website": "https://figment.io/" + }, + { + "id": "celestiavaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zcvqd22", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + }, + { + "id": "celestiavaloper1dlsl4u42ycahzjfwc6td6upgsup9tt7cz8vqm4", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com/" + }, + { + "id": "celestiavaloper1yknsyf9ws4ugtv3r9g43kwqkne4zmrupcxhlth", + "name": "Stakely.io", + "description": "🔥 Professional validator highly experienced in PoS 🔥 Slashing protection | Learn with our staking guides, video tutorials and FAQs | Part of the commission of our nodes will go to our Multicoin Faucet funds and other tools 🌱 Carbon Neutral 🌱", + "website": "https://stakely.io" + }, + { + "id": "celestiavaloper1rcm7tth05klgkqpucdhm5hexnk49dfda3l3hak", + "name": "Allnodes", + "description": "Reliable non-custodial Validator run by the industry leader - Allnodes. Monitor your rewards through the Allnodes portfolio page.", + "website": "https://www.allnodes.com/tia/staking" + } +] diff --git a/blockchains/tomochain/assets/0x01F83cE6636179b54b0CC0C408f9a8bce40ae776/info.json b/blockchains/tomochain/assets/0x01F83cE6636179b54b0CC0C408f9a8bce40ae776/info.json index c5efbc4706952..b5a9039f90e56 100644 --- a/blockchains/tomochain/assets/0x01F83cE6636179b54b0CC0C408f9a8bce40ae776/info.json +++ b/blockchains/tomochain/assets/0x01F83cE6636179b54b0CC0C408f9a8bce40ae776/info.json @@ -5,7 +5,7 @@ "decimals": 6, "description": "-", "website": "", - "explorer": "https://scan.tomochain.com/address/0x01F83cE6636179b54b0CC0C408f9a8bce40ae776", + "explorer": "https://tomoscan.io/token/0x01F83cE6636179b54b0CC0C408f9a8bce40ae776", "status": "abandoned", "id": "0x01F83cE6636179b54b0CC0C408f9a8bce40ae776" } \ No newline at end of file diff --git a/blockchains/tomochain/assets/0x01F83cE6636179b54b0CC0C408f9a8bce40ae776/logo.png b/blockchains/tomochain/assets/0x01F83cE6636179b54b0CC0C408f9a8bce40ae776/logo.png deleted file mode 100644 index 91dd7c5e0ca85..0000000000000 Binary files a/blockchains/tomochain/assets/0x01F83cE6636179b54b0CC0C408f9a8bce40ae776/logo.png and /dev/null differ diff --git a/blockchains/tomochain/assets/0x17B26400621695c2D8C2D8869f6259E82D7544c4/info.json b/blockchains/tomochain/assets/0x17B26400621695c2D8C2D8869f6259E82D7544c4/info.json index 7f0cb96ab6af0..83a1847656c8c 100644 --- a/blockchains/tomochain/assets/0x17B26400621695c2D8C2D8869f6259E82D7544c4/info.json +++ b/blockchains/tomochain/assets/0x17B26400621695c2D8C2D8869f6259E82D7544c4/info.json @@ -5,7 +5,7 @@ "decimals": 18, "description": "-", "website": "", - "explorer": "https://scan.tomochain.com/address/0x17B26400621695c2D8C2D8869f6259E82D7544c4", + "explorer": "https://tomoscan.io/token/0x17B26400621695c2D8C2D8869f6259E82D7544c4", "status": "active", "id": "0x17B26400621695c2D8C2D8869f6259E82D7544c4" } \ No newline at end of file diff --git a/blockchains/tomochain/assets/0x453B71962b5ffbe830a47AbB11A5CFd35C4250BA/info.json b/blockchains/tomochain/assets/0x453B71962b5ffbe830a47AbB11A5CFd35C4250BA/info.json new file mode 100644 index 0000000000000..9720eec7b90be --- /dev/null +++ b/blockchains/tomochain/assets/0x453B71962b5ffbe830a47AbB11A5CFd35C4250BA/info.json @@ -0,0 +1,28 @@ +{ + "name": "Northern Lottery", + "type": "TRC21", + "symbol": "XSMB", + "decimals": 18, + "website": "https://lottoxsmb.com/", + "description": "Revolutionizing the Global Lottery Industry with Harnessing Blockchain and Smart Contracts", + "explorer": "https://tomoscan.io/token/0x453B71962b5ffbe830a47AbB11A5CFd35C4250BA", + "status": "active", + "id": "0x453B71962b5ffbe830a47AbB11A5CFd35C4250BA", + "links": [ + { + "name": "x", + "url": "https://x.com/LottoXSMB" + }, + { + "name": "telegram", + "url": "https://t.me/lottoxsmb_us" + }, + { + "name": "whitepaper", + "url": "https://docs.google.com/document/d/14jDWJ6WI3YnSe5P-rth_bfDKUgnT_rwg/edit?usp=share_link&ouid=100963559652495354132&rtpof=true&sd=true" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/tomochain/assets/0x453B71962b5ffbe830a47AbB11A5CFd35C4250BA/logo.png b/blockchains/tomochain/assets/0x453B71962b5ffbe830a47AbB11A5CFd35C4250BA/logo.png new file mode 100644 index 0000000000000..004cabcc246fd Binary files /dev/null and b/blockchains/tomochain/assets/0x453B71962b5ffbe830a47AbB11A5CFd35C4250BA/logo.png differ diff --git a/blockchains/tomochain/assets/0x5080781e91237b6D7f026D5306b7233e26Cd6C16/info.json b/blockchains/tomochain/assets/0x5080781e91237b6D7f026D5306b7233e26Cd6C16/info.json new file mode 100644 index 0000000000000..895a4bc302163 --- /dev/null +++ b/blockchains/tomochain/assets/0x5080781e91237b6D7f026D5306b7233e26Cd6C16/info.json @@ -0,0 +1,24 @@ +{ + "name": "Mega Lottery (MLR)", + "type": "TRC21", + "symbol": "MLR", + "decimals": 18, + "website": "https://megaltr.com", + "description": "lottery blockchain operates fully automatically based on smart contracts", + "explorer": "https://tomoscan.io/token/0x5080781e91237b6D7f026D5306b7233e26Cd6C16", + "status": "active", + "id": "0x5080781e91237b6D7f026D5306b7233e26Cd6C16", + "links": [ + { + "name": "x", + "url": "https://x.com/MegaLTR" + }, + { + "name": "telegram", + "url": "https://t.me/megaltr_us" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/tomochain/assets/0x5080781e91237b6D7f026D5306b7233e26Cd6C16/logo.png b/blockchains/tomochain/assets/0x5080781e91237b6D7f026D5306b7233e26Cd6C16/logo.png new file mode 100644 index 0000000000000..516ff8be7c197 Binary files /dev/null and b/blockchains/tomochain/assets/0x5080781e91237b6D7f026D5306b7233e26Cd6C16/logo.png differ diff --git a/blockchains/tomochain/assets/0x567b1e373f7285e9a32f5eeB9305b6964B6a3532/info.json b/blockchains/tomochain/assets/0x567b1e373f7285e9a32f5eeB9305b6964B6a3532/info.json new file mode 100644 index 0000000000000..ad57ace310251 --- /dev/null +++ b/blockchains/tomochain/assets/0x567b1e373f7285e9a32f5eeB9305b6964B6a3532/info.json @@ -0,0 +1,28 @@ +{ + "name": "Crypto For Betting", + "type": "TRC21", + "symbol": "CFB", + "decimals": 18, + "website": "https://lottocfb.com", + "description": "Your Gateway to Winning", + "explorer": "https://tomoscan.io/token/0x567b1e373f7285e9a32f5eeB9305b6964B6a3532", + "status": "active", + "id": "0x567b1e373f7285e9a32f5eeB9305b6964B6a3532", + "links": [ + { + "name": "x", + "url": "https://x.com/CommunityCFB" + }, + { + "name": "telegram", + "url": "https://t.me/CommunityCFB" + }, + { + "name": "whitepaper", + "url": "https://docs.google.com/document/d/1c_v7P5sHneSTP6pHUBsF_Es_IZgAxCTG/edit?usp=sharing" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/tomochain/assets/0x567b1e373f7285e9a32f5eeB9305b6964B6a3532/logo.png b/blockchains/tomochain/assets/0x567b1e373f7285e9a32f5eeB9305b6964B6a3532/logo.png new file mode 100644 index 0000000000000..2a0fb19413dd0 Binary files /dev/null and b/blockchains/tomochain/assets/0x567b1e373f7285e9a32f5eeB9305b6964B6a3532/logo.png differ diff --git a/blockchains/tomochain/assets/0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84/info.json b/blockchains/tomochain/assets/0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84/info.json index 7ec780b5a8eb1..770baefab4aff 100644 --- a/blockchains/tomochain/assets/0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84/info.json +++ b/blockchains/tomochain/assets/0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84/info.json @@ -5,7 +5,7 @@ "decimals": 6, "description": "-", "website": "", - "explorer": "https://scan.tomochain.com/address/0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84", + "explorer": "https://tomoscan.io/token/0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84", "status": "abandoned", "id": "0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84" } \ No newline at end of file diff --git a/blockchains/tomochain/assets/0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84/logo.png b/blockchains/tomochain/assets/0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84/logo.png deleted file mode 100644 index cfb8873a44c9f..0000000000000 Binary files a/blockchains/tomochain/assets/0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84/logo.png and /dev/null differ diff --git a/blockchains/tomochain/assets/0x8103Bb77eD2035b5da9A3A65d9c313cb6eE41dbD/info.json b/blockchains/tomochain/assets/0x8103Bb77eD2035b5da9A3A65d9c313cb6eE41dbD/info.json index 74915867e612c..3ed6a56c767d2 100644 --- a/blockchains/tomochain/assets/0x8103Bb77eD2035b5da9A3A65d9c313cb6eE41dbD/info.json +++ b/blockchains/tomochain/assets/0x8103Bb77eD2035b5da9A3A65d9c313cb6eE41dbD/info.json @@ -5,13 +5,13 @@ "decimals": 18, "website": "https://tabank.org", "description": "crypto ecosystem that include: e-commerce, social networks, exchanges and crypto wallet, gaming", - "explorer": "https://scan.tomochain.com/address/0x8103bb77ed2035b5da9a3a65d9c313cb6ee41dbd", + "explorer": "https://tomoscan.io/token/0x8103Bb77eD2035b5da9A3A65d9c313cb6eE41dbD", "status": "active", "id": "0x8103Bb77eD2035b5da9A3A65d9c313cb6eE41dbD", "links": [ { - "name": "twitter", - "url": "https://twitter.com/OrgTabank" + "name": "x", + "url": "https://x.com/OrgTabank" }, { "name": "telegram", diff --git a/blockchains/tomochain/assets/0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8/info.json b/blockchains/tomochain/assets/0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8/info.json index 860c1da31c088..68bd663b46b50 100644 --- a/blockchains/tomochain/assets/0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8/info.json +++ b/blockchains/tomochain/assets/0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8/info.json @@ -5,7 +5,7 @@ "decimals": 4, "description": "-", "website": "", - "explorer": "https://scan.tomochain.com/address/0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8", + "explorer": "https://tomoscan.io/token/0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8", "status": "abandoned", "id": "0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8" } \ No newline at end of file diff --git a/blockchains/tomochain/assets/0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8/logo.png b/blockchains/tomochain/assets/0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8/logo.png deleted file mode 100644 index 2b0e8d742bb25..0000000000000 Binary files a/blockchains/tomochain/assets/0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8/logo.png and /dev/null differ diff --git a/blockchains/tomochain/assets/0xcE98172f4fC9Ad02da607843A2C211b7834431da/info.json b/blockchains/tomochain/assets/0xcE98172f4fC9Ad02da607843A2C211b7834431da/info.json index 4f48cb290768f..52526e3f57fb4 100644 --- a/blockchains/tomochain/assets/0xcE98172f4fC9Ad02da607843A2C211b7834431da/info.json +++ b/blockchains/tomochain/assets/0xcE98172f4fC9Ad02da607843A2C211b7834431da/info.json @@ -5,7 +5,7 @@ "decimals": 6, "description": "-", "website": "", - "explorer": "https://scan.tomochain.com/address/0xcE98172f4fC9Ad02da607843A2C211b7834431da", + "explorer": "https://tomoscan.io/token/0xcE98172f4fC9Ad02da607843A2C211b7834431da", "status": "abandoned", "id": "0xcE98172f4fC9Ad02da607843A2C211b7834431da" } \ No newline at end of file diff --git a/blockchains/tomochain/assets/0xcE98172f4fC9Ad02da607843A2C211b7834431da/logo.png b/blockchains/tomochain/assets/0xcE98172f4fC9Ad02da607843A2C211b7834431da/logo.png deleted file mode 100644 index 088da52294f27..0000000000000 Binary files a/blockchains/tomochain/assets/0xcE98172f4fC9Ad02da607843A2C211b7834431da/logo.png and /dev/null differ diff --git a/blockchains/tomochain/info/info.json b/blockchains/tomochain/info/info.json index c6c89ac229913..12b95db1d28db 100644 --- a/blockchains/tomochain/info/info.json +++ b/blockchains/tomochain/info/info.json @@ -1,10 +1,9 @@ { - "name": "TomoChain", - "website": "https://tomochain.com", - "description": "TomoChain is a scalable blockchain powered via Proof-of-Stake Voting consensus and used commercially by companies globally.", + "name": "Viction", + "website": "https://viction.xyz/", + "description": "Viction (VIC) is a people-centric layer-1 blockchain that provides zero-gas transactions and heightened security, making Web3 accessible and safe for everyone.", "explorer": "https://scan.tomochain.com", - "research": "https://research.binance.com/en/projects/tomochain", - "symbol": "TOMO", + "symbol": "VIC", "type": "coin", "decimals": 18, "status": "active", @@ -14,16 +13,12 @@ "url": "https://github.com/tomochain" }, { - "name": "twitter", - "url": "https://twitter.com/TomoChainANN" + "name": "x", + "url": "https://x.com/BuildOnViction" }, { - "name": "reddit", - "url": "https://reddit.com/r/Tomochain" - }, - { - "name": "whitepaper", - "url": "https://tomochain.com/docs/technical-whitepaper--1.0.pdf" + "name": "telegram", + "url": "https://t.me/buildonviction" } ] } \ No newline at end of file diff --git a/blockchains/tomochain/info/logo.png b/blockchains/tomochain/info/logo.png index 9b00b4c7ee35b..4a9aa96eacf27 100644 Binary files a/blockchains/tomochain/info/logo.png and b/blockchains/tomochain/info/logo.png differ diff --git a/blockchains/tomochain/info/square_logo.png b/blockchains/tomochain/info/square_logo.png new file mode 100644 index 0000000000000..1539768ad0f6f Binary files /dev/null and b/blockchains/tomochain/info/square_logo.png differ diff --git a/blockchains/ton/assets/EQA2RgMKPUwdYNgSmB1A8saoGHj1DPEPk_3hYkI3vqhgLFrf/info.json b/blockchains/ton/assets/EQA2RgMKPUwdYNgSmB1A8saoGHj1DPEPk_3hYkI3vqhgLFrf/info.json new file mode 100644 index 0000000000000..3899166090d17 --- /dev/null +++ b/blockchains/ton/assets/EQA2RgMKPUwdYNgSmB1A8saoGHj1DPEPk_3hYkI3vqhgLFrf/info.json @@ -0,0 +1,20 @@ +{ + "name": "Novo Nordisk xStock", + "type": "JETTON", + "symbol": "NVOx", + "decimals": 8, + "description": "Novo Nordisk xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQA2RgMKPUwdYNgSmB1A8saoGHj1DPEPk_3hYkI3vqhgLFrf", + "status": "active", + "id": "EQA2RgMKPUwdYNgSmB1A8saoGHj1DPEPk_3hYkI3vqhgLFrf", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/novo-nordisk-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQA2RgMKPUwdYNgSmB1A8saoGHj1DPEPk_3hYkI3vqhgLFrf/logo.png b/blockchains/ton/assets/EQA2RgMKPUwdYNgSmB1A8saoGHj1DPEPk_3hYkI3vqhgLFrf/logo.png new file mode 100644 index 0000000000000..93fd95bb0fbaf Binary files /dev/null and b/blockchains/ton/assets/EQA2RgMKPUwdYNgSmB1A8saoGHj1DPEPk_3hYkI3vqhgLFrf/logo.png differ diff --git a/blockchains/ton/assets/EQA2ezTnOiUce55zBQ_Yhum4lOCVahIMZRi-yyrR0MNON9vZ/info.json b/blockchains/ton/assets/EQA2ezTnOiUce55zBQ_Yhum4lOCVahIMZRi-yyrR0MNON9vZ/info.json new file mode 100644 index 0000000000000..1b7f97b70274d --- /dev/null +++ b/blockchains/ton/assets/EQA2ezTnOiUce55zBQ_Yhum4lOCVahIMZRi-yyrR0MNON9vZ/info.json @@ -0,0 +1,20 @@ +{ + "name": "Gamestop xStock", + "type": "JETTON", + "symbol": "GMEx", + "decimals": 8, + "description": "Gamestop xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQA2ezTnOiUce55zBQ_Yhum4lOCVahIMZRi-yyrR0MNON9vZ", + "status": "active", + "id": "EQA2ezTnOiUce55zBQ_Yhum4lOCVahIMZRi-yyrR0MNON9vZ", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gamestop-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQA2ezTnOiUce55zBQ_Yhum4lOCVahIMZRi-yyrR0MNON9vZ/logo.png b/blockchains/ton/assets/EQA2ezTnOiUce55zBQ_Yhum4lOCVahIMZRi-yyrR0MNON9vZ/logo.png new file mode 100644 index 0000000000000..37200bdc25ac3 Binary files /dev/null and b/blockchains/ton/assets/EQA2ezTnOiUce55zBQ_Yhum4lOCVahIMZRi-yyrR0MNON9vZ/logo.png differ diff --git a/blockchains/ton/assets/EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO/info.json b/blockchains/ton/assets/EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO/info.json new file mode 100644 index 0000000000000..bb38018c00091 --- /dev/null +++ b/blockchains/ton/assets/EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO", + "name": "STON", + "type": "JETTON", + "symbol": "STON", + "decimals": 9, + "description": "STON is the utility token of the STON.fi DEX integrated into the core protocol mechanics. STON allows participation in protocol governance through long-term staking.", + "status": "active", + "explorer": "https://tonscan.org/address/EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO", + "id": "EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO", + "website": "https://ston.fi/", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO/logo.png b/blockchains/ton/assets/EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO/logo.png new file mode 100644 index 0000000000000..c9eb9c8508e67 Binary files /dev/null and b/blockchains/ton/assets/EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO/logo.png differ diff --git a/blockchains/ton/assets/EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR/info.json b/blockchains/ton/assets/EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR/info.json new file mode 100644 index 0000000000000..1cf9921744dcf --- /dev/null +++ b/blockchains/ton/assets/EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR", + "name": "Orbit Bridge Ton Dai", + "type": "JETTON", + "symbol": "oDAI", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR", + "id": "EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR/logo.png b/blockchains/ton/assets/EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR/logo.png new file mode 100644 index 0000000000000..8471bd656dbc4 Binary files /dev/null and b/blockchains/ton/assets/EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR/logo.png differ diff --git a/blockchains/ton/assets/EQAD-iVmVKW8frDDYPd80N-7dy8m2LfU8nK_85TeHkXWEw-C/info.json b/blockchains/ton/assets/EQAD-iVmVKW8frDDYPd80N-7dy8m2LfU8nK_85TeHkXWEw-C/info.json new file mode 100644 index 0000000000000..3d2c923e3a01c --- /dev/null +++ b/blockchains/ton/assets/EQAD-iVmVKW8frDDYPd80N-7dy8m2LfU8nK_85TeHkXWEw-C/info.json @@ -0,0 +1,20 @@ +{ + "name": "Coca-Cola xStock", + "type": "JETTON", + "symbol": "KOx", + "decimals": 8, + "description": "Coca-Cola xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQAD-iVmVKW8frDDYPd80N-7dy8m2LfU8nK_85TeHkXWEw-C", + "status": "active", + "id": "EQAD-iVmVKW8frDDYPd80N-7dy8m2LfU8nK_85TeHkXWEw-C", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coca-cola-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAD-iVmVKW8frDDYPd80N-7dy8m2LfU8nK_85TeHkXWEw-C/logo.png b/blockchains/ton/assets/EQAD-iVmVKW8frDDYPd80N-7dy8m2LfU8nK_85TeHkXWEw-C/logo.png new file mode 100644 index 0000000000000..1cd980d96e379 Binary files /dev/null and b/blockchains/ton/assets/EQAD-iVmVKW8frDDYPd80N-7dy8m2LfU8nK_85TeHkXWEw-C/logo.png differ diff --git a/blockchains/ton/assets/EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn/info.json b/blockchains/ton/assets/EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn/info.json new file mode 100644 index 0000000000000..6adf90fa77eb8 --- /dev/null +++ b/blockchains/ton/assets/EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn/info.json @@ -0,0 +1,18 @@ +{ + "address": "EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn", + "name": "KISS Coin", + "type": "JETTON", + "symbol": "KISS", + "decimals": 9, + "description": "TON KISS project coin", + "status": "active", + "explorer": "https://tonscan.org/address/EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn", + "id": "EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn", + "website": "https://t.me/KISS_Coin", + "links": [ + { + "name": "telegram", + "url": "https://t.me/KISSCoinChat" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn/logo.png b/blockchains/ton/assets/EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn/logo.png new file mode 100644 index 0000000000000..d6eeb355ceb80 Binary files /dev/null and b/blockchains/ton/assets/EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn/logo.png differ diff --git a/blockchains/ton/assets/EQAGZ-68GJEDs85xcyZ2F-ckt_AmeJbAeSbowrwvmYbHBIUt/info.json b/blockchains/ton/assets/EQAGZ-68GJEDs85xcyZ2F-ckt_AmeJbAeSbowrwvmYbHBIUt/info.json new file mode 100644 index 0000000000000..f538b564ec2c7 --- /dev/null +++ b/blockchains/ton/assets/EQAGZ-68GJEDs85xcyZ2F-ckt_AmeJbAeSbowrwvmYbHBIUt/info.json @@ -0,0 +1,20 @@ +{ + "name": "AstraZeneca xStock", + "type": "JETTON", + "symbol": "AZNx", + "decimals": 8, + "description": "AstraZeneca xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQAGZ-68GJEDs85xcyZ2F-ckt_AmeJbAeSbowrwvmYbHBIUt", + "status": "active", + "id": "EQAGZ-68GJEDs85xcyZ2F-ckt_AmeJbAeSbowrwvmYbHBIUt", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/astrazeneca-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAGZ-68GJEDs85xcyZ2F-ckt_AmeJbAeSbowrwvmYbHBIUt/logo.png b/blockchains/ton/assets/EQAGZ-68GJEDs85xcyZ2F-ckt_AmeJbAeSbowrwvmYbHBIUt/logo.png new file mode 100644 index 0000000000000..876ac4cb38386 Binary files /dev/null and b/blockchains/ton/assets/EQAGZ-68GJEDs85xcyZ2F-ckt_AmeJbAeSbowrwvmYbHBIUt/logo.png differ diff --git a/blockchains/ton/assets/EQAHhPaDyRyXJjwGDXBBngtmCSmHFiqpTLqT3c67ouDmjldK/info.json b/blockchains/ton/assets/EQAHhPaDyRyXJjwGDXBBngtmCSmHFiqpTLqT3c67ouDmjldK/info.json new file mode 100644 index 0000000000000..d9bf90496efee --- /dev/null +++ b/blockchains/ton/assets/EQAHhPaDyRyXJjwGDXBBngtmCSmHFiqpTLqT3c67ouDmjldK/info.json @@ -0,0 +1,15 @@ +{ + "name": "Core MSCI Emerging Markets xStock", + "type": "JETTON", + "symbol": "IEMGx", + "decimals": 8, + "description": "Core MSCI Emerging Markets xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQAHhPaDyRyXJjwGDXBBngtmCSmHFiqpTLqT3c67ouDmjldK", + "status": "active", + "id": "EQAHhPaDyRyXJjwGDXBBngtmCSmHFiqpTLqT3c67ouDmjldK", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAHhPaDyRyXJjwGDXBBngtmCSmHFiqpTLqT3c67ouDmjldK/logo.png b/blockchains/ton/assets/EQAHhPaDyRyXJjwGDXBBngtmCSmHFiqpTLqT3c67ouDmjldK/logo.png new file mode 100644 index 0000000000000..857fe69020c3c Binary files /dev/null and b/blockchains/ton/assets/EQAHhPaDyRyXJjwGDXBBngtmCSmHFiqpTLqT3c67ouDmjldK/logo.png differ diff --git a/blockchains/ton/assets/EQAHz1jK27NO5IdHrht8146-EFz9p4kSZZx2H1xXuNQOYp_r/info.json b/blockchains/ton/assets/EQAHz1jK27NO5IdHrht8146-EFz9p4kSZZx2H1xXuNQOYp_r/info.json new file mode 100644 index 0000000000000..2c144bf2494db --- /dev/null +++ b/blockchains/ton/assets/EQAHz1jK27NO5IdHrht8146-EFz9p4kSZZx2H1xXuNQOYp_r/info.json @@ -0,0 +1,20 @@ +{ + "name": "Robinhood xStock", + "type": "JETTON", + "symbol": "HOODx", + "decimals": 8, + "description": "Robinhood xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQAHz1jK27NO5IdHrht8146-EFz9p4kSZZx2H1xXuNQOYp_r", + "status": "active", + "id": "EQAHz1jK27NO5IdHrht8146-EFz9p4kSZZx2H1xXuNQOYp_r", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/robinhood-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAHz1jK27NO5IdHrht8146-EFz9p4kSZZx2H1xXuNQOYp_r/logo.png b/blockchains/ton/assets/EQAHz1jK27NO5IdHrht8146-EFz9p4kSZZx2H1xXuNQOYp_r/logo.png new file mode 100644 index 0000000000000..499d05ab3c8af Binary files /dev/null and b/blockchains/ton/assets/EQAHz1jK27NO5IdHrht8146-EFz9p4kSZZx2H1xXuNQOYp_r/logo.png differ diff --git a/blockchains/ton/assets/EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L/info.json b/blockchains/ton/assets/EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L/info.json new file mode 100644 index 0000000000000..c7775c2eea10e --- /dev/null +++ b/blockchains/ton/assets/EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L", + "name": "Orbit Bridge Ton KlaySwap Protocol", + "type": "JETTON", + "symbol": "oKSP", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L", + "id": "EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L/logo.png b/blockchains/ton/assets/EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L/logo.png new file mode 100644 index 0000000000000..44986ce38ed77 Binary files /dev/null and b/blockchains/ton/assets/EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L/logo.png differ diff --git a/blockchains/ton/assets/EQALwJzXnxFjckNsurCi9O2kVg_0b1KdtjOSfvOedlY37iZc/info.json b/blockchains/ton/assets/EQALwJzXnxFjckNsurCi9O2kVg_0b1KdtjOSfvOedlY37iZc/info.json new file mode 100644 index 0000000000000..f37074ab3531e --- /dev/null +++ b/blockchains/ton/assets/EQALwJzXnxFjckNsurCi9O2kVg_0b1KdtjOSfvOedlY37iZc/info.json @@ -0,0 +1,20 @@ +{ + "name": "Alphabet xStock", + "type": "JETTON", + "symbol": "GOOGLx", + "decimals": 8, + "description": "Alphabet xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQALwJzXnxFjckNsurCi9O2kVg_0b1KdtjOSfvOedlY37iZc", + "status": "active", + "id": "EQALwJzXnxFjckNsurCi9O2kVg_0b1KdtjOSfvOedlY37iZc", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/alphabet-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQALwJzXnxFjckNsurCi9O2kVg_0b1KdtjOSfvOedlY37iZc/logo.png b/blockchains/ton/assets/EQALwJzXnxFjckNsurCi9O2kVg_0b1KdtjOSfvOedlY37iZc/logo.png new file mode 100644 index 0000000000000..74e8233d60b12 Binary files /dev/null and b/blockchains/ton/assets/EQALwJzXnxFjckNsurCi9O2kVg_0b1KdtjOSfvOedlY37iZc/logo.png differ diff --git a/blockchains/ton/assets/EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB/info.json b/blockchains/ton/assets/EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB/info.json new file mode 100644 index 0000000000000..50365ac0ca58d --- /dev/null +++ b/blockchains/ton/assets/EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB", + "name": "Orbit Bridge Ton Wrapped BTC", + "type": "JETTON", + "symbol": "oWBTC", + "decimals": 8, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB", + "id": "EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB/logo.png b/blockchains/ton/assets/EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB/logo.png new file mode 100644 index 0000000000000..ecda101d9220a Binary files /dev/null and b/blockchains/ton/assets/EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB/logo.png differ diff --git a/blockchains/ton/assets/EQAOmHLi4y5uSiAg5lBah8pi6R4w0jhU_ib0T5H-xwn4CLj0/info.json b/blockchains/ton/assets/EQAOmHLi4y5uSiAg5lBah8pi6R4w0jhU_ib0T5H-xwn4CLj0/info.json new file mode 100644 index 0000000000000..8bd5d75f11df7 --- /dev/null +++ b/blockchains/ton/assets/EQAOmHLi4y5uSiAg5lBah8pi6R4w0jhU_ib0T5H-xwn4CLj0/info.json @@ -0,0 +1,20 @@ +{ + "name": "Mastercard xStock", + "type": "JETTON", + "symbol": "MAx", + "decimals": 8, + "description": "Mastercard xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQAOmHLi4y5uSiAg5lBah8pi6R4w0jhU_ib0T5H-xwn4CLj0", + "status": "active", + "id": "EQAOmHLi4y5uSiAg5lBah8pi6R4w0jhU_ib0T5H-xwn4CLj0", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mastercard-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAOmHLi4y5uSiAg5lBah8pi6R4w0jhU_ib0T5H-xwn4CLj0/logo.png b/blockchains/ton/assets/EQAOmHLi4y5uSiAg5lBah8pi6R4w0jhU_ib0T5H-xwn4CLj0/logo.png new file mode 100644 index 0000000000000..02c91d1fc42cb Binary files /dev/null and b/blockchains/ton/assets/EQAOmHLi4y5uSiAg5lBah8pi6R4w0jhU_ib0T5H-xwn4CLj0/logo.png differ diff --git a/blockchains/ton/assets/EQAQXlWJvGbbFfE8F3oS8s87lIgdovS455IsWFaRdmJetTon/info.json b/blockchains/ton/assets/EQAQXlWJvGbbFfE8F3oS8s87lIgdovS455IsWFaRdmJetTon/info.json new file mode 100644 index 0000000000000..daf574e680445 --- /dev/null +++ b/blockchains/ton/assets/EQAQXlWJvGbbFfE8F3oS8s87lIgdovS455IsWFaRdmJetTon/info.json @@ -0,0 +1,21 @@ +{ + "name": "JetTon", + "website": "https://jetton.investments/en", + "description": "JetTon.Games Platform Token", + "explorer": "https://tonscan.org/ru/jetton/EQAQXlWJvGbbFfE8F3oS8s87lIgdovS455IsWFaRdmJetTon", + "type": "JETTON", + "symbol": "JETTON", + "decimals": 9, + "status": "active", + "id": "EQAQXlWJvGbbFfE8F3oS8s87lIgdovS455IsWFaRdmJetTon", + "links": [ + { + "name": "x", + "url": "https://x.com/JetTonGames" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/jetton/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAQXlWJvGbbFfE8F3oS8s87lIgdovS455IsWFaRdmJetTon/logo.png b/blockchains/ton/assets/EQAQXlWJvGbbFfE8F3oS8s87lIgdovS455IsWFaRdmJetTon/logo.png new file mode 100644 index 0000000000000..651980329fc63 Binary files /dev/null and b/blockchains/ton/assets/EQAQXlWJvGbbFfE8F3oS8s87lIgdovS455IsWFaRdmJetTon/logo.png differ diff --git a/blockchains/ton/assets/EQAR-KBduwL4w-Lg72QFX4tWTOAJCGS72FkGHrJL9Qt7P9ln/info.json b/blockchains/ton/assets/EQAR-KBduwL4w-Lg72QFX4tWTOAJCGS72FkGHrJL9Qt7P9ln/info.json new file mode 100644 index 0000000000000..7dc549095bc8f --- /dev/null +++ b/blockchains/ton/assets/EQAR-KBduwL4w-Lg72QFX4tWTOAJCGS72FkGHrJL9Qt7P9ln/info.json @@ -0,0 +1,29 @@ +{ + "name": "AVACOIN", + "type": "JETTON", + "symbol": "AVACN", + "decimals": 9, + "website": "https://t.me/avagoldcoin_bot", + "description": "AVACOIN is a Telegram mini-app that has evolved far beyond its original clicker game for mining virtual gold. It now features a range of exciting elements, including gaming, a marketplace for mini-apps, staking, farming, and soon, educational content, further enhancing the app’s evolution and functionality.", + "explorer": "https://tonscan.org/ru/jetton/EQAR-KBduwL4w-Lg72QFX4tWTOAJCGS72FkGHrJL9Qt7P9ln", + "status": "active", + "id": "EQAR-KBduwL4w-Lg72QFX4tWTOAJCGS72FkGHrJL9Qt7P9ln", + "links": [ + { + "name": "telegram", + "url": "https://t.me/avagoldcoin_bot" + }, + { + "name": "telegram_news", + "url": "https://t.me/avagoldcoin" + }, + { + "name": "x", + "url": "https://x.com/avagoldcoin" + }, + { + "name": "youtube", + "url": "https://youtube.com/@AVA-GOLDCOIN" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAR-KBduwL4w-Lg72QFX4tWTOAJCGS72FkGHrJL9Qt7P9ln/logo.png b/blockchains/ton/assets/EQAR-KBduwL4w-Lg72QFX4tWTOAJCGS72FkGHrJL9Qt7P9ln/logo.png new file mode 100644 index 0000000000000..2f69bc784cff3 Binary files /dev/null and b/blockchains/ton/assets/EQAR-KBduwL4w-Lg72QFX4tWTOAJCGS72FkGHrJL9Qt7P9ln/logo.png differ diff --git a/blockchains/ton/assets/EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR/info.json b/blockchains/ton/assets/EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR/info.json new file mode 100644 index 0000000000000..c26a2f901b8ed --- /dev/null +++ b/blockchains/ton/assets/EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR", + "name": "Love You", + "type": "JETTON", + "symbol": "LOVE", + "decimals": 9, + "description": "The concept of the LOVE jetton is the Metaverse. Metaverse for virtual dating. Jetton based on the TON blockchain. Telegram channel - @loveholders, @loveholderschat, @loveholderseng, @loveengchat, loveholders.com", + "status": "active", + "explorer": "https://tonscan.org/address/EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR", + "id": "EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR", + "website": "https://loveholders.com/", + "links": [ + { + "name": "telegram", + "url": "https://t.me/loveholderschat" + }, + { + "name": "telegram_news", + "url": "https://t.me/loveholderseng" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR/logo.png b/blockchains/ton/assets/EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR/logo.png new file mode 100644 index 0000000000000..431a0c1e3dc90 Binary files /dev/null and b/blockchains/ton/assets/EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR/logo.png differ diff --git a/blockchains/ton/assets/EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-/info.json b/blockchains/ton/assets/EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-/info.json new file mode 100644 index 0000000000000..301e08fdd9447 --- /dev/null +++ b/blockchains/ton/assets/EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-", + "name": "Orbit Bridge Ton Ethereum", + "type": "JETTON", + "symbol": "oETH", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-", + "id": "EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-/logo.png b/blockchains/ton/assets/EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-/logo.png new file mode 100644 index 0000000000000..c5cee244465c6 Binary files /dev/null and b/blockchains/ton/assets/EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-/logo.png differ diff --git a/blockchains/ton/assets/EQAWsIGMoGlbjJJIsik-9_6A4Iiodb1M7LW3kmu05v8ujo9h/info.json b/blockchains/ton/assets/EQAWsIGMoGlbjJJIsik-9_6A4Iiodb1M7LW3kmu05v8ujo9h/info.json new file mode 100644 index 0000000000000..b909e48f0a9d4 --- /dev/null +++ b/blockchains/ton/assets/EQAWsIGMoGlbjJJIsik-9_6A4Iiodb1M7LW3kmu05v8ujo9h/info.json @@ -0,0 +1,21 @@ +{ + "name": "donotfomoew", + "type": "JETTON", + "symbol": "MOEW", + "decimals": 9, + "website": "https://donotfomoew.org/", + "description": "Just for funsies, nothing too serious, We wanna see what the power of memes can do.", + "explorer": "https://tonscan.org/ru/jetton/EQAWsIGMoGlbjJJIsik-9_6A4Iiodb1M7LW3kmu05v8ujo9h", + "status": "active", + "id": "EQAWsIGMoGlbjJJIsik-9_6A4Iiodb1M7LW3kmu05v8ujo9h", + "links": [ + { + "name": "x", + "url": "https://x.com/donotfomoew" + }, + { + "name": "telegram", + "url": "https://t.me/moewcommunty" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAWsIGMoGlbjJJIsik-9_6A4Iiodb1M7LW3kmu05v8ujo9h/logo.png b/blockchains/ton/assets/EQAWsIGMoGlbjJJIsik-9_6A4Iiodb1M7LW3kmu05v8ujo9h/logo.png new file mode 100644 index 0000000000000..57cb253f83cb3 Binary files /dev/null and b/blockchains/ton/assets/EQAWsIGMoGlbjJJIsik-9_6A4Iiodb1M7LW3kmu05v8ujo9h/logo.png differ diff --git a/blockchains/ton/assets/EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs/info.json b/blockchains/ton/assets/EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs/info.json new file mode 100644 index 0000000000000..aa3ea84c07b86 --- /dev/null +++ b/blockchains/ton/assets/EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs/info.json @@ -0,0 +1,18 @@ +{ + "address": "EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs", + "name": "Stalin", + "type": "JETTON", + "symbol": "IVS", + "decimals": 9, + "description": "Look for Stalin inside yourself.", + "status": "active", + "explorer": "https://tonscan.org/address/EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs", + "id": "EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs", + "website": "https://t.me/Stalin_IVS", + "links": [ + { + "name": "telegram", + "url": "https://t.me/Stalin_chat" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs/logo.png b/blockchains/ton/assets/EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs/logo.png new file mode 100644 index 0000000000000..93f5bdd08f023 Binary files /dev/null and b/blockchains/ton/assets/EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs/logo.png differ diff --git a/blockchains/ton/assets/EQAk3GT-G1fD3P3VKOGfcxsSyPHawr8GHFoOOgOrNRp55SC-/info.json b/blockchains/ton/assets/EQAk3GT-G1fD3P3VKOGfcxsSyPHawr8GHFoOOgOrNRp55SC-/info.json new file mode 100644 index 0000000000000..fba929cc8aa5d --- /dev/null +++ b/blockchains/ton/assets/EQAk3GT-G1fD3P3VKOGfcxsSyPHawr8GHFoOOgOrNRp55SC-/info.json @@ -0,0 +1,20 @@ +{ + "name": "Johnson & Johnson xStock", + "type": "JETTON", + "symbol": "JNJx", + "decimals": 8, + "description": "Johnson & Johnson xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQAk3GT-G1fD3P3VKOGfcxsSyPHawr8GHFoOOgOrNRp55SC-", + "status": "active", + "id": "EQAk3GT-G1fD3P3VKOGfcxsSyPHawr8GHFoOOgOrNRp55SC-", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/johnson-johnson-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAk3GT-G1fD3P3VKOGfcxsSyPHawr8GHFoOOgOrNRp55SC-/logo.png b/blockchains/ton/assets/EQAk3GT-G1fD3P3VKOGfcxsSyPHawr8GHFoOOgOrNRp55SC-/logo.png new file mode 100644 index 0000000000000..67bdfefec03ca Binary files /dev/null and b/blockchains/ton/assets/EQAk3GT-G1fD3P3VKOGfcxsSyPHawr8GHFoOOgOrNRp55SC-/logo.png differ diff --git a/blockchains/ton/assets/EQAlL7fOykivkEefblcB3bkqn4HMwP8jQNDNVzo9-RkKZNJx/info.json b/blockchains/ton/assets/EQAlL7fOykivkEefblcB3bkqn4HMwP8jQNDNVzo9-RkKZNJx/info.json new file mode 100644 index 0000000000000..0b7e97c755ca5 --- /dev/null +++ b/blockchains/ton/assets/EQAlL7fOykivkEefblcB3bkqn4HMwP8jQNDNVzo9-RkKZNJx/info.json @@ -0,0 +1,20 @@ +{ + "name": "Bank of America xStock", + "type": "JETTON", + "symbol": "BACx", + "decimals": 8, + "description": "Bank of America xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQAlL7fOykivkEefblcB3bkqn4HMwP8jQNDNVzo9-RkKZNJx", + "status": "active", + "id": "EQAlL7fOykivkEefblcB3bkqn4HMwP8jQNDNVzo9-RkKZNJx", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bank-of-america-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAlL7fOykivkEefblcB3bkqn4HMwP8jQNDNVzo9-RkKZNJx/logo.png b/blockchains/ton/assets/EQAlL7fOykivkEefblcB3bkqn4HMwP8jQNDNVzo9-RkKZNJx/logo.png new file mode 100644 index 0000000000000..6f48f28bf287c Binary files /dev/null and b/blockchains/ton/assets/EQAlL7fOykivkEefblcB3bkqn4HMwP8jQNDNVzo9-RkKZNJx/logo.png differ diff --git a/blockchains/ton/assets/EQAn6tdm6zbGSamhJRTwwqiM2FYoBKcw5FeVC1rf2jBjvg89/info.json b/blockchains/ton/assets/EQAn6tdm6zbGSamhJRTwwqiM2FYoBKcw5FeVC1rf2jBjvg89/info.json new file mode 100644 index 0000000000000..16431a454d45e --- /dev/null +++ b/blockchains/ton/assets/EQAn6tdm6zbGSamhJRTwwqiM2FYoBKcw5FeVC1rf2jBjvg89/info.json @@ -0,0 +1,20 @@ +{ + "name": "Cisco xStock", + "type": "JETTON", + "symbol": "CSCOx", + "decimals": 8, + "description": "Cisco xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQAn6tdm6zbGSamhJRTwwqiM2FYoBKcw5FeVC1rf2jBjvg89", + "status": "active", + "id": "EQAn6tdm6zbGSamhJRTwwqiM2FYoBKcw5FeVC1rf2jBjvg89", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cisco-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAn6tdm6zbGSamhJRTwwqiM2FYoBKcw5FeVC1rf2jBjvg89/logo.png b/blockchains/ton/assets/EQAn6tdm6zbGSamhJRTwwqiM2FYoBKcw5FeVC1rf2jBjvg89/logo.png new file mode 100644 index 0000000000000..2ac7a8d071b42 Binary files /dev/null and b/blockchains/ton/assets/EQAn6tdm6zbGSamhJRTwwqiM2FYoBKcw5FeVC1rf2jBjvg89/logo.png differ diff --git a/blockchains/ton/assets/EQAnmAKsa_mCXoefjzecmjXMnt5OqURjT-OFD5hyT1N3hKTy/info.json b/blockchains/ton/assets/EQAnmAKsa_mCXoefjzecmjXMnt5OqURjT-OFD5hyT1N3hKTy/info.json new file mode 100644 index 0000000000000..f8eb627deca29 --- /dev/null +++ b/blockchains/ton/assets/EQAnmAKsa_mCXoefjzecmjXMnt5OqURjT-OFD5hyT1N3hKTy/info.json @@ -0,0 +1,15 @@ +{ + "name": "Schwab International Equity xStock", + "type": "JETTON", + "symbol": "SCHFx", + "decimals": 8, + "description": "Schwab International Equity xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQAnmAKsa_mCXoefjzecmjXMnt5OqURjT-OFD5hyT1N3hKTy", + "status": "active", + "id": "EQAnmAKsa_mCXoefjzecmjXMnt5OqURjT-OFD5hyT1N3hKTy", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAnmAKsa_mCXoefjzecmjXMnt5OqURjT-OFD5hyT1N3hKTy/logo.png b/blockchains/ton/assets/EQAnmAKsa_mCXoefjzecmjXMnt5OqURjT-OFD5hyT1N3hKTy/logo.png new file mode 100644 index 0000000000000..d55ca6edb40ba Binary files /dev/null and b/blockchains/ton/assets/EQAnmAKsa_mCXoefjzecmjXMnt5OqURjT-OFD5hyT1N3hKTy/logo.png differ diff --git a/blockchains/ton/assets/EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad/info.json b/blockchains/ton/assets/EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad/info.json new file mode 100644 index 0000000000000..629c9948f63a9 --- /dev/null +++ b/blockchains/ton/assets/EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad", + "name": "Orbit Bridge Ton GALAXIA", + "type": "JETTON", + "symbol": "oGXA", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad", + "id": "EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad/logo.png b/blockchains/ton/assets/EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad/logo.png new file mode 100644 index 0000000000000..1fbb82754494a Binary files /dev/null and b/blockchains/ton/assets/EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad/logo.png differ diff --git a/blockchains/ton/assets/EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y/info.json b/blockchains/ton/assets/EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y/info.json new file mode 100644 index 0000000000000..70a966c5a500b --- /dev/null +++ b/blockchains/ton/assets/EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y", + "name": "Tegro", + "type": "JETTON", + "symbol": "TGR", + "decimals": 9, + "description": "Cross-platform payment token on the TON blockchain.", + "status": "active", + "explorer": "https://tonscan.org/address/EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y", + "id": "EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y", + "website": "https://tegro.io", + "links": [ + { + "name": "telegram", + "url": "https://t.me/TgrTon" + }, + { + "name": "x", + "url": "https://x.com/tgrtoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y/logo.png b/blockchains/ton/assets/EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y/logo.png new file mode 100644 index 0000000000000..27b09f47b50a6 Binary files /dev/null and b/blockchains/ton/assets/EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y/logo.png differ diff --git a/blockchains/ton/assets/EQAvL-WWhFk51DEzdnE7fskWpip9EFZV8JTJAjZfGxgYIijL/info.json b/blockchains/ton/assets/EQAvL-WWhFk51DEzdnE7fskWpip9EFZV8JTJAjZfGxgYIijL/info.json new file mode 100644 index 0000000000000..4143fc36908c3 --- /dev/null +++ b/blockchains/ton/assets/EQAvL-WWhFk51DEzdnE7fskWpip9EFZV8JTJAjZfGxgYIijL/info.json @@ -0,0 +1,15 @@ +{ + "name": "Bitmine xStock", + "type": "JETTON", + "symbol": "BMNRx", + "decimals": 8, + "description": "Bitmine xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQAvL-WWhFk51DEzdnE7fskWpip9EFZV8JTJAjZfGxgYIijL", + "status": "active", + "id": "EQAvL-WWhFk51DEzdnE7fskWpip9EFZV8JTJAjZfGxgYIijL", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAvL-WWhFk51DEzdnE7fskWpip9EFZV8JTJAjZfGxgYIijL/logo.png b/blockchains/ton/assets/EQAvL-WWhFk51DEzdnE7fskWpip9EFZV8JTJAjZfGxgYIijL/logo.png new file mode 100644 index 0000000000000..fb7784c71a3a4 Binary files /dev/null and b/blockchains/ton/assets/EQAvL-WWhFk51DEzdnE7fskWpip9EFZV8JTJAjZfGxgYIijL/logo.png differ diff --git a/blockchains/ton/assets/EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT/info.json b/blockchains/ton/assets/EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT/info.json new file mode 100644 index 0000000000000..3fd0eb8f7c7e7 --- /dev/null +++ b/blockchains/ton/assets/EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT/info.json @@ -0,0 +1,21 @@ +{ + "name": "Notcoin", + "website": "https://notco.in/", + "description": "Probably nothing", + "explorer": "https://tonscan.org/ru/jetton/EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT", + "symbol": "NOT", + "type": "JETTON", + "decimals": 9, + "id": "EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/thenotcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/notcoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT/logo.png b/blockchains/ton/assets/EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT/logo.png new file mode 100644 index 0000000000000..fb41273d09299 Binary files /dev/null and b/blockchains/ton/assets/EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT/logo.png differ diff --git a/blockchains/ton/assets/EQAw63ZqLmnwRA77PW07CWIEngwg-eIiysaqZ8IWpUL0nP7a/info.json b/blockchains/ton/assets/EQAw63ZqLmnwRA77PW07CWIEngwg-eIiysaqZ8IWpUL0nP7a/info.json new file mode 100644 index 0000000000000..562da3a20babd --- /dev/null +++ b/blockchains/ton/assets/EQAw63ZqLmnwRA77PW07CWIEngwg-eIiysaqZ8IWpUL0nP7a/info.json @@ -0,0 +1,21 @@ +{ + "name": "UTYABSWAP", + "website": "https://www.utyabswap.com/", + "description": "JetTon.Games Platform Token", + "explorer": "https://tonscan.org/ru/jetton/EQAw63ZqLmnwRA77PW07CWIEngwg-eIiysaqZ8IWpUL0nP7a", + "type": "JETTON", + "symbol": "UTYAB", + "decimals": 9, + "status": "active", + "id": "EQAw63ZqLmnwRA77PW07CWIEngwg-eIiysaqZ8IWpUL0nP7a", + "links": [ + { + "name": "x", + "url": "https://x.com/TonUtyab" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/utya-black/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAw63ZqLmnwRA77PW07CWIEngwg-eIiysaqZ8IWpUL0nP7a/logo.png b/blockchains/ton/assets/EQAw63ZqLmnwRA77PW07CWIEngwg-eIiysaqZ8IWpUL0nP7a/logo.png new file mode 100644 index 0000000000000..965e690be26e8 Binary files /dev/null and b/blockchains/ton/assets/EQAw63ZqLmnwRA77PW07CWIEngwg-eIiysaqZ8IWpUL0nP7a/logo.png differ diff --git a/blockchains/ton/assets/EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy/info.json b/blockchains/ton/assets/EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy/info.json new file mode 100644 index 0000000000000..dd508554074e6 --- /dev/null +++ b/blockchains/ton/assets/EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy/info.json @@ -0,0 +1,12 @@ +{ + "address": "EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy", + "name": "Ton Earth coin", + "type": "JETTON", + "symbol": "TEC", + "decimals": 9, + "description": "Ton Earth universe coin on the Legendary Blockchain.", + "status": "active", + "explorer": "https://tonscan.org/address/EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy", + "id": "EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy", + "website": "https://tonearth.com/" +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy/logo.png b/blockchains/ton/assets/EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy/logo.png new file mode 100644 index 0000000000000..a48bf77783d54 Binary files /dev/null and b/blockchains/ton/assets/EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy/logo.png differ diff --git a/blockchains/ton/assets/EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx/info.json b/blockchains/ton/assets/EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx/info.json new file mode 100644 index 0000000000000..d88358908fc96 --- /dev/null +++ b/blockchains/ton/assets/EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx", + "name": "Orbit Bridge Ton Orbs", + "type": "JETTON", + "symbol": "oORBS", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx", + "id": "EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx/logo.png b/blockchains/ton/assets/EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx/logo.png new file mode 100644 index 0000000000000..80eb04ab97b76 Binary files /dev/null and b/blockchains/ton/assets/EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx/logo.png differ diff --git a/blockchains/ton/assets/EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO/info.json b/blockchains/ton/assets/EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO/info.json new file mode 100644 index 0000000000000..461ed14e6aee0 --- /dev/null +++ b/blockchains/ton/assets/EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO/info.json @@ -0,0 +1,12 @@ +{ + "address": "EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO", + "name": "ELKITON", + "type": "JETTON", + "symbol": "SNEG", + "decimals": 9, + "status": "active", + "description": "The ecosystem of the Christmas Tree", + "explorer": "https://tonscan.org/address/EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO", + "id": "EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO", + "website": "https://getgems.io/collection/EQBlZxMOVRhZxqKYmjeaJALBjHGyMReU5L9xSFCB6BjnA_hM" +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO/logo.png b/blockchains/ton/assets/EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO/logo.png new file mode 100644 index 0000000000000..3d4f06ea31e3c Binary files /dev/null and b/blockchains/ton/assets/EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO/logo.png differ diff --git a/blockchains/ton/assets/EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728/info.json b/blockchains/ton/assets/EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728/info.json new file mode 100644 index 0000000000000..8b14b748325ad --- /dev/null +++ b/blockchains/ton/assets/EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728", + "name": "jUSDC", + "type": "JETTON", + "symbol": "jUSDC", + "decimals": 6, + "description": "USDC transferred from Ethereum via bridge.ton.org. Token address in Ethereum: 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "status": "active", + "explorer": "https://tonscan.org/address/EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728", + "id": "EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728", + "website": "https://bridge.ton.org/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728/logo.png b/blockchains/ton/assets/EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728/logo.png new file mode 100644 index 0000000000000..daa81b4a3a3cf Binary files /dev/null and b/blockchains/ton/assets/EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728/logo.png differ diff --git a/blockchains/ton/assets/EQB-RPtAAQeFSGW3gIj0zREh4N92MGXfqFzxAc6TRvu-zvYT/info.json b/blockchains/ton/assets/EQB-RPtAAQeFSGW3gIj0zREh4N92MGXfqFzxAc6TRvu-zvYT/info.json new file mode 100644 index 0000000000000..5a467efb900b8 --- /dev/null +++ b/blockchains/ton/assets/EQB-RPtAAQeFSGW3gIj0zREh4N92MGXfqFzxAc6TRvu-zvYT/info.json @@ -0,0 +1,20 @@ +{ + "name": "Circle xStock", + "type": "JETTON", + "symbol": "CRCLx", + "decimals": 8, + "description": "Circle xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQB-RPtAAQeFSGW3gIj0zREh4N92MGXfqFzxAc6TRvu-zvYT", + "status": "active", + "id": "EQB-RPtAAQeFSGW3gIj0zREh4N92MGXfqFzxAc6TRvu-zvYT", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/circle-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQB-RPtAAQeFSGW3gIj0zREh4N92MGXfqFzxAc6TRvu-zvYT/logo.png b/blockchains/ton/assets/EQB-RPtAAQeFSGW3gIj0zREh4N92MGXfqFzxAc6TRvu-zvYT/logo.png new file mode 100644 index 0000000000000..5d99d96eeea49 Binary files /dev/null and b/blockchains/ton/assets/EQB-RPtAAQeFSGW3gIj0zREh4N92MGXfqFzxAc6TRvu-zvYT/logo.png differ diff --git a/blockchains/ton/assets/EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp/info.json b/blockchains/ton/assets/EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp/info.json new file mode 100644 index 0000000000000..76f9162ba5046 --- /dev/null +++ b/blockchains/ton/assets/EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp/info.json @@ -0,0 +1,12 @@ +{ + "address": "EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp", + "name": "TonexCoin", + "type": "JETTON", + "symbol": "TNX", + "decimals": 9, + "description": "A tool to create the future", + "status": "active", + "explorer": "https://tonscan.org/address/EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp", + "id": "EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp", + "website": "https://tonex.app/" +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp/logo.png b/blockchains/ton/assets/EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp/logo.png new file mode 100644 index 0000000000000..440231cc26ccf Binary files /dev/null and b/blockchains/ton/assets/EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp/logo.png differ diff --git a/blockchains/ton/assets/EQB02DJ0cdUD4iQDRbBv4aYG3htePHBRK1tGeRtCnatescK0/info.json b/blockchains/ton/assets/EQB02DJ0cdUD4iQDRbBv4aYG3htePHBRK1tGeRtCnatescK0/info.json new file mode 100644 index 0000000000000..d19e8f988607d --- /dev/null +++ b/blockchains/ton/assets/EQB02DJ0cdUD4iQDRbBv4aYG3htePHBRK1tGeRtCnatescK0/info.json @@ -0,0 +1,21 @@ +{ + "name": "povel durev", + "website": "https://poveldurev.net/", + "description": "mek bellions TONs of memes durev.xyz", + "explorer": "https://tonscan.org/ru/jetton/EQB02DJ0cdUD4iQDRbBv4aYG3htePHBRK1tGeRtCnatescK0", + "type": "JETTON", + "symbol": "durev", + "decimals": 9, + "status": "active", + "id": "EQB02DJ0cdUD4iQDRbBv4aYG3htePHBRK1tGeRtCnatescK0", + "links": [ + { + "name": "x", + "url": "https://x.com/poveldurev" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/povel-durev/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQB02DJ0cdUD4iQDRbBv4aYG3htePHBRK1tGeRtCnatescK0/logo.png b/blockchains/ton/assets/EQB02DJ0cdUD4iQDRbBv4aYG3htePHBRK1tGeRtCnatescK0/logo.png new file mode 100644 index 0000000000000..b0b949af35c59 Binary files /dev/null and b/blockchains/ton/assets/EQB02DJ0cdUD4iQDRbBv4aYG3htePHBRK1tGeRtCnatescK0/logo.png differ diff --git a/blockchains/ton/assets/EQB1fyBAA9qQDP6LEGaF3cbU-Xbr-p6ESBZGnqlHkHIHAJZv/info.json b/blockchains/ton/assets/EQB1fyBAA9qQDP6LEGaF3cbU-Xbr-p6ESBZGnqlHkHIHAJZv/info.json new file mode 100644 index 0000000000000..80c0dacd03689 --- /dev/null +++ b/blockchains/ton/assets/EQB1fyBAA9qQDP6LEGaF3cbU-Xbr-p6ESBZGnqlHkHIHAJZv/info.json @@ -0,0 +1,20 @@ +{ + "name": "SP500 xStock", + "type": "JETTON", + "symbol": "SPYx", + "decimals": 8, + "description": "SP500 xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQB1fyBAA9qQDP6LEGaF3cbU-Xbr-p6ESBZGnqlHkHIHAJZv", + "status": "active", + "id": "EQB1fyBAA9qQDP6LEGaF3cbU-Xbr-p6ESBZGnqlHkHIHAJZv", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sp500-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQB1fyBAA9qQDP6LEGaF3cbU-Xbr-p6ESBZGnqlHkHIHAJZv/logo.png b/blockchains/ton/assets/EQB1fyBAA9qQDP6LEGaF3cbU-Xbr-p6ESBZGnqlHkHIHAJZv/logo.png new file mode 100644 index 0000000000000..9ae5b5a7a1bf1 Binary files /dev/null and b/blockchains/ton/assets/EQB1fyBAA9qQDP6LEGaF3cbU-Xbr-p6ESBZGnqlHkHIHAJZv/logo.png differ diff --git a/blockchains/ton/assets/EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr/info.json b/blockchains/ton/assets/EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr/info.json new file mode 100644 index 0000000000000..80c662d3808c7 --- /dev/null +++ b/blockchains/ton/assets/EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr", + "name": "FANTIK", + "type": "JETTON", + "symbol": "FANT", + "decimals": 9, + "description": "The candy wrapper", + "status": "active", + "explorer": "https://tonscan.org/address/EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr", + "id": "EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr", + "website": "https://olbanec.shop", + "links": [ + { + "name": "telegram", + "url": "https://t.me/olbania_memeland" + } + ], + "tags": [ + "memes", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr/logo.png b/blockchains/ton/assets/EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr/logo.png new file mode 100644 index 0000000000000..13940d49f4a17 Binary files /dev/null and b/blockchains/ton/assets/EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr/logo.png differ diff --git a/blockchains/ton/assets/EQB4IwqWZPUczntdry8vSN2tsJKt-9F7iIb7gEFREYYOB563/info.json b/blockchains/ton/assets/EQB4IwqWZPUczntdry8vSN2tsJKt-9F7iIb7gEFREYYOB563/info.json new file mode 100644 index 0000000000000..c78a44deeb6a3 --- /dev/null +++ b/blockchains/ton/assets/EQB4IwqWZPUczntdry8vSN2tsJKt-9F7iIb7gEFREYYOB563/info.json @@ -0,0 +1,20 @@ +{ + "name": "Tesla xStock", + "type": "JETTON", + "symbol": "TSLAx", + "decimals": 8, + "description": "Tesla xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQB4IwqWZPUczntdry8vSN2tsJKt-9F7iIb7gEFREYYOB563", + "status": "active", + "id": "EQB4IwqWZPUczntdry8vSN2tsJKt-9F7iIb7gEFREYYOB563", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tesla-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQB4IwqWZPUczntdry8vSN2tsJKt-9F7iIb7gEFREYYOB563/logo.png b/blockchains/ton/assets/EQB4IwqWZPUczntdry8vSN2tsJKt-9F7iIb7gEFREYYOB563/logo.png new file mode 100644 index 0000000000000..8bbfdce0a2368 Binary files /dev/null and b/blockchains/ton/assets/EQB4IwqWZPUczntdry8vSN2tsJKt-9F7iIb7gEFREYYOB563/logo.png differ diff --git a/blockchains/ton/assets/EQB4zZusHsbU2vVTPqjhlokIOoiZhEdCMT703CWEzhTOo__X/info.json b/blockchains/ton/assets/EQB4zZusHsbU2vVTPqjhlokIOoiZhEdCMT703CWEzhTOo__X/info.json new file mode 100644 index 0000000000000..59c17d89ac4b2 --- /dev/null +++ b/blockchains/ton/assets/EQB4zZusHsbU2vVTPqjhlokIOoiZhEdCMT703CWEzhTOo__X/info.json @@ -0,0 +1,21 @@ +{ + "name": "X Empire", + "type": "JETTON", + "symbol": "X", + "decimals": 9, + "website": "https://xempire.io/", + "description": "Build your own empire!", + "explorer": "https://tonscan.org/ru/jetton/EQB4zZusHsbU2vVTPqjhlokIOoiZhEdCMT703CWEzhTOo__X", + "status": "active", + "id": "EQB4zZusHsbU2vVTPqjhlokIOoiZhEdCMT703CWEzhTOo__X", + "links": [ + { + "name": "x", + "url": "https://x.com/xempiregame" + }, + { + "name": "telegram", + "url": "https://t.me/empirex" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQB4zZusHsbU2vVTPqjhlokIOoiZhEdCMT703CWEzhTOo__X/logo.png b/blockchains/ton/assets/EQB4zZusHsbU2vVTPqjhlokIOoiZhEdCMT703CWEzhTOo__X/logo.png new file mode 100644 index 0000000000000..9fd11069cb515 Binary files /dev/null and b/blockchains/ton/assets/EQB4zZusHsbU2vVTPqjhlokIOoiZhEdCMT703CWEzhTOo__X/logo.png differ diff --git a/blockchains/ton/assets/EQB7U3MUc6TeOvYRwqLoouF-yxr4w-sa-Q-n0_6MjUyQlTSQ/info.json b/blockchains/ton/assets/EQB7U3MUc6TeOvYRwqLoouF-yxr4w-sa-Q-n0_6MjUyQlTSQ/info.json new file mode 100644 index 0000000000000..e954ca5da287f --- /dev/null +++ b/blockchains/ton/assets/EQB7U3MUc6TeOvYRwqLoouF-yxr4w-sa-Q-n0_6MjUyQlTSQ/info.json @@ -0,0 +1,20 @@ +{ + "name": "International Business Machines xStock", + "type": "JETTON", + "symbol": "IBMx", + "decimals": 8, + "description": "International Business Machines xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQB7U3MUc6TeOvYRwqLoouF-yxr4w-sa-Q-n0_6MjUyQlTSQ", + "status": "active", + "id": "EQB7U3MUc6TeOvYRwqLoouF-yxr4w-sa-Q-n0_6MjUyQlTSQ", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/international-business-machines-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQB7U3MUc6TeOvYRwqLoouF-yxr4w-sa-Q-n0_6MjUyQlTSQ/logo.png b/blockchains/ton/assets/EQB7U3MUc6TeOvYRwqLoouF-yxr4w-sa-Q-n0_6MjUyQlTSQ/logo.png new file mode 100644 index 0000000000000..e6a2aff6e6a2d Binary files /dev/null and b/blockchains/ton/assets/EQB7U3MUc6TeOvYRwqLoouF-yxr4w-sa-Q-n0_6MjUyQlTSQ/logo.png differ diff --git a/blockchains/ton/assets/EQB7ik3-_oRQ0FEIJYYu8NG-ANIaMd-KNLXSvfbmSMCB1mpq/info.json b/blockchains/ton/assets/EQB7ik3-_oRQ0FEIJYYu8NG-ANIaMd-KNLXSvfbmSMCB1mpq/info.json new file mode 100644 index 0000000000000..601c21f095cb5 --- /dev/null +++ b/blockchains/ton/assets/EQB7ik3-_oRQ0FEIJYYu8NG-ANIaMd-KNLXSvfbmSMCB1mpq/info.json @@ -0,0 +1,20 @@ +{ + "name": "Vanguard xStock", + "type": "JETTON", + "symbol": "VTIx", + "decimals": 8, + "description": "Vanguard xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQB7ik3-_oRQ0FEIJYYu8NG-ANIaMd-KNLXSvfbmSMCB1mpq", + "status": "active", + "id": "EQB7ik3-_oRQ0FEIJYYu8NG-ANIaMd-KNLXSvfbmSMCB1mpq", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vanguard-tokenized-etf-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQB7ik3-_oRQ0FEIJYYu8NG-ANIaMd-KNLXSvfbmSMCB1mpq/logo.png b/blockchains/ton/assets/EQB7ik3-_oRQ0FEIJYYu8NG-ANIaMd-KNLXSvfbmSMCB1mpq/logo.png new file mode 100644 index 0000000000000..ea385e42145a9 Binary files /dev/null and b/blockchains/ton/assets/EQB7ik3-_oRQ0FEIJYYu8NG-ANIaMd-KNLXSvfbmSMCB1mpq/logo.png differ diff --git a/blockchains/ton/assets/EQBBnSFyNZkNmq7I4E9yWhZDZQurcQhGkFeGBV_UXibFlv4-/info.json b/blockchains/ton/assets/EQBBnSFyNZkNmq7I4E9yWhZDZQurcQhGkFeGBV_UXibFlv4-/info.json new file mode 100644 index 0000000000000..e9ea4cb298d17 --- /dev/null +++ b/blockchains/ton/assets/EQBBnSFyNZkNmq7I4E9yWhZDZQurcQhGkFeGBV_UXibFlv4-/info.json @@ -0,0 +1,20 @@ +{ + "name": "Intel xStock", + "type": "JETTON", + "symbol": "INTCx", + "decimals": 8, + "description": "Intel xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQBBnSFyNZkNmq7I4E9yWhZDZQurcQhGkFeGBV_UXibFlv4-", + "status": "active", + "id": "EQBBnSFyNZkNmq7I4E9yWhZDZQurcQhGkFeGBV_UXibFlv4-", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/intel-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBBnSFyNZkNmq7I4E9yWhZDZQurcQhGkFeGBV_UXibFlv4-/logo.png b/blockchains/ton/assets/EQBBnSFyNZkNmq7I4E9yWhZDZQurcQhGkFeGBV_UXibFlv4-/logo.png new file mode 100644 index 0000000000000..fa5ae9732bb1d Binary files /dev/null and b/blockchains/ton/assets/EQBBnSFyNZkNmq7I4E9yWhZDZQurcQhGkFeGBV_UXibFlv4-/logo.png differ diff --git a/blockchains/ton/assets/EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B/info.json b/blockchains/ton/assets/EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B/info.json new file mode 100644 index 0000000000000..a31f0e04f7aa5 --- /dev/null +++ b/blockchains/ton/assets/EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B", + "name": "DHD Coin", + "type": "JETTON", + "symbol": "DHD", + "decimals": 9, + "description": "Low fee dick-to-dick electronic cash alternative to Toncoin", + "status": "active", + "explorer": "https://tonscan.org/address/EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B", + "id": "EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B", + "website": "http://www.dhdgame.ru/", + "links": [ + { + "name": "telegram", + "url": "https://t.me/WayofDHD" + }, + { + "name": "telegram_news", + "url": "https://t.me/CoinDHD" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B/logo.png b/blockchains/ton/assets/EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B/logo.png new file mode 100644 index 0000000000000..d40a01d666b81 Binary files /dev/null and b/blockchains/ton/assets/EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B/logo.png differ diff --git a/blockchains/ton/assets/EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu/info.json b/blockchains/ton/assets/EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu/info.json new file mode 100644 index 0000000000000..5363c5ae789bf --- /dev/null +++ b/blockchains/ton/assets/EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu", + "name": "Orbit Bridge Ton MOOI", + "type": "JETTON", + "symbol": "oMOOI", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu", + "id": "EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu/logo.png b/blockchains/ton/assets/EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu/logo.png new file mode 100644 index 0000000000000..0e377dafdec0e Binary files /dev/null and b/blockchains/ton/assets/EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu/logo.png differ diff --git a/blockchains/ton/assets/EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc/info.json b/blockchains/ton/assets/EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc/info.json new file mode 100644 index 0000000000000..26e9a72c458fd --- /dev/null +++ b/blockchains/ton/assets/EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc", + "name": "Orbit Bridge Ton GemHUB", + "type": "JETTON", + "symbol": "oGHUB", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc", + "id": "EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc/logo.png b/blockchains/ton/assets/EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc/logo.png new file mode 100644 index 0000000000000..fbf97a9b6100a Binary files /dev/null and b/blockchains/ton/assets/EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc/logo.png differ diff --git a/blockchains/ton/assets/EQBE6A9Pf7DGcOVjnzoR_kEoi0uGgSBRVT4GMsbEqIoTCcNt/info.json b/blockchains/ton/assets/EQBE6A9Pf7DGcOVjnzoR_kEoi0uGgSBRVT4GMsbEqIoTCcNt/info.json new file mode 100644 index 0000000000000..8ff77a562d395 --- /dev/null +++ b/blockchains/ton/assets/EQBE6A9Pf7DGcOVjnzoR_kEoi0uGgSBRVT4GMsbEqIoTCcNt/info.json @@ -0,0 +1,21 @@ +{ + "name": "GRAND", + "type": "JETTON", + "symbol": "GRAND", + "decimals": 9, + "description": "$GRAND is a utility token for the GRAND mini app’s ecosystem.", + "status": "active", + "explorer": "https://tonscan.org/jetton/EQBE6A9Pf7DGcOVjnzoR_kEoi0uGgSBRVT4GMsbEqIoTCcNt", + "id": "EQBE6A9Pf7DGcOVjnzoR_kEoi0uGgSBRVT4GMsbEqIoTCcNt", + "website": "https://grandcombat.io/", + "links": [ + { + "name": "telegram", + "url": "https://t.me/grandcombat" + }, + { + "name": "x", + "url": "https://x.com/grand_combat" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBE6A9Pf7DGcOVjnzoR_kEoi0uGgSBRVT4GMsbEqIoTCcNt/logo.png b/blockchains/ton/assets/EQBE6A9Pf7DGcOVjnzoR_kEoi0uGgSBRVT4GMsbEqIoTCcNt/logo.png new file mode 100644 index 0000000000000..134e51a9ad696 Binary files /dev/null and b/blockchains/ton/assets/EQBE6A9Pf7DGcOVjnzoR_kEoi0uGgSBRVT4GMsbEqIoTCcNt/logo.png differ diff --git a/blockchains/ton/assets/EQBGDL8J1dhHeH5vUvTb1bdtQaKRmj3oWG6iMwityBOa0B31/info.json b/blockchains/ton/assets/EQBGDL8J1dhHeH5vUvTb1bdtQaKRmj3oWG6iMwityBOa0B31/info.json new file mode 100644 index 0000000000000..7d0e340ee1c77 --- /dev/null +++ b/blockchains/ton/assets/EQBGDL8J1dhHeH5vUvTb1bdtQaKRmj3oWG6iMwityBOa0B31/info.json @@ -0,0 +1,20 @@ +{ + "name": "Procter & Gamble xStock", + "type": "JETTON", + "symbol": "PGx", + "decimals": 8, + "description": "Procter & Gamble xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQBGDL8J1dhHeH5vUvTb1bdtQaKRmj3oWG6iMwityBOa0B31", + "status": "active", + "id": "EQBGDL8J1dhHeH5vUvTb1bdtQaKRmj3oWG6iMwityBOa0B31", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/procter-gamble-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBGDL8J1dhHeH5vUvTb1bdtQaKRmj3oWG6iMwityBOa0B31/logo.png b/blockchains/ton/assets/EQBGDL8J1dhHeH5vUvTb1bdtQaKRmj3oWG6iMwityBOa0B31/logo.png new file mode 100644 index 0000000000000..91c8cff43e5c5 Binary files /dev/null and b/blockchains/ton/assets/EQBGDL8J1dhHeH5vUvTb1bdtQaKRmj3oWG6iMwityBOa0B31/logo.png differ diff --git a/blockchains/ton/assets/EQBH-6sIfpffahsgYWO56lANIj2kxzJeju5qvvCC9AqYVdyN/info.json b/blockchains/ton/assets/EQBH-6sIfpffahsgYWO56lANIj2kxzJeju5qvvCC9AqYVdyN/info.json new file mode 100644 index 0000000000000..7702d13b4bbae --- /dev/null +++ b/blockchains/ton/assets/EQBH-6sIfpffahsgYWO56lANIj2kxzJeju5qvvCC9AqYVdyN/info.json @@ -0,0 +1,20 @@ +{ + "name": "DFDV xStock", + "type": "JETTON", + "symbol": "DFDVx", + "decimals": 8, + "description": "DFDV xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQBH-6sIfpffahsgYWO56lANIj2kxzJeju5qvvCC9AqYVdyN", + "status": "active", + "id": "EQBH-6sIfpffahsgYWO56lANIj2kxzJeju5qvvCC9AqYVdyN", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dfdv-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBH-6sIfpffahsgYWO56lANIj2kxzJeju5qvvCC9AqYVdyN/logo.png b/blockchains/ton/assets/EQBH-6sIfpffahsgYWO56lANIj2kxzJeju5qvvCC9AqYVdyN/logo.png new file mode 100644 index 0000000000000..0e599ca631772 Binary files /dev/null and b/blockchains/ton/assets/EQBH-6sIfpffahsgYWO56lANIj2kxzJeju5qvvCC9AqYVdyN/logo.png differ diff --git a/blockchains/ton/assets/EQBJV7x_mz-4-oO8_KRRa8jKYjU45RnfVU3wudTHZxhVOtHC/info.json b/blockchains/ton/assets/EQBJV7x_mz-4-oO8_KRRa8jKYjU45RnfVU3wudTHZxhVOtHC/info.json new file mode 100644 index 0000000000000..4c0b4081feefd --- /dev/null +++ b/blockchains/ton/assets/EQBJV7x_mz-4-oO8_KRRa8jKYjU45RnfVU3wudTHZxhVOtHC/info.json @@ -0,0 +1,20 @@ +{ + "name": "Danaher xStock", + "type": "JETTON", + "symbol": "DHRx", + "decimals": 8, + "description": "Danaher xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQBJV7x_mz-4-oO8_KRRa8jKYjU45RnfVU3wudTHZxhVOtHC", + "status": "active", + "id": "EQBJV7x_mz-4-oO8_KRRa8jKYjU45RnfVU3wudTHZxhVOtHC", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/danaher-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBJV7x_mz-4-oO8_KRRa8jKYjU45RnfVU3wudTHZxhVOtHC/logo.png b/blockchains/ton/assets/EQBJV7x_mz-4-oO8_KRRa8jKYjU45RnfVU3wudTHZxhVOtHC/logo.png new file mode 100644 index 0000000000000..86532032c2284 Binary files /dev/null and b/blockchains/ton/assets/EQBJV7x_mz-4-oO8_KRRa8jKYjU45RnfVU3wudTHZxhVOtHC/logo.png differ diff --git a/blockchains/ton/assets/EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP/info.json b/blockchains/ton/assets/EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP/info.json new file mode 100644 index 0000000000000..7afe245c78903 --- /dev/null +++ b/blockchains/ton/assets/EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP", + "name": "Orbit Bridge Ton Kai Token", + "type": "JETTON", + "symbol": "KAI", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP", + "id": "EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP/logo.png b/blockchains/ton/assets/EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP/logo.png new file mode 100644 index 0000000000000..f8cda8555b24d Binary files /dev/null and b/blockchains/ton/assets/EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP/logo.png differ diff --git a/blockchains/ton/assets/EQBLlZZ0J5jePwk4IZSmx4ZMy7m9cQ-bviiQdCfClBNufg9A/info.json b/blockchains/ton/assets/EQBLlZZ0J5jePwk4IZSmx4ZMy7m9cQ-bviiQdCfClBNufg9A/info.json new file mode 100644 index 0000000000000..abd5e7345c937 --- /dev/null +++ b/blockchains/ton/assets/EQBLlZZ0J5jePwk4IZSmx4ZMy7m9cQ-bviiQdCfClBNufg9A/info.json @@ -0,0 +1,20 @@ +{ + "name": "Merck xStock", + "type": "JETTON", + "symbol": "MRKx", + "decimals": 8, + "description": "Merck xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQBLlZZ0J5jePwk4IZSmx4ZMy7m9cQ-bviiQdCfClBNufg9A", + "status": "active", + "id": "EQBLlZZ0J5jePwk4IZSmx4ZMy7m9cQ-bviiQdCfClBNufg9A", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/merck-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBLlZZ0J5jePwk4IZSmx4ZMy7m9cQ-bviiQdCfClBNufg9A/logo.png b/blockchains/ton/assets/EQBLlZZ0J5jePwk4IZSmx4ZMy7m9cQ-bviiQdCfClBNufg9A/logo.png new file mode 100644 index 0000000000000..d985b220afff3 Binary files /dev/null and b/blockchains/ton/assets/EQBLlZZ0J5jePwk4IZSmx4ZMy7m9cQ-bviiQdCfClBNufg9A/logo.png differ diff --git a/blockchains/ton/assets/EQBOkh_7Wk6FlQ6vR03S6BiT3obZ1189MGD16ug3M355Mapq/info.json b/blockchains/ton/assets/EQBOkh_7Wk6FlQ6vR03S6BiT3obZ1189MGD16ug3M355Mapq/info.json new file mode 100644 index 0000000000000..8f90e7aa87375 --- /dev/null +++ b/blockchains/ton/assets/EQBOkh_7Wk6FlQ6vR03S6BiT3obZ1189MGD16ug3M355Mapq/info.json @@ -0,0 +1,20 @@ +{ + "name": "Netflix xStock", + "type": "JETTON", + "symbol": "NFLXx", + "decimals": 8, + "description": "Netflix xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQBOkh_7Wk6FlQ6vR03S6BiT3obZ1189MGD16ug3M355Mapq", + "status": "active", + "id": "EQBOkh_7Wk6FlQ6vR03S6BiT3obZ1189MGD16ug3M355Mapq", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/netflix-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBOkh_7Wk6FlQ6vR03S6BiT3obZ1189MGD16ug3M355Mapq/logo.png b/blockchains/ton/assets/EQBOkh_7Wk6FlQ6vR03S6BiT3obZ1189MGD16ug3M355Mapq/logo.png new file mode 100644 index 0000000000000..903b2efea48b1 Binary files /dev/null and b/blockchains/ton/assets/EQBOkh_7Wk6FlQ6vR03S6BiT3obZ1189MGD16ug3M355Mapq/logo.png differ diff --git a/blockchains/ton/assets/EQBPZS63KxSpm0LthEGTCpuwoCmea-wVaQ_xFEahyPIXfDuI/info.json b/blockchains/ton/assets/EQBPZS63KxSpm0LthEGTCpuwoCmea-wVaQ_xFEahyPIXfDuI/info.json new file mode 100644 index 0000000000000..cb0e5153dc25d --- /dev/null +++ b/blockchains/ton/assets/EQBPZS63KxSpm0LthEGTCpuwoCmea-wVaQ_xFEahyPIXfDuI/info.json @@ -0,0 +1,15 @@ +{ + "name": "Strategy PP Fixed xStock", + "type": "JETTON", + "symbol": "STRKx", + "decimals": 8, + "description": "Strategy PP Fixed xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQBPZS63KxSpm0LthEGTCpuwoCmea-wVaQ_xFEahyPIXfDuI", + "status": "active", + "id": "EQBPZS63KxSpm0LthEGTCpuwoCmea-wVaQ_xFEahyPIXfDuI", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBPZS63KxSpm0LthEGTCpuwoCmea-wVaQ_xFEahyPIXfDuI/logo.png b/blockchains/ton/assets/EQBPZS63KxSpm0LthEGTCpuwoCmea-wVaQ_xFEahyPIXfDuI/logo.png new file mode 100644 index 0000000000000..1407faeca0e8c Binary files /dev/null and b/blockchains/ton/assets/EQBPZS63KxSpm0LthEGTCpuwoCmea-wVaQ_xFEahyPIXfDuI/logo.png differ diff --git a/blockchains/ton/assets/EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u/info.json b/blockchains/ton/assets/EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u/info.json new file mode 100644 index 0000000000000..2331534286d5f --- /dev/null +++ b/blockchains/ton/assets/EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u/info.json @@ -0,0 +1,18 @@ +{ + "address": "EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u", + "name": "FRAGMENT", + "type": "JETTON", + "symbol": "FRG", + "decimals": 9, + "description": "This token gives you the opportunity to be a member of Fragment Chat! @fragmentChat (https://t.me/fragmentChat)", + "status": "active", + "explorer": "https://tonscan.org/address/EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u", + "id": "EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u", + "website": "https://ton.app/chats/frgchat", + "links": [ + { + "name": "telegram", + "url": "https://t.me/fragmentChat" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u/logo.png b/blockchains/ton/assets/EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u/logo.png new file mode 100644 index 0000000000000..8bab713c9a029 Binary files /dev/null and b/blockchains/ton/assets/EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u/logo.png differ diff --git a/blockchains/ton/assets/EQBUtLkOu9vzKu3PW58c50WX7w89BtzwYYZlZGmvOr_Aq66U/info.json b/blockchains/ton/assets/EQBUtLkOu9vzKu3PW58c50WX7w89BtzwYYZlZGmvOr_Aq66U/info.json new file mode 100644 index 0000000000000..35c13216b35a7 --- /dev/null +++ b/blockchains/ton/assets/EQBUtLkOu9vzKu3PW58c50WX7w89BtzwYYZlZGmvOr_Aq66U/info.json @@ -0,0 +1,20 @@ +{ + "name": "McDonald's xStock", + "type": "JETTON", + "symbol": "MCDx", + "decimals": 8, + "description": "McDonald's xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQBUtLkOu9vzKu3PW58c50WX7w89BtzwYYZlZGmvOr_Aq66U", + "status": "active", + "id": "EQBUtLkOu9vzKu3PW58c50WX7w89BtzwYYZlZGmvOr_Aq66U", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mcdonald-s-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBUtLkOu9vzKu3PW58c50WX7w89BtzwYYZlZGmvOr_Aq66U/logo.png b/blockchains/ton/assets/EQBUtLkOu9vzKu3PW58c50WX7w89BtzwYYZlZGmvOr_Aq66U/logo.png new file mode 100644 index 0000000000000..23943fce25ada Binary files /dev/null and b/blockchains/ton/assets/EQBUtLkOu9vzKu3PW58c50WX7w89BtzwYYZlZGmvOr_Aq66U/logo.png differ diff --git a/blockchains/ton/assets/EQBV-ZOPN0sq_kAEUeGJ3QTvllV_ass2ed-wA5CNmjs7i55l/info.json b/blockchains/ton/assets/EQBV-ZOPN0sq_kAEUeGJ3QTvllV_ass2ed-wA5CNmjs7i55l/info.json new file mode 100644 index 0000000000000..d3e0702b29459 --- /dev/null +++ b/blockchains/ton/assets/EQBV-ZOPN0sq_kAEUeGJ3QTvllV_ass2ed-wA5CNmjs7i55l/info.json @@ -0,0 +1,20 @@ +{ + "name": "Oracle xStock", + "type": "JETTON", + "symbol": "ORCLx", + "decimals": 8, + "description": "Oracle xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQBV-ZOPN0sq_kAEUeGJ3QTvllV_ass2ed-wA5CNmjs7i55l", + "status": "active", + "id": "EQBV-ZOPN0sq_kAEUeGJ3QTvllV_ass2ed-wA5CNmjs7i55l", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/oracle-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBV-ZOPN0sq_kAEUeGJ3QTvllV_ass2ed-wA5CNmjs7i55l/logo.png b/blockchains/ton/assets/EQBV-ZOPN0sq_kAEUeGJ3QTvllV_ass2ed-wA5CNmjs7i55l/logo.png new file mode 100644 index 0000000000000..78ee2944b3c3e Binary files /dev/null and b/blockchains/ton/assets/EQBV-ZOPN0sq_kAEUeGJ3QTvllV_ass2ed-wA5CNmjs7i55l/logo.png differ diff --git a/blockchains/ton/assets/EQBWUD28L0CaFpHzFoYxifiNOUAnybaYSRL27i4fvOZNWUUx/info.json b/blockchains/ton/assets/EQBWUD28L0CaFpHzFoYxifiNOUAnybaYSRL27i4fvOZNWUUx/info.json new file mode 100644 index 0000000000000..168886b1105d9 --- /dev/null +++ b/blockchains/ton/assets/EQBWUD28L0CaFpHzFoYxifiNOUAnybaYSRL27i4fvOZNWUUx/info.json @@ -0,0 +1,20 @@ +{ + "name": "JPMorgan Chase xStock", + "type": "JETTON", + "symbol": "JPMx", + "decimals": 8, + "description": "JPMorgan Chase xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQBWUD28L0CaFpHzFoYxifiNOUAnybaYSRL27i4fvOZNWUUx", + "status": "active", + "id": "EQBWUD28L0CaFpHzFoYxifiNOUAnybaYSRL27i4fvOZNWUUx", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jpmorgan-chase-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBWUD28L0CaFpHzFoYxifiNOUAnybaYSRL27i4fvOZNWUUx/logo.png b/blockchains/ton/assets/EQBWUD28L0CaFpHzFoYxifiNOUAnybaYSRL27i4fvOZNWUUx/logo.png new file mode 100644 index 0000000000000..408eeb7537f04 Binary files /dev/null and b/blockchains/ton/assets/EQBWUD28L0CaFpHzFoYxifiNOUAnybaYSRL27i4fvOZNWUUx/logo.png differ diff --git a/blockchains/ton/assets/EQBXTskrXRkQQ9JO7EeaVXwCD_phnrzNg9EdN9263_ZETRJB/info.json b/blockchains/ton/assets/EQBXTskrXRkQQ9JO7EeaVXwCD_phnrzNg9EdN9263_ZETRJB/info.json new file mode 100644 index 0000000000000..428aebefdabfe --- /dev/null +++ b/blockchains/ton/assets/EQBXTskrXRkQQ9JO7EeaVXwCD_phnrzNg9EdN9263_ZETRJB/info.json @@ -0,0 +1,15 @@ +{ + "name": "Bit Digital xStock", + "type": "JETTON", + "symbol": "BTBTx", + "decimals": 8, + "description": "Bit Digital xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQBXTskrXRkQQ9JO7EeaVXwCD_phnrzNg9EdN9263_ZETRJB", + "status": "active", + "id": "EQBXTskrXRkQQ9JO7EeaVXwCD_phnrzNg9EdN9263_ZETRJB", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBXTskrXRkQQ9JO7EeaVXwCD_phnrzNg9EdN9263_ZETRJB/logo.png b/blockchains/ton/assets/EQBXTskrXRkQQ9JO7EeaVXwCD_phnrzNg9EdN9263_ZETRJB/logo.png new file mode 100644 index 0000000000000..30817f4fdb226 Binary files /dev/null and b/blockchains/ton/assets/EQBXTskrXRkQQ9JO7EeaVXwCD_phnrzNg9EdN9263_ZETRJB/logo.png differ diff --git a/blockchains/ton/assets/EQBZ_cafPyDr5KUTs0aNxh0ZTDhkpEZONmLJA2SNGlLm4Cko/info.json b/blockchains/ton/assets/EQBZ_cafPyDr5KUTs0aNxh0ZTDhkpEZONmLJA2SNGlLm4Cko/info.json new file mode 100644 index 0000000000000..f364f33b1d293 --- /dev/null +++ b/blockchains/ton/assets/EQBZ_cafPyDr5KUTs0aNxh0ZTDhkpEZONmLJA2SNGlLm4Cko/info.json @@ -0,0 +1,21 @@ +{ + "name": "Resistance Dog", + "website": "https://www.redoton.com/", + "description": "Pavel Durov Founder Of The Digital Resitance Dog - $REDO is a meme coin on the TON Blockchain.", + "explorer": "https://tonscan.org/ru/jetton/EQBZ_cafPyDr5KUTs0aNxh0ZTDhkpEZONmLJA2SNGlLm4Cko", + "type": "JETTON", + "symbol": "REDO", + "decimals": 9, + "status": "active", + "id": "EQBZ_cafPyDr5KUTs0aNxh0ZTDhkpEZONmLJA2SNGlLm4Cko", + "links": [ + { + "name": "x", + "url": "https://x.com/redotoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/resistance-dog/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBZ_cafPyDr5KUTs0aNxh0ZTDhkpEZONmLJA2SNGlLm4Cko/logo.png b/blockchains/ton/assets/EQBZ_cafPyDr5KUTs0aNxh0ZTDhkpEZONmLJA2SNGlLm4Cko/logo.png new file mode 100644 index 0000000000000..8338324895f60 Binary files /dev/null and b/blockchains/ton/assets/EQBZ_cafPyDr5KUTs0aNxh0ZTDhkpEZONmLJA2SNGlLm4Cko/logo.png differ diff --git a/blockchains/ton/assets/EQB_SUWvJqIyca5yEu0tc2TqWNRt8M8qmVYqZoDYdYqM8aK3/info.json b/blockchains/ton/assets/EQB_SUWvJqIyca5yEu0tc2TqWNRt8M8qmVYqZoDYdYqM8aK3/info.json new file mode 100644 index 0000000000000..921fde627a242 --- /dev/null +++ b/blockchains/ton/assets/EQB_SUWvJqIyca5yEu0tc2TqWNRt8M8qmVYqZoDYdYqM8aK3/info.json @@ -0,0 +1,20 @@ +{ + "name": "CrowdStrike xStock", + "type": "JETTON", + "symbol": "CRWDx", + "decimals": 8, + "description": "CrowdStrike xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQB_SUWvJqIyca5yEu0tc2TqWNRt8M8qmVYqZoDYdYqM8aK3", + "status": "active", + "id": "EQB_SUWvJqIyca5yEu0tc2TqWNRt8M8qmVYqZoDYdYqM8aK3", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crowdstrike-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQB_SUWvJqIyca5yEu0tc2TqWNRt8M8qmVYqZoDYdYqM8aK3/logo.png b/blockchains/ton/assets/EQB_SUWvJqIyca5yEu0tc2TqWNRt8M8qmVYqZoDYdYqM8aK3/logo.png new file mode 100644 index 0000000000000..b76bd9c264826 Binary files /dev/null and b/blockchains/ton/assets/EQB_SUWvJqIyca5yEu0tc2TqWNRt8M8qmVYqZoDYdYqM8aK3/logo.png differ diff --git a/blockchains/ton/assets/EQBaWrUZwQMcCEHZHf-dAFVhAWInbA7KJciM1W1aQxg4YT8I/info.json b/blockchains/ton/assets/EQBaWrUZwQMcCEHZHf-dAFVhAWInbA7KJciM1W1aQxg4YT8I/info.json new file mode 100644 index 0000000000000..ffdbcde3f1900 --- /dev/null +++ b/blockchains/ton/assets/EQBaWrUZwQMcCEHZHf-dAFVhAWInbA7KJciM1W1aQxg4YT8I/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bitget Wallet", + "type": "JETTON", + "symbol": "BWB", + "decimals": 9, + "website": "https://web3.bitget.com/en?source=bitget", + "description": "Bitget Wallet Token transferred from Ethereum via bridge.ton.org.", + "explorer": "https://tonscan.org/ru/jetton/EQBaWrUZwQMcCEHZHf-dAFVhAWInbA7KJciM1W1aQxg4YT8I", + "status": "active", + "id": "EQBaWrUZwQMcCEHZHf-dAFVhAWInbA7KJciM1W1aQxg4YT8I", + "links": [ + { + "name": "x", + "url": "https://x.com/BitgetWallet" + }, + { + "name": "telegram", + "url": "https://t.me/BitgetWalletLite_Announcement" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBaWrUZwQMcCEHZHf-dAFVhAWInbA7KJciM1W1aQxg4YT8I/logo.png b/blockchains/ton/assets/EQBaWrUZwQMcCEHZHf-dAFVhAWInbA7KJciM1W1aQxg4YT8I/logo.png new file mode 100644 index 0000000000000..10f49ff4ee469 Binary files /dev/null and b/blockchains/ton/assets/EQBaWrUZwQMcCEHZHf-dAFVhAWInbA7KJciM1W1aQxg4YT8I/logo.png differ diff --git a/blockchains/ton/assets/EQBbsLYH5sD74gYO4DOoj0QsHaNL81NLD13AdhkmD0Up-46H/info.json b/blockchains/ton/assets/EQBbsLYH5sD74gYO4DOoj0QsHaNL81NLD13AdhkmD0Up-46H/info.json new file mode 100644 index 0000000000000..2d47d482e501b --- /dev/null +++ b/blockchains/ton/assets/EQBbsLYH5sD74gYO4DOoj0QsHaNL81NLD13AdhkmD0Up-46H/info.json @@ -0,0 +1,20 @@ +{ + "name": "MicroStrategy xStock", + "type": "JETTON", + "symbol": "MSTRx", + "decimals": 8, + "description": "MicroStrategy xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQBbsLYH5sD74gYO4DOoj0QsHaNL81NLD13AdhkmD0Up-46H", + "status": "active", + "id": "EQBbsLYH5sD74gYO4DOoj0QsHaNL81NLD13AdhkmD0Up-46H", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/microstrategy-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBbsLYH5sD74gYO4DOoj0QsHaNL81NLD13AdhkmD0Up-46H/logo.png b/blockchains/ton/assets/EQBbsLYH5sD74gYO4DOoj0QsHaNL81NLD13AdhkmD0Up-46H/logo.png new file mode 100644 index 0000000000000..53c67cfef7929 Binary files /dev/null and b/blockchains/ton/assets/EQBbsLYH5sD74gYO4DOoj0QsHaNL81NLD13AdhkmD0Up-46H/logo.png differ diff --git a/blockchains/ton/assets/EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf/info.json b/blockchains/ton/assets/EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf/info.json new file mode 100644 index 0000000000000..08b8b267b9867 --- /dev/null +++ b/blockchains/ton/assets/EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf", + "name": "MEGA", + "type": "JETTON", + "symbol": "MEGA", + "decimals": 9, + "description": "Megaton Finance Token", + "status": "active", + "explorer": "https://tonscan.org/address/EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf", + "id": "EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf", + "website": "https://megaton.fi/", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf/logo.png b/blockchains/ton/assets/EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf/logo.png new file mode 100644 index 0000000000000..3cf611283b0c1 Binary files /dev/null and b/blockchains/ton/assets/EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf/logo.png differ diff --git a/blockchains/ton/assets/EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE/info.json b/blockchains/ton/assets/EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE/info.json new file mode 100644 index 0000000000000..285a612e0d48b --- /dev/null +++ b/blockchains/ton/assets/EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE/info.json @@ -0,0 +1,12 @@ +{ + "address": "EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE", + "name": "HEDGE coin", + "type": "JETTON", + "symbol": "HEDGE", + "decimals": 9, + "description": "The spirit of wall-street hedgehogs on a legendary blockchain", + "status": "active", + "explorer": "https://tonscan.org/address/EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE", + "id": "EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE", + "website": "https://t.me/tonhedgecoin" +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE/logo.png b/blockchains/ton/assets/EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE/logo.png new file mode 100644 index 0000000000000..a0ebb65efe146 Binary files /dev/null and b/blockchains/ton/assets/EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE/logo.png differ diff --git a/blockchains/ton/assets/EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA/info.json b/blockchains/ton/assets/EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA/info.json new file mode 100644 index 0000000000000..b0984a1397407 --- /dev/null +++ b/blockchains/ton/assets/EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA/info.json @@ -0,0 +1,12 @@ +{ + "address": "EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA", + "name": "Grabscape game token", + "type": "JETTON", + "symbol": "GRBS", + "decimals": 9, + "description": "The token was created for the game mechanics of the universe of the web3 Grabscape project", + "status": "active", + "explorer": "https://tonscan.org/address/EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA", + "id": "EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA", + "website": "https://grabscape.io/" +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA/logo.png b/blockchains/ton/assets/EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA/logo.png new file mode 100644 index 0000000000000..962ff40608b1f Binary files /dev/null and b/blockchains/ton/assets/EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA/logo.png differ diff --git a/blockchains/ton/assets/EQBkGq51pqJM8Lo_nkKY1QfbZm4z9-N-4MGE0l8kmw-BQ7rv/info.json b/blockchains/ton/assets/EQBkGq51pqJM8Lo_nkKY1QfbZm4z9-N-4MGE0l8kmw-BQ7rv/info.json new file mode 100644 index 0000000000000..cedefe3cfd36c --- /dev/null +++ b/blockchains/ton/assets/EQBkGq51pqJM8Lo_nkKY1QfbZm4z9-N-4MGE0l8kmw-BQ7rv/info.json @@ -0,0 +1,20 @@ +{ + "name": "Philip Morris xStock", + "type": "JETTON", + "symbol": "PMx", + "decimals": 8, + "description": "Philip Morris xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQBkGq51pqJM8Lo_nkKY1QfbZm4z9-N-4MGE0l8kmw-BQ7rv", + "status": "active", + "id": "EQBkGq51pqJM8Lo_nkKY1QfbZm4z9-N-4MGE0l8kmw-BQ7rv", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/philip-morris-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBkGq51pqJM8Lo_nkKY1QfbZm4z9-N-4MGE0l8kmw-BQ7rv/logo.png b/blockchains/ton/assets/EQBkGq51pqJM8Lo_nkKY1QfbZm4z9-N-4MGE0l8kmw-BQ7rv/logo.png new file mode 100644 index 0000000000000..2b243463c9216 Binary files /dev/null and b/blockchains/ton/assets/EQBkGq51pqJM8Lo_nkKY1QfbZm4z9-N-4MGE0l8kmw-BQ7rv/logo.png differ diff --git a/blockchains/ton/assets/EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9/info.json b/blockchains/ton/assets/EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9/info.json new file mode 100644 index 0000000000000..cb4c532f9d3d3 --- /dev/null +++ b/blockchains/ton/assets/EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9", + "name": "Orbit Bridge Ton apM Coin", + "type": "JETTON", + "symbol": "oAPM", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9", + "id": "EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9/logo.png b/blockchains/ton/assets/EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9/logo.png new file mode 100644 index 0000000000000..2c922532532fc Binary files /dev/null and b/blockchains/ton/assets/EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9/logo.png differ diff --git a/blockchains/ton/assets/EQBl3gg6AAdjgjO2ZoNU5Q5EzUIl8XMNZrix8Z5dJmkHUfxI/info.json b/blockchains/ton/assets/EQBl3gg6AAdjgjO2ZoNU5Q5EzUIl8XMNZrix8Z5dJmkHUfxI/info.json new file mode 100644 index 0000000000000..86a593ee1598b --- /dev/null +++ b/blockchains/ton/assets/EQBl3gg6AAdjgjO2ZoNU5Q5EzUIl8XMNZrix8Z5dJmkHUfxI/info.json @@ -0,0 +1,25 @@ +{ + "name": "Lavandos", + "type": "JETTON", + "symbol": "LAVE", + "decimals": 9, + "description": "This is a universal token for use in all areas of the decentralized Internet in the TON blockchain, web3, Telegram channels, TON sites, Tonkeeper. Issue of 4.6 billion coins. Telegram channels: @lave_eng, @lavetoken, @lavefoundation, @lave_esp, www.lavetoken.com", + "status": "active", + "explorer": "https://tonscan.org/address/EQBl3gg6AAdjgjO2ZoNU5Q5EzUIl8XMNZrix8Z5dJmkHUfxI", + "id": "EQBl3gg6AAdjgjO2ZoNU5Q5EzUIl8XMNZrix8Z5dJmkHUfxI", + "website": "https://lavetoken.com/", + "links": [ + { + "name": "telegram", + "url": "https://t.me/laveteam" + }, + { + "name": "telegram_news", + "url": "https://t.me/lavefoundation" + }, + { + "name": "x", + "url": "https://x.com/lave_token" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBl3gg6AAdjgjO2ZoNU5Q5EzUIl8XMNZrix8Z5dJmkHUfxI/logo.png b/blockchains/ton/assets/EQBl3gg6AAdjgjO2ZoNU5Q5EzUIl8XMNZrix8Z5dJmkHUfxI/logo.png new file mode 100644 index 0000000000000..7ae24f3f879d7 Binary files /dev/null and b/blockchains/ton/assets/EQBl3gg6AAdjgjO2ZoNU5Q5EzUIl8XMNZrix8Z5dJmkHUfxI/logo.png differ diff --git a/blockchains/ton/assets/EQBlBbYzAecI_SDSxLq77Inz4kbHfK5adAt_bW4SraykaQt-/info.json b/blockchains/ton/assets/EQBlBbYzAecI_SDSxLq77Inz4kbHfK5adAt_bW4SraykaQt-/info.json new file mode 100644 index 0000000000000..59775a41d24f6 --- /dev/null +++ b/blockchains/ton/assets/EQBlBbYzAecI_SDSxLq77Inz4kbHfK5adAt_bW4SraykaQt-/info.json @@ -0,0 +1,20 @@ +{ + "name": "AbbVie xStock", + "type": "JETTON", + "symbol": "ABBVx", + "decimals": 8, + "description": "AbbVie xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQBlBbYzAecI_SDSxLq77Inz4kbHfK5adAt_bW4SraykaQt-", + "status": "active", + "id": "EQBlBbYzAecI_SDSxLq77Inz4kbHfK5adAt_bW4SraykaQt-", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abbvie-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBlBbYzAecI_SDSxLq77Inz4kbHfK5adAt_bW4SraykaQt-/logo.png b/blockchains/ton/assets/EQBlBbYzAecI_SDSxLq77Inz4kbHfK5adAt_bW4SraykaQt-/logo.png new file mode 100644 index 0000000000000..a6ab744f4369f Binary files /dev/null and b/blockchains/ton/assets/EQBlBbYzAecI_SDSxLq77Inz4kbHfK5adAt_bW4SraykaQt-/logo.png differ diff --git a/blockchains/ton/assets/EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj/info.json b/blockchains/ton/assets/EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj/info.json new file mode 100644 index 0000000000000..92937a47658f4 --- /dev/null +++ b/blockchains/ton/assets/EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj/info.json @@ -0,0 +1,25 @@ +{ + "address": "EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj", + "name": "Kote Coin", + "type": "JETTON", + "symbol": "KOTE", + "decimals": 9, + "description": "Kote Coin. It's the only one.", + "status": "active", + "explorer": "https://tonscan.org/address/EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj", + "id": "EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj", + "website": "https://kotecoin.com/", + "links": [ + { + "name": "telegram", + "url": "https://t.me/KoteCoin" + }, + { + "name": "telegram_news", + "url": "https://t.me/KoteCoinRU" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj/logo.png b/blockchains/ton/assets/EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj/logo.png new file mode 100644 index 0000000000000..d7f49e3ceb096 Binary files /dev/null and b/blockchains/ton/assets/EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj/logo.png differ diff --git a/blockchains/ton/assets/EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE/info.json b/blockchains/ton/assets/EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE/info.json new file mode 100644 index 0000000000000..216ce60db46ef --- /dev/null +++ b/blockchains/ton/assets/EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE/info.json @@ -0,0 +1,29 @@ +{ + "address": "EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE", + "name": "Scaleton", + "type": "JETTON", + "symbol": "SCALE", + "decimals": 9, + "description": "SCALE is a utility token that will be used to support all independent developers.", + "status": "active", + "explorer": "https://tonscan.org/address/EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE", + "id": "EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE", + "website": "https://scaleton.io", + "links": [ + { + "name": "telegram", + "url": "https://t.me/Scaleton" + }, + { + "name": "x", + "url": "https://x.com/ScaletonCo" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/scaleton/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE/logo.png b/blockchains/ton/assets/EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE/logo.png new file mode 100644 index 0000000000000..31e775994454a Binary files /dev/null and b/blockchains/ton/assets/EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE/logo.png differ diff --git a/blockchains/ton/assets/EQBnt0vCnZVi2YdFkvgM5gXcxM2kyP0Uf4295iKOGCZRllsA/info.json b/blockchains/ton/assets/EQBnt0vCnZVi2YdFkvgM5gXcxM2kyP0Uf4295iKOGCZRllsA/info.json new file mode 100644 index 0000000000000..59161806a139b --- /dev/null +++ b/blockchains/ton/assets/EQBnt0vCnZVi2YdFkvgM5gXcxM2kyP0Uf4295iKOGCZRllsA/info.json @@ -0,0 +1,20 @@ +{ + "name": "Salesforce xStock", + "type": "JETTON", + "symbol": "CRMx", + "decimals": 8, + "description": "Salesforce xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQBnt0vCnZVi2YdFkvgM5gXcxM2kyP0Uf4295iKOGCZRllsA", + "status": "active", + "id": "EQBnt0vCnZVi2YdFkvgM5gXcxM2kyP0Uf4295iKOGCZRllsA", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/salesforce-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBnt0vCnZVi2YdFkvgM5gXcxM2kyP0Uf4295iKOGCZRllsA/logo.png b/blockchains/ton/assets/EQBnt0vCnZVi2YdFkvgM5gXcxM2kyP0Uf4295iKOGCZRllsA/logo.png new file mode 100644 index 0000000000000..d6ac8110a38b7 Binary files /dev/null and b/blockchains/ton/assets/EQBnt0vCnZVi2YdFkvgM5gXcxM2kyP0Uf4295iKOGCZRllsA/logo.png differ diff --git a/blockchains/ton/assets/EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX/info.json b/blockchains/ton/assets/EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX/info.json new file mode 100644 index 0000000000000..036b390fbfa6f --- /dev/null +++ b/blockchains/ton/assets/EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX", + "name": "Orbit Bridge Ton Matic Token", + "type": "JETTON", + "symbol": "oMATIC", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX", + "id": "EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX/logo.png b/blockchains/ton/assets/EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX/logo.png new file mode 100644 index 0000000000000..40cdc6a041b14 Binary files /dev/null and b/blockchains/ton/assets/EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX/logo.png differ diff --git a/blockchains/ton/assets/EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J/info.json b/blockchains/ton/assets/EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J/info.json new file mode 100644 index 0000000000000..bca99b79d1464 --- /dev/null +++ b/blockchains/ton/assets/EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J/info.json @@ -0,0 +1,18 @@ +{ + "address": "EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J", + "name": "Wallet Exchanger", + "type": "JETTON", + "symbol": "WEX", + "decimals": 9, + "description": "Crypto exchanger token Wallet Exchanger, based on the blockchain The Open Network", + "status": "active", + "explorer": "https://tonscan.org/address/EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J", + "id": "EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J", + "website": "https://t.me/WalletExplorerBot", + "links": [ + { + "name": "telegram", + "url": "https://t.me/WalletExplorerNews" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J/logo.png b/blockchains/ton/assets/EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J/logo.png new file mode 100644 index 0000000000000..2530203d0ec90 Binary files /dev/null and b/blockchains/ton/assets/EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J/logo.png differ diff --git a/blockchains/ton/assets/EQBxH3N3nBx_-HEvQ2bs2vrC-M6-WxgIJKl1NqaEVH1sE-CT/info.json b/blockchains/ton/assets/EQBxH3N3nBx_-HEvQ2bs2vrC-M6-WxgIJKl1NqaEVH1sE-CT/info.json new file mode 100644 index 0000000000000..73872b96360ac --- /dev/null +++ b/blockchains/ton/assets/EQBxH3N3nBx_-HEvQ2bs2vrC-M6-WxgIJKl1NqaEVH1sE-CT/info.json @@ -0,0 +1,21 @@ +{ + "name": "PiggyPiggyCoin", + "type": "JETTON", + "symbol": "PGC", + "decimals": 9, + "website": "https://t.me/PiggyPiggyofficialbot/game", + "description": "$PGC is the native token of PiggyPiggy, the first workplace simulation and social game launched on Telegram and TON.", + "explorer": "https://tonscan.org/ru/jetton/EQBxH3N3nBx_-HEvQ2bs2vrC-M6-WxgIJKl1NqaEVH1sE-CT", + "status": "active", + "id": "EQBxH3N3nBx_-HEvQ2bs2vrC-M6-WxgIJKl1NqaEVH1sE-CT", + "links": [ + { + "name": "x", + "url": "https://x.com/piggypiggygame" + }, + { + "name": "telegram", + "url": "https://t.me/PiggyPiggyofficialbot/game" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBxH3N3nBx_-HEvQ2bs2vrC-M6-WxgIJKl1NqaEVH1sE-CT/logo.png b/blockchains/ton/assets/EQBxH3N3nBx_-HEvQ2bs2vrC-M6-WxgIJKl1NqaEVH1sE-CT/logo.png new file mode 100644 index 0000000000000..6439b1a63b0c6 Binary files /dev/null and b/blockchains/ton/assets/EQBxH3N3nBx_-HEvQ2bs2vrC-M6-WxgIJKl1NqaEVH1sE-CT/logo.png differ diff --git a/blockchains/ton/assets/EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA/info.json b/blockchains/ton/assets/EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA/info.json new file mode 100644 index 0000000000000..577092befa8b0 --- /dev/null +++ b/blockchains/ton/assets/EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA/info.json @@ -0,0 +1,21 @@ +{ + "name": "TON Bridged USDT", + "website": "https://bridge.ton.org/", + "description": "Tether USD transferred from Ethereum via bridge.ton.org.", + "explorer": "https://tonscan.org/ru/jetton/EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA", + "type": "JETTON", + "symbol": "jUSDT", + "decimals": 6, + "status": "active", + "id": "EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA", + "links": [ + { + "name": "x", + "url": "https://x.com/tether_to" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/ton-bridged-usdt/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA/logo.png b/blockchains/ton/assets/EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA/logo.png new file mode 100644 index 0000000000000..d527902c3f229 Binary files /dev/null and b/blockchains/ton/assets/EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA/logo.png differ diff --git a/blockchains/ton/assets/EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ/info.json b/blockchains/ton/assets/EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ/info.json new file mode 100644 index 0000000000000..c06930c71b0e8 --- /dev/null +++ b/blockchains/ton/assets/EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ/info.json @@ -0,0 +1,30 @@ +{ + "address": "EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ", + "name": "KINGYTON", + "type": "JETTON", + "symbol": "KINGY", + "decimals": 9, + "description": "Is an ecosystem token in the TON blockchain with a large Telegram community.", + "status": "active", + "explorer": "https://tonscan.org/address/EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ", + "id": "EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ", + "website": "https://kingy.wtf", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kingyton/" + }, + { + "name": "telegram", + "url": "https://t.me/investkingyru" + }, + { + "name": "telegram_news", + "url": "https://t.me/investkingyru_en" + }, + { + "name": "x", + "url": "https://x.com/IKingyru" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ/logo.png b/blockchains/ton/assets/EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ/logo.png new file mode 100644 index 0000000000000..439a80819c15e Binary files /dev/null and b/blockchains/ton/assets/EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ/logo.png differ diff --git a/blockchains/ton/assets/EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY/info.json b/blockchains/ton/assets/EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY/info.json new file mode 100644 index 0000000000000..f2bf315909a03 --- /dev/null +++ b/blockchains/ton/assets/EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY", + "name": "ExCoin", + "type": "JETTON", + "symbol": "EXC", + "decimals": 0, + "description": "EXC is a financial service token in EXTON", + "status": "active", + "explorer": "https://tonscan.org/address/EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY", + "id": "EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY", + "website": "https://t.me/exc_coin", + "links": [ + { + "name": "telegram", + "url": "https://t.me/EXTON_SWAP_BOT" + }, + { + "name": "telegram_news", + "url": "https://t.me/yakovlev_serj" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY/logo.png b/blockchains/ton/assets/EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY/logo.png new file mode 100644 index 0000000000000..1dd358e16a027 Binary files /dev/null and b/blockchains/ton/assets/EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY/logo.png differ diff --git a/blockchains/ton/assets/EQC0gyePHOKu2qG8jfqc7wAIOOB-dVKfDeOiqXuCAsGzarL9/info.json b/blockchains/ton/assets/EQC0gyePHOKu2qG8jfqc7wAIOOB-dVKfDeOiqXuCAsGzarL9/info.json new file mode 100644 index 0000000000000..c2ca03419f543 --- /dev/null +++ b/blockchains/ton/assets/EQC0gyePHOKu2qG8jfqc7wAIOOB-dVKfDeOiqXuCAsGzarL9/info.json @@ -0,0 +1,15 @@ +{ + "name": "AMD xStock", + "type": "JETTON", + "symbol": "AMDx", + "decimals": 8, + "description": "AMD xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQC0gyePHOKu2qG8jfqc7wAIOOB-dVKfDeOiqXuCAsGzarL9", + "status": "active", + "id": "EQC0gyePHOKu2qG8jfqc7wAIOOB-dVKfDeOiqXuCAsGzarL9", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQC0gyePHOKu2qG8jfqc7wAIOOB-dVKfDeOiqXuCAsGzarL9/logo.png b/blockchains/ton/assets/EQC0gyePHOKu2qG8jfqc7wAIOOB-dVKfDeOiqXuCAsGzarL9/logo.png new file mode 100644 index 0000000000000..4e802b8335682 Binary files /dev/null and b/blockchains/ton/assets/EQC0gyePHOKu2qG8jfqc7wAIOOB-dVKfDeOiqXuCAsGzarL9/logo.png differ diff --git a/blockchains/ton/assets/EQC1IREDHMQYW_HUC1W4IAcaCmgqn3iTJxX_v4HEQXbVAoP8/info.json b/blockchains/ton/assets/EQC1IREDHMQYW_HUC1W4IAcaCmgqn3iTJxX_v4HEQXbVAoP8/info.json new file mode 100644 index 0000000000000..67435aed676a9 --- /dev/null +++ b/blockchains/ton/assets/EQC1IREDHMQYW_HUC1W4IAcaCmgqn3iTJxX_v4HEQXbVAoP8/info.json @@ -0,0 +1,20 @@ +{ + "name": "Pfizer xStock", + "type": "JETTON", + "symbol": "PFEx", + "decimals": 8, + "description": "Pfizer xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQC1IREDHMQYW_HUC1W4IAcaCmgqn3iTJxX_v4HEQXbVAoP8", + "status": "active", + "id": "EQC1IREDHMQYW_HUC1W4IAcaCmgqn3iTJxX_v4HEQXbVAoP8", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pfizer-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQC1IREDHMQYW_HUC1W4IAcaCmgqn3iTJxX_v4HEQXbVAoP8/logo.png b/blockchains/ton/assets/EQC1IREDHMQYW_HUC1W4IAcaCmgqn3iTJxX_v4HEQXbVAoP8/logo.png new file mode 100644 index 0000000000000..4b4b3feccd32c Binary files /dev/null and b/blockchains/ton/assets/EQC1IREDHMQYW_HUC1W4IAcaCmgqn3iTJxX_v4HEQXbVAoP8/logo.png differ diff --git a/blockchains/ton/assets/EQC2CUQqMJuVkO_ioXE9MvW9ckNBuxqFB7Xce7BgwFnWagem/info.json b/blockchains/ton/assets/EQC2CUQqMJuVkO_ioXE9MvW9ckNBuxqFB7Xce7BgwFnWagem/info.json new file mode 100644 index 0000000000000..6b1ebee89e59d --- /dev/null +++ b/blockchains/ton/assets/EQC2CUQqMJuVkO_ioXE9MvW9ckNBuxqFB7Xce7BgwFnWagem/info.json @@ -0,0 +1,21 @@ +{ + "name": "GOATS", + "type": "JETTON", + "symbol": "GOATS", + "decimals": 9, + "website": "https://ton.goatsbot.xyz/", + "description": "GOATS - A native Telegram Memefication Gaming Platform", + "explorer": "https://tonscan.org/ru/jetton/EQC2CUQqMJuVkO_ioXE9MvW9ckNBuxqFB7Xce7BgwFnWagem", + "status": "active", + "id": "EQC2CUQqMJuVkO_ioXE9MvW9ckNBuxqFB7Xce7BgwFnWagem", + "links": [ + { + "name": "x", + "url": "https://x.com/GOATS_immortal" + }, + { + "name": "telegram", + "url": "https://t.me/realgoats_channel" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQC2CUQqMJuVkO_ioXE9MvW9ckNBuxqFB7Xce7BgwFnWagem/logo.png b/blockchains/ton/assets/EQC2CUQqMJuVkO_ioXE9MvW9ckNBuxqFB7Xce7BgwFnWagem/logo.png new file mode 100644 index 0000000000000..64fc5d8a71a07 Binary files /dev/null and b/blockchains/ton/assets/EQC2CUQqMJuVkO_ioXE9MvW9ckNBuxqFB7Xce7BgwFnWagem/logo.png differ diff --git a/blockchains/ton/assets/EQC49j6vUmrarJzSOlZfNHYHoNEHX3__0oX1dZLEfE7Vyybe/info.json b/blockchains/ton/assets/EQC49j6vUmrarJzSOlZfNHYHoNEHX3__0oX1dZLEfE7Vyybe/info.json new file mode 100644 index 0000000000000..50df7335bb9a9 --- /dev/null +++ b/blockchains/ton/assets/EQC49j6vUmrarJzSOlZfNHYHoNEHX3__0oX1dZLEfE7Vyybe/info.json @@ -0,0 +1,20 @@ +{ + "name": "Gold xStock", + "type": "JETTON", + "symbol": "GLDx", + "decimals": 8, + "description": "Gold xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQC49j6vUmrarJzSOlZfNHYHoNEHX3__0oX1dZLEfE7Vyybe", + "status": "active", + "id": "EQC49j6vUmrarJzSOlZfNHYHoNEHX3__0oX1dZLEfE7Vyybe", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gold-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQC49j6vUmrarJzSOlZfNHYHoNEHX3__0oX1dZLEfE7Vyybe/logo.png b/blockchains/ton/assets/EQC49j6vUmrarJzSOlZfNHYHoNEHX3__0oX1dZLEfE7Vyybe/logo.png new file mode 100644 index 0000000000000..52e6642bf56f0 Binary files /dev/null and b/blockchains/ton/assets/EQC49j6vUmrarJzSOlZfNHYHoNEHX3__0oX1dZLEfE7Vyybe/logo.png differ diff --git a/blockchains/ton/assets/EQC4aTgTIycBGONrbP7vE75lRdVj-lyz8qYXc8jsMWZ2pEOv/info.json b/blockchains/ton/assets/EQC4aTgTIycBGONrbP7vE75lRdVj-lyz8qYXc8jsMWZ2pEOv/info.json new file mode 100644 index 0000000000000..4378b13304219 --- /dev/null +++ b/blockchains/ton/assets/EQC4aTgTIycBGONrbP7vE75lRdVj-lyz8qYXc8jsMWZ2pEOv/info.json @@ -0,0 +1,20 @@ +{ + "name": "Exxon Mobil xStock", + "type": "JETTON", + "symbol": "XOMx", + "decimals": 8, + "description": "Exxon Mobil xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQC4aTgTIycBGONrbP7vE75lRdVj-lyz8qYXc8jsMWZ2pEOv", + "status": "active", + "id": "EQC4aTgTIycBGONrbP7vE75lRdVj-lyz8qYXc8jsMWZ2pEOv", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/exxon-mobil-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQC4aTgTIycBGONrbP7vE75lRdVj-lyz8qYXc8jsMWZ2pEOv/logo.png b/blockchains/ton/assets/EQC4aTgTIycBGONrbP7vE75lRdVj-lyz8qYXc8jsMWZ2pEOv/logo.png new file mode 100644 index 0000000000000..21ed72e7b5ad6 Binary files /dev/null and b/blockchains/ton/assets/EQC4aTgTIycBGONrbP7vE75lRdVj-lyz8qYXc8jsMWZ2pEOv/logo.png differ diff --git a/blockchains/ton/assets/EQC5UZZAuR4MM3arEdJ6WWXfFeyESatfrDy12_7g_g0sqFK4/info.json b/blockchains/ton/assets/EQC5UZZAuR4MM3arEdJ6WWXfFeyESatfrDy12_7g_g0sqFK4/info.json new file mode 100644 index 0000000000000..0a0f5c20da5ab --- /dev/null +++ b/blockchains/ton/assets/EQC5UZZAuR4MM3arEdJ6WWXfFeyESatfrDy12_7g_g0sqFK4/info.json @@ -0,0 +1,20 @@ +{ + "name": "Visa xStock", + "type": "JETTON", + "symbol": "Vx", + "decimals": 8, + "description": "Visa xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQC5UZZAuR4MM3arEdJ6WWXfFeyESatfrDy12_7g_g0sqFK4", + "status": "active", + "id": "EQC5UZZAuR4MM3arEdJ6WWXfFeyESatfrDy12_7g_g0sqFK4", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/johnson-johnson-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQC5UZZAuR4MM3arEdJ6WWXfFeyESatfrDy12_7g_g0sqFK4/logo.png b/blockchains/ton/assets/EQC5UZZAuR4MM3arEdJ6WWXfFeyESatfrDy12_7g_g0sqFK4/logo.png new file mode 100644 index 0000000000000..21269313bbbbb Binary files /dev/null and b/blockchains/ton/assets/EQC5UZZAuR4MM3arEdJ6WWXfFeyESatfrDy12_7g_g0sqFK4/logo.png differ diff --git a/blockchains/ton/assets/EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4/info.json b/blockchains/ton/assets/EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4/info.json new file mode 100644 index 0000000000000..398632064ff39 --- /dev/null +++ b/blockchains/ton/assets/EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4", + "name": "Orbit Bridge Ton USD Coin", + "type": "JETTON", + "symbol": "oUSDC", + "decimals": 6, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4", + "id": "EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4/logo.png b/blockchains/ton/assets/EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4/logo.png new file mode 100644 index 0000000000000..956f9aa7a68af Binary files /dev/null and b/blockchains/ton/assets/EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4/logo.png differ diff --git a/blockchains/ton/assets/EQCAdgZJHUFLgtKA3IvJksZ1-IVxprgrdgx3pwl2dd0ZM4_9/info.json b/blockchains/ton/assets/EQCAdgZJHUFLgtKA3IvJksZ1-IVxprgrdgx3pwl2dd0ZM4_9/info.json new file mode 100644 index 0000000000000..66efbf1fca3c6 --- /dev/null +++ b/blockchains/ton/assets/EQCAdgZJHUFLgtKA3IvJksZ1-IVxprgrdgx3pwl2dd0ZM4_9/info.json @@ -0,0 +1,20 @@ +{ + "name": "Honeywell xStock", + "type": "JETTON", + "symbol": "HONx", + "decimals": 8, + "description": "Honeywell xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQCAdgZJHUFLgtKA3IvJksZ1-IVxprgrdgx3pwl2dd0ZM4_9", + "status": "active", + "id": "EQCAdgZJHUFLgtKA3IvJksZ1-IVxprgrdgx3pwl2dd0ZM4_9", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/honeywell-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCAdgZJHUFLgtKA3IvJksZ1-IVxprgrdgx3pwl2dd0ZM4_9/logo.png b/blockchains/ton/assets/EQCAdgZJHUFLgtKA3IvJksZ1-IVxprgrdgx3pwl2dd0ZM4_9/logo.png new file mode 100644 index 0000000000000..f5edd54dd6bd5 Binary files /dev/null and b/blockchains/ton/assets/EQCAdgZJHUFLgtKA3IvJksZ1-IVxprgrdgx3pwl2dd0ZM4_9/logo.png differ diff --git a/blockchains/ton/assets/EQCD7lrrxpOcq5A5R6nTLeF1kuIbl1BKCe5OnanGe3cB4FVB/info.json b/blockchains/ton/assets/EQCD7lrrxpOcq5A5R6nTLeF1kuIbl1BKCe5OnanGe3cB4FVB/info.json new file mode 100644 index 0000000000000..fc376469552b6 --- /dev/null +++ b/blockchains/ton/assets/EQCD7lrrxpOcq5A5R6nTLeF1kuIbl1BKCe5OnanGe3cB4FVB/info.json @@ -0,0 +1,21 @@ +{ + "name": "RabBitcoin", + "type": "JETTON", + "symbol": "RBTC", + "decimals": 9, + "website": "https://t.me/rocky_rabbit_bot", + "description": "RabBitcoin serves as the native token of the Rocky Rabbit platform, powering the Play-to-Earn ecosystem and enabling seamless in-game transactions and rewards.", + "explorer": "https://tonscan.org/ru/jetton/EQCD7lrrxpOcq5A5R6nTLeF1kuIbl1BKCe5OnanGe3cB4FVB", + "status": "active", + "id": "EQCD7lrrxpOcq5A5R6nTLeF1kuIbl1BKCe5OnanGe3cB4FVB", + "links": [ + { + "name": "x", + "url": "https://x.com/rockyrabbitio" + }, + { + "name": "telegram", + "url": "https://t.me/rockyrabbitio" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCD7lrrxpOcq5A5R6nTLeF1kuIbl1BKCe5OnanGe3cB4FVB/logo.png b/blockchains/ton/assets/EQCD7lrrxpOcq5A5R6nTLeF1kuIbl1BKCe5OnanGe3cB4FVB/logo.png new file mode 100644 index 0000000000000..00013a9f8b9e1 Binary files /dev/null and b/blockchains/ton/assets/EQCD7lrrxpOcq5A5R6nTLeF1kuIbl1BKCe5OnanGe3cB4FVB/logo.png differ diff --git a/blockchains/ton/assets/EQCEqz2x3-Ub_EO4Y5798NNoqKw1tP_tJ6b9y-X0C4uvs8Zf/info.json b/blockchains/ton/assets/EQCEqz2x3-Ub_EO4Y5798NNoqKw1tP_tJ6b9y-X0C4uvs8Zf/info.json new file mode 100644 index 0000000000000..7f997e73cfecc --- /dev/null +++ b/blockchains/ton/assets/EQCEqz2x3-Ub_EO4Y5798NNoqKw1tP_tJ6b9y-X0C4uvs8Zf/info.json @@ -0,0 +1,21 @@ +{ + "name": "WATCoin", + "type": "JETTON", + "symbol": "WAT", + "decimals": 9, + "website": "https://www.gamee.com/", + "description": "$WAT is a community-first token with an existing community of millions of daily active users.", + "explorer": "https://tonscan.org/ru/jetton/EQCEqz2x3-Ub_EO4Y5798NNoqKw1tP_tJ6b9y-X0C4uvs8Zf", + "status": "active", + "id": "EQCEqz2x3-Ub_EO4Y5798NNoqKw1tP_tJ6b9y-X0C4uvs8Zf", + "links": [ + { + "name": "x", + "url": "https://x.com/WatBird" + }, + { + "name": "telegram", + "url": "https://t.me/watcoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCEqz2x3-Ub_EO4Y5798NNoqKw1tP_tJ6b9y-X0C4uvs8Zf/logo.png b/blockchains/ton/assets/EQCEqz2x3-Ub_EO4Y5798NNoqKw1tP_tJ6b9y-X0C4uvs8Zf/logo.png new file mode 100644 index 0000000000000..69f51093bd7d5 Binary files /dev/null and b/blockchains/ton/assets/EQCEqz2x3-Ub_EO4Y5798NNoqKw1tP_tJ6b9y-X0C4uvs8Zf/logo.png differ diff --git a/blockchains/ton/assets/EQCGJ7KuKsFu3w-VmgGVUu5qHgxH0kQee3b9j5HTWi7QEko4/info.json b/blockchains/ton/assets/EQCGJ7KuKsFu3w-VmgGVUu5qHgxH0kQee3b9j5HTWi7QEko4/info.json new file mode 100644 index 0000000000000..417d5c03f6f7b --- /dev/null +++ b/blockchains/ton/assets/EQCGJ7KuKsFu3w-VmgGVUu5qHgxH0kQee3b9j5HTWi7QEko4/info.json @@ -0,0 +1,20 @@ +{ + "name": "AppLovin xStock", + "type": "JETTON", + "symbol": "APPx", + "decimals": 8, + "description": "AppLovin xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQCGJ7KuKsFu3w-VmgGVUu5qHgxH0kQee3b9j5HTWi7QEko4", + "status": "active", + "id": "EQCGJ7KuKsFu3w-VmgGVUu5qHgxH0kQee3b9j5HTWi7QEko4", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/applovin-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCGJ7KuKsFu3w-VmgGVUu5qHgxH0kQee3b9j5HTWi7QEko4/logo.png b/blockchains/ton/assets/EQCGJ7KuKsFu3w-VmgGVUu5qHgxH0kQee3b9j5HTWi7QEko4/logo.png new file mode 100644 index 0000000000000..81e69fc904522 Binary files /dev/null and b/blockchains/ton/assets/EQCGJ7KuKsFu3w-VmgGVUu5qHgxH0kQee3b9j5HTWi7QEko4/logo.png differ diff --git a/blockchains/ton/assets/EQCGOLDdW8rldaSAlCE9yJabqk2uRJz2PaH3CTRyP6VLVjXL/info.json b/blockchains/ton/assets/EQCGOLDdW8rldaSAlCE9yJabqk2uRJz2PaH3CTRyP6VLVjXL/info.json new file mode 100644 index 0000000000000..1d1e4db78fe9b --- /dev/null +++ b/blockchains/ton/assets/EQCGOLDdW8rldaSAlCE9yJabqk2uRJz2PaH3CTRyP6VLVjXL/info.json @@ -0,0 +1,20 @@ +{ + "name": "Palantir xStock", + "type": "JETTON", + "symbol": "PLTRx", + "decimals": 8, + "description": "Palantir xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQCGOLDdW8rldaSAlCE9yJabqk2uRJz2PaH3CTRyP6VLVjXL", + "status": "active", + "id": "EQCGOLDdW8rldaSAlCE9yJabqk2uRJz2PaH3CTRyP6VLVjXL", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/palantir-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCGOLDdW8rldaSAlCE9yJabqk2uRJz2PaH3CTRyP6VLVjXL/logo.png b/blockchains/ton/assets/EQCGOLDdW8rldaSAlCE9yJabqk2uRJz2PaH3CTRyP6VLVjXL/logo.png new file mode 100644 index 0000000000000..20a4cb2ad5a99 Binary files /dev/null and b/blockchains/ton/assets/EQCGOLDdW8rldaSAlCE9yJabqk2uRJz2PaH3CTRyP6VLVjXL/logo.png differ diff --git a/blockchains/ton/assets/EQCOjFsEGZGoXKvhi6JBjRGGNefPnaCE0kOOvOmQ0UEXTadV/info.json b/blockchains/ton/assets/EQCOjFsEGZGoXKvhi6JBjRGGNefPnaCE0kOOvOmQ0UEXTadV/info.json new file mode 100644 index 0000000000000..0101fbc46204f --- /dev/null +++ b/blockchains/ton/assets/EQCOjFsEGZGoXKvhi6JBjRGGNefPnaCE0kOOvOmQ0UEXTadV/info.json @@ -0,0 +1,21 @@ +{ + "name": "Avery Games", + "symbol": "AVERY", + "type": "JETTON", + "decimals": 6, + "description": "Avery Games is a game development initiative that integrates Web3 technology to enhance player experiences through true ownership, interoperability, and player empowerment.", + "website": "https://www.averyproject.io/", + "explorer": "https://tonscan.org/ru/jetton/EQCOjFsEGZGoXKvhi6JBjRGGNefPnaCE0kOOvOmQ0UEXTadV", + "status": "active", + "id": "EQCOjFsEGZGoXKvhi6JBjRGGNefPnaCE0kOOvOmQ0UEXTadV", + "links": [ + { + "name": "x", + "url": "https://x.com/AveryGames_offc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/avery-games/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCOjFsEGZGoXKvhi6JBjRGGNefPnaCE0kOOvOmQ0UEXTadV/logo.png b/blockchains/ton/assets/EQCOjFsEGZGoXKvhi6JBjRGGNefPnaCE0kOOvOmQ0UEXTadV/logo.png new file mode 100644 index 0000000000000..4d55f6cf1cb46 Binary files /dev/null and b/blockchains/ton/assets/EQCOjFsEGZGoXKvhi6JBjRGGNefPnaCE0kOOvOmQ0UEXTadV/logo.png differ diff --git a/blockchains/ton/assets/EQCP81yPC3yHTW_5Q1X8oPre0hFpziyXgRaRO1vO_uBmkW3s/info.json b/blockchains/ton/assets/EQCP81yPC3yHTW_5Q1X8oPre0hFpziyXgRaRO1vO_uBmkW3s/info.json new file mode 100644 index 0000000000000..bb985b5bd2d2b --- /dev/null +++ b/blockchains/ton/assets/EQCP81yPC3yHTW_5Q1X8oPre0hFpziyXgRaRO1vO_uBmkW3s/info.json @@ -0,0 +1,20 @@ +{ + "name": "Amber xStock", + "type": "JETTON", + "symbol": "AMBRx", + "decimals": 8, + "description": "Amber xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQCP81yPC3yHTW_5Q1X8oPre0hFpziyXgRaRO1vO_uBmkW3s", + "status": "active", + "id": "EQCP81yPC3yHTW_5Q1X8oPre0hFpziyXgRaRO1vO_uBmkW3s", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/amber-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCP81yPC3yHTW_5Q1X8oPre0hFpziyXgRaRO1vO_uBmkW3s/logo.png b/blockchains/ton/assets/EQCP81yPC3yHTW_5Q1X8oPre0hFpziyXgRaRO1vO_uBmkW3s/logo.png new file mode 100644 index 0000000000000..86fe45a844256 Binary files /dev/null and b/blockchains/ton/assets/EQCP81yPC3yHTW_5Q1X8oPre0hFpziyXgRaRO1vO_uBmkW3s/logo.png differ diff --git a/blockchains/ton/assets/EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC/info.json b/blockchains/ton/assets/EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC/info.json new file mode 100644 index 0000000000000..7046c6fb05354 --- /dev/null +++ b/blockchains/ton/assets/EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC/info.json @@ -0,0 +1,18 @@ +{ + "address": "EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC", + "name": "Tenere", + "type": "JETTON", + "symbol": "Tnr", + "decimals": 9, + "description": "Audiatur et altera pars. Universal Altcoin on Ton. @teneretoken . chat: @tenerechat", + "status": "active", + "explorer": "https://tonscan.org/address/EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC", + "id": "EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC", + "website": "https://t.me/teneretoken", + "links": [ + { + "name": "telegram", + "url": "https://t.me/tenerechat" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC/logo.png b/blockchains/ton/assets/EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC/logo.png new file mode 100644 index 0000000000000..462c3ec6762b1 Binary files /dev/null and b/blockchains/ton/assets/EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC/logo.png differ diff --git a/blockchains/ton/assets/EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz/info.json b/blockchains/ton/assets/EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz/info.json new file mode 100644 index 0000000000000..c26d224792e0a --- /dev/null +++ b/blockchains/ton/assets/EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz", + "name": "Find & Check", + "type": "JETTON", + "symbol": "FCK", + "decimals": 15, + "description": "The cornerstone of the Find & Check initiative within the TON ecosystem. Serving as the fuel of our unique set of analytical tools, FCK Token empowers the TON network users, catalyzes our initiatives, and opens up new possibilities for interaction with the blockchain. @FCKTokens, www.fck.dev ", + "status": "active", + "explorer": "https://tonscan.org/address/EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz", + "id": "EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz", + "website": "https://fck.dev", + "links": [ + { + "name": "telegram", + "url": "https://t.me/FCKTokens" + }, + { + "name": "x", + "url": "https://x.com/FCKFoundation" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz/logo.png b/blockchains/ton/assets/EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz/logo.png new file mode 100644 index 0000000000000..52234341752cd Binary files /dev/null and b/blockchains/ton/assets/EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz/logo.png differ diff --git a/blockchains/ton/assets/EQCQu9PwIhgX6oEY0U1U4QdKA5nB7gML_K1pyBJWVb6p2ZMr/info.json b/blockchains/ton/assets/EQCQu9PwIhgX6oEY0U1U4QdKA5nB7gML_K1pyBJWVb6p2ZMr/info.json new file mode 100644 index 0000000000000..0dae6a991ccfb --- /dev/null +++ b/blockchains/ton/assets/EQCQu9PwIhgX6oEY0U1U4QdKA5nB7gML_K1pyBJWVb6p2ZMr/info.json @@ -0,0 +1,20 @@ +{ + "name": "UnitedHealth xStock", + "type": "JETTON", + "symbol": "UNHx", + "decimals": 8, + "description": "UnitedHealth xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQCQu9PwIhgX6oEY0U1U4QdKA5nB7gML_K1pyBJWVb6p2ZMr", + "status": "active", + "id": "EQCQu9PwIhgX6oEY0U1U4QdKA5nB7gML_K1pyBJWVb6p2ZMr", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/unitedhealth-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCQu9PwIhgX6oEY0U1U4QdKA5nB7gML_K1pyBJWVb6p2ZMr/logo.png b/blockchains/ton/assets/EQCQu9PwIhgX6oEY0U1U4QdKA5nB7gML_K1pyBJWVb6p2ZMr/logo.png new file mode 100644 index 0000000000000..4b5abed43499d Binary files /dev/null and b/blockchains/ton/assets/EQCQu9PwIhgX6oEY0U1U4QdKA5nB7gML_K1pyBJWVb6p2ZMr/logo.png differ diff --git a/blockchains/ton/assets/EQCTT-C5J3dA_Wl3ceO4RlPv-guQ1qPJ6v-oJeyxrTfvqoXh/info.json b/blockchains/ton/assets/EQCTT-C5J3dA_Wl3ceO4RlPv-guQ1qPJ6v-oJeyxrTfvqoXh/info.json new file mode 100644 index 0000000000000..437d2191b7680 --- /dev/null +++ b/blockchains/ton/assets/EQCTT-C5J3dA_Wl3ceO4RlPv-guQ1qPJ6v-oJeyxrTfvqoXh/info.json @@ -0,0 +1,20 @@ +{ + "name": "PepsiCo xStock", + "type": "JETTON", + "symbol": "PEPx", + "decimals": 8, + "description": "PepsiCo xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQCTT-C5J3dA_Wl3ceO4RlPv-guQ1qPJ6v-oJeyxrTfvqoXh", + "status": "active", + "id": "EQCTT-C5J3dA_Wl3ceO4RlPv-guQ1qPJ6v-oJeyxrTfvqoXh", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pepsico-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCTT-C5J3dA_Wl3ceO4RlPv-guQ1qPJ6v-oJeyxrTfvqoXh/logo.png b/blockchains/ton/assets/EQCTT-C5J3dA_Wl3ceO4RlPv-guQ1qPJ6v-oJeyxrTfvqoXh/logo.png new file mode 100644 index 0000000000000..9cb31687ff5c9 Binary files /dev/null and b/blockchains/ton/assets/EQCTT-C5J3dA_Wl3ceO4RlPv-guQ1qPJ6v-oJeyxrTfvqoXh/logo.png differ diff --git a/blockchains/ton/assets/EQCUhAQRYFgDCs7sVR-ONi92SVL-NpOoH1qX0UiCQ-Dxerqh/info.json b/blockchains/ton/assets/EQCUhAQRYFgDCs7sVR-ONi92SVL-NpOoH1qX0UiCQ-Dxerqh/info.json new file mode 100644 index 0000000000000..424d09228e65f --- /dev/null +++ b/blockchains/ton/assets/EQCUhAQRYFgDCs7sVR-ONi92SVL-NpOoH1qX0UiCQ-Dxerqh/info.json @@ -0,0 +1,20 @@ +{ + "name": "Thermo Fisher xStock", + "type": "JETTON", + "symbol": "TMOx", + "decimals": 8, + "description": "Thermo Fisher xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQCUhAQRYFgDCs7sVR-ONi92SVL-NpOoH1qX0UiCQ-Dxerqh", + "status": "active", + "id": "EQCUhAQRYFgDCs7sVR-ONi92SVL-NpOoH1qX0UiCQ-Dxerqh", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/thermo-fisher-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCUhAQRYFgDCs7sVR-ONi92SVL-NpOoH1qX0UiCQ-Dxerqh/logo.png b/blockchains/ton/assets/EQCUhAQRYFgDCs7sVR-ONi92SVL-NpOoH1qX0UiCQ-Dxerqh/logo.png new file mode 100644 index 0000000000000..1951f3b4c8100 Binary files /dev/null and b/blockchains/ton/assets/EQCUhAQRYFgDCs7sVR-ONi92SVL-NpOoH1qX0UiCQ-Dxerqh/logo.png differ diff --git a/blockchains/ton/assets/EQCVmpJ_UkQBs_3O8atqOtSP-HvTKYmPG02C6Gc6fs7sMwAM/info.json b/blockchains/ton/assets/EQCVmpJ_UkQBs_3O8atqOtSP-HvTKYmPG02C6Gc6fs7sMwAM/info.json new file mode 100644 index 0000000000000..b0bce7da1ed97 --- /dev/null +++ b/blockchains/ton/assets/EQCVmpJ_UkQBs_3O8atqOtSP-HvTKYmPG02C6Gc6fs7sMwAM/info.json @@ -0,0 +1,15 @@ +{ + "name": "TON xStock", + "type": "JETTON", + "symbol": "TONXx", + "decimals": 8, + "description": "TON xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQCVmpJ_UkQBs_3O8atqOtSP-HvTKYmPG02C6Gc6fs7sMwAM", + "status": "active", + "id": "EQCVmpJ_UkQBs_3O8atqOtSP-HvTKYmPG02C6Gc6fs7sMwAM", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCVmpJ_UkQBs_3O8atqOtSP-HvTKYmPG02C6Gc6fs7sMwAM/logo.png b/blockchains/ton/assets/EQCVmpJ_UkQBs_3O8atqOtSP-HvTKYmPG02C6Gc6fs7sMwAM/logo.png new file mode 100644 index 0000000000000..0c6d1b728e68f Binary files /dev/null and b/blockchains/ton/assets/EQCVmpJ_UkQBs_3O8atqOtSP-HvTKYmPG02C6Gc6fs7sMwAM/logo.png differ diff --git a/blockchains/ton/assets/EQCY_xOUxnGsF91w0w3azMdk1SMdBKNr7kJedDWTZlQ13duK/info.json b/blockchains/ton/assets/EQCY_xOUxnGsF91w0w3azMdk1SMdBKNr7kJedDWTZlQ13duK/info.json new file mode 100644 index 0000000000000..29f21b9c05c95 --- /dev/null +++ b/blockchains/ton/assets/EQCY_xOUxnGsF91w0w3azMdk1SMdBKNr7kJedDWTZlQ13duK/info.json @@ -0,0 +1,15 @@ +{ + "name": "Strategy PP Variable xStock", + "type": "JETTON", + "symbol": "STRCx", + "decimals": 8, + "description": "Strategy PP Variable xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQCY_xOUxnGsF91w0w3azMdk1SMdBKNr7kJedDWTZlQ13duK", + "status": "active", + "id": "EQCY_xOUxnGsF91w0w3azMdk1SMdBKNr7kJedDWTZlQ13duK", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCY_xOUxnGsF91w0w3azMdk1SMdBKNr7kJedDWTZlQ13duK/logo.png b/blockchains/ton/assets/EQCY_xOUxnGsF91w0w3azMdk1SMdBKNr7kJedDWTZlQ13duK/logo.png new file mode 100644 index 0000000000000..1407faeca0e8c Binary files /dev/null and b/blockchains/ton/assets/EQCY_xOUxnGsF91w0w3azMdk1SMdBKNr7kJedDWTZlQ13duK/logo.png differ diff --git a/blockchains/ton/assets/EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw/info.json b/blockchains/ton/assets/EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw/info.json new file mode 100644 index 0000000000000..4c7afff9e594a --- /dev/null +++ b/blockchains/ton/assets/EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw", + "name": "Mars", + "type": "JETTON", + "symbol": "MARS", + "decimals": 9, + "description": "Mars Coin. Game TONPlanets.com", + "status": "active", + "explorer": "https://tonscan.org/address/EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw", + "id": "EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw", + "website": "https://tonplanets.com", + "links": [ + { + "name": "telegram", + "url": "https://t.me/TONPlanets" + }, + { + "name": "telegram_news", + "url": "https://t.me/TONPlanetsBot" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw/logo.png b/blockchains/ton/assets/EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw/logo.png new file mode 100644 index 0000000000000..e967fb23f1126 Binary files /dev/null and b/blockchains/ton/assets/EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw/logo.png differ diff --git a/blockchains/ton/assets/EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi/info.json b/blockchains/ton/assets/EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi/info.json new file mode 100644 index 0000000000000..fe874a9ad46be --- /dev/null +++ b/blockchains/ton/assets/EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi", + "name": "Orbit Bridge Ton USD Tether", + "type": "JETTON", + "symbol": "oUSDT", + "decimals": 6, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi", + "id": "EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi/logo.png b/blockchains/ton/assets/EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi/logo.png new file mode 100644 index 0000000000000..bb55902a38de0 Binary files /dev/null and b/blockchains/ton/assets/EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi/logo.png differ diff --git a/blockchains/ton/assets/EQC_2TSc-toKtn5psH4LFYZxtcMXEuNxEPH9RIXBxXW4zbh7/info.json b/blockchains/ton/assets/EQC_2TSc-toKtn5psH4LFYZxtcMXEuNxEPH9RIXBxXW4zbh7/info.json new file mode 100644 index 0000000000000..71c5e1e2b87a6 --- /dev/null +++ b/blockchains/ton/assets/EQC_2TSc-toKtn5psH4LFYZxtcMXEuNxEPH9RIXBxXW4zbh7/info.json @@ -0,0 +1,20 @@ +{ + "name": "Home Depot xStock", + "type": "JETTON", + "symbol": "HDx", + "decimals": 8, + "description": "Home Depot xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQC_2TSc-toKtn5psH4LFYZxtcMXEuNxEPH9RIXBxXW4zbh7", + "status": "active", + "id": "EQC_2TSc-toKtn5psH4LFYZxtcMXEuNxEPH9RIXBxXW4zbh7", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/home-depot-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQC_2TSc-toKtn5psH4LFYZxtcMXEuNxEPH9RIXBxXW4zbh7/logo.png b/blockchains/ton/assets/EQC_2TSc-toKtn5psH4LFYZxtcMXEuNxEPH9RIXBxXW4zbh7/logo.png new file mode 100644 index 0000000000000..1351af57506ae Binary files /dev/null and b/blockchains/ton/assets/EQC_2TSc-toKtn5psH4LFYZxtcMXEuNxEPH9RIXBxXW4zbh7/logo.png differ diff --git a/blockchains/ton/assets/EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C/info.json b/blockchains/ton/assets/EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C/info.json new file mode 100644 index 0000000000000..e6a747f8c4266 --- /dev/null +++ b/blockchains/ton/assets/EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C", + "name": "Wrapped TON", + "type": "JETTON", + "symbol": "WTON", + "decimals": 9, + "description": "Wrapped TON Coin", + "status": "active", + "explorer": "https://tonscan.org/address/EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C", + "id": "EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C", + "website": "https://megaton.fi/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C/logo.png b/blockchains/ton/assets/EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C/logo.png new file mode 100644 index 0000000000000..f70cefde9e2c8 Binary files /dev/null and b/blockchains/ton/assets/EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C/logo.png differ diff --git a/blockchains/ton/assets/EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV/info.json b/blockchains/ton/assets/EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV/info.json new file mode 100644 index 0000000000000..48bee6c9ee49b --- /dev/null +++ b/blockchains/ton/assets/EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV", + "name": "Ambra", + "type": "JETTON", + "symbol": "AMBR", + "decimals": 9, + "description": "The Whales Club Token", + "status": "active", + "explorer": "https://tonscan.org/address/EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV", + "id": "EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV", + "website": "https://tonwhales.com/", + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV/logo.png b/blockchains/ton/assets/EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV/logo.png new file mode 100644 index 0000000000000..176ee6a51b7d3 Binary files /dev/null and b/blockchains/ton/assets/EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV/logo.png differ diff --git a/blockchains/ton/assets/EQCe6utwqROmrO_cOUUvVNYkvyecUjfugtugvhUwlVYSEm7x/info.json b/blockchains/ton/assets/EQCe6utwqROmrO_cOUUvVNYkvyecUjfugtugvhUwlVYSEm7x/info.json new file mode 100644 index 0000000000000..426e1691b766e --- /dev/null +++ b/blockchains/ton/assets/EQCe6utwqROmrO_cOUUvVNYkvyecUjfugtugvhUwlVYSEm7x/info.json @@ -0,0 +1,20 @@ +{ + "name": "Nasdaq xStock", + "type": "JETTON", + "symbol": "QQQx", + "decimals": 8, + "description": "Nasdaq xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQCe6utwqROmrO_cOUUvVNYkvyecUjfugtugvhUwlVYSEm7x", + "status": "active", + "id": "EQCe6utwqROmrO_cOUUvVNYkvyecUjfugtugvhUwlVYSEm7x", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nasdaq-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCe6utwqROmrO_cOUUvVNYkvyecUjfugtugvhUwlVYSEm7x/logo.png b/blockchains/ton/assets/EQCe6utwqROmrO_cOUUvVNYkvyecUjfugtugvhUwlVYSEm7x/logo.png new file mode 100644 index 0000000000000..0be7e154785ec Binary files /dev/null and b/blockchains/ton/assets/EQCe6utwqROmrO_cOUUvVNYkvyecUjfugtugvhUwlVYSEm7x/logo.png differ diff --git a/blockchains/ton/assets/EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5/info.json b/blockchains/ton/assets/EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5/info.json new file mode 100644 index 0000000000000..a1b5c75f247a4 --- /dev/null +++ b/blockchains/ton/assets/EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5", + "name": "Orbit Bridge Ton Meshswap Protocol", + "type": "JETTON", + "symbol": "oMESH", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5", + "id": "EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5/logo.png b/blockchains/ton/assets/EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5/logo.png new file mode 100644 index 0000000000000..38699eab45211 Binary files /dev/null and b/blockchains/ton/assets/EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5/logo.png differ diff --git a/blockchains/ton/assets/EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ/info.json b/blockchains/ton/assets/EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ/info.json new file mode 100644 index 0000000000000..5cd62aa398d7f --- /dev/null +++ b/blockchains/ton/assets/EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ", + "name": "WEMIX", + "type": "JETTON", + "symbol": "oWEMIX", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ", + "id": "EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ/logo.png b/blockchains/ton/assets/EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ/logo.png new file mode 100644 index 0000000000000..b076f9345038c Binary files /dev/null and b/blockchains/ton/assets/EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ/logo.png differ diff --git a/blockchains/ton/assets/EQChEtBTqYzP3_VEAd-RGkxtnFHvZ-KPJVEBWdukdmweJOtX/info.json b/blockchains/ton/assets/EQChEtBTqYzP3_VEAd-RGkxtnFHvZ-KPJVEBWdukdmweJOtX/info.json new file mode 100644 index 0000000000000..9c8ea93abf385 --- /dev/null +++ b/blockchains/ton/assets/EQChEtBTqYzP3_VEAd-RGkxtnFHvZ-KPJVEBWdukdmweJOtX/info.json @@ -0,0 +1,20 @@ +{ + "name": "TQQQ xStock", + "type": "JETTON", + "symbol": "TQQQx", + "decimals": 8, + "description": "TQQQ xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQChEtBTqYzP3_VEAd-RGkxtnFHvZ-KPJVEBWdukdmweJOtX", + "status": "active", + "id": "EQChEtBTqYzP3_VEAd-RGkxtnFHvZ-KPJVEBWdukdmweJOtX", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tqqq-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQChEtBTqYzP3_VEAd-RGkxtnFHvZ-KPJVEBWdukdmweJOtX/logo.png b/blockchains/ton/assets/EQChEtBTqYzP3_VEAd-RGkxtnFHvZ-KPJVEBWdukdmweJOtX/logo.png new file mode 100644 index 0000000000000..09666400c7428 Binary files /dev/null and b/blockchains/ton/assets/EQChEtBTqYzP3_VEAd-RGkxtnFHvZ-KPJVEBWdukdmweJOtX/logo.png differ diff --git a/blockchains/ton/assets/EQCjpympW_XfYPOwuEw39P6wmlk8o6KtRo3kC_6pOVjxANCp/info.json b/blockchains/ton/assets/EQCjpympW_XfYPOwuEw39P6wmlk8o6KtRo3kC_6pOVjxANCp/info.json new file mode 100644 index 0000000000000..68c76b41621f8 --- /dev/null +++ b/blockchains/ton/assets/EQCjpympW_XfYPOwuEw39P6wmlk8o6KtRo3kC_6pOVjxANCp/info.json @@ -0,0 +1,20 @@ +{ + "name": "TBLL xStock", + "type": "JETTON", + "symbol": "TBLLx", + "decimals": 8, + "description": "TBLL xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQCjpympW_XfYPOwuEw39P6wmlk8o6KtRo3kC_6pOVjxANCp", + "status": "active", + "id": "EQCjpympW_XfYPOwuEw39P6wmlk8o6KtRo3kC_6pOVjxANCp", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tbll-tokenized-etf-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCjpympW_XfYPOwuEw39P6wmlk8o6KtRo3kC_6pOVjxANCp/logo.png b/blockchains/ton/assets/EQCjpympW_XfYPOwuEw39P6wmlk8o6KtRo3kC_6pOVjxANCp/logo.png new file mode 100644 index 0000000000000..303bb2ae64ebc Binary files /dev/null and b/blockchains/ton/assets/EQCjpympW_XfYPOwuEw39P6wmlk8o6KtRo3kC_6pOVjxANCp/logo.png differ diff --git a/blockchains/ton/assets/EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP/info.json b/blockchains/ton/assets/EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP/info.json new file mode 100644 index 0000000000000..95eb43f308067 --- /dev/null +++ b/blockchains/ton/assets/EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP/info.json @@ -0,0 +1,11 @@ +{ + "address": "EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP", + "name": "Cock Fights Token", + "type": "JETTON", + "symbol": "CFT", + "decimals": 9, + "description": "Cock Fights Game Token", + "status": "active", + "explorer": "https://tonscan.org/address/EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP", + "id": "EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP" +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP/logo.png b/blockchains/ton/assets/EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP/logo.png new file mode 100644 index 0000000000000..b06b455fcc7e9 Binary files /dev/null and b/blockchains/ton/assets/EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP/logo.png differ diff --git a/blockchains/ton/assets/EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR/info.json b/blockchains/ton/assets/EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR/info.json new file mode 100644 index 0000000000000..7beeded2a03b1 --- /dev/null +++ b/blockchains/ton/assets/EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR", + "name": "Orbit Bridge Ton Azit", + "type": "JETTON", + "symbol": "oAZIT", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR", + "id": "EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR/logo.png b/blockchains/ton/assets/EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR/logo.png new file mode 100644 index 0000000000000..84ee028f1ae56 Binary files /dev/null and b/blockchains/ton/assets/EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR/logo.png differ diff --git a/blockchains/ton/assets/EQCnl2OY988NaIzHl6VoH0GsVZzx70xJAXUPfN50sjVAtDk0/info.json b/blockchains/ton/assets/EQCnl2OY988NaIzHl6VoH0GsVZzx70xJAXUPfN50sjVAtDk0/info.json new file mode 100644 index 0000000000000..9a76dd7697669 --- /dev/null +++ b/blockchains/ton/assets/EQCnl2OY988NaIzHl6VoH0GsVZzx70xJAXUPfN50sjVAtDk0/info.json @@ -0,0 +1,15 @@ +{ + "name": "S&P Small Cap xStock", + "type": "JETTON", + "symbol": "IJRx", + "decimals": 8, + "description": "S&P Small Cap xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQCnl2OY988NaIzHl6VoH0GsVZzx70xJAXUPfN50sjVAtDk0", + "status": "active", + "id": "EQCnl2OY988NaIzHl6VoH0GsVZzx70xJAXUPfN50sjVAtDk0", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCnl2OY988NaIzHl6VoH0GsVZzx70xJAXUPfN50sjVAtDk0/logo.png b/blockchains/ton/assets/EQCnl2OY988NaIzHl6VoH0GsVZzx70xJAXUPfN50sjVAtDk0/logo.png new file mode 100644 index 0000000000000..d5c48229001bc Binary files /dev/null and b/blockchains/ton/assets/EQCnl2OY988NaIzHl6VoH0GsVZzx70xJAXUPfN50sjVAtDk0/logo.png differ diff --git a/blockchains/ton/assets/EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI/info.json b/blockchains/ton/assets/EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI/info.json new file mode 100644 index 0000000000000..a5a80ffd0cc52 --- /dev/null +++ b/blockchains/ton/assets/EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI", + "name": "Crumb Coin", + "type": "JETTON", + "symbol": "CRUMB", + "decimals": 9, + "description": "Crumb Coin (CRUMB) is a token used in the BRAD x Totkit ecosystem", + "status": "active", + "explorer": "https://tonscan.org/address/EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI", + "id": "EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI", + "website": "https://tonbrad.com", + "links": [ + { + "name": "telegram", + "url": "https://t.me/brad_nft_ton" + }, + { + "name": "telegram_news", + "url": "https://t.me/totkitnews" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI/logo.png b/blockchains/ton/assets/EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI/logo.png new file mode 100644 index 0000000000000..f16bd0ec5cc82 Binary files /dev/null and b/blockchains/ton/assets/EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI/logo.png differ diff --git a/blockchains/ton/assets/EQCpSKh0bO8zr5M6Qnk5lVUaUKwEsSsjE-X29PxYhhnEj48I/info.json b/blockchains/ton/assets/EQCpSKh0bO8zr5M6Qnk5lVUaUKwEsSsjE-X29PxYhhnEj48I/info.json new file mode 100644 index 0000000000000..342e09f66f3fa --- /dev/null +++ b/blockchains/ton/assets/EQCpSKh0bO8zr5M6Qnk5lVUaUKwEsSsjE-X29PxYhhnEj48I/info.json @@ -0,0 +1,15 @@ +{ + "name": "Russell 2000 xStock", + "type": "JETTON", + "symbol": "IWMx", + "decimals": 8, + "description": "Russell 2000 xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQCpSKh0bO8zr5M6Qnk5lVUaUKwEsSsjE-X29PxYhhnEj48I", + "status": "active", + "id": "EQCpSKh0bO8zr5M6Qnk5lVUaUKwEsSsjE-X29PxYhhnEj48I", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCpSKh0bO8zr5M6Qnk5lVUaUKwEsSsjE-X29PxYhhnEj48I/logo.png b/blockchains/ton/assets/EQCpSKh0bO8zr5M6Qnk5lVUaUKwEsSsjE-X29PxYhhnEj48I/logo.png new file mode 100644 index 0000000000000..857fe69020c3c Binary files /dev/null and b/blockchains/ton/assets/EQCpSKh0bO8zr5M6Qnk5lVUaUKwEsSsjE-X29PxYhhnEj48I/logo.png differ diff --git a/blockchains/ton/assets/EQCqnhZndBGbwjPpV8K_8WOK58ZkQPXlS_bshau9DKWnAF-p/info.json b/blockchains/ton/assets/EQCqnhZndBGbwjPpV8K_8WOK58ZkQPXlS_bshau9DKWnAF-p/info.json new file mode 100644 index 0000000000000..68ce8d15042aa --- /dev/null +++ b/blockchains/ton/assets/EQCqnhZndBGbwjPpV8K_8WOK58ZkQPXlS_bshau9DKWnAF-p/info.json @@ -0,0 +1,21 @@ +{ + "name": "GAMEE Token", + "website": "https://token.gamee.com", + "description": "The GAMEE Token is an ERC-20 utility token that is designed to be the currency of purchase, utility and reward in supported play-to-earn games provided on the GAMEE entertainment platform.", + "explorer": "https://tonscan.org/ru/jetton/EQCqnhZndBGbwjPpV8K_8WOK58ZkQPXlS_bshau9DKWnAF-p", + "type": "JETTON", + "symbol": "GMEE", + "decimals": 18, + "status": "active", + "id": "EQCqnhZndBGbwjPpV8K_8WOK58ZkQPXlS_bshau9DKWnAF-p", + "links": [ + { + "name": "x", + "url": "https://x.com/gameetoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/gamee/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCqnhZndBGbwjPpV8K_8WOK58ZkQPXlS_bshau9DKWnAF-p/logo.png b/blockchains/ton/assets/EQCqnhZndBGbwjPpV8K_8WOK58ZkQPXlS_bshau9DKWnAF-p/logo.png new file mode 100644 index 0000000000000..34493c551b694 Binary files /dev/null and b/blockchains/ton/assets/EQCqnhZndBGbwjPpV8K_8WOK58ZkQPXlS_bshau9DKWnAF-p/logo.png differ diff --git a/blockchains/ton/assets/EQCs2MdnhKHpTjuvmiSb9H1FqdQtd1so6AB1WMMr933q3V-G/info.json b/blockchains/ton/assets/EQCs2MdnhKHpTjuvmiSb9H1FqdQtd1so6AB1WMMr933q3V-G/info.json new file mode 100644 index 0000000000000..9cd0073a4f0f7 --- /dev/null +++ b/blockchains/ton/assets/EQCs2MdnhKHpTjuvmiSb9H1FqdQtd1so6AB1WMMr933q3V-G/info.json @@ -0,0 +1,20 @@ +{ + "name": "Medtronic xStock", + "type": "JETTON", + "symbol": "MDTx", + "decimals": 8, + "description": "Medtronic xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQCs2MdnhKHpTjuvmiSb9H1FqdQtd1so6AB1WMMr933q3V-G", + "status": "active", + "id": "EQCs2MdnhKHpTjuvmiSb9H1FqdQtd1so6AB1WMMr933q3V-G", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/medtronic-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCs2MdnhKHpTjuvmiSb9H1FqdQtd1so6AB1WMMr933q3V-G/logo.png b/blockchains/ton/assets/EQCs2MdnhKHpTjuvmiSb9H1FqdQtd1so6AB1WMMr933q3V-G/logo.png new file mode 100644 index 0000000000000..caac6aa5ef103 Binary files /dev/null and b/blockchains/ton/assets/EQCs2MdnhKHpTjuvmiSb9H1FqdQtd1so6AB1WMMr933q3V-G/logo.png differ diff --git a/blockchains/ton/assets/EQCtD2-7qxHhQoNhxri2JSzH-dlmWqKYCDtlEZqRi3-56gd9/info.json b/blockchains/ton/assets/EQCtD2-7qxHhQoNhxri2JSzH-dlmWqKYCDtlEZqRi3-56gd9/info.json new file mode 100644 index 0000000000000..35683a330f6a9 --- /dev/null +++ b/blockchains/ton/assets/EQCtD2-7qxHhQoNhxri2JSzH-dlmWqKYCDtlEZqRi3-56gd9/info.json @@ -0,0 +1,20 @@ +{ + "name": "Amazon xStock", + "type": "JETTON", + "symbol": "AMZNx", + "decimals": 8, + "description": "Amazon.com xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQCtD2-7qxHhQoNhxri2JSzH-dlmWqKYCDtlEZqRi3-56gd9", + "status": "active", + "id": "EQCtD2-7qxHhQoNhxri2JSzH-dlmWqKYCDtlEZqRi3-56gd9", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/amazon-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCtD2-7qxHhQoNhxri2JSzH-dlmWqKYCDtlEZqRi3-56gd9/logo.png b/blockchains/ton/assets/EQCtD2-7qxHhQoNhxri2JSzH-dlmWqKYCDtlEZqRi3-56gd9/logo.png new file mode 100644 index 0000000000000..8a519a3597972 Binary files /dev/null and b/blockchains/ton/assets/EQCtD2-7qxHhQoNhxri2JSzH-dlmWqKYCDtlEZqRi3-56gd9/logo.png differ diff --git a/blockchains/ton/assets/EQCtafvoSrJ6kaNWpOazO1MLLTIyUSIR_52CJGVCcIXriDkU/info.json b/blockchains/ton/assets/EQCtafvoSrJ6kaNWpOazO1MLLTIyUSIR_52CJGVCcIXriDkU/info.json new file mode 100644 index 0000000000000..939e21e776291 --- /dev/null +++ b/blockchains/ton/assets/EQCtafvoSrJ6kaNWpOazO1MLLTIyUSIR_52CJGVCcIXriDkU/info.json @@ -0,0 +1,20 @@ +{ + "name": "Goldman Sachs xStock", + "type": "JETTON", + "symbol": "GSx", + "decimals": 8, + "description": "Goldman Sachs xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQCtafvoSrJ6kaNWpOazO1MLLTIyUSIR_52CJGVCcIXriDkU", + "status": "active", + "id": "EQCtafvoSrJ6kaNWpOazO1MLLTIyUSIR_52CJGVCcIXriDkU", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/goldman-sachs-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCtafvoSrJ6kaNWpOazO1MLLTIyUSIR_52CJGVCcIXriDkU/logo.png b/blockchains/ton/assets/EQCtafvoSrJ6kaNWpOazO1MLLTIyUSIR_52CJGVCcIXriDkU/logo.png new file mode 100644 index 0000000000000..bfb353875f93b Binary files /dev/null and b/blockchains/ton/assets/EQCtafvoSrJ6kaNWpOazO1MLLTIyUSIR_52CJGVCcIXriDkU/logo.png differ diff --git a/blockchains/ton/assets/EQCuPm01HldiduQ55xaBF_1kaW_WAUy5DHey8suqzU_MAJOR/info.json b/blockchains/ton/assets/EQCuPm01HldiduQ55xaBF_1kaW_WAUy5DHey8suqzU_MAJOR/info.json new file mode 100644 index 0000000000000..8a04257b84dcd --- /dev/null +++ b/blockchains/ton/assets/EQCuPm01HldiduQ55xaBF_1kaW_WAUy5DHey8suqzU_MAJOR/info.json @@ -0,0 +1,21 @@ +{ + "name": "Major", + "type": "JETTON", + "symbol": "MAJOR", + "decimals": 9, + "website": "https://major.bot/", + "description": "Become a Major of Telegram. Complete tasks and earn TON.", + "explorer": "https://tonscan.org/ru/jetton/EQCuPm01HldiduQ55xaBF_1kaW_WAUy5DHey8suqzU_MAJOR", + "status": "active", + "id": "EQCuPm01HldiduQ55xaBF_1kaW_WAUy5DHey8suqzU_MAJOR", + "links": [ + { + "name": "x", + "url": "https://x.com/majoroftelegram" + }, + { + "name": "telegram", + "url": "https://t.me/majors" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCuPm01HldiduQ55xaBF_1kaW_WAUy5DHey8suqzU_MAJOR/logo.png b/blockchains/ton/assets/EQCuPm01HldiduQ55xaBF_1kaW_WAUy5DHey8suqzU_MAJOR/logo.png new file mode 100644 index 0000000000000..05395389e6b16 Binary files /dev/null and b/blockchains/ton/assets/EQCuPm01HldiduQ55xaBF_1kaW_WAUy5DHey8suqzU_MAJOR/logo.png differ diff --git a/blockchains/ton/assets/EQCva-Of7acQdU_piADdlcbzsFtA-xJwZoctz8ZOXBdBoaB8/info.json b/blockchains/ton/assets/EQCva-Of7acQdU_piADdlcbzsFtA-xJwZoctz8ZOXBdBoaB8/info.json new file mode 100644 index 0000000000000..14957ceccb1cc --- /dev/null +++ b/blockchains/ton/assets/EQCva-Of7acQdU_piADdlcbzsFtA-xJwZoctz8ZOXBdBoaB8/info.json @@ -0,0 +1,20 @@ +{ + "name": "NVIDIA xStock", + "type": "JETTON", + "symbol": "NVDAx", + "decimals": 8, + "description": "NVIDIA xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQCva-Of7acQdU_piADdlcbzsFtA-xJwZoctz8ZOXBdBoaB8", + "status": "active", + "id": "EQCva-Of7acQdU_piADdlcbzsFtA-xJwZoctz8ZOXBdBoaB8", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nvidia-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCva-Of7acQdU_piADdlcbzsFtA-xJwZoctz8ZOXBdBoaB8/logo.png b/blockchains/ton/assets/EQCva-Of7acQdU_piADdlcbzsFtA-xJwZoctz8ZOXBdBoaB8/logo.png new file mode 100644 index 0000000000000..5846ce5c5859d Binary files /dev/null and b/blockchains/ton/assets/EQCva-Of7acQdU_piADdlcbzsFtA-xJwZoctz8ZOXBdBoaB8/logo.png differ diff --git a/blockchains/ton/assets/EQCvaf0JMrv6BOvPpAgee08uQM_uRpUd__fhA7Nm8twzvbE_/info.json b/blockchains/ton/assets/EQCvaf0JMrv6BOvPpAgee08uQM_uRpUd__fhA7Nm8twzvbE_/info.json new file mode 100644 index 0000000000000..600419ff9a617 --- /dev/null +++ b/blockchains/ton/assets/EQCvaf0JMrv6BOvPpAgee08uQM_uRpUd__fhA7Nm8twzvbE_/info.json @@ -0,0 +1,21 @@ +{ + "name": "TonUP", + "website": "https://tonup.io/", + "description": "$UP is the native token of TonUP.", + "explorer": "https://tonscan.org/ru/jetton/EQCvaf0JMrv6BOvPpAgee08uQM_uRpUd__fhA7Nm8twzvbE_", + "type": "JETTON", + "symbol": "UP", + "decimals": 9, + "status": "active", + "id": "EQCvaf0JMrv6BOvPpAgee08uQM_uRpUd__fhA7Nm8twzvbE_", + "links": [ + { + "name": "x", + "url": "https://x.com/TonUP_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/tonup/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCvaf0JMrv6BOvPpAgee08uQM_uRpUd__fhA7Nm8twzvbE_/logo.png b/blockchains/ton/assets/EQCvaf0JMrv6BOvPpAgee08uQM_uRpUd__fhA7Nm8twzvbE_/logo.png new file mode 100644 index 0000000000000..9a747d53c638c Binary files /dev/null and b/blockchains/ton/assets/EQCvaf0JMrv6BOvPpAgee08uQM_uRpUd__fhA7Nm8twzvbE_/logo.png differ diff --git a/blockchains/ton/assets/EQCvk4Oq2l5Yts_S7Q4j08fB9Ftzx3IY-7UI1AqssyKGDt_I/info.json b/blockchains/ton/assets/EQCvk4Oq2l5Yts_S7Q4j08fB9Ftzx3IY-7UI1AqssyKGDt_I/info.json new file mode 100644 index 0000000000000..2c1e7174e8c22 --- /dev/null +++ b/blockchains/ton/assets/EQCvk4Oq2l5Yts_S7Q4j08fB9Ftzx3IY-7UI1AqssyKGDt_I/info.json @@ -0,0 +1,20 @@ +{ + "name": "Coinbase xStock", + "type": "JETTON", + "symbol": "COINx", + "decimals": 8, + "description": "Coinbase xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQCvk4Oq2l5Yts_S7Q4j08fB9Ftzx3IY-7UI1AqssyKGDt_I", + "status": "active", + "id": "EQCvk4Oq2l5Yts_S7Q4j08fB9Ftzx3IY-7UI1AqssyKGDt_I", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coinbase-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCvk4Oq2l5Yts_S7Q4j08fB9Ftzx3IY-7UI1AqssyKGDt_I/logo.png b/blockchains/ton/assets/EQCvk4Oq2l5Yts_S7Q4j08fB9Ftzx3IY-7UI1AqssyKGDt_I/logo.png new file mode 100644 index 0000000000000..3ff644e16ddd5 Binary files /dev/null and b/blockchains/ton/assets/EQCvk4Oq2l5Yts_S7Q4j08fB9Ftzx3IY-7UI1AqssyKGDt_I/logo.png differ diff --git a/blockchains/ton/assets/EQCvxJy4eG8hyHBFsZ7eePxrRsUQSFE_jpptRAYBmcG_DOGS/info.json b/blockchains/ton/assets/EQCvxJy4eG8hyHBFsZ7eePxrRsUQSFE_jpptRAYBmcG_DOGS/info.json new file mode 100644 index 0000000000000..b49ffa4bcb771 --- /dev/null +++ b/blockchains/ton/assets/EQCvxJy4eG8hyHBFsZ7eePxrRsUQSFE_jpptRAYBmcG_DOGS/info.json @@ -0,0 +1,21 @@ +{ + "name": "DOGS", + "website": "https://t.me/dogshouse_bot", + "description": "Dogs Community is a vibrant, community-driven initiative built on the TON Blockchain, designed to leverage Telegram's vast user base and native meme culture", + "explorer": "https://tonscan.org/jetton/EQCvxJy4eG8hyHBFsZ7eePxrRsUQSFE_jpptRAYBmcG_DOGS", + "type": "JETTON", + "symbol": "DOGS", + "decimals": 9, + "status": "active", + "id": "EQCvxJy4eG8hyHBFsZ7eePxrRsUQSFE_jpptRAYBmcG_DOGS", + "links": [ + { + "name": "x", + "url": "https://x.com/realDogsHouse" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dogs/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCvxJy4eG8hyHBFsZ7eePxrRsUQSFE_jpptRAYBmcG_DOGS/logo.png b/blockchains/ton/assets/EQCvxJy4eG8hyHBFsZ7eePxrRsUQSFE_jpptRAYBmcG_DOGS/logo.png new file mode 100644 index 0000000000000..a3e5ad286fbfa Binary files /dev/null and b/blockchains/ton/assets/EQCvxJy4eG8hyHBFsZ7eePxrRsUQSFE_jpptRAYBmcG_DOGS/logo.png differ diff --git a/blockchains/ton/assets/EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs/info.json b/blockchains/ton/assets/EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs/info.json new file mode 100644 index 0000000000000..172e8b95c0bc0 --- /dev/null +++ b/blockchains/ton/assets/EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs/info.json @@ -0,0 +1,28 @@ +{ + "name": "Tether USD", + "website": "https://tether.to", + "description": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar.", + "explorer": "https://tonscan.org/jetton/EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs", + "type": "JETTON", + "symbol": "USDT", + "decimals": 6, + "status": "active", + "id": "EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/tether.to/" + }, + { + "name": "x", + "url": "https://x.com/Tether_to/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/tether/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs/logo.png b/blockchains/ton/assets/EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs/logo.png new file mode 100644 index 0000000000000..31572cfcdaaef Binary files /dev/null and b/blockchains/ton/assets/EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs/logo.png differ diff --git a/blockchains/ton/assets/EQD-cvR0Nz6XAyRBvbhz-abTrRC6sI5tvHvvpeQraV9UAAD7/info.json b/blockchains/ton/assets/EQD-cvR0Nz6XAyRBvbhz-abTrRC6sI5tvHvvpeQraV9UAAD7/info.json new file mode 100644 index 0000000000000..bacd42c502727 --- /dev/null +++ b/blockchains/ton/assets/EQD-cvR0Nz6XAyRBvbhz-abTrRC6sI5tvHvvpeQraV9UAAD7/info.json @@ -0,0 +1,25 @@ +{ + "name": "Catizen", + "website": "https://catizen.ai/", + "description": "$CATI is the utility token issued by Catizen Limited which is a subsidiary of Catizen Foundation Company.", + "explorer": "https://tonscan.org/jetton/EQD-cvR0Nz6XAyRBvbhz-abTrRC6sI5tvHvvpeQraV9UAAD7", + "type": "JETTON", + "symbol": "CATI", + "decimals": 9, + "status": "active", + "id": "EQD-cvR0Nz6XAyRBvbhz-abTrRC6sI5tvHvvpeQraV9UAAD7", + "links": [ + { + "name": "x", + "url": "https://x.com/CatizenAI" + }, + { + "name": "telegram", + "url": "https://t.me/CatizenAnn" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/catizen/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQD-cvR0Nz6XAyRBvbhz-abTrRC6sI5tvHvvpeQraV9UAAD7/logo.png b/blockchains/ton/assets/EQD-cvR0Nz6XAyRBvbhz-abTrRC6sI5tvHvvpeQraV9UAAD7/logo.png new file mode 100644 index 0000000000000..1a228bc870d77 Binary files /dev/null and b/blockchains/ton/assets/EQD-cvR0Nz6XAyRBvbhz-abTrRC6sI5tvHvvpeQraV9UAAD7/logo.png differ diff --git a/blockchains/ton/assets/EQD0laik0FgHV8aNfRhebi8GDG2rpDyKGXem0MBfya_Ew1-8/info.json b/blockchains/ton/assets/EQD0laik0FgHV8aNfRhebi8GDG2rpDyKGXem0MBfya_Ew1-8/info.json new file mode 100644 index 0000000000000..f351c9dd5979a --- /dev/null +++ b/blockchains/ton/assets/EQD0laik0FgHV8aNfRhebi8GDG2rpDyKGXem0MBfya_Ew1-8/info.json @@ -0,0 +1,60 @@ +{ + "name": "GoMining", + "website": "https://gomining.com/", + "description": "Gomining is an exchange token backed by a Top 10 global bitcoin mining project", + "explorer": "https://tonscan.org/ru/jetton/EQD0laik0FgHV8aNfRhebi8GDG2rpDyKGXem0MBfya_Ew1-8", + "type": "JETTON", + "symbol": "GOMINING", + "decimals": 18, + "status": "active", + "id": "EQD0laik0FgHV8aNfRhebi8GDG2rpDyKGXem0MBfya_Ew1-8", + "links": [ + { + "name": "telegram_news", + "url": "https://t.me/gmt_token" + }, + { + "name": "facebook", + "url": "https://facebook.com/GMTtoken" + }, + { + "name": "x", + "url": "https://x.com/GMT_Token" + }, + { + "name": "telegram", + "url": "https://t.me/gmt_token_talk" + }, + { + "name": "whitepaper", + "url": "https://gomining.com/white-paper.pdf" + }, + { + "name": "source_code", + "url": "https://github.com/gomining-token/smart" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gomining-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gmt-token" + }, + { + "name": "medium", + "url": "https://medium.com/@GMT_Token" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/GoMiningToken" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCl98r2sL8dO058XWToApIJw" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQD0laik0FgHV8aNfRhebi8GDG2rpDyKGXem0MBfya_Ew1-8/logo.png b/blockchains/ton/assets/EQD0laik0FgHV8aNfRhebi8GDG2rpDyKGXem0MBfya_Ew1-8/logo.png new file mode 100644 index 0000000000000..1d15389d09576 Binary files /dev/null and b/blockchains/ton/assets/EQD0laik0FgHV8aNfRhebi8GDG2rpDyKGXem0MBfya_Ew1-8/logo.png differ diff --git a/blockchains/ton/assets/EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw/info.json b/blockchains/ton/assets/EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw/info.json new file mode 100644 index 0000000000000..28f422d2f13a1 --- /dev/null +++ b/blockchains/ton/assets/EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw/info.json @@ -0,0 +1,21 @@ +{ + "address": "EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw", + "name": "Huebel Bolt", + "type": "JETTON", + "symbol": "BOLT", + "decimals": 9, + "description": "Official token of the Huebel Company", + "status": "active", + "explorer": "https://tonscan.org/address/EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw", + "id": "EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw", + "website": "https://huebel.art/", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/huebel-bolt/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw/logo.png b/blockchains/ton/assets/EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw/logo.png new file mode 100644 index 0000000000000..a0fe8fe2c7a1e Binary files /dev/null and b/blockchains/ton/assets/EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw/logo.png differ diff --git a/blockchains/ton/assets/EQD26zcd6Cqpz7WyLKVH8x_cD6D7tBrom6hKcycv8L8hV0GP/info.json b/blockchains/ton/assets/EQD26zcd6Cqpz7WyLKVH8x_cD6D7tBrom6hKcycv8L8hV0GP/info.json new file mode 100644 index 0000000000000..ab8177c9461ff --- /dev/null +++ b/blockchains/ton/assets/EQD26zcd6Cqpz7WyLKVH8x_cD6D7tBrom6hKcycv8L8hV0GP/info.json @@ -0,0 +1,21 @@ +{ + "name": "DeFinder Capital", + "website": "https://definder.club/", + "description": "The first integral social token on the TON blockchain with open functionality! Fair distribution model = no ICO, private or public sales, investors offers, greedy funds, etc. It costs as much as you want to pay for on the market...", + "explorer": "https://tonscan.org/ru/jetton/EQCqnhZndBGbwjPpV8K_8WOK58ZkQPXlS_bshau9DKWnAF-p", + "type": "JETTON", + "symbol": "DFC", + "decimals": 9, + "status": "active", + "id": "EQD26zcd6Cqpz7WyLKVH8x_cD6D7tBrom6hKcycv8L8hV0GP", + "links": [ + { + "name": "x", + "url": "https://x.com/DFCapitalGroup" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/definder-capital/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQD26zcd6Cqpz7WyLKVH8x_cD6D7tBrom6hKcycv8L8hV0GP/logo.png b/blockchains/ton/assets/EQD26zcd6Cqpz7WyLKVH8x_cD6D7tBrom6hKcycv8L8hV0GP/logo.png new file mode 100644 index 0000000000000..dd98dbc690e23 Binary files /dev/null and b/blockchains/ton/assets/EQD26zcd6Cqpz7WyLKVH8x_cD6D7tBrom6hKcycv8L8hV0GP/logo.png differ diff --git a/blockchains/ton/assets/EQD2ERclkQ5n6lv3Kthdbq3CaOOSmlY7zQcwYGa9rTIK7CNZ/info.json b/blockchains/ton/assets/EQD2ERclkQ5n6lv3Kthdbq3CaOOSmlY7zQcwYGa9rTIK7CNZ/info.json new file mode 100644 index 0000000000000..07588b91b0b86 --- /dev/null +++ b/blockchains/ton/assets/EQD2ERclkQ5n6lv3Kthdbq3CaOOSmlY7zQcwYGa9rTIK7CNZ/info.json @@ -0,0 +1,21 @@ +{ + "name": "BBQ COIN", + "type": "JETTON", + "symbol": "BBQ", + "decimals": 9, + "website": "https://www.bbqcoin.ai/", + "description": "BBQCoin is an innovative project built on the TON blockchain, blending GameFi, blockchain, and AI technology.", + "explorer": "https://tonscan.org/ru/jetton/EQD2ERclkQ5n6lv3Kthdbq3CaOOSmlY7zQcwYGa9rTIK7CNZ", + "status": "active", + "id": "EQD2ERclkQ5n6lv3Kthdbq3CaOOSmlY7zQcwYGa9rTIK7CNZ", + "links": [ + { + "name": "x", + "url": "https://x.com/BBQ_Coin" + }, + { + "name": "telegram", + "url": "https://t.me/BBQCoin_bot" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQD2ERclkQ5n6lv3Kthdbq3CaOOSmlY7zQcwYGa9rTIK7CNZ/logo.png b/blockchains/ton/assets/EQD2ERclkQ5n6lv3Kthdbq3CaOOSmlY7zQcwYGa9rTIK7CNZ/logo.png new file mode 100644 index 0000000000000..843e880bd1ef8 Binary files /dev/null and b/blockchains/ton/assets/EQD2ERclkQ5n6lv3Kthdbq3CaOOSmlY7zQcwYGa9rTIK7CNZ/logo.png differ diff --git a/blockchains/ton/assets/EQD3cgQg432BiCSRli-hMswoVuvNnO42FuMdc-AXqd83SfcV/info.json b/blockchains/ton/assets/EQD3cgQg432BiCSRli-hMswoVuvNnO42FuMdc-AXqd83SfcV/info.json new file mode 100644 index 0000000000000..bbec3d6fd367e --- /dev/null +++ b/blockchains/ton/assets/EQD3cgQg432BiCSRli-hMswoVuvNnO42FuMdc-AXqd83SfcV/info.json @@ -0,0 +1,20 @@ +{ + "name": "Meta xStock", + "type": "JETTON", + "symbol": "METAx", + "decimals": 8, + "description": "Meta xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQD3cgQg432BiCSRli-hMswoVuvNnO42FuMdc-AXqd83SfcV", + "status": "active", + "id": "EQD3cgQg432BiCSRli-hMswoVuvNnO42FuMdc-AXqd83SfcV", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/meta-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQD3cgQg432BiCSRli-hMswoVuvNnO42FuMdc-AXqd83SfcV/logo.png b/blockchains/ton/assets/EQD3cgQg432BiCSRli-hMswoVuvNnO42FuMdc-AXqd83SfcV/logo.png new file mode 100644 index 0000000000000..e5513d1462429 Binary files /dev/null and b/blockchains/ton/assets/EQD3cgQg432BiCSRli-hMswoVuvNnO42FuMdc-AXqd83SfcV/logo.png differ diff --git a/blockchains/ton/assets/EQD4Slv4BhS3roQNVKi2ToUCYcyfdFfC4fY4RhaMl-2nv56L/info.json b/blockchains/ton/assets/EQD4Slv4BhS3roQNVKi2ToUCYcyfdFfC4fY4RhaMl-2nv56L/info.json new file mode 100644 index 0000000000000..86580c536c811 --- /dev/null +++ b/blockchains/ton/assets/EQD4Slv4BhS3roQNVKi2ToUCYcyfdFfC4fY4RhaMl-2nv56L/info.json @@ -0,0 +1,20 @@ +{ + "name": "Walmart xStock", + "type": "JETTON", + "symbol": "WMTx", + "decimals": 8, + "description": "Walmart xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQD4Slv4BhS3roQNVKi2ToUCYcyfdFfC4fY4RhaMl-2nv56L", + "status": "active", + "id": "EQD4Slv4BhS3roQNVKi2ToUCYcyfdFfC4fY4RhaMl-2nv56L", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/walmart-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQD4Slv4BhS3roQNVKi2ToUCYcyfdFfC4fY4RhaMl-2nv56L/logo.png b/blockchains/ton/assets/EQD4Slv4BhS3roQNVKi2ToUCYcyfdFfC4fY4RhaMl-2nv56L/logo.png new file mode 100644 index 0000000000000..d63f90439c0a3 Binary files /dev/null and b/blockchains/ton/assets/EQD4Slv4BhS3roQNVKi2ToUCYcyfdFfC4fY4RhaMl-2nv56L/logo.png differ diff --git a/blockchains/ton/assets/EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl/info.json b/blockchains/ton/assets/EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl/info.json new file mode 100644 index 0000000000000..80f269fce14c8 --- /dev/null +++ b/blockchains/ton/assets/EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl", + "name": "Pioneer", + "type": "JETTON", + "symbol": "PIO", + "decimals": 9, + "description": "This jetton was given to the first people who arrived on Mars. Game TONPlanets.com", + "status": "active", + "explorer": "https://tonscan.org/address/EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl", + "id": "EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl", + "website": "https://tonplanets.com", + "links": [ + { + "name": "telegram", + "url": "https://t.me/TONPlanets" + }, + { + "name": "telegram_news", + "url": "https://t.me/TONPlanetsBot" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl/logo.png b/blockchains/ton/assets/EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl/logo.png new file mode 100644 index 0000000000000..e18260b4afd1b Binary files /dev/null and b/blockchains/ton/assets/EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl/logo.png differ diff --git a/blockchains/ton/assets/EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh/info.json b/blockchains/ton/assets/EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh/info.json new file mode 100644 index 0000000000000..35d75d051a75e --- /dev/null +++ b/blockchains/ton/assets/EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh", + "name": "Orbit Bridge Ton Klaymeta Token", + "type": "JETTON", + "symbol": "META", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh", + "id": "EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh/logo.png b/blockchains/ton/assets/EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh/logo.png new file mode 100644 index 0000000000000..e9a5e0b992565 Binary files /dev/null and b/blockchains/ton/assets/EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh/logo.png differ diff --git a/blockchains/ton/assets/EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo/info.json b/blockchains/ton/assets/EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo/info.json new file mode 100644 index 0000000000000..2d6fe04a4a538 --- /dev/null +++ b/blockchains/ton/assets/EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo/info.json @@ -0,0 +1,18 @@ +{ + "address": "EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo", + "name": "Red Coin", + "type": "JETTON", + "symbol": "REDC", + "decimals": 9, + "description": "Red company Coin on the Legendary Blockchain.", + "status": "active", + "explorer": "https://tonscan.org/address/EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo", + "id": "EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo", + "website": "https://redcompany.team/", + "links": [ + { + "name": "telegram", + "url": "https://t.me/RedList_NFT" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo/logo.png b/blockchains/ton/assets/EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo/logo.png new file mode 100644 index 0000000000000..9b526ddf9b304 Binary files /dev/null and b/blockchains/ton/assets/EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo/logo.png differ diff --git a/blockchains/ton/assets/EQDBOfnFmQlXhtjoI6VItEWSagEZRTPWkjeEXi8tadBWRLzr/info.json b/blockchains/ton/assets/EQDBOfnFmQlXhtjoI6VItEWSagEZRTPWkjeEXi8tadBWRLzr/info.json new file mode 100644 index 0000000000000..33598d5f07869 --- /dev/null +++ b/blockchains/ton/assets/EQDBOfnFmQlXhtjoI6VItEWSagEZRTPWkjeEXi8tadBWRLzr/info.json @@ -0,0 +1,20 @@ +{ + "name": "Accenture xStock", + "type": "JETTON", + "symbol": "ACNx", + "decimals": 8, + "description": "Accenture xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQDBOfnFmQlXhtjoI6VItEWSagEZRTPWkjeEXi8tadBWRLzr", + "status": "active", + "id": "EQDBOfnFmQlXhtjoI6VItEWSagEZRTPWkjeEXi8tadBWRLzr", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/accenture-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDBOfnFmQlXhtjoI6VItEWSagEZRTPWkjeEXi8tadBWRLzr/logo.png b/blockchains/ton/assets/EQDBOfnFmQlXhtjoI6VItEWSagEZRTPWkjeEXi8tadBWRLzr/logo.png new file mode 100644 index 0000000000000..97a609cb0436a Binary files /dev/null and b/blockchains/ton/assets/EQDBOfnFmQlXhtjoI6VItEWSagEZRTPWkjeEXi8tadBWRLzr/logo.png differ diff --git a/blockchains/ton/assets/EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD/info.json b/blockchains/ton/assets/EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD/info.json new file mode 100644 index 0000000000000..53bea10e91db4 --- /dev/null +++ b/blockchains/ton/assets/EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD/info.json @@ -0,0 +1,14 @@ +{ + "address": "EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD", + "name": "Orbit Bridge Ton Orbit Chain", + "type": "JETTON", + "symbol": "oORC", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD", + "id": "EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD/logo.png b/blockchains/ton/assets/EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD/logo.png new file mode 100644 index 0000000000000..55050504d6b5e Binary files /dev/null and b/blockchains/ton/assets/EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD/logo.png differ diff --git a/blockchains/ton/assets/EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86/info.json b/blockchains/ton/assets/EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86/info.json new file mode 100644 index 0000000000000..faf214ef302ab --- /dev/null +++ b/blockchains/ton/assets/EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86", + "name": "Fanzee Token", + "type": "JETTON", + "symbol": "FNZ", + "decimals": 9, + "description": "fanz.ee is a web3 fan engagement platform designed to help sports and entertainment organisations meaningfully connect with their fans through immersive gamification experiences", + "status": "active", + "explorer": "https://tonscan.org/address/EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86", + "id": "EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86", + "website": "https://fanz.ee", + "links": [ + { + "name": "telegram", + "url": "https://t.me/fanzeelabs" + }, + { + "name": "x", + "url": "https://x.com/fanzeelabs" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86/logo.png b/blockchains/ton/assets/EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86/logo.png new file mode 100644 index 0000000000000..ba207f79bf5b5 Binary files /dev/null and b/blockchains/ton/assets/EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86/logo.png differ diff --git a/blockchains/ton/assets/EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv/info.json b/blockchains/ton/assets/EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv/info.json new file mode 100644 index 0000000000000..46a1c76589617 --- /dev/null +++ b/blockchains/ton/assets/EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv/info.json @@ -0,0 +1,11 @@ +{ + "address": "EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv", + "name": "Pterodactyls", + "type": "JETTON", + "symbol": "PTERO", + "decimals": 9, + "description": "The best pterodactyls on the TON network", + "status": "active", + "explorer": "https://tonscan.org/address/EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv", + "id": "EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv" +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv/logo.png b/blockchains/ton/assets/EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv/logo.png new file mode 100644 index 0000000000000..1e8911af2fdc9 Binary files /dev/null and b/blockchains/ton/assets/EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv/logo.png differ diff --git a/blockchains/ton/assets/EQDI9JwkYTEHM2TSFPSWFbwznBq07_I4Apy9TBhxsDlZaBvg/info.json b/blockchains/ton/assets/EQDI9JwkYTEHM2TSFPSWFbwznBq07_I4Apy9TBhxsDlZaBvg/info.json new file mode 100644 index 0000000000000..54fc78d493da1 --- /dev/null +++ b/blockchains/ton/assets/EQDI9JwkYTEHM2TSFPSWFbwznBq07_I4Apy9TBhxsDlZaBvg/info.json @@ -0,0 +1,20 @@ +{ + "name": "Microsoft xStock", + "type": "JETTON", + "symbol": "MSFTx", + "decimals": 8, + "description": "Microsoft xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQDI9JwkYTEHM2TSFPSWFbwznBq07_I4Apy9TBhxsDlZaBvg", + "status": "active", + "id": "EQDI9JwkYTEHM2TSFPSWFbwznBq07_I4Apy9TBhxsDlZaBvg", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/microsoft-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDI9JwkYTEHM2TSFPSWFbwznBq07_I4Apy9TBhxsDlZaBvg/logo.png b/blockchains/ton/assets/EQDI9JwkYTEHM2TSFPSWFbwznBq07_I4Apy9TBhxsDlZaBvg/logo.png new file mode 100644 index 0000000000000..ea955b964bb0e Binary files /dev/null and b/blockchains/ton/assets/EQDI9JwkYTEHM2TSFPSWFbwznBq07_I4Apy9TBhxsDlZaBvg/logo.png differ diff --git a/blockchains/ton/assets/EQDJaT2B2ngrN7O3SLRxjj1XZ7A8-hAHbItKpC8Cq4DyKu4d/info.json b/blockchains/ton/assets/EQDJaT2B2ngrN7O3SLRxjj1XZ7A8-hAHbItKpC8Cq4DyKu4d/info.json new file mode 100644 index 0000000000000..bd7f5ebd7492c --- /dev/null +++ b/blockchains/ton/assets/EQDJaT2B2ngrN7O3SLRxjj1XZ7A8-hAHbItKpC8Cq4DyKu4d/info.json @@ -0,0 +1,20 @@ +{ + "name": "Linde xStock", + "type": "JETTON", + "symbol": "LINx", + "decimals": 8, + "description": "Linde xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQDJaT2B2ngrN7O3SLRxjj1XZ7A8-hAHbItKpC8Cq4DyKu4d", + "status": "active", + "id": "EQDJaT2B2ngrN7O3SLRxjj1XZ7A8-hAHbItKpC8Cq4DyKu4d", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/linde-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDJaT2B2ngrN7O3SLRxjj1XZ7A8-hAHbItKpC8Cq4DyKu4d/logo.png b/blockchains/ton/assets/EQDJaT2B2ngrN7O3SLRxjj1XZ7A8-hAHbItKpC8Cq4DyKu4d/logo.png new file mode 100644 index 0000000000000..d89712cd06f90 Binary files /dev/null and b/blockchains/ton/assets/EQDJaT2B2ngrN7O3SLRxjj1XZ7A8-hAHbItKpC8Cq4DyKu4d/logo.png differ diff --git a/blockchains/ton/assets/EQDO-gj4yLJH21dtkrtbUPyjpqukqW4pDmZ5ce0M6p1lNPj_/info.json b/blockchains/ton/assets/EQDO-gj4yLJH21dtkrtbUPyjpqukqW4pDmZ5ce0M6p1lNPj_/info.json new file mode 100644 index 0000000000000..dbbd47fa6b1be --- /dev/null +++ b/blockchains/ton/assets/EQDO-gj4yLJH21dtkrtbUPyjpqukqW4pDmZ5ce0M6p1lNPj_/info.json @@ -0,0 +1,20 @@ +{ + "name": "Abbott xStock", + "type": "JETTON", + "symbol": "ABTx", + "decimals": 8, + "description": "Abbott xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQDO-gj4yLJH21dtkrtbUPyjpqukqW4pDmZ5ce0M6p1lNPj_", + "status": "active", + "id": "EQDO-gj4yLJH21dtkrtbUPyjpqukqW4pDmZ5ce0M6p1lNPj_", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abbott-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDO-gj4yLJH21dtkrtbUPyjpqukqW4pDmZ5ce0M6p1lNPj_/logo.png b/blockchains/ton/assets/EQDO-gj4yLJH21dtkrtbUPyjpqukqW4pDmZ5ce0M6p1lNPj_/logo.png new file mode 100644 index 0000000000000..b376283072c21 Binary files /dev/null and b/blockchains/ton/assets/EQDO-gj4yLJH21dtkrtbUPyjpqukqW4pDmZ5ce0M6p1lNPj_/logo.png differ diff --git a/blockchains/ton/assets/EQDO-mK2jHNAqQB5NlyZKAO-Cb4aZ5kf0R81TP1yqEUO6cuQ/info.json b/blockchains/ton/assets/EQDO-mK2jHNAqQB5NlyZKAO-Cb4aZ5kf0R81TP1yqEUO6cuQ/info.json new file mode 100644 index 0000000000000..7cdd4562c53c0 --- /dev/null +++ b/blockchains/ton/assets/EQDO-mK2jHNAqQB5NlyZKAO-Cb4aZ5kf0R81TP1yqEUO6cuQ/info.json @@ -0,0 +1,20 @@ +{ + "name": "Chevron xStock", + "type": "JETTON", + "symbol": "CVXx", + "decimals": 8, + "description": "Chevron xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQDO-mK2jHNAqQB5NlyZKAO-Cb4aZ5kf0R81TP1yqEUO6cuQ", + "status": "active", + "id": "EQDO-mK2jHNAqQB5NlyZKAO-Cb4aZ5kf0R81TP1yqEUO6cuQ", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chevron-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDO-mK2jHNAqQB5NlyZKAO-Cb4aZ5kf0R81TP1yqEUO6cuQ/logo.png b/blockchains/ton/assets/EQDO-mK2jHNAqQB5NlyZKAO-Cb4aZ5kf0R81TP1yqEUO6cuQ/logo.png new file mode 100644 index 0000000000000..74a17d83bcf88 Binary files /dev/null and b/blockchains/ton/assets/EQDO-mK2jHNAqQB5NlyZKAO-Cb4aZ5kf0R81TP1yqEUO6cuQ/logo.png differ diff --git a/blockchains/ton/assets/EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR/info.json b/blockchains/ton/assets/EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR/info.json new file mode 100644 index 0000000000000..b26c1b0857221 --- /dev/null +++ b/blockchains/ton/assets/EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR", + "name": "Orbit Bridge Ton Klay", + "type": "JETTON", + "symbol": "oKLAY", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR", + "id": "EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR/logo.png b/blockchains/ton/assets/EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR/logo.png new file mode 100644 index 0000000000000..4ec6c0bb9b931 Binary files /dev/null and b/blockchains/ton/assets/EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR/logo.png differ diff --git a/blockchains/ton/assets/EQD_tHefNfi094aoQD6GRdbv1zlydk4K4HIENsWT8cdgzPVb/info.json b/blockchains/ton/assets/EQD_tHefNfi094aoQD6GRdbv1zlydk4K4HIENsWT8cdgzPVb/info.json new file mode 100644 index 0000000000000..2ce476651c7bb --- /dev/null +++ b/blockchains/ton/assets/EQD_tHefNfi094aoQD6GRdbv1zlydk4K4HIENsWT8cdgzPVb/info.json @@ -0,0 +1,20 @@ +{ + "name": "OPEN xStock", + "type": "JETTON", + "symbol": "OPENx", + "decimals": 8, + "description": "OPEN xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQD_tHefNfi094aoQD6GRdbv1zlydk4K4HIENsWT8cdgzPVb", + "status": "active", + "id": "EQD_tHefNfi094aoQD6GRdbv1zlydk4K4HIENsWT8cdgzPVb", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/open-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQD_tHefNfi094aoQD6GRdbv1zlydk4K4HIENsWT8cdgzPVb/logo.png b/blockchains/ton/assets/EQD_tHefNfi094aoQD6GRdbv1zlydk4K4HIENsWT8cdgzPVb/logo.png new file mode 100644 index 0000000000000..4ddb0ca11f860 Binary files /dev/null and b/blockchains/ton/assets/EQD_tHefNfi094aoQD6GRdbv1zlydk4K4HIENsWT8cdgzPVb/logo.png differ diff --git a/blockchains/ton/assets/EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5/info.json b/blockchains/ton/assets/EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5/info.json new file mode 100644 index 0000000000000..69846922b46d7 --- /dev/null +++ b/blockchains/ton/assets/EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5", + "name": "jWBTC", + "type": "JETTON", + "symbol": "jWBTC", + "decimals": 8, + "description": "WBTC transferred from Ethereum via bridge.ton.org. Token address in Ethereum: 0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599.", + "status": "active", + "explorer": "https://tonscan.org/address/EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5", + "id": "EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5", + "website": "https://bridge.ton.org/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5/logo.png b/blockchains/ton/assets/EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5/logo.png new file mode 100644 index 0000000000000..76b1167d5f198 Binary files /dev/null and b/blockchains/ton/assets/EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5/logo.png differ diff --git a/blockchains/ton/assets/EQDexQFqhbyuy9VgK1eMdHXZAi5kC2WBbHe74mHWEdHVVwx2/info.json b/blockchains/ton/assets/EQDexQFqhbyuy9VgK1eMdHXZAi5kC2WBbHe74mHWEdHVVwx2/info.json new file mode 100644 index 0000000000000..8e86a0b9bdbf2 --- /dev/null +++ b/blockchains/ton/assets/EQDexQFqhbyuy9VgK1eMdHXZAi5kC2WBbHe74mHWEdHVVwx2/info.json @@ -0,0 +1,20 @@ +{ + "name": "Eli Lilly xStock", + "type": "JETTON", + "symbol": "LLYx", + "decimals": 8, + "description": "Eli Lilly xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQDexQFqhbyuy9VgK1eMdHXZAi5kC2WBbHe74mHWEdHVVwx2", + "status": "active", + "id": "EQDexQFqhbyuy9VgK1eMdHXZAi5kC2WBbHe74mHWEdHVVwx2", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/eli-lilly-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDexQFqhbyuy9VgK1eMdHXZAi5kC2WBbHe74mHWEdHVVwx2/logo.png b/blockchains/ton/assets/EQDexQFqhbyuy9VgK1eMdHXZAi5kC2WBbHe74mHWEdHVVwx2/logo.png new file mode 100644 index 0000000000000..9c631d1eeeb00 Binary files /dev/null and b/blockchains/ton/assets/EQDexQFqhbyuy9VgK1eMdHXZAi5kC2WBbHe74mHWEdHVVwx2/logo.png differ diff --git a/blockchains/ton/assets/EQDo8QC6mVi7Gq6uGWDF4XVp3cZ4wKZ-bqKBkmhVMPm-1ojm/info.json b/blockchains/ton/assets/EQDo8QC6mVi7Gq6uGWDF4XVp3cZ4wKZ-bqKBkmhVMPm-1ojm/info.json new file mode 100644 index 0000000000000..7b55609f2c238 --- /dev/null +++ b/blockchains/ton/assets/EQDo8QC6mVi7Gq6uGWDF4XVp3cZ4wKZ-bqKBkmhVMPm-1ojm/info.json @@ -0,0 +1,21 @@ +{ + "name": "NikolAI", + "type": "JETTON", + "symbol": "NIKO", + "decimals": 9, + "website": "https://nikolai.meme/", + "description": "In a realm where algorithms reign supreme, NikolAI arrives — a refined fusion of genius and jest. Inspired by Nikolai Durov, Telegram co-founder and math prodigy, NikolAI is no mere AI.", + "explorer": "https://tonscan.org/ru/jetton/EQDo8QC6mVi7Gq6uGWDF4XVp3cZ4wKZ-bqKBkmhVMPm-1ojm", + "status": "active", + "id": "EQDo8QC6mVi7Gq6uGWDF4XVp3cZ4wKZ-bqKBkmhVMPm-1ojm", + "links": [ + { + "name": "x", + "url": "https://x.com/NikolAIToncoin" + }, + { + "name": "telegram", + "url": "https://t.me/NikolAIToncoinChat" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDo8QC6mVi7Gq6uGWDF4XVp3cZ4wKZ-bqKBkmhVMPm-1ojm/logo.png b/blockchains/ton/assets/EQDo8QC6mVi7Gq6uGWDF4XVp3cZ4wKZ-bqKBkmhVMPm-1ojm/logo.png new file mode 100644 index 0000000000000..164455bfc25e1 Binary files /dev/null and b/blockchains/ton/assets/EQDo8QC6mVi7Gq6uGWDF4XVp3cZ4wKZ-bqKBkmhVMPm-1ojm/logo.png differ diff --git a/blockchains/ton/assets/EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B/info.json b/blockchains/ton/assets/EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B/info.json new file mode 100644 index 0000000000000..c14b66f4c5e84 --- /dev/null +++ b/blockchains/ton/assets/EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B", + "name": "jDAI", + "type": "JETTON", + "symbol": "jDAI", + "decimals": 18, + "description": "DAI transferred from Ethereum via bridge.ton.org. Token address in Ethereum: 0x6B175474E89094C44Da98b954EedeAC495271d0F", + "status": "active", + "explorer": "https://tonscan.org/address/EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B", + "id": "EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B", + "website": "https://bridge.ton.org/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B/logo.png b/blockchains/ton/assets/EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B/logo.png new file mode 100644 index 0000000000000..979613ab41647 Binary files /dev/null and b/blockchains/ton/assets/EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B/logo.png differ diff --git a/blockchains/ton/assets/EQDol2oVpmBznAL6vQpF51QW3p0PKV7ag4VEtex8_MeMHASH/info.json b/blockchains/ton/assets/EQDol2oVpmBznAL6vQpF51QW3p0PKV7ag4VEtex8_MeMHASH/info.json new file mode 100644 index 0000000000000..50e8c5127e0f6 --- /dev/null +++ b/blockchains/ton/assets/EQDol2oVpmBznAL6vQpF51QW3p0PKV7ag4VEtex8_MeMHASH/info.json @@ -0,0 +1,17 @@ +{ + "name": "Memhash", + "type": "JETTON", + "symbol": "MEMHASH", + "decimals": 9, + "description": "Memhash is an innovative mining game that has garnered attention for its engaging features and user-friendly interface.", + "website": "https://t.me/memhash_bot", + "explorer": "https://tonscan.org/jetton/EQDol2oVpmBznAL6vQpF51QW3p0PKV7ag4VEtex8_MeMHASH", + "id": "EQDol2oVpmBznAL6vQpF51QW3p0PKV7ag4VEtex8_MeMHASH", + "status": "active", + "links": [ + { + "name": "telegram", + "url": "https://t.me/memhash_bot" + } + ] +} diff --git a/blockchains/ton/assets/EQDol2oVpmBznAL6vQpF51QW3p0PKV7ag4VEtex8_MeMHASH/logo.png b/blockchains/ton/assets/EQDol2oVpmBznAL6vQpF51QW3p0PKV7ag4VEtex8_MeMHASH/logo.png new file mode 100644 index 0000000000000..b709c063e10bf Binary files /dev/null and b/blockchains/ton/assets/EQDol2oVpmBznAL6vQpF51QW3p0PKV7ag4VEtex8_MeMHASH/logo.png differ diff --git a/blockchains/ton/assets/EQDpGw69jwZzqdt88kwd7dUymmg5W0-yE5IvS5ATsgdl5xcI/info.json b/blockchains/ton/assets/EQDpGw69jwZzqdt88kwd7dUymmg5W0-yE5IvS5ATsgdl5xcI/info.json new file mode 100644 index 0000000000000..34989a0c4720c --- /dev/null +++ b/blockchains/ton/assets/EQDpGw69jwZzqdt88kwd7dUymmg5W0-yE5IvS5ATsgdl5xcI/info.json @@ -0,0 +1,15 @@ +{ + "name": "Vanguard Total World xStock", + "type": "JETTON", + "symbol": "VTx", + "decimals": 8, + "description": "Vanguard Total World xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQDpGw69jwZzqdt88kwd7dUymmg5W0-yE5IvS5ATsgdl5xcI", + "status": "active", + "id": "EQDpGw69jwZzqdt88kwd7dUymmg5W0-yE5IvS5ATsgdl5xcI", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDpGw69jwZzqdt88kwd7dUymmg5W0-yE5IvS5ATsgdl5xcI/logo.png b/blockchains/ton/assets/EQDpGw69jwZzqdt88kwd7dUymmg5W0-yE5IvS5ATsgdl5xcI/logo.png new file mode 100644 index 0000000000000..5968d83be9311 Binary files /dev/null and b/blockchains/ton/assets/EQDpGw69jwZzqdt88kwd7dUymmg5W0-yE5IvS5ATsgdl5xcI/logo.png differ diff --git a/blockchains/ton/assets/EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a/info.json b/blockchains/ton/assets/EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a/info.json new file mode 100644 index 0000000000000..b49bd52d62f30 --- /dev/null +++ b/blockchains/ton/assets/EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a/info.json @@ -0,0 +1,11 @@ +{ + "address": "EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a", + "name": "Siberian TON", + "type": "JETTON", + "symbol": "SIBT", + "decimals": 9, + "description": "Private peer to peer jetton", + "status": "active", + "explorer": "https://tonscan.org/address/EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a", + "id": "EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a" +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a/logo.png b/blockchains/ton/assets/EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a/logo.png new file mode 100644 index 0000000000000..f4dc20489149a Binary files /dev/null and b/blockchains/ton/assets/EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a/logo.png differ diff --git a/blockchains/ton/assets/EQDqyQHk7m1Rbp_RN7qYrXvCS_STZGYMibeMybBlcPg4Ij4H/info.json b/blockchains/ton/assets/EQDqyQHk7m1Rbp_RN7qYrXvCS_STZGYMibeMybBlcPg4Ij4H/info.json new file mode 100644 index 0000000000000..1fc4ec2cbccda --- /dev/null +++ b/blockchains/ton/assets/EQDqyQHk7m1Rbp_RN7qYrXvCS_STZGYMibeMybBlcPg4Ij4H/info.json @@ -0,0 +1,20 @@ +{ + "name": "Comcast xStock", + "type": "JETTON", + "symbol": "CMCSAx", + "decimals": 8, + "description": "Comcast xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQDqyQHk7m1Rbp_RN7qYrXvCS_STZGYMibeMybBlcPg4Ij4H", + "status": "active", + "id": "EQDqyQHk7m1Rbp_RN7qYrXvCS_STZGYMibeMybBlcPg4Ij4H", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/comcast-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDqyQHk7m1Rbp_RN7qYrXvCS_STZGYMibeMybBlcPg4Ij4H/logo.png b/blockchains/ton/assets/EQDqyQHk7m1Rbp_RN7qYrXvCS_STZGYMibeMybBlcPg4Ij4H/logo.png new file mode 100644 index 0000000000000..24a17931df1cd Binary files /dev/null and b/blockchains/ton/assets/EQDqyQHk7m1Rbp_RN7qYrXvCS_STZGYMibeMybBlcPg4Ij4H/logo.png differ diff --git a/blockchains/ton/assets/EQDr0UNbQ3fLjH9czsFp-Uq9AG_BLP87yc6abzKfQS727x51/info.json b/blockchains/ton/assets/EQDr0UNbQ3fLjH9czsFp-Uq9AG_BLP87yc6abzKfQS727x51/info.json new file mode 100644 index 0000000000000..6b9ab755a7092 --- /dev/null +++ b/blockchains/ton/assets/EQDr0UNbQ3fLjH9czsFp-Uq9AG_BLP87yc6abzKfQS727x51/info.json @@ -0,0 +1,20 @@ +{ + "name": "Marvell xStock", + "type": "JETTON", + "symbol": "MRVLx", + "decimals": 8, + "description": "Marvell xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQDr0UNbQ3fLjH9czsFp-Uq9AG_BLP87yc6abzKfQS727x51", + "status": "active", + "id": "EQDr0UNbQ3fLjH9czsFp-Uq9AG_BLP87yc6abzKfQS727x51", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/marvell-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDr0UNbQ3fLjH9czsFp-Uq9AG_BLP87yc6abzKfQS727x51/logo.png b/blockchains/ton/assets/EQDr0UNbQ3fLjH9czsFp-Uq9AG_BLP87yc6abzKfQS727x51/logo.png new file mode 100644 index 0000000000000..5a63b3624464b Binary files /dev/null and b/blockchains/ton/assets/EQDr0UNbQ3fLjH9czsFp-Uq9AG_BLP87yc6abzKfQS727x51/logo.png differ diff --git a/blockchains/ton/assets/EQDs4k7PSAH3nuXw3bXPEZ7aFatcejkKrf_Mi4Cv3-yLAmuG/info.json b/blockchains/ton/assets/EQDs4k7PSAH3nuXw3bXPEZ7aFatcejkKrf_Mi4Cv3-yLAmuG/info.json new file mode 100644 index 0000000000000..235d677d3fd41 --- /dev/null +++ b/blockchains/ton/assets/EQDs4k7PSAH3nuXw3bXPEZ7aFatcejkKrf_Mi4Cv3-yLAmuG/info.json @@ -0,0 +1,20 @@ +{ + "name": "Broadcom xStock", + "type": "JETTON", + "symbol": "AVGOx", + "decimals": 8, + "description": "Broadcom xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQDs4k7PSAH3nuXw3bXPEZ7aFatcejkKrf_Mi4Cv3-yLAmuG", + "status": "active", + "id": "EQDs4k7PSAH3nuXw3bXPEZ7aFatcejkKrf_Mi4Cv3-yLAmuG", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/broadcom-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDs4k7PSAH3nuXw3bXPEZ7aFatcejkKrf_Mi4Cv3-yLAmuG/logo.png b/blockchains/ton/assets/EQDs4k7PSAH3nuXw3bXPEZ7aFatcejkKrf_Mi4Cv3-yLAmuG/logo.png new file mode 100644 index 0000000000000..311e62f37d912 Binary files /dev/null and b/blockchains/ton/assets/EQDs4k7PSAH3nuXw3bXPEZ7aFatcejkKrf_Mi4Cv3-yLAmuG/logo.png differ diff --git a/blockchains/ton/assets/EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX/info.json b/blockchains/ton/assets/EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX/info.json new file mode 100644 index 0000000000000..8d0cb50c43b20 --- /dev/null +++ b/blockchains/ton/assets/EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX", + "name": "Orbit Bridge Ton WEMIX$", + "type": "JETTON", + "symbol": "oWEMIX$", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX", + "id": "EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX/logo.png b/blockchains/ton/assets/EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX/logo.png new file mode 100644 index 0000000000000..b81c0324f9157 Binary files /dev/null and b/blockchains/ton/assets/EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX/logo.png differ diff --git a/blockchains/ton/assets/EQDsjAwfKo-6FVZv2EYt-1CaZTY_ZL-pfkSId6jeQchNwmdo/info.json b/blockchains/ton/assets/EQDsjAwfKo-6FVZv2EYt-1CaZTY_ZL-pfkSId6jeQchNwmdo/info.json new file mode 100644 index 0000000000000..cf01f2818e1cf --- /dev/null +++ b/blockchains/ton/assets/EQDsjAwfKo-6FVZv2EYt-1CaZTY_ZL-pfkSId6jeQchNwmdo/info.json @@ -0,0 +1,20 @@ +{ + "name": "Apple xStock", + "type": "JETTON", + "symbol": "AAPLx", + "decimals": 8, + "description": "Apple xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQDsjAwfKo-6FVZv2EYt-1CaZTY_ZL-pfkSId6jeQchNwmdo", + "status": "active", + "id": "EQDsjAwfKo-6FVZv2EYt-1CaZTY_ZL-pfkSId6jeQchNwmdo", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/apple-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDsjAwfKo-6FVZv2EYt-1CaZTY_ZL-pfkSId6jeQchNwmdo/logo.png b/blockchains/ton/assets/EQDsjAwfKo-6FVZv2EYt-1CaZTY_ZL-pfkSId6jeQchNwmdo/logo.png new file mode 100644 index 0000000000000..bf515810b9e31 Binary files /dev/null and b/blockchains/ton/assets/EQDsjAwfKo-6FVZv2EYt-1CaZTY_ZL-pfkSId6jeQchNwmdo/logo.png differ diff --git a/blockchains/ton/assets/EQDz62JH-T5q4wW6DpzuL-ROKScpOCcC1iIv8dXAnYVNIV7O/info.json b/blockchains/ton/assets/EQDz62JH-T5q4wW6DpzuL-ROKScpOCcC1iIv8dXAnYVNIV7O/info.json new file mode 100644 index 0000000000000..fafc5602e6de4 --- /dev/null +++ b/blockchains/ton/assets/EQDz62JH-T5q4wW6DpzuL-ROKScpOCcC1iIv8dXAnYVNIV7O/info.json @@ -0,0 +1,20 @@ +{ + "name": "Berkshire Hathaway xStock", + "type": "JETTON", + "symbol": "BRK.Bx", + "decimals": 8, + "description": "Berkshire Hathaway xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tonviewer.com/EQDz62JH-T5q4wW6DpzuL-ROKScpOCcC1iIv8dXAnYVNIV7O", + "status": "active", + "id": "EQDz62JH-T5q4wW6DpzuL-ROKScpOCcC1iIv8dXAnYVNIV7O", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/berkshire-hathaway-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDz62JH-T5q4wW6DpzuL-ROKScpOCcC1iIv8dXAnYVNIV7O/logo.png b/blockchains/ton/assets/EQDz62JH-T5q4wW6DpzuL-ROKScpOCcC1iIv8dXAnYVNIV7O/logo.png new file mode 100644 index 0000000000000..bc33814d3547f Binary files /dev/null and b/blockchains/ton/assets/EQDz62JH-T5q4wW6DpzuL-ROKScpOCcC1iIv8dXAnYVNIV7O/logo.png differ diff --git a/blockchains/ton/info/info.json b/blockchains/ton/info/info.json index 82a1c1ae03d31..2fc949536010c 100644 --- a/blockchains/ton/info/info.json +++ b/blockchains/ton/info/info.json @@ -1,9 +1,9 @@ { - "name": "The Open Network", + "name": "Gram (prev. Toncoin)", "website": "https://ton.org", "description": "The Open Network is a blockchain-based decentralized computer network. TON is designed to enable processing millions of transactions per second via infinite sharding paradigm. It allows building Web 3.0 empowered by decentralized storage and DNS, instant payments and decentralized services.", "explorer": "https://tonscan.org/", - "symbol": "TON", + "symbol": "GRAM", "type": "coin", "decimals": 9, "status": "active", @@ -25,8 +25,8 @@ "url": "https://ton.org/whitepaper.pdf" }, { - "name": "twitter", - "url": "https://twitter.com/ton_blockchain" + "name": "x", + "url": "https://x.com/ton_blockchain" }, { "name": "telegram_news", @@ -45,4 +45,4 @@ "url": "https://github.com/ton-blockchain/ton" } ] -} +} \ No newline at end of file diff --git a/blockchains/ton/info/logo.png b/blockchains/ton/info/logo.png index 0e6ebc02e7960..62f59d9fb2ac8 100644 Binary files a/blockchains/ton/info/logo.png and b/blockchains/ton/info/logo.png differ diff --git a/blockchains/ton/info/square_logo.png b/blockchains/ton/info/square_logo.png new file mode 100644 index 0000000000000..1ad4ce5b7df42 Binary files /dev/null and b/blockchains/ton/info/square_logo.png differ diff --git a/blockchains/tron/assets/1001411/logo.png b/blockchains/tron/assets/1001411/logo.png deleted file mode 100644 index 8441ec9f92315..0000000000000 Binary files a/blockchains/tron/assets/1001411/logo.png and /dev/null differ diff --git a/blockchains/tron/assets/1002357/info.json b/blockchains/tron/assets/1002357/info.json index 6ace519991313..23acbbf7ca640 100644 --- a/blockchains/tron/assets/1002357/info.json +++ b/blockchains/tron/assets/1002357/info.json @@ -14,12 +14,12 @@ "url": "https://github.com/gmcoin" }, { - "name": "twitter", - "url": "https://twitter.com/coin_gm" + "name": "x", + "url": "https://x.com/coin_gm" }, { "name": "reddit", "url": "https://reddit.com/r/coingm/" } ] -} +} \ No newline at end of file diff --git a/blockchains/tron/assets/1003257/info.json b/blockchains/tron/assets/1003257/info.json index bad5bd554d112..88003561bd4c1 100644 --- a/blockchains/tron/assets/1003257/info.json +++ b/blockchains/tron/assets/1003257/info.json @@ -2,7 +2,7 @@ "name": "Vevocoin", "website": "https://vevocoin.com/", "telegram": "https://t.me/vevonews", - "twitter": "https://twitter.com/vevocoin", + "x": "https://x.com/vevocoin", "description": "VEVO is an open source platform in which everyone can use the code and token to their needs.", "explorer": "https://tronscan.io/#/token/1003257", "type": "TRC10", diff --git a/blockchains/tron/assets/1003611/info.json b/blockchains/tron/assets/1003611/info.json index 20bf5d507a760..0eb6b5b00a5c3 100644 --- a/blockchains/tron/assets/1003611/info.json +++ b/blockchains/tron/assets/1003611/info.json @@ -10,8 +10,8 @@ "id": "1003611", "links": [ { - "name": "twitter", - "url": "https://twitter.com/tomantoken" + "name": "x", + "url": "https://x.com/tomantoken" }, { "name": "telegram", diff --git a/blockchains/tron/assets/1004117/info.json b/blockchains/tron/assets/1004117/info.json index ffa2cff389606..242aaffe1266e 100644 --- a/blockchains/tron/assets/1004117/info.json +++ b/blockchains/tron/assets/1004117/info.json @@ -10,8 +10,8 @@ "id": "1004117", "links": [ { - "name": "twitter", - "url": "https://twitter.com/FlashTfc" + "name": "x", + "url": "https://x.com/FlashTfc" }, { "name": "github", diff --git a/blockchains/tron/assets/TAP7qf8Ao26ZAKYS5E6SGozUNoSLvBHsGa/info.json b/blockchains/tron/assets/TAP7qf8Ao26ZAKYS5E6SGozUNoSLvBHsGa/info.json new file mode 100644 index 0000000000000..15275bf756867 --- /dev/null +++ b/blockchains/tron/assets/TAP7qf8Ao26ZAKYS5E6SGozUNoSLvBHsGa/info.json @@ -0,0 +1,21 @@ +{ + "name": "YFX", + "type": "TRC20", + "symbol": "YFX", + "decimals": 18, + "description": "YFX is a trading platform provide up to 100x leverage to trade on BTC, ETH and other crypto assets support by ETH, Tron, BSC , Heco,OKEx Chain,Polkadot.", + "website": "https://www.yfx.com/", + "explorer": "https://tronscan.org/#/token20/TAP7qf8Ao26ZAKYS5E6SGozUNoSLvBHsGa", + "id": "TAP7qf8Ao26ZAKYS5E6SGozUNoSLvBHsGa", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/YFX_COM" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/your-future-exchange/" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TAP7qf8Ao26ZAKYS5E6SGozUNoSLvBHsGa/logo.png b/blockchains/tron/assets/TAP7qf8Ao26ZAKYS5E6SGozUNoSLvBHsGa/logo.png new file mode 100644 index 0000000000000..a5774fb57903a Binary files /dev/null and b/blockchains/tron/assets/TAP7qf8Ao26ZAKYS5E6SGozUNoSLvBHsGa/logo.png differ diff --git a/blockchains/tron/assets/TAQBJEsaniYimmtDnappeVjk48w6butEGR/info.json b/blockchains/tron/assets/TAQBJEsaniYimmtDnappeVjk48w6butEGR/info.json new file mode 100644 index 0000000000000..9e27c33b7e4c9 --- /dev/null +++ b/blockchains/tron/assets/TAQBJEsaniYimmtDnappeVjk48w6butEGR/info.json @@ -0,0 +1,20 @@ +{ + "name": "Berkshire Hathaway xStock", + "type": "TRC20", + "symbol": "BRK.Bx", + "decimals": 18, + "description": "Berkshire Hathaway xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TAQBJEsaniYimmtDnappeVjk48w6butEGR", + "status": "active", + "id": "TAQBJEsaniYimmtDnappeVjk48w6butEGR", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/berkshire-hathaway-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TAQBJEsaniYimmtDnappeVjk48w6butEGR/logo.png b/blockchains/tron/assets/TAQBJEsaniYimmtDnappeVjk48w6butEGR/logo.png new file mode 100644 index 0000000000000..bc33814d3547f Binary files /dev/null and b/blockchains/tron/assets/TAQBJEsaniYimmtDnappeVjk48w6butEGR/logo.png differ diff --git a/blockchains/tron/assets/TAQZkcG1yWLLJ9LZebkaRkCwpEbA1XLiuf/info.json b/blockchains/tron/assets/TAQZkcG1yWLLJ9LZebkaRkCwpEbA1XLiuf/info.json new file mode 100644 index 0000000000000..0cb18eba2ed54 --- /dev/null +++ b/blockchains/tron/assets/TAQZkcG1yWLLJ9LZebkaRkCwpEbA1XLiuf/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fake USDT", + "type": "TRC20", + "symbol": "Fake USDT", + "decimals": 6, + "website": "https://tronscan.org/#/contract/TAQZkcG1yWLLJ9LZebkaRkCwpEbA1XLiuf/code", + "description": "Fake USDT", + "explorer": "https://tronscan.io/#/token20/TAQZkcG1yWLLJ9LZebkaRkCwpEbA1XLiuf", + "status": "spam", + "id": "TAQZkcG1yWLLJ9LZebkaRkCwpEbA1XLiuf" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TAXgiRcychd5a8ZGXnUJMbKgUNUJBqgZUv/info.json b/blockchains/tron/assets/TAXgiRcychd5a8ZGXnUJMbKgUNUJBqgZUv/info.json new file mode 100644 index 0000000000000..3d5b8ea97a6c4 --- /dev/null +++ b/blockchains/tron/assets/TAXgiRcychd5a8ZGXnUJMbKgUNUJBqgZUv/info.json @@ -0,0 +1,20 @@ +{ + "name": "Pfizer xStock", + "type": "TRC20", + "symbol": "PFEx", + "decimals": 18, + "description": "Pfizer xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TAXgiRcychd5a8ZGXnUJMbKgUNUJBqgZUv", + "status": "active", + "id": "TAXgiRcychd5a8ZGXnUJMbKgUNUJBqgZUv", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pfizer-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TAXgiRcychd5a8ZGXnUJMbKgUNUJBqgZUv/logo.png b/blockchains/tron/assets/TAXgiRcychd5a8ZGXnUJMbKgUNUJBqgZUv/logo.png new file mode 100644 index 0000000000000..4b4b3feccd32c Binary files /dev/null and b/blockchains/tron/assets/TAXgiRcychd5a8ZGXnUJMbKgUNUJBqgZUv/logo.png differ diff --git a/blockchains/tron/assets/TAYESCWwT6JHjYh5MugMie6DQ9GwzVXSKt/info.json b/blockchains/tron/assets/TAYESCWwT6JHjYh5MugMie6DQ9GwzVXSKt/info.json new file mode 100644 index 0000000000000..06a16acad13fa --- /dev/null +++ b/blockchains/tron/assets/TAYESCWwT6JHjYh5MugMie6DQ9GwzVXSKt/info.json @@ -0,0 +1,20 @@ +{ + "name": "Walmart xStock", + "type": "TRC20", + "symbol": "WMTx", + "decimals": 18, + "description": "Walmart xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TAYESCWwT6JHjYh5MugMie6DQ9GwzVXSKt", + "status": "active", + "id": "TAYESCWwT6JHjYh5MugMie6DQ9GwzVXSKt", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/walmart-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TAYESCWwT6JHjYh5MugMie6DQ9GwzVXSKt/logo.png b/blockchains/tron/assets/TAYESCWwT6JHjYh5MugMie6DQ9GwzVXSKt/logo.png new file mode 100644 index 0000000000000..d63f90439c0a3 Binary files /dev/null and b/blockchains/tron/assets/TAYESCWwT6JHjYh5MugMie6DQ9GwzVXSKt/logo.png differ diff --git a/blockchains/tron/assets/TAoA331n3iKDkR62kAZ4H2n3vNL7y3d8x9/info.json b/blockchains/tron/assets/TAoA331n3iKDkR62kAZ4H2n3vNL7y3d8x9/info.json index 241670bcd41e4..7bf11fd03f3e1 100644 --- a/blockchains/tron/assets/TAoA331n3iKDkR62kAZ4H2n3vNL7y3d8x9/info.json +++ b/blockchains/tron/assets/TAoA331n3iKDkR62kAZ4H2n3vNL7y3d8x9/info.json @@ -10,8 +10,8 @@ "id": "TAoA331n3iKDkR62kAZ4H2n3vNL7y3d8x9", "links": [ { - "name": "twitter", - "url": "https://twitter.com/bcntoken" + "name": "x", + "url": "https://x.com/bcntoken" }, { "name": "github", diff --git a/blockchains/tron/assets/TAt4ufXFaHZAEV44ev7onThjTnF61SEaEM/info.json b/blockchains/tron/assets/TAt4ufXFaHZAEV44ev7onThjTnF61SEaEM/info.json new file mode 100644 index 0000000000000..e697c76717e69 --- /dev/null +++ b/blockchains/tron/assets/TAt4ufXFaHZAEV44ev7onThjTnF61SEaEM/info.json @@ -0,0 +1,17 @@ +{ + "name": "Tron Bull", + "website": "https://www.tronbullcoin.com/", + "description": "Tron Bull :The Symbol for Encouragement", + "explorer": "https://tronscan.org/#/token20/TAt4ufXFaHZAEV44ev7onThjTnF61SEaEM", + "type": "TRC20", + "symbol": "BULL", + "decimals": 18, + "status": "active", + "id": "TAt4ufXFaHZAEV44ev7onThjTnF61SEaEM", + "links": [ + { + "name": "x", + "url": "https://x.com/TRXTronBull" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TAt4ufXFaHZAEV44ev7onThjTnF61SEaEM/logo.png b/blockchains/tron/assets/TAt4ufXFaHZAEV44ev7onThjTnF61SEaEM/logo.png new file mode 100644 index 0000000000000..2c6e3fac34375 Binary files /dev/null and b/blockchains/tron/assets/TAt4ufXFaHZAEV44ev7onThjTnF61SEaEM/logo.png differ diff --git a/blockchains/tron/assets/TAzpJHxxgJd8f5AKjzndEndH3S9pzNUM5W/info.json b/blockchains/tron/assets/TAzpJHxxgJd8f5AKjzndEndH3S9pzNUM5W/info.json new file mode 100644 index 0000000000000..9333bac26c75b --- /dev/null +++ b/blockchains/tron/assets/TAzpJHxxgJd8f5AKjzndEndH3S9pzNUM5W/info.json @@ -0,0 +1,21 @@ +{ + "name": "sunpepe", + "type": "TRC20", + "symbol": "SUNPEPE", + "decimals": 18, + "description": "SUN PEPE, THE BIGGEST PEPE MEME ON TRON, EVERY CHAIN NEEDS ITS PEPE, EVERY PEPE HAS ITS DAY. EVERYTHING IS JUST FINE, SUN PEPE IS VERY SERIOUS PEPE, BRINGS MANY SUNSHINES, MANY FUN AND MUCH LOVE TO TRON.", + "website": "https://sunpepe.meme/", + "explorer": "https://tronscan.org/#/token20/TAzpJHxxgJd8f5AKjzndEndH3S9pzNUM5W", + "id": "TAzpJHxxgJd8f5AKjzndEndH3S9pzNUM5W", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/SUNPEPE_TRX" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sunpepe/" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TAzpJHxxgJd8f5AKjzndEndH3S9pzNUM5W/logo.png b/blockchains/tron/assets/TAzpJHxxgJd8f5AKjzndEndH3S9pzNUM5W/logo.png new file mode 100644 index 0000000000000..c6cefa40dd790 Binary files /dev/null and b/blockchains/tron/assets/TAzpJHxxgJd8f5AKjzndEndH3S9pzNUM5W/logo.png differ diff --git a/blockchains/tron/assets/TB6SgnNZyqz2KnFRw6yQM7AqVSCphfvBXy/info.json b/blockchains/tron/assets/TB6SgnNZyqz2KnFRw6yQM7AqVSCphfvBXy/info.json new file mode 100644 index 0000000000000..6667392b55b2c --- /dev/null +++ b/blockchains/tron/assets/TB6SgnNZyqz2KnFRw6yQM7AqVSCphfvBXy/info.json @@ -0,0 +1,20 @@ +{ + "name": "Marvell xStock", + "type": "TRC20", + "symbol": "MRVLx", + "decimals": 18, + "description": "Marvell xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TB6SgnNZyqz2KnFRw6yQM7AqVSCphfvBXy", + "status": "active", + "id": "TB6SgnNZyqz2KnFRw6yQM7AqVSCphfvBXy", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/marvell-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TB6SgnNZyqz2KnFRw6yQM7AqVSCphfvBXy/logo.png b/blockchains/tron/assets/TB6SgnNZyqz2KnFRw6yQM7AqVSCphfvBXy/logo.png new file mode 100644 index 0000000000000..5a63b3624464b Binary files /dev/null and b/blockchains/tron/assets/TB6SgnNZyqz2KnFRw6yQM7AqVSCphfvBXy/logo.png differ diff --git a/blockchains/tron/assets/TBzxhCtwhG858UPYJaRHc4q7WvAsbYN16D/info.json b/blockchains/tron/assets/TBzxhCtwhG858UPYJaRHc4q7WvAsbYN16D/info.json new file mode 100644 index 0000000000000..b7d8e9187ffe3 --- /dev/null +++ b/blockchains/tron/assets/TBzxhCtwhG858UPYJaRHc4q7WvAsbYN16D/info.json @@ -0,0 +1,20 @@ +{ + "name": "UnitedHealth xStock", + "type": "TRC20", + "symbol": "UNHx", + "decimals": 18, + "description": "UnitedHealth xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TBzxhCtwhG858UPYJaRHc4q7WvAsbYN16D", + "status": "active", + "id": "TBzxhCtwhG858UPYJaRHc4q7WvAsbYN16D", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/unitedhealth-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TBzxhCtwhG858UPYJaRHc4q7WvAsbYN16D/logo.png b/blockchains/tron/assets/TBzxhCtwhG858UPYJaRHc4q7WvAsbYN16D/logo.png new file mode 100644 index 0000000000000..4b5abed43499d Binary files /dev/null and b/blockchains/tron/assets/TBzxhCtwhG858UPYJaRHc4q7WvAsbYN16D/logo.png differ diff --git a/blockchains/tron/assets/TCDQkeGtGoqfjKvewXuz52CYx9tMXALSYg/info.json b/blockchains/tron/assets/TCDQkeGtGoqfjKvewXuz52CYx9tMXALSYg/info.json new file mode 100644 index 0000000000000..3614d4735c2a7 --- /dev/null +++ b/blockchains/tron/assets/TCDQkeGtGoqfjKvewXuz52CYx9tMXALSYg/info.json @@ -0,0 +1,20 @@ +{ + "name": "Coca-Cola xStock", + "type": "TRC20", + "symbol": "KOx", + "decimals": 18, + "description": "Coca-Cola xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TCDQkeGtGoqfjKvewXuz52CYx9tMXALSYg", + "status": "active", + "id": "TCDQkeGtGoqfjKvewXuz52CYx9tMXALSYg", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coca-cola-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TCDQkeGtGoqfjKvewXuz52CYx9tMXALSYg/logo.png b/blockchains/tron/assets/TCDQkeGtGoqfjKvewXuz52CYx9tMXALSYg/logo.png new file mode 100644 index 0000000000000..1cd980d96e379 Binary files /dev/null and b/blockchains/tron/assets/TCDQkeGtGoqfjKvewXuz52CYx9tMXALSYg/logo.png differ diff --git a/blockchains/tron/assets/TCDgp5bwtixaShPifUm7HpZ71C1pe6zif1/info.json b/blockchains/tron/assets/TCDgp5bwtixaShPifUm7HpZ71C1pe6zif1/info.json index 749875a332e3c..63e270d50dae1 100644 --- a/blockchains/tron/assets/TCDgp5bwtixaShPifUm7HpZ71C1pe6zif1/info.json +++ b/blockchains/tron/assets/TCDgp5bwtixaShPifUm7HpZ71C1pe6zif1/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/netcoincapital/" }, { - "name": "twitter", - "url": "https://twitter.com/ncctoken" + "name": "x", + "url": "https://x.com/ncctoken" }, { "name": "medium", diff --git a/blockchains/tron/assets/TCLMbjq3kWidS2Cwr34jy9WL6Vehfu7LXr/info.json b/blockchains/tron/assets/TCLMbjq3kWidS2Cwr34jy9WL6Vehfu7LXr/info.json new file mode 100644 index 0000000000000..caf77ffc0d807 --- /dev/null +++ b/blockchains/tron/assets/TCLMbjq3kWidS2Cwr34jy9WL6Vehfu7LXr/info.json @@ -0,0 +1,20 @@ +{ + "name": "Danaher xStock", + "type": "TRC20", + "symbol": "DHRx", + "decimals": 18, + "description": "Danaher xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TCLMbjq3kWidS2Cwr34jy9WL6Vehfu7LXr", + "status": "active", + "id": "TCLMbjq3kWidS2Cwr34jy9WL6Vehfu7LXr", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/danaher-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TCLMbjq3kWidS2Cwr34jy9WL6Vehfu7LXr/logo.png b/blockchains/tron/assets/TCLMbjq3kWidS2Cwr34jy9WL6Vehfu7LXr/logo.png new file mode 100644 index 0000000000000..86532032c2284 Binary files /dev/null and b/blockchains/tron/assets/TCLMbjq3kWidS2Cwr34jy9WL6Vehfu7LXr/logo.png differ diff --git a/blockchains/tron/assets/TCMwzYUUCxLkTNpXjkYSBgXgqXwt7KJ82y/info.json b/blockchains/tron/assets/TCMwzYUUCxLkTNpXjkYSBgXgqXwt7KJ82y/info.json index 7bab58480dc9b..9a51ae32c51b1 100644 --- a/blockchains/tron/assets/TCMwzYUUCxLkTNpXjkYSBgXgqXwt7KJ82y/info.json +++ b/blockchains/tron/assets/TCMwzYUUCxLkTNpXjkYSBgXgqXwt7KJ82y/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/TTCOIN-TC/tc/raw/main/whitepaper/tc-whitepaper-v2-EN.pdf" }, { - "name": "twitter", - "url": "https://twitter.com/ttcoinofficial" + "name": "x", + "url": "https://x.com/ttcoinofficial" }, { "name": "telegram", diff --git a/blockchains/tron/assets/TCNja6oW3FrN7YfxtpBsckGWc1TLUDoWzo/info.json b/blockchains/tron/assets/TCNja6oW3FrN7YfxtpBsckGWc1TLUDoWzo/info.json new file mode 100644 index 0000000000000..f4f30118c00a7 --- /dev/null +++ b/blockchains/tron/assets/TCNja6oW3FrN7YfxtpBsckGWc1TLUDoWzo/info.json @@ -0,0 +1,15 @@ +{ + "name": "S&P Small Cap xStock", + "type": "TRC20", + "symbol": "IJRx", + "decimals": 18, + "description": "S&P Small Cap xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TCNja6oW3FrN7YfxtpBsckGWc1TLUDoWzo", + "status": "active", + "id": "TCNja6oW3FrN7YfxtpBsckGWc1TLUDoWzo", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TCNja6oW3FrN7YfxtpBsckGWc1TLUDoWzo/logo.png b/blockchains/tron/assets/TCNja6oW3FrN7YfxtpBsckGWc1TLUDoWzo/logo.png new file mode 100644 index 0000000000000..d5c48229001bc Binary files /dev/null and b/blockchains/tron/assets/TCNja6oW3FrN7YfxtpBsckGWc1TLUDoWzo/logo.png differ diff --git a/blockchains/tron/assets/TCR2f2EZEriqFV2b6nfnsZ7TUcVRyx8U8S/info.json b/blockchains/tron/assets/TCR2f2EZEriqFV2b6nfnsZ7TUcVRyx8U8S/info.json new file mode 100644 index 0000000000000..ce9ed528bf839 --- /dev/null +++ b/blockchains/tron/assets/TCR2f2EZEriqFV2b6nfnsZ7TUcVRyx8U8S/info.json @@ -0,0 +1,14 @@ +{ + "name": "TieDan", + "type": "TRC20", + "symbol": "TIEDAN", + "decimals": 18, + "website": "https://tronscan.org/#/token20/TCR2f2EZEriqFV2b6nfnsZ7TUcVRyx8U8S", + "description": "Every New Chain Mooner Started Off with the Founder's Dog, and Let's Meet JUSTIN SUN DOG $TIEDAN #铁蛋", + "explorer": "https://tronscan.io/#/token20/TCR2f2EZEriqFV2b6nfnsZ7TUcVRyx8U8S", + "status": "active", + "id": "TCR2f2EZEriqFV2b6nfnsZ7TUcVRyx8U8S", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TCR2f2EZEriqFV2b6nfnsZ7TUcVRyx8U8S/logo.png b/blockchains/tron/assets/TCR2f2EZEriqFV2b6nfnsZ7TUcVRyx8U8S/logo.png new file mode 100644 index 0000000000000..a68d2ff907e53 Binary files /dev/null and b/blockchains/tron/assets/TCR2f2EZEriqFV2b6nfnsZ7TUcVRyx8U8S/logo.png differ diff --git a/blockchains/tron/assets/TCVJcRqEEpkbs2iSJtMumoTqPxrKPwCLaW/info.json b/blockchains/tron/assets/TCVJcRqEEpkbs2iSJtMumoTqPxrKPwCLaW/info.json new file mode 100644 index 0000000000000..6a32d6c18307e --- /dev/null +++ b/blockchains/tron/assets/TCVJcRqEEpkbs2iSJtMumoTqPxrKPwCLaW/info.json @@ -0,0 +1,20 @@ +{ + "name": "McDonald's xStock", + "type": "TRC20", + "symbol": "MCDx", + "decimals": 18, + "description": "McDonald's xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TCVJcRqEEpkbs2iSJtMumoTqPxrKPwCLaW", + "status": "active", + "id": "TCVJcRqEEpkbs2iSJtMumoTqPxrKPwCLaW", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mcdonald-s-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TCVJcRqEEpkbs2iSJtMumoTqPxrKPwCLaW/logo.png b/blockchains/tron/assets/TCVJcRqEEpkbs2iSJtMumoTqPxrKPwCLaW/logo.png new file mode 100644 index 0000000000000..23943fce25ada Binary files /dev/null and b/blockchains/tron/assets/TCVJcRqEEpkbs2iSJtMumoTqPxrKPwCLaW/logo.png differ diff --git a/blockchains/tron/assets/TCaGwbURbmdYkG7fE8uXdbnofhw1uhA9zL/info.json b/blockchains/tron/assets/TCaGwbURbmdYkG7fE8uXdbnofhw1uhA9zL/info.json new file mode 100644 index 0000000000000..f1010755a6bb2 --- /dev/null +++ b/blockchains/tron/assets/TCaGwbURbmdYkG7fE8uXdbnofhw1uhA9zL/info.json @@ -0,0 +1,20 @@ +{ + "name": "Coinbase xStock", + "type": "TRC20", + "symbol": "COINx", + "decimals": 18, + "description": "Coinbase xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TCaGwbURbmdYkG7fE8uXdbnofhw1uhA9zL", + "status": "active", + "id": "TCaGwbURbmdYkG7fE8uXdbnofhw1uhA9zL", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coinbase-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TCaGwbURbmdYkG7fE8uXdbnofhw1uhA9zL/logo.png b/blockchains/tron/assets/TCaGwbURbmdYkG7fE8uXdbnofhw1uhA9zL/logo.png new file mode 100644 index 0000000000000..3ff644e16ddd5 Binary files /dev/null and b/blockchains/tron/assets/TCaGwbURbmdYkG7fE8uXdbnofhw1uhA9zL/logo.png differ diff --git a/blockchains/tron/assets/TCeEjxAJUxfPCoWwuKxgo1mFwAASsj421j/info.json b/blockchains/tron/assets/TCeEjxAJUxfPCoWwuKxgo1mFwAASsj421j/info.json new file mode 100644 index 0000000000000..7b667299c8db8 --- /dev/null +++ b/blockchains/tron/assets/TCeEjxAJUxfPCoWwuKxgo1mFwAASsj421j/info.json @@ -0,0 +1,21 @@ +{ + "name": "Ruby Assest", + "type": "TRC20", + "symbol": "RBC", + "decimals": 18, + "description": "Ruby Currency is a blockchain platform for changemakers, innovators, and visionaries, with the tools and technologies required to create possibilities for the many.", + "website": "https://rbcy.io/", + "explorer": "https://tronscan.org/#/token20/TCeEjxAJUxfPCoWwuKxgo1mFwAASsj421j", + "id": "TCeEjxAJUxfPCoWwuKxgo1mFwAASsj421j", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/ruby_rbc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ruby-currency/" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TCeEjxAJUxfPCoWwuKxgo1mFwAASsj421j/logo.png b/blockchains/tron/assets/TCeEjxAJUxfPCoWwuKxgo1mFwAASsj421j/logo.png new file mode 100644 index 0000000000000..523f7660ab251 Binary files /dev/null and b/blockchains/tron/assets/TCeEjxAJUxfPCoWwuKxgo1mFwAASsj421j/logo.png differ diff --git a/blockchains/tron/assets/TCwM615RL1PrB8hJnAYaPqx2CxJj7D8urh/info.json b/blockchains/tron/assets/TCwM615RL1PrB8hJnAYaPqx2CxJj7D8urh/info.json new file mode 100644 index 0000000000000..8aa06a3b40dd0 --- /dev/null +++ b/blockchains/tron/assets/TCwM615RL1PrB8hJnAYaPqx2CxJj7D8urh/info.json @@ -0,0 +1,20 @@ +{ + "name": "Johnson & Johnson xStock", + "type": "TRC20", + "symbol": "JNJx", + "decimals": 18, + "description": "Johnson & Johnson xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TCwM615RL1PrB8hJnAYaPqx2CxJj7D8urh", + "status": "active", + "id": "TCwM615RL1PrB8hJnAYaPqx2CxJj7D8urh", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/johnson-johnson-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TCwM615RL1PrB8hJnAYaPqx2CxJj7D8urh/logo.png b/blockchains/tron/assets/TCwM615RL1PrB8hJnAYaPqx2CxJj7D8urh/logo.png new file mode 100644 index 0000000000000..67bdfefec03ca Binary files /dev/null and b/blockchains/tron/assets/TCwM615RL1PrB8hJnAYaPqx2CxJj7D8urh/logo.png differ diff --git a/blockchains/tron/assets/TD7Q8YVhptzqfvpS5bk8XvSqYaC92ZkbX5/info.json b/blockchains/tron/assets/TD7Q8YVhptzqfvpS5bk8XvSqYaC92ZkbX5/info.json new file mode 100644 index 0000000000000..29c6111a2c379 --- /dev/null +++ b/blockchains/tron/assets/TD7Q8YVhptzqfvpS5bk8XvSqYaC92ZkbX5/info.json @@ -0,0 +1,15 @@ +{ + "name": "Vanguard Total World xStock", + "type": "TRC20", + "symbol": "VTx", + "decimals": 18, + "description": "Vanguard Total World xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TD7Q8YVhptzqfvpS5bk8XvSqYaC92ZkbX5", + "status": "active", + "id": "TD7Q8YVhptzqfvpS5bk8XvSqYaC92ZkbX5", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TD7Q8YVhptzqfvpS5bk8XvSqYaC92ZkbX5/logo.png b/blockchains/tron/assets/TD7Q8YVhptzqfvpS5bk8XvSqYaC92ZkbX5/logo.png new file mode 100644 index 0000000000000..5968d83be9311 Binary files /dev/null and b/blockchains/tron/assets/TD7Q8YVhptzqfvpS5bk8XvSqYaC92ZkbX5/logo.png differ diff --git a/blockchains/tron/assets/TDVHfwqTFimf8bAYSkzvQe3vwArRDMdcFh/info.json b/blockchains/tron/assets/TDVHfwqTFimf8bAYSkzvQe3vwArRDMdcFh/info.json new file mode 100644 index 0000000000000..c890d577c0f15 --- /dev/null +++ b/blockchains/tron/assets/TDVHfwqTFimf8bAYSkzvQe3vwArRDMdcFh/info.json @@ -0,0 +1,20 @@ +{ + "name": "Microsoft xStock", + "type": "TRC20", + "symbol": "MSFTx", + "decimals": 18, + "description": "Microsoft xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TDVHfwqTFimf8bAYSkzvQe3vwArRDMdcFh", + "status": "active", + "id": "TDVHfwqTFimf8bAYSkzvQe3vwArRDMdcFh", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/microsoft-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TDVHfwqTFimf8bAYSkzvQe3vwArRDMdcFh/logo.png b/blockchains/tron/assets/TDVHfwqTFimf8bAYSkzvQe3vwArRDMdcFh/logo.png new file mode 100644 index 0000000000000..ea955b964bb0e Binary files /dev/null and b/blockchains/tron/assets/TDVHfwqTFimf8bAYSkzvQe3vwArRDMdcFh/logo.png differ diff --git a/blockchains/tron/assets/TDXJ1dSPLsN52jhP32NvVyhQ5X265BNU5c/info.json b/blockchains/tron/assets/TDXJ1dSPLsN52jhP32NvVyhQ5X265BNU5c/info.json index c2ef2d2db7e0a..484a5d2652072 100644 --- a/blockchains/tron/assets/TDXJ1dSPLsN52jhP32NvVyhQ5X265BNU5c/info.json +++ b/blockchains/tron/assets/TDXJ1dSPLsN52jhP32NvVyhQ5X265BNU5c/info.json @@ -11,8 +11,8 @@ "id": "TDXJ1dSPLsN52jhP32NvVyhQ5X265BNU5c", "links": [ { - "name": "twitter", - "url": "https://twitter.com/richlabexchange" + "name": "x", + "url": "https://x.com/richlabexchange" }, { "name": "telegram", diff --git a/blockchains/tron/assets/TDfWA29BscN2wdhQ6PVWEajxEn8EU9HQ2z/info.json b/blockchains/tron/assets/TDfWA29BscN2wdhQ6PVWEajxEn8EU9HQ2z/info.json new file mode 100644 index 0000000000000..fd5a05accfedc --- /dev/null +++ b/blockchains/tron/assets/TDfWA29BscN2wdhQ6PVWEajxEn8EU9HQ2z/info.json @@ -0,0 +1,20 @@ +{ + "name": "Gamestop xStock", + "type": "TRC20", + "symbol": "GMEx", + "decimals": 18, + "description": "Gamestop xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TDfWA29BscN2wdhQ6PVWEajxEn8EU9HQ2z", + "status": "active", + "id": "TDfWA29BscN2wdhQ6PVWEajxEn8EU9HQ2z", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gamestop-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TDfWA29BscN2wdhQ6PVWEajxEn8EU9HQ2z/logo.png b/blockchains/tron/assets/TDfWA29BscN2wdhQ6PVWEajxEn8EU9HQ2z/logo.png new file mode 100644 index 0000000000000..37200bdc25ac3 Binary files /dev/null and b/blockchains/tron/assets/TDfWA29BscN2wdhQ6PVWEajxEn8EU9HQ2z/logo.png differ diff --git a/blockchains/tron/assets/TDxL4V5LE6TYSFXSCWJkkSsCYbgmrDnTer/info.json b/blockchains/tron/assets/TDxL4V5LE6TYSFXSCWJkkSsCYbgmrDnTer/info.json new file mode 100644 index 0000000000000..32989be410797 --- /dev/null +++ b/blockchains/tron/assets/TDxL4V5LE6TYSFXSCWJkkSsCYbgmrDnTer/info.json @@ -0,0 +1,14 @@ +{ + "name": "szn", + "type": "TRC20", + "symbol": "szn", + "decimals": 18, + "website": "https://tronscan.org/#/token20/TDxL4V5LE6TYSFXSCWJkkSsCYbgmrDnTer", + "description": "szn", + "explorer": "https://tronscan.io/#/token20/TDxL4V5LE6TYSFXSCWJkkSsCYbgmrDnTer", + "status": "active", + "id": "TDxL4V5LE6TYSFXSCWJkkSsCYbgmrDnTer", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TDxL4V5LE6TYSFXSCWJkkSsCYbgmrDnTer/logo.png b/blockchains/tron/assets/TDxL4V5LE6TYSFXSCWJkkSsCYbgmrDnTer/logo.png new file mode 100644 index 0000000000000..01b701fcc361f Binary files /dev/null and b/blockchains/tron/assets/TDxL4V5LE6TYSFXSCWJkkSsCYbgmrDnTer/logo.png differ diff --git a/blockchains/tron/assets/TDxQgYxT3GZVmt1mo8je8hzMv9WUrRkBa7/info.json b/blockchains/tron/assets/TDxQgYxT3GZVmt1mo8je8hzMv9WUrRkBa7/info.json new file mode 100644 index 0000000000000..8e75448076d17 --- /dev/null +++ b/blockchains/tron/assets/TDxQgYxT3GZVmt1mo8je8hzMv9WUrRkBa7/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tether USD (Bridge TC10)", + "type": "TRC20", + "symbol": "FAKE USD.C", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://tronscan.org/#/token20/TDxQgYxT3GZVmt1mo8je8hzMv9WUrRkBa7", + "explorer": "https://tronscan.org/#/token20/TDxQgYxT3GZVmt1mo8je8hzMv9WUrRkBa7", + "status": "spam", + "id": "TDxQgYxT3GZVmt1mo8je8hzMv9WUrRkBa7" +} diff --git a/blockchains/tron/assets/TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8/info.json b/blockchains/tron/assets/TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8/info.json index 9d3125e25bc92..4657fadb4d628 100644 --- a/blockchains/tron/assets/TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8/info.json +++ b/blockchains/tron/assets/TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8/info.json @@ -1,5 +1,5 @@ { - "name": "USD Coin", + "name": "USDC", "type": "TRC20", "symbol": "USDC", "decimals": 6, @@ -14,8 +14,11 @@ "url": "https://github.com/centrehq" }, { - "name": "twitter", - "url": "https://twitter.com/centre_io" + "name": "x", + "url": "https://x.com/centre_io" } + ], + "tags": [ + "stablecoin" ] } \ No newline at end of file diff --git a/blockchains/tron/assets/TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8/logo.png b/blockchains/tron/assets/TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8/logo.png index 3146ee52ebbb3..b6f150d8a7d46 100644 Binary files a/blockchains/tron/assets/TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8/logo.png and b/blockchains/tron/assets/TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8/logo.png differ diff --git a/blockchains/tron/assets/TFFxGGpVqxCDvo6upD3od5dFNtiRMv4Hc4/info.json b/blockchains/tron/assets/TFFxGGpVqxCDvo6upD3od5dFNtiRMv4Hc4/info.json index 75dcf22c1c12c..a6a40c1a393f9 100644 --- a/blockchains/tron/assets/TFFxGGpVqxCDvo6upD3od5dFNtiRMv4Hc4/info.json +++ b/blockchains/tron/assets/TFFxGGpVqxCDvo6upD3od5dFNtiRMv4Hc4/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/remitt-repos" }, { - "name": "twitter", - "url": "https://twitter.com/remitt_bot" + "name": "x", + "url": "https://x.com/remitt_bot" }, { "name": "facebook", @@ -29,4 +29,4 @@ "url": "https://remitt.ai" } ] -} +} \ No newline at end of file diff --git a/blockchains/tron/assets/TFcmTYcctE3h3p7PJjp5JraPoMjdUE7rtV/info.json b/blockchains/tron/assets/TFcmTYcctE3h3p7PJjp5JraPoMjdUE7rtV/info.json new file mode 100644 index 0000000000000..c1fe07738c316 --- /dev/null +++ b/blockchains/tron/assets/TFcmTYcctE3h3p7PJjp5JraPoMjdUE7rtV/info.json @@ -0,0 +1,20 @@ +{ + "name": "JPMorgan Chase xStock", + "type": "TRC20", + "symbol": "JPMx", + "decimals": 18, + "description": "JPMorgan Chase xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TFcmTYcctE3h3p7PJjp5JraPoMjdUE7rtV", + "status": "active", + "id": "TFcmTYcctE3h3p7PJjp5JraPoMjdUE7rtV", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jpmorgan-chase-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TFcmTYcctE3h3p7PJjp5JraPoMjdUE7rtV/logo.png b/blockchains/tron/assets/TFcmTYcctE3h3p7PJjp5JraPoMjdUE7rtV/logo.png new file mode 100644 index 0000000000000..408eeb7537f04 Binary files /dev/null and b/blockchains/tron/assets/TFcmTYcctE3h3p7PJjp5JraPoMjdUE7rtV/logo.png differ diff --git a/blockchains/tron/assets/TFhZEJ2tEwxN2M9Mjgvm7ATyjs9ARW2ehP/info.json b/blockchains/tron/assets/TFhZEJ2tEwxN2M9Mjgvm7ATyjs9ARW2ehP/info.json new file mode 100644 index 0000000000000..446861307b0d7 --- /dev/null +++ b/blockchains/tron/assets/TFhZEJ2tEwxN2M9Mjgvm7ATyjs9ARW2ehP/info.json @@ -0,0 +1,20 @@ +{ + "name": "Honeywell xStock", + "type": "TRC20", + "symbol": "HONx", + "decimals": 18, + "description": "Honeywell xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TFhZEJ2tEwxN2M9Mjgvm7ATyjs9ARW2ehP", + "status": "active", + "id": "TFhZEJ2tEwxN2M9Mjgvm7ATyjs9ARW2ehP", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/honeywell-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TFhZEJ2tEwxN2M9Mjgvm7ATyjs9ARW2ehP/logo.png b/blockchains/tron/assets/TFhZEJ2tEwxN2M9Mjgvm7ATyjs9ARW2ehP/logo.png new file mode 100644 index 0000000000000..f5edd54dd6bd5 Binary files /dev/null and b/blockchains/tron/assets/TFhZEJ2tEwxN2M9Mjgvm7ATyjs9ARW2ehP/logo.png differ diff --git a/blockchains/tron/assets/TFhjqjULhxx83Ed1kvvJmP6DpaF4fYJ2nU/info.json b/blockchains/tron/assets/TFhjqjULhxx83Ed1kvvJmP6DpaF4fYJ2nU/info.json new file mode 100644 index 0000000000000..dc6e8c3b8fa2f --- /dev/null +++ b/blockchains/tron/assets/TFhjqjULhxx83Ed1kvvJmP6DpaF4fYJ2nU/info.json @@ -0,0 +1,20 @@ +{ + "name": "Visa xStock", + "type": "TRC20", + "symbol": "Vx", + "decimals": 18, + "description": "Visa xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TFhjqjULhxx83Ed1kvvJmP6DpaF4fYJ2nU", + "status": "active", + "id": "TFhjqjULhxx83Ed1kvvJmP6DpaF4fYJ2nU", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/visa-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TFhjqjULhxx83Ed1kvvJmP6DpaF4fYJ2nU/logo.png b/blockchains/tron/assets/TFhjqjULhxx83Ed1kvvJmP6DpaF4fYJ2nU/logo.png new file mode 100644 index 0000000000000..21269313bbbbb Binary files /dev/null and b/blockchains/tron/assets/TFhjqjULhxx83Ed1kvvJmP6DpaF4fYJ2nU/logo.png differ diff --git a/blockchains/tron/assets/TGJaEbWPNmM6NErggxJwWQ5ChRH7KxXF3a/info.json b/blockchains/tron/assets/TGJaEbWPNmM6NErggxJwWQ5ChRH7KxXF3a/info.json new file mode 100644 index 0000000000000..91568f7f3fa32 --- /dev/null +++ b/blockchains/tron/assets/TGJaEbWPNmM6NErggxJwWQ5ChRH7KxXF3a/info.json @@ -0,0 +1,20 @@ +{ + "name": "Meta xStock", + "type": "TRC20", + "symbol": "METAx", + "decimals": 18, + "description": "Meta xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TGJaEbWPNmM6NErggxJwWQ5ChRH7KxXF3a", + "status": "active", + "id": "TGJaEbWPNmM6NErggxJwWQ5ChRH7KxXF3a", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/meta-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TGJaEbWPNmM6NErggxJwWQ5ChRH7KxXF3a/logo.png b/blockchains/tron/assets/TGJaEbWPNmM6NErggxJwWQ5ChRH7KxXF3a/logo.png new file mode 100644 index 0000000000000..e5513d1462429 Binary files /dev/null and b/blockchains/tron/assets/TGJaEbWPNmM6NErggxJwWQ5ChRH7KxXF3a/logo.png differ diff --git a/blockchains/tron/assets/TGZ5j1Z1Bs4YN54HhBLaWXJQApiQmJnAq5/info.json b/blockchains/tron/assets/TGZ5j1Z1Bs4YN54HhBLaWXJQApiQmJnAq5/info.json new file mode 100644 index 0000000000000..f76ec59628249 --- /dev/null +++ b/blockchains/tron/assets/TGZ5j1Z1Bs4YN54HhBLaWXJQApiQmJnAq5/info.json @@ -0,0 +1,20 @@ +{ + "name": "Vanguard xStock", + "type": "TRC20", + "symbol": "VTIx", + "decimals": 18, + "description": "Vanguard xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TGZ5j1Z1Bs4YN54HhBLaWXJQApiQmJnAq5", + "status": "active", + "id": "TGZ5j1Z1Bs4YN54HhBLaWXJQApiQmJnAq5", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vanguard-tokenized-etf-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TGZ5j1Z1Bs4YN54HhBLaWXJQApiQmJnAq5/logo.png b/blockchains/tron/assets/TGZ5j1Z1Bs4YN54HhBLaWXJQApiQmJnAq5/logo.png new file mode 100644 index 0000000000000..ea385e42145a9 Binary files /dev/null and b/blockchains/tron/assets/TGZ5j1Z1Bs4YN54HhBLaWXJQApiQmJnAq5/logo.png differ diff --git a/blockchains/tron/assets/TGkxzkDKyMeq2T7edKnyjZoFypyzjkkssq/info.json b/blockchains/tron/assets/TGkxzkDKyMeq2T7edKnyjZoFypyzjkkssq/info.json new file mode 100644 index 0000000000000..cde87f6d39fcb --- /dev/null +++ b/blockchains/tron/assets/TGkxzkDKyMeq2T7edKnyjZoFypyzjkkssq/info.json @@ -0,0 +1,14 @@ +{ + "name": "Wrapped Staked USDT", + "type": "TRC20", + "symbol": "wstUSDT", + "decimals": 18, + "website": "https://stusdt.io/", + "description": "Wrapped stUSDT is a non-rebasing version of stUSDT which allows for easier integrations with DeFi protocols.", + "explorer": "https://tronscan.io/#/token20/TGkxzkDKyMeq2T7edKnyjZoFypyzjkkssq", + "status": "active", + "id": "TGkxzkDKyMeq2T7edKnyjZoFypyzjkkssq", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TGkxzkDKyMeq2T7edKnyjZoFypyzjkkssq/logo.png b/blockchains/tron/assets/TGkxzkDKyMeq2T7edKnyjZoFypyzjkkssq/logo.png new file mode 100644 index 0000000000000..a5b60873b2e5a Binary files /dev/null and b/blockchains/tron/assets/TGkxzkDKyMeq2T7edKnyjZoFypyzjkkssq/logo.png differ diff --git a/blockchains/tron/assets/THZin7EUhT78oz3SrmkVJpozgmQPe7Vfp5/info.json b/blockchains/tron/assets/THZin7EUhT78oz3SrmkVJpozgmQPe7Vfp5/info.json new file mode 100644 index 0000000000000..b797f54939702 --- /dev/null +++ b/blockchains/tron/assets/THZin7EUhT78oz3SrmkVJpozgmQPe7Vfp5/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAKE Tethor USD", + "type": "TRC20", + "symbol": "FAKE USDT.a", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://etherscan.io/token/0xf56bd63ac2d14c397a754e0bdfce020baa44f214", + "explorer": "https://etherscan.io/token/0xf56bd63ac2d14c397a754e0bdfce020baa44f214", + "status": "spam", + "id": "THZin7EUhT78oz3SrmkVJpozgmQPe7Vfp5" +} \ No newline at end of file diff --git a/blockchains/tron/assets/THvqUNvSRvV1DRJ9wuugBVKeq3rFxpxJej/info.json b/blockchains/tron/assets/THvqUNvSRvV1DRJ9wuugBVKeq3rFxpxJej/info.json new file mode 100644 index 0000000000000..ced87c2ca0aff --- /dev/null +++ b/blockchains/tron/assets/THvqUNvSRvV1DRJ9wuugBVKeq3rFxpxJej/info.json @@ -0,0 +1,14 @@ +{ + "name": "Darkness", + "type": "TRC20", + "symbol": "Knight", + "decimals": 18, + "website": "https://tronscan.org/#/token20/THvqUNvSRvV1DRJ9wuugBVKeq3rFxpxJej", + "description": "Darkness", + "explorer": "https://tronscan.io/#/token20/THvqUNvSRvV1DRJ9wuugBVKeq3rFxpxJej", + "status": "active", + "id": "THvqUNvSRvV1DRJ9wuugBVKeq3rFxpxJej", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/THvqUNvSRvV1DRJ9wuugBVKeq3rFxpxJej/logo.png b/blockchains/tron/assets/THvqUNvSRvV1DRJ9wuugBVKeq3rFxpxJej/logo.png new file mode 100644 index 0000000000000..6f9df7bf0b652 Binary files /dev/null and b/blockchains/tron/assets/THvqUNvSRvV1DRJ9wuugBVKeq3rFxpxJej/logo.png differ diff --git a/blockchains/tron/assets/TJ26NGP6EH6ieW1CNwq2ghPfczRVeZv87a/info.json b/blockchains/tron/assets/TJ26NGP6EH6ieW1CNwq2ghPfczRVeZv87a/info.json new file mode 100644 index 0000000000000..327e69d15c2a1 --- /dev/null +++ b/blockchains/tron/assets/TJ26NGP6EH6ieW1CNwq2ghPfczRVeZv87a/info.json @@ -0,0 +1,20 @@ +{ + "name": "Cisco xStock", + "type": "TRC20", + "symbol": "CSCOx", + "decimals": 18, + "description": "Cisco xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TJ26NGP6EH6ieW1CNwq2ghPfczRVeZv87a", + "status": "active", + "id": "TJ26NGP6EH6ieW1CNwq2ghPfczRVeZv87a", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cisco-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TJ26NGP6EH6ieW1CNwq2ghPfczRVeZv87a/logo.png b/blockchains/tron/assets/TJ26NGP6EH6ieW1CNwq2ghPfczRVeZv87a/logo.png new file mode 100644 index 0000000000000..2ac7a8d071b42 Binary files /dev/null and b/blockchains/tron/assets/TJ26NGP6EH6ieW1CNwq2ghPfczRVeZv87a/logo.png differ diff --git a/blockchains/tron/assets/TJXdPn1yJ8j8SDWAT5Ki5eWduXeCtJEHrX/info.json b/blockchains/tron/assets/TJXdPn1yJ8j8SDWAT5Ki5eWduXeCtJEHrX/info.json new file mode 100644 index 0000000000000..7e807b7401d52 --- /dev/null +++ b/blockchains/tron/assets/TJXdPn1yJ8j8SDWAT5Ki5eWduXeCtJEHrX/info.json @@ -0,0 +1,15 @@ +{ + "name": "Strategy PP Fixed xStock", + "type": "TRC20", + "symbol": "STRKx", + "decimals": 18, + "description": "Strategy PP Fixed xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TJXdPn1yJ8j8SDWAT5Ki5eWduXeCtJEHrX", + "status": "active", + "id": "TJXdPn1yJ8j8SDWAT5Ki5eWduXeCtJEHrX", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TJXdPn1yJ8j8SDWAT5Ki5eWduXeCtJEHrX/logo.png b/blockchains/tron/assets/TJXdPn1yJ8j8SDWAT5Ki5eWduXeCtJEHrX/logo.png new file mode 100644 index 0000000000000..1407faeca0e8c Binary files /dev/null and b/blockchains/tron/assets/TJXdPn1yJ8j8SDWAT5Ki5eWduXeCtJEHrX/logo.png differ diff --git a/blockchains/tron/assets/TJvqNiWUN2v2NBG12UhfV7WSvReJkRP3VC/info.json b/blockchains/tron/assets/TJvqNiWUN2v2NBG12UhfV7WSvReJkRP3VC/info.json index 94afcecde7857..8d049d1b805ea 100644 --- a/blockchains/tron/assets/TJvqNiWUN2v2NBG12UhfV7WSvReJkRP3VC/info.json +++ b/blockchains/tron/assets/TJvqNiWUN2v2NBG12UhfV7WSvReJkRP3VC/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/cryptoland-blockchain-laboratory" }, { - "name": "twitter", - "url": "https://twitter.com/Bridge Oracle" + "name": "x", + "url": "https://x.com/Bridge Oracle" }, { "name": "telegram", diff --git a/blockchains/tron/assets/TK4zHRAU1WrRPivksia3BMs2JvSLT63opb/info.json b/blockchains/tron/assets/TK4zHRAU1WrRPivksia3BMs2JvSLT63opb/info.json new file mode 100644 index 0000000000000..020ddb6f0cd0e --- /dev/null +++ b/blockchains/tron/assets/TK4zHRAU1WrRPivksia3BMs2JvSLT63opb/info.json @@ -0,0 +1,32 @@ +{ + "name": "UAHg", + "type": "TRC20", + "symbol": "UAHg", + "decimals": 6, + "website": "https://uahg.io/en", + "description": "A digital asset denominated in hryvnia and backed by a basket of top stablecoins.", + "explorer": "https://tronscan.io/#/token20/TK4zHRAU1WrRPivksia3BMs2JvSLT63opb", + "status": "active", + "id": "TK4zHRAU1WrRPivksia3BMs2JvSLT63opb", + "links": [ + { + "name": "x", + "url": "https://x.com/uahg_to" + }, + { + "name": "telegram", + "url": "https://t.me/uahg_to" + }, + { + "name": "whitepaper", + "url": "https://api.uahg.io/storage/uploads/file/variables/ca/au/en_whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/uahg/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TK4zHRAU1WrRPivksia3BMs2JvSLT63opb/logo.png b/blockchains/tron/assets/TK4zHRAU1WrRPivksia3BMs2JvSLT63opb/logo.png new file mode 100644 index 0000000000000..22f0254137a88 Binary files /dev/null and b/blockchains/tron/assets/TK4zHRAU1WrRPivksia3BMs2JvSLT63opb/logo.png differ diff --git a/blockchains/tron/assets/TKDP8XW5HehcSVouE7wnJRW6MPEE7q6WRR/info.json b/blockchains/tron/assets/TKDP8XW5HehcSVouE7wnJRW6MPEE7q6WRR/info.json new file mode 100644 index 0000000000000..124587dc65f45 --- /dev/null +++ b/blockchains/tron/assets/TKDP8XW5HehcSVouE7wnJRW6MPEE7q6WRR/info.json @@ -0,0 +1,20 @@ +{ + "name": "Palantir xStock", + "type": "TRC20", + "symbol": "PLTRx", + "decimals": 18, + "description": "Palantir xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TKDP8XW5HehcSVouE7wnJRW6MPEE7q6WRR", + "status": "active", + "id": "TKDP8XW5HehcSVouE7wnJRW6MPEE7q6WRR", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/palantir-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TKDP8XW5HehcSVouE7wnJRW6MPEE7q6WRR/logo.png b/blockchains/tron/assets/TKDP8XW5HehcSVouE7wnJRW6MPEE7q6WRR/logo.png new file mode 100644 index 0000000000000..20a4cb2ad5a99 Binary files /dev/null and b/blockchains/tron/assets/TKDP8XW5HehcSVouE7wnJRW6MPEE7q6WRR/logo.png differ diff --git a/blockchains/tron/assets/TKN6A3wSWHdZGanW5wBFkeFq2Yw3rhGqNz/info.json b/blockchains/tron/assets/TKN6A3wSWHdZGanW5wBFkeFq2Yw3rhGqNz/info.json new file mode 100644 index 0000000000000..ffc15c77bd44a --- /dev/null +++ b/blockchains/tron/assets/TKN6A3wSWHdZGanW5wBFkeFq2Yw3rhGqNz/info.json @@ -0,0 +1,20 @@ +{ + "name": "SP500 xStock", + "type": "TRC20", + "symbol": "SPYx", + "decimals": 18, + "description": "SP500 xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TKN6A3wSWHdZGanW5wBFkeFq2Yw3rhGqNz", + "status": "active", + "id": "TKN6A3wSWHdZGanW5wBFkeFq2Yw3rhGqNz", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sp500-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TKN6A3wSWHdZGanW5wBFkeFq2Yw3rhGqNz/logo.png b/blockchains/tron/assets/TKN6A3wSWHdZGanW5wBFkeFq2Yw3rhGqNz/logo.png new file mode 100644 index 0000000000000..9ae5b5a7a1bf1 Binary files /dev/null and b/blockchains/tron/assets/TKN6A3wSWHdZGanW5wBFkeFq2Yw3rhGqNz/logo.png differ diff --git a/blockchains/tron/assets/TKTtVPdJDKpEqEf8ny8p2BcSyUjGhoUeJN/info.json b/blockchains/tron/assets/TKTtVPdJDKpEqEf8ny8p2BcSyUjGhoUeJN/info.json new file mode 100644 index 0000000000000..c7cd76e7147f0 --- /dev/null +++ b/blockchains/tron/assets/TKTtVPdJDKpEqEf8ny8p2BcSyUjGhoUeJN/info.json @@ -0,0 +1,21 @@ +{ + "name": "Companion Pet Coin", + "type": "TRC20", + "symbol": "CPC", + "decimals": 18, + "description": "CPC Coin is a native token used within the CompanionPetWorld ecosystem as a means of participating in pet auctions, paying for related goods and services, and rewarding participants.", + "website": "https://companionpetworld.com/?ckattempt=1", + "explorer": "https://tronscan.org/#/token20/TKTtVPdJDKpEqEf8ny8p2BcSyUjGhoUeJN", + "id": "TKTtVPdJDKpEqEf8ny8p2BcSyUjGhoUeJN", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/CPC_Coin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/companion-pet-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TKTtVPdJDKpEqEf8ny8p2BcSyUjGhoUeJN/logo.png b/blockchains/tron/assets/TKTtVPdJDKpEqEf8ny8p2BcSyUjGhoUeJN/logo.png new file mode 100644 index 0000000000000..e237b773bc674 Binary files /dev/null and b/blockchains/tron/assets/TKTtVPdJDKpEqEf8ny8p2BcSyUjGhoUeJN/logo.png differ diff --git a/blockchains/tron/assets/TKbZf7Ni93pAB6ZHQLR2BxbnukRsB3WNvh/info.json b/blockchains/tron/assets/TKbZf7Ni93pAB6ZHQLR2BxbnukRsB3WNvh/info.json new file mode 100644 index 0000000000000..8fba8a20a1a9f --- /dev/null +++ b/blockchains/tron/assets/TKbZf7Ni93pAB6ZHQLR2BxbnukRsB3WNvh/info.json @@ -0,0 +1,20 @@ +{ + "name": "Amazon.com xStock", + "type": "TRC20", + "symbol": "AMZNx", + "decimals": 18, + "description": "Amazon.com xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TKbZf7Ni93pAB6ZHQLR2BxbnukRsB3WNvh", + "status": "active", + "id": "TKbZf7Ni93pAB6ZHQLR2BxbnukRsB3WNvh", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/amazon-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TKbZf7Ni93pAB6ZHQLR2BxbnukRsB3WNvh/logo.png b/blockchains/tron/assets/TKbZf7Ni93pAB6ZHQLR2BxbnukRsB3WNvh/logo.png new file mode 100644 index 0000000000000..8a519a3597972 Binary files /dev/null and b/blockchains/tron/assets/TKbZf7Ni93pAB6ZHQLR2BxbnukRsB3WNvh/logo.png differ diff --git a/blockchains/tron/assets/TL7TvJpEKW4XXxudf9FL7hmpPjLTwfkWtQ/info.json b/blockchains/tron/assets/TL7TvJpEKW4XXxudf9FL7hmpPjLTwfkWtQ/info.json new file mode 100644 index 0000000000000..b4729e292fab0 --- /dev/null +++ b/blockchains/tron/assets/TL7TvJpEKW4XXxudf9FL7hmpPjLTwfkWtQ/info.json @@ -0,0 +1,20 @@ +{ + "name": "DFDV xStock", + "type": "TRC20", + "symbol": "DFDVx", + "decimals": 18, + "description": "DFDV xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TL7TvJpEKW4XXxudf9FL7hmpPjLTwfkWtQ", + "status": "active", + "id": "TL7TvJpEKW4XXxudf9FL7hmpPjLTwfkWtQ", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dfdv-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TL7TvJpEKW4XXxudf9FL7hmpPjLTwfkWtQ/logo.png b/blockchains/tron/assets/TL7TvJpEKW4XXxudf9FL7hmpPjLTwfkWtQ/logo.png new file mode 100644 index 0000000000000..0e599ca631772 Binary files /dev/null and b/blockchains/tron/assets/TL7TvJpEKW4XXxudf9FL7hmpPjLTwfkWtQ/logo.png differ diff --git a/blockchains/tron/assets/TLV152XFZaimsfaVMCHYDcbexZL4ZhcfGf/info.json b/blockchains/tron/assets/TLV152XFZaimsfaVMCHYDcbexZL4ZhcfGf/info.json new file mode 100644 index 0000000000000..67cbf007d0f07 --- /dev/null +++ b/blockchains/tron/assets/TLV152XFZaimsfaVMCHYDcbexZL4ZhcfGf/info.json @@ -0,0 +1,20 @@ +{ + "name": "AstraZeneca xStock", + "type": "TRC20", + "symbol": "AZNx", + "decimals": 18, + "description": "AstraZeneca xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TLV152XFZaimsfaVMCHYDcbexZL4ZhcfGf", + "status": "active", + "id": "TLV152XFZaimsfaVMCHYDcbexZL4ZhcfGf", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/astrazeneca-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TLV152XFZaimsfaVMCHYDcbexZL4ZhcfGf/logo.png b/blockchains/tron/assets/TLV152XFZaimsfaVMCHYDcbexZL4ZhcfGf/logo.png new file mode 100644 index 0000000000000..876ac4cb38386 Binary files /dev/null and b/blockchains/tron/assets/TLV152XFZaimsfaVMCHYDcbexZL4ZhcfGf/logo.png differ diff --git a/blockchains/tron/assets/TLa2f6VPqDgRE67v1736s7bJ8Ray5wYjU7/info.json b/blockchains/tron/assets/TLa2f6VPqDgRE67v1736s7bJ8Ray5wYjU7/info.json index 43c1dff9e5abc..7749345fbcc6a 100644 --- a/blockchains/tron/assets/TLa2f6VPqDgRE67v1736s7bJ8Ray5wYjU7/info.json +++ b/blockchains/tron/assets/TLa2f6VPqDgRE67v1736s7bJ8Ray5wYjU7/info.json @@ -14,8 +14,8 @@ "url": "https://t.me/WINkLink_Oracle_official" }, { - "name": "twitter", - "url": "https://twitter.com/WinkLink_Oracle" + "name": "x", + "url": "https://x.com/WinkLink_Oracle" }, { "name": "whitepaper", diff --git a/blockchains/tron/assets/TLeVfrdym8RoJreJ23dAGyfJDygRtiWKBZ/info.json b/blockchains/tron/assets/TLeVfrdym8RoJreJ23dAGyfJDygRtiWKBZ/info.json new file mode 100644 index 0000000000000..6884e50423337 --- /dev/null +++ b/blockchains/tron/assets/TLeVfrdym8RoJreJ23dAGyfJDygRtiWKBZ/info.json @@ -0,0 +1,32 @@ +{ + "name": "A7A5", + "type": "TRC20", + "symbol": "A7A5", + "decimals": 6, + "website": "https://a7a5.io/", + "description": "A7A5 is an RWA token backed by fiat deposits in top-tier banks with high overnight rates. A7A5 automatically distributes 50% of its daily income to all token holders at a random time each day, requiring no action on their part.", + "explorer": "https://tronscan.io/#/token20/TLeVfrdym8RoJreJ23dAGyfJDygRtiWKBZ", + "status": "active", + "id": "TLeVfrdym8RoJreJ23dAGyfJDygRtiWKBZ", + "links": [ + { + "name": "x", + "url": "https://x.com/A7A5official" + }, + { + "name": "github", + "url": "https://github.com/a7a5-defi/a7a5" + }, + { + "name": "telegram", + "url": "https://t.me/A7A5official" + }, + { + "name": "whitepaper", + "url": "https://a7a5.io/assets/A7A5%20Whitepaper-DI0LeqkU.pdf" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TLeVfrdym8RoJreJ23dAGyfJDygRtiWKBZ/logo.png b/blockchains/tron/assets/TLeVfrdym8RoJreJ23dAGyfJDygRtiWKBZ/logo.png new file mode 100644 index 0000000000000..2f94710cce021 Binary files /dev/null and b/blockchains/tron/assets/TLeVfrdym8RoJreJ23dAGyfJDygRtiWKBZ/logo.png differ diff --git a/blockchains/tron/assets/TLsaB3dRnv3YHmxJm4uh1UWrPLiGZd6nrB/info.json b/blockchains/tron/assets/TLsaB3dRnv3YHmxJm4uh1UWrPLiGZd6nrB/info.json new file mode 100644 index 0000000000000..52b87db4af5eb --- /dev/null +++ b/blockchains/tron/assets/TLsaB3dRnv3YHmxJm4uh1UWrPLiGZd6nrB/info.json @@ -0,0 +1,20 @@ +{ + "name": "Chevron xStock", + "type": "TRC20", + "symbol": "CVXx", + "decimals": 18, + "description": "Chevron xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TLsaB3dRnv3YHmxJm4uh1UWrPLiGZd6nrB", + "status": "active", + "id": "TLsaB3dRnv3YHmxJm4uh1UWrPLiGZd6nrB", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chevron-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TLsaB3dRnv3YHmxJm4uh1UWrPLiGZd6nrB/logo.png b/blockchains/tron/assets/TLsaB3dRnv3YHmxJm4uh1UWrPLiGZd6nrB/logo.png new file mode 100644 index 0000000000000..74a17d83bcf88 Binary files /dev/null and b/blockchains/tron/assets/TLsaB3dRnv3YHmxJm4uh1UWrPLiGZd6nrB/logo.png differ diff --git a/blockchains/tron/assets/TMQCUJzSkcTyrCkhKNUUr8GuWGiD4grNUx/info.json b/blockchains/tron/assets/TMQCUJzSkcTyrCkhKNUUr8GuWGiD4grNUx/info.json new file mode 100644 index 0000000000000..d59f21dd5d698 --- /dev/null +++ b/blockchains/tron/assets/TMQCUJzSkcTyrCkhKNUUr8GuWGiD4grNUx/info.json @@ -0,0 +1,15 @@ +{ + "name": "Schwab International Equity xStock", + "type": "TRC20", + "symbol": "SCHFx", + "decimals": 18, + "description": "Schwab International Equity xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TMQCUJzSkcTyrCkhKNUUr8GuWGiD4grNUx", + "status": "active", + "id": "TMQCUJzSkcTyrCkhKNUUr8GuWGiD4grNUx", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TMQCUJzSkcTyrCkhKNUUr8GuWGiD4grNUx/logo.png b/blockchains/tron/assets/TMQCUJzSkcTyrCkhKNUUr8GuWGiD4grNUx/logo.png new file mode 100644 index 0000000000000..d55ca6edb40ba Binary files /dev/null and b/blockchains/tron/assets/TMQCUJzSkcTyrCkhKNUUr8GuWGiD4grNUx/logo.png differ diff --git a/blockchains/tron/assets/TMkWtCUBF9zatuda6onxoPeAUvkGiwaCHP/info.json b/blockchains/tron/assets/TMkWtCUBF9zatuda6onxoPeAUvkGiwaCHP/info.json new file mode 100644 index 0000000000000..9ef3c6761aa37 --- /dev/null +++ b/blockchains/tron/assets/TMkWtCUBF9zatuda6onxoPeAUvkGiwaCHP/info.json @@ -0,0 +1,20 @@ +{ + "name": "Intel xStock", + "type": "TRC20", + "symbol": "INTCx", + "decimals": 18, + "description": "Intel xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TMkWtCUBF9zatuda6onxoPeAUvkGiwaCHP", + "status": "active", + "id": "TMkWtCUBF9zatuda6onxoPeAUvkGiwaCHP", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/intel-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TMkWtCUBF9zatuda6onxoPeAUvkGiwaCHP/logo.png b/blockchains/tron/assets/TMkWtCUBF9zatuda6onxoPeAUvkGiwaCHP/logo.png new file mode 100644 index 0000000000000..fa5ae9732bb1d Binary files /dev/null and b/blockchains/tron/assets/TMkWtCUBF9zatuda6onxoPeAUvkGiwaCHP/logo.png differ diff --git a/blockchains/tron/assets/TMnqP8yuZrKJFXN59KoVDthkmM3LRkiZXP/info.json b/blockchains/tron/assets/TMnqP8yuZrKJFXN59KoVDthkmM3LRkiZXP/info.json index ce93f6e5b4a88..3aa6070f8dd42 100644 --- a/blockchains/tron/assets/TMnqP8yuZrKJFXN59KoVDthkmM3LRkiZXP/info.json +++ b/blockchains/tron/assets/TMnqP8yuZrKJFXN59KoVDthkmM3LRkiZXP/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/polluxcoin2020/pox" }, { - "name": "twitter", - "url": "https://twitter.com/polluxcoin1" + "name": "x", + "url": "https://x.com/polluxcoin1" }, { "name": "telegram", diff --git a/blockchains/tron/assets/TMwk13CthNktLiNpo8WDRuUMpyrzZTVZYH/info.json b/blockchains/tron/assets/TMwk13CthNktLiNpo8WDRuUMpyrzZTVZYH/info.json new file mode 100644 index 0000000000000..9d3d1674f9f26 --- /dev/null +++ b/blockchains/tron/assets/TMwk13CthNktLiNpo8WDRuUMpyrzZTVZYH/info.json @@ -0,0 +1,25 @@ +{ + "name": "To The Sun", + "website": "https://tothesun.vip/", + "description": "SUNPUMP: The Meme Token Shooting Beyond the Moon", + "explorer": "https://tronscan.org/#/token20/TMwk13CthNktLiNpo8WDRuUMpyrzZTVZYH", + "type": "TRC20", + "symbol": "SUNPUMP", + "decimals": 18, + "status": "active", + "id": "TMwk13CthNktLiNpo8WDRuUMpyrzZTVZYH", + "links": [ + { + "name": "x", + "url": "https://x.com/ToTheSun_vip" + }, + { + "name": "telegram", + "url": "https://t.me/ToTheSun_vip" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/to-the-sun/" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TMwk13CthNktLiNpo8WDRuUMpyrzZTVZYH/logo.png b/blockchains/tron/assets/TMwk13CthNktLiNpo8WDRuUMpyrzZTVZYH/logo.png new file mode 100644 index 0000000000000..ae200798b479d Binary files /dev/null and b/blockchains/tron/assets/TMwk13CthNktLiNpo8WDRuUMpyrzZTVZYH/logo.png differ diff --git a/blockchains/tron/assets/TMz2SWatiAtZVVcH2ebpsbVtYwUPT9EdjH/info.json b/blockchains/tron/assets/TMz2SWatiAtZVVcH2ebpsbVtYwUPT9EdjH/info.json index 3385170144bdb..888c15718bd6f 100644 --- a/blockchains/tron/assets/TMz2SWatiAtZVVcH2ebpsbVtYwUPT9EdjH/info.json +++ b/blockchains/tron/assets/TMz2SWatiAtZVVcH2ebpsbVtYwUPT9EdjH/info.json @@ -1,5 +1,5 @@ { - "name": "BUSD Token", + "name": "BUSD", "website": "https://www.binance.com/en/busd", "description": "BUSD is issued on Ethereum by Paxos and regulated by the NYDFS. Binance provides the pegged token service, which locks BUSD on Ethereum and issues an equivalent amount of Binance-Peg BUSD on corresponding other networks (BNB Chain, Avalanche and Polygon, TRON etc). Please note that Binance-Peg BUSD is a Binance product. It is not issued by Paxos nor regulated by the NYDFS.", "explorer": "https://tronscan.io/#/token20/TMz2SWatiAtZVVcH2ebpsbVtYwUPT9EdjH", @@ -10,8 +10,8 @@ "id": "TMz2SWatiAtZVVcH2ebpsbVtYwUPT9EdjH", "links": [ { - "name": "twitter", - "url": "https://twitter.com/binance" + "name": "x", + "url": "https://x.com/binance" }, { "name": "telegram", @@ -21,4 +21,4 @@ "tags": [ "stablecoin" ] -} +} \ No newline at end of file diff --git a/blockchains/tron/assets/TN29FkCKL8dFMSZ4uian61to5dLi9RoaRz/info.json b/blockchains/tron/assets/TN29FkCKL8dFMSZ4uian61to5dLi9RoaRz/info.json new file mode 100644 index 0000000000000..14e606c8cddc1 --- /dev/null +++ b/blockchains/tron/assets/TN29FkCKL8dFMSZ4uian61to5dLi9RoaRz/info.json @@ -0,0 +1,14 @@ +{ + "name": "Justin Sun's Peacock", + "type": "TRC20", + "symbol": "NVIDIA", + "decimals": 18, + "website": "https://tronscan.org/#/token20/TN29FkCKL8dFMSZ4uian61to5dLi9RoaRz", + "description": "NVIDIA is breaking ground as one of the first memecoins on the Tron blockchain, inspired by none other than Justin Sun’s legendary peacock!", + "explorer": "https://tronscan.io/#/token20/TN29FkCKL8dFMSZ4uian61to5dLi9RoaRz", + "status": "active", + "id": "TN29FkCKL8dFMSZ4uian61to5dLi9RoaRz", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TN29FkCKL8dFMSZ4uian61to5dLi9RoaRz/logo.png b/blockchains/tron/assets/TN29FkCKL8dFMSZ4uian61to5dLi9RoaRz/logo.png new file mode 100644 index 0000000000000..9128196a987b4 Binary files /dev/null and b/blockchains/tron/assets/TN29FkCKL8dFMSZ4uian61to5dLi9RoaRz/logo.png differ diff --git a/blockchains/tron/assets/TN2tRjEMhgHSVKzj4ssy4gvHpXQNh5weSg/info.json b/blockchains/tron/assets/TN2tRjEMhgHSVKzj4ssy4gvHpXQNh5weSg/info.json new file mode 100644 index 0000000000000..f02d7f48b7b70 --- /dev/null +++ b/blockchains/tron/assets/TN2tRjEMhgHSVKzj4ssy4gvHpXQNh5weSg/info.json @@ -0,0 +1,14 @@ +{ + "name": "SunPumpTrading", + "type": "TRC20", + "symbol": "SPT", + "decimals": 18, + "website": "https://tronscan.org/#/token20/TN2tRjEMhgHSVKzj4ssy4gvHpXQNh5weSg", + "description": "Tron's first trading robot official governance token, the robot (@sunpump on Telegram) supports all token transactions on sunpump, automatic energy replenishment, limit orders, sniping internal market and other functions. Holding SPT can enjoy the robot's income dividends, Fee reduction, transaction mining, and unlocking more advanced features.", + "explorer": "https://tronscan.io/#/token20/TN2tRjEMhgHSVKzj4ssy4gvHpXQNh5weSg", + "status": "active", + "id": "TN2tRjEMhgHSVKzj4ssy4gvHpXQNh5weSg", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TN2tRjEMhgHSVKzj4ssy4gvHpXQNh5weSg/logo.png b/blockchains/tron/assets/TN2tRjEMhgHSVKzj4ssy4gvHpXQNh5weSg/logo.png new file mode 100644 index 0000000000000..7b26c3ecd4e6c Binary files /dev/null and b/blockchains/tron/assets/TN2tRjEMhgHSVKzj4ssy4gvHpXQNh5weSg/logo.png differ diff --git a/blockchains/tron/assets/TNMR6r9Z4cL7eWNrNQ4e4sm2XPhhifexZU/info.json b/blockchains/tron/assets/TNMR6r9Z4cL7eWNrNQ4e4sm2XPhhifexZU/info.json new file mode 100644 index 0000000000000..ffebd341a6dd2 --- /dev/null +++ b/blockchains/tron/assets/TNMR6r9Z4cL7eWNrNQ4e4sm2XPhhifexZU/info.json @@ -0,0 +1,20 @@ +{ + "name": "NVIDIA xStock", + "type": "TRC20", + "symbol": "NVDAx", + "decimals": 18, + "description": "NVIDIA xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TNMR6r9Z4cL7eWNrNQ4e4sm2XPhhifexZU", + "status": "active", + "id": "TNMR6r9Z4cL7eWNrNQ4e4sm2XPhhifexZU", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nvidia-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TNMR6r9Z4cL7eWNrNQ4e4sm2XPhhifexZU/logo.png b/blockchains/tron/assets/TNMR6r9Z4cL7eWNrNQ4e4sm2XPhhifexZU/logo.png new file mode 100644 index 0000000000000..5846ce5c5859d Binary files /dev/null and b/blockchains/tron/assets/TNMR6r9Z4cL7eWNrNQ4e4sm2XPhhifexZU/logo.png differ diff --git a/blockchains/tron/assets/TNUC9Qb1rRpS5CbWLmNMxXBjyFoydXjWFR/info.json b/blockchains/tron/assets/TNUC9Qb1rRpS5CbWLmNMxXBjyFoydXjWFR/info.json new file mode 100644 index 0000000000000..02e423d5739a2 --- /dev/null +++ b/blockchains/tron/assets/TNUC9Qb1rRpS5CbWLmNMxXBjyFoydXjWFR/info.json @@ -0,0 +1,32 @@ +{ + "name": "Wrapped TRX", + "type": "TRC20", + "symbol": "WTRX", + "decimals": 6, + "website": "https://tron.network/", + "description": "Wrapped version of Tron (TRX)", + "explorer": "https://tronscan.org/#/token20/TNUC9Qb1rRpS5CbWLmNMxXBjyFoydXjWFR", + "status": "active", + "id": "TNUC9Qb1rRpS5CbWLmNMxXBjyFoydXjWFR", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-tron/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wrapped-tron" + }, + { + "name": "medium", + "url": "https://medium.com/@trondao" + }, + { + "name": "docs", + "url": "https://developers.tron.network/docs/getting-start" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TNUC9Qb1rRpS5CbWLmNMxXBjyFoydXjWFR/logo.png b/blockchains/tron/assets/TNUC9Qb1rRpS5CbWLmNMxXBjyFoydXjWFR/logo.png new file mode 100644 index 0000000000000..4a2381e4cc1f3 Binary files /dev/null and b/blockchains/tron/assets/TNUC9Qb1rRpS5CbWLmNMxXBjyFoydXjWFR/logo.png differ diff --git a/blockchains/tron/assets/TNc4EDHvHHEmQuQWN5pXGxU6PFJJqGS1U8/info.json b/blockchains/tron/assets/TNc4EDHvHHEmQuQWN5pXGxU6PFJJqGS1U8/info.json new file mode 100644 index 0000000000000..07cf4e9b5902f --- /dev/null +++ b/blockchains/tron/assets/TNc4EDHvHHEmQuQWN5pXGxU6PFJJqGS1U8/info.json @@ -0,0 +1,20 @@ +{ + "name": "Medtronic xStock", + "type": "TRC20", + "symbol": "MDTx", + "decimals": 18, + "description": "Medtronic xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TNc4EDHvHHEmQuQWN5pXGxU6PFJJqGS1U8", + "status": "active", + "id": "TNc4EDHvHHEmQuQWN5pXGxU6PFJJqGS1U8", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/medtronic-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TNc4EDHvHHEmQuQWN5pXGxU6PFJJqGS1U8/logo.png b/blockchains/tron/assets/TNc4EDHvHHEmQuQWN5pXGxU6PFJJqGS1U8/logo.png new file mode 100644 index 0000000000000..caac6aa5ef103 Binary files /dev/null and b/blockchains/tron/assets/TNc4EDHvHHEmQuQWN5pXGxU6PFJJqGS1U8/logo.png differ diff --git a/blockchains/tron/assets/TP3prcvQknVthrVnn281cKST56eWiLgJJM/info.json b/blockchains/tron/assets/TP3prcvQknVthrVnn281cKST56eWiLgJJM/info.json new file mode 100644 index 0000000000000..56ffb178cd0d1 --- /dev/null +++ b/blockchains/tron/assets/TP3prcvQknVthrVnn281cKST56eWiLgJJM/info.json @@ -0,0 +1,14 @@ +{ + "name": "SunWukong", + "type": "TRC20", + "symbol": "SUNWUKONG", + "decimals": 18, + "website": "https://tronscan.org/#/token20/TP3prcvQknVthrVnn281cKST56eWiLgJJM", + "description": "From the East to the West, we stand as one, a multi-culture coin has just begun. Join the SunWukong community now on TRON.", + "explorer": "https://tronscan.io/#/token20/TP3prcvQknVthrVnn281cKST56eWiLgJJM", + "status": "active", + "id": "TP3prcvQknVthrVnn281cKST56eWiLgJJM", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TP3prcvQknVthrVnn281cKST56eWiLgJJM/logo.png b/blockchains/tron/assets/TP3prcvQknVthrVnn281cKST56eWiLgJJM/logo.png new file mode 100644 index 0000000000000..852ae7cb6dac2 Binary files /dev/null and b/blockchains/tron/assets/TP3prcvQknVthrVnn281cKST56eWiLgJJM/logo.png differ diff --git a/blockchains/tron/assets/TPAQRJSVatTZLLaguCFMXGFKegKnqnKH2s/info.json b/blockchains/tron/assets/TPAQRJSVatTZLLaguCFMXGFKegKnqnKH2s/info.json index 5cdce28b10056..e77fae0862ddc 100644 --- a/blockchains/tron/assets/TPAQRJSVatTZLLaguCFMXGFKegKnqnKH2s/info.json +++ b/blockchains/tron/assets/TPAQRJSVatTZLLaguCFMXGFKegKnqnKH2s/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/CyberFM/" }, { - "name": "twitter", - "url": "https://twitter.com/Mainstream For The Underground" + "name": "x", + "url": "https://x.com/Mainstream For The Underground" }, { "name": "telegram", diff --git a/blockchains/tron/assets/TPFqcBAaaUMCSVRCqPaQ9QnzKhmuoLR6Rc/info.json b/blockchains/tron/assets/TPFqcBAaaUMCSVRCqPaQ9QnzKhmuoLR6Rc/info.json new file mode 100644 index 0000000000000..2d78888cbecbe --- /dev/null +++ b/blockchains/tron/assets/TPFqcBAaaUMCSVRCqPaQ9QnzKhmuoLR6Rc/info.json @@ -0,0 +1,20 @@ +{ + "name": "World Liberty Financial USD", + "type": "TRC20", + "symbol": "USD1", + "decimals": 18, + "description": "A stablecoin by World Liberty Financial, redeemable 1:1 for the U.S. dollar and backed by U.S. treasuries, dollar deposits, and other cash equivalents.", + "website": "https://www.worldlibertyfinancial.com/", + "explorer": "https://tronscan.org/#/token20/TPFqcBAaaUMCSVRCqPaQ9QnzKhmuoLR6Rc", + "status": "active", + "id": "TPFqcBAaaUMCSVRCqPaQ9QnzKhmuoLR6Rc", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd1/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TPFqcBAaaUMCSVRCqPaQ9QnzKhmuoLR6Rc/logo.png b/blockchains/tron/assets/TPFqcBAaaUMCSVRCqPaQ9QnzKhmuoLR6Rc/logo.png new file mode 100644 index 0000000000000..444ccb6501eeb Binary files /dev/null and b/blockchains/tron/assets/TPFqcBAaaUMCSVRCqPaQ9QnzKhmuoLR6Rc/logo.png differ diff --git a/blockchains/tron/assets/TPWAzBeNMoA6rYEeBYXmVtXpN17yjuT8c7/info.json b/blockchains/tron/assets/TPWAzBeNMoA6rYEeBYXmVtXpN17yjuT8c7/info.json new file mode 100644 index 0000000000000..d620d04adcf0b --- /dev/null +++ b/blockchains/tron/assets/TPWAzBeNMoA6rYEeBYXmVtXpN17yjuT8c7/info.json @@ -0,0 +1,20 @@ +{ + "name": "Eli Lilly xStock", + "type": "TRC20", + "symbol": "LLYx", + "decimals": 18, + "description": "Eli Lilly xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TPWAzBeNMoA6rYEeBYXmVtXpN17yjuT8c7", + "status": "active", + "id": "TPWAzBeNMoA6rYEeBYXmVtXpN17yjuT8c7", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/eli-lilly-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TPWAzBeNMoA6rYEeBYXmVtXpN17yjuT8c7/logo.png b/blockchains/tron/assets/TPWAzBeNMoA6rYEeBYXmVtXpN17yjuT8c7/logo.png new file mode 100644 index 0000000000000..9c631d1eeeb00 Binary files /dev/null and b/blockchains/tron/assets/TPWAzBeNMoA6rYEeBYXmVtXpN17yjuT8c7/logo.png differ diff --git a/blockchains/tron/assets/TPYmHEhy5n8TCEfYGqW2rPxsghSfzghPDn/info.json b/blockchains/tron/assets/TPYmHEhy5n8TCEfYGqW2rPxsghSfzghPDn/info.json index 201645df022f8..a55b3639d5c95 100644 --- a/blockchains/tron/assets/TPYmHEhy5n8TCEfYGqW2rPxsghSfzghPDn/info.json +++ b/blockchains/tron/assets/TPYmHEhy5n8TCEfYGqW2rPxsghSfzghPDn/info.json @@ -1,6 +1,6 @@ { - "name": "Decentralized USD", - "symbol": "USDD", + "name": "Decentralized USDOLD", + "symbol": "USDDOLD", "type": "TRC20", "decimals": 18, "description": "USDD is a fully decentralized algorithmic stablecoin", @@ -10,8 +10,8 @@ "id": "TPYmHEhy5n8TCEfYGqW2rPxsghSfzghPDn", "links": [ { - "name": "twitter", - "url": "https://twitter.com/usddio" + "name": "x", + "url": "https://x.com/usddio" }, { "name": "whitepaper", @@ -21,4 +21,4 @@ "tags": [ "stablecoin" ] -} +} \ No newline at end of file diff --git a/blockchains/tron/assets/TPeoxx1VhUMnAUyjwWfximDYFDQaxNQQ45/info.json b/blockchains/tron/assets/TPeoxx1VhUMnAUyjwWfximDYFDQaxNQQ45/info.json new file mode 100644 index 0000000000000..c41de352e77b3 --- /dev/null +++ b/blockchains/tron/assets/TPeoxx1VhUMnAUyjwWfximDYFDQaxNQQ45/info.json @@ -0,0 +1,21 @@ +{ + "name": "Tron Bull", + "type": "TRC20", + "symbol": "TBULL", + "decimals": 18, + "description": "TBULL is the first memecoin inspired by the official mascot of Tron DAO, Tron Bull", + "website": "https://tbullcoin.com/", + "explorer": "https://tronscan.org/#/token20/TPeoxx1VhUMnAUyjwWfximDYFDQaxNQQ45", + "id": "TPeoxx1VhUMnAUyjwWfximDYFDQaxNQQ45", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/TBullOnTRX" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tron-bull-tbull/" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TPeoxx1VhUMnAUyjwWfximDYFDQaxNQQ45/logo.png b/blockchains/tron/assets/TPeoxx1VhUMnAUyjwWfximDYFDQaxNQQ45/logo.png new file mode 100644 index 0000000000000..588827b9bd9e6 Binary files /dev/null and b/blockchains/tron/assets/TPeoxx1VhUMnAUyjwWfximDYFDQaxNQQ45/logo.png differ diff --git a/blockchains/tron/assets/TQ4rFMdLZfioGJ7wmsUjWNyCnT4pMuv6ro/info.json b/blockchains/tron/assets/TQ4rFMdLZfioGJ7wmsUjWNyCnT4pMuv6ro/info.json new file mode 100644 index 0000000000000..c9c1391d2a536 --- /dev/null +++ b/blockchains/tron/assets/TQ4rFMdLZfioGJ7wmsUjWNyCnT4pMuv6ro/info.json @@ -0,0 +1,21 @@ +{ + "name": "Hiver", + "type": "TRC20", + "symbol": "HIT", + "decimals": 18, + "description": "This is the token for gaming with offline shops.", + "website": "https://hiverhit.co/", + "explorer": "https://tronscan.org/#/token20/TQ4rFMdLZfioGJ7wmsUjWNyCnT4pMuv6ro", + "id": "TQ4rFMdLZfioGJ7wmsUjWNyCnT4pMuv6ro", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/hiver_network" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hiver/" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TQ4rFMdLZfioGJ7wmsUjWNyCnT4pMuv6ro/logo.png b/blockchains/tron/assets/TQ4rFMdLZfioGJ7wmsUjWNyCnT4pMuv6ro/logo.png new file mode 100644 index 0000000000000..14f4371e10e4d Binary files /dev/null and b/blockchains/tron/assets/TQ4rFMdLZfioGJ7wmsUjWNyCnT4pMuv6ro/logo.png differ diff --git a/blockchains/tron/assets/TQKQRxEDH2vhtxGB4obGeHwu7AqGDryU3C/info.json b/blockchains/tron/assets/TQKQRxEDH2vhtxGB4obGeHwu7AqGDryU3C/info.json new file mode 100644 index 0000000000000..5369c86d1633e --- /dev/null +++ b/blockchains/tron/assets/TQKQRxEDH2vhtxGB4obGeHwu7AqGDryU3C/info.json @@ -0,0 +1,21 @@ +{ + "name": "Sugar Boy", + "type": "TRC20", + "symbol": "SUGAR", + "decimals": 18, + "description": "The first boy on Tron with one mission; to share his $SUGAR.", + "website": "https://www.sugarboy.vip/", + "explorer": "https://tronscan.org/#/token20/TQKQRxEDH2vhtxGB4obGeHwu7AqGDryU3C", + "id": "TQKQRxEDH2vhtxGB4obGeHwu7AqGDryU3C", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/sugarboycoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sugar-boy/" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TQKQRxEDH2vhtxGB4obGeHwu7AqGDryU3C/logo.png b/blockchains/tron/assets/TQKQRxEDH2vhtxGB4obGeHwu7AqGDryU3C/logo.png new file mode 100644 index 0000000000000..22f2d2e636adc Binary files /dev/null and b/blockchains/tron/assets/TQKQRxEDH2vhtxGB4obGeHwu7AqGDryU3C/logo.png differ diff --git a/blockchains/tron/assets/TQRY53VFeCXPAanTYPwCoY4MScdBmXzrNw/info.json b/blockchains/tron/assets/TQRY53VFeCXPAanTYPwCoY4MScdBmXzrNw/info.json new file mode 100644 index 0000000000000..a1ff2ec9c83cd --- /dev/null +++ b/blockchains/tron/assets/TQRY53VFeCXPAanTYPwCoY4MScdBmXzrNw/info.json @@ -0,0 +1,20 @@ +{ + "name": "TBLL xStock", + "type": "TRC20", + "symbol": "TBLLx", + "decimals": 18, + "description": "TBLL xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TQRY53VFeCXPAanTYPwCoY4MScdBmXzrNw", + "status": "active", + "id": "TQRY53VFeCXPAanTYPwCoY4MScdBmXzrNw", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tbll-tokenized-etf-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TQRY53VFeCXPAanTYPwCoY4MScdBmXzrNw/logo.png b/blockchains/tron/assets/TQRY53VFeCXPAanTYPwCoY4MScdBmXzrNw/logo.png new file mode 100644 index 0000000000000..303bb2ae64ebc Binary files /dev/null and b/blockchains/tron/assets/TQRY53VFeCXPAanTYPwCoY4MScdBmXzrNw/logo.png differ diff --git a/blockchains/tron/assets/TQYuR8FpmhMJK3ZpfoTgERjaZRywqMnFAH/info.json b/blockchains/tron/assets/TQYuR8FpmhMJK3ZpfoTgERjaZRywqMnFAH/info.json index 431cabfd7ae73..6b57854ab5d16 100644 --- a/blockchains/tron/assets/TQYuR8FpmhMJK3ZpfoTgERjaZRywqMnFAH/info.json +++ b/blockchains/tron/assets/TQYuR8FpmhMJK3ZpfoTgERjaZRywqMnFAH/info.json @@ -10,8 +10,8 @@ "id": "TQYuR8FpmhMJK3ZpfoTgERjaZRywqMnFAH", "links": [ { - "name": "twitter", - "url": "https://twitter.com/paynetcoin" + "name": "x", + "url": "https://x.com/paynetcoin" }, { "name": "coinmarketcap", @@ -25,4 +25,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/tron/assets/TQkgrmpo1fLmJtzNxcUxZtznzGKNfk187S/info.json b/blockchains/tron/assets/TQkgrmpo1fLmJtzNxcUxZtznzGKNfk187S/info.json new file mode 100644 index 0000000000000..54e7d83d07a3d --- /dev/null +++ b/blockchains/tron/assets/TQkgrmpo1fLmJtzNxcUxZtznzGKNfk187S/info.json @@ -0,0 +1,14 @@ +{ + "name": "To The Sun!", + "type": "TRC20", + "symbol": "TOTHESUN", + "decimals": 18, + "website": "https://tronscan.org/#/token20/TQkgrmpo1fLmJtzNxcUxZtznzGKNfk187S", + "description": "To The Sun!", + "explorer": "https://tronscan.io/#/token20/TQkgrmpo1fLmJtzNxcUxZtznzGKNfk187S", + "status": "active", + "id": "TQkgrmpo1fLmJtzNxcUxZtznzGKNfk187S", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TQkgrmpo1fLmJtzNxcUxZtznzGKNfk187S/logo.png b/blockchains/tron/assets/TQkgrmpo1fLmJtzNxcUxZtznzGKNfk187S/logo.png new file mode 100644 index 0000000000000..2b4713dafdcaf Binary files /dev/null and b/blockchains/tron/assets/TQkgrmpo1fLmJtzNxcUxZtznzGKNfk187S/logo.png differ diff --git a/blockchains/tron/assets/TQnorYAdiQTAEexqaB53MFpKpnLAdMe4sw/info.json b/blockchains/tron/assets/TQnorYAdiQTAEexqaB53MFpKpnLAdMe4sw/info.json new file mode 100644 index 0000000000000..f9120aa44af59 --- /dev/null +++ b/blockchains/tron/assets/TQnorYAdiQTAEexqaB53MFpKpnLAdMe4sw/info.json @@ -0,0 +1,20 @@ +{ + "name": "Gold xStock", + "type": "TRC20", + "symbol": "GLDx", + "decimals": 18, + "description": "Gold xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TQnorYAdiQTAEexqaB53MFpKpnLAdMe4sw", + "status": "active", + "id": "TQnorYAdiQTAEexqaB53MFpKpnLAdMe4sw", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gold-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TQnorYAdiQTAEexqaB53MFpKpnLAdMe4sw/logo.png b/blockchains/tron/assets/TQnorYAdiQTAEexqaB53MFpKpnLAdMe4sw/logo.png new file mode 100644 index 0000000000000..52e6642bf56f0 Binary files /dev/null and b/blockchains/tron/assets/TQnorYAdiQTAEexqaB53MFpKpnLAdMe4sw/logo.png differ diff --git a/blockchains/tron/assets/TQzRNTjWkmnL1Lup6fNzSdTaGQuc3ZYk1K/info.json b/blockchains/tron/assets/TQzRNTjWkmnL1Lup6fNzSdTaGQuc3ZYk1K/info.json new file mode 100644 index 0000000000000..338b0df6fe769 --- /dev/null +++ b/blockchains/tron/assets/TQzRNTjWkmnL1Lup6fNzSdTaGQuc3ZYk1K/info.json @@ -0,0 +1,20 @@ +{ + "name": "TQQQ xStock", + "type": "TRC20", + "symbol": "TQQQx", + "decimals": 18, + "description": "TQQQ xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TQzRNTjWkmnL1Lup6fNzSdTaGQuc3ZYk1K", + "status": "active", + "id": "TQzRNTjWkmnL1Lup6fNzSdTaGQuc3ZYk1K", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tqqq-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TQzRNTjWkmnL1Lup6fNzSdTaGQuc3ZYk1K/logo.png b/blockchains/tron/assets/TQzRNTjWkmnL1Lup6fNzSdTaGQuc3ZYk1K/logo.png new file mode 100644 index 0000000000000..09666400c7428 Binary files /dev/null and b/blockchains/tron/assets/TQzRNTjWkmnL1Lup6fNzSdTaGQuc3ZYk1K/logo.png differ diff --git a/blockchains/tron/assets/TR4rgmjvTJqKmgW3ncyCNYDy68ok39rWpG/info.json b/blockchains/tron/assets/TR4rgmjvTJqKmgW3ncyCNYDy68ok39rWpG/info.json new file mode 100644 index 0000000000000..7e8a513bfe0be --- /dev/null +++ b/blockchains/tron/assets/TR4rgmjvTJqKmgW3ncyCNYDy68ok39rWpG/info.json @@ -0,0 +1,20 @@ +{ + "name": "CrowdStrike xStock", + "type": "TRC20", + "symbol": "CRWDx", + "decimals": 18, + "description": "CrowdStrike xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TR4rgmjvTJqKmgW3ncyCNYDy68ok39rWpG", + "status": "active", + "id": "TR4rgmjvTJqKmgW3ncyCNYDy68ok39rWpG", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crowdstrike-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TR4rgmjvTJqKmgW3ncyCNYDy68ok39rWpG/logo.png b/blockchains/tron/assets/TR4rgmjvTJqKmgW3ncyCNYDy68ok39rWpG/logo.png new file mode 100644 index 0000000000000..b76bd9c264826 Binary files /dev/null and b/blockchains/tron/assets/TR4rgmjvTJqKmgW3ncyCNYDy68ok39rWpG/logo.png differ diff --git a/blockchains/tron/assets/TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t/info.json b/blockchains/tron/assets/TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t/info.json index c2324caa580c6..9693c31659a5e 100644 --- a/blockchains/tron/assets/TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t/info.json +++ b/blockchains/tron/assets/TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t/info.json @@ -1,5 +1,5 @@ { - "name": "Tether", + "name": "Tether USDT", "website": "https://tether.to", "description": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar.", "explorer": "https://tronscan.io/#/token20/TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t", @@ -14,8 +14,8 @@ "url": "https://tether.to/wp-content/uploads/2016/06/TetherWhitePaper.pdf" }, { - "name": "twitter", - "url": "https://twitter.com/Tether_to" + "name": "x", + "url": "https://x.com/Tether_to" }, { "name": "telegram", @@ -37,5 +37,8 @@ "name": "facebook", "url": "https://facebook.com/tronfoundation" } + ], + "tags": [ + "stablecoin" ] } \ No newline at end of file diff --git a/blockchains/tron/assets/TRCtLNYrhBjNgRmYTx2NGGSAg1k8u7V557/info.json b/blockchains/tron/assets/TRCtLNYrhBjNgRmYTx2NGGSAg1k8u7V557/info.json new file mode 100644 index 0000000000000..3648fd976fca2 --- /dev/null +++ b/blockchains/tron/assets/TRCtLNYrhBjNgRmYTx2NGGSAg1k8u7V557/info.json @@ -0,0 +1,20 @@ +{ + "name": "Goldman Sachs xStock", + "type": "TRC20", + "symbol": "GSx", + "decimals": 18, + "description": "Goldman Sachs xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TRCtLNYrhBjNgRmYTx2NGGSAg1k8u7V557", + "status": "active", + "id": "TRCtLNYrhBjNgRmYTx2NGGSAg1k8u7V557", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/goldman-sachs-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TRCtLNYrhBjNgRmYTx2NGGSAg1k8u7V557/logo.png b/blockchains/tron/assets/TRCtLNYrhBjNgRmYTx2NGGSAg1k8u7V557/logo.png new file mode 100644 index 0000000000000..bfb353875f93b Binary files /dev/null and b/blockchains/tron/assets/TRCtLNYrhBjNgRmYTx2NGGSAg1k8u7V557/logo.png differ diff --git a/blockchains/tron/assets/TRXfha1owZvFk5ru7cmd5SXDX1uKtcCRJN/info.json b/blockchains/tron/assets/TRXfha1owZvFk5ru7cmd5SXDX1uKtcCRJN/info.json new file mode 100644 index 0000000000000..ebe4d4430fdaf --- /dev/null +++ b/blockchains/tron/assets/TRXfha1owZvFk5ru7cmd5SXDX1uKtcCRJN/info.json @@ -0,0 +1,20 @@ +{ + "name": "Circle xStock", + "type": "TRC20", + "symbol": "CRCLx", + "decimals": 18, + "description": "Circle xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TRXfha1owZvFk5ru7cmd5SXDX1uKtcCRJN", + "status": "active", + "id": "TRXfha1owZvFk5ru7cmd5SXDX1uKtcCRJN", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/amber-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TRXfha1owZvFk5ru7cmd5SXDX1uKtcCRJN/logo.png b/blockchains/tron/assets/TRXfha1owZvFk5ru7cmd5SXDX1uKtcCRJN/logo.png new file mode 100644 index 0000000000000..5d99d96eeea49 Binary files /dev/null and b/blockchains/tron/assets/TRXfha1owZvFk5ru7cmd5SXDX1uKtcCRJN/logo.png differ diff --git a/blockchains/tron/assets/TRc8cQXxtxKUFdpU4rKdHgKM5oDQDZsQdZ/info.json b/blockchains/tron/assets/TRc8cQXxtxKUFdpU4rKdHgKM5oDQDZsQdZ/info.json new file mode 100644 index 0000000000000..3528f707b7f5f --- /dev/null +++ b/blockchains/tron/assets/TRc8cQXxtxKUFdpU4rKdHgKM5oDQDZsQdZ/info.json @@ -0,0 +1,20 @@ +{ + "name": "Salesforce xStock", + "type": "TRC20", + "symbol": "CRMx", + "decimals": 18, + "description": "Salesforce xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TRc8cQXxtxKUFdpU4rKdHgKM5oDQDZsQdZ", + "status": "active", + "id": "TRc8cQXxtxKUFdpU4rKdHgKM5oDQDZsQdZ", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/salesforce-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TRc8cQXxtxKUFdpU4rKdHgKM5oDQDZsQdZ/logo.png b/blockchains/tron/assets/TRc8cQXxtxKUFdpU4rKdHgKM5oDQDZsQdZ/logo.png new file mode 100644 index 0000000000000..d6ac8110a38b7 Binary files /dev/null and b/blockchains/tron/assets/TRc8cQXxtxKUFdpU4rKdHgKM5oDQDZsQdZ/logo.png differ diff --git a/blockchains/tron/assets/TRjbzYivRBYDkMGejDYTTio5bNjTpXRxEt/info.json b/blockchains/tron/assets/TRjbzYivRBYDkMGejDYTTio5bNjTpXRxEt/info.json new file mode 100644 index 0000000000000..cc5127a6b922d --- /dev/null +++ b/blockchains/tron/assets/TRjbzYivRBYDkMGejDYTTio5bNjTpXRxEt/info.json @@ -0,0 +1,20 @@ +{ + "name": "Accenture xStock", + "type": "TRC20", + "symbol": "ACNx", + "decimals": 18, + "description": "Accenture xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TRjbzYivRBYDkMGejDYTTio5bNjTpXRxEt", + "status": "active", + "id": "TRjbzYivRBYDkMGejDYTTio5bNjTpXRxEt", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/accenture-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TRjbzYivRBYDkMGejDYTTio5bNjTpXRxEt/logo.png b/blockchains/tron/assets/TRjbzYivRBYDkMGejDYTTio5bNjTpXRxEt/logo.png new file mode 100644 index 0000000000000..97a609cb0436a Binary files /dev/null and b/blockchains/tron/assets/TRjbzYivRBYDkMGejDYTTio5bNjTpXRxEt/logo.png differ diff --git a/blockchains/tron/assets/TRv9ipj4kKAZqQggQ7ceJpe5ERD1ZShpgs/info.json b/blockchains/tron/assets/TRv9ipj4kKAZqQggQ7ceJpe5ERD1ZShpgs/info.json new file mode 100644 index 0000000000000..c167331b3ef15 --- /dev/null +++ b/blockchains/tron/assets/TRv9ipj4kKAZqQggQ7ceJpe5ERD1ZShpgs/info.json @@ -0,0 +1,21 @@ +{ + "name": "Coconut Chicken", + "type": "TRC20", + "symbol": "CCC", + "decimals": 18, + "description": "$CCC Coconut Chicken is the First Meme Token of the TRON Network. Born from a tweet by Justin Sun, started as a playful meme token and has evolved into a community-driven powerhouse.", + "website": "https://coconutchicken.com/", + "explorer": "https://tronscan.io/#/token20/TRv9ipj4kKAZqQggQ7ceJpe5ERD1ZShpgs", + "id": "TRv9ipj4kKAZqQggQ7ceJpe5ERD1ZShpgs", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/CCCTRX20" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coconut-chicken/" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TRv9ipj4kKAZqQggQ7ceJpe5ERD1ZShpgs/logo.png b/blockchains/tron/assets/TRv9ipj4kKAZqQggQ7ceJpe5ERD1ZShpgs/logo.png new file mode 100644 index 0000000000000..9abe0febee982 Binary files /dev/null and b/blockchains/tron/assets/TRv9ipj4kKAZqQggQ7ceJpe5ERD1ZShpgs/logo.png differ diff --git a/blockchains/tron/assets/TS36P1eZbMX2ByrwpcTtoYpTsg9rvjkXCg/info.json b/blockchains/tron/assets/TS36P1eZbMX2ByrwpcTtoYpTsg9rvjkXCg/info.json new file mode 100644 index 0000000000000..943d7b5ed0129 --- /dev/null +++ b/blockchains/tron/assets/TS36P1eZbMX2ByrwpcTtoYpTsg9rvjkXCg/info.json @@ -0,0 +1,20 @@ +{ + "name": "AbbVie xStock", + "type": "TRC20", + "symbol": "ABBVx", + "decimals": 18, + "description": "AbbVie xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TS36P1eZbMX2ByrwpcTtoYpTsg9rvjkXCg", + "status": "active", + "id": "TS36P1eZbMX2ByrwpcTtoYpTsg9rvjkXCg", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abbvie-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TS36P1eZbMX2ByrwpcTtoYpTsg9rvjkXCg/logo.png b/blockchains/tron/assets/TS36P1eZbMX2ByrwpcTtoYpTsg9rvjkXCg/logo.png new file mode 100644 index 0000000000000..a6ab744f4369f Binary files /dev/null and b/blockchains/tron/assets/TS36P1eZbMX2ByrwpcTtoYpTsg9rvjkXCg/logo.png differ diff --git a/blockchains/tron/assets/TSSMHYeV2uE9qYH95DqyoCuNCzEL1NvU3S/info.json b/blockchains/tron/assets/TSSMHYeV2uE9qYH95DqyoCuNCzEL1NvU3S/info.json index 29d2a1eba9d63..054913215ff3d 100644 --- a/blockchains/tron/assets/TSSMHYeV2uE9qYH95DqyoCuNCzEL1NvU3S/info.json +++ b/blockchains/tron/assets/TSSMHYeV2uE9qYH95DqyoCuNCzEL1NvU3S/info.json @@ -1,12 +1,21 @@ { - "name": "SUN", - "website": "https://sun.io", - "description": "SUN is a social experiment, which focuses on the DeFi potential of TRON.", - "explorer": "https://tronscan.io/#/token20/TSSMHYeV2uE9qYH95DqyoCuNCzEL1NvU3S", - "research": "https://research.binance.com/en/projects/sun", + "name": "Sun", + "website": "https://sun.io/#/home", + "description": "The SUN.io platform is TRON's first one-stop platform that supports stablecoin swap, token mining and self-governance.", + "explorer": "https://tronscan.org/#/token20/TSSMHYeV2uE9qYH95DqyoCuNCzEL1NvU3S", "type": "TRC20", "symbol": "SUN", "decimals": 18, "status": "active", - "id": "TSSMHYeV2uE9qYH95DqyoCuNCzEL1NvU3S" + "id": "TSSMHYeV2uE9qYH95DqyoCuNCzEL1NvU3S", + "links": [ + { + "name": "x", + "url": "https://x.com/defi_sunio" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sun-token/" + } + ] } \ No newline at end of file diff --git a/blockchains/tron/assets/TSYfjdt4x3QDEFADucb6TSzz1XUCTSq1NU/info.json b/blockchains/tron/assets/TSYfjdt4x3QDEFADucb6TSzz1XUCTSq1NU/info.json new file mode 100644 index 0000000000000..1f4697d15dfa5 --- /dev/null +++ b/blockchains/tron/assets/TSYfjdt4x3QDEFADucb6TSzz1XUCTSq1NU/info.json @@ -0,0 +1,15 @@ +{ + "name": "Bitmine xStock", + "type": "TRC20", + "symbol": "BMNRx", + "decimals": 18, + "description": "Bitmine xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TSYfjdt4x3QDEFADucb6TSzz1XUCTSq1NU", + "status": "active", + "id": "TSYfjdt4x3QDEFADucb6TSzz1XUCTSq1NU", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TSYfjdt4x3QDEFADucb6TSzz1XUCTSq1NU/logo.png b/blockchains/tron/assets/TSYfjdt4x3QDEFADucb6TSzz1XUCTSq1NU/logo.png new file mode 100644 index 0000000000000..fb7784c71a3a4 Binary files /dev/null and b/blockchains/tron/assets/TSYfjdt4x3QDEFADucb6TSzz1XUCTSq1NU/logo.png differ diff --git a/blockchains/tron/assets/TScLC8RqWY5bZwcLrzAVUaMUK22d1BRciP/info.json b/blockchains/tron/assets/TScLC8RqWY5bZwcLrzAVUaMUK22d1BRciP/info.json new file mode 100644 index 0000000000000..80e74d2a52cb2 --- /dev/null +++ b/blockchains/tron/assets/TScLC8RqWY5bZwcLrzAVUaMUK22d1BRciP/info.json @@ -0,0 +1,20 @@ +{ + "name": "Thermo Fisher xStock", + "type": "TRC20", + "symbol": "TMOx", + "decimals": 18, + "description": "Thermo Fisher xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TScLC8RqWY5bZwcLrzAVUaMUK22d1BRciP", + "status": "active", + "id": "TScLC8RqWY5bZwcLrzAVUaMUK22d1BRciP", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/thermo-fisher-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TScLC8RqWY5bZwcLrzAVUaMUK22d1BRciP/logo.png b/blockchains/tron/assets/TScLC8RqWY5bZwcLrzAVUaMUK22d1BRciP/logo.png new file mode 100644 index 0000000000000..1951f3b4c8100 Binary files /dev/null and b/blockchains/tron/assets/TScLC8RqWY5bZwcLrzAVUaMUK22d1BRciP/logo.png differ diff --git a/blockchains/tron/assets/TSrLhu1fVjPDtGbZD6Fn4ra9gHFUUAjzkN/info.json b/blockchains/tron/assets/TSrLhu1fVjPDtGbZD6Fn4ra9gHFUUAjzkN/info.json new file mode 100644 index 0000000000000..ce7059cc07e05 --- /dev/null +++ b/blockchains/tron/assets/TSrLhu1fVjPDtGbZD6Fn4ra9gHFUUAjzkN/info.json @@ -0,0 +1,15 @@ +{ + "name": "AMD xStock", + "type": "TRC20", + "symbol": "AMDx", + "decimals": 18, + "description": "AMD xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TSrLhu1fVjPDtGbZD6Fn4ra9gHFUUAjzkN", + "status": "active", + "id": "TSrLhu1fVjPDtGbZD6Fn4ra9gHFUUAjzkN", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TSrLhu1fVjPDtGbZD6Fn4ra9gHFUUAjzkN/logo.png b/blockchains/tron/assets/TSrLhu1fVjPDtGbZD6Fn4ra9gHFUUAjzkN/logo.png new file mode 100644 index 0000000000000..4e802b8335682 Binary files /dev/null and b/blockchains/tron/assets/TSrLhu1fVjPDtGbZD6Fn4ra9gHFUUAjzkN/logo.png differ diff --git a/blockchains/tron/assets/TSvs616A7HzkWMFSdc45SDyz4EfwSH1b7Y/info.json b/blockchains/tron/assets/TSvs616A7HzkWMFSdc45SDyz4EfwSH1b7Y/info.json new file mode 100644 index 0000000000000..9028cccdee308 --- /dev/null +++ b/blockchains/tron/assets/TSvs616A7HzkWMFSdc45SDyz4EfwSH1b7Y/info.json @@ -0,0 +1,20 @@ +{ + "name": "Amber xStock", + "type": "TRC20", + "symbol": "AMBRx", + "decimals": 18, + "description": "Amber xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TSvs616A7HzkWMFSdc45SDyz4EfwSH1b7Y", + "status": "active", + "id": "TSvs616A7HzkWMFSdc45SDyz4EfwSH1b7Y", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/amber-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TSvs616A7HzkWMFSdc45SDyz4EfwSH1b7Y/logo.png b/blockchains/tron/assets/TSvs616A7HzkWMFSdc45SDyz4EfwSH1b7Y/logo.png new file mode 100644 index 0000000000000..86fe45a844256 Binary files /dev/null and b/blockchains/tron/assets/TSvs616A7HzkWMFSdc45SDyz4EfwSH1b7Y/logo.png differ diff --git a/blockchains/tron/assets/TT4bLicQVdQzq5KMhLp7KRNJ2PqkXF9geu/info.json b/blockchains/tron/assets/TT4bLicQVdQzq5KMhLp7KRNJ2PqkXF9geu/info.json new file mode 100644 index 0000000000000..3f32c29fa32bc --- /dev/null +++ b/blockchains/tron/assets/TT4bLicQVdQzq5KMhLp7KRNJ2PqkXF9geu/info.json @@ -0,0 +1,20 @@ +{ + "name": "Merck xStock", + "type": "TRC20", + "symbol": "MRKx", + "decimals": 18, + "description": "Merck xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TT4bLicQVdQzq5KMhLp7KRNJ2PqkXF9geu", + "status": "active", + "id": "TT4bLicQVdQzq5KMhLp7KRNJ2PqkXF9geu", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/merck-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TT4bLicQVdQzq5KMhLp7KRNJ2PqkXF9geu/logo.png b/blockchains/tron/assets/TT4bLicQVdQzq5KMhLp7KRNJ2PqkXF9geu/logo.png new file mode 100644 index 0000000000000..d985b220afff3 Binary files /dev/null and b/blockchains/tron/assets/TT4bLicQVdQzq5KMhLp7KRNJ2PqkXF9geu/logo.png differ diff --git a/blockchains/tron/assets/TTCNHD9tFLDSB3Ryn9MjtEv5bkwT6zya42/info.json b/blockchains/tron/assets/TTCNHD9tFLDSB3Ryn9MjtEv5bkwT6zya42/info.json new file mode 100644 index 0000000000000..4803f44a1b749 --- /dev/null +++ b/blockchains/tron/assets/TTCNHD9tFLDSB3Ryn9MjtEv5bkwT6zya42/info.json @@ -0,0 +1,20 @@ +{ + "name": "AppLovin xStock", + "type": "TRC20", + "symbol": "APPx", + "decimals": 18, + "description": "AppLovin xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TTCNHD9tFLDSB3Ryn9MjtEv5bkwT6zya42", + "status": "active", + "id": "TTCNHD9tFLDSB3Ryn9MjtEv5bkwT6zya42", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/applovin-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TTCNHD9tFLDSB3Ryn9MjtEv5bkwT6zya42/logo.png b/blockchains/tron/assets/TTCNHD9tFLDSB3Ryn9MjtEv5bkwT6zya42/logo.png new file mode 100644 index 0000000000000..81e69fc904522 Binary files /dev/null and b/blockchains/tron/assets/TTCNHD9tFLDSB3Ryn9MjtEv5bkwT6zya42/logo.png differ diff --git a/blockchains/tron/assets/TTLVdtBYipLVqVbPaaQb2Zbcubbpddtxu7/info.json b/blockchains/tron/assets/TTLVdtBYipLVqVbPaaQb2Zbcubbpddtxu7/info.json new file mode 100644 index 0000000000000..21bdae6d26fd9 --- /dev/null +++ b/blockchains/tron/assets/TTLVdtBYipLVqVbPaaQb2Zbcubbpddtxu7/info.json @@ -0,0 +1,21 @@ +{ + "name": "Camell", + "type": "TRC20", + "symbol": "CAMT", + "decimals": 18, + "description": "Camell Token is a digital asset with a total issuance of 1 billion tokens. It supports projects including blockchain-based cloud drives, aimed at enhancing data security and management efficiency.", + "website": "https://camt.cloud/", + "explorer": "https://tronscan.io/#/token20/TTLVdtBYipLVqVbPaaQb2Zbcubbpddtxu7", + "id": "TTLVdtBYipLVqVbPaaQb2Zbcubbpddtxu7", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/camell_cloud" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/camell/" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TTLVdtBYipLVqVbPaaQb2Zbcubbpddtxu7/logo.png b/blockchains/tron/assets/TTLVdtBYipLVqVbPaaQb2Zbcubbpddtxu7/logo.png new file mode 100644 index 0000000000000..a92f4885364c4 Binary files /dev/null and b/blockchains/tron/assets/TTLVdtBYipLVqVbPaaQb2Zbcubbpddtxu7/logo.png differ diff --git a/blockchains/tron/assets/TTWcUCrXeh9riHfguXzkh1iK9BUwPtCF7z/info.json b/blockchains/tron/assets/TTWcUCrXeh9riHfguXzkh1iK9BUwPtCF7z/info.json new file mode 100644 index 0000000000000..8c6a48722c650 --- /dev/null +++ b/blockchains/tron/assets/TTWcUCrXeh9riHfguXzkh1iK9BUwPtCF7z/info.json @@ -0,0 +1,20 @@ +{ + "name": "Procter & Gamble xStock", + "type": "TRC20", + "symbol": "PGx", + "decimals": 18, + "description": "Procter & Gamble xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TTWcUCrXeh9riHfguXzkh1iK9BUwPtCF7z", + "status": "active", + "id": "TTWcUCrXeh9riHfguXzkh1iK9BUwPtCF7z", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/procter-gamble-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TTWcUCrXeh9riHfguXzkh1iK9BUwPtCF7z/logo.png b/blockchains/tron/assets/TTWcUCrXeh9riHfguXzkh1iK9BUwPtCF7z/logo.png new file mode 100644 index 0000000000000..91c8cff43e5c5 Binary files /dev/null and b/blockchains/tron/assets/TTWcUCrXeh9riHfguXzkh1iK9BUwPtCF7z/logo.png differ diff --git a/blockchains/tron/assets/TTfj39Vm7ATpNJMsfDUWYVzxK8mPPA4yYE/info.json b/blockchains/tron/assets/TTfj39Vm7ATpNJMsfDUWYVzxK8mPPA4yYE/info.json new file mode 100644 index 0000000000000..9d627457d2bf7 --- /dev/null +++ b/blockchains/tron/assets/TTfj39Vm7ATpNJMsfDUWYVzxK8mPPA4yYE/info.json @@ -0,0 +1,20 @@ +{ + "name": "Tesla xStock", + "type": "TRC20", + "symbol": "TSLAx", + "decimals": 18, + "description": "Tesla xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TTfj39Vm7ATpNJMsfDUWYVzxK8mPPA4yYE", + "status": "active", + "id": "TTfj39Vm7ATpNJMsfDUWYVzxK8mPPA4yYE", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tesla-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TTfj39Vm7ATpNJMsfDUWYVzxK8mPPA4yYE/logo.png b/blockchains/tron/assets/TTfj39Vm7ATpNJMsfDUWYVzxK8mPPA4yYE/logo.png new file mode 100644 index 0000000000000..8bbfdce0a2368 Binary files /dev/null and b/blockchains/tron/assets/TTfj39Vm7ATpNJMsfDUWYVzxK8mPPA4yYE/logo.png differ diff --git a/blockchains/tron/assets/TThzxNRLrW2Brp9DcTQU8i4Wd9udCWEdZ3/info.json b/blockchains/tron/assets/TThzxNRLrW2Brp9DcTQU8i4Wd9udCWEdZ3/info.json new file mode 100644 index 0000000000000..c7aca3fa05d68 --- /dev/null +++ b/blockchains/tron/assets/TThzxNRLrW2Brp9DcTQU8i4Wd9udCWEdZ3/info.json @@ -0,0 +1,21 @@ +{ + "name": "Staked USDT", + "type": "TRC20", + "symbol": "stUSDT", + "decimals": 18, + "description": "stUSDT is the first RWA platform on the TRON Network. Shape, expand, and share the future of real-world assets tokenization on TRON.", + "website": "https://stusdt.io/", + "explorer": "https://tronscan.org/#/token20/TThzxNRLrW2Brp9DcTQU8i4Wd9udCWEdZ3", + "id": "TThzxNRLrW2Brp9DcTQU8i4Wd9udCWEdZ3", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/stusdtio" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/staked-usdt/" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TThzxNRLrW2Brp9DcTQU8i4Wd9udCWEdZ3/logo.png b/blockchains/tron/assets/TThzxNRLrW2Brp9DcTQU8i4Wd9udCWEdZ3/logo.png new file mode 100644 index 0000000000000..4457466dd7984 Binary files /dev/null and b/blockchains/tron/assets/TThzxNRLrW2Brp9DcTQU8i4Wd9udCWEdZ3/logo.png differ diff --git a/blockchains/tron/assets/TTkpurbV2vt3dnWeKjRd47LuxYoJ14uC6X/info.json b/blockchains/tron/assets/TTkpurbV2vt3dnWeKjRd47LuxYoJ14uC6X/info.json new file mode 100644 index 0000000000000..c1ba5e84c1ea6 --- /dev/null +++ b/blockchains/tron/assets/TTkpurbV2vt3dnWeKjRd47LuxYoJ14uC6X/info.json @@ -0,0 +1,20 @@ +{ + "name": "Exxon Mobil xStock", + "type": "TRC20", + "symbol": "XOMx", + "decimals": 18, + "description": "Exxon Mobil xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TTkpurbV2vt3dnWeKjRd47LuxYoJ14uC6X", + "status": "active", + "id": "TTkpurbV2vt3dnWeKjRd47LuxYoJ14uC6X", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/exxon-mobil-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TTkpurbV2vt3dnWeKjRd47LuxYoJ14uC6X/logo.png b/blockchains/tron/assets/TTkpurbV2vt3dnWeKjRd47LuxYoJ14uC6X/logo.png new file mode 100644 index 0000000000000..21ed72e7b5ad6 Binary files /dev/null and b/blockchains/tron/assets/TTkpurbV2vt3dnWeKjRd47LuxYoJ14uC6X/logo.png differ diff --git a/blockchains/tron/assets/TTsPtgroqB964V7dKq1bcur11Py6KCJjjE/info.json b/blockchains/tron/assets/TTsPtgroqB964V7dKq1bcur11Py6KCJjjE/info.json new file mode 100644 index 0000000000000..434c87bba7e30 --- /dev/null +++ b/blockchains/tron/assets/TTsPtgroqB964V7dKq1bcur11Py6KCJjjE/info.json @@ -0,0 +1,20 @@ +{ + "name": "Broadcom xStock", + "type": "TRC20", + "symbol": "AVGOx", + "decimals": 18, + "description": "Broadcom xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TTsPtgroqB964V7dKq1bcur11Py6KCJjjE", + "status": "active", + "id": "TTsPtgroqB964V7dKq1bcur11Py6KCJjjE", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/broadcom-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TTsPtgroqB964V7dKq1bcur11Py6KCJjjE/logo.png b/blockchains/tron/assets/TTsPtgroqB964V7dKq1bcur11Py6KCJjjE/logo.png new file mode 100644 index 0000000000000..311e62f37d912 Binary files /dev/null and b/blockchains/tron/assets/TTsPtgroqB964V7dKq1bcur11Py6KCJjjE/logo.png differ diff --git a/blockchains/tron/assets/TTw78zCwRhCA6yHMFxEE2qqmXCCCWSrcnS/info.json b/blockchains/tron/assets/TTw78zCwRhCA6yHMFxEE2qqmXCCCWSrcnS/info.json new file mode 100644 index 0000000000000..cf7feac0138e0 --- /dev/null +++ b/blockchains/tron/assets/TTw78zCwRhCA6yHMFxEE2qqmXCCCWSrcnS/info.json @@ -0,0 +1,20 @@ +{ + "name": "Bank of America xStock", + "type": "TRC20", + "symbol": "BACx", + "decimals": 18, + "description": "Bank of America xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TTw78zCwRhCA6yHMFxEE2qqmXCCCWSrcnS", + "status": "active", + "id": "TTw78zCwRhCA6yHMFxEE2qqmXCCCWSrcnS", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bank-of-america-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TTw78zCwRhCA6yHMFxEE2qqmXCCCWSrcnS/logo.png b/blockchains/tron/assets/TTw78zCwRhCA6yHMFxEE2qqmXCCCWSrcnS/logo.png new file mode 100644 index 0000000000000..6f48f28bf287c Binary files /dev/null and b/blockchains/tron/assets/TTw78zCwRhCA6yHMFxEE2qqmXCCCWSrcnS/logo.png differ diff --git a/blockchains/tron/assets/TTyYLCDgwDLTmQBM6SmPpZ6RrTL2Y4RBiJ/info.json b/blockchains/tron/assets/TTyYLCDgwDLTmQBM6SmPpZ6RrTL2Y4RBiJ/info.json new file mode 100644 index 0000000000000..7e1b98058c9f8 --- /dev/null +++ b/blockchains/tron/assets/TTyYLCDgwDLTmQBM6SmPpZ6RrTL2Y4RBiJ/info.json @@ -0,0 +1,15 @@ +{ + "name": "Bit Digital xStock", + "type": "TRC20", + "symbol": "BTBTx", + "decimals": 18, + "description": "Bit Digital xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TTyYLCDgwDLTmQBM6SmPpZ6RrTL2Y4RBiJ", + "status": "active", + "id": "TTyYLCDgwDLTmQBM6SmPpZ6RrTL2Y4RBiJ", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TTyYLCDgwDLTmQBM6SmPpZ6RrTL2Y4RBiJ/logo.png b/blockchains/tron/assets/TTyYLCDgwDLTmQBM6SmPpZ6RrTL2Y4RBiJ/logo.png new file mode 100644 index 0000000000000..30817f4fdb226 Binary files /dev/null and b/blockchains/tron/assets/TTyYLCDgwDLTmQBM6SmPpZ6RrTL2Y4RBiJ/logo.png differ diff --git a/blockchains/tron/assets/TU27csxZZ7v5BbfbmoCNMH3YqRESeieGR8/info.json b/blockchains/tron/assets/TU27csxZZ7v5BbfbmoCNMH3YqRESeieGR8/info.json new file mode 100644 index 0000000000000..2e2f96d7d6a8f --- /dev/null +++ b/blockchains/tron/assets/TU27csxZZ7v5BbfbmoCNMH3YqRESeieGR8/info.json @@ -0,0 +1,20 @@ +{ + "name": "Philip Morris xStock", + "type": "TRC20", + "symbol": "PMx", + "decimals": 18, + "description": "Philip Morris xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TU27csxZZ7v5BbfbmoCNMH3YqRESeieGR8", + "status": "active", + "id": "TU27csxZZ7v5BbfbmoCNMH3YqRESeieGR8", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/philip-morris-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TU27csxZZ7v5BbfbmoCNMH3YqRESeieGR8/logo.png b/blockchains/tron/assets/TU27csxZZ7v5BbfbmoCNMH3YqRESeieGR8/logo.png new file mode 100644 index 0000000000000..2b243463c9216 Binary files /dev/null and b/blockchains/tron/assets/TU27csxZZ7v5BbfbmoCNMH3YqRESeieGR8/logo.png differ diff --git a/blockchains/tron/assets/TUFonyWZ4Tza5MzgDj6g2u5rfdGoRVYG7g/info.json b/blockchains/tron/assets/TUFonyWZ4Tza5MzgDj6g2u5rfdGoRVYG7g/info.json new file mode 100644 index 0000000000000..de52a90b32e01 --- /dev/null +++ b/blockchains/tron/assets/TUFonyWZ4Tza5MzgDj6g2u5rfdGoRVYG7g/info.json @@ -0,0 +1,21 @@ +{ + "name": "FOFAR", + "type": "TRC20", + "symbol": "FOFAR", + "decimals": 18, + "description": "A legendary character inspired by Matt Furie's Boy's Club comic.", + "website": "https://www.fofar.meme/", + "explorer": "https://tronscan.org/#/token20/TUFonyWZ4Tza5MzgDj6g2u5rfdGoRVYG7g", + "id": "TUFonyWZ4Tza5MzgDj6g2u5rfdGoRVYG7g", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/FofarOnTron" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fofar-tron/" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TUFonyWZ4Tza5MzgDj6g2u5rfdGoRVYG7g/logo.png b/blockchains/tron/assets/TUFonyWZ4Tza5MzgDj6g2u5rfdGoRVYG7g/logo.png new file mode 100644 index 0000000000000..4b2d95ce92235 Binary files /dev/null and b/blockchains/tron/assets/TUFonyWZ4Tza5MzgDj6g2u5rfdGoRVYG7g/logo.png differ diff --git a/blockchains/tron/assets/TUP3g7kbaESRFRhULeA19USSrcVBEpWLVY/info.json b/blockchains/tron/assets/TUP3g7kbaESRFRhULeA19USSrcVBEpWLVY/info.json index 8f5b3bf822bc1..6a7a3745fbadf 100644 --- a/blockchains/tron/assets/TUP3g7kbaESRFRhULeA19USSrcVBEpWLVY/info.json +++ b/blockchains/tron/assets/TUP3g7kbaESRFRhULeA19USSrcVBEpWLVY/info.json @@ -10,8 +10,8 @@ "id": "TUP3g7kbaESRFRhULeA19USSrcVBEpWLVY", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ZedxionC" + "name": "x", + "url": "https://x.com/ZedxionC" }, { "name": "telegram", diff --git a/blockchains/tron/assets/TUPM7K8REVzD2UdV4R5fe5M8XbnR2DdoJ6/info.json b/blockchains/tron/assets/TUPM7K8REVzD2UdV4R5fe5M8XbnR2DdoJ6/info.json new file mode 100644 index 0000000000000..b9a8a19381a80 --- /dev/null +++ b/blockchains/tron/assets/TUPM7K8REVzD2UdV4R5fe5M8XbnR2DdoJ6/info.json @@ -0,0 +1,21 @@ +{ + "name": "HTX", + "type": "TRC20", + "symbol": "HTX", + "decimals": 18, + "description": "HTX is the governance token of HTX DAO, a decentralized autonomous organization relying on the collective autonomy of HTX token holders. HTX holders possess the right to vote on proposals and can freely delegate and exercise their voting rights in the decision-making process.", + "website": "https://www.htxdao.com/", + "explorer": "https://tronscan.org/#/token20/TUPM7K8REVzD2UdV4R5fe5M8XbnR2DdoJ6", + "id": "TUPM7K8REVzD2UdV4R5fe5M8XbnR2DdoJ6", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/HTX_DAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/htx/" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TUPM7K8REVzD2UdV4R5fe5M8XbnR2DdoJ6/logo.png b/blockchains/tron/assets/TUPM7K8REVzD2UdV4R5fe5M8XbnR2DdoJ6/logo.png new file mode 100644 index 0000000000000..b3aa738119147 Binary files /dev/null and b/blockchains/tron/assets/TUPM7K8REVzD2UdV4R5fe5M8XbnR2DdoJ6/logo.png differ diff --git a/blockchains/tron/assets/TUQsUkzfwKegioj2utgYxQ9scPFZ5Aj68M/info.json b/blockchains/tron/assets/TUQsUkzfwKegioj2utgYxQ9scPFZ5Aj68M/info.json new file mode 100644 index 0000000000000..7bced0d39b3ab --- /dev/null +++ b/blockchains/tron/assets/TUQsUkzfwKegioj2utgYxQ9scPFZ5Aj68M/info.json @@ -0,0 +1,20 @@ +{ + "name": "Robinhood xStock", + "type": "TRC20", + "symbol": "HOODx", + "decimals": 18, + "description": "Robinhood xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TUQsUkzfwKegioj2utgYxQ9scPFZ5Aj68M", + "status": "active", + "id": "TUQsUkzfwKegioj2utgYxQ9scPFZ5Aj68M", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/robinhood-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TUQsUkzfwKegioj2utgYxQ9scPFZ5Aj68M/logo.png b/blockchains/tron/assets/TUQsUkzfwKegioj2utgYxQ9scPFZ5Aj68M/logo.png new file mode 100644 index 0000000000000..499d05ab3c8af Binary files /dev/null and b/blockchains/tron/assets/TUQsUkzfwKegioj2utgYxQ9scPFZ5Aj68M/logo.png differ diff --git a/blockchains/tron/assets/TUjpAjdvHBkYpctbhQWyBhgLnoX1iuKeJU/info.json b/blockchains/tron/assets/TUjpAjdvHBkYpctbhQWyBhgLnoX1iuKeJU/info.json new file mode 100644 index 0000000000000..d7b620600802f --- /dev/null +++ b/blockchains/tron/assets/TUjpAjdvHBkYpctbhQWyBhgLnoX1iuKeJU/info.json @@ -0,0 +1,20 @@ +{ + "name": "Home Depot xStock", + "type": "TRC20", + "symbol": "HDx", + "decimals": 18, + "description": "Home Depot xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TUjpAjdvHBkYpctbhQWyBhgLnoX1iuKeJU", + "status": "active", + "id": "TUjpAjdvHBkYpctbhQWyBhgLnoX1iuKeJU", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/home-depot-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TUjpAjdvHBkYpctbhQWyBhgLnoX1iuKeJU/logo.png b/blockchains/tron/assets/TUjpAjdvHBkYpctbhQWyBhgLnoX1iuKeJU/logo.png new file mode 100644 index 0000000000000..1351af57506ae Binary files /dev/null and b/blockchains/tron/assets/TUjpAjdvHBkYpctbhQWyBhgLnoX1iuKeJU/logo.png differ diff --git a/blockchains/tron/assets/TUpMhErZL2fhh4sVNULAbNKLokS4GjC1F4/info.json b/blockchains/tron/assets/TUpMhErZL2fhh4sVNULAbNKLokS4GjC1F4/info.json index 02bf551b76efe..40e359a906435 100644 --- a/blockchains/tron/assets/TUpMhErZL2fhh4sVNULAbNKLokS4GjC1F4/info.json +++ b/blockchains/tron/assets/TUpMhErZL2fhh4sVNULAbNKLokS4GjC1F4/info.json @@ -1,5 +1,5 @@ { - "name": "TrueUSDToken", + "name": "TrueUSD", "symbol": "TrueUSD", "type": "TRC20", "decimals": 18, @@ -14,8 +14,8 @@ "url": "https://github.com/trusttoken/TrueUSD" }, { - "name": "twitter", - "url": "https://twitter.com/tusd_official" + "name": "x", + "url": "https://x.com/tusd_official" }, { "name": "telegram", diff --git a/blockchains/tron/assets/TUsRFkJG8LZ5fqh2TSmHUSw7kRWUbzfqAF/info.json b/blockchains/tron/assets/TUsRFkJG8LZ5fqh2TSmHUSw7kRWUbzfqAF/info.json new file mode 100644 index 0000000000000..1a64099794422 --- /dev/null +++ b/blockchains/tron/assets/TUsRFkJG8LZ5fqh2TSmHUSw7kRWUbzfqAF/info.json @@ -0,0 +1,15 @@ +{ + "name": "Strategy PP Variable xStock", + "type": "TRC20", + "symbol": "STRCx", + "decimals": 18, + "description": "Strategy PP Variable xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TUsRFkJG8LZ5fqh2TSmHUSw7kRWUbzfqAF", + "status": "active", + "id": "TUsRFkJG8LZ5fqh2TSmHUSw7kRWUbzfqAF", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TUsRFkJG8LZ5fqh2TSmHUSw7kRWUbzfqAF/logo.png b/blockchains/tron/assets/TUsRFkJG8LZ5fqh2TSmHUSw7kRWUbzfqAF/logo.png new file mode 100644 index 0000000000000..1407faeca0e8c Binary files /dev/null and b/blockchains/tron/assets/TUsRFkJG8LZ5fqh2TSmHUSw7kRWUbzfqAF/logo.png differ diff --git a/blockchains/tron/assets/TV5yB8f4AdoAfVVUdkytyZnX5e7SeGAZr2/info.json b/blockchains/tron/assets/TV5yB8f4AdoAfVVUdkytyZnX5e7SeGAZr2/info.json new file mode 100644 index 0000000000000..137d3b8538c7b --- /dev/null +++ b/blockchains/tron/assets/TV5yB8f4AdoAfVVUdkytyZnX5e7SeGAZr2/info.json @@ -0,0 +1,14 @@ +{ + "name": "Dragon Sun", + "type": "TRC20", + "symbol": "DRGN", + "decimals": 18, + "website": "https://tronscan.org/#/token20/TV5yB8f4AdoAfVVUdkytyZnX5e7SeGAZr2", + "description": "A dragon fusing the east and west in the fight against the matrix", + "explorer": "https://tronscan.io/#/token20/TV5yB8f4AdoAfVVUdkytyZnX5e7SeGAZr2", + "status": "active", + "id": "TV5yB8f4AdoAfVVUdkytyZnX5e7SeGAZr2", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TV5yB8f4AdoAfVVUdkytyZnX5e7SeGAZr2/logo.png b/blockchains/tron/assets/TV5yB8f4AdoAfVVUdkytyZnX5e7SeGAZr2/logo.png new file mode 100644 index 0000000000000..9f7e619aa8878 Binary files /dev/null and b/blockchains/tron/assets/TV5yB8f4AdoAfVVUdkytyZnX5e7SeGAZr2/logo.png differ diff --git a/blockchains/tron/assets/TVBbuZ4hUisCPSsrR46BCQHDGtsBNAMjVh/info.json b/blockchains/tron/assets/TVBbuZ4hUisCPSsrR46BCQHDGtsBNAMjVh/info.json new file mode 100644 index 0000000000000..aa7d0e58416f2 --- /dev/null +++ b/blockchains/tron/assets/TVBbuZ4hUisCPSsrR46BCQHDGtsBNAMjVh/info.json @@ -0,0 +1,20 @@ +{ + "name": "Nasdaq xStock", + "type": "TRC20", + "symbol": "QQQx", + "decimals": 18, + "description": "Nasdaq xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TVBbuZ4hUisCPSsrR46BCQHDGtsBNAMjVh", + "status": "active", + "id": "TVBbuZ4hUisCPSsrR46BCQHDGtsBNAMjVh", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nasdaq-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TVBbuZ4hUisCPSsrR46BCQHDGtsBNAMjVh/logo.png b/blockchains/tron/assets/TVBbuZ4hUisCPSsrR46BCQHDGtsBNAMjVh/logo.png new file mode 100644 index 0000000000000..0be7e154785ec Binary files /dev/null and b/blockchains/tron/assets/TVBbuZ4hUisCPSsrR46BCQHDGtsBNAMjVh/logo.png differ diff --git a/blockchains/tron/assets/TVgHqeP41s3qMDH3oKBsScEUzvyXw6bKAm/info.json b/blockchains/tron/assets/TVgHqeP41s3qMDH3oKBsScEUzvyXw6bKAm/info.json new file mode 100644 index 0000000000000..301a3a070143c --- /dev/null +++ b/blockchains/tron/assets/TVgHqeP41s3qMDH3oKBsScEUzvyXw6bKAm/info.json @@ -0,0 +1,14 @@ +{ + "name": "Tron Cat", + "type": "TRC20", + "symbol": "Tcat", + "decimals": 18, + "website": "https://tronscan.org/#/token20/TVgHqeP41s3qMDH3oKBsScEUzvyXw6bKAm", + "description": "Tron Cat", + "explorer": "https://tronscan.io/#/token20/TVgHqeP41s3qMDH3oKBsScEUzvyXw6bKAm", + "status": "active", + "id": "TVgHqeP41s3qMDH3oKBsScEUzvyXw6bKAm", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TVgHqeP41s3qMDH3oKBsScEUzvyXw6bKAm/logo.png b/blockchains/tron/assets/TVgHqeP41s3qMDH3oKBsScEUzvyXw6bKAm/logo.png new file mode 100644 index 0000000000000..c61778b851b9b Binary files /dev/null and b/blockchains/tron/assets/TVgHqeP41s3qMDH3oKBsScEUzvyXw6bKAm/logo.png differ diff --git a/blockchains/tron/assets/TVoKC3ZhU7rcisPRFgunNwHVmSqfmiTB9m/info.json b/blockchains/tron/assets/TVoKC3ZhU7rcisPRFgunNwHVmSqfmiTB9m/info.json new file mode 100644 index 0000000000000..fd7a0c9289107 --- /dev/null +++ b/blockchains/tron/assets/TVoKC3ZhU7rcisPRFgunNwHVmSqfmiTB9m/info.json @@ -0,0 +1,21 @@ +{ + "name": "Measurable Data", + "type": "TRC20", + "symbol": "MDT", + "decimals": 18, + "description": "Measurable Data Token (MDT) aims to provide a blockchain-based data economy, where data providers and data buyers can exchange data securely and anonymously.", + "website": "https://mdt.io/", + "explorer": "https://tronscan.org/#/token20/TVoKC3ZhU7rcisPRFgunNwHVmSqfmiTB9m", + "id": "TVoKC3ZhU7rcisPRFgunNwHVmSqfmiTB9m", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/MeasurableData" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/measurable-data-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TVoKC3ZhU7rcisPRFgunNwHVmSqfmiTB9m/logo.png b/blockchains/tron/assets/TVoKC3ZhU7rcisPRFgunNwHVmSqfmiTB9m/logo.png new file mode 100644 index 0000000000000..4f2dc1906f0c9 Binary files /dev/null and b/blockchains/tron/assets/TVoKC3ZhU7rcisPRFgunNwHVmSqfmiTB9m/logo.png differ diff --git a/blockchains/tron/assets/TVq5jvoRtxGHdHwKWDaBVsF3X9Kp2KWXxu/info.json b/blockchains/tron/assets/TVq5jvoRtxGHdHwKWDaBVsF3X9Kp2KWXxu/info.json new file mode 100644 index 0000000000000..e30ceaaa86182 --- /dev/null +++ b/blockchains/tron/assets/TVq5jvoRtxGHdHwKWDaBVsF3X9Kp2KWXxu/info.json @@ -0,0 +1,20 @@ +{ + "name": "International Business Machines xStock", + "type": "TRC20", + "symbol": "IBMx", + "decimals": 18, + "description": "International Business Machines xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TVq5jvoRtxGHdHwKWDaBVsF3X9Kp2KWXxu", + "status": "active", + "id": "TVq5jvoRtxGHdHwKWDaBVsF3X9Kp2KWXxu", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/international-business-machines-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TVq5jvoRtxGHdHwKWDaBVsF3X9Kp2KWXxu/logo.png b/blockchains/tron/assets/TVq5jvoRtxGHdHwKWDaBVsF3X9Kp2KWXxu/logo.png new file mode 100644 index 0000000000000..e6a2aff6e6a2d Binary files /dev/null and b/blockchains/tron/assets/TVq5jvoRtxGHdHwKWDaBVsF3X9Kp2KWXxu/logo.png differ diff --git a/blockchains/tron/assets/TWGihP2nEr6yccA4BLMLTNqK7qkFPA2psj/info.json b/blockchains/tron/assets/TWGihP2nEr6yccA4BLMLTNqK7qkFPA2psj/info.json new file mode 100644 index 0000000000000..b972ae1c5fb98 --- /dev/null +++ b/blockchains/tron/assets/TWGihP2nEr6yccA4BLMLTNqK7qkFPA2psj/info.json @@ -0,0 +1,20 @@ +{ + "name": "PepsiCo xStock", + "type": "TRC20", + "symbol": "PEPx", + "decimals": 18, + "description": "PepsiCo xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TWGihP2nEr6yccA4BLMLTNqK7qkFPA2psj", + "status": "active", + "id": "TWGihP2nEr6yccA4BLMLTNqK7qkFPA2psj", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pepsico-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TWGihP2nEr6yccA4BLMLTNqK7qkFPA2psj/logo.png b/blockchains/tron/assets/TWGihP2nEr6yccA4BLMLTNqK7qkFPA2psj/logo.png new file mode 100644 index 0000000000000..9cb31687ff5c9 Binary files /dev/null and b/blockchains/tron/assets/TWGihP2nEr6yccA4BLMLTNqK7qkFPA2psj/logo.png differ diff --git a/blockchains/tron/assets/TWRFMkm82W5xptH1PUJFd2j6L5jJ8VSY7s/info.json b/blockchains/tron/assets/TWRFMkm82W5xptH1PUJFd2j6L5jJ8VSY7s/info.json new file mode 100644 index 0000000000000..cf37f4f37697f --- /dev/null +++ b/blockchains/tron/assets/TWRFMkm82W5xptH1PUJFd2j6L5jJ8VSY7s/info.json @@ -0,0 +1,15 @@ +{ + "name": "Core MSCI Emerging Markets xStock", + "type": "TRC20", + "symbol": "IEMGx", + "decimals": 18, + "description": "Core MSCI Emerging Markets xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TWRFMkm82W5xptH1PUJFd2j6L5jJ8VSY7s", + "status": "active", + "id": "TWRFMkm82W5xptH1PUJFd2j6L5jJ8VSY7s", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TWRFMkm82W5xptH1PUJFd2j6L5jJ8VSY7s/logo.png b/blockchains/tron/assets/TWRFMkm82W5xptH1PUJFd2j6L5jJ8VSY7s/logo.png new file mode 100644 index 0000000000000..857fe69020c3c Binary files /dev/null and b/blockchains/tron/assets/TWRFMkm82W5xptH1PUJFd2j6L5jJ8VSY7s/logo.png differ diff --git a/blockchains/tron/assets/TWUs7FajJdRK26U1A5KZJbo8wP7jHiRFwk/info.json b/blockchains/tron/assets/TWUs7FajJdRK26U1A5KZJbo8wP7jHiRFwk/info.json index f092f508a4b08..a57037555f7d8 100644 --- a/blockchains/tron/assets/TWUs7FajJdRK26U1A5KZJbo8wP7jHiRFwk/info.json +++ b/blockchains/tron/assets/TWUs7FajJdRK26U1A5KZJbo8wP7jHiRFwk/info.json @@ -10,8 +10,8 @@ "id": "TWUs7FajJdRK26U1A5KZJbo8wP7jHiRFwk", "links": [ { - "name": "twitter", - "url": "https://twitter.com/zoecashoficial" + "name": "x", + "url": "https://x.com/zoecashoficial" }, { "name": "telegram", diff --git a/blockchains/tron/assets/TWWTQF417iXzAeBfZDfNMfnzH74iKvVFtF/info.json b/blockchains/tron/assets/TWWTQF417iXzAeBfZDfNMfnzH74iKvVFtF/info.json new file mode 100644 index 0000000000000..260a8655caf3a --- /dev/null +++ b/blockchains/tron/assets/TWWTQF417iXzAeBfZDfNMfnzH74iKvVFtF/info.json @@ -0,0 +1,20 @@ +{ + "name": "Oracle xStock", + "type": "TRC20", + "symbol": "ORCLx", + "decimals": 18, + "description": "Oracle xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TWWTQF417iXzAeBfZDfNMfnzH74iKvVFtF", + "status": "active", + "id": "TWWTQF417iXzAeBfZDfNMfnzH74iKvVFtF", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/oracle-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TWWTQF417iXzAeBfZDfNMfnzH74iKvVFtF/logo.png b/blockchains/tron/assets/TWWTQF417iXzAeBfZDfNMfnzH74iKvVFtF/logo.png new file mode 100644 index 0000000000000..78ee2944b3c3e Binary files /dev/null and b/blockchains/tron/assets/TWWTQF417iXzAeBfZDfNMfnzH74iKvVFtF/logo.png differ diff --git a/blockchains/tron/assets/TWf5Nkz16Fz67iW3KYcE5xAjGBjMr3sNZz/info.json b/blockchains/tron/assets/TWf5Nkz16Fz67iW3KYcE5xAjGBjMr3sNZz/info.json new file mode 100644 index 0000000000000..fb0f7ac9e901e --- /dev/null +++ b/blockchains/tron/assets/TWf5Nkz16Fz67iW3KYcE5xAjGBjMr3sNZz/info.json @@ -0,0 +1,20 @@ +{ + "name": "Linde xStock", + "type": "TRC20", + "symbol": "LINx", + "decimals": 18, + "description": "Linde xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TWf5Nkz16Fz67iW3KYcE5xAjGBjMr3sNZz", + "status": "active", + "id": "TWf5Nkz16Fz67iW3KYcE5xAjGBjMr3sNZz", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/linde-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TWf5Nkz16Fz67iW3KYcE5xAjGBjMr3sNZz/logo.png b/blockchains/tron/assets/TWf5Nkz16Fz67iW3KYcE5xAjGBjMr3sNZz/logo.png new file mode 100644 index 0000000000000..d89712cd06f90 Binary files /dev/null and b/blockchains/tron/assets/TWf5Nkz16Fz67iW3KYcE5xAjGBjMr3sNZz/logo.png differ diff --git a/blockchains/tron/assets/TWg25kRwooVkxKPaPkdx7MApLxNbz6VrBd/info.json b/blockchains/tron/assets/TWg25kRwooVkxKPaPkdx7MApLxNbz6VrBd/info.json new file mode 100644 index 0000000000000..8e7658f687191 --- /dev/null +++ b/blockchains/tron/assets/TWg25kRwooVkxKPaPkdx7MApLxNbz6VrBd/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT USDGOLD", + "type": "TRC20", + "symbol": "HONEYPOT USDG", + "decimals": 18, + "description": "This token is malicious do not interact", + "website": "https://tronscan.io/#/token20/TWg25kRwooVkxKPaPkdx7MApLxNbz6VrBd", + "explorer": "https://tronscan.io/#/token20/TWg25kRwooVkxKPaPkdx7MApLxNbz6VrBd", + "status": "spam", + "id": "TWg25kRwooVkxKPaPkdx7MApLxNbz6VrBd" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TWjMEL7JqucJYHhzzcRCA6rwa3Ty6UbdT5/info.json b/blockchains/tron/assets/TWjMEL7JqucJYHhzzcRCA6rwa3Ty6UbdT5/info.json new file mode 100644 index 0000000000000..4db53b07d5746 --- /dev/null +++ b/blockchains/tron/assets/TWjMEL7JqucJYHhzzcRCA6rwa3Ty6UbdT5/info.json @@ -0,0 +1,20 @@ +{ + "name": "Mastercard xStock", + "type": "TRC20", + "symbol": "MAx", + "decimals": 18, + "description": "Mastercard xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TWjMEL7JqucJYHhzzcRCA6rwa3Ty6UbdT5", + "status": "active", + "id": "TWjMEL7JqucJYHhzzcRCA6rwa3Ty6UbdT5", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mastercard-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TWjMEL7JqucJYHhzzcRCA6rwa3Ty6UbdT5/logo.png b/blockchains/tron/assets/TWjMEL7JqucJYHhzzcRCA6rwa3Ty6UbdT5/logo.png new file mode 100644 index 0000000000000..02c91d1fc42cb Binary files /dev/null and b/blockchains/tron/assets/TWjMEL7JqucJYHhzzcRCA6rwa3Ty6UbdT5/logo.png differ diff --git a/blockchains/tron/assets/TWmocwvHpui48QXUVJeW2SvcFe8LyNgLCU/info.json b/blockchains/tron/assets/TWmocwvHpui48QXUVJeW2SvcFe8LyNgLCU/info.json index 9b6e903cc4245..0a5a7502b08ef 100644 --- a/blockchains/tron/assets/TWmocwvHpui48QXUVJeW2SvcFe8LyNgLCU/info.json +++ b/blockchains/tron/assets/TWmocwvHpui48QXUVJeW2SvcFe8LyNgLCU/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/netcoincapital/" }, { - "name": "twitter", - "url": "https://twitter.com/ncctoken" + "name": "x", + "url": "https://x.com/ncctoken" }, { "name": "medium", diff --git a/blockchains/tron/assets/TWr6yzukRwZ53HDe3bzcC8RCTbiKa4Zzb6/info.json b/blockchains/tron/assets/TWr6yzukRwZ53HDe3bzcC8RCTbiKa4Zzb6/info.json new file mode 100644 index 0000000000000..56127b9f0c32c --- /dev/null +++ b/blockchains/tron/assets/TWr6yzukRwZ53HDe3bzcC8RCTbiKa4Zzb6/info.json @@ -0,0 +1,40 @@ +{ + "name": "Flux", + "type": "TRC20", + "symbol": "FLUX", + "decimals": 8, + "website": "https://runonflux.io/", + "description": "Flux is the cryptocurrency powering the Flux Ecosystem, including a massive decentralized computational network. Flux gives users both institutional and private control over their cloud infrastructure in a decentralized manner.", + "explorer": "https://tronscan.org/#/token20/TWr6yzukRwZ53HDe3bzcC8RCTbiKa4Zzb6", + "status": "active", + "id": "TWr6yzukRwZ53HDe3bzcC8RCTbiKa4Zzb6", + "links": [ + { + "name": "x", + "url": "https://x.com/RunOnFlux" + }, + { + "name": "github", + "url": "https://github.com/runonflux" + }, + { + "name": "facebook", + "url": "https://facebook.com/ruonflux" + }, + { + "name": "telegram", + "url": "https://t.me/runonflux" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zel/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/zelcash/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TWr6yzukRwZ53HDe3bzcC8RCTbiKa4Zzb6/logo.png b/blockchains/tron/assets/TWr6yzukRwZ53HDe3bzcC8RCTbiKa4Zzb6/logo.png new file mode 100644 index 0000000000000..9d7b0435acaac Binary files /dev/null and b/blockchains/tron/assets/TWr6yzukRwZ53HDe3bzcC8RCTbiKa4Zzb6/logo.png differ diff --git a/blockchains/tron/assets/TX1jozqKTHZuHuK9uLdc4ZcbcJF4av6tjD/info.json b/blockchains/tron/assets/TX1jozqKTHZuHuK9uLdc4ZcbcJF4av6tjD/info.json new file mode 100644 index 0000000000000..eda641c742677 --- /dev/null +++ b/blockchains/tron/assets/TX1jozqKTHZuHuK9uLdc4ZcbcJF4av6tjD/info.json @@ -0,0 +1,20 @@ +{ + "name": "Novo Nordisk xStock", + "type": "TRC20", + "symbol": "NVOx", + "decimals": 18, + "description": "Novo Nordisk xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TX1jozqKTHZuHuK9uLdc4ZcbcJF4av6tjD", + "status": "active", + "id": "TX1jozqKTHZuHuK9uLdc4ZcbcJF4av6tjD", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/novo-nordisk-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TX1jozqKTHZuHuK9uLdc4ZcbcJF4av6tjD/logo.png b/blockchains/tron/assets/TX1jozqKTHZuHuK9uLdc4ZcbcJF4av6tjD/logo.png new file mode 100644 index 0000000000000..93fd95bb0fbaf Binary files /dev/null and b/blockchains/tron/assets/TX1jozqKTHZuHuK9uLdc4ZcbcJF4av6tjD/logo.png differ diff --git a/blockchains/tron/assets/TX34MBKqsHzvon1JX4mokJ8CLeh5QmBqNd/info.json b/blockchains/tron/assets/TX34MBKqsHzvon1JX4mokJ8CLeh5QmBqNd/info.json new file mode 100644 index 0000000000000..91d3381663925 --- /dev/null +++ b/blockchains/tron/assets/TX34MBKqsHzvon1JX4mokJ8CLeh5QmBqNd/info.json @@ -0,0 +1,20 @@ +{ + "name": "Alphabet xStock", + "type": "TRC20", + "symbol": "GOOGLx", + "decimals": 18, + "description": "Alphabet xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TX34MBKqsHzvon1JX4mokJ8CLeh5QmBqNd", + "status": "active", + "id": "TX34MBKqsHzvon1JX4mokJ8CLeh5QmBqNd", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/alphabet-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TX34MBKqsHzvon1JX4mokJ8CLeh5QmBqNd/logo.png b/blockchains/tron/assets/TX34MBKqsHzvon1JX4mokJ8CLeh5QmBqNd/logo.png new file mode 100644 index 0000000000000..74e8233d60b12 Binary files /dev/null and b/blockchains/tron/assets/TX34MBKqsHzvon1JX4mokJ8CLeh5QmBqNd/logo.png differ diff --git a/blockchains/tron/assets/TX5eXdf8458bZ77fk8xdvUgiQmC3L93iv7/info.json b/blockchains/tron/assets/TX5eXdf8458bZ77fk8xdvUgiQmC3L93iv7/info.json new file mode 100644 index 0000000000000..af3e2c7f895a6 --- /dev/null +++ b/blockchains/tron/assets/TX5eXdf8458bZ77fk8xdvUgiQmC3L93iv7/info.json @@ -0,0 +1,14 @@ +{ + "name": "PUSS", + "type": "TRC20", + "symbol": "PUSS", + "decimals": 18, + "website": "https://tronscan.org/#/token20/TX5eXdf8458bZ77fk8xdvUgiQmC3L93iv7", + "description": "PUSS", + "explorer": "https://tronscan.io/#/token20/TX5eXdf8458bZ77fk8xdvUgiQmC3L93iv7", + "status": "active", + "id": "TX5eXdf8458bZ77fk8xdvUgiQmC3L93iv7", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TX5eXdf8458bZ77fk8xdvUgiQmC3L93iv7/logo.png b/blockchains/tron/assets/TX5eXdf8458bZ77fk8xdvUgiQmC3L93iv7/logo.png new file mode 100644 index 0000000000000..37271994120ff Binary files /dev/null and b/blockchains/tron/assets/TX5eXdf8458bZ77fk8xdvUgiQmC3L93iv7/logo.png differ diff --git a/blockchains/tron/assets/TXBcx59eDVndV5upFQnTR2xdvqFd5reXET/info.json b/blockchains/tron/assets/TXBcx59eDVndV5upFQnTR2xdvqFd5reXET/info.json index e2da05f282a62..14385046fcf6c 100644 --- a/blockchains/tron/assets/TXBcx59eDVndV5upFQnTR2xdvqFd5reXET/info.json +++ b/blockchains/tron/assets/TXBcx59eDVndV5upFQnTR2xdvqFd5reXET/info.json @@ -10,8 +10,8 @@ "id": "TXBcx59eDVndV5upFQnTR2xdvqFd5reXET", "links": [ { - "name": "twitter", - "url": "https://twitter.com/OfficialBPX" + "name": "x", + "url": "https://x.com/OfficialBPX" }, { "name": "github", diff --git a/blockchains/tron/assets/TXDk8mbtRbXeYuMNS83CfKPaYYT8XWv9Hz/info.json b/blockchains/tron/assets/TXDk8mbtRbXeYuMNS83CfKPaYYT8XWv9Hz/info.json new file mode 100644 index 0000000000000..fb1b2b2be41b8 --- /dev/null +++ b/blockchains/tron/assets/TXDk8mbtRbXeYuMNS83CfKPaYYT8XWv9Hz/info.json @@ -0,0 +1,24 @@ +{ + "name": "Decentralized USD", + "symbol": "USDD", + "type": "TRC20", + "decimals": 18, + "description": "Decentralized USD (USDD) is a fully decentralized stablecoin pegged to the US dollar through crypto reserves.", + "website": "https://usdd.io/", + "explorer": "https://tronscan.org/#/token20/TXDk8mbtRbXeYuMNS83CfKPaYYT8XWv9Hz", + "status": "active", + "id": "TXDk8mbtRbXeYuMNS83CfKPaYYT8XWv9Hz", + "links": [ + { + "name": "x", + "url": "https://x.com/usddio" + }, + { + "name": "whitepaper", + "url": "https://usdd.io/USDD-en.pdf" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TXDk8mbtRbXeYuMNS83CfKPaYYT8XWv9Hz/logo.png b/blockchains/tron/assets/TXDk8mbtRbXeYuMNS83CfKPaYYT8XWv9Hz/logo.png new file mode 100644 index 0000000000000..b17bf63fd3273 Binary files /dev/null and b/blockchains/tron/assets/TXDk8mbtRbXeYuMNS83CfKPaYYT8XWv9Hz/logo.png differ diff --git a/blockchains/tron/assets/TXHYLk7bRiDNF8pbVcsPcDb75w3RSNeJxv/info.json b/blockchains/tron/assets/TXHYLk7bRiDNF8pbVcsPcDb75w3RSNeJxv/info.json new file mode 100644 index 0000000000000..737dc3f403178 --- /dev/null +++ b/blockchains/tron/assets/TXHYLk7bRiDNF8pbVcsPcDb75w3RSNeJxv/info.json @@ -0,0 +1,20 @@ +{ + "name": "Netflix xStock", + "type": "TRC20", + "symbol": "NFLXx", + "decimals": 18, + "description": "Netflix xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TXHYLk7bRiDNF8pbVcsPcDb75w3RSNeJxv", + "status": "active", + "id": "TXHYLk7bRiDNF8pbVcsPcDb75w3RSNeJxv", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/netflix-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TXHYLk7bRiDNF8pbVcsPcDb75w3RSNeJxv/logo.png b/blockchains/tron/assets/TXHYLk7bRiDNF8pbVcsPcDb75w3RSNeJxv/logo.png new file mode 100644 index 0000000000000..903b2efea48b1 Binary files /dev/null and b/blockchains/tron/assets/TXHYLk7bRiDNF8pbVcsPcDb75w3RSNeJxv/logo.png differ diff --git a/blockchains/tron/assets/TXL6rJbvmjD46zeN1JssfgxvSo99qC8MRT/info.json b/blockchains/tron/assets/TXL6rJbvmjD46zeN1JssfgxvSo99qC8MRT/info.json new file mode 100644 index 0000000000000..53c3175e7b01f --- /dev/null +++ b/blockchains/tron/assets/TXL6rJbvmjD46zeN1JssfgxvSo99qC8MRT/info.json @@ -0,0 +1,25 @@ +{ + "name": "Sundog", + "symbol": "SUNDOG", + "type": "TRC20", + "decimals": 18, + "description": "SUN DOG, THE BIGGEST DOG MEME ON TRON, EVERY CHAIN NEEDS ITS DOG, EVERY DOG HAS ITS DAY. EVERYTHING IS JUST FINE, SUN DOG IS VERY SERIOUS DOG, BRINGS MANY SUNSHINES, MANY FUN AND MUCH LOVE TO TRON", + "website": "https://www.sundog.meme/", + "explorer": "https://tronscan.org/#/token20/TXL6rJbvmjD46zeN1JssfgxvSo99qC8MRT", + "status": "active", + "id": "TXL6rJbvmjD46zeN1JssfgxvSo99qC8MRT", + "links": [ + { + "name": "telegram", + "url": "https://t.me/SUNDOG_TRX" + }, + { + "name": "x", + "url": "https://x.com/sundog_trx" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sundog/" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TXL6rJbvmjD46zeN1JssfgxvSo99qC8MRT/logo.png b/blockchains/tron/assets/TXL6rJbvmjD46zeN1JssfgxvSo99qC8MRT/logo.png new file mode 100644 index 0000000000000..7e787f8aa5bd1 Binary files /dev/null and b/blockchains/tron/assets/TXL6rJbvmjD46zeN1JssfgxvSo99qC8MRT/logo.png differ diff --git a/blockchains/tron/assets/TXZo12qvnEVKvU2zbfuQeMXKusWyxonwEG/info.json b/blockchains/tron/assets/TXZo12qvnEVKvU2zbfuQeMXKusWyxonwEG/info.json new file mode 100644 index 0000000000000..c99908e2794b8 --- /dev/null +++ b/blockchains/tron/assets/TXZo12qvnEVKvU2zbfuQeMXKusWyxonwEG/info.json @@ -0,0 +1,36 @@ +{ + "name": "USDKG", + "type": "TRC20", + "symbol": "USDKG", + "decimals": 6, + "website": "https://www.usdkg.com/", + "description": "USDKG is the world's first gold-collateralized stablecoin pegged 1:1 to the US Dollar, fully supported by the Ministry of Finance of the Kyrgyz Republic, and backed by physical gold reserves to ensure stability and transparency in digital transactions.", + "explorer": "https://tronscan.io/#/token20/TXZo12qvnEVKvU2zbfuQeMXKusWyxonwEG", + "status": "active", + "id": "TXZo12qvnEVKvU2zbfuQeMXKusWyxonwEG", + "links": [ + { + "name": "x", + "url": "https://x.com/USDKG_Official" + }, + { + "name": "github", + "url": "https://github.com/USDkg/USDkg" + }, + { + "name": "whitepaper", + "url": "https://cdn.prod.website-files.com/675ee2248e357f63d8256c8d/6895fd6cc933876e216aa9f9_USDKG%20Whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usdkg/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/usdkg" + } + ], + "tags": [ + "stablecoin" + ] +} diff --git a/blockchains/tron/assets/TXZo12qvnEVKvU2zbfuQeMXKusWyxonwEG/logo.png b/blockchains/tron/assets/TXZo12qvnEVKvU2zbfuQeMXKusWyxonwEG/logo.png new file mode 100644 index 0000000000000..ef576b8fed16c Binary files /dev/null and b/blockchains/tron/assets/TXZo12qvnEVKvU2zbfuQeMXKusWyxonwEG/logo.png differ diff --git a/blockchains/tron/assets/TXcvVJHbkRdUDhoM2P9q6jSJAqtmQqrVqP/info.json b/blockchains/tron/assets/TXcvVJHbkRdUDhoM2P9q6jSJAqtmQqrVqP/info.json new file mode 100644 index 0000000000000..5a49bed18344a --- /dev/null +++ b/blockchains/tron/assets/TXcvVJHbkRdUDhoM2P9q6jSJAqtmQqrVqP/info.json @@ -0,0 +1,20 @@ +{ + "name": "Abbott xStock", + "type": "TRC20", + "symbol": "ABTx", + "decimals": 18, + "description": "Abbott xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TXcvVJHbkRdUDhoM2P9q6jSJAqtmQqrVqP", + "status": "active", + "id": "TXcvVJHbkRdUDhoM2P9q6jSJAqtmQqrVqP", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abbott-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TXcvVJHbkRdUDhoM2P9q6jSJAqtmQqrVqP/logo.png b/blockchains/tron/assets/TXcvVJHbkRdUDhoM2P9q6jSJAqtmQqrVqP/logo.png new file mode 100644 index 0000000000000..b376283072c21 Binary files /dev/null and b/blockchains/tron/assets/TXcvVJHbkRdUDhoM2P9q6jSJAqtmQqrVqP/logo.png differ diff --git a/blockchains/tron/assets/TXqapjiBCFBhjuLUEF34ow2NjmQDanbQ6u/info.json b/blockchains/tron/assets/TXqapjiBCFBhjuLUEF34ow2NjmQDanbQ6u/info.json new file mode 100644 index 0000000000000..39836cf149fb8 --- /dev/null +++ b/blockchains/tron/assets/TXqapjiBCFBhjuLUEF34ow2NjmQDanbQ6u/info.json @@ -0,0 +1,15 @@ +{ + "name": "Russell 2000 xStock", + "type": "TRC20", + "symbol": "IWMx", + "decimals": 18, + "description": "Russell 2000 xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TXqapjiBCFBhjuLUEF34ow2NjmQDanbQ6u", + "status": "active", + "id": "TXqapjiBCFBhjuLUEF34ow2NjmQDanbQ6u", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TXqapjiBCFBhjuLUEF34ow2NjmQDanbQ6u/logo.png b/blockchains/tron/assets/TXqapjiBCFBhjuLUEF34ow2NjmQDanbQ6u/logo.png new file mode 100644 index 0000000000000..857fe69020c3c Binary files /dev/null and b/blockchains/tron/assets/TXqapjiBCFBhjuLUEF34ow2NjmQDanbQ6u/logo.png differ diff --git a/blockchains/tron/assets/TY5XRUJFnCUDnpMwuufY4do9cbZgcRR99o/info.json b/blockchains/tron/assets/TY5XRUJFnCUDnpMwuufY4do9cbZgcRR99o/info.json new file mode 100644 index 0000000000000..948369fb7536b --- /dev/null +++ b/blockchains/tron/assets/TY5XRUJFnCUDnpMwuufY4do9cbZgcRR99o/info.json @@ -0,0 +1,15 @@ +{ + "name": "TON xStock", + "type": "TRC20", + "symbol": "TONXx", + "decimals": 18, + "description": "TON xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TY5XRUJFnCUDnpMwuufY4do9cbZgcRR99o", + "status": "active", + "id": "TY5XRUJFnCUDnpMwuufY4do9cbZgcRR99o", + "links": [], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TY5XRUJFnCUDnpMwuufY4do9cbZgcRR99o/logo.png b/blockchains/tron/assets/TY5XRUJFnCUDnpMwuufY4do9cbZgcRR99o/logo.png new file mode 100644 index 0000000000000..0c6d1b728e68f Binary files /dev/null and b/blockchains/tron/assets/TY5XRUJFnCUDnpMwuufY4do9cbZgcRR99o/logo.png differ diff --git a/blockchains/tron/assets/TYiMPNKE31VcfwaYgU8Wn1RzjLDi932LkV/info.json b/blockchains/tron/assets/TYiMPNKE31VcfwaYgU8Wn1RzjLDi932LkV/info.json new file mode 100644 index 0000000000000..28fe16327e68e --- /dev/null +++ b/blockchains/tron/assets/TYiMPNKE31VcfwaYgU8Wn1RzjLDi932LkV/info.json @@ -0,0 +1,20 @@ +{ + "name": "MicroStrategy xStock", + "type": "TRC20", + "symbol": "MSTRx", + "decimals": 18, + "description": "MicroStrategy xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TYiMPNKE31VcfwaYgU8Wn1RzjLDi932LkV", + "status": "active", + "id": "TYiMPNKE31VcfwaYgU8Wn1RzjLDi932LkV", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/microstrategy-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TYiMPNKE31VcfwaYgU8Wn1RzjLDi932LkV/logo.png b/blockchains/tron/assets/TYiMPNKE31VcfwaYgU8Wn1RzjLDi932LkV/logo.png new file mode 100644 index 0000000000000..53c67cfef7929 Binary files /dev/null and b/blockchains/tron/assets/TYiMPNKE31VcfwaYgU8Wn1RzjLDi932LkV/logo.png differ diff --git a/blockchains/tron/assets/TYwzUjaR5fiKkzwPHVYjyP22QgBKdqUwgo/info.json b/blockchains/tron/assets/TYwzUjaR5fiKkzwPHVYjyP22QgBKdqUwgo/info.json new file mode 100644 index 0000000000000..5a78137297d8e --- /dev/null +++ b/blockchains/tron/assets/TYwzUjaR5fiKkzwPHVYjyP22QgBKdqUwgo/info.json @@ -0,0 +1,14 @@ +{ + "name": "Meow Meow", + "type": "TRC20", + "symbol": "MEOW", + "decimals": 18, + "website": "https://tronscan.org/#/token20/TYwzUjaR5fiKkzwPHVYjyP22QgBKdqUwgo", + "description": "Meow Meow Coin is the first original cat on Tron network born from a Justin Sun tweet that said \"Whoever issues Meow Meow Coin will immediately get it listed on Poloniex.\"", + "explorer": "https://tronscan.io/#/token20/TYwzUjaR5fiKkzwPHVYjyP22QgBKdqUwgo", + "status": "active", + "id": "TYwzUjaR5fiKkzwPHVYjyP22QgBKdqUwgo", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TYwzUjaR5fiKkzwPHVYjyP22QgBKdqUwgo/logo.png b/blockchains/tron/assets/TYwzUjaR5fiKkzwPHVYjyP22QgBKdqUwgo/logo.png new file mode 100644 index 0000000000000..9b115d0aa8ba5 Binary files /dev/null and b/blockchains/tron/assets/TYwzUjaR5fiKkzwPHVYjyP22QgBKdqUwgo/logo.png differ diff --git a/blockchains/tron/assets/TZ5jA9F5zGRgi9qk9ATMu6D7wyEpnxQGJh/info.json b/blockchains/tron/assets/TZ5jA9F5zGRgi9qk9ATMu6D7wyEpnxQGJh/info.json index 67200eb080371..807d582b0a577 100644 --- a/blockchains/tron/assets/TZ5jA9F5zGRgi9qk9ATMu6D7wyEpnxQGJh/info.json +++ b/blockchains/tron/assets/TZ5jA9F5zGRgi9qk9ATMu6D7wyEpnxQGJh/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/CyberFM/" }, { - "name": "twitter", - "url": "https://twitter.com/CyberFM" + "name": "x", + "url": "https://x.com/CyberFM" }, { "name": "telegram", diff --git a/blockchains/tron/assets/TZ7gXbhgWVNWVzwK3T1sWuwUvKk2PgerrL/info.json b/blockchains/tron/assets/TZ7gXbhgWVNWVzwK3T1sWuwUvKk2PgerrL/info.json new file mode 100644 index 0000000000000..213bd86497962 --- /dev/null +++ b/blockchains/tron/assets/TZ7gXbhgWVNWVzwK3T1sWuwUvKk2PgerrL/info.json @@ -0,0 +1,20 @@ +{ + "name": "OPEN xStock", + "type": "TRC20", + "symbol": "OPENx", + "decimals": 18, + "description": "OPEN xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TZ7gXbhgWVNWVzwK3T1sWuwUvKk2PgerrL", + "status": "active", + "id": "TZ7gXbhgWVNWVzwK3T1sWuwUvKk2PgerrL", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/open-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TZ7gXbhgWVNWVzwK3T1sWuwUvKk2PgerrL/logo.png b/blockchains/tron/assets/TZ7gXbhgWVNWVzwK3T1sWuwUvKk2PgerrL/logo.png new file mode 100644 index 0000000000000..4ddb0ca11f860 Binary files /dev/null and b/blockchains/tron/assets/TZ7gXbhgWVNWVzwK3T1sWuwUvKk2PgerrL/logo.png differ diff --git a/blockchains/tron/assets/TZ7nsyCuQq1cusCtex6V4qbzWcb3NbibAM/info.json b/blockchains/tron/assets/TZ7nsyCuQq1cusCtex6V4qbzWcb3NbibAM/info.json new file mode 100644 index 0000000000000..0e6533ac50b38 --- /dev/null +++ b/blockchains/tron/assets/TZ7nsyCuQq1cusCtex6V4qbzWcb3NbibAM/info.json @@ -0,0 +1,20 @@ +{ + "name": "Apple xStock", + "type": "TRC20", + "symbol": "AAPLx", + "decimals": 18, + "description": "Apple xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TZ7nsyCuQq1cusCtex6V4qbzWcb3NbibAM", + "status": "active", + "id": "TZ7nsyCuQq1cusCtex6V4qbzWcb3NbibAM", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/apple-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TZ7nsyCuQq1cusCtex6V4qbzWcb3NbibAM/logo.png b/blockchains/tron/assets/TZ7nsyCuQq1cusCtex6V4qbzWcb3NbibAM/logo.png new file mode 100644 index 0000000000000..bf515810b9e31 Binary files /dev/null and b/blockchains/tron/assets/TZ7nsyCuQq1cusCtex6V4qbzWcb3NbibAM/logo.png differ diff --git a/blockchains/tron/assets/TZ8auz2fN4yBzeeLfycpU4VeYgmrCnzE9x/info.json b/blockchains/tron/assets/TZ8auz2fN4yBzeeLfycpU4VeYgmrCnzE9x/info.json new file mode 100644 index 0000000000000..5ad158f5ab091 --- /dev/null +++ b/blockchains/tron/assets/TZ8auz2fN4yBzeeLfycpU4VeYgmrCnzE9x/info.json @@ -0,0 +1,20 @@ +{ + "name": "Comcast xStock", + "type": "TRC20", + "symbol": "CMCSAx", + "decimals": 18, + "description": "Comcast xStock", + "website": "https://assets.backed.fi/products", + "explorer": "https://tronscan.org/#/token20/TZ8auz2fN4yBzeeLfycpU4VeYgmrCnzE9x", + "status": "active", + "id": "TZ8auz2fN4yBzeeLfycpU4VeYgmrCnzE9x", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/comcast-tokenized-stock-xstock/" + } + ], + "tags": [ + "RWA" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TZ8auz2fN4yBzeeLfycpU4VeYgmrCnzE9x/logo.png b/blockchains/tron/assets/TZ8auz2fN4yBzeeLfycpU4VeYgmrCnzE9x/logo.png new file mode 100644 index 0000000000000..24a17931df1cd Binary files /dev/null and b/blockchains/tron/assets/TZ8auz2fN4yBzeeLfycpU4VeYgmrCnzE9x/logo.png differ diff --git a/blockchains/tron/info/info.json b/blockchains/tron/info/info.json index 103005dfbf334..8df76fac38c6a 100644 --- a/blockchains/tron/info/info.json +++ b/blockchains/tron/info/info.json @@ -17,8 +17,8 @@ "url": "https://github.com/tronprotocol" }, { - "name": "twitter", - "url": "https://twitter.com/Tronfoundation" + "name": "x", + "url": "https://x.com/Tronfoundation" }, { "name": "reddit", @@ -29,4 +29,4 @@ "url": "https://developers.tron.network/docs" } ] -} +} \ No newline at end of file diff --git a/blockchains/tron/info/square_logo.png b/blockchains/tron/info/square_logo.png new file mode 100644 index 0000000000000..004f4cfbdcdf9 Binary files /dev/null and b/blockchains/tron/info/square_logo.png differ diff --git a/blockchains/tron/tokenlist.json b/blockchains/tron/tokenlist.json index 39519f369a70a..d6af66cd1de43 100644 --- a/blockchains/tron/tokenlist.json +++ b/blockchains/tron/tokenlist.json @@ -7,7 +7,7 @@ "asset": "c195_tTMz2SWatiAtZVVcH2ebpsbVtYwUPT9EdjH", "type": "TRC20", "address": "TMz2SWatiAtZVVcH2ebpsbVtYwUPT9EdjH", - "name": "BUSD Token", + "name": "BUSD", "symbol": "BUSD", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/tron/assets/TMz2SWatiAtZVVcH2ebpsbVtYwUPT9EdjH/logo.png", diff --git a/blockchains/tron/validators/assets/TFqEaQBVpJmc6y6sbvXgzu9zsXL1pTKw47/logo.png b/blockchains/tron/validators/assets/TFqEaQBVpJmc6y6sbvXgzu9zsXL1pTKw47/logo.png new file mode 100644 index 0000000000000..f5f3ada9451c6 Binary files /dev/null and b/blockchains/tron/validators/assets/TFqEaQBVpJmc6y6sbvXgzu9zsXL1pTKw47/logo.png differ diff --git a/blockchains/tron/validators/list.json b/blockchains/tron/validators/list.json index db24367597624..ba10a31aaa24f 100644 --- a/blockchains/tron/validators/list.json +++ b/blockchains/tron/validators/list.json @@ -1,4 +1,13 @@ [ + { + "id": "TFqEaQBVpJmc6y6sbvXgzu9zsXL1pTKw47", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com", + "payout": { + "commission": 100 + } + }, { "id": "TLyqzVGLV1srkB7dToTAEqgDSfPtXRJZYH", "name": "Binance", diff --git a/blockchains/umee/info/info.json b/blockchains/umee/info/info.json index 49936c48bfa65..b3ddf8237bbb7 100644 --- a/blockchains/umee/info/info.json +++ b/blockchains/umee/info/info.json @@ -21,8 +21,8 @@ "url": "https://docs.umee.cc/umee" }, { - "name": "twitter", - "url": "https://twitter.com/Umee_CrossChain" + "name": "x", + "url": "https://x.com/Umee_CrossChain" } ] } \ No newline at end of file diff --git a/blockchains/umee/info/square_logo.png b/blockchains/umee/info/square_logo.png new file mode 100644 index 0000000000000..793f7b4a3944e Binary files /dev/null and b/blockchains/umee/info/square_logo.png differ diff --git a/blockchains/umee/validators/assets/umeevaloper10nsytn9zmtfnhk37hqfe2h9v599ld3h5zs9fqj/logo.png b/blockchains/umee/validators/assets/umeevaloper10nsytn9zmtfnhk37hqfe2h9v599ld3h5zs9fqj/logo.png new file mode 100644 index 0000000000000..eaf66cb5cbb1f Binary files /dev/null and b/blockchains/umee/validators/assets/umeevaloper10nsytn9zmtfnhk37hqfe2h9v599ld3h5zs9fqj/logo.png differ diff --git a/blockchains/umee/validators/assets/umeevaloper16qflfas8a9qjuskg9706n0926v8hac6acsf8de/logo.png b/blockchains/umee/validators/assets/umeevaloper16qflfas8a9qjuskg9706n0926v8hac6acsf8de/logo.png new file mode 100644 index 0000000000000..84f50066eb01e Binary files /dev/null and b/blockchains/umee/validators/assets/umeevaloper16qflfas8a9qjuskg9706n0926v8hac6acsf8de/logo.png differ diff --git a/blockchains/umee/validators/assets/umeevaloper1cv2qlz78j5d8fs75lxnystu2lsprvt64yrgfap/logo.png b/blockchains/umee/validators/assets/umeevaloper1cv2qlz78j5d8fs75lxnystu2lsprvt64yrgfap/logo.png new file mode 100644 index 0000000000000..e117817071239 Binary files /dev/null and b/blockchains/umee/validators/assets/umeevaloper1cv2qlz78j5d8fs75lxnystu2lsprvt64yrgfap/logo.png differ diff --git a/blockchains/umee/validators/assets/umeevaloper1gxgsq7jpkg0f8vfkk60c4rd30z4cgs6lyqtglf/logo.png b/blockchains/umee/validators/assets/umeevaloper1gxgsq7jpkg0f8vfkk60c4rd30z4cgs6lyqtglf/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/umee/validators/assets/umeevaloper1gxgsq7jpkg0f8vfkk60c4rd30z4cgs6lyqtglf/logo.png differ diff --git a/blockchains/umee/validators/assets/umeevaloper1hn8mjjvgzd07tfhcl8jvux5k72hheg3t2xkhq0/logo.png b/blockchains/umee/validators/assets/umeevaloper1hn8mjjvgzd07tfhcl8jvux5k72hheg3t2xkhq0/logo.png new file mode 100644 index 0000000000000..f8a4c666adc9c Binary files /dev/null and b/blockchains/umee/validators/assets/umeevaloper1hn8mjjvgzd07tfhcl8jvux5k72hheg3t2xkhq0/logo.png differ diff --git a/blockchains/umee/validators/assets/umeevaloper1l4xvfq5uj7624m73nn8j4mgra7xq4cpf08q2xj/logo.png b/blockchains/umee/validators/assets/umeevaloper1l4xvfq5uj7624m73nn8j4mgra7xq4cpf08q2xj/logo.png new file mode 100644 index 0000000000000..6e18b1ce29080 Binary files /dev/null and b/blockchains/umee/validators/assets/umeevaloper1l4xvfq5uj7624m73nn8j4mgra7xq4cpf08q2xj/logo.png differ diff --git a/blockchains/umee/validators/assets/umeevaloper1mkv4myppz2w0d3nr2dh9fv5kcwaaqnzfvnm6qf/logo.png b/blockchains/umee/validators/assets/umeevaloper1mkv4myppz2w0d3nr2dh9fv5kcwaaqnzfvnm6qf/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/umee/validators/assets/umeevaloper1mkv4myppz2w0d3nr2dh9fv5kcwaaqnzfvnm6qf/logo.png differ diff --git a/blockchains/umee/validators/assets/umeevaloper1py60fpud4w468zn7mthfa25xnzuawjum7w90q2/logo.png b/blockchains/umee/validators/assets/umeevaloper1py60fpud4w468zn7mthfa25xnzuawjum7w90q2/logo.png new file mode 100644 index 0000000000000..c2cb86a42efe3 Binary files /dev/null and b/blockchains/umee/validators/assets/umeevaloper1py60fpud4w468zn7mthfa25xnzuawjum7w90q2/logo.png differ diff --git a/blockchains/umee/validators/list.json b/blockchains/umee/validators/list.json new file mode 100644 index 0000000000000..9b14a7bf6f87e --- /dev/null +++ b/blockchains/umee/validators/list.json @@ -0,0 +1,50 @@ +[ + { + "id": "umeevaloper1gxgsq7jpkg0f8vfkk60c4rd30z4cgs6lyqtglf", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "umeevaloper1l4xvfq5uj7624m73nn8j4mgra7xq4cpf08q2xj", + "name": "Nodes.Guru", + "description": "Guru of non-custodial staking. Professional node running, low fees, best uptime and 24/7 customer support.", + "website": "https://stake.nodes.guru/" + }, + { + "id": "umeevaloper16qflfas8a9qjuskg9706n0926v8hac6acsf8de", + "name": "Polychain", + "description": "Polychain is an investment firm committed to exceptional returns for investors through actively managed portfolios of blockchain assets.", + "website": "https://polychain.capital/" + }, + { + "id": "umeevaloper1hn8mjjvgzd07tfhcl8jvux5k72hheg3t2xkhq0", + "name": "Cosmostation", + "description": "Cosmostation validator node. Delegate your tokens and Start Earning Staking Rewards", + "website": "https://cosmostation.io/" + }, + { + "id": "umeevaloper1py60fpud4w468zn7mthfa25xnzuawjum7w90q2", + "name": "AutoStake 🛡️ Slash Protected", + "description": "BareMetal - Decentralised - Reliable infrastructure run by the industry leader - AutoStake - Connect with us at: https://linktr.ee/autostake", + "website": "https://autostake.com" + }, + { + "id": "umeevaloper10nsytn9zmtfnhk37hqfe2h9v599ld3h5zs9fqj", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com/" + }, + { + "id": "umeevaloper1mkv4myppz2w0d3nr2dh9fv5kcwaaqnzfvnm6qf", + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" + }, + { + "id": "bandvaloper1hdw8pzr79y4at0teak0mwcrjhv3e6n3wegfv2m", + "name": "w3coins", + "description": "w3coins is a Professional Validator and web3 Venture Capital. Stake Your Cryptocurrency with us to Maximize Your Earnings.", + "website": "https://www.w3coins.io" + } +] diff --git a/blockchains/vechain/info/info.json b/blockchains/vechain/info/info.json index cdc3ebb365b0a..9f7fb9fa0c036 100644 --- a/blockchains/vechain/info/info.json +++ b/blockchains/vechain/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/vechain" }, { - "name": "twitter", - "url": "https://twitter.com/vechainofficial" + "name": "x", + "url": "https://x.com/vechainofficial" }, { "name": "reddit", diff --git a/blockchains/vechain/info/square_logo.png b/blockchains/vechain/info/square_logo.png new file mode 100644 index 0000000000000..6da25d656a70a Binary files /dev/null and b/blockchains/vechain/info/square_logo.png differ diff --git a/blockchains/verge/info/info.json b/blockchains/verge/info/info.json new file mode 100644 index 0000000000000..adaf08c537cb5 --- /dev/null +++ b/blockchains/verge/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "Verge", + "website": "https://vergecurrency.com", + "description": "Verge is a privacy-focused cryptocurrency and blockchain that seeks to offer a fast, efficient, decentralized payments network that improves upon the original Bitcoin (BTC) blockchain.", + "explorer": "https://verge-blockchain.info", + "symbol": "XVG", + "type": "coin", + "decimals": 6, + "status": "active", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/verge/" + }, + { + "name": "x", + "url": "https://x.com/vergecurrency" + } + ] +} \ No newline at end of file diff --git a/blockchains/verge/info/logo.png b/blockchains/verge/info/logo.png new file mode 100644 index 0000000000000..a04d4f18b4fc9 Binary files /dev/null and b/blockchains/verge/info/logo.png differ diff --git a/blockchains/verge/info/square_logo.png b/blockchains/verge/info/square_logo.png new file mode 100644 index 0000000000000..a235dc6b3788e Binary files /dev/null and b/blockchains/verge/info/square_logo.png differ diff --git a/blockchains/viacoin/info/info.json b/blockchains/viacoin/info/info.json index 8aedd189c3f97..fac319b30d99d 100644 --- a/blockchains/viacoin/info/info.json +++ b/blockchains/viacoin/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/viacoin/viacoin" }, { - "name": "twitter", - "url": "https://twitter.com/viacoin" + "name": "x", + "url": "https://x.com/viacoin" }, { "name": "reddit", diff --git a/blockchains/viacoin/info/square_logo.png b/blockchains/viacoin/info/square_logo.png new file mode 100644 index 0000000000000..89cdaede4bc66 Binary files /dev/null and b/blockchains/viacoin/info/square_logo.png differ diff --git a/blockchains/wanchain/info/info.json b/blockchains/wanchain/info/info.json index b1e73ccfa8090..1f7c39f2f7456 100644 --- a/blockchains/wanchain/info/info.json +++ b/blockchains/wanchain/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/wanchain" }, { - "name": "twitter", - "url": "https://twitter.com/wanchain_org" + "name": "x", + "url": "https://x.com/wanchain_org" }, { "name": "reddit", diff --git a/blockchains/wanchain/info/square_logo.png b/blockchains/wanchain/info/square_logo.png new file mode 100644 index 0000000000000..04807e5457059 Binary files /dev/null and b/blockchains/wanchain/info/square_logo.png differ diff --git a/blockchains/waves/info/info.json b/blockchains/waves/info/info.json index 951f58c629988..f0ab728030082 100644 --- a/blockchains/waves/info/info.json +++ b/blockchains/waves/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/wavesplatform" }, { - "name": "twitter", - "url": "https://twitter.com/wavesplatform" + "name": "x", + "url": "https://x.com/wavesplatform" }, { "name": "reddit", diff --git a/blockchains/waves/info/square_logo.png b/blockchains/waves/info/square_logo.png new file mode 100644 index 0000000000000..489e892176a0f Binary files /dev/null and b/blockchains/waves/info/square_logo.png differ diff --git a/blockchains/wemix/info/info.json b/blockchains/wemix/info/info.json new file mode 100644 index 0000000000000..fd1646b922193 --- /dev/null +++ b/blockchains/wemix/info/info.json @@ -0,0 +1,16 @@ +{ + "name": "WEMIX", + "type": "coin", + "symbol": "WEMIX", + "decimals": 18, + "website": "https://wemix.com", + "description": "WEMIX3.0 mainnet is an “experience-based, platform-driven & service-oriented decentralized blockchain protocol” which powers a “mega-ecosystem” of web 3.0 platforms.", + "explorer": "https://wemixscan.com", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/WemixNetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/wemix/info/logo.png b/blockchains/wemix/info/logo.png new file mode 100644 index 0000000000000..482298259d8a0 Binary files /dev/null and b/blockchains/wemix/info/logo.png differ diff --git a/blockchains/wemix/info/square_logo.png b/blockchains/wemix/info/square_logo.png new file mode 100644 index 0000000000000..ec35416ec3f92 Binary files /dev/null and b/blockchains/wemix/info/square_logo.png differ diff --git a/blockchains/xdai/assets/0x0116e28B43A358162B96f70B4De14C98A4465f25/info.json b/blockchains/xdai/assets/0x0116e28B43A358162B96f70B4De14C98A4465f25/info.json index 2dfbf9d63e7d0..904689733a75e 100644 --- a/blockchains/xdai/assets/0x0116e28B43A358162B96f70B4De14C98A4465f25/info.json +++ b/blockchains/xdai/assets/0x0116e28B43A358162B96f70B4De14C98A4465f25/info.json @@ -10,8 +10,8 @@ "id": "0x0116e28B43A358162B96f70B4De14C98A4465f25", "links": [ { - "name": "twitter", - "url": "https://twitter.com/UNCX_token" + "name": "x", + "url": "https://x.com/UNCX_token" }, { "name": "medium", diff --git a/blockchains/xdai/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/info.json b/blockchains/xdai/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/info.json new file mode 100644 index 0000000000000..759607fd95e0a --- /dev/null +++ b/blockchains/xdai/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/info.json @@ -0,0 +1,24 @@ +{ + "name": "Argentine Peso", + "website": "https://www.ripio.com/es/criptos/stablecoins-locales", + "description": "wARS is a fully collateralized stablecoin pegged 1:1 to the Argentine Peso (ARS). Issued and governed by a Ripio subsidiary, it brings ARS on-chain so Argentines and global users can transact, save, and build on decentralized networks in their local currency.", + "explorer": "https://etherscan.io/token/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D", + "type": "ERC20", + "symbol": "wARS", + "decimals": 18, + "status": "active", + "id": "0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/RipioApp" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/argentine-peso" + } + ] +} diff --git a/blockchains/xdai/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/logo.png b/blockchains/xdai/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/logo.png new file mode 100644 index 0000000000000..be1b6bf25885f Binary files /dev/null and b/blockchains/xdai/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/logo.png differ diff --git a/blockchains/xdai/assets/0x177127622c4A00F3d409B75571e12cB3c8973d3c/info.json b/blockchains/xdai/assets/0x177127622c4A00F3d409B75571e12cB3c8973d3c/info.json new file mode 100644 index 0000000000000..c09def47e8bbc --- /dev/null +++ b/blockchains/xdai/assets/0x177127622c4A00F3d409B75571e12cB3c8973d3c/info.json @@ -0,0 +1,56 @@ +{ + "name": "CoW Protocol", + "type": "XDAI", + "symbol": "COW", + "decimals": 18, + "website": "https://cow.fi", + "description": "COW token allows its holders the right to govern and curate the infrastructure of the CoW Protocol ecosystem through the CowDAO. Additionally, COW token holders receive fee discounts when trading on CowSwap & some other perks.", + "explorer": "https://gnosisscan.io/token/0x177127622c4A00F3d409B75571e12cB3c8973d3c", + "status": "active", + "id": "0x177127622c4A00F3d409B75571e12cB3c8973d3c", + "links": [ + { + "name": "x", + "url": "https://x.com/CoWSwap" + }, + { + "name": "github", + "url": "https://github.com/cowprotocol" + }, + { + "name": "source_code", + "url": "https://github.com/cowprotocol/token" + }, + { + "name": "blog", + "url": "https://blog.cow.fi" + }, + { + "name": "docs", + "url": "https://docs.cow.fi" + }, + { + "name": "discord", + "url": "https://discord.com/invite/cowprotocol" + }, + { + "name": "forum", + "url": "https://forum.cow.fi" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cow-protocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cow-protocol" + }, + { + "name": "youtube", + "url": "https://youtube.com/@CoWSwap" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/xdai/assets/0x177127622c4A00F3d409B75571e12cB3c8973d3c/logo.png b/blockchains/xdai/assets/0x177127622c4A00F3d409B75571e12cB3c8973d3c/logo.png new file mode 100644 index 0000000000000..8df3f5b49a612 Binary files /dev/null and b/blockchains/xdai/assets/0x177127622c4A00F3d409B75571e12cB3c8973d3c/logo.png differ diff --git a/blockchains/xdai/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/info.json b/blockchains/xdai/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/info.json new file mode 100644 index 0000000000000..9536c28c65f90 --- /dev/null +++ b/blockchains/xdai/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/info.json @@ -0,0 +1,24 @@ +{ + "name": "Mexican Peso", + "website": "https://www.ripio.com/es/criptos/stablecoins-locales", + "description": "wMXN is a fully collateralized stablecoin pegged 1:1 to the Mexican Peso (MXN). Issued and governed by a Ripio subsidiary, it brings MXN on-chain so users can transact, save, and build on decentralized networks in their local currency.", + "explorer": "https://etherscan.io/token/0x337E7456B420bD3481e7FA61fA9850343d610d34", + "type": "ERC20", + "symbol": "wMXN", + "decimals": 18, + "status": "active", + "id": "0x337E7456B420bD3481e7FA61fA9850343d610d34", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/RipioApp" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mexican-peso" + } + ] +} diff --git a/blockchains/xdai/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/logo.png b/blockchains/xdai/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/logo.png new file mode 100644 index 0000000000000..854c9b59f6ab8 Binary files /dev/null and b/blockchains/xdai/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/logo.png differ diff --git a/blockchains/xdai/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/info.json b/blockchains/xdai/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/info.json new file mode 100644 index 0000000000000..2d59e81327190 --- /dev/null +++ b/blockchains/xdai/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/info.json @@ -0,0 +1,24 @@ +{ + "name": "Peruvian Sol", + "website": "https://www.ripio.com/es/criptos/stablecoins-locales", + "description": "wPEN is a fully collateralized stablecoin pegged 1:1 to the Peruvian Sol (PEN). Issued and governed by a Ripio subsidiary, it brings PEN on-chain so Peruvians and global users can transact, save, and build on decentralized networks in their local currency.", + "explorer": "https://etherscan.io/token/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE", + "type": "ERC20", + "symbol": "wPEN", + "decimals": 18, + "status": "active", + "id": "0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/RipioApp" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/peruvian-sol" + } + ] +} diff --git a/blockchains/xdai/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/logo.png b/blockchains/xdai/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/logo.png new file mode 100644 index 0000000000000..bb0e72932d120 Binary files /dev/null and b/blockchains/xdai/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/logo.png differ diff --git a/blockchains/xdai/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/info.json b/blockchains/xdai/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/info.json new file mode 100644 index 0000000000000..33f469bc990b7 --- /dev/null +++ b/blockchains/xdai/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/info.json @@ -0,0 +1,24 @@ +{ + "name": "Chilean Peso", + "website": "https://www.ripio.com/es/criptos/stablecoins-locales", + "description": "wCLP is a fully collateralized stablecoin pegged 1:1 to the Chilean Peso (CLP). Issued and governed by a Ripio subsidiary, it brings CLP on-chain so users can transact, save, and build on decentralized networks in their local currency.", + "explorer": "https://etherscan.io/token/0x61D450a098b6a7f69fC4b98CE68198fe59768651", + "type": "ERC20", + "symbol": "wCLP", + "decimals": 18, + "status": "active", + "id": "0x61D450a098b6a7f69fC4b98CE68198fe59768651", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/RipioApp" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/chilean-peso" + } + ] +} diff --git a/blockchains/xdai/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/logo.png b/blockchains/xdai/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/logo.png new file mode 100644 index 0000000000000..08570c22038ef Binary files /dev/null and b/blockchains/xdai/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/logo.png differ diff --git a/blockchains/xdai/assets/0x703120F2f2011a0D03A03a531Ac0e84e81F15989/info.json b/blockchains/xdai/assets/0x703120F2f2011a0D03A03a531Ac0e84e81F15989/info.json index 4c9d04c098789..7cdcd27ad86e6 100644 --- a/blockchains/xdai/assets/0x703120F2f2011a0D03A03a531Ac0e84e81F15989/info.json +++ b/blockchains/xdai/assets/0x703120F2f2011a0D03A03a531Ac0e84e81F15989/info.json @@ -10,8 +10,8 @@ "id": "0x703120F2f2011a0D03A03a531Ac0e84e81F15989", "links": [ { - "name": "twitter", - "url": "https://twitter.com/UNCX_token" + "name": "x", + "url": "https://x.com/UNCX_token" }, { "name": "medium", diff --git a/blockchains/xdai/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/info.json b/blockchains/xdai/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/info.json new file mode 100644 index 0000000000000..6488b9d1b224c --- /dev/null +++ b/blockchains/xdai/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/info.json @@ -0,0 +1,24 @@ +{ + "name": "Colombian Peso", + "website": "https://www.ripio.com/es/criptos/stablecoins-locales", + "description": "wCOP is a fully collateralized stablecoin pegged 1:1 to the Colombian Peso (COP). Issued and governed by a Ripio subsidiary, it brings COP on-chain so Colombians and global users can transact, save, and build on decentralized networks in their local currency.", + "explorer": "https://etherscan.io/token/0x8a1D45e102e886510e891d2Ec656a708991e2D76", + "type": "ERC20", + "symbol": "wCOP", + "decimals": 18, + "status": "active", + "id": "0x8a1D45e102e886510e891d2Ec656a708991e2D76", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/RipioApp" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/colombian-peso" + } + ] +} diff --git a/blockchains/xdai/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/logo.png b/blockchains/xdai/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/logo.png new file mode 100644 index 0000000000000..c7f511bbf443a Binary files /dev/null and b/blockchains/xdai/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/logo.png differ diff --git a/blockchains/xdai/assets/0xD057604A14982FE8D88c5fC25Aac3267eA142a08/info.json b/blockchains/xdai/assets/0xD057604A14982FE8D88c5fC25Aac3267eA142a08/info.json new file mode 100644 index 0000000000000..afe865b181096 --- /dev/null +++ b/blockchains/xdai/assets/0xD057604A14982FE8D88c5fC25Aac3267eA142a08/info.json @@ -0,0 +1,28 @@ +{ + "name": "HOPR Token on xDai", + "type": "XDAI", + "symbol": "HOPR", + "decimals": 18, + "website": "https://hoprnet.org/", + "description": "HOPR brings true privacy to web3 with its fully scalable and incentivized mixnet. With HOPR, any kind of data can be transmitted without having to reveal the metadata. HOPR doesn't have its own blockchain: node runners earn HOPR tokens on Gnosis Chain and Ethereum mainnet.", + "explorer": "https://gnosisscan.io/address/0xD057604A14982FE8D88c5fC25Aac3267eA142a08", + "status": "active", + "id": "0xD057604A14982FE8D88c5fC25Aac3267eA142a08", + "links": [ + { + "name": "x", + "url": "https://x.com/hoprnet" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hopr/" + }, + { + "name": "whitepaper", + "url": "https://docs.hoprnet.org/" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/xdai/assets/0xD057604A14982FE8D88c5fC25Aac3267eA142a08/logo.png b/blockchains/xdai/assets/0xD057604A14982FE8D88c5fC25Aac3267eA142a08/logo.png new file mode 100644 index 0000000000000..a268f7dda6bb6 Binary files /dev/null and b/blockchains/xdai/assets/0xD057604A14982FE8D88c5fC25Aac3267eA142a08/logo.png differ diff --git a/blockchains/xdai/assets/0xD4fdec44DB9D44B8f2b6d529620f9C0C7066A2c1/info.json b/blockchains/xdai/assets/0xD4fdec44DB9D44B8f2b6d529620f9C0C7066A2c1/info.json new file mode 100644 index 0000000000000..7c59b5598c1e1 --- /dev/null +++ b/blockchains/xdai/assets/0xD4fdec44DB9D44B8f2b6d529620f9C0C7066A2c1/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped xHOPR Token", + "type": "XDAI", + "symbol": "wxHOPR", + "decimals": 18, + "website": "https://hoprnet.org/", + "description": "Wrapped xHOPR brings true privacy to web3 with its fully scalable and incentivized mixnet. With Wrapped xHOPR, any kind of data can be transmitted without having to reveal the metadata. HOPR doesn't have its own blockchain: node runners earn HOPR tokens on Gnosis Chain and Ethereum mainnet.", + "explorer": "https://gnosisscan.io/address/0xD4fdec44DB9D44B8f2b6d529620f9C0C7066A2c1", + "status": "active", + "id": "0xD4fdec44DB9D44B8f2b6d529620f9C0C7066A2c1", + "links": [ + { + "name": "x", + "url": "https://x.com/hoprnet" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wrapped-xhopr" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/xdai/assets/0xD4fdec44DB9D44B8f2b6d529620f9C0C7066A2c1/logo.png b/blockchains/xdai/assets/0xD4fdec44DB9D44B8f2b6d529620f9C0C7066A2c1/logo.png new file mode 100644 index 0000000000000..a268f7dda6bb6 Binary files /dev/null and b/blockchains/xdai/assets/0xD4fdec44DB9D44B8f2b6d529620f9C0C7066A2c1/logo.png differ diff --git a/blockchains/xdai/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/info.json b/blockchains/xdai/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/info.json new file mode 100644 index 0000000000000..035b312b6b9f0 --- /dev/null +++ b/blockchains/xdai/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/info.json @@ -0,0 +1,24 @@ +{ + "name": "Brazilian Real", + "website": "https://www.ripio.com/es/criptos/stablecoins-locales", + "description": "wBRL is a fully collateralized stablecoin pegged 1:1 to the Brazilian Real (BRL). Issued and governed by a Ripio subsidiary, it brings BRL on-chain so users can transact, save, and build on decentralized networks in their local currency.", + "explorer": "https://etherscan.io/token/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0", + "type": "ERC20", + "symbol": "wBRL", + "decimals": 18, + "status": "active", + "id": "0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/RipioApp" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/brazilian-real" + } + ] +} diff --git a/blockchains/xdai/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/logo.png b/blockchains/xdai/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/logo.png new file mode 100644 index 0000000000000..6a9e9da279722 Binary files /dev/null and b/blockchains/xdai/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/logo.png differ diff --git a/blockchains/xdai/assets/0xDF613aF6B44a31299E48131e9347F034347E2F00/info.json b/blockchains/xdai/assets/0xDF613aF6B44a31299E48131e9347F034347E2F00/info.json new file mode 100644 index 0000000000000..f8424d9c3cb4c --- /dev/null +++ b/blockchains/xdai/assets/0xDF613aF6B44a31299E48131e9347F034347E2F00/info.json @@ -0,0 +1,50 @@ +{ + "name": "Aave", + "website": "https://aave.com", + "description": "Aave Protocol is a decentralised liquidity protocol where people can lend and borrow digital assets. The AAVE token is the governance token of the protocol, so AAVE holders can vote on proposals for updates. AAVE holders can also stake their AAVE in the protocol Safety Module and earn Safety Incentives for securing the protocol", + "explorer": "https://gnosisscan.io/token/0xDF613aF6B44a31299E48131e9347F034347E2F00", + "research": "https://research.binance.com/en/projects/aave-protocol", + "type": "XDAI", + "symbol": "AAVE", + "decimals": 18, + "status": "active", + "id": "0xDF613aF6B44a31299E48131e9347F034347E2F00", + "tags": [ + "defi", + "governance" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/aave/aave-protocol" + }, + { + "name": "x", + "url": "https://x.com/aave" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Aave_Official" + }, + { + "name": "blog", + "url": "https://medium.com/aave" + }, + { + "name": "facebook", + "url": "https://facebook.com/AaveCom" + }, + { + "name": "whitepaper", + "url": "https://github.com/aave/aave-protocol/blob/master/docs/Aave_Protocol_Whitepaper_v1_0.pdf/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/aave/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/aave/" + } + ] +} \ No newline at end of file diff --git a/blockchains/xdai/assets/0xDF613aF6B44a31299E48131e9347F034347E2F00/logo.png b/blockchains/xdai/assets/0xDF613aF6B44a31299E48131e9347F034347E2F00/logo.png new file mode 100644 index 0000000000000..d53b11427e965 Binary files /dev/null and b/blockchains/xdai/assets/0xDF613aF6B44a31299E48131e9347F034347E2F00/logo.png differ diff --git a/blockchains/xdai/assets/0xDfF7fcF6a86F7Dc86E7facECA502851f82a349A6/info.json b/blockchains/xdai/assets/0xDfF7fcF6a86F7Dc86E7facECA502851f82a349A6/info.json index a4c91edef41de..4e565d158ef60 100644 --- a/blockchains/xdai/assets/0xDfF7fcF6a86F7Dc86E7facECA502851f82a349A6/info.json +++ b/blockchains/xdai/assets/0xDfF7fcF6a86F7Dc86E7facECA502851f82a349A6/info.json @@ -18,8 +18,8 @@ "url": "https://discord.com/invite/hoge" }, { - "name": "twitter", - "url": "https://twitter.com/hogefinance" + "name": "x", + "url": "https://x.com/hogefinance" }, { "name": "telegram", diff --git a/blockchains/xdai/assets/0xc20C9C13E853fc64d054b73fF21d3636B2d97eaB/info.json b/blockchains/xdai/assets/0xc20C9C13E853fc64d054b73fF21d3636B2d97eaB/info.json new file mode 100644 index 0000000000000..c9aac4b1f1449 --- /dev/null +++ b/blockchains/xdai/assets/0xc20C9C13E853fc64d054b73fF21d3636B2d97eaB/info.json @@ -0,0 +1,56 @@ +{ + "name": "CoW Protocol Virtual Token", + "website": "https://cow.fi/", + "description": "CoW Protocol lets you swap assets MEV protected at the best exchange rate by leveraging its batch settlement layer built on top of AMMs and DEX Aggregators.", + "explorer": "https://gnosisscan.io/token/0xc20C9C13E853fc64d054b73fF21d3636B2d97eaB", + "type": "XDAI", + "symbol": "vCOW", + "decimals": 18, + "status": "active", + "id": "0xc20C9C13E853fc64d054b73fF21d3636B2d97eaB", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/CoWSwap" + }, + { + "name": "github", + "url": "https://github.com/cowprotocol" + }, + { + "name": "github", + "url": "https://github.com/cowprotocol/token" + }, + { + "name": "blog", + "url": "https://blog.cow.fi" + }, + { + "name": "docs", + "url": "https://docs.cow.fi" + }, + { + "name": "discord", + "url": "https://discord.com/invite/cowprotocol" + }, + { + "name": "forum", + "url": "https://forum.cow.fi" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cow-protocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cow-protocol" + }, + { + "name": "youtube", + "url": "https://youtube.com/@CoWSwap" + } + ] +} \ No newline at end of file diff --git a/blockchains/xdai/assets/0xc20C9C13E853fc64d054b73fF21d3636B2d97eaB/logo.png b/blockchains/xdai/assets/0xc20C9C13E853fc64d054b73fF21d3636B2d97eaB/logo.png new file mode 100644 index 0000000000000..b9ef84f3b7923 Binary files /dev/null and b/blockchains/xdai/assets/0xc20C9C13E853fc64d054b73fF21d3636B2d97eaB/logo.png differ diff --git a/blockchains/xdai/info/info.json b/blockchains/xdai/info/info.json index 4453c4f1a4b36..897972ec2ac8e 100644 --- a/blockchains/xdai/info/info.json +++ b/blockchains/xdai/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/xdaichain" }, { - "name": "twitter", - "url": "https://twitter.com/xdaichain" + "name": "x", + "url": "https://x.com/xdaichain" }, { "name": "reddit", diff --git a/blockchains/xdai/info/square_logo.png b/blockchains/xdai/info/square_logo.png new file mode 100644 index 0000000000000..72b546a0705ae Binary files /dev/null and b/blockchains/xdai/info/square_logo.png differ diff --git a/blockchains/xdc/info/info.json b/blockchains/xdc/info/info.json index 5bb31900be683..5b10624bffc33 100644 --- a/blockchains/xdc/info/info.json +++ b/blockchains/xdc/info/info.json @@ -13,8 +13,8 @@ "url": "https://github.com/XinFinORG" }, { - "name": "twitter", - "url": "https://twitter.com/XinFin_Official" + "name": "x", + "url": "https://x.com/XinFin_Official" }, { "name": "reddit", diff --git a/blockchains/xdc/info/square_logo.png b/blockchains/xdc/info/square_logo.png new file mode 100644 index 0000000000000..77dbc42505638 Binary files /dev/null and b/blockchains/xdc/info/square_logo.png differ diff --git a/blockchains/xrplevm/info/assets/0x3d7189B6e6Fe13A17880FE2B42de1E6C1E329E23/info.json b/blockchains/xrplevm/info/assets/0x3d7189B6e6Fe13A17880FE2B42de1E6C1E329E23/info.json new file mode 100644 index 0000000000000..712327d4b0289 --- /dev/null +++ b/blockchains/xrplevm/info/assets/0x3d7189B6e6Fe13A17880FE2B42de1E6C1E329E23/info.json @@ -0,0 +1,12 @@ +{ + "name": "Osmosis", + "type": "ERC20", + "symbol": "OSMO", + "decimals": 6, + "website": "https://osmosis.zone", + "description": "OSMO bridged from the Osmosis chain to XRPL-EVM via Skip.Go.", + "explorer": "https://explorer.xrplevm.org/address/0x3d7189B6e6Fe13A17880FE2B42de1E6C1E329E23", + "status": "active", + "id": "0x3d7189B6e6Fe13A17880FE2B42de1E6C1E329E23", + "tags": ["wrapped", "cosmos"] +} \ No newline at end of file diff --git a/blockchains/xrplevm/info/assets/0x3d7189B6e6Fe13A17880FE2B42de1E6C1E329E23/logo.png b/blockchains/xrplevm/info/assets/0x3d7189B6e6Fe13A17880FE2B42de1E6C1E329E23/logo.png new file mode 100644 index 0000000000000..4d4fac3224b35 Binary files /dev/null and b/blockchains/xrplevm/info/assets/0x3d7189B6e6Fe13A17880FE2B42de1E6C1E329E23/logo.png differ diff --git a/blockchains/xrplevm/info/assets/0x50498dC52bCd3dAeB54B7225A7d2FA8D536F313E/info.json b/blockchains/xrplevm/info/assets/0x50498dC52bCd3dAeB54B7225A7d2FA8D536F313E/info.json new file mode 100644 index 0000000000000..1b9419e773477 --- /dev/null +++ b/blockchains/xrplevm/info/assets/0x50498dC52bCd3dAeB54B7225A7d2FA8D536F313E/info.json @@ -0,0 +1,12 @@ +{ + "name": "Wrapped Ether", + "type": "ERC20", + "symbol": "WETH", + "decimals": 18, + "website": "https://weth.io", + "description": "Canonical WETH bridged from Ethereum mainnet to XRPL EVM via Squid Router.", + "explorer": "https://explorer.xrplevm.org/address/0x50498dC52bCd3dAeB54B7225A7d2FA8D536F313E", + "status": "active", + "id": "0x50498dC52bCd3dAeB54B7225A7d2FA8D536F313E", + "tags": ["wrapped", "ethereum"] +} \ No newline at end of file diff --git a/blockchains/xrplevm/info/assets/0x50498dC52bCd3dAeB54B7225A7d2FA8D536F313E/logo.png b/blockchains/xrplevm/info/assets/0x50498dC52bCd3dAeB54B7225A7d2FA8D536F313E/logo.png new file mode 100644 index 0000000000000..e55915664fae0 Binary files /dev/null and b/blockchains/xrplevm/info/assets/0x50498dC52bCd3dAeB54B7225A7d2FA8D536F313E/logo.png differ diff --git a/blockchains/xrplevm/info/assets/0x55A7Fc91A3Bf505b0136d84A21A875ABD1987D0e/info.json b/blockchains/xrplevm/info/assets/0x55A7Fc91A3Bf505b0136d84A21A875ABD1987D0e/info.json new file mode 100644 index 0000000000000..f25156ae1638f --- /dev/null +++ b/blockchains/xrplevm/info/assets/0x55A7Fc91A3Bf505b0136d84A21A875ABD1987D0e/info.json @@ -0,0 +1,12 @@ +{ + "name": "Elys", + "type": "ERC20", + "symbol": "ELYS", + "decimals": 6, + "website": "https://elys.network", + "description": "ELYS bridged from the Elys chain to XRPL EVM via Skip.Go.", + "explorer": "https://explorer.xrplevm.org/address/0x55A7Fc91A3Bf505b0136d84A21A875ABD1987D0e", + "status": "active", + "id": "0x55A7Fc91A3Bf505b0136d84A21A875ABD1987D0e", + "tags": ["wrapped", "cosmos"] +} \ No newline at end of file diff --git a/blockchains/xrplevm/info/assets/0x55A7Fc91A3Bf505b0136d84A21A875ABD1987D0e/logo.png b/blockchains/xrplevm/info/assets/0x55A7Fc91A3Bf505b0136d84A21A875ABD1987D0e/logo.png new file mode 100644 index 0000000000000..6a8c187ea40ff Binary files /dev/null and b/blockchains/xrplevm/info/assets/0x55A7Fc91A3Bf505b0136d84A21A875ABD1987D0e/logo.png differ diff --git a/blockchains/xrplevm/info/assets/0x81F090B51f67e0A6afdC8d9347516dB519712c2f/info.json b/blockchains/xrplevm/info/assets/0x81F090B51f67e0A6afdC8d9347516dB519712c2f/info.json new file mode 100644 index 0000000000000..2335a20eff72d --- /dev/null +++ b/blockchains/xrplevm/info/assets/0x81F090B51f67e0A6afdC8d9347516dB519712c2f/info.json @@ -0,0 +1,12 @@ +{ + "name": "Injective", + "type": "ERC20", + "symbol": "INJ", + "decimals": 18, + "website": "https://injective.com", + "description": "INJ bridged from the Injective chain to XRPL-EVM via Skip.Go.", + "explorer": "https://explorer.xrplevm.org/address/0x81F090B51f67e0A6afdC8d9347516dB519712c2f", + "status": "active", + "id": "0x81F090B51f67e0A6afdC8d9347516dB519712c2f", + "tags": ["wrapped", "cosmos"] +} \ No newline at end of file diff --git a/blockchains/xrplevm/info/assets/0x81F090B51f67e0A6afdC8d9347516dB519712c2f/logo.png b/blockchains/xrplevm/info/assets/0x81F090B51f67e0A6afdC8d9347516dB519712c2f/logo.png new file mode 100644 index 0000000000000..e6630c4f6ce75 Binary files /dev/null and b/blockchains/xrplevm/info/assets/0x81F090B51f67e0A6afdC8d9347516dB519712c2f/logo.png differ diff --git a/blockchains/xrplevm/info/assets/0x9F8CF9c00fac501b3965872f4ed3271f6f4d06fF/info.json b/blockchains/xrplevm/info/assets/0x9F8CF9c00fac501b3965872f4ed3271f6f4d06fF/info.json new file mode 100644 index 0000000000000..7a86d619aba38 --- /dev/null +++ b/blockchains/xrplevm/info/assets/0x9F8CF9c00fac501b3965872f4ed3271f6f4d06fF/info.json @@ -0,0 +1,12 @@ +{ + "name": "Tether USD", + "type": "ERC20", + "symbol": "USDT", + "decimals": 6, + "website": "https://tether.to", + "description": "USDT bridged from Ethereum to XRPL-EVM via Squid Router.", + "explorer": "https://explorer.xrplevm.org/address/0x9F8CF9c00fac501b3965872f4ed3271f6f4d06fF", + "status": "active", + "id": "0x9F8CF9c00fac501b3965872f4ed3271f6f4d06fF", + "tags": ["wrapped", "stablecoin"] +} \ No newline at end of file diff --git a/blockchains/xrplevm/info/assets/0x9F8CF9c00fac501b3965872f4ed3271f6f4d06fF/logo.png b/blockchains/xrplevm/info/assets/0x9F8CF9c00fac501b3965872f4ed3271f6f4d06fF/logo.png new file mode 100644 index 0000000000000..3bf60f3133a72 Binary files /dev/null and b/blockchains/xrplevm/info/assets/0x9F8CF9c00fac501b3965872f4ed3271f6f4d06fF/logo.png differ diff --git a/blockchains/xrplevm/info/assets/0xDDF7e0b30A631076cD80bc12A48C0e95404b4A41/info.json b/blockchains/xrplevm/info/assets/0xDDF7e0b30A631076cD80bc12A48C0e95404b4A41/info.json new file mode 100644 index 0000000000000..8d3ecb5855176 --- /dev/null +++ b/blockchains/xrplevm/info/assets/0xDDF7e0b30A631076cD80bc12A48C0e95404b4A41/info.json @@ -0,0 +1,12 @@ +{ + "name": "USD Coin (Noble)", + "type": "ERC20", + "symbol": "USDC", + "decimals": 6, + "website": "https://www.circle.com/usdc", + "description": "Native Noble-issued USDC bridged to XRPL-EVM via Skip.Go.", + "explorer": "https://explorer.xrplevm.org/address/0xDDF7e0b30A631076cD80bc12A48C0e95404b4A41", + "status": "active", + "id": "0xDDF7e0b30A631076cD80bc12A48C0e95404b4A41", + "tags": ["wrapped", "stablecoin", "cosmos"] +} \ No newline at end of file diff --git a/blockchains/xrplevm/info/assets/0xDDF7e0b30A631076cD80bc12A48C0e95404b4A41/logo.png b/blockchains/xrplevm/info/assets/0xDDF7e0b30A631076cD80bc12A48C0e95404b4A41/logo.png new file mode 100644 index 0000000000000..20468fc5e7995 Binary files /dev/null and b/blockchains/xrplevm/info/assets/0xDDF7e0b30A631076cD80bc12A48C0e95404b4A41/logo.png differ diff --git a/blockchains/xrplevm/info/assets/0xDc556F7209C48fC53a8cDf1339c033743A7e3e75/dai.png b/blockchains/xrplevm/info/assets/0xDc556F7209C48fC53a8cDf1339c033743A7e3e75/dai.png new file mode 100644 index 0000000000000..c8930d4747d70 Binary files /dev/null and b/blockchains/xrplevm/info/assets/0xDc556F7209C48fC53a8cDf1339c033743A7e3e75/dai.png differ diff --git a/blockchains/xrplevm/info/assets/0xDc556F7209C48fC53a8cDf1339c033743A7e3e75/info.json b/blockchains/xrplevm/info/assets/0xDc556F7209C48fC53a8cDf1339c033743A7e3e75/info.json new file mode 100644 index 0000000000000..8ef7a21470aa2 --- /dev/null +++ b/blockchains/xrplevm/info/assets/0xDc556F7209C48fC53a8cDf1339c033743A7e3e75/info.json @@ -0,0 +1,12 @@ +{ + "name": "Dai Stablecoin", + "type": "ERC20", + "symbol": "DAI", + "decimals": 18, + "website": "https://makerdao.com", + "description": "DAI bridged from Ethereum to XRPL-EVM via Squid Router.", + "explorer": "https://explorer.xrplevm.org/address/0xDc556F7209C48fC53a8cDf1339c033743A7e3e75", + "status": "active", + "id": "0xDc556F7209C48fC53a8cDf1339c033743A7e3e75", + "tags": ["wrapped", "stablecoin", "makerdao"] +} diff --git a/blockchains/xrplevm/info/assets/0xE5747226D2005d7f0865780E8517397de66f2a76/info.json b/blockchains/xrplevm/info/assets/0xE5747226D2005d7f0865780E8517397de66f2a76/info.json new file mode 100644 index 0000000000000..71086b12722ef --- /dev/null +++ b/blockchains/xrplevm/info/assets/0xE5747226D2005d7f0865780E8517397de66f2a76/info.json @@ -0,0 +1,12 @@ +{ + "name": "First Digital USD", + "type": "ERC20", + "symbol": "FDUSD", + "decimals": 18, + "website": "https://firstdigital.com", + "description": "FDUSD bridged from Ethereum to XRPL-EVM via Squid Router.", + "explorer": "https://explorer.xrplevm.org/address/0xE5747226D2005d7f0865780E8517397de66f2a76", + "status": "active", + "id": "0xE5747226D2005d7f0865780E8517397de66f2a76", + "tags": ["wrapped", "stablecoin"] +} \ No newline at end of file diff --git a/blockchains/xrplevm/info/assets/0xE5747226D2005d7f0865780E8517397de66f2a76/logo.png b/blockchains/xrplevm/info/assets/0xE5747226D2005d7f0865780E8517397de66f2a76/logo.png new file mode 100644 index 0000000000000..b4d63f01ab8d5 Binary files /dev/null and b/blockchains/xrplevm/info/assets/0xE5747226D2005d7f0865780E8517397de66f2a76/logo.png differ diff --git a/blockchains/xrplevm/info/assets/0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE/info.json b/blockchains/xrplevm/info/assets/0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE/info.json new file mode 100644 index 0000000000000..851804a8b5b39 --- /dev/null +++ b/blockchains/xrplevm/info/assets/0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE/info.json @@ -0,0 +1,12 @@ +{ + "name": "XRP", + "type": "ERC20", + "symbol": "XRP", + "decimals": 18, + "website": "https://xrplevm.org", + "description": "XRP bridged from the XRP Ledger to XRPL EVM via Squid Router, enabling native XRP liquidity inside the EVM ecosystem.", + "explorer": "https://explorer.xrplevm.org/address/0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE", + "status": "active", + "id": "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE", + "tags": ["wrapped"] +} \ No newline at end of file diff --git a/blockchains/xrplevm/info/assets/0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE/logo.png b/blockchains/xrplevm/info/assets/0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE/logo.png new file mode 100644 index 0000000000000..ba2c6c0b90a31 Binary files /dev/null and b/blockchains/xrplevm/info/assets/0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE/logo.png differ diff --git a/blockchains/xrplevm/info/assets/0xF8Eb4Ed0d4CF2bb707c0272F8C6827dEB6e4C0A9/info.json b/blockchains/xrplevm/info/assets/0xF8Eb4Ed0d4CF2bb707c0272F8C6827dEB6e4C0A9/info.json new file mode 100644 index 0000000000000..95af7e80116bd --- /dev/null +++ b/blockchains/xrplevm/info/assets/0xF8Eb4Ed0d4CF2bb707c0272F8C6827dEB6e4C0A9/info.json @@ -0,0 +1,12 @@ +{ + "name": "Wrapped Bitcoin", + "type": "ERC20", + "symbol": "WBTC", + "decimals": 8, + "website": "https://wbtc.network", + "description": "WBTC (ERC-20 Bitcoin) bridged from Ethereum to XRPL EVM via Squid Router.", + "explorer": "https://explorer.xrplevm.org/address/0xF8Eb4Ed0d4CF2bb707c0272F8C6827dEB6e4C0A9", + "status": "active", + "id": "0xF8Eb4Ed0d4CF2bb707c0272F8C6827dEB6e4C0A9", + "tags": ["wrapped", "bitcoin"] +} \ No newline at end of file diff --git a/blockchains/xrplevm/info/assets/0xF8Eb4Ed0d4CF2bb707c0272F8C6827dEB6e4C0A9/logo.png b/blockchains/xrplevm/info/assets/0xF8Eb4Ed0d4CF2bb707c0272F8C6827dEB6e4C0A9/logo.png new file mode 100644 index 0000000000000..971e8e3ee0171 Binary files /dev/null and b/blockchains/xrplevm/info/assets/0xF8Eb4Ed0d4CF2bb707c0272F8C6827dEB6e4C0A9/logo.png differ diff --git a/blockchains/xrplevm/info/assets/0xa16148c6Ac9EDe0D82f0c52899e22a575284f131/info.json b/blockchains/xrplevm/info/assets/0xa16148c6Ac9EDe0D82f0c52899e22a575284f131/info.json new file mode 100644 index 0000000000000..709f572986806 --- /dev/null +++ b/blockchains/xrplevm/info/assets/0xa16148c6Ac9EDe0D82f0c52899e22a575284f131/info.json @@ -0,0 +1,12 @@ +{ + "name": "USD Coin (Ethereum)", + "type": "ERC20", + "symbol": "USDC", + "decimals": 6, + "website": "https://www.circle.com/usdc", + "description": "USDC bridged from Ethereum to XRPL-EVM via Squid Router.", + "explorer": "https://explorer.xrplevm.org/address/0xa16148c6Ac9EDe0D82f0c52899e22a575284f131", + "status": "active", + "id": "0xa16148c6Ac9EDe0D82f0c52899e22a575284f131", + "tags": ["wrapped", "stablecoin"] +} \ No newline at end of file diff --git a/blockchains/xrplevm/info/assets/0xa16148c6Ac9EDe0D82f0c52899e22a575284f131/logo.png b/blockchains/xrplevm/info/assets/0xa16148c6Ac9EDe0D82f0c52899e22a575284f131/logo.png new file mode 100644 index 0000000000000..20468fc5e7995 Binary files /dev/null and b/blockchains/xrplevm/info/assets/0xa16148c6Ac9EDe0D82f0c52899e22a575284f131/logo.png differ diff --git a/blockchains/xrplevm/info/info.json b/blockchains/xrplevm/info/info.json new file mode 100644 index 0000000000000..b58be462fc092 --- /dev/null +++ b/blockchains/xrplevm/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "XRPL EVM Sidechain", + "website": "https://xrplevm.org", + "description": "The XRPL EVM Sidechain is a cosmos-evm blockchain funded by Ripple and built by Peersyst that uses bridged XRP via Axelar from the XRPL as native currency. ", + "explorer": "https://explorer.xrplevm.org", + "symbol": "XRP", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/xrplevm" + }, + { + "name": "x", + "url": "https://x.com/Peersyst" + } + ] +} diff --git a/blockchains/xrplevm/info/logo.png b/blockchains/xrplevm/info/logo.png new file mode 100644 index 0000000000000..909f11f1a7ea3 Binary files /dev/null and b/blockchains/xrplevm/info/logo.png differ diff --git a/blockchains/xrplevm/info/square_logo.png b/blockchains/xrplevm/info/square_logo.png new file mode 100644 index 0000000000000..74db45b4c8df8 Binary files /dev/null and b/blockchains/xrplevm/info/square_logo.png differ diff --git a/blockchains/zcash/info/info.json b/blockchains/zcash/info/info.json index 21e7a6278784d..2cec72d077d6b 100644 --- a/blockchains/zcash/info/info.json +++ b/blockchains/zcash/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/zcash/zcash" }, { - "name": "twitter", - "url": "https://twitter.com/electriccoinco" + "name": "x", + "url": "https://x.com/electriccoinco" }, { "name": "reddit", diff --git a/blockchains/zcash/info/square_logo.png b/blockchains/zcash/info/square_logo.png new file mode 100644 index 0000000000000..2f7b57291a7cf Binary files /dev/null and b/blockchains/zcash/info/square_logo.png differ diff --git a/blockchains/zelcash/info/info.json b/blockchains/zelcash/info/info.json index 5a9045bbd3ed8..202fac83a55a3 100644 --- a/blockchains/zelcash/info/info.json +++ b/blockchains/zelcash/info/info.json @@ -13,8 +13,8 @@ "url": "https://github.com/zelcash/zelcash" }, { - "name": "twitter", - "url": "https://twitter.com/flux" + "name": "x", + "url": "https://x.com/flux" }, { "name": "reddit", diff --git a/blockchains/zelcash/info/square_logo.png b/blockchains/zelcash/info/square_logo.png new file mode 100644 index 0000000000000..48c16b898542d Binary files /dev/null and b/blockchains/zelcash/info/square_logo.png differ diff --git a/blockchains/zen/info/info.json b/blockchains/zen/info/info.json new file mode 100644 index 0000000000000..8f3d2f8342c30 --- /dev/null +++ b/blockchains/zen/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "Horizen", + "website": "https://www.horizen.io", + "description": "Horizen is a zero-knowledge-enabled network of blockchains powered by the largest node infrastructure in the industry.", + "explorer": "https://explorer.horizen.io", + "symbol": "ZEN", + "type": "coin", + "decimals": 8, + "status": "active", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/horizen/" + }, + { + "name": "x", + "url": "https://x.com/horizenglobal" + } + ] +} \ No newline at end of file diff --git a/blockchains/zen/info/logo.png b/blockchains/zen/info/logo.png new file mode 100644 index 0000000000000..a4f16a6809b47 Binary files /dev/null and b/blockchains/zen/info/logo.png differ diff --git a/blockchains/zen/info/square_logo.png b/blockchains/zen/info/square_logo.png new file mode 100644 index 0000000000000..ff1fea52e935b Binary files /dev/null and b/blockchains/zen/info/square_logo.png differ diff --git a/blockchains/zetachain/assets/0x13A0c5930C028511Dc02665E7285134B6d11A5f4/info.json b/blockchains/zetachain/assets/0x13A0c5930C028511Dc02665E7285134B6d11A5f4/info.json new file mode 100644 index 0000000000000..8adcf9bcacfff --- /dev/null +++ b/blockchains/zetachain/assets/0x13A0c5930C028511Dc02665E7285134B6d11A5f4/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bitcoin", + "website": "https://bitcoin.org/en/", + "description": "Bitcoin is a decentralized cryptocurrency originally described in a 2008 whitepaper by a person, or group of people, using the alias Satoshi Nakamoto. It was launched soon after, in January 2009.", + "explorer": "https://zetachain.blockscout.com/token/0x13A0c5930C028511Dc02665E7285134B6d11A5f4", + "type": "ZETACHAIN", + "symbol": "BTC", + "decimals": 8, + "status": "active", + "id": "0x13A0c5930C028511Dc02665E7285134B6d11A5f4", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bitcoin/" + }, + { + "name": "github", + "url": "https://github.com/bitcoin/bitcoin" + } + ] +} diff --git a/blockchains/zetachain/assets/0x13A0c5930C028511Dc02665E7285134B6d11A5f4/logo.png b/blockchains/zetachain/assets/0x13A0c5930C028511Dc02665E7285134B6d11A5f4/logo.png new file mode 100644 index 0000000000000..cb34ccd854b2b Binary files /dev/null and b/blockchains/zetachain/assets/0x13A0c5930C028511Dc02665E7285134B6d11A5f4/logo.png differ diff --git a/blockchains/zetachain/info/info.json b/blockchains/zetachain/info/info.json new file mode 100644 index 0000000000000..16a3ecb7f2ef2 --- /dev/null +++ b/blockchains/zetachain/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Native ZetaChain", + "website": "https://www.zetachain.com/", + "description": "ZetaChain is the only public, decentralized blockchain and smart contract platform that enables message passing and value transfer between any blockchain. Our omnichain smart contracts give the power of programmability to non-smart contract chains like Bitcoin and Dogecoin. No other blockchain enables fully interoperable smart contracts like we do.", + "explorer": "https://explorer.zetachain.com/cosmos/tx", + "research": "", + "symbol": "ZETA", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/zeta-chain" + }, + { + "name": "x", + "url": "https://x.com/zetablockchain" + }, + { + "name": "discord", + "url": "https://discord.com/invite/zetachain" + }, + { + "name": "telegram", + "url": "https://t.me/zetachainofficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/zetachain/info/logo.png b/blockchains/zetachain/info/logo.png new file mode 100644 index 0000000000000..915e0d35c9f81 Binary files /dev/null and b/blockchains/zetachain/info/logo.png differ diff --git a/blockchains/zetachain/info/square_logo.png b/blockchains/zetachain/info/square_logo.png new file mode 100644 index 0000000000000..ae330ec175e73 Binary files /dev/null and b/blockchains/zetachain/info/square_logo.png differ diff --git a/blockchains/zetachain/validators/assets/zetavaloper10rx5qejcjwy7pup23umt434x0q7p89duvwwxam/logo.png b/blockchains/zetachain/validators/assets/zetavaloper10rx5qejcjwy7pup23umt434x0q7p89duvwwxam/logo.png new file mode 100644 index 0000000000000..f5f3ada9451c6 Binary files /dev/null and b/blockchains/zetachain/validators/assets/zetavaloper10rx5qejcjwy7pup23umt434x0q7p89duvwwxam/logo.png differ diff --git a/blockchains/zetachain/validators/assets/zetavaloper1320mmksxqfv97u7qkk98azk4svjne3ktt5kkde/logo.png b/blockchains/zetachain/validators/assets/zetavaloper1320mmksxqfv97u7qkk98azk4svjne3ktt5kkde/logo.png new file mode 100644 index 0000000000000..ce95514d75f47 Binary files /dev/null and b/blockchains/zetachain/validators/assets/zetavaloper1320mmksxqfv97u7qkk98azk4svjne3ktt5kkde/logo.png differ diff --git a/blockchains/zetachain/validators/assets/zetavaloper1hjct6q7npsspsg3dgvzk3sdf89spmlpf6rc87c/logo.png b/blockchains/zetachain/validators/assets/zetavaloper1hjct6q7npsspsg3dgvzk3sdf89spmlpf6rc87c/logo.png new file mode 100644 index 0000000000000..377f168fdc3a1 Binary files /dev/null and b/blockchains/zetachain/validators/assets/zetavaloper1hjct6q7npsspsg3dgvzk3sdf89spmlpf6rc87c/logo.png differ diff --git a/blockchains/zetachain/validators/assets/zetavaloper1nkgty88qc6q9c24h3xgu5jnseegkdrmm69xuvz/logo.png b/blockchains/zetachain/validators/assets/zetavaloper1nkgty88qc6q9c24h3xgu5jnseegkdrmm69xuvz/logo.png new file mode 100644 index 0000000000000..8b0aedecca4f4 Binary files /dev/null and b/blockchains/zetachain/validators/assets/zetavaloper1nkgty88qc6q9c24h3xgu5jnseegkdrmm69xuvz/logo.png differ diff --git a/blockchains/zetachain/validators/assets/zetavaloper1t5pgk2fucx3drkynzew9zln5z9r7s3wqyyunv0/logo.png b/blockchains/zetachain/validators/assets/zetavaloper1t5pgk2fucx3drkynzew9zln5z9r7s3wqyyunv0/logo.png new file mode 100644 index 0000000000000..e6da574642445 Binary files /dev/null and b/blockchains/zetachain/validators/assets/zetavaloper1t5pgk2fucx3drkynzew9zln5z9r7s3wqyyunv0/logo.png differ diff --git a/blockchains/zetachain/validators/assets/zetavaloper1txfmxp4d9dc9wqa2f7wvqed9635zajn0hrmz8z/logo.png b/blockchains/zetachain/validators/assets/zetavaloper1txfmxp4d9dc9wqa2f7wvqed9635zajn0hrmz8z/logo.png new file mode 100644 index 0000000000000..a8401d2cba5b9 Binary files /dev/null and b/blockchains/zetachain/validators/assets/zetavaloper1txfmxp4d9dc9wqa2f7wvqed9635zajn0hrmz8z/logo.png differ diff --git a/blockchains/zetachain/validators/assets/zetavaloper1umtmqrgmc0z7lctqavxu0ljgxryrfeyz3v6qzf/logo.png b/blockchains/zetachain/validators/assets/zetavaloper1umtmqrgmc0z7lctqavxu0ljgxryrfeyz3v6qzf/logo.png new file mode 100644 index 0000000000000..ebabff78859bf Binary files /dev/null and b/blockchains/zetachain/validators/assets/zetavaloper1umtmqrgmc0z7lctqavxu0ljgxryrfeyz3v6qzf/logo.png differ diff --git a/blockchains/zetachain/validators/list.json b/blockchains/zetachain/validators/list.json new file mode 100644 index 0000000000000..50e9f132470d3 --- /dev/null +++ b/blockchains/zetachain/validators/list.json @@ -0,0 +1,44 @@ +[ + { + "id": "zetavaloper1hjct6q7npsspsg3dgvzk3sdf89spmlpf6rc87c", + "name": "Figment", + "description": "Staking performance is multifaceted, and Figment’s unique “safety over liveness” approach and slashing track record lead the industry.", + "website": "https://figment.io" + }, + { + "id": "zetavaloper1t5pgk2fucx3drkynzew9zln5z9r7s3wqyyunv0", + "name": "Blockdaemon", + "description": "Blockdaemon is the leading provider to support the growing market for blockchain services.", + "website": "https://www.blockdaemon.com" + }, + { + "id": "zetavaloper1320mmksxqfv97u7qkk98azk4svjne3ktt5kkde", + "name": "Goldsky", + "description": "Web3's Realtime Data Platform", + "website": "https://goldsky.com" + }, + { + "id": "zetavaloper1nkgty88qc6q9c24h3xgu5jnseegkdrmm69xuvz", + "name": "Stakin", + "description": "Reliable and Secure Staking Services Trusted by Institutions. ISO27001 certified, Cosmos ecosystem contributor, IBC relayer provider. Visit our website to know more about Stakin and for T&Cs.", + "website": "https://stakin.com" + }, + { + "id": "zetavaloper1umtmqrgmc0z7lctqavxu0ljgxryrfeyz3v6qzf", + "name": "polkachu.com", + "description": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash.", + "website": "https://polkachu.com" + }, + { + "id": "zetavaloper1txfmxp4d9dc9wqa2f7wvqed9635zajn0hrmz8z", + "name": "DSRV", + "description": "DSRV is an integrated blockchain solutions company with the mission of enriching the crypto ecosystem via stronger connectivity. We strive to be your gateway to a suite of all-comprehensive blockchain services. Everything distributed, served complete.", + "website": "https://dsrvlabs.com" + }, + { + "id": "zetavaloper10rx5qejcjwy7pup23umt434x0q7p89duvwwxam", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com" + } +] diff --git a/blockchains/zetaevm/info/info.json b/blockchains/zetaevm/info/info.json new file mode 100644 index 0000000000000..0b7ef822f455b --- /dev/null +++ b/blockchains/zetaevm/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "ZetaChain", + "website": "https://www.zetachain.com/", + "description": "ZetaChain is the only public, decentralized blockchain and smart contract platform that enables message passing and value transfer between any blockchain. Our omnichain smart contracts give the power of programmability to non-smart contract chains like Bitcoin and Dogecoin. No other blockchain enables fully interoperable smart contracts like we do.", + "explorer": "https://explorer.zetachain.com/evm/tx", + "research": "", + "symbol": "ZETA", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/zeta-chain" + }, + { + "name": "x", + "url": "https://x.com/zetablockchain" + }, + { + "name": "discord", + "url": "https://discord.com/invite/zetachain" + }, + { + "name": "telegram", + "url": "https://t.me/zetachainofficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/zetaevm/info/logo.png b/blockchains/zetaevm/info/logo.png new file mode 100644 index 0000000000000..915e0d35c9f81 Binary files /dev/null and b/blockchains/zetaevm/info/logo.png differ diff --git a/blockchains/zetaevm/info/square_logo.png b/blockchains/zetaevm/info/square_logo.png new file mode 100644 index 0000000000000..ae330ec175e73 Binary files /dev/null and b/blockchains/zetaevm/info/square_logo.png differ diff --git a/blockchains/zilliqa/info/info.json b/blockchains/zilliqa/info/info.json index b3037d95a5860..8fd52c6826c86 100644 --- a/blockchains/zilliqa/info/info.json +++ b/blockchains/zilliqa/info/info.json @@ -14,8 +14,8 @@ "url": "https://github.com/Zilliqa/Zilliqa" }, { - "name": "twitter", - "url": "https://twitter.com/zilliqa" + "name": "x", + "url": "https://x.com/zilliqa" }, { "name": "reddit", diff --git a/blockchains/zilliqa/info/square_logo.png b/blockchains/zilliqa/info/square_logo.png new file mode 100644 index 0000000000000..fbb9600fe4758 Binary files /dev/null and b/blockchains/zilliqa/info/square_logo.png differ diff --git a/blockchains/zklink/assets/0x000000000000000000000000000000000000800A/info.json b/blockchains/zklink/assets/0x000000000000000000000000000000000000800A/info.json new file mode 100644 index 0000000000000..f1bcaf8e58f75 --- /dev/null +++ b/blockchains/zklink/assets/0x000000000000000000000000000000000000800A/info.json @@ -0,0 +1,29 @@ +{ + "name": "Ether", + "symbol": "ETH", + "type": "ZKLINK", + "decimals": 18, + "description": "Ethereum is a global, open-source platform for decentralized applications. Eth is fueling transactions on the Chain.", + "website": "https://ethereum.org/en/", + "explorer": "https://explorer.zklink.io/address/0x000000000000000000000000000000000000800A", + "status": "active", + "id": "0x000000000000000000000000000000000000800A", + "links": [ + { + "name": "github", + "url": "https://github.com/ethereum/ethereum-org-website" + }, + { + "name": "x", + "url": "https://x.com/ethdotorg" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCNOfzGXD_C9YMYmnefmPH0g" + }, + { + "name": "discord", + "url": "https://discord.com/invite/CetY6Y4" + } + ] +} \ No newline at end of file diff --git a/blockchains/zklink/assets/0x000000000000000000000000000000000000800A/logo.png b/blockchains/zklink/assets/0x000000000000000000000000000000000000800A/logo.png new file mode 100644 index 0000000000000..37ac7a822f374 Binary files /dev/null and b/blockchains/zklink/assets/0x000000000000000000000000000000000000800A/logo.png differ diff --git a/blockchains/zklink/assets/0x1a1A3b2ff016332e866787B311fcB63928464509/info.json b/blockchains/zklink/assets/0x1a1A3b2ff016332e866787B311fcB63928464509/info.json new file mode 100644 index 0000000000000..6ed4f9f5a24bd --- /dev/null +++ b/blockchains/zklink/assets/0x1a1A3b2ff016332e866787B311fcB63928464509/info.json @@ -0,0 +1,36 @@ +{ + "name": "USDC", + "website": "https://centre.io/usdc", + "description": "USDC is a fully collateralized US dollar stablecoin, an Ethereum powered coin and is the brainchild of CENTRE, an open source project bootstrapped by contributions from Circle and Coinbase.", + "explorer": "https://explorer.zklink.io/address/0x1a1A3b2ff016332e866787B311fcB63928464509", + "type": "ZKLINK", + "symbol": "USDC", + "decimals": 18, + "status": "active", + "id": "0x1a1A3b2ff016332e866787B311fcB63928464509", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/zklink/assets/0x1a1A3b2ff016332e866787B311fcB63928464509/logo.png b/blockchains/zklink/assets/0x1a1A3b2ff016332e866787B311fcB63928464509/logo.png new file mode 100644 index 0000000000000..289efad3e1653 Binary files /dev/null and b/blockchains/zklink/assets/0x1a1A3b2ff016332e866787B311fcB63928464509/logo.png differ diff --git a/blockchains/zklink/assets/0x2F8A25ac62179B31D62D7F80884AE57464699059/info.json b/blockchains/zklink/assets/0x2F8A25ac62179B31D62D7F80884AE57464699059/info.json new file mode 100644 index 0000000000000..0c80a4c0397f3 --- /dev/null +++ b/blockchains/zklink/assets/0x2F8A25ac62179B31D62D7F80884AE57464699059/info.json @@ -0,0 +1,28 @@ +{ + "name": "Nova Tether USD", + "website": "https://tether.to", + "description": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar.", + "explorer": "https://explorer.zklink.io/address/0x2F8A25ac62179B31D62D7F80884AE57464699059", + "type": "ZKLINK", + "symbol": "USDT", + "decimals": 18, + "status": "active", + "id": "0x2F8A25ac62179B31D62D7F80884AE57464699059", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/tether.to/" + }, + { + "name": "x", + "url": "https://x.com/Tether_to/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/tether/" + } + ] +} \ No newline at end of file diff --git a/blockchains/zklink/assets/0x2F8A25ac62179B31D62D7F80884AE57464699059/logo.png b/blockchains/zklink/assets/0x2F8A25ac62179B31D62D7F80884AE57464699059/logo.png new file mode 100644 index 0000000000000..61da107e032db Binary files /dev/null and b/blockchains/zklink/assets/0x2F8A25ac62179B31D62D7F80884AE57464699059/logo.png differ diff --git a/blockchains/zklink/assets/0xDa4AaEd3A53962c83B35697Cd138cc6df43aF71f/info.json b/blockchains/zklink/assets/0xDa4AaEd3A53962c83B35697Cd138cc6df43aF71f/info.json new file mode 100644 index 0000000000000..6f986c04bee8d --- /dev/null +++ b/blockchains/zklink/assets/0xDa4AaEd3A53962c83B35697Cd138cc6df43aF71f/info.json @@ -0,0 +1,29 @@ +{ + "name": "Nova Wrapped BTC", + "website": "https://wbtc.network", + "description": "Wrapped Bitcoin (WBTC) is the first ERC20 token backed 1:1 with Bitcoin.", + "explorer": "https://explorer.zklink.io/address/0xDa4AaEd3A53962c83B35697Cd138cc6df43aF71f", + "type": "ZKLINK", + "symbol": "WBTC", + "decimals": 18, + "status": "active", + "id": "0xDa4AaEd3A53962c83B35697Cd138cc6df43aF71f", + "tags": [ + "defi", + "wrapped" + ], + "links": [ + { + "name": "whitepaper", + "url": "https://wbtc.network/assets/wrapped-tokens-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-bitcoin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wrapped-bitcoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/zklink/assets/0xDa4AaEd3A53962c83B35697Cd138cc6df43aF71f/logo.png b/blockchains/zklink/assets/0xDa4AaEd3A53962c83B35697Cd138cc6df43aF71f/logo.png new file mode 100644 index 0000000000000..702d64a2e040a Binary files /dev/null and b/blockchains/zklink/assets/0xDa4AaEd3A53962c83B35697Cd138cc6df43aF71f/logo.png differ diff --git a/blockchains/zklink/assets/0xF573fA04A73d5AC442F3DEa8741317fEaA3cDeab/info.json b/blockchains/zklink/assets/0xF573fA04A73d5AC442F3DEa8741317fEaA3cDeab/info.json new file mode 100644 index 0000000000000..eb2bc1ebc5196 --- /dev/null +++ b/blockchains/zklink/assets/0xF573fA04A73d5AC442F3DEa8741317fEaA3cDeab/info.json @@ -0,0 +1,42 @@ +{ + "name": "Nova Dai Stablecoin", + "website": "http://makerdao.com", + "description": "Dai is a stable cryptocurrency supported by Maker (MKR). To ensure price stability, Dai minimizes the price volatility against the US dollar, through an incentive structure for its participants.", + "explorer": "https://explorer.zklink.io/address/0xF573fA04A73d5AC442F3DEa8741317fEaA3cDeab", + "research": "https://research.binance.com/en/projects/dai", + "type": "ZKLINK", + "symbol": "DAI", + "decimals": 18, + "status": "active", + "id": "0xF573fA04A73d5AC442F3DEa8741317fEaA3cDeab", + "tags": [ + "defi", + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/MakerDAO" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MakerDAO/" + }, + { + "name": "blog", + "url": "https://blog.makerdao.com/" + }, + { + "name": "whitepaper", + "url": "https://makerdao.com/whitepaper/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/multi-collateral-dai/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/zklink/assets/0xF573fA04A73d5AC442F3DEa8741317fEaA3cDeab/logo.png b/blockchains/zklink/assets/0xF573fA04A73d5AC442F3DEa8741317fEaA3cDeab/logo.png new file mode 100644 index 0000000000000..0d949e02c9ea9 Binary files /dev/null and b/blockchains/zklink/assets/0xF573fA04A73d5AC442F3DEa8741317fEaA3cDeab/logo.png differ diff --git a/blockchains/zklink/info/info.json b/blockchains/zklink/info/info.json new file mode 100644 index 0000000000000..9bb1e5b5cfe96 --- /dev/null +++ b/blockchains/zklink/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "zkLink", + "website": "https://zklink.io/", + "description": "zkLink develops zero-knowledge blockchain solutions for the Ethereum ecosystem.", + "explorer": "https://explorer.zklink.io/", + "type": "coin", + "symbol": "ZKL", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/zkLink_Official" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zklink/" + } + ] +} \ No newline at end of file diff --git a/blockchains/zklink/info/logo.png b/blockchains/zklink/info/logo.png new file mode 100644 index 0000000000000..d2e466d91dbfa Binary files /dev/null and b/blockchains/zklink/info/logo.png differ diff --git a/blockchains/zklink/info/square_logo.png b/blockchains/zklink/info/square_logo.png new file mode 100644 index 0000000000000..edbe356c20942 Binary files /dev/null and b/blockchains/zklink/info/square_logo.png differ diff --git a/blockchains/zksync/assets/0x0000000000000000000000000000000000000000/info.json b/blockchains/zksync/assets/0x0000000000000000000000000000000000000000/info.json index 0e8ec298d6c16..d7b7c1bae9b20 100644 --- a/blockchains/zksync/assets/0x0000000000000000000000000000000000000000/info.json +++ b/blockchains/zksync/assets/0x0000000000000000000000000000000000000000/info.json @@ -10,8 +10,8 @@ "id": "0x0000000000000000000000000000000000000000", "links": [ { - "name": "twitter", - "url": "https://twitter.com/ethdotorg" + "name": "x", + "url": "https://x.com/ethdotorg" }, { "name": "github", diff --git a/blockchains/zksync/assets/0x144B83555D8A3119b0a69a7BC2F0a0388308FeE3/info.json b/blockchains/zksync/assets/0x144B83555D8A3119b0a69a7BC2F0a0388308FeE3/info.json new file mode 100644 index 0000000000000..e49c62cc75997 --- /dev/null +++ b/blockchains/zksync/assets/0x144B83555D8A3119b0a69a7BC2F0a0388308FeE3/info.json @@ -0,0 +1,21 @@ +{ + "name": "AutoAir", + "website": "https://autoair.xyz/", + "description": "AutoAir AI is an innovation Telegram bot revolutionizing the way users engage with airdrops in the cryptocurrency space.", + "explorer": "https://explorer.zksync.io/address/0x144B83555D8A3119b0a69a7BC2F0a0388308FeE3", + "type": "ZKSYNC", + "symbol": "AAI", + "decimals": 18, + "status": "active", + "id": "0x144B83555D8A3119b0a69a7BC2F0a0388308FeE3", + "links": [ + { + "name": "x", + "url": "https://x.com/AutoAirAi_xyz" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/autoair-ai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/zksync/assets/0x144B83555D8A3119b0a69a7BC2F0a0388308FeE3/logo.png b/blockchains/zksync/assets/0x144B83555D8A3119b0a69a7BC2F0a0388308FeE3/logo.png new file mode 100644 index 0000000000000..4ef2255743952 Binary files /dev/null and b/blockchains/zksync/assets/0x144B83555D8A3119b0a69a7BC2F0a0388308FeE3/logo.png differ diff --git a/blockchains/zksync/assets/0x1d17CBcF0D6D143135aE902365D2E5e2A16538D4/info.json b/blockchains/zksync/assets/0x1d17CBcF0D6D143135aE902365D2E5e2A16538D4/info.json new file mode 100644 index 0000000000000..53fc51c106f94 --- /dev/null +++ b/blockchains/zksync/assets/0x1d17CBcF0D6D143135aE902365D2E5e2A16538D4/info.json @@ -0,0 +1,32 @@ +{ + "name": "USDC", + "type": "ZKSYNC", + "symbol": "USDC", + "decimals": 6, + "website": "https://www.centre.io/", + "description": "USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.", + "explorer": "https://explorer.zksync.io/address/0x1d17CBcF0D6D143135aE902365D2E5e2A16538D4", + "status": "active", + "id": "0x1d17CBcF0D6D143135aE902365D2E5e2A16538D4", + "links": [ + { + "name": "x", + "url": "https://x.com/centre_io" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + }, + { + "name": "discord", + "url": "https://discord.com/CetY6Y4" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/zksync/assets/0x1d17CBcF0D6D143135aE902365D2E5e2A16538D4/logo.png b/blockchains/zksync/assets/0x1d17CBcF0D6D143135aE902365D2E5e2A16538D4/logo.png new file mode 100644 index 0000000000000..e163b59d2da6e Binary files /dev/null and b/blockchains/zksync/assets/0x1d17CBcF0D6D143135aE902365D2E5e2A16538D4/logo.png differ diff --git a/blockchains/zksync/assets/0x2141d7fe06A1d69c016fC638bA75b6Ef92Fa1435/info.json b/blockchains/zksync/assets/0x2141d7fe06A1d69c016fC638bA75b6Ef92Fa1435/info.json new file mode 100644 index 0000000000000..785fae0676a73 --- /dev/null +++ b/blockchains/zksync/assets/0x2141d7fe06A1d69c016fC638bA75b6Ef92Fa1435/info.json @@ -0,0 +1,21 @@ +{ + "name": "zkSync id", + "website": "https://zksyncid.xyz", + "description": "Our goal at zkSync id is to create a decentralized digital identity and access system that leverages the advantages of zk-rollup technology.", + "explorer": "https://explorer.zksync.io/address/0x2141d7fe06A1d69c016fC638bA75b6Ef92Fa1435", + "type": "ZKSYNC", + "symbol": "ZKID", + "decimals": 18, + "status": "active", + "id": "0x2141d7fe06A1d69c016fC638bA75b6Ef92Fa1435", + "links": [ + { + "name": "x", + "url": "https://x.com/getzksyncid" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zksync-id/" + } + ] +} \ No newline at end of file diff --git a/blockchains/zksync/assets/0x2141d7fe06A1d69c016fC638bA75b6Ef92Fa1435/logo.png b/blockchains/zksync/assets/0x2141d7fe06A1d69c016fC638bA75b6Ef92Fa1435/logo.png new file mode 100644 index 0000000000000..57c50b4ec0ee8 Binary files /dev/null and b/blockchains/zksync/assets/0x2141d7fe06A1d69c016fC638bA75b6Ef92Fa1435/logo.png differ diff --git a/blockchains/zksync/assets/0x31C2c031fDc9d33e974f327Ab0d9883Eae06cA4A/info.json b/blockchains/zksync/assets/0x31C2c031fDc9d33e974f327Ab0d9883Eae06cA4A/info.json new file mode 100644 index 0000000000000..cdab1c11168cd --- /dev/null +++ b/blockchains/zksync/assets/0x31C2c031fDc9d33e974f327Ab0d9883Eae06cA4A/info.json @@ -0,0 +1,28 @@ +{ + "name": "zkSwap Finance", + "type": "ZKSYNC", + "symbol": "ZF", + "decimals": 18, + "website": "https://zkswap.finance", + "description": "zkSwap Finance is the first Swap to Earn DeFi Platform on zkSync Era ecosystem", + "explorer": "https://explorer.zksync.io/address/0x31C2c031fDc9d33e974f327Ab0d9883Eae06cA4A", + "status": "active", + "id": "0x31C2c031fDc9d33e974f327Ab0d9883Eae06cA4A", + "links": [ + { + "name": "x", + "url": "https://x.com/zkSwap_finance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/zkswap-finance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zkswap-finance/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/zksync/assets/0x31C2c031fDc9d33e974f327Ab0d9883Eae06cA4A/logo.png b/blockchains/zksync/assets/0x31C2c031fDc9d33e974f327Ab0d9883Eae06cA4A/logo.png new file mode 100644 index 0000000000000..7542efae17a0b Binary files /dev/null and b/blockchains/zksync/assets/0x31C2c031fDc9d33e974f327Ab0d9883Eae06cA4A/logo.png differ diff --git a/blockchains/zksync/assets/0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4/info.json b/blockchains/zksync/assets/0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4/info.json index 2da02401beaee..b7b76b7e364d5 100644 --- a/blockchains/zksync/assets/0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4/info.json +++ b/blockchains/zksync/assets/0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4/info.json @@ -1,5 +1,5 @@ { - "name": "USD Coin", + "name": "USD Coin Bridged", "type": "ZKSYNC", "symbol": "USDC", "decimals": 6, @@ -10,8 +10,8 @@ "id": "0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4", "links": [ { - "name": "twitter", - "url": "https://twitter.com/centre_io" + "name": "x", + "url": "https://x.com/centre_io" }, { "name": "coingecko", diff --git a/blockchains/zksync/assets/0x9929bCAC4417A21d7e6FC86F6Dae1Cc7f27A2e41/info.json b/blockchains/zksync/assets/0x9929bCAC4417A21d7e6FC86F6Dae1Cc7f27A2e41/info.json new file mode 100644 index 0000000000000..a2dc640a5ee4c --- /dev/null +++ b/blockchains/zksync/assets/0x9929bCAC4417A21d7e6FC86F6Dae1Cc7f27A2e41/info.json @@ -0,0 +1,32 @@ +{ + "name": "DEXTF Token", + "website": "https://domani.finance", + "description": "The DEXTF token is an ERC20 token built on the Ethereum blockchain designed to be used as a governance and incentive mechanism for usage, upgrades and potential changes to the protocol.", + "explorer": "https://explorer.zksync.io/address/0x9929bCAC4417A21d7e6FC86F6Dae1Cc7f27A2e41", + "type": "ZKSYNC", + "symbol": "DEXTF", + "decimals": 18, + "status": "active", + "id": "0x9929bCAC4417A21d7e6FC86F6Dae1Cc7f27A2e41", + "links": [ + { + "name": "x", + "url": "https://x.com/domaniprotocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dextf-protocol/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dextf" + }, + { + "name": "discord", + "url": "https://discord.com/invite/bxgyXMZ2U5" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/zksync/assets/0x9929bCAC4417A21d7e6FC86F6Dae1Cc7f27A2e41/logo.png b/blockchains/zksync/assets/0x9929bCAC4417A21d7e6FC86F6Dae1Cc7f27A2e41/logo.png new file mode 100644 index 0000000000000..bc59e0c401b45 Binary files /dev/null and b/blockchains/zksync/assets/0x9929bCAC4417A21d7e6FC86F6Dae1Cc7f27A2e41/logo.png differ diff --git a/blockchains/zksync/assets/0xCDb7D260c107499C80B4b748e8331c64595972a1/info.json b/blockchains/zksync/assets/0xCDb7D260c107499C80B4b748e8331c64595972a1/info.json new file mode 100644 index 0000000000000..51bfc6c0106e3 --- /dev/null +++ b/blockchains/zksync/assets/0xCDb7D260c107499C80B4b748e8331c64595972a1/info.json @@ -0,0 +1,21 @@ +{ + "name": "Karat", + "website": "https://karatdao.com/", + "description": "The largest protocol on ZKSync. Karat has over 300,000 wallets actively transacting.", + "explorer": "https://explorer.zksync.io/address/0xCDb7D260c107499C80B4b748e8331c64595972a1", + "type": "ZKSYNC", + "symbol": "KAT", + "decimals": 18, + "status": "active", + "id": "0xCDb7D260c107499C80B4b748e8331c64595972a1", + "links": [ + { + "name": "x", + "url": "https://x.com/KaratDAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/karat/" + } + ] +} \ No newline at end of file diff --git a/blockchains/zksync/assets/0xCDb7D260c107499C80B4b748e8331c64595972a1/logo.png b/blockchains/zksync/assets/0xCDb7D260c107499C80B4b748e8331c64595972a1/logo.png new file mode 100644 index 0000000000000..d8f5809ecc3f7 Binary files /dev/null and b/blockchains/zksync/assets/0xCDb7D260c107499C80B4b748e8331c64595972a1/logo.png differ diff --git a/blockchains/zksync/assets/0xdd9f72afED3631a6C85b5369D84875e6c42f1827/info.json b/blockchains/zksync/assets/0xdd9f72afED3631a6C85b5369D84875e6c42f1827/info.json index 14f839edb03d6..b0ceb84a3d86d 100644 --- a/blockchains/zksync/assets/0xdd9f72afED3631a6C85b5369D84875e6c42f1827/info.json +++ b/blockchains/zksync/assets/0xdd9f72afED3631a6C85b5369D84875e6c42f1827/info.json @@ -10,8 +10,8 @@ "id": "0xdd9f72afED3631a6C85b5369D84875e6c42f1827", "links": [ { - "name": "twitter", - "url": "https://twitter.com/symbiosis_fi" + "name": "x", + "url": "https://x.com/symbiosis_fi" }, { "name": "github", diff --git a/blockchains/zksync/assets/0xed4040fD47629e7c8FBB7DA76bb50B3e7695F0f2/info.json b/blockchains/zksync/assets/0xed4040fD47629e7c8FBB7DA76bb50B3e7695F0f2/info.json new file mode 100644 index 0000000000000..a2337aa477074 --- /dev/null +++ b/blockchains/zksync/assets/0xed4040fD47629e7c8FBB7DA76bb50B3e7695F0f2/info.json @@ -0,0 +1,21 @@ +{ + "name": "Holdstation", + "website": "https://holdstation.com/", + "description": "Holdstation is an innovative Smart Contract Wallet for Futures Trading built on the zkSync Era.", + "explorer": "https://explorer.zksync.io/address/0xed4040fD47629e7c8FBB7DA76bb50B3e7695F0f2", + "type": "ZKSYNC", + "symbol": "HOLD", + "decimals": 18, + "status": "active", + "id": "0xed4040fD47629e7c8FBB7DA76bb50B3e7695F0f2", + "links": [ + { + "name": "x", + "url": "https://x.com/HoldstationW" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/holdstation/" + } + ] +} \ No newline at end of file diff --git a/blockchains/zksync/assets/0xed4040fD47629e7c8FBB7DA76bb50B3e7695F0f2/logo.png b/blockchains/zksync/assets/0xed4040fD47629e7c8FBB7DA76bb50B3e7695F0f2/logo.png new file mode 100644 index 0000000000000..367b9b966263e Binary files /dev/null and b/blockchains/zksync/assets/0xed4040fD47629e7c8FBB7DA76bb50B3e7695F0f2/logo.png differ diff --git a/blockchains/zksync/info/info.json b/blockchains/zksync/info/info.json index 29c16b15fab3e..573ade7f92c69 100644 --- a/blockchains/zksync/info/info.json +++ b/blockchains/zksync/info/info.json @@ -10,10 +10,13 @@ "coin_type": 324, "decimals": 18, "status": "active", + "tags": [ + "dapp" + ], "links": [ { - "name": "twitter", - "url": "https://twitter.com/zksync" + "name": "x", + "url": "https://x.com/zksync" } ] -} +} \ No newline at end of file diff --git a/blockchains/zksync/info/square_logo.png b/blockchains/zksync/info/square_logo.png new file mode 100644 index 0000000000000..93eef7bc9cf0e Binary files /dev/null and b/blockchains/zksync/info/square_logo.png differ diff --git a/blockchains/zksync/tokenlist.json b/blockchains/zksync/tokenlist.json new file mode 100644 index 0000000000000..649f2aa91c71a --- /dev/null +++ b/blockchains/zksync/tokenlist.json @@ -0,0 +1,53 @@ +{ + "name": "Trust Wallet: zkSync List", + "logoURI": "https://trustwallet.com/assets/images/favicon.png", + "timestamp": "2024-03-18T14:33:26.183301", + "tokens": [ + { + "asset": "c324_t0x0000000000000000000000000000000000000000", + "type": "ZKSYNC", + "address": "0x0000000000000000000000000000000000000000", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/zksync/assets/0x0000000000000000000000000000000000000000/logo.png", + "pairs": [] + }, + { + "asset": "c324_t0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4", + "type": "ZKSYNC", + "address": "0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4", + "name": "USD Coin Bridged", + "symbol": "USDC", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/zksync/assets/0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4/logo.png", + "pairs": [] + }, + { + "asset": "c324_t0x31C2c031fDc9d33e974f327Ab0d9883Eae06cA4A", + "type": "ZKSYNC", + "address": "0x31C2c031fDc9d33e974f327Ab0d9883Eae06cA4A", + "name": "zkSwap Finance", + "symbol": "ZF", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/zksync/assets/0x31C2c031fDc9d33e974f327Ab0d9883Eae06cA4A/logo.png", + "pairs": [] + }, + { + "asset": "c324_t0xdd9f72afED3631a6C85b5369D84875e6c42f1827", + "type": "ZKSYNC", + "address": "0xdd9f72afED3631a6C85b5369D84875e6c42f1827", + "name": "Symbiosis", + "symbol": "SIS", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/zksync/assets/0xdd9f72afED3631a6C85b5369D84875e6c42f1827/logo.png", + "pairs": [] + } + + ], + "version": { + "major": 1, + "minor": 0, + "patch": 0 + } +} diff --git a/dapps/0x.org.png b/dapps/0x.org.png index e19d45de6f54b..b6c468fe2a387 100644 Binary files a/dapps/0x.org.png and b/dapps/0x.org.png differ diff --git a/dapps/aave.com.png b/dapps/aave.com.png index f67ad3f315b75..8808ef8400c75 100644 Binary files a/dapps/aave.com.png and b/dapps/aave.com.png differ diff --git a/dapps/across.to.png b/dapps/across.to.png new file mode 100644 index 0000000000000..d9474ac78fb4e Binary files /dev/null and b/dapps/across.to.png differ diff --git a/dapps/aerodrome.finance.png b/dapps/aerodrome.finance.png new file mode 100644 index 0000000000000..9a48cd719ad15 Binary files /dev/null and b/dapps/aerodrome.finance.png differ diff --git a/dapps/aftermath.finance.png b/dapps/aftermath.finance.png new file mode 100644 index 0000000000000..d0d62f62c6d3f Binary files /dev/null and b/dapps/aftermath.finance.png differ diff --git a/dapps/alienworlds.io.png b/dapps/alienworlds.io.png new file mode 100644 index 0000000000000..7ba2bbedb1846 Binary files /dev/null and b/dapps/alienworlds.io.png differ diff --git a/dapps/allbridge.io.png b/dapps/allbridge.io.png new file mode 100644 index 0000000000000..036662d105bc3 Binary files /dev/null and b/dapps/allbridge.io.png differ diff --git a/dapps/angelbattles.com.png b/dapps/angelbattles.com.png old mode 100755 new mode 100644 diff --git a/dapps/angle.money.png b/dapps/angle.money.png new file mode 100644 index 0000000000000..4e27673d334ef Binary files /dev/null and b/dapps/angle.money.png differ diff --git a/dapps/app.aave.com.png b/dapps/app.aave.com.png index 7b1753a784e0c..323f5d1d459d0 100644 Binary files a/dapps/app.aave.com.png and b/dapps/app.aave.com.png differ diff --git a/dapps/app.clashofcoins.png b/dapps/app.clashofcoins.png new file mode 100644 index 0000000000000..273570934fc6a Binary files /dev/null and b/dapps/app.clashofcoins.png differ diff --git a/dapps/app.compound.finance.png b/dapps/app.compound.finance.png deleted file mode 100644 index 79ac17b15aa8c..0000000000000 Binary files a/dapps/app.compound.finance.png and /dev/null differ diff --git a/dapps/app.cryptoder.by.png b/dapps/app.cryptoder.by.png old mode 100755 new mode 100644 diff --git a/dapps/app.cryptoxmas.xyz.png b/dapps/app.cryptoxmas.xyz.png old mode 100755 new mode 100644 diff --git a/dapps/app.cyberconnect.png b/dapps/app.cyberconnect.png new file mode 100644 index 0000000000000..134961e55f095 Binary files /dev/null and b/dapps/app.cyberconnect.png differ diff --git a/dapps/app.dmail.png b/dapps/app.dmail.png new file mode 100644 index 0000000000000..30a53afb0fde2 Binary files /dev/null and b/dapps/app.dmail.png differ diff --git a/dapps/app.frax.finance.png b/dapps/app.frax.finance.png new file mode 100644 index 0000000000000..5cfb012992d57 Binary files /dev/null and b/dapps/app.frax.finance.png differ diff --git a/dapps/app.galxe.com.png b/dapps/app.galxe.com.png new file mode 100644 index 0000000000000..7ac3ca0c8c095 Binary files /dev/null and b/dapps/app.galxe.com.png differ diff --git a/dapps/app.harvest.finance.png b/dapps/app.harvest.finance.png new file mode 100644 index 0000000000000..e27b6568c1986 Binary files /dev/null and b/dapps/app.harvest.finance.png differ diff --git a/dapps/app.jetton.png b/dapps/app.jetton.png new file mode 100644 index 0000000000000..725370aab4847 Binary files /dev/null and b/dapps/app.jetton.png differ diff --git a/dapps/app.kinza.finance:.png b/dapps/app.kinza.finance:.png new file mode 100644 index 0000000000000..b0edfdef7e25d Binary files /dev/null and b/dapps/app.kinza.finance:.png differ diff --git a/dapps/app.layer3.xyz.png b/dapps/app.layer3.xyz.png new file mode 100644 index 0000000000000..010ca21c9ac45 Binary files /dev/null and b/dapps/app.layer3.xyz.png differ diff --git a/dapps/app.machines.cash.png b/dapps/app.machines.cash.png new file mode 100644 index 0000000000000..aa99ef663a6b9 Binary files /dev/null and b/dapps/app.machines.cash.png differ diff --git a/dapps/app.marginfi.com.png b/dapps/app.marginfi.com.png new file mode 100644 index 0000000000000..3515a56043314 Binary files /dev/null and b/dapps/app.marginfi.com.png differ diff --git a/dapps/app.mocaid.png b/dapps/app.mocaid.png new file mode 100644 index 0000000000000..7d4b1899604e2 Binary files /dev/null and b/dapps/app.mocaid.png differ diff --git a/dapps/app.morpho.org.png b/dapps/app.morpho.org.png new file mode 100644 index 0000000000000..8c452a18e403a Binary files /dev/null and b/dapps/app.morpho.org.png differ diff --git a/dapps/app.neutron.png b/dapps/app.neutron.png new file mode 100644 index 0000000000000..c44d914949916 Binary files /dev/null and b/dapps/app.neutron.png differ diff --git a/dapps/app.polygon.zkevm.png b/dapps/app.polygon.zkevm.png new file mode 100644 index 0000000000000..e4aaa73298ee4 Binary files /dev/null and b/dapps/app.polygon.zkevm.png differ diff --git a/dapps/app.pstake.finance.png b/dapps/app.pstake.finance.png new file mode 100644 index 0000000000000..67a851fb578bc Binary files /dev/null and b/dapps/app.pstake.finance.png differ diff --git a/dapps/app.questn.com.png b/dapps/app.questn.com.png new file mode 100644 index 0000000000000..e46f767111a8d Binary files /dev/null and b/dapps/app.questn.com.png differ diff --git a/dapps/app.satori.finance.png b/dapps/app.satori.finance.png new file mode 100644 index 0000000000000..7a866f1ddb9e3 Binary files /dev/null and b/dapps/app.satori.finance.png differ diff --git a/dapps/app.spaceid.png b/dapps/app.spaceid.png new file mode 100644 index 0000000000000..e33fa7048f31a Binary files /dev/null and b/dapps/app.spaceid.png differ diff --git a/dapps/app.udex.one.png b/dapps/app.udex.one.png new file mode 100644 index 0000000000000..762d335ea65d9 Binary files /dev/null and b/dapps/app.udex.one.png differ diff --git a/dapps/app.whales.market.png b/dapps/app.whales.market.png new file mode 100644 index 0000000000000..8c69544c49e4e Binary files /dev/null and b/dapps/app.whales.market.png differ diff --git a/dapps/app.zksync.era.png b/dapps/app.zksync.era.png new file mode 100644 index 0000000000000..805866006c40e Binary files /dev/null and b/dapps/app.zksync.era.png differ diff --git a/dapps/aura.finance.png b/dapps/aura.finance.png new file mode 100644 index 0000000000000..10eef80ba8df3 Binary files /dev/null and b/dapps/aura.finance.png differ diff --git a/dapps/ave.ai.png b/dapps/ave.ai.png new file mode 100644 index 0000000000000..cde9730973d61 Binary files /dev/null and b/dapps/ave.ai.png differ diff --git a/dapps/axelar.network.png b/dapps/axelar.network.png new file mode 100644 index 0000000000000..7c2b2efe45889 Binary files /dev/null and b/dapps/axelar.network.png differ diff --git a/dapps/axieinfinity.com.png b/dapps/axieinfinity.com.png old mode 100755 new mode 100644 diff --git a/dapps/bananagun.io.png b/dapps/bananagun.io.png new file mode 100644 index 0000000000000..a2f68d9878246 Binary files /dev/null and b/dapps/bananagun.io.png differ diff --git a/dapps/betoken.fund.png b/dapps/betoken.fund.png old mode 100755 new mode 100644 diff --git a/dapps/blockchaincuties.co.png b/dapps/blockchaincuties.co.png old mode 100755 new mode 100644 diff --git a/dapps/blur.io.png b/dapps/blur.io.png new file mode 100644 index 0000000000000..11f030983ebe4 Binary files /dev/null and b/dapps/blur.io.png differ diff --git a/dapps/bnbchain.org.png b/dapps/bnbchain.org.png new file mode 100644 index 0000000000000..7baa6e2bf6330 Binary files /dev/null and b/dapps/bnbchain.org.png differ diff --git a/dapps/brain-warp.win4.fun.png b/dapps/brain-warp.win4.fun.png old mode 100755 new mode 100644 diff --git a/dapps/camelot.exchange.png b/dapps/camelot.exchange.png new file mode 100644 index 0000000000000..f4ceec645fb2c Binary files /dev/null and b/dapps/camelot.exchange.png differ diff --git a/dapps/cbridge.celer.network.png b/dapps/cbridge.celer.network.png new file mode 100644 index 0000000000000..d2ce312757249 Binary files /dev/null and b/dapps/cbridge.celer.network.png differ diff --git a/dapps/cdpsaver.com.png b/dapps/cdpsaver.com.png old mode 100755 new mode 100644 diff --git a/dapps/cgm.discover.png b/dapps/cgm.discover.png new file mode 100644 index 0000000000000..45287b4e360bc Binary files /dev/null and b/dapps/cgm.discover.png differ diff --git a/dapps/chat.b.ai.png b/dapps/chat.b.ai.png new file mode 100644 index 0000000000000..aee2d0d787a8c Binary files /dev/null and b/dapps/chat.b.ai.png differ diff --git a/dapps/chibifighters.io.png b/dapps/chibifighters.io.png old mode 100755 new mode 100644 diff --git a/dapps/color-craze.win4.fun.png b/dapps/color-craze.win4.fun.png old mode 100755 new mode 100644 diff --git a/dapps/compound.finance.png b/dapps/compound.finance.png index 32f5b5721921d..5d812a577cd4e 100644 Binary files a/dapps/compound.finance.png and b/dapps/compound.finance.png differ diff --git a/dapps/cow.fi.png b/dapps/cow.fi.png new file mode 100644 index 0000000000000..1fb5d60422d3c Binary files /dev/null and b/dapps/cow.fi.png differ diff --git a/dapps/cryptoder.by.png b/dapps/cryptoder.by.png old mode 100755 new mode 100644 diff --git a/dapps/cryptogs.io.png b/dapps/cryptogs.io.png old mode 100755 new mode 100644 diff --git a/dapps/cryptomines.pro.png b/dapps/cryptomines.pro.png old mode 100755 new mode 100644 diff --git a/dapps/cryptosketches.com.png b/dapps/cryptosketches.com.png old mode 100755 new mode 100644 diff --git a/dapps/cryptostrikers.com.png b/dapps/cryptostrikers.com.png old mode 100755 new mode 100644 diff --git a/dapps/curve.fi.png b/dapps/curve.fi.png index fd11e0855f5b9..919ebfbb3aad1 100644 Binary files a/dapps/curve.fi.png and b/dapps/curve.fi.png differ diff --git a/dapps/dapp.dragonereum.io.png b/dapps/dapp.dragonereum.io.png old mode 100755 new mode 100644 diff --git a/dapps/dappbay.bnbchain.org.png b/dapps/dappbay.bnbchain.org.png new file mode 100644 index 0000000000000..ea5afb826d534 Binary files /dev/null and b/dapps/dappbay.bnbchain.org.png differ diff --git a/dapps/debridge.finance.png b/dapps/debridge.finance.png new file mode 100644 index 0000000000000..962185dd17b7c Binary files /dev/null and b/dapps/debridge.finance.png differ diff --git a/dapps/dflow.net.png b/dapps/dflow.net.png new file mode 100644 index 0000000000000..0640991585b13 Binary files /dev/null and b/dapps/dflow.net.png differ diff --git a/dapps/discover_12days_1.png b/dapps/discover_12days_1.png new file mode 100644 index 0000000000000..a6489943ed241 Binary files /dev/null and b/dapps/discover_12days_1.png differ diff --git a/dapps/discover_12days_4ever.png b/dapps/discover_12days_4ever.png new file mode 100644 index 0000000000000..664eb957661eb Binary files /dev/null and b/dapps/discover_12days_4ever.png differ diff --git a/dapps/discover_12days_bump.png b/dapps/discover_12days_bump.png new file mode 100644 index 0000000000000..71dfcbfaf291a Binary files /dev/null and b/dapps/discover_12days_bump.png differ diff --git a/dapps/discover_12days_freename.png b/dapps/discover_12days_freename.png new file mode 100644 index 0000000000000..25897beb26935 Binary files /dev/null and b/dapps/discover_12days_freename.png differ diff --git a/dapps/discover_12days_heat.png b/dapps/discover_12days_heat.png new file mode 100644 index 0000000000000..ae5d52e91b21a Binary files /dev/null and b/dapps/discover_12days_heat.png differ diff --git a/dapps/discover_12days_lime.png b/dapps/discover_12days_lime.png new file mode 100644 index 0000000000000..1521192966352 Binary files /dev/null and b/dapps/discover_12days_lime.png differ diff --git a/dapps/discover_12days_quack.png b/dapps/discover_12days_quack.png new file mode 100644 index 0000000000000..3dec5d55fbba9 Binary files /dev/null and b/dapps/discover_12days_quack.png differ diff --git a/dapps/discover_12days_quack_1.png b/dapps/discover_12days_quack_1.png new file mode 100644 index 0000000000000..3dec5d55fbba9 Binary files /dev/null and b/dapps/discover_12days_quack_1.png differ diff --git a/dapps/discover_12days_wagmi.png b/dapps/discover_12days_wagmi.png new file mode 100644 index 0000000000000..be82e23052070 Binary files /dev/null and b/dapps/discover_12days_wagmi.png differ diff --git a/dapps/discover_12days_wcoin.png b/dapps/discover_12days_wcoin.png new file mode 100644 index 0000000000000..b56156f0702e8 Binary files /dev/null and b/dapps/discover_12days_wcoin.png differ diff --git a/dapps/discover_arena_games.png b/dapps/discover_arena_games.png new file mode 100644 index 0000000000000..7085eb9e507a4 Binary files /dev/null and b/dapps/discover_arena_games.png differ diff --git a/dapps/discover_arena_games_updated.png b/dapps/discover_arena_games_updated.png new file mode 100644 index 0000000000000..7085eb9e507a4 Binary files /dev/null and b/dapps/discover_arena_games_updated.png differ diff --git a/dapps/discover_bnbmemes.png b/dapps/discover_bnbmemes.png new file mode 100644 index 0000000000000..68b9b06c298da Binary files /dev/null and b/dapps/discover_bnbmemes.png differ diff --git a/dapps/discover_bnbmemeswap.png b/dapps/discover_bnbmemeswap.png new file mode 100644 index 0000000000000..6f95a3117cf51 Binary files /dev/null and b/dapps/discover_bnbmemeswap.png differ diff --git a/dapps/discover_chaingpt_wd.png b/dapps/discover_chaingpt_wd.png new file mode 100644 index 0000000000000..49daf77c5ce7b Binary files /dev/null and b/dapps/discover_chaingpt_wd.png differ diff --git a/dapps/discover_jettonfeatured.png b/dapps/discover_jettonfeatured.png new file mode 100644 index 0000000000000..5eab4f1ce4d57 Binary files /dev/null and b/dapps/discover_jettonfeatured.png differ diff --git a/dapps/discover_limewire_updated.png b/dapps/discover_limewire_updated.png new file mode 100644 index 0000000000000..6f92f3229801d Binary files /dev/null and b/dapps/discover_limewire_updated.png differ diff --git a/dapps/discover_qubetics_wd.png b/dapps/discover_qubetics_wd.png new file mode 100644 index 0000000000000..b032dc3e4fd9c Binary files /dev/null and b/dapps/discover_qubetics_wd.png differ diff --git a/dapps/discover_trumpswaps.png b/dapps/discover_trumpswaps.png new file mode 100644 index 0000000000000..486bbb0013e82 Binary files /dev/null and b/dapps/discover_trumpswaps.png differ diff --git a/dapps/discover_trust_talks_1.png b/dapps/discover_trust_talks_1.png new file mode 100644 index 0000000000000..04ecbc04347fd Binary files /dev/null and b/dapps/discover_trust_talks_1.png differ diff --git a/dapps/discover_web3digest_feb.png b/dapps/discover_web3digest_feb.png new file mode 100644 index 0000000000000..b59289cd20be3 Binary files /dev/null and b/dapps/discover_web3digest_feb.png differ diff --git a/dapps/discover_wod.png b/dapps/discover_wod.png new file mode 100644 index 0000000000000..cbf7450459ad5 Binary files /dev/null and b/dapps/discover_wod.png differ diff --git a/dapps/element.market.png b/dapps/element.market.png new file mode 100644 index 0000000000000..648fe0bec4076 Binary files /dev/null and b/dapps/element.market.png differ diff --git a/dapps/ethernauts.co.png b/dapps/ethernauts.co.png old mode 100755 new mode 100644 diff --git a/dapps/flap.sh.png b/dapps/flap.sh.png new file mode 100644 index 0000000000000..3686f4df2c652 Binary files /dev/null and b/dapps/flap.sh.png differ diff --git a/dapps/fluid.instadapp.io.png b/dapps/fluid.instadapp.io.png new file mode 100644 index 0000000000000..e9dad3332f07c Binary files /dev/null and b/dapps/fluid.instadapp.io.png differ diff --git a/dapps/four.meme.ai.png b/dapps/four.meme.ai.png new file mode 100644 index 0000000000000..594fdf87ce197 Binary files /dev/null and b/dapps/four.meme.ai.png differ diff --git a/dapps/four.meme.png b/dapps/four.meme.png new file mode 100644 index 0000000000000..286899015cf07 Binary files /dev/null and b/dapps/four.meme.png differ diff --git a/dapps/gmgn.ai.png b/dapps/gmgn.ai.png new file mode 100644 index 0000000000000..996656fb680ec Binary files /dev/null and b/dapps/gmgn.ai.png differ diff --git a/dapps/gmt.io.png b/dapps/gmt.io.png new file mode 100644 index 0000000000000..be0dd640c9078 Binary files /dev/null and b/dapps/gmt.io.png differ diff --git a/dapps/gmx.io.png b/dapps/gmx.io.png index a9ec9e4a9d09a..69a69f9ec2600 100644 Binary files a/dapps/gmx.io.png and b/dapps/gmx.io.png differ diff --git a/dapps/gomble.io:.png b/dapps/gomble.io:.png new file mode 100644 index 0000000000000..1b28824fcea80 Binary files /dev/null and b/dapps/gomble.io:.png differ diff --git a/dapps/hooked.io.png b/dapps/hooked.io.png new file mode 100644 index 0000000000000..17678819b9f2e Binary files /dev/null and b/dapps/hooked.io.png differ diff --git a/dapps/instadapp.io.png b/dapps/instadapp.io.png index 6d9e788197c46..467b11847ee78 100644 Binary files a/dapps/instadapp.io.png and b/dapps/instadapp.io.png differ diff --git a/dapps/iskra.world.png b/dapps/iskra.world.png new file mode 100644 index 0000000000000..8e10a1a18905e Binary files /dev/null and b/dapps/iskra.world.png differ diff --git a/dapps/jup.ag.png b/dapps/jup.ag.png new file mode 100644 index 0000000000000..8f270a0b62414 Binary files /dev/null and b/dapps/jup.ag.png differ diff --git a/dapps/kalshi.com.png b/dapps/kalshi.com.png new file mode 100644 index 0000000000000..2afab09bad83e Binary files /dev/null and b/dapps/kalshi.com.png differ diff --git a/dapps/kamino.finance.png b/dapps/kamino.finance.png new file mode 100644 index 0000000000000..b83bafa223e7e Binary files /dev/null and b/dapps/kamino.finance.png differ diff --git a/dapps/launchpool_rocket.png b/dapps/launchpool_rocket.png new file mode 100644 index 0000000000000..1a913343e18e3 Binary files /dev/null and b/dapps/launchpool_rocket.png differ diff --git a/dapps/lens.xyx.png b/dapps/lens.xyx.png new file mode 100644 index 0000000000000..b6e475e7d1908 Binary files /dev/null and b/dapps/lens.xyx.png differ diff --git a/dapps/lido.fi.png b/dapps/lido.fi.png index 477f2e85f99eb..e433e57fbc9a2 100644 Binary files a/dapps/lido.fi.png and b/dapps/lido.fi.png differ diff --git a/dapps/liquidmesh.io.png b/dapps/liquidmesh.io.png new file mode 100644 index 0000000000000..da1a722e2a340 Binary files /dev/null and b/dapps/liquidmesh.io.png differ diff --git a/dapps/lista.org.png b/dapps/lista.org.png new file mode 100644 index 0000000000000..2dc16eea295fb Binary files /dev/null and b/dapps/lista.org.png differ diff --git a/dapps/magiceden.io.png b/dapps/magiceden.io.png new file mode 100644 index 0000000000000..7c7a355bb4b00 Binary files /dev/null and b/dapps/magiceden.io.png differ diff --git a/dapps/makerdao.com.png b/dapps/makerdao.com.png new file mode 100644 index 0000000000000..58d9405abf634 Binary files /dev/null and b/dapps/makerdao.com.png differ diff --git a/dapps/marinade.finance.app.png b/dapps/marinade.finance.app.png new file mode 100644 index 0000000000000..a66514ede8300 Binary files /dev/null and b/dapps/marinade.finance.app.png differ diff --git a/dapps/math-race.win4.fun.png b/dapps/math-race.win4.fun.png old mode 100755 new mode 100644 diff --git a/dapps/maxbet.pigfarm.io.png b/dapps/maxbet.pigfarm.io.png old mode 100755 new mode 100644 diff --git a/dapps/member.iotex.io.png b/dapps/member.iotex.io.png old mode 100755 new mode 100644 diff --git a/dapps/meme.market.png b/dapps/meme.market.png new file mode 100644 index 0000000000000..adb846301cb9f Binary files /dev/null and b/dapps/meme.market.png differ diff --git a/dapps/merlinswap.org.png b/dapps/merlinswap.org.png new file mode 100644 index 0000000000000..3128a72d7b344 Binary files /dev/null and b/dapps/merlinswap.org.png differ diff --git a/dapps/myriad.markets.png b/dapps/myriad.markets.png new file mode 100644 index 0000000000000..2e77e67a38185 Binary files /dev/null and b/dapps/myriad.markets.png differ diff --git a/dapps/myshell.ai.png b/dapps/myshell.ai.png new file mode 100644 index 0000000000000..d295230efa82c Binary files /dev/null and b/dapps/myshell.ai.png differ diff --git a/dapps/mythereum.io.png b/dapps/mythereum.io.png old mode 100755 new mode 100644 diff --git a/dapps/namebazaar.io.png b/dapps/namebazaar.io.png old mode 100755 new mode 100644 diff --git a/dapps/native.org.png b/dapps/native.org.png new file mode 100644 index 0000000000000..26b10abb08e1e Binary files /dev/null and b/dapps/native.org.png differ diff --git a/dapps/pantheon.exchange.png b/dapps/pantheon.exchange.png old mode 100755 new mode 100644 diff --git a/dapps/peepeth.com.png b/dapps/peepeth.com.png old mode 100755 new mode 100644 diff --git a/dapps/pendle.finance.png b/dapps/pendle.finance.png new file mode 100644 index 0000000000000..e5e6c7ca033d7 Binary files /dev/null and b/dapps/pendle.finance.png differ diff --git a/dapps/phi.png b/dapps/phi.png new file mode 100644 index 0000000000000..2914ff6fcb5d5 Binary files /dev/null and b/dapps/phi.png differ diff --git a/dapps/philand.xyz.png b/dapps/philand.xyz.png new file mode 100644 index 0000000000000..bb4bfed077bcf Binary files /dev/null and b/dapps/philand.xyz.png differ diff --git a/dapps/play.carv.io.png b/dapps/play.carv.io.png new file mode 100644 index 0000000000000..a3f4b2dafa0c1 Binary files /dev/null and b/dapps/play.carv.io.png differ diff --git a/dapps/polymarket.com.png b/dapps/polymarket.com.png new file mode 100644 index 0000000000000..a5252c3b33609 Binary files /dev/null and b/dapps/polymarket.com.png differ diff --git a/dapps/predict.fun.png b/dapps/predict.fun.png new file mode 100644 index 0000000000000..9f7bcc401239e Binary files /dev/null and b/dapps/predict.fun.png differ diff --git a/dapps/pump.fun.png b/dapps/pump.fun.png new file mode 100644 index 0000000000000..8cd394c204ad6 Binary files /dev/null and b/dapps/pump.fun.png differ diff --git a/dapps/quickswap.exchange.png b/dapps/quickswap.exchange.png new file mode 100644 index 0000000000000..6f5342a442c35 Binary files /dev/null and b/dapps/quickswap.exchange.png differ diff --git a/dapps/rango.png b/dapps/rango.png new file mode 100644 index 0000000000000..b942d1501ba91 Binary files /dev/null and b/dapps/rango.png differ diff --git a/dapps/rats.png b/dapps/rats.png new file mode 100644 index 0000000000000..1356fe2e9473c Binary files /dev/null and b/dapps/rats.png differ diff --git a/dapps/raydium.io.png b/dapps/raydium.io.png new file mode 100644 index 0000000000000..777d192d883a0 Binary files /dev/null and b/dapps/raydium.io.png differ diff --git a/dapps/rocketpool.net.png b/dapps/rocketpool.net.png new file mode 100644 index 0000000000000..67792d6008813 Binary files /dev/null and b/dapps/rocketpool.net.png differ diff --git a/dapps/saturn.network.png b/dapps/saturn.network.png old mode 100755 new mode 100644 diff --git a/dapps/shiftly.finance.png b/dapps/shiftly.finance.png old mode 100755 new mode 100644 diff --git a/dapps/sky.money.png b/dapps/sky.money.png new file mode 100644 index 0000000000000..179a7e45192b6 Binary files /dev/null and b/dapps/sky.money.png differ diff --git a/dapps/slots.spin4.fun.png b/dapps/slots.spin4.fun.png old mode 100755 new mode 100644 diff --git a/dapps/solend.fi.png b/dapps/solend.fi.png new file mode 100644 index 0000000000000..c3eb4548203ca Binary files /dev/null and b/dapps/solend.fi.png differ diff --git a/dapps/space-race.win4.fun.png b/dapps/space-race.win4.fun.png old mode 100755 new mode 100644 diff --git a/dapps/space-tetris.win4.fun.png b/dapps/space-tetris.win4.fun.png old mode 100755 new mode 100644 diff --git a/dapps/squidrouter.com.png b/dapps/squidrouter.com.png new file mode 100644 index 0000000000000..ec372e6cf585e Binary files /dev/null and b/dapps/squidrouter.com.png differ diff --git a/dapps/staking.thundercore.com.png b/dapps/staking.thundercore.com.png old mode 100755 new mode 100644 diff --git a/dapps/stargate.finance.png b/dapps/stargate.finance.png new file mode 100644 index 0000000000000..eb56736d238a5 Binary files /dev/null and b/dapps/stargate.finance.png differ diff --git a/dapps/summer.fi.png b/dapps/summer.fi.png new file mode 100644 index 0000000000000..f85878bd9a41f Binary files /dev/null and b/dapps/summer.fi.png differ diff --git a/dapps/sundog.png b/dapps/sundog.png new file mode 100644 index 0000000000000..8d7a8de6568a1 Binary files /dev/null and b/dapps/sundog.png differ diff --git a/dapps/sunpump.meme.png b/dapps/sunpump.meme.png new file mode 100644 index 0000000000000..dc94307fc9bf8 Binary files /dev/null and b/dapps/sunpump.meme.png differ diff --git a/dapps/swap.cow.fi.png b/dapps/swap.cow.fi.png new file mode 100644 index 0000000000000..ff02c925b2578 Binary files /dev/null and b/dapps/swap.cow.fi.png differ diff --git a/dapps/swapkit.dev.png b/dapps/swapkit.dev.png new file mode 100644 index 0000000000000..466a25d01022f Binary files /dev/null and b/dapps/swapkit.dev.png differ diff --git a/dapps/swaps.xyz.png b/dapps/swaps.xyz.png new file mode 100644 index 0000000000000..1407da25e6e74 Binary files /dev/null and b/dapps/swaps.xyz.png differ diff --git a/dapps/swft.png b/dapps/swft.png new file mode 100644 index 0000000000000..42d37ec40a6dd Binary files /dev/null and b/dapps/swft.png differ diff --git a/dapps/t.me:solana_unibot.png b/dapps/t.me:solana_unibot.png new file mode 100644 index 0000000000000..3fbda4bb16be5 Binary files /dev/null and b/dapps/t.me:solana_unibot.png differ diff --git a/dapps/tesa.png b/dapps/tesa.png new file mode 100644 index 0000000000000..30dabac78cbf8 Binary files /dev/null and b/dapps/tesa.png differ diff --git a/dapps/thorchain.org.png b/dapps/thorchain.org.png new file mode 100644 index 0000000000000..f53a26c606f94 Binary files /dev/null and b/dapps/thorchain.org.png differ diff --git a/dapps/tomoswap.com.png b/dapps/tomoswap.com.png old mode 100755 new mode 100644 diff --git a/dapps/traderjoexyz.com.png b/dapps/traderjoexyz.com.png new file mode 100644 index 0000000000000..e0631df801163 Binary files /dev/null and b/dapps/traderjoexyz.com.png differ diff --git a/dapps/trust.logo.png b/dapps/trust.logo.png new file mode 100644 index 0000000000000..6205c811d82a9 Binary files /dev/null and b/dapps/trust.logo.png differ diff --git a/dapps/trustmemecoinweek.png b/dapps/trustmemecoinweek.png deleted file mode 100644 index 01c775295fdbc..0000000000000 Binary files a/dapps/trustmemecoinweek.png and /dev/null differ diff --git a/dapps/ttroll.ttmobileapps.com.png b/dapps/ttroll.ttmobileapps.com.png old mode 100755 new mode 100644 diff --git a/dapps/tw.dicsover.jetton_promo.png b/dapps/tw.dicsover.jetton_promo.png new file mode 100644 index 0000000000000..246a7d4f0155d Binary files /dev/null and b/dapps/tw.dicsover.jetton_promo.png differ diff --git a/dapps/tw.discover.meetup.png b/dapps/tw.discover.meetup.png new file mode 100644 index 0000000000000..cd092c542c369 Binary files /dev/null and b/dapps/tw.discover.meetup.png differ diff --git a/dapps/tw.swift.feedback_logo.png b/dapps/tw.swift.feedback_logo.png new file mode 100644 index 0000000000000..84363b2d5d895 Binary files /dev/null and b/dapps/tw.swift.feedback_logo.png differ diff --git a/dapps/tw.swift.gas_logo.png b/dapps/tw.swift.gas_logo.png new file mode 100644 index 0000000000000..6bb8706cb518e Binary files /dev/null and b/dapps/tw.swift.gas_logo.png differ diff --git a/dapps/tw.swift.passkey_logo.png b/dapps/tw.swift.passkey_logo.png new file mode 100644 index 0000000000000..782565b030ff7 Binary files /dev/null and b/dapps/tw.swift.passkey_logo.png differ diff --git a/dapps/tw.swift.security_logo.png b/dapps/tw.swift.security_logo.png new file mode 100644 index 0000000000000..68a7505f7e6d6 Binary files /dev/null and b/dapps/tw.swift.security_logo.png differ diff --git a/dapps/tw.swift.starte_guide_logo.png b/dapps/tw.swift.starte_guide_logo.png new file mode 100644 index 0000000000000..611d3d0f39d95 Binary files /dev/null and b/dapps/tw.swift.starte_guide_logo.png differ diff --git a/dapps/veno.finance.png b/dapps/veno.finance.png new file mode 100644 index 0000000000000..36d5d104a99c3 Binary files /dev/null and b/dapps/veno.finance.png differ diff --git a/dapps/viewer.tokenscript.org.png b/dapps/viewer.tokenscript.org.png new file mode 100644 index 0000000000000..8284eb0ad2c69 Binary files /dev/null and b/dapps/viewer.tokenscript.org.png differ diff --git a/dapps/warpcast.com.png b/dapps/warpcast.com.png new file mode 100644 index 0000000000000..baecf3b7665e5 Binary files /dev/null and b/dapps/warpcast.com.png differ diff --git a/dapps/www.aialaya.io:.png b/dapps/www.aialaya.io:.png new file mode 100644 index 0000000000000..78744c81667da Binary files /dev/null and b/dapps/www.aialaya.io:.png differ diff --git a/dapps/www.alpacafinance.org.png b/dapps/www.alpacafinance.org.png new file mode 100644 index 0000000000000..de6129de07b01 Binary files /dev/null and b/dapps/www.alpacafinance.org.png differ diff --git a/dapps/www.avalonfinance.xyz.png b/dapps/www.avalonfinance.xyz.png new file mode 100644 index 0000000000000..47c93fac8e7a8 Binary files /dev/null and b/dapps/www.avalonfinance.xyz.png differ diff --git a/dapps/www.binance.com.png b/dapps/www.binance.com.png new file mode 100644 index 0000000000000..bb4ded347073d Binary files /dev/null and b/dapps/www.binance.com.png differ diff --git a/dapps/www.bonkbot.io.png b/dapps/www.bonkbot.io.png new file mode 100644 index 0000000000000..d47a71b24fad3 Binary files /dev/null and b/dapps/www.bonkbot.io.png differ diff --git a/dapps/www.circle.com.png b/dapps/www.circle.com.png new file mode 100644 index 0000000000000..fcfcccee7321a Binary files /dev/null and b/dapps/www.circle.com.png differ diff --git a/dapps/www.convexfinance.com.png b/dapps/www.convexfinance.com.png new file mode 100644 index 0000000000000..380494224a266 Binary files /dev/null and b/dapps/www.convexfinance.com.png differ diff --git a/dapps/www.eigenlayer.xyz:.png.png b/dapps/www.eigenlayer.xyz:.png.png new file mode 100644 index 0000000000000..8f097b748099d Binary files /dev/null and b/dapps/www.eigenlayer.xyz:.png.png differ diff --git a/dapps/www.friend.tech.png b/dapps/www.friend.tech.png new file mode 100644 index 0000000000000..cfcd8bdc0bac8 Binary files /dev/null and b/dapps/www.friend.tech.png differ diff --git a/dapps/www.holoworldai.com:.png b/dapps/www.holoworldai.com:.png new file mode 100644 index 0000000000000..3d09247d02f6d Binary files /dev/null and b/dapps/www.holoworldai.com:.png differ diff --git a/dapps/www.jito.network.png b/dapps/www.jito.network.png new file mode 100644 index 0000000000000..489f9f201a585 Binary files /dev/null and b/dapps/www.jito.network.png differ diff --git a/dapps/www.kiloex.io.png b/dapps/www.kiloex.io.png new file mode 100644 index 0000000000000..6c3a1021d030a Binary files /dev/null and b/dapps/www.kiloex.io.png differ diff --git a/dapps/www.maestrobots.com.png b/dapps/www.maestrobots.com.png new file mode 100644 index 0000000000000..5239552b0c80a Binary files /dev/null and b/dapps/www.maestrobots.com.png differ diff --git a/dapps/www.nightcrows.com.png b/dapps/www.nightcrows.com.png new file mode 100644 index 0000000000000..880ac4c58626a Binary files /dev/null and b/dapps/www.nightcrows.com.png differ diff --git a/dapps/www.orca.so.png b/dapps/www.orca.so.png new file mode 100644 index 0000000000000..9dc1f01dc6a4d Binary files /dev/null and b/dapps/www.orca.so.png differ diff --git a/dapps/www.pixels.xyz.png b/dapps/www.pixels.xyz.png new file mode 100644 index 0000000000000..4142252505cbe Binary files /dev/null and b/dapps/www.pixels.xyz.png differ diff --git a/dapps/www.playbux.co.png b/dapps/www.playbux.co.png new file mode 100644 index 0000000000000..177a2316f10bc Binary files /dev/null and b/dapps/www.playbux.co.png differ diff --git a/dapps/www.renzoprotocol.com.png b/dapps/www.renzoprotocol.com.png new file mode 100644 index 0000000000000..9ff5a87d6a3e8 Binary files /dev/null and b/dapps/www.renzoprotocol.com.png differ diff --git a/dapps/www.silentswap.com.png b/dapps/www.silentswap.com.png new file mode 100644 index 0000000000000..2e5d971d8d6c7 Binary files /dev/null and b/dapps/www.silentswap.com.png differ diff --git a/dapps/www.solchat.app.png b/dapps/www.solchat.app.png new file mode 100644 index 0000000000000..91421cb059de2 Binary files /dev/null and b/dapps/www.solchat.app.png differ diff --git a/dapps/www.spark.fi.png b/dapps/www.spark.fi.png new file mode 100644 index 0000000000000..01b0166f18b58 Binary files /dev/null and b/dapps/www.spark.fi.png differ diff --git a/dapps/www.staderlabs.com.png b/dapps/www.staderlabs.com.png new file mode 100644 index 0000000000000..9c285390e50e3 Binary files /dev/null and b/dapps/www.staderlabs.com.png differ diff --git a/dapps/www.synapseprotocol.com.png b/dapps/www.synapseprotocol.com.png new file mode 100644 index 0000000000000..ea35f62701a2c Binary files /dev/null and b/dapps/www.synapseprotocol.com.png differ diff --git a/dapps/www.worldofdypians.com.png b/dapps/www.worldofdypians.com.png new file mode 100644 index 0000000000000..3422af2737c60 Binary files /dev/null and b/dapps/www.worldofdypians.com.png differ diff --git a/dapps/zed.run.png b/dapps/zed.run.png old mode 100755 new mode 100644 diff --git a/dapps/zerolend.xyz.png b/dapps/zerolend.xyz.png new file mode 100644 index 0000000000000..b53a0a75581e3 Binary files /dev/null and b/dapps/zerolend.xyz.png differ diff --git a/go.mod b/go.mod index 6931842b512f2..1dc3304ff84eb 100644 --- a/go.mod +++ b/go.mod @@ -1,25 +1,26 @@ module github.com/trustwallet/assets -go 1.18 +go 1.19 require ( github.com/sirupsen/logrus v1.9.0 github.com/spf13/cobra v1.7.0 - github.com/trustwallet/assets-go-libs v0.3.5 + github.com/trustwallet/assets-go-libs v0.3.9-0.20240905070109-9da7e7c4847a github.com/trustwallet/go-libs v0.7.3 - github.com/trustwallet/go-primitives v0.0.77 + github.com/trustwallet/go-primitives v0.1.32 ) require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.1.2 // indirect + github.com/cespare/xxhash/v2 v2.2.0 // indirect github.com/deckarep/golang-set v1.7.1 // indirect github.com/fsnotify/fsnotify v1.5.1 // indirect + github.com/gin-gonic/gin v1.9.1 // indirect github.com/golang/protobuf v1.5.2 // indirect github.com/hashicorp/hcl v1.0.0 // indirect github.com/inconshreveable/mousetrap v1.1.0 // indirect github.com/magiconair/properties v1.8.5 // indirect - github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect + github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect github.com/mitchellh/mapstructure v1.4.3 // indirect github.com/patrickmn/go-cache v2.1.0+incompatible // indirect github.com/pelletier/go-toml v1.9.4 // indirect @@ -32,12 +33,13 @@ require ( github.com/spf13/jwalterweatherman v1.1.0 // indirect github.com/spf13/pflag v1.0.5 // indirect github.com/spf13/viper v1.10.0 // indirect + github.com/stretchr/testify v1.8.3 // indirect github.com/subosito/gotenv v1.2.0 // indirect - golang.org/x/crypto v0.4.0 // indirect + golang.org/x/crypto v0.9.0 // indirect golang.org/x/image v0.5.0 // indirect - golang.org/x/sys v0.3.0 // indirect - golang.org/x/text v0.7.0 // indirect - google.golang.org/protobuf v1.27.1 // indirect + golang.org/x/sys v0.8.0 // indirect + golang.org/x/text v0.9.0 // indirect + google.golang.org/protobuf v1.30.0 // indirect gopkg.in/ini.v1 v1.66.2 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect ) diff --git a/go.sum b/go.sum index 27b58b00503e2..43cfa97b04a41 100644 --- a/go.sum +++ b/go.sum @@ -42,10 +42,13 @@ github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24 github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= +github.com/bytedance/sonic v1.9.1 h1:6iJ6NqdoxCDr6mbY8h18oSO+cShGSMRGCEo7F2h0x8s= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.1.2 h1:YRXhKfTDauu4ajMg1TPgFO5jnlC2HCbmLXMcTG5cbYE= github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= +github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 h1:qSGYFH7+jGhDF8vLC+iwCD4WpbV1EBDSzWkJODFLams= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= @@ -63,8 +66,10 @@ github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1m github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= github.com/fsnotify/fsnotify v1.5.1 h1:mZcQUHVQUQWoPXXtuf9yuEXKudkV2sx1E06UadKWpgI= github.com/fsnotify/fsnotify v1.5.1/go.mod h1:T3375wBYaZdLLcVNkcVbzGHY7f1l/uK5T5Ai1i3InKU= +github.com/gabriel-vasile/mimetype v1.4.2 h1:w5qFW6JKBz9Y393Y4q372O9A7cUSequkh1Q7OhCmWKU= github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE= -github.com/gin-gonic/gin v1.7.7 h1:3DoBmSbJbZAWqXJC3SLjAPfutPJJRN1U5pALB7EeTTs= +github.com/gin-gonic/gin v1.9.1 h1:4idEAncQnU5cB7BeOkPtxjfCSye0AAm1R0RVIqJ+Jmg= +github.com/gin-gonic/gin v1.9.1/go.mod h1:hPrL7YrpYKXt5YId3A/Tnip5kqbEAP+KLuI3SUcPTeU= github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= @@ -74,10 +79,11 @@ github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vb github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A= -github.com/go-playground/locales v0.13.0 h1:HyWk6mgj5qFqCT5fjGBuRArbVDfE4hi8+e8ceBS/t7Q= -github.com/go-playground/universal-translator v0.17.0 h1:icxd5fm+REJzpZx7ZfpaD876Lmtgy7VtROAbHHXk8no= -github.com/go-playground/validator/v10 v10.4.1 h1:pH2c5ADXtd66mxoE0Zm9SUhxE20r7aM3F26W0hOn+GE= +github.com/go-playground/locales v0.14.1 h1:EWaQ/wswjilfKLTECiXz7Rh+3BjFhfDFKv/oXslEjJA= +github.com/go-playground/universal-translator v0.18.1 h1:Bcnm0ZwsGyWbCzImXv+pAJnYK9S473LQFuzCbDbfSFY= +github.com/go-playground/validator/v10 v10.14.0 h1:vgvQWe3XCz3gIeFDm/HnTIbj6UGmg/+t63MyGU2n5js= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/goccy/go-json v0.10.2 h1:CrxCmQqYDkv1z7lO7Wbh2HN93uovUHgrECaO5ZrCXAU= github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= @@ -150,6 +156,7 @@ github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/X github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= +github.com/klauspost/cpuid/v2 v2.2.4 h1:acbojRNwl3o09bUq+yDCtZFc1aiwaAAxtcn8YkZXnvk= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= @@ -159,12 +166,13 @@ github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORN github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= -github.com/leodido/go-urn v1.2.0 h1:hpXL4XnriNwQ/ABnpepYM/1vCLWNDfUNts8dX3xTG6Y= +github.com/leodido/go-urn v1.2.4 h1:XlAE/cm/ms7TE/VMVoduSpNBoyc2dOxHs5MZSwAN63Q= github.com/magiconair/properties v1.8.5 h1:b6kJs+EmPFMYGkow9GiUyCyOvIwYetYJ3fSaWak/Gls= github.com/magiconair/properties v1.8.5/go.mod h1:y3VJvCyxH9uVvJTWEGAELF3aiYNyPKd5NZ3oSwXrF60= -github.com/mattn/go-isatty v0.0.14 h1:yVuAays6BHfxijgZPzw+3Zlu5yQgKGP2/hcQbHb7S9Y= -github.com/matttproud/golang_protobuf_extensions v1.0.1 h1:4hp9jkHxhMHkqkrB3Ix0jegS5sx/RkqARlsWZ6pIwiU= +github.com/mattn/go-isatty v0.0.19 h1:JITubQf0MOLdlGRuRq+jtsDlekdYPia9ZFsB8h/APPA= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= +github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 h1:I0XW9+e1XWDxdcEniV4rQAIOPUGDq67JSCiRCgGCZLI= +github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= github.com/mitchellh/mapstructure v1.4.3 h1:OVowDSCllw/YjdLkam3/sm7wEtOy59d8ndGgCcyj8cs= github.com/mitchellh/mapstructure v1.4.3/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= @@ -180,6 +188,7 @@ github.com/patrickmn/go-cache v2.1.0+incompatible h1:HRMgzkcYKYpi3C8ajMPV8OFXaaR github.com/patrickmn/go-cache v2.1.0+incompatible/go.mod h1:3Qf8kWWT7OJRJbdiICTKqZju1ZixQ/KpMGzzAfe6+WQ= github.com/pelletier/go-toml v1.9.4 h1:tjENF6MfZAg8e4ZmZTeWaWiT2vXtsoO6+iuOjFhECwM= github.com/pelletier/go-toml v1.9.4/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c= +github.com/pelletier/go-toml/v2 v2.0.8 h1:0ctb6s9mE31h0/lhu+J6OPmVeDxJn+kYnJc2jZR9tGQ= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= @@ -233,16 +242,18 @@ github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXf github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= -github.com/stretchr/testify v1.8.0 h1:pSgiaMZlXftHpm5L7V1+rVB+AZJydKsMxsQBIJw4PKk= +github.com/stretchr/testify v1.8.3 h1:RP3t2pwF7cMEbC1dqtB6poj3niw/9gnV4Cjg5oW5gtY= +github.com/stretchr/testify v1.8.3/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= github.com/subosito/gotenv v1.2.0 h1:Slr1R9HxAlEKefgq5jn9U+DnETlIUa6HfgEzj0g5d7s= github.com/subosito/gotenv v1.2.0/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69rRypqCw= -github.com/trustwallet/assets-go-libs v0.3.5 h1:xYgaDdy0VG9H3dHq+Cp830vYaZUHWA0SKbB/Nyb3ptg= -github.com/trustwallet/assets-go-libs v0.3.5/go.mod h1:03cXr+ABmrdDXZkoPPdP6h3oN2RCsGPx6QqILORpEW0= +github.com/trustwallet/assets-go-libs v0.3.9-0.20240905070109-9da7e7c4847a h1:tdILqIqrcJxRoiCf4cuIYxK7ub3WFgZZ8QBmH0ODV1Q= +github.com/trustwallet/assets-go-libs v0.3.9-0.20240905070109-9da7e7c4847a/go.mod h1:/cgJRCuCysrcqQutXmwR82ck/26qbdmZ5jSBeoc2vIw= github.com/trustwallet/go-libs v0.7.3 h1:X5KTj2/582Iv/3Pbm9AKPABBlwGE0tLGbQir66jD6U0= github.com/trustwallet/go-libs v0.7.3/go.mod h1:5TQECBJo2ZUhGvB4pTKtyYeclGhzlYooVv/EufU4Axk= -github.com/trustwallet/go-primitives v0.0.77 h1:iHEyXUQFguF1ro2boze/10xqiN8eGRaorpcUQHTa+ok= -github.com/trustwallet/go-primitives v0.0.77/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= -github.com/ugorji/go/codec v1.1.7 h1:2SvQaVZ1ouYrrKKwoSk2pzd4A9evlKJb9oTL+OaLUSs= +github.com/trustwallet/go-primitives v0.1.32 h1:x6lDk+Y/W+qH0FNiEUorh3fOaFAOQYUXWSfnWfQg93I= +github.com/trustwallet/go-primitives v0.1.32/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/twitchyliquid64/golang-asm v0.15.1 h1:SU5vSMR7hnwNxj24w34ZyCi/FmDZTkS4MhqMhdFk5YI= +github.com/ugorji/go/codec v1.2.11 h1:BMaWp1Bb6fHwEtbplGBGJ498wD+LKlNSl25MjdZY4dU= github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= @@ -252,6 +263,7 @@ go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= +golang.org/x/arch v0.3.0 h1:02VY4/ZcO/gBOH6PUaoiptASxtXU10jazRCP865E97k= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= @@ -260,8 +272,8 @@ golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8U golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.4.0 h1:UVQgzMY87xqpKNgb+kDsll2Igd33HszWHFLmpaRMq/8= -golang.org/x/crypto v0.4.0/go.mod h1:3quD/ATkf6oY+rnes5c3ExXTbLc8mueNue5/DoinL80= +golang.org/x/crypto v0.9.0 h1:LF6fAI+IutBocDJ2OT0Q1g8plpYljMZ4+lty+dsqw3g= +golang.org/x/crypto v0.9.0/go.mod h1:yrmDGqONDYtNj3tH8X9dzUun2m2lzPa9ngI6/RUPGR0= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= @@ -326,6 +338,7 @@ golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81R golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210525063256-abc453219eb5/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.10.0 h1:X2//UzNDwYmtCLn7To6G58Wr6f5ahEAQgKNzv9Y951M= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -383,8 +396,8 @@ golang.org/x/sys v0.0.0-20220114195835-da31bd327af9/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.3.0 h1:w8ZOecv6NaNa/zC8944JTU3vz4u6Lagfk4RPQxv92NQ= -golang.org/x/sys v0.3.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.8.0 h1:EBmGv8NaZBZTWvrbjNoL6HVt+IVy3QDQpJs7VRIw3tU= +golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -394,8 +407,9 @@ golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= -golang.org/x/text v0.7.0 h1:4BRB4x83lYWy72KwLD/qYDuTu7q9PjSagHvijDw7cLo= golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.9.0 h1:2sjJmO8cDvYveuX97RDLsxlyUxLl+GHoLxBiRdHllBE= +golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= @@ -519,8 +533,8 @@ google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGj google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.27.1 h1:SnqbnDw1V7RiZcXPx5MEeqPv2s79L9i7BJUlG/+RurQ= -google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +google.golang.org/protobuf v1.30.0 h1:kPPoIgf3TsEvrm0PFe15JQ+570QVxYzEvvHqChK+cng= +google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= diff --git a/internal/config/validators.go b/internal/config/validators.go index 6f1eb6268f1f6..28078256f09fa 100644 --- a/internal/config/validators.go +++ b/internal/config/validators.go @@ -3,6 +3,7 @@ package config type RootFolder struct { AllowedFiles []string `mapstructure:"allowed_files,omitempty"` SkipFiles []string `mapstructure:"skip_files,omitempty"` + SkipDirs []string `mapstructure:"skip_dirs,omitempty"` } type ChainFolder struct { diff --git a/internal/info/asset.go b/internal/info/asset.go new file mode 100644 index 0000000000000..c175e10ac1605 --- /dev/null +++ b/internal/info/asset.go @@ -0,0 +1,49 @@ +package info + +import ( + "github.com/trustwallet/assets-go-libs/validation" + "github.com/trustwallet/go-primitives/coin" +) + +func ValidateAsset(a AssetModel, chain coin.Coin, addr string) error { + if err := ValidateAssetRequiredKeys(a); err != nil { + return err + } + + // All fields validated for nil and can be safety used. + compErr := validation.NewErrComposite() + + if err := ValidateAssetID(*a.ID, addr); err != nil { + compErr.Append(err) + } + + if err := ValidateDecimals(*a.Decimals); err != nil { + compErr.Append(err) + } + + if err := ValidateAssetDecimalsAccordingType(*a.Type, *a.Decimals); err != nil { + compErr.Append(err) + } + + if err := ValidateStatus(*a.Status); err != nil { + compErr.Append(err) + } + + if err := ValidateDescription(*a.Description); err != nil { + compErr.Append(err) + } + + if err := ValidateDescriptionWebsite(*a.Description, *a.Website); err != nil { + compErr.Append(err) + } + + if err := ValidateLinks(a.Links); err != nil { + compErr.Append(err) + } + + if compErr.Len() > 0 { + return compErr + } + + return nil +} diff --git a/internal/info/coin.go b/internal/info/coin.go new file mode 100644 index 0000000000000..623ea2470dfde --- /dev/null +++ b/internal/info/coin.go @@ -0,0 +1,47 @@ +package info + +import ( + "github.com/trustwallet/assets-go-libs/validation" +) + +func ValidateCoin(c CoinModel, allowedTags []string) error { + if err := ValidateCoinRequiredKeys(c); err != nil { + return err + } + + // All fields validated for nil and can be safety used. + compErr := validation.NewErrComposite() + if err := ValidateCoinType(*c.Type); err != nil { + compErr.Append(err) + } + + if err := ValidateDecimals(*c.Decimals); err != nil { + compErr.Append(err) + } + + if err := ValidateStatus(*c.Status); err != nil { + compErr.Append(err) + } + + if err := ValidateTags(c.Tags, allowedTags); err != nil { + compErr.Append(err) + } + + if err := ValidateDescription(*c.Description); err != nil { + compErr.Append(err) + } + + if err := ValidateDescriptionWebsite(*c.Description, *c.Website); err != nil { + compErr.Append(err) + } + + if err := ValidateLinks(c.Links); err != nil { + compErr.Append(err) + } + + if compErr.Len() > 0 { + return compErr + } + + return nil +} diff --git a/internal/info/external/erc20.go b/internal/info/external/erc20.go new file mode 100644 index 0000000000000..adf5981af2bb0 --- /dev/null +++ b/internal/info/external/erc20.go @@ -0,0 +1,35 @@ +package external + +import ( + "fmt" + "strconv" + + "github.com/trustwallet/assets-go-libs/http" +) + +const ethAPIURL = "https://api.ethplorer.io/getTokenInfo/%s?apiKey=freekey" + +type TokenInfoERC20 struct { + Decimals string `json:"decimals"` + HoldersCount int `json:"holdersCount"` +} + +func GetTokenInfoForERC20(tokenID string) (*TokenInfo, error) { + url := fmt.Sprintf(ethAPIURL, tokenID) + + var result TokenInfoERC20 + err := http.GetHTTPResponse(url, &result) + if err != nil { + return nil, err + } + + decimals, err := strconv.Atoi(result.Decimals) + if err != nil { + return nil, err + } + + return &TokenInfo{ + Decimals: decimals, + HoldersCount: result.HoldersCount, + }, nil +} diff --git a/internal/info/external/external.go b/internal/info/external/external.go new file mode 100644 index 0000000000000..7270158843be2 --- /dev/null +++ b/internal/info/external/external.go @@ -0,0 +1,85 @@ +package external + +import ( + "fmt" + "regexp" + "strconv" + "strings" + + "github.com/trustwallet/assets-go-libs/http" +) + +var ( + holdersRegexp = regexp.MustCompile(`(\d+)\saddresses`) + decimalsRegexp = regexp.MustCompile(`(\d+)\s+<\/div>`) + symbolRegexp = regexp.MustCompile(`(\w+)<\/b>\s 1 { + symbol = match[1] + } + + match = decimalsRegexp.FindStringSubmatch(pageContent) + if len(match) > 1 { + decimals, err = strconv.Atoi(match[1]) + if err != nil { + return nil, err + } + } + + match = holdersRegexp.FindStringSubmatch(pageContent) + if len(match) > 1 { + holders, err = strconv.Atoi(match[1]) + if err != nil { + return nil, err + } + } + + return &TokenInfo{ + Symbol: symbol, + Decimals: decimals, + HoldersCount: holders, + }, nil +} diff --git a/internal/info/external/spl.go b/internal/info/external/spl.go new file mode 100644 index 0000000000000..a95addf68e07c --- /dev/null +++ b/internal/info/external/spl.go @@ -0,0 +1,37 @@ +package external + +import ( + "fmt" + + "github.com/trustwallet/assets-go-libs/http" +) + +const splAPIURL = "https://public-api.solscan.io/token/holders?tokenAddress=%s" + +type TokenInfoSPL struct { + Data []Data `json:"data"` + HoldersCount int `json:"total"` +} + +type Data struct { + Decimals int `json:"decimals"` +} + +func GetTokenInfoForSPL(tokenID string) (*TokenInfo, error) { + url := fmt.Sprintf(splAPIURL, tokenID) + + var result TokenInfoSPL + err := http.GetHTTPResponse(url, &result) + if err != nil { + return nil, err + } + + if len(result.Data) == 0 { + return nil, fmt.Errorf("failed to get token info for SPL token") + } + + return &TokenInfo{ + Decimals: result.Data[0].Decimals, + HoldersCount: result.HoldersCount, + }, nil +} diff --git a/internal/info/external/trc10.go b/internal/info/external/trc10.go new file mode 100644 index 0000000000000..9a585f8d212b2 --- /dev/null +++ b/internal/info/external/trc10.go @@ -0,0 +1,38 @@ +package external + +import ( + "errors" + "fmt" + + "github.com/trustwallet/assets-go-libs/http" +) + +const trc10APIURL = "https://apilist.tronscan.io/api/token?id=%s" + +type TRC10TokensResponse struct { + Data []struct { + Symbol string `json:"abbr"` + Decimals int `json:"precision"` + HoldersCount int `json:"nrOfTokenHolders"` + } `json:"data"` +} + +func GetTokenInfoForTRC10(tokenID string) (*TokenInfo, error) { + url := fmt.Sprintf(trc10APIURL, tokenID) + + var res TRC10TokensResponse + err := http.GetHTTPResponse(url, &res) + if err != nil { + return nil, err + } + + if len(res.Data) == 0 { + return nil, errors.New("not found") + } + + return &TokenInfo{ + Symbol: res.Data[0].Symbol, + Decimals: res.Data[0].Decimals, + HoldersCount: res.Data[0].HoldersCount, + }, nil +} diff --git a/internal/info/external/trc20.go b/internal/info/external/trc20.go new file mode 100644 index 0000000000000..3f4c228855d7d --- /dev/null +++ b/internal/info/external/trc20.go @@ -0,0 +1,38 @@ +package external + +import ( + "errors" + "fmt" + + "github.com/trustwallet/assets-go-libs/http" +) + +const trc20APIURL = "https://apilist.tronscan.io/api/token_trc20?contract=%s" + +type TRC20TokensResponse struct { + TRC20Tokens []struct { + Symbol string `json:"symbol"` + Decimals int `json:"decimals"` + HoldersCount int `json:"holders_count"` + } `json:"trc20_tokens"` +} + +func GetTokenInfoForTRC20(tokenID string) (*TokenInfo, error) { + url := fmt.Sprintf(trc20APIURL, tokenID) + + var res TRC20TokensResponse + err := http.GetHTTPResponse(url, &res) + if err != nil { + return nil, err + } + + if len(res.TRC20Tokens) == 0 { + return nil, errors.New("not found") + } + + return &TokenInfo{ + Symbol: res.TRC20Tokens[0].Symbol, + Decimals: res.TRC20Tokens[0].Decimals, + HoldersCount: res.TRC20Tokens[0].HoldersCount, + }, nil +} diff --git a/internal/info/fields_validators.go b/internal/info/fields_validators.go new file mode 100644 index 0000000000000..0d87b3239e646 --- /dev/null +++ b/internal/info/fields_validators.go @@ -0,0 +1,263 @@ +package info + +import ( + "fmt" + "strings" + + str "github.com/trustwallet/assets-go-libs/strings" + "github.com/trustwallet/assets-go-libs/validation" + "github.com/trustwallet/go-primitives/coin" + "github.com/trustwallet/go-primitives/types" +) + +// Asset info specific validators. + +func ValidateAssetRequiredKeys(a AssetModel) error { + var fields []string + if a.Name != nil && !isEmpty(*a.Name) { + fields = append(fields, "name") + } + if a.Symbol != nil && !isEmpty(*a.Symbol) { + fields = append(fields, "symbol") + } + if a.Type != nil && !isEmpty(*a.Type) { + fields = append(fields, "type") + } + if a.Decimals != nil { + fields = append(fields, "decimals") + } + if a.Description != nil && !isEmpty(*a.Description) { + fields = append(fields, "description") + } + if a.Website != nil { + fields = append(fields, "website") + } + if a.Explorer != nil && !isEmpty(*a.Explorer) { + fields = append(fields, "explorer") + } + if a.Status != nil && !isEmpty(*a.Status) { + fields = append(fields, "status") + } + if a.ID != nil && !isEmpty(*a.ID) { + fields = append(fields, "id") + } + + if len(fields) != len(requiredAssetFields) { + return fmt.Errorf("%w: %s", validation.ErrMissingField, + strings.Join(str.Difference(requiredAssetFields, fields), ", ")) + } + + return nil +} + +func ValidateAssetType(assetType string, chain coin.Coin) error { + chainFromType, err := types.GetChainFromAssetType(assetType) + if err != nil { + return fmt.Errorf("failed to get chain from asset type: %w", err) + } + + if chainFromType != chain { + return fmt.Errorf("%w: asset type field", validation.ErrInvalidField) + } + + if strings.ToUpper(assetType) != assetType { + return fmt.Errorf("%w: asset type should be ALLCAPS", validation.ErrInvalidField) + } + + return nil +} + +func ValidateAssetID(id, address string) error { + if id != address { + if !strings.EqualFold(id, address) { + return fmt.Errorf("%w: invalid id field", validation.ErrInvalidField) + } + + return fmt.Errorf("%w: invalid case for id field", validation.ErrInvalidField) + } + + return nil +} + +func ValidateAssetDecimalsAccordingType(assetType string, decimals int) error { + if assetType == "BEP2" && decimals != 8 { + return fmt.Errorf("%w: invalid decimals field, BEP2 tokens have 8 decimals", validation.ErrInvalidField) + } + + return nil +} + +// CoinModel info specific validators. + +func ValidateCoinRequiredKeys(c CoinModel) error { + var fields []string + if c.Name != nil && !isEmpty(*c.Name) { + fields = append(fields, "name") + } + if c.Symbol != nil && !isEmpty(*c.Symbol) { + fields = append(fields, "symbol") + } + if c.Type != nil && !isEmpty(*c.Type) { + fields = append(fields, "type") + } + if c.Decimals != nil { + fields = append(fields, "decimals") + } + if c.Description != nil && !isEmpty(*c.Description) { + fields = append(fields, "description") + } + if c.Website != nil && !isEmpty(*c.Website) { + fields = append(fields, "website") + } + if c.Explorer != nil && !isEmpty(*c.Explorer) { + fields = append(fields, "explorer") + } + if c.Status != nil && !isEmpty(*c.Status) { + fields = append(fields, "status") + } + + if len(fields) != len(requiredCoinFields) { + return fmt.Errorf("%w: %s", validation.ErrMissingField, + strings.Join(str.Difference(requiredCoinFields, fields), ", ")) + } + + return nil +} + +func ValidateLinks(links []Link) error { + if len(links) < 2 { + return nil + } + + for _, l := range links { + if l.Name == nil || l.URL == nil { + return fmt.Errorf("%w: missing required fields links.url and links.name", validation.ErrMissingField) + } + + if !linkNameAllowed(*l.Name) { + return fmt.Errorf("invalid value for links.name filed, allowed only: %s", + strings.Join(supportedLinkNames(), ", ")) + } + + prefix := allowedLinkKeys[*l.Name] + if prefix != "" { + if !strings.HasPrefix(*l.URL, prefix) { + return fmt.Errorf("invalid value '%s' for %s link url, allowed only with prefix: %s", + *l.URL, *l.Name, prefix) + } + } + + if !strings.HasPrefix(*l.URL, "https://") { + return fmt.Errorf("invalid value for links.url field, allowed only with https:// prefix") + } + + if *l.Name == "medium" { + if !strings.Contains(*l.URL, "medium.com") { + return fmt.Errorf("invalid value for links.url field, should contain medium.com") + } + } + } + + return nil +} + +func ValidateCoinType(assetType string) error { + if assetType != "coin" { + return fmt.Errorf("%w: only \"coin\" type allowed for coin field", validation.ErrInvalidField) + } + + return nil +} + +func ValidateTags(tags, allowedTags []string) error { + for _, t := range tags { + if !str.Contains(t, allowedTags) { + return fmt.Errorf("%w: tag '%s' not allowed", validation.ErrInvalidField, t) + } + } + + return nil +} + +// Both infos can be validated by this validators. + +func ValidateDecimals(decimals int) error { + if decimals > 30 || decimals < 0 { + return fmt.Errorf("%w: decimals field", validation.ErrInvalidField) + } + + return nil +} + +func ValidateStatus(status string) error { + for _, f := range allowedStatusValues { + if f == status { + return nil + } + } + + return fmt.Errorf("%w: allowed status field values: %s", validation.ErrInvalidField, + strings.Join(allowedStatusValues, ", ")) +} + +func ValidateDescription(description string) error { + if len(description) > 600 { + return fmt.Errorf("%w: invalid length for description field", validation.ErrInvalidField) + } + + for _, ch := range whiteSpaceCharacters { + if strings.Contains(description, ch) { + return fmt.Errorf("%w: description contains not allowed characters (new line, double space)", + validation.ErrInvalidField) + } + } + + return nil +} + +func ValidateDescriptionWebsite(description, website string) error { + if description != "-" && website == "" { + return fmt.Errorf("%w: website field", validation.ErrMissingField) + } + + return nil +} + +func ValidateExplorer(explorer, name string, chain coin.Coin, addr, tokenType string) error { + // explorer url is composed with values outside info.json. + if chain == coin.Nativeinjective() { + return nil + } + + explorerExpected, err := coin.GetCoinExploreURL(chain, addr, tokenType) + if err != nil { + explorerExpected = "" + } + + explorerActual := explorer + + if !strings.EqualFold(explorerActual, explorerExpected) { + explorerAlt := explorerURLAlternatives(chain.Handle, name) + if len(explorerAlt) == 0 { + return nil + } + + var matchCount int + + for _, e := range explorerAlt { + if strings.EqualFold(e, explorerActual) { + matchCount++ + } + } + + if matchCount == 0 { + return fmt.Errorf("invalid value for explorer field, %s insted of %s", explorerActual, explorerExpected) + } + } + + return nil +} + +func isEmpty(field string) bool { + return field == "" +} diff --git a/internal/info/model.go b/internal/info/model.go new file mode 100644 index 0000000000000..102d101fb1cbd --- /dev/null +++ b/internal/info/model.go @@ -0,0 +1,55 @@ +package info + +type ( + CoinModel struct { + Name *string `json:"name,omitempty"` + Website *string `json:"website,omitempty"` + Description *string `json:"description,omitempty"` + Explorer *string `json:"explorer,omitempty"` + Research string `json:"research,omitempty"` + Symbol *string `json:"symbol,omitempty"` + Type *string `json:"type,omitempty"` + Decimals *int `json:"decimals,omitempty"` + Status *string `json:"status,omitempty"` + Tags []string `json:"tags,omitempty"` + Links []Link `json:"links,omitempty"` + } + + AssetModel struct { + Name *string `json:"name,omitempty"` + Symbol *string `json:"symbol,omitempty"` + Type *string `json:"type,omitempty"` + Decimals *int `json:"decimals,omitempty"` + Description *string `json:"description,omitempty"` + Website *string `json:"website,omitempty"` + Explorer *string `json:"explorer,omitempty"` + Research string `json:"research,omitempty"` + Status *string `json:"status,omitempty"` + ID *string `json:"id,omitempty"` + Links []Link `json:"links,omitempty"` + ShortDesc *string `json:"short_desc,omitempty"` + Audit *string `json:"audit,omitempty"` + AuditReport *string `json:"audit_report,omitempty"` + Tags []string `json:"tags,omitempty"` + Code *string `json:"code,omitempty"` + Ticker *string `json:"ticker,omitempty"` + ExplorerEth *string `json:"explorer-ETH,omitempty"` + Address *string `json:"address,omitempty"` + X *string `json:"x,omitempty"` + CoinMarketcap *string `json:"coinmarketcap,omitempty"` + DataSource *string `json:"data_source,omitempty"` + } + + Link struct { + Name *string `json:"name,omitempty"` + URL *string `json:"url,omitempty"` + } +) + +func (a *AssetModel) GetStatus() string { + if a.Status == nil { + return "" + } + + return *a.Status +} diff --git a/internal/info/values.go b/internal/info/values.go new file mode 100644 index 0000000000000..d0c8c27a23fce --- /dev/null +++ b/internal/info/values.go @@ -0,0 +1,79 @@ +package info + +import ( + "fmt" + "strings" + + "github.com/trustwallet/go-primitives/coin" +) + +//nolint:gochecknoglobals +var ( + requiredCoinFields = []string{ + "name", "type", "symbol", "decimals", + "description", "website", "explorer", "status", + } + + requiredAssetFields = []string{ + "name", "type", "symbol", "decimals", + "description", "website", "explorer", "status", "id", + } + + allowedStatusValues = []string{"active", "spam", "abandoned"} + + allowedLinkKeys = map[string]string{ + "github": "https://github.com/", + "whitepaper": "", + "x": "https://x.com/", + "telegram": "https://t.me/", + "telegram_news": "https://t.me/", // Read-only announcement channel. + "medium": "", // URL contains 'medium.com'. + "discord": "https://discord.com/", + "reddit": "https://reddit.com/", + "facebook": "https://facebook.com/", + "youtube": "https://youtube.com/", + "coinmarketcap": "https://coinmarketcap.com/", + "coingecko": "https://coingecko.com/", + "blog": "", // Blog, other than medium. + "forum": "", // Community site. + "docs": "", + "source_code": "", // Other than github. + } + + whiteSpaceCharacters = []string{"\n", " "} +) + +func explorerURLAlternatives(chain, name string) []string { + var altUrls []string + + if name != "" { + nameNorm := strings.ReplaceAll(strings.ReplaceAll(strings.ReplaceAll( + strings.ToLower(name), " ", ""), ")", ""), "(", "") + + if strings.ToLower(chain) == coin.Coins[coin.ETHEREUM].Name { + altUrls = append(altUrls, fmt.Sprintf("https://etherscan.io/token/%s", nameNorm)) + } + + altUrls = append(altUrls, fmt.Sprintf("https://explorer.%s.io", nameNorm)) + altUrls = append(altUrls, fmt.Sprintf("https://scan.%s.io", nameNorm)) + } + + return altUrls +} + +func linkNameAllowed(str string) bool { + if _, exists := allowedLinkKeys[str]; !exists { + return false + } + + return true +} + +func supportedLinkNames() []string { + names := make([]string, 0, len(allowedLinkKeys)) + for k := range allowedLinkKeys { + names = append(names, k) + } + + return names +} diff --git a/internal/manager/manager.go b/internal/manager/manager.go index 1f393c9947484..96c91db85ae38 100644 --- a/internal/manager/manager.go +++ b/internal/manager/manager.go @@ -2,6 +2,7 @@ package manager import ( "os" + "strings" "github.com/trustwallet/assets-go-libs/file" "github.com/trustwallet/assets-go-libs/path" @@ -116,6 +117,15 @@ func handleAddTokenList(args []string, tokenlistType path.TokenListType) { } } +func filter[T any](ss []T, test func(T) bool) (ret []T) { + for _, s := range ss { + if test(s) { + ret = append(ret, s) + } + } + return +} + func InitAssetsService() *service.Service { setup() @@ -124,6 +134,15 @@ func InitAssetsService() *service.Service { log.WithError(err).Fatal("Failed to load file structure.") } + paths = filter(paths, func(path string) bool { + for _, dir := range config.Default.ValidatorsSettings.RootFolder.SkipDirs { + if strings.Contains(path, dir) { + return false + } + } + return true + }) + fileService := file.NewService(paths...) validatorsService := processor.NewService(fileService) reportService := report.NewService() diff --git a/internal/processor/fixers.go b/internal/processor/fixers.go index 8c929dd49e4cf..88c58f56cb35d 100644 --- a/internal/processor/fixers.go +++ b/internal/processor/fixers.go @@ -146,9 +146,12 @@ func (s *Service) FixAssetInfo(f *file.AssetFile) error { expectedTokenType = strings.ToUpper(assetType) } - if chain.ID != f.Chain().ID || !strings.EqualFold(assetType, expectedTokenType) { - assetInfo.Type = &expectedTokenType - isModified = true + // https://github.com/trustwallet/backend/issues/2561 + if chain.ID != coin.CRYPTOORG && chain.ID != coin.CRONOS { + if chain.ID != f.Chain().ID || !strings.EqualFold(assetType, expectedTokenType) { + assetInfo.Type = &expectedTokenType + isModified = true + } } // Fix asset id. diff --git a/internal/processor/validators.go b/internal/processor/validators.go index 0788ddcadafd3..61842118c15f6 100644 --- a/internal/processor/validators.go +++ b/internal/processor/validators.go @@ -8,10 +8,10 @@ import ( "github.com/trustwallet/assets-go-libs/file" "github.com/trustwallet/assets-go-libs/path" "github.com/trustwallet/assets-go-libs/validation" - "github.com/trustwallet/assets-go-libs/validation/info" "github.com/trustwallet/assets-go-libs/validation/list" "github.com/trustwallet/assets-go-libs/validation/tokenlist" "github.com/trustwallet/assets/internal/config" + "github.com/trustwallet/assets/internal/info" "github.com/trustwallet/go-primitives/coin" ) @@ -206,9 +206,12 @@ func (s *Service) ValidateAssetInfoFile(f *file.AssetFile) error { return err } - err := info.ValidateAsset(assetInfo, f.Chain(), f.Asset()) - if err != nil { - return err + // https://github.com/trustwallet/backend/issues/2561 + if f.Chain() != coin.Cryptoorg() && f.Chain() != coin.Cronos() { + err := info.ValidateAsset(assetInfo, f.Chain(), f.Asset()) + if err != nil { + return err + } } return nil diff --git a/knowledge/.gitignore b/knowledge/.gitignore new file mode 100644 index 0000000000000..08bfa5e63bf65 --- /dev/null +++ b/knowledge/.gitignore @@ -0,0 +1,9 @@ +.relations.json +.full-cache/ +.kb-questions.json +*.metadata.json +_metadata_index.json +.garden-summary.txt +.kb-digest.txt +.card-relations.json +.benchmark.json diff --git a/knowledge/architecture/call-graph.md b/knowledge/architecture/call-graph.md new file mode 100644 index 0000000000000..d5865c088766b --- /dev/null +++ b/knowledge/architecture/call-graph.md @@ -0,0 +1,154 @@ +# Call Graph + + + +> Deterministic call graph extracted via tree-sitter (no LLM). Direct calls are resolved by lexical scope + imports; **dynamic dispatch and ambiguous name matches are withheld** rather than guessed. The `## Calls` table is `EXTRACTED` (a single resolved target). Member calls (`obj.method()`) whose method name resolves to exactly one definition repo-wide are recovered separately under `## Inferred calls` (`INFERRED` — receiver type unverified, but a single plausible target). + +## Calls + +| Caller | Callee | Example args | Sites | +|--------|--------|--------------|-------| +| `ValidateAsset` | `ValidateAssetDecimalsAccordingType(assetType: string, decimals: int): error` | `(…, …)` | 1 | +| `ValidateAsset` | `ValidateAssetID(id: string): error` | `(…, addr)` | 1 | +| `ValidateAsset` | `ValidateAssetRequiredKeys(a: AssetModel): error` | `(a)` | 1 | +| `ValidateAsset` | `ValidateDecimals(decimals: int): error` | `(…)` | 1 | +| `ValidateAsset` | `ValidateDescription(description: string): error` | `(…)` | 1 | +| `ValidateAsset` | `ValidateDescriptionWebsite(description: string): error` | `(…, …)` | 1 | +| `ValidateAsset` | `ValidateLinks(links: []Link): error` | `(a.Links)` | 1 | +| `ValidateAsset` | `ValidateStatus(status: string): error` | `(…)` | 1 | +| `ValidateCoin` | `ValidateCoinRequiredKeys(c: CoinModel): error` | `(c)` | 1 | +| `ValidateCoin` | `ValidateCoinType(assetType: string): error` | `(…)` | 1 | +| `ValidateCoin` | `ValidateDecimals(decimals: int): error` | `(…)` | 1 | +| `ValidateCoin` | `ValidateDescription(description: string): error` | `(…)` | 1 | +| `ValidateCoin` | `ValidateDescriptionWebsite(description: string): error` | `(…, …)` | 1 | +| `ValidateCoin` | `ValidateLinks(links: []Link): error` | `(c.Links)` | 1 | +| `ValidateCoin` | `ValidateStatus(status: string): error` | `(…)` | 1 | +| `ValidateCoin` | `ValidateTags(tags: []string): error` | `(c.Tags, allowedTags)` | 1 | +| `GetTokenInfo` | `GetTokenInfoForERC20(tokenID: string): (*TokenInfo, error)` | `(tokenID)` | 1 | +| `GetTokenInfo` | `GetTokenInfoByScraping(url: string): (*TokenInfo, error)` | `(…)` | 4 | +| `GetTokenInfo` | `GetTokenInfoForSPL(tokenID: string): (*TokenInfo, error)` | `(tokenID)` | 1 | +| `GetTokenInfo` | `GetTokenInfoForTRC10(tokenID: string): (*TokenInfo, error)` | `(tokenID)` | 1 | +| `GetTokenInfo` | `GetTokenInfoForTRC20(tokenID: string): (*TokenInfo, error)` | `(tokenID)` | 1 | +| `ValidateAssetRequiredKeys` | `isEmpty(field: string): bool` | `(…)` | 7 | +| `ValidateCoinRequiredKeys` | `isEmpty(field: string): bool` | `(…)` | 7 | +| `ValidateExplorer` | `explorerURLAlternatives(chain: string): []string` | `(chain.Handle, name)` | 1 | +| `ValidateLinks` | `linkNameAllowed(str: string): bool` | `(…)` | 1 | +| `ValidateLinks` | `supportedLinkNames(): []string` | `()` | 1 | +| `AddTokenToTokenListJSON` | `getAssetInfo(chain: coin.Coin, tokenID: string): (*info.AssetModel, error)` | `(chain, tokenID)` | 1 | +| `AddTokenToTokenListJSON` | `setup()` | `()` | 1 | +| `handleAddTokenList` | `AddTokenToTokenListJSON(chain: coin.Coin, assetID: string, tokenListType: path.TokenListType): error` | `(chain, …, tokenID, tokenlistType)` | 1 | +| `InitAssetsService` | `filter(ss: []T, test: func(T) bool): (ret []T)` | `(paths, func(path string) bool { for _, dir :=)` | 1 | +| `InitAssetsService` | `setup()` | `()` | 1 | +| `FixLogo` | `calculateTargetDimension(width: int): (targetW, targetH int)` | `(width, height)` | 1 | +| `ValidateTokenListExtendedFile` | `validateTokenList(path1: string, chain1: coin.Coin): error` | `(tokenListPathExtended, tokenListPath, …)` | 1 | +| `ValidateTokenListFile` | `validateTokenList(path1: string, chain1: coin.Coin): error` | `(tokenListPath, tokenListExtendedPath, …)` | 1 | +| `ValidateValidatorsListFile` | `isStackingChain(c: coin.Coin): bool` | `(…)` | 1 | +| `handleError` | `UnwrapComposite(err: error): []error` | `(err)` | 1 | + +## Callers (reverse) + +| Symbol | Called by | +|--------|-----------| +| `AddTokenToTokenListJSON` | `handleAddTokenList` | +| `calculateTargetDimension` | `FixLogo` | +| `explorerURLAlternatives` | `ValidateExplorer` | +| `filter` | `InitAssetsService` | +| `getAssetInfo` | `AddTokenToTokenListJSON` | +| `GetTokenInfoByScraping` | `GetTokenInfo` | +| `GetTokenInfoForERC20` | `GetTokenInfo` | +| `GetTokenInfoForSPL` | `GetTokenInfo` | +| `GetTokenInfoForTRC10` | `GetTokenInfo` | +| `GetTokenInfoForTRC20` | `GetTokenInfo` | +| `isEmpty` | `ValidateAssetRequiredKeys`, `ValidateCoinRequiredKeys` | +| `isStackingChain` | `ValidateValidatorsListFile` | +| `linkNameAllowed` | `ValidateLinks` | +| `setup` | `AddTokenToTokenListJSON`, `InitAssetsService` | +| `supportedLinkNames` | `ValidateLinks` | +| `UnwrapComposite` | `handleError` | +| `ValidateAssetDecimalsAccordingType` | `ValidateAsset` | +| `ValidateAssetID` | `ValidateAsset` | +| `ValidateAssetRequiredKeys` | `ValidateAsset` | +| `ValidateCoinRequiredKeys` | `ValidateCoin` | +| `ValidateCoinType` | `ValidateCoin` | +| `ValidateDecimals` | `ValidateAsset`, `ValidateCoin` | +| `ValidateDescription` | `ValidateAsset`, `ValidateCoin` | +| `ValidateDescriptionWebsite` | `ValidateAsset`, `ValidateCoin` | +| `ValidateLinks` | `ValidateAsset`, `ValidateCoin` | +| `ValidateStatus` | `ValidateAsset`, `ValidateCoin` | +| `ValidateTags` | `ValidateCoin` | +| `validateTokenList` | `ValidateTokenListExtendedFile`, `ValidateTokenListFile` | + +## Inferred calls (member, unique name) + +> `INFERRED` (confidence 0.9): `obj.method()` where `method` resolves to exactly one definition repo-wide. Receiver type is not resolved; common method names (init/update/onCreate) remain withheld as ambiguous. Use SCIP (`--scip`) for type-resolved member calls at full certainty. + +| Caller | Callee | Example args | Sites | +|--------|--------|--------------|-------| +| `main` | `Execute()` | `()` | 1 | +| `main` | `InitCommands()` | `()` | 1 | +| `setup` | `SetConfig(confPath: string): error` | `(configPath)` | 1 | +| `ValidateAssetFolder` | `GetStatus(): string` | `()` | 1 | +| `ValidateAssetInfoFile` | `ValidateAsset(a: AssetModel, chain: coin.Coin, addr: string): error` | `(assetInfo, …, …)` | 1 | +| `ValidateChainInfoFile` | `ValidateCoin(c: CoinModel, allowedTags: []string): error` | `(coinInfo, tags)` | 1 | +| `Check` | `GetValidator(f: *file.AssetFile): []Validator` | `(f)` | 1 | +| `Check` | `handleError(err: error, info: *file.AssetFile, valName: string)` | `(err, f, validator.Name)` | 1 | +| `Fix` | `GetFixers(f: *file.AssetFile): []Fixer` | `(f)` | 1 | +| `Fix` | `handleError(err: error, info: *file.AssetFile, valName: string)` | `(err, f, fixer.Name)` | 1 | +| `handleError` | `IncErrors()` | `()` | 1 | +| `RunJob` | `GetReport(): string` | `()` | 1 | +| `RunJob` | `IncTotalFiles()` | `()` | 1 | +| `RunJob` | `IsFailed(): bool` | `()` | 1 | +| `RunUpdateAuto` | `GetUpdatersAuto(): []Updater` | `()` | 1 | +| `RunUpdateAuto` | `runUpdaters(updaters: []processor.Updater)` | `(updaters)` | 1 | + +## Graph analytics + +- Call edges: **36** across **107** symbols +- Reachable from entry points (exported symbols + routes): **103** +- Dependency cycles: **0** +- Cross-domain bridges: **0** +- Dead-code candidates (non-exported, zero callers, unreachable): **4** + +### Most-coupled symbols (god-node ranking) + +| Symbol | Fan-in | Fan-out | Degree | +|--------|--------|---------|--------| +| `ValidateAsset` | 0 | 8 | 8 | +| `ValidateCoin` | 0 | 8 | 8 | +| `GetTokenInfo` | 0 | 5 | 5 | +| `ValidateLinks` | 2 | 2 | 4 | +| `AddTokenToTokenListJSON` | 1 | 2 | 3 | +| `isEmpty` | 2 | 0 | 2 | +| `ValidateAssetRequiredKeys` | 1 | 1 | 2 | +| `ValidateCoinRequiredKeys` | 1 | 1 | 2 | +| `ValidateDecimals` | 2 | 0 | 2 | +| `ValidateDescription` | 2 | 0 | 2 | +| `ValidateDescriptionWebsite` | 2 | 0 | 2 | +| `ValidateStatus` | 2 | 0 | 2 | +| `InitAssetsService` | 0 | 2 | 2 | +| `setup` | 2 | 0 | 2 | +| `validateTokenList` | 2 | 0 | 2 | + +### Dead-code candidates + +> Non-exported symbols with no resolved callers, unreachable from any entry point. Static analysis cannot see dynamic dispatch — verify before removing. + +- `main` (`cmd/main.go`) +- `handleAddTokenList` (`internal/manager/manager.go`) +- `handleError` (`internal/service/service.go`) +- `runUpdaters` (`internal/service/service.go`) + +## Layering violations + +> Calls/handlers that flow **up** the architectural stack (e.g. a model calling a controller). + +| From (layer) | To (layer) | Via | +|------|------|-----| +| `InitAssetsService` (service) | `filter` (controller) | calls | + +## See Also +- [info](../features/info.md) +- [processor](../features/processor.md) +- [validator fixer updater](../patterns/validator-fixer-updater.md) +- [manager](../features/manager.md) +- [service](../features/service.md) diff --git a/knowledge/architecture/data/entities.md b/knowledge/architecture/data/entities.md new file mode 100644 index 0000000000000..1b1165637e9fb --- /dev/null +++ b/knowledge/architecture/data/entities.md @@ -0,0 +1,34 @@ +# Domain Entities & Data Transfer Objects + + + +## Domain Entities + +| Entity | Type | File | Line | +|--------|------|------|------| +| CoinModel | class | `internal/info/model.go` | 4 | +| AssetModel | class | `internal/info/model.go` | 18 | + +### Entity Relationships + +```mermaid +classDiagram + class CoinModel { + } + class AssetModel { + } +``` + +## DTOs, Requests & Responses + +| Name | Type | Role | File | Line | +|------|------|------|------|------| +| TRC10TokensResponse | class | Response | `internal/info/external/trc10.go` | 12 | +| TRC20TokensResponse | class | Response | `internal/info/external/trc20.go` | 12 | + +## See Also +- [info](../../features/info.md) +- [config](../../libs/config.md) +- [service](../../features/service.md) +- [processor](../../features/processor.md) +- [report](../../features/report.md) diff --git a/knowledge/architecture/data/index.md b/knowledge/architecture/data/index.md new file mode 100644 index 0000000000000..9cbba443cf5d4 --- /dev/null +++ b/knowledge/architecture/data/index.md @@ -0,0 +1,13 @@ +# Data + +> Auto-generated table of contents for AI agent navigation. + +## Documents + +| Document | Description | Source | +|----------|-------------|--------| +| [entities](entities.md) | | | +| [models part 2](models-part-2.md) | _struct · `internal/info/model.go`:43_ | architecture/data/models.md | +| [models part 3](models-part-3.md) | _struct · `internal/config/config.go`:30_ | architecture/data/models.md | +| [models](models.md) | _struct · `internal/config/config.go`:18_ | architecture/data/models.md | +| [token models](token-models.md) | Represents an individual token's `info.json`. | internal/info/model.go, internal/config/validators.go | diff --git a/knowledge/architecture/data/models-part-2.md b/knowledge/architecture/data/models-part-2.md new file mode 100644 index 0000000000000..f66ab49b3b19b --- /dev/null +++ b/knowledge/architecture/data/models-part-2.md @@ -0,0 +1,165 @@ +--- +category: architecture +subcategory: data +confidence: low +documentType: explanation +scope: repo +contentHash: 50dce908d6d6 +tags: [architecture, service] +source: architecture/data/models.md +verified: 2026-07-22 +splitPartIndex: 2 +splitPartTotal: 3 +canonical: false +synthetic: split-part +--- + +## Data Models & Schemas (Part 2) + +| Field | Type | Optional | +|-------|------|----------| +| `Token0` | `string` | no | +| `Token1` | `string` | no | + +## Link + +_struct · `internal/info/model.go`:43_ + +| Field | Type | Optional | +|-------|------|----------| +| `Name` | `*string` | no | +| `URL` | `*string` | no | + +## RootFolder + +_struct · `internal/config/validators.go`:3_ + +| Field | Type | Optional | +|-------|------|----------| +| `AllowedFiles` | `[]string` | no | +| `SkipFiles` | `[]string` | no | +| `SkipDirs` | `[]string` | no | + +## Service + +_struct · `internal/processor/service.go`:9_ + +| Field | Type | Optional | +|-------|------|----------| +| `fileService` | `*file.Service` | no | +| `assetsManager` | `assetsmanager.Client` | no | + +## Service + +_struct · `internal/report/service.go`:5_ + +| Field | Type | Optional | +|-------|------|----------| +| `errors` | `int` | no | +| `totalFiles` | `int` | no | + +## Service + +_struct · `internal/service/service.go`:12_ + +| Field | Type | Optional | +|-------|------|----------| +| `fileService` | `*file.Service` | no | +| `processorService` | `*processor.Service` | no | +| `reportService` | `*report.Service` | no | +| `paths` | `[]string` | no | + +## Tag + +_struct · `internal/config/validators.go`:33_ + +| Field | Type | Optional | +|-------|------|----------| +| `ID` | `string` | no | +| `Name` | `string` | no | +| `Description` | `string` | no | + +## TokenInfo + +_struct · `internal/info/external/external.go`:18_ + +| Field | Type | Optional | +|-------|------|----------| +| `Symbol` | `string` | no | +| `Decimals` | `int` | no | +| `HoldersCount` | `int` | no | + +## TokenInfo + +_struct · `internal/processor/model.go`:45_ + +| Field | Type | Optional | +|-------|------|----------| +| `ID` | `string` | no | +| `Symbol` | `string` | no | +| `Name` | `string` | no | +| `Decimals` | `string` | no | + +## TokenInfoERC20 + +_struct · `internal/info/external/erc20.go`:12_ + +| Field | Type | Optional | +|-------|------|----------| +| `Decimals` | `string` | no | +| `HoldersCount` | `int` | no | + +## TokenInfoSPL + +_struct · `internal/info/external/spl.go`:11_ + +| Field | Type | Optional | +|-------|------|----------| +| `Data` | `[]Data` | no | +| `HoldersCount` | `int` | no | + +## TradingPair + +_struct · `internal/processor/model.go`:36_ + +| Field | Type | Optional | +|-------|------|----------| +| `ID` | `string` | no | +| `ReserveUSD` | `string` | no | +| `VolumeUSD` | `string` | no | +| `TxCount` | `string` | no | +| `Token0` | `*TokenInfo` | no | +| `Token1` | `*TokenInfo` | no | + +## TradingPairs + +_struct · `internal/processor/model.go`:30_ + +| Field | Type | Optional | +|-------|------|----------| +| `Data` | `struct { Pairs []TradingPair `json:"pairs"` }` | no | + +## TRC10TokensResponse + +_struct · `internal/info/external/trc10.go`:12_ + +| Field | Type | Optional | +|-------|------|----------| +| `Data` | `[]struct { Symbol string `json:"abbr"` Decimals int `json:"precision"` HoldersCount int `json:"nrOfTokenHolders"` }` | no | + +## TRC20TokensResponse + +_struct · `internal/info/external/trc20.go`:12_ + +| Field | Type | Optional | +|-------|------|----------| +| `TRC20Tokens` | `[]struct { Symbol string `json:"symbol"` Decimals int `json:"decimals"` HoldersCount int `json:"holders_count"` }` | no | + +## Updater + +_struct · `internal/processor/model.go`:18_ + +| Field | Type | Optional | +|-------|------|----------| +| `Name` | `string` | no | +| `Run` | `func() error` | no | diff --git a/knowledge/architecture/data/models-part-3.md b/knowledge/architecture/data/models-part-3.md new file mode 100644 index 0000000000000..f457a8e60ef29 --- /dev/null +++ b/knowledge/architecture/data/models-part-3.md @@ -0,0 +1,53 @@ +--- +category: architecture +subcategory: data +confidence: low +documentType: explanation +scope: repo +contentHash: b2d5633c11a8 +tags: [architecture] +source: architecture/data/models.md +verified: 2026-07-22 +splitPartIndex: 3 +splitPartTotal: 3 +canonical: false +synthetic: split-part +--- + +## Data Models & Schemas (Part 3) + +_struct · `internal/config/config.go`:30_ + +| Field | Type | Optional | +|-------|------|----------| +| `AssetsApp` | `string` | no | +| `Logo` | `string` | no | + +## Validator + +_struct · `internal/processor/model.go`:8_ + +| Field | Type | Optional | +|-------|------|----------| +| `Name` | `string` | no | +| `Run` | `func(f *file.AssetFile) error` | no | + +## ValidatorsSettings + +_struct · `internal/config/config.go`:35_ + +| Field | Type | Optional | +|-------|------|----------| +| `RootFolder` | `RootFolder` | no | +| `ChainFolder` | `ChainFolder` | no | +| `AssetFolder` | `AssetFolder` | no | +| `ChainInfoFolder` | `ChainInfoFolder` | no | +| `ChainValidatorsAssetFolder` | `ChainValidatorsAssetFolder` | no | +| `DappsFolder` | `DappsFolder` | no | + +## See Also +- [config system](../../libs/config-system.md) +- [config](../../libs/config.md) +- [processor](../../features/processor.md) +- [validator fixer updater](../../patterns/validator-fixer-updater.md) +- [info](../../features/info.md) diff --git a/knowledge/architecture/data/models.md b/knowledge/architecture/data/models.md new file mode 100644 index 0000000000000..b8ed690051bdb --- /dev/null +++ b/knowledge/architecture/data/models.md @@ -0,0 +1,164 @@ +--- +category: architecture +subcategory: data +confidence: low +documentType: explanation +scope: repo +contentHash: 13e9d8b37bf8 +tags: [architecture, domain] +source: architecture/data/models.md +verified: 2026-07-22 +splitPartIndex: 1 +splitPartTotal: 3 +canonical: true +--- + +## Data Models & Schemas + + +> Field-level shape of data models extracted via tree-sitter: TS interfaces / type aliases, Zod `z.object` schemas, Go/Rust/Swift structs, Kotlin data classes, and Python dataclasses. Scoped to domain data — UI views/props, view-models, design tokens (theme/style/colors), and constant/identifier namespaces are excluded. Deterministic, no LLM. + +## App + +_struct · `internal/config/config.go`:18_ + +| Field | Type | Optional | +|-------|------|----------| +| `LogLevel` | `string` | no | + +## AssetFolder + +_struct · `internal/config/validators.go`:13_ + +| Field | Type | Optional | +|-------|------|----------| +| `AllowedFiles` | `[]string` | no | + +## AssetModel + +_struct · `internal/info/model.go`:18_ + +| Field | Type | Optional | +|-------|------|----------| +| `Name` | `*string` | no | +| `Symbol` | `*string` | no | +| `Type` | `*string` | no | +| `Decimals` | `*int` | no | +| `Description` | `*string` | no | +| `Website` | `*string` | no | +| `Explorer` | `*string` | no | +| `Research` | `string` | no | +| `Status` | `*string` | no | +| `ID` | `*string` | no | +| `Links` | `[]Link` | no | +| `ShortDesc` | `*string` | no | +| `Audit` | `*string` | no | +| `AuditReport` | `*string` | no | +| `Tags` | `[]string` | no | +| `Code` | `*string` | no | +| `Ticker` | `*string` | no | +| `ExplorerEth` | `*string` | no | +| `Address` | `*string` | no | +| `X` | `*string` | no | +| `CoinMarketcap` | `*string` | no | +| `DataSource` | `*string` | no | + +## ChainFolder + +_struct · `internal/config/validators.go`:9_ + +| Field | Type | Optional | +|-------|------|----------| +| `AllowedFiles` | `[]string` | no | + +## ChainInfoFolder + +_struct · `internal/config/validators.go`:17_ + +| Field | Type | Optional | +|-------|------|----------| +| `HasFiles` | `[]string` | no | + +## ChainValidatorsAssetFolder + +_struct · `internal/config/validators.go`:21_ + +| Field | Type | Optional | +|-------|------|----------| +| `HasFiles` | `[]string` | no | + +## ClientURLs + +_struct · `internal/config/config.go`:22_ + +| Field | Type | Optional | +|-------|------|----------| +| `Binance` | `struct { Dex string `mapstructure:"dex"` Explorer string `mapstructure:"explorer"` }` | no | +| `AssetsManagerAPI` | `string` | no | + +## CoinInfoFile + +_struct · `internal/config/validators.go`:29_ + +| Field | Type | Optional | +|-------|------|----------| +| `Tags` | `[]Tag` | no | + +## CoinModel + +_struct · `internal/info/model.go`:4_ + +| Field | Type | Optional | +|-------|------|----------| +| `Name` | `*string` | no | +| `Website` | `*string` | no | +| `Description` | `*string` | no | +| `Explorer` | `*string` | no | +| `Research` | `string` | no | +| `Symbol` | `*string` | no | +| `Type` | `*string` | no | +| `Decimals` | `*int` | no | +| `Status` | `*string` | no | +| `Tags` | `[]string` | no | +| `Links` | `[]Link` | no | + +## Config + +_struct · `internal/config/config.go`:10_ + +| Field | Type | Optional | +|-------|------|----------| +| `App` | `App` | no | +| `ClientURLs` | `ClientURLs` | no | +| `URLs` | `URLs` | no | +| `TimeFormat` | `string` | no | +| `ValidatorsSettings` | `ValidatorsSettings` | no | + +## DappsFolder + +_struct · `internal/config/validators.go`:25_ + +| Field | Type | Optional | +|-------|------|----------| +| `Ext` | `string` | no | + +## Data + +_struct · `internal/info/external/spl.go`:16_ + +| Field | Type | Optional | +|-------|------|----------| +| `Decimals` | `int` | no | + +## Fixer + +_struct · `internal/processor/model.go`:13_ + +| Field | Type | Optional | +|-------|------|----------| +| `Name` | `string` | no | +| `Run` | `func(f *file.AssetFile) error` | no | + +## ForceListPair + +_struct · `internal/processor/model.go`:25_ diff --git a/knowledge/architecture/data/token-models.md b/knowledge/architecture/data/token-models.md new file mode 100644 index 0000000000000..4e1491989bd47 --- /dev/null +++ b/knowledge/architecture/data/token-models.md @@ -0,0 +1,52 @@ +--- +title: Token & Coin Data Models +category: architecture +tags: [models, asset, coin, token, schema, info.json] +confidence: high +source: internal/info/model.go, internal/config/validators.go +updated: 2026-07-22 +--- + +# Token & Coin Data Models + +## AssetModel (internal/info/model.go) + +Represents an individual token's `info.json`. Key fields: + +| Field | Meaning | +|-------|---------| +| `Name`, `Symbol` | Human-readable identifiers | +| `Type` | Token type (`ERC20`, `BEP20`, `SPL`, etc.) | +| `Decimals` | On-chain decimal precision | +| `Status` | `active`, `abandoned`, `spam`, `scam` | +| `ID` | The on-chain contract address / token ID | +| `Links` | List of `{Name, URL}` pairs (website, twitter, telegram, etc.) | +| `Tags` | Freeform community tags | +| `DataSource` | Origin hint for auto-updated fields | +| `X`, `CoinMarketcap` | Social/market data links | + +Required fields enforced by `ValidateAssetRequiredKeys`: `Name`, `Symbol`, `Type`, `Decimals`, `Website`, `Explorer`, `Status`, `ID`. Checked via `isEmpty()`. + +## CoinModel (internal/info/model.go) + +Represents a blockchain's native coin `info.json`. Fields overlap with `AssetModel` but without `ID`, `Address`, `DataSource`, `Audit`, `Code`, `ExplorerEth`, `X`, `CoinMarketcap`. + +Required fields: `Name`, `Website`, `Description`, `Explorer`, `Symbol`, `Type`, `Decimals`, `Status`. Tags validated against allowed list. + +## Folder structure validators (internal/config/validators.go) + +| Struct | AllowedFiles / HasFiles | +|--------|------------------------| +| `RootFolder` | Defines allowed top-level files + skip lists | +| `ChainFolder` | Allowed files per chain dir | +| `AssetFolder` | Allowed files per asset dir (e.g. `logo.png`, `info.json`) | +| `ChainInfoFolder` | Required files for chain info | +| `ChainValidatorsAssetFolder` | Required staking validator asset files | +| `DappsFolder` | Allowed extension for dapp files | + +## See Also +- [config system](../../libs/config-system.md) +- [config](../../libs/config.md) +- [add token](../../guides/add-token.md) +- [info](../../features/info.md) +- [validator fixer updater](../../patterns/validator-fixer-updater.md) diff --git a/knowledge/architecture/dependency-graph.md b/knowledge/architecture/dependency-graph.md new file mode 100644 index 0000000000000..8fba37cee4a65 --- /dev/null +++ b/knowledge/architecture/dependency-graph.md @@ -0,0 +1,28 @@ +# Dependency Graph + + + +## Feature Dependencies + +```mermaid +flowchart LR + cmd --> manager + manager --> config + manager --> processor + manager --> report + manager --> service + processor --> config +``` + +## External Dependencies + +| Package | Import Count | +|---------|--------------| +| `github.com` | 19 | + +## See Also +- [service](../features/service.md) +- [manager](../features/manager.md) +- [config](../libs/config.md) +- [info](../features/info.md) +- [processor](../features/processor.md) diff --git a/knowledge/architecture/external-data-sources.md b/knowledge/architecture/external-data-sources.md new file mode 100644 index 0000000000000..87daef8605fbd --- /dev/null +++ b/knowledge/architecture/external-data-sources.md @@ -0,0 +1,41 @@ +--- +title: External Token Data Fetching +category: architecture +tags: [external, erc20, spl, trc20, trc10, scraping, update-auto, integration] +confidence: high +source: internal/info/external/, internal/processor/validators.go +updated: 2026-07-22 +--- + +# External Token Data Fetching + +The `update-auto` command enriches token metadata from external blockchain data sources. All fetchers live in `internal/info/external/`. + +## Sources + +| Fetcher | Chain | Fields fetched | API | +|---------|-------|----------------|-----| +| `GetTokenInfoForERC20` | Ethereum & EVM | `Decimals`, `HoldersCount` | Etherscan-compatible API (via scraping) | +| `GetTokenInfoForSPL` | Solana | `Decimals`, `HoldersCount` | Solana token program API | +| `GetTokenInfoForTRC10` | Tron (TRC10) | `Symbol`, `Decimals`, `HoldersCount` | Tron API | +| `GetTokenInfoForTRC20` | Tron (TRC20) | `Symbol`, `Decimals`, `HoldersCount` | Tron API | +| `GetTokenInfoByScraping` | Other chains | Various | HTML scraping (4 call sites) | + +## Dispatcher + +`info.GetTokenInfo(tokenID)` dispatches to the appropriate chain-specific fetcher based on token ID format, then falls back to `GetTokenInfoByScraping` for unsupported chains. + +## Trading pair updates + +Trading-pair info (for `tokenlist.json`) is fetched from Uniswap/Ethereum and PancakeSwap/BSC. The `TradingPair` and `TradingPairs` models in `internal/processor/model.go` represent pairs with reserve USD, volume USD, and token metadata. + +## Config + +External API base URLs are configured in `.github/assets.config.yaml` under `client_urls` (Binance DEX/explorer, Assets Manager API) and `urls` (CDN base, logo base). + +## See Also +- [architecture/data/models.md](data/models.md) +- [features/info.md](../features/info.md) +- [features/processor.md](../features/processor.md) +- [trading pair maintenance](../ci/workflows/trading-pair-maintenance.md) +- [go conventions](../code-conventions/go-conventions.md) diff --git a/knowledge/architecture/index.md b/knowledge/architecture/index.md new file mode 100644 index 0000000000000..863d2034fff39 --- /dev/null +++ b/knowledge/architecture/index.md @@ -0,0 +1,20 @@ +# Architecture + +> Auto-generated table of contents for AI agent navigation. + +## Sections + +- [data/](data/index.md) + +## Documents + +| Document | Description | +|----------|-------------| +| [call-graph.md](call-graph.md) | Call Graph | +| [dependency-graph.md](dependency-graph.md) | Dependency Graph | +| [layers.md](layers.md) | Architectural Layers | +| [project-structure.md](project-structure.md) | Project Structure | +| [rationale.md](rationale.md) | Design Rationale (the "why") | +| [repo-overview.md](repo-overview.md) | Assets Repository Overview — domain, directory layout, consumers | +| [external-data-sources.md](external-data-sources.md) | External Token Data Fetching (ERC20, SPL, TRC10/TRC20, scraping) | + diff --git a/knowledge/architecture/layers.md b/knowledge/architecture/layers.md new file mode 100644 index 0000000000000..8a2b8bd3fca2d --- /dev/null +++ b/knowledge/architecture/layers.md @@ -0,0 +1,26 @@ +# Architectural Layers + + + +> Layer of each module (path/role-derived) and any calls that flow **up** the stack — a layering violation. Allowed flow: ui → controller → service → repository → model. + +## Layer distribution + +| Layer | Symbols | +|-------|---------| +| controller | 1 | +| service | 14 | +| model | 4 | + +## Violations (1) + +| From (layer) | To (layer) | Via | +|------|------|-----| +| `InitAssetsService` (service) | `filter` (controller) | calls | + +## See Also +- [validator fixer updater](../patterns/validator-fixer-updater.md) +- [manager](../features/manager.md) +- [report](../features/report.md) +- [service](../features/service.md) +- [processor](../features/processor.md) diff --git a/knowledge/architecture/project-structure.md b/knowledge/architecture/project-structure.md new file mode 100644 index 0000000000000..d1e54a6ba06ea --- /dev/null +++ b/knowledge/architecture/project-structure.md @@ -0,0 +1,63 @@ +# Project Structure + + + +## Languages + +| Language | Files | +|----------|-------| +| Go | 22 | +| **Total** | **22** | + +## Directory Layout + +``` +├── cmd/ +│ └── main.go +└── internal/ + ├── config/ + │ ├── config.go + │ ├── validators.go + │ └── values.go + ├── info/ + │ ├── asset.go + │ ├── coin.go + │ ├── external + │ ├── fields_validators.go + │ ├── model.go + │ └── values.go + ├── manager/ + │ ├── commands.go + │ └── manager.go + ├── processor/ + │ ├── fixers.go + │ ├── model.go + │ ├── service.go + │ └── validators.go + ├── report/ + │ └── service.go + └── service/ + └── service.go +``` + +## Features / Modules + +| Feature | Files | Classes | Interfaces | Functions | Endpoints | +|---------|-------|---------|------------|-----------|----------| +| cmd | 1 | 0 | 0 | 1 | 0 | +| config | 3 | 13 | 0 | 1 | 0 | +| info | 10 | 9 | 0 | 25 | 0 | +| manager | 2 | 0 | 0 | 9 | 0 | +| processor | 4 | 8 | 0 | 4 | 0 | +| report | 1 | 1 | 0 | 1 | 0 | +| service | 1 | 1 | 0 | 2 | 0 | + +## Entry Points + +- `cmd/main.go` (Go) + +## See Also +- [constitution](../constitution.md) +- [report](../features/report.md) +- [validator fixer updater](../patterns/validator-fixer-updater.md) +- [manager](../features/manager.md) diff --git a/knowledge/architecture/rationale.md b/knowledge/architecture/rationale.md new file mode 100644 index 0000000000000..90d72121a25d5 --- /dev/null +++ b/knowledge/architecture/rationale.md @@ -0,0 +1,22 @@ +# Design Rationale (the "why") + + + +Inline rationale comments (NOTE / WHY / HACK / FIXME / GOTCHA / WARNING / CAVEAT / TODO) extracted from source — the design intent and gotchas that explain the code. Auto-generated by `--full`; regenerated each run. + +**Totals:** TODO: 2 + +## `internal/processor/fixers.go` + +- **TODO** (L79) _(in `FixLogo`)_: Compress images. + +## `internal/processor/validators.go` + +- **TODO** (L97) _(in `ValidateImage`)_: Replace it with validation.ValidatePngImageDimension when "assets" repo is fixed. + +## See Also +- [processor](../features/processor.md) +- [validator fixer updater](../patterns/validator-fixer-updater.md) +- [overview](../patterns/brand/overview.md) +- [ci overview](../ci/workflows/ci-overview.md) +- [testing strategy](../tests/testing-strategy.md) diff --git a/knowledge/architecture/repo-overview.md b/knowledge/architecture/repo-overview.md new file mode 100644 index 0000000000000..83c810574f1fd --- /dev/null +++ b/knowledge/architecture/repo-overview.md @@ -0,0 +1,44 @@ +--- +title: Assets Repository Overview +category: architecture +tags: [assets, token-registry, blockchain, trust-wallet, overview] +confidence: high +source: README.md, internal/, blockchains/, .github/assets.config.yaml +updated: 2026-07-22 +--- + +# Assets Repository Overview + +Trust Wallet Assets is the community-maintained registry of crypto token information: logos, `info.json` metadata, and trading-pair tokenlists for ~188 blockchains. It is the canonical source that the Trust Wallet app and CDN (`https://assets-cdn.trustwallet.com`) pull token logos and metadata from. + +## Domain + +**Asset registry & validation** — the repo owns token metadata (logos, names, decimals, links, tags) and the Go tooling that validates and manages it. It does NOT contain any wallet logic, keys, or transaction handling. + +## Directory Layout + +| Path | Purpose | +|------|---------| +| `blockchains//` | Per-chain directory containing `info/`, `assets/`, `tokenlist.json`, `tokenlist-extended.json`, `chainlist.json` | +| `blockchains//assets/
/` | Per-token directory: `logo.png` + optional `info.json` | +| `dapps/` | DApp info files (logo, metadata) | +| `cmd/main.go` | CLI entry-point — delegates to `internal/manager` | +| `internal/` | All Go business logic (config, info, manager, processor, report, service) | +| `.github/assets.config.yaml` | Central validator configuration (allowed files per folder type, external API URLs) | + +## Ships + +A compiled Go binary (`bin/assets`) that exposes commands: `check`, `fix`, `update-auto`, `add-token`, `add-tokenlist`, `add-tokenlist-extended`. The binary is used by CI and maintainers — it is NOT deployed as a service. + +## Consumers + +- Trust Wallet mobile app — loads logos and token info from the CDN backed by this repo +- `assets-management` web app — uses the Assets Manager API for PR-based token additions +- External projects (e.g. Uniswap, other wallets) — consume token logos from the public GitHub URLs + +## See Also +- [architecture/layers.md](layers.md) +- [architecture/call-graph.md](call-graph.md) +- [features/service.md](../features/service.md) +- [overview](../patterns/brand/overview.md) +- [go conventions](../code-conventions/go-conventions.md) diff --git a/knowledge/ci/index.md b/knowledge/ci/index.md new file mode 100644 index 0000000000000..3dd6a985aeb4d --- /dev/null +++ b/knowledge/ci/index.md @@ -0,0 +1,8 @@ +# CI + +> CI/CD pipelines, deployment automation, and release processes + +## Sections + +- [workflows/](workflows/index.md) — Development workflows, local setup, and operational commands + diff --git a/knowledge/ci/workflows/ci-overview.md b/knowledge/ci/workflows/ci-overview.md new file mode 100644 index 0000000000000..0d28f05385b27 --- /dev/null +++ b/knowledge/ci/workflows/ci-overview.md @@ -0,0 +1,38 @@ +--- +title: CI Workflows +category: ci +tags: [ci, github-actions, check, s3, codeql, validation] +confidence: high +source: .github/workflows/ +updated: 2026-07-22 +--- + +# CI Workflows + +## check.yml + +Runs on every push and PR. Executes `make check` which builds the Go binary and runs all asset validators against the full `blockchains/` tree. This is the primary quality gate — PRs adding or modifying token files must pass it. Implemented check logic also runs in the assets-management web app and merge-fee-bot (duplicate coverage for faster feedback). + +## upload-s3.yml + +Uploads the asset files to S3 on merge to master. Backs the CDN at `https://assets-cdn.trustwallet.com`. + +## codeql.yml + +GitHub CodeQL security scan on the Go source. + +## Parallel validation environments + +Three separate systems run asset validation: +1. **This repo's CI** (`make check`) — full scan, runs on GitHub Actions +2. **assets-management web app** — checks changed token files in PRs, runs in browser +3. **merge-fee-bot** — GitHub app that posts validation results as a PR comment, runs in non-browser environment + +This redundancy is intentional: each environment has different access and runtime constraints. + +## See Also +- [ci/workflows/on-checks.md](on-checks.md) +- [ci/workflows/scripts.md](scripts.md) +- [testing strategy](../../tests/testing-strategy.md) +- [repo overview](../../architecture/repo-overview.md) +- [go conventions](../../code-conventions/go-conventions.md) diff --git a/knowledge/ci/workflows/index.md b/knowledge/ci/workflows/index.md new file mode 100644 index 0000000000000..a13e2b846c319 --- /dev/null +++ b/knowledge/ci/workflows/index.md @@ -0,0 +1,13 @@ +# Workflows + +> Development workflows, local setup, and operational commands + +## Documents + +| Document | Description | Source | +|----------|-------------|--------| +| [ci overview](ci-overview.md) | Runs on every push and PR. | .github/workflows/ | +| [on checks](on-checks.md) | This repo contains a set of scripts for verification of all the information. | README.md | +| [scripts](scripts.md) | There are several scripts available for maintainers: | README.md | +| [trading pair maintenance](trading-pair-maintenance.md) | Info on supported trading pairs are stored in `tokenlist.json` files. | README.md | + diff --git a/knowledge/ci/workflows/on-checks.md b/knowledge/ci/workflows/on-checks.md new file mode 100644 index 0000000000000..6c0bb503bdb8b --- /dev/null +++ b/knowledge/ci/workflows/on-checks.md @@ -0,0 +1,24 @@ +--- +category: ci +subcategory: workflows +confidence: medium +documentType: how-to +scope: org +contentHash: 8969cdf3631e +tags: [make , run ] +source: README.md +verified: 2026-07-22 +--- + +## On Checks + +This repo contains a set of scripts for verification of all the information. Implemented as Golang scripts, available through `make check`, and executed in CI build; checks the whole repo. +There are similar check logic implemented: + +- in assets-management app; for checking changed token files in PRs, or when creating a PR. Checks diffs, can be run from browser environment. +- in merge-fee-bot, which runs as a GitHub app shows result in PR comment. Executes in a non-browser environment. + +## See Also +- [overview](../../patterns/brand/overview.md) +- [disclaimer](../../specs/business/disclaimer.md) +- [quick starter](../../specs/quick-starter.md) diff --git a/knowledge/ci/workflows/scripts.md b/knowledge/ci/workflows/scripts.md new file mode 100644 index 0000000000000..0178b3208223b --- /dev/null +++ b/knowledge/ci/workflows/scripts.md @@ -0,0 +1,29 @@ +--- +category: ci +subcategory: workflows +confidence: high +documentType: how-to +scope: org +contentHash: 00efba286e64 +tags: [make , run ] +source: README.md +verified: 2026-07-22 +--- + +## Scripts + +There are several scripts available for maintainers: + +- `make check` -- Execute validation checks; also used in continuous integration. +- `make fix` -- Perform automatic fixes where possible +- `make update-auto` -- Run automatic updates from external sources, executed regularly (GitHub action) +- `make add-token asset_id=c60_t0x4Fabb145d64652a948d72533023f6E7A623C7C53` -- Create `info.json` file as asset template. +- `make add-tokenlist asset_id=c60_t0x4Fabb145d64652a948d72533023f6E7A623C7C53` -- Adds a token to tokenlist.json. +- `make add-tokenlist-extended asset_id=c60_t0x4Fabb145d64652a948d72533023f6E7A623C7C53` -- Adds a token to tokenlist-extended.json. + +## See Also +- [overview](../../patterns/brand/overview.md) +- [disclaimer](../../specs/business/disclaimer.md) +- [quick starter](../../specs/quick-starter.md) +- [repo overview](../../architecture/repo-overview.md) +- [external data sources](../../architecture/external-data-sources.md) diff --git a/knowledge/ci/workflows/trading-pair-maintenance.md b/knowledge/ci/workflows/trading-pair-maintenance.md new file mode 100644 index 0000000000000..3ad8eb6a12885 --- /dev/null +++ b/knowledge/ci/workflows/trading-pair-maintenance.md @@ -0,0 +1,24 @@ +--- +category: ci +subcategory: workflows +confidence: low +documentType: how-to +scope: org +contentHash: 6cb29ded738b +tags: [script] +source: README.md +verified: 2026-07-22 +--- + +## Trading pair maintenance + +Info on supported trading pairs are stored in `tokenlist.json` files. +Trading pairs can be updated -- +from Uniswap/Ethereum and PancakeSwap/Smartchain -- using update script (and checking in changes). +Minimal limit values for trading pair inclusion are set in the [config file](https://github.com/trustwallet/assets/blob/master/.github/assets.config.yaml). +There are also options for force-include and force-exclude in the config. + +## See Also +- [overview](../../patterns/brand/overview.md) +- [quick starter](../../specs/quick-starter.md) +- [disclaimer](../../specs/business/disclaimer.md) diff --git a/knowledge/code-conventions/go-conventions.md b/knowledge/code-conventions/go-conventions.md new file mode 100644 index 0000000000000..c9aa3fdf584e7 --- /dev/null +++ b/knowledge/code-conventions/go-conventions.md @@ -0,0 +1,48 @@ +--- +title: Code Conventions — Go Style +category: code-conventions +tags: [go, naming, error-handling, cobra, viper, logrus] +confidence: high +source: internal/, cmd/, Makefile, .golangci.yml +updated: 2026-07-22 +--- + +# Go Code Conventions + +## CLI framework + +Commands are defined with [cobra](https://github.com/spf13/cobra). New commands are registered in `manager.InitCommands()` and executed via `manager.Execute()`. + +## Config + +[Viper](https://github.com/spf13/viper) is used for config loading. Configuration is loaded once at startup; the global `config.Default` is the singleton accessor. Never parse the YAML config manually. + +## Logging + +[sirupsen/logrus](https://github.com/sirupsen/logrus) is used. Log level is set from config. Use structured fields: `log.WithFields(log.Fields{...}).Error(msg)`. + +## Error handling + +Composite errors are wrapped with `validation.ErrComposite` from `assets-go-libs`. Use `service.UnwrapComposite(err)` to flatten them for logging. Never swallow errors in validators — append to `ErrComposite`. + +## Linting + +golangci-lint v1.50.1 is used (`.golangci.yml`). Run via `make lint`. All checks must pass before merging. + +## Testing + +Unit tests via `go test -race -cover`. Run with `make test`. Coverage report written to `coverage.txt`. + +## Build + +`go build -o bin/assets ./cmd` — outputs a single binary. All commands (`check`, `fix`, `update-auto`, etc.) are subcommands of this binary. + +## External dependencies + +Key deps: `trustwallet/assets-go-libs` (file, path, validation), `trustwallet/go-primitives` (coin, asset, path types). Both are Trust Wallet-maintained public repos — updates must coordinate with those repos. + +## See Also +- [repo overview](../architecture/repo-overview.md) +- [config system](../libs/config-system.md) +- [testing strategy](../tests/testing-strategy.md) +- [add token](../guides/add-token.md) diff --git a/knowledge/code-conventions/index.md b/knowledge/code-conventions/index.md new file mode 100644 index 0000000000000..b3eabd282fff6 --- /dev/null +++ b/knowledge/code-conventions/index.md @@ -0,0 +1,9 @@ +# Code Conventions + +> Code conventions, style rules, and decision records + +## Documents + +| Document | Description | Source | +|----------|-------------|--------| +| [go conventions](go-conventions.md) | Commands are defined with [cobra](https://github.com/spf13/cobra). | internal/, cmd/, Makefile, .golangci.yml | diff --git a/knowledge/constitution.md b/knowledge/constitution.md new file mode 100644 index 0000000000000..1ddca784c66b6 --- /dev/null +++ b/knowledge/constitution.md @@ -0,0 +1,39 @@ +# assets — Knowledge Base + +> System of record. All project knowledge lives under [knowledge/](./). + +## Sections + +| Section | Description | +|---------|-------------| +| [ci](ci/index.md) | CI/CD pipelines, deployment automation, and release processes | +| [code-conventions](code-conventions/index.md) | Code conventions, style rules, and decision records | +| [patterns](patterns/index.md) | Coding patterns, recipes, and proven approaches | +| [specs](specs/index.md) | Feature specifications and requirements | + +| [architecture](architecture/index.md) | Architecture | +| [features](features/index.md) | Features | +| [guides](guides/index.md) | Guides | +| [libs](libs/index.md) | Libs | +| [tests](tests/index.md) | Tests | + + +## Project Identity + + + +**Purpose:** [TODO: What this project does and why it exists] + +**Golden Principles:** [TODO: Core principles that guide all decisions] + +**Forbidden Patterns:** [TODO: Anti-patterns that must never appear] + + +--- + +_Generated by sdd-knowledge_ + +## See Also +- [go conventions](code-conventions/go-conventions.md) +- [config system](libs/config-system.md) +- [testing strategy](tests/testing-strategy.md) diff --git a/knowledge/features/cmd.md b/knowledge/features/cmd.md new file mode 100644 index 0000000000000..20c60221cd786 --- /dev/null +++ b/knowledge/features/cmd.md @@ -0,0 +1,25 @@ +# Cmd + + + +## Overview + +- **Files**: 1 +- **Symbols**: 1 + +## Files + +- `cmd/main.go` — main + +## Minimum Viable Specification + +> Auto-generated specification for the **Cmd** feature. + +**Key Types**: none + +## See Also +- [config](../libs/config.md) +- [layers](../architecture/layers.md) +- [dependency graph](../architecture/dependency-graph.md) +- [project structure](../architecture/project-structure.md) +- [constitution](../constitution.md) diff --git a/knowledge/features/index.md b/knowledge/features/index.md new file mode 100644 index 0000000000000..e80509aee4570 --- /dev/null +++ b/knowledge/features/index.md @@ -0,0 +1,15 @@ +# Features + +> Auto-generated table of contents for AI agent navigation. + +## Documents + +| Document | Description | +|----------|-------------| +| [cmd.md](cmd.md) | Cmd | +| [info.md](info.md) | Info | +| [manager.md](manager.md) | Manager | +| [processor.md](processor.md) | Processor | +| [report.md](report.md) | Report | +| [service.md](service.md) | Service | + diff --git a/knowledge/features/info.md b/knowledge/features/info.md new file mode 100644 index 0000000000000..40b908aa2c99b --- /dev/null +++ b/knowledge/features/info.md @@ -0,0 +1,89 @@ +# Info + + + +## Overview + +- **Files**: 10 +- **Symbols**: 35 +- **Entities**: CoinModel, AssetModel +- **DTOs**: TRC10TokensResponse, TRC20TokensResponse + +## Files + +- `internal/info/asset.go` — ValidateAsset +- `internal/info/coin.go` — ValidateCoin +- `internal/info/external/erc20.go` — TokenInfoERC20, GetTokenInfoForERC20 +- `internal/info/external/external.go` — TokenInfo, GetTokenInfo, GetTokenInfoByScraping +- `internal/info/external/spl.go` — TokenInfoSPL, Data, GetTokenInfoForSPL +- `internal/info/external/trc10.go` — TRC10TokensResponse, GetTokenInfoForTRC10 +- `internal/info/external/trc20.go` — TRC20TokensResponse, GetTokenInfoForTRC20 +- `internal/info/fields_validators.go` — ValidateAssetRequiredKeys, ValidateAssetType, ValidateAssetID, ValidateAssetDecimalsAccordingType, ValidateCoinRequiredKeys, ValidateLinks, ValidateCoinType, ValidateTags, ValidateDecimals, ValidateStatus, ValidateDescription, ValidateDescriptionWebsite, ValidateExplorer, isEmpty +- `internal/info/model.go` — CoinModel, AssetModel, Link, GetStatus +- `internal/info/values.go` — explorerURLAlternatives, linkNameAllowed, supportedLinkNames + +## Architecture + +### Layers + +**Entity**: `CoinModel`, `AssetModel` + +**Dto**: `TRC10TokensResponse`, `TRC20TokensResponse` + +**Other**: `ValidateAsset`, `ValidateCoin`, `TokenInfoERC20`, `GetTokenInfoForERC20`, `TokenInfo`, `GetTokenInfo`, `GetTokenInfoByScraping`, `TokenInfoSPL`, `Data`, `GetTokenInfoForSPL`, `GetTokenInfoForTRC10`, `GetTokenInfoForTRC20`, `ValidateAssetRequiredKeys`, `ValidateAssetType`, `ValidateAssetID`, `ValidateAssetDecimalsAccordingType`, `ValidateCoinRequiredKeys`, `ValidateLinks`, `ValidateCoinType`, `ValidateTags`, `ValidateDecimals`, `ValidateStatus`, `ValidateDescription`, `ValidateDescriptionWebsite`, `ValidateExplorer`, `isEmpty`, `Link`, `GetStatus`, `explorerURLAlternatives`, `linkNameAllowed`, `supportedLinkNames` + +### Data Flow + +```mermaid +flowchart TD + entity["Entity\nCoinModel, AssetModel"] --> dto["Dto\nTRC10TokensResponse, TRC20TokensResponse"] +``` + +## Class Diagram + +```mermaid +classDiagram + class TokenInfoERC20 { + } + class TokenInfo { + } + class TokenInfoSPL { + } + class Data { + } + class TRC10TokensResponse { + <> + } + class TRC20TokensResponse { + <> + } + class CoinModel { + <> + } + class AssetModel { + <> + } + class Link { + } +``` + +## External Dependencies + +- `github.com` + +## Minimum Viable Specification + +> Auto-generated specification for the **Info** feature. + +**Domain Model**: CoinModel, AssetModel + +**Contracts**: TRC10TokensResponse, TRC20TokensResponse + +**Key Types**: TokenInfoERC20, TokenInfo, TokenInfoSPL, Data, TRC10TokensResponse, TRC20TokensResponse, CoinModel, AssetModel, Link + +## See Also +- [call graph](../architecture/call-graph.md) +- [entities](../architecture/data/entities.md) +- [config](../libs/config.md) +- [external data sources](../architecture/external-data-sources.md) +- [token models](../architecture/data/token-models.md) diff --git a/knowledge/features/manager.md b/knowledge/features/manager.md new file mode 100644 index 0000000000000..5e865d63828c5 --- /dev/null +++ b/knowledge/features/manager.md @@ -0,0 +1,48 @@ +# Manager + + + +## Overview + +- **Files**: 2 +- **Symbols**: 9 +- **Services**: InitAssetsService + +## Files + +- `internal/manager/commands.go` — CreateAssetInfoJSONTemplate, AddTokenToTokenListJSON, getAssetInfo +- `internal/manager/manager.go` — InitCommands, handleAddTokenList, filter, InitAssetsService, setup, Execute + +## Architecture + +### Layers + +**Service**: `InitAssetsService` + +**Middleware**: `filter` + +**Other**: `CreateAssetInfoJSONTemplate`, `AddTokenToTokenListJSON`, `getAssetInfo`, `InitCommands`, `handleAddTokenList`, `setup`, `Execute` + +### Data Flow + +```mermaid +flowchart TD + service["Service\nInitAssetsService"] --> middleware["Middleware\nfilter"] +``` + +## External Dependencies + +- `github.com` + +## Minimum Viable Specification + +> Auto-generated specification for the **Manager** feature. + +**Key Types**: none + +## See Also +- [call graph](../architecture/call-graph.md) +- [config](../libs/config.md) +- [go conventions](../code-conventions/go-conventions.md) +- [layers](../architecture/layers.md) +- [validator fixer updater](../patterns/validator-fixer-updater.md) diff --git a/knowledge/features/processor.md b/knowledge/features/processor.md new file mode 100644 index 0000000000000..88114a653f6b6 --- /dev/null +++ b/knowledge/features/processor.md @@ -0,0 +1,64 @@ +# Processor + + + +## Overview + +- **Files**: 4 +- **Symbols**: 33 +- **Services**: Service, NewService + +## Files + +- `internal/processor/fixers.go` — FixJSON, FixETHAddressChecksum, FixLogo, calculateTargetDimension, FixChainInfoJSON, FixAssetInfo +- `internal/processor/model.go` — Validator, Fixer, Updater, ForceListPair, TradingPairs, TradingPair, TokenInfo +- `internal/processor/service.go` — Service, NewService, GetValidator, GetFixers, GetUpdatersAuto +- `internal/processor/validators.go` — ValidateJSON, ValidateRootFolder, ValidateChainFolder, ValidateImage, ValidateAssetFolder, ValidateDappsFolder, ValidateChainInfoFile, ValidateAssetInfoFile, ValidateValidatorsListFile, isStackingChain, ValidateTokenListFile, ValidateTokenListExtendedFile, validateTokenList, ValidateInfoFolder, ValidateValidatorsAssetFolder + +## Architecture + +### Layers + +**Service**: `Service`, `NewService` + +**Other**: `FixJSON`, `FixETHAddressChecksum`, `FixLogo`, `calculateTargetDimension`, `FixChainInfoJSON`, `FixAssetInfo`, `Validator`, `Fixer`, `Updater`, `ForceListPair`, `TradingPairs`, `TradingPair`, `TokenInfo`, `GetValidator`, `GetFixers`, `GetUpdatersAuto`, `ValidateJSON`, `ValidateRootFolder`, `ValidateChainFolder`, `ValidateImage`, `ValidateAssetFolder`, `ValidateDappsFolder`, `ValidateChainInfoFile`, `ValidateAssetInfoFile`, `ValidateValidatorsListFile`, `isStackingChain`, `ValidateTokenListFile`, `ValidateTokenListExtendedFile`, `validateTokenList`, `ValidateInfoFolder`, `ValidateValidatorsAssetFolder` + +## Class Diagram + +```mermaid +classDiagram + class Validator { + } + class Fixer { + } + class Updater { + } + class ForceListPair { + } + class TradingPairs { + } + class TradingPair { + } + class TokenInfo { + } + class Service { + <> + } +``` + +## External Dependencies + +- `github.com` + +## Minimum Viable Specification + +> Auto-generated specification for the **Processor** feature. + +**Key Types**: Validator, Fixer, Updater, ForceListPair, TradingPairs, TradingPair, TokenInfo, Service + +## See Also +- [call graph](../architecture/call-graph.md) +- [config](../libs/config.md) +- [validator fixer updater](../patterns/validator-fixer-updater.md) +- [models](../architecture/data/models.md) +- [rationale](../architecture/rationale.md) diff --git a/knowledge/features/report.md b/knowledge/features/report.md new file mode 100644 index 0000000000000..401ca88d24036 --- /dev/null +++ b/knowledge/features/report.md @@ -0,0 +1,43 @@ +# Report + + + +## Overview + +- **Files**: 1 +- **Symbols**: 6 +- **Services**: Service, NewService + +## Files + +- `internal/report/service.go` — Service, NewService, IncErrors, IncTotalFiles, IsFailed, GetReport + +## Architecture + +### Layers + +**Service**: `Service`, `NewService` + +**Other**: `IncErrors`, `IncTotalFiles`, `IsFailed`, `GetReport` + +## Class Diagram + +```mermaid +classDiagram + class Service { + <> + } +``` + +## Minimum Viable Specification + +> Auto-generated specification for the **Report** feature. + +**Key Types**: Service + +## See Also +- [config](../libs/config.md) +- [call graph](../architecture/call-graph.md) +- [layers](../architecture/layers.md) +- [project structure](../architecture/project-structure.md) +- [entities](../architecture/data/entities.md) diff --git a/knowledge/features/service.md b/knowledge/features/service.md new file mode 100644 index 0000000000000..a151cbb50f3e5 --- /dev/null +++ b/knowledge/features/service.md @@ -0,0 +1,47 @@ +# Service + + + +## Overview + +- **Files**: 1 +- **Symbols**: 9 +- **Services**: Service, NewService + +## Files + +- `internal/service/service.go` — Service, NewService, RunJob, Check, Fix, RunUpdateAuto, runUpdaters, handleError, UnwrapComposite + +## Architecture + +### Layers + +**Service**: `Service`, `NewService` + +**Other**: `RunJob`, `Check`, `Fix`, `RunUpdateAuto`, `runUpdaters`, `handleError`, `UnwrapComposite` + +## Class Diagram + +```mermaid +classDiagram + class Service { + <> + } +``` + +## External Dependencies + +- `github.com` + +## Minimum Viable Specification + +> Auto-generated specification for the **Service** feature. + +**Key Types**: Service + +## See Also +- [config](../libs/config.md) +- [call graph](../architecture/call-graph.md) +- [validator fixer updater](../patterns/validator-fixer-updater.md) +- [go conventions](../code-conventions/go-conventions.md) +- [dependency graph](../architecture/dependency-graph.md) diff --git a/knowledge/guides/add-token.md b/knowledge/guides/add-token.md new file mode 100644 index 0000000000000..7e8d2264943e9 --- /dev/null +++ b/knowledge/guides/add-token.md @@ -0,0 +1,54 @@ +--- +title: How to Add a Token +category: guides +tags: [token, add-token, contribution, workflow, info.json, logo] +confidence: high +source: README.md, internal/manager/commands.go, Makefile +updated: 2026-07-22 +--- + +# How to Add a Token + +This repo accepts community-contributed token additions. Brand new tokens are not accepted — projects must have non-minimal circulation. + +## Automated path (preferred) + +Use the [Assets web app](https://assets.trustwallet.com) with a GitHub account. Covers most additions without CLI knowledge. + +## Manual CLI path + +```bash +# 1. Create an info.json template +make add-token asset_id=c60_t0x4Fabb145d64652a948d72533023f6E7A623C7C53 + +# 2. Fill in the generated info.json (Name, Symbol, Type, Decimals, Website, Explorer, Status, ID, Links, Tags) + +# 3. Add a logo.png to blockchains//assets/
/logo.png + +# 4. Optionally add to tokenlist +make add-tokenlist asset_id=c60_t0x4Fabb145d64652a948d72533023f6E7A623C7C53 +# or extended tokenlist: +make add-tokenlist-extended asset_id=c60_t0x4Fabb145d64652a948d72533023f6E7A623C7C53 +``` + +## Asset ID format + +`c_t
` — e.g. `c60_t0x4Fabb...` means Ethereum (coinId=60) token at the given address. + +## Validation + +```bash +make check # validates the entire repo; must pass in CI +make fix # auto-fixes what can be fixed (logo resizing, JSON formatting) +``` + +## Requirements (listing) + +See https://developer.trustwallet.com/listing-new-assets/requirements for minimum circulation requirements and listing standards. + +## See Also +- [architecture/repo-overview.md](../architecture/repo-overview.md) +- [features/manager.md](../features/manager.md) +- [go conventions](../code-conventions/go-conventions.md) +- [quick starter](../specs/quick-starter.md) +- [overview](../patterns/brand/overview.md) diff --git a/knowledge/guides/index.md b/knowledge/guides/index.md new file mode 100644 index 0000000000000..615ae9acd0a2c --- /dev/null +++ b/knowledge/guides/index.md @@ -0,0 +1,9 @@ +# Guides + +> Onboarding, setup guides, and how-tos + +## Documents + +| Document | Description | Source | +|----------|-------------|--------| +| [add token](add-token.md) | This repo accepts community-contributed token additions. | README.md, internal/manager/commands.go, Makefile | diff --git a/knowledge/guides/troubleshooting/common-mistakes-and-anti-patterns.md b/knowledge/guides/troubleshooting/common-mistakes-and-anti-patterns.md new file mode 100644 index 0000000000000..77954dcc6420d --- /dev/null +++ b/knowledge/guides/troubleshooting/common-mistakes-and-anti-patterns.md @@ -0,0 +1,27 @@ +--- +category: guides +subcategory: troubleshooting +confidence: low +documentType: how-to +scope: org +contentHash: b5aea5623676 +tags: [anti-pattern, troubleshooting, faq] +source: (synthesized) +verified: 2026-07-22 +synthetic: synthesized-faq +--- + +## Common Mistakes and Anti-Patterns + + + +> Auto-generated from anti-patterns found across the knowledge base. + +### Code-conventions + +**From [Go Code Conventions](../../code-conventions/go-conventions.md):** +[Viper](https://github.com/spf13/viper) is used for config loading. Configuration is loaded once at startup; the global `config.Default` is the singleton accessor. Never parse the YAML config manually. + +**From [Go Code Conventions](../../code-conventions/go-conventions.md):** +Composite errors are wrapped with `validation.ErrComposite` from `assets-go-libs`. Use `service.UnwrapComposite(err)` to flatten them for logging. Never swallow errors in validators — append to `ErrComposite`. + diff --git a/knowledge/libs/config-system.md b/knowledge/libs/config-system.md new file mode 100644 index 0000000000000..58b7627e0accc --- /dev/null +++ b/knowledge/libs/config-system.md @@ -0,0 +1,52 @@ +--- +title: Config System +category: libs +tags: [config, viper, yaml, validators-settings] +confidence: high +source: internal/config/config.go, internal/config/validators.go, .github/assets.config.yaml +updated: 2026-07-22 +--- + +# Config System + +The config system is loaded once at startup via `config.SetConfig(configPath)` (using Viper) and accessed globally as `config.Default`. + +## Structure + +``` +Config +├── App.LogLevel — log level for sirupsen/logrus +├── ClientURLs +│ ├── Binance.{Dex,Explorer} — Binance chain API URLs +│ └── AssetsManagerAPI — https://assets.trustwallet.com/api +├── URLs +│ ├── AssetsApp — CDN base URL +│ └── Logo — Trust Wallet logo URL +├── TimeFormat — Go time parse format string +└── ValidatorsSettings — per-folder-type rules (see below) +``` + +## ValidatorsSettings + +Each field configures what files are allowed (or required) in each folder type: + +| Field | Type | Purpose | +|-------|------|---------| +| `RootFolder` | `{AllowedFiles, SkipFiles, SkipDirs}` | Top-level repo root rules | +| `ChainFolder` | `{AllowedFiles}` | Per-blockchain folder | +| `AssetFolder` | `{AllowedFiles}` | Per-token asset folder | +| `ChainInfoFolder` | `{HasFiles}` | Chain info sub-folder | +| `ChainValidatorsAssetFolder` | `{HasFiles}` | Staking validator assets | +| `DappsFolder` | `{Ext}` | Required file extension in dapps | +| `CoinInfoFile.Tags` | `[]Tag{ID,Name,Description}` | Allowed coin tags | + +## Default config path + +`.github/assets.config.yaml` (can be overridden via `--config` flag). The config file is part of the repo and version-controlled. + +## See Also +- [libs/config.md](../libs/config.md) +- [token models](../architecture/data/token-models.md) +- [models](../architecture/data/models.md) +- [go conventions](../code-conventions/go-conventions.md) +- [repo overview](../architecture/repo-overview.md) diff --git a/knowledge/libs/config.md b/knowledge/libs/config.md new file mode 100644 index 0000000000000..9236d7dc6705a --- /dev/null +++ b/knowledge/libs/config.md @@ -0,0 +1,76 @@ +# Config + + + +## Overview + +- **Files**: 3 +- **Symbols**: 14 + +## Files + +- `internal/config/config.go` — Config, App, ClientURLs, URLs, ValidatorsSettings, SetConfig +- `internal/config/validators.go` — RootFolder, ChainFolder, AssetFolder, ChainInfoFolder, ChainValidatorsAssetFolder, DappsFolder, CoinInfoFile, Tag +- `internal/config/values.go` + +## Class Diagram + +```mermaid +classDiagram + class Config { + <> + } + class App { + <> + } + class ClientURLs { + <> + } + class URLs { + <> + } + class ValidatorsSettings { + <> + } + class RootFolder { + <> + } + class ChainFolder { + <> + } + class AssetFolder { + <> + } + class ChainInfoFolder { + <> + } + class ChainValidatorsAssetFolder { + <> + } + class DappsFolder { + <> + } + class CoinInfoFile { + <> + } + class Tag { + <> + } +``` + +## External Dependencies + +- `github.com` + +## Minimum Viable Specification + +> Auto-generated specification for the **Config** feature. + +**Key Types**: Config, App, ClientURLs, URLs, ValidatorsSettings, RootFolder, ChainFolder, AssetFolder, ChainInfoFolder, ChainValidatorsAssetFolder, DappsFolder, CoinInfoFile, Tag + +## See Also +- [models](../architecture/data/models.md) +- [service](../features/service.md) +- [token models](../architecture/data/token-models.md) +- [info](../features/info.md) +- [manager](../features/manager.md) diff --git a/knowledge/libs/index.md b/knowledge/libs/index.md new file mode 100644 index 0000000000000..f80e9e734cdd3 --- /dev/null +++ b/knowledge/libs/index.md @@ -0,0 +1,11 @@ +# Libs + +> Auto-generated table of contents for AI agent navigation. + +## Documents + +| Document | Description | +|----------|-------------| +| [config.md](config.md) | Config | +| [config-system.md](config-system.md) | Config system structure, Viper loading, ValidatorsSettings | + diff --git a/knowledge/patterns/brand/index.md b/knowledge/patterns/brand/index.md new file mode 100644 index 0000000000000..176f7514d3a17 --- /dev/null +++ b/knowledge/patterns/brand/index.md @@ -0,0 +1,10 @@ +# Brand + +> Brand guidelines, visual identity, and design system + +## Documents + +| Document | Description | Source | +|----------|-------------|--------| +| [overview](overview.md) | Trust Wallet token repository is a comprehensive, up-to-date collection of information about several thousands (!) of… | README.md | + diff --git a/knowledge/patterns/brand/overview.md b/knowledge/patterns/brand/overview.md new file mode 100644 index 0000000000000..95202ab9b60ad --- /dev/null +++ b/knowledge/patterns/brand/overview.md @@ -0,0 +1,31 @@ +--- +category: patterns +subcategory: brand +confidence: low +documentType: how-to +scope: org +contentHash: aa00b50d4fa4 +tags: [logo] +source: README.md +verified: 2026-07-22 +--- + +## Overview + +Trust Wallet token repository is a comprehensive, up-to-date collection of information about several thousands (!) of crypto tokens. + +[Trust Wallet](https://trustwallet.com) uses token logos from this source, alongside a number of other projects. + +The repository contains token info from several blockchains, info on dApps, staking validators, etc. +For every token a logo and optional additional information is available (such data is not available on-chain). + +Such a large collection can be maintained only through a community effort, so _feel free to add your token_. + +
+ +## See Also +- [disclaimer](../../specs/business/disclaimer.md) +- [on checks](../../ci/workflows/on-checks.md) +- [quick starter](../../specs/quick-starter.md) +- [scripts](../../ci/workflows/scripts.md) +- [trading pair maintenance](../../ci/workflows/trading-pair-maintenance.md) diff --git a/knowledge/patterns/index.md b/knowledge/patterns/index.md new file mode 100644 index 0000000000000..e9228946c21fa --- /dev/null +++ b/knowledge/patterns/index.md @@ -0,0 +1,14 @@ +# Patterns + +> Coding patterns, recipes, and proven approaches + +## Sections + +- [brand/](brand/index.md) — Brand guidelines, visual identity, and design system + +## Documents + +| Document | Description | Source | +|----------|-------------|--------| +| [validator fixer updater](validator-fixer-updater.md) | The repo's asset-quality enforcement uses three parallel strategy patterns, each represented as a named function value. | internal/processor/, internal/service/service.go | + diff --git a/knowledge/patterns/validator-fixer-updater.md b/knowledge/patterns/validator-fixer-updater.md new file mode 100644 index 0000000000000..03ae6ab0fc0ec --- /dev/null +++ b/knowledge/patterns/validator-fixer-updater.md @@ -0,0 +1,42 @@ +--- +title: Validator / Fixer / Updater Pipeline +category: patterns +tags: [validation, fixer, updater, pipeline, go, pattern] +confidence: high +source: internal/processor/, internal/service/service.go +updated: 2026-07-22 +--- + +# Validator / Fixer / Updater Pipeline + +The repo's asset-quality enforcement uses three parallel strategy patterns, each represented as a named function value. + +## Structs + +```go +// internal/processor/model.go +type Validator struct { Name string; Run func(f *file.AssetFile) error } +type Fixer struct { Name string; Run func(f *file.AssetFile) error } +type Updater struct { Name string; Run func() error } +``` + +## How it works + +1. `processor.Service.GetValidator(f)` / `GetFixers(f)` — returns the slice of `Validator` / `Fixer` applicable to the given `AssetFile` (determined by `f.Type()`). +2. `service.Service.RunJob(job)` — iterates all asset file paths, calls `job(f)` (either `Check` or `Fix`), and tracks errors via `report.Service`. +3. `Check` runs all validators; `Fix` runs all fixers; `RunUpdateAuto` runs all auto-updaters without iterating files. + +## Dispatcher + +`processor.Service.GetValidator(f)` and `GetFixers(f)` dispatch based on `file.AssetFile.Type()` — different asset types (root folder, chain folder, asset folder, tokenlist, etc.) get different validator sets. + +## Layer note + +There is one layer violation recorded: `InitAssetsService` (service layer) calls `filter` (labeled controller by the tool). `filter` is a generic Go 1.18 type-parameter helper in `internal/manager/manager.go` — it filters the file-path slice before building the service. The "controller" label is a mis-classification by the tool; `filter` is a utility function, not a controller boundary. Safe to ignore. + +## See Also +- [features/processor.md](../features/processor.md) +- [features/service.md](../features/service.md) +- [call graph](../architecture/call-graph.md) +- [layers](../architecture/layers.md) +- [repo overview](../architecture/repo-overview.md) diff --git a/knowledge/specs/business/disclaimer.md b/knowledge/specs/business/disclaimer.md new file mode 100644 index 0000000000000..ca918f4dc3111 --- /dev/null +++ b/knowledge/specs/business/disclaimer.md @@ -0,0 +1,27 @@ +--- +category: specs +subcategory: business +confidence: low +documentType: reference +scope: org +contentHash: 0fdce1a90d55 +tags: [partnership] +source: README.md +verified: 2026-07-22 +--- + +## Disclaimer + +Trust Wallet team allows anyone to submit new assets to this repository. However, this does not mean that we are in direct partnership with all of the projects. + +Trust Wallet team will reject projects that are deemed as scam or fraudulent after careful review. +Trust Wallet team reserves the right to change the terms of asset submissions at any time due to changing market conditions, risk of fraud, or any other factors we deem relevant. + +Additionally, spam-like behavior, including but not limited to mass distribution of tokens to random addresses will result in the asset being flagged as spam and possible removal from the repository. + +## See Also +- [overview](../../patterns/brand/overview.md) +- [scripts](../../ci/workflows/scripts.md) +- [on checks](../../ci/workflows/on-checks.md) +- [trading pair maintenance](../../ci/workflows/trading-pair-maintenance.md) +- [repo overview](../../architecture/repo-overview.md) diff --git a/knowledge/specs/business/index.md b/knowledge/specs/business/index.md new file mode 100644 index 0000000000000..d19ce3c935dd9 --- /dev/null +++ b/knowledge/specs/business/index.md @@ -0,0 +1,10 @@ +# Business + +> Business development, partnerships, and market intelligence + +## Documents + +| Document | Description | Source | +|----------|-------------|--------| +| [disclaimer](disclaimer.md) | Trust Wallet team allows anyone to submit new assets to this repository. | README.md | + diff --git a/knowledge/specs/index.md b/knowledge/specs/index.md new file mode 100644 index 0000000000000..9a26668e47227 --- /dev/null +++ b/knowledge/specs/index.md @@ -0,0 +1,14 @@ +# Specs + +> Feature specifications and requirements + +## Sections + +- [business/](business/index.md) — Business development, partnerships, and market intelligence + +## Documents + +| Document | Description | Source | +|----------|-------------|--------| +| [quick starter](quick-starter.md) | Details of the repository structure and contribution guidelines are listed on the | README.md | + diff --git a/knowledge/specs/quick-starter.md b/knowledge/specs/quick-starter.md new file mode 100644 index 0000000000000..b38dae0fc319d --- /dev/null +++ b/knowledge/specs/quick-starter.md @@ -0,0 +1,23 @@ +--- +category: specs +confidence: low +documentType: reference +scope: org +contentHash: ec9c6ef0e844 +tags: [use case] +source: README.md +verified: 2026-07-22 +--- + +## Quick starter + +Details of the repository structure and contribution guidelines are listed on the +[Developers site](https://developer.trustwallet.com/listing-new-assets/new-asset). +Here is a quick starter summary for the most common use case. + +## See Also +- [overview](../patterns/brand/overview.md) +- [trading pair maintenance](../ci/workflows/trading-pair-maintenance.md) +- [scripts](../ci/workflows/scripts.md) +- [on checks](../ci/workflows/on-checks.md) +- [add token](../guides/add-token.md) diff --git a/knowledge/tests/index.md b/knowledge/tests/index.md new file mode 100644 index 0000000000000..9e2e96ec99638 --- /dev/null +++ b/knowledge/tests/index.md @@ -0,0 +1,9 @@ +# Tests + +> Testing strategy, test patterns, and coverage standards + +## Documents + +| Document | Description | Source | +|----------|-------------|--------| +| [testing strategy](testing-strategy.md) | Located alongside the source in `internal/`. | Makefile, .github/workflows/check.yml, internal/ | diff --git a/knowledge/tests/testing-strategy.md b/knowledge/tests/testing-strategy.md new file mode 100644 index 0000000000000..b2d70dee3f34a --- /dev/null +++ b/knowledge/tests/testing-strategy.md @@ -0,0 +1,33 @@ +--- +title: Tests Strategy +category: tests +tags: [tests, go, validation, make-check, ci] +confidence: high +source: Makefile, .github/workflows/check.yml, internal/ +updated: 2026-07-22 +--- + +# Tests Strategy + +## Unit tests + +Located alongside the source in `internal/`. Run with `make test` (or `go test -race -cover ./...`). Covers the Go validation logic and config parsing. + +## Integration / full-repo check + +`make check` builds the binary and runs it against the full `blockchains/` file tree. This is the real correctness gate — it exercises all validators against actual token data. + +## CI gate + +Every PR runs `make check` in `check.yml`. A failing check blocks merge. + +## Note on test coverage + +The unit tests cover the Go validation rules, but the most important coverage is the `make check` integration scan: it applies all validators to real files and catches structural problems (missing logos, bad JSON, invalid field values) that unit tests can't replicate. + +## See Also +- [ci/workflows/ci-overview.md](../ci/workflows/ci-overview.md) +- [repo overview](../architecture/repo-overview.md) +- [go conventions](../code-conventions/go-conventions.md) +- [on checks](../ci/workflows/on-checks.md) +- [add token](../guides/add-token.md)